/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.14-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: appbicargo_1
-- ------------------------------------------------------
-- Server version	10.11.14-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `category`
--

DROP TABLE IF EXISTS `category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `category` (
  `id` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `type` enum('CURRENT','PRODUCT','MONEYACCOUNT','EXPENSE') NOT NULL,
  `isDefault` tinyint(1) NOT NULL DEFAULT 0,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_name_key` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category`
--

LOCK TABLES `category` WRITE;
/*!40000 ALTER TABLE `category` DISABLE KEYS */;
INSERT INTO `category` VALUES
('DEFAULT-EXPENSE-RENT','Sefer Masrafları (Kiralık)','EXPENSE',1,'2024-03-11 21:16:25.795','2024-03-11 21:16:25.795',NULL),
('DEFAULT-EXPENSE-SELF','Sefer Masrafları (Özmal)','EXPENSE',1,'2024-03-11 21:16:25.801','2024-03-11 21:16:25.801',NULL),
('DEFAULT-MONEY-ACCOUNT','Ana Hesaplar','MONEYACCOUNT',1,'2024-03-11 21:16:25.804','2024-03-11 21:16:25.804',NULL);
/*!40000 ALTER TABLE `category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ceksenet`
--

DROP TABLE IF EXISTS `ceksenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ceksenet` (
  `id` varchar(191) NOT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `expiry` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `price` double NOT NULL,
  `currency` enum('TRY','EUR','USD') NOT NULL,
  `type` enum('CEK','SENET') NOT NULL,
  `no` varchar(191) DEFAULT NULL,
  `bank` varchar(191) DEFAULT NULL,
  `ownerCurrentId` varchar(191) DEFAULT NULL,
  `givenCurrentId` varchar(191) DEFAULT NULL,
  `mATransactionId` varchar(191) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ceksenet_mATransactionId_key` (`mATransactionId`),
  KEY `ceksenet_ownerCurrentId_fkey` (`ownerCurrentId`),
  KEY `ceksenet_givenCurrentId_fkey` (`givenCurrentId`),
  CONSTRAINT `ceksenet_givenCurrentId_fkey` FOREIGN KEY (`givenCurrentId`) REFERENCES `current` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `ceksenet_mATransactionId_fkey` FOREIGN KEY (`mATransactionId`) REFERENCES `matransaction` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `ceksenet_ownerCurrentId_fkey` FOREIGN KEY (`ownerCurrentId`) REFERENCES `current` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ceksenet`
--

LOCK TABLES `ceksenet` WRITE;
/*!40000 ALTER TABLE `ceksenet` DISABLE KEYS */;
/*!40000 ALTER TABLE `ceksenet` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `companysettings`
--

DROP TABLE IF EXISTS `companysettings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `companysettings` (
  `id` enum('1') NOT NULL,
  `VKN_TCKN` varchar(11) DEFAULT NULL,
  `StreetName` text DEFAULT NULL,
  `CityName` varchar(191) DEFAULT NULL,
  `CitySubdivisionName` varchar(191) DEFAULT NULL,
  `PostalZone` varchar(191) DEFAULT NULL,
  `Country` varchar(191) DEFAULT NULL,
  `Company` varchar(191) DEFAULT NULL,
  `Phone` varchar(191) DEFAULT NULL,
  `Mail` varchar(191) DEFAULT NULL,
  `TaxAdmin` varchar(191) DEFAULT NULL,
  `WebsiteURL` varchar(191) DEFAULT NULL,
  `InvoiceType` enum('Bireysel','Kurumsal') NOT NULL DEFAULT 'Kurumsal',
  `logo_white` text DEFAULT NULL,
  `logo_dark` text DEFAULT NULL,
  `favicon` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `companysettings`
--

LOCK TABLES `companysettings` WRITE;
/*!40000 ALTER TABLE `companysettings` DISABLE KEYS */;
INSERT INTO `companysettings` VALUES
('1',NULL,NULL,NULL,NULL,NULL,NULL,'BiCarGo',NULL,NULL,NULL,'bicargo.com.tr','Kurumsal','e2d6b110-3ff7-433e-879a-b5f46398b7ed.png','955483c7-4c45-4f53-b22d-6223a89d3130.png','7b6bdd61-efbb-4ed8-ae0f-158286174370.x-icon');
/*!40000 ALTER TABLE `companysettings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `current`
--

DROP TABLE IF EXISTS `current`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `current` (
  `id` varchar(191) NOT NULL,
  `categoryId` varchar(191) DEFAULT NULL,
  `code` varchar(191) NOT NULL,
  `company` varchar(191) NOT NULL,
  `taxAdmin` varchar(191) DEFAULT NULL,
  `vknTckn` varchar(191) DEFAULT NULL,
  `balance` double NOT NULL DEFAULT 0,
  `cekBalance` double NOT NULL DEFAULT 0,
  `senetBalance` double NOT NULL DEFAULT 0,
  `currency` enum('TRY','EUR','USD') NOT NULL DEFAULT 'USD',
  `riskLimit` double NOT NULL DEFAULT 0,
  `expiry` int(11) NOT NULL DEFAULT 0,
  `note` text DEFAULT NULL,
  `type` enum('Customer','Supplier') NOT NULL DEFAULT 'Customer',
  `invoiceType` enum('Bireysel','Kurumsal') NOT NULL DEFAULT 'Kurumsal',
  `person` varchar(191) DEFAULT NULL,
  `mobilePhone` varchar(191) DEFAULT NULL,
  `landPhone` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `country` varchar(191) DEFAULT NULL,
  `city` varchar(191) DEFAULT NULL,
  `district` varchar(191) DEFAULT NULL,
  `postalzone` varchar(191) DEFAULT NULL,
  `website` varchar(191) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `deliveryAddress` text DEFAULT NULL,
  `pricingListId` varchar(191) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `current_code_key` (`code`),
  KEY `current_pricingListId_fkey` (`pricingListId`),
  KEY `current_categoryId_fkey` (`categoryId`),
  CONSTRAINT `current_categoryId_fkey` FOREIGN KEY (`categoryId`) REFERENCES `category` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `current_pricingListId_fkey` FOREIGN KEY (`pricingListId`) REFERENCES `pricinglist` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `current`
--

LOCK TABLES `current` WRITE;
/*!40000 ALTER TABLE `current` DISABLE KEYS */;
INSERT INTO `current` VALUES
('02756ab4-fa8a-408f-b81c-76a84dc82d6f',NULL,'C788','MİTHAT LOJİSTİK',NULL,NULL,330,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905335708965',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-06-08 07:22:21.947','2025-07-08 10:59:02.965','2025-07-08 10:59:02.965'),
('0279a6d3-79de-4470-9728-f1654e3ba0b6',NULL,'FŞ370','FURKAN ŞEYMA ÖZBAY','','',-400,0,0,'EUR',0,0,'','Customer','Kurumsal','','905307331627','','','TÜRKİYE','BURSA','','','','','',NULL,'2024-06-08 07:29:16.905','2024-11-04 09:43:42.954','2024-11-04 09:43:42.956'),
('04673282-898f-4a7a-b3b5-7521480e5322',NULL,'Çiçek','ÇİÇEK MÖBEL',NULL,NULL,3465,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'491725700454',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-19 08:37:31.584','2025-10-09 11:36:33.000',NULL),
('0dae8190-b900-4826-9171-b2d74a2538b0',NULL,'Vavello','VAVELLO MOBİLYA',NULL,NULL,-2605,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-01-07 06:59:48.579','2025-03-06 13:20:46.000',NULL),
('0debd19b-d90b-48a0-9568-2d01319377e0',NULL,'HOMEX','HOMEX',NULL,NULL,-3050,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905535521975',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-07 11:38:42.611','2025-05-26 16:23:16.000',NULL),
('0e6eb464-2ce5-4a6f-902a-252b6c743f5a',NULL,'S554','SERDAL','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','','','','BELÇİKA','','','','','','',NULL,'2024-07-02 07:51:26.434','2024-10-15 12:37:37.456','2024-10-15 12:37:37.462'),
('0ff2372b-b4e0-4df9-a43b-2d20ad461e95',NULL,'siaart','SİAART MERMER',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905070491996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-30 08:11:17.998','2025-08-30 08:11:58.555','2025-08-30 08:11:58.554'),
('14e65a3f-31de-4ada-be77-7aceab16b52f',NULL,'KM287','KRAL MOBİLYA MUHAMMED GEZAL','OSMANGAZİ','99278649318',0,0,0,'EUR',0,0,NULL,'Customer','Bireysel','MUHAMMED GEZAL','905340236938',NULL,NULL,'TÜRKİYE','BURSA','OSMANGAZİ',NULL,NULL,'HOCAHASAN MAHALLESİ FAHRİ SOKAK NO:1',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-14 14:32:11.640','2025-01-05 14:33:58.509',NULL),
('193ed304-b86e-40a4-9bce-613f799736ab',NULL,'TOMMY','TOMMY KOLTUK',NULL,NULL,950,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905301534568',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-07 11:01:19.427','2025-01-05 14:33:40.016',NULL),
('1a1f8406-8725-4744-9eab-26d8b900d3c1',NULL,'16 MOBİLYA','16 MOBİLYA',NULL,NULL,-1600,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905377176639',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-18 15:54:13.237','2025-02-18 19:05:57.000',NULL),
('1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,'GT645','GEZC TEKSTİL',NULL,NULL,-1610,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905356395415',NULL,NULL,'TÜRKİYE','BURSA',NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-06-08 07:24:13.634','2024-11-23 17:30:00.000',NULL),
('1b34200d-989e-426d-9427-68d4445eb64b',NULL,'AC659','ARİA CONCEPT',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905373009407',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-09-17 14:28:39.734','2025-01-05 14:34:20.177',NULL),
('1b51c5f7-649a-424f-ba17-cc37d6298af9',NULL,'mobilyan olsun inegöl','MOBİLYAN OLSUN İNEGÖL',NULL,NULL,-1270,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905534084469',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-01-29 10:58:20.500','2025-04-29 15:00:48.000',NULL),
('1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,'BB761','BAHADIR BAŞTÜRK',NULL,NULL,-3370,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905300961610',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-04-27 08:14:18.559','2025-01-05 14:34:44.105',NULL),
('1bf50c8b-294e-4072-b9f1-99363b966bb1',NULL,'Marvella','MARVELLA',NULL,NULL,-260,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905436605051',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-10-02 09:47:33.626','2025-10-06 10:15:30.000',NULL),
('1c402ba0-2fcc-4b19-b28c-bd6071805ddd',NULL,'Stilanza','STİLANZA',NULL,NULL,-620,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','MERT','905337836884',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-27 13:13:34.297','2025-10-14 10:27:42.454',NULL),
('1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,'ES826','EURO STAR MOBEL',NULL,NULL,-300,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'491639801426',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-08-20 15:07:34.117','2024-12-07 12:36:36.000',NULL),
('223e2487-81b9-4d78-968c-522e914203d0',NULL,'NA21','NİZAMETTİN ALAGÖZ','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','905327399716','','','','','','','','','',NULL,'2024-09-03 14:56:15.171','2024-09-03 15:31:45.833',NULL),
('22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,'BELLİSİMO','BELLİSİMO HOME',NULL,NULL,-85015,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905331602195',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-19 15:06:38.967','2025-10-25 11:43:45.000',NULL),
('2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,'KA539','KADİR AVP DIŞ TİC',NULL,NULL,-2475,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905459011033',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-23 07:34:58.953','2025-08-14 11:46:34.000',NULL),
('27cbce83-310c-4e98-830f-7433b10c2efd',NULL,'Trendysofa','TRENDY SOFA',NULL,NULL,-4420,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905413792483',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-20 15:37:20.845','2025-09-02 15:04:14.000',NULL),
('2df3886f-ccec-493c-a592-e60e860fc725',NULL,'Bode','BODE HOME',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'436641807724',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-18 17:58:59.308','2025-09-18 17:59:44.985',NULL),
('31ccd2de-c68e-405f-adee-14ff1a7a1869',NULL,'Zenka','ZENKA HOME',NULL,NULL,-11800,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905395885843',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-10-02 06:59:45.644','2025-10-21 17:19:09.000',NULL),
('338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,'Mobinya','MOBİNYA HOME',NULL,NULL,690,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905421855834',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-21 11:36:28.070','2025-10-01 09:41:28.000',NULL),
('33cc49ad-e7a0-4ee9-9120-2a98bd963a47',NULL,'Lemer','LEMER MOBİLYA',NULL,NULL,-1320,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905335458833',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-12 13:20:05.313','2025-08-14 12:15:13.000',NULL),
('3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,'Mobilyan burada','MOBİLYAN BURADA',NULL,NULL,-3175,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905431026110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-15 11:43:57.064','2025-10-25 11:43:45.000',NULL),
('3b80982a-28cd-44f1-8d72-59c4daf5e636',NULL,'MASAMİ','MASAMİ SANDALYE',NULL,NULL,-230,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905011170016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-20 11:07:59.819','2025-10-07 17:59:47.000',NULL),
('3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,'Elitis','MOBİLYANIZ TÜRKİYEDEN',NULL,NULL,-56655,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905335511664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-20 10:36:09.573','2025-10-25 11:43:45.000',NULL),
('3f47b50a-127d-4de1-88d7-b9c7ec06ab2b',NULL,'Lego','LEGO',NULL,NULL,-800,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905347001692',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-28 13:33:51.422','2024-11-05 12:51:38.846',NULL),
('3fccf827-5064-4ae4-aa49-04702eab73ec',NULL,'BİLAL','BİLAL LOJİSTİK',NULL,NULL,1170,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905447112515',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-19 08:14:06.706','2025-06-25 13:51:21.000',NULL),
('4126da30-ba9b-41b7-be29-865069aa484c',NULL,'VL468','VAKİT LOGİSTİCS','OSMANGAZİ','9220674904',-68729.87,0,0,'EUR',0,0,'','Customer','Kurumsal','1231','905325000478','','','TÜRKİYE','BURSA','OSMANGAZİ','','','12312','',NULL,'2024-03-12 10:18:19.163','2025-10-25 11:53:53.000',NULL),
('42b99374-3597-4c9c-b338-8bd585490a92',NULL,'TM455','TSN MOBİLYA','','',-700,0,0,'EUR',0,0,'','Customer','Kurumsal','','491639578000','','','','','','','','','',NULL,'2024-08-17 10:56:13.000','2024-11-08 17:09:37.155','2024-11-08 17:09:37.157'),
('47880255-08ee-4e99-940b-16038e07de55',NULL,'BÇ892','BURSA ÇELİKBEY MOBİLYA TİCARET SANAYİ LTD.ŞTİ.','OSMANGAZİ','3850099322',-213622.5,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905517075149',NULL,NULL,'TÜRKİYE','BURSA','OSMANGAZİ',NULL,'www.celikbeymobilya.com','TUNA MAHALLESİ ETİBANK CADDESİ NO:134',NULL,'589a2ae7-10a2-427a-9d2a-4b6a701af4f2','2024-03-12 06:55:55.459','2025-10-25 11:43:45.000',NULL),
('4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,'CS76','AHSEN LUXURY HOME -MÜCAHİD SOYLU','İNEGÖL','15517861464',-16800,0,0,'EUR',0,0,NULL,'Customer','Bireysel','MÜCAHİT','905079047428',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-12 07:58:05.257','2025-04-19 13:19:16.000',NULL),
('4b545346-8acc-42eb-84c7-be96e0cc1e19',NULL,'A964','ARTELÜX',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,NULL,'905304267046',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-07-30 14:41:29.309','2024-11-04 09:40:43.912',NULL),
('515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,'karan','KARAN HOME',NULL,NULL,-6825,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905368336516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-30 12:18:30.205','2025-10-25 11:43:45.000',NULL),
('51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,'İD340','İNEGÖL DİZAYN',NULL,NULL,-9155,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905394878216',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-08-26 12:01:45.323','2025-10-17 13:49:30.000',NULL),
('52840269-0db7-4c57-8a50-57d49049f342',NULL,'MY206','MOBİLYAM YERİNDEN',NULL,NULL,-2760,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905323332620',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-09-09 08:35:45.369','2025-05-25 18:28:52.000',NULL),
('541c3018-c6f1-4218-b584-b2cf4da67f97',NULL,'Cadde lux','CADDE LUX',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905334047146',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-11 12:56:34.179','2025-08-11 12:56:34.179',NULL),
('59868701-abe4-4705-a7e6-d91c2c69262e',NULL,'Nlux home','NLUX HOME',NULL,NULL,-42455,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905078062550',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ertuğrulgazi Cad. No:133 İnegöl BURSA',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-26 07:46:24.980','2025-10-25 11:43:45.000',NULL),
('5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,'Hİ677','HEPSİ İNEGÖL-ÖZGE NARŞAP','İNEGÖL','18625655604',-19155,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'905054335859',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-12 07:52:50.446','2025-06-30 21:28:07.000',NULL),
('5b04798d-86e0-44d7-9219-194a32dc85ff',NULL,'mobilyamis','MOBİLYAMİS ',NULL,NULL,-415,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905052681508',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-08 12:39:11.954','2025-10-23 15:53:19.656',NULL),
('5f244b33-94ca-477b-ae15-8d3bf79ba2c8',NULL,'Lamia','LAMİA CONCEPT',NULL,NULL,-340,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905066751402',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-26 10:55:07.582','2025-07-16 17:24:19.000',NULL),
('5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,'mobelluxe','MOBELLUXE',NULL,NULL,-13900,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905451571652',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-04-18 12:07:30.661','2025-10-17 09:45:24.000',NULL),
('6133a2db-79c4-4372-9338-505db46b1847',NULL,'Petrichor','PETRİCHOR MÖBEL',NULL,NULL,-20222,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905350617509',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-13 12:30:43.739','2025-10-22 10:51:14.000',NULL),
('65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,'BARIŞ MERMER','BARIŞ MERMER DEKORASYON',NULL,NULL,-700,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905442774505',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-24 12:26:06.800','2025-10-25 11:56:27.000',NULL),
('67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,'Wientisch','WİENTİSCH',NULL,NULL,-8125,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'436603406293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-05-03 11:33:13.207','2025-10-23 23:22:28.763',NULL),
('69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0',NULL,'Platon','PLATON MOBİLYA',NULL,NULL,-9552,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905333323012',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-16 08:03:13.719','2025-06-20 18:51:47.000',NULL),
('6b16eb99-81b1-4306-b528-e41ae9bc90b3',NULL,'DM167','DEVİN MOBİLYA',NULL,NULL,-520,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905309753633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-07-26 13:31:00.060','2025-01-05 14:38:20.643',NULL),
('70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,'FD809','FLAMİNGO DEKOR VE MOBİLYA DIŞ TİC.LTD.ŞTİ.','İNEGÖL','3881320743',0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905449041398',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,'MAHMUDİYE MAHALLESİ 28.SOKAK NO:13',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-14 14:25:31.154','2025-03-25 22:16:42.000',NULL),
('73596a75-b658-4249-8c71-b0490654bc8b',NULL,'MİTHAT','MİTHAT LOJİSTİK',NULL,NULL,-53510,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905335708965',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-11-29 13:23:33.113','2025-08-25 14:36:09.000',NULL),
('7487951b-3af6-4f83-a5fa-6847a10dd8c6',NULL,'Aaa','KEYİFLİ MOBİLYA',NULL,NULL,-1725,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905434420016',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-04 08:19:25.548','2025-03-12 21:45:13.000',NULL),
('76950dd8-e203-45e6-9e40-29f7046e8db7',NULL,'İnegöl mobilyalar','İNEGÖL MOBİLYALAR',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905399445188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-05 10:57:23.657','2025-08-05 11:02:24.946',NULL),
('7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,'Kcmn','KCMN HOME ',NULL,NULL,-10091,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','EMRE KOCAMAN ','05388618969',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-13 12:28:49.721','2025-10-22 12:43:30.071',NULL),
('7a22d421-75df-4ab0-a87f-63e0a71155c0',NULL,'H676','HÜSEYİN','','',-500,0,0,'EUR',0,0,'','Customer','Kurumsal','','905418640012','','','','','','','','','',NULL,'2024-06-08 07:43:14.464','2024-11-04 09:42:24.556','2024-11-04 09:42:24.558'),
('7abcec25-2b15-4504-9076-c54982acb983',NULL,'AC346','ARTEV CONCEPT',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905318974595',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-07 14:28:18.451','2025-01-05 14:39:18.581',NULL),
('7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b',NULL,'Sizin dükkan','SİZİN DÜKKAN',NULL,NULL,-110,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905446974799',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-07-30 14:22:57.121','2025-10-22 15:57:59.000',NULL),
('7bb6a552-e940-4456-bfc3-50a13013996c',NULL,'Sidart','SİDART HOME',NULL,NULL,-3485,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905306071261',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-01 13:04:10.959','2025-10-17 09:45:24.000',NULL),
('7c55a7a8-40fe-4ef7-90df-f477ca185e1e',NULL,'Duru möbel','DURU MÖBEL',NULL,NULL,-1100,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905377244117',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-20 11:26:03.565','2025-01-05 14:39:32.759',NULL),
('7f34d75e-284a-42ac-9cbe-a29174748991',NULL,'MOBİLYA KOLAY','MOBİLYA KOLAY',NULL,NULL,-2950,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','Gürcan YENİDÜNYA','905325165070',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-13 12:52:35.616','2025-01-21 19:00:50.502',NULL),
('817aabf6-a64c-4a51-b394-750c9b973b25',NULL,'B538','BATTAL','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','','','','','','','','','','',NULL,'2024-03-15 14:25:56.890','2024-03-15 14:26:18.066','2024-03-15 14:26:18.070'),
('83b080d0-7549-4d18-8037-da9fac2693a3',NULL,'Tatu home','TATU HOME',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905366385704',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-25 13:40:23.772','2025-02-09 17:06:55.000',NULL),
('8426da95-71ca-4ae9-bea1-1e7259d72f62',NULL,'Duru dekorasyon','DURU DEKORASYON',NULL,NULL,-110,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905064141111',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-08-27 10:39:56.401','2025-10-13 10:14:09.000',NULL),
('853c3488-15ac-4631-aa14-318dedb447a4',NULL,'DA274','DALLIOĞLU AHŞAP DEKORASYON','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','905424434016','','','','','','','','','',NULL,'2024-08-26 12:42:31.325','2025-01-05 14:51:38.656','2025-01-05 14:51:38.659'),
('85834865-ac23-4c00-a99b-c9551971a5a1',NULL,'TL211','TG LOJİSTİK',NULL,NULL,245,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905465479064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-15 12:14:58.500','2025-02-13 23:32:42.000',NULL),
('897db2b6-7b3e-46d6-bdb1-886bd9410c3a',NULL,'Sönmez','SÖNMEZ MOBİLYA',NULL,NULL,550,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905356659087',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-12 08:48:35.522','2025-02-15 13:46:46.000',NULL),
('8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,'EFE HOME','EFE HOME',NULL,NULL,-9585,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905069116877',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-20 11:11:10.680','2025-10-13 10:14:09.000',NULL),
('8b7a9e5c-33ee-48ea-80dc-618db5fa40ff',NULL,'MOONA','MOONA MOBİLYA',NULL,NULL,-130,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905324097429',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-05 14:09:24.465','2025-06-05 17:43:59.000',NULL),
('8d03b939-d544-45f8-8173-464bea4e67ab',NULL,'moe','MOE BEDDİNG ',NULL,NULL,-335,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905459475054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-01-07 09:57:18.061','2025-10-07 17:59:47.000',NULL),
('916cfed9-9aea-4249-974d-c8780eba3eae',NULL,'AM321','Akyol mobilya',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','Hasan','905457153410',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-07-24 07:47:06.153','2024-11-04 09:42:44.846',NULL),
('92d31478-aa4f-4f7e-b6e7-95b858af9bfe',NULL,'DM467','DOVENSE MOBİLYA',NULL,NULL,-670,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905050303939',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-17 12:21:47.576','2025-05-02 20:08:04.000',NULL),
('93551a3a-1718-4d23-8200-422fb4f0d5b4',NULL,'Puf home','PUF HOME',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905399896752',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-03 10:07:31.345','2025-01-05 14:58:21.331',NULL),
('97395954-a607-42cd-986f-68a20e6e23be',NULL,'ÖM652','ÖZKAN MOBİLYA',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905396919155',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-02 12:06:49.240','2025-01-05 14:58:44.617',NULL),
('976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,'SH34','İZAY CONCEPT',NULL,NULL,-25930,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905363385813',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-16 08:39:20.183','2025-10-02 09:39:26.000',NULL),
('98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,'AH965','AZRA HOME-BEYZANUR ŞEHERLİ','TEPECİK','12841952226',-88525,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'905336367828',NULL,NULL,'TÜRKİYE',NULL,NULL,NULL,NULL,NULL,NULL,'c704a9cd-daa9-44ac-b81a-af419a285ef8','2024-03-12 07:55:48.801','2025-08-14 10:54:07.000',NULL),
('9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a',NULL,'ÇELMO','ÇELMO MOBİLYA',NULL,NULL,800,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905355891131',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-05 11:25:02.844','2024-11-21 17:33:44.000',NULL),
('9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5',NULL,'Balat home','BALAT HOME',NULL,NULL,955,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905327099916',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-09 13:27:41.544','2025-10-22 10:51:14.000',NULL),
('a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,'İN942','İNOBİLYA-ÖZGE NARŞAP','İNEGÖL','18625655604',-11150,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'905532675926',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,'MOBİLİYUM AVM A ETAP ZEMİN KAT NO:21',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-12 07:51:21.204','2025-10-07 17:59:47.000',NULL),
('a73239a9-aa7c-4faf-9c29-56871f37e40c',NULL,'İnegöl sofa','İNEGÖL SOFA',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905349216466',NULL,NULL,NULL,'Bursa','İnegöl',NULL,NULL,'Edebey mahallesi',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-27 13:34:52.878','2024-11-27 13:39:35.717',NULL),
('af4a65f8-0a9a-4bae-b526-2f7622e7d6ee',NULL,'A','USSA LİFE',NULL,NULL,325,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905073106101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-10-28 13:30:00.434','2025-10-01 09:41:28.000',NULL),
('afdbd570-d700-442a-b617-752921194603',NULL,'Normev','NORM EV',NULL,NULL,-5095,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905319678931',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-10 14:17:57.376','2025-05-09 20:46:41.000',NULL),
('b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,'Sidya','SİDYA CONCEPT',NULL,NULL,-11525,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905539740010',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-07-18 12:25:48.007','2025-10-22 10:51:14.000',NULL),
('b734c482-3c00-4897-ad35-bc358cd02d56',NULL,'TO805','TRANSJET OĞUZHAN BALMUMCU','İNEGÖL','30922296250',-2700,0,0,'EUR',0,0,'','Customer','Bireysel','','','','','TÜRKİYE','BURSA','İNEGÖL','','','CUMHURİYET MAHALLESİ 66. SOKAK NO:7','',NULL,'2024-03-16 07:18:13.951','2024-11-21 13:23:26.000',NULL),
('b79c36e4-6b21-42c9-aa7f-8483a465c2f9',NULL,'NSON','NSON OFFİCE DESİNG',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905389469015',NULL,NULL,'Bursa','İnegöl',NULL,NULL,NULL,'Eski ipek caddesi no.1 İnegöl Bursa karayolu 2km ',NULL,NULL,'2025-09-16 12:14:08.367','2025-09-16 12:14:08.367',NULL),
('bb5832af-6faf-4b4f-86a0-0d8a47cc4626',NULL,'Canshome','CANSHOME',NULL,NULL,-660,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905305444386',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-01 13:40:30.808','2025-09-02 15:04:14.000',NULL),
('bce952bd-e658-4eff-b14a-3b71ea5a5124',NULL,'Mobilyam inegölden','MOBİLYAM İNEGÖLDEN',NULL,NULL,-2000,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905057115555',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-07 14:34:18.404','2025-01-05 14:56:06.655',NULL),
('c20e39e0-b2f7-4f7d-9393-8729cad35ae4',NULL,'Dekor mobilya','DEKOR MOBİLYA',NULL,NULL,860,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905497405500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-24 12:40:48.205','2025-02-08 18:12:58.000',NULL),
('c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,'RG755','RAKE GLOBAL LOJİSTİK VE DIŞ TİCARET LTD.ŞTİ.','İNEGÖL','7342349766',-15844.999999999998,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905321608709',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,'MAHMUDİYE MAHALLESİ 25.SOKAK',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-12 09:44:17.876','2025-10-06 10:33:17.000',NULL),
('c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,'İ795','İRFAN','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','905515519191','','','TÜRKİYE','İSTANBUL','','','','','',NULL,'2024-06-08 06:51:30.570','2024-11-08 20:24:36.000',NULL),
('c904b27b-bbae-4aa4-8662-a377929d7338',NULL,'İnemob','İNEMOB MOBİLYA',NULL,NULL,180,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905323540531',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-03-03 08:36:05.096','2025-04-11 15:31:02.000',NULL),
('cc831224-5440-4e53-b6db-4965adaf2533',NULL,'Mobiliev','MOBİLİEV',NULL,NULL,220,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905437954809',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-10-07 08:14:24.068','2025-10-07 17:59:47.000',NULL),
('cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,'mobilyan olsun','MOBİLYAN OLSUN',NULL,NULL,-11190,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905349208933',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-13 08:53:29.316','2025-08-25 14:36:09.000',NULL),
('d100cd88-31b8-4788-8c56-3df2fd4058aa',NULL,'SÇ990','SURİYELİ ÇARŞAMBA',NULL,NULL,465,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,NULL,NULL,NULL,'TÜRKİYE','BURSA','OSMANGAZİ',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-30 09:14:30.761','2025-02-27 14:52:40.000',NULL),
('d1ba1223-4475-415e-b63f-154a9404e56e',NULL,'ERBA KOLTUK','ERBA KOLTUK',NULL,NULL,-2685,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,NULL,'905352129940',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-11-14 11:07:33.970','2025-05-24 14:02:40.000',NULL),
('d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,'HB282','Hümeyra bekir Soysal',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'905357955726',NULL,NULL,'Türkiye','Bursa','İnegöl',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-04-07 21:07:01.538','2025-01-05 14:53:38.484',NULL),
('d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,'Möbelklang','MÖBELKLANG',NULL,NULL,-4190,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905332942204',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-06-15 17:25:07.241','2025-10-25 11:43:45.000',NULL),
('d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,'MM20','MOBİLYA MAĞAZAM BURSA',NULL,NULL,2730,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905333221039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-08-19 10:36:27.888','2025-10-07 17:59:47.000',NULL),
('d8172c72-d29b-40c5-b0b2-0277129ff6b4',NULL,'Mobilyam evime','MOBİLYAM EVİME',NULL,NULL,-685,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905352711900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-10 12:53:37.088','2025-10-27 13:50:00.117',NULL),
('d89f6e4c-ad0d-4d1f-98c2-188a94803196',NULL,'Lunart','MOBEL LUNART',NULL,NULL,-1545,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905523438971',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-07-29 08:39:34.026','2025-10-17 13:48:44.000',NULL),
('d92bec02-a9d2-4e8e-88e6-6b64208e6b26',NULL,'Bastürk','BASTURK LOJ ',NULL,NULL,580,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905423036885',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-09-03 11:14:26.152','2025-09-10 09:49:18.000',NULL),
('daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,'MS579','MESA MOBİLYA','SETBAŞI','21286567490',-118667.5,0,0,'EUR',0,0,NULL,'Customer','Bireysel','YUSUF EFE','905079358213','905075277637','mesamobilyaa@gmail.com','TÜRKİYE','BURSA','YILDIRIM',NULL,'www.mesamobilya.com','YILDIRIM BEYAZIT CADDESİ NO:47',NULL,'589a2ae7-10a2-427a-9d2a-4b6a701af4f2','2024-03-12 07:04:54.533','2025-10-25 11:43:45.000',NULL),
('dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,'Ninas','NİNAS MOBİLYA',NULL,NULL,-8650,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','NAZİF SUVAT','905312762034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-07-09 12:32:33.932','2025-10-21 09:15:57.942',NULL),
('dea91080-5383-4085-af2e-7eace2c64224',NULL,'E276','EVİMTARZ',NULL,NULL,-22095,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905301592882',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-09-24 11:12:59.578','2025-10-22 10:51:14.000',NULL),
('e04b6588-6a22-4c59-8ad5-3cd7c3eecfb1',NULL,'ERŞAH','ERŞAH MOBİLYA',NULL,NULL,-80,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905325461492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-20 08:47:15.130','2025-02-20 15:37:30.000',NULL),
('e20df3e7-9c88-4ca3-8ef0-eac4f3820acb',NULL,'Sessel','SESSEL PREMİUM',NULL,NULL,-1995,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905350349029',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-04-28 12:24:11.678','2025-06-30 21:34:37.000',NULL),
('e41c8c53-684c-4376-8162-2e589c44b742',NULL,'1dos4pieds','1DOS4PİEDS',NULL,NULL,-1150,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905530309780',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-05-13 10:03:07.625','2025-07-26 10:22:40.000',NULL),
('e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,'MUAZZAM','MUAZZAM HOME',NULL,NULL,-87750,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','MUAZZAM HOME','905461661672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-02-21 13:27:31.083','2025-10-25 11:43:45.000',NULL),
('e6d632ec-bc89-4254-b43c-4f7383017076',NULL,'Sia art','SİA ART MERMER',NULL,NULL,-1350,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905070491996',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-08-12 08:14:53.644','2025-10-04 13:45:41.000',NULL),
('eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,'EC728','ESSENA MOBİLYA',NULL,NULL,-6820,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'905318109098',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-18 08:36:15.548','2025-10-25 11:43:45.000',NULL),
('eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,'KM799','KARATAŞ MOBİLYA',NULL,NULL,-11305.5,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905510396989','905428209234',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-18 09:00:37.765','2025-09-25 19:04:06.000',NULL),
('ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,'Dorthome','DORTHOME MOBİLYA',NULL,NULL,-33680,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905313340045',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-01-13 12:20:15.555','2025-10-25 11:43:45.000',NULL),
('f16e28e8-ecf2-4674-b000-e55b2609d558',NULL,'HL839','HARMONY LİFE',NULL,NULL,-50,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905412810757',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-08-30 08:56:26.207','2024-11-29 16:54:07.000',NULL),
('f23142ef-47ba-426c-9a22-bfb123cfac47',NULL,'LL187','LİDER LOJİSTİK',NULL,NULL,-2900,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905364752848',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-18 07:38:01.830','2025-06-20 18:03:48.000',NULL),
('f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,'Diassi','DİASSİ HOME',NULL,NULL,-6110,0,0,'EUR',0,0,NULL,'Customer','Kurumsal','OSMAN','905389543828',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2025-01-07 09:54:45.930','2025-10-25 11:43:45.000',NULL),
('f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,'YM477','YUNUSEMRE-HAYDAR MISIR','YILDIRIM','63859252730',-17260,0,0,'EUR',0,0,NULL,'Customer','Bireysel',NULL,'9054439559150','9053259981980',NULL,'TÜRKİYE','BURSA','YILDIRIM',NULL,'www.yunusemreavm.com','YUNUS EMRE MAHALLESİ 2.VATAN CAD.NO:27',NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-12 07:48:42.674','2025-10-07 17:59:47.000',NULL),
('f91bb148-259f-42bb-9f08-b97a4cd49dbc',NULL,'Sofa master','SOFA MASTER',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905315980893',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-12-09 13:48:51.851','2025-01-05 15:01:40.363',NULL),
('fabe2c23-b5a5-4123-a962-af519ac31d3b',NULL,'PG935','PASS GLOBAL','','',4755,0,0,'EUR',0,0,'','Customer','Kurumsal','','905365908694','','','TÜRKİYE','BURSA','OSMANGAZİ','','','','',NULL,'2024-05-11 08:37:40.300','2025-08-15 23:52:25.000',NULL),
('fbae633b-07d9-4b61-90f7-87b941010b27',NULL,'nazar ','NAZAR MOBİLYA',NULL,NULL,-300,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905070281051',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-01-31 13:36:44.425','2025-02-07 15:02:29.000',NULL),
('fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,'YL235','YILMAZ LOJİSTİK',NULL,NULL,-385,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905456068312',NULL,NULL,'TÜRKİYE','BURSA','İNEGÖL',NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-03-16 06:54:33.821','2025-03-29 16:46:24.000',NULL),
('fd2f8958-dabf-4d4a-a10e-62713178bf3b',NULL,'GM154','GLAMOROUS MİMARLIK','','',0,0,0,'EUR',0,0,'','Customer','Kurumsal','','905364155243','','','','','','','','','',NULL,'2024-08-20 14:53:23.515','2024-11-08 20:15:37.000',NULL),
('fdb96289-c48e-47a8-9fd3-37b529486551',NULL,'C206','CANDESS MOBİLYA',NULL,NULL,0,0,0,'EUR',0,0,NULL,'Customer','Kurumsal',NULL,'905363510826',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39bd047c-b852-4703-bb92-303cc735ab0a','2024-09-19 11:19:47.056','2025-01-11 18:13:24.000',NULL);
/*!40000 ALTER TABLE `current` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `currentotheraddress`
--

DROP TABLE IF EXISTS `currentotheraddress`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `currentotheraddress` (
  `id` varchar(191) NOT NULL,
  `currentId` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `person` varchar(191) NOT NULL,
  `phone` varchar(191) NOT NULL,
  `address` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `currentOtherAddress_currentId_fkey` (`currentId`),
  CONSTRAINT `currentotheraddress_currentId_fkey` FOREIGN KEY (`currentId`) REFERENCES `current` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currentotheraddress`
--

LOCK TABLES `currentotheraddress` WRITE;
/*!40000 ALTER TABLE `currentotheraddress` DISABLE KEYS */;
INSERT INTO `currentotheraddress` VALUES
('00d8fa15-202f-4635-af55-df5a498e7639','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ALLEGRO ','VOLKAN BEY ','05549515104','BURSA YOLU 8.KM NO:36 İNEGÖL/BURSA'),
('00f0d3f8-19e3-49de-9c57-a79bace86023','338e8c09-4ca5-4617-bfc1-a0692646d475','Bed Home','Enes Bey','05417166636','Mahmudiye Mah. Ağaç İşleri Sanayi Sitesi Çavdar Sok. No:4'),
('01c95349-72b9-482c-8165-7af9590e15f4','b0c1192a-7d38-4b69-a901-778f65a98b9d','BULKA SANDALYE','EMRE ','905415092634','Bursa/İnegöl Mahmudiye Mahallesi Ağaç İşleri 23.Sokak No.9 Inegol'),
('01d32275-21e7-434a-a0df-c2e2e4b92da2','d8172c72-d29b-40c5-b0b2-0277129ff6b4','kardelen koltuk ','soner','05527904769','helvacı yakup yanı '),
('021f4c90-f71f-452d-a14e-192a119e9aef','338e8c09-4ca5-4617-bfc1-a0692646d475','Zümer Mobilya','ismail çeltek','05541153299','Mahmudiye Mah. Gazcılar sk. No:9 (BiCargo Sokağı)'),
('04368f5a-ac36-49bd-8bbe-b6e08e7deb96','5f3f13d2-795f-4eba-b7bd-61428d952ca2','PABLO HOME','FEYZULLAH','05435878604','SÜLEYMANİYE MAH.İSTİKLAL CADDESİ NO:1'),
('05010251-884a-4da0-8f68-5c08a5874e36','daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUKA','FATİH','5393812829','AĞAÇ İŞL 16. SK '),
('058cdb78-383f-469f-b327-d62e280e56c5','3c7190b6-f6ee-4275-8958-d7af952132ab','Pars Koltuk','Saadet Hanım','05307688616','Pars Koltuk'),
('059d89a4-8ba4-4e59-8631-0e54bfe60c77','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','MASAMİ','ERHAN GÖKSEL','05011170016','28. SOKAK'),
('0756facc-c8d4-4ce0-9ac1-e720e6668516','d50fb551-10f1-4b7c-b65d-6eb4bef94704','MODE','Osman','05324413625','pablo home yanı'),
('077de487-dd17-40a4-be7f-19b6d1dfccfc','e6d4faef-484c-4ce7-992c-906e05fc083e','RENN MOBİLYA','TUNCAY BEY','05418836885','Mahmudiye, 1. Köprülü Sk. No:16, 16400 İnegöl/Bursa'),
('08f2ad52-245c-4512-9cbc-c54bdc15f354','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','Oylat Mermer ','ismail bey','05318560918','Deydinler petrolün ordan sol tarafa doğru u dönüşü en sondaki mermer dükkanı solda  gitmeden arayabilirsiniz'),
('0904fb9b-cc29-48d1-bf84-6c66cb08a9ad','e6d4faef-484c-4ce7-992c-906e05fc083e','ESSE KOLTUK','ENES BEY','05438953399','AĞAÇ İŞLERİ 25. SOKAK'),
('0909583f-9996-4535-b9b0-c4e939339a5d','1b51c5f7-649a-424f-ba17-cc37d6298af9','ZETNA HOME (KOLTUK)','FATİH BEY','05442546996','Mesudiye Mah. 1. Güzel sk İnegöl '),
('09d7f208-5120-4a6a-a456-7613eabd6424','b0c1192a-7d38-4b69-a901-778f65a98b9d','döşek','Hamza ','905320628649','Mahmudiye mah artezyen sokak 20 b'),
('0ad4214d-7661-4597-8ec6-579510e6a02f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MFOUR SANDALYE','MUSTAFA','05330374123','BULVAR KÖFTENİN ARADAN GİRİNCE 4 KATLI SİYAH BİNA'),
('0b1fc5a5-59ac-4a0e-8f03-89af8774df96','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','DECO BRAVO ','MUSTAFA BEY ','05317226688','AĞAÇİŞLERİ 22 SK.NO:13'),
('0bddb84a-c9d8-4384-ab78-2f33b838a1b0','3c7190b6-f6ee-4275-8958-d7af952132ab','Sandalyeci Bekir Yeni','Bekir Çakır','05310302466','Elitis Home mağaza karşı aralığı. Sol taraf'),
('0c32079b-f912-41cc-9d0e-e1bd6235d204','daf7fb45-7940-4f5b-8733-e2e2d6030da7','NAHİTA SOFA ','AHMET ASLAN','5376908623','SANAYİ'),
('0c671c63-4149-4f43-958f-cc3a3f624f9a','7bb6a552-e940-4456-bfc3-50a13013996c','Masami ','Kübra hanım ','5050083144','Mahmudiye mah. 29.mobilya sokak. no 19 (Agaç Isleri)\nBursa/Inegöl'),
('0c9eabf1-c070-40e4-9355-fcedfeb0dafc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','BEYMİ ','UĞUR','5465891689','MOBİLYA SK '),
('0d312bb8-4159-41d5-968d-5044bd3c525d','7bb6a552-e940-4456-bfc3-50a13013996c','artev koltuk sanayi ve ticaret limited şirketi ','hatice kurukama ','05467186148','yeniceköy mahallesi 628. sokak no:5(yenice osb) inegöl bursa\nartev koltuk sanayi ve ticaret limited şirketi '),
('0d64216c-fe9d-486b-b722-9710eba2c609','dea91080-5383-4085-af2e-7eace2c64224','NOVANO','SELÇUK','05415984598','29.SOKAK SOLDA'),
('0e083618-5a60-4c18-815f-0b3515f3794d','e6d4faef-484c-4ce7-992c-906e05fc083e','FURKAN MERMER','SİNAN BEY','905374833515','Ertuğrulgazi MAHALLESİ , Hazal Sokak No:7, 16310 İnegöl/Bursa'),
('0f300a3b-b3d6-4b60-924b-aa70cd54141e','47880255-08ee-4e99-940b-16038e07de55','çelikbey inegöl depo','şeref diril','05345798762','ağaçişleri 25. sokak'),
('10d6f21d-bcc7-4ebd-bbf2-2a28a16e6cbe','a42d8839-caef-4422-888f-cbfdf4188c5b','brawwa koltuk','raşit','5058521279','hamzabey'),
('1148d4a9-1ed8-4d07-89ce-572176e72b5e','338e8c09-4ca5-4617-bfc1-a0692646d475','HomestMobilya','Furkan Serbest','05339698859','Mahmudiye Mah. Sanayi Cad. No:18'),
('11c7f1a4-0015-4417-8e43-638318209ba4','338e8c09-4ca5-4617-bfc1-a0692646d475','Nar Concept','Celal Bey','05077874592','Mesudiye Mah. Yeni Fesleğen Sokak No:1 İnegöl Bursa '),
('128499ca-8a62-495a-b36a-15a8e63514ec','3addc5c1-e82b-4a1a-b4af-1f66307a9108','BALİ SANDALYE','FURKAN BALİ','905457754679','Mahmudiye mahallesi tabakhane caddesi no 19/3'),
('139ab88e-943a-4deb-979f-3d6e5eabe362','a42d8839-caef-4422-888f-cbfdf4188c5b','area','funda','5338116691','mobiliyum b etap arkası'),
('1412bb1e-d2f0-499e-b643-ad4afd43a12e','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','KLASSE KOLTUK','MUSTAFA BEY','5367885739','ERTUĞRULGAZİ 8. NOTER YANİ'),
('144d2170-9fb4-4207-9201-b30928d652c2','338e8c09-4ca5-4617-bfc1-a0692646d475','Kristal Mobilya','Bahar Altındağ','05327158667','Yeniceköy 631. sk İnegöl, Bursa'),
('14580cb3-7786-42f0-876a-bf93eb5ed8c1','5b04798d-86e0-44d7-9219-194a32dc85ff','Nirvana mobilya ','Ahmet genç ','05362848327','Mahmudiye mahallesi 31. Sokak sağ taraf'),
('157f7330-b6f7-4343-b451-105e6b556b19','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Muamer wom koltuk','Muamer ','05444491916','Sanayi '),
('159b005b-d0ea-42e0-9b75-02ac221aae27','a42d8839-caef-4422-888f-cbfdf4188c5b','brawwa mobilya','selma','5461680205','bilal habeşi cami sokağında'),
('15b48d2c-9108-4ffb-8414-0847706ad811','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Moda dzayn','Halit','053636363737','26. Sok sağda '),
('15d79900-396c-42fd-a61a-25c2cd217cc8','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','DGN','ömer','905347843254','Yeni Sanayi Sitesi 1. Yunus Emre Cd. No:39\nİnegöl / Bursa / Türkiye'),
('167543db-0d5e-4b47-a4bc-dcdf543920f5','a42d8839-caef-4422-888f-cbfdf4188c5b','ağaçevi','caner','05342072510','arı mobilya hamzabey'),
('16f19647-4e2c-4f1b-87bf-15029f429aa9','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Sand chair','Ozan ataş ','905384456590','Sanayi cd '),
('16f6428f-c1d6-49c1-a4b9-7a73c6aa059b','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','pablo','saniye hanım','05437418704','selim oğlu koltuğun arkasında '),
('17d8b9ed-3fa4-4418-a110-a9b7ebb274ef','daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEDUSA','SERCAN','5340687709','METAL SAN '),
('18c345c7-6cce-4090-a60b-e335f75be36f','22a1dbd6-475c-4d4b-bb13-f459e3029634','3ardeco koltuk','Yavuz bey','05362013161','Akhisar mahallesi 279.sok. no 3'),
('1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','e6d4faef-484c-4ce7-992c-906e05fc083e','ALBESSA DESİGN','EMİNE HANIM','05384456590','Mesudiye, 1.GÜZEL SOLAK NO=23, 16400 İnegöl/Bursa'),
('1b00a07c-45ec-40c5-8cbc-2f4fafc15836','338e8c09-4ca5-4617-bfc1-a0692646d475','Mission Sandalye','Erhan Çetinkaya','905428288808','Süleymaniye OSB 2. cadde No:15 İnegöl (Uğurdağ Mobilya Arkası)'),
('1b0772ee-b516-4618-8207-cae37145619b','a42d8839-caef-4422-888f-cbfdf4188c5b','rixxe','sanem','5370359757','mahmudiye mahallesi gazcılar sokak no.11'),
('1bbead06-fe85-47fa-bbf0-90a35456a83d','47880255-08ee-4e99-940b-16038e07de55','odalife','samet bey','05457171666','Mahmudiye, Meltem Sk. NO:1, 16400 İnegöl/Bursa'),
('1be238d9-54e3-4094-8d60-66fd5abb87b5','e6d4faef-484c-4ce7-992c-906e05fc083e','AFYON TRAVERTEN','EMİR BEY','905461661672','AFYONDAN SİZE ARAÇ İLE BIRAKILIYOR'),
('1d2db52c-5f0a-428e-9cb7-7435ad5c00f6','47880255-08ee-4e99-940b-16038e07de55','garderobe','süheyla hanım','05449291975','Süleymaniye OSB, 2. Cd. No:15, 16400 İnegöl/Bursa'),
('1d3cdff2-164e-4068-84fb-d5fc8f812e04','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','STYLE SOFA','SEMİH YILDIRIM','05349299969','Mahmudiye Mahallesi 1. Yunus Emre Caddesi No : 8 Bursa/İnegöl'),
('1d59a38a-d24e-4fe3-997f-c76596d0c801','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','SOFA FLEX','MURAT','5336150171','AĞAÇ İŞLERİ 30 SOK. SOL'),
('1dc7357b-468a-476c-b39d-81e187906258','d50fb551-10f1-4b7c-b65d-6eb4bef94704','mfour','muhammet','05332942204','bulvar köfte arkası'),
('1e0336e7-e1d0-4cc6-a81e-add17532c1fd','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','masami ','murat','05529237684','ağaç işleri 29.sokak'),
('1e039b6c-e23a-4607-96af-dece50b09153','67e5a145-070e-4e0f-9c3b-09f273d6ed40','sancom sandalye','emre basyigit','05377415324','mahmudiye mahallesi ayaz sokak no:6-A '),
('1e42b3b5-fb7c-4fd7-adfe-d6f396698005','a42d8839-caef-4422-888f-cbfdf4188c5b','sens dizayn','nevra','5425647367','metal sanayi katre nin çaprazında kalıyor'),
('1e93df00-c436-426e-b76b-a6d843907edb','47880255-08ee-4e99-940b-16038e07de55','vaav','onur bey','05364377158','süleymaniye mh. babacan cd. no23 vaav'),
('1e9b9fbb-3031-49d7-a3ee-d77c9ffac9f2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','Tv Üniteci','fatih','905303863266','çalışkan sokak'),
('1f3193af-e6ee-497d-a3d8-b192e0186308','338e8c09-4ca5-4617-bfc1-a0692646d475','KATRE KOLTUK','ESMA HANIM','05417137500','Cumhuriyet, Çalıkavak Sk. No:3 A1-1 '),
('1ffd8555-8f75-4a29-93f1-98402d43a4c6','7bb6a552-e940-4456-bfc3-50a13013996c','ESDİVA DESİNG','ERKAN ','905377121687','Sinanbey mah.28 metal sk.no5 ESDİVA DESİNG ALANYURT'),
('1ffe49f6-7175-4e8a-9386-7af89dbd8def','a42d8839-caef-4422-888f-cbfdf4188c5b','MOLLİS ','SELMA','05050552500','29. SOKAK SAĞ'),
('20fff216-b18d-4242-b3a4-2c73ffb2dd8f','47880255-08ee-4e99-940b-16038e07de55','albera life','hatice hanım','05010660166','tabakhane caddesi'),
('21444842-12de-49d1-9480-1c8708a45353','a42d8839-caef-4422-888f-cbfdf4188c5b','massi milano','özgül hanım','05301901383','class petrol arkası, kupa genç odası karşısı'),
('218949c6-eafc-4354-9868-0fc9ca3b3675','47880255-08ee-4e99-940b-16038e07de55','karma sandalye','ömer','05457460538','Osmaniye Mahallesi Mikail Sokak No:4 İnegöl, Bursa 16400'),
('2217d862-4505-4eb5-93d9-838e046913fc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','GENCECİX','ALPER BEY','905417187004','HAMZABEY'),
('230c96f3-010d-4e74-96ce-4429e7c0c06a','7bb6a552-e940-4456-bfc3-50a13013996c','AYVAZ LUXERY','EMRAH','05461232989','11. SOKAK'),
('23334f3a-b17e-4959-b33b-b748f5878d33','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ROIS','CEYLİN','5526421611','OSB, Süleymaniye, 1. Cd. No:46, 16400 İnegöl/Bursa'),
('23aee76e-0b86-489c-83f6-319fb90e8605','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','melya sandalya','yakup ilarslan','905415950296','Mahmudiye mahallesi mehtap sokak no 5'),
('23b758b0-895c-415c-9b5e-ad099336081b','b0c1192a-7d38-4b69-a901-778f65a98b9d','lego koltuk','muhammed ','905375956213','Yenice mahallesi osmanbey caddesi sanayi sokak no:6 '),
('24bab3dc-471a-441f-86e9-9c582fb4953a','a42d8839-caef-4422-888f-cbfdf4188c5b','usluer','kadriye','5438463426','ertuğrulgazi 7. sokak '),
('24e1bbb4-1607-42b6-9b8d-b1e4572c1ea6','98ea2dbd-82be-4bbe-b758-b7175c0f8659','emin mobilya','burak ','05312550194','ağaçişleri '),
('25914ec2-fa0d-42c2-8f6e-ccf70bf266b2','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','GÖKAY KOLTUK','GÖKAY BEY','05317874486','5. BLOK BELEDİYE SİTESİ MAHMUDİYE MAHALLESİ'),
('25a67c0f-50f5-46d5-a9a8-ac9f061e252a','47880255-08ee-4e99-940b-16038e07de55','saga köşe','SELAHATTİN YİĞİT','05465662154','AĞAÇ İŞLERİ 24. SK NO5'),
('26126773-c58c-4826-9a54-b06d334d664a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','BRAWWA KOLTUK BÖLÜMÜ','RAŞİT','5058521279','HAMZABEY '),
('26216926-c73f-46d4-9ba1-0afb20844194','59868701-abe4-4705-a7e6-d91c2c69262e','NLUXHOME DEPO','Başar Bey','905078062550','Ertuğrulgazi Cad. No:133 İnegöl BURSA'),
('262c07e3-85ed-4f5a-bc91-d8ad3fe8a75c','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','efar koltuk','mert','05313572167','akhisar mahallesi'),
('26360aba-80e2-46ad-b172-f1052f9526f6','6133a2db-79c4-4372-9338-505db46b1847','Albessa','Hilal','05384456590','Mesudiye Mahallesi 1. Güzel Sokak No:23 Bursa'),
('2648ebea-6027-48a1-b672-7e6e6b86cd2e','a42d8839-caef-4422-888f-cbfdf4188c5b','befa yatak','züleyha','05377266600','yenice mah. '),
('269264a4-15d7-4979-94e5-201703dfb5e9','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Hıdır ılyas','İlyas','905345671111','Masa sehpa '),
('2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','e6d4faef-484c-4ce7-992c-906e05fc083e','ÇINAR SANDALYE','NURGÜL HANIM','905521739379',' Mahmudiye, 26. Mobilya Sk. NO:20/1, 16400 İnegöl/Bursa'),
('2704bded-07cd-4558-a268-9ca0c0357bd2','b0c1192a-7d38-4b69-a901-778f65a98b9d','BY NECİP','Necip DAYAN ','905321655178','Ağaç işleri 20 . Sokak nı 1/ H'),
('27542b9c-f586-4152-836b-5dedeaae0be2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜMÜŞ MASA','CELİL','5333127916','A'),
('275bd1c2-793d-4e48-8b62-501b1389031a','4b494cd3-c9fc-4519-ba9e-b4261706ae49','cs home','Gökhan kurban','905466117461','Ertuğrulgazi caddesi 6 skk no 37 cs home'),
('27906a3f-0457-4fcf-aaec-ef5d378ed41a','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','mdg home','münir','05349780330','ağaç işleri 14. sokak'),
('282b8da3-aea7-415e-941c-487e8fa72a29','67e5a145-070e-4e0f-9c3b-09f273d6ed40','NINAS HOME','NAZIF SUAT','05312762034','Mahmudiye Mahallesi 1. Yunus Emre Caddesi No : 8\nBursa/İnegöl'),
('2835bf76-fb31-48f4-b854-77c0b1334523','a42d8839-caef-4422-888f-cbfdf4188c5b','indivani yatak','ahmet','5325928636','ertuğrulgazi caddesi inobilya yanı'),
('288d11ec-0edb-4692-ad9d-f391ae6bf0fd','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','masavia','sedat bey','05407954079','mahmudiye mezarlığı karşısı'),
('28ca5666-3c89-4dd3-8af0-508ec9c9962b','e6d4faef-484c-4ce7-992c-906e05fc083e','AZUR MOBİLYA','İBRAHİM BEY','905433039079','OSMANBEY CD KOKOREÇÇİ METİN YANI AZUR MOBİLYA'),
('2b2215d7-4285-40b9-a454-d3b2d06850dc','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','caliform moona mobilya adına alıncak','ersan ','5335095223','anje yanı çevreyolu arkası'),
('2ddb5e8a-7bcf-4697-802e-3dd8f2430d6a','6133a2db-79c4-4372-9338-505db46b1847','Mutena koltuk','Hakan bey','905389584394','Cerrah ,Turgut Reis Cd. No:13'),
('2e3f153d-057f-4d25-9484-2b239730eaf4','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','MEF','MEF SEVKİYAT SORUMLUSU','05407185588','Yeniceköy, ŞEYH ŞAMİL CD NO:2/E, 16400 İnegöl/Bursa'),
('2ee74fe2-85eb-4726-a614-5331f619f8c4','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','EKER\'S HOME','EKER\'S HOME SEVKİYAT','5518243304','Yeniceköy, 633. Sk no 6, 16400 İnegöl/Bursa Eker\'s Home'),
('2fd50197-3dc1-4ac8-b138-29abaddca567','8426da95-71ca-4ae9-bea1-1e7259d72f62','weltew home','berna hnm','05305252780','inegöl yenice '),
('2fdf870f-fec1-4d26-8970-49a9139ddf32','e6d4faef-484c-4ce7-992c-906e05fc083e','BALİ SANDALYE','FURKAN BALİ','905457754679','BP PETROL YANI MATT FABRİC ARKASI KALASLARIN YANI'),
('3059ed85-10e2-440b-b1a0-3d75684d8c35','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Albessa ','Hilal hanım','905384456590','Ankara yolun'),
('310512d8-e1fe-413a-b36c-59893ec30670','dea91080-5383-4085-af2e-7eace2c64224','EVDELÜX KOLTUK','YASEMİN HANIM','5434840216','Mahmudiye, Tüpçüler Sk No: 16/1, 16400 İnegöl/Bursa'),
('31d2d78e-770d-45bb-b045-c487ea65c7b0','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Erbağ koltuk ','Ayhan Ergin ','905310154583','Ertuğrulgazı caddesi 8.noter üstü '),
('32145bc0-a96d-4e4b-8ffc-5207fa33019d','76950dd8-e203-45e6-9e40-29f7046e8db7','MODAPARK','MURAT KARTAL','05398561293','14.SOKAK SAĞDA'),
('32312cec-afee-46c0-86f3-2665a0e6482f','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','LOYKA','ŞENGÜL','5418466113','HAMZABEY SABRİNO ARKASI'),
('3353e266-6d8b-42cd-9658-4221761635bc','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','Ekin bebe','ŞABAN BEY','05497149663','Alanyurt sanayi fulya ilerisinde'),
('33694156-ed86-4aba-9646-f71495d8b6c3','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','Art Sofa','yiğit ','05465458879','Sanayi camiye yakın bir konumda artsofa mobilya'),
('33a14305-ae7d-4fa9-aa1a-b5ab4e053718','3c7190b6-f6ee-4275-8958-d7af952132ab','SM Tasarım','Celil Bey','05333127916','26. Sokak Sağ Taraf'),
('341b91cf-1aad-4739-bd45-e472108bd1b4','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','COOL HALI ','ESRA HANIM','905337938543','YENİ MAHLLE HAMZABEY CAD. NO:64 İNEGÖL'),
('348a4f46-0bf7-4740-9ba7-c22ef42d9afe','1b51c5f7-649a-424f-ba17-cc37d6298af9','MELYA SANDALYE','YAKUP İLARSLAN','05415950296','AVRUPA OTOMATİV ARASI'),
('34a4a5f9-4481-4ed2-bdfc-bdfd411a65de','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','NOVAK MOBİLYA','NOVAK SEVKİYAT','05435401027','SÜLEYMANİYE MAHALLESİ - BURSA ESKİŞEHİR YOLU 16400 İNEGÖL BURSA'),
('34ebf1df-a7f3-4a9f-a0f3-63e313fd93df','338e8c09-4ca5-4617-bfc1-a0692646d475','BestLine','Kerim Bey','05326397661','mahmudiye mah. 30. sk no.26'),
('36e82dc9-b163-4baa-9c0d-aca42aa818b7','59868701-abe4-4705-a7e6-d91c2c69262e','VERZE KOLTUK','ERCAN BEY','05372744440','Mahmudiye, Tetik Sk. no: 17 İnegöl/Bursa'),
('3702a172-da98-4e48-8071-547c4f3e92e8','22a1dbd6-475c-4d4b-bb13-f459e3029634','ALP SANDALYE','SALİHA HANIM','05065105061','MAHMUDİYE MAHALLESİ ÇALIŞKAN SOKAK NO20'),
('37486a5b-3dc6-4298-9bfd-3291b8f42d46','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Comfortlife ','Mücahit ','05079047428','Ağaç sanayi 7.sokak '),
('375dfe5e-e7aa-4633-9eeb-04b116f2bdec','3addc5c1-e82b-4a1a-b4af-1f66307a9108','3ARDEKO','SİNAN BEY','905337268634','AKHİSAR MAHALLESİ 279.SOKAK CADDE B BLOK NO:3'),
('376fe363-320f-40e0-919d-9ee9ddbd1460','7bb6a552-e940-4456-bfc3-50a13013996c','meno chair','selin hanım ','905070868685','Mahmudiye, Nil Sk. No:27 iç kapı No: 2, 16400 İnegöl/Bursa'),
('37998928-93fa-4836-b160-317ec8eab2bf','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','natty','osman','5060565119','ağaç işleri girişte solda itfaye karşısı '),
('37d5103d-f240-43ec-856a-cacc76fb51da','7bb6a552-e940-4456-bfc3-50a13013996c','Odaon mobilya ','Ertuğ ','05325729228','Ağaçişleri 19.sokak buyu dizayn mahmudiye İnegöl '),
('388ee551-1f3e-4099-9b89-135966096ae1','f4861afa-47df-4a6b-b9ca-da22afe273e4','Moe Bedding','Oğuzcan ','05459475054','Akhisar mahallesi 2. Fatih caddesi numara 2A 1 nolu iş yeri ( Erka çevre yanı en son köşe dükkan)'),
('38a7333e-8a0f-4e45-957f-e11d538d2097','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Riyo home','Riyo','905354772177','Bilalebeş cami aralığı '),
('3a7c0902-b3d7-4dac-94d9-f025250358d1','e6d4faef-484c-4ce7-992c-906e05fc083e','MODO KOLTUK','MODO KOLTUK','05382265308','OSMANBEY CADDESİ KARAKOLUN KARŞI ARASI 50 METRE İLERDE SOLDA LOKANTANIN ÜSTÜ(GİRİŞ BİR ARKA SOKAKTAN)'),
('3aaf399d-9333-4855-af06-b93ecd8fd0d4','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','GENCECİX ','ALPER BEY ','05417187004','İHTİSAS O.S.B 3.CD.NO:4 HAMZABEY'),
('3b6fa63c-5b6a-4502-998a-e848aaf7eee8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','BRAWWA MOBİLYA BÖLÜMÜ','SELMA','5461680205','AĞAÇ İŞLERİ SAN SİT BİLAL HABEŞİ CAMİİ KARŞISI'),
('3b94945e-5e1d-490c-a332-cfe0cbb462a1','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','VERAS LİFE','HAMDULLAH','05347895819','ESKİ ERVA KUMAŞIN YANINDA'),
('3c36ce4d-d86c-4180-9045-afb7bf10f4c3','47880255-08ee-4e99-940b-16038e07de55','BİCARGO DEPO','AAA','5325000478','BİCARGO DEPO'),
('3c9d505e-31ff-4617-83d0-78974bff3f65','3addc5c1-e82b-4a1a-b4af-1f66307a9108','HAMZA ÖZKAN SANDALYE','HAMZA ÖZKAN','905315103056','MAHMUDİYE MAHALLESİ 1.MOBİLYA SOKAK NO:4'),
('3d19e2da-7de7-453c-83fa-6edd8258f6eb','47880255-08ee-4e99-940b-16038e07de55','brawwa koltuk','raşit bey','05058521279','hamzabey'),
('3d32bf6b-0757-423d-ade3-bc6296974cd6','a42d8839-caef-4422-888f-cbfdf4188c5b','fulaş sandalye','faruk','5061610764','bilal habeşi cami sokağı'),
('3d6783ef-fea9-4164-b9f9-15509db76abe','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','Mobset','Mustafa','905337156108','28. Mobilya Sk. No: 8'),
('3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','59868701-abe4-4705-a7e6-d91c2c69262e','MERTSOY KOLTUK','FERİDUN BEY','05364571040','Ağaçişleri 15. Mobilya Sok. sol taraf'),
('3dad3bde-f663-478c-ab8f-fcc03ea465e3','67e5a145-070e-4e0f-9c3b-09f273d6ed40','TRANSJET DEPO','MURAT ILHAN','05377700495','Cumhuriyet mahallesi 66.sokak no:7/J Bursa/Inegöl'),
('3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','PAKKO KOLTUK','YASEMİN HANIM','05434840216','TÜPÇÜLER SOK NO;16'),
('3e78db22-08b5-4c8e-9d69-c184e551e40a','3c7190b6-f6ee-4275-8958-d7af952132ab','Seramik Masa Üreticisi','Sedat Masavia ','05407954079','Mahmudiye Mezarlığı karşısı. Masavia. Net Nakliyat yanı'),
('3f52810e-0163-424b-bafe-fe344a89966e','f4861afa-47df-4a6b-b9ca-da22afe273e4','Masami','Masami','05050083144','Mahmudiye Mahallesi. 29.Sokak Ağaç İşleri Bölümü No:19'),
('3f82bc1f-6085-4db4-8817-28534baf362d','22a1dbd6-475c-4d4b-bb13-f459e3029634','Reve Yatak ','Seyfullah','05389658789','Mahmudiye mahallesi ağaç işleri 24. Sk.no.16'),
('40bce34f-0efe-4b42-bb92-5db5b86da650','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','DOSSİ','BURAK','05414848142','26. SOKAK SOLDA'),
('40dea42f-54e9-4d38-adfa-1fa968cd98a1','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','Modapark','Murat Bey','9005398561293','14. sokak Modapark '),
('40df0c0c-3f7b-4556-bd4a-50ad8d6c479a','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','Yatakci mustafa','Mustafa','05354552318','Üçgen park bayfabrjk kumas dibi'),
('4238f59c-8531-452c-b9cf-d7563efaba46','5f244b33-94ca-477b-ae15-8d3bf79ba2c8','inhouse Koltuk','Emre Doğan','05414276153','Mahmudiye mah. 25. mobilya sk. No:20/A'),
('4250fc84-7698-46cc-a861-1e041d4225c2','a42d8839-caef-4422-888f-cbfdf4188c5b','mobievim','alparslan','905334685399','osmanbey caddesi'),
('4268acef-d121-4ea9-8c0b-53f8bd63c8b7','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MASS SOFA','Büşra hanım','00905161620103','mesudiye mahallesi 1.güzel sokak no:20 k:3'),
('426e30ee-28ce-486d-9080-a0edc097cd6f','d8172c72-d29b-40c5-b0b2-0277129ff6b4','GÜMÜŞ MOBİLYA','PINAR HANIM','05306930255','AĞAÇ İŞLERİ 26 SOKAK SAĞ TARAF  ( EN SON SOL DA ) '),
('427bd939-f084-4fe2-bfc3-a1c352737138','6133a2db-79c4-4372-9338-505db46b1847','Moe Bedding','Oğuzcan Bey','05459475054','Mahmudiye mahallesi osmanbey caddesi no:67 Inegol'),
('44c404b3-a618-4af5-bdfb-ad381f049053','47880255-08ee-4e99-940b-16038e07de55','RİXXE','SENEN HANIM','02247131903','Mahmudiye, Gazcılar Sok No:11, 16400 İnegöl/Bursa'),
('44cf4122-e1df-4170-a4e5-fba824da1ad5','0debd19b-d90b-48a0-9568-2d01319377e0','Bifurni','Fatlh','05354762167','IS BANKASI ARKASI'),
('44eda159-93f6-4740-a6d1-e80dd4fa6bfa','59868701-abe4-4705-a7e6-d91c2c69262e','LİN SANDALYE','BEKİR BEY','905369239352','Mahmudiye Mah. Burcu Sk. No:5 İnegöl/Bursa'),
('44fae8f2-0263-4e71-93cc-b8909d92767e','47880255-08ee-4e99-940b-16038e07de55','muka home','fatih bey','05393812829','ağaçişleri 16. sk'),
('45751f9c-665a-48c9-8e4b-15fdeb993163','4126da30-ba9b-41b7-be29-865069aa484c','Massimilano','Salih AYDIN','905342491655','Küçükbalıklı mah. 6.cadde'),
('45dcc859-be53-4cab-8472-2f27cf4ff8d4','5b04798d-86e0-44d7-9219-194a32dc85ff','Ard sandelye ','Davut','905319532270','Bilal’i Habeşi Camii yanı'),
('46e0d98a-c7cc-4fb9-a44b-673575d4c75d','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Palermo mobilya ','Erhan ','905077375446','Ağaç işleri 28. Sokak restore mobilya fabrika yanı '),
('47642923-9495-43d6-b53f-dde58ab3d113','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Ebbe sofa ','Ebbe','05324337602','Ağaç işleri 25. Sokak'),
('48795997-487d-4854-b209-9dd433e1e30e','e6d4faef-484c-4ce7-992c-906e05fc083e','KAYA KOLTUK','ERKAN BEY','05303336705','Küçük Sanayi Ağaç İşleri Sitesi 26. Mobilya SK. No:5/1 İnegöl/Bursa/Türkiye'),
('48eb2bc7-40b5-4ca1-b858-ef3228babff4','3c7190b6-f6ee-4275-8958-d7af952132ab','Sandalyeci Bekir','Bekir Çakır','05369239352','Elitis Home mağaza karşı aralığı. Sol taraf'),
('4a0bcddc-f75a-4ef1-bcb8-98d9697834f0','e6d4faef-484c-4ce7-992c-906e05fc083e','AVF MASA','KADİR BEY','05459011033','5. MOBİLYA SOKAK NO 30 '),
('4a9b58a0-ac06-46ed-809a-96513292a470','a42d8839-caef-4422-888f-cbfdf4188c5b','family','mehmet bey','05324476092','kalburt doğtaş arkası'),
('4ccea6fc-d526-479a-9e27-42643a5f294f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','Albessa','Hilal','905384456590','mesudiye mahallesi 1.güzel sokak'),
('4d3f433c-6ebf-4443-a8bd-319b61cbe400','47880255-08ee-4e99-940b-16038e07de55','AREA','FUNDA HANIM','05078395126','MOBİLİUM ARKASI'),
('4d4f64a5-4f0c-4a6e-b80a-560be37f0222','7bb6a552-e940-4456-bfc3-50a13013996c','konum mobilya ','sadık yörük ','05312765435','Mahmudiye mh ağaç işleri 11.sk no 1. Konum Mobilya'),
('4dd1b930-8fb1-4b8f-bcf3-3ac9e525b530','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Sels sofa ','Salih ','905350535329','Ertuğrul gazi caddesi Teknik mobilya arkası'),
('4e8815b4-d0c2-43fc-9970-1419828c77bc','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ALBESSA MOBİLYA','AHMET','05324444444','16. SOKAK SAĞDA NO:15'),
('4ee1e344-a27f-4e11-b6f0-254b520be2de','338e8c09-4ca5-4617-bfc1-a0692646d475','MasaVia 2','Sedat Efe','05407954079','4. mobilya sokak No:11/A Keyfex Export'),
('4fbb639d-63c8-459f-9820-d8a261260d94','47880255-08ee-4e99-940b-16038e07de55','beymi sandalye','uğur bey','05465891689','konum '),
('4ff312dd-65c7-44b0-9a19-b806f0f3dd52','f4861afa-47df-4a6b-b9ca-da22afe273e4','Decoria','Abdülkadir ','05522047153','Mahmudiye mahallesi Kafkas sokak no:34'),
('5017c952-a8be-4946-9fc6-e2ba9794cd7c','47880255-08ee-4e99-940b-16038e07de55','ikon koltuk','aysun hanım','05326513115','mahmudiye mh. 31. mobilya sokak no:3'),
('5046ae7d-9e56-4e62-ae01-c73636a962f1','3c7190b6-f6ee-4275-8958-d7af952132ab','Matışlı Mobilya','Selçuk Matışlı','05333501863','Zafer Caddesi No:45, Bacanaklar Lokantası Yanı. '),
('50565934-d787-4253-9c21-6aa3e640ae2a','1c402ba0-2fcc-4b19-b28c-bd6071805ddd','Karyolacı Ali','Ali İhsan','05457106306','7. mobilya sk. ayhan makina yanı'),
('51246f79-a4dc-4379-81c8-e874ed8759be','338e8c09-4ca5-4617-bfc1-a0692646d475','İnfam Mobilya','İlknur Hanım','05347939903','Mahmudiye Mah 29. Mobilya sk. No:17\nİnegöl, Bursa'),
('51da69a0-2362-4297-a67b-cc4c6cf29722','daf7fb45-7940-4f5b-8733-e2e2d6030da7','INHOUSE ','EMRE ','5414276153','AĞAÇ İŞL 25. SK '),
('51da9ac2-c7a9-4617-9567-24508d9972a9','f4861afa-47df-4a6b-b9ca-da22afe273e4','Belita Home','Nazif','5312762034','Huzur mahallesi Bedirhan Sokak numara 7A Belita Home'),
('52673772-7e1b-4ab3-a894-0c752533ec4e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ODALIFE ','SAMET','5457171666','ERTUĞRULGAZİ'),
('52732831-17b3-4399-9938-3746ee85c714','6133a2db-79c4-4372-9338-505db46b1847','Luna sofa','Melihcan Bey','05433426015','Sinanbey Mah. 22. Metal Sk. No:10/14A'),
('52a4ba6b-a138-44a6-a361-b229db2520b6','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ROİS','CEM','5526421611','OSB SÜLEYMANİYE 1.CAD NO:46 CİHANGİR HASTANESİ ARKASI'),
('530a4862-a7ee-431b-9915-be6cdc9904bc','a42d8839-caef-4422-888f-cbfdf4188c5b','puffim','dilara','5523627469','itfayenin arkasında kalıyor'),
('533a7400-a525-402f-940b-7226491c34e0','7f34d75e-284a-42ac-9cbe-a29174748991','puffin','Dilara','05321627469','Mahmudiye  Karaağaç cad. No:5 İnegöl bursa'),
('53547128-7fcb-4279-a2ae-cd050bf436d4','5f3f13d2-795f-4eba-b7bd-61428d952ca2','Albessa','Müşteri Hizmetleri','905384456590','Mesudiye, 1.GÜZEL SOLAK NO=23, 16400 İnegöl/Bursa'),
('53578ffb-8d37-4230-b442-29c3ab163434','d89f6e4c-ad0d-4d1f-98c2-188a94803196','Mfour sandalye ','Muhammet yılmaz ','05332942204','Ertuğrulgazi caddesi arkası '),
('53ae4048-1a4f-43a7-bffe-8e56ad98d8c7','67e5a145-070e-4e0f-9c3b-09f273d6ed40','HK home','Hamza özkan','05315103056','Mahmudiye mahallesi 1 mobilya sokak No:1 '),
('543cea99-2d75-4e63-a5d0-ad61071e5961','47880255-08ee-4e99-940b-16038e07de55','GENCECİX','ALPER BEY','5417187004','HAMZABEY'),
('54695867-3acc-4cb4-bb9e-c67e92691a43','b0c1192a-7d38-4b69-a901-778f65a98b9d','ayaz masa sandalye ','volkan ','905317220319','Mahmudiye mahallesi Kafkas sokak no 66'),
('5485c336-8437-4cb0-bae1-d55f2b1d2698','3addc5c1-e82b-4a1a-b4af-1f66307a9108','ALBESSA DESİGN ','FURKAN BEY','905384456590','MESUDİYE MAHALLESİ 1.GÜZEL SOKAK NO:23'),
('55934c55-9fe9-46ce-b8a4-cf7669e12b21','5f3f13d2-795f-4eba-b7bd-61428d952ca2','M four sandalye','Mustafa','905330374123','Mahmudiye Mh. 1.Yunus Emre cd. No:34'),
('5836855a-2786-4563-b6df-022866b3cc0b','4b494cd3-c9fc-4519-ba9e-b4261706ae49','Albessa bedding','Furkan dursun','05387036590','Mesudiye mahallesi 1. Güzel sokak no 23'),
('585d2a5c-0e9a-403b-bc40-9b69be00e78c','4b494cd3-c9fc-4519-ba9e-b4261706ae49','Nvr home ','Burak memiş','905467855415','Mahmudiye mahallesi altınpark sokak no 19'),
('59c49344-2230-4d00-9839-032154f423eb','7bb6a552-e940-4456-bfc3-50a13013996c','ARTEV HOME ','HATİCE KURUKAMA ','905534486148','YENİCEKÖY MAHALLESİ 628. SOKAK NO:5 ARTEV KOLTUK'),
('5a1756f4-a90c-4bd5-a9ba-e740908af1ee','338e8c09-4ca5-4617-bfc1-a0692646d475','Dimax Mobilya','Selcen Kurt','5492800999',' Mahmudiye, 2. Mobilya Sk. No:31 İnegöl Bursa'),
('5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','59868701-abe4-4705-a7e6-d91c2c69262e','ELİTİS HOME','BEKİR BEY','05393755101','Ertuğrulgazi Cad. No:84 '),
('5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','b0c1192a-7d38-4b69-a901-778f65a98b9d','mobilyalar ','İlyas','905345671111','Egemen sokak no 16'),
('5c7eb155-68f1-4155-9120-45f67cc06218','e6d4faef-484c-4ce7-992c-906e05fc083e','PABLO HOME','FEYZULLAH BEY','05435878604','Süleymaniye, İstiklal Cd. No: 19/AA, 16400 İnegöl/Bursa'),
('5e537499-0979-40ea-9a81-c72e5aa6ab77','47880255-08ee-4e99-940b-16038e07de55','şahinler ahşap','mustafa bey','05388690163','Mesudiye, 1.güzel sok '),
('5e7234db-e65e-4b54-a5a1-a7e04e82c8dd','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','MEF','HANIMEFENDİ','5407185588','YENİCEKÖY ŞEYH ŞAMİL CAD NO:2/E RAV MOBİLYA SIRASI'),
('5f260a62-f21e-45a8-9b8b-8bd8c1084273','7bb6a552-e940-4456-bfc3-50a13013996c','belita ','enes bey ','05369707813','Huzur, Bedirhan Sk. No:7, 16400 İnegöl/Bursa belita'),
('5f8d450a-340b-463c-a26d-f9bbade0a8c2','338e8c09-4ca5-4617-bfc1-a0692646d475','Brezza Sofa','Doğaç Bey','5340826280','Cumhuriyet Mah. Çalıkavak Sokak No 11-1\nİnegöl, Bursa'),
('5fd406cc-8ac0-444f-9ac0-390a68b09f2e','6133a2db-79c4-4372-9338-505db46b1847','Beksa koltuk','Behlül bey','05454647633','Mahmudiye mahallesi cemiloğlu Sokak no 30'),
('613af80c-91f0-46fc-a2e2-30762123b7bc','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','LİDYA MOBİLYA ','NURSENE HANIM SSH -EMİNE HANIM SİPARİŞ 0507 159 61 04','05070324571','YENİCE MEVKİ İNEGÖL BURSA KARAYOLU 5.KM İNEGÖL/BURSA '),
('61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','3addc5c1-e82b-4a1a-b4af-1f66307a9108','MASAMİ','İBRAHİM BEY','905061458315','MAHMUDİYE MAHALLESİ 29.MOBİLYA SOKAK NO:19'),
('61e91ad4-2b87-40b0-b5f5-3fddc4c21b63','e6d4faef-484c-4ce7-992c-906e05fc083e','EKERS HOME','SEVKİYAT','05518243304',' Yeniceköy, 633. Sk no 6, 16400 İnegöl/Bursa'),
('62fd202f-cdb0-47ed-839d-62ed1e68a513','dea91080-5383-4085-af2e-7eace2c64224','İNBEDDİNG YATAK','SEYFİ ','5398386962','Mahmudiye, İbrahim Şenbel Sk. No:28 D:30, 16400 İnegöl/Bursa (BELEDİYE HAVUZU KARŞISI)'),
('63154ed3-bb98-4fbc-84bc-504d1b4d4b37','59868701-abe4-4705-a7e6-d91c2c69262e','SM TASARIM','CELİL BEY','05333127916','Ağaç işleri 26. mobilya sokak sağ taraf'),
('6329df03-a245-4a41-89ed-4616778a3d4f','dea91080-5383-4085-af2e-7eace2c64224','ACCA MOBİLYA','HALİL KABAK','05467844739','Mesudiye, 33. Mobilya Sokak no23, 16400, 16400 İnegöl/Bursa'),
('6336ca18-c73e-4fb5-9d8a-9c59020ccd58','27cbce83-310c-4e98-830f-7433b10c2efd','salon koltuk','batuhan çağlar','05349177157','7.sokak solda salon koltuk '),
('64286c9b-2107-4454-8058-af5098413885','daf7fb45-7940-4f5b-8733-e2e2d6030da7','TREE MOBİLYA','TREE','905336509273','AĞAÇ İŞLERİ SAN SİT'),
('6529c390-f12c-433f-93eb-98f59330dac1','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','EMRE TÜMER','EMRE TÜMER KARYOLA','905336241868','Mahmudiye mahallesi Ankara caddesi no 112'),
('6541bf5b-5f93-4dc2-b816-de76cac751ae','5f3f13d2-795f-4eba-b7bd-61428d952ca2','AHMET','AHMET','905342006775','Mahmudiye Mh. Çalışkan Sk. No: 29'),
('66cb5fb6-f188-4045-af72-1ffd981f98df','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','AKYOL','KEMAL','5427760770','HAMZABEY GABBA ARKASI'),
('66fe0e79-2382-4817-9bdf-4379c5fcde00','5b04798d-86e0-44d7-9219-194a32dc85ff','Livanni','Aaaa','5325000478','23. Sağ'),
('679716f3-7799-4e9d-a984-9fe004b5689e','5f3f13d2-795f-4eba-b7bd-61428d952ca2','MASAMİ','SİPARİŞ HATTI','905050083144','Mahmudiye Mh. 29. Mobilya Sk. No:19  Masami'),
('67c34dc2-4657-4323-8fc0-4ff05ed31067','47880255-08ee-4e99-940b-16038e07de55','acca','halil bey','05467844739',' Mesudiye, 33. Mobilya Sokak no23 köfteci eşrefin karşısı'),
('687faa80-4d93-4ee8-8977-05fb50c6be5b','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','OLENNA KOLTUK','ORHAN BEY ','05516067407','MAHMUDİYE MAHALLESİ ŞENOL SOKAK NO: 5 (ŞENOL SOKAK VE CEVAT PERMAN SOKAK KESŞİMİ)'),
('697dd7c1-3e5b-4f0d-bdaa-311ea7554024','338e8c09-4ca5-4617-bfc1-a0692646d475','Emek Sandalye','Vehbi Bey','05326932644','Organize Sanayi Bölgesi 2. cadde no:15 (Garderobe Mobilya Yanı)'),
('6a29d4d5-7923-4e32-847a-7b8f963ba237','338e8c09-4ca5-4617-bfc1-a0692646d475','Masa Via','Sedat Efe','05407954079','Mahmudiye MAh. Gündüz Sk No:6 (Mezarlığın Kapısının Karşısı)'),
('6a8c37c6-8513-4d55-b16e-12888afbcac8','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','EFAR HOME','BİLİNMİYOR','5372183287','AKHİSAR MAH. 281 SK. '),
('6aace7da-da92-4368-bc84-69b4e8a590ec','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','azur ','azur','05433039079','perşembe pazarına gelmeden osman bey caddesi kokareççi metinin yanı '),
('6bab619f-152f-4b59-9114-91519515b44a','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','NEW BED','ERKAN','05321551450','KALBURT MOBİLYA CENTER OPETİN ORDA'),
('6cf48902-0efb-4fdd-97e3-79e7b0fd3a18','47880255-08ee-4e99-940b-16038e07de55','ELİTİS MASA','CELİL BEY ','05333127916','AĞAÇİŞLERİ 26.SK'),
('6e46207d-9078-4d5b-a14c-ca7fa469d930','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','CALİFORM','BURAK','5541770779','HAMZABEY ÇIKIŞTA SAĞDA'),
('6e484d9e-6141-4730-8ede-58b45593eadd','47880255-08ee-4e99-940b-16038e07de55','ganze koltuk','ercan bey','05325740932','mahmudiye mh. müjdeler sk no26 k2'),
('6fbd26ef-ff43-493a-8a76-88ea67ec932a','e6d4faef-484c-4ce7-992c-906e05fc083e','SENS DİZAYN','GÜL HANIM','05558993989','Sinanbey, 24. Metal Sk No:14, 16400 İnegöl/Bursa'),
('710495b2-769c-4898-a829-bdc3d55f5a67','a42d8839-caef-4422-888f-cbfdf4188c5b','moderno','x','5496633766','x'),
('75384ade-94c9-4ce5-9273-2628441b4dff','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','katre','selim','5384153505','cumhuriyet mah çalıkavak sok. no:3 a1/1 inegöl bursa'),
('754dc58e-48a9-4cf6-bcec-82201990299e','3c7190b6-f6ee-4275-8958-d7af952132ab','albessa karyola','müşteri hizmetleri','05384456590','ALBESSA DESİGN'),
('7582128f-7119-48f4-b125-e6b8bfb84dc3','e6d4faef-484c-4ce7-992c-906e05fc083e','DURMUŞLAR SANDALYE','ERKAN BEY','05366887900','Mahmudiye, 30. Mobilya Sk No:9, 16400 İnegöl/Bursa '),
('7599d274-6992-40d7-b766-7b0e19fec8bb','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','NEWBED','ERKAN KURTULUŞ','05321551450',' Süleymaniye, İstiklal Cd. no:25, 16420 İnegöl/Bursa (KIRCALI MOBILYA CENTER)'),
('763afea4-80d7-4980-bdda-79840ca9431f','6133a2db-79c4-4372-9338-505db46b1847','Moda dizayn','Halit bey','05350745597','Pazartesi pazarı arası'),
('7706d8c9-a8e3-47b4-a873-3563fd58b344','d8172c72-d29b-40c5-b0b2-0277129ff6b4','ÖZEL TASARIM KARYOLA','ALATTİN ABİ','05437388352','ERTUĞRULGAZİ CAD ARI MOBİLYANIN KARŞI ARASINDA ANİMO MOBİLYANIN YANI '),
('77b2120f-65b9-4a77-bcee-46f186308b42','7bb6a552-e940-4456-bfc3-50a13013996c','FAMİLLY GRUP ','BANU HANIM ','905336513797','CERRAH MAHALLESİ 1121 SOKAK NO:5 İNEGÖL FAMİLLY GRUP'),
('77b510c8-b376-4b6d-abeb-fcce37608eea','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','alkusa','alkusa sevkiyat','05533931838','meltem kumaşın yanı '),
('7814218e-af02-47df-a8d4-279441fc9da2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','GANZE','ERCAN BEY','905325740932','AĞAÇ İŞL '),
('784eb191-99d8-4460-bc51-899062354f51','daf7fb45-7940-4f5b-8733-e2e2d6030da7','NOVANNİ','ALİ RIZA','905333801784','ERTUĞRUL GAZİ'),
('7856bd1b-ac4f-48c7-800c-41fd856e9a68','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Massami','Pelinsu ','905050083144','Sanayi '),
('78e2dc85-b353-4fad-afc2-22edc5ab72b7','a42d8839-caef-4422-888f-cbfdf4188c5b','chessa','onur','05458478728','akhisar mazzini karşısı'),
('7963c6bf-ccbd-46ea-be88-bdb7893ba746','a42d8839-caef-4422-888f-cbfdf4188c5b','sude','fatih','5335119785','18. sokak sağ'),
('796b5ae1-0f16-455e-a83a-20f60699147d','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','SEVEN KİDS ','MÜNEVVER HANIM ','05441121777','CUMHURİYET MH.YILDIRIM BEYAZIT CD.NO:5 C-2'),
('7a03ab6a-7f15-4dc4-965f-2746a5d6a508','e6d4faef-484c-4ce7-992c-906e05fc083e','AFENZA MOBİLYA','FABRİKA','905374930860','Mahmudiye, Osman Bey Cd. No:57, 16400 İnegöl/Bursa'),
('7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ard sandalye','Ard sandalye','905526950365','tam adres bilinmiyor '),
('7abbdd6b-3367-4f39-9f36-a6d3cdf65a0e','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','3ARDEKO','SİNAN BEY','05337268634','AKHİSAR,B263SK.NO:14,16400İNEGÖL/BURSA'),
('7b0336b5-a2db-464e-8deb-fe7d5232aeb4','59868701-abe4-4705-a7e6-d91c2c69262e','SOFA PARS','SİPARİŞ SORUMLUSU','05383992616','Mahmudiye, Ağaç İşleri 31.Sok No:13/1, 16400 İnegöl/Bursa'),
('7b2afa47-d4af-48bd-b374-d3b6fd445e25','67e5a145-070e-4e0f-9c3b-09f273d6ed40','Melya sandalye','Yakup ilarslan','05415950296','Mah mudiye mahallesi mehtap sokak No:5 Kat 3'),
('7b712532-9812-43fa-ab2d-594a6ef545fc','7bb6a552-e940-4456-bfc3-50a13013996c','BY CİHAT ','FATMA HANIM ','905075075644','MAHMUDİYE MAHALLESİ 22. SOKAK NO:9 BY CİHAT AĞAÇİŞLERİ'),
('7cb392b7-b69b-4873-a75e-6c275508e9bb','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','Bİ CARGO','BİLAL BEY','05325000478','DEPO'),
('7cde08b6-b128-40a0-b020-22a0c1ce096f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ODDO','ELİF ','5374981516','İNEGÖL'),
('7cee164b-481d-4cb6-9e7b-0bc4a72c20c9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','Zetna Koltuk','bilgin bey','05359410180','Mesudiye 1. güzel sokak no:24,16400İnegöl/Bursa'),
('7e44b405-41d5-4dca-ae1c-595516035a61','dea91080-5383-4085-af2e-7eace2c64224','DRİTA MOBİLYA','İSMET ','5364006762','Mahmudiye, 2. Blok Belediye Sitesi Sk., 16400 İnegöl/Bursa'),
('7e8fb533-8664-49b3-a0e5-81b4c869785a','dea91080-5383-4085-af2e-7eace2c64224','SOFARES MOBİLYA','ALPER BEY','5419696116','Mahmudiye, 11. Mobilya Sk. No:54, 16400 İnegöl/Bursa'),
('7ef18eb6-fc54-4770-be95-51abea3c644d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','Lego Chair','Hakan Metinkol','05442824485','Mahmudiye Mahallesi , Hasan Koyuncu No17'),
('7f99932b-8efd-4e4d-a230-70d3e335e99c','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','EL AKSAPAPEL','SERDAR FIŞKINÇİÇEK','05303113326','MAHMUDİYE MH. 14.MOBİLYA SK. NO.14 EL AKSAPAPEL'),
('80002933-91c7-4fef-85d0-eebac7edf53f','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','Confortline','Mücahit','05079047428','Mahmudiye mahallesi,7. Mobilya sokak '),
('8065d17a-ef01-4080-8c14-b1a6045b147e','7bb6a552-e940-4456-bfc3-50a13013996c','via seramik masa','sedat bey ','05407954079','4. sokak 11 numara via seramik masa mahmudiye mahallesi '),
('808cb2af-ba2d-4e4c-8c38-6a6f9474cfff','4b494cd3-c9fc-4519-ba9e-b4261706ae49','Dkm ','Hasan','905306423916','Ağaç işleri 29. Mb sokak no 5 '),
('81ed0ba8-3918-47d7-86eb-3ffd5cafb042','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','LIMA KOLTUK ','NAZIF SUVAT','05312762034','Mahmudiye Mahallesi 1. Yunus Emre Caddesi No : 8 Bursa/İnegöl'),
('82336023-f687-412c-8605-bb4954790dc2','1b51c5f7-649a-424f-ba17-cc37d6298af9','3ARDEKO','SİNAN BEY','05337268634','AKHİSAR, B263. SOKAK İNEGÖL BURSA'),
('82f2850e-d57d-4cff-b891-990a88a4a281','7bb6a552-e940-4456-bfc3-50a13013996c','Family grup ','Banu ','05336513797','İNEGÖL BURSA KARAYOLU ÜZERİ 3 .KM KALBURT MEVKİİ MOB.PLAZA'),
('83164ef4-809a-4565-8151-dea5ddbe27ec','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','PABLO HOME','FEYZULLAH','905435878604','SÜLEYMANİYE, İSTİKLAL CD. NO 19/AA'),
('83a6ec99-043f-45a1-9964-ae544a047455','338e8c09-4ca5-4617-bfc1-a0692646d475','Bi’Furni','Burak Demir','05452025244','Mahmudiye Mah. Mucit sk. No:6 Kat: 3 İnegöl '),
('83e3f92b-4fca-4998-b3fe-5df1f731d2df','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','TUNCAY KOÇOĞLU','GÜLER HANIM','00491773713548','SOLDİNER STR 84, 13359 BERLİN ALMANYA'),
('83e4a4e2-73d7-4372-a216-5235b6860755','a42d8839-caef-4422-888f-cbfdf4188c5b','titi','serdar','5427181602','hamza bey'),
('8400bdbb-9bf2-4a69-975f-987f52130381','d89f6e4c-ad0d-4d1f-98c2-188a94803196','Albessa ','Furkan Dursun ','05387036590','Mesudiye mahallesi 1.güzel sokak '),
('841543d1-d155-4ea8-b2eb-da24e10b299c','338e8c09-4ca5-4617-bfc1-a0692646d475','Family Mobilya','05336513797','05336513797','Cerrah mah. 1121 sk. No:5'),
('84ae5cdf-69f8-4d9e-9e50-cc7f34c54066','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','EMEK SANDALYE','VEHBİ EMEK ','05354113356','Süleymaniye mahallesi OSB 2.Cad No:15 Garderobe mobilya bahçesi sonunda'),
('85f1b4dd-1d0d-4bd9-be91-ea7a8c29083a','7f34d75e-284a-42ac-9cbe-a29174748991','NOVANO','Selçuk','00905415984598','Mahmudiye mahallesi 29.sokak No:9\nİnegöl/Bursa'),
('8606d226-cc7c-4998-946f-cf7c29587a15','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','decoria','emre','905458183635','pazartesi pazarının orada , jandarmanın aradan girince ilerde sağda'),
('868310f2-36fa-474f-a446-379434c782e1','d50fb551-10f1-4b7c-b65d-6eb4bef94704','PABLO HOME','feyzullah','05435878604','selimoğlu koltuk yanı '),
('86aaa208-3075-4940-8ca8-4a4f8d61f79d','5f3f13d2-795f-4eba-b7bd-61428d952ca2','Ruuf form','Tuğrul','905058552783','Mahmudiye, Gürbüz Sk. no:21/B, 16400 İnegöl/Bursa'),
('8829a318-3e88-4aa8-8e64-06a4b8a1aefb','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','pars koltuk','saadet hanım','05307688616','30.sokak'),
('8972e4c8-8f15-408c-a596-6783ce86ba09','47880255-08ee-4e99-940b-16038e07de55','PUFFİN','DİLARA HANIM','5523627469','Mahmudiye, Karaağaç Cd. No:5-7, 16400 İnegöl/Bursa'),
('8b268fdf-cc88-488a-b15b-ed87aeb4e594','e6d4faef-484c-4ce7-992c-906e05fc083e','SİRO MOBİLYA','AKİF BEY','05368745736','\nAdres: Fabrika: Ağaç İşleri Sanayi Sitesi, Mahmudiye, 12. Sokak 3/G, 16400 İnegöl/Bursa'),
('8b3fd660-7e02-4d1d-9bcd-406bdd25b872','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Ayka chair ','Özkan ','905302412956','Sanayi '),
('8b45ec0a-f4d2-4c21-be65-4ac7c57404b9','1c402ba0-2fcc-4b19-b28c-bd6071805ddd','bedhome','enes','05417166636','mahmudiye mah. çavdar sk. zümer mobilya yanı'),
('8bb05e8a-f1f6-46ce-a021-ac0443000481','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','KATRE KOLTUK','Esma Hanım','05417137500','Cumhuriyet Mah. Çalıkavak Cd. No:3/A1-1 İnegöl/BURSA'),
('8beea2ff-4c7b-4d4b-9db2-803207650892','98ea2dbd-82be-4bbe-b758-b7175c0f8659','bed home ','bed home','05417166636','inegöl'),
('8c33406d-1686-45a9-ad7a-de320c689537','e6d4faef-484c-4ce7-992c-906e05fc083e','KOLTUKÇU ERSİN','ERSİN BEY','05367184364','Ertuğrulgazi cad.Mahmudiye mah.Gürbüz sk. No:1/1D'),
('8c6ecba8-6768-4127-80ba-c9c71d442689','daf7fb45-7940-4f5b-8733-e2e2d6030da7','RİXXE ','SANEM','5370359757','AĞAÇ İŞL '),
('8cd76f51-c090-4ea7-b13d-65bd119d8d6c','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','Recai Yılmaz','Recai Yılmaz','05357609334','Mahmudiye mah.Ağaç işleri 10.mobilya sokak no.2 Rotta Koltuk Yanı'),
('8ceb6cff-0a3c-4c86-ba04-fde8f431d6bb','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','Bestine','Hakan semiz','05307914876','24.sok sağda bestan koltuk olarak geçiyor'),
('8d4373a7-0436-4e7b-a49e-823a43e45dbf','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','Lansse home ','Ünal kartak ','05346120718','Mahmudiye mahallesi ağaç işleri 27.sokak no:10'),
('8e7639a5-43a8-41ac-ab4c-531fe71b2269','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','dgn','ömer','5052370427','Yeni Sanayi Sitesi 1. Yunus Emre Cd. No:39 İnegöl / Bursa / Türkiye\n'),
('8f681d43-0f04-48bf-a190-abcd5fbd637d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','FAMILY','FAMİLY SEVKİYAT ','5324476092','YOL BOYU'),
('8ff87285-3b46-4f4a-ae2d-029e916f5fef','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','İNEVİSON  SOFA','İSLAM BEY','05466262324','KSS. AĞAÇİŞLERİ 25.SOKAK NO:28'),
('906d7ec3-10b0-4073-8cf1-9957843f6132','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Lego Tv mobilya ','Tv ','905347001692','Sanayi Camii '),
('90838b43-94a7-4042-811c-274219792820','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','DECOHİLL ','DİLEK HANIM ','05358346020','İHTİSAS ORG.SAN.BÖL.1.CD.NO:55 HAMZABEY'),
('91d1b62c-2c81-4987-b743-d77dba61cc05','a42d8839-caef-4422-888f-cbfdf4188c5b','nirvana koltuk','bahar','5335832732','31.sokak sağ'),
('920e0362-203e-45cc-b64f-c87ea9ad1783','dea91080-5383-4085-af2e-7eace2c64224','MARVELL\'S SOFA','CİHAT ','05467366619','BOTANİK PARK KARŞISI'),
('9240f29e-03fc-4696-a562-a0fdc8d6283d','5f244b33-94ca-477b-ae15-8d3bf79ba2c8','Katre Koltuk','Bürçin Hanım','05417137511','Cumhutiyet Mah. Çalıkavak Sok. No:3 İnegöl'),
('93bf5ecc-f4cb-4d71-9f66-248c2dc4613d','e6d4faef-484c-4ce7-992c-906e05fc083e','ALİ TURAN SOFA','FEVZİ BEY','05303468578','7. SOKAK NO 22'),
('93d5fa22-3136-4d4a-b059-a13510667dad','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','KATRE','ESMA HANIM','05417137500','CUMHURİYET MAHALLESİ ÇALIKAVAK SOKAK NO 3A YENİ KAMYON GARAJI KARSISI'),
('93e61440-af32-48f4-a126-44570fed0fb6','76950dd8-e203-45e6-9e40-29f7046e8db7','SALON KOLTUK','FEVZİ YİĞİT','05303468578','7.SOKAK ESVET YANI'),
('93f7c436-5884-4eed-87c2-2b3d00124c93','daf7fb45-7940-4f5b-8733-e2e2d6030da7','SALDA ','SALDA ','5422852887','İNEGÖL '),
('93fccdca-b215-44ed-85df-2c73472c0987','47880255-08ee-4e99-940b-16038e07de55','seven kids','..','05441121777','Cumhuriyet Mahallesi Yıldırım Beyazıt Caddesi Mobilya Kent No:5, 16400 İnegöl/Bursa'),
('940c6390-4082-4fe5-aeaa-06d180147a7b','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','masami','Erhan Göksel','05011170016','agac isleri 28.sokak'),
('94451294-fecf-4760-b1f6-7bcfb8ca1734','67e5a145-070e-4e0f-9c3b-09f273d6ed40','vent aksesuar','furkan','05342042049','Mahmudiye mahallesi kafkas sokak No: 26'),
('944eee11-6cc7-4db2-b182-cc22ca88a6ff','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','TEDDY KOLTUK','ali tarık','05366562829','ertuğrulgazş caddesine yakın net adres için arayın'),
('94760a5d-681a-4a29-ab11-d22e307dd2f1','a42d8839-caef-4422-888f-cbfdf4188c5b','decoria','x','05522047153','ağaç işleri'),
('950ecd58-28b9-47f2-8927-8bf6cd0c9975','d50fb551-10f1-4b7c-b65d-6eb4bef94704','ALBESSA','Hilal Hanım','05384456590','Mesudiye Mahallesi 1. Güzel Sokak No:23 Bursa'),
('9669c217-666c-4acc-a115-b560280110d5','e6d4faef-484c-4ce7-992c-906e05fc083e','PARLAK EV MOBİLYA','SEVKİYAT','05558601882','Mahmudiye, Ankara Cd. No:90, 16400 İnegöl/Bursa'),
('973b6aa0-41a2-4f8f-81d6-7a576c025021','e6d4faef-484c-4ce7-992c-906e05fc083e','TWİNS KOLTUK','TWİNS KOLTUK','05339606485','Süleymaniye Mah. 1.Organize San. Böl. 1.Cadde No:42 İnegöl / Bursa / Türkiye'),
('973cdc52-6795-4930-aae5-75d562bdc607','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','CARE DESIGN','ENES ÖZBAY','905326814263','Mahmudiye mahallesi Özkan Sokak no 12 İnegöl Bursa'),
('97b398f2-80b6-451a-9f85-a2ba41ea8f7f','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','ALBESA ','FURKAN','05384456590','LİDERİN ARKASINDA KALIYOR '),
('97cde9d5-1d58-437b-98cf-d37a0dc31a71','7bb6a552-e940-4456-bfc3-50a13013996c','bedingart ','hacer hanım ','905544945028','Osb, 1. Cd. No : 30, 16410 İnegöl/Bursa'),
('9840e720-2d04-4e9b-b4a0-4feba830c111','e6d4faef-484c-4ce7-992c-906e05fc083e','3ARDEKO KOLTUK','SİNAN BEY','05337268634','Akhisar, B263 Sk. No : 14, 16400 İnegöl/Bursa'),
('986ea798-92fc-489e-a2a1-14fdd3a746fc','47880255-08ee-4e99-940b-16038e07de55','nahita sofa (dayı)','ahmet bey','05376908623','ertuürul gazi cd yakını'),
('989e502d-630d-4495-9ba1-cdab9c19d53e','e6d4faef-484c-4ce7-992c-906e05fc083e','ALİ TURAN SOFA','FEYZİ BEY','05303468578','5. SOKAK'),
('98c5854e-8359-40bf-8d64-f3fb052b029d','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','TRANJET DEPO ','SEDA','05438802880','CUMHURIYET MAHALLESI 66.SOKOK NO:7J'),
('99ba0e84-8bfb-4024-bbd1-9bc042a421d1','e6d4faef-484c-4ce7-992c-906e05fc083e','LENTE HOME','BURAK BEY','905366114382','ERTUĞRULGAZİ CADDESİ NOTERİN SIRASINDA KRİSTAL MOB YANI'),
('99bbf844-6170-41a3-8ce6-b1e103950fc2','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','BRAWWA MOBİLYA','SELMA','05461680205','AGACİŞLERİ'),
('99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','47880255-08ee-4e99-940b-16038e07de55','mobilistan','aaa','05437185556','ağaçişleri 26.sk'),
('9a44c828-0bec-4c45-9caa-55ebd4a724f6','7bb6a552-e940-4456-bfc3-50a13013996c','Pİ KOLTUK ','ENİRHAN ','905063363600','Mahmudiye Mah. Ağaç işleri 18. Mobilya Sokak No:17-19 Pi koltuk'),
('9ab60f04-e386-4003-8dd0-9e8a49f073b0','6133a2db-79c4-4372-9338-505db46b1847','Masami','Pelinsu hanım','905050083144','Star tekstil arası osmanlar koltuk karşısı'),
('9acd0009-2327-419f-9bbf-703ddea7276d','e6d4faef-484c-4ce7-992c-906e05fc083e','PARLAK EV','SEVKİYAT','05417151348','Mahmudiye, Ankara Cd. No:90, 16400 İnegöl/Bursa'),
('9c14ca57-2194-464f-8e8a-8520cb6cc7e0','47880255-08ee-4e99-940b-16038e07de55','esdiva','caner er','05332483310','Mahmudiye, Ertuğrul Gazi Cd. No:40, 16400 İnegöl/Bursa'),
('9d9f47dd-5826-4f65-b6fa-0d2528f2d2a8','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','Sahcelık sofa','Ahmet yusufoğlu','905422902166','Mesudiye Mah. 2.Yiğit Sk. No:4 K:3-4 İnegöl / BURSA Inegol'),
('9e34f6c5-486c-42cd-aeea-59c5c63f7766','a42d8839-caef-4422-888f-cbfdf4188c5b','inliva koltuk','hüseyin','5339206098','22. sokak sağ'),
('9f4cc3ab-0238-42cf-a6f6-58fa2fa31fbc','dea91080-5383-4085-af2e-7eace2c64224','NATTY KOLTUK','OSMAN BEY','05060565119','SANAYİ İTFAİYE KARŞISINDA'),
('a1316d1a-e97f-4ff6-b240-0038a3099c28','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Arya Bedding ','Tunahan ','905393690216','Osmanbey caddesi a 101 yanı arya Bedding '),
('a1a8e2a2-521d-4158-827a-6a00009fe375','b0c1192a-7d38-4b69-a901-778f65a98b9d','RUUFFROM','ELİF ','905369410897','Mahmudiye Mah. Gürbüz Sokak No: 21/A \nİNEGÖL / BURSA / TÜRKİYE'),
('a1fa7c3d-9a83-4a70-b7d7-9ddd9952898c','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','WOM KOLTUK MUAMMER','MUAMMER','05444491916','BİLAL HABEŞ CAMİNİN ARKASINDA KALIYOR'),
('a2297702-45ba-4ef5-b02f-d3ac3dcc495b','a42d8839-caef-4422-888f-cbfdf4188c5b','ailem baza','öztürk','05353982856','rota mobilya yanı'),
('a2bc5ab3-8ee6-4a48-b4de-da8520104423','22a1dbd6-475c-4d4b-bb13-f459e3029634','Ovimo koltuk','Osman bey ','05335411795','Mahmudiye mahallesi 4. Mobilya Sokak no 23'),
('a33a4b24-0961-4436-ae17-15a7d5334110','a42d8839-caef-4422-888f-cbfdf4188c5b','katre koltuk','esma','5417137500','metal sanayi starwoord dükkanları karşısında'),
('a3610da8-8e0c-417c-8834-1223bca4fb34','47880255-08ee-4e99-940b-16038e07de55','inhouse','emre bey','05414276153','ağaçişleri 25. sk'),
('a3b5852f-f1e9-466c-80b5-e9f7fc612e06','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','matte','ahmet abi','05434869998','bursa yolu üzerinde akçaabatlı fırın yanında'),
('a4d3724b-42e4-4fd5-af30-4d7870586bdf','98ea2dbd-82be-4bbe-b758-b7175c0f8659','kahraman sofa','kahraman','905414376460','ertuğrulgazi cad. '),
('a502f4fa-4882-46a7-85b9-6e5b824a26a0','e6d4faef-484c-4ce7-992c-906e05fc083e','SUDE KOLTUK','FATİH BEY','05335119785','Mahmudiye Mah. 18. Mobilya Sk. No:13 İnegöl/Bursa'),
('a5554508-6f32-44fa-9dc6-9db8d8485541','daf7fb45-7940-4f5b-8733-e2e2d6030da7','SENS','SEVKİYAT','5425647367','METAL SAN'),
('a555f069-08c9-42d3-a66c-9b18f52073f7','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','BALAT HOME','KERİM','05327099916','MAHMUDİYE MAHALLESİ, ERTUĞRULGAZİ CADDESİ NO-29 BALAT HOME İNEGÖL BURSA '),
('a59c832a-288a-45ad-9922-f8c1ebf24d41','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Marki baza ','Nezir ','905303804510','Osmanbey caddesi '),
('a5a2020b-3a79-4455-9faf-a0a1ee3107f5','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','KUKA HOME','DAVUT','05382789191','16.SOKAK SAĞDA'),
('a64d9016-ffd4-4952-b547-d9177972ba50','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','fe-ha concept','ferhat gergin','05369575116','alanyurtyolu üzerinde naire çikayeva ve doğa koleji okullarının tam karşısında '),
('a6cdf491-a689-475b-986b-b3c2cc4eff72','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','EFE HOME','EFE MUTLULAR','905069116877','MAHMUDIYE MAH OSMANBEY CAD NO 2'),
('a6d8253d-e268-4425-94bf-663a1bf6289c','e6d4faef-484c-4ce7-992c-906e05fc083e','RESTTİME KOLTUK','ÖMER FARUK FERİK','05342125898','MAHMUDİYE MAHALLESİ ATİLLA SOKAK NO 1 '),
('a7da51a7-9f4e-4344-8317-af0e4389d013','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Şah koltuk ','Ahmet ','05422902166','Ankara yolu evce permium yanı \nŞah koltık'),
('a800d383-0506-4ee2-9894-82c32f1109a9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','köşeci osman abi','osman abi','05335411795','4.sokak, sofanomi karşısı'),
('a83cef52-4388-4d39-b97b-ec517ec35be4','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','Ali Turan Koltuk','Feyzi Yiğit','05303468578','Mahmudiye Mahallesi 7. Mobilya Sokak No27'),
('a89ca938-e6d6-4d3b-9814-2d8b647175c7','1b51c5f7-649a-424f-ba17-cc37d6298af9','KATRE KOLTUK','ESMA HANIM','0541713750','CUMHURİYET MAHALLESİ ÇALIKAVAK SK NO:3A1-1 İNEGÖL BURSA'),
('a92f02e3-dfdb-4958-8a2b-38de1658176a','a42d8839-caef-4422-888f-cbfdf4188c5b','dgn','ömer','5052370427','bilal habeşi caminden sonra 2. sokakta sağa girince en sonda'),
('aa32cc6f-e3e3-496f-a512-a5e1ea102c51','6133a2db-79c4-4372-9338-505db46b1847','Pablo koltuk','Feyzullah Bey','05435878604','SÜLEYMANİYE MAH BABACAN CADDESİ NO : 19/AA BURSA İNEGÖL'),
('aad315d0-10a7-4b01-bb33-59684e6f380f','3addc5c1-e82b-4a1a-b4af-1f66307a9108','LENTA SOFA','BURAK ÖZDEMİR','905366114382','MAHMUDİYE MAHALLESİ ORHANGAZİ CADDESİ NO:75'),
('ab4fcc5b-2570-4c98-a874-bd3062dfeec3','e6d4faef-484c-4ce7-992c-906e05fc083e','MOBELLA KOLTUK','SEVKİYAT','05399146813','MESUDİYE MAHALLESİ 1.GÜZEL SOKAK NO:1 MOBELLA HOME'),
('aca023e4-d25e-4ddd-bd68-90d5e29b4a3b','47880255-08ee-4e99-940b-16038e07de55','FAMİLY KOLTUK','BURAK BEY','05392368540','Yeniceköy, 644. Sk No:5, 16400 İnegöl/Bursa'),
('ad75f318-fa1b-4b2b-8d80-f195a269eaa2','7f34d75e-284a-42ac-9cbe-a29174748991','ALYAMO','Ali','05465354835','Mahmudiye Cemiloğlu Sk. No:68 İnegöl BURSA'),
('adb86e9c-bc47-4a68-b7fb-8691e7d9ae53','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','BED HOME YATAK','ENES BEY','05417166636','MAHMUDİYE MAHALLESİ ÇAVDAR SOKAK NO:4'),
('adc35987-f00b-4bb6-8f3d-59588972832a','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','LOYKA KOLTUK','ŞENGÜL','5335989312','14. SOKAK SAĞ MİRALİFE'),
('ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','MOBİLİSTAN','NAZLI','5385874879','AĞAÇ İŞL SAN SİT '),
('aed2c9d2-a533-40d4-8470-bfa5d2d610fd','8d03b939-d544-45f8-8173-464bea4e67ab','Moe Bedding','Oğuzcan ','5459475054','Mahmudiye mahallesi Osmanbey caddesi numara 67 moe bedding '),
('af378015-ddbc-42df-945d-d98710725e36','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','BELİTA HOME','Enes Demir','905369707813','Huzur Mahallesi Bedirhan Sokak No.7/A İnegöl'),
('afd23062-6aa0-4d23-90f5-fd76536bb033','e6d4faef-484c-4ce7-992c-906e05fc083e','LİTANİ KOLTUK','SERHAT BEY','05345971618','STARWOOD SANAYİ SİTESİ SIRASINDA TABA HOME KARŞISI '),
('b010af14-e02c-4cdf-8f51-3af09b1e6fc4','d8172c72-d29b-40c5-b0b2-0277129ff6b4','R- LİNE KOLTUK ','DİLEK HANIM','05433356609','AĞAÇ İŞLERİ 24 SOKAK SAĞ TARAF ( ORTA KISIMLARDA ) '),
('b044c797-8c15-4ef0-b74b-c71ffa32d77d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ACCA','ACCA SEVKİYAT','5467844739','YOL BOYU '),
('b0c740d4-a7de-488f-b2c8-2a1f9f1f418e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEVEN KIDS','MUHASEBE ','5320695677','İNEGÖL '),
('b151728c-b265-4eed-b5c1-cb53409fb775','3c7190b6-f6ee-4275-8958-d7af952132ab','Elitis Home','Emre Can KILIÇ','05335511664','Ertuğrulgazi Cad. No:86/4A Noter Karşısı'),
('b1729f47-b5c0-4f9f-8685-2ce5958e02e0','a42d8839-caef-4422-888f-cbfdf4188c5b','moderno koltukı','x','5496633766','organize sanayi 2.cadde '),
('b22273fb-b00f-4afc-b708-2437f60ec61e','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','bicargo depo','bilal bey','9005325000478','Mahmudiye, Semiz Sokak No:6, 16400 İnegöl/Bursa '),
('b2574014-48f1-4fa1-870b-8665380ad3e9','d1ba1223-4475-415e-b63f-154a9404e56e','Erba koltuk imalat ','Barış ','05352129940','Ertuğrul Gazi caddesi 8.noterin üstü '),
('b2f38bcb-248d-4626-9f30-2fe34792a4a6','a42d8839-caef-4422-888f-cbfdf4188c5b','novano','selçuk','5415984598','29.sokak '),
('b4adfa72-57c6-47ae-9e2f-d4c89e7c1fc6','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Moe beeding','Caner ','905302412956','Moe beeding  osmanbey cd'),
('b4b527e9-c851-458f-9238-9049a66f2c90','47880255-08ee-4e99-940b-16038e07de55','GARDEROBE','ERDOĞAN BEY','05546983975',' Süleymaniye OSB, 2. Cd. No:15, 16400 İnegöl/Bursa'),
('b4c728e2-9757-4b03-a904-c0a57f6b0db5','a42d8839-caef-4422-888f-cbfdf4188c5b','vidy','x','05065333331','kalburt şevketoğulları'),
('b542c88d-6b51-478b-a97b-c5bf03439771','f4861afa-47df-4a6b-b9ca-da22afe273e4','Pars Sofa','Saadet Hanım','05307688616','31. Mobilya Sokak numara 13 Pars Sofa'),
('b67290a3-f8d9-4292-b22e-e4e54d734fd7','a42d8839-caef-4422-888f-cbfdf4188c5b','zeta home','sadık','05435534229','ağaç işleri nova\'ın karşısı'),
('b674ff7a-83ff-4b39-a1ac-2c377477b38a','a42d8839-caef-4422-888f-cbfdf4188c5b','payidar koltuk','emirhan','5521765992','mahmudiye mahallesi ayaz sokak payidar koltuk'),
('b6781cc4-4ba5-457f-975e-ee2a01f09909','d89f6e4c-ad0d-4d1f-98c2-188a94803196','Masami ','Kübra Hanım','05050083144','28. Sokak'),
('b6f3a82f-4f50-4678-b7ea-8d013b6b1646','8426da95-71ca-4ae9-bea1-1e7259d72f62','masami ','erhan','05011170016','inegöl 29. sk '),
('b75647b8-16a5-4d6c-a25c-fea4c4f19c3b','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','TOKGÖZLER MOBİLYA','İBRAHİM TOKGÖZ','05077880202','AĞAÇ İŞLERİ 1. YUNUS EMRE  CAD BİLALİ HABEŞİ CAMİ CİVARI'),
('b762dc85-daa3-4f73-b637-11f8f17d6a55','daf7fb45-7940-4f5b-8733-e2e2d6030da7','SİNAN KÖŞE ','SİNAN ','05332159707','İNEGÖL'),
('b78426e8-87ca-4d84-878b-11136d2e5719','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ELİTİS','ALİ ABİ','5425533453','MAHMUDİYE MAH. ERTUĞRUL GAZİ CAD. NO 86/4A '),
('b7b1c470-cea9-44d3-b506-17bec6369761','7f34d75e-284a-42ac-9cbe-a29174748991','SOOVHOME','Oğuz Söğüt','05376919796','Yenice Osmanbey Caddesi No:26 İnegöl BURSA'),
('b829afbc-e0f2-4e74-89d2-ac9ad77bb35c','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','FAMİLY KOLTUK BURAK BEY','ÖZGÜL HANIM ','05301901383','YENİCE KÖY MH.644.SK.NO:5 '),
('b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','3c7190b6-f6ee-4275-8958-d7af952132ab','Elit Köşeci Sinan Bey','Sinan','05332159707','pazartesi pazarı karşı aralığı'),
('b8bd90df-c7a1-4400-b5c5-350df5d8a4d5','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','MOE BEDDİNG','CANER TÜRKYILMAZ','905312567005','AKHİSAR MAHALLESİ 2. FATİH CADDESİ NO 2/A 1 NOLU İŞ YERİ'),
('b94604cf-4431-4d3a-bbbe-0fab66df0701','e6d4faef-484c-4ce7-992c-906e05fc083e','ELAKSA SANDALYE','SERDAR BEY','05303113326','AĞAÇ İŞLERİ 14.SK SAĞ'),
('b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','d8172c72-d29b-40c5-b0b2-0277129ff6b4','MOBİLYAMEVİME DEPO ','HARUN YILDIZ','05352711900','AĞAÇ İŞLERİ 26 SOKAK SAĞ TARAF ( GK MOB KARŞISI ) '),
('b9700992-a79f-4552-b6d8-7849e204d7bd','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','PABLO HOME CONCEPT','FEYZULLAH BEY','905435878604','SÜLEYMANİYE MAHALLESİ BABACAN CADDESİ NO 19/AA BURSA İNEGÖL'),
('b9e05997-457d-40a3-b169-c07dc8786763','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ARTBOIS ','ESRA ','5422109614','İNEGÖL '),
('ba94a781-077a-49a3-ace1-ff1f8e8eacb1','22a1dbd6-475c-4d4b-bb13-f459e3029634','MASAMİ MOBİLYA','İBRAHİM BEY','05061458314','KURTULUŞ HALI SAHA ARKASI , STAR TEKSTİL ARASI'),
('bc1b9fd7-95d7-4d5b-a84e-684140acc414','47880255-08ee-4e99-940b-16038e07de55','family','family sevkiyat','05324476092','İnegöl - Bursa Karayol Üzeri Cerrah Kalburt Mevkii 3 Km, 16400'),
('bd4e5a48-eea2-4ff2-9867-3f7c821bd4a1','98ea2dbd-82be-4bbe-b758-b7175c0f8659','nacar mobilya ','necip ','05388678421','küçük sanayi camisi sinay kumaş arkası '),
('bdf32869-5506-4208-95e2-820fe960d600','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','KOLTUKÇU ERSİN','ersin','05367184364','7.SOKAK ESVEDİN ARASINDAN GİRİNCE SAĞDA'),
('be23ccb1-2e50-4eb2-a3f3-5059a25cf100','5f3f13d2-795f-4eba-b7bd-61428d952ca2','BİFURNİ','Burak','905452025244','Mahmudiye Mh. Meltem Sk. Torunlar Mobilya Binası '),
('be280b1b-66f4-4947-b0ec-d079205fc097','27cbce83-310c-4e98-830f-7433b10c2efd','depo','batuhan çağlar','05349177157','yenice mahallesi razgat sokak no16'),
('bed73507-59f5-45a3-a19b-47793c024f51','daf7fb45-7940-4f5b-8733-e2e2d6030da7','GARDEROBE','SÜHEYLA HANIM ','5449291975','ORGANİZE SAN '),
('bf2f9026-0036-4efc-bfb3-7790361e64fa','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Sehpa İbrahim ','İbrahim ','905416646617','Sanayi bp petrol sokak kat 2'),
('c01a6bb5-a79f-4c6f-81ff-aea8a08bc0e1','e6d4faef-484c-4ce7-992c-906e05fc083e','MASA VİA','SEDAT BEY','05407954079','MAHMUDİYE MAHALLESİ 4. MOBİLYA SOKAK NO:11/A'),
('c07e37af-2b69-41ac-96d1-7100cc1a992a','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','FENER MOBİLYA','ABDURRAHMAN BEY','05324849616','Mahmudiye Mahallesi meltem sokak no:8 Fener Mobilya, iNEGÖL, BURSA'),
('c0bb9681-661c-415c-b5d9-c19ef69a3471','98ea2dbd-82be-4bbe-b758-b7175c0f8659','samet koltuk ','fatih bacak','05324479046','27,mobilya sokak '),
('c2045301-8c66-481e-bcdd-1f2d9d1c8e01','67e5a145-070e-4e0f-9c3b-09f273d6ed40','MASAMI','ERHAN GÖKSEL','05011170016','29 sokak sag tarafta '),
('c26ea75d-effc-43cc-8445-65e7d3fbbac9','47880255-08ee-4e99-940b-16038e07de55','artbois','aaaa','05422109614','mobilyacenter'),
('c296dd87-a651-4b49-8415-45fff87f755a','a42d8839-caef-4422-888f-cbfdf4188c5b','alper arda','oğuz','05066712373','agaç işleri halı sahaya gelmeden'),
('c3b6a2b8-8f01-4af6-ae30-2e340aff917c','dea91080-5383-4085-af2e-7eace2c64224','BE MODEL ','MELTEM HANIM','02247185608',' Mahmudiye, 25. Mobilya Sk., 16400 İnegöl/Bursa'),
('c3f368ed-2b70-41bf-83ab-e823447db252','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Ademoğlu sandalye ','Murteza ','05356776437','Ertugrulgazi caddesi '),
('c4c635b2-5c83-4ac4-87ef-8f4a5d75f3d1','338e8c09-4ca5-4617-bfc1-a0692646d475','Mutlular Koltuk (Özispa Binası)','Efe Mutlular','05069116877','Mahmudiye Mah. Osman Bey Caddesi No:55 (Kırmızı Kepenkli Kapı) İnegöl - Bursa'),
('c5020535-31d2-4aed-bc52-f363fba52624','a42d8839-caef-4422-888f-cbfdf4188c5b','derse koltuk','emir','905394624878','köfteci ismail\'in yanı tabelada bies sofa yazıyor'),
('c508b00d-a686-416e-ab4b-43fe49208cd0','b0c1192a-7d38-4b69-a901-778f65a98b9d','KARYOLA','EMRE','905366862497','Kalender caddesi sanayi zafer caddesi payanda metal yanı'),
('c51283b4-beca-4a08-b0f5-c0eda8a91591','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','bestline ','hakan semiz','5307914876','mahmudiye mahallesi 30. sok no:26'),
('c59ab47a-e990-43f5-afe9-6170600dc642','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','mithat abi','mithat','05335708965','kozluca yolu alt geçidin orda depo\n'),
('c65e1c5e-1b33-4a54-9a21-f2efe54675d8','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MASSİVA','GÖZDE','05336673516','Cumhuriyet, Yıldırım Beyazıt Caddesi A Blok No:5/10/10A, 16400 İnegöl/Bursa'),
('c6928307-fe5c-4de5-b14e-5dd7e33db94b','47880255-08ee-4e99-940b-16038e07de55','BRAWWA MOBİLYA','SELMA HANIM','5461680205','bilali habeşi camii yani ağaçişleri'),
('c747818f-6519-46ff-8415-3abd46cd000e','59868701-abe4-4705-a7e6-d91c2c69262e','LEXUS METİN','METİN','05459875597','Mahmudiye Mah. 29. Mobilya Sk. No:17'),
('c7a9be0a-b228-44ec-8a6d-73fe37e4d736','e6d4faef-484c-4ce7-992c-906e05fc083e','BAYSA KOLTUK','BAYRAM BEY','05333661916','MAHMUDİYE MAHALLESİ ORHANGAZİ CADDESİ NO:40'),
('cc1bf391-9830-410e-a63e-d8d559070d32','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','ALFA YATAK YENİCE','HÜSEYİN BEY','05322401794','YENİCE OSB'),
('cd4b8480-2dc3-4822-8638-03ba675da4ab','47880255-08ee-4e99-940b-16038e07de55','onca koltuk','emrah bey','05353588525','mahmudiye mh. şirin sokak no 13a'),
('cf90c370-208a-4021-aaff-f9220970bca9','e6d4faef-484c-4ce7-992c-906e05fc083e','Masami Mobilya','İbrahim bey','05061458314','Kurtuluş büfe karşı arası'),
('d00fcabb-1fa6-406e-975a-645a02949630','7bb6a552-e940-4456-bfc3-50a13013996c','BESTLİNE SOFA','HAKAN','05307914876','TAYLAN YANI'),
('d1ebab23-e578-4ff8-948b-e890ef3a7374','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Tanev koltuk ','İsmail ','905457698884','Osmanbey caddesi '),
('d20217b5-30bb-4c0c-be9d-5b424ded8862','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','VAHİT ÇETIN MOBİLYA','VAHIT ÇETİN','905393981094',' Mahmudiye mahallesi ertuğrulgazi caddesi, 9. Mobilya Sk. No:38, 16400 İnegöl/Bursa'),
('d273ca27-8cac-409c-b505-e0ad66831552','e6d4faef-484c-4ce7-992c-906e05fc083e','SARAYLI YATAK','FAİK BEY','05340723435','ERTUĞRULGAZİ CADDESİ 68'),
('d2b86c82-d150-447c-80f6-636bbf5c4748','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','by chair sandalye','ugur','05442944179','mahmudiye mahallesi çavdar sokak '),
('d2e3291f-fade-46dd-ac59-68c18dfdd3c9','47880255-08ee-4e99-940b-16038e07de55','SENS','SEVKİYAT','05425647367',' Sinanbey, 24. Metal Sk No:14, 16400 İnegöl/Bursa'),
('d30ff40f-77ed-465b-82c8-b649f7ec3cc0','47880255-08ee-4e99-940b-16038e07de55','kuka','davut bey','905308621692','Mahmudiye Mah. 15. Mobilya Sk. Sardunya Blok No:19 İnegöl/Bursa'),
('d6ccb679-ec5a-4244-9196-0a164053f2ec','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Erkal mobilya ','Mustafa Erkal ','05334220724','4.mobilya sokak '),
('d6dbe68f-439e-4f7d-a25b-a12833c003e0','5f3f13d2-795f-4eba-b7bd-61428d952ca2','Efe koltuk','Efe ','05069116877','Osmanbey Cd. No:57 '),
('d7155e9d-3568-4664-9a8c-22953b4e77a1','7868f0ab-d491-44f8-9f78-15fc6f286ffa','Veras life ','Hamdulah ','905347895819','Koltukcu'),
('d8852582-d508-498a-b753-7d20cd810d34','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SALON KOLTUK','HARUN YİĞİT','05314016041','7.SOKAK NO:36 ERTUĞRULGAZİ CADDESİ GİRİŞİ'),
('d8a9ef64-342a-47ae-ba43-7d9ce62e7444','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ANKA','ALİ BEY','05454255618','YENİCEKÖY,FATİH SULTAN MEHMET BLV.NO59\n,16400 İNEGÖL/BURSA'),
('d9a7a9dc-5450-43a9-8c96-96aad8fe148b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','mert sandalye','levent','05363223453','net adres bilinmiyor '),
('d9ffcd70-76ba-4b2c-8984-6491f8ae2cf4','dea91080-5383-4085-af2e-7eace2c64224','SEZA MOBİLYA','SEZER BEY','5333005019',' Mahmudiye, 5. Mobilya Sk., 16400 İnegöl/Bursa'),
('da081c52-d810-473b-87d0-2d031d14f75c','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','EYFEL','ALEYNA','5316481568','YENİCEKÖY MAH. 644. SOK. NO:5'),
('da95f6ab-9177-49c8-b729-1fcee7ea77cb','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','MELYA','YAKUP BEY','05415950296','MAHMUDİYE MAH. MEHTAP SOKAK NO6'),
('daaee6a5-8e9b-49b1-884f-bf70d5038407','59868701-abe4-4705-a7e6-d91c2c69262e','ALBESSA HOME','HİLAL HANIM','05384456590','Mesudiye, 1.GÜZEL SOLAK NO=23, 16400 İnegöl/Bursa'),
('dbe00779-7476-4da8-b164-e8f1ae296549','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ERİZA','İBRAHİM','05418264919',' CUMHURİYET MAHALLESİ NUMARADAN KONUM ALINIZ LÜTFEN TIR GARAJININ ORASI METAL SANAYİ'),
('dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','6133a2db-79c4-4372-9338-505db46b1847','Ayka sandalye','Emrah Bey','05316445308','Mahmudiye mahallesi küçük sanayi sitesi Ağaçişleri bölümü 23.Sk İnegöl Bursa'),
('de8abdf5-848b-4437-b6c0-f6de33a4ecab','b0c1192a-7d38-4b69-a901-778f65a98b9d','SANWOOD','ABDULLAH ','905373439404','Mahmudiye mahallesi uçkun Sokak no17 inegöl/bursa'),
('e06c9f1f-1373-4067-93bb-a153d76e1c6f','59868701-abe4-4705-a7e6-d91c2c69262e','RİO FATİH','BURAK BEY','905452025244','Mahmudiye, Orhan Gazi Cd. No:63, 16400 İnegöl/Bursa'),
('e121af15-bf81-4305-8267-e08950e3c8b8','4b494cd3-c9fc-4519-ba9e-b4261706ae49','Can yatak baza','Kazım toplu','905312270604','Sanayi cami karşısı köşe can yatak baza'),
('e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞAHİNLER ','MUSTAFA BEY ','05388690163','MESUDİYE MAH.1.GÜZEL SK.NO:4 B '),
('e2aa2442-8a91-4124-99c5-e56e6058e5e9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','GARDOREBE','SÜLEYHA HANIM ','05449291975','ORGANİZE SANAYİ BÖLGESİ 2.CD.NO:15 UĞURDAĞ BAHÇESİ'),
('e32e5c88-cc45-488f-bdb9-a2a8c6503a6c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','BRAWWA KOLTUK','RAŞİT ','05058521279','HAMZABEY'),
('e3c8caa5-3a96-4aa2-9932-9d25cca347cb','e6d4faef-484c-4ce7-992c-906e05fc083e','MOE KARYOLA','CANER BEY','05312567005','AKHİSAR MAHALLESİ 2. FATİH CADDESİ NO 2/A 1 NOLU İŞ YERİ '),
('e46f75d9-f1dd-4753-8e6e-717c17942cfd','338e8c09-4ca5-4617-bfc1-a0692646d475','İNHOUSE Exclusive','Emre Bey','05414276153','Mahmudiye mahallesi. 25.sokak No:20/A İnegöl Bursa '),
('e4eb0112-f7c0-479f-984b-1bbcfe084020','e6d4faef-484c-4ce7-992c-906e05fc083e','MODAPARK CONCEPT','MURAT BEY','05398561293','AĞAÇ İŞLERİ 14. SOKAK SAĞDA'),
('e59ddebd-c72a-499b-abcb-cdf62222894f','59868701-abe4-4705-a7e6-d91c2c69262e','HARUNCAN SOFA','HARUNCAN','5359619047','Mahmudiye Mah. 8. Mobilya Sk. No:41 İnegöl'),
('e5ad13db-e1ff-404b-a08a-717f26faf7a8','a42d8839-caef-4422-888f-cbfdf4188c5b','rk mobilya','kadir','5395811368','ağaçişleri kumaşcılar sokagının sonunda solda '),
('e6163ff2-7604-4c90-a95f-079a04161dae','338e8c09-4ca5-4617-bfc1-a0692646d475','Occa Sandalye','Şükrü Bey ','05339112597','MahmudiyeMah, Ağaç İşleri 26. Mobilya Sk. NO:46 '),
('e64032e2-f50f-4507-b33f-f21529e79144','6133a2db-79c4-4372-9338-505db46b1847','Bilgin design','Ömer Bilgin','905373756871','Osman Bey Cd. 88, 16400 Bursa, İnegöl Türkiye Bilgin Design'),
('e64b9fe9-700e-48a0-8a9d-25780b8b28a1','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MASSEN MOBİLYA','DAİM BEY ','05418772524','Organize Sanayi Süleymaniye Mah. 1.Cadde B1-B2 Giriş No:46/A BURSA/İNEGÖL'),
('e6d4ec6a-8b32-475b-bdbd-69167a1ba105','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','TWİNS','TWİNS SEVKİYAT','05339606485','Süleymaniyeosb Mah, 1. Cd. No:37, 16400 İnegöl/Bursa'),
('e6f1bb68-cc5c-4347-9fd7-42ceead3468d','a42d8839-caef-4422-888f-cbfdf4188c5b','wissam','salih','5369453234','ağaçişleri 30.sokak sol ilk bina'),
('e7186fba-e0f5-4e30-9ba7-04b4c86130a2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALYAMO ','ALYAMO ','5466996066','ERTUĞRULGAZİ '),
('e7220662-73b8-46e4-9f5d-7e977cc23448','d50fb551-10f1-4b7c-b65d-6eb4bef94704','masami','kübra','05050083144','28. sokak'),
('e757256d-c116-45a3-853c-453866ada02e','47880255-08ee-4e99-940b-16038e07de55','medusa home','sercan','05340687709','sinanbey mh 26. metal sk no:2a'),
('e7b3c110-e977-4676-a876-ebfe6bf0832f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','brave masa ','muhammed','05347471458','bilal habeşi cami yakınlarında'),
('e847552a-e65b-4888-afca-9e1df09cf7b3','22a1dbd6-475c-4d4b-bb13-f459e3029634','MERT SANDALYE ','LEVENT BURAN','05363223453','MAHMUDİYE MAHALLESİ SARMAŞIK SOKAK NO 21 '),
('e89ec49b-2295-4385-a799-c96668143041','7f34d75e-284a-42ac-9cbe-a29174748991','İnobilya Mağaza','Muhammet Bey','05532675926','Ertuğrulgazi caddesi No:13 İnegöl BURSA'),
('ea14abab-f7ab-4729-8410-25fc05b35196','d50fb551-10f1-4b7c-b65d-6eb4bef94704','KOLTUKÇU ERSİN','ersin','4917642796230','4. mobilya sokak'),
('ea34c7f8-20c7-4afc-afb8-0c5a6c548fa4','5f244b33-94ca-477b-ae15-8d3bf79ba2c8','Seramik Masa (keyfex)','Sedat Efe','05407954079','Mahmudiye Mah. 4. Mobilya Sk,\nNo: 11/A,'),
('ea7f52d3-6796-416f-951d-c553df6295b0','e6d4faef-484c-4ce7-992c-906e05fc083e','OSMAN TOSUN KOLTUKÇU','OSMAN TOSUN','05335411795','MUAZZAM HOME KARŞISI BAYCAN BÜFE ARASI'),
('ea9d3df7-6893-4d14-8238-4ac854d79273','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','bestline koltuk','hakan ','05307914876','adres bilinmiyor, taşınmış olabilirler'),
('ec4b1d3a-a177-4e0c-a8eb-63202489d044','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','DOĞA MODERN','İSMAİL BEY','05373378456','MAHMUDİYE MH.26.MOBİLYA SK.SAĞ TARAF NO:05/F'),
('ece116be-9c35-43c0-9794-25b0b1fa5efd','d89f6e4c-ad0d-4d1f-98c2-188a94803196','Koltukçu ersin ','Ersin ','05367184364','7.sokak ertuğrulgazi'),
('ece6a8b1-cec6-4b85-9127-42c6d179decb','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ELİZA DESİGN','BATU BEY','05362075463','AĞAÇİŞLERİ MAHMUDİYE MH.25.MOBİLYA SK.NO:1/D '),
('ed12ef84-56bd-4976-b6be-70b358cb3914','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','SERBEST MOB','SAİDE','5352126294','MAHMUDİYE MAH. AĞAÇ İŞLERİ 16. SOK. NO:3'),
('ed7d1750-5c3a-4305-a014-967b13e5dac9','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','GARDEROBE MOBİLYA','SÜHEYLA ','905449291975','SÜLEYMANİYE OSB 2.CADDE NO:15'),
('edccc261-7680-46ca-9d31-022751d2518a','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','MELYA SANDALYE','YAKUP İLARLASN','905415950296','Mahmudiye mahallesi mehtap sokak no 5 kat 3'),
('ee094406-7b7d-4dff-bdda-d300b0b6d971','a42d8839-caef-4422-888f-cbfdf4188c5b','onca koltuk','serdal','05368101814','agaç işleri bereket lokantası ilerisi'),
('ee3a212c-1b68-420b-8664-4944fa4af703','f4861afa-47df-4a6b-b9ca-da22afe273e4','Asil Sandalye','Raşit','05348811088','Mahmudiye mahallesi Şen sokak no:21 '),
('ef694a0b-21c8-4329-9d42-e99c0c3a5923','6133a2db-79c4-4372-9338-505db46b1847','İlyas Masa','İlyas Bey','05345671111','Inegöl Mahmudiye Mh.egemen Sokak No 16'),
('ef92b6e2-cf97-42ad-9c65-e889ce4583fa','e6d4faef-484c-4ce7-992c-906e05fc083e','ALPEREN SANDALYE','FATİH BEY','05078297161','MAHMUDİYE MAHALLESİ ERTUĞRULGAZİ CADDESİ 1. KÖPRÜLÜ SOKAK NO 8 ARI MOBİLYA KARŞI ARASI'),
('efc664a7-01b2-4e5b-8e7c-57637a241713','a42d8839-caef-4422-888f-cbfdf4188c5b','alizze','alirıza','05326696116','metal samayi gümüş ev fabrikası'),
('f05caa15-837e-42c0-90dd-b09e174560dd','7bb6a552-e940-4456-bfc3-50a13013996c','artmobi','volkan alyüz','905331621501','mahmudiye mahallesi ağaç işleri sanayi 25. mobilya sokak no:1 inegöl bursa '),
('f1ae9a8b-2050-44ca-bc45-05de7735af91','e6d4faef-484c-4ce7-992c-906e05fc083e','ALİDEN MOBİLYA','ALİ BEY ','05458578556','MAHMUDİYE MAHALLESİ 7. MOBİLYA SOKAK NO 41'),
('f1f75c8d-ef6f-4283-a84d-726689476f2d','47880255-08ee-4e99-940b-16038e07de55','HGO-KİRPİ GENÇ ODASI','ESRA HANIM','05447155165','Mahmudiye, 21. Mobilya Sk. No:70, 16400 İnegöl/Bursa'),
('f3c44bb2-9cba-4805-b874-1f5af9579fce','338e8c09-4ca5-4617-bfc1-a0692646d475','Megazzi Mobilya','Sude Burgazlı','05306978017','Akhisar, Bursa karayolu cad. no24/C (Bursa yönünde, Akhisar köprüsünden sonra Sağdan 2. bina. DMS binası arka tarafı)'),
('f41a7424-e873-4bf8-83b0-86a7af16e30d','5b04798d-86e0-44d7-9219-194a32dc85ff','Belinay sofa','Muhterem Bey','05387418742',' (bulvar köfte arası sağa taraf)'),
('f4b725ec-de83-43a0-8adf-cd7f36f59b78','daf7fb45-7940-4f5b-8733-e2e2d6030da7','VAAV','EMRE','5354251640','YOL BOYU '),
('f5a4f385-a84e-49b3-90e3-7b331b1cf80e','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','EVCE PREMIUM','sezer topçu','05315538775','lider lojistiğin arkası'),
('f6b088d3-e3bc-4d15-8fc9-2cdc074c6759','daf7fb45-7940-4f5b-8733-e2e2d6030da7','AREA','Sevkiyat','05338116691','Yol boyu '),
('f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DORTHOME OFİS','ESLEM','05531610046','ERTUĞRULGAZİ CADDESİ ATİMER 2 İŞ MERKEZİ '),
('f8801f54-a08d-4e4f-a884-f9cf73dae007','7bb6a552-e940-4456-bfc3-50a13013996c','massiva ','ebru hanım ','905394500577','Cumhuriyet, Yıldırım Beyazıt Caddesi A Blok No:5/10/10A, 16400 İnegöl/Bursa'),
('f8e7e421-d096-4d8d-99a4-e621c080ad89','98ea2dbd-82be-4bbe-b758-b7175c0f8659','Brn mobilya ','Uğur ','05332921619','27.mobilya sokak '),
('fac30d79-ff5b-41a7-a0c4-ef8eab9b360c','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','RİXXE','SANEM','5370359757','MAHMUDİYE MAH. GAZCILAR SOK. NO:11 SİZİN DEPONUN ARKA SOKAĞINDA'),
('fb339a39-487e-425d-800f-f101bed0db87','6133a2db-79c4-4372-9338-505db46b1847','Bünyamin Masa','Bünyamin','05383926516','Mahmudiye kısmet sokak'),
('fbb54271-fdf3-4653-965d-bad75101818b','1c402ba0-2fcc-4b19-b28c-bd6071805ddd','FE-HA CONCEPT','FERHAT GERGİN','05369575116','Ertuğrulgazi mh. Özkervan sk. No:1-B Bursa/inegöl (ÇIRAĞAN DÜĞÜN SALONU YANI OKUL KARŞISI KÖŞE BİNA)'),
('fc0500fd-31ef-44f7-bbb4-53ed18c6fb58','47880255-08ee-4e99-940b-16038e07de55','novannş sofa','ali rıza yaman','05333801784','Mahmudiye mahallesi Çağrı sokak no:3, Inegol 16400\n'),
('fc242b58-580f-40bb-ae53-9dc56568c9dc','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','bifurne','burak bey','05452025244','ard sandalyenin yanı gitmeden arayabilirsiniz (macit sokak )'),
('fcafaabf-58b2-4617-8332-d190bbe04361','daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYME HOME MEHMET','MEHMET','905347317096','İNEGÖL'),
('fd4cb148-ef62-4367-96b8-3a23cb242f38','47880255-08ee-4e99-940b-16038e07de55','inhouse','emere bey','05414276153','ağaçişleri 25.sk'),
('fd87365f-791b-4129-a329-2bbc5296e508','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','masami','muhasebeci kız','905050083144','osmanlar koltuk karşısı , kurtuluş halısahaya yakın'),
('fe02285e-9885-40cc-9da3-c9799ce80173','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','aynacı','Muammet Usta','05314207281','by mosenin aradan girince, solda kalıyor, sır mobilya yazıyor tabeleda'),
('fe0a9e17-e52a-465c-af84-8dd1932db99a','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','HATEM sandalye','EBAN bey','05324884604','imotim b etap arasından girince '),
('feaae4e5-2ae1-4782-b3cf-25fb7e2707eb','4b494cd3-c9fc-4519-ba9e-b4261706ae49','Rio ','Fatih','905354772177','Mahmudiye mahallesi mucit Sokak no 6 Bilal habeşi cami arkası'),
('fee7f346-332d-419c-9da4-5a7154085362','b0c1192a-7d38-4b69-a901-778f65a98b9d','kaan ','kaan ','05398688171','öncü aralığı 6. sokak servet mobilya üstü'),
('ff036b4f-68ec-45d5-828e-7a2c773c539e','6133a2db-79c4-4372-9338-505db46b1847','Mfoursandalye','Muhammet Bey','5332942204','Mahmudiye mahallesi 1.yunusemre Caddesi no 34'),
('ff745fd6-7db9-40d3-ba94-c7183b5039f1','e6d4faef-484c-4ce7-992c-906e05fc083e','ADEN SOFA','ERDOĞAN BEY','05386304651','Küçük sanayi sitesi agaç işleri bölümü 24.mobilya sokak 35/A, Inegol 16400'),
('ffb61040-3584-4fa9-9eb9-a4001a595b84','daf7fb45-7940-4f5b-8733-e2e2d6030da7','KUKA ','ESRA','5382789191','AĞAÇ İŞL ');
/*!40000 ALTER TABLE `currentotheraddress` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exchangerates`
--

DROP TABLE IF EXISTS `exchangerates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exchangerates` (
  `id` enum('1') NOT NULL,
  `dolar` double NOT NULL DEFAULT 1,
  `euro` double NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exchangerates`
--

LOCK TABLES `exchangerates` WRITE;
/*!40000 ALTER TABLE `exchangerates` DISABLE KEYS */;
INSERT INTO `exchangerates` VALUES
('1',41.9453,48.7964);
/*!40000 ALTER TABLE `exchangerates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expense`
--

DROP TABLE IF EXISTS `expense`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expense` (
  `id` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `categoryId` varchar(191) NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `expense_categoryId_fkey` (`categoryId`),
  CONSTRAINT `expense_categoryId_fkey` FOREIGN KEY (`categoryId`) REFERENCES `category` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense`
--

LOCK TABLES `expense` WRITE;
/*!40000 ALTER TABLE `expense` DISABLE KEYS */;
INSERT INTO `expense` VALUES
('01772ed0-a4d3-440c-a74e-7e215e2b604d','SARICI','DEFAULT-EXPENSE-SELF','2024-03-25 11:39:11.015','2024-03-25 11:39:11.015',NULL),
('01b6f5b1-6ad1-49e4-9dd8-e1330cd95045','SPEDİSYON','DEFAULT-EXPENSE-SELF','2024-03-25 11:28:53.429','2024-03-25 11:28:53.429',NULL),
('03186ff3-189b-4394-8c59-32c7c10a8740','ROMANYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:34:51.504','2024-03-25 11:34:51.504',NULL),
('034d8c1d-5c9e-4326-b532-85af1e144615','FRANSA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:32:25.724','2024-03-25 11:32:25.724',NULL),
('0bdc3f98-1270-4535-af3c-1ebd2121bc5d','ÇEKYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:33:44.366','2024-03-25 11:33:44.366',NULL),
('119495c3-2adb-4cf6-9d8d-c63d6959eb74','TAMİR','DEFAULT-EXPENSE-SELF','2024-03-25 11:31:59.729','2024-03-25 11:31:59.729',NULL),
('1216b974-8b5a-4d42-94f1-aa151b09ba93','HACIRAH','DEFAULT-EXPENSE-SELF','2024-03-25 11:28:28.464','2024-03-25 11:28:28.464',NULL),
('12c2f5e7-d216-4b6a-8a11-1a4e5ad2f1f2','MAZOT TL','DEFAULT-EXPENSE-SELF','2024-03-25 11:40:16.832','2024-03-25 11:40:16.832',NULL),
('186984df-4e83-437b-8498-54011fb1b496','SUBENE KADAR','DEFAULT-EXPENSE-RENT','2024-03-18 07:35:04.070','2024-03-18 07:35:04.070',NULL),
('1f80edf5-70d1-4095-91fe-6bbd183bf756','GÜMRÜKÇÜ','DEFAULT-EXPENSE-SELF','2024-03-25 11:37:10.549','2024-03-25 11:37:10.549',NULL),
('24dd2ea2-f8ab-4cfc-a654-6f0fc67be1bc','FERİBOT','DEFAULT-EXPENSE-SELF','2024-03-25 11:38:26.410','2024-03-25 11:38:26.410',NULL),
('293ad2e8-42fd-4458-8ff8-6a0a67c75e39','HOLLANDA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:32:58.878','2024-03-25 11:32:58.878',NULL),
('29f8ef51-3f6f-49f6-9a5e-d391bbcbfd46','DOZVALA','DEFAULT-EXPENSE-SELF','2024-03-25 11:38:15.725','2024-03-25 11:38:15.725',NULL),
('2efc4d19-a832-4604-a3cf-67a2c1fa5e8b','HIRVATİSTAN OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:34:17.642','2024-03-25 11:34:17.642',NULL),
('4156c560-34b6-4ff6-965b-46e2ac6501e4','TAMİR TL','DEFAULT-EXPENSE-SELF','2024-03-25 11:38:49.146','2024-03-25 11:38:49.146',NULL),
('41e26f54-48dc-454e-8365-6c201400e0ab','ALMANYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:33:22.736','2024-03-25 11:33:22.736',NULL),
('46ea0b40-15e5-4ef2-8cfc-4f5e48099462','OTOPARK EURO','DEFAULT-EXPENSE-SELF','2024-03-25 11:29:17.198','2024-03-25 11:29:17.198',NULL),
('4e673fe5-382c-4535-abed-6cc718edaf2b','BELÇİKA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:33:09.890','2024-03-25 11:33:09.890',NULL),
('5669e531-fc3d-4f79-a73a-9d6d6d7eaae1','CEZA','DEFAULT-EXPENSE-SELF','2024-03-25 11:39:02.903','2024-03-25 11:39:02.903',NULL),
('59236754-7948-4867-889c-956e65d12d9f','OTOPARK TL','DEFAULT-EXPENSE-SELF','2024-03-25 11:36:18.407','2024-03-25 11:36:18.407',NULL),
('5d3fc968-e606-41dc-a28f-331f89b173fc','KANTAR BULGAR','DEFAULT-EXPENSE-SELF','2024-03-25 11:30:43.344','2024-03-25 11:30:43.344',NULL),
('64bad226-e54e-494f-b831-167c16a71a6b','SUBENDEN SONRA','DEFAULT-EXPENSE-RENT','2024-03-18 07:35:28.624','2024-03-18 07:35:28.624',NULL),
('6c64abaf-ce95-401c-b331-430d93d51d9a','GÜMRÜK T2 GELİŞ','DEFAULT-EXPENSE-SELF','2024-03-25 11:30:08.893','2024-03-25 11:30:08.893',NULL),
('72eddf15-294b-433e-8715-ce8ff9637958','CEZA','DEFAULT-EXPENSE-SELF','2024-03-25 11:31:45.587','2024-03-25 11:31:45.587',NULL),
('78407c71-6294-457c-bf64-424c9f59115f','HIRDAVAT/ FOTOKOPİ','DEFAULT-EXPENSE-SELF','2024-03-25 11:38:01.816','2024-03-25 11:38:01.816',NULL),
('7b479eaf-68a9-4045-8af2-b190bae725d9','KÖPRÜ','DEFAULT-EXPENSE-SELF','2024-03-25 11:35:19.266','2024-03-25 11:35:19.266',NULL),
('874d630b-2fe2-4b99-8fdf-e04d82daec26','GÜMRÜK T1 GİDİŞ','DEFAULT-EXPENSE-SELF','2024-03-25 11:29:49.129','2024-03-25 11:29:49.129',NULL),
('8b916a78-aef3-44dc-b01b-f53057da790b','ARABACI','DEFAULT-EXPENSE-SELF','2024-03-25 11:39:58.979','2024-03-25 11:39:58.979',NULL),
('8d4d0935-62b9-4136-b895-0b9c80f06193','VİNETKA','DEFAULT-EXPENSE-SELF','2024-03-25 11:30:24.235','2024-03-25 11:30:24.235',NULL),
('8f0094a4-df62-4b8a-b8b6-a5bbcb50e533','SARICI','DEFAULT-EXPENSE-RENT','2024-03-25 11:39:20.597','2024-03-25 11:39:20.597',NULL),
('9a05c532-d47d-4509-be8a-e81c7a09e2e0','M3 NAVLUN','DEFAULT-EXPENSE-RENT','2024-03-18 07:35:59.044','2024-03-18 07:35:59.044',NULL),
('9b56aed8-7efc-4fba-a831-23cd724089b0','ADBLUE TL','DEFAULT-EXPENSE-SELF','2024-03-25 11:40:36.088','2024-03-25 11:40:36.088',NULL),
('9b7146ba-87ac-4c56-a273-db5bdc2b38f3','KANTAR TL','DEFAULT-EXPENSE-SELF','2024-03-25 11:36:55.949','2024-03-25 11:36:55.949',NULL),
('9ff3a715-8879-4c6e-b160-f14d7abd3c6b','SLOVENYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:34:03.920','2024-03-25 11:34:03.920',NULL),
('b6abe374-21bf-484c-988e-90da554d21bd','PARSİYEL SAYISI','DEFAULT-EXPENSE-RENT','2024-03-18 07:35:41.359','2024-03-18 07:35:41.359',NULL),
('bb1edbc0-f476-4ebf-a4f4-4d0fa870f479','FİSCAL','DEFAULT-EXPENSE-SELF','2024-03-25 11:30:58.790','2024-03-25 11:30:58.790',NULL),
('bd311c00-349c-4bed-861f-ea1585d66fb4','AVUSTURYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:33:34.236','2024-03-25 11:33:34.236',NULL),
('c7abfb2c-a49b-4acb-a3e6-8a5474f09afa','ADBLUE EURO','DEFAULT-EXPENSE-SELF','2024-03-25 11:40:45.969','2024-03-25 11:40:45.969',NULL),
('cfa49894-f13d-4c81-bc5a-379668527214','GÜMRÜK MESAİ','DEFAULT-EXPENSE-SELF','2024-03-25 11:36:40.073','2024-03-25 11:36:40.073',NULL),
('d0a7eb05-1be8-42bb-b45e-d6fc7c10607f','BULGARİSTAN OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:35:04.784','2024-03-25 11:35:04.784',NULL),
('d59b04a6-8348-4ae1-8e7b-0715bcf968a2','HANGAR','DEFAULT-EXPENSE-SELF','2024-03-25 11:31:14.049','2024-03-25 11:31:14.049',NULL),
('de53c573-725c-43b7-b638-a87a2668762e','SLOVAKYA OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:33:54.296','2024-03-25 11:33:54.296',NULL),
('e767775f-85c2-4ac4-a9f5-72fe2776074e','SIRBİSTAN OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:34:39.848','2024-03-25 11:34:39.848',NULL),
('ee5476c3-6024-40e5-abe1-cf25f79f2480','PARSİYEL','DEFAULT-EXPENSE-SELF','2024-03-25 11:31:32.508','2024-03-25 11:31:32.508',NULL),
('f00180e7-ceaf-472f-b943-200bdbac5d9d','MACARİSTAN OTOBAN','DEFAULT-EXPENSE-SELF','2024-03-25 11:34:28.760','2024-03-25 11:34:28.760',NULL),
('fcc75c0d-e044-43b5-a5ff-2c8712952634','MAZOT EURO','DEFAULT-EXPENSE-SELF','2024-03-25 11:40:26.810','2024-03-25 11:40:26.810',NULL),
('fd40294a-ee4a-4e5e-ace0-4028a040651e','YIKAMA','DEFAULT-EXPENSE-SELF','2024-03-25 11:37:29.505','2024-03-25 11:37:29.505',NULL);
/*!40000 ALTER TABLE `expense` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expensetransaction`
--

DROP TABLE IF EXISTS `expensetransaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expensetransaction` (
  `id` varchar(191) NOT NULL,
  `expenseId` varchar(191) NOT NULL,
  `userId` varchar(191) DEFAULT NULL,
  `voyageExpenseId` varchar(191) DEFAULT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `paymentDate` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `price` double NOT NULL,
  `tax` int(11) NOT NULL DEFAULT 0,
  `no` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `expensetransaction_voyageExpenseId_key` (`voyageExpenseId`),
  KEY `expenseTransaction_userId_fkey` (`userId`),
  KEY `expenseTransaction_expenseId_fkey` (`expenseId`),
  CONSTRAINT `expensetransaction_expenseId_fkey` FOREIGN KEY (`expenseId`) REFERENCES `expense` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `expensetransaction_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `expensetransaction_voyageExpenseId_fkey` FOREIGN KEY (`voyageExpenseId`) REFERENCES `voyageexpense` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expensetransaction`
--

LOCK TABLES `expensetransaction` WRITE;
/*!40000 ALTER TABLE `expensetransaction` DISABLE KEYS */;
INSERT INTO `expensetransaction` VALUES
('005d5663-e3e4-4d87-8c3b-804c4a2d7f7d','5669e531-fc3d-4f79-a73a-9d6d6d7eaae1','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.757','2024-03-30 07:14:01.757',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.961'),
('01cf6f32-3acf-4801-a10e-09383b9ea930','9ff3a715-8879-4c6e-b160-f14d7abd3c6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.682','2024-03-25 11:45:12.682',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.670'),
('0206cc12-5924-408c-bbe9-7a7984e214d8','d0a7eb05-1be8-42bb-b45e-d6fc7c10607f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.854','2024-03-30 13:00:50.854',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.742'),
('03277e59-7390-43c8-a8b1-ed41f3eba436','2efc4d19-a832-4604-a3cf-67a2c1fa5e8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.507','2024-03-30 07:14:01.507',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.930'),
('043a7a5f-42c5-447c-9943-b3106067ee95','01772ed0-a4d3-440c-a74e-7e215e2b604d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.634','2024-03-25 11:45:14.634',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.645'),
('0568f57c-c83e-4fd8-b7c1-2f25498a6b1b','de53c573-725c-43b7-b638-a87a2668762e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.282','2024-03-25 11:45:13.282',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.795'),
('05f0c208-50d2-480f-aecf-61a8060ca311','9b7146ba-87ac-4c56-a273-db5bdc2b38f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.308','2024-03-30 07:14:02.308',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.927'),
('06252624-5d1a-41b3-b461-3b7058f7650d','8d4d0935-62b9-4136-b895-0b9c80f06193','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.644','2024-03-30 07:25:34.644',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.677'),
('0862c200-93d6-4c9d-87f9-d75ad6da06f9','de53c573-725c-43b7-b638-a87a2668762e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.950','2024-03-30 13:00:49.950',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.678'),
('0fe7f2f8-7c66-4e25-8203-cab2e84eabca','8b916a78-aef3-44dc-b01b-f53057da790b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.433','2024-03-25 11:45:14.433',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.683'),
('10996a31-f7d7-4dfb-a90b-6bf90d8104be','874d630b-2fe2-4b99-8fdf-e04d82daec26','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.098','2024-03-30 13:00:50.098',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.754'),
('11a6c6ed-1ccc-402a-bde6-f83eab60affd','01b6f5b1-6ad1-49e4-9dd8-e1330cd95045','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.034','2024-03-25 11:45:14.034',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.742'),
('1709f9f6-d8a5-4fcd-9435-10a6874394d7','6c64abaf-ce95-401c-b331-430d93d51d9a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.907','2024-03-30 07:14:01.907',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.967'),
('175d01ce-54c7-44ce-a554-5f0f39dc701f','41e26f54-48dc-454e-8365-6c201400e0ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.607','2024-03-30 07:14:01.607',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.911'),
('19477814-74e5-487f-821f-b9e4170ef1d0','fd40294a-ee4a-4e5e-ace0-4028a040651e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.634','2024-03-25 11:45:13.634',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.787'),
('1c18c317-80dc-4320-8454-fd4f07f0074a','d59b04a6-8348-4ae1-8e7b-0715bcf968a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.244','2024-03-30 07:25:34.244',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.642'),
('1c8769e3-a44a-4ab0-8478-4b2f48b04b7b','1f80edf5-70d1-4095-91fe-6bbd183bf756','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.483','2024-03-25 11:45:14.483',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.792'),
('1ce7240f-f095-4154-b9cf-fb1c29ad4f90','5d3fc968-e606-41dc-a28f-331f89b173fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.857','2024-03-30 07:14:01.857',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.899'),
('1d1b0519-cc98-407b-8825-ffa22f2889af','9b56aed8-7efc-4fba-a831-23cd724089b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.258','2024-03-30 07:14:02.258',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.943'),
('1de2a2ce-7d52-43f6-be87-7b2ee941189b','2efc4d19-a832-4604-a3cf-67a2c1fa5e8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.692','2024-03-30 07:25:32.692',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.665'),
('2406cb72-b2ab-4be4-85b7-bd328a413fd8','1216b974-8b5a-4d42-94f1-aa151b09ba93','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.983','2024-03-25 11:45:13.983',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.675'),
('243eea10-792d-49ba-9ae4-ae19d0d2d331','fcc75c0d-e044-43b5-a5ff-2c8712952634','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.933','2024-03-25 11:45:13.933',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.648'),
('254db918-6ad9-42a6-b7ea-2bbef8e0b16d','78407c71-6294-457c-bf64-424c9f59115f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.506','2024-03-30 13:00:50.506',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.721'),
('28aa910c-3b23-4740-b659-b60712e6207f','bb1edbc0-f476-4ebf-a4f4-4d0fa870f479','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.794','2024-03-30 07:25:33.794',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.617'),
('28fc5d33-470c-4593-ae35-0b9f9baaaef2','29f8ef51-3f6f-49f6-9a5e-d391bbcbfd46','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.599','2024-03-30 13:00:49.599',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.710'),
('2c711d77-8430-46fd-aafd-42fbd20c1258','de53c573-725c-43b7-b638-a87a2668762e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.708','2024-03-30 07:14:02.708',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.951'),
('32278c95-82a4-4810-a8d8-06f8ab1eeb81','0bdc3f98-1270-4535-af3c-1ebd2121bc5d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.450','2024-03-30 13:00:50.450',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.745'),
('3395a306-ce92-4895-8f68-fdd1a559757c','01772ed0-a4d3-440c-a74e-7e215e2b604d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:00.906','2024-03-30 07:14:00.906',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.891'),
('33bf461b-bfdc-43fa-ba84-0d2a96795062','72eddf15-294b-433e-8715-ce8ff9637958','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.484','2024-03-25 11:45:13.484',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.774'),
('34514862-3195-4033-94ff-722d00f7f62e','41e26f54-48dc-454e-8365-6c201400e0ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.801','2024-03-30 13:00:50.801',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.639'),
('355d1a2d-fea4-408b-8438-f51efe4d43a3','bd311c00-349c-4bed-861f-ea1585d66fb4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.299','2024-03-30 13:00:50.299',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.733'),
('36e87ddb-3439-48d2-8d99-42ca263ab59f','bd311c00-349c-4bed-861f-ea1585d66fb4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.133','2024-03-25 11:45:14.133',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.692'),
('39bd6336-918d-4c50-8fa5-e5bb6385b0b5','e767775f-85c2-4ac4-a9f5-72fe2776074e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.758','2024-03-30 07:14:02.758',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.896'),
('3b7061dd-86c2-4ec0-90e7-c714d004752a','4e673fe5-382c-4535-abed-6cc718edaf2b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.201','2024-03-30 13:00:49.201',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.645'),
('3e219840-56b3-4e78-b050-2aa62ba06152','f00180e7-ceaf-472f-b943-200bdbac5d9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.993','2024-03-30 07:25:32.993',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.661'),
('3e35045b-06a6-4f2a-8763-517cf4e9aa1c','7b479eaf-68a9-4045-8af2-b190bae725d9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.349','2024-03-30 13:00:50.349',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.628'),
('3fb4b4c4-9589-4783-9ff5-8758e13e3f39','4156c560-34b6-4ff6-965b-46e2ac6501e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.501','2024-03-30 13:00:49.501',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.705'),
('3fd2af84-ab67-49bb-a6d0-0a0c71de818d','46ea0b40-15e5-4ef2-8cfc-4f5e48099462','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.254','2024-03-30 13:00:49.254',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.598'),
('40a370ee-a708-413c-991e-1caaa9679823','03186ff3-189b-4394-8c59-32c7c10a8740','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.007','2024-03-30 07:14:01.007',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.989'),
('41db74dc-65f4-4a7e-8e78-64443e19b9c5','e767775f-85c2-4ac4-a9f5-72fe2776074e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.393','2024-03-30 07:25:33.393',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.672'),
('43936c33-9e17-4692-a788-a835ff8aa72f','bb1edbc0-f476-4ebf-a4f4-4d0fa870f479','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.584','2024-03-25 11:45:14.584',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.679'),
('43be9060-d29c-4aa2-b1cf-821eb6dc9820','01b6f5b1-6ad1-49e4-9dd8-e1330cd95045','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:00.956','2024-03-30 07:14:00.956',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.016'),
('4a1fb4ca-9a56-4069-be4a-8bf72914864d','bd311c00-349c-4bed-861f-ea1585d66fb4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.458','2024-03-30 07:14:02.458',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.908'),
('4db2cf6a-4630-408a-8eb4-5fa058697a7a','1f80edf5-70d1-4095-91fe-6bbd183bf756','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.307','2024-03-30 07:14:01.307',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.013'),
('4e20fd87-f7a4-4a53-8f1e-901fb60d3cbc','f00180e7-ceaf-472f-b943-200bdbac5d9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.032','2024-03-25 11:45:13.032',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.771'),
('4f698c7c-06f3-4d61-9926-f308dd942320','29f8ef51-3f6f-49f6-9a5e-d391bbcbfd46','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.284','2024-03-25 11:45:14.284',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.652'),
('53702035-3c5b-4d14-8135-7095d33f719f','8d4d0935-62b9-4136-b895-0b9c80f06193','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.832','2024-03-25 11:45:12.832',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.703'),
('5566c1f0-6ecc-40f3-86d3-3187ae59231d','f00180e7-ceaf-472f-b943-200bdbac5d9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.858','2024-03-30 07:14:02.858',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.915'),
('56fddcec-b66d-4397-82c0-a07f45acb32d','d59b04a6-8348-4ae1-8e7b-0715bcf968a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.900','2024-03-30 13:00:49.900',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.714'),
('5704f870-b084-4355-b974-46ce1a37e3ad','e767775f-85c2-4ac4-a9f5-72fe2776074e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.732','2024-03-25 11:45:13.732',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.707'),
('589f76b4-cf92-4f3d-838b-76cc71b62bcf','bd311c00-349c-4bed-861f-ea1585d66fb4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.894','2024-03-30 07:25:33.894',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.567'),
('5a30d1b8-9d30-414a-8486-6981fef2c820','119495c3-2adb-4cf6-9d8d-c63d6959eb74','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.394','2024-03-30 07:25:34.394',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.647'),
('5a5a9f00-fb8f-478f-a43c-f8bd300ac0a4','c7abfb2c-a49b-4acb-a3e6-8a5474f09afa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.233','2024-03-25 11:45:14.233',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.764'),
('5b30305a-f3b1-4e5d-b74a-d6724e9cb7d5','9b56aed8-7efc-4fba-a831-23cd724089b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.893','2024-03-30 07:25:32.893',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.541'),
('5baaef95-cfe9-4495-b2ef-fed3f147497d','01b6f5b1-6ad1-49e4-9dd8-e1330cd95045','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.650','2024-03-30 13:00:49.650',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.716'),
('5c48d310-debd-455c-9ecb-1fa53a60e1f8','fd40294a-ee4a-4e5e-ace0-4028a040651e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.400','2024-03-30 13:00:50.400',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.725'),
('5fa2fdac-b02e-40d3-aad0-addab62842bc','9b56aed8-7efc-4fba-a831-23cd724089b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.901','2024-03-30 13:00:50.901',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.692'),
('603176f3-6122-4b5b-90fc-6cef4ec01778','9b7146ba-87ac-4c56-a273-db5bdc2b38f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.582','2024-03-25 11:45:12.582',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.724'),
('63480ed9-b6a6-4598-9ee7-2e8b1e5eeb5e','8b916a78-aef3-44dc-b01b-f53057da790b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.594','2024-03-30 07:25:34.594',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.584'),
('634da4a7-cb23-47ac-b1c0-4e2803761a04','4e673fe5-382c-4535-abed-6cc718edaf2b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.432','2024-03-25 11:45:13.432',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.659'),
('65416562-6e17-443d-ba0d-9afe03dee97b','8b916a78-aef3-44dc-b01b-f53057da790b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.854','2024-03-30 13:00:49.854',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.777'),
('67b11594-b70e-476e-8c77-ee73ff34ee0a','9b7146ba-87ac-4c56-a273-db5bdc2b38f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.544','2024-03-30 07:25:34.544',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.560'),
('681178f3-b10e-484d-9d4a-91b36c17bc71','9ff3a715-8879-4c6e-b160-f14d7abd3c6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.444','2024-03-30 07:25:34.444',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.551'),
('68a62bbd-fbf3-4ebb-9e06-55ca9ba041a2','d0a7eb05-1be8-42bb-b45e-d6fc7c10607f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.608','2024-03-30 07:14:02.608',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.958'),
('6b361dae-234d-4a49-8c9a-41f1607c3e0c','2efc4d19-a832-4604-a3cf-67a2c1fa5e8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.051','2024-03-30 13:00:50.051',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.738'),
('6e0bb465-abd6-46fb-afc0-e66270688f4c','03186ff3-189b-4394-8c59-32c7c10a8740','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.443','2024-03-30 07:25:33.443',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.556'),
('6fe412b7-db56-4db7-9069-fed9b85787bb','9ff3a715-8879-4c6e-b160-f14d7abd3c6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.348','2024-03-30 13:00:49.348',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.758'),
('70156123-3b30-41df-9f05-44dde6a68c06','bb1edbc0-f476-4ebf-a4f4-4d0fa870f479','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.601','2024-03-30 13:00:50.601',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.747'),
('70d67ba3-20c6-450a-ac49-d9e23d8fa215','fcc75c0d-e044-43b5-a5ff-2c8712952634','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.101','2024-03-30 13:00:49.101',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.780'),
('721d0aca-999f-44fa-95d4-e71c5a8eb478','fd40294a-ee4a-4e5e-ace0-4028a040651e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.958','2024-03-30 07:14:02.958',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.980'),
('72ba4e3c-e691-4405-9d2d-10322c64e886','24dd2ea2-f8ab-4cfc-a654-6f0fc67be1bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.357','2024-03-30 07:14:01.357',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.873'),
('738cf652-ffdb-4acd-94d4-ad19b5a083dd','12c2f5e7-d216-4b6a-8a11-1a4e5ad2f1f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.257','2024-03-30 07:14:01.257',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.971'),
('7430ae4b-b13b-49ef-b219-2bb86572c24c','6c64abaf-ce95-401c-b331-430d93d51d9a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.334','2024-03-25 11:45:13.334',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.715'),
('743566a7-8578-41a9-8fed-b6143819111f','7b479eaf-68a9-4045-8af2-b190bae725d9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.058','2024-03-30 07:14:02.058',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.974'),
('75e7f7f1-954b-4755-b253-fdbeb4406db3','de53c573-725c-43b7-b638-a87a2668762e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.643','2024-03-30 07:25:33.643',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.699'),
('7751ec60-ae9d-4e5e-9721-32e483c0d140','0bdc3f98-1270-4535-af3c-1ebd2121bc5d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.107','2024-03-30 07:14:01.107',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.964'),
('7a6b9f5a-66cf-4b7f-9d4d-5fa009563746','59236754-7948-4867-889c-956e65d12d9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.093','2024-03-30 07:25:33.093',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.693'),
('7b76576b-5f4f-4bd2-ac95-b69b8d9e026c','8b916a78-aef3-44dc-b01b-f53057da790b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.158','2024-03-30 07:14:02.158',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.882'),
('7ce0357d-9446-4b98-9b4d-437f1f539da7','cfa49894-f13d-4c81-bc5a-379668527214','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.183','2024-03-25 11:45:14.183',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.782'),
('7d25dd6c-b580-4679-8166-de420c1a2cf3','f00180e7-ceaf-472f-b943-200bdbac5d9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.251','2024-03-30 13:00:50.251',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.664'),
('7d8c572c-5a4f-4649-a705-fd9b7255cf60','293ad2e8-42fd-4458-8ff8-6a0a67c75e39','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.407','2024-03-30 07:14:01.407',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.999'),
('7f928743-a15c-45e6-923e-c9353a847d5f','12c2f5e7-d216-4b6a-8a11-1a4e5ad2f1f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:48.898','2024-03-30 13:00:48.898',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.695'),
('807d9f83-f368-4136-9705-535e28ea52aa','2efc4d19-a832-4604-a3cf-67a2c1fa5e8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.884','2024-03-25 11:45:12.884',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.698'),
('81f86e2b-be85-44ae-8061-46babd1b6387','4156c560-34b6-4ff6-965b-46e2ac6501e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.143','2024-03-30 07:25:33.143',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.595'),
('820d81ce-055d-4070-84ca-4f9b767e4da5','034d8c1d-5c9e-4326-b532-85af1e144615','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.057','2024-03-30 07:14:01.057',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.021'),
('82afc4e3-9067-402e-9ced-ec3cf19b3f6a','29f8ef51-3f6f-49f6-9a5e-d391bbcbfd46','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.742','2024-03-30 07:25:32.742',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.645'),
('85c7fd43-f325-4446-b095-d57ae4380649','01772ed0-a4d3-440c-a74e-7e215e2b604d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.543','2024-03-30 07:25:33.543',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.650'),
('86672508-eba1-4825-86b8-bb58d5bbcae6','5d3fc968-e606-41dc-a28f-331f89b173fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.334','2024-03-25 11:45:14.334',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.656'),
('8a5c4932-8ab8-4626-9d60-357e8b1fa054','41e26f54-48dc-454e-8365-6c201400e0ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.693','2024-03-30 07:25:33.693',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.548'),
('8bd82c29-87ea-4ebd-8443-6bc5d39fc63f','46ea0b40-15e5-4ef2-8cfc-4f5e48099462','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.494','2024-03-30 07:25:34.494',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.689'),
('8cc763ce-21b7-47ec-b49b-bd9191ef63d8','034d8c1d-5c9e-4326-b532-85af1e144615','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.149','2024-03-30 13:00:50.149',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.649'),
('8e2cf2d9-4cc3-4f59-8289-06fa2f3a0474','fd40294a-ee4a-4e5e-ace0-4028a040651e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.943','2024-03-30 07:25:32.943',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.610'),
('95dd31f2-ff36-4145-96de-13430d52c3ea','d0a7eb05-1be8-42bb-b45e-d6fc7c10607f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.493','2024-03-30 07:25:33.493',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.563'),
('963b83a1-2cd0-4b76-bf46-db84d155db2a','ee5476c3-6024-40e5-abe1-cf25f79f2480','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.808','2024-03-30 07:14:02.808',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.004'),
('97a744f7-9f18-4022-ac96-62213b187490','cfa49894-f13d-4c81-bc5a-379668527214','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:48.851','2024-03-30 13:00:48.851',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.731'),
('9ac26c84-4166-493a-8202-60f232a78456','0bdc3f98-1270-4535-af3c-1ebd2121bc5d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.589','2024-03-30 07:25:32.589',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.575'),
('9d4f499d-b9e6-45d3-8054-d2cfb26c0dd3','cfa49894-f13d-4c81-bc5a-379668527214','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.558','2024-03-30 07:14:02.558',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.924'),
('9f7b6237-2e12-4260-9efb-03ccbb1e477a','4156c560-34b6-4ff6-965b-46e2ac6501e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.557','2024-03-30 07:14:01.557',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.007'),
('9fe47d21-2ede-42a1-a005-ddc8b1f669b2','5669e531-fc3d-4f79-a73a-9d6d6d7eaae1','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.982','2024-03-25 11:45:12.982',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.755'),
('a069475c-3a9b-4604-bf90-f7f9a69b3ffb','03186ff3-189b-4394-8c59-32c7c10a8740','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.201','2024-03-30 13:00:50.201',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.768'),
('a0cd7be3-d245-4f0c-8d35-aeae645b4d04','41e26f54-48dc-454e-8365-6c201400e0ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.383','2024-03-25 11:45:14.383',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.665'),
('a12414af-aaa3-489a-8d2d-f5774540f230','78407c71-6294-457c-bf64-424c9f59115f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.883','2024-03-25 11:45:13.883',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.662'),
('a3c53d23-b87a-41f3-9637-048f90bbeb58','fcc75c0d-e044-43b5-a5ff-2c8712952634','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.908','2024-03-30 07:14:02.908',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.879'),
('a5fa7b22-0335-4176-bbd4-9e0aa4e7d6e8','1f80edf5-70d1-4095-91fe-6bbd183bf756','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.700','2024-03-30 13:00:50.700',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.773'),
('a8639359-b083-404c-8030-0e950aae15e4','7b479eaf-68a9-4045-8af2-b190bae725d9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.343','2024-03-30 07:25:33.343',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.706'),
('aa29d56c-8b22-4e3b-9ff5-691914b6bb24','7b479eaf-68a9-4045-8af2-b190bae725d9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.532','2024-03-25 11:45:13.532',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.710'),
('ab6767e0-e872-49bd-a112-8a7379b05965','293ad2e8-42fd-4458-8ff8-6a0a67c75e39','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.651','2024-03-30 13:00:50.651',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.760'),
('ab6807fc-b98b-4af0-baf4-f5c711cb275b','46ea0b40-15e5-4ef2-8cfc-4f5e48099462','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.657','2024-03-30 07:14:01.657',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.977'),
('ac0d9f90-73b4-44ba-8178-bf37ec113ca8','cfa49894-f13d-4c81-bc5a-379668527214','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.293','2024-03-30 07:25:33.293',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.632'),
('ae2f835a-8321-4bfa-be51-ab8fa620564c','4e673fe5-382c-4535-abed-6cc718edaf2b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.707','2024-03-30 07:14:01.707',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.932'),
('b49e6627-a662-442d-9b24-efe044570602','78407c71-6294-457c-bf64-424c9f59115f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.994','2024-03-30 07:25:33.994',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.682'),
('b813dd27-a1e6-41aa-b813-0dfa0052b27c','24dd2ea2-f8ab-4cfc-a654-6f0fc67be1bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.043','2024-03-30 07:25:33.043',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.638'),
('b8f05d8e-42c0-4160-a8c7-5a49d50213df','4e673fe5-382c-4535-abed-6cc718edaf2b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.593','2024-03-30 07:25:33.593',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.534'),
('b902551d-bfc5-4d60-817a-8452db1a63f4','6c64abaf-ce95-401c-b331-430d93d51d9a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.298','2024-03-30 13:00:49.298',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.613'),
('bb37b83a-7827-4a6c-893c-1d676afd5f96','034d8c1d-5c9e-4326-b532-85af1e144615','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.844','2024-03-30 07:25:33.844',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.656'),
('bb762283-8174-47c0-a88d-3bf09d7ccd91','119495c3-2adb-4cf6-9d8d-c63d6959eb74','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.551','2024-03-30 13:00:49.551',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.633'),
('bce53ecd-76d7-49e9-a66c-1b224392eac6','1f80edf5-70d1-4095-91fe-6bbd183bf756','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.642','2024-03-30 07:25:32.642',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.592'),
('bcf29d7e-4677-47c6-b90e-eecc367da6bc','01b6f5b1-6ad1-49e4-9dd8-e1330cd95045','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.944','2024-03-30 07:25:33.944',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.701'),
('bdcba068-5e89-449f-8923-4fd0812e9689','5d3fc968-e606-41dc-a28f-331f89b173fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.842','2024-03-30 07:25:32.842',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.581'),
('befb7915-d965-40b5-88db-83eb5e2ca8ed','119495c3-2adb-4cf6-9d8d-c63d6959eb74','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.232','2024-03-25 11:45:13.232',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.779'),
('bf922bff-298e-4260-9e29-0a90ad6d98fb','d0a7eb05-1be8-42bb-b45e-d6fc7c10607f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.732','2024-03-25 11:45:12.732',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.746'),
('c2acc395-6485-49a4-be2f-5ad47b678cb0','24dd2ea2-f8ab-4cfc-a654-6f0fc67be1bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.699','2024-03-30 13:00:49.699',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.673'),
('c3282994-78d5-4460-8608-39981a21da0c','64bad226-e54e-494f-b831-167c16a71a6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 07:36:54.460','2024-03-18 07:36:54.460',0,0,NULL,'Sefer No: 3163334','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.268'),
('c4b0d3e4-154c-43b9-9314-53ca1f649903','fcc75c0d-e044-43b5-a5ff-2c8712952634','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.094','2024-03-30 07:25:34.094',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.696'),
('c62d3c81-b70b-4acd-bfb2-c4d1408c0a4f','8d4d0935-62b9-4136-b895-0b9c80f06193','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.751','2024-03-30 13:00:50.751',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.617'),
('c705ed53-5e81-4b2d-973f-5166ca8ff197','12c2f5e7-d216-4b6a-8a11-1a4e5ad2f1f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.243','2024-03-30 07:25:33.243',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.543'),
('c735b354-cdf9-4b6d-8716-20e24197091b','9ff3a715-8879-4c6e-b160-f14d7abd3c6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.358','2024-03-30 07:14:02.358',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.904'),
('cb0a1aec-c578-429f-95e6-acec1ba4b711','9b7146ba-87ac-4c56-a273-db5bdc2b38f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.998','2024-03-30 13:00:49.998',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.683'),
('cd2efe78-690b-417e-a5dd-8359ddef0125','e767775f-85c2-4ac4-a9f5-72fe2776074e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:48.999','2024-03-30 13:00:48.999',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.699'),
('cdfdd075-fc72-48e7-9a4f-fb9cb9f52f1e','1216b974-8b5a-4d42-94f1-aa151b09ba93','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.743','2024-03-30 07:25:33.743',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.599'),
('ceaa425b-0242-4196-8342-6498858ac3a0','59236754-7948-4867-889c-956e65d12d9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.050','2024-03-30 13:00:49.050',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.660'),
('d0a21cc6-5601-47eb-9a73-16a32de931da','c7abfb2c-a49b-4acb-a3e6-8a5474f09afa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.508','2024-03-30 07:14:02.508',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.993'),
('d0a42d0b-652e-4d1c-8afa-fc3364d3588d','293ad2e8-42fd-4458-8ff8-6a0a67c75e39','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.932','2024-03-25 11:45:12.932',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.733'),
('d15a709f-fa29-4813-a00d-cb2854f71f87','6c64abaf-ce95-401c-b331-430d93d51d9a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.194','2024-03-30 07:25:34.194',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.604'),
('d3627856-88fc-41e7-8cf9-ef9e95a66c7b','4156c560-34b6-4ff6-965b-46e2ac6501e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.082','2024-03-25 11:45:13.082',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.760'),
('d53f321e-ac07-4741-acb4-cef86bb99db2','293ad2e8-42fd-4458-8ff8-6a0a67c75e39','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.344','2024-03-30 07:25:34.344',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.572'),
('d6241dbb-d9ce-4175-87ee-cffefb12abac','5669e531-fc3d-4f79-a73a-9d6d6d7eaae1','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.044','2024-03-30 07:25:34.044',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.628'),
('d7744b45-f03b-4f58-86f9-7d5458c2559d','01772ed0-a4d3-440c-a74e-7e215e2b604d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.400','2024-03-30 13:00:49.400',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.667'),
('d7958243-b0c6-4628-be4c-9325b494d303','874d630b-2fe2-4b99-8fdf-e04d82daec26','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.132','2024-03-25 11:45:13.132',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.799'),
('d7bf3f52-0caf-4f95-9f2d-049dde068a6e','29f8ef51-3f6f-49f6-9a5e-d391bbcbfd46','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.457','2024-03-30 07:14:01.457',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.984'),
('d955e29b-88c5-4096-a9b2-3616f6f8df28','9a05c532-d47d-4509-be8a-e81c7a09e2e0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d2b32d6e-392b-4ba8-916a-5bda1a3d4a95','2024-03-18 07:29:48.110','2024-03-18 07:29:48.110',500,0,NULL,'Sefer No: 3163334','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163',NULL),
('d9b0ce74-5697-4dc6-bd7d-0842b76d7082','72eddf15-294b-433e-8715-ce8ff9637958','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.958','2024-03-30 07:14:01.958',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.948'),
('db8a75e3-4504-4b96-818d-1dbacdd5b67f','ee5476c3-6024-40e5-abe1-cf25f79f2480','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.834','2024-03-25 11:45:13.834',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.727'),
('dc168d3a-15d7-4943-befc-fa8acf731f7a','c7abfb2c-a49b-4acb-a3e6-8a5474f09afa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.294','2024-03-30 07:25:34.294',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.588'),
('df1bdbce-6acd-4f06-a1de-4bed9b2e4548','78407c71-6294-457c-bf64-424c9f59115f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.008','2024-03-30 07:14:02.008',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.955'),
('df62221e-0cc3-4a29-a238-107295b4bcb7','46ea0b40-15e5-4ef2-8cfc-4f5e48099462','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.582','2024-03-25 11:45:13.582',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.777'),
('df7be17b-b535-4149-92f8-afe244bb7ce9','1216b974-8b5a-4d42-94f1-aa151b09ba93','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.451','2024-03-30 13:00:49.451',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.654'),
('e42302dc-97ca-47b0-aaba-bbb4bf243d70','5669e531-fc3d-4f79-a73a-9d6d6d7eaae1','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:48.948','2024-03-30 13:00:48.948',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.728'),
('e5e308b4-eb36-49b0-9b2b-29f68833ea66','0bdc3f98-1270-4535-af3c-1ebd2121bc5d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.782','2024-03-25 11:45:12.782',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.730'),
('e63f3068-f679-4c48-9009-e0923063667e','186984df-4e83-437b-8498-54011fb1b496','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 07:36:54.410','2024-03-18 07:36:54.410',0,0,NULL,'Sefer No: 3163334','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.265'),
('e6e4b3de-fada-4de0-83cf-d79934aa66a7','72eddf15-294b-433e-8715-ce8ff9637958','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:32.792','2024-03-30 07:25:32.792',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.546'),
('e71c747c-650e-428d-b0f0-4bd431181e74','119495c3-2adb-4cf6-9d8d-c63d6959eb74','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.157','2024-03-30 07:14:01.157',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.888'),
('e731367f-6086-4bb6-92b1-7b7916c0908b','03186ff3-189b-4394-8c59-32c7c10a8740','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.684','2024-03-25 11:45:13.684',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.628'),
('e7e4072c-007c-4219-bd27-b2ba68a6be1e','b6abe374-21bf-484c-988e-90da554d21bd','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 07:36:54.512','2024-03-18 07:36:54.512',0,0,NULL,'Sefer No: 3163334','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.271'),
('e95ca576-046a-4f63-bd90-929b1600758e','ee5476c3-6024-40e5-abe1-cf25f79f2480','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.800','2024-03-30 13:00:49.800',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.608'),
('e968f772-f74d-47ac-8081-dfc30ff7c21d','ee5476c3-6024-40e5-abe1-cf25f79f2480','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:34.144','2024-03-30 07:25:34.144',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.578'),
('eeb0855a-50cc-4fa1-85b3-727ab47a1333','1216b974-8b5a-4d42-94f1-aa151b09ba93','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.207','2024-03-30 07:14:01.207',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.996'),
('f010ba40-a85d-4c60-af40-c8dcfac2b936','59236754-7948-4867-889c-956e65d12d9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.384','2024-03-25 11:45:13.384',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.806'),
('f03c2c06-5809-44d4-bc6d-4944e5d70570','d59b04a6-8348-4ae1-8e7b-0715bcf968a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.784','2024-03-25 11:45:13.784',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.695'),
('f0abc24d-9737-42f3-a9fd-11c5e59d1b61','72eddf15-294b-433e-8715-ce8ff9637958','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:50.551','2024-03-30 13:00:50.551',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.750'),
('f0dd1bf2-91bc-4af3-a382-d18713190fd6','c7abfb2c-a49b-4acb-a3e6-8a5474f09afa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.754','2024-03-30 13:00:49.754',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.624'),
('f2707441-f43c-46c6-b17a-dfc3d294b841','034d8c1d-5c9e-4326-b532-85af1e144615','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:13.182','2024-03-25 11:45:13.182',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.633'),
('f351cefc-89af-459c-b9b5-75872c24101f','874d630b-2fe2-4b99-8fdf-e04d82daec26','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.108','2024-03-30 07:14:02.108',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.937'),
('f572259e-64cf-484b-8355-d06b38441169','9b56aed8-7efc-4fba-a831-23cd724089b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.535','2024-03-25 11:45:14.535',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.749'),
('f63dddf8-0e96-4e34-bd07-1c13ed42a69a','8d4d0935-62b9-4136-b895-0b9c80f06193','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.208','2024-03-30 07:14:02.208',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.010'),
('fa990fee-a749-4a0e-989d-af80fcb45f6d','bb1edbc0-f476-4ebf-a4f4-4d0fa870f479','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.408','2024-03-30 07:14:02.408',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.894'),
('fab15965-edba-4b46-8218-04d0483ba306','24dd2ea2-f8ab-4cfc-a654-6f0fc67be1bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:12.632','2024-03-25 11:45:12.632',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.642'),
('fc218cfe-5fc6-4646-9439-26cf4a359c90','12c2f5e7-d216-4b6a-8a11-1a4e5ad2f1f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-25 11:45:14.083','2024-03-25 11:45:14.083',0,0,NULL,'Sefer No: 2843894','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.639'),
('fc342b6f-4e7b-4135-b9da-1b0934f30a0d','874d630b-2fe2-4b99-8fdf-e04d82daec26','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:25:33.193','2024-03-30 07:25:33.193',0,0,NULL,'Sefer No: 0060940','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.624'),
('fdba63a4-25d1-4ba5-b447-0e61d5df2f8a','d59b04a6-8348-4ae1-8e7b-0715bcf968a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:02.658','2024-03-30 07:14:02.658',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.877'),
('fdbe5333-29f5-4cca-b853-a28656353575','59236754-7948-4867-889c-956e65d12d9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 07:14:01.807','2024-03-30 07:14:01.807',0,0,NULL,'Sefer No: 8891115','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.945'),
('fe3bae47-7274-4c50-b93e-3f2a1b249274','5d3fc968-e606-41dc-a28f-331f89b173fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-30 13:00:49.149','2024-03-30 13:00:49.149',0,0,NULL,'Sefer No: 1660708','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.765');
/*!40000 ALTER TABLE `expensetransaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `fixedasset`
--

DROP TABLE IF EXISTS `fixedasset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fixedasset` (
  `id` varchar(191) NOT NULL,
  `responsibleUserId` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `no` varchar(191) NOT NULL,
  `type` enum('TRAILER','VEHICLE','DEFAULT') NOT NULL DEFAULT 'DEFAULT',
  `isRent` tinyint(1) NOT NULL DEFAULT 0,
  `inspectionDate` datetime(3) DEFAULT NULL,
  `takografDate` datetime(3) DEFAULT NULL,
  `sigortaDate` datetime(3) DEFAULT NULL,
  `kaskoDate` datetime(3) DEFAULT NULL,
  `bakimDate` datetime(3) DEFAULT NULL,
  `marka` varchar(191) DEFAULT NULL,
  `model` varchar(191) DEFAULT NULL,
  `year` int(11) DEFAULT NULL,
  `buyDate` datetime(3) DEFAULT NULL,
  `sellDate` datetime(3) DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `fixedasset_no_key` (`no`),
  KEY `fixedAsset_responsibleUserId_fkey` (`responsibleUserId`),
  CONSTRAINT `fixedasset_responsibleUserId_fkey` FOREIGN KEY (`responsibleUserId`) REFERENCES `user` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fixedasset`
--

LOCK TABLES `fixedasset` WRITE;
/*!40000 ALTER TABLE `fixedasset` DISABLE KEYS */;
INSERT INTO `fixedasset` VALUES
('034cea7b-31b2-4355-876c-9ca83bc8c9b7',NULL,'16AOP172','16AOP172','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-14 13:49:51.577','2024-03-14 13:49:51.577',NULL),
('045e223e-4d33-40f4-bbc7-f932477a3832',NULL,'81ADH432','81ADH432','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-08-27 08:25:43.924','2025-08-27 08:25:43.924',NULL),
('0899011c-9e70-4d3a-9ae9-794f51808013',NULL,'16BMB326','16BMB326','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-21 09:42:50.940','2025-04-29 07:58:27.333',NULL),
('0d3c0e2a-f07c-45b1-b960-8bc2c5689a85',NULL,'16AGT404','16AGT404','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-01 06:41:28.819','2025-10-01 06:41:28.819',NULL),
('1039690d-a9fa-48c9-b7df-e58c3c6b8fe0',NULL,'81ET415','81ET415','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-13 06:55:31.668','2025-10-13 06:55:31.668',NULL),
('117a06d4-b7ac-4e3f-94a3-569b0ce4daa2',NULL,'BEL3','BEL3','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-03-08 13:28:46.864','2025-03-08 13:28:46.864',NULL),
('1574950b-44b9-49e2-8ee0-2073391533b0',NULL,'81 AFA 058','81 AFA 058','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-07 14:59:47.520','2025-10-07 14:59:47.520',NULL),
('1b6a4eb4-a319-4e92-bf09-2b0d8b5ff085',NULL,'16BCJ361','16BCJ361','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-01 06:41:28.819','2025-10-01 06:41:28.819',NULL),
('1c0fe036-f80d-474d-aa60-b84fe248f41c',NULL,'16AOP481','16AOP481','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,'FORD','FMAX',2021,NULL,NULL,1,'2024-03-14 13:49:51.577','2024-03-25 09:49:28.307',NULL),
('1e6f7c29-d4d3-470f-a4a7-1201b3b91f4c',NULL,'16ERD01','16ERD01','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-08-22 19:43:14.407','2025-08-22 19:43:14.407',NULL),
('1e89637c-4aee-4e25-bd99-74351d35be7c',NULL,'16BHH794','16BHH794','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-23 08:00:39.527','2024-03-23 08:00:39.527',NULL),
('20c08504-a1b1-4c5c-a275-02df2aa89436',NULL,'16BPC738','16BPC738','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-23 12:03:23.298','2025-02-23 12:03:23.298',NULL),
('2109288d-18ec-4871-8a3d-5478e1b199c1',NULL,'DEMLOG 1','DEMLOG 1','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-30 14:58:02.377','2024-07-30 14:58:02.377',NULL),
('214f078e-cc0c-4dfd-aabf-7bd7d810c667',NULL,'16KYN03','16KYN03','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-04-30 13:44:23.805','2025-04-30 13:44:23.805',NULL),
('28be12a3-c617-4bf7-b54d-cef93e0874be',NULL,'81AEG592','81AEG592','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-08-30 12:05:07.614','2025-08-30 12:05:07.614',NULL),
('29ffcf7d-9238-42b5-a2ac-524d2368292b',NULL,'DEMLOG3','DEMLOG3','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-09 12:57:30.858','2024-09-09 12:57:30.858',NULL),
('2b51795b-ec2e-4700-bdd6-492efa5a18f9',NULL,'81ACC962','81ACC962','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-05 13:52:01.455','2025-09-05 13:52:01.455',NULL),
('2bf9771e-1352-418e-934a-4fe74898f0b1',NULL,'81 KYN81','81 KYN81','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-03 14:57:11.566','2024-09-03 14:57:11.566',NULL),
('2fa1b673-a584-4927-b1d3-1b7137f273e4',NULL,'POL2','POL2','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-27 14:28:05.622','2024-09-27 14:28:05.622',NULL),
('3205a2e2-adcc-4785-9ca4-a0e9546cce8d',NULL,'16BBL536','16BBL536','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,'RENAULT','T460',2019,NULL,NULL,1,'2024-03-15 14:39:09.699','2024-03-25 09:49:49.986',NULL),
('33071a77-7337-43b1-ab50-1baae8f4d429',NULL,'MİT2','MİT2','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-25 11:54:05.970','2024-10-25 11:54:05.970',NULL),
('332333e3-f9ed-4793-8b23-60dec38b985a',NULL,'16KYN02','16KYN02','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-02 07:57:24.070','2024-11-02 07:57:24.070',NULL),
('37b30aa6-c30f-4694-8f16-5d0729797bf5',NULL,'81INT81','81INT81','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-12 11:07:27.729','2025-09-12 11:07:27.729',NULL),
('37ed4724-5e38-4aba-b999-ef3bacc5bf27',NULL,'16ARF77','16ARF77','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,'FORD','FMAX',2020,NULL,NULL,1,'2024-03-23 08:00:39.527','2024-03-25 09:50:08.068',NULL),
('3d33d41e-cb3a-4ebe-97a2-886e044c3788',NULL,'BELÇİKA 1','BELÇİKA 1','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-06-08 07:59:49.811','2024-06-08 07:59:49.811',NULL),
('43e5e10e-573e-4e92-9513-256e4d7aef6d',NULL,'81ET860','81ET860','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-07 12:08:55.443','2025-10-07 12:08:55.443',NULL),
('450670dd-f935-48da-b94b-317b1ca0f336',NULL,'81ADU968','81ADU968','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-02 12:04:14.747','2025-09-02 12:04:14.747',NULL),
('45bf2533-5c2f-4577-9859-8542285e184e',NULL,'16','16','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-05-10 07:19:34.552','2024-05-10 07:19:34.552',NULL),
('4652307a-e3fa-4849-b31b-7a37d9d9ad45',NULL,'16KYN16','16KYN16','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-27 11:17:54.797','2024-09-27 11:17:54.797',NULL),
('46f53086-a151-47ac-bac9-1ae0ad18704b',NULL,'16KYN81','16KYN81','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-23 10:22:01.694','2024-10-23 10:22:01.694',NULL),
('4b0e7ff2-1695-40c0-907c-ce122e723c33',NULL,'81 AEF 575','81 AEF 575','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-09 08:28:41.205','2025-09-09 08:28:41.205',NULL),
('4d37ff22-4270-4f62-9b43-85c4cf66b7cc',NULL,'16BOV606','16BOV606','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-23 12:03:23.298','2025-02-23 12:03:23.298',NULL),
('4f71b247-ad82-4623-883d-6b834b5156d3',NULL,'16DEM06','16DEM06','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-08 17:59:12.837','2024-11-08 17:59:12.837',NULL),
('5c97a33f-1930-432c-914c-d69e8e25f65f',NULL,'16KYN04','16KYN04','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-04-30 13:44:23.805','2025-04-30 13:44:23.805',NULL),
('5e25f6af-36ad-400c-b0d2-9262d406e874',NULL,'16BSL622','16BSL622','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-06-30 18:21:20.126','2025-06-30 18:21:20.126',NULL),
('5fc026e4-ce50-4510-9c48-dc163d0bb493',NULL,'BARLAS','BARLAS','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-08-20 14:48:44.419','2024-08-20 14:48:44.419',NULL),
('60d149e9-0a97-45a2-971e-74f14d18fb44',NULL,'KAYNAŞLI','KAYNAŞLI','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-05-11 08:30:38.926','2024-05-11 08:30:38.926',NULL),
('65f38478-4a49-4e90-8bd9-c551e3a55e72',NULL,'16BTL275','16BTL275','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-17 14:44:21.750','2025-09-17 14:44:21.750',NULL),
('66d5fcce-d5b6-4198-be7c-d5d4e377faa1',NULL,'16 KYN81','16 KYN81','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-27 11:17:54.797','2024-09-27 11:17:54.797',NULL),
('7495c8e9-8ac8-493b-986b-bff1d79d66ed',NULL,'BEL-2','BEL-2','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-20 08:41:42.101','2025-02-20 08:41:42.101',NULL),
('76498873-c4bb-4f9c-9b7e-9f6830224404',NULL,'81MAX81','81MAX81','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-12 11:07:27.729','2025-09-12 11:07:27.729',NULL),
('76fbd0b1-6d00-4298-acda-d3aba84e46f8',NULL,'16BSD070','16BSD070','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-06-20 14:59:11.880','2025-06-20 14:59:11.880',NULL),
('7765b956-b6aa-4ece-8c5b-234a94af8de5',NULL,'BEL-3','BEL-3','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-03-08 13:28:46.864','2025-03-08 13:28:46.864',NULL),
('79f65917-f4f1-421b-a2f8-9894de658e4f',NULL,'İSVİÇRE','İSVİÇRE','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-05-11 09:05:56.725','2024-05-11 09:05:56.725',NULL),
('7e61787c-1ed4-438b-9d0d-36459d27983d',NULL,'81ULU81','81ULU81','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-06 17:00:09.093','2025-09-06 17:00:09.093',NULL),
('7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2',NULL,'16AAA16','16AAA16','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-18 07:29:22.888','2024-03-18 07:29:22.888',NULL),
('7f795847-6fab-4088-85ef-d8c878463e17',NULL,'BELÇİKA','BELÇİKA','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-20 10:27:22.796','2024-07-20 10:27:22.796',NULL),
('81cbeda4-d7ab-4281-b657-b6e3e3632840',NULL,'81KNY81','81KNY81','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-03 14:57:11.566','2024-09-03 14:57:11.566',NULL),
('824f4f3d-0f1d-4cf7-82a5-09f8c69b3c12',NULL,'LİDER 2','LİDER 2','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-23 15:10:52.857','2024-10-23 15:10:52.857',NULL),
('885f19fd-cee4-4027-ac90-11d2fddd779a',NULL,'BEL 1','BEL 1','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-15 10:05:10.599','2025-02-15 10:05:10.599',NULL),
('886462dc-2e1c-41e5-8cbd-54a8e067daac',NULL,'16BHB678','16BHB678','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,'MERCEDES','ACTROS-1841',2012,NULL,NULL,1,'2024-03-16 09:06:41.597','2024-03-25 09:50:28.916',NULL),
('8a818cda-52c8-4c93-a498-f0084f50f3e9',NULL,'QAQY173','QAQY173','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-03 14:31:46.213','2024-07-03 14:31:46.213',NULL),
('8a89f0ce-c5c1-4bbd-b029-6baa09de79a3',NULL,'DEMLOG1','DEMLOG1','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-30 14:58:02.377','2024-07-30 14:58:02.377',NULL),
('8e235936-e980-4ae6-9d71-9cd21d37e0b4',NULL,'POL','POL','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-27 14:28:05.622','2024-09-27 14:28:05.622',NULL),
('8e5a4c9b-9083-4769-963e-693d06ed4f90',NULL,'16AKA390','16AKA390','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-06-05 14:07:51.919','2025-06-05 14:07:51.919',NULL),
('92796a6e-b7a0-4a2c-9613-a930baac7cbb',NULL,'81AFA060','81AFA060','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-02 12:04:14.747','2025-09-02 12:04:14.747',NULL),
('94297f62-927c-41ea-a5f3-7f677fbb3fdd',NULL,'16Y1400','16Y1400','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-01-10 08:54:21.157','2025-01-10 08:54:21.157',NULL),
('94b8a44c-0a7a-4cf5-ad22-e7a8d30a2ce7',NULL,'BAHADIR ','BAHADIR ','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-05-11 09:05:56.725','2024-05-11 09:05:56.725',NULL),
('9cda35f7-e0b4-4ff1-a674-20ef5251e4aa',NULL,'81AAD194','81AAD194','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-07 12:08:55.443','2025-10-07 12:08:55.443',NULL),
('9dd3dd58-ff1d-42f1-aa41-bd8a80943cab',NULL,'LİDER ','LİDER ','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-23 15:10:52.857','2024-10-23 15:10:52.857',NULL),
('a16768ea-55c5-4721-89ac-a968a2ddd492',NULL,'16BJT381','16BJT381','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-20 11:12:51.807','2024-07-20 11:12:51.807',NULL),
('a3cd24dd-5346-48a3-a0b4-2610546b789e',NULL,'81ADU969','81ADU969','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-08-27 08:25:43.924','2025-08-27 08:25:43.924',NULL),
('a4d44bb0-efca-42be-8d0d-e29e40f01288',NULL,'81AES076','81AES076','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-05 13:52:01.455','2025-09-05 13:52:01.455',NULL),
('a55eb64d-dce3-4440-b0bd-93b5b04077c7',NULL,'81AEF575','81AEF575','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-03 15:04:04.706','2025-10-03 15:04:04.706',NULL),
('a8d06058-9ed2-4c1c-8c96-021f186b604a',NULL,'16ARG287','16ARG287','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-16 09:06:41.597','2024-03-16 09:06:41.597',NULL),
('a99229ea-5fef-44ad-a237-721158231ffb',NULL,' 81ACC962 ',' 81ACC962 ','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-13 07:14:08.876','2025-10-13 07:14:08.876',NULL),
('ae2e0d40-310e-49a4-9f4a-af229451de79',NULL,'MİTHAT','MİTHAT','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-17 11:42:19.566','2024-10-17 11:42:19.566',NULL),
('aff16c78-34c6-41ff-84b1-0af67b4d32dd',NULL,'MİNİVAN','MİNİVAN','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-06-14 09:26:24.779','2024-10-10 04:28:29.335','2024-10-10 04:28:29.334'),
('b16423c4-d717-48b2-af15-703190a1a155',NULL,'16BAD007','16BAD007','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-30 07:10:50.889','2024-03-30 07:10:50.889',NULL),
('bb46a7aa-e156-436f-9e62-240f04db5627',NULL,'81AEF511','81AEF511','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-13 07:14:08.876','2025-10-13 07:14:08.876',NULL),
('c00627de-4f4c-42fd-a9d4-c4bd6b113bff',NULL,'16BOP086','16BOP086','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-27 10:42:46.210','2025-02-27 10:42:46.210',NULL),
('c15b68f9-749a-4035-a771-a4f261642fa8',NULL,'MİT1','MİT1','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-25 11:54:05.970','2024-10-25 11:54:05.970',NULL),
('c32f6aef-2a7d-4e91-a2bf-a991824b496d',NULL,'16BDU872','16BDU872','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-15 14:39:09.699','2024-03-15 14:39:09.699',NULL),
('c6dc3243-6163-434d-bd43-885d7b01a144',NULL,'BEL2','BEL2','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-20 08:41:42.101','2025-02-20 08:41:42.101',NULL),
('c859581e-61f3-4139-8335-86cb2eea67eb',NULL,'CANBEY','CANBEY','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-12-17 17:06:48.296','2024-12-17 17:06:48.296',NULL),
('cbde58c0-4789-4240-af70-ba4a029cad1c',NULL,'DEMLOG2 ','DEMLOG2 ','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-09-09 12:57:30.858','2024-09-09 12:57:30.858',NULL),
('cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',NULL,'16BNF038','16BNF038','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-21 09:42:50.940','2024-11-21 09:42:50.940',NULL),
('cf4e976e-b161-43ca-8f19-3a226c9cb032',NULL,'16BTV450','16BTV450','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-23 07:43:59.462','2025-09-23 07:43:59.462',NULL),
('d3a66606-209f-44aa-8742-e16ac7070f19',NULL,'16AAA21','16AAA21','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-18 07:29:22.888','2024-03-18 07:29:22.888',NULL),
('d4ad734f-1c4c-4394-9452-5d925d687bf1',NULL,'16AOT172','16AOT172','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-03-15 14:41:04.777','2024-03-15 14:41:04.777',NULL),
('d6a9927a-29b6-4738-b5b9-0671a207a703',NULL,'RAKE','RAKE','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-10-17 11:42:19.566','2024-10-17 11:42:19.566',NULL),
('d797a8ba-7f88-4af4-9511-19471900092c',NULL,'CANBEY2','CANBEY2','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-12-17 17:06:48.296','2024-12-17 17:06:48.296',NULL),
('d87ba5e7-fc50-483f-ba32-1effd5fb2f37',NULL,'BELÇ 1','BELÇ 1','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-15 10:05:10.599','2025-02-15 10:05:10.599',NULL),
('e4c3641a-15ed-4b82-a6f2-67a86f6865d2',NULL,'81 AEF 510','81 AEF 510','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-07 14:59:47.520','2025-10-07 14:59:47.520',NULL),
('e7222035-fd41-4e2b-bd7e-5e41cd51a9f9',NULL,'81AEF757','81AEF757','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-06 17:00:09.093','2025-09-06 17:00:09.093',NULL),
('f1ff8e6d-8256-425b-a033-a811822e32d3',NULL,'16KYN01','16KYN01','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-02 07:57:24.070','2024-11-02 07:57:24.070',NULL),
('f2feac04-9a48-47a1-8254-32947a080617',NULL,'81 AEF 511','81 AEF 511','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-09-09 08:28:41.205','2025-09-09 08:28:41.205',NULL),
('f4fb3aa0-3aa4-491a-be20-3b1706b22c95',NULL,'2DCF793','2DCF793','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-07-03 14:31:46.213','2024-07-03 14:31:46.213',NULL),
('f732db43-83d1-4a76-9de5-0e1452027dfc',NULL,'16DEM16','16DEM16','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-11-08 17:59:12.837','2024-11-08 17:59:12.837',NULL),
('f80a9f36-72ac-4970-8312-9735f52dbe18',NULL,'DEMLOG','DEMLOG','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2024-08-20 14:52:08.894','2024-10-10 04:28:22.594','2024-10-10 04:28:22.594'),
('f9135de6-dcc5-422b-8d79-1a0dc06c0843',NULL,'81ADP063','81ADP063','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-10-13 06:55:31.668','2025-10-13 06:55:31.668',NULL),
('fcf55be7-d6f9-4bc9-a74f-c89f3fbd01a1',NULL,'16EDR02','16EDR02','TRAILER',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-08-22 19:43:14.407','2025-08-22 19:43:14.407',NULL),
('ffa36a5f-721e-47c5-be8e-baa14f09f82e',NULL,'16BOP133','16BOP133','VEHICLE',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'2025-02-07 11:12:39.715','2025-02-07 11:12:39.715',NULL);
/*!40000 ALTER TABLE `fixedasset` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `matransaction`
--

DROP TABLE IF EXISTS `matransaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `matransaction` (
  `id` varchar(191) NOT NULL,
  `accountId` varchar(191) DEFAULT NULL,
  `userId` varchar(191) DEFAULT NULL,
  `currentId` varchar(191) DEFAULT NULL,
  `referenceId` varchar(191) DEFAULT NULL,
  `expenseTransactionId` varchar(191) DEFAULT NULL,
  `shipmentId` varchar(191) DEFAULT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `value` double NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `type` enum('ACCSTART','BALANCEADJUST','INPUT','OUTPUT','COLLECT','COLLECTCEK','COLLECTSENET','PAYMENT','PAYMENTCEK','PAYMENTSENET','TRANSFER','EXPENSE','CURRENTBALANCE') NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matransaction_referenceId_key` (`referenceId`),
  UNIQUE KEY `matransaction_expenseTransactionId_key` (`expenseTransactionId`),
  UNIQUE KEY `matransaction_shipmentId_key` (`shipmentId`),
  KEY `mATransaction_currentId_fkey` (`currentId`),
  KEY `mATransaction_userId_fkey` (`userId`),
  KEY `mATransaction_accountId_fkey` (`accountId`),
  CONSTRAINT `matransaction_accountId_fkey` FOREIGN KEY (`accountId`) REFERENCES `moneyaccount` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `matransaction_currentId_fkey` FOREIGN KEY (`currentId`) REFERENCES `current` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `matransaction_expenseTransactionId_fkey` FOREIGN KEY (`expenseTransactionId`) REFERENCES `expensetransaction` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `matransaction_referenceId_fkey` FOREIGN KEY (`referenceId`) REFERENCES `matransaction` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `matransaction_shipmentId_fkey` FOREIGN KEY (`shipmentId`) REFERENCES `shipment` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `matransaction_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `matransaction`
--

LOCK TABLES `matransaction` WRITE;
/*!40000 ALTER TABLE `matransaction` DISABLE KEYS */;
INSERT INTO `matransaction` VALUES
('0006d251-6e96-4321-995b-71a0e1b762e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'34dc4506-d1e6-469c-93c4-450d31fe5fea','2025-04-25 15:45:30.739',700,'KAPIDA ÖDEME - THOMAS MICHEL  - 221685294','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('000e5e8a-61eb-4fcf-9e5b-e5e41785a134','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'fdd68378-14a3-446e-acd4-64b7634a5689','2024-12-28 14:51:46.124',450,'KAPIDA ÖDEME - KORNİŞ ÇUVAL - 248173138','COLLECT','2024-12-28 14:51:46.124','2025-01-06 20:08:12.782',NULL),
('000f9f3c-2fe7-4754-a7ca-e594493a4da5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'f2ddd453-c51d-43a7-827f-f55415305fb3','2025-04-19 10:36:45.580',650,'KAPIDA ÖDEME - ŞÜKRÜ ÇABUK - 248240352','COLLECT','2025-04-19 10:36:45.580','2025-05-02 17:08:29.291',NULL),
('001461aa-ef0d-425b-b102-5dd3305af3cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'00c9f797-aeda-4640-80a8-f170a3df58f4','2025-05-24 10:58:02.722',1550,'KAPIDA ÖDEME - MİHRİBAN ÖZEN - 644776565','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('00209284-7ff9-4928-9c85-f8e95ad0b75f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'31322282-8ccf-4553-94bc-7f1b8069ed4e','2024-12-30 09:39:54.387',1800,'KAPIDA ÖDEME - MASOUME IBRAHİMKHEL - 735211280','COLLECT','2024-12-30 09:39:54.387','2025-01-06 20:08:12.782',NULL),
('0090ae19-a0cb-47bf-8af9-13bc70c9c41f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'ee0c62fa-abac-44d0-915b-567df66647be','2025-10-25 08:43:45.357',700,'KAPIDA ÖDEME - DERYA KARADENİZ - 505414907','COLLECT','2025-10-25 08:43:45.357','2025-10-25 08:58:44.111',NULL),
('00b27988-8608-4dff-a3d2-a16b629b509d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'46b19e09-91c3-4a3b-99ec-5d708063cba6','2025-07-08 11:09:31.429',1200,'KAPIDA ÖDEME - ADEM BÜYÜK - 371913094','COLLECT','2025-07-08 11:09:31.429','2025-07-22 07:27:54.577',NULL),
('00c0fc1e-863c-4252-b726-6b67de8b8657','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c76998eb-67dd-4f0b-bee2-f2c6820bdcce','2025-03-25 19:27:15.880',725,'KAPIDA ÖDEME - ISRA ISKENDER - 43736182','COLLECT','2025-03-25 19:27:15.880','2025-03-29 13:37:01.615',NULL),
('00d0e60c-dc1f-4100-8d9b-f6089119680b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'7769da2f-9686-48c6-ae96-b03c5a2ae610','2025-08-27 08:40:21.920',1490,'KAPIDA ÖDEME - AHMET AĞIRMAN - 371413703','COLLECT','2025-08-27 08:40:21.920','2025-09-03 06:09:36.705',NULL),
('00ed110f-c62b-4b44-b8ff-a957b773cd50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'33cf2dd5-d360-43eb-8f3a-27e48526fd03','2025-09-16 07:10:55.390',690,'KAPIDA ÖDEME - STEFANİA KİOSKER - 371734068','COLLECT','2025-09-16 07:10:55.390','2025-09-19 10:00:25.401',NULL),
('011d4aa9-5a9d-4423-b55d-70c41b8b9603','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'9c3d7567-24b3-4c51-9c80-4065af9769a9','2025-08-14 09:15:13.449',1000,'KAPIDA ÖDEME - DİLEK KHABİL - 765729280','COLLECT','2025-08-14 09:15:13.449','2025-08-15 20:59:05.030',NULL),
('01303128-b460-4d8c-bb81-dacb9961467e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'6f8c203a-dba4-456b-b37b-a7092a5e19a7','2024-12-27 11:47:28.805',4200,'KAPIDA ÖDEME - SABRİNA KHODR - 735660192','COLLECT','2024-12-27 11:47:28.805','2024-12-27 12:23:49.166',NULL),
('01356d40-c077-49bf-98c5-30ebf9c5d9d7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'3caa13eb-3143-47f2-b11e-c9f3575e57b0','2025-01-22 08:43:42.642',1300,'KAPIDA ÖDEME - MAGBULE DZELİLİ - 982843761','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('01426ece-dd8d-45e8-af78-6a4511f5a47c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'65416562-6e17-443d-ba0d-9afe03dee97b',NULL,'2024-03-30 13:00:49.854',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.778'),
('0147fa03-6544-46b1-a666-a62fe0fd178f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d100cd88-31b8-4788-8c56-3df2fd4058aa',NULL,NULL,'a3560d76-087f-40a9-8bed-913dfa8f5663','2024-03-30 13:00:42.090',350,'KAPIDA ÖDEME - CELAL - 100605954','COLLECT','2024-03-30 13:00:42.090','2024-03-30 13:00:42.090',NULL),
('01487d09-0af8-410b-9626-f1da218f44d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'8302f8df-382c-4f52-ab07-b0458d742a93','2025-03-27 08:49:23.620',745,'KAPIDA ÖDEME - FATMA DUMAN - 371696993','COLLECT','2025-03-27 08:49:23.620','2025-03-29 13:56:05.249',NULL),
('0150ba21-34dd-44c7-a9ef-86ae37c4a1c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'8d1fae0e-1294-46bd-9c6d-bc64039e7933','2024-09-16 07:51:28.475',3000,'KAPIDA ÖDEME - SADIK BEYSİR - 517110811','COLLECT','2024-09-16 07:51:28.475','2024-09-28 16:24:45.172',NULL),
('01729d19-5c3a-4dda-8b52-44b9874922a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'72aa64fd-4469-41aa-9db0-8095ab4bfdf0','2024-11-29 13:22:10.580',1150,'KAPIDA ÖDEME - VELİ ÖKTEN - 478284503','COLLECT','2024-11-29 13:22:10.580','2024-12-09 17:29:19.987',NULL),
('01eb704d-d176-4f28-b7e2-1c0da4684373','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'e5a2c381-5ee4-4701-8431-c115c8a67cff','2025-08-07 16:21:45.727',350,'KAPIDA ÖDEME - AYKUT KAYA - 371660448','COLLECT','2025-08-07 16:21:45.727','2025-08-12 08:07:30.426',NULL),
('02162972-c394-40e2-b966-2d25a0e52fed','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'e284eca9-ac8c-444b-9259-006514765b59','2025-10-01 07:00:04.459',1120,'KAPIDA ÖDEME - ÖZGÜR ÇEŞME - 437694817','COLLECT','2025-10-01 07:00:04.459','2025-10-01 07:56:23.252',NULL),
('021e8f5a-d072-4a17-98c4-e7b099dac608','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'6f09bf36-0623-4409-a371-888d1bbf7a91','2025-10-09 08:36:32.951',4080,'KAPIDA ÖDEME - ESRA İSMAİL - 011940661','COLLECT','2025-10-09 08:36:32.951','2025-10-09 08:39:37.007',NULL),
('02428643-353e-4280-8f27-ea5ddb66de32','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3fc65322-0e5b-4725-b433-ff14b8fed4c8','2025-08-14 07:46:42.687',555,'KAPIDA ÖDEME - NURSEL ALİOĞLU - 221272241','COLLECT','2025-08-14 07:46:42.687','2025-08-14 08:02:29.725',NULL),
('02be838e-d71c-4ea4-b785-b13f9d0b906c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'eb2f8c5f-5056-4e84-8bee-cdfe250f8c42','2024-11-23 14:07:12.271',1000,'KAPIDA ÖDEME - ESRA ALTINTAŞ  - 221437904','COLLECT','2024-11-23 14:07:12.271','2024-12-02 09:51:49.376',NULL),
('02cd1a66-4e3b-4d6f-a596-173ed4f09fe9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'044a52d2-c11d-4386-8992-ff1211fd99c9','2025-10-17 06:45:24.556',900,'KAPIDA ÖDEME - VELİ ŞAHİN - 598168850','COLLECT','2025-10-17 06:45:24.556','2025-10-17 10:53:07.479',NULL),
('02f21483-a098-4f0f-afb8-0b21db981db6','DEFAULT-EUR','1764a07b-eb47-4578-b6cd-f3c0d0e743be','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8dc371e3-6c16-4776-bb6b-6285b5a674e1','2024-11-07 12:15:49.487',500,'KAPIDA ÖDEME - yusuf şahin - 47879897','COLLECT','2024-11-07 12:15:49.487','2024-11-13 11:00:22.847','2024-11-13 11:00:22.853'),
('02f7fe32-79b7-414d-9f2e-15851e842d07','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'e82d9e2c-30a8-45ae-9d88-e3e83c923e9a','2025-06-20 15:03:47.833',900,'KAPIDA ÖDEME - TAHSİN AKSOY - 644716997','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.934',NULL),
('031504d7-28a2-4279-a609-df13651c8754','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'2a615cd5-31fe-4786-897f-defeaeff6284','2025-09-06 17:04:26.032',1250,'KAPIDA ÖDEME - HASAN ÖZSOY - 428653750','COLLECT','2025-09-06 17:04:26.032','2025-09-10 12:48:00.771',NULL),
('034946bc-e977-491e-9b6d-9eb8278829c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2be6b904-2905-4e27-ab5f-58e66f9487ff','2025-01-03 09:09:49.753',1000,'KAPIDA ÖDEME - ELİF GABEL  - 982536674','COLLECT','2025-01-03 09:09:49.753','2025-01-05 14:06:53.366',NULL),
('0360a474-f8f8-406b-8ae7-511cd88309df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'3b7689bf-7ebf-44e3-8355-6807100fe5de','2025-08-22 19:43:14.440',1175,'KAPIDA ÖDEME - MELİSA DÜZME - 644796083','COLLECT','2025-08-22 19:43:14.440','2025-08-22 20:28:07.507',NULL),
('036b057c-f191-4853-b529-c24388fb2fa7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'6bbedfc9-507d-41d1-9473-1eea989ff050','2025-09-01 08:24:55.354',2440,'KAPIDA ÖDEME - CAVİT  - 412129107','COLLECT','2025-09-01 08:24:55.354','2025-09-10 15:53:16.734',NULL),
('03916c75-476a-46bc-b451-b2a4d10b3bc9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,NULL,'2630e226-f8e4-4780-bd53-00a42db1e018','2024-03-30 09:44:54.240',300,'KAPIDA ÖDEME - BİRGÜL ÖRNEK - 268188607','COLLECT','2024-03-30 09:44:54.240','2024-03-30 09:44:54.240',NULL),
('03c81282-06d7-4292-bb85-932c4aab0536','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e41c8c53-684c-4376-8162-2e589c44b742',NULL,NULL,'84a619fc-ad14-46ac-8e5d-a6ee1d4d043a','2025-06-25 10:51:21.148',1000,'KAPIDA ÖDEME - SİNGH PERWİNDEJİT - 418120869','COLLECT','2025-06-25 10:51:21.148','2025-07-01 09:19:38.989',NULL),
('0434353c-c5a9-4a9f-a71c-72bcdc6eb7c6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'0862c200-93d6-4c9d-87f9-d75ad6da06f9',NULL,'2024-03-30 13:00:49.950',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.680'),
('04427698-2e66-4eb3-a904-6301405e249e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b','2024-05-08 18:28:17.595',4000,'KAPIDA ÖDEME - AYŞE KONDAL - 478971881','COLLECT','2024-05-08 18:28:17.595','2024-05-08 18:28:17.595',NULL),
('04455d94-3ea3-4c5a-a49e-8025c2c385c7','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'3a352d28-b0b9-4b59-9821-a77910ca2fbb','2025-09-06 17:02:33.110',3000,'KAPIDA ÖDEME - RECEP DUYGULU - 675139037','COLLECT','2025-09-06 17:02:33.110','2025-09-10 12:48:00.785',NULL),
('048b479e-7392-4600-941f-739b21ee0a44','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'db3bb2fe-b7ce-413d-8d13-9d22d875adbf','2025-02-27 11:14:57.493',1250,'KAPIDA ÖDEME - SEBA QASEM - 976763926','COLLECT','2025-02-27 11:14:57.493','2025-03-21 17:17:29.974',NULL),
('048e158c-2d71-4bab-9bce-4141856401ea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'54305dea-1aae-421b-a780-6ea6cb1e48be','2025-01-05 13:55:52.871',1600,'KAPIDA ÖDEME - YALÇIN BÜYÜKMURAT - 478643015','COLLECT','2025-01-05 13:55:52.871','2025-01-06 13:53:12.240',NULL),
('04e31a6e-bf87-4910-b171-901dfffc2e05','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9','2024-12-20 16:50:36.282',750,'KAPIDA ÖDEME - MUAMMER SAYIN - 338822119','COLLECT','2024-12-20 16:50:36.282','2024-12-27 12:23:49.166',NULL),
('04f0693c-8439-4145-82ab-ae7322e9ab92','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,NULL,'2024-11-08 16:49:15.540',-250,NULL,'PAYMENT','2024-11-08 16:49:22.884','2024-11-08 16:49:22.884',NULL),
('050329a7-0688-4195-b423-93c902349f43','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'8327f88c-b625-4fa3-872e-273fef27e498','2025-02-15 10:05:10.599',650,'KAPIDA ÖDEME - LAMMARİ BAYA  - 98232043','COLLECT','2025-02-15 10:05:10.599','2025-02-15 16:08:16.558',NULL),
('0513afa7-904a-41c8-9771-70e02631f35d','DEFAULT-EUR','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'3c99fa74-861a-4491-a1d0-f58a8971a7b2','2024-11-13 10:25:10.482',650,'KAPIDA ÖDEME - Nader siala  - 982707795','COLLECT','2024-11-13 10:25:10.482','2024-11-19 15:12:12.710','2024-11-19 15:12:12.716'),
('05454d45-257d-499f-92f0-4f72b7a24719','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'6c005507-054f-4904-8f84-b0774ba70335','2024-11-15 16:56:07.909',1200,'KAPIDA ÖDEME - ZÜLFİKAR CAN - 745936573','COLLECT','2024-11-15 16:56:07.909','2024-11-28 09:15:31.466',NULL),
('054e16ee-f6ac-4dee-8a8f-9de72f4b33cb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'582bd0ee-3bef-4bc8-9243-917189827f95','2024-09-28 16:24:01.091',1100,'KAPIDA ÖDEME - RASHİD FECİANE - 449823745','COLLECT','2024-09-28 16:24:01.091','2024-09-28 16:24:01.091',NULL),
('05a56497-7932-4ab4-a30b-e6c84a567fdb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f0dd1bf2-91bc-4af3-a382-d18713190fd6',NULL,'2024-03-30 13:00:49.754',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.626'),
('05e80818-90c0-4471-9020-8da865e0e045','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'32d8dcee-9361-46e5-a98f-6e606f4ea7ca','2025-05-14 16:56:37.597',2200,'KAPIDA ÖDEME - CANAN ŞENEL - 644319069','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('05f815cc-cd90-4673-a0dc-364b32959c0a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'aee090b4-4bf2-4cde-89e9-1e2353dcb896','2025-09-23 07:43:59.471',1000,'KAPIDA ÖDEME - DUYGU YILDIZ - 598396998','COLLECT','2025-09-23 07:43:59.471','2025-09-24 13:41:14.980',NULL),
('0648414e-cfee-4ef1-8927-78216b54e169','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'936ebbaf-6f47-4069-b653-db28ba74c6b6','2025-01-22 08:43:42.642',5400,'KAPIDA ÖDEME - KISMET URDOĞAN - 478449275','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('06627baa-755c-4235-8637-e5c1e68a6eb4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e8639de3-a760-433a-8023-37feb4abcf62','2025-02-23 12:23:18.706',500,'KAPIDA ÖDEME - SÜLEYMAN KARA - 745523335','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('06970b9e-ad17-4ac1-9fc8-7997b400312e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2','2025-10-22 07:51:14.261',570,'KAPIDA ÖDEME - JULJANA TARLLAMİSHAJ  - 613568438','COLLECT','2025-10-22 07:51:14.261','2025-10-22 11:29:52.638',NULL),
('06c3c5cf-65fe-49d8-aa62-f3874c339e7b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c3f87bab-e7f6-4ef3-a7d1-ff7cab237666','2025-05-09 16:49:05.440',650,'KAPIDA ÖDEME - DUYGU METE - 371394707','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('06d12485-d044-4b78-933c-3cb3e519a83f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'baae34a4-033d-4893-b696-b36e57c318f7','2024-04-23 10:20:29.433',2300,'KAPIDA ÖDEME - HASAN SARMAN - 982364429','COLLECT','2024-04-23 10:20:29.433','2024-04-23 10:28:41.779',NULL),
('06e3919c-3290-4a8c-b7d3-9ea5ef7f6925','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'39bff5ea-6368-4a28-b3a2-8e798294a348','2025-02-23 12:03:23.298',550,'KAPIDA ÖDEME - MEHMET ALİ YİĞİT - 221441605','COLLECT','2025-02-23 12:03:23.298','2025-03-02 04:33:53.043',NULL),
('06e48b1b-4317-4264-b483-9365b0a83693','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,'4ac57e98-4d31-4029-af5c-63c778250adc','2024-12-07 09:36:36.319',300,'KAPIDA ÖDEME - EURO STAR MOBEL - 107870370','COLLECT','2024-12-07 09:36:36.319','2024-12-17 19:52:32.750',NULL),
('072c57c0-4164-434b-9bfc-f5ff2d2211be','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'a3373a1a-ad36-472f-907f-b0578ee9cac1','2025-08-22 20:19:45.406',4800,'KAPIDA ÖDEME - AYDIN SARI - 011620933','COLLECT','2025-08-22 20:19:45.406','2025-08-27 09:39:08.570',NULL),
('0733d532-572d-4634-9538-62e2ad299829','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2bec061f-81f9-4dda-a4e3-f9afaa7f4903','2024-05-04 07:59:30.701',1000,'KAPIDA ÖDEME - ADEM ŞAHİN - 478685156','COLLECT','2024-05-04 07:59:30.701','2024-05-04 07:59:30.701',NULL),
('077737ac-24db-489d-a942-ad79435002d6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e63f3068-f679-4c48-9009-e0923063667e',NULL,'2024-03-18 07:36:54.410',0,'Sefer No: 3163334','EXPENSE','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.266'),
('07968f6b-cd01-494a-9a57-84c32c8712a8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'7179853a-28db-4c0d-8dbc-b947110f9e96','2024-03-30 09:22:16.339',1350,'KAPIDA ÖDEME - GEZİM PLUSHİ - 982629756','COLLECT','2024-03-30 09:22:16.339','2024-03-30 09:22:16.339',NULL),
('07a094dc-5f06-41a9-90cd-cb9e50dcd2ab','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'5c7ee7c7-55ec-4754-bb1a-69a26c30fff6','2025-10-03 16:05:55.430',500,'KAPIDA ÖDEME - NECMİYE AMET - 221801165','COLLECT','2025-10-03 16:05:55.430','2025-10-03 16:08:51.026',NULL),
('07ca8dc8-d400-4d48-8d98-7a46f4227ce8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'5b941dae-75e7-4901-ad1f-19d95df3e0e8','2025-10-06 07:17:17.520',1060,'KAPIDA ÖDEME - TURGAY - 248240825','COLLECT','2025-10-06 07:17:17.520','2025-10-06 07:33:17.826',NULL),
('07e8a0bd-0d1b-44fd-af6c-e7d3eb175652','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d100cd88-31b8-4788-8c56-3df2fd4058aa',NULL,NULL,'7e6b3d54-6e1a-4c75-aad5-52fb31d0c647','2024-12-27 12:08:15.400',330,'KAPIDA ÖDEME - AAAAA - 100655378','COLLECT','2024-12-27 12:08:15.400','2024-12-27 12:23:49.166',NULL),
('07e9d25e-302e-4ac3-bcd9-799337667e83','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'47f285e8-830a-42cf-a352-d8268aef8cdb','2025-10-17 06:45:24.630',680,'KAPIDA ÖDEME - BUKET AKDAG - 531380104','COLLECT','2025-10-17 06:45:24.630','2025-10-17 10:53:07.572',NULL),
('07fe3465-a80d-4b1c-9dd4-ef51ba5661a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'955c7c46-bc72-473b-9a0f-e11f625e9690','2025-05-16 16:07:59.860',1000,'KAPIDA ÖDEME - FERDİ KURT - 478996959','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('0801b104-2f0c-41e3-9ebc-f30595a49b56','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ed0857c5-779d-41e7-b628-fdfa431cfa7c','2024-12-27 11:26:10.035',1820,'KAPIDA ÖDEME - AYŞE İPEKSOY - 745766580','COLLECT','2024-12-27 11:26:10.035','2024-12-27 12:23:49.166',NULL),
('080cbb3e-ee49-410d-bdf1-12f5b8736883','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'af077b9e-3c00-4ad8-bbfa-3e1f04750a1b','2025-06-05 14:07:51.919',1250,'KAPIDA ÖDEME - SİBEL ÇEVİK - 644631223','COLLECT','2025-06-05 14:07:51.919','2025-06-06 02:46:03.729',NULL),
('085d7a67-c96b-4f4c-810a-9266728ff3c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a05e0bfa-eaae-4d7d-a151-404547093031','2025-07-26 07:29:09.300',1300,'KAPIDA ÖDEME - SÜLEYMAN SUNGUR - 371365041','COLLECT','2025-07-26 07:29:09.300','2025-07-26 08:40:12.373',NULL),
('0873b66b-88c9-482d-830d-ea9bee325cc5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'589f76b4-cf92-4f3d-838b-76cc71b62bcf',NULL,'2024-03-30 07:25:33.894',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.570'),
('0877cc93-b215-49c6-bf0f-d23faec3c8c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'13870329-2aa7-4b40-89d5-b947358fe886','2025-09-25 16:04:06.449',1500,'KAPIDA ÖDEME - BÜNYAMİN ILIKSOY - 478668622','COLLECT','2025-09-25 16:04:06.449','2025-09-26 12:27:42.320',NULL),
('087d963d-30a7-4b63-9252-04dd8b5dee8b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e015e4c5-099b-4cf1-ade2-891af283be78','2025-03-08 13:32:27.236',475,'KAPIDA ÖDEME - TAYSUMA ESET - 221944135','COLLECT','2025-03-08 13:32:27.236','2025-03-11 07:46:41.850',NULL),
('089183c2-c10e-4fdf-9bf1-6be685732dc1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'10d22b54-2959-49b7-ac9c-935cb90eaedc','2025-04-15 09:07:09.163',600,'KAPIDA ÖDEME - OSMAN ALTUN - 644901751','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('089b38e0-3788-494e-ba66-2be84f91f75d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'8ac11872-8b52-4d38-b53d-bc95257e76e8','2025-06-27 17:09:48.558',1550,'KAPIDA ÖDEME - ÖZKAN KUYUCU - 976121570','COLLECT','2025-06-27 17:09:48.558','2025-07-01 09:19:38.996',NULL),
('08cc7874-c69c-4264-8fc4-b33c496ce397','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'ab5c9dd3-1a09-47c4-8748-32885c12b8b2','2025-04-15 09:07:09.163',800,'KAPIDA ÖDEME - ALİ SARI - 64441153','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('08efdff1-f720-4713-ba63-1731be5f21b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'f478ae42-a366-4d1f-a16f-c78bdf279680','2025-04-25 15:41:06.232',1050,'KAPIDA ÖDEME - MEHMET ORHAN - 371122828','COLLECT','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('0904f65d-7ebd-4d3c-a4b8-d8d485289f91','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'16d48fda-c874-40e8-a9da-275d6658ea3f','2024-03-22 10:14:35.944',1450,'KAPIDA ÖDEME - YAKUP EMİN GÜNEŞ - 982744560','COLLECT','2024-03-22 10:14:35.944','2024-03-22 10:14:35.944',NULL),
('0912b0c4-4e78-4790-ae2b-b69ede729178','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,NULL,'bca77d81-68cd-453a-baac-e90e9d898da0','2025-08-21 07:01:13.858',1200,'KAPIDA ÖDEME - AZAT ALKAN - 35119636','COLLECT','2025-08-21 07:01:13.858','2025-08-21 08:12:57.010',NULL),
('0928166f-682a-458a-a2ae-a762933972f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'5c020160-b2d9-48d6-a019-7718647a1ff3','2024-10-17 12:52:50.273',3800,'KAPIDA ÖDEME - ZOE BACHTOLD - 449644504','COLLECT','2024-10-17 12:52:50.273','2024-10-17 12:52:50.273',NULL),
('0985b7eb-bbba-4aa0-9833-70dcd47dad0e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'df7be17b-b535-4149-92f8-afe244bb7ce9',NULL,'2024-03-30 13:00:49.451',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.657'),
('098ac289-fca7-4c24-823b-7830ecb88baa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'c1e90081-d7d5-4180-8f60-a63125cea8c2','2025-02-07 11:48:22.096',1400,'KAPIDA ÖDEME - ESTRELLA TÜMKAYA - 319918133','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('09a87d58-8cec-40eb-9c55-e74e935ef72c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'398f925f-e9ff-4494-a4eb-d80689e256ac','2025-04-30 13:44:23.805',1850,'KAPIDA ÖDEME - AMAL EL JABBARİ - 644789157','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('09a9f5e9-42bd-47aa-8fde-4c1a3317fab6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'849dc3bf-f8cd-4d56-b754-d79724b3a46a','2025-04-11 12:27:22.133',1000,'KAPIDA ÖDEME - ÖZGÜR BAY - 47833977','COLLECT','2025-04-11 12:27:22.133','2025-04-15 14:54:58.058',NULL),
('09fbee6b-0f98-447c-9c54-69092ef875f5','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'d71f7dec-d2d9-43db-b33d-4120e264d90b','2025-09-12 17:03:30.358',1000,'KAPIDA ÖDEME - BURHAN SAĞLAM - 976593604','COLLECT','2025-09-12 17:03:30.358','2025-09-12 17:16:02.697',NULL),
('0a30c4cc-1d20-443c-901f-3352a1fd487a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c8ca048a-bc13-4ec3-9715-2f7645615c63','2025-03-24 12:28:09.180',600,'KAPIDA ÖDEME - BEKİR DOĞAN  - 478168461','COLLECT','2025-03-24 12:28:09.180','2025-04-02 18:57:10.886',NULL),
('0a619c48-afaf-4b2e-8b19-1e924d7fd5f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f010ba40-a85d-4c60-af40-c8dcfac2b936',NULL,'2024-03-25 11:45:13.384',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.807'),
('0a86e9cb-75cf-434f-9e19-1b3085d6caf9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a4db2a81-e01e-459f-a5dc-0aa1254f8b05','2025-08-22 19:43:14.497',2250,'KAPIDA ÖDEME - ÖZLEM TÜRKMEN - 745853192','COLLECT','2025-08-22 19:43:14.497','2025-08-22 20:28:07.564',NULL),
('0aa4a39f-4735-4bc4-88a5-5b75a87a6d70','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e9cea214-9c50-4164-bc0c-ec27741915e8','2024-10-17 12:34:27.770',250,'KAPIDA ÖDEME - MAOUD HABİBİ - 982765286','COLLECT','2024-10-17 12:34:27.770','2024-10-23 16:37:59.556',NULL),
('0aa5803b-c285-4b62-b550-934193d1bdf3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'681178f3-b10e-484d-9d4a-91b36c17bc71',NULL,'2024-03-30 07:25:34.444',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.554'),
('0ac4fdab-1a08-46f0-ae72-8c2999864903','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d632ec-bc89-4254-b43c-4f7383017076',NULL,NULL,'6fc699fb-c118-45cb-9d3b-8275ec921ec5','2025-10-04 10:45:41.698',750,'KAPIDA ÖDEME - SİAART MERMER - 663743560','COLLECT','2025-10-04 10:45:41.698','2025-10-04 10:45:41.698',NULL),
('0acb242f-d2ab-4e8c-9a33-2ac3661f46e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'084daa7f-3636-427c-9862-03f8214bc1f5','2024-05-29 09:48:00.179',1300,'KAPIDA ÖDEME - FATMA İSAOĞLU - 449557088','COLLECT','2024-05-29 09:48:00.179','2024-05-29 09:48:00.179',NULL),
('0b5b8032-7ab4-420f-80ad-a20363afc23f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'aca1e6bd-e356-4d59-bb04-0430a246e5cb','2025-09-24 10:33:48.338',775,'KAPIDA ÖDEME - HANDE PALMA - 61378160','COLLECT','2025-09-24 10:33:48.338','2025-10-05 16:30:49.664',NULL),
('0b5cf59d-c168-448a-be91-ef4a9aea32df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','85834865-ac23-4c00-a99b-c9551971a5a1',NULL,NULL,'b67594be-f958-4225-900b-19c5f6be08ce','2024-11-08 18:10:16.525',500,'KAPIDA ÖDEME - KAYA BEY - 858854212','COLLECT','2024-11-08 18:10:16.525','2024-11-25 09:20:39.164',NULL),
('0bb29608-3c76-486f-9a5b-b6b24356aa09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'95dd31f2-ff36-4145-96de-13430d52c3ea',NULL,'2024-03-30 07:25:33.493',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.565'),
('0bb31fda-0226-4b2f-bf5a-766e032b725a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'b52527d5-1a66-4241-b1c3-b951b7b28f51','2024-05-11 08:34:56.339',2595,'KAPIDA ÖDEME - RECEP DAMAR - 745912057','COLLECT','2024-05-11 08:34:56.339','2024-05-11 08:34:56.339',NULL),
('0c09c713-4104-4104-b205-f916614d1492','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'2c12d266-801d-47b6-a3fe-3e5faa2457b9','2025-02-13 20:20:47.547',1000,'KAPIDA ÖDEME - MONİKA MORKİ  - 449693939','COLLECT','2025-02-13 20:20:47.547','2025-02-24 20:28:04.441',NULL),
('0c1d635a-5fbe-4f72-8737-774388a1bf88','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'4d25f6fc-edd0-4a96-9bb2-91c21a66472a','2025-09-12 17:03:30.407',900,'KAPIDA ÖDEME - FATİH YİGİT - 515956879','COLLECT','2025-09-12 17:03:30.407','2025-09-12 17:16:02.607',NULL),
('0c3f6f32-7cba-42d0-9f31-313de7017bf3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'d86cddee-4893-4296-91c3-184ec1dc6b17','2025-03-06 10:20:46.458',925,'KAPIDA ÖDEME - SELMA BAJRAMOSKA - 613374971','COLLECT','2025-03-06 10:20:46.458','2025-03-06 10:36:11.461',NULL),
('0c43f5d8-5481-493d-a089-5abeaee2d036','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'69fe4f9c-47cc-4216-8bca-b92bce12c165','2024-11-12 12:24:12.347',600,'KAPIDA ÖDEME - SÜMEYYE ARSLAN - 478355116','COLLECT','2024-11-12 12:24:12.347','2024-11-28 09:15:31.466',NULL),
('0c62ffd7-1d91-41f4-8d6d-c04824b37109','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'57ea5801-e3e6-46ac-b5d0-a60cf4d26d01','2024-11-18 09:19:23.887',450,'KAPIDA ÖDEME - PARWEZ MOHAMMADİ - 248694668','COLLECT','2024-11-18 09:19:23.887','2024-11-24 17:08:06.397',NULL),
('0c695573-6692-46ef-957a-1cceb0d0f7a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,NULL,'7ff713ea-32d3-468f-b2ec-bd1dde38b6ef','2024-11-02 09:10:31.628',2500,'KAPIDA ÖDEME - HASAN BEY - 448805304','COLLECT','2024-11-02 09:10:31.628','2024-11-02 09:10:31.628',NULL),
('0c80d8b5-695c-4c62-91b9-ad268fb10556','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,'a87c1195-4073-4758-919d-0b3055e5f5d6','2025-03-25 19:34:34.811',385,'KAPIDA ÖDEME - EURO MOBEL - 107869996','COLLECT','2025-03-25 19:34:34.811','2025-03-29 13:37:01.615',NULL),
('0cc293c2-0d45-465f-afd3-0160d77bf0eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'aa97f652-a0d1-40c6-aced-340a7cbb5564','2025-08-25 11:36:09.246',450,'KAPIDA ÖDEME - HAFİZE BALİ - 371684650','COLLECT','2025-08-25 11:36:09.246','2025-08-25 12:11:45.744',NULL),
('0cd8b707-e602-481e-b86d-9abf02291438','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fe3bae47-7274-4c50-b93e-3f2a1b249274',NULL,'2024-03-30 13:00:49.149',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.766'),
('0cfe085e-92ed-41ac-b9d6-2bc84f4e0a8b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'f9c61776-accb-469f-88e4-b551ad871fe8','2024-08-20 15:10:17.552',1800,'KAPIDA ÖDEME - LYDİE MAKALU - 449780250','COLLECT','2024-08-20 15:10:17.552','2024-08-20 15:10:17.552',NULL),
('0d066f2b-801a-4bc1-bd85-bf1dde938994','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9a8f0b0e-e360-4912-87e7-49eaffffb114','2024-05-29 08:47:51.737',1500,'KAPIDA ÖDEME - BEYTUK KAPLAN - 745724680','COLLECT','2024-05-29 08:47:51.737','2024-05-29 08:47:51.737',NULL),
('0d093dbf-bd0e-4dc5-a4bf-3c8106620ea2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'ce46c288-f229-4ec1-a778-6f45d324b302','2025-05-26 11:05:02.997',350,'KAPIDA ÖDEME - ERGÜN AKSOY - 657147391','COLLECT','2025-05-26 11:05:02.997','2025-05-26 13:23:22.333',NULL),
('0d4b1399-cc4c-4fbf-ba4d-2c071d0106cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'edc25440-29b7-4bf7-9e12-91c088a94762','2025-04-15 09:07:09.163',1150,'KAPIDA ÖDEME - TUĞBA GÜLSEVEN - 64434778','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('0d815fa9-5c46-4e89-bdd4-08fd13e704e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,NULL,'2024-11-12 07:58:28.140',-900,'HESAP DÜZLEME','PAYMENT','2024-11-12 07:58:38.940','2024-11-12 07:58:38.940',NULL),
('0dc9bc35-3721-49cb-91ec-91a5e27211d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'5063dfa2-5328-4697-84aa-52c286384d28','2025-02-20 08:46:00.031',1470,'KAPIDA ÖDEME - YASİN YAVAŞ - 910599740','COLLECT','2025-02-20 08:46:00.031','2025-02-20 12:40:28.679',NULL),
('0df51414-2a35-48b3-b090-131ef822e4c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'7eb8fa9b-b381-4a05-90c4-02d73cd76f15','2024-11-12 07:55:11.058',925,'KAPIDA ÖDEME - GÖKHAN BEKTAŞ  - 910352489','COLLECT','2024-11-12 07:55:11.058','2024-11-23 12:17:08.607',NULL),
('0dfc4c89-f115-4003-b79b-3d6fd4aca060','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','853c3488-15ac-4631-aa14-318dedb447a4',NULL,NULL,NULL,'2024-11-08 17:10:03.567',-1375,NULL,'PAYMENT','2024-11-08 17:10:12.339','2024-11-08 17:10:12.339',NULL),
('0e3dc114-c68d-4a79-ab98-5547eb5fdf36','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c2738111-51d8-4195-8709-efd9bbe4d309','2024-05-04 10:19:30.509',1100,'KAPIDA ÖDEME - ERGÜN YILMAZ - 478890979','COLLECT','2024-05-04 10:19:30.509','2024-05-04 10:19:30.509',NULL),
('0ea5494d-e16d-4ac7-ae53-39292912b0c2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2068e6bf-22ee-4b92-9be7-bbb6d829aaca','2024-05-04 07:43:09.980',400,'KAPIDA ÖDEME - SYLVİA LOPEZ - 478598314','COLLECT','2024-05-04 07:43:09.980','2024-05-04 07:43:09.980',NULL),
('0ef18bfb-c388-47dc-ae56-b9f92622da0d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','27cbce83-310c-4e98-830f-7433b10c2efd',NULL,NULL,'87226e30-fe1d-481b-8c10-e309459138ca','2025-08-25 11:36:09.209',970,'KAPIDA ÖDEME - ABBAS ARSLAN - 278440694','COLLECT','2025-08-25 11:36:09.209','2025-08-25 12:11:45.729',NULL),
('0ef5d2f8-b111-4d36-9bc0-e88334d6d1e1','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'32a7763a-26ff-40ce-a7e9-6378f8554627','2025-05-14 16:56:37.597',2270,'KAPIDA ÖDEME - MÜCAHİT SÖYLEMEZ - 478342417','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('0f09c592-cfc8-462b-ad52-92b9e379267c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'44ab156f-e89c-4eaa-b7ab-1fed4206ce92','2025-05-09 16:49:05.440',1750,'KAPIDA ÖDEME - ERDEL SİBEL - 644968450','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('0f1042e0-4963-458b-894b-8df67813f711','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e95ca576-046a-4f63-bd90-929b1600758e',NULL,'2024-03-30 13:00:49.800',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.611'),
('0f28fafe-0b66-45c0-bfe5-bf4a4ecad712','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'024b19f7-e2b8-4833-a610-6f1f48b3258e','2024-07-20 10:36:28.834',950,'KAPIDA ÖDEME - NESİME BAGCI - 614652730','COLLECT','2024-07-20 10:36:28.834','2024-07-20 10:36:28.834',NULL),
('0f5a8c5c-773f-4d25-9128-586243583df1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'70679c39-169c-46b4-9b96-b3994b9aee84','2024-12-13 13:13:33.330',1150,'KAPIDA ÖDEME - ZEKERİYA AKTAŞ - 735525138','COLLECT','2024-12-13 13:13:33.330','2024-12-16 18:41:52.448',NULL),
('0f5b8106-a34d-45af-be0c-baa2471c2f12','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'cf1b6f71-e318-40c8-a965-e02e6fdabcb3','2025-06-30 18:33:09.261',3250,'KAPIDA ÖDEME - SEVİM KAMER - 478524376','COLLECT','2025-06-30 18:33:09.261','2025-07-07 11:44:52.823',NULL),
('0f756ecd-ce75-40ac-aa72-a27fac19d308','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'dec449a3-13d6-40c8-925a-d1283d5b0a59','2025-09-12 17:03:30.329',775,'KAPIDA ÖDEME - TARA SAİDA - 531893295','COLLECT','2025-09-12 17:03:30.329','2025-09-14 06:51:42.885',NULL),
('0f9b9ab8-6d72-4e81-8c04-1ae8be261dc0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7ce0357d-9446-4b98-9b4d-437f1f539da7',NULL,'2024-03-25 11:45:14.183',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.783'),
('0fa35597-c5d7-4b69-aff5-672b3cd6ecc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'2827eb07-f9d6-46f4-b3fc-8d044083d85b','2024-12-28 14:51:46.124',300,'KAPIDA ÖDEME - NURGÜL YILMAZ - 449393754','COLLECT','2024-12-28 14:51:46.124','2025-01-06 20:08:12.782',NULL),
('0fe0dba2-48bc-4ff1-9132-69aa40fa3080','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'4201089d-4123-423c-809e-645e609e8e0a','2024-05-29 09:29:57.426',3620,'KAPIDA ÖDEME - HACI ULUDAĞ - 449898615','COLLECT','2024-05-29 09:29:57.426','2024-05-29 09:29:57.426',NULL),
('0ffdb352-0df5-4f3b-bdc7-a04773d352c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'d9f2c22b-b9f7-410b-a99f-d86912b69cc4','2024-10-02 09:43:38.112',1800,'KAPIDA ÖDEME - RUHAT DEĞİRMENCİ  - 501626049','COLLECT','2024-10-02 09:43:38.112','2024-10-02 09:43:38.112',NULL),
('101277c7-45c9-420f-bb86-d3cf8eda4ba2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'3fba1e1a-d3f7-4a72-b88c-284f205185ce','2025-06-26 09:43:12.538',2500,'KAPIDA ÖDEME - MAZHAR BAYMAN - 644903033','COLLECT','2025-06-26 09:43:12.538','2025-06-26 16:05:22.693',NULL),
('10200696-d89d-41f5-bca8-48376f88d471','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'7af2880d-3a81-482d-afb4-351d64968ae8','2025-09-05 18:27:28.119',800,'KAPIDA ÖDEME - ŞENGÜL BABAOĞLU - 371304914','COLLECT','2025-09-05 18:27:28.119','2025-09-06 09:41:31.833',NULL),
('1033e889-6e6e-496c-b9e2-114ef9c28d2a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'28aa910c-3b23-4740-b659-b60712e6207f',NULL,'2024-03-30 07:25:33.794',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.622'),
('1069d648-3c22-4e55-b1a6-84042ef9d93f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'6de04c45-fcae-42a3-aebf-5b140d42d81f','2025-04-25 15:45:30.739',1650,'KAPIDA ÖDEME - TUĞBA COŞKUN - 371672954','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('1088690a-3d6a-4362-8d73-cc6ce8ac0541','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'23c7b08f-63d2-4f18-9f68-f434d59760ab','2025-02-07 11:48:22.096',1000,'KAPIDA ÖDEME - MEDİNE ÖKDEN - 127639932','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('10b96ce5-648f-4650-8975-fb14360ea571','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'49c48f88-3c20-42bd-8ea9-304d94c9460f','2025-07-12 09:16:05.707',1000,'KAPIDA ÖDEME - MEHMET ALİ ALBECER - 976747802','COLLECT','2025-07-12 09:16:05.707','2025-07-16 14:21:29.503',NULL),
('10ba05e2-8c0c-4c28-8f9f-6589f9a101c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,NULL,NULL,'2024-11-08 17:08:33.944',-1649.5,NULL,'PAYMENT','2024-11-08 17:08:48.683','2024-11-08 17:08:48.683',NULL),
('10c098b6-3b67-467d-b8cb-2fbaa9e27f23','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b92361d9-2a0d-4287-b424-72a47a8f2fa4','2024-08-07 15:02:35.012',150,'KAPIDA ÖDEME -  - 248425122','COLLECT','2024-08-07 15:02:35.012','2024-08-07 15:02:35.012',NULL),
('111a2580-d8a1-4305-b349-2d7a748b9d38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'1eee00b6-90f3-4331-83c5-6bef65b0bf33','2025-07-18 17:50:30.888',990,'KAPIDA ÖDEME - SEVGİ BOLAT - 598250504','COLLECT','2025-07-18 17:50:30.888','2025-07-22 16:18:49.476',NULL),
('115f1f4f-706e-4e8f-b661-682c000a93c9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92','2025-08-14 07:46:42.694',800,'KAPIDA ÖDEME - ABBAS GHULANI  - 982978293','COLLECT','2025-08-14 07:46:42.694','2025-08-14 08:02:29.754',NULL),
('1167acdc-23ac-47df-b8e2-8f9c9b5af86a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'b03e4184-3ccd-452d-bdbf-3a4ddecfb868','2025-06-30 18:33:09.232',1200,'KAPIDA ÖDEME - BERNA YİLDİRİM - 613847250','COLLECT','2025-06-30 18:33:09.232','2025-07-07 11:44:52.775',NULL),
('11fa6c1c-74ce-4941-a2d5-24cd076e47f7','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'503d054f-153e-4dba-9be1-a45ec1b52abe','2025-07-29 12:26:43.565',1370,'KAPIDA ÖDEME - BOLL TRADE - 412173308','COLLECT','2025-07-29 12:26:43.565','2025-07-29 12:37:20.489',NULL),
('11fafade-5937-4818-ad82-df7c578c0976','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'28fc5d33-470c-4593-ae35-0b9f9baaaef2',NULL,'2024-03-30 13:00:49.599',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.712'),
('12087eb0-88d5-47d2-bc9f-25b225763055','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0','2025-04-25 15:45:30.739',3000,'KAPIDA ÖDEME - MEHRDAND RAZMPOUR - 478962763','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('121d1729-ef32-4ea2-a987-cefb095e06db','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7d25dd6c-b580-4679-8166-de420c1a2cf3',NULL,'2024-03-30 13:00:50.251',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.666'),
('1229e198-9a98-4206-bc8a-7eabce5ea5c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'088fba56-0e50-4ce7-864f-7f301956e881','2025-01-01 10:23:58.928',750,'KAPIDA ÖDEME - HANEFİ ALİOĞLU - 501247386','COLLECT','2025-01-01 10:23:58.928','2025-01-06 20:08:12.782',NULL),
('124a6495-7d83-4fed-be80-ba9ac33a4ca5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'4b40049d-0967-49c8-8e4e-49b9a8e0a539','2024-09-27 11:22:23.898',1000,'KAPIDA ÖDEME - ERSİN ÖZDEMİR - 478392276','COLLECT','2024-09-27 11:22:23.898','2024-09-27 11:22:23.898',NULL),
('128f8534-5166-4a4b-9557-436209a2455f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'483b6f65-6972-4267-8fb5-43e1ad8b38cb','2024-11-02 10:25:40.986',1040,'KAPIDA ÖDEME - ORKUN SÖĞÜTLÜ - 248292815','COLLECT','2024-11-02 10:25:40.986','2024-11-02 10:25:40.986',NULL),
('12a788e0-daa2-4f87-b9fd-981ee57769a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c3d6a144-9f64-4576-9ddc-760d75c937fc','2025-09-25 16:04:06.436',1020,'KAPIDA ÖDEME - HATİCE ÖZTÜRK - 221621737','COLLECT','2025-09-25 16:04:06.436','2025-09-26 12:27:42.402',NULL),
('12ab1abe-772a-4d4b-838f-f598ab33d9b5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'19477814-74e5-487f-821f-b9e4170ef1d0',NULL,'2024-03-25 11:45:13.634',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.790'),
('12d6f097-c734-47f2-ba0d-441f08929caa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'58d4a91c-acf5-448c-9848-3d5806828926','2025-07-22 15:23:42.468',500,'KAPIDA ÖDEME - FİRAS MACHANTAT - 750505145','COLLECT','2025-07-22 15:23:42.468','2025-07-22 16:18:49.543',NULL),
('12f96e8a-be33-47af-9412-15869bedbb9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9c0b1881-fd94-413c-b7b5-63b9d4d26501','2025-03-25 19:20:46.451',600,'KAPIDA ÖDEME - SERKAN YILMAZ - 22145224','COLLECT','2025-03-25 19:20:46.451','2025-03-29 13:37:01.615',NULL),
('12fe3bb4-fe01-4889-9da2-b7aa6d8673c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'e9be7295-2626-4fb3-adb1-dcad8f37101f','2024-03-23 06:41:59.661',1080,'KAPIDA ÖDEME - ÖZLEM GÜLER - 248653667','COLLECT','2024-03-23 06:41:59.661','2024-03-23 06:41:59.661',NULL),
('1311fd66-98bd-4b7e-a1f4-b2eee5d84ba3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a8d6af10-f6df-4fed-9267-1395f40ba8f9','2025-02-07 11:48:22.096',300,'KAPIDA ÖDEME - MUSTAFA YILMAZ - 745636493','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('13164cb1-fc52-41c4-9d13-e1130ec0ea44','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'68b0a915-121f-4d3c-b2e8-25b8e3e18525','2025-08-15 14:18:27.787',1215,'KAPIDA ÖDEME - SATİ CENGE - 437427529','COLLECT','2025-08-15 14:18:27.787','2025-08-18 07:14:34.913',NULL),
('133433e5-754f-485f-893e-feb9189cf165','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'ab5fcfea-2c70-4648-a088-f39fd930c2ab','2025-07-08 11:07:05.290',1190,'KAPIDA ÖDEME - RUKİYE BİÇEM KAPAN - 735929791','COLLECT','2025-07-08 11:07:05.290','2025-07-08 11:33:15.244',NULL),
('13352b73-d6b1-4bdc-ac26-ba9147ec069d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'5b1a0cd4-bd43-439a-9c7e-9bde54150a22','2025-03-06 10:30:06.353',950,'KAPIDA ÖDEME - MEHDİ HASSEİNİ - 455522020','COLLECT','2025-03-06 10:30:06.353','2025-03-06 10:36:11.461',NULL),
('133fcc07-7f00-4c4f-8866-66664a5b80bf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'39b8366a-c9ba-4484-bb91-a877325d0b1c','2025-10-01 07:00:04.447',750,'KAPIDA ÖDEME - FURKAN KAYABAŞ - 221631052','COLLECT','2025-10-01 07:00:04.447','2025-10-01 07:56:23.163',NULL),
('136d409f-821f-4871-9495-e8c87454936a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'4e1208ff-8f5b-4346-a832-196d997bdb96','2025-10-25 08:43:45.495',690,'KAPIDA ÖDEME - SADİJE KAMBERİ - 59841260','COLLECT','2025-10-25 08:43:45.495','2025-10-25 08:58:43.980',NULL),
('1371eff7-0279-4f7a-aab3-438372c128eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb',NULL,NULL,'a4b0544f-8781-4cb5-97b8-539cc674a28c','2025-06-30 18:34:37.125',1750,'KAPIDA ÖDEME - MERT ALİ YÖNTEM - 203151723','COLLECT','2025-06-30 18:34:37.125','2025-07-07 11:44:52.746',NULL),
('13ba7ebb-11d7-4811-9d43-dc6565058521','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'469ffe47-8345-4906-aaad-d07f19e1be1f','2025-04-15 09:07:09.163',700,'KAPIDA ÖDEME - PERİHAN GÜNAY - 745770556','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('13e47da5-57b1-4b45-81b2-8b9339bb19f4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c735b354-cdf9-4b6d-8716-20e24197091b',NULL,'2024-03-30 07:14:02.358',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.906'),
('140b586c-4273-4bd2-82a5-23eef3e4f8f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'eea08890-ec66-4c80-b59d-441d24154725','2025-09-08 16:22:57.520',200,'KAPIDA ÖDEME - AHMAD KADİ - 598578683','COLLECT','2025-09-08 16:22:57.520','2025-09-08 16:22:57.520',NULL),
('143b6aae-f02f-47bd-b4cd-e3b1ad98a882','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'02ac49e1-502e-4bc4-b041-65c1b38fb8c7','2025-01-19 16:15:29.084',600,'KAPIDA ÖDEME - MİTRA MESKİNİ - 44932987','COLLECT','2025-01-19 16:15:29.084','2025-01-28 15:19:34.396',NULL),
('145b6cfb-74c3-48d9-a892-762d672b0a09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0dae8190-b900-4826-9171-b2d74a2538b0',NULL,NULL,'05588ac5-1827-4e7a-aa48-8b1a8cbac0d0','2025-02-15 10:11:41.018',850,'KAPIDA ÖDEME - DONYA AL HAİDARİ - 081411095','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('147cdea9-810f-4b55-b989-f6b62841ce91','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9a626800-f140-4dfa-a7a3-96ec6cf606bd','2024-11-02 09:20:24.216',1000,'KAPIDA ÖDEME - ÖMER ÇALIK - 745127322','COLLECT','2024-11-02 09:20:24.216','2024-11-12 17:25:00.328',NULL),
('14cb7a7a-2a2f-4f97-9dc5-bf78e78a3870','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'1ee695b2-e6cc-43a6-8353-dfb5294700ed','2025-04-19 10:05:37.061',1000,'KAPIDA ÖDEME - MİHAND SAFAE  - 221257971','COLLECT','2025-04-19 10:05:37.061','2025-05-02 17:08:29.291',NULL),
('14f26f4d-c724-497b-a7a7-6e52dea498d3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'73df0d9c-5733-4d04-8f77-6e191897e0ff','2025-04-11 12:26:08.423',925,'KAPIDA ÖDEME - YUNUS HADIMLI - 644732617','COLLECT','2025-04-11 12:26:08.423','2025-04-15 14:54:58.058',NULL),
('14fd5985-708f-4e86-ac8e-69c85025705c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a5fa7b22-0335-4176-bbd4-9e0aa4e7d6e8',NULL,'2024-03-30 13:00:50.700',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.775'),
('150c8384-324a-499d-8ba2-200d047d3704','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'bdb01abd-b400-4d77-9dc6-589a2150e1ce','2025-07-12 09:16:05.774',1000,'KAPIDA ÖDEME - SUAT TURA - 371628660','COLLECT','2025-07-12 09:16:05.774','2025-07-16 14:21:29.628',NULL),
('15103e71-c8b0-4458-8ea7-513b7a37402e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1d1b0519-cc98-407b-8825-ffa22f2889af',NULL,'2024-03-30 07:14:02.258',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.944'),
('15228d14-e13b-4f94-aabf-30948cd14a0a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d0a42d0b-652e-4d1c-8afa-fc3364d3588d',NULL,'2024-03-25 11:45:12.932',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.738'),
('152d11ef-6bd6-42c0-8b8a-4325fef15621','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'6e41f6a8-bb92-49dc-af72-2b1e16aa490c','2025-06-27 17:09:48.516',300,'KAPIDA ÖDEME - OSMAN BEY - 657405652','COLLECT','2025-06-27 17:09:48.516','2025-07-01 09:19:38.975',NULL),
('156a30e7-e6a9-41a5-b522-d80c91b6b6fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'eb029e46-e69e-4bea-b717-f1c575aa7ca7','2025-10-03 15:04:04.786',4850,'KAPIDA ÖDEME - ERDAL AKDAĞ(K) - 644985861','COLLECT','2025-10-03 15:04:04.786','2025-10-03 16:08:51.106',NULL),
('15b299bc-ee81-42cb-90f9-a893ad08cc3d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','92d31478-aa4f-4f7e-b6e7-95b858af9bfe',NULL,NULL,'9f65e17e-c684-49ab-8966-be09ed865fe2','2024-10-17 13:27:08.181',1300,'KAPIDA ÖDEME - FUNDA CAMDAN - 923419994','COLLECT','2024-10-17 13:27:08.181','2024-10-17 14:00:00.691',NULL),
('1618e452-0020-4f84-8e0c-a3a52bfa5aa8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'c7effd94-7a9b-48a7-aa10-5ff2f31371f4','2025-05-28 18:50:18.071',700,'KAPIDA ÖDEME - TUBA BALTA - 675902808','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('1622597e-d3ad-47fb-b83b-21da684ff74f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a7f2c8a1-4d37-45da-904c-4406f86faab9','2025-09-05 18:22:32.086',1900,'KAPIDA ÖDEME - CAN KUL  - 478161304','COLLECT','2025-09-05 18:22:32.086','2025-09-05 18:45:08.379',NULL),
('166df500-d381-4493-8173-4f4c3c5ae5af','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'9a1969a8-0e13-466d-8869-8ce1c930334b','2025-07-08 11:17:29.727',1000,'KAPIDA ÖDEME - ALİ ALBAY - 517205085','COLLECT','2025-07-08 11:17:29.727','2025-07-08 11:33:15.162',NULL),
('1694ac5d-bdd7-41d0-8039-84d58ba74031','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'9da5d3b0-f88e-4c15-a503-00d3fecd11b9','2025-09-02 12:04:14.799',995,'KAPIDA ÖDEME - NURCAN KURNAZ - 786252388','COLLECT','2025-09-02 12:04:14.799','2025-09-02 14:46:19.275',NULL),
('16ae7661-e4a1-4f94-a593-48ac7f306147','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'254db918-6ad9-42a6-b7ea-2bbef8e0b16d',NULL,'2024-03-30 13:00:50.506',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.723'),
('16b907a2-c5bd-4a24-9746-5c0532582982','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'c2a2e3f6-0c40-47f3-b43b-d69383cb87fc','2025-02-18 16:31:57.984',600,'KAPIDA ÖDEME - VEYSİ BALKAYA - 412252425','COLLECT','2025-02-18 16:31:57.984','2025-02-27 13:37:30.441',NULL),
('16bbf903-4048-4b6f-9720-413bf76e60df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'e3943ece-5f39-454b-89e6-213b14b5658f','2024-10-11 15:28:53.768',1000,'KAPIDA ÖDEME - NUSRET GÜNEŞ  - 501163993','COLLECT','2024-10-11 15:28:53.768','2024-10-23 16:32:46.457',NULL),
('16e5bcfa-791d-4e95-b256-648b8887034a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b','2025-10-03 15:04:04.737',425,'KAPIDA ÖDEME - YASEMİN MUTLU - 598131456','COLLECT','2025-10-03 15:04:04.737','2025-10-03 16:08:51.057',NULL),
('171c6b0b-6a3f-4eaa-b417-d8755c7ea9ad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'ac0d9f90-73b4-44ba-8178-bf37ec113ca8',NULL,'2024-03-30 07:25:33.293',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.634'),
('1746076c-b91e-4336-b2ec-ec308826edf4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'eeb0855a-50cc-4fa1-85b3-727ab47a1333',NULL,'2024-03-30 07:14:01.207',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.997'),
('177413d7-9cc9-4e46-b0d9-4f693d9a4fa2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'df58ec64-55e5-44c2-990e-e1e6e1cdf1cc','2025-03-25 09:39:17.021',2850,'KAPIDA ÖDEME - ZEKİYE TOPATAN - 644877146','COLLECT','2025-03-25 09:39:17.021','2025-03-29 13:37:01.615',NULL),
('17820904-c686-41c6-9d30-8f2795202cce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'a97d7c55-7024-4e97-872e-5931f2242e1e','2024-03-22 10:14:50.553',3350,'KAPIDA ÖDEME - PINAR BARUTÇU - 614813890','COLLECT','2024-03-22 10:14:50.553','2024-03-22 10:14:50.553',NULL),
('1792e2c5-208e-4e68-b28d-f06fa49939a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'910744ec-cad6-475e-ad64-324c153358ad','2025-06-30 18:26:30.989',960,'KAPIDA ÖDEME - ŞEYMA BOZDAĞ - 221940723','COLLECT','2025-06-30 18:26:30.989','2025-07-07 11:44:52.725',NULL),
('17b30c77-6be6-42fc-a3a8-05b5985bddf2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'2f96bf63-9b6a-4629-9bf1-1f428f44e517','2025-02-07 11:48:22.096',1150,'KAPIDA ÖDEME - MUSA ÖZER		 - 910586114','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('17d772c7-030c-4c5f-b0a8-2c4cfd0a1353','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b66f3ad7-e0cf-4e4e-852f-584b41ad42db','2025-02-03 17:55:18.052',1750,'KAPIDA ÖDEME - SEMİH ELMAS - 478173801','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('17de6d37-c87a-43fb-b02e-2124bb4997e4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'d74a364e-c899-455c-8b3f-5a445fba432a','2024-10-23 14:53:36.460',1250,'KAPIDA ÖDEME - MUHAMMER KORKMAZ - 976187023','COLLECT','2024-10-23 14:53:36.460','2024-10-23 14:53:36.460',NULL),
('1815ae66-c24e-4496-b09f-c02913eb3b1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bdcba068-5e89-449f-8923-4fd0812e9689',NULL,'2024-03-30 07:25:32.842',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.582'),
('1841c0cf-ade3-44b1-ab1b-ea8c3c055471','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f32513e0-8eeb-4eff-b7e0-6c1734713bae','2025-08-07 16:03:34.166',1300,'KAPIDA ÖDEME - RWWHİKA KATUSABE  - 982484679','COLLECT','2025-08-07 16:03:34.166','2025-08-12 08:07:30.441',NULL),
('184c009f-1a4a-419b-9874-f34092d45d8a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e42302dc-97ca-47b0-aaba-bbb4bf243d70',NULL,'2024-03-30 13:00:48.948',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.729'),
('1864f3df-bb4d-4ce2-842e-813dc98dbeea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'5f656441-40ec-47a2-a5a0-c7819b0df651','2025-05-09 16:49:05.440',300,'KAPIDA ÖDEME - ELİSABETH BRUCH - 371807983','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('188cc707-bbb0-479c-b622-d9cc19e2e12d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'9c818465-8168-4f07-aaba-0d59b1260716','2025-02-15 10:13:18.920',800,'KAPIDA ÖDEME -  ELİF MUHCU - 127281736','COLLECT','2025-02-15 10:13:18.920','2025-02-15 16:08:16.558',NULL),
('1899074e-421e-4202-bbde-ca6fce762759','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'833e1960-d162-4228-ac7a-54bd28d48049','2024-11-06 19:23:42.449',3490,'KAPIDA ÖDEME - Emek thibaut agit - 982292057','COLLECT','2024-11-06 19:23:42.449','2024-11-25 09:20:39.164',NULL),
('18c35a12-1023-493d-8679-883233ce81cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'13b7e986-8aa5-48cf-8d62-fdb2c0c334f3','2025-02-27 11:02:40.269',4000,'KAPIDA ÖDEME - MÜZEYYEN TEYMUROĞLU - 478677950','COLLECT','2025-02-27 11:02:40.269','2025-03-21 17:17:29.974',NULL),
('18ca34d5-6e58-4719-a4cb-11b2203ba8b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'f5b18e9c-6bdb-4097-ace8-718bd3dec4e0','2025-04-15 09:07:09.163',990,'KAPIDA ÖDEME - MUAMMER CANPOLAT - 371376503','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('18da2a5f-ae7b-45ec-bde2-db28cfc611da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'08c394f5-81b6-4f94-b6e3-4d898cb44cae','2025-04-30 13:44:23.805',1625,'KAPIDA ÖDEME - SALİM TEKE - 371884796','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('18da8400-b679-4207-ba1f-d05a53527d48','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','2025-10-03 15:04:04.800',2300,'KAPIDA ÖDEME - FADİME ERİMEZ - 598425779','COLLECT','2025-10-03 15:04:04.800','2025-10-03 16:08:51.120',NULL),
('1905766d-2df8-4805-affe-814390bd80b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127','2024-03-25 10:35:14.736',5050,'KAPIDA ÖDEME - DUDU AKSOY - 982944278','COLLECT','2024-03-25 10:35:14.736','2024-03-25 10:35:14.736',NULL),
('1961cf55-72c1-4226-93ed-4ea43c9e7b61','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'4fe827f7-044c-467f-84fa-f87c0fb696c4','2025-06-30 18:34:37.144',1175,'KAPIDA ÖDEME - GÜLER DELİDUMAN - 221432350','COLLECT','2025-06-30 18:34:37.144','2025-07-07 11:44:52.683',NULL),
('1962f74e-8e73-4d04-a43c-c2813d1f50c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'ab6767e0-e872-49bd-a112-8a7379b05965',NULL,'2024-03-30 13:00:50.651',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.762'),
('196722b3-f72f-453f-b57e-3af64a55fb77','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'bf9be925-842f-4ee7-ad0e-8e73349c83f4','2025-09-02 12:04:14.873',900,'KAPIDA ÖDEME - SERCAN KUCUR - 437626008','COLLECT','2025-09-02 12:04:14.873','2025-09-02 14:46:19.355',NULL),
('196e4541-b1a7-4226-b994-d3d5fefa9b50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'7f6e46a0-6664-4624-b492-d5fe0196f1c7','2024-05-23 07:17:49.399',600,'KAPIDA ÖDEME - MEHMET ŞAFAK - 745303298','COLLECT','2024-05-23 07:17:49.399','2024-05-23 07:17:49.399',NULL),
('19890b2b-55c1-4cdf-8f08-9a5dc91f707e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'cb15c1ae-0f66-4f47-875b-dcc051ecb1cb','2024-12-13 13:16:19.811',4000,'KAPIDA ÖDEME - SULTAN GÖR - 478212601','COLLECT','2024-12-13 13:16:19.811','2024-12-16 18:41:52.448',NULL),
('199c991d-fa1e-4ff8-b8a0-debceb1e854b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'e5d25a08-4616-46db-a673-3c63eb09c6f2','2025-07-08 11:33:08.221',350,'KAPIDA ÖDEME - KIYMET HANIM  - 657635062','COLLECT','2025-07-08 11:33:08.221','2025-07-08 11:33:15.221',NULL),
('19b610ef-f17e-4ba2-ba60-26f161f7e49f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'712504b4-3082-4d55-b36d-6c65e190776a','2025-05-16 16:06:36.411',1000,'KAPIDA ÖDEME - ROHAD TOSUN  - 221529516','COLLECT','2025-05-16 16:06:36.411','2025-05-16 16:30:10.378',NULL),
('19fc7269-6546-4f63-823a-521c9f7ae634','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'150442fb-cc98-4a3d-861f-26845907dbfa','2024-06-08 09:01:31.601',2200,'KAPIDA ÖDEME - FERHAT TUNA - 42814374','COLLECT','2024-06-08 09:01:31.601','2024-06-10 14:51:43.629',NULL),
('1a1bce86-328b-4bd3-96c9-78614c06fce7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,NULL,'2024-11-12 08:00:36.646',-110,'HESAP DÜZLEME','PAYMENT','2024-11-12 08:01:23.005','2024-11-12 08:01:23.005',NULL),
('1a27e09b-6691-4a6e-b706-2ec00c48eed9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'b8cd88fd-9a6c-40bd-ad5f-292e992b957f','2025-10-13 07:14:08.988',875,'KAPIDA ÖDEME - ABDULLAH ÖZER		 - 910594430','COLLECT','2025-10-13 07:14:08.988','2025-10-14 08:52:36.834',NULL),
('1a2ef98e-f3e5-4026-b621-01975e458877','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'26eebedd-d4ee-429f-bfe5-964620f33452','2025-10-13 07:14:08.915',1050,'KAPIDA ÖDEME - KAM.   TUBA YİLDİRİM - 011804405','COLLECT','2025-10-13 07:14:08.915','2025-10-14 08:52:36.759',NULL),
('1a3bc882-1c8f-4dd8-b61b-7eee0e3c0a25','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a1f8406-8725-4744-9eab-26d8b900d3c1',NULL,NULL,'ffe7cd27-4d52-41ee-b5e5-b17ff3b89095','2025-02-18 16:05:56.998',1600,'KAPIDA ÖDEME - MUSTAFA KIVRAK - 118176933','COLLECT','2025-02-18 16:05:56.998','2025-02-27 13:37:30.441',NULL),
('1a56361a-2659-438d-b464-f00e8e29c0dd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'3f7ffe14-ff1f-4d95-8dd4-55570a12656c','2025-06-05 14:23:33.681',750,'KAPIDA ÖDEME - AHMET EMİN GÜL - 910201328','COLLECT','2025-06-05 14:23:33.681','2025-06-06 02:46:03.729',NULL),
('1a7af8e8-0d99-44ee-8b57-80a6dc6e0cee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'b76bdb52-fa77-477f-afbf-6246f10d357a','2025-07-18 17:50:30.814',350,'KAPIDA ÖDEME - ÖMER METZ - 412647671','COLLECT','2025-07-18 17:50:30.814','2025-07-22 16:18:49.612',NULL),
('1aa253df-3203-4961-8382-ad4fb8cf0dcc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'226e99fa-2222-409d-9c22-ab0639c760f9','2024-07-20 11:01:52.903',600,'KAPIDA ÖDEME - TKHİLİ NAİDA - 982318245','COLLECT','2024-07-20 11:01:52.903','2024-07-20 11:01:52.903',NULL),
('1aa394a4-7f52-4b12-964c-858786c16748','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'08318497-59bc-4444-82cf-f14fd0a31917','2025-10-13 07:14:08.959',2420,'KAPIDA ÖDEME - NAFİT GANİOĞLU - 517255345','COLLECT','2025-10-13 07:14:08.959','2025-10-14 08:52:36.804',NULL),
('1ad06286-82e0-4820-9b3d-f3a3eface31f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','0debd19b-d90b-48a0-9568-2d01319377e0',NULL,NULL,'f09498b2-ab9d-4831-be05-04151fd3f0f4','2025-05-26 11:30:34.062',1200,'KAPIDA ÖDEME - ONUR MAHAR - 019113818','COLLECT','2025-05-26 11:30:34.062','2025-05-26 15:20:56.989',NULL),
('1adc7fe9-0d77-471c-8fb5-4785fb9e164e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'ac25d1b9-2250-4154-b15b-f735a6fdc731','2025-07-16 14:24:19.214',1200,'KAPIDA ÖDEME - YAVUZ KOÇMAN		 - 910772127','COLLECT','2025-07-16 14:24:19.214','2025-07-16 14:29:34.157',NULL),
('1aeafd22-72f4-4636-9a8f-5c9f587ac3fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'c67fa905-f2ae-4d60-a3cb-8209edbe7b9c','2025-10-22 13:03:09.911',420,'KAPIDA ÖDEME - SEYFETTİN - 412223405','COLLECT','2025-10-22 13:03:09.911','2025-10-22 13:03:09.911',NULL),
('1b1851d0-9d67-4d13-a8a6-6445cedb55ff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f429c1c6-c6a3-4f80-ac7f-7e84dfe12573','2024-09-16 08:01:14.889',1350,'KAPIDA ÖDEME - İBRAHİM KARABACAK  - 98222175','COLLECT','2024-09-16 08:01:14.889','2024-09-18 21:32:58.638',NULL),
('1b1cafc2-7176-4ab3-bebb-bcddb92fdedc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b51c5f7-649a-424f-ba17-cc37d6298af9',NULL,NULL,'fa43edbe-bf66-4c07-ab59-51d6823553d1','2025-02-27 11:45:33.845',1070,'KAPIDA ÖDEME - İLHAN ERAYDIN - 15151133','COLLECT','2025-02-27 11:45:33.845','2025-03-21 17:17:29.974',NULL),
('1b400336-ea71-4701-946d-ad2a7ffb19f9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ce4c8f08-9110-4882-8b15-e54368f68914','2024-09-20 15:28:46.027',880,'KAPIDA ÖDEME - MUSTAFA AİT - 449769276','COLLECT','2024-09-20 15:28:46.027','2024-09-27 13:56:26.213',NULL),
('1b7786ef-eb9c-4b19-946b-ab8e1626974e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','92d31478-aa4f-4f7e-b6e7-95b858af9bfe',NULL,NULL,'94ed4318-546d-4bfe-8ecf-e1631bc2b933','2025-05-02 17:08:04.005',1000,'KAPIDA ÖDEME - ENİSA YEKTA  - 923436295','COLLECT','2025-05-02 17:08:04.005','2025-05-02 17:08:04.005',NULL),
('1b8d45eb-8fd4-422d-9dbf-e4b1a6bc6a23','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'3c78b7fc-a182-4269-8da4-db683ff8cada','2025-05-14 16:56:37.597',710,'KAPIDA ÖDEME - KUDRET KALK - 371804669','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('1b90833d-8565-4a6e-af77-fd26e1ec1929','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52840269-0db7-4c57-8a50-57d49049f342',NULL,NULL,NULL,'2024-11-08 16:55:29.819',-1000,NULL,'PAYMENT','2024-11-08 16:55:37.902','2024-11-08 16:55:37.902',NULL),
('1bbe24cf-1824-4a2e-b479-096e9d1d061b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc','2025-01-19 16:25:39.959',470,'KAPIDA ÖDEME - AMANY MOUSA - 22134117','COLLECT','2025-01-19 16:25:39.959','2025-01-28 15:19:34.396',NULL),
('1c113ba4-a397-471d-8b75-578e28a668ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a34f5acd-e7a0-4960-a2f6-754b4e35e40a','2025-09-10 06:49:18.595',1250,'KAPIDA ÖDEME - ELOUAZGHİ ANAİS  - 745879253','COLLECT','2025-09-10 06:49:18.595','2025-09-10 07:11:56.219',NULL),
('1c13bf0e-83c2-49a0-856a-9985245508e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'e3176b45-a9ae-470a-9151-1ab0181ca82c','2025-03-24 12:22:38.006',600,'KAPIDA ÖDEME - CAN ALTIN - 644110179','COLLECT','2025-03-24 12:22:38.006','2025-04-02 18:57:10.886',NULL),
('1c8239b4-169e-4fd7-97d2-89766c9efdc4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5913d039-3ade-4c0a-b799-6d69b6824f00','2024-09-27 11:53:55.511',2300,'KAPIDA ÖDEME - MUSTAFA UZUNBOY - 47867667','COLLECT','2024-09-27 11:53:55.511','2024-09-27 11:53:55.511',NULL),
('1c918678-3084-47d9-870f-6da35b1f6938','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'c62221b7-0c98-4cdc-8719-46cbd126b5d6','2025-05-23 06:31:10.164',1650,'KAPIDA ÖDEME - SEMRA HAKAN KABİR - 745409977','COLLECT','2025-05-23 06:31:10.164','2025-05-26 13:23:22.333',NULL),
('1caf6a64-a703-4122-b9af-eb78ed745977','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'44210846-9f4f-4a9a-bee7-90445db03b5c','2025-10-14 08:08:57.322',300,'KAPIDA ÖDEME - M.ALİ ÇETİN - 910129924','COLLECT','2025-10-14 08:08:57.322','2025-10-14 08:52:36.878',NULL),
('1cb6efbf-8807-4db9-aee4-3c5073817d95','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'18e20c12-0084-4178-a4a0-370a754f1563','2025-01-22 08:48:36.714',700,'KAPIDA ÖDEME - HİLAL YILMAZ  - 2213375','COLLECT','2025-01-22 08:48:36.714','2025-01-22 09:40:15.479',NULL),
('1cc632b6-f3c7-4686-96bf-0a39e178aecd','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,NULL,'2025-02-11 10:55:56.590',-2250,'deneme','PAYMENT','2025-02-11 10:56:15.885','2025-02-11 10:56:15.885',NULL),
('1cd6677b-790f-4bf9-b395-250b26447565','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'18ef4d21-d80d-45a3-9290-b7d6562f11b5','2025-08-27 08:40:21.984',945,'KAPIDA ÖDEME - SERAP ÖZTEK - 437660658','COLLECT','2025-08-27 08:40:21.984','2025-09-03 06:09:36.623',NULL),
('1cf44273-4dd3-449f-b574-98a5efefe27b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'cebebeee-0bad-4139-9847-7d88c79fbf91','2024-09-28 16:00:36.379',650,'KAPIDA ÖDEME - FAREDİN BAJRAMİ - 248363931','COLLECT','2024-09-28 16:00:36.379','2024-09-28 16:00:36.379',NULL),
('1cf68dad-2068-4296-b1a1-b4fbb2d1c104','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee',NULL,NULL,'b4f193d3-ef4e-4341-9bd2-136dfaae75a5','2025-02-07 11:48:22.096',1300,'KAPIDA ÖDEME - MEHMET BATMAZ - 46558561','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('1d0b4226-4a70-4aaf-bff4-92546b2b6b5a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a149c299-f700-457c-ad04-aac7b10d4609','2025-02-23 12:26:40.006',400,'KAPIDA ÖDEME - ŞEVKET ZİRİH - 478545295','COLLECT','2025-02-23 12:26:40.006','2025-03-02 04:33:53.043',NULL),
('1d5e98f4-cda1-4837-9dfd-42bbd7a0b8da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ae4be566-d149-4887-b3bd-f5c96537b47b','2024-10-25 09:22:43.145',1500,'KAPIDA ÖDEME - OMAR AHMEDİ  - 44998008','COLLECT','2024-10-25 09:22:43.145','2024-10-31 07:50:19.161',NULL),
('1d5feb72-705d-469b-a33e-7fcc5e73c8a8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e','2024-11-25 15:28:41.742',3750,'KAPIDA ÖDEME - SAİT CARCUR - 501874784','COLLECT','2024-11-25 15:28:41.742','2024-12-02 09:51:49.376',NULL),
('1d605b55-d6f4-4042-a286-199072674e0b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'1ad7ddb4-76f9-481c-8d5d-2018e9c8e712','2025-08-27 08:40:22.014',500,'KAPIDA ÖDEME - TUĞÇE ÖZKAYA - 598587609','COLLECT','2025-08-27 08:40:22.014','2025-09-03 06:09:36.632',NULL),
('1d723424-90bc-452b-bf33-fd65ca21fcc1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'f7f2db15-90e1-4ab2-89b6-6a61a7161bbf','2024-05-17 15:52:01.951',850,'KAPIDA ÖDEME - Zafer bey - 412454305','COLLECT','2024-05-17 15:52:01.951','2024-05-17 15:52:01.951',NULL),
('1d803892-e8d6-48c1-939a-9264b0024a38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c44ad438-ca7d-42db-860f-ada68ed38828','2024-03-22 10:16:40.260',2000,'KAPIDA ÖDEME - NAHİDE BAHÇEÇİOĞLU - 478127271','COLLECT','2024-03-22 10:16:40.260','2025-08-25 16:20:27.592',NULL),
('1d984d00-5ffb-4aa0-9171-347d19741d18','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad','2024-11-09 11:42:20.299',690,'KAPIDA ÖDEME - ŞADİYE GÖLEÇ - 61420700','COLLECT','2024-11-09 11:42:20.299','2024-11-23 12:17:08.607',NULL),
('1e1412b2-340d-407b-8989-ab2c5d01c74f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1372768c-0132-475f-bd20-c5373f0785ae','2025-01-03 09:09:49.753',720,'KAPIDA ÖDEME - NURTEN MENEKŞE  - 982106314','COLLECT','2025-01-03 09:09:49.753','2025-01-12 13:22:27.205',NULL),
('1e471a1c-1a71-401b-ba26-cce3bb9767a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'0c1f42ec-e581-418c-a11b-418b92d2cc9e','2024-11-02 09:48:16.977',2620,'KAPIDA ÖDEME - AYŞEGÜL TELLİ - 449962472','COLLECT','2024-11-02 09:48:16.977','2024-11-02 09:48:16.977',NULL),
('1e486d30-60d4-494a-aabb-f053ad4957ed','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'769295fe-385b-4195-9bd0-58e04754d3ad','2025-08-30 12:05:07.687',2000,'KAPIDA ÖDEME - MURAT CENGİZ  - 221186271','COLLECT','2025-08-30 12:05:07.687','2025-09-05 08:55:11.099',NULL),
('1e903e0d-8094-4dfe-96a4-e3fc1ab21ff5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fab15965-edba-4b46-8218-04d0483ba306',NULL,'2024-03-25 11:45:12.632',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.644'),
('1e9e6486-0fad-4e8c-95b5-8055b53cc3ff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'5302a3c5-ac11-48d5-8325-9704cfa8ca5b','2025-02-03 18:15:36.088',1600,'KAPIDA ÖDEME - ERDAL ULAŞ - 910645687','COLLECT','2025-02-03 18:15:36.088','2025-02-11 17:09:06.423',NULL),
('1ee64b1a-fe17-4ffb-9be7-3fab297aa3c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1db28ca3-8c27-419d-877e-64aa6a075f69','2024-11-12 15:26:06.327',1500,'KAPIDA ÖDEME - MURAT KARAOĞLU - 745629044','COLLECT','2024-11-12 15:26:06.327','2024-11-23 12:17:08.607',NULL),
('1eeb1bec-293c-4f2f-b51e-6f0780319547','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'458ed3b8-b224-474f-bf44-b16282a7b8f1','2025-06-30 18:21:20.141',625,'KAPIDA ÖDEME - RAYAN SLEİMANİ  - 644403373','COLLECT','2025-06-30 18:21:20.141','2025-07-07 11:46:28.304',NULL),
('1f092dc8-1c22-45fb-8323-5358be1e1920','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e30052e8-31ee-42d9-b11e-50298f473091','2024-10-17 12:43:16.094',1700,'KAPIDA ÖDEME - METİN PEKSERT - 745645972','COLLECT','2024-10-17 12:43:16.094','2024-10-17 12:43:16.094',NULL),
('1f0dbd92-2e9f-4592-a23f-104076a6337b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b16eb99-81b1-4306-b528-e41ae9bc90b3',NULL,NULL,'5b410819-0339-4c69-a500-825f92b681a3','2024-11-11 17:29:05.879',1500,'KAPIDA ÖDEME - MUARREM NAİR - 616254479','COLLECT','2024-11-11 17:29:05.879','2024-11-25 09:20:39.164',NULL),
('1f46ee5e-3a1c-4211-9fb7-8efacfa43765','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f8f36d3c-b453-4ef2-9053-625e7ae9a535','2025-09-06 17:00:09.102',2200,'KAPIDA ÖDEME - ÖMER EKŞİN - 478391312','COLLECT','2025-09-06 17:00:09.102','2025-09-10 12:48:00.901',NULL),
('1f480eeb-10f1-465c-a33d-b3f6ed0e3d3c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b9f93946-382b-435b-9bca-6293072351d1','2025-07-18 17:50:30.843',1000,'KAPIDA ÖDEME - İSA SÖNMEZ - 371820680','COLLECT','2025-07-18 17:50:30.843','2025-07-22 16:18:49.620',NULL),
('1f4c4333-bfc1-4ef0-aeac-31b25fb1022a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,NULL,'2024-11-08 17:14:10.476',-7940,NULL,'PAYMENT','2024-11-08 17:14:24.867','2024-11-08 17:14:24.867',NULL),
('1f5404f9-0957-4dd0-a46e-57f7cb297ede','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7','2024-11-02 07:59:36.412',2600,'KAPIDA ÖDEME - HİLAL YAVUZ - 982194447','COLLECT','2024-11-02 07:59:36.412','2024-11-04 13:48:26.765',NULL),
('1f740cb2-b9cc-43d4-9663-27c8266dea2b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'0d5fa9af-726d-48a9-a5d1-c407a279f76f','2025-10-17 06:45:24.533',837,'KAPIDA ÖDEME - GÖKKUS PİNAR - 61340935','COLLECT','2025-10-17 06:45:24.533','2025-10-17 10:53:07.455',NULL),
('1fa1d28f-f010-4332-b9f6-b59128d2fa67','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'ca8bc896-5c58-4355-a8a8-a80a250e2558','2025-01-05 13:51:16.891',2500,'KAPIDA ÖDEME - TEKİN MAZLUM - 501872546','COLLECT','2025-01-05 13:51:16.891','2025-01-07 17:06:26.160',NULL),
('1fcfc35f-b3a2-4169-b6d5-75947e5cb754','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'177d16d4-44e0-4c83-bf57-ccaa02fc61de','2024-11-15 16:49:27.577',590,'KAPIDA ÖDEME - MUSTAFA YILMAZ - 745445888','COLLECT','2024-11-15 16:49:27.577','2024-11-28 09:15:31.466',NULL),
('2008b69c-1160-4ded-b887-185a186aec50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'35b607a9-05e1-4a39-8d5e-e9d252bd8443','2025-09-26 12:26:21.663',1500,'KAPIDA ÖDEME - SEMİH YEŞİLYAYLA - 371716908','COLLECT','2025-09-26 12:26:21.663','2025-09-26 12:31:59.603',NULL),
('200b5736-3296-4942-b827-29574ed97f85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'67dfcee1-7fd7-4c4a-bd62-3036e85f4035','2025-07-18 17:50:30.867',700,'KAPIDA ÖDEME - İBRAHİM YEŞİLKAYA - 598211009','COLLECT','2025-07-18 17:50:30.867','2025-07-22 16:18:49.553',NULL),
('202cea2d-f54a-4182-b8ec-c15975964d49','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'5b516169-2e1d-421d-a411-a20956666225','2024-12-20 14:09:35.529',3600,'KAPIDA ÖDEME - ANGELİNA KHALCHYTSKAYA - 73574376','COLLECT','2024-12-20 14:09:35.529','2025-01-11 10:16:45.910',NULL),
('20347409-b6cd-49bb-ae35-cadf8b2a4284','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'4aefeaca-07a5-46c4-8497-55b99b83d2f8','2025-03-24 12:22:38.006',650,'KAPIDA ÖDEME - BURHAN SARİKURT - 613508377','COLLECT','2025-03-24 12:22:38.006','2025-04-02 18:57:10.886',NULL),
('203bfbe6-fcb0-45a1-ae2b-b75dc0a90477','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'ad6e0801-e463-45ff-8ac4-917337b9aa53','2024-12-09 07:47:14.732',1393,'KAPIDA ÖDEME - OKAN ERTÜRK - 735233033','COLLECT','2024-12-09 07:47:14.732','2024-12-17 19:52:32.750',NULL),
('204647fb-0d6c-4840-af9f-8995119ff1de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'f7d9721d-e27b-40dc-a48f-5d1604c92366','2025-10-17 06:45:24.504',1700,'KAPIDA ÖDEME - YAKUP AKYOL - 644741916','COLLECT','2025-10-17 06:45:24.504','2025-10-17 10:53:07.422',NULL),
('204d4963-df75-4824-8c12-c11f8838cea8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','31ccd2de-c68e-405f-adee-14ff1a7a1869',NULL,NULL,'26683bbe-0d6e-4088-afa7-4c620918ff73','2025-10-21 14:19:09.849',11800,'KAPIDA ÖDEME - OKAY TUNCA - 312422305','COLLECT','2025-10-21 14:19:09.849','2025-10-21 14:19:09.849',NULL),
('205d5b21-120b-40d8-a499-29f407d3d160','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb','2025-01-11 14:53:42.276',330,'KAPIDA ÖDEME - AHASSSDDDW - 750704426','COLLECT','2025-01-11 14:53:42.276','2025-01-13 07:50:40.305',NULL),
('20735c37-393a-43d9-8621-1f67a5ccedc7','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'c0a6fef4-a5ae-4572-85c7-2f3b28086520','2025-07-29 12:30:31.495',650,'KAPIDA ÖDEME - ALEYNA - 817395462','COLLECT','2025-07-29 12:30:31.495','2025-07-29 12:37:20.454',NULL),
('2097151c-9f86-4dc8-b577-fbbbe89cd531','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c72f9eca-340a-48f9-96f6-3dbf8cc7fa30','2025-05-09 16:49:05.440',2090,'KAPIDA ÖDEME - İLAYDA GÜNEŞ - 371528044','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('20b4f4f8-3508-4f3c-afad-319f409946f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'0f36cd64-fd9d-4454-b14c-e388fa4a57d2','2025-08-27 08:40:21.897',1000,'KAPIDA ÖDEME - EMİNE İMRAG - 808830873','COLLECT','2025-08-27 08:40:21.897','2025-09-03 06:09:36.605',NULL),
('20ba47a4-7c28-4a60-abe3-27a1a6c13a89','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'863a4d29-ce12-4697-a15e-977449f015c7','2024-12-27 11:57:14.945',2200,'KAPIDA ÖDEME - GAZEL AĞAÇKIRAN - 126908301','COLLECT','2024-12-27 11:57:14.945','2024-12-27 12:23:49.166',NULL),
('20bb4ef8-ac66-4a33-b3d4-a9d27f56383b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'00f4949d-f6aa-4775-913c-9c6fc75113bf','2025-10-07 12:08:55.451',2000,'KAPIDA ÖDEME - MEHMET ANDIÇ - 745759881','COLLECT','2025-10-07 12:08:55.451','2025-10-09 08:39:36.986',NULL),
('20ef3f6c-42f6-483e-b3eb-000de2045170','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ab6c5673-d6a0-4529-b932-e0c888851a0f','2025-09-25 16:04:06.457',500,'KAPIDA ÖDEME - LESLİE SEROR  - 22144793','COLLECT','2025-09-25 16:04:06.457','2025-09-26 12:27:42.395',NULL),
('215becef-ccdd-442c-afc2-fcee7b8abdf6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'cea81038-a341-47c6-8f8b-905346a6e5b0','2025-10-07 14:59:47.603',1500,'KAPIDA ÖDEME - HÜDAYİ HARMANCI - 64422113','COLLECT','2025-10-07 14:59:47.603','2025-10-07 15:17:28.559',NULL),
('21667199-9fd6-45c0-8743-1497cc46dd37','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,'88d46ad5-3201-49c1-bafb-3c271a911158','2024-12-16 18:41:47.274',1560,'KAPIDA ÖDEME - EYÜP KIZILASLAN - 655919587','COLLECT','2024-12-16 18:41:47.274','2024-12-16 18:41:52.448',NULL),
('21894934-ddbd-45b1-9796-a4011874fbab','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'361c79f6-d2f7-4391-a551-aeba4ac518de','2025-07-29 12:12:50.085',2305,'KAPIDA ÖDEME - DİLAN ÜNVER - 437584936','COLLECT','2025-07-29 12:12:50.085','2025-07-29 12:40:29.354',NULL),
('218da0c0-3dfa-4abc-8dd0-493b33ef11fb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'6e70fec4-ae28-4ffb-9ee0-160b7b77935f','2025-02-23 12:26:40.006',1000,'KAPIDA ÖDEME - SAMET KÖTEN - 976439318','COLLECT','2025-02-23 12:26:40.006','2025-03-02 04:33:53.043',NULL),
('218ec5d3-1dba-4d50-b2ff-4302549f54a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'6f4a13be-78b8-4d33-9535-7be01091d06a','2025-10-22 07:51:14.104',1650,'KAPIDA ÖDEME - SAMET ERGİSİ - 011766113','COLLECT','2025-10-22 07:51:14.104','2025-10-22 11:29:52.722',NULL),
('21a212fc-0a1b-4ab5-aa60-ac4ab57d89f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'d8e81c58-d245-41e7-a030-04aad4fea77d','2025-10-07 14:59:47.563',550,'KAPIDA ÖDEME - ZAFER SARIDAŞ(K) - 644717952','COLLECT','2025-10-07 14:59:47.563','2025-10-07 15:17:28.567',NULL),
('21bd9a28-cf05-4751-9cf7-ad2891e51e99','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'5d9fc79f-710b-4e63-8698-fbbd03275cc8','2025-09-16 16:26:59.809',1100,'KAPIDA ÖDEME - HALİT SEVER - 750363306','COLLECT','2025-09-16 16:26:59.809','2025-09-19 10:00:25.366',NULL),
('21c74519-de4f-44d0-ade1-69849472d5fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b','2025-01-11 15:02:07.378',850,'KAPIDA ÖDEME - BOUAZZA SANNA  - 221264394','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('21d88025-7f54-4850-ba9d-afb0c1cee95e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'31898da9-acb0-4ff9-aff5-1305eceaf2d3','2025-10-17 06:45:24.570',825,'KAPIDA ÖDEME - RABİJE OSMANİ - 505332275','COLLECT','2025-10-17 06:45:24.570','2025-10-17 10:53:07.497',NULL),
('22098294-3204-47db-84d9-2fabbb7a5852','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'69f93507-2cdd-4907-8d7a-258e6ecfc342','2024-10-17 12:46:40.524',1700,'KAPIDA ÖDEME - MEHMET SALDANLI - 745508995','COLLECT','2024-10-17 12:46:40.524','2024-10-17 12:46:40.524',NULL),
('220c20af-300d-4136-a1c6-eff491295fb4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'55512975-1b08-4931-aa51-a204463134c2','2025-03-05 17:41:42.581',400,'KAPIDA ÖDEME - LAMİSENT BUSİNESS - 221339460','COLLECT','2025-03-05 17:41:42.581','2025-03-21 17:17:29.974',NULL),
('2256deb4-b3f2-4709-a5a7-4158544f49d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'47743b4f-0f71-47f0-aabf-3e472b257714','2025-03-08 13:35:30.206',2000,'KAPIDA ÖDEME - HASAN EROL - 976568852','COLLECT','2025-03-08 13:35:30.206','2025-03-11 07:46:41.850',NULL),
('226f7fe7-4f27-446a-b9ed-681c849c8a73','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3702b5a9-ea4c-409a-aff6-311eb12eb584','2024-10-17 11:47:45.488',550,'KAPIDA ÖDEME - GÜLİSTAN ÇİÇEK - 745276835','COLLECT','2024-10-17 11:47:45.488','2024-10-25 13:20:51.002',NULL),
('22787a3b-a5df-4d2f-8272-b7753ec2e76a','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'3f298ea0-796a-4ae2-a1d8-43723fc8f5e0','2025-06-20 15:03:47.833',1800,'KAPIDA ÖDEME - RASİM OZAN - 437642214','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.853',NULL),
('22a2518d-d6dd-4869-96b3-151f289ab2af','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'3942cfd4-4dd6-486c-8571-aa8d22e10518','2025-04-15 09:07:09.163',1000,'KAPIDA ÖDEME - SEMA KUZULUK - 644653549','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('22e8cf69-1fdc-4177-a6d9-8b338b267fe3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b5e4c122-6b08-49f6-87aa-e17148ba18f4','2025-05-09 16:49:05.440',1800,'KAPIDA ÖDEME - ÖMER KARAN - 478165569','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('22f891f4-f3ae-4112-a4b8-ac1e12903173','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'fed099bd-765c-4045-9372-03dae428fedb','2024-09-16 07:53:46.864',1800,'KAPIDA ÖDEME - RAMAZAN SEVİ - 517558560','COLLECT','2024-09-16 07:53:46.864','2024-09-27 13:39:34.765',NULL),
('22f9b2b8-83e1-4b32-a70a-b7586a030e9d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ea2a970f-57cf-4bbe-a300-250a83e0b8ad','2025-09-15 15:26:04.851',1000,'KAPIDA ÖDEME - ALİ KARADUMAN - 7454878','COLLECT','2025-09-15 15:26:04.851','2025-09-19 10:00:25.321',NULL),
('234ae522-07d2-4249-80a4-f6e9028d81bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'223c42ff-34b8-451f-8dd0-0377774e9c28','2024-08-31 12:59:44.379',1000,'KAPIDA ÖDEME - BOUDJELLOLİ LAKHAR - 982340056','COLLECT','2024-08-31 12:59:44.379','2024-08-31 12:59:44.379',NULL),
('234eb941-379d-4acd-b5a5-c45b5568a660','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'4c6a6d6f-af58-43f6-9a04-2610b54ab8a0','2025-02-15 10:11:41.018',1250,'KAPIDA ÖDEME - CLEİDY MARTİNS  - 982475389','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('238ee04f-0e6b-4bc9-85ee-633d977726fb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0','2025-01-22 08:43:42.642',2250,'KAPIDA ÖDEME - SELAMAWİT ESTİFANOS  - 982495052','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('239ed9de-3a96-4027-9178-6dabde6025c0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ff996f87-3846-4d01-9b30-2f9d65c79763','2025-08-20 15:43:06.401',800,'KAPIDA ÖDEME - İHSAN KUMUR - 221825192','COLLECT','2025-08-20 15:43:06.401','2025-08-21 08:12:57.065',NULL),
('23b43301-cd18-47e0-a5af-2b9817dbdf02','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'d5fa2f57-3177-401e-aa8a-f8944dc6a64f','2024-08-07 14:18:59.577',1150,'KAPIDA ÖDEME - BAL CİHAN - 614661701','COLLECT','2024-08-07 14:18:59.577','2024-08-08 09:26:12.516','2024-08-08 09:26:12.526'),
('23b92b4a-9132-41c3-9636-5e5064131ede','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','92d31478-aa4f-4f7e-b6e7-95b858af9bfe',NULL,NULL,NULL,'2024-11-08 17:10:22.452',-1300,NULL,'PAYMENT','2024-11-08 17:10:30.182','2024-11-08 17:10:30.182',NULL),
('23ba6833-7ad4-4e41-986d-f448de3a3675','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'524f025c-b247-483b-ae98-d4e6c7b69249','2025-05-28 18:50:18.071',700,'KAPIDA ÖDEME - ANIL ÇOKBİLİR - 644584641','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('23ca56f0-d17c-448d-8a47-2eb6c0439044','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'7e7dc595-616a-449b-82e5-63d04f63ca8f','2025-03-27 08:49:23.620',6400,'KAPIDA ÖDEME - DELİL ÖZTÜRK - 74529534','COLLECT','2025-03-27 08:49:23.620','2025-03-29 13:56:05.249',NULL),
('23ce2fe4-fbc9-4b6a-8bf5-4cb69d9217bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e74ec79a-3fe1-4dd7-9872-a4ff0f952163','2025-01-11 15:02:07.378',2650,'KAPIDA ÖDEME - ALİ ÇETİN  - 982817887','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('23d917fe-6dc3-4df1-9aaf-6b0837a517e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'56fddcec-b66d-4397-82c0-a07f45acb32d',NULL,'2024-03-30 13:00:49.900',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.715'),
('24012fd9-5c44-4ea1-8759-14daf454bd63','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0dae8190-b900-4826-9171-b2d74a2538b0',NULL,NULL,'b9c00c19-4cd1-40b4-b93c-2fa738520c65','2025-02-23 12:23:18.706',750,'KAPIDA ÖDEME - ESRA KAMBERİ - 081789192','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('24691030-7f77-4310-9e1d-f657bbdcfa8a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b60d9fb4-59a0-499b-a666-8d8e4d8f147a','2025-01-26 10:26:43.612',2750,'KAPIDA ÖDEME - MUHAMMET ÖZKAN - 47830878','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('247b7103-10ec-4101-935d-7d5332597c27','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'05e527f9-8a74-4f42-b673-b05994d5555d','2025-10-25 08:43:45.289',875,'KAPIDA ÖDEME - BETÜL YILDIZ - 221811614','COLLECT','2025-10-25 08:43:45.289','2025-10-25 08:58:43.891',NULL),
('24b719c0-c83d-4259-9795-2daefe4c83e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'fd54b0f7-c719-44a1-9058-d59b1b5982cf','2025-01-11 15:02:07.378',800,'KAPIDA ÖDEME - YASİN ARSLAN  - 517205467','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('24ca59f4-6b1c-4127-9ec4-294ce2cd4816','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e34fd977-db36-4dab-bb2f-73cdf84f2f2e','2024-03-30 06:51:39.958',1350,'KAPIDA ÖDEME - ROBERT HASİMOVOC - 982189682','COLLECT','2024-03-30 06:51:39.958','2024-04-01 11:32:44.722',NULL),
('24d38185-189a-4330-aa48-2a0255c83cb5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,NULL,NULL,'2024-11-08 17:24:28.837',-10600,NULL,'PAYMENT','2024-11-08 17:24:36.382','2024-11-08 17:24:36.382',NULL),
('24ec6f73-2d6d-43b9-a5b6-9cb5e2a0f262','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,NULL,'6d8023fb-7e68-4b37-8709-816c5519380e','2024-09-27 11:42:30.192',650,'KAPIDA ÖDEME - MURAT - 163229349','COLLECT','2024-09-27 11:42:30.192','2024-09-27 13:47:14.982',NULL),
('24ef43a9-b2dd-4882-8b2b-d00f717fe71d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','83b080d0-7549-4d18-8037-da9fac2693a3',NULL,NULL,'5cc7fdee-aea2-4e42-9349-1dfbca5c009e','2025-02-09 14:06:55.609',240,'KAPIDA ÖDEME - BELLA MEUBEL - 830905881','COLLECT','2025-02-09 14:06:55.609','2025-02-15 11:10:42.855',NULL),
('24f7706c-daff-4dc7-bd1c-0049f9877ffc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'5f54cf54-9e84-4494-a263-8967ec9803e2','2024-10-07 11:09:00.383',975,'KAPIDA ÖDEME - NECİP DELİPOYRAZ  - 910943161','COLLECT','2024-10-07 11:09:00.383','2024-10-17 12:48:45.135',NULL),
('25189bf5-1897-4818-a5ab-69652bf8e432','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fa990fee-a749-4a0e-989d-af80fcb45f6d',NULL,'2024-03-30 07:14:02.408',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.895'),
('2538e5e2-8cd2-4ff8-85bf-853c60a85f04','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'6a397517-cdaf-4836-a678-f168177b94a2','2024-05-23 07:19:34.145',2150,'KAPIDA ÖDEME - REZA OMERİ - 449394658','COLLECT','2024-05-23 07:19:34.145','2024-05-23 07:19:34.145',NULL),
('2589436d-e33d-475c-90fb-3a3cfe302e61','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'bb12bd3c-d87b-4ede-9827-8c115b6da789','2025-02-20 08:56:21.714',2600,'KAPIDA ÖDEME - ŞAHİN MUAMMER - 982840804','COLLECT','2025-02-20 08:56:21.714','2025-02-20 12:40:28.679',NULL),
('25967b21-e32f-4e66-81dc-3cb2ad30e92d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'3b0f4dee-9f8d-4f00-8b0b-7f628ea71698','2024-10-31 21:55:20.339',700,'KAPIDA ÖDEME - RAHİMİ - 449666503','COLLECT','2024-10-31 21:55:20.339','2024-11-02 08:58:01.904',NULL),
('25b027d5-7b4e-4f12-8e2e-e494073d648f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'f4925a41-5026-4e2b-a759-10c30274e086','2025-08-27 08:40:22.028',700,'KAPIDA ÖDEME - NURETTİN BAYRAK  - 613661947','COLLECT','2025-08-27 08:40:22.028','2025-09-03 06:09:36.832',NULL),
('25b566a3-1515-4fc7-9a07-7f337c92bdbd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'1447bfb1-b651-4bdb-b28a-c905ac844f05','2024-11-21 10:23:26.160',2700,'KAPIDA ÖDEME - ELVİN ÇETİN - 734955536','COLLECT','2024-11-21 10:23:26.160','2024-11-28 09:15:31.466',NULL),
('25c394b0-b7d6-4ae9-ba9a-e99544fa0604','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c20e39e0-b2f7-4f7d-9393-8729cad35ae4',NULL,NULL,'b9790373-c876-4108-aaca-1b1a5e2b9aa5','2025-02-07 11:18:24.596',1395,'KAPIDA ÖDEME - MUSTAFA SAİT ÖZDEMİR - 203497868','COLLECT','2025-02-07 11:18:24.596','2025-02-15 11:10:42.855',NULL),
('25c71b60-fd63-472a-bfe5-63c5dd7a95d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'a83ff746-6483-4a7a-b143-9f59ac9e331d','2025-05-23 06:25:41.798',975,'KAPIDA ÖDEME - DİANA HUSSEİN - 437917777','COLLECT','2025-05-23 06:25:41.798','2025-05-26 13:23:22.333',NULL),
('25d52a32-5467-4a57-a733-e2f8f682eb1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'b49e6627-a662-442d-9b24-efe044570602',NULL,'2024-03-30 07:25:33.994',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.686'),
('25ec25cd-8ed6-4545-bf76-7eafbb65acbc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ec51c14f-fbdf-4aae-950c-63cb48e29c49','2024-09-03 15:15:35.337',5200,'KAPIDA ÖDEME - EMRE AKŞEHİRLİ - 478188105','COLLECT','2024-09-03 15:15:35.337','2024-09-03 15:15:35.337',NULL),
('2616556f-60f8-4018-beac-7c256960188a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','27cbce83-310c-4e98-830f-7433b10c2efd',NULL,NULL,'dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a','2025-08-22 19:43:14.433',975,'KAPIDA ÖDEME - FERHAT CAN - 278498481','COLLECT','2025-08-22 19:43:14.433','2025-08-22 20:28:07.593',NULL),
('266ebf86-4200-4f9e-bbbb-15cfec634b12','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'04fb8dfc-07be-4e81-a060-8a8a6f53ef14','2025-10-22 07:51:14.349',2000,'KAPIDA ÖDEME - GAMZE ÖRSELOGLU - 515377519','COLLECT','2025-10-22 07:51:14.349','2025-10-22 11:29:52.600',NULL),
('26987e50-bdad-487b-a816-78cf4554a901','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c58ed249-aadb-4fee-8ca2-1d1eaccb25a3','2024-12-13 13:24:23.701',900,'KAPIDA ÖDEME - MERVE KORKMAZYUREK - 221511033','COLLECT','2024-12-13 13:24:23.701','2024-12-16 18:41:52.448',NULL),
('26c7411b-645e-4b97-83fd-9e2c7d2e9095','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'64f79831-49d1-48f5-a6e6-698737009565','2025-10-22 07:51:14.279',500,'KAPIDA ÖDEME - LAURA SCHMİTT - 613721320','COLLECT','2025-10-22 07:51:14.279','2025-10-22 11:29:52.712',NULL),
('26c9b5b7-1324-46a3-bbd2-50fa9770ba77','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0c5baaa9-88b0-464f-9b3b-8d21de6877b8','2025-03-08 13:35:30.206',425,'KAPIDA ÖDEME -    BEKİR - 644567515','COLLECT','2025-03-08 13:35:30.206','2025-03-11 07:46:41.850',NULL),
('26e2b64d-c9b1-4483-88ba-03365c0acb8f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'045d42d0-3ff6-4046-b437-9e4080f515c5','2025-02-07 11:48:22.096',500,'KAPIDA ÖDEME - HAYATİ ELBİR - 745536465','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('26e86d4a-95a4-46d5-b42e-e1b6cb3f03df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'a87cf842-cbf5-4954-a97f-dfa9faa9dbc2','2024-11-08 18:05:08.908',3250,'KAPIDA ÖDEME - YUSUF KAYA - 501428847','COLLECT','2024-11-08 18:05:08.908','2024-11-16 21:16:00.192','2024-11-16 21:16:00.199'),
('26f126cb-5aa5-47f3-ae5d-dab39895894a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'ae9be805-ab66-4bf7-889f-22b5fd9c7351','2024-06-10 10:09:42.426',5500,'KAPIDA ÖDEME - ALİNA GÜL - 428138926','COLLECT','2024-06-10 10:09:42.426','2024-06-14 11:24:18.665',NULL),
('27181195-89db-464d-89d0-9905872cd526','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'b1ca63ca-ed42-45cb-ae7f-983ef68f5a78','2024-11-25 09:05:11.894',650,'KAPIDA ÖDEME - SÜMEYYE KARAMAN - 428958532','COLLECT','2024-11-25 09:05:11.894','2024-12-09 08:24:38.479',NULL),
('272b934f-0c34-411c-bc5f-0e24b7dfdfea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'54106caa-0b40-4d00-bc8f-c90cc5a93c72','2024-04-29 09:20:21.059',3400,'KAPIDA ÖDEME - MURAT YALIN - 501216728','COLLECT','2024-04-29 09:20:21.059','2024-04-29 09:20:52.188',NULL),
('2737fd3d-3b1a-411a-b5ae-3b0f69046105','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2','2024-12-20 14:18:40.715',1350,'KAPIDA ÖDEME - MEHMET EMİN KARAGÜZEL - 449665773','COLLECT','2024-12-20 14:18:40.715','2024-12-27 12:23:49.166',NULL),
('275b2372-21a1-4fb6-8d31-4f6ed7492788','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'3f94ebca-ddaa-4014-83ed-71965cea96d3','2025-10-03 15:04:04.779',1890,'KAPIDA ÖDEME - EDOLİNA AJETİ REXHEPİ - 478749881','COLLECT','2025-10-03 15:04:04.779','2025-10-03 16:08:51.098',NULL),
('27671d9a-bd74-4662-922f-b3e3e42a5c4f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c30ef00f-b05c-4a82-a40c-4d69d5352e77','2025-10-13 07:14:08.930',1110,'KAPIDA ÖDEME - İNAN PALA - 221210071','COLLECT','2025-10-13 07:14:08.930','2025-10-14 08:52:36.774',NULL),
('2771668d-360c-4d77-b5fe-959a61bbbfc2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1b611478-1dbd-4a35-9f49-606526e2fe1b','2025-03-24 12:22:38.006',700,'KAPIDA ÖDEME - CEYLAN YILMAZ  - 982464994','COLLECT','2025-03-24 12:22:38.006','2025-04-02 18:57:10.886',NULL),
('277c51cd-ac1f-4df3-ac77-43d0b885d7fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d3627856-88fc-41e7-8cf9-ef9e95a66c7b',NULL,'2024-03-25 11:45:13.082',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.762'),
('2796817b-5fce-4915-a931-4154796b93df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,NULL,'c0971211-dd47-4ca0-be3b-b5119c4ec3e8','2024-07-02 07:49:51.583',3950,'KAPIDA ÖDEME - HASAN BEY - 448153102','COLLECT','2024-07-02 07:49:51.583','2024-07-09 08:41:33.477',NULL),
('27ad66d4-04c5-4dfb-bdee-a60730a6bec1','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'ea220406-9a53-4462-8ddb-af10ce32ed5b','2025-07-29 12:26:43.598',645,'KAPIDA ÖDEME - LAİLA MANDANİ - 371887346','COLLECT','2025-07-29 12:26:43.598','2025-07-29 12:37:20.461',NULL),
('27dba5d8-c8ed-43ec-9dad-607370e28349','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'dedf152d-bf4e-47e1-b412-9078997573d4','2025-09-12 17:03:30.288',1800,'KAPIDA ÖDEME - DİJWAR TAŞÇEVİREN - 221485829','COLLECT','2025-09-12 17:03:30.288','2025-09-12 17:16:02.711',NULL),
('28470452-6708-4e09-a27a-f472acb7fa97','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'953f3501-da44-4096-afef-f255993a1b13','2025-09-18 06:43:39.438',750,'KAPIDA ÖDEME - MERT OSMAN DEMİR(K) - 644153988','COLLECT','2025-09-18 06:43:39.438','2025-09-18 15:48:17.572',NULL),
('28c78ef4-5462-4714-8459-e11c4aa9326f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'6f6f3f97-26d1-4eb9-9f9c-527ec752389c','2025-05-14 16:56:37.597',1900,'KAPIDA ÖDEME - BEYTULLAH AKSOY - 644826911','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('28d345cb-1f73-4477-9a25-44e1b94504e5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ea1fd06d-6508-481d-96d9-862de4d05260','2024-09-16 08:04:54.762',1250,'KAPIDA ÖDEME - SAHAR KADERİ - 449636092','COLLECT','2024-09-16 08:04:54.762','2024-09-18 21:28:52.025',NULL),
('292eb0f1-1373-4a5d-94f6-cf186f277c72','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9b0fdc03-2303-4892-bf4d-0d91b19ec321','2024-11-21 09:42:50.940',1850,'KAPIDA ÖDEME - ERKAN UYSAL  - 982271871','COLLECT','2024-11-21 09:42:50.940','2024-12-09 08:24:38.479',NULL),
('29560929-ad97-4891-ba28-dce04bedd5a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c95c986d-eb32-413d-a7af-cbc9b9db9e6b','2024-12-13 13:16:19.811',2400,'KAPIDA ÖDEME - YASEF İCEL - 47865598','COLLECT','2024-12-13 13:16:19.811','2024-12-16 18:41:52.448',NULL),
('297ce091-5a9f-477d-90bc-0127772c7c35','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0','2025-09-05 18:22:32.094',1200,'KAPIDA ÖDEME - LYUDMİLA KORUNOVSKA - 371121937','COLLECT','2025-09-05 18:22:32.094','2025-09-06 09:41:31.905',NULL),
('29a67cf8-6c74-497a-9179-5b6ea7f0a919','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'6b7bf40f-8730-4f82-9851-ca74df5b5a7c','2025-09-23 07:43:59.569',700,'KAPIDA ÖDEME - MUHAMMET KÖSEDAĞ(K) - 644590959','COLLECT','2025-09-23 07:43:59.569','2025-09-24 13:41:15.097',NULL),
('29b1f1ee-09c6-4b1a-bc44-522d8a791f53','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,'3a78ddf5-1cf6-4a73-8d31-30826f499319','2024-04-07 21:14:56.395',1100,'KAPIDA ÖDEME - Serkan yıldız - 315752826','COLLECT','2024-04-07 21:14:56.395','2024-04-08 10:40:17.025',NULL),
('2a11e4a7-d6cf-42d5-9e3d-bc3a7f672d34','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'4976e309-54de-42bc-9a9b-1f542a9bd4d0','2025-07-18 17:50:30.836',375,'KAPIDA ÖDEME - BURCU ASLAN - 598220619','COLLECT','2025-07-18 17:50:30.836','2025-07-22 16:18:49.513',NULL),
('2a30e674-3411-4337-92cf-2c0d39dcc20d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'aaae96e2-c0d9-4998-8984-129df3d3e10a','2024-12-27 11:37:43.695',1155,'KAPIDA ÖDEME - HELİN SICAK - 735298003','COLLECT','2024-12-27 11:37:43.695','2024-12-27 12:23:49.166',NULL),
('2a450f20-beba-4b0c-9ef1-5347f82bfec5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'396cb143-14ce-480a-8762-a43699b4d2d2','2025-08-27 08:40:21.861',3950,'KAPIDA ÖDEME - ATİLLA POLAT - 478502129','COLLECT','2025-08-27 08:40:21.861','2025-09-03 06:09:36.669',NULL),
('2a6a457d-0062-4931-8993-288405b4d2a9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb','2024-12-07 08:50:53.387',2030,'KAPIDA ÖDEME - PETER BOUMA - 449446169','COLLECT','2024-12-07 08:50:53.387','2024-12-17 19:52:32.750',NULL),
('2a8f3048-2f11-4b6c-bccf-357c07837d95','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a68ff85d-0ddc-4b4b-8585-e95e4f9e2597','2025-02-07 11:34:53.010',750,'KAPIDA ÖDEME - DÖNDÜ ESER - 745498790','COLLECT','2025-02-07 11:34:53.010','2025-02-15 11:10:42.855',NULL),
('2aa4946f-5b75-4867-af48-81b34beacd85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9feff913-404e-4b4c-b57f-21740becbcff','2025-01-26 10:22:06.784',490,'KAPIDA ÖDEME - MOHAMED SAİD ZARZAURİ - 221240151','COLLECT','2025-01-26 10:22:06.784','2025-02-01 20:06:45.496',NULL),
('2aac0d9f-166d-47ed-915e-1a5c8d4f5410','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'781f03ac-2015-438f-bba9-a8e09715b445','2025-02-20 08:52:49.800',1500,'KAPIDA ÖDEME - TKHİLİ BOUSHABA  - 982578491','COLLECT','2025-02-20 08:52:49.800','2025-02-20 12:40:28.679',NULL),
('2af0320c-1636-43e7-b6e4-48c110350d98','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a3c53d23-b87a-41f3-9637-048f90bbeb58',NULL,'2024-03-30 07:14:02.908',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.881'),
('2afb550f-c3c2-45a5-9d91-1a7b7a58e041','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'c16f579e-010b-42d8-95dd-f1b7b1f32859','2025-05-02 11:56:04.750',440,'KAPIDA ÖDEME - MOONBEAM HOME - 412284149','COLLECT','2025-05-02 11:56:04.750','2025-05-02 11:56:13.100',NULL),
('2b00ab7b-767f-40ae-b49a-60a63d399412','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'d2e58279-3f1f-4815-9d06-57edca6efd91','2025-05-16 16:07:59.860',350,'KAPIDA ÖDEME - NESLİHAN CAN - 437940825','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('2b1d747a-ab2b-4f05-9b3b-6809d9588edc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'f99fe573-182b-4663-9ef2-0b30f4db8009','2025-08-07 16:12:15.266',1200,'KAPIDA ÖDEME - AHMAD KADİ - 598102662','COLLECT','2025-08-07 16:12:15.266','2025-08-12 08:07:30.456',NULL),
('2b3d8e0d-3476-417e-aa92-73225dbba070','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd2f8958-dabf-4d4a-a10e-62713178bf3b',NULL,NULL,NULL,'2024-11-08 17:15:30.234',-400,NULL,'PAYMENT','2024-11-08 17:15:37.461','2024-11-08 17:15:37.461',NULL),
('2b53a8d0-5b90-4cff-8626-e8f9c9c5d5e0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'46613c75-fbe6-436f-8ee8-ee41b6bbf1a1','2025-04-25 15:50:25.917',425,'KAPIDA ÖDEME - KUTAY KENAN TOMUR - 613976667','COLLECT','2025-04-25 15:50:25.917','2025-04-26 07:32:55.372',NULL),
('2b5496c8-8aa4-4716-b559-5679a4de690c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'85b0f72f-07ea-48eb-90eb-1dd0abae2a87','2025-04-30 14:04:40.218',2850,'KAPIDA ÖDEME - DERMAN YATAK MURAT ÇAYAN - 412913992','COLLECT','2025-04-30 14:04:40.218','2025-05-02 11:56:13.100',NULL),
('2b6bc49f-99cd-4cd6-aa56-e5b1bf2a269d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bf922bff-298e-4260-9e29-0a90ad6d98fb',NULL,'2024-03-25 11:45:12.732',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.747'),
('2b770d0c-ecae-4eef-b155-31bf509e368b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'7eeb3429-c256-465d-8b88-a60afd893ca0','2024-10-23 15:01:17.503',1650,'KAPIDA ÖDEME - ERSİN ESEN - 501256266','COLLECT','2024-10-23 15:01:17.503','2024-10-23 15:01:17.503',NULL),
('2b966419-76f4-4872-be73-50c960dc3d75','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'b10467dd-1ad4-4468-8e8e-6d6e751fff22','2025-07-07 14:20:25.176',1380,'KAPIDA ÖDEME - RANJA SABRİ  - 221904119','COLLECT','2025-07-07 14:20:25.176','2025-07-08 11:33:15.177',NULL),
('2bc3d644-9287-428e-983f-ab292eaf9968','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b2702ffc-90a1-4e2a-96d3-f80e323c5ce9','2025-05-14 16:56:37.597',1000,'KAPIDA ÖDEME - MERVE DEĞİRMENCİ - 371665826','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('2bd83400-bc88-4121-96be-197741f8b65d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'56c417cf-c265-4351-92f6-09fa93a1f112','2025-10-25 08:43:45.417',500,'KAPIDA ÖDEME - ERDEM ŞAHİN(K) - 644522996','COLLECT','2025-10-25 08:43:45.417','2025-10-25 08:58:44.004',NULL),
('2beb8248-53e8-4f33-bfb2-3cc371741218','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'dacd398a-1156-4c32-ba9e-e38cdcc1856c','2025-09-02 12:04:14.755',495,'KAPIDA ÖDEME - SABRİ ÖNÜZ - 437762949','COLLECT','2025-09-02 12:04:14.755','2025-09-02 14:46:19.231',NULL),
('2bfee296-4e3e-43fd-a0a3-2993abdd97f4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'a92b5169-963a-4b74-9857-229dbed0d9e7','2025-01-19 16:12:38.305',1500,'KAPIDA ÖDEME - MEHMET SÜZEN  - 98238273','COLLECT','2025-01-19 16:12:38.305','2025-01-28 15:19:34.396',NULL),
('2c14c57b-e9c9-4098-a806-f26db71cd6c2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'932af7f2-df9e-4032-b8ab-056455a1eb6f','2025-08-22 19:43:14.525',3300,'KAPIDA ÖDEME - NUSRET VAROL VURAL - 598427868','COLLECT','2025-08-22 19:43:14.525','2025-08-23 07:55:35.252',NULL),
('2c182987-1afc-44b9-b992-501bcfe0ad82','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'06e56b2e-9b9b-4c5b-8022-4849479f4e4a','2025-09-05 13:52:01.493',1400,'KAPIDA ÖDEME - ONUR ÖZÇELİK - 371695056','COLLECT','2025-09-05 13:52:01.493','2025-09-06 09:41:31.771',NULL),
('2c650f23-ae8d-41bd-9d05-78ab2a0c57a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'19a75a47-9ec3-4217-9552-31d27faae3e4','2025-03-06 10:20:46.458',355,'KAPIDA ÖDEME - MANJUTHA VATHANASEELAN - 613990071','COLLECT','2025-03-06 10:20:46.458','2025-03-06 10:36:11.461',NULL),
('2caa133e-4ece-48ac-86df-364688e82b90','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'59f8293d-670d-46aa-baa2-c4a3a969aea2','2025-06-20 15:03:47.833',600,'KAPIDA ÖDEME - LEJLA GUDİC  - 221758948','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.867',NULL),
('2cabadb3-c6f9-459e-8601-78bf088b4620','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,NULL,'2024-11-08 17:19:02.100',-37460,'HESAP DÜZLEME','PAYMENT','2024-11-08 17:19:13.716','2024-11-08 17:19:13.716',NULL),
('2ce0927a-aa54-432e-b212-33398c056d67','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'ad0e6c08-bd08-47a2-9854-d784d07275f0','2025-08-14 07:54:07.569',495,'KAPIDA ÖDEME - EZGİ YÜCEL - 437713339','COLLECT','2025-08-14 07:54:07.569','2025-08-14 08:02:29.791',NULL),
('2d116354-66e2-4209-bcd3-20c09f65c0eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'28b92b39-fb44-43d7-a392-add43e96df28','2025-10-13 07:14:08.967',2000,'KAPIDA ÖDEME - CELİNE KARA - 478164511','COLLECT','2025-10-13 07:14:08.967','2025-10-14 08:52:36.811',NULL),
('2d18832c-c047-4489-adf3-49b0a3dbbcec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'7cae2eaf-f51c-496a-aa79-beedb60cda43','2024-03-30 09:25:39.078',1650,'KAPIDA ÖDEME - MİNE GÖKÜZÜM - 982992264','COLLECT','2024-03-30 09:25:39.078','2024-03-30 09:25:39.078',NULL),
('2d2fbc79-0164-482a-8650-fd834014a07c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'d313ceae-a8f1-4f54-ba81-fe9e81fef554','2025-09-15 15:26:04.825',5000,'KAPIDA ÖDEME - BESNA ULUĞ - 478906000','COLLECT','2025-09-15 15:26:04.825','2025-09-19 10:00:25.291',NULL),
('2d380a64-ab13-42ce-8efa-653dfa4c0d9d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'cd602635-5c4f-4c0e-bb1c-fccb24ae1cea','2025-09-23 07:43:59.520',1000,'KAPIDA ÖDEME - YUSUF ÖZKULLUK - 808146332','COLLECT','2025-09-23 07:43:59.520','2025-09-24 13:41:15.026',NULL),
('2d5baed7-9289-4881-832f-d49adbca83d7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'63c72f92-c955-4221-9d99-5fc007d4c399','2025-05-24 10:58:02.722',1220,'KAPIDA ÖDEME - RÜVEYDA ŞAHİN - 127150146','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('2d69c431-e60b-444f-9122-ffdfcc8fe07a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'dbf55493-8328-4ef5-b04e-34ca82fa458e','2025-10-03 15:04:04.842',1700,'KAPIDA ÖDEME - SARAH KLEİN - 505153730','COLLECT','2025-10-03 15:04:04.842','2025-10-03 16:08:51.165',NULL),
('2d733f48-d764-4ee3-98db-8538fde9332f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3677d700-20f1-449d-b4d8-d9b08ec6b141','2025-01-19 16:12:38.305',480,'KAPIDA ÖDEME - AZİZE KAYA - 221946527','COLLECT','2025-01-19 16:12:38.305','2025-01-28 15:19:34.396',NULL),
('2dd8e7c4-9ff7-40c6-b81d-b29a40d4b6f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,NULL,'fe9bad3a-ed39-41a0-aefb-3b353269e29a','2025-09-05 18:22:32.073',1400,'KAPIDA ÖDEME - İLKAY ÇİFTÇİ - 35130528','COLLECT','2025-09-05 18:22:32.073','2025-09-06 09:41:31.958',NULL),
('2de43718-e55b-4e54-af4a-6484ca71d780','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'f6d4c8cd-bc6e-4af1-9285-67ed28f49565','2025-02-03 17:55:18.052',700,'KAPIDA ÖDEME - BABERIH LEİLA  - 221164226','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('2df080f7-2157-4eb3-b6ec-b12db96d399e','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a644f2e3-654e-4729-bff3-0390037448f0','2025-09-06 17:00:09.145',1500,'KAPIDA ÖDEME - MUHAMMED TOPAL - 371681337','COLLECT','2025-09-06 17:00:09.145','2025-09-10 12:48:00.835',NULL),
('2e27ac00-ab05-4c80-9b11-1173724b548b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'24096b71-5b5e-4da8-9191-8e3168102053','2024-08-31 13:16:57.902',1350,'KAPIDA ÖDEME - BOUSLİMAİN ECHOUAK - 982868918','COLLECT','2024-08-31 13:16:57.902','2024-08-31 13:16:57.902',NULL),
('2e3350c1-12ac-4227-a064-dac5399781a3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'aa3f39f2-a374-4662-9b70-6a623142a920','2025-09-01 06:45:43.657',5800,'KAPIDA ÖDEME - OKTAY SAMET ŞAHİN - 745782616','COLLECT','2025-09-01 06:45:43.657','2025-09-05 08:55:11.144',NULL),
('2e393705-4644-43fd-9e39-797a740900a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'8cb3e6c1-dad7-49e4-8443-0c03ea610bf7','2024-05-10 07:13:51.372',1500,'KAPIDA ÖDEME - TAHRİ TATAR - 734380041','COLLECT','2024-05-10 07:13:51.372','2024-05-10 07:13:51.372',NULL),
('2e517d18-5803-4966-8365-538ef98a5de3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'a1891b3d-2115-4842-a527-66a78ad1317d','2025-04-11 12:35:01.696',650,'KAPIDA ÖDEME - FJOLLA VRENEZİ - 613853408','COLLECT','2025-04-11 12:35:01.696','2025-04-15 14:54:58.058',NULL),
('2e521057-fc70-4a49-942b-c1a093889234','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,NULL,'2024-11-08 16:54:52.438',-14000,'HESAP DÜZLEME','PAYMENT','2024-11-08 16:55:12.311','2024-11-08 16:55:12.311',NULL),
('2e53f627-eb16-4256-a651-a6a9b77b0f9e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','afdbd570-d700-442a-b617-752921194603',NULL,NULL,'7fb143cf-43fb-404b-999f-52ebf5c4af6c','2025-05-09 17:46:40.990',1700,'KAPIDA ÖDEME - MERİÇ KARACAN  - 570417524','COLLECT','2025-05-09 17:46:40.990','2025-05-09 17:46:40.990',NULL),
('2e81c407-efa1-4546-a3a3-a5d41b488f1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'6fe06ae2-3155-4059-8f77-a92d8d23543a','2025-07-11 07:57:47.169',3325,'KAPIDA ÖDEME - MUSTAFA IBRYAMOV - 745907299','COLLECT','2025-07-11 07:57:47.169','2025-07-11 08:00:02.566',NULL),
('2e88914f-0d4b-4676-997b-96e6e99d1be9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9a50f1e8-a344-4e30-8e8f-b77c66559586','2024-09-27 12:47:02.223',2000,'KAPIDA ÖDEME - MEHMET EMİN ŞIK - 478955837','COLLECT','2024-09-27 12:47:02.223','2024-09-27 13:56:04.851',NULL),
('2eb25ac9-931a-41d9-96f3-853fc4b8f831','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'84050b65-b4a8-4360-a13e-ee8cc50aef3b','2025-02-03 17:50:13.401',1000,'KAPIDA ÖDEME - TALL YOANN - 221132707','COLLECT','2025-02-03 17:50:13.401','2025-02-11 17:09:06.423',NULL),
('2edb7ab4-a40c-4708-8167-f0b4ed37f759','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'a797dd9c-2824-4d7d-8bf3-c9f727ff603d','2024-11-03 21:14:44.250',1600,'KAPIDA ÖDEME - BRAHIMA NAIMA - 982446186','COLLECT','2024-11-03 21:14:44.250','2024-11-25 09:20:39.164',NULL),
('2ee7590a-a5d4-4ad8-aad2-d8de869abee8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,NULL,'2024-11-08 17:16:59.796',-1255,NULL,'PAYMENT','2024-11-08 17:17:07.009','2024-11-08 17:17:07.009',NULL),
('2f0ae4f5-57bc-4151-8f89-c6c72d69d403','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'8970c6df-ded4-4e10-a476-faa9d8e3a4df','2025-02-20 08:56:21.714',2400,'KAPIDA ÖDEME - HAKIMI MUSTAFA - 982742157','COLLECT','2025-02-20 08:56:21.714','2025-02-20 12:40:28.679',NULL),
('2f1288bb-4282-434e-b2c0-77c988d2cde6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'7714cc95-f8de-4560-8240-8168befc09b9','2024-11-23 14:42:15.312',1250,'KAPIDA ÖDEME - ADEM ÖZKAN - 976779460','COLLECT','2024-11-23 14:42:15.312','2024-12-02 09:51:49.376',NULL),
('2f86b723-e453-4085-b9af-65f0e3c42b7f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1c18c317-80dc-4320-8454-fd4f07f0074a',NULL,'2024-03-30 07:25:34.244',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.643'),
('2ff01097-541a-4673-a74d-2aa7f57bc257','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,NULL,'06683822-5af1-4c0e-a0e5-5ca26659fb23','2024-06-08 07:07:46.052',600,'KAPIDA ÖDEME - SEYFETTİN - 703581635','COLLECT','2024-06-08 07:07:46.052','2024-06-08 07:07:46.052',NULL),
('2ff219da-2a68-41bc-9dbf-ab9295495c85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'4fcbc651-ced6-4837-a3cf-17f82d36dabe','2025-08-20 15:43:06.385',450,'KAPIDA ÖDEME - MİTHRA EKHLAS - 371665790','COLLECT','2025-08-20 15:43:06.385','2025-08-21 08:12:56.932',NULL),
('3022e437-8210-47c6-98bd-46b344034e5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'855d2794-7066-4b47-b159-2cf8816867f4','2024-10-17 12:04:31.175',550,'KAPIDA ÖDEME - SEVGİ YILMAZ - 97677559','COLLECT','2024-10-17 12:04:31.175','2024-10-17 12:04:31.175',NULL),
('303345a2-3b81-446d-8677-d044ec572445','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'f442c18d-3b28-447e-b106-1af2fe511995','2025-07-12 09:06:58.237',650,'KAPIDA ÖDEME - CYNTHİA GARLEE - 644126759','COLLECT','2025-07-12 09:06:58.237','2025-07-16 14:21:29.664',NULL),
('3040e1d2-0786-4066-aaa8-9f6f702c28a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9','2025-09-02 12:04:14.819',1000,'KAPIDA ÖDEME - FUAT HUT - 517903636','COLLECT','2025-09-02 12:04:14.819','2025-09-02 14:46:19.296',NULL),
('3060ddd9-e909-4f97-8994-48bc9f6a1b0a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'c3afcfb5-df2f-44a8-901b-e521fd45aca2','2025-07-18 17:45:49.943',350,'KAPIDA ÖDEME - ISMAİL REMMO - 613813844','COLLECT','2025-07-18 17:45:49.943','2025-07-22 16:18:49.634',NULL),
('307de6c6-e9a8-4c3b-91c8-96952f47f901','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9667990f-57b0-4e89-ac6c-4a2ef8899bf0','2024-09-28 15:25:06.558',1000,'KAPIDA ÖDEME - BARIŞ ÇOŞKUN - 745656343','COLLECT','2024-09-28 15:25:06.558','2024-09-28 15:25:06.558',NULL),
('3089b083-77f6-40ea-bb1f-e90b9eed919e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c454e08f-938d-43b3-ab45-998625e47a0f','2025-06-05 14:19:23.965',1500,'KAPIDA ÖDEME - ALPER ÖZDEMİR - 437414847','COLLECT','2025-06-05 14:19:23.965','2025-06-06 02:46:03.729',NULL),
('309f6ebc-9245-45be-be21-9f682575c5fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'4c9e628d-c4ff-4606-88fd-789fb9c3affc','2025-10-03 15:04:04.714',300,'KAPIDA ÖDEME - SHİMA MAKEH VANDİ - 371865484','COLLECT','2025-10-03 15:04:04.714','2025-10-03 16:08:51.035',NULL),
('30c1c5af-20ed-439d-8799-8db73a8a323f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'2a84330e-2f6b-4172-ac76-ba18ce40bd1c','2024-05-11 09:07:35.434',1125,'KAPIDA ÖDEME - SİBEL BAHÇECİ - 449902693','COLLECT','2024-05-11 09:07:35.434','2024-05-11 09:07:35.434',NULL),
('30cd6184-a349-4f49-8b44-b5e7efd07ccf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'0fd9ad4b-9c17-4380-957d-18193561c45c','2025-08-14 07:43:55.142',1200,'KAPIDA ÖDEME - SELEN SEMERCİ - 428326285','COLLECT','2025-08-14 07:43:55.142','2025-08-14 12:56:53.647',NULL),
('30d2e142-7b1a-494d-b28d-f5218bcaa8f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'84ead5c5-3c6f-4c94-bfaf-62c790476a67','2024-07-02 07:57:12.889',5500,'KAPIDA ÖDEME - SERDAL - 412586204','COLLECT','2024-07-02 07:57:12.889','2024-07-02 07:57:12.889',NULL),
('30dc6756-557f-465c-8a49-5eda0cdb2459','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b8e1c5ea-37ab-4a88-bf6e-66220eac77ff','2025-07-02 12:42:52.147',290,'KAPIDA ÖDEME - FİLİZ DEĞER - 371655670','COLLECT','2025-07-02 12:42:52.147','2025-07-07 11:44:52.809',NULL),
('30de9d33-b717-4ea9-865d-ea29b082553a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'249874ad-8b13-436d-be45-fc0a2c651a43','2025-03-24 12:18:50.008',300,'KAPIDA ÖDEME - BURCU GÖKÇE - 478559134','COLLECT','2025-03-24 12:18:50.008','2025-04-02 18:57:10.886',NULL),
('30e38cd2-4c97-4b6e-b880-4ca0384e728e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b51c5f7-649a-424f-ba17-cc37d6298af9',NULL,NULL,'652b8f3e-d7dd-479b-aacc-14b9a45a626e','2025-04-28 07:23:47.457',200,'KAPIDA ÖDEME - NEVZAT HACIOĞLU - 15153034','COLLECT','2025-04-28 07:23:47.457','2025-04-29 12:00:48.060',NULL),
('30ff55a3-b072-4b38-86a8-0eb4cdafd838','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'df54dcca-24e3-4d47-9eea-e04e05622ecc','2024-09-29 12:44:01.079',500,'KAPIDA ÖDEME - KADİR ÖZCAN  - 428360379','COLLECT','2024-09-29 12:44:01.079','2024-09-29 12:44:01.079',NULL),
('31007978-924d-41c1-825e-2037afdfda85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'383f84ab-67a9-43c3-89be-23dcca380e91','2025-03-27 08:02:20.217',750,'KAPIDA ÖDEME - IRA YİLDİRİM  - 613297420','COLLECT','2025-03-27 08:02:20.217','2025-03-29 13:37:01.615',NULL),
('3198687d-4523-4faa-a82d-497e90b69ae3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'0968d1cc-0ba0-445c-8f49-74a0f7b6c441','2024-05-09 06:16:41.796',1080,'KAPIDA ÖDEME - TUĞBA YILMAZ - 42845475','COLLECT','2024-05-09 06:16:41.796','2024-05-09 06:17:16.431',NULL),
('31b5b973-2070-42b2-ad53-7f9c082534df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'c6f81384-e23c-4402-bb79-8669bf5eecbe','2024-12-09 08:00:43.209',800,'KAPIDA ÖDEME - ÖZGÜL KONAKÇI - 735326602','COLLECT','2024-12-09 08:00:43.209','2024-12-17 19:52:32.750',NULL),
('31d096bf-bf8f-4778-97c6-e5888aaabe30','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,NULL,'f75aea68-ca38-4530-9ad3-ae32f05071ef','2025-10-25 08:43:45.432',1400,'KAPIDA ÖDEME - TAYFUN COŞGUN - 351519592','COLLECT','2025-10-25 08:43:45.432','2025-10-25 08:58:44.119',NULL),
('32187002-44ca-4966-8038-58b8740307a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'19c26519-0688-4a4d-a323-ec65ddad8463','2025-09-15 15:26:04.838',2450,'KAPIDA ÖDEME - DELİL ALGUNERHAN - 478677262','COLLECT','2025-09-15 15:26:04.838','2025-09-19 10:00:25.306',NULL),
('321fa560-1a5e-4426-9e04-eb95ac70aac0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'5689f2eb-3126-469d-bd48-b54e23a855c8','2025-04-26 15:42:17.221',800,'KAPIDA ÖDEME - ERFURT  MOBİLYA KOLTUK - 248568702','COLLECT','2025-04-26 15:42:17.221','2025-04-26 16:05:12.987',NULL),
('32710ed6-3c48-42ab-9480-0e07e96d6ce1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'f572ceaf-0b46-48ec-916f-1f64fb264425','2024-10-11 16:05:25.718',600,'KAPIDA ÖDEME - AYŞE ERDEM - 428226833','COLLECT','2024-10-11 16:05:25.718','2024-10-11 16:08:27.739',NULL),
('32a2d915-aaf7-4076-9a0e-e48741d76b69','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'39388d94-97db-4210-9b52-61151393cf23','2025-01-26 10:26:43.612',1205,'KAPIDA ÖDEME - HİCRAN KAPLAN - 319206159','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('335bbd99-59bd-4a33-a404-be802288d678','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1935d2c6-346a-4632-90ac-9fab7da8d3f6','2025-03-27 08:52:32.483',550,'KAPIDA ÖDEME - KAAN ALTINSOY - 437591433','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('337e7d9e-2275-4589-97bd-adc6c9732d06','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'44de58ec-edda-43a3-a838-2ef9d452d2ff','2025-09-23 07:43:59.502',950,'KAPIDA ÖDEME - ANAHİTA MORİD - 598412225','COLLECT','2025-09-23 07:43:59.502','2025-09-24 13:41:15.012',NULL),
('3386bc42-8f07-4e31-b81f-ba59436b9592','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'994c111c-e6b7-4e44-a12d-e02010c92c4a','2025-03-24 12:25:13.927',3000,'KAPIDA ÖDEME - HABİL ŞENER  - 982864044','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('33a168c4-82d1-4a18-bf07-b61d6b2f5245','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','42b99374-3597-4c9c-b338-8bd585490a92',NULL,NULL,'407deddd-1eea-492c-b3b9-cb9b467f573d','2024-08-20 15:19:12.937',700,'KAPIDA ÖDEME - HALİME ÜNSAL - 429340012','COLLECT','2024-08-20 15:19:12.937','2024-08-31 18:15:24.829',NULL),
('33b67cde-b645-4ae3-b0d3-84dfc9b445a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'5eb60d14-02a3-405b-84ef-2be197850002','2025-01-11 14:53:42.276',1900,'KAPIDA ÖDEME - MEHMET ÇANKAYA - 449136824','COLLECT','2025-01-11 14:53:42.276','2025-01-13 07:50:40.305',NULL),
('33d88815-8c03-47fe-a6fb-94e2559b91b7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'69d7a07d-c199-439f-8e6c-e59065df2772','2025-05-09 16:49:05.440',2000,'KAPIDA ÖDEME - EMRE YILMAZ - 745884226','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('34b1f801-e398-452b-b237-3ff593a6be4a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'cff31e86-cae0-4159-890f-d6fdf1bef718','2025-03-29 13:31:30.183',750,'KAPIDA ÖDEME - ÜMRAN HANIM - 248853188','COLLECT','2025-03-29 13:31:30.183','2025-03-29 13:56:05.249',NULL),
('34bdef06-71ef-4b83-99b2-843a5de57e10','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'da4d99db-af56-4362-a1e7-d972dc6e8b1a','2025-08-14 07:46:42.701',310,'KAPIDA ÖDEME - DİANA MUJKİC - 371529841','COLLECT','2025-08-14 07:46:42.701','2025-08-14 08:02:29.812',NULL),
('3525ace9-375b-4737-bb10-b02a2f88c6a9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'6a0da1c8-000c-4513-b226-ac4e7f8c7a30','2024-08-20 15:02:17.702',4500,'KAPIDA ÖDEME - YAKUP KILIÇ - 478124503','COLLECT','2024-08-20 15:02:17.702','2024-08-23 09:05:34.581',NULL),
('3547c3d8-7292-40d2-bd64-c6374934e30c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'5ab946bf-4daf-4a95-a7b6-8f3505531252','2024-11-29 13:54:07.214',2500,'KAPIDA ÖDEME - MEHMET KIZILDERE - 501488750','COLLECT','2024-11-29 13:54:07.214','2024-12-09 17:29:19.987',NULL),
('355b4de7-15e4-464d-af55-72b62c324756','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'37f59dff-6352-4082-a18f-d2696e483eff','2024-05-23 07:24:53.553',1315,'KAPIDA ÖDEME - BEYTULLAH ARAS - 319324843','COLLECT','2024-05-23 07:24:53.553','2024-05-23 07:24:53.553',NULL),
('359cdf87-7d45-4f38-93a2-0de443806535','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'633d745b-6334-4fbc-906f-28ed4e0c5168','2024-12-28 14:55:09.945',3300,'KAPIDA ÖDEME - DEMET DEDE - 478409459','COLLECT','2024-12-28 14:55:09.945','2025-01-06 20:08:12.782',NULL),
('35a49fae-777b-417b-ac24-89f7a82f6d47','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'08903c44-0aec-492e-ae36-4f7ff8701446','2025-04-25 15:41:06.232',500,'KAPIDA ÖDEME - AKIN KARUT - 644775291','COLLECT','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('35d51971-b40f-42d1-bc00-e56aec229d7e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'3a413ad6-1fa8-40a1-8617-788cf4219a4a','2025-05-23 06:25:41.798',1150,'KAPIDA ÖDEME - BARLEB KASS HANNA - 644106987','COLLECT','2025-05-23 06:25:41.798','2025-05-26 13:23:22.333',NULL),
('35e15e9e-a636-4ab0-8d7c-2814f598742a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1965b9c6-c511-459f-8f4e-dddb4f23f943','2025-09-18 06:43:39.410',3200,'KAPIDA ÖDEME - ALİ AKKAN - 43725194','COLLECT','2025-09-18 06:43:39.410','2025-09-18 15:48:17.540',NULL),
('35e81b5f-d35f-4cb6-bb5c-483b9441eb52','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'b2f9655b-0316-4ee8-b6ba-9ad1280e80a3','2024-04-23 10:19:00.603',1900,'KAPIDA ÖDEME - REZA MUHAMMEDİ - 982292794','COLLECT','2024-04-23 10:19:00.603','2024-04-23 10:28:56.782',NULL),
('35e971da-9342-487a-a73d-79f636222789','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0f83b9ec-6ba6-4b67-812d-586619784634','2025-09-10 06:49:18.649',2250,'KAPIDA ÖDEME - ERKUT PEKTAŞ - 478474988','COLLECT','2025-09-10 06:49:18.649','2025-09-10 07:11:56.167',NULL),
('360a844b-6483-4634-b002-defbe5e6b1c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1ce7240f-f095-4154-b9cf-fb1c29ad4f90',NULL,'2024-03-30 07:14:01.857',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.900'),
('361d564f-5c1d-422d-b180-98702a7793ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'16c1502b-604e-4738-a2f1-13c522febb96','2025-03-27 08:47:28.703',1100,'KAPIDA ÖDEME - DAVUT KAYHAN  - 517887763','COLLECT','2025-03-27 08:47:28.703','2025-03-29 13:56:05.249',NULL),
('3661d07f-ae44-44a6-afbc-2bdd1fc6e0ad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'a7d1afe4-c6c3-4eee-998b-24b4521490d0','2025-06-10 10:05:26.138',1020,'KAPIDA ÖDEME - GÖKHAN UYSAN - 42873500','COLLECT','2025-06-10 10:05:26.138','2025-06-10 10:05:26.138',NULL),
('36e24f7a-de11-45f1-b494-a941431de02f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'1aff7295-6f61-4138-b273-b03f55942801','2025-10-07 14:59:47.681',950,'KAPIDA ÖDEME - AKIN COŞKUNSU - 371365427','COLLECT','2025-10-07 14:59:47.681','2025-10-07 15:17:28.366',NULL),
('370884ce-8207-4539-b07b-166ee0c818f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'8e2cf2d9-4cc3-4f59-8289-06fa2f3a0474',NULL,'2024-03-30 07:25:32.943',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.613'),
('371eb518-e0ed-45f8-b0d7-d2830500b384','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'fd6cdf42-58f9-43ac-acce-9d75b76c6d29','2025-10-03 15:04:04.793',1600,'KAPIDA ÖDEME - SEDAT ÇİFÇİ  - 745538897','COLLECT','2025-10-03 15:04:04.793','2025-10-03 16:08:51.113',NULL),
('37237fdd-f46b-4863-8842-311f38a1d2a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a3672ebb-5053-433e-a8e4-f57986e68156','2025-09-16 07:10:55.421',545,'KAPIDA ÖDEME - (K)HÜSAMETTİN CANBOLAT - 644469726','COLLECT','2025-09-16 07:10:55.421','2025-09-19 10:00:25.433',NULL),
('37325737-118c-495c-ad94-30196f24bf64','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'a36a070b-1cb8-45e1-8e89-ef4588485aec','2025-09-02 12:04:14.838',495,'KAPIDA ÖDEME - NURİYE İKİZKAYA - 437854000','COLLECT','2025-09-02 12:04:14.838','2025-09-02 14:46:19.319',NULL),
('373a6cc2-e992-4564-8f35-648332986927','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c62d3c81-b70b-4acd-bfb2-c4d1408c0a4f',NULL,'2024-03-30 13:00:50.751',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.622'),
('375610a8-2029-4d8b-8705-9f365b99d3c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'c75ecccb-cdd2-4eca-b15e-6750a3df26e6','2024-08-07 14:29:05.141',740,'KAPIDA ÖDEME - İLYAS KAHRİMAN - 745799900','COLLECT','2024-08-07 14:29:05.141','2024-08-07 14:29:05.141',NULL),
('376be949-b1fe-46ed-84ad-dc0bc6012724','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0884b3d4-5cc0-44eb-9508-2f4bc25839ac','2025-02-18 16:31:57.984',6250,'KAPIDA ÖDEME - SÜLEYMAN KAYHAN - 478763903','COLLECT','2025-02-18 16:31:57.984','2025-02-27 13:37:30.441',NULL),
('377b56c5-418e-4c95-b10d-fa0c2a8cbfc9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'ca7f278f-ad79-4c38-a185-b73739ed8248','2024-05-10 07:13:31.659',300,'KAPIDA ÖDEME - KADİR SERZAN - 734889822','COLLECT','2024-05-10 07:13:31.659','2024-05-10 07:13:31.659',NULL),
('37833952-bb72-45b3-b5ba-283a2662872a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'7722797e-2c67-4213-8908-859d85e5ef36','2025-10-01 07:16:48.884',2000,'KAPIDA ÖDEME - SABİHA SATICI - 644520957','COLLECT','2025-10-01 07:16:48.884','2025-10-12 15:29:10.304',NULL),
('3788274c-85bf-4a22-9612-afd18fc30762','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,NULL,'d90a2d63-8817-4556-b510-fd210ae23d81','2024-03-18 10:38:36.649',4450,'KAPIDA ÖDEME - SEYFETTİN BİLİCAN - 703728513','COLLECT','2024-03-18 10:38:36.649','2024-03-18 10:38:36.649',NULL),
('38145209-5bef-4770-bfdd-2b10d8ac7541','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1','2025-04-26 15:53:49.184',375,'KAPIDA ÖDEME - BERAT - 412485805','COLLECT','2025-04-26 15:53:49.184','2025-04-26 17:54:34.426',NULL),
('381f034c-730a-411f-8a82-8bcbc6f0d217','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'9d26f3f5-1617-4627-a308-2aea49169455','2024-12-13 14:48:47.817',950,'KAPIDA ÖDEME - AŞKIN TUN - 127105973','COLLECT','2024-12-13 14:48:47.817','2024-12-16 18:41:52.448',NULL),
('38483273-bbe7-46be-86e8-5c10ae9b1106','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'dcbe7eee-e054-430d-b60c-71cef3ff6b80','2025-08-22 19:43:14.454',1140,'KAPIDA ÖDEME - UMUTCAN ŞAHİNCİ - 437870707','COLLECT','2025-08-22 19:43:14.454','2025-08-22 20:28:07.586',NULL),
('386ce242-95dc-4ab0-9933-0c0b408bdf4d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'ff541470-3c77-4b65-bcd0-3fc253c0858c','2025-09-23 07:43:59.510',875,'KAPIDA ÖDEME - MALİHA CETİN - 531309772','COLLECT','2025-09-23 07:43:59.510','2025-09-24 13:41:15.019',NULL),
('386ce2ec-e33a-4156-bb6e-133813b9e0a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'c48a406d-f6cc-43e5-ab64-0494c3458163','2025-03-24 12:22:38.006',1660,'KAPIDA ÖDEME - GÜLNAZ ATMACA - 976285905','COLLECT','2025-03-24 12:22:38.006','2025-04-02 18:57:10.886',NULL),
('3895bcce-5d3c-429d-a9e6-b478a3d75ca4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'313a72ed-6534-4a76-a704-0b5ce01d87db','2025-10-02 06:39:26.346',1000,'KAPIDA ÖDEME - SAMİR KERANOVİC  - 221837026','COLLECT','2025-10-02 06:39:26.346','2025-10-02 11:05:59.184',NULL),
('38cc60a2-6e4f-4ecc-9179-184a8197dfa0','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66','2025-09-06 17:05:18.222',350,'KAPIDA ÖDEME - EREN - 412922680','COLLECT','2025-09-06 17:05:18.222','2025-09-10 12:48:00.821',NULL),
('38cd2d96-2638-4791-862c-376d456c980e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'63812a5c-02ef-4661-96d7-348a4af6ef8a','2025-07-26 07:29:09.278',3200,'KAPIDA ÖDEME - SEBAHAT KOÇAK - 428761245','COLLECT','2025-07-26 07:29:09.278','2025-07-26 08:40:12.335',NULL),
('38d4dce9-d487-48a8-9e10-fff10f0cc5ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'8a5c4932-8ab8-4626-9d60-357e8b1fa054',NULL,'2024-03-30 07:25:33.693',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.550'),
('38f0004c-3987-4595-9c42-614c65d21bb0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17','2025-08-22 19:43:14.461',750,'KAPIDA ÖDEME - SEVİM KARATEKE  - 613528305','COLLECT','2025-08-22 19:43:14.461','2025-08-22 20:28:07.557',NULL),
('3952b364-a49d-4c0d-b681-7d21cad34b5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e6e4b3de-fada-4de0-83cf-d79934aa66a7',NULL,'2024-03-30 07:25:32.792',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.547'),
('39824fd2-039c-42eb-878f-781c452d84ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bcf29d7e-4677-47c6-b90e-eecc367da6bc',NULL,'2024-03-30 07:25:33.944',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.704'),
('3988e601-ae08-4a91-b0b6-0e2aa83c3e56','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'7d8e5510-6139-402c-b2eb-e91c010cf1ea','2025-04-30 13:55:21.569',925,'KAPIDA ÖDEME - SONGÜL KEKEÇ - 910197116','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('39e2e418-69e2-43b1-b341-f006d5648457','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'39266e8b-9caf-4386-a36a-8133aa79e848','2025-08-21 06:49:01.551',550,'KAPIDA ÖDEME - GÜRSEL KURTULMUŞ - 428659303','COLLECT','2025-08-21 06:49:01.551','2025-08-22 10:54:52.541',NULL),
('3a12194a-a768-4e4d-afe5-97bb6a56e0c2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'63bcaab6-1f45-4304-b9b2-e21172f2f74b','2025-09-06 17:00:09.125',900,'KAPIDA ÖDEME - KAYHAN BOZKURT - 221692379','COLLECT','2025-09-06 17:00:09.125','2025-09-10 12:48:00.800',NULL),
('3a1ccf0c-af54-42c0-8db8-ce5b08679c8f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f','2025-04-15 09:07:09.163',447,'KAPIDA ÖDEME - ALBNORA MUSTAFA  - 786286562','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('3a25e548-91ea-455e-a408-744bbf5cfb35','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'837cee4f-9e79-4aa8-b135-399bc5f2e9ab','2025-02-27 11:42:17.878',2950,'KAPIDA ÖDEME - ULRİCH RİECK SÖHNE - 41279166','COLLECT','2025-02-27 11:42:17.878','2025-03-21 17:17:29.974',NULL),
('3a2904c2-f0fd-41c2-b796-466918053acd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'17a07c46-d669-4812-a1e6-7296886311ab','2025-09-18 06:43:39.425',750,'KAPIDA ÖDEME - MELİKZADE AHMET ATAY - 598493196','COLLECT','2025-09-18 06:43:39.425','2025-09-18 15:48:17.556',NULL),
('3a3d67ce-22c2-4f62-97e2-711af1a6b79e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'8fb8c47d-f3c2-4303-816b-fb50dd9d6798','2025-01-05 15:07:46.613',975,'KAPIDA ÖDEME - NESLİHAN KÖSEM  - 910405441','COLLECT','2025-01-05 15:07:46.613','2025-01-07 17:06:26.160',NULL),
('3a4f6866-aa22-40ad-ab23-21d0ee71ab9c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'36d04374-8820-448d-9e27-e2a098baa9f9','2024-12-13 13:24:23.701',1183,'KAPIDA ÖDEME - SEMİL HADZİ - 735905073','COLLECT','2024-12-13 13:24:23.701','2024-12-16 18:41:52.448',NULL),
('3a7c44eb-9266-413b-8c9c-7163a2dce36b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'aa459b9d-90ee-4bb9-8354-0f3f48dd9b48','2024-10-23 10:04:30.390',1200,'KAPIDA ÖDEME - SAKİNA RAHİMİ - 449874608','COLLECT','2024-10-23 10:04:30.390','2024-10-23 10:15:57.195',NULL),
('3ac23f44-8dbd-4e66-9d5b-f88c1df63148','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ef437620-5922-42f3-91ee-d44f1d84b757','2025-02-18 16:29:44.418',1300,'KAPIDA ÖDEME - YUSUF ALAN - 745130019','COLLECT','2025-02-18 16:29:44.418','2025-02-27 13:37:30.441',NULL),
('3acbfc19-5d8f-40ab-9f6c-f44f12c69cd7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'005d5663-e3e4-4d87-8c3b-804c4a2d7f7d',NULL,'2024-03-30 07:14:01.757',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.962'),
('3ae24ec2-c967-4c53-ab10-14874070865e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b','2025-09-01 06:45:43.665',1050,'KAPIDA ÖDEME - İPEK ÇAKMAKÇI - 505129515','COLLECT','2025-09-01 06:45:43.665','2025-09-05 08:55:11.207',NULL),
('3b0d1d3c-2056-47a8-b4a9-4ce40d64c948','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e98d59d4-4583-412c-bfc4-6bec0baeab2b','2025-02-07 11:34:53.010',1700,'KAPIDA ÖDEME - FATMA BİLGİN - 745353139','COLLECT','2025-02-07 11:34:53.010','2025-02-15 11:10:42.855',NULL),
('3b19decb-a32b-4045-ad46-ec9173f6a256','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'4cf8e968-59ad-4be3-85fe-2d5ab1c9063f','2025-07-16 13:30:04.301',300,'KAPIDA ÖDEME - MERVE KIZILIRMAK - 657258901','COLLECT','2025-07-16 13:30:04.301','2025-07-16 14:21:29.510',NULL),
('3b8540ea-45be-49df-aec7-554b1e3e15da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'a19108da-c4a8-4e26-aaec-815a4c582fb5','2024-09-09 13:36:05.604',2700,'KAPIDA ÖDEME - GAMZE CAPALBO - 517147933','COLLECT','2024-09-09 13:36:05.604','2024-09-09 13:36:05.604',NULL),
('3b97355b-87bb-41ac-93bc-732a96d4d2bf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'335d66ef-091d-4af1-8b0b-38c2daa9e96d','2025-01-03 09:09:49.753',1000,'KAPIDA ÖDEME - OGUZHAN SARP - 501345257','COLLECT','2025-01-03 09:09:49.753','2025-01-05 14:06:53.366',NULL),
('3be6609b-c6ce-4e1f-a87c-12ef188fa7c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'d5e45bbc-32f3-498d-96c3-b034ee8c10cf','2025-07-12 09:06:58.288',1250,'KAPIDA ÖDEME - GASİ MUSA - 613262202','COLLECT','2025-07-12 09:06:58.288','2025-07-16 14:21:29.650',NULL),
('3c4aee26-cf5a-4d19-977e-7b1d7e03e2c7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'da9eb398-85ed-41cb-b123-6ca8278d250d','2025-03-24 12:18:50.008',100,'KAPIDA ÖDEME - OSMAN SÖYLEMEZ - 478325717','COLLECT','2025-03-24 12:18:50.008','2025-04-02 18:57:10.886',NULL),
('3c61227f-07f7-4ca3-a527-6bbbe8a7aa37','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'f63f39c2-1cd3-4226-a94b-31e8ce8e333f','2025-05-23 06:32:31.764',700,'KAPIDA ÖDEME - SARA CASTRO - 371287728','COLLECT','2025-05-23 06:32:31.764','2025-05-26 13:23:22.333',NULL),
('3c7653c4-c553-4abb-b1df-db330545abc4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'d534081c-07c5-470c-bed4-f699f4319aa1','2025-05-28 18:45:21.684',300,'KAPIDA ÖDEME - CİHAN KÖSELER - 657734229','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('3c90cb0e-8190-4c64-823d-95b8ac549e23','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7','2025-09-24 13:41:15.133',1700,'KAPIDA ÖDEME - MAJD KAMSHA - 745653378','COLLECT','2025-09-24 13:41:15.133','2025-09-24 13:41:15.133',NULL),
('3cb51d5b-841c-404a-a775-a2e79800c360','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0dae8190-b900-4826-9171-b2d74a2538b0',NULL,NULL,'666fc04e-4f35-40cf-9568-33fe5de5cfbb','2025-02-23 12:23:18.706',700,'KAPIDA ÖDEME - SİBEL SAYDAM - 08159662','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('3cca8f6a-ee4a-4097-b3d0-92c873843ffc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'62eea1a6-1676-4355-8243-6e04f6d3e284','2024-10-30 12:51:43.449',1100,'KAPIDA ÖDEME - SAHDİYE BİSKİN - 614707427','COLLECT','2024-10-30 12:51:43.449','2024-11-04 13:59:37.819',NULL),
('3cdc1811-13fe-4e6d-8877-b0ef82a3479a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'225eec2c-83ef-4f12-a430-b56f6429a736','2025-05-16 16:07:59.860',300,'KAPIDA ÖDEME - MAGDALENA DELİJANOVA - 371521572','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('3cea6b97-2dad-44f4-a211-0077de2f2b58','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','2025-02-18 16:31:57.984',13750,'KAPIDA ÖDEME - RAMAZAN KAYHAN - 478972804','COLLECT','2025-02-18 16:31:57.984','2025-02-27 13:37:30.441',NULL),
('3d01926c-80bd-463d-bdb0-3e006bcd110f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'908ced55-4ada-4513-96d9-5b7218af5cd7','2025-08-27 08:40:21.950',800,'KAPIDA ÖDEME - SEDA ULUSOYLU - 371691350','COLLECT','2025-08-27 08:40:21.950','2025-09-03 06:09:36.735',NULL),
('3d11366f-f4e3-4d8f-a797-36029b99d53e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'e5574090-3955-4e09-af62-dd5eb9f6fce4','2025-02-18 16:29:44.418',1300,'KAPIDA ÖDEME - BİROL KURNAZ - 501452801','COLLECT','2025-02-18 16:29:44.418','2025-02-27 13:37:30.441',NULL),
('3d1f78d6-0238-4121-9e92-171f0babf258','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','2025-08-27 08:25:43.934',1600,'KAPIDA ÖDEME - FİRDEVS ORHAN - 221407228','COLLECT','2025-08-27 08:25:43.934','2025-09-03 06:09:36.758',NULL),
('3d26727b-20bd-4536-8fa4-6b30c51f188f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e343cdb8-530a-4273-b51b-de80339b581f','2025-06-30 18:29:58.548',1000,'KAPIDA ÖDEME - FEHMİ TÜRK - 221570854','COLLECT','2025-06-30 18:29:58.548','2025-07-07 11:44:52.831',NULL),
('3d69ebd8-e9a8-4d3e-a63a-ef6c9e1dc9d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'39bd6336-918d-4c50-8fa5-e5bb6385b0b5',NULL,'2024-03-30 07:14:02.758',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.898'),
('3d7e541e-8103-48af-a547-1fd18d722093','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'676d9d67-fd03-4351-b823-77157f0e87aa','2025-09-23 07:43:59.597',800,'KAPIDA ÖDEME - SEDA TULGAR - 644152675','COLLECT','2025-09-23 07:43:59.597','2025-09-24 13:41:15.141',NULL),
('3d9bcb9b-0d87-45f5-a235-6287036a0d72','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'cde89988-42b8-4e80-ba9b-ea5aebd3b21d','2025-02-15 10:13:18.920',850,'KAPIDA ÖDEME - ALİHAN ARATEKİN - 221322415','COLLECT','2025-02-15 10:13:18.920','2025-02-15 16:08:16.558',NULL),
('3dbbe4f5-7f39-4906-9669-0cad69db0007','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'bf2667e1-bf39-437c-9e10-0e2cf3b28d46','2025-02-18 16:05:56.998',600,'KAPIDA ÖDEME - RIDVAN BEY - 412241218','COLLECT','2025-02-18 16:05:56.998','2025-02-27 13:37:30.441',NULL),
('3dd64d4b-9862-4eb6-aa11-fb26c8031d50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'e16c760d-d790-4586-b7cc-374c53cefd14','2025-07-18 17:50:30.829',1050,'KAPIDA ÖDEME - METE AKGÜL - 371857345','COLLECT','2025-07-18 17:50:30.829','2025-07-22 16:18:49.660',NULL),
('3ddba40d-2875-4cdd-b57a-1f258483a985','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7','2025-06-30 18:34:37.131',600,'KAPIDA ÖDEME - MELİKE BAYINDIR - 371398805','COLLECT','2025-06-30 18:34:37.131','2025-07-07 11:44:52.795',NULL),
('3de37c9b-75c2-4de1-bf31-36f5c0757b21','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'46debcfc-622e-49c2-bc0c-3ace3fa84661','2025-09-18 06:43:39.382',800,'KAPIDA ÖDEME - CAN ÖZKAN - 598262809','COLLECT','2025-09-18 06:43:39.382','2025-09-18 15:48:17.510',NULL),
('3dfc3341-b397-4ba6-9aa9-5bbbd53944d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'aae115aa-05f3-4d7c-b25f-3b266a2aa636','2025-02-23 12:18:58.301',1120,'KAPIDA ÖDEME - ABDULLAH KARACA - 221554711','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('3e02e483-8419-4f7c-931a-679a7a329c6b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'37e24e6c-6aac-4ee7-b2f5-433071dc1d49','2025-07-12 09:06:58.266',775,'KAPIDA ÖDEME - ELİF SIKI  - 517157021','COLLECT','2025-07-12 09:06:58.266','2025-07-16 14:21:29.467',NULL),
('3e382b9a-c5a3-47d5-816b-e53d167d01fa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'564fedca-e233-4201-9160-9d65dc5da199','2025-07-08 11:17:29.715',300,'KAPIDA ÖDEME - MERVE ÖZÇOBAN - 657192716','COLLECT','2025-07-08 11:17:29.715','2025-07-08 11:33:15.129',NULL),
('3e750b9c-bfd8-49d7-bacd-2a4f81b30ca7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1','2025-02-13 20:22:41.824',1050,'KAPIDA ÖDEME - SEMİH TASKELE - 221693523','COLLECT','2025-02-13 20:22:41.824','2025-02-24 20:28:04.441',NULL),
('3e7b9655-3197-4c41-b42f-35c900768f2d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'7f38de3b-7387-4b91-9e96-d8a8ae7341de','2025-07-18 18:09:05.469',1350,'KAPIDA ÖDEME - SERVET ERDOĞAN - 982426968','COLLECT','2025-07-18 18:09:05.469','2025-07-22 16:18:49.576',NULL),
('3ee148a5-4dbf-416b-8c52-00ef2e16383f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'b902551d-bfc5-4d60-817a-8452db1a63f4',NULL,'2024-03-30 13:00:49.298',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.615'),
('3eeb5ce7-a9cf-4c7d-b8f0-2f732aeb2cb4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'face1a09-2be5-4ea9-b295-ce5813e481fb','2025-06-27 17:09:48.453',2000,'KAPIDA ÖDEME - ŞAHİN DOROTHE - 98298396','COLLECT','2025-06-27 17:09:48.453','2025-07-01 09:19:39.069',NULL),
('3ef3ed0d-b605-4e7f-9187-06aee73f7a61','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'4e8221f0-0ed6-4604-bd0f-45a00d3e3c89','2025-03-27 08:52:32.483',625,'KAPIDA ÖDEME - SEPAN MOHAMMED - 644107524','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('3f062b15-3e49-4eb4-84f8-712b0cdc634e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'7af47c44-93b1-42ec-813b-77c155a1b050','2024-04-07 20:43:59.522',3300,'KAPIDA ÖDEME - Abbas sertaç - 745715303','COLLECT','2024-04-07 20:43:59.522','2024-04-07 20:43:59.522',NULL),
('3f332938-e97a-4351-a2d3-c098cd141825','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,NULL,'83fe2028-17f9-4b82-a141-f935042a08dd','2024-11-02 08:59:28.276',1550,'KAPIDA ÖDEME - MURAT BEY - 16334418','COLLECT','2024-11-02 08:59:28.276','2024-11-05 13:51:08.256',NULL),
('3fb1a336-2e99-42d6-949b-f7091abe7bda','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'63480ed9-b6a6-4598-9ee7-2e8b1e5eeb5e',NULL,'2024-03-30 07:25:34.594',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.586'),
('3fe04ece-05b6-4e4a-a5d8-a0934d548282','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,NULL,'2024-11-04 13:40:25.068',-65945,NULL,'PAYMENT','2024-11-04 13:40:36.434','2024-11-04 13:40:36.434',NULL),
('40330eee-31a5-4c71-883c-7bc71f4bf579','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'d488fa09-b4c4-4a16-b3c7-6b5959ff762c','2025-02-15 10:11:41.018',1350,'KAPIDA ÖDEME - NORBERTO VAZ  - 982573889','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('4067fe2c-a3d3-45a6-8297-42793dd68d77','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c930eade-75ea-4464-a6c5-445be1fb2f29','2025-07-08 11:17:29.682',1800,'KAPIDA ÖDEME - SEMİH CENGİZ - 437551575','COLLECT','2025-07-08 11:17:29.682','2025-07-08 11:33:15.213',NULL),
('406db3d5-9c23-4277-b87d-18e37aaffb1f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'68290f88-32b3-4699-8927-09eb5cfc1ac6','2025-07-29 12:30:31.487',620,'KAPIDA ÖDEME - EMEL ÖZTÜRK - 371191289','COLLECT','2025-07-29 12:30:31.487','2025-07-29 12:37:20.410',NULL),
('4073317a-f560-43f6-a8f7-3f6b3168b848','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'e8420e4b-28d7-4629-acc4-88baabd1cc27','2025-05-28 18:45:21.684',700,'KAPIDA ÖDEME - AYNUR DURSUN - 817136073','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('408afad8-3cf5-4843-abdf-6e1fde1b8720','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'24ce526d-0f1b-4457-8342-2e64978bfedd','2025-06-30 18:28:07.831',1116.5,'KAPIDA ÖDEME - MEHDİ NAEİMİ - 319275080','COLLECT','2025-06-30 18:28:07.831','2025-07-07 11:44:52.656',NULL),
('408f473f-c880-4e58-8ef8-87007192acba','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a3d53642-0b85-4df2-9ed7-ec01c62f4ae3','2025-01-22 08:43:42.642',490,'KAPIDA ÖDEME - BİANCA AGOSTİNO - 221481972','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('40f468ff-9d1a-46c0-b2fb-8f77a98771ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'9a1b78d9-2f44-4f22-8fcc-953573cdfffe','2025-05-26 15:17:09.414',2940,'KAPIDA ÖDEME - BOLL TRADE - 412795154','COLLECT','2025-05-26 15:17:09.414','2025-05-26 15:17:09.414',NULL),
('4110aa1f-239e-40c2-ac52-eb2b936f0863','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e','2025-07-26 07:22:40.569',1400,'KAPIDA ÖDEME - MUHAMMED EL BOUCHATTAOUI - 976235260','COLLECT','2025-07-26 07:22:40.569','2025-07-26 08:40:12.427',NULL),
('411df317-4744-49f6-88c7-a72f76ab2bc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','85834865-ac23-4c00-a99b-c9551971a5a1',NULL,NULL,'3e323a55-ba70-413e-929d-bc1527816bbc','2024-10-23 15:19:47.275',300,'KAPIDA ÖDEME - CANKUT BEY - 858200454','COLLECT','2024-10-23 15:19:47.275','2024-10-23 15:19:47.275',NULL),
('412658dd-d10d-4662-a3dc-d2cda8a95043','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ceed7173-fe7b-438d-9195-fec804ca478e','2025-10-13 07:14:08.901',2100,'KAPIDA ÖDEME - HANIM DOĞAN - 478730420','COLLECT','2025-10-13 07:14:08.901','2025-10-14 08:52:36.737',NULL),
('415fb321-eb71-47ba-bd09-a58936ae1b97','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'85c7fd43-f325-4446-b095-d57ae4380649',NULL,'2024-03-30 07:25:33.543',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.653'),
('4170d0e6-19b9-4046-b9f7-a81f9e0920c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'2e3dd4aa-6e0b-4063-aabf-0948a2561c35','2024-09-09 13:01:19.302',470,'KAPIDA ÖDEME - HALİL İBRAHİM BACAKSIZ - 97623604','COLLECT','2024-09-09 13:01:19.302','2024-09-09 13:01:19.302',NULL),
('4183623a-373a-4b60-b702-2ea78246717d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'0991bee4-87cb-4b77-85ae-0f81a11d33ba','2025-09-05 18:22:32.102',1250,'KAPIDA ÖDEME - ALİYE GÖRDÜK - 598156869','COLLECT','2025-09-05 18:22:32.102','2025-09-06 09:41:31.778',NULL),
('41b913bf-4af5-4586-9ae9-c0e3c8b9b5d5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','27cbce83-310c-4e98-830f-7433b10c2efd',NULL,NULL,'3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb','2025-09-02 12:04:14.805',970,'KAPIDA ÖDEME - İLYAS ÖZBEK  - 278583277','COLLECT','2025-09-02 12:04:14.805','2025-09-04 12:02:32.520',NULL),
('41caba39-cd7a-4555-b2f6-672e3471dcf1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'c85f0d3f-5c69-47d4-9b44-822058d763b2','2025-08-30 12:05:07.651',1000,'KAPIDA ÖDEME - TEVFİK KÜÇÜK - 644513470','COLLECT','2025-08-30 12:05:07.651','2025-09-05 08:55:11.186',NULL),
('41fe53c6-8e90-4676-874c-ba66bce75675','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'ef40fca2-d183-4d4d-931d-2303fbe2066e','2024-04-23 10:24:40.752',1350,'KAPIDA ÖDEME - IVANA JURİC - 982728095','COLLECT','2024-04-23 10:24:40.752','2024-04-23 10:27:57.352',NULL),
('4223c5c3-e824-4790-8092-0a142269d5f3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'bf69a70a-73ab-451f-bc43-7e834619f2e6','2025-10-25 08:43:45.540',2000,'KAPIDA ÖDEME - BİRSEN BALIM - 74521183','COLLECT','2025-10-25 08:43:45.540','2025-10-25 08:58:44.100',NULL),
('422d3dda-0eb6-4a02-9a66-8361b6bdad09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'93582d1b-031b-454d-8d8f-d69cf39f35b1','2025-08-21 07:01:13.957',300,'KAPIDA ÖDEME - ARZU ÜNLÜ - 319515461','COLLECT','2025-08-21 07:01:13.957','2025-08-21 08:12:56.982',NULL),
('4234c448-1d4c-4916-ac2c-33dc41fd87c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'0e3cd4c9-294c-4ded-8194-bf22e23bc5a0','2025-10-25 08:43:45.509',650,'KAPIDA ÖDEME - HİLAL ZÜBEYİRLER - 515973668','COLLECT','2025-10-25 08:43:45.509','2025-10-25 08:58:43.926',NULL),
('42408474-22cc-4e45-a488-08f0f623e8b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,'801ba5f4-d6b6-411f-91c9-fd875339900c','2025-03-27 13:37:23.583',1000,'KAPIDA ÖDEME - ŞÜKRÜ YÜCE - 655688103','COLLECT','2025-03-27 13:37:23.583','2025-03-29 13:56:05.249',NULL),
('4264f11c-0cc2-4315-b6e2-5a6f7808aeeb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'4f563dbc-f003-405e-bdb8-828b7a66d357','2025-10-01 07:16:48.890',1400,'KAPIDA ÖDEME - KADİR SÜLÜN - 428696149','COLLECT','2025-10-01 07:16:48.890','2025-10-01 07:56:23.183',NULL),
('426e03c1-d11d-448e-b510-e5de49aaf5bf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'c7dadeb7-44b2-4e53-8201-7e81393192a1','2024-08-31 12:54:06.155',250,'KAPIDA ÖDEME - AFERDİTA UKSHİNAS - 31912550','COLLECT','2024-08-31 12:54:06.155','2024-08-31 12:54:06.155',NULL),
('42aae361-061e-4434-ab08-62580d89f5fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d03b939-d544-45f8-8173-464bea4e67ab',NULL,NULL,'1761a5cd-665b-4d31-87c9-a191cdaf4d50','2025-08-21 07:01:13.866',625,'KAPIDA ÖDEME - GÜLŞAH KARAKAŞ - 803828322','COLLECT','2025-08-21 07:01:13.866','2025-08-21 08:12:56.887',NULL),
('42dfee0f-8d4f-41ba-b66c-be48f8865307','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,NULL,'9c99f254-2612-4029-ac15-ffb095b93de3','2024-09-27 14:05:01.915',250,'KAPIDA ÖDEME - MEHMET SARIKAYA - 268368509','COLLECT','2024-09-27 14:05:01.915','2024-09-27 14:05:01.915',NULL),
('42e35028-c69f-4d5b-9908-5454b3d13bcd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'4f91d654-f578-426a-8133-5299ed48d624','2024-12-09 07:54:54.428',1533,'KAPIDA ÖDEME - OZAN YEŞİL - 735442629','COLLECT','2024-12-09 07:54:54.428','2024-12-17 19:52:32.750',NULL),
('43224ca8-f6a2-41db-842b-37189902a906','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'b384d0a2-c272-4375-a026-2cf2910078c9','2024-05-04 07:46:46.327',750,'KAPIDA ÖDEME - SEZAİ TUNÇ - 745850370','COLLECT','2024-05-04 07:46:46.327','2024-05-04 07:46:46.327',NULL),
('4327a2e6-109e-45fd-acbc-1c02225efe7d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8f46653b-9700-4005-98b3-aae1d0eac6e1','2025-10-03 15:04:04.808',650,'KAPIDA ÖDEME - HASAN ÇETİN - 745810889','COLLECT','2025-10-03 15:04:04.808','2025-10-03 16:08:51.131',NULL),
('4399443d-c899-46d5-86a7-e915d757dc66','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'2ab9bb8f-58c4-4826-94a1-bf5b458b034e','2025-04-15 09:07:09.163',725,'KAPIDA ÖDEME - ELİF BEYZA ARVİŞ - 613112731','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('43a06874-65b2-4851-950e-077a16b44be6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b16eb99-81b1-4306-b528-e41ae9bc90b3',NULL,NULL,NULL,'2024-08-07 14:55:33.641',250,'KAPIDA ÖDEME - SERDAR BALCI - 616724751','COLLECT','2024-08-07 14:55:33.641','2024-11-08 19:48:25.079','2024-11-08 19:48:25.082'),
('43d5d623-6697-4c17-830f-f4287fb5d6d9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0279a6d3-79de-4470-9728-f1654e3ba0b6',NULL,NULL,'eb3a7ea2-5449-4b23-acff-46a030acf15e','2024-06-08 09:02:26.971',400,'KAPIDA ÖDEME - FURKAN - 027201624','COLLECT','2024-06-08 09:02:26.971','2024-06-08 09:02:26.971',NULL),
('43f63e13-ec87-40e4-8b59-38ebaab3790e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'45898089-0430-47fd-85a9-8108fa8d9a5e','2025-04-19 10:21:58.939',3000,'KAPIDA ÖDEME - OSMANAJ VALDRİN - 221746947','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('43fce9a9-9c44-494a-9d64-6858c0637032','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9b2f2551-1d35-437d-8ac4-759e5572cc4b','2025-02-03 17:50:13.401',875,'KAPIDA ÖDEME - YILDIZ KILIÇ - 221952785','COLLECT','2025-02-03 17:50:13.401','2025-02-11 17:09:06.423',NULL),
('440ee942-0ef9-46c9-8afa-bbafb668767c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','33cc49ad-e7a0-4ee9-9120-2a98bd963a47',NULL,NULL,'9b2b97c3-e08e-424a-9a23-e7c625f3e6cc','2025-08-14 09:15:13.506',1000,'KAPIDA ÖDEME - BİRSEN YILMAZ - 334873891','COLLECT','2025-08-14 09:15:13.506','2025-08-15 20:59:05.023',NULL),
('4426c70d-06b1-473b-ba26-3f4b8f4ae794','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'3c3a0ffd-2c10-4488-924d-af36cb5763bc','2025-01-06 10:38:56.151',1330,'KAPIDA ÖDEME - RASHİCA ADNAN - 73558075','COLLECT','2025-01-06 10:38:56.151','2025-01-07 17:06:26.160',NULL),
('443c3cc9-bcb4-43d4-a84c-ddb2ec0244cf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'aa584535-e03c-4c2c-afa7-fa71495534c6','2025-08-12 08:06:46.129',300,'KAPIDA ÖDEME - TABELA - 412548356','COLLECT','2025-08-12 08:06:46.129','2025-08-12 08:07:30.402',NULL),
('443d431f-8a43-4835-93d4-321153e561c0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'74fe07f7-1a7f-4967-a60e-9e6e00adcc0d','2024-11-29 13:31:33.041',790,'KAPIDA ÖDEME - ALAETTİN BAYKAN - 614396499','COLLECT','2024-11-29 13:31:33.041','2024-12-04 08:38:35.300',NULL),
('447bcd79-2344-4bfd-bf17-850b5c8af77e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5be6a019-e31c-4bdd-ac62-bd037d756e64','2025-03-12 18:37:42.098',3950,'KAPIDA ÖDEME - MERYEMA TEKİN - 478431848','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('449ac2a9-d648-4843-b33a-6de0f7f281e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'7d6fb76f-77a1-487b-abf8-27a26b46c803','2025-04-26 14:34:06.002',2000,'KAPIDA ÖDEME - CANSU BEYAZ - 644282587','COLLECT','2025-04-26 14:34:06.002','2025-04-26 16:02:30.708',NULL),
('44cebec3-6720-4bba-8dfb-e954044d196d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5','2024-05-10 06:28:56.779',200,'KAPIDA ÖDEME - ÖZKAN BALCI - 478261585','COLLECT','2024-05-10 06:28:56.779','2024-05-10 06:28:56.779',NULL),
('44dabbd0-48f8-4944-81a3-be907cc5284b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'7f855c7f-0b0b-4ad0-be73-f19332cbf660','2025-01-26 10:26:43.612',100,'KAPIDA ÖDEME - AHMET ÖZDEMİR - 478472384','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('44e6bad0-984c-4196-a644-618569c025d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c6ce0690-d0de-43de-9f1a-45fc7344f810','2025-04-19 10:21:58.939',600,'KAPIDA ÖDEME - MUKKADIN IBRAHIM - 221941793','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('45231b2f-79af-4e8d-b6da-b1baa4f8afac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'7b8429d0-1c7f-489c-9ed5-1fd61d831270','2024-10-02 10:46:19.951',700,'KAPIDA ÖDEME - SİBEL ÇINAR - 428736949','COLLECT','2024-10-02 10:46:19.951','2024-10-02 10:46:19.951',NULL),
('4534d20e-ac1d-49f6-9b59-59b7974339f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'280e9889-e4b3-48a6-9ac5-246bac1566c1','2025-09-16 07:10:55.383',350,'KAPIDA ÖDEME - YAŞAR YALMAN SSH - 478816988','COLLECT','2025-09-16 07:10:55.383','2025-09-19 10:00:25.394',NULL),
('45678559-6ee7-492e-89ec-f9754a7874de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'476b3b22-cc52-456b-baca-94ab2554e38d','2024-11-21 09:42:50.940',750,'KAPIDA ÖDEME - FİKRETE RAPCİ - 126806100','COLLECT','2024-11-21 09:42:50.940','2024-12-09 08:24:38.479',NULL),
('45b3c337-ca88-4267-a749-4397fedf8c48','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,NULL,'2024-03-27 21:00:00.000',-6115,'HESAP TEMİZ','PAYMENT','2024-04-01 09:10:23.758','2024-04-01 09:10:23.758',NULL),
('45d968c1-cb6a-4ac4-914a-5487e8c5a3da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,NULL,'2024-11-08 16:47:55.397',-5865,NULL,'PAYMENT','2024-11-08 16:48:06.225','2024-11-08 16:48:06.225',NULL),
('45eb8fcd-14f9-4254-b521-1f81d85f0dec','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2c93ce34-e03d-44d9-994a-7219e1c623b0','2025-09-12 17:03:30.321',1550,'KAPIDA ÖDEME - ENVER GÜL - 478659791','COLLECT','2025-09-12 17:03:30.321','2025-09-12 17:16:02.571',NULL),
('460208b6-6850-4ea6-905b-d7161019ec6a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'82d17384-1e37-4136-b61d-8ad262906c8b','2025-03-25 19:20:46.451',1000,'KAPIDA ÖDEME - RADİA AL ADOUİ - 644599754','COLLECT','2025-03-25 19:20:46.451','2025-03-29 13:37:01.615',NULL),
('460fa5bc-fa14-4ef0-aa7e-e7df8e9353f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3e19392f-7b28-4ec5-bd54-c32058400252','2024-12-17 18:03:20.666',800,'KAPIDA ÖDEME - EBRU DEMİRHAN - 745422037','COLLECT','2024-12-17 18:03:20.666','2025-01-11 10:16:45.910',NULL),
('46a352c3-be21-471d-80a3-8481676b508a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'0fe7f2f8-7c66-4e25-8203-cab2e84eabca',NULL,'2024-03-25 11:45:14.433',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.687'),
('46ae6bac-5575-4330-9f9f-0fe152323e6d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'0b6d3d95-378b-4d48-9a2c-6a0e39674941','2025-03-12 18:37:42.098',720,'KAPIDA ÖDEME -  İSMET CEYLAN - 127241743','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('47103ca8-3b90-44d9-a0fc-ee29c8b1282d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,NULL,'2024-11-12 07:58:44.256',-2550,'ALİM BAŞ','PAYMENT','2024-11-12 07:59:01.213','2024-11-12 07:59:01.213',NULL),
('4739c796-fe6a-4f3a-9ffe-d4d23ba1bc9f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'72028383-f354-4335-af98-094bc771c86d','2024-05-29 09:27:28.205',950,'KAPIDA ÖDEME - RAHİMİ - 449445608','COLLECT','2024-05-29 09:27:28.205','2024-05-29 09:27:28.205',NULL),
('474ab84d-2200-4957-8f0b-bf23bd5ca844','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'d99ae93f-dd73-4f33-a6a3-1bd33e17655a','2025-10-22 07:51:14.289',4575,'KAPIDA ÖDEME - NERMİN KAZAN  - 786146097','COLLECT','2025-10-22 07:51:14.289','2025-10-22 11:29:52.845',NULL),
('4752ae15-66e7-4bf9-80c6-908860ffc3b8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'a451f68c-dd26-4757-af49-72fa26f23f80','2024-10-11 15:16:09.813',800,'KAPIDA ÖDEME - EUROMOBEL - 412395565','COLLECT','2024-10-11 15:16:09.813','2024-10-11 15:16:09.813',NULL),
('47614a8a-9acd-47c9-93c1-827ea29258c8','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'c242a231-cffe-4e5d-bd32-54cf78b29c25','2025-05-14 16:56:37.597',2650,'KAPIDA ÖDEME - KENAN BAYAR - 74568874','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('4789a9dd-cd01-4610-96e2-ef04844bcb41','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee',NULL,NULL,'a2926116-d6cb-4f23-857e-b99221b6f59e','2025-09-02 12:04:14.772',1030,'KAPIDA ÖDEME - HATİCE GÜNGÖR - 465181388','COLLECT','2025-09-02 12:04:14.772','2025-09-02 14:46:19.239',NULL),
('47d76b14-2366-48fc-a885-274df651abf2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'29ec9532-924f-47cd-86e5-76f47bbd3428','2024-09-16 07:59:50.658',1350,'KAPIDA ÖDEME - SAMPAİ CATHERİNE - 982118676','COLLECT','2024-09-16 07:59:50.658','2024-09-18 21:33:15.659',NULL),
('47e69220-f4bc-4e0e-a056-0f3126d460de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'6e0bb465-abd6-46fb-afc0-e66270688f4c',NULL,'2024-03-30 07:25:33.443',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.558'),
('484c571d-2497-4ffd-be06-aa9d7ce7977a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9c50c2ab-574c-478e-bfbf-37bbf5ebab18','2025-06-25 10:51:21.121',850,'KAPIDA ÖDEME - GÜLÜZAR KECKİN - 745276257','COLLECT','2025-06-25 10:51:21.121','2025-07-01 09:19:39.011',NULL),
('487699aa-560b-4b17-a4b4-a6fabda3e115','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'fa70b271-3bdb-47d3-9c07-aed6751f25bb','2024-11-10 18:34:48.016',2000,'KAPIDA ÖDEME - jusuf mehmedi - 982844191','COLLECT','2024-11-10 18:34:48.016','2024-12-09 08:24:38.479',NULL),
('4898f700-01b2-4414-9968-097b6c881aff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'fa763b5d-87a5-4561-b94a-76c46bc6cab0','2025-01-22 08:43:42.642',1000,'KAPIDA ÖDEME - ALİCAN KABAK  - 478224735','COLLECT','2025-01-22 08:43:42.642','2025-01-23 16:36:15.114',NULL),
('48fb9b93-ee62-47de-aa3d-200d272ee2ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'738cf652-ffdb-4acd-94d4-ad19b5a083dd',NULL,'2024-03-30 07:14:01.257',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.972'),
('49016891-20f3-4fed-8ec2-84b830a526ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'6be6b415-9978-41fa-b920-1eb149c147e3','2025-02-13 20:28:54.810',500,'KAPIDA ÖDEME - SÜMEYYE KALKAN  - 98258846','COLLECT','2025-02-13 20:28:54.810','2025-02-24 20:28:04.441',NULL),
('49084b18-977a-4be9-9038-3e295423bc1f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'9b5b3b68-3e25-45b7-a856-05ae20d3cce5','2025-09-05 18:39:57.793',1200,'KAPIDA ÖDEME - VELİT FİLİZ - 808450440','COLLECT','2025-09-05 18:39:57.793','2025-09-06 09:41:31.853',NULL),
('490a8ff7-938e-4f4f-97c6-b7986a73ee8f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c90b2d7e-0b7d-4a03-b820-37ab49d6ef31','2025-08-14 07:54:07.538',1500,'KAPIDA ÖDEME - HASAN ÇALIK  - 982720250','COLLECT','2025-08-14 07:54:07.538','2025-08-14 08:02:29.805',NULL),
('490fd00a-9134-4950-b76c-5b35abb21d49','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,NULL,'499cda13-5036-44b3-a782-3aa5247b7b44','2025-07-01 09:18:35.784',2500,'KAPIDA ÖDEME - HÜLYA KÜTÜK - 268262151','COLLECT','2025-07-01 09:18:35.784','2025-07-01 09:19:38.961',NULL),
('491d21c0-2415-41fd-b267-080709637eb5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'365ff697-3271-4de2-aa7d-b8bcf4ff9590','2025-10-25 08:43:45.267',1450,'KAPIDA ÖDEME - SAMET BEY - 478544570','COLLECT','2025-10-25 08:43:45.267','2025-10-25 08:58:43.958',NULL),
('493519b4-c295-43b6-aaa4-8cdca9cfc146','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'37d103ae-cd34-456d-bf73-1ddb563d8a20','2025-10-22 07:51:14.124',200,'KAPIDA ÖDEME - MURAT AKTAŞ - 412400536','COLLECT','2025-10-22 07:51:14.124','2025-10-22 11:29:52.873',NULL),
('4953f0a7-94a4-40c6-a2df-4ed4fd1f1062','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'d94a3df6-39ff-47f5-91f0-f3e59a85c828','2025-03-24 12:25:13.927',1425,'KAPIDA ÖDEME - ASLAN MURTAZALİEV - 613669036','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('496a5be6-4635-42e9-98ee-48a128a89aa9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'1c14969a-f21e-4d10-ad0e-526d04fe3018','2025-05-09 16:49:05.440',2000,'KAPIDA ÖDEME - MİNA ANNABİ - 478278253','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('4978dbf0-89c4-47a4-9b9c-3ca4a53d6a27','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'61f09758-c694-460b-870c-7202dd8cbfcc','2025-02-13 20:20:47.547',2000,'KAPIDA ÖDEME - YUNUS BEY - 127504677','COLLECT','2025-02-13 20:20:47.547','2025-02-24 20:28:04.441',NULL),
('4985890d-ba3a-47e3-98a7-4fbb4d3a001b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'f3fb5afa-e27b-4671-8dc8-33032a54e4d2','2025-10-01 06:41:28.837',950,'KAPIDA ÖDEME - NİHAL ŞAHİN - 221899517','COLLECT','2025-10-01 06:41:28.837','2025-10-01 07:56:23.272',NULL),
('498de582-84b4-48b1-bf77-c909e9e06708','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d','2025-08-30 12:10:41.288',750,'KAPIDA ÖDEME - AYNUR KAPUCU - 221694221','COLLECT','2025-08-30 12:10:41.288','2025-09-05 08:55:11.151',NULL),
('49f1037e-662c-4f5b-8f08-a351df5d891b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'6b5fec87-7926-4fa4-ae31-13921c722f9d','2025-04-11 12:27:22.133',1250,'KAPIDA ÖDEME - RAMAZAN ALTINKAYNAK - 910163146','COLLECT','2025-04-11 12:27:22.133','2025-04-15 14:54:58.058',NULL),
('4a031dc8-1a35-4781-9ddc-1a6bbb3817d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'8fc185cd-9441-4a92-b878-7da80b8d6502','2025-02-03 17:55:18.052',900,'KAPIDA ÖDEME - SIDI MARİ MUHAMMED  - 221859569','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('4a24ddfb-b734-46fa-a632-eebfa874e7a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb',NULL,NULL,'afda17ee-6395-4bb0-bbe2-3e976e5044bc','2025-05-23 06:35:45.707',1400,'KAPIDA ÖDEME - MELİSA YILMAZ - 203519424','COLLECT','2025-05-23 06:35:45.707','2025-05-26 13:23:22.333',NULL),
('4a2a514c-0b10-4f51-9c57-27116d935e74','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'fc5c1bb8-c1d0-4065-b1a8-be81de217222','2025-08-07 16:12:15.236',650,'KAPIDA ÖDEME - SWEETA QALANAWİ  - 613393068','COLLECT','2025-08-07 16:12:15.236','2025-08-12 08:07:30.464',NULL),
('4a50bbb6-8c4b-4f84-b73e-eb623ddeecf7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'03277e59-7390-43c8-a8b1-ed41f3eba436',NULL,'2024-03-30 07:14:01.507',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.931'),
('4a578358-7848-4245-ab23-8dde6b030329','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'9d4f499d-b9e6-45d3-8054-d2cfb26c0dd3',NULL,'2024-03-30 07:14:02.558',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.926'),
('4a613125-35a5-414f-8060-ff5bf5f71502','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'c8832652-771d-469e-b661-4fd13d628789','2024-12-28 15:47:01.494',4025,'KAPIDA ÖDEME - SELİNAY ORHAN - 745398311','COLLECT','2024-12-28 15:47:01.494','2025-01-06 20:08:12.782',NULL),
('4a78d48c-1851-4117-b99c-4355a48b8b27','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'e9aed3da-2754-4ac0-8f89-1a36768fe9bc','2025-09-05 18:27:28.099',1075,'KAPIDA ÖDEME - MEİSSA AL KHALED - 531480968','COLLECT','2025-09-05 18:27:28.099','2025-09-06 09:41:31.942',NULL),
('4a910716-5112-40ac-a652-ac87bfccf1f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'83dcfa57-e33d-46e2-b78c-ed99b59bfc16','2025-04-15 09:07:09.163',790,'KAPIDA ÖDEME - ELÇİN ÖZDEMİR - 371860514','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('4a928f35-25df-4263-89db-fefb007002e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'5c5ee17e-b7fe-4686-853d-8b627742e536','2024-03-30 07:02:04.954',480,'KAPIDA ÖDEME - İBRAHİM BEY - 248902824','COLLECT','2024-03-30 07:02:04.954','2024-04-01 11:32:07.549',NULL),
('4b0a2ce9-d8d1-4f48-be0d-1b37a11f3e84','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'bed8b1f7-85e7-41e8-b669-6360ddf5b5ca','2025-07-08 10:26:32.753',1450,'KAPIDA ÖDEME - İHSAN KEPİR - 412378459','COLLECT','2025-07-08 10:26:32.753','2025-07-08 11:33:15.192',NULL),
('4b1973d4-6793-41be-9d21-a297ecb5530c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'8aae14a6-2700-4220-893c-6329618c4b17','2025-04-26 14:40:15.277',700,'KAPIDA ÖDEME - NURŞEN ADACI - 8176511','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('4b579fcb-9c9e-4447-a0bb-e5c7db2b86d5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0e1add8c-7e20-424c-83f0-cdb80a06f744','2025-01-19 16:12:38.305',1000,'KAPIDA ÖDEME - ZİLAN BİLİN - 478250269','COLLECT','2025-01-19 16:12:38.305','2025-01-28 15:19:34.396',NULL),
('4badba04-bde1-42ed-99ac-1ed710837f2c','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'a519280a-5153-4940-80b7-3e59e0747d85','2025-09-06 17:00:09.161',1000,'KAPIDA ÖDEME - KARAARSLAN YELİZ - 808886614','COLLECT','2025-09-06 17:00:09.161','2025-09-10 12:48:00.828',NULL),
('4bae6a2e-20f6-4cea-97ec-5b35f5ff214b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c15ec73d-23f3-470b-88b9-b482c773905a','2025-03-12 18:37:42.098',3000,'KAPIDA ÖDEME - ALİ DİNAR - 47811313','COLLECT','2025-03-12 18:37:42.098','2025-03-13 12:35:29.082',NULL),
('4bcb2580-0603-4cab-bb25-3eb50e63eed2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'00d70258-2f30-4c8b-8f72-089d4172bbd9','2025-09-12 17:03:30.281',810,'KAPIDA ÖDEME - SERHAT TAŞÇEVİREN - 221187320','COLLECT','2025-09-12 17:03:30.281','2025-09-12 17:16:02.548',NULL),
('4bcc17d9-7acd-4979-8377-85525bb74c7a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9','2025-02-23 12:18:58.301',500,'KAPIDA ÖDEME - MİYASE SARIKAYA - 221966080','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('4c05ecd3-5506-4fe1-bd12-99df33617e2c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'3a570254-b092-4922-92c1-beea8773ea63','2024-09-28 15:29:19.755',600,'KAPIDA ÖDEME - HAKAN YAZICIOĞLU - 478807426','COLLECT','2024-09-28 15:29:19.755','2024-09-28 15:29:19.755',NULL),
('4c0706c9-16c6-413b-a0cb-1bd18aaa59b5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'54e0df3d-9714-48db-8da6-46af349072d3','2024-10-25 11:57:39.523',825,'KAPIDA ÖDEME - MÜZEYYEN ÖZDEMİR  - 910163142','COLLECT','2024-10-25 11:57:39.523','2024-10-25 11:57:39.523',NULL),
('4c0d6b0f-01c5-419a-9c09-332c6c8cfcc8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'6786ccb2-517a-4991-b179-6d41d556a614','2025-08-14 07:43:55.172',3000,'KAPIDA ÖDEME - ADİSA BALANCA  - 982751509','COLLECT','2025-08-14 07:43:55.172','2025-08-14 08:02:29.747',NULL),
('4c1fb734-cf85-49a1-b6bf-0850ec3583a9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f572259e-64cf-484b-8355-d06b38441169',NULL,'2024-03-25 11:45:14.535',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.752'),
('4c3c67f3-4113-46f2-b9dc-8cbd53e9978b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f64732c3-76ae-4710-b1ac-fb3732ed150b','2025-01-03 09:09:49.753',1600,'KAPIDA ÖDEME - AYHAN ATEŞ - 982979874','COLLECT','2025-01-03 09:09:49.753','2025-01-05 14:06:53.366',NULL),
('4c6cc86f-3bf9-46b5-bfcb-864e6d1b9b6a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7f34d75e-284a-42ac-9cbe-a29174748991',NULL,NULL,'1ae924c7-e6f6-4715-8c97-f693d6de2fda','2024-12-20 12:52:00.230',750,'KAPIDA ÖDEME - ÖZLEM SAĞIR - 73427297','COLLECT','2024-12-20 12:52:00.230','2024-12-27 12:23:49.166',NULL),
('4c8e8d07-4d5b-4d6f-861f-b487e884f1c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c','2025-07-08 11:17:29.702',500,'KAPIDA ÖDEME - DRAGİ DİJANA - 675951028','COLLECT','2025-07-08 11:17:29.702','2025-07-08 11:33:15.155',NULL),
('4c924d0d-6b63-4d8e-b64d-ef46b087b726','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,NULL,'56f30890-8cd9-48d2-9a6a-3354e8a6a762','2024-06-08 07:10:14.070',2500,'KAPIDA ÖDEME - HASAN BEY - 44831715','COLLECT','2024-06-08 07:10:14.070','2024-06-08 07:10:14.070',NULL),
('4ca38436-f83e-4b4f-9d8e-7f4bcd8ce28f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0',NULL,NULL,'82859b5d-2c9e-4a29-be96-14240c8a1e53','2025-06-20 14:59:11.880',2680,'KAPIDA ÖDEME - VALMİRA RAMADANİ - 695394738','COLLECT','2025-06-20 14:59:11.880','2025-06-27 08:25:57.897',NULL),
('4ca530cd-1c42-466d-9d63-cb7bf72d155c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'71f0d0b2-3d17-43c7-bf48-7355e5d7675a','2025-09-02 12:04:14.888',1800,'KAPIDA ÖDEME - ESRA BALTACI - 644711459','COLLECT','2025-09-02 12:04:14.888','2025-09-02 14:46:19.369',NULL),
('4cb450cc-40b5-4ef7-b26f-69723203b953','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'56779a22-f184-44a7-8ac7-070b7bbde2dd','2024-11-12 15:27:45.620',690,'KAPIDA ÖDEME - AHMET KURT - 745286096','COLLECT','2024-11-12 15:27:45.620','2024-11-23 12:17:08.607',NULL),
('4cd61a7e-cdf1-4e2e-91ff-3f13eab0fca4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'264eba0c-b5ea-449d-bd51-0689287b0593','2025-05-16 16:05:10.520',325,'KAPIDA ÖDEME - BESİR FAZLİJİ - 613168811','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('4d1b3f20-8fa6-44df-a85d-ccc95c765fb3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'78463605-c329-4929-b567-24a3f88f4b7d','2025-06-05 14:12:51.292',2000,'KAPIDA ÖDEME - MERT GÖKMEN - 644796086','COLLECT','2025-06-05 14:12:51.292','2025-06-06 02:46:03.729',NULL),
('4d253fdd-2f55-4083-af63-a47ca0e2c9a3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'a29a2b1f-c2a8-4ac6-97a4-dad514383f7d','2024-05-11 08:58:54.787',1145,'KAPIDA ÖDEME - İSHOAK ABU BAKER - 126938963','COLLECT','2024-05-11 08:58:54.787','2024-05-17 14:17:34.967',NULL),
('4d76cc71-9ca2-41f9-a6cf-45aec737cd5c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a069475c-3a9b-4604-bf90-f7f9a69b3ffb',NULL,'2024-03-30 13:00:50.201',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.770'),
('4d79d613-d0a0-4cf6-8231-a4ce2289ceb0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0debd19b-d90b-48a0-9568-2d01319377e0',NULL,NULL,'f2f3813a-4330-4d7a-926d-057c1aa9190a','2025-05-23 06:37:54.446',2050,'KAPIDA ÖDEME - İLAYDA FİDAN  - 019868401','COLLECT','2025-05-23 06:37:54.446','2025-05-26 13:23:22.333',NULL),
('4d7b0d75-6c48-444b-ad71-065d0b0c2d84','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f244b33-94ca-477b-ae15-8d3bf79ba2c8',NULL,NULL,'08b07ff9-692e-4ca8-866e-27a96667e87f','2025-07-16 14:24:19.229',1000,'KAPIDA ÖDEME - OSMAN GÖKBEKİŞ - 524289921','COLLECT','2025-07-16 14:24:19.229','2025-07-21 09:11:57.760',NULL),
('4d8daab5-af20-4ddb-991b-e05bf808ba69','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,NULL,'2024-11-10 21:00:00.000',-4795,NULL,'PAYMENT','2024-11-12 08:02:14.477','2024-11-12 08:02:14.477',NULL),
('4d9b112f-df80-48b2-8c53-90cf6b1c95f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'4978d2e1-4aa7-4597-b112-e0c303bb3df2','2024-10-28 10:42:12.877',1380,'KAPIDA ÖDEME - ŞÜKRAN ALP - 614650407','COLLECT','2024-10-28 10:42:12.877','2024-10-28 10:42:12.877',NULL),
('4e021479-c30e-4dc0-910f-9728d0adafc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'20ba0bfa-9720-4a4e-8dc3-12812663abec','2025-05-09 16:49:05.440',750,'KAPIDA ÖDEME - DİLBERAY MELLO - 613910788','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('4eb1aa74-be7e-4461-9d81-f5301a1d4e8b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e24a5a16-cb38-43a9-8612-8532bd457d6b','2025-06-27 17:09:48.508',850,'KAPIDA ÖDEME - KEVSER DENİZ  - 221368256','COLLECT','2025-06-27 17:09:48.508','2025-07-01 09:19:39.062',NULL),
('4ec8c12f-6db4-48aa-8f5a-30713f25964f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f99d0c09-6369-4571-a1fa-cae7407d9134','2025-08-27 08:46:27.313',150,'KAPIDA ÖDEME - BİLGEN TATAR - 478901590','COLLECT','2025-08-27 08:46:27.313','2025-09-03 06:09:36.839',NULL),
('4eec460d-6781-4d8b-b3c2-d4e041b2999f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'edd341ae-d463-4dbb-b4ec-e8899cdb8433','2025-03-12 18:28:25.161',1225,'KAPIDA ÖDEME - RABİA GÜNER - 97684781','COLLECT','2025-03-12 18:28:25.161','2025-03-12 19:01:22.362',NULL),
('4ef292ae-9218-4a7e-a655-7a056a91dc36','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'d00138fa-29c9-4e79-afd4-bb7cf83a496a','2025-01-11 14:53:42.276',1550,'KAPIDA ÖDEME - SERHAT ERDOĞMUŞ - 449558519','COLLECT','2025-01-11 14:53:42.276','2025-01-13 07:50:40.305',NULL),
('4ef64046-a55c-412f-abf7-e78448f2bb18','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'9389f67d-2767-4619-90da-cdf983bc767b','2025-08-27 08:40:21.964',500,'KAPIDA ÖDEME - MEHMET GÜL - 33841628','COLLECT','2025-08-27 08:40:21.964','2025-09-03 06:09:36.743',NULL),
('4f8253e7-8c36-4fa7-9c92-30c541b84889','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,NULL,'2024-11-08 17:25:04.872',1906,NULL,'COLLECT','2024-11-08 17:25:11.442','2024-11-08 17:25:11.442',NULL),
('501162f8-c074-4921-bee6-7c49601e2e5c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d7744b45-f03b-4f58-86f9-7d5458c2559d',NULL,'2024-03-30 13:00:49.400',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.670'),
('50338c71-5c23-4d2b-b638-57d0bb3f6529','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'db8cb965-bd59-4527-8579-8cb4852d50ad','2025-10-07 14:59:47.529',630,'KAPIDA ÖDEME - TUĞÇE SUER  - 765484490','COLLECT','2025-10-07 14:59:47.529','2025-10-12 21:17:18.569',NULL),
('5044bf89-c04b-4c89-b88b-19ab08cf66bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bb37b83a-7827-4a6c-893c-1d676afd5f96',NULL,'2024-03-30 07:25:33.844',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.659'),
('5048079f-7662-4f26-b40c-e5e29efb5fc1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3feebec9-f45b-4b23-9292-7a6a93bc7d05','2025-02-27 11:45:33.845',900,'KAPIDA ÖDEME - DURMUŞ YÜKSEKTEPE - 745935889','COLLECT','2025-02-27 11:45:33.845','2025-03-21 17:17:29.974',NULL),
('506c97de-3714-449c-806d-536353b1faf0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'a34f337a-4aa3-4909-9386-aba561d8a6a0','2025-10-07 14:59:47.701',1000,'KAPIDA ÖDEME - ERKAN URAL - 5983047','COLLECT','2025-10-07 14:59:47.701','2025-10-07 15:17:28.495',NULL),
('507d57f7-64dd-45c0-bbd6-bda4a2c6fbec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','97395954-a607-42cd-986f-68a20e6e23be',NULL,NULL,'f8279968-06bb-4f3f-95e2-612d3d340d74','2024-10-08 13:46:17.686',700,'KAPIDA ÖDEME - AHMET GÖKÇEK  - 973510341','COLLECT','2024-10-08 13:46:17.686','2024-10-11 15:11:00.840',NULL),
('50847078-6196-459e-bf63-cabbe9ec9c84','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d03b939-d544-45f8-8173-464bea4e67ab',NULL,NULL,'3279cd33-84a3-4a75-b268-cbf614f54c41','2025-07-12 09:16:05.836',425,'KAPIDA ÖDEME - SELÇUK SÖNMEZ - 803961620','COLLECT','2025-07-12 09:16:05.836','2025-07-16 14:21:29.458',NULL),
('5089fd48-b3b7-41a9-9e15-12eb48146aca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'29175f89-ad14-442c-b1fb-71c9053ba227','2024-05-23 07:24:34.064',1925,'KAPIDA ÖDEME - Meliha yüksek - 319458159','COLLECT','2024-05-23 07:24:34.064','2024-05-23 07:24:34.064',NULL),
('50d07f47-25a1-4831-99ee-f28d4c2d0f52','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'99bf3199-3c27-48a2-a451-a85f9c13bd5c','2025-03-11 07:46:36.315',500,'KAPIDA ÖDEME - FEVRİ YALÇIN - 750135738','COLLECT','2025-03-11 07:46:36.315','2025-03-11 07:46:41.850',NULL),
('50f76140-d6f8-4717-b05e-6ef418fb36b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e5a42a0c-9b4d-47f2-a979-39ceffa1a73a','2025-06-01 15:40:03.419',250,'KAPIDA ÖDEME - DEKORASYON - 412771828','COLLECT','2025-06-01 15:40:03.419','2025-06-03 14:06:32.739',NULL),
('5111c533-f398-48a7-865e-f3d235aa097b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'12ee6998-24f5-4d1e-a05e-e05480e238bd','2024-12-09 07:44:17.381',2100,'KAPIDA ÖDEME - İSABEL SEDRAYKYAN - 735977134','COLLECT','2024-12-09 07:44:17.381','2024-12-17 19:52:32.750',NULL),
('51294ab1-2da1-43be-ae8b-763ac4ef40e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'df272a39-1da5-45c1-8cc4-f06c8c993887','2024-03-30 07:15:40.539',1500,'KAPIDA ÖDEME - YUSUF DURSUN - 501668492','COLLECT','2024-03-30 07:15:40.539','2024-04-01 11:31:27.337',NULL),
('5134672d-ba1d-4c17-b709-4a035b7d8a15','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'0842ca05-4fb7-45eb-8075-13043a47f7c2','2025-06-20 15:43:25.662',890,'KAPIDA ÖDEME - RAMAZAN DUMAN - 745343811','COLLECT','2025-06-20 15:43:25.662','2025-06-27 08:25:57.838',NULL),
('5168aa3b-a28f-44bc-9649-0cb3aac4700a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,NULL,'2024-11-08 17:17:36.319',-4430,NULL,'PAYMENT','2024-11-08 17:17:44.257','2024-11-08 17:17:44.257',NULL),
('516c1ec6-f525-4966-9c8b-24943df3aaee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3f82ae91-19cb-4663-bb33-377d660eea84','2024-05-10 06:25:48.018',1200,'KAPIDA ÖDEME - ZEYNEP ALKIŞ - 745964132','COLLECT','2024-05-10 06:25:48.018','2024-05-10 06:25:48.018',NULL),
('51970612-fa35-4805-88be-ccfafb29fc56','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5fa14283-df86-4b3d-ad0f-9b686ba6117b','2025-07-12 09:16:05.807',740,'KAPIDA ÖDEME - FATMA ERDEM - 598161990','COLLECT','2025-07-12 09:16:05.807','2025-07-16 14:21:29.532',NULL),
('51b11195-b002-43be-a733-8859e89f04db','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'723c8dbf-02f3-414f-bf79-3654c88f74e1','2025-01-05 15:07:08.367',1350,'KAPIDA ÖDEME - EMRULLAH ŞENGÜL - 910304835','COLLECT','2025-01-05 15:07:08.367','2025-01-07 17:06:26.160',NULL),
('51b70ff3-51db-40ed-8e90-49a0175ae7a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'3bb4499e-7b18-422f-a19d-ece35be90286','2025-06-27 08:24:13.234',1500,'KAPIDA ÖDEME - FİRAS MACHANTAT - 750125400','COLLECT','2025-06-27 08:24:13.234','2025-07-02 11:46:18.223',NULL),
('51ee1ba0-0ffd-420e-aae7-648ab8208be8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'fd58437e-911f-4917-866c-db10175210b3','2025-02-23 12:18:58.301',1000,'KAPIDA ÖDEME - ZEYNEP KORKMAZ - 127659069','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('52008ab3-9f70-43eb-a56d-36fda06b5410','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0dae8190-b900-4826-9171-b2d74a2538b0',NULL,NULL,'068f2f26-67fb-4542-8cbf-cb81478c317b','2025-02-15 10:11:41.018',700,'KAPIDA ÖDEME -  NARİN ABDİ - 081581964','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('52120d6b-d1c5-4b70-8bab-05b95a297aa4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,NULL,'2024-04-01 09:12:46.073',370,NULL,'COLLECT','2024-04-01 09:12:54.974','2024-04-01 09:12:54.974',NULL),
('5217cb08-e164-4cd5-8bdb-10b4313283f3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'bd7eda5e-ac7f-480c-b763-07c7b440ee80','2025-07-18 17:50:30.945',750,'KAPIDA ÖDEME - TİMUÇİN SAYIN - 221786435','COLLECT','2025-07-18 17:50:30.945','2025-07-22 16:18:49.627',NULL),
('521fa180-7561-49b4-9756-c4364dd512a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'3b6129d0-8adb-475b-a9bb-394ff6773ada','2025-08-27 08:40:21.957',450,'KAPIDA ÖDEME - TUĞBA BALIKÇI - 437154123','COLLECT','2025-08-27 08:40:21.957','2025-09-03 06:09:36.683',NULL),
('523b8870-9bd3-4bdc-a424-593318c31fbf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'acc18069-a61f-4cc1-b29c-0024e5408038','2024-12-20 13:44:49.476',1000,'KAPIDA ÖDEME - PİPET - 248284003','COLLECT','2024-12-20 13:44:49.476','2025-01-11 14:10:24.146',NULL),
('524a2db8-c0ee-4f13-99a0-d9f88c1bd17c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,NULL,'bc3edf3c-08ad-439c-b6ee-9b055fb20fab','2025-02-07 12:05:23.735',1150,'KAPIDA ÖDEME - ALİ GÖKSU  - 268145141','COLLECT','2025-02-07 12:05:23.735','2025-02-15 11:10:42.855',NULL),
('528402f5-82d4-461b-b057-e08a3c72d480','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41','2025-03-24 12:25:13.927',1250,'KAPIDA ÖDEME - HÜLYA KORKMAZ - 745724851','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('5287d5fd-9dbc-4b29-a970-b832b6976f20','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b9b2c28d-8252-4049-8b72-6810977e2ff3','2024-08-31 13:01:43.726',1500,'KAPIDA ÖDEME - FURKAN SAYGIN - 478498501','COLLECT','2024-08-31 13:01:43.726','2024-08-31 13:01:43.726',NULL),
('5296b047-955f-471a-b2b5-65a87a2ee568','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'6832af34-4eaa-4b00-8c36-a811910e9201','2025-07-29 12:26:43.582',800,'KAPIDA ÖDEME - ELİF GÖKTAN - 505770346','COLLECT','2025-07-29 12:26:43.582','2025-07-29 12:37:20.418',NULL),
('52b134b9-cff1-40d9-abcd-5296d2c01261','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'04d19bef-43c6-4b34-937f-982110f6f8e0','2025-02-23 12:03:23.298',550,'KAPIDA ÖDEME - ANİSSA İFAR  - 221924148','COLLECT','2025-02-23 12:03:23.298','2025-03-02 04:33:53.043',NULL),
('52b1fb38-6780-4653-b4d7-99ac0afb88ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','02756ab4-fa8a-408f-b81c-76a84dc82d6f',NULL,NULL,'1864d9b1-dcd3-4670-aa46-78f5576aa7cd','2024-07-20 10:58:58.786',1620,'KAPIDA ÖDEME - MAĞAZA - 027336842','COLLECT','2024-07-20 10:58:58.786','2024-07-20 11:15:36.075',NULL),
('52ddfb77-8295-4d08-a014-f521fdda5b31','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'2f2a9416-f846-4142-bbdc-6f31920db56f','2025-01-19 16:25:39.959',1230,'KAPIDA ÖDEME - LEYLA AYDIN - 31951233','COLLECT','2025-01-19 16:25:39.959','2025-01-28 15:19:34.396',NULL),
('5308ccdf-e6ea-4d03-a4cd-e3b05b882ec4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a22d421-75df-4ab0-a87f-63e0a71155c0',NULL,NULL,'2afcf460-a080-4273-8901-46e80d97fa18','2024-06-08 08:14:34.762',500,'KAPIDA ÖDEME - ÇAĞLAR - 72247088','COLLECT','2024-06-08 08:14:34.762','2024-06-10 10:14:53.803',NULL),
('53af9a5f-3821-438d-a69f-eeed2c746a7f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'bad05b30-4d32-46ea-a474-6a5a27c42d3c','2025-04-19 10:12:45.918',475,'KAPIDA ÖDEME - DİRİL NURİ - 43792999','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('5433de0b-8345-4afc-8e61-a2de46bc6f64','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'2c2b9f6a-7788-4e01-831d-aa89201542d0','2025-07-04 09:14:58.107',150,'KAPIDA ÖDEME - CHİKH HAMZA GHUFRAN - 248707022','COLLECT','2025-07-04 09:14:58.107','2025-07-04 09:14:58.107',NULL),
('545793a0-e156-456c-8b7e-9168a664e777','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'b7407633-c428-448a-991c-9ae8a31e3782','2025-07-02 12:42:52.155',480,'KAPIDA ÖDEME - CEMAL İBRAHİMBAŞ - 437222135','COLLECT','2025-07-02 12:42:52.155','2025-07-07 11:44:52.802',NULL),
('54579690-6e09-4be8-9648-16e3c6ed3fd1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'aaa69afc-0eda-49b4-818d-8769ee88f336','2025-05-23 06:37:54.446',800,'KAPIDA ÖDEME - EMİLE ARSLAN - 37142091','COLLECT','2025-05-23 06:37:54.446','2025-05-26 13:23:22.333',NULL),
('546e712f-e3cf-4e6b-9b40-943dfa61b37e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1aab780a-270d-4d41-aa6e-89172259c9fc','2024-05-04 08:01:37.198',200,'KAPIDA ÖDEME - TUNCAY AKAR - 745483178','COLLECT','2024-05-04 08:01:37.198','2024-05-04 08:01:37.198',NULL),
('54769d29-165e-47eb-8cfb-883752c99b17','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f07faed6-78e8-4324-9668-3a2d9d15f43d','2024-05-29 10:01:55.073',980,'KAPIDA ÖDEME - BARAN YILDIZ - 745455914','COLLECT','2024-05-29 10:01:55.073','2024-05-29 10:01:55.073',NULL),
('5492806b-7e2d-43f4-befc-434dbb8119e9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'042f3c72-dff0-4f05-808d-d871ab750191','2025-08-15 14:18:27.794',1700,'KAPIDA ÖDEME - ESRA KAYA - 437514624','COLLECT','2025-08-15 14:18:27.794','2025-08-18 07:14:34.890',NULL),
('54c2eae9-571d-493f-b1d1-10b812e8ad32','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'14ccf007-d3c5-4576-b55a-7094ed23bee6','2025-04-26 15:35:35.953',1300,'KAPIDA ÖDEME - FATİH KAZAR - 428135973','COLLECT','2025-04-26 15:35:35.953','2025-04-26 16:02:30.708',NULL),
('54d8e4df-ff6a-4f61-8633-6ac88341dbfb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'6555f7e8-59ef-4ebf-ab04-5e7fab746f3a','2025-03-06 10:20:46.458',5950,'KAPIDA ÖDEME - GÜL-MURAT AVCU - 478449021','COLLECT','2025-03-06 10:20:46.458','2025-03-06 10:36:11.461',NULL),
('54e40966-de44-4ca4-878d-7f8030649df5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fdb96289-c48e-47a8-9fd3-37b529486551',NULL,NULL,'034a3e96-f5a1-4c15-8c1e-0ea592d85c1a','2024-09-20 15:54:55.838',850,'KAPIDA ÖDEME - İSA KAPLAN  - 962908456','COLLECT','2024-09-20 15:54:55.838','2024-09-28 16:13:58.084',NULL),
('551020ce-fb09-4369-be6f-711a03b0c346','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'9304190a-dd40-4d16-b7c3-2f3a039dd301','2025-05-28 18:45:21.684',750,'KAPIDA ÖDEME - NİSRİN GHARİB HASSAN  - 817747938','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('553c7eb5-67f1-485a-87bc-9806b8347523','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'2b07945c-640f-49e9-a7a3-fdcc706090f9','2025-10-17 06:45:24.526',1600,'KAPIDA ÖDEME - ETEM FIRAT YÜKSEL(K) - 644664237','COLLECT','2025-10-17 06:45:24.526','2025-10-17 10:53:07.445',NULL),
('55469663-9052-45ae-a62c-208d7600d223','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b3402260-d451-4d00-8ed8-35b3af56080f','2024-05-04 07:44:40.135',300,'KAPIDA ÖDEME - ASLAN GÜLŞEN - 478647079','COLLECT','2024-05-04 07:44:40.135','2024-05-04 07:44:40.135',NULL),
('556a64c4-9607-4f03-b1fb-44769afe8583','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'400f01f9-93ac-402c-9545-879c310ade12','2024-05-10 09:10:01.017',450,'KAPIDA ÖDEME - ZİYA DEĞERLİ - 734782763','COLLECT','2024-05-10 09:10:01.017','2024-05-10 09:10:01.017',NULL),
('558d3c54-6ec0-4f8f-a37d-3a2c349a1da4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'c88d3746-2810-43c1-8ec1-df087223feec','2025-08-27 08:40:21.971',600,'KAPIDA ÖDEME - NURAN YILDIRIM - 910561299','COLLECT','2025-08-27 08:40:21.971','2025-09-03 06:09:36.772',NULL),
('55a90d11-6f33-416a-87ed-70900f849966','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'ae2f835a-8321-4bfa-be51-ab8fa620564c',NULL,'2024-03-30 07:14:01.707',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.933'),
('55b6c5a9-60a3-48b8-9bf7-45fe0d9a87ad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'6d081276-ddf8-46f0-93cd-4f0c203eb705','2025-09-02 12:04:14.881',4400,'KAPIDA ÖDEME - NERİMAN SARI - 598226174','COLLECT','2025-09-02 12:04:14.881','2025-09-02 14:46:19.362',NULL),
('55f6605f-f125-45fb-91b4-4fe22174e35a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,NULL,'2024-11-10 21:00:00.000',-5000,NULL,'PAYMENT','2024-11-12 08:03:37.112','2024-11-12 08:03:37.112',NULL),
('55fed581-cc4a-4f96-a82a-44a9e748e3e5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'b051fe92-2caf-48d1-986e-2c884be9900c','2025-10-02 06:39:26.308',800,'KAPIDA ÖDEME - SAİDA ELAZZOUZİ  - 221282484','COLLECT','2025-10-02 06:39:26.308','2025-10-02 11:05:59.141',NULL),
('5603a48c-5dd7-4ca4-adfd-01053102e4e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'61865f3a-d280-4338-ba54-fe634b230fbd','2025-08-21 07:01:13.930',745,'KAPIDA ÖDEME - MEHMET ULUIŞIK - 598614826','COLLECT','2025-08-21 07:01:13.930','2025-08-21 08:12:56.946',NULL),
('56271ef9-32bc-477a-84da-6cee1127a118','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'3a9d845e-c0a4-45e3-bf3d-740d6536bc45','2025-01-05 15:07:28.581',600,'KAPIDA ÖDEME - RUKİYE EKERBİÇER  - 910903191','COLLECT','2025-01-05 15:07:28.581','2025-01-07 17:06:26.160',NULL),
('562fa322-3106-4657-8775-bf679ab1d2f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'406ebbb4-13b5-4567-9950-1d118159195d','2025-08-07 16:21:45.718',2100,'KAPIDA ÖDEME - RANA PEKER CİNGÖZ - 735159660','COLLECT','2025-08-07 16:21:45.718','2025-08-12 08:07:30.304',NULL),
('5634de64-194f-4a74-8418-c3f28ebf6bb9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'4e495647-8999-4246-a35c-fd58b0c1ac75','2025-04-26 14:34:06.002',1300,'KAPIDA ÖDEME - SELİN ÖZALP - 644615727','COLLECT','2025-04-26 14:34:06.002','2025-04-26 16:05:40.634',NULL),
('5645b4eb-ac48-45c3-afd7-4795ff1ace6c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'755f29ea-0c4a-4711-8cef-0e6360e5867f','2025-02-03 17:55:18.052',1300,'KAPIDA ÖDEME - GİZEM YAZICI  - 745582484','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('56717fe9-4d05-4d17-ae00-aab0a1a0e8c2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'9bc7ed7a-88ba-4843-ab9e-94956f2066a3','2025-09-18 06:43:39.468',750,'KAPIDA ÖDEME - EBRU SOBAY - 437574361','COLLECT','2025-09-18 06:43:39.468','2025-09-18 15:48:17.616',NULL),
('56aa3aec-09a0-4e70-bed4-381e8dc64681','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'a787358d-13f9-45cb-8b61-75798cab6ea3','2025-03-25 19:27:15.880',800,'KAPIDA ÖDEME - GİZEM YILDIRIM - 817500904','COLLECT','2025-03-25 19:27:15.880','2025-03-29 13:56:05.249',NULL),
('56ad1470-893f-42ed-9775-f32a81e51a4b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'cf774409-1636-4858-87ca-49dc1380271d','2025-08-22 19:43:14.469',590,'KAPIDA ÖDEME - KEMAL URLAN  - 43755091','COLLECT','2025-08-22 19:43:14.469','2025-08-22 20:28:07.571',NULL),
('56ccafc3-34f6-498d-b1fb-e77163a0cddb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4794626f-1ea7-475e-83ad-bdefd15b98b4','2025-05-23 06:32:31.764',1700,'KAPIDA ÖDEME - NEVİN KIRIK - 745638060','COLLECT','2025-05-23 06:32:31.764','2025-05-26 13:23:22.333',NULL),
('56cd9b7b-7a7a-4e6a-ad68-bf9597530ae3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'086387ea-e6c3-4408-a3fe-99b5b7b6a381','2025-10-07 14:59:47.636',2000,'KAPIDA ÖDEME - GÜNGÖR SAK - 614901187','COLLECT','2025-10-07 14:59:47.636','2025-10-07 15:17:28.357',NULL),
('56d8b920-ac95-4a49-b37c-2179e68d4556','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'12438c42-fc27-4ae8-8cff-d96af3f07b68','2025-03-08 13:32:27.236',950,'KAPIDA ÖDEME - HASRET AVCI - 644890175','COLLECT','2025-03-08 13:32:27.236','2025-03-11 07:46:41.850',NULL),
('56fdd0e7-2e05-412d-baa7-2161c43917aa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'410bd7e1-97fe-4832-9494-5d11b92da461','2025-07-16 13:30:51.600',300,'KAPIDA ÖDEME - HARUN YILDIRIM - 657782','COLLECT','2025-07-16 13:30:51.600','2025-07-16 14:21:29.488',NULL),
('577845ff-f4dc-46f3-b8bb-69e171f661b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f2707441-f43c-46c6-b17a-dfc3d294b841',NULL,'2024-03-25 11:45:13.182',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.637'),
('577888b2-7023-4e01-bb34-d3ca813172f7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'d4bc4878-9923-4ef3-b0a1-5cd730e1777a','2025-08-14 09:15:13.464',625,'KAPIDA ÖDEME - MUSTAFA ÖZTAŞ - 644147833','COLLECT','2025-08-14 09:15:13.464','2025-08-15 20:59:05.063',NULL),
('578f8846-1b80-494f-bb81-d21f8f867baa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'4f698c7c-06f3-4d61-9926-f308dd942320',NULL,'2024-03-25 11:45:14.284',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.654'),
('579f23cc-d7b2-489a-8b8d-1c3da3f8f77b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0433f27d-703a-4a68-9cdb-58d86767559d','2025-03-27 08:47:28.703',1000,'KAPIDA ÖDEME - GÖKHAN ÖZYURT  - 2213416','COLLECT','2025-03-27 08:47:28.703','2025-03-29 13:56:05.249',NULL),
('57a11131-558a-4d66-894a-0f53857b45fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'5e70dde1-35e1-403e-bbeb-3153ccf77d80','2025-08-07 16:13:53.409',900,'KAPIDA ÖDEME - OLSZWESKİ MATZ - 644658399','COLLECT','2025-08-07 16:13:53.409','2025-08-12 08:07:30.326',NULL),
('57a7113c-fcef-45a6-a698-78d5dfb72520','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'0e367b6a-44c3-40e4-9097-1055385b6e27','2025-10-25 08:43:45.580',800,'KAPIDA ÖDEME - DİLAY MERYEM CİKU - 371737204','COLLECT','2025-10-25 08:43:45.580','2025-10-25 08:58:43.918',NULL),
('57c318ed-69f3-4e9b-8cb3-355458ee69f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'091754cf-7aa6-431a-8a90-b30fd8978287','2025-04-26 14:40:15.277',1600,'KAPIDA ÖDEME - ELMAS KAYA - 745411152','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('57c5024e-7a03-439a-ac2c-eef7a6a944b3','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0a266acf-5707-4e27-8a72-fd079a3c1ee6','2025-07-29 12:30:31.460',1700,'KAPIDA ÖDEME - NADİYE ÇAVUŞ - 644200718','COLLECT','2025-07-29 12:30:31.460','2025-07-29 12:37:20.358',NULL),
('57fb21a9-46ec-499c-9fbc-cc5c287f8b51','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b09d6f55-3ecf-4da7-9a79-8f16282c4d71','2025-06-30 18:33:09.209',600,'KAPIDA ÖDEME - NECİP FAZIL ŞİMŞEK - 371261673','COLLECT','2025-06-30 18:33:09.209','2025-07-07 11:44:52.782',NULL),
('580d41d1-cd49-43ad-81ac-c6e78694fd0c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'e81b1e15-b8dc-4eb4-8edc-6bac321e5e00','2025-01-19 16:12:38.305',1190,'KAPIDA ÖDEME - AHMET GÜNEŞ - 478300434','COLLECT','2025-01-19 16:12:38.305','2025-01-28 15:19:34.396',NULL),
('5817329d-b5ce-4fe2-8287-7fd19d2c418b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c','2025-05-26 11:10:30.999',550,'KAPIDA ÖDEME - CAMLAR-SALİH AK - 248217260','COLLECT','2025-05-26 11:10:30.999','2025-05-26 13:23:22.333',NULL),
('586f12d8-b816-4b41-8645-c6d8d8be14a4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee',NULL,NULL,'ef3b570a-0fb1-407c-87bb-aea336aed633','2024-11-11 10:16:35.037',1140,'KAPIDA ÖDEME - RECEP ONAY - 465237157','COLLECT','2024-11-11 10:16:35.037','2024-11-23 12:17:08.607',NULL),
('587f2747-fe71-4c63-818c-acf9aae5855e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'46528672-1c96-4785-80ba-77e3cec82ee8','2025-04-19 10:21:58.939',4000,'KAPIDA ÖDEME - MELİSA SAĞLIK - 478483851','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('58eb84ed-ae57-4a91-ab6a-ca088effa289','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'398f18a6-4116-4296-8890-4d154fc30789','2024-09-30 14:23:26.474',1400,'KAPIDA ÖDEME - HÜLYA ÇELİK  - 517910414','COLLECT','2024-09-30 14:23:26.474','2024-11-25 09:20:39.164',NULL),
('58fb2a13-07fc-48e5-bedc-e81eafe92f79','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9','2025-05-28 18:45:21.684',1000,'KAPIDA ÖDEME - RABİA DULU - 517278082','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('5905cf6e-b495-4b29-b323-710e7213f85c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'bf953636-9909-460f-8244-8ec3b177251f','2025-04-11 12:32:18.126',1175,'KAPIDA ÖDEME - ENES TAHİRİ - 613803170','COLLECT','2025-04-11 12:32:18.126','2025-04-15 14:54:58.058',NULL),
('5906299b-d6b5-4154-ac99-aa767e6eae47','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'8f38f94a-f9de-478d-9d69-21faf6e91db1','2024-05-17 14:10:29.275',1550,'KAPIDA ÖDEME - ULAŞ YILDIZ - 428602278','COLLECT','2024-05-17 14:10:29.275','2024-05-17 14:10:29.275',NULL),
('5908c454-e1e8-422d-994d-a6e089284426','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'d2c84f96-5369-41cb-83f8-2768b5603c1d','2025-06-20 15:03:47.833',480,'KAPIDA ÖDEME - YONCA KİLİC - 675592889','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.926',NULL),
('591ea4df-aa6e-433d-ad8e-98a161497320','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'041d4369-8e52-432c-a39c-693f970677e0','2025-06-30 18:33:09.202',600,'KAPIDA ÖDEME - İBRAHİM MERMERCİ - 221102071','COLLECT','2025-06-30 18:33:09.202','2025-07-07 11:44:52.639',NULL),
('5930a0e4-3696-4046-9f1b-cf98fe16fb98','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'438dd97c-f434-42d2-bc9b-5844c47dc0bd','2024-11-23 14:17:18.214',1350,'KAPIDA ÖDEME - AYSEL KARABULUT - 449454395','COLLECT','2024-11-23 14:17:18.214','2024-12-02 09:51:49.376',NULL),
('59664302-e863-4f53-8720-9ec2a95a9724','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2ea9f592-fc79-4bd5-aeff-4c86310c8b37','2024-10-14 14:23:18.113',2350,'KAPIDA ÖDEME - FARZANA SEDİGHİ - 982691264','COLLECT','2024-10-14 14:23:18.113','2024-10-17 12:51:00.932',NULL),
('596ad0db-21d7-45b1-9644-a44ebcf0cd14','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'f67e7508-1afa-4901-b396-faae504c1726','2024-10-23 14:45:45.938',1295,'KAPIDA ÖDEME - ÜLKÜ AKIL - 61480625','COLLECT','2024-10-23 14:45:45.938','2024-10-30 17:48:30.354',NULL),
('597bb3ef-61e4-4acd-8c01-91165a60b4de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'05f0c208-50d2-480f-aecf-61a8060ca311',NULL,'2024-03-30 07:14:02.308',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.928'),
('598a9ded-273b-462f-94d2-273fe0f3a826','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'23ac0286-127d-44b7-bac9-6e2f2c77ea59','2024-04-23 10:22:18.757',1450,'KAPIDA ÖDEME - AMİN SAKİ - 982372153','COLLECT','2024-04-23 10:22:18.757','2024-04-23 10:28:29.292',NULL),
('599ecc4a-4622-42f1-92d7-50c407e8a5e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fdbe5333-29f5-4cca-b853-a28656353575',NULL,'2024-03-30 07:14:01.807',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.947'),
('59bb8bad-8f86-4db6-b96d-3c318793032a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2473140a-52f5-4b86-a285-e3de923dde5c','2024-09-28 15:55:33.686',1350,'KAPIDA ÖDEME - MON NAM ALEMİ - 982799609','COLLECT','2024-09-28 15:55:33.686','2024-09-28 15:55:33.686',NULL),
('59c34093-8e61-49e5-90d3-5e2bf035e62b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'144e05b1-97f8-4419-b9c5-ec6fc2546f88','2024-05-08 19:11:10.462',2300,'KAPIDA ÖDEME - Ramish mirzayer - 449354047','COLLECT','2024-05-08 19:11:10.462','2024-05-08 19:11:10.462',NULL),
('59e7ab37-8ba6-40b9-af0a-e0cbefbbbc7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'6faddf53-18a1-4f1f-affe-7ed38ef9e524','2024-11-18 09:19:23.887',2200,'KAPIDA ÖDEME - SARAH SCHNEİDER - 248904478','COLLECT','2024-11-18 09:19:23.887','2024-11-23 12:17:08.607',NULL),
('5a314798-4008-4914-a8dc-1f1210ddef24','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'a132cd43-3a78-405e-8d75-c0a8147b581f','2025-04-30 13:55:21.569',745,'KAPIDA ÖDEME - HAYRİYE BOZKURT - 598405313','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('5a3dc373-c24f-4863-8ca0-ae803d544a5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'1879da27-b3bb-4922-be98-d1ddc5fe38a9','2025-08-14 09:15:13.435',775,'KAPIDA ÖDEME - DERGHAM NAWEL  - 22145441','COLLECT','2025-08-14 09:15:13.435','2025-08-21 15:33:18.603',NULL),
('5a7e1e43-6878-4357-a464-fd4f8796e281','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'b4816c73-13ed-40e0-87cb-f3536c1d3140','2025-10-13 07:14:09.030',890,'KAPIDA ÖDEME - EMRE ALTUN  - 765828045','COLLECT','2025-10-13 07:14:09.030','2025-10-14 08:52:36.885',NULL),
('5a898fbe-4f1c-4673-9899-90f842b23fc1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'bb42b5ec-6fe1-44c7-ac46-c43f160658e9','2024-09-27 13:41:40.429',1820,'KAPIDA ÖDEME - RUKİYE DARDANOĞLU - 976521198','COLLECT','2024-09-27 13:41:40.429','2024-09-27 13:41:40.429',NULL),
('5a8f3cfe-6c48-4ac0-b2b3-64d102304ce5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7487951b-3af6-4f83-a5fa-6847a10dd8c6',NULL,NULL,'de0107fb-beb9-41b1-aa9c-f833474e8edc','2025-03-12 18:45:13.186',1590,'KAPIDA ÖDEME - LUSYA YILDIRIM  - 748330948','COLLECT','2025-03-12 18:45:13.186','2025-03-12 19:01:22.362',NULL),
('5af3b09c-3d02-4cb8-a327-1b5fd5befae2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0debd19b-d90b-48a0-9568-2d01319377e0',NULL,NULL,'97182860-1f38-433b-b884-7944ccda1a30','2025-05-14 16:56:37.597',600,'KAPIDA ÖDEME - KENAN SEKMEN  - 01914447','COLLECT','2025-05-14 16:56:37.597','2025-05-20 17:00:40.269',NULL),
('5b037387-f787-4ea8-854b-7b5059c3dc9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'71ea314b-7a45-4dd6-ac6a-722d8715f15e','2025-01-26 10:30:15.511',500,'KAPIDA ÖDEME - YETKİN TOKER - 478120731','COLLECT','2025-01-26 10:30:15.511','2025-01-29 12:24:52.459',NULL),
('5b2d86eb-4c10-405b-ac33-c1ab9a7ba6e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'48431447-596f-456f-9008-45bdd35c892a','2025-10-07 14:59:47.577',590,'KAPIDA ÖDEME - ÖMER GEDİK - 644113252','COLLECT','2025-10-07 14:59:47.577','2025-10-07 15:17:28.395',NULL),
('5b954c27-e58c-4dc8-996f-4ef3d25aebca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'6042b337-8e8a-4695-ae65-4e5f031a1b0f','2024-09-09 12:54:28.018',550,'KAPIDA ÖDEME -  - 248573438','COLLECT','2024-09-09 12:54:28.018','2024-09-09 12:54:28.018',NULL),
('5b99c21d-22e3-4a27-9319-ba79de7b20e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7','2024-07-30 15:01:50.640',6500,'KAPIDA ÖDEME - TUĞBA BAĞCI - 126200859','COLLECT','2024-07-30 15:01:50.640','2024-07-30 15:01:50.640',NULL),
('5bbe9d77-b5c2-4e14-a26e-a09c897cc0e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'ed15bdd7-b954-4a77-83a4-3809681dbb05','2025-07-18 17:50:30.874',690,'KAPIDA ÖDEME - GÖKHAN ÜLKER - 371944289','COLLECT','2025-07-18 17:50:30.874','2025-07-22 16:18:49.667',NULL),
('5bc8e728-8712-464b-8b0c-54d6ae7d7bd5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d85df80f-4bcc-482f-949e-4393d27c0874','2024-08-07 14:25:01.404',1190,'KAPIDA ÖDEME - ERDİNÇ ESKİ - 745505942','COLLECT','2024-08-07 14:25:01.404','2024-08-07 14:25:01.404',NULL),
('5c293491-3e4f-4ad2-b787-b2684e797b53','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e968f772-f74d-47ac-8081-dfc30ff7c21d',NULL,'2024-03-30 07:25:34.144',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.580'),
('5c3a116b-d054-463a-bd12-cff70a38936f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'63fb504d-4814-482e-9dca-ed3716a960e5','2025-02-07 11:48:22.096',1600,'KAPIDA ÖDEME - GÜL KAYAS ARSLANMUGÜL - 478188178','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('5c3ccea0-a549-4507-8bb0-54ff1c74e225','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'49b3f497-a340-40f9-9aeb-fcbaeae86b09','2025-05-09 16:49:05.440',700,'KAPIDA ÖDEME - GÜLSEREN ŞAHİN - 371494792','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('5c519042-7207-4fb1-a1fa-0301f155987f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'e16f7651-2afd-45bc-9a35-39463a07d099','2025-07-16 13:30:30.193',300,'KAPIDA ÖDEME - ONUR AKDAĞ - 65722132','COLLECT','2025-07-16 13:30:30.193','2025-07-16 14:21:29.657',NULL),
('5c521734-d2a4-4abe-bba5-9bf105ae082b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,NULL,'2024-11-08 16:53:57.203',-41820,'HESAP DÜZLEME','PAYMENT','2024-11-08 16:54:12.701','2024-11-08 16:54:12.701',NULL),
('5c780928-e191-42ce-ad6a-4962f79c7456','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'a94cadae-57e8-4a39-9f91-6ecbab98c555','2025-01-22 09:20:02.117',825,'KAPIDA ÖDEME - TOLGA KESEN  - 910796066','COLLECT','2025-01-22 09:20:02.117','2025-01-22 09:40:15.479',NULL),
('5c87590d-e2d6-4b8d-ba06-ac6bc8706aa1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'231cdd37-a6e7-4662-97a2-d7f8144e2edd','2025-03-11 14:16:19.289',1100,'KAPIDA ÖDEME - DENİSA LANGU  - 982134567','COLLECT','2025-03-11 14:16:19.289','2025-03-15 09:47:16.005',NULL),
('5c9645c5-b192-4bf4-9511-6ef928ec7894','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'01cf6f32-3acf-4801-a10e-09383b9ea930',NULL,'2024-03-25 11:45:12.682',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.673'),
('5cead301-1412-4f98-92c8-967696ca50c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b2d0b2c9-07c0-445f-ab95-428a8319038e','2025-03-31 07:57:47.943',2700,'KAPIDA ÖDEME - ÖRÜMCEK - 248692077','COLLECT','2025-03-31 07:57:47.943','2025-04-02 18:57:10.886',NULL),
('5d12d242-80bc-473f-b869-605b6d765244','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'942b967a-b7e1-48f8-9cb2-21dcf67db34e','2025-08-15 15:01:10.082',1140,'KAPIDA ÖDEME - DERYA ERDOĞMUŞ - 437578664','COLLECT','2025-08-15 15:01:10.082','2025-08-18 08:33:57.707',NULL),
('5d1715bf-e49f-4e93-8df0-d0bd3ea1a1f4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'0e07b0ae-06f1-463c-8579-3c8aa8ed2f73','2025-10-13 07:14:08.894',400,'KAPIDA ÖDEME - DANFA - 817288476','COLLECT','2025-10-13 07:14:08.894','2025-10-14 09:26:33.382',NULL),
('5d1bd7d8-42eb-412c-a992-c67ddc21b379','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'c6a4b643-c681-400b-be0f-c368348b5bbd','2025-08-07 16:12:15.199',775,'KAPIDA ÖDEME - ROJDA BİNGÖL - 598665171','COLLECT','2025-08-07 16:12:15.199','2025-08-12 08:07:30.417',NULL),
('5e23ce83-0900-44a4-aff3-02ac27d39d62','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'93cfee64-4853-4395-af0b-9caa4355f18f','2024-07-02 08:24:32.201',1000,'KAPIDA ÖDEME - AYHAN KILIÇ - 614134006','COLLECT','2024-07-02 08:24:32.201','2024-07-02 08:24:32.201',NULL),
('5e3fc196-5bc3-464e-aa94-1b777d43dc58','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'de492754-6967-40e1-bf64-463ad84fdd39','2025-09-25 16:04:06.540',400,'KAPIDA ÖDEME - MAZHAR BAYMAN SSH - 644803178','COLLECT','2025-09-25 16:04:06.540','2025-09-26 12:27:42.424',NULL),
('5e69d158-4c62-4959-9759-da00585bde3f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'661ddd47-5b72-400b-be6c-10d5c422f4c3','2024-08-20 15:04:53.549',1950,'KAPIDA ÖDEME - ESRA TEZCAN - 478778231','COLLECT','2024-08-20 15:04:53.549','2024-08-23 09:04:59.404',NULL),
('5e8c72b0-5028-42ba-98d7-206ad8dfe3fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c3282994-78d5-4460-8608-39981a21da0c',NULL,'2024-03-18 07:36:54.460',0,'Sefer No: 3163334','EXPENSE','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.270'),
('5e90f40a-4901-4c9f-9f22-6a8ab30ed931','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9d5fc36f-ed4b-4eac-8e6c-6b24348b505e','2025-06-27 17:04:46.132',1000,'KAPIDA ÖDEME - LATİFA KHAZROUKI - 221139773','COLLECT','2025-06-27 17:04:46.132','2025-07-01 09:19:39.018',NULL),
('5e9c8bfc-de10-489d-ad2e-716f9534ea51','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'edb235b9-3bc7-4176-bf9e-0cc3d4b4d962','2025-03-27 12:34:08.625',300,'KAPIDA ÖDEME - SERKAN SİLAN - 657785918','COLLECT','2025-03-27 12:34:08.625','2025-04-02 18:57:10.886',NULL),
('5ea04bbf-587a-4281-8750-1c90b39de8e2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'f39c59eb-6753-46e7-ad11-8f7fba3db577','2025-06-20 15:03:47.833',240,'KAPIDA ÖDEME - MERAL KELES - 675890872','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.943',NULL),
('5ec1bf69-b8fe-4f1b-892a-592eb4cb8c5e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'747b5fc5-10a3-4ca5-bdfe-cf4db34e4800','2024-09-27 13:48:48.696',2000,'KAPIDA ÖDEME - GÜRKAN GÜLER  - 449693252','COLLECT','2024-09-27 13:48:48.696','2024-09-27 13:48:48.696',NULL),
('5ec35938-615a-448c-8547-a4080d408506','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'142a82ad-defd-462a-a877-e872e40354a3','2025-06-27 17:09:48.544',3500,'KAPIDA ÖDEME - SONER UZUN - 976680764','COLLECT','2025-06-27 17:09:48.544','2025-07-01 09:19:38.921',NULL),
('5f258efc-5373-4907-9e58-45b9961cc358','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'46a5e555-47e9-4fd4-bbf4-635d40a7d1a5','2025-03-15 09:47:14.067',1600,'KAPIDA ÖDEME - SEVİNÇ ÖZKAN  - 614143415','COLLECT','2025-03-15 09:47:14.067','2025-03-15 09:47:16.005',NULL),
('5f94d0f1-c938-4204-8062-b222b6b51107','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'3f0da6fe-5c46-4444-a319-47ee65028a68','2025-10-02 06:39:26.323',700,'KAPIDA ÖDEME - FARIH SANAE - 486609627','COLLECT','2025-10-02 06:39:26.323','2025-10-02 11:05:59.164',NULL),
('5fac03fa-1a12-4d82-8c0c-b13f45b32d90','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'458ad7cc-9bf1-47ee-87b0-b3ad346d4b07','2025-05-09 16:49:05.440',950,'KAPIDA ÖDEME - GAMZE ŞAHİN - 437400305','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('5febf8c0-6b85-44e5-8190-ed2a8120df98','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'fa91f296-36f9-43f0-8480-dce4f2f7ed4b','2025-09-12 17:03:30.380',800,'KAPIDA ÖDEME - CAN ILKAY IBOV - 221225501','COLLECT','2025-09-12 17:03:30.380','2025-09-12 17:16:02.725',NULL),
('5ffc4332-99f0-43f5-9607-c04ea3a458c0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,NULL,'2024-11-08 16:56:21.489',-13655,'HESAP DÜZLEME','PAYMENT','2024-11-08 16:56:52.168','2024-11-08 16:56:52.168',NULL),
('60147593-2ec0-465a-ab90-aaaa121a2353','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'53702035-3c5b-4d14-8135-7095d33f719f',NULL,'2024-03-25 11:45:12.832',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.705'),
('60754b09-d883-419f-9fa7-f8ec2e7be3bc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'8bd82c29-87ea-4ebd-8443-6bc5d39fc63f',NULL,'2024-03-30 07:25:34.494',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.692'),
('609e908e-b87c-4399-b405-6941af702a97','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','97395954-a607-42cd-986f-68a20e6e23be',NULL,NULL,NULL,'2024-11-08 17:21:58.069',-700,NULL,'PAYMENT','2024-11-08 17:22:05.706','2024-11-08 17:22:05.706',NULL),
('60ba8c40-af0b-4486-b065-ceff1904b5f3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'1c37ec40-77c6-4885-995d-696850992a10','2024-09-09 13:07:02.922',750,'KAPIDA ÖDEME -  - 24889830','COLLECT','2024-09-09 13:07:02.922','2024-09-12 10:17:35.608',NULL),
('60d59d92-814d-4eb5-87a7-16f50f2d8bfa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'ebbd439c-6c40-425f-adfe-65a9d4bbd563','2025-09-10 06:49:18.664',1180,'KAPIDA ÖDEME - HANİFE TURAN - 437355925','COLLECT','2025-09-10 06:49:18.664','2025-09-10 07:11:56.261',NULL),
('60ecf082-2d6a-4a73-a7f6-13e98923f465','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'32e2befd-32f1-4bb7-a60e-635dd9c600ef','2024-11-10 18:38:34.501',1500,'KAPIDA ÖDEME - donya bazaz - 982692076','COLLECT','2024-11-10 18:38:34.501','2024-12-09 08:24:38.479',NULL),
('6103469c-1ae7-4f47-a3b5-0d0f8353afeb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'86672508-eba1-4825-86b8-bb58d5bbcae6',NULL,'2024-03-25 11:45:14.334',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.657'),
('61052bb0-48fd-4dd2-9503-e14f860f4253','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a53b1986-8cad-4d57-b0e3-756673c6e406','2024-05-10 06:49:00.682',730,'KAPIDA ÖDEME - ONUR PEKŞEN - 478958320','COLLECT','2024-05-10 06:49:00.682','2024-05-10 06:49:00.682',NULL),
('61543bf8-8c5d-4665-bfea-58e29aed2fa1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'5e876e3f-c0f8-4334-a426-ff4493e61c54','2025-08-25 11:36:09.238',2000,'KAPIDA ÖDEME - MİKAİL ÖZBEK - 675749315','COLLECT','2025-08-25 11:36:09.238','2025-08-25 12:11:45.716',NULL),
('61826fd6-a0b7-4184-baf9-3db63d93283a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'9a74f51a-7e75-4db9-acdc-874ddf9e54c5','2025-04-15 09:07:09.163',740,'KAPIDA ÖDEME - NEŞE ERĞAT - 371363007','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('6189a8bb-15ba-4cb5-a417-f26409745b60','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'bfb3177d-b014-4d5f-96ed-429027d88083','2024-12-28 14:51:46.124',1700,'KAPIDA ÖDEME - MUHAMMET ALTUNKAYA - 478535316','COLLECT','2024-12-28 14:51:46.124','2025-01-06 20:08:12.782',NULL),
('618a32c5-ca26-4d63-afae-ff283210447d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'8886c04f-f904-4e77-a2f1-25b72bcd1e91','2025-10-07 14:59:47.687',945,'KAPIDA ÖDEME - ÖMER VAROL(K) - 644714925','COLLECT','2025-10-07 14:59:47.687','2025-10-07 15:17:28.479',NULL),
('61ae2df4-b9ae-4385-ab2f-2e14b9a1dcfb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'95a80c6f-f63c-41d5-917a-d2547b834cdd','2025-07-18 17:45:49.934',1900,'KAPIDA ÖDEME - ALEYNA AKAY - 644500765','COLLECT','2025-07-18 17:45:49.934','2025-07-22 16:18:49.591',NULL),
('61b53ef8-ff7c-474b-8b3a-f5ae4d3b31c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'e5d95e08-a8c0-4133-845e-d93395f55044','2024-10-11 15:29:40.242',640,'KAPIDA ÖDEME - SUZAN ALTIPARMAK - 501339138','COLLECT','2024-10-11 15:29:40.242','2024-10-24 19:09:17.146',NULL),
('61b7c721-05f0-439d-8ee9-fd7400a15798','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f483e682-c963-48b9-8959-a369cedd8ffc','2025-02-13 20:20:47.547',820,'KAPIDA ÖDEME - SAFİYE ÇITAK - 745959029','COLLECT','2025-02-13 20:20:47.547','2025-02-13 20:59:18.351',NULL),
('61f17a47-d788-4922-b005-97f91af6fe31','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1c4d1793-ac06-480e-9fec-1ed042f34347','2025-09-06 17:00:09.152',1140,'KAPIDA ÖDEME - ALİ KURUÇAM - 437707209','COLLECT','2025-09-06 17:00:09.152','2025-09-10 12:48:00.764',NULL),
('622f1f69-d185-4e4d-b371-1b02f351d748','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'06e1e4d8-8efa-4bf5-b2a5-b17c829042b5','2025-09-18 15:38:20.167',545,'KAPIDA ÖDEME - HATİCE ÇETİN(K) - 644834421','COLLECT','2025-09-18 15:38:20.167','2025-09-18 15:48:17.494',NULL),
('62680088-f448-43c8-b08c-6a868a8aa9be','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'4c449693-e58b-4f1c-aa28-fae57056e377','2025-05-09 16:49:05.440',650,'KAPIDA ÖDEME - REBEKKA İRMER - 644113100','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('628dd49a-e7d8-46fe-a332-1b18c6373f49','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'39b9f7fd-eff8-4a6e-975f-50fa78b8d93e','2025-04-11 12:22:28.272',950,'KAPIDA ÖDEME - MARİNE NETO - 43720744','COLLECT','2025-04-11 12:22:28.272','2025-04-15 14:54:58.058',NULL),
('628e9f47-fc9f-4350-82c6-3c14d285255d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'2791c56f-7265-461d-b1bf-4a378276ed53','2024-11-29 13:18:31.037',1350,'KAPIDA ÖDEME - AYNUR ÖZDEMİR  - 91062607','COLLECT','2024-11-29 13:18:31.037','2024-12-09 17:29:19.987',NULL),
('628ea61f-10ac-4b97-b862-688c9071e0ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'bcf75901-1def-440f-8bcd-fcbe758d1224','2025-01-26 10:26:43.612',750,'KAPIDA ÖDEME - AYŞE ÇÖPLÜ - 127530070','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('62a29bad-ea2b-46de-8495-caceebf1e062','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'5d1c34cf-e5dc-426c-87f8-ac812da1f3cd','2025-10-07 14:59:47.753',1300,'KAPIDA ÖDEME - MEHMET AKDAĞ - 614666366','COLLECT','2025-10-07 14:59:47.753','2025-10-07 15:17:28.446',NULL),
('6304f7d7-0696-411b-9b57-ac86afffb3c9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'70d67ba3-20c6-450a-ac49-d9e23d8fa215',NULL,'2024-03-30 13:00:49.101',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.781'),
('63a24cc8-8843-4606-9b37-d931368be6e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'93c365fd-397d-46ce-91b9-bdd586250f02','2024-09-18 21:21:17.604',1900,'KAPIDA ÖDEME - AYŞE DOĞAN - 982415045','COLLECT','2024-09-18 21:21:17.604','2024-09-19 17:45:59.764',NULL),
('63ce9e05-7680-4a7f-ba20-172bb165e769','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fdba63a4-25d1-4ba5-b447-0e61d5df2f8a',NULL,'2024-03-30 07:14:02.658',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.878'),
('63e3d8e7-079c-4211-a728-c453c1fd399a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'46f3f6ca-c581-44b8-a4a0-2872c19288de','2025-06-05 14:19:23.965',1000,'KAPIDA ÖDEME - ÖZGE ÖZTÜRK - 817121694','COLLECT','2025-06-05 14:19:23.965','2025-06-06 02:46:03.729',NULL),
('63e6bafb-c583-4b7e-9195-478633e9e4c0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'5716aae4-8f4b-48b9-96d5-193f5c4795d6','2025-05-26 11:07:13.818',880,'KAPIDA ÖDEME - MOWO - 412846685','COLLECT','2025-05-26 11:07:13.818','2025-05-27 07:35:17.723',NULL),
('63ed039c-7f55-4878-9801-dbf6133d20f6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f1669928-edf4-48cd-9d17-1413b45ca355','2025-07-08 11:17:29.690',700,'KAPIDA ÖDEME - DİLARA ALAMOORİ - 982632860','COLLECT','2025-07-08 11:17:29.690','2025-07-08 11:33:15.228',NULL),
('63f14148-4d5e-43f0-8beb-7d379cf8b7dd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ed99f25e-1517-4d36-8082-0827ffa4aaa5','2025-04-19 10:21:58.939',745,'KAPIDA ÖDEME - HANİFE YILMAZ - 745252636','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('63f5f083-e043-4cfc-8191-ea0e2af07d1e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c6094b6b-2487-4a38-ba3f-93750f2a9130','2025-08-25 11:36:09.175',400,'KAPIDA ÖDEME - MEO JONATHON - 437452475','COLLECT','2025-08-25 11:36:09.175','2025-08-25 12:11:45.764',NULL),
('63f6ea1c-52bf-4a55-a8f2-d994de90e5b6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'6b72e67a-4029-4618-9942-062ca2c63ca5','2024-10-02 09:15:30.877',4700,'KAPIDA ÖDEME - MUSTAFA ÜNLÜSOY - 478479612','COLLECT','2024-10-02 09:15:30.877','2024-10-02 09:15:30.877',NULL),
('64059b5c-5adb-4029-a62f-a17f375579c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'02f21391-f1d5-4bee-b4d9-17f65a20feb7','2025-09-05 18:27:28.085',1000,'KAPIDA ÖDEME - NURTEN YILMAZ - 338411614','COLLECT','2025-09-05 18:27:28.085','2025-09-10 15:34:43.088',NULL),
('641c1605-b604-4898-9a70-d98124e2d13f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'5d4df7c0-7f38-4095-847c-3996a99d1a51','2025-10-25 08:43:45.525',650,'KAPIDA ÖDEME - EMİNE MERİÇ - 51557557','COLLECT','2025-10-25 08:43:45.525','2025-10-25 08:58:44.017',NULL),
('64721bc6-c80d-445e-9d7f-2346a0b05b90','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'d006eab6-c320-4751-8fec-f85d79856933','2025-08-14 09:15:13.499',1125,'KAPIDA ÖDEME - DELİL ÖZÇELİK - 644680025','COLLECT','2025-08-14 09:15:13.499','2025-08-15 20:59:05.056',NULL),
('64728ff1-59da-4348-8b6b-9c084a771d09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'d7b69750-f00d-4eff-a7d5-f4ec3b8988ce','2024-09-16 07:57:18.901',1400,'KAPIDA ÖDEME - MARİA JONANOVİC - 449417757','COLLECT','2024-09-16 07:57:18.901','2024-09-18 21:28:32.105',NULL),
('6472cf65-e940-4638-9527-8f098071aa57','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'aa29d56c-8b22-4e3b-9ff5-691914b6bb24',NULL,'2024-03-25 11:45:13.532',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.712'),
('64d0398c-f9c5-4c6c-98cc-ae0d387ed9e2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'641b07ae-f1a1-4ba6-b157-d3d15b50b73d','2025-09-12 17:03:30.401',1560,'KAPIDA ÖDEME - GÖNÜL GİDER - 428671806','COLLECT','2025-09-12 17:03:30.401','2025-09-12 17:16:02.654',NULL),
('64f63b94-884d-4947-81c1-5b4a6b501552','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'ab5aecf3-3848-4bed-b17f-3f3ab2404c76','2025-10-25 08:43:45.400',500,'KAPIDA ÖDEME - ERSAN SULİMANOVSKİ - 371985580','COLLECT','2025-10-25 08:43:45.400','2025-10-25 08:58:44.080',NULL),
('651520c5-3531-493c-9a07-7baa19d4a1cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b4ba97ad-fbff-40b7-8bb6-420238f15b4c','2025-02-18 16:29:44.418',1490,'KAPIDA ÖDEME - MERAL YAZICI - 478101413','COLLECT','2025-02-18 16:29:44.418','2025-02-27 13:37:30.441',NULL),
('65372469-f971-459d-8810-71c6113d8fb3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'a6b849e9-82a6-4209-bbf8-1190e6651471','2025-09-23 07:43:59.541',1450,'KAPIDA ÖDEME - İVAN SLEMAN DİNO - 598410676','COLLECT','2025-09-23 07:43:59.541','2025-09-24 13:41:15.054',NULL),
('65872d5d-409d-4207-bc42-c507f95fd1e0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','853c3488-15ac-4631-aa14-318dedb447a4',NULL,NULL,'161a3eec-2f1c-415c-8536-7e1a1da5b969','2024-09-03 15:36:48.412',1375,'KAPIDA ÖDEME - HÜSEYİN KAYAOĞLU - 853766753','COLLECT','2024-09-03 15:36:48.412','2024-09-04 07:29:12.096',NULL),
('6587c117-25c4-48bc-b23e-11766c541b22','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'da5cde0e-df59-488c-af62-13b113156c25','2025-10-03 15:04:04.730',2000,'KAPIDA ÖDEME - AYLA BAYKAL - 644606140','COLLECT','2025-10-03 15:04:04.730','2025-10-03 16:08:51.049',NULL),
('6593b934-6cc3-4eee-adf2-79cea8a4e3e1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d1ba1223-4475-415e-b63f-154a9404e56e',NULL,NULL,'de0c9db6-1fef-4c46-a93e-6a2c8ee6458c','2024-11-21 09:42:50.940',1300,'KAPIDA ÖDEME - FATEMEH HOSSAİNİ - 112787965','COLLECT','2024-11-21 09:42:50.940','2024-12-09 08:24:38.479',NULL),
('65e06aee-af7f-4dbe-ae89-4a72ad7d6d56','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7f34d75e-284a-42ac-9cbe-a29174748991',NULL,NULL,'8197b3b9-ae6a-4c96-ac0a-85c38b7a4871','2024-11-13 13:17:29.297',750,'KAPIDA ÖDEME - Erkan ÖZKÖKKAYA - 734788911','COLLECT','2024-11-13 13:17:29.297','2024-11-28 09:15:31.466',NULL),
('65f3ba8e-d98a-4162-b2c0-529415855bc3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'97a744f7-9f18-4022-ac96-62213b187490',NULL,'2024-03-30 13:00:48.851',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.732'),
('66213b3c-4fd7-4d1d-b701-b1bd57f9671e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'06252624-5d1a-41b3-b461-3b7058f7650d',NULL,'2024-03-30 07:25:34.644',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.679'),
('662a0ca1-8159-4d5a-86d3-d27b6a59b365','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'4dbf93f9-e436-46b7-8455-aa2f9617afb4','2025-03-12 18:25:01.148',1500,'KAPIDA ÖDEME - MUSA BEKİM - 221624652','COLLECT','2025-03-12 18:25:01.148','2025-03-12 19:01:22.362',NULL),
('6652c989-6cfe-4814-9c64-10088ece47a5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'f0c7a240-326d-492c-88a5-bd8e007daa69','2025-10-01 06:41:28.882',500,'KAPIDA ÖDEME - GALİP YAYLALI - 338286320','COLLECT','2025-10-01 06:41:28.882','2025-10-01 07:56:23.266',NULL),
('6652ffd6-ec77-4ac5-a48b-f882a471fc64','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11','2025-05-23 06:31:10.164',825,'KAPIDA ÖDEME - STEPHANİE GOSSEYE - 221669694','COLLECT','2025-05-23 06:31:10.164','2025-05-26 13:23:22.333',NULL),
('6674e703-c548-42e1-934c-85b5ec176083','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'57e894a7-068e-465a-bc70-3b4e9860cee5','2024-05-29 08:42:56.043',820,'KAPIDA ÖDEME - HAKAN ŞİMŞEK - 47889024','COLLECT','2024-05-29 08:42:56.043','2024-05-29 08:42:56.043',NULL),
('6695f156-5417-47ab-86de-3bf0f70e94ff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'77d6bcb8-1638-4066-943f-4ca74a17b5a2','2024-04-23 10:17:17.495',800,'KAPIDA ÖDEME - AGIM NURSHOBO - 44971858','COLLECT','2024-04-23 10:17:17.495','2024-04-23 10:17:17.495',NULL),
('66a82ac6-a70a-4f54-a99e-38dbd8bc889d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'963b83a1-2cd0-4b76-bf46-db84d155db2a',NULL,'2024-03-30 07:14:02.808',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.006'),
('66cbd227-a26f-4f8c-9b70-249521b7efd5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'8974646e-d2f4-461a-a229-980f5d4d3462','2025-07-18 17:45:49.970',1600,'KAPIDA ÖDEME - SALAM KORKMAZ - 531445058','COLLECT','2025-07-18 17:45:49.970','2025-07-22 16:18:49.583',NULL),
('66e645a3-24e3-4481-b6fa-4184d8d8154a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'8fe451fc-7a84-4cca-9cde-dff384de2c9a','2025-03-27 08:49:23.620',950,'KAPIDA ÖDEME - MURAT YILDIZ  - 644481653','COLLECT','2025-03-27 08:49:23.620','2025-03-29 13:56:05.249',NULL),
('66f049d3-7c1a-412d-9697-5c84b850781b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'39397b1a-3018-4479-9b5f-2c8efb77f6d0','2025-03-29 13:32:12.616',300,'KAPIDA ÖDEME - ÇUVALLAR - 24891590','COLLECT','2025-03-29 13:32:12.616','2025-03-29 13:37:01.615',NULL),
('67232a8a-bc3b-4c9c-b526-b5c3f938543f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b7777790-d6b3-4324-8c03-3534c7356952','2025-09-18 15:48:17.595',1400,'KAPIDA ÖDEME - MAHSUN ALDEMİR(K) - 644593040','COLLECT','2025-09-18 15:48:17.595','2025-09-18 15:48:17.595',NULL),
('67486ee7-7f7b-4d52-a3fe-c22c586ba8e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'df701c4a-c387-4a31-b317-a8fec3d8ae59','2025-04-25 15:41:06.232',300,'KAPIDA ÖDEME - HÜLYA MEŞE - 338411689','COLLECT','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('67501e79-0f8d-4881-898d-27f4b5c19393','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'71f77e69-e535-4a68-a67d-b53c19b38276','2025-07-26 07:22:40.562',750,'KAPIDA ÖDEME - ZEESHAN AHMAD FAROOQ - 486874151','COLLECT','2025-07-26 07:22:40.562','2025-07-26 08:40:12.350',NULL),
('6776cd7c-f638-4bf8-a846-6831141ddf1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f3dbda61-0901-46aa-93b6-d65e972a472d','2025-09-10 06:49:18.589',3650,'KAPIDA ÖDEME - FARUK YÜCEL - 478867058','COLLECT','2025-09-10 06:49:18.589','2025-09-10 07:11:56.268',NULL),
('677a92c4-112b-45ab-a421-33eb85614349','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'70156123-3b30-41df-9f05-44dde6a68c06',NULL,'2024-03-30 13:00:50.601',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.749'),
('67815de7-25d6-4a04-a1d0-5242921964a3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'ccec7edf-babd-4962-8945-5f2cc49b04e9','2025-02-15 10:11:41.018',600,'KAPIDA ÖDEME - AMİNA BOUDJENNAH  - 982585914','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('6789b91e-0f26-46a7-91d0-ea18b5e478f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'fe6adfb9-14c6-4193-8c47-6fbe8f734d32','2024-10-02 09:36:54.051',735,'KAPIDA ÖDEME - ZEYNEP ŞURA MUTLU  - 910990360','COLLECT','2024-10-02 09:36:54.051','2024-10-02 09:36:54.051',NULL),
('67ac7fb7-fadd-4a18-9ed5-dbfc2c739a89','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'f068235e-a859-42b0-b6d1-68d5d67061a7','2025-07-29 12:12:50.072',1500,'KAPIDA ÖDEME - FUAT SÜRER - 437392386','COLLECT','2025-07-29 12:12:50.072','2025-07-29 12:37:20.482',NULL),
('67c55e0d-b8c7-4385-a9e5-e67c87264d9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd2f8958-dabf-4d4a-a10e-62713178bf3b',NULL,NULL,'cf345387-d0fa-473f-bd0c-f50c25450c85','2024-09-06 15:10:33.921',400,'KAPIDA ÖDEME - GHASAN ALBUKAİ - 289168915','COLLECT','2024-09-06 15:10:33.921','2024-09-10 14:40:10.298',NULL),
('67e30d25-e47c-4f00-a96e-2780d169ee01','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'887d1301-8182-4254-93e6-73d1ecf6af40','2024-09-18 21:15:33.877',700,'KAPIDA ÖDEME - HASSAN HUSSEİN - 976494428','COLLECT','2024-09-18 21:15:33.877','2024-09-20 21:34:14.252',NULL),
('682167c0-4e10-4470-adfc-02926bf159b5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'924da3d8-9a73-46a3-a085-d7683bf2448e','2025-05-24 10:58:02.722',1100,'KAPIDA ÖDEME - ÖZLEM TURA - 745808637','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('68263e05-791a-402c-8f18-ed37555988b7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'02caa650-97c8-4705-a9bc-95c4f819c322','2025-05-16 16:05:10.520',2550,'KAPIDA ÖDEME - ŞİRİN BALCIN - 486181220','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('682c6df8-82c3-4498-955b-791f9e90e02c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'fbf1995f-2086-4c7e-b569-f8b57a07eadb','2025-09-10 06:49:18.657',1000,'KAPIDA ÖDEME - NURAY DURAN - 515261200','COLLECT','2025-09-10 06:49:18.657','2025-09-10 10:49:56.142',NULL),
('68587a38-336d-400b-b059-9ed7b7a662cf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b7a9e5c-33ee-48ea-80dc-618db5fa40ff',NULL,NULL,'91983c05-77bb-427d-b258-13e5f5aca93a','2025-06-05 14:43:59.681',350,'KAPIDA ÖDEME - MURAT BAYDAR - 879845359','COLLECT','2025-06-05 14:43:59.681','2025-06-06 02:46:03.729',NULL),
('686b0830-8480-48fe-87a3-58333e627b0c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,NULL,NULL,'2024-11-08 16:48:45.932',-925,NULL,'PAYMENT','2024-11-08 16:48:54.917','2024-11-08 16:48:54.917',NULL),
('68ae235e-b2bb-40c4-a8d8-7df352040f6e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'89c7af9b-6049-4f3e-9b7a-1672824189c6','2025-08-27 08:40:22.007',730,'KAPIDA ÖDEME - MARİNELA MARİNKOVİC - 505948491','COLLECT','2025-08-27 08:40:22.007','2025-09-03 06:09:36.721',NULL),
('68b4aae3-0ab5-4e07-a744-0c9d417883b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'26b9febf-7e0a-455c-acf6-ac5b4fe7b20d','2024-04-08 08:45:40.779',1900,'KAPIDA ÖDEME - Leman emre - 478361652','COLLECT','2024-04-08 08:45:40.779','2024-04-08 08:45:40.779',NULL),
('68d11fc9-8898-465e-bf91-a74bff55230a','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0',NULL,NULL,'7c6c2dd1-52e2-4059-a97e-d340167fe009','2025-06-20 14:59:11.880',7000,'KAPIDA ÖDEME - HÜSEYİN CANDAN - 695249199','COLLECT','2025-06-20 14:59:11.880','2025-06-27 08:25:57.890',NULL),
('68e33da1-0660-4e87-a5e7-8422a863fbb4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c301b3d6-0b7c-4330-bda9-99b0f091d356','2025-01-11 15:02:07.378',1300,'KAPIDA ÖDEME - SAİDATİ AHMED  - 98274489','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('68f820a1-99ad-45cf-b214-3e3bcbb8d784','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'7bc83ab8-fd3a-4a00-a977-e067a1ad530c','2024-03-30 09:53:26.624',1650,'KAPIDA ÖDEME - FLORJEN KRASNİGİ - 982310142','COLLECT','2024-03-30 09:53:26.624','2024-04-01 16:46:26.144',NULL),
('69281045-8fe8-4738-9ff8-a536d6746afe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'88cc6a24-35a3-4b23-8747-59b47b080f1a','2025-07-26 07:29:09.285',900,'KAPIDA ÖDEME - ISENİ ELMEDİNA  - 221967241','COLLECT','2025-07-26 07:29:09.285','2025-07-26 08:40:12.357',NULL),
('69728d90-b766-4d48-8633-2ff748f27d94','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'d21c0dd7-8e02-4baf-b630-fdbc71a7958c','2024-09-20 15:48:24.260',1200,'KAPIDA ÖDEME - MEHMET KELEK - 126371651','COLLECT','2024-09-20 15:48:24.260','2024-09-28 16:14:39.818',NULL),
('69864444-535a-47f5-92f6-09dc3d1d9dfc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'a53ce358-8681-4bd7-86f3-ca3347ae0364','2025-02-03 17:59:08.362',1630,'KAPIDA ÖDEME - ERDAL OCALAN - 976126416','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('699670f6-ff1a-40be-9513-ca4e725e3e93','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'13aba735-b82d-4898-a98c-4167bb80085c','2024-09-18 21:23:01.850',1350,'KAPIDA ÖDEME - LYNDA MOUSSA - 982425532','COLLECT','2024-09-18 21:23:01.850','2024-09-18 21:23:01.850',NULL),
('69e724a6-3573-4035-add1-77cc6dd31fbf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4ff50bd5-680b-45e9-8634-5c6a78e87f56','2024-11-15 16:49:27.577',2900,'KAPIDA ÖDEME - ALİ ÖZDEN - 745978651','COLLECT','2024-11-15 16:49:27.577','2024-11-28 09:15:31.466',NULL),
('69fa77c6-5c2d-4482-8b55-030217b492da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,'13119f2d-05d5-4b2d-b32f-396c12ed0ea0','2025-06-05 14:45:05.764',1650,'KAPIDA ÖDEME - MUSTAFA - 107623614','COLLECT','2025-06-05 14:45:05.764','2025-06-06 02:46:03.729',NULL),
('6a0e8330-b23e-4cde-8bf0-48e632ad9cf6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'83bacbe4-57a3-4420-afeb-27d135cfb375','2025-09-05 13:52:01.486',950,'KAPIDA ÖDEME - FERHAD MORİD - 598188038','COLLECT','2025-09-05 13:52:01.486','2025-09-06 09:41:31.840',NULL),
('6a39e188-d446-4d89-a07b-584b0399710c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'227e1ba4-cd58-4884-aa89-d563a3f38226','2025-04-26 14:34:06.002',1250,'KAPIDA ÖDEME - RAMAZAN AY - 644542202','COLLECT','2025-04-26 14:34:06.002','2025-04-26 16:02:30.708',NULL),
('6a70d484-331b-45f4-b6c9-eb91c1616787','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'261c7a7a-8bf9-4d02-8660-2292232ca442','2024-11-02 09:01:43.524',800,'KAPIDA ÖDEME - TÜLAY KILIÇ - 982880880','COLLECT','2024-11-02 09:01:43.524','2024-11-04 13:48:12.287',NULL),
('6a8d3bdf-e70a-4fa6-a7b0-202eaf0824a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'dd9776e7-4b61-4272-8e40-984a52a0303d','2025-06-27 17:09:48.573',900,'KAPIDA ÖDEME - DİLAN ÇELİK TOGAN - 371881042','COLLECT','2025-06-27 17:09:48.573','2025-07-01 09:19:39.048',NULL),
('6a941798-3311-4f61-9a80-30c26aaffe1e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'01c7f991-854b-4e63-a448-14857c24f6f1','2025-03-12 18:40:51.326',2500,'KAPIDA ÖDEME - İSRAFİL ŞENGÖNÜL - 745297087','COLLECT','2025-03-12 18:40:51.326','2025-03-12 19:01:22.362',NULL),
('6aa3b3c3-0c0f-4a83-9b76-2e7c494253c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'6fe412b7-db56-4db7-9069-fed9b85787bb',NULL,'2024-03-30 13:00:49.348',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.759'),
('6b129d0a-a972-4d7c-9254-d2d0e7cb7718','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'df564c56-1964-45d7-946b-9c1121729fa8','2025-02-13 20:57:29.058',2500,'KAPIDA ÖDEME - VEBİ DZELLİ - 98222656','COLLECT','2025-02-13 20:57:29.058','2025-02-24 20:28:04.441',NULL),
('6b4f9d7e-024c-418c-942b-1ca4b929c7fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'bb67462b-3d86-408b-993d-ee8fb3ab52e1','2025-10-07 14:59:47.674',600,'KAPIDA ÖDEME - ZELİHA ÖZCAN - 598492066','COLLECT','2025-10-07 14:59:47.674','2025-10-07 15:17:28.539',NULL),
('6b802a23-ef53-47fe-8af7-6567f3237b81','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'158f02f1-6bc3-4134-8f9c-7b088d6e5c2b','2025-08-15 14:18:27.822',2100,'KAPIDA ÖDEME - OSMAN BOZKAN - 478302796','COLLECT','2025-08-15 14:18:27.822','2025-08-18 07:14:34.899',NULL),
('6bba6c54-f2d3-4d0f-9839-86036a5b62b1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'d7e6d100-83c7-4980-9636-2ea6521598da','2024-05-10 07:12:43.317',250,'KAPIDA ÖDEME - ENDER ÖZBAKAR - 734965369','COLLECT','2024-05-10 07:12:43.317','2024-05-10 07:12:43.317',NULL),
('6bdeb8d0-bc54-4b9d-94c4-7a4a1027972f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c1240440-7bab-4c36-b81b-ce30804d132b','2025-01-22 08:43:42.642',2000,'KAPIDA ÖDEME - SAİD ALİ  - 982973548','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('6be1645a-f1cc-464a-accb-a2047d2f2950','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8f201baa-69fe-442b-9cab-fa1f47b7420b','2025-05-25 10:54:07.830',6080,'KAPIDA ÖDEME - PELŞİN YILDIZ - 478245028','COLLECT','2025-05-25 10:54:07.830','2025-05-26 15:07:26.342',NULL),
('6c0a7ef9-12ec-4a8f-9fac-07da60fa1f35','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'835863ce-70ff-4b53-b486-a32e6936cae4','2025-07-12 09:09:23.708',875,'KAPIDA ÖDEME - EURO MOBEL - 412218985','COLLECT','2025-07-12 09:09:23.708','2025-07-16 14:21:29.557',NULL),
('6c1be39d-73a1-4cfa-94d6-e176a4ab4674','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'83b6fa22-325d-4428-9f65-24d93d1dbfb4','2025-05-23 06:31:10.164',1200,'KAPIDA ÖDEME - ÖZGÜR GÖKÜZÜM - 22142813','COLLECT','2025-05-23 06:31:10.164','2025-05-26 13:23:22.333',NULL),
('6c1dbd7c-28dc-4d57-b6b6-e60930285ba3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'0568f57c-c83e-4fd8-b7c1-2f25498a6b1b',NULL,'2024-03-25 11:45:13.282',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.797'),
('6c2f99ec-3d5f-4080-b8a7-11b6e2892ac9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0a8f1755-81d7-48cb-888e-f50eb6ea01e8','2025-03-25 19:27:15.880',1400,'KAPIDA ÖDEME - ZEYNEP CİHANGİR - 478623446','COLLECT','2025-03-25 19:27:15.880','2025-03-29 13:37:01.615',NULL),
('6c31fa35-8d88-4513-a4f0-522ba201c401','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1de2a2ce-7d52-43f6-be87-7b2ee941189b',NULL,'2024-03-30 07:25:32.692',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.667'),
('6c3870d2-14c8-49a2-b46a-7c47bbf2d799','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'687d4dda-737c-4d30-8593-e81992c2a693','2025-10-03 15:04:04.823',1000,'KAPIDA ÖDEME - ABDULLAH DEMİR  - 745906720','COLLECT','2025-10-03 15:04:04.823','2025-10-03 16:08:51.145',NULL),
('6c3a022a-0d89-4cd0-8c38-b0659b32a094','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'2bc13cda-c525-42a2-a315-a0390ae06337','2024-06-08 10:02:10.990',1000,'KAPIDA ÖDEME - DERYA GÜLLER - 449627061','COLLECT','2024-06-08 10:02:10.990','2024-06-08 10:02:10.990',NULL),
('6c90d802-3fe5-4f59-9583-1893e060e145','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'792dc306-a786-4b24-b735-ba05b7a72e0d','2024-11-10 18:43:58.928',4200,'KAPIDA ÖDEME - SADAT SAIDI - 982365685','COLLECT','2024-11-10 18:43:58.928','2024-12-09 08:24:38.479',NULL),
('6c99bf58-d1e5-4a7e-b161-7f4e8e5c57fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'623aef24-2f33-4ceb-b49b-a0d41b424435','2024-12-07 09:04:36.537',600,'KAPIDA ÖDEME - SERKAN DAĞ  - 982432822','COLLECT','2024-12-07 09:04:36.537','2024-12-17 19:52:32.750',NULL),
('6cb708e2-ac53-4b6c-85e5-14edb9ec7028','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'f5b8d0dc-52cc-49a9-849a-46f0c7d99c77','2025-09-19 09:58:51.980',545,'KAPIDA ÖDEME - AYŞE ÖZKAYA(K) - 644783664','COLLECT','2025-09-19 09:58:51.980','2025-09-19 10:00:25.380',NULL),
('6cb8ccd0-756d-4138-8b8a-f4aae75fbddf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'04b906a6-7837-4515-810d-2b36aefb9873','2024-10-11 15:29:10.394',1900,'KAPIDA ÖDEME - ENVER GÜLMEZ - 501981507','COLLECT','2024-10-11 15:29:10.394','2024-10-11 15:29:10.394',NULL),
('6cc0400c-e954-4627-8e42-d9290f88e4e0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8426da95-71ca-4ae9-bea1-1e7259d72f62',NULL,NULL,'c79902d9-089e-44e4-a536-9307c5bef39d','2025-10-13 07:14:08.885',350,'KAPIDA ÖDEME - HATUN ŞİMŞEK - 842151692','COLLECT','2025-10-13 07:14:08.885','2025-10-14 08:52:36.720',NULL),
('6ccea2a3-7193-44fc-8647-0cc7303705e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'75a70e80-2c1f-412d-86f8-4dbb396ad806','2024-05-23 07:22:04.695',2700,'KAPIDA ÖDEME - MME MENAUR RACHİDO - 449890150','COLLECT','2024-05-23 07:22:04.695','2024-05-23 07:22:04.695',NULL),
('6d008725-5f86-45fb-b916-23239e414d73','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'fbc52807-2ea4-4332-b106-de7e103725f4','2025-05-23 06:29:06.668',1625,'KAPIDA ÖDEME - L.DOUİRİ - 221997933','COLLECT','2025-05-23 06:29:06.668','2025-05-26 13:23:22.333',NULL),
('6d0b1bb9-ae43-464b-8ef8-887d9640e6c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'73b78ebb-8c97-412a-8a1b-bd037a5153db','2024-03-30 08:56:59.849',900,'KAPIDA ÖDEME - GAZİ PINARBAŞI - 478125476','COLLECT','2024-03-30 08:56:59.849','2024-03-30 08:56:59.849',NULL),
('6d21be3a-23b8-4963-9f22-91eccd1b552e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'806ac2ff-05c6-4761-b7c1-9dea0c05a1bb','2025-10-17 06:45:24.596',650,'KAPIDA ÖDEME - MERYEM KAYA - 644178445','COLLECT','2025-10-17 06:45:24.596','2025-10-17 10:53:07.529',NULL),
('6d31a9a1-c6d3-4153-b930-4258de1534a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a5be4396-bdd8-419f-b266-a5f1a1f8df07','2025-04-15 09:07:09.163',950,'KAPIDA ÖDEME - MURAT ERKUL - 745639167','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('6d4a1c5b-4bc9-4246-b9a8-83a3ce3312a4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8afa44a9-611f-49db-a99e-d5e01b5689f2','2025-09-15 15:26:04.865',1600,'KAPIDA ÖDEME - FATİH ÇELİK - 478603328','COLLECT','2025-09-15 15:26:04.865','2025-09-19 10:00:25.337',NULL),
('6d61e908-1ad4-4389-800e-5513230e4237','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'2c4fddf4-35c6-4e66-a529-d3bcad5bb71b','2024-09-20 15:29:53.229',1850,'KAPIDA ÖDEME - SERHAT KARATAŞ  - 449197003','COLLECT','2024-09-20 15:29:53.229','2024-09-28 16:15:00.126',NULL),
('6dacd25a-303e-4af1-a84d-51629f9a47f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a97987c9-ee05-4a3f-94b1-9f85768072d8','2025-07-12 09:16:05.755',800,'KAPIDA ÖDEME - METİN NEŞELİ - 478345732','COLLECT','2025-07-12 09:16:05.755','2025-07-16 14:21:29.600',NULL),
('6e6e8f4c-904f-402b-a05a-a16a8b3bbe0d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e7882376-f647-4f5c-acc0-c4777a09f75d','2025-01-19 16:34:18.943',1760,'KAPIDA ÖDEME - POLAT İSTİKRAR  - 412596038','COLLECT','2025-01-19 16:34:18.943','2025-01-28 15:19:34.396',NULL),
('6e8fdf7b-ef94-4f0e-9d78-080eea031540','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,NULL,'2024-11-08 17:14:55.941',-320,'HESAP DÜZLEME','PAYMENT','2024-11-08 17:15:11.702','2024-11-08 17:15:11.702',NULL),
('6e9eaad9-dcbe-4f1c-b3fc-ebbcb486a75f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e31c6c18-6f02-4884-a633-8cc09e6edad0','2025-01-26 10:30:15.511',1250,'KAPIDA ÖDEME - SUAT TANER - 745129121','COLLECT','2025-01-26 10:30:15.511','2025-01-29 12:24:52.459',NULL),
('6ebc5a27-ef51-4c2d-ba32-745d0cb6e41a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'eee6549c-7110-48d4-b248-afbe45d679e0','2025-08-22 19:43:14.476',500,'KAPIDA ÖDEME - NAGİHAN ALKIRAN - 338829299','COLLECT','2025-08-22 19:43:14.476','2025-08-22 20:28:07.609',NULL),
('6ec019e4-d99d-47f3-8ee2-d7b498e9cb47','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'2b4a9a44-3280-41b5-a65e-97b1f532481b','2025-05-23 06:32:31.764',800,'KAPIDA ÖDEME - KÜBRA YAMAN - 613251938','COLLECT','2025-05-23 06:32:31.764','2025-05-26 13:23:22.333',NULL),
('6ee2f48b-1747-4c36-b6c9-f170fd5fa640','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5','2025-08-15 20:53:04.000',1400,'KAPIDA ÖDEME - SEYFETTİN - 41298450','COLLECT','2025-08-15 20:53:04.000','2025-08-18 08:18:50.078',NULL),
('6f0d35d3-51ad-4ce2-8873-700b30815829','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a4adc8bf-b71d-4a75-b862-396d61d1047b','2024-03-30 09:02:09.186',1000,'KAPIDA ÖDEME - KERİM KUTLU - 478263896','COLLECT','2024-03-30 09:02:09.186','2024-03-30 09:02:09.186',NULL),
('6f2d3257-88a2-4f8b-96a1-8cc6bb67d103','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7430ae4b-b13b-49ef-b219-2bb86572c24c',NULL,'2024-03-25 11:45:13.334',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.721'),
('6f45f779-2216-4be8-9c1b-23babef91fb6','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'44afd7bc-3d03-422d-ab40-1ff34cc96cc0','2025-05-14 16:56:37.597',745,'KAPIDA ÖDEME - RANİA PİSİT - 613464926','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('6f6c2f41-6cc4-4bea-aa1d-0f9dbea41ff9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'0c6e2777-797b-45ae-b55b-1a2b5ee437ac','2025-07-08 11:17:29.673',1000,'KAPIDA ÖDEME - CEM OKUMUŞ - 248883377','COLLECT','2025-07-08 11:17:29.673','2025-07-08 11:33:15.280',NULL),
('6f7d8b2a-c8a7-4461-8ec8-7220b419a9b6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'0d30fc8e-1bbc-4241-8485-e20902596e8d','2024-11-29 13:15:46.957',1500,'KAPIDA ÖDEME - FERHAT DEMİRCİ - 517901924','COLLECT','2024-11-29 13:15:46.957','2024-12-09 17:29:19.987',NULL),
('6f849cea-ae9b-4214-915b-76ca3b6aba06','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'fc7f087a-ae03-4140-970a-58c79194cdc8','2024-04-01 09:22:21.999',4300,'KAPIDA ÖDEME - AHMET BAYDAR - 478943291','COLLECT','2024-04-01 09:22:21.999','2024-04-07 20:35:10.601',NULL),
('6f92b291-0b04-4318-ac70-106a2461102d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'96fd2ec1-bc18-4e5c-aa54-b63b621f826c','2025-09-10 06:49:18.623',1090,'KAPIDA ÖDEME - JASSEY COLİNE - 221190454','COLLECT','2025-09-10 06:49:18.623','2025-09-10 07:11:56.212',NULL),
('6fa1e1cd-8c7c-4408-a859-49d809dd7c34','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'0ea00d37-52d8-4f61-9891-dd8fcc0d358c','2025-09-18 06:43:39.453',1000,'KAPIDA ÖDEME - TAYFUN TATLIGÜN - 8087036','COLLECT','2025-09-18 06:43:39.453','2025-09-18 15:48:17.601',NULL),
('6fb22382-6c76-4b1a-b223-54553d686c01','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'3aef1178-e8a2-4762-a4d1-895ac16f415f','2025-05-09 16:49:05.440',1400,'KAPIDA ÖDEME - SEDA YILMAZ - 371429381','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('6fc1323a-cdae-44a9-ae0e-98f8c0420fac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'807d9f83-f368-4136-9705-535e28ea52aa',NULL,'2024-03-25 11:45:12.884',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.699'),
('7022751b-3c9e-471d-b14e-afe2c92e676b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf','2025-06-05 14:21:46.729',1000,'KAPIDA ÖDEME - MUHAMMED PERVANE  - 644531622','COLLECT','2025-06-05 14:21:46.729','2025-06-06 02:46:03.729',NULL),
('7030e4a3-147e-4a8e-8ce0-42feb5174b04','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c7380dcb-b5b3-458a-9219-53fdb3531629','2025-04-11 12:38:29.860',825,'KAPIDA ÖDEME - ALİ CAN YILMAZ - 371102325','COLLECT','2025-04-11 12:38:29.860','2025-04-15 14:54:58.058',NULL),
('7039d4e4-1793-48d4-92e2-7d9300ed3355','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b98bc4c0-d13e-4cca-ad93-173ed8365841','2025-03-08 13:32:27.236',1350,'KAPIDA ÖDEME - MUHAMMED ALİ TÜMKAYA - 64455982','COLLECT','2025-03-08 13:32:27.236','2025-03-11 07:46:41.850',NULL),
('70585083-1dc9-49e9-8f58-48066f3e4f0f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'cf0a7126-8c37-496d-8b00-8c055624489a','2024-05-17 14:20:25.199',1350,'KAPIDA ÖDEME - Ruta andom - 449279198','COLLECT','2024-05-17 14:20:25.199','2024-05-17 14:20:25.199',NULL),
('7090f756-2d54-4d40-9dff-6608dca6f058','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'3cbb1188-1698-4b6e-bd28-06d238414388','2024-05-29 09:04:50.646',4370,'KAPIDA ÖDEME - SEYFETTİN BİLİCAN - 412741555','COLLECT','2024-05-29 09:04:50.646','2024-05-29 09:04:50.646',NULL),
('709f18ed-9fcd-4f7b-87ca-322a051d8061','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'be61ae08-268e-417d-9e86-940a675647f2','2025-09-10 06:49:18.629',1750,'KAPIDA ÖDEME - OKAY DERİNKUYU - 478402358','COLLECT','2025-09-10 06:49:18.629','2025-09-10 07:11:56.233',NULL),
('70b72689-40eb-4b73-ba31-32a12a9b1d81','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0ea8d257-afae-4860-8574-29747c60c8c6','2025-04-19 10:21:58.939',2440,'KAPIDA ÖDEME - MELDA KARA - 64451300','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('70e0ec76-7d43-4f00-8b92-ff8a4777a696','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'955fd2d1-deec-43d2-babf-7c48c40d74f0','2025-03-27 08:52:32.483',500,'KAPIDA ÖDEME - AHMET CELEBCİ - 478650682','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('70ee30d3-c333-41e5-89f7-ecb311bcd770','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'2d3bf117-ace6-4823-84ca-6f7db821df9b','2025-08-14 09:15:13.442',1850,'KAPIDA ÖDEME - PERİHAN ÖZVURAL - 531344250','COLLECT','2025-08-14 09:15:13.442','2025-08-15 20:59:04.939',NULL),
('71a033be-f28e-40a6-a038-c4a26118ba17','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'3dc5e146-3fe8-432e-96b4-cb8472b9343c','2025-07-08 11:07:05.319',1000,'KAPIDA ÖDEME - KEYVAN GHADİMİ - 478363734','COLLECT','2025-07-08 11:07:05.319','2025-07-17 12:12:54.405',NULL),
('71d66d4f-1ba2-4665-b3c5-14862d6f4e09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1','2024-03-30 09:05:05.109',600,'KAPIDA ÖDEME - EMEL TEKİN - 478180584','COLLECT','2024-03-30 09:05:05.109','2024-03-30 09:08:05.584',NULL),
('71dd9c4b-71bc-4200-bb8e-10b0f463095b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'9ac26c84-4166-493a-8202-60f232a78456',NULL,'2024-03-30 07:25:32.589',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.577'),
('721c3766-1ed0-4a49-97a5-83c1a426a4f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bce53ecd-76d7-49e9-a66c-1b224392eac6',NULL,'2024-03-30 07:25:32.642',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.594'),
('7228f1be-0b1f-46f4-8f6b-c84ae11b4acd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9afe7094-ce46-4441-8b6f-2e0a7ff9dc54','2024-11-03 21:12:58.658',1500,'KAPIDA ÖDEME - YASSMİNE JADMOUR - 982455918','COLLECT','2024-11-03 21:12:58.658','2024-11-23 18:18:11.192','2024-11-23 18:18:11.199'),
('728ee702-7cf8-4fba-a8a5-f0319db7a9f7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'a71c1b97-adb1-44f0-8622-8ebc242aee74','2025-10-22 07:51:14.382',3600,'KAPIDA ÖDEME - RASİM YAVUZ - 598894090','COLLECT','2025-10-22 07:51:14.382','2025-10-22 11:29:52.780',NULL),
('72a4903e-df83-4162-aec4-6653022e7d63','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e731367f-6086-4bb6-92b1-7b7916c0908b',NULL,'2024-03-25 11:45:13.684',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.630'),
('72b0788b-8c59-4a9c-967c-cbb1b181a1ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf','2025-06-05 14:19:23.965',2075,'KAPIDA ÖDEME - EKREM ASLAN - 91059017','COLLECT','2025-06-05 14:19:23.965','2025-06-06 02:46:03.729',NULL),
('72c30c8b-9a84-4907-9fe8-5bc162ba4530','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8',NULL,NULL,'abeb06ec-0186-44af-abeb-248b55f83e5f','2024-08-20 15:21:12.778',1650,'KAPIDA ÖDEME - HASAN BEY - 448774640','COLLECT','2024-08-20 15:21:12.778','2024-08-23 09:00:17.236',NULL),
('72e851e1-f21a-4644-a175-c143430ecf69','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'566f5cfb-cca0-4c69-85df-9c8acc621458','2025-01-19 16:25:39.959',1350,'KAPIDA ÖDEME - SALİH DURAK - 428718727','COLLECT','2025-01-19 16:25:39.959','2025-01-28 15:19:34.396',NULL),
('730ab36d-52a3-470e-9799-4a0b8b6e94c1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'da2f0aa5-ea25-4793-a24c-76f3940dd114','2025-08-27 08:40:21.882',725,'KAPIDA ÖDEME - BURAK YAKUT - 644975430','COLLECT','2025-08-27 08:40:21.882','2025-09-03 06:09:36.796',NULL),
('73191853-04ed-425c-9546-9e54b6ef5d33','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'36e87ddb-3439-48d2-8d99-42ca263ab59f',NULL,'2024-03-25 11:45:14.133',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.694'),
('732c1d3f-441c-434b-941a-01a1787d2953','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'072d8a33-17fa-4b64-bb6e-a1631be72033','2025-05-28 18:45:21.684',300,'KAPIDA ÖDEME - MUHAMMED EMİN TILMAZ - 65728268','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('733b7520-f242-4f14-974c-86e4d74e0ca0','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'5400fc28-c829-4ccc-a810-54ae598d5606','2025-07-29 12:26:43.574',1625,'KAPIDA ÖDEME - FERHAT SANUÇ - 011573387','COLLECT','2025-07-29 12:26:43.574','2025-07-29 12:37:20.394',NULL),
('73534d25-d91d-407b-98c3-5c83839067e0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c','2025-07-12 09:06:58.229',800,'KAPIDA ÖDEME - HASAN BİLECEN - 221121416','COLLECT','2025-07-12 09:06:58.229','2025-07-16 14:21:29.642',NULL),
('736ed282-a7c0-46ac-badc-b54de3e645d3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3e35045b-06a6-4f2a-8763-517cf4e9aa1c',NULL,'2024-03-30 13:00:50.349',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.630'),
('73a2bd9f-3df7-48a4-b1be-63cc0d74dcd9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e0988cbc-88e9-4211-a047-1305ad22fb1a','2025-09-26 12:26:21.682',550,'KAPIDA ÖDEME - HUSSRAH MUHAMAD - 745464679','COLLECT','2025-09-26 12:26:21.682','2025-09-26 12:31:30.406',NULL),
('73a53918-fe92-4466-83c1-b04cf6b33889','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'32ce6385-317d-48fc-9fc4-c553326c562b','2024-11-29 13:31:33.041',2150,'KAPIDA ÖDEME - NURCAN MANSUR - 478377442','COLLECT','2024-11-29 13:31:33.041','2024-12-09 17:29:19.987',NULL),
('73c7a7c1-5864-4608-b90c-6c7d3a5a7a5c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'d55fdc55-0652-4c3e-b972-a81ea4a847af','2025-02-23 12:23:18.706',1800,'KAPIDA ÖDEME - HAZAL ELMAS - 976983661','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('73c81acb-2650-418c-8bda-848e04a5afe0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'88f84531-ef49-42b4-ba11-ad770eba8aa1','2025-09-25 16:04:06.532',2350,'KAPIDA ÖDEME - MUSTAFA KELEŞ - 598263441','COLLECT','2025-09-25 16:04:06.532','2025-09-26 12:27:42.380',NULL),
('73c886ef-7916-4c3b-a990-2bcb19107e4e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'8cc763ce-21b7-47ec-b49b-bd9191ef63d8',NULL,'2024-03-30 13:00:50.149',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.651'),
('73d02fb7-455a-42c4-baea-d1cc8e581044','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'80da5b1b-534a-4c8c-96c2-bace937f5e61','2024-12-30 09:41:02.266',1495,'KAPIDA ÖDEME - LAMİA BADAOUİ - 735389141','COLLECT','2024-12-30 09:41:02.266','2025-01-06 20:08:12.782',NULL),
('7428b097-3168-4f4a-8bb3-64e315aac193','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'ee875e8e-a522-46c6-9e27-e09a0edbc8e6','2025-08-30 12:41:46.610',640,'KAPIDA ÖDEME - MELİKE ÇALIŞKAN - 598172413','COLLECT','2025-08-30 12:41:46.610','2025-09-05 08:55:11.214',NULL),
('742e80b1-ed85-4593-9cfa-a1b185bbaab5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,'9d2cc51d-661d-4efe-b0fd-2306ca62f7fd','2024-05-10 06:59:46.422',1000,'KAPIDA ÖDEME - ALİ ÖZ - 315389904','COLLECT','2024-05-10 06:59:46.422','2024-05-10 06:59:46.422',NULL),
('744937d4-99f4-4638-9e10-b0d612b6dabe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'98638de6-50b2-480f-acc9-1f74364a7f92','2025-06-30 18:29:58.555',450,'KAPIDA ÖDEME - MAZİJA IBRAHIMOVİC - 221417499','COLLECT','2025-06-30 18:29:58.555','2025-07-07 11:44:52.732',NULL),
('74728b25-0a3e-4e7b-9111-e7336df4d0d9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'23362a6b-e084-465f-a474-3935662b512b','2025-02-20 08:55:34.912',1100,'KAPIDA ÖDEME - ALİ ÇETİN  - 982408783','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('748d35b2-6237-4ad4-bd10-28923de80824','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7487951b-3af6-4f83-a5fa-6847a10dd8c6',NULL,NULL,'0e2e4dbe-5815-4688-acd8-82ba0120462c','2024-11-05 09:28:28.842',1075,'KAPIDA ÖDEME - CAMELİA BESSAL - 748663171','COLLECT','2024-11-05 09:28:28.842','2024-11-25 09:20:39.164',NULL),
('74ca2e12-cdff-4f02-bec5-28e8c4ff3b8a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'91b404e8-2ef9-4d0e-b8ea-60c442570c42','2025-04-30 13:55:21.569',1150,'KAPIDA ÖDEME - BURCU BİNGÖLBALI  - 817830150','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('74cca822-e9c5-4755-a06b-3cb1dd6ceb1f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'175d01ce-54c7-44ce-a554-5f0f39dc701f',NULL,'2024-03-30 07:14:01.607',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.913'),
('74f06609-1430-484b-b55b-67ed31bf83d3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f23142ef-47ba-426c-9a22-bfb123cfac47',NULL,NULL,'967b9ee1-7adb-4c9b-9386-f8200b05df01','2024-05-04 08:04:10.003',500,'KAPIDA ÖDEME - EMİNE AKPINAR - 231455458','COLLECT','2024-05-04 08:04:10.003','2024-05-04 08:04:10.003',NULL),
('7508f89f-03ff-4116-a175-8efd32bb06b2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'4475a939-a408-4d10-a256-61dc03f279da','2025-01-29 12:24:48.170',400,'KAPIDA ÖDEME - MEHDİ NAEİMİ - 319276460','COLLECT','2025-01-29 12:24:48.170','2025-01-29 12:24:52.459',NULL),
('7516ebb6-a91d-4b97-b985-1fed5ac1955c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'808b4ef9-a87c-49a2-938f-85cb6e7e8004','2025-10-22 07:51:14.134',1800,'KAPIDA ÖDEME - ROMARİO AVELOO (BAŞTÜRK)  - 412757812','COLLECT','2025-10-22 07:51:14.134','2025-10-22 11:29:52.887',NULL),
('754718e7-187a-4475-898b-482b5e40229c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'de4f6039-e43d-4b0d-8dd2-09c55847c5d4','2025-05-09 16:49:05.440',1000,'KAPIDA ÖDEME - YASEMİN KARAKOC - 976430102','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('754d800e-c3c5-4232-bdb0-26028d87c234','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'fdc2bf0a-26c7-4fe3-8552-1c8056ee2608','2025-05-16 16:07:59.860',1900,'KAPIDA ÖDEME - FATMA KAYA - 371579541','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('757d1a10-00ab-4f38-afe6-49d943ecf2b7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'7cc7cbc1-b825-489b-99ca-2352be2803ea','2025-04-25 15:50:25.917',850,'KAPIDA ÖDEME - ROHAT KALABAŞ - 910245715','COLLECT','2025-04-25 15:50:25.917','2025-04-26 07:32:55.372',NULL),
('75cb66c2-00be-4dfa-bacb-3f7298402944','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'32d385ed-3e8f-402f-80a2-9531544e451a','2025-05-23 06:37:54.446',1150,'KAPIDA ÖDEME - ÖZLEM KIZILARSLAN - 644650618','COLLECT','2025-05-23 06:37:54.446','2025-05-26 13:23:22.333',NULL),
('75cb9b6e-e25c-4541-946b-95a789214f88','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'c8ffd3f2-c426-4b6c-9439-664479653971','2025-07-08 11:07:05.311',1100,'KAPIDA ÖDEME - SİNEM GÖKÇE - 531340061','COLLECT','2025-07-08 11:07:05.311','2025-07-08 11:33:15.206',NULL),
('7606ff98-3a79-4274-b04c-2252e40462f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'e15a4b43-14fe-4dd6-badf-02324cd22358','2024-12-13 13:24:23.701',700,'KAPIDA ÖDEME - OMER AL HASHİMİ - 248203029','COLLECT','2024-12-13 13:24:23.701','2024-12-16 18:41:52.448',NULL),
('7627d6fc-d92d-4e03-8539-f9940882a506','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'551b3f66-bfd0-40a3-aadb-9d6601e1a170','2024-05-11 09:01:16.747',1150,'KAPIDA ÖDEME - XHEMİLE KURBOGAJ - 126274786','COLLECT','2024-05-11 09:01:16.747','2024-05-15 13:00:55.818',NULL),
('763680ea-01a2-44de-8ada-2ec9ecc66de3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'52ea460d-e94a-410a-9cce-0b771b3e4cc8','2025-09-25 16:04:06.503',3000,'KAPIDA ÖDEME - AYCAN ÇOLAK - 371120278','COLLECT','2025-09-25 16:04:06.503','2025-09-26 12:27:42.367',NULL),
('76611cec-f7be-4456-8cea-3dbf3a33ad8b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a53c5b62-db3a-4293-b5f7-0e5ef514b45e','2025-05-09 16:49:05.440',700,'KAPIDA ÖDEME - ARZU KUZUCU - 371160737','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('76a2a316-2cf5-4855-b451-4b09f5251d82','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c2f23e3e-f784-442b-86c5-a406b57dc08e','2024-12-07 08:50:53.387',100,'KAPIDA ÖDEME - MELEK ÇELİK - 478675012','COLLECT','2024-12-07 08:50:53.387','2024-12-17 19:52:32.750',NULL),
('76b8d9ed-c339-43c6-838e-c9bb5cd8ff25','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'67f3e803-506e-4fab-b999-051b7a0368e2','2025-01-06 13:53:07.317',1800,'KAPIDA ÖDEME - SAİT BEY - 735814007','COLLECT','2025-01-06 13:53:07.317','2025-01-07 17:06:26.160',NULL),
('76c75be3-ac76-4dfb-b7a7-836d8acf9b26','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'edee589c-8584-4bae-8e91-900078074c09','2025-08-14 07:43:55.164',1190,'KAPIDA ÖDEME - ELİZA KADRİ - 786895232','COLLECT','2025-08-14 07:43:55.164','2025-08-14 08:02:29.826',NULL),
('76f4831c-99d9-4c9f-afeb-dae84b1aa483','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,'56934bb2-8807-472a-9265-23392c22511f','2024-11-08 18:01:23.877',100,'KAPIDA ÖDEME - EURO STAR MOBEL - 107593305','COLLECT','2024-11-08 18:01:23.877','2024-11-08 18:12:56.476','2024-11-08 18:12:56.482'),
('770245e5-d559-4a17-9a33-f29e9ea286d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5eb9d56a-9ea5-4713-886f-df1ddcba4c69','2024-08-07 14:16:11.617',1000,'KAPIDA ÖDEME - ZEYNEP ALEYNA ÖZBEY - 478101302','COLLECT','2024-08-07 14:16:11.617','2024-08-07 14:16:11.617',NULL),
('7746f4d0-4d1f-4203-85fc-54dc385671c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'148ecec2-cd7b-4ac3-88bc-9569bf15505e','2024-03-25 07:43:04.033',6500,'KAPIDA ÖDEME - BATTAL - 412565065','COLLECT','2024-03-25 07:43:04.033','2024-03-25 07:43:04.033',NULL),
('774c0f99-b957-4b7d-8a4e-c9e1ad925b60','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'b465c878-5c55-4a06-a58b-bd7c57228652','2025-10-22 07:51:14.236',2500,'KAPIDA ÖDEME - YASEMİN ERKAN - 910152598','COLLECT','2025-10-22 07:51:14.236','2025-10-22 11:29:52.798',NULL),
('78105d35-9159-4080-b26e-93dd37544030','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d7bf3f52-0caf-4f95-9f2d-049dde068a6e',NULL,'2024-03-30 07:14:01.457',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.987'),
('781faa1f-2726-4b4a-b889-e14a879cb470','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,NULL,'2024-11-12 07:59:21.774',-100,NULL,'PAYMENT','2024-11-12 07:59:26.614','2024-11-12 07:59:26.614',NULL),
('78431105-58c0-4895-bcc8-d738b7b8f4f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e55441b7-eaf6-4645-ac39-b0befcc429b1','2025-10-22 14:07:51.580',330,'KAPIDA ÖDEME - ÇOŞKUN ŞENEL - 41288739','COLLECT','2025-10-22 14:07:51.580','2025-10-22 14:07:51.580',NULL),
('7894dbb1-1a70-4c73-9d84-7adec28abf0b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'d2edbeb4-631f-4db0-a6f7-0af31904cdba','2024-10-31 12:48:57.621',1150,'KAPIDA ÖDEME - HİLAL POLAT ÇELİK - 976866527','COLLECT','2024-10-31 12:48:57.621','2024-11-02 09:25:02.979',NULL),
('78ad3781-6337-49e8-8408-aae3d12ab065','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'0d55a789-9635-407b-8c56-f61ca0500289','2025-05-09 16:49:05.440',1950,'KAPIDA ÖDEME - MERVE KARADAVUT - 437233015','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('78bb2cd9-6181-4e08-b976-51d5b1e12a08','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c705ed53-5e81-4b2d-973f-5166ca8ff197',NULL,'2024-03-30 07:25:33.243',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.545'),
('78be3c93-7790-4a37-ba00-a0e2e5d8783b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a4c0af65-f3e2-484c-99b8-617b31d3f22d','2025-04-26 14:40:15.277',1000,'KAPIDA ÖDEME - ARMİN IMERİ  - 221867394','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('78bea96d-2de9-488d-8830-002199bcb79d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'c139f73d-4a85-4217-8011-d483b3fabd11','2024-09-27 13:23:29.327',400,'KAPIDA ÖDEME - MAHMOUD AJİ - 248948777','COLLECT','2024-09-27 13:23:29.327','2024-09-27 13:23:29.327',NULL),
('78d62b1f-5253-419a-97ba-58ea62e12268','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'35339fbe-2f0f-48c5-87b0-cc5d75325f26','2025-09-10 06:49:18.636',490,'KAPIDA ÖDEME - NURCAN DOLDUR - 478223658','COLLECT','2025-09-10 06:49:18.636','2025-09-10 07:11:56.191',NULL),
('78dc02cc-1690-475c-8f9f-f7e4f0cc0a2f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5a89b7b0-e128-4e6d-96f8-3fe39b44b85f','2024-04-07 20:46:49.440',2700,'KAPIDA ÖDEME - MURAT SABAK - 745859135','COLLECT','2024-04-07 20:46:49.440','2024-04-07 20:46:49.440',NULL),
('78e19039-629b-4090-8980-b1a63461c4eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'d6ceac62-a798-4065-a2db-6b4d596f974a','2024-12-27 12:04:10.155',1500,'KAPIDA ÖDEME - ERCAN KARADAVUT  - 248315101','COLLECT','2024-12-27 12:04:10.155','2024-12-27 12:23:49.166',NULL),
('78e864da-d002-4b84-8717-af230371af59','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'05621906-10fc-483c-89a6-f51e344e576b','2024-10-31 08:32:51.560',1500,'KAPIDA ÖDEME - VARELA FURTADO ELLİS - 982716246','COLLECT','2024-10-31 08:32:51.560','2024-12-01 12:29:36.681','2024-12-01 12:29:36.687'),
('78f05422-22b2-4faa-9564-5a3aeae84e55','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'6f819014-9aee-49bd-a372-9beb415e27cd','2025-04-26 14:40:15.277',650,'KAPIDA ÖDEME - DİANA BARAKAEVA - 613502652','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('7907a6f1-3778-4815-804f-5f7f2829a558','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'486d73c0-74f0-41fc-a42f-8c39f323cc01','2025-07-16 13:29:45.923',300,'KAPIDA ÖDEME - AHMET GÜVEN - 657832584','COLLECT','2025-07-16 13:29:45.923','2025-07-16 14:21:29.496',NULL),
('790a3a12-1b85-4e69-b356-e5b505b20ce5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'ad2e35a4-0708-4aa6-bb79-6b1c99a587d8','2025-04-15 09:07:09.163',550,'KAPIDA ÖDEME - DÖNDÜ YÖRÜK - 644887691','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('7927e05a-6dfe-4195-b683-72e3750784e0','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'49b010c9-adaf-47a9-8d72-ec98e9a40479','2025-09-12 17:03:30.366',350,'KAPIDA ÖDEME - FAİSAL İBRAHİM - 437319119','COLLECT','2025-09-12 17:03:30.366','2025-09-12 17:16:02.599',NULL),
('7984ec5c-5b31-4752-8b57-a7d486ea0d5d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3e219840-56b3-4e78-b050-2aa62ba06152',NULL,'2024-03-30 07:25:32.993',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.663'),
('79d3144a-5904-45a0-b399-51d469cc35e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e3b1cbd7-aa49-4695-b628-c4b08d2b645d','2024-12-07 09:17:31.180',1400,'KAPIDA ÖDEME - SONJA HUSSAİNİ  - 982529212','COLLECT','2024-12-07 09:17:31.180','2024-12-17 19:52:32.750',NULL),
('7a06356b-7b09-4b1d-a6d4-dfdf6d536a4a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'23c2fb27-3d69-40e0-9027-0877538a4b71','2025-06-30 18:34:37.138',1540,'KAPIDA ÖDEME - MERAL GÖGDAS  - 221965496','COLLECT','2025-06-30 18:34:37.138','2025-07-07 11:44:52.649',NULL),
('7a0c2956-cd01-49fb-bbae-e0d25134fac0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'3932d875-21e8-45e1-a16c-797670968c92','2025-09-05 17:48:44.948',1140,'KAPIDA ÖDEME - SİBEL HİTAY - 437812245','COLLECT','2025-09-05 17:48:44.948','2025-09-06 09:41:31.787',NULL),
('7a194ae7-1996-4bba-bc05-bf21f2fcb8a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'121f11bb-9b5a-4db0-a1ec-87c68b1ce47a','2025-09-18 06:43:39.343',570,'KAPIDA ÖDEME - ELVAN DURSUN - 437158505','COLLECT','2025-09-18 06:43:39.343','2025-09-18 15:48:17.456',NULL),
('7a256088-87b4-47cd-8fab-ea54754731bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'fb0dcc99-0e15-4960-919f-09d52748c91e','2025-10-07 14:59:47.740',775,'KAPIDA ÖDEME - FURKAN YESARİ GÜVEN - 910995300','COLLECT','2025-10-07 14:59:47.740','2025-10-07 15:17:28.603',NULL),
('7a335c85-7916-4ebb-a258-d63d14af5c9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'d6f95cb0-d25d-4e92-a9b7-6c2134ab5062','2025-04-15 09:07:09.163',2100,'KAPIDA ÖDEME - SUAT TUGAL - 644443664','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('7a537a4f-e5de-4735-bb7b-2faa4e1bcad3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'4b0a63a8-b888-4398-b6a4-26f747429361','2025-08-14 08:50:57.220',1890,'KAPIDA ÖDEME - AYHAN KOCAKAYA - 31979626','COLLECT','2025-08-14 08:50:57.220','2025-08-15 20:59:04.967',NULL),
('7a67051a-ceed-4370-aa2c-a43fcd73fb77','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'93d2ab3b-6a9a-4642-becf-a89234c7ee14','2025-09-02 12:04:14.915',750,'KAPIDA ÖDEME - FAHRİYE KARTAL - 011255060','COLLECT','2025-09-02 12:04:14.915','2025-09-02 14:46:19.399',NULL),
('7a690c45-41c7-42ce-96a6-390ab333b24c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'2754ec7f-f526-44d3-8178-29280a48b322','2024-11-02 09:16:44.960',300,'KAPIDA ÖDEME - BRÜHL CAMİSİ - 412441586','COLLECT','2024-11-02 09:16:44.960','2024-11-02 09:24:32.484',NULL),
('7aad58cb-5c40-48fc-99dc-15a5b6697e9b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','85834865-ac23-4c00-a99b-c9551971a5a1',NULL,NULL,NULL,'2024-11-08 17:11:22.616',900,NULL,'COLLECT','2024-11-08 17:11:39.302','2024-11-08 17:11:39.302',NULL),
('7ad01fac-a6fd-4891-9149-1ed6c84f925d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'3ee9e633-d24c-4516-8992-e6b95c9dc558','2025-02-03 17:55:18.052',1330,'KAPIDA ÖDEME - ASLI AYCİ - 73555265','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('7ad718c1-ae44-4951-8dc0-0fe6edca7ffb','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','2025-07-29 12:30:31.426',1900,'KAPIDA ÖDEME - GÜLŞEN KARATAŞ - 644859309','COLLECT','2025-07-29 12:30:31.426','2025-07-29 12:43:07.434',NULL),
('7ae8a213-eacb-4694-b7fa-9dbed9c38fbb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9e04acec-f940-4ce2-9a36-44b825987e05','2025-03-12 18:37:42.098',4000,'KAPIDA ÖDEME - OMARİ EMAL  - 982726615','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('7afffa6e-0e95-47e0-ac67-6321c5c760c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'7a1c035d-4dfb-480e-bc9c-b1a62adfa157','2025-10-22 07:51:14.182',1650,'KAPIDA ÖDEME - SEDA -  MUSTAFA SERCAN GUNDOGMUS  - 515829047','COLLECT','2025-10-22 07:51:14.182','2025-10-22 11:29:52.742',NULL),
('7baf5db1-f0b8-4fbe-8835-356e8a72a8fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'11a6c6ed-1ccc-402a-bde6-f83eab60affd',NULL,'2024-03-25 11:45:14.034',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.744'),
('7bb3b14f-94bb-41e2-bbc3-176f90441fc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3645be91-e47a-4a21-8c81-c49771ba3639','2025-06-26 09:43:12.529',2350,'KAPIDA ÖDEME - FATMA SARI - 745619301','COLLECT','2025-06-26 09:43:12.529','2025-06-26 16:05:22.680',NULL),
('7bda8cca-8be5-4bbe-8745-90d0169cfb2a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'14395ac1-388d-436d-a633-eb7f1c0beb39','2024-05-10 07:13:11.999',450,'KAPIDA ÖDEME - EMRAH MERCAN - 734970518','COLLECT','2024-05-10 07:13:11.999','2024-05-10 07:13:11.999',NULL),
('7bdca834-d0a3-4a88-b489-8b353224932c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'bec65e06-6270-4da0-8ec5-c65be8d1c4e4','2024-03-30 10:00:56.599',2900,'KAPIDA ÖDEME - HUSNA ISHAGZAİ - 44926965','COLLECT','2024-03-30 10:00:56.599','2024-03-30 10:00:56.599',NULL),
('7bfff85f-cd42-4e9d-a6c0-8aa81308485a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'015e4711-850e-4dfd-8a7d-b891bbcf8752','2025-09-18 06:43:39.461',745,'KAPIDA ÖDEME - SEYHAN GÜNDÜZ - 598148104','COLLECT','2025-09-18 06:43:39.461','2025-09-18 15:48:17.609',NULL),
('7c0f4e4f-0afb-4c4e-98d3-27ab0ba91fe6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0fef7900-6144-44c7-9378-415e663633c9','2025-01-26 10:30:15.511',1470,'KAPIDA ÖDEME - AYŞE TÜRKMEN  - 221507815','COLLECT','2025-01-26 10:30:15.511','2025-01-29 12:24:52.459',NULL),
('7c712c96-ec5d-4e42-859d-5840657d2284','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'1f3c011b-b082-4eaf-a3ea-8f8ab2934010','2025-05-16 16:05:10.520',275,'KAPIDA ÖDEME - CEM KONDU - 221686815','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('7c85a289-4948-495f-8b08-c349e71e086e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c4b0d3e4-154c-43b9-9314-53ca1f649903',NULL,'2024-03-30 07:25:34.094',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.697'),
('7cf4f033-1e1d-494d-82f5-f866ab54f642','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b859ef01-6d86-4a7c-881c-0c4d9c9eeee1','2025-01-05 14:02:39.709',425,'KAPIDA ÖDEME - MAHMUT KAYA - 478705604','COLLECT','2025-01-05 14:02:39.709','2025-01-07 17:06:26.160',NULL),
('7d11e21e-8861-4885-90c6-cdcfc497d7ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'42fcea6f-25da-443c-8add-2a8f44573b78','2025-10-01 06:41:28.845',1500,'KAPIDA ÖDEME - AYSUN ELİBÜYÜK - 478273603','COLLECT','2025-10-01 06:41:28.845','2025-10-01 07:56:23.170',NULL),
('7d2b8037-1b6a-4007-af28-a41db11ab858','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1080adba-e901-4380-93d1-e3ffaab7c355','2025-09-25 16:04:06.472',3250,'KAPIDA ÖDEME - DİLARA TARHAN - 745233031','COLLECT','2025-09-25 16:04:06.472','2025-09-26 12:27:42.312',NULL),
('7d438b94-1577-4641-a390-0dcd3f91a5ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'071c9b00-dfd6-452e-a75b-c40b31f270dc','2025-10-22 07:51:14.091',600,'KAPIDA ÖDEME - DİLEK YILMAZ - 437227214','COLLECT','2025-10-22 07:51:14.091','2025-10-22 11:29:52.614',NULL),
('7d78c1fb-8f35-4914-8d59-0ffdf2a69aa9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693','2024-11-23 14:36:11.497',600,'KAPIDA ÖDEME - AYŞE ACAR - 221639055','COLLECT','2024-11-23 14:36:11.497','2024-12-02 09:51:49.376',NULL),
('7dbfe188-1f32-4b1a-8683-fa4d6b6401fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3','2025-08-22 19:43:14.504',1000,'KAPIDA ÖDEME - TEREZA SHARİPOVA - 808790233','COLLECT','2025-08-22 19:43:14.504','2025-08-22 20:28:07.578',NULL),
('7dd436f1-2ad4-4ad5-8962-fddb6ce98b38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3416941c-5567-46cf-8f2b-ec732315a5b8','2024-12-28 15:48:05.811',750,'KAPIDA ÖDEME - GÜLİZAR KOCADAĞ - 745816008','COLLECT','2024-12-28 15:48:05.811','2025-01-06 20:08:12.782',NULL),
('7dd9ced4-f5e5-4001-97c3-10ead79e4033','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'69d3c95a-372c-4578-8450-8194788ac842','2025-07-07 11:37:43.556',1400,'KAPIDA ÖDEME - MEHMET KILINÇ - 428173598','COLLECT','2025-07-07 11:37:43.556','2025-07-07 11:44:52.691',NULL),
('7dfcbeb0-b037-4c83-8322-df95e648cf85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'b0c379aa-80ca-43d0-b23b-65db895d3ecd','2024-07-20 10:40:37.768',1500,'KAPIDA ÖDEME - KEMAL TAŞTAN - 982405831','COLLECT','2024-07-20 10:40:37.768','2024-07-20 10:40:37.768',NULL),
('7e808513-bfef-4331-ba16-7ab0e72e7dca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'34e0270e-97b8-4007-bdff-03282449c33a','2024-05-10 07:11:45.861',800,'KAPIDA ÖDEME - FATMA KURT ÇAKIR - 734936220','COLLECT','2024-05-10 07:11:45.861','2024-05-10 07:11:45.861',NULL),
('7e944aff-aebf-47a0-9841-4b3cb855298e','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ed2477a7-3410-49d6-97b3-d4a65e4b5d22','2025-05-14 16:56:37.597',5250,'KAPIDA ÖDEME - SALİHA KURT - 745251111','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('7e94dc8b-f203-4af2-8767-c661fd14ba00','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ab950112-9d6b-4ec6-916c-a8cb79c8a7bb','2024-09-28 15:51:16.314',2500,'KAPIDA ÖDEME - ADEM KILINÇ - 478117771','COLLECT','2024-09-28 15:51:16.314','2024-09-28 15:51:16.314',NULL),
('7ebd3e9f-df56-4f53-9ac4-7d721dd28cec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'692c748c-7c37-415c-b3d9-996281a0eba4','2025-02-13 20:20:47.547',2000,'KAPIDA ÖDEME - BURHAN AZEMİ - 74594372','COLLECT','2025-02-13 20:20:47.547','2025-02-24 20:28:04.441',NULL),
('7ed6007b-006f-442a-960f-49ffb198c7a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0dae8190-b900-4826-9171-b2d74a2538b0',NULL,NULL,'1ee5a386-3625-40ef-8fa2-25fe7d75616b','2025-03-06 10:20:46.458',1200,'KAPIDA ÖDEME -  MUSTAFA KHALİFEH - 081982015','COLLECT','2025-03-06 10:20:46.458','2025-03-06 10:36:11.461',NULL),
('7f342aa4-ba4c-4760-8737-5885b0da7dc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'0f896043-41f5-4e03-93cf-693eadfeb3c2','2025-09-18 06:43:39.446',800,'KAPIDA ÖDEME - BİLAL KIZILIRMAK - 371155650','COLLECT','2025-09-18 06:43:39.446','2025-09-18 15:48:17.587',NULL),
('7f384c18-99d8-4e88-ba2e-ed55e360a77c','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','f23142ef-47ba-426c-9a22-bfb123cfac47',NULL,NULL,'70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3','2025-06-20 15:03:47.833',500,'KAPIDA ÖDEME - SALİHAPİA LEULD - 231250162','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.882',NULL),
('7f513931-4527-4204-8ce9-4248b3bb209a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9872a403-aa8b-4c5a-97f3-17ed9113c1ed','2024-08-31 12:56:59.959',3900,'KAPIDA ÖDEME - AYŞE KUTLU - 745449587','COLLECT','2024-08-31 12:56:59.959','2024-08-31 12:56:59.959',NULL),
('7f5b15f9-db00-4bb1-965c-d1f4934a4de5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'603176f3-6122-4b5b-90fc-6cef4ec01778',NULL,'2024-03-25 11:45:12.582',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.725'),
('7f69f6b4-131d-41b8-a789-2a99c5d3f32f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fc218cfe-5fc6-4646-9439-26cf4a359c90',NULL,'2024-03-25 11:45:14.083',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.641'),
('7f88c9a2-f601-4a58-a637-f7280d832d11','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'c885ca27-2244-4162-b7af-4fe67daf7fd3','2025-10-01 07:16:48.867',650,'KAPIDA ÖDEME - YOZLEM MİNCHEVA - 765564339','COLLECT','2025-10-01 07:16:48.867','2025-10-01 07:57:47.983',NULL),
('7fab7501-682f-4b0b-9856-8104891b85c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'850c1c4c-b08c-4669-954f-2e95f85d66d8','2024-09-30 07:53:11.187',2000,'KAPIDA ÖDEME - HANEFİ ALİOĞLU - 501667618','COLLECT','2024-09-30 07:53:11.187','2024-09-30 07:53:11.187',NULL),
('7fc8674e-8474-43a5-9d3e-049fe29e49fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3ace9aac-a197-4e9b-9f08-d07c0b7f938b','2025-06-25 10:51:21.156',575,'KAPIDA ÖDEME - LEPETİT CRİSTELLE (SSH) - 221901011','COLLECT','2025-06-25 10:51:21.156','2025-06-27 18:01:26.453','2025-06-27 18:01:26.452'),
('7fdc0649-5790-476a-aa53-aeb26115d91a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'b821f1cd-d990-4100-9455-a2c619562c1e','2024-09-16 07:52:53.592',900,'KAPIDA ÖDEME - MUSTAFA SEVİNDİ - 517827584','COLLECT','2024-09-16 07:52:53.592','2024-09-18 21:28:01.684',NULL),
('7fe55dab-ee3f-4b84-a114-fce5dcc6fd90','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ea521ff8-eb9f-4152-a03a-e511216077ea','2025-10-13 07:14:08.974',2000,'KAPIDA ÖDEME - MUHAMMET YILDIRIM  - 745946644','COLLECT','2025-10-13 07:14:08.974','2025-10-14 08:52:36.819',NULL),
('807b3faf-b3b3-40eb-9655-3fe618171697','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'a72800e1-54dc-4d60-b293-ca2184c62129','2024-07-02 11:58:21.823',2800,'KAPIDA ÖDEME - KIYMET ŞAHİN - 614987879','COLLECT','2024-07-02 11:58:21.823','2024-07-02 11:58:21.823',NULL),
('80c3c55e-29f0-4db8-8722-1cd26d86ebb8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,NULL,'2024-11-12 08:15:56.852',956,NULL,'COLLECT','2024-11-12 08:16:02.256','2024-11-12 08:16:02.256',NULL),
('80f0e186-fc90-42e7-a043-04883917e517','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'516dfaaa-e378-4999-b13f-ef0839711334','2025-06-20 15:03:47.833',1300,'KAPIDA ÖDEME - TÜRKAN ÖZER - 531983278','COLLECT','2025-06-20 15:03:47.833','2025-06-28 09:45:21.814',NULL),
('80f487e2-5c41-4e13-87b0-e8af35e3dd14','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'f4f40ee4-217b-42da-be20-ab73e6a72821','2025-07-08 11:17:29.734',750,'KAPIDA ÖDEME - AKKİZ TOPCU - 515129438','COLLECT','2025-07-08 11:17:29.734','2025-07-08 11:33:15.236',NULL),
('8109324e-77ed-4e10-a72d-31b817cf1942','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'474a3a6a-6eed-40dd-b9a3-2ab629d2b662','2025-09-16 07:10:55.435',750,'KAPIDA ÖDEME - MURAT BALTACI(K) - 644762741','COLLECT','2025-09-16 07:10:55.435','2025-09-19 10:00:25.448',NULL),
('814941f0-14eb-43cf-8cf4-1fe38e9cc8aa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5552132e-e408-47bc-ab37-19083b622454','2025-10-25 08:43:45.303',1400,'KAPIDA ÖDEME - İLKAY İNCE - 478485864','COLLECT','2025-10-25 08:43:45.303','2025-10-25 08:58:43.997',NULL),
('814ab37a-af90-44a7-ae81-d55e453703a4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'df4cdd55-cb8f-4a40-ae52-688e5f8e5432','2025-04-26 16:01:57.431',250,'KAPIDA ÖDEME - BMD ELİF ÇEKİCİ - 412784700','COLLECT','2025-04-26 16:01:57.431','2025-05-03 06:23:10.213',NULL),
('8162746c-56d8-4f7c-8fc5-3e399cc59bb7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ad1fc3b4-d18e-491b-969b-dea74538868b','2024-07-03 14:34:39.346',1450,'KAPIDA ÖDEME - MERHDED AKHTARİ - 449680755','COLLECT','2024-07-03 14:34:39.346','2024-07-03 14:34:39.346',NULL),
('8170c551-f279-49f6-972b-20d872cd756f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'89edfd24-71a4-4e25-8532-ca78ef0bdca4','2025-03-12 18:24:00.109',1350,'KAPIDA ÖDEME - ASHLEY BLANCO RODRİGEZ - 221417545','COLLECT','2025-03-12 18:24:00.109','2025-03-12 19:01:22.362',NULL),
('8205d692-11bd-42fd-9f1e-3035f20e5a2d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a7a425bb-cfdf-4d19-a194-e17082ccd37b','2025-09-10 06:49:18.608',1650,'KAPIDA ÖDEME - NURGÜL ÖZER - 221191139','COLLECT','2025-09-10 06:49:18.608','2025-09-10 07:11:56.226',NULL),
('821f65ed-1e48-4f32-a57d-c60f4f218b5f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,NULL,'90273c80-e292-4a76-8be5-a4c812e9f569','2024-08-20 15:31:37.315',600,'KAPIDA ÖDEME - SEYFETTİN - 703183067','COLLECT','2024-08-20 15:31:37.315','2024-08-23 09:01:41.855',NULL),
('82256f5c-1d1e-43af-b274-9b4d765180b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'94fef2de-86f8-489c-828b-0b9a5e9ec1b4','2025-10-17 06:45:24.519',300,'KAPIDA ÖDEME - GÜLSÜM KÖNÜ - 598373943','COLLECT','2025-10-17 06:45:24.519','2025-10-17 10:53:07.437',NULL),
('822a6a44-ce2d-471c-8e28-7033d59de95e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5c8a45fd-4f1c-4791-a236-1f8362adf868','2025-07-26 07:29:09.293',800,'KAPIDA ÖDEME - BORAN ALBAYRAK - 598668612','COLLECT','2025-07-26 07:29:09.293','2025-07-26 08:40:12.328',NULL),
('8232e82e-0364-4b30-8a74-9399dc6ce439','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'5b42d72a-b62f-4cc4-9b48-7b1bab3054f4','2024-07-20 11:03:42.091',2800,'KAPIDA ÖDEME - QASIM MOHAMMADİ - 982331367','COLLECT','2024-07-20 11:03:42.091','2024-07-20 11:03:42.091',NULL),
('82dda6b1-6b13-4aad-a879-178398493749','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'664a5f59-18db-48f6-9aab-5a678554d75d','2024-03-22 10:13:58.756',500,'KAPIDA ÖDEME - BÜLENT GÜZEL - 428647459','COLLECT','2024-03-22 10:13:58.756','2024-03-22 10:13:58.756',NULL),
('8317a0df-3cc9-4578-ac61-6216d0a28ca6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'ea9d7d59-ea20-4a4a-af1f-0788fb179d8a','2024-05-23 07:23:44.141',3100,'KAPIDA ÖDEME - MOHAMMAD MASOUD - 449234624','COLLECT','2024-05-23 07:23:44.141','2024-05-23 07:23:44.141',NULL),
('831bea0a-1f8a-41cb-a7a1-599f507d4e18','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'263a2887-35f1-4299-a777-21a594a634b6','2025-07-18 17:45:49.977',1000,'KAPIDA ÖDEME - HAVVA KUM - 221443179','COLLECT','2025-07-18 17:45:49.977','2025-07-22 16:18:49.484',NULL),
('83297977-806b-4ba9-8450-016a8cfc75a9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'131fd469-6ac9-4301-8b36-4007cc1563c0','2024-12-17 18:00:43.404',750,'KAPIDA ÖDEME - ÖZNUR KOŞAK - 745283034','COLLECT','2024-12-17 18:00:43.404','2025-01-11 10:16:45.910',NULL),
('8364d0fb-f61a-4473-b03e-a2b97b81364e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'0a137908-ceed-4a84-b0cb-945ff56ddcb8','2025-05-28 18:50:18.071',350,'KAPIDA ÖDEME - ERDEMCAN GÖZÜBÜYÜK - 37159654','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('836ec06d-041d-43c7-96a4-3906bcd6a13f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','85834865-ac23-4c00-a99b-c9551971a5a1',NULL,NULL,'49e64dc1-b571-41e2-8735-35d2ef2613ae','2025-02-13 20:32:41.996',1600,'KAPIDA ÖDEME - HALUK ÖZTOPRAK - 858708990','COLLECT','2025-02-13 20:32:41.996','2025-02-24 20:28:04.441',NULL),
('83950ac2-0cf2-4d61-a228-3edba150cb55','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4ea10ab4-061b-4394-9937-abf14e77d39b','2024-11-02 09:14:18.159',600,'KAPIDA ÖDEME - FURKAN BAŞTEPE - 745778561','COLLECT','2024-11-02 09:14:18.159','2024-11-02 09:14:18.159',NULL),
('83a21857-f33c-4ff5-9341-54f1d754999a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'d7c365df-3376-4073-9c58-c2c089ddf17d','2025-05-24 17:56:27.124',500,'KAPIDA ÖDEME - ESRA ELİŞ - 428704278','COLLECT','2025-05-24 17:56:27.124','2025-05-26 15:11:30.708',NULL),
('83b5920e-9fb3-467b-a3b9-3db9947721ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'834f05c9-ba0b-4030-8950-1efd86d43ae1','2025-04-30 13:55:21.569',300,'KAPIDA ÖDEME - ARZU ÜNLÜ - 319829855','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('83c01363-6071-4b9e-b7a3-a32c9302946f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d632ec-bc89-4254-b43c-4f7383017076',NULL,NULL,'ec8233a9-2b02-4431-9da9-7ebee3a93ae2','2025-09-02 12:04:14.764',300,'KAPIDA ÖDEME - AYLİN GÜNGÖR - 663458477','COLLECT','2025-09-02 12:04:14.764','2025-09-02 14:46:19.246',NULL),
('8478d650-3095-4470-81d2-60ba3fc00927','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'4031214e-7ff4-4917-b027-c570d8c4e65f','2025-07-12 09:16:05.843',375,'KAPIDA ÖDEME - OGULCAN BAYRAM - 613822987','COLLECT','2025-07-12 09:16:05.843','2025-07-16 14:21:29.481',NULL),
('8480c035-4baa-4406-bd4b-460623569adc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'23d90d82-1e00-4325-8ee3-52a0d3809873','2024-03-30 06:51:20.534',1350,'KAPIDA ÖDEME - LOSİF LOUNT MİRİUTA - 982592763','COLLECT','2024-03-30 06:51:20.534','2024-04-01 11:32:28.481',NULL),
('848e8dfd-4ec8-46ce-be56-64c4e2ba459f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'2456bba8-8438-4070-98e2-c287835345fb','2025-04-30 13:55:21.569',845,'KAPIDA ÖDEME - ÖMÜR TOSUN - 78633450','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('84c68fb0-5c5a-49e2-b590-47a27e60568e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'cd2efe78-690b-417e-a5dd-8359ddef0125',NULL,'2024-03-30 13:00:48.999',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.701'),
('84c8e8da-3f3c-43c2-86bd-3d9d76bc6d66','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'9df2d9a2-447d-43e4-ba38-1e784040acf7','2025-08-25 11:42:17.236',490,'KAPIDA ÖDEME - EDA ÇALIŞKAN - 437539983','COLLECT','2025-08-25 11:42:17.236','2025-08-25 12:11:45.737',NULL),
('84cbe6e8-eef5-4bf2-8f34-833c72fcc211','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9a1e163d-879a-4faa-97dc-a573fdac190c','2025-08-07 16:13:53.417',550,'KAPIDA ÖDEME - SEDA KURTDİNÇEL - 745431846','COLLECT','2025-08-07 16:13:53.417','2025-08-12 08:07:30.373',NULL),
('84fdfad6-e405-4374-9ae9-a96bd6f660bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'826475dc-b2f5-46e9-8c2c-4ddeb82b942b','2025-08-14 08:40:43.729',4000,'KAPIDA ÖDEME - BİLGEN TATAR - 478764154','COLLECT','2025-08-14 08:40:43.729','2025-08-15 20:59:05.002',NULL),
('851bc650-372d-4265-a5b0-2b08b5ed5240','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2eb5f10e-e566-4406-9074-57c0c21bd403','2025-08-27 08:25:43.950',1000,'KAPIDA ÖDEME - MİLLE FİERRA COELHO  LUDİVİNE  - 478505417','COLLECT','2025-08-27 08:25:43.950','2025-09-03 06:09:36.662',NULL),
('85233577-c99c-4117-889b-d8d8f761bb53','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'383c0dfd-fe5e-4691-9b5f-187f66c80c04','2025-10-17 06:45:24.616',1500,'KAPIDA ÖDEME - FATİH YÜKSEL - 59878032','COLLECT','2025-10-17 06:45:24.616','2025-10-17 10:53:07.554',NULL),
('8535efab-9f28-4b25-8e1c-a68cc6de2d69','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7abcec25-2b15-4504-9076-c54982acb983',NULL,NULL,'ab709265-d9c6-47a9-8b61-ea995dfc952b','2024-10-11 15:20:40.851',360,'KAPIDA ÖDEME - RIZA KUŞÇU - 725500857','COLLECT','2024-10-11 15:20:40.851','2024-10-11 15:20:40.851',NULL),
('8582e78e-0227-4336-b52f-39d475d3c962','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7b76576b-5f4f-4bd2-ac95-b69b8d9e026c',NULL,'2024-03-30 07:14:02.158',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.883'),
('85b10d1a-7bdf-42c7-9895-1479c290a9c2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'9f7b6237-2e12-4260-9efb-03ccbb1e477a',NULL,'2024-03-30 07:14:01.557',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.009'),
('85c24738-bfbb-4938-929c-60b3617b8620','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'7792b079-15a5-4c2a-b33a-dea2dc61692b','2025-08-30 12:05:07.658',500,'KAPIDA ÖDEME - MEHMET ERTÜRK - 338737901','COLLECT','2025-08-30 12:05:07.658','2025-09-05 08:55:11.107',NULL),
('85d6557e-3580-47d9-8fb8-6bc2cde16dea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'2e9c0bdc-1469-4642-8dc7-5a45d837bbe0','2024-06-08 07:18:05.251',2280,'KAPIDA ÖDEME - ÖMER ALİ ALKAN - 319897198','COLLECT','2024-06-08 07:18:05.251','2024-06-11 07:47:16.722',NULL),
('85e014fe-2911-43de-a583-5ee0fe47d689','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'e2917618-7147-4577-94d1-c21f2fc158c1','2025-05-23 06:32:31.764',300,'KAPIDA ÖDEME - EBRU PAYAS - 657408169','COLLECT','2025-05-23 06:32:31.764','2025-05-26 13:23:22.333',NULL),
('85f31823-b386-4a8b-a562-91f56566d68b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a2d259a0-8a03-4763-951b-98fe714623ce','2024-10-14 08:49:58.291',5350,'KAPIDA ÖDEME - İBRAHİM BAĞCI - 745197344','COLLECT','2024-10-14 08:49:58.291','2024-10-14 08:49:58.291',NULL),
('86092ddd-4ba5-4d3b-bada-b549ea4a7959','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0ca39cb3-cb01-4190-946c-6ebea8eb1b68','2025-10-25 08:43:45.252',800,'KAPIDA ÖDEME - SALİHA ŞERİF - 221651438','COLLECT','2025-10-25 08:43:45.252','2025-10-25 08:58:43.905',NULL),
('86317e97-d28c-4347-ab8a-223c9190d7f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'48ff80ab-53c7-4a25-ba1e-303a3d7073d1','2025-08-22 19:43:14.539',1600,'KAPIDA ÖDEME - MEHMET COPUR - 675644991','COLLECT','2025-08-22 19:43:14.539','2025-08-22 20:28:07.521',NULL),
('864fa9db-ab5f-45e6-9c50-a29ded003940','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','33cc49ad-e7a0-4ee9-9120-2a98bd963a47',NULL,NULL,'1c435a89-18ee-4459-a82f-d4e80b7c4daa','2025-08-14 07:46:42.709',900,'KAPIDA ÖDEME - AHMET YILDIRIM - 334206952','COLLECT','2025-08-14 07:46:42.709','2025-08-14 08:02:29.704',NULL),
('865f0f9f-ac82-4118-9172-43fc6732d331','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'e2f03dd5-01f8-4162-8079-906edf448e38','2025-05-23 06:37:54.446',1000,'KAPIDA ÖDEME - NADİNE NATUR - 817303639','COLLECT','2025-05-23 06:37:54.446','2025-05-26 13:23:22.333',NULL),
('867df6bc-fd46-4820-b34f-9582e5905526','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2','2024-11-29 13:26:50.238',1700,'KAPIDA ÖDEME - BARAN RAKİP - 517764616','COLLECT','2024-11-29 13:26:50.238','2024-12-09 17:29:19.987',NULL),
('868a2301-2e90-4049-8eda-1f154b3a7b92','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'4620449d-5bd3-49d6-816f-684d639a3e44','2025-01-11 15:18:46.238',1700,'KAPIDA ÖDEME - FETHİ YÜCEL  - 910728512','COLLECT','2025-01-11 15:18:46.238','2025-01-13 07:50:40.305',NULL),
('868c7892-e5ad-40d2-9b86-9f5d4a477062','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'711413e7-9565-452a-b808-a0700618dc85','2024-05-29 09:57:28.167',600,'KAPIDA ÖDEME - DURMUŞ MEVLÜT - 614425900','COLLECT','2024-05-29 09:57:28.167','2024-05-29 09:57:28.167',NULL),
('86976d2e-e67e-4319-a7db-45c28366b5f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'50101273-0c1d-452c-b0ea-a3c2e64b8022','2025-07-18 17:50:30.931',1600,'KAPIDA ÖDEME - MUSA CAN KOÇAK - 644389756','COLLECT','2025-07-18 17:50:30.931','2025-07-22 16:18:49.528',NULL),
('869c036b-09dc-4912-95f1-5bd1982a243c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ad525e43-9190-4602-ac34-b389ec280f0a','2024-11-12 15:29:19.908',1100,'KAPIDA ÖDEME - HÜSEYİN KIRTAY - 745357299','COLLECT','2024-11-12 15:29:19.908','2024-11-23 12:17:08.607',NULL),
('86a5cf86-a54e-4101-830a-e65647cc0e43','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd','2025-04-15 09:00:05.774',1000,'KAPIDA ÖDEME - SONGÜL BALTACI - 64446005','COLLECT','2025-04-15 09:00:05.774','2025-04-15 09:32:18.233',NULL),
('86a91cf2-6de4-4d47-b374-438f8852f623','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'5f1e05ef-a967-45d1-a984-4cd1f018c261','2025-04-11 12:26:08.423',1150,'KAPIDA ÖDEME - MUHAMMED ÇETİN - 221234413','COLLECT','2025-04-11 12:26:08.423','2025-04-15 14:54:58.058',NULL),
('86b16c64-f0e9-46ce-b845-416c748162c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'63733cef-e274-4dc6-b6fb-08178c1dd9ff','2025-04-30 13:55:21.569',385,'KAPIDA ÖDEME - YUSUF ASLANYÜREK - 478746196','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('86bd1e56-ca84-41d4-8b7b-01c1bdc3e81f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'90e758b9-fc91-49ea-ab6c-5838a25327d1','2025-08-21 07:01:13.911',550,'KAPIDA ÖDEME - ÖMER FARUK ÇANAK - 31934282','COLLECT','2025-08-21 07:01:13.911','2025-08-21 08:12:56.975',NULL),
('86c92bbe-3d38-414e-8cff-9b319671de85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9c826bc4-15c9-43a5-8ec8-92c216c54593','2025-04-25 15:45:30.739',1450,'KAPIDA ÖDEME - SERKAN ÖZBAY - 478800752','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('86e4ae6e-1263-4d19-974e-4cbd5b1e5906','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'ee15ad4a-dd6f-4a80-9660-0314bf146e8d','2025-06-30 18:33:09.225',800,'KAPIDA ÖDEME - GİZEM TIRPAN - 37140435','COLLECT','2025-06-30 18:33:09.225','2025-07-07 11:44:52.854',NULL),
('86e6548b-954a-4e07-86f9-a8fbf19f5e7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'3012bc75-124d-4be7-b4db-cd1cbb0ff9bb','2025-09-02 12:04:14.791',800,'KAPIDA ÖDEME - MURAT ŞEKER  - 478832291','COLLECT','2025-09-02 12:04:14.791','2025-09-02 14:46:19.268',NULL),
('86ea3942-6f97-420e-a665-1edc46503b7a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3395a306-ce92-4895-8f68-fdd1a559757c',NULL,'2024-03-30 07:14:00.906',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.892'),
('86fdab01-78f2-4e8c-87e2-0ceab242c64b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'9380973c-fd42-4ef7-a6e3-5e7f392c02da','2025-01-26 10:26:43.612',1180,'KAPIDA ÖDEME - ROMİNA ÇÖPLÜ - 127927013','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('87212046-f2b7-4dfb-878b-c5b692e79db0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'7f52958a-ccf0-400f-89e3-4730414f3b72','2025-07-16 14:24:19.221',1650,'KAPIDA ÖDEME - İSMAİL TURŞUCU		 - 910697257','COLLECT','2025-07-16 14:24:19.221','2025-07-17 17:58:07.534',NULL),
('87589549-a652-4cc9-8745-a7e563c3ec6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'41db74dc-65f4-4a7e-8e78-64443e19b9c5',NULL,'2024-03-30 07:25:33.393',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.675'),
('8788260b-0029-43ed-8104-b4063d51debe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'2fdbcaf5-7205-4828-8dfe-34a2370ccdc0','2025-09-10 06:49:18.615',650,'KAPIDA ÖDEME - ATIL SOPHİA - 505850944','COLLECT','2025-09-10 06:49:18.615','2025-09-10 07:11:56.177',NULL),
('8793dd2f-1c0a-49bd-a25f-7862d10a5761','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1','2024-12-28 14:44:13.141',6600,'KAPIDA ÖDEME - GÖKHAN EYCAN - 478681299','COLLECT','2024-12-28 14:44:13.141','2025-01-06 20:08:12.782',NULL),
('87a2cd5b-ff61-4879-8484-17281bac0339','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'5b7d4688-f67a-4ea8-be59-b782013f7458','2024-05-10 06:41:29.815',1630,'KAPIDA ÖDEME - ABDULLAH DEMİR - 449239758','COLLECT','2024-05-10 06:41:29.815','2024-05-10 06:41:29.815',NULL),
('87d593fe-5301-42fc-b0d0-c6327a9f89eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'99481881-e1d7-425b-9aa3-9cb0c61cb139','2024-11-12 15:22:34.293',1250,'KAPIDA ÖDEME - NURCAN ÖZER - 745940979','COLLECT','2024-11-12 15:22:34.293','2024-11-23 12:17:08.607',NULL),
('87e040a0-79ad-481f-80b3-a12eb2271d00','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4d0b2acc-d1c8-46aa-b839-b13854fbe901','2025-02-03 17:59:08.362',2885,'KAPIDA ÖDEME - SERHAT ÇAÇAN - 745303876','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('881b38d0-05fc-4508-aa28-a42bca862d34','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'39d4eef6-e838-4975-96ef-7f71258c7d3a','2024-11-12 15:24:21.704',600,'KAPIDA ÖDEME - MEHMET GÜRKAN - 745661183','COLLECT','2024-11-12 15:24:21.704','2024-11-23 12:17:08.607',NULL),
('884fc48b-74e0-41ea-8bb2-23c28651327e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'6e0be5a1-e68c-498b-aab1-17f032d29cb5','2025-01-05 13:55:52.871',2350,'KAPIDA ÖDEME - HAVVA GÜL - 976530579','COLLECT','2025-01-05 13:55:52.871','2025-01-07 17:06:26.160',NULL),
('8850aaab-d6d5-4645-bea1-2ad3a19f5826','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'acb56e55-0830-4986-97da-b0788ca9b99b','2025-01-11 15:02:07.378',2130,'KAPIDA ÖDEME - RAMAZAN KIYMAZ - 478900175','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('886bbb12-2a5f-4b17-86ac-646b60e16752','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'eb7486ef-1def-475a-94cb-2a65d39933d5','2025-08-14 07:54:07.554',1280,'KAPIDA ÖDEME - MERVE BEKTİK - 43752518','COLLECT','2025-08-14 07:54:07.554','2025-08-14 08:02:29.819',NULL),
('887adb61-f845-40ff-89a7-35078f45d567','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'0bf84329-c85d-4d24-8259-d2cf5ac61459','2025-06-05 14:12:51.292',1000,'KAPIDA ÖDEME - CEMİLE İLHAN - 817239122','COLLECT','2025-06-05 14:12:51.292','2025-06-06 02:46:03.729',NULL),
('888eda04-f887-43f9-99c0-8773dfeed21d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'517e33c7-4738-4676-b2b6-9a46d48326bb','2025-03-12 18:30:21.170',700,'KAPIDA ÖDEME - NERMİN ÇETİNAVCI - 910948770','COLLECT','2025-03-12 18:30:21.170','2025-03-12 19:01:22.362',NULL),
('88a15215-8119-4f87-b384-e9b178b55e96','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'0fe32732-478d-4914-8b33-290a72aa934f','2025-04-22 13:03:01.299',1250,'KAPIDA ÖDEME - KARABAS LANDMASCHİNEN - 412977009','COLLECT','2025-04-22 13:03:01.299','2025-05-02 17:08:29.291',NULL),
('88dd86e7-b3b8-41bb-af79-cc54977952a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'a39b0448-094c-4d23-ad55-d527d7d7c69d','2025-09-05 18:27:28.106',775,'KAPIDA ÖDEME - ALAA AL- AHMAD - 5312778','COLLECT','2025-09-05 18:27:28.106','2025-09-06 09:41:31.884',NULL),
('88ffed31-e4af-418f-8ec7-7165f9fc25bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d8172c72-d29b-40c5-b0b2-0277129ff6b4',NULL,NULL,'2bfb4ebc-a071-48f5-9c44-727046a13ab1','2025-09-25 16:04:06.487',1125,'KAPIDA ÖDEME - AHMET AKAT - 817619747','COLLECT','2025-09-25 16:04:06.487','2025-09-26 12:27:42.344',NULL),
('8967ca74-0c9b-4ce1-9182-64c3acc9985b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'313ea73f-ae21-453f-98ea-2178061648bd','2024-05-10 07:11:14.744',250,'KAPIDA ÖDEME - ALİ KIZILKAYA - 734482220','COLLECT','2024-05-10 07:11:14.744','2024-05-10 07:11:14.744',NULL),
('89bfa84b-3eff-4786-8d51-d9e01cd57504','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'5d53684d-5145-46de-9a87-24f8f4a4bab1','2024-10-23 15:08:26.432',2500,'KAPIDA ÖDEME - MUSA EMEK - 501786631','COLLECT','2024-10-23 15:08:26.432','2024-10-23 15:08:26.432',NULL),
('89dcbe76-4ea1-4210-a586-a4b5ed01f616','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'77eac80c-4c21-48c5-b2d5-8d730b4593ec','2024-11-15 16:52:33.414',1350,'KAPIDA ÖDEME - İBRAHİM AKÇİN - 449215672','COLLECT','2024-11-15 16:52:33.414','2024-11-28 09:15:31.466',NULL),
('89e9fee4-4d93-4817-94bb-b6eeb3e934e5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'443aa222-33f8-4fe0-a2f8-8966543ddebf','2024-10-23 15:02:16.659',1500,'KAPIDA ÖDEME - MAHRİCAN DERİN - 501848451','COLLECT','2024-10-23 15:02:16.659','2024-10-23 15:09:03.182',NULL),
('89ede16c-39eb-4ad1-b523-26cdeafda2d6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'7ebc061e-668d-437b-b1f8-46651f8f4ce0','2025-09-18 06:43:39.475',1875,'KAPIDA ÖDEME - BARAN YILDIZ - 644832811','COLLECT','2025-09-18 06:43:39.475','2025-09-18 15:48:17.623',NULL),
('89f29661-1722-4e48-be5d-f26a7e007369','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'5bdda36d-058c-48a6-a634-4d0876d0f654','2025-09-05 18:22:32.064',500,'KAPIDA ÖDEME - İHSAN KEPİR - 412299499','COLLECT','2025-09-05 18:22:32.064','2025-09-06 09:41:31.825',NULL),
('89fc075a-1535-4394-bdf5-f99bd1e69c7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'dc5d2caf-3941-4bd5-a27f-492541390d57','2025-10-13 07:14:09.023',1100,'KAPIDA ÖDEME - SABRİNA METZGER  - 808922349','COLLECT','2025-10-13 07:14:09.023','2025-10-14 08:52:36.870',NULL),
('8a505d1e-8c5b-4f8c-8654-9c2105540104','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'fd91d6e5-6042-45b8-8ffc-7e4151535f41','2024-08-31 13:23:22.825',1250,'KAPIDA ÖDEME - HASSAN BEY - 976893568','COLLECT','2024-08-31 13:23:22.825','2024-08-31 13:23:22.825',NULL),
('8a68519d-5080-4c2e-a72f-0413b74a1e9b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'97aeede9-88c1-41c0-a1c0-b47031f0ee1e','2024-03-19 07:14:46.705',800,'KAPIDA ÖDEME - BATTAL - 412524404','COLLECT','2024-03-19 07:14:46.705','2024-03-19 07:14:46.705',NULL),
('8a714d46-7d5a-480d-b284-54cfff45dcd5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','70a3a4f1-e9cb-485f-aada-62059168e54e',NULL,NULL,'a04f974c-9931-40d4-ae61-21f5044fce18','2025-02-23 12:29:38.987',420,'KAPIDA ÖDEME - SEYFETTİN  - 703870981','COLLECT','2025-02-23 12:29:38.987','2025-03-02 04:33:53.043',NULL),
('8ad8d05c-afa7-4680-ae4a-bc9c8d9ba974','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2','2025-08-27 08:40:21.927',650,'KAPIDA ÖDEME - MELİSSA KARACAKAYA - 598961911','COLLECT','2025-08-27 08:40:21.927','2025-09-03 06:09:36.654',NULL),
('8af79cb0-8742-4b97-a964-91bdf30b1ebd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'d2d6e485-b5cd-40eb-aea4-a35691e6fe83','2025-04-11 12:35:54.252',1500,'KAPIDA ÖDEME - HALİL ÖZDEMİR - 478138166','COLLECT','2025-04-11 12:35:54.252','2025-04-15 14:54:58.058',NULL),
('8b083d31-be4c-4bdf-947d-b1716c37e0d6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'caa25f56-3e3b-4a02-995e-9956a9ae987a','2025-10-03 15:04:04.765',750,'KAPIDA ÖDEME - LEMAN TUNCER - 412467921','COLLECT','2025-10-03 15:04:04.765','2025-10-03 16:08:51.084',NULL),
('8b204571-3c2f-4d9d-a4f8-6e96d530660b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'befb7915-d965-40b5-88db-83eb5e2ca8ed',NULL,'2024-03-25 11:45:13.232',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.781'),
('8b65e8f9-ef67-4457-8b3d-eb89ec2d6db3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'50ac71ad-f352-4f3f-9611-9447396e01a3','2025-10-22 12:43:49.251',5500,'KAPIDA ÖDEME - MESUT-ŞENOL - 412206514','COLLECT','2025-10-22 12:43:49.251','2025-10-22 12:43:49.251',NULL),
('8bc183a3-2162-42cd-b10c-e2f7ebb22875','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'43d385d8-2280-4cba-bca7-d4cd3193968d','2024-11-15 17:04:51.524',850,'KAPIDA ÖDEME - YAVUZ GENÇ  - 449801040','COLLECT','2024-11-15 17:04:51.524','2024-11-28 09:15:31.466',NULL),
('8bee8ea6-b984-4de6-860c-1c809e9d6056','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b90afa4b-4bfb-45de-b36a-051a3bf6a245','2025-10-07 14:59:47.570',590,'KAPIDA ÖDEME - KIYMET DALMAN(K) - 644742878','COLLECT','2025-10-07 14:59:47.570','2025-10-07 15:17:28.533',NULL),
('8c3ae6bb-d84f-4ba8-af73-5185b9d38344','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'c72ffa02-90ea-47e9-8464-e38059961b11','2025-10-01 06:41:28.828',500,'KAPIDA ÖDEME - ALİ AYDIN - 428391947','COLLECT','2025-10-01 06:41:28.828','2025-10-01 07:56:23.231',NULL),
('8c4a5ce2-41db-47d5-9e56-99681f86431b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f','2024-12-27 11:39:54.064',560,'KAPIDA ÖDEME - HİEM OMAİRAT  - 73597674','COLLECT','2024-12-27 11:39:54.064','2024-12-27 12:23:49.166',NULL),
('8cd13d36-a8b4-47ce-96cd-427aa6d87505','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'243eea10-792d-49ba-9ae4-ae19d0d2d331',NULL,'2024-03-25 11:45:13.933',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.649'),
('8ce64f4e-84ec-44e7-9aa7-4d4dd3ef36e5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'2e84e42f-b241-4285-8be1-464db22053be','2025-09-02 12:04:14.935',1125,'KAPIDA ÖDEME - IVANA ELİAS - 437426295','COLLECT','2025-09-02 12:04:14.935','2025-09-02 14:46:19.415',NULL),
('8cefd73b-78cd-4b29-86b4-e2e68cc5a12e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'cb8ab28e-84c0-4246-b10d-ada59c224895','2025-05-24 10:58:02.722',2250,'KAPIDA ÖDEME - BURHAN AKMEŞE - 745761149','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('8d0b4d70-95fa-489c-9e4f-d3d74996886a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'55e607ed-d51c-485a-8378-e7a48e23c319','2025-10-14 06:06:41.292',1500,'KAPIDA ÖDEME - ALİ ÖZVEREN - 412722649','COLLECT','2025-10-14 06:06:41.292','2025-10-14 09:25:26.010',NULL),
('8d34eb73-9458-42a0-bf99-e75577362c90','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'0ac67115-ca12-48cc-a0b1-abc8c3a29d08','2025-02-03 17:55:18.052',700,'KAPIDA ÖDEME - KENAN SOYLU - 74534951','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('8d3c502b-5ec7-4ed0-84b0-a8dc069318e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'7458ef39-6eb9-40f5-ba04-84de030fd5d7','2025-05-09 16:49:05.440',1900,'KAPIDA ÖDEME - ZELİHA ARAS - 910280020','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('8d9020cb-92df-49ae-a2c2-72b61e25a864','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'7f8c4888-b2a0-46d9-b594-dfcbf578986f','2025-09-06 17:04:26.017',2500,'KAPIDA ÖDEME - ENES - 412746738','COLLECT','2025-09-06 17:04:26.017','2025-09-10 12:48:00.807',NULL),
('8d925992-ca8c-49f9-be57-49ba6fa3a5fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'93a423f4-81fb-4690-bc1a-7b1c23ae6a8c','2025-10-02 06:39:26.272',540,'KAPIDA ÖDEME - AHMED AZEEZ  - 221364325','COLLECT','2025-10-02 06:39:26.272','2025-10-02 11:05:59.103',NULL),
('8e2f4ef3-aaa3-4ccb-a31d-06651dd6126b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'10862bf3-01dd-40a9-beaa-6ba3d5075238','2025-04-25 15:41:06.232',1750,'KAPIDA ÖDEME - ÖZAY ÖZDEMİR YILDIZ - 221746261','COLLECT','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('8e6f18d3-2265-4fbe-bdb4-557959f6ffc8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'97df81d0-5a59-4e29-bb48-4768b4a079cd','2025-01-05 13:55:52.871',2200,'KAPIDA ÖDEME - İBRAHİM TANKAZ - 47815812','COLLECT','2025-01-05 13:55:52.871','2025-01-07 17:06:26.160',NULL),
('8e8cd6e9-02e7-4c4f-a038-85f2744ea240','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'f0a2b18e-c335-4984-8a55-31e2b94bbe44','2024-04-02 15:58:33.444',1500,'KAPIDA ÖDEME - ZAHRA REZAEİ - 449768376','COLLECT','2024-04-02 15:58:33.444','2024-04-02 15:58:33.444',NULL),
('8ec8dbab-6831-464a-9500-d40eafb62ac4','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'e41e7781-1c17-4d37-b049-0a5e20034834','2025-09-06 17:00:09.138',1330,'KAPIDA ÖDEME - YUSUF AVCI - 817915882','COLLECT','2025-09-06 17:00:09.138','2025-09-10 12:48:00.887',NULL),
('8f0db252-0bdc-4236-92d8-c6b360330863','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'824b8b50-1127-4eb5-8137-c9c3822a54a2','2025-08-14 09:15:13.492',660,'KAPIDA ÖDEME - YUNUS EMRE ÖZAGİR - 531988506','COLLECT','2025-08-14 09:15:13.492','2025-08-15 20:59:04.995',NULL),
('8f10e006-3f19-4212-a382-b52b5dd7b933','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9ce62bd7-3afd-4765-a2a2-99f4aea71849','2025-04-30 13:44:23.805',650,'KAPIDA ÖDEME - REUAN SHAMO  - 221947357','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('8f3c1ccc-d5de-4e64-8f78-678e717c5a15','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b115bb17-6ee3-4846-9e72-2f91f2abf901','2025-04-26 15:32:13.818',750,'KAPIDA ÖDEME - ABDÜLKERİM AKDAS - 248359668','COLLECT','2025-04-26 15:32:13.818','2025-04-26 16:02:30.708',NULL),
('8f624469-6fe5-4fb1-bd2d-1c8d71d056b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'4c2f86c9-653c-4859-ad05-f53200e7d5ba','2025-01-11 14:53:42.276',1100,'KAPIDA ÖDEME - İMANE LAARİ - 22130093','COLLECT','2025-01-11 14:53:42.276','2025-01-13 07:50:40.305',NULL),
('8f6ead6c-58f1-4138-9080-12b882163401','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'76a93010-f727-45fd-9ab0-e27e6c84c779','2025-07-12 09:16:05.748',600,'KAPIDA ÖDEME - ZEHRA - 817918521','COLLECT','2025-07-12 09:16:05.748','2025-07-16 14:21:29.540',NULL),
('8fcec2bd-e07e-4c95-b75c-b4d338467c6e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0','2025-08-21 07:01:13.873',1600,'KAPIDA ÖDEME - İLYAS GÖK - 598982184','COLLECT','2025-08-21 07:01:13.873','2025-08-21 08:12:57.027',NULL),
('8fe63898-fb66-417e-8080-fb6f75b8d935','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b773320b-83f9-406c-8d3a-312ca17d7ff8','2025-07-08 11:07:05.298',570,'KAPIDA ÖDEME - ÖZLEM AKAY - 371440688','COLLECT','2025-07-08 11:07:05.298','2025-07-08 11:33:15.184',NULL),
('8fe72d8e-f3c2-42bb-8037-c2c56231c426','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'6b536f48-3034-48b2-9b97-92824679a502','2024-11-03 20:58:33.899',1350,'KAPIDA ÖDEME - POLAT HANIM - 982644032','COLLECT','2024-11-03 20:58:33.899','2024-11-25 09:20:39.164',NULL),
('90238462-0d0d-4355-85e3-0bbffff9cee7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2894ebed-fc17-429a-b8af-6ed24e9d7a59','2024-08-07 14:22:52.395',1000,'KAPIDA ÖDEME - NEVZAT KAHRAMAN - 478212125','COLLECT','2024-08-07 14:22:52.395','2024-08-07 14:22:52.395',NULL),
('902d39bc-9069-4891-abbb-3afcd58c842d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1665dee0-24f9-42b5-b654-0fc276b61c52','2025-03-06 10:17:40.312',850,'KAPIDA ÖDEME - MERYEM PEREZ  - 982126318','COLLECT','2025-03-06 10:17:40.312','2025-03-06 10:36:11.461',NULL),
('906c27d8-b599-4bb3-a6ae-6ae08be8e65b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e9c3de84-44b0-416d-b57a-8549b5c187d0','2025-04-26 14:40:15.277',1200,'KAPIDA ÖDEME - NURİYE ŞAHİN - 221447673','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('9093a43d-7c8f-4327-98ea-464183ec570f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'bbffe63d-9618-42a2-944f-0a4b76bb33ae','2024-03-22 07:37:12.833',1000,'KAPIDA ÖDEME - FIRAT DEMİRCİ - 982451991','COLLECT','2024-03-22 07:37:12.833','2024-03-22 07:37:12.833',NULL),
('909e49a1-1b54-461d-885c-20a1b243705c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,'f1036344-e4b5-4489-a46b-adbc8a18c0cd','2024-09-09 13:32:42.457',560,'KAPIDA ÖDEME - SAAED SALİH - 655571326','COLLECT','2024-09-09 13:32:42.457','2024-09-09 13:32:42.457',NULL),
('90b53d5f-b492-4954-9e4a-e2dae83977c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'7e266893-f849-462e-9a81-e6336886fc16','2025-10-01 07:16:48.853',4100,'KAPIDA ÖDEME - FAHRETTİN AKISKA - 478339664','COLLECT','2025-10-01 07:16:48.853','2025-10-01 07:56:23.203',NULL),
('90e91f28-2dc1-4855-9551-b5936c39b0d1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'dbc44baf-94fa-4586-8bc2-04870b635e12','2024-09-28 16:06:32.999',750,'KAPIDA ÖDEME - NİHAT SEMOĞLU - 745175736','COLLECT','2024-09-28 16:06:32.999','2024-09-28 16:06:32.999',NULL),
('912e9a29-bdbb-4476-a787-8e5648c7a7fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'7199e362-dd55-4a37-aba4-6ef7822710ed','2025-07-08 11:11:58.212',980,'KAPIDA ÖDEME - MUHAMMET AL KHALAF - 735785649','COLLECT','2025-07-08 11:11:58.212','2025-07-08 11:33:15.259',NULL),
('91320d8a-3785-440b-ac35-47b0a84d3050','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'7e8785f1-7130-4936-8f4d-d44ffa1d9b07','2025-10-25 08:43:45.328',1750,'KAPIDA ÖDEME - ANDREW YARBUG(K) - 644799923','COLLECT','2025-10-25 08:43:45.328','2025-10-25 08:58:44.044',NULL),
('913e63b2-3ccd-460c-94db-d1c043c4fa44','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'791e33b7-8896-46f8-95f8-717ff7671574','2024-10-23 09:00:39.908',900,'KAPIDA ÖDEME - SUAT - 248103321','COLLECT','2024-10-23 09:00:39.908','2024-10-23 10:16:53.394',NULL),
('91750083-3369-4740-a303-111a05cd4bf5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'92035bab-37fe-43c0-8f20-e718fcf5f1f2','2025-02-07 11:30:49.656',500,'KAPIDA ÖDEME - GÜLSÜN UZUN - 478118994','COLLECT','2025-02-07 11:30:49.656','2025-02-15 11:10:42.855',NULL),
('918ee9dd-9404-45a7-9952-f1d3215f33fa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3f10ddd5-0494-4a63-8c1b-40acc9372609','2025-08-14 08:50:57.188',780,'KAPIDA ÖDEME - ALİYE DALKAYA - 221763889','COLLECT','2025-08-14 08:50:57.188','2025-08-15 20:59:04.954',NULL),
('91a46d6d-9a13-45f2-b064-1f23a48bf493','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'26dc53f3-1a21-44ea-a0d6-f51c8996bf85','2025-05-23 06:29:06.668',900,'KAPIDA ÖDEME - AYEOLOWO SEKİNAT - 221433158','COLLECT','2025-05-23 06:29:06.668','2025-05-26 13:23:22.333',NULL),
('91ab0e82-65a0-4c15-be48-e5af7696742a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'89eb6491-3e20-44a2-80d5-2107251a822e','2025-05-28 18:45:21.684',1300,'KAPIDA ÖDEME - ERCAN VARSAK - 745318139','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('91bf74da-eda9-4b62-9aca-061c3be0be0b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'f169361d-a98a-44cd-9be5-0d014e87b896','2024-08-07 20:54:06.121',1150,'KAPIDA ÖDEME - BAL CİHAN - 614908568','COLLECT','2024-08-07 20:54:06.121','2024-08-07 20:54:59.764',NULL),
('91cd7e5f-498d-4601-b7e3-55071370318e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9ad0f9c0-122b-4939-b7d3-2bbf042048fd','2024-10-02 09:00:55.285',1500,'KAPIDA ÖDEME - SAVAŞ AKTAŞ - 478815317','COLLECT','2024-10-02 09:00:55.285','2024-10-02 09:00:55.285',NULL),
('91e3527f-b4ca-4b4a-99bf-b451e9828e7f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'c2d80ea2-bf32-4dd3-96fc-6c76b77ae583','2025-09-18 06:43:39.432',800,'KAPIDA ÖDEME - ESRA MAT(K) - 644484322','COLLECT','2025-09-18 06:43:39.432','2025-09-18 15:48:17.579',NULL),
('91eaae05-1df6-41d4-b55d-cdefcb2f4c3f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','02756ab4-fa8a-408f-b81c-76a84dc82d6f',NULL,NULL,NULL,'2024-11-08 16:46:40.014',-6210,NULL,'PAYMENT','2024-11-08 16:46:48.810','2024-11-08 16:46:48.810',NULL),
('91fcaa94-a118-4400-af04-7d07ba8e62be','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a',NULL,NULL,NULL,'2024-11-08 17:23:49.754',110,NULL,'COLLECT','2024-11-08 17:24:02.800','2024-11-08 17:24:02.800',NULL),
('92196031-3854-4c2c-8792-d269d9659d7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b',NULL,NULL,'6185b161-cfc2-4a8a-a2f2-c2e05c20c446','2025-10-22 12:57:15.717',770,'KAPIDA ÖDEME - ŞENEL KURU - 776312220','COLLECT','2025-10-22 12:57:15.717','2025-10-22 12:57:59.260',NULL),
('92413701-ac71-4101-b380-daa0e65790d1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f365b152-062c-430e-aaeb-30628ef9b06d','2025-04-19 10:21:58.939',675,'KAPIDA ÖDEME - RABEB HOCQUARD - 74541057','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('92551e2e-f10b-4ae8-99b9-77f858bdb126','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'e29cd434-988f-45c9-8c62-49efd76090dd','2025-03-27 08:52:32.483',400,'KAPIDA ÖDEME - MURAT KİRİKKAYA - 613529206','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('92601b90-a6e3-4bee-93e6-6008c97f4aa7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'5d9fba6e-ed3a-4844-97a3-b9e244247031','2025-02-18 16:31:57.984',1100,'KAPIDA ÖDEME - ERKAN TAŞDELEN  - 221397270','COLLECT','2025-02-18 16:31:57.984','2025-02-27 13:37:30.441',NULL),
('9265a84a-8c19-45a6-921d-856c0589dc09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'526aa02e-2975-431a-8cc4-16032700e014','2025-10-13 07:14:08.908',1100,'KAPIDA ÖDEME - ALİCE CHOCRON - 478589258','COLLECT','2025-10-13 07:14:08.908','2025-10-14 08:52:36.752',NULL),
('926cecfa-218c-45e8-8664-e4a815493cbc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'1b20804a-76a0-418e-b22d-40783c68915b','2024-12-27 11:54:56.765',1500,'KAPIDA ÖDEME - HAFİZE GÜNEY  - 319382208','COLLECT','2024-12-27 11:54:56.765','2024-12-27 12:23:49.166',NULL),
('9285fad2-b57a-4768-87b8-903682009783','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'af3c24bb-f60e-414f-9ee5-8ecc68adbfff','2025-03-25 09:39:17.021',2000,'KAPIDA ÖDEME - NEGİN EHSANİFARD - 644206771','COLLECT','2025-03-25 09:39:17.021','2025-03-29 13:37:01.615',NULL),
('9288858e-83d8-43d3-b04a-252dc9f6bcff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0debd19b-d90b-48a0-9568-2d01319377e0',NULL,NULL,'0adf917f-cd8a-434f-ae14-355f5b8a1a1a','2025-05-26 11:08:41.695',500,'KAPIDA ÖDEME - NİSRİNE  - 019814367','COLLECT','2025-05-26 11:08:41.695','2025-05-26 13:23:22.333',NULL),
('92aa93d2-5818-43ce-9a9f-bbfb74a04ac8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'2bdc9d94-c171-475a-ae24-5adf3fadaea9','2025-10-01 07:16:48.860',450,'KAPIDA ÖDEME - İYAD SHOURBAJİ  - 221591105','COLLECT','2025-10-01 07:16:48.860','2025-10-01 07:56:23.156',NULL),
('92b9767b-adc2-40dc-8202-fa3f1a738bd4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'476a35ac-9d9d-4d70-a965-370a980951c2','2024-10-02 08:54:57.162',1500,'KAPIDA ÖDEME - SÜLEYMAN ERDOĞAN - 478723327','COLLECT','2024-10-02 08:54:57.162','2024-10-02 08:54:57.162',NULL),
('930b84dd-44e3-4c7f-ad3f-467b2fac4155','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'7d1d7e49-6aae-4b9a-a041-419ddc6e5eae','2025-08-07 16:12:15.207',475,'KAPIDA ÖDEME - WASİ BAHİR  - 613373885','COLLECT','2025-08-07 16:12:15.207','2025-08-12 08:07:30.349',NULL),
('930c6689-fc5c-4bdc-999c-a8cb59d281cb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'4a38f569-617d-48cf-b0fc-27e25fd3884e','2025-10-02 06:39:26.288',1500,'KAPIDA ÖDEME - BURCU GELİR  - 221461818','COLLECT','2025-10-02 06:39:26.288','2025-10-02 11:05:59.118',NULL),
('93103b52-e918-4cda-9d60-f4b317bbfb7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'31e57ac5-fccb-463d-9767-6b43f825e71a','2024-10-23 15:21:26.811',1050,'KAPIDA ÖDEME - VOLKAN ÖZCAN - 517495121','COLLECT','2024-10-23 15:21:26.811','2024-10-23 15:21:26.811',NULL),
('931b405f-0bb6-4941-8622-ebf30e96ab55','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ecd638f1-8a79-4613-9107-f0af2ddb735c','2024-04-27 08:20:18.083',1900,'KAPIDA ÖDEME - HARUN KAYA - 745180441','COLLECT','2024-04-27 08:20:18.083','2024-04-27 08:20:18.083',NULL),
('932d82ee-42ca-419f-b108-2aa46218fa05','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'adb2b821-db09-48e2-aa73-097ac1069722','2025-06-18 08:06:20.345',2600,'KAPIDA ÖDEME - INTERCASH - 412838128','COLLECT','2025-06-18 08:06:20.345','2025-06-18 08:08:50.179',NULL),
('93531c29-148d-41f1-9eca-e4a13b4f0e25','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'98c40a46-22d8-4470-84a1-302a19073f0d','2024-11-06 15:11:52.734',1400,'KAPIDA ÖDEME - BYTYCİ REZARDE - 982773684','COLLECT','2024-11-06 15:11:52.734','2024-11-25 09:20:39.164',NULL),
('9354fd95-de5f-4bd2-b307-2c786d52b870','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd','2025-06-27 17:09:48.531',950,'KAPIDA ÖDEME - EL GHZİZAL CHAİME  - 221686736','COLLECT','2025-06-27 17:09:48.531','2025-07-01 09:19:39.025',NULL),
('93bb30b0-e8c7-4def-8a6b-78f1492acbe0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4d4ad16a-ebbb-41f2-9d01-d167180af909','2024-10-02 09:23:42.203',700,'KAPIDA ÖDEME - FAHREDDİN ÖZENC - 745283309','COLLECT','2024-10-02 09:23:42.203','2024-10-02 09:23:42.203',NULL),
('93d63f32-461f-4bd6-947b-b2b9891abf01','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'9236b858-0a44-4581-b11d-b5a57a9522a0','2025-09-18 15:48:17.564',545,'KAPIDA ÖDEME - RAMAZAN HAVAÇEKEN(K) - 644879098','COLLECT','2025-09-18 15:48:17.564','2025-09-18 15:48:17.564',NULL),
('940106e1-bcce-446d-938e-3926f6aac6cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,NULL,'2024-10-24 14:19:53.323',-2360,NULL,'PAYMENT','2024-10-24 14:20:02.585','2024-10-24 14:20:02.585',NULL),
('94dbdb1f-0bea-4d52-9b64-58a011f78c4e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,'5beae305-2b0d-4fcb-8a79-b68e23b3bcf1','2024-05-10 07:01:34.076',1000,'KAPIDA ÖDEME - MİKAİL VUREL - 315903894','COLLECT','2024-05-10 07:01:34.076','2024-05-10 07:07:44.775',NULL),
('94e78ddf-b560-456c-a33d-fffb5454cdf6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'9f3a5616-6c64-44aa-90f5-c34379989ac3','2024-12-09 08:01:47.469',450,'KAPIDA ÖDEME - MURAT - 73547719','COLLECT','2024-12-09 08:01:47.469','2024-12-17 19:52:32.750',NULL),
('950639b6-30cf-4f3f-a7a5-0c5d94f9a3e4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f31e552e-c834-40f4-b2b5-57faf61eb7a0','2025-02-03 17:59:08.362',300,'KAPIDA ÖDEME - GÜLCE GÜRLER YEGİN - 478484020','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('95208567-fd78-4072-a4f3-83d6685979d2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5704f870-b084-4355-b974-46ce1a37e3ad',NULL,'2024-03-25 11:45:13.732',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.708'),
('953fc7ac-b0ff-4a37-8ef0-d81f3a7e7778','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,NULL,'2024-11-08 17:20:48.584',-9045,'HESAP DÜZLEME','PAYMENT','2024-11-08 17:21:04.044','2024-11-08 17:21:04.044',NULL),
('95b9e527-0c89-46fb-837f-e5d01e28644c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ca923043-bfdc-4e29-9cf4-8669f6d1b498','2025-08-27 08:40:21.890',1900,'KAPIDA ÖDEME - HALİDE ÖZAY - 745208965','COLLECT','2025-08-27 08:40:21.890','2025-09-05 16:46:48.231',NULL),
('95ded132-2393-4ba0-a9d4-df634b2f2921','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d406bcf9-208d-4398-83bc-73bfdd569d39','2024-10-17 11:46:01.530',900,'KAPIDA ÖDEME - HAZİNE UCA - 745839023','COLLECT','2024-10-17 11:46:01.530','2024-10-17 11:46:01.530',NULL),
('95e37bef-5ad7-41b1-822b-3039e64d6d87','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'d9ce2f65-7034-4114-b66f-0c1076eb90bf','2025-09-05 13:52:01.478',1260,'KAPIDA ÖDEME - SELİN URAK - 437152964','COLLECT','2025-09-05 13:52:01.478','2025-09-06 09:41:31.918',NULL),
('95e56ee1-ad9b-43ba-8f52-e0830e34c4ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c06f587f-6e80-42ec-8b11-2be622f719d0','2024-11-13 10:15:55.958',1600,'KAPIDA ÖDEME - ENVER KÖK - 982549375','COLLECT','2024-11-13 10:15:55.958','2024-12-09 08:24:38.479',NULL),
('961d5424-9f7b-4473-9991-a4822440740e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'efd7f051-bdbd-495c-ae12-ff92cadc152e','2025-08-18 08:31:56.083',2000,'KAPIDA ÖDEME - NİZAMETTİN(BEKİR) - 412280381','COLLECT','2025-08-18 08:31:56.083','2025-08-18 08:31:56.083',NULL),
('963053d3-4f5f-41e9-85f9-f71fc8b8c2ca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'be9967c6-717c-4bdc-910a-34e5434a1c5b','2025-03-27 08:52:32.483',500,'KAPIDA ÖDEME - HİDAYET KURT - 745789797','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('964baaeb-40ea-4414-9ecd-9146ba54fa9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ac7835d5-bf3f-4244-9351-a2bddd683e96','2024-12-28 14:51:46.124',630,'KAPIDA ÖDEME - ARİC AKA - 221350993','COLLECT','2024-12-28 14:51:46.124','2025-01-01 10:24:02.206',NULL),
('967eebce-afcb-49a5-aef7-34beb5ad5844','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f99b50af-eb7f-4cab-b383-9c577efa25b1','2024-10-11 09:32:57.732',5350,'KAPIDA ÖDEME - RESUL YILMAZ - 478816607','COLLECT','2024-10-11 09:32:57.732','2024-10-11 09:32:57.732',NULL),
('9697d39d-3be8-4e25-8238-c4c62540e125','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7f34d75e-284a-42ac-9cbe-a29174748991',NULL,NULL,'b5fab0b8-4818-41cf-8f21-23ec7d0a27d5','2024-12-07 09:00:18.509',1000,'KAPIDA ÖDEME - AKİF AĞCA - 734626870','COLLECT','2024-12-07 09:00:18.509','2024-12-17 19:52:32.750',NULL),
('96ae0591-4e0c-4fad-af6e-7721a3cbd2a9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'5674d700-ff2a-461c-8ec2-d14658a2bc7a','2024-08-31 12:57:20.213',1600,'KAPIDA ÖDEME - ZERDEŞT DALMIŞ - 455726286','COLLECT','2024-08-31 12:57:20.213','2024-08-31 12:57:20.213',NULL),
('96ba5aa8-0d24-4489-9c80-41a56ca459bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'8772de92-e350-425f-a8eb-0c7d440b804f','2025-01-05 13:39:04.312',8000,'KAPIDA ÖDEME - AAAAAAAAA - 45592606','COLLECT','2025-01-05 13:39:04.312','2025-01-05 14:06:53.366',NULL),
('96bac6bc-936c-47f1-ae09-123abbf3a063','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'ba457943-412f-43ae-a291-8f5550a492f1','2025-07-16 14:24:19.192',1000,'KAPIDA ÖDEME - KENAN ACER		 - 910684336','COLLECT','2025-07-16 14:24:19.192','2025-07-16 14:29:34.166',NULL),
('96c36ce3-3939-40dd-86f5-79fb4e714778','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7751ec60-ae9d-4e5e-9721-32e483c0d140',NULL,'2024-03-30 07:14:01.107',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.965'),
('96c3e533-068a-4767-b4c8-d47145137583','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'d834f33a-bc33-4d29-8f11-a9b44beafabf','2025-04-24 09:20:33.437',360,'KAPIDA ÖDEME - DEKOR ARSLAN - 412332862','COLLECT','2025-04-24 09:20:33.437','2025-05-02 17:08:29.291',NULL),
('9719184f-e11a-48be-9e4d-d4d271ae675e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'ebaddd2d-5358-49e9-9dab-6b7795385f66','2025-08-07 16:21:45.740',1040,'KAPIDA ÖDEME - WALLA DİAB - 735718998','COLLECT','2025-08-07 16:21:45.740','2025-08-12 08:07:30.434',NULL),
('9756dfba-3145-4730-8aa1-35de7586156a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'75e7f7f1-954b-4755-b253-fdbeb4406db3',NULL,'2024-03-30 07:25:33.643',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.700'),
('9759c188-01f1-4ec2-8eae-3d0e1e68c5eb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'9852a2c7-87f3-43dc-8446-014d62d6842f','2025-04-26 14:40:15.277',650,'KAPIDA ÖDEME - MEDİNE POLAT - 817488957','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('976c1bc5-dcd5-4756-af0a-f7baaccbbb5f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'e637af8d-f91f-4227-b5af-f95f10dd7e2f','2025-02-03 17:55:18.052',1000,'KAPIDA ÖDEME - MAHMUT ÇELİK - 478370539','COLLECT','2025-02-03 17:55:18.052','2025-02-11 17:09:06.423',NULL),
('9798f1e9-08a1-4715-b0fb-c62e4e4dcf00','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'3e7bc361-1239-4318-a168-479ffa7372b0','2025-06-05 14:23:33.681',1000,'KAPIDA ÖDEME - BİRCAN ŞAHİN - 91074356','COLLECT','2025-06-05 14:23:33.681','2025-06-06 02:46:03.729',NULL),
('97c89a7e-acaa-42cb-a7a5-0855c05debc3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'7ed3d8b7-5e55-437d-b2cb-c80e4f63010b','2025-09-23 07:43:59.534',700,'KAPIDA ÖDEME - SANİYE BIÇAKÇI - 43774917','COLLECT','2025-09-23 07:43:59.534','2025-09-24 13:41:15.062',NULL),
('97eabe1c-fc95-476e-a5c5-49ee644d8f96','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'7880358c-ba4e-4929-b5d9-4aed20c36174','2025-08-27 08:40:21.998',1000,'KAPIDA ÖDEME - AYNUR KANDEMIR - 486184665','COLLECT','2025-08-27 08:40:21.998','2025-09-03 06:09:36.713',NULL),
('97fda831-0f50-4d51-aa7b-a948c002728b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8411debd-d339-4324-8e6e-8d3b1d031e43','2024-09-18 21:06:41.447',2000,'KAPIDA ÖDEME - FURKAN GÜNEŞOĞLU - 74532550','COLLECT','2024-09-18 21:06:41.447','2024-09-18 21:06:41.447',NULL),
('983b8644-2167-4101-ab6c-ccaac62efa80','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'39fe7b17-1a25-490e-8486-f344c7b112d9','2024-06-08 07:46:50.278',1000,'KAPIDA ÖDEME - AYSEL ASLAN - 745606440','COLLECT','2024-06-08 07:46:50.278','2024-06-08 07:46:50.278',NULL),
('9849af07-1795-4ff3-908e-4e97e82b6ea2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a4f61a34-65e2-4637-828a-46f7b5c23cb4','2025-05-28 18:50:18.071',1200,'KAPIDA ÖDEME - ŞİRİN ASLAN - 371193272','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('98e0a76d-df4f-4770-9409-1e7c05b03a07','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5','2025-06-05 14:19:23.965',900,'KAPIDA ÖDEME - DUYGU DEMİRHAN - 644703173','COLLECT','2025-06-05 14:19:23.965','2025-06-06 02:46:03.729',NULL),
('99458cce-2489-4004-a118-f26adc7b6d11','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'28745864-aae9-4957-9346-b61332e96fff','2024-03-30 08:53:41.794',3000,'KAPIDA ÖDEME - ÖMER KOLAT - 478593603','COLLECT','2024-03-30 08:53:41.794','2024-03-30 08:53:41.794',NULL),
('99569407-98a4-48b0-9d57-e62ef8e18596','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'b035d749-8b47-4cef-bb6f-fb97f2480a4a','2025-04-15 09:07:09.163',650,'KAPIDA ÖDEME - ASUDE FİLİZER - 613786429','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('9970c623-56be-4741-a7f7-499b27112337','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'33559e2b-89eb-400e-bccc-223d68f8842e','2024-04-23 09:08:07.622',350,'KAPIDA ÖDEME - SEBAHATTİN ÜNVER - 412225517','COLLECT','2024-04-23 09:08:07.622','2024-04-23 09:08:07.622',NULL),
('998109ca-c949-46fa-9f71-040aade89adc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'82afc4e3-9067-402e-9ced-ec3cf19b3f6a',NULL,'2024-03-30 07:25:32.742',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.646'),
('99beb3ac-d36a-4d42-86a5-504774c2a6d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c96401de-d2bb-42c4-b232-62e5a3c21b42','2025-08-15 14:18:27.802',2000,'KAPIDA ÖDEME - SELDA ÇELİK - 478777541','COLLECT','2025-08-15 14:18:27.802','2025-08-18 07:14:34.943',NULL),
('99c4a5d5-2ce9-4f54-a57f-3c85a19f0262','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'b2cd1680-a31f-4de2-b636-a5c7910e8acf','2025-02-23 12:18:58.301',1700,'KAPIDA ÖDEME - SAVYO RAFFO - 22164822','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('9a03ec35-abc9-46c8-b391-1d3aa5ba4ed9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'becc1835-a791-4103-9eb4-4d14db8a91fb','2024-11-29 13:31:33.041',1350,'KAPIDA ÖDEME - ARTON BERİSHA  - 982835475','COLLECT','2024-11-29 13:31:33.041','2024-12-09 17:29:19.987',NULL),
('9a16d4ba-0b95-47a7-a5f1-50f8d5606cc6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e41c8c53-684c-4376-8162-2e589c44b742',NULL,NULL,'3be4ecd7-d378-4dec-aa13-23a899f8bbeb','2025-07-26 07:22:40.576',710,'KAPIDA ÖDEME - WALİ MAADAN - 418857351','COLLECT','2025-07-26 07:22:40.576','2025-07-26 08:40:12.313',NULL),
('9a291e33-b0c5-46a0-92ac-31d3c34d5ad1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'147e8615-279e-4297-866d-fbccbd1231af','2025-08-07 16:12:15.184',3300,'KAPIDA ÖDEME - HÜSEYİN AKBANA - 745191568','COLLECT','2025-08-07 16:12:15.184','2025-08-12 08:07:30.289',NULL),
('9a2e7ee4-b08f-40be-a84c-68db529d336e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'7ca0c26d-8bbc-4deb-a210-90620aca69ad','2025-08-14 07:46:42.678',2300,'KAPIDA ÖDEME - CEM TOPYÜREK - 53111592','COLLECT','2025-08-14 07:46:42.678','2025-08-14 08:02:29.761',NULL),
('9a31af79-eab7-40b9-b104-caf817ce39d7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'f0699886-5b9d-4ea9-8f6d-03786aac722d','2025-02-27 11:02:40.269',1000,'KAPIDA ÖDEME - ARZU BÖÇKÜN - 614680407','COLLECT','2025-02-27 11:02:40.269','2025-03-21 17:17:29.974',NULL),
('9a40a9c7-9e48-42a7-b652-d096b7d33fe5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'dc524c97-a5f3-4595-9e7c-64677cdda5fc','2024-10-17 11:50:49.850',960,'KAPIDA ÖDEME - MUSTAFA  - 45559266','COLLECT','2024-10-17 11:50:49.850','2024-10-17 11:50:49.850',NULL),
('9a94542d-5acd-4134-bfc6-623d139b6242','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'6325741c-0a89-4585-b7b0-b2afd9a2b77f','2025-06-20 15:03:47.833',350,'KAPIDA ÖDEME - STEFAN SUCEVİC - 437133708','COLLECT','2025-06-20 15:03:47.833','2025-06-27 08:25:57.874',NULL),
('9a9b1e4e-59d5-4072-9e30-8d5e631973e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'fea683f3-14ee-46cf-99c5-7865dcd4834f','2025-01-05 13:55:52.871',800,'KAPIDA ÖDEME - ÜLKÜ ÖZTÜRK - 221943840','COLLECT','2025-01-05 13:55:52.871','2025-01-07 17:06:26.160',NULL),
('9aa47e08-7574-43d7-88eb-65c24d19d8fd','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c5ff309c-8bef-4c02-948a-d06e8823ca09','2025-09-06 17:04:26.039',1100,'KAPIDA ÖDEME - ZEYNEP ŞİMŞEK - 437442386','COLLECT','2025-09-06 17:04:26.039','2025-09-10 12:48:00.859',NULL),
('9ac4e128-7085-431e-843c-1a83992cf3c7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'235ede83-046c-43b3-a7f1-746b19237d67','2025-01-26 10:26:43.612',1150,'KAPIDA ÖDEME - HİLAL YILDIZ-MERT YETGİN - 221440431','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('9ace27eb-c7d7-46de-b0b0-a9a5d827dcad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'751916ad-50d2-4794-9387-4d8c4dc5a813','2025-03-25 19:21:55.337',345,'KAPIDA ÖDEME - GÜLDEN KARADAĞ - 745580296','COLLECT','2025-03-25 19:21:55.337','2025-03-29 13:37:01.615',NULL),
('9ace8952-5cf7-4af2-904c-49a560e5f73a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'8c642f07-fecc-4e58-93cd-963c384ca41d','2025-01-06 10:44:50.769',1100,'KAPIDA ÖDEME - MANGAL MÖBEL - 735340001','COLLECT','2025-01-06 10:44:50.769','2025-01-07 17:06:26.160',NULL),
('9af71a9c-b640-4c6a-a74d-ec46df54fda0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'6da14393-4c45-403b-a068-6c3e487296c7','2025-02-20 08:55:34.912',3800,'KAPIDA ÖDEME - MOHAMMED MALHA  - 982125625','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('9b12b581-f08b-4822-875f-20ae621939fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ed79e715-5409-4641-b31c-ef0bd037b83b','2024-11-02 08:57:07.481',250,'KAPIDA ÖDEME - İLKER BİLİCİ - 745128598','COLLECT','2024-11-02 08:57:07.481','2024-11-02 08:57:07.481',NULL),
('9b175e9d-477c-48a8-b2bd-640106f054d2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ef978fdc-f16f-48d3-82b2-9c1f321e6548','2025-02-20 08:44:36.676',1390,'KAPIDA ÖDEME - FESİH DOĞAN - 47853753','COLLECT','2025-02-20 08:44:36.676','2025-02-20 12:40:28.679',NULL),
('9b30683e-5ee3-45d4-9a04-bdfbc30f7e07','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'bffb100f-3ff7-4c20-b550-4d2bd55fc67f','2025-08-25 11:36:09.196',630,'KAPIDA ÖDEME - JASMİNA AGA - 735271543','COLLECT','2025-08-25 11:36:09.196','2025-08-25 12:11:45.757',NULL),
('9b385072-1fc8-4355-97fa-221f02797c46','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'755e2ad9-81c1-4538-8d82-5b3d0b23767c','2025-02-20 08:52:49.800',1330,'KAPIDA ÖDEME - NURKAN AŞIR - 614741569','COLLECT','2025-02-20 08:52:49.800','2025-02-20 12:40:28.679',NULL),
('9b3f630c-93a6-482a-9778-c0bca2f709dd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'b69ca32a-31d3-41b6-a93d-838a8d15e6d7','2024-09-03 15:32:30.093',1100,'KAPIDA ÖDEME - ELİF HANIM - 412871738','COLLECT','2024-09-03 15:32:30.093','2024-09-03 15:32:30.093',NULL),
('9b46d9fb-ba6d-4633-b4ae-da36366f6bf4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'aacfdb28-66df-4a6f-8b8d-f575a38b002b','2025-05-28 18:50:18.071',1500,'KAPIDA ÖDEME - RUKİYE BARUT - 644626371','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('9b64038f-c923-4a0c-8fc0-c3a90d7d4ee3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'4a1fb4ca-9a56-4069-be4a-8bf72914864d',NULL,'2024-03-30 07:14:02.458',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.910'),
('9b650b94-c0d6-49c5-964f-01aacee4d7e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'702ebb26-b834-4081-a58c-2279f0d9af03','2024-05-10 09:12:14.587',580,'KAPIDA ÖDEME - KAZIM YOL - 478202878','COLLECT','2024-05-10 09:12:14.587','2024-05-10 09:12:14.587',NULL),
('9b941a17-b866-463d-a2e6-2a7799b6d276','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'37faeeb0-a5b7-4b97-8159-3e4c585ae6f8','2025-06-27 17:09:48.460',3600,'KAPIDA ÖDEME - ÖZKAN ÖZKOŞAR - 910756975','COLLECT','2025-06-27 17:09:48.460','2025-07-01 09:19:38.954',NULL),
('9b9d13c5-eda1-432b-ac8d-79de53b5f4e1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f','2024-11-23 14:42:15.312',1100,'KAPIDA ÖDEME - BAHATTİN AGİT ÇELİK - 614350153','COLLECT','2024-11-23 14:42:15.312','2024-12-02 09:51:49.376',NULL),
('9bd79549-1a67-4a7d-b1a6-2fd7ba690584','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'9326d3b9-2f43-4c06-80e8-7b468e9642ab','2024-12-09 07:48:34.764',1295,'KAPIDA ÖDEME - SARA BOBAJ - 735173063','COLLECT','2024-12-09 07:48:34.764','2024-12-17 19:52:32.750',NULL),
('9bd9640c-3c51-447a-bd67-d43900e9f0b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'152de64e-7685-4980-ac8b-8970beb190fd','2025-06-14 12:34:09.617',850,'KAPIDA ÖDEME - GÖZDE TEMİZ		 - 910670298','COLLECT','2025-06-14 12:34:09.617','2025-06-18 08:08:50.179',NULL),
('9bef24bc-1078-4f70-b800-ddc3dbc3a4ea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'834cc505-c304-4e3e-8d96-1e57f8a7cd48','2024-10-12 11:16:05.543',1300,'KAPIDA ÖDEME - REMZİYE UNAT - 976898541','COLLECT','2024-10-12 11:16:05.543','2024-10-12 11:16:40.545',NULL),
('9bf19230-da08-4d53-928e-28d986073794','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,NULL,'afe0ae69-06ca-44c7-8928-75ee9c95e9f3','2025-09-18 06:43:39.389',1425,'KAPIDA ÖDEME - MERVE İÇEN - 351330330','COLLECT','2025-09-18 06:43:39.389','2025-09-18 15:48:17.518',NULL),
('9c6923c8-cc39-4c51-8852-d80ae969b7a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf','2025-04-11 12:26:08.423',1200,'KAPIDA ÖDEME - ABARDİ NOURDİN - 221624848','COLLECT','2025-04-11 12:26:08.423','2025-04-15 14:54:58.058',NULL),
('9c884484-6af6-436a-b5ec-8a89b9f72054','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,NULL,'2024-11-08 17:23:07.895',4640,NULL,'COLLECT','2024-11-08 17:23:16.407','2024-11-08 17:23:16.407',NULL),
('9cbfdde4-48c2-4d2b-afe7-8045df1cad24','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'bd298d61-17ac-40db-8ec3-3741f3c4e017','2025-07-26 07:29:09.322',550,'KAPIDA ÖDEME - SUHAD AL-ASADİ  - 675124573','COLLECT','2025-07-26 07:29:09.322','2025-07-26 08:40:12.400',NULL),
('9cc0f838-3934-4ecf-8f96-1f3b014f7868','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'f0fd560a-44c1-4908-9784-45a3c9fbd2f7','2025-06-16 12:51:20.590',4000,'KAPIDA ÖDEME - FAZIL İSPANYA - 42892944','COLLECT','2025-06-16 12:51:20.590','2025-06-18 08:08:50.179',NULL),
('9cdc54f0-e19c-429b-b4be-1645d6bd9b32','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e34a405c-b206-4de1-aca3-4f8e33268107','2025-03-12 18:40:51.326',1300,'KAPIDA ÖDEME - MEHMET KIRMALI - 745471905','COLLECT','2025-03-12 18:40:51.326','2025-03-12 19:01:22.362',NULL),
('9cf1ddb7-fde3-45d9-b47f-21cb0adce270','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'8f4e86b2-0ef1-4837-b7be-63270a8f0af2','2024-12-09 07:57:08.233',4205,'KAPIDA ÖDEME - CANSU EVCİ - 735318305','COLLECT','2024-12-09 07:57:08.233','2024-12-17 19:52:32.750',NULL),
('9d094208-7145-4504-8a51-ef93ae792faa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'bd527c1b-2a83-4e69-9c2d-979c479102b0','2024-10-02 09:55:18.767',900,'KAPIDA ÖDEME -  - 248383650','COLLECT','2024-10-02 09:55:18.767','2024-10-02 09:55:18.767',NULL),
('9d2c04d8-d7f0-4369-b70d-0892ca8f9726','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'9d816e36-46d4-475f-ab4d-8dc4e121cb72','2025-02-18 16:34:20.210',750,'KAPIDA ÖDEME - MUSTAFA DÜNDAR		 - 910775394','COLLECT','2025-02-18 16:34:20.210','2025-02-27 13:37:30.441',NULL),
('9d4d233c-e838-46d6-8c21-eee1b44d45f9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f9d93c62-66a8-418a-abd8-01753a82e84d','2025-07-11 07:57:47.163',1400,'KAPIDA ÖDEME - SAVU ALİN  - 98221051','COLLECT','2025-07-11 07:57:47.163','2025-07-11 08:00:02.599',NULL),
('9d694852-e754-4763-adaa-1d02f8ab47ee','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c7da4efa-976f-41bb-a365-004594890133','2025-07-18 17:50:30.903',1550,'KAPIDA ÖDEME - CANDAN ÖZDEMİR - 371251508','COLLECT','2025-07-18 17:50:30.903','2025-07-22 16:18:49.641',NULL),
('9d7199f9-e6ca-4286-b19a-2586c1b3e110','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1','2025-03-27 08:02:20.217',1150,'KAPIDA ÖDEME - SONGÜL GÜRKAN - 976843037','COLLECT','2025-03-27 08:02:20.217','2025-03-29 13:37:01.615',NULL),
('9d97f6a2-b8e4-4f09-855c-51b1ca2e69c6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'2aaae1dd-f6fd-4240-80c3-399ffba3fc37','2025-03-25 09:39:17.021',2800,'KAPIDA ÖDEME - SAMED DERE - 910717262','COLLECT','2025-03-25 09:39:17.021','2025-03-29 13:56:05.249',NULL),
('9d9ce291-d887-40b8-9e4e-527749f8955d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'be6b74bb-6b56-429f-8118-650dc26879d4','2025-07-17 09:35:48.465',950,'KAPIDA ÖDEME - ABDULLAH ÖĞRETEN - 644917251','COLLECT','2025-07-17 09:35:48.465','2025-07-17 09:36:36.398',NULL),
('9dd8b87d-554f-4f07-89aa-bf8ea50edac1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'6dce8b90-0bb7-4578-ad31-082486aad8f2','2025-09-12 11:09:53.496',8000,'KAPIDA ÖDEME - İSMET  IRMAK - 614659832','COLLECT','2025-09-12 11:09:53.496','2025-09-12 11:09:53.496',NULL),
('9e31578b-8af1-4707-9c5f-f08d4f27a48d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d7a5b03e-dc29-4fad-b4f7-81ce8f971136',NULL,NULL,'1c1071fa-bd95-40d4-8ed1-ab7e019add96','2025-06-06 02:45:58.002',500,'KAPIDA ÖDEME - FERHAT  - 750728735','COLLECT','2025-06-06 02:45:58.002','2025-06-06 02:46:03.729',NULL),
('9e4e8653-a466-458a-b384-58db1ed87f30','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,'36f25521-b01c-4589-be32-1479a5a1b79e','2024-04-07 21:18:35.709',750,'KAPIDA ÖDEME - Mirkan cem - 315164103','COLLECT','2024-04-07 21:18:35.709','2024-04-08 10:39:44.443',NULL),
('9e5ca8aa-0643-40b4-b907-0e902bab312d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'b5e77378-5244-46e2-a563-c188060aab93','2024-11-29 13:26:50.238',1450,'KAPIDA ÖDEME - RAMİN HUSSEİNİ - 44920682','COLLECT','2024-11-29 13:26:50.238','2024-12-09 17:29:19.987',NULL),
('9e84b5e3-95cc-4121-a85a-4722e42b20c4','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'635836b6-8a00-4f08-aa34-ecc10b10490c','2025-05-14 16:56:37.597',1500,'KAPIDA ÖDEME - HARUN ERCAN - 127847689','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('9eb3eee5-6747-49d4-9a75-0e0c7102098c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'0b896bd7-2c3b-47b7-8e7c-81c9ececb79e','2025-07-11 07:57:47.148',800,'KAPIDA ÖDEME - ORASAN DAVUT  - 98275727','COLLECT','2025-07-11 07:57:47.148','2025-07-11 08:00:02.537',NULL),
('9efd8351-e334-40a2-b9e0-ca3a24840ab2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'259921e5-33a8-46ab-8da6-91a44b26b420','2025-09-01 06:45:43.681',940,'KAPIDA ÖDEME - NİSA PARLAR - 437895842','COLLECT','2025-09-01 06:45:43.681','2025-09-05 08:55:11.066',NULL),
('9f03032f-2917-425e-b1e9-280c40568066','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a7037727-81db-4381-841e-e0b4f6b5366b','2024-11-23 13:40:39.437',2200,'KAPIDA ÖDEME - DAVUT YILDIRIM - 745991438','COLLECT','2024-11-23 13:40:39.437','2024-12-02 09:51:49.376',NULL),
('9f2a2679-edd3-4cf4-bae2-2db2154b973b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'f5369bfb-80d6-4971-9b20-e83e88c077e9','2024-07-20 10:56:22.090',350,'KAPIDA ÖDEME - CAN GLAS GMBH - 412603598','COLLECT','2024-07-20 10:56:22.090','2024-07-20 10:56:22.090',NULL),
('9f8ef3e6-dc0a-432f-a96e-6593b0c2c935','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'72d228c3-4890-476a-b92a-a7a953a0be97','2024-11-21 10:13:39.531',200,'KAPIDA ÖDEME - SAKİNA RAHİMİ  - 449108957','COLLECT','2024-11-21 10:13:39.531','2024-12-09 08:24:38.479',NULL),
('9fe9c254-e4c3-4d93-bd34-48353176b0c7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'46858fce-23b4-4734-be3f-9ef1f6cd02e6','2025-05-28 18:45:21.684',400,'KAPIDA ÖDEME - SWETLANA NESCHİNSKİ - 221989961','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('a007c9f0-e09a-4ae9-b642-73461a8972be','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a19d66bb-d207-4329-bba8-b2b0c50bd4f6','2025-09-02 12:04:14.921',1500,'KAPIDA ÖDEME - NERGİZ TOPRAK - 371540742','COLLECT','2025-09-02 12:04:14.921','2025-09-12 17:16:02.676',NULL),
('a00935b1-b958-4e10-8d4d-020b6b176543','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'77e78f51-be80-4b08-a516-e9fc28d5622f','2025-10-02 11:02:54.255',800,'KAPIDA ÖDEME - BURÇİN MEN - 745970479','COLLECT','2025-10-02 11:02:54.255','2025-10-02 11:05:59.156',NULL),
('a0218c94-291d-4aa8-842e-05c80ebee1ab','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'fdbd5255-796f-4278-a5b0-0661f2660929','2024-09-16 07:56:01.198',1500,'KAPIDA ÖDEME - YILDIZ DEMİR - 449715358','COLLECT','2024-09-16 07:56:01.198','2024-09-18 21:40:09.183',NULL),
('a03bd999-1a0c-489c-99a4-5f89189a1794','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ef665960-85ce-48ac-b924-d42b48473988','2025-01-05 13:51:16.891',1000,'KAPIDA ÖDEME - HATEM  - 221341784','COLLECT','2025-01-05 13:51:16.891','2025-01-07 17:06:26.160',NULL),
('a03bdeeb-ff2b-468f-8daa-aa3978da8e41','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'88f68865-5f11-4a8f-8f8d-1e298ec5ff03','2025-03-27 08:52:32.483',1700,'KAPIDA ÖDEME - YASEMİN YAŞA - 745818939','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('a04fb1be-52ed-4588-b8ae-69d39595c251','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b419b47d-089e-47f1-a6c9-53e095e845bb','2025-07-04 09:15:47.139',300,'KAPIDA ÖDEME - ZEKİ ASLANER - 248799636','COLLECT','2025-07-04 09:15:47.139','2025-07-07 11:44:52.788',NULL),
('a091373d-b157-4d71-8e75-d7f8d68b4d4a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,'6d9db45b-999e-401c-84f3-c6b4dbc128ec','2024-09-05 16:25:21.192',250,'KAPIDA ÖDEME - EURO MOBEL - 107394609','COLLECT','2024-09-05 16:25:21.192','2024-09-07 13:25:52.245',NULL),
('a0a4ee6e-73ad-44a3-ae10-5f4c1e452bc0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'e9f2fa6f-b59c-49e1-86a0-fb4a60531062','2024-08-07 14:44:48.906',500,'KAPIDA ÖDEME - HALİL İBRAHİM BACAKSIZ - 976894167','COLLECT','2024-08-07 14:44:48.906','2024-08-07 14:44:48.906',NULL),
('a0d23eec-2c46-47bf-a1ae-241bfa1ee590','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'8ab9b43a-c91d-4cac-9d3a-646d10808a99','2025-10-03 15:04:04.863',390,'KAPIDA ÖDEME - FATMA SILA KAÇAK - 644194590','COLLECT','2025-10-03 15:04:04.863','2025-10-03 16:08:51.186',NULL),
('a0dc2f21-ef86-4908-9be5-f64a19097f55','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'d6968286-4388-4d14-a075-b49d0ae8ae44','2025-08-30 12:05:07.637',800,'KAPIDA ÖDEME - SANAA ARGANE - 221573899','COLLECT','2025-08-30 12:05:07.637','2025-09-05 08:55:11.200',NULL),
('a1159f38-d598-4199-918b-51d2a195d8e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'99c9a988-01a1-474c-b7f5-70e4528c16c4','2025-07-17 09:35:48.480',800,'KAPIDA ÖDEME - SİNEM ULUSOY - 37183091','COLLECT','2025-07-17 09:35:48.480','2025-07-17 09:36:36.391',NULL),
('a117ea5a-958d-48e2-a1e1-cb8cd82a4931','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,NULL,'2024-04-01 09:10:42.593',880,'HESAP TEMİZ','COLLECT','2024-04-01 09:10:56.846','2024-04-01 09:10:56.846',NULL),
('a11a1592-15d2-41b2-8278-8df96739275a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'df1bdbce-6acd-4f06-a1de-4bed9b2e4548',NULL,'2024-03-30 07:14:02.008',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.957'),
('a168e575-4ed1-4c34-b368-7e2930baa923','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'7d5e9833-8a69-43a6-8c18-775c82287e7a','2025-08-14 08:50:57.228',4000,'KAPIDA ÖDEME - MERYEMA TEKİN - 478322325','COLLECT','2025-08-14 08:50:57.228','2025-08-15 20:59:04.981',NULL),
('a178e2da-27aa-4461-9df0-7b8f321a2306','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a349e6ca-f1b8-46ae-908a-a7f522ecfdf1','2024-10-11 09:34:42.709',1000,'KAPIDA ÖDEME - MEHMET ÇOBAN - 478244236','COLLECT','2024-10-11 09:34:42.709','2024-10-11 09:34:42.709',NULL),
('a18674a3-dd5c-4a38-96c3-c8bd072079bb','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2c5c126c-885b-423a-9e95-19a5f6a09a61','2025-08-14 08:50:57.204',700,'KAPIDA ÖDEME - LABABABİD WEJDAN - 478417862','COLLECT','2025-08-14 08:50:57.204','2025-08-30 08:14:47.130',NULL),
('a1a46c03-e1bb-4c66-b2e5-737267537914','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'bb762283-8174-47c0-a88d-3bf09d7ccd91',NULL,'2024-03-30 13:00:49.551',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.635'),
('a1b65b52-a4c4-46f3-a1d2-6367385661e1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ec083d8c-b8c3-4e4b-9b30-be29d90cad55','2025-03-25 19:20:46.451',1100,'KAPIDA ÖDEME - MEHMET ÖZKAN - 478794904','COLLECT','2025-03-25 19:20:46.451','2025-03-29 13:37:01.615',NULL),
('a216e91b-71c4-4870-b939-b0a8c8c8b91d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'0057de4c-fa8f-4061-a2b1-334d4c1637e1','2025-08-14 08:50:57.197',845,'KAPIDA ÖDEME - ZERDOUN SALOME - 437573248','COLLECT','2025-08-14 08:50:57.197','2025-08-15 20:59:04.907',NULL),
('a228085c-1c7d-452b-bd41-e71fc93dc54f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'10996a31-f7d7-4dfb-a90b-6bf90d8104be',NULL,'2024-03-30 13:00:50.098',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.756'),
('a249aba4-04ad-4a9b-9325-46d9c8e83d8e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'aae71aff-c951-458b-ba97-38d2072aa657','2025-07-16 14:02:25.349',420,'KAPIDA ÖDEME - BELLA MEUBEL - 412102597','COLLECT','2025-07-16 14:02:25.349','2025-07-16 14:21:29.608',NULL),
('a25e888b-a1d0-48e6-a83e-fad2a7bf2e16','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e5e308b4-eb36-49b0-9b2b-29f68833ea66',NULL,'2024-03-25 11:45:12.782',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.732'),
('a2630484-fcd3-4890-85f6-0710041f3152','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'3a6116b3-b977-4787-9877-ea0b090bc7e7','2025-08-27 08:40:21.991',800,'KAPIDA ÖDEME - OSMAN SATİCİ - 614536111','COLLECT','2025-08-27 08:40:21.991','2025-09-03 06:09:36.676',NULL),
('a2647927-01ce-4f9c-9471-0ed7ffad4fce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'f5d77768-b445-4580-b1a1-2e07f2bb9f93','2025-04-19 10:12:45.918',675,'KAPIDA ÖDEME - NESLİHAN KÖSEM		 - 910316067','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('a2704ab6-6130-4c5c-965b-b23bf64de479','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'af5fa1f9-a15e-47b6-96f7-530e8fa3fec2','2025-04-25 15:41:06.232',800,'KAPIDA ÖDEME - MENEKŞE SEVEN - 598508016','COLLECT','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('a28b98ac-0d8d-45c8-97e5-85bd82766c2f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'d7b0bb03-c914-41e5-8899-697339f7e562','2024-03-30 09:57:18.668',1450,'KAPIDA ÖDEME - FATIMA KRISHMA - 982164642','COLLECT','2024-03-30 09:57:18.668','2024-04-01 16:38:18.209',NULL),
('a29b6a3e-2a18-4140-b109-c64b6a87a910','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'2fb92d16-b307-4896-974c-b96cb9542bc6','2025-10-03 15:04:04.772',1800,'KAPIDA ÖDEME - BÜŞRA POYRAZ - 371508043','COLLECT','2025-10-03 15:04:04.772','2025-10-03 16:08:51.091',NULL),
('a29c357c-0167-43e3-8408-bfa3df7f489e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'a8888d05-159a-4d87-90a8-88a98dc908ae','2025-08-22 19:43:14.416',5800,'KAPIDA ÖDEME - AYDIN SARI  - 011399882','COLLECT','2025-08-22 19:43:14.416','2025-08-22 20:20:00.057','2025-08-22 20:20:00.056'),
('a2de076e-54db-47b0-8a45-cb1aa84b4c13','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115','2025-10-13 10:17:43.293',2500,'KAPIDA ÖDEME - YASİN DOVENSE - 41283852','COLLECT','2025-10-13 10:17:43.293','2025-10-13 10:18:17.141',NULL),
('a2e6b9c7-d579-40dc-bf5e-043364ef2aec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'d7d56728-9768-4bf8-8387-7f8b0fc62a6f','2025-02-03 17:59:08.362',700,'KAPIDA ÖDEME - FATMA FİLİZ DEMİR - 910657387','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('a351a9a7-44a1-4232-8c03-fb281f9bb481','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'3753ec0d-793c-43d2-920b-d39827ee0154','2025-01-03 09:11:43.420',400,'KAPIDA ÖDEME - NASTENA IROBE-POŞETLER - 248539327','COLLECT','2025-01-03 09:11:43.420','2025-01-05 14:06:53.366',NULL),
('a3aa1eaa-4464-4ad8-9d24-dd1564f0128b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'1d8366a7-8e61-4b91-ad70-62acf43daa32','2024-11-23 14:42:15.312',1100,'KAPIDA ÖDEME - KIYMET KARA - 478606230','COLLECT','2024-11-23 14:42:15.312','2024-12-02 09:51:49.376',NULL),
('a3ab09b8-7332-4b4d-9fb8-5670b259f93d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'9aaeab80-cfa4-4210-b789-4d7ae0454982','2024-04-29 09:55:36.593',1260,'KAPIDA ÖDEME - DARAYYA MÖBEL - 248771792','COLLECT','2024-04-29 09:55:36.593','2024-04-29 09:55:36.593',NULL),
('a3d039da-350d-435f-9ee6-03a17af0a2ca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3c3d8662-c519-424b-a30b-3c4e5d01c1e1','2024-11-23 14:29:59.921',1100,'KAPIDA ÖDEME - AKKAY NADİA - 22133183','COLLECT','2024-11-23 14:29:59.921','2024-12-02 09:51:49.376',NULL),
('a416767c-399e-4cd1-bf06-9dcf5b0d6dcb','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'21454fc9-f40e-4ffc-b94d-8c647a484482','2025-06-20 16:20:46.803',700,'KAPIDA ÖDEME - CAFER BEY - 248630618','COLLECT','2025-06-20 16:20:46.803','2025-06-27 08:25:57.845',NULL),
('a417f2a8-17b2-4f78-9f9d-2adeff8d9546','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ae77010c-fd9b-4dda-9995-d94d5c8976bb','2025-08-15 14:18:27.815',5200,'KAPIDA ÖDEME - OĞUZHAN TIĞ - 478824521','COLLECT','2025-08-15 14:18:27.815','2025-08-18 08:09:19.453',NULL),
('a4580b16-3a33-410a-a741-17dfe5e35abf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'944463e8-220a-4540-bab2-ef92cb495c59','2025-04-26 15:32:24.686',250,'KAPIDA ÖDEME - EMRE - 248968905','COLLECT','2025-04-26 15:32:24.686','2025-04-26 16:02:30.708',NULL),
('a45b525b-6f8e-4b2e-abd8-7ce31587c3e9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'0c8bac25-5433-4bd6-bcc9-b94a47de9047','2024-08-31 13:17:51.874',1600,'KAPIDA ÖDEME - BOUKİ BOUCHRA - 982918194','COLLECT','2024-08-31 13:17:51.874','2024-08-31 13:17:51.874',NULL),
('a48a1a54-05d7-4b6b-af31-44ff6b05dd2a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'d6c86bc4-621a-47c9-bff7-65a8004b9c59','2025-03-24 12:25:13.927',1550,'KAPIDA ÖDEME - AJLA ORUC  - 982329375','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('a4b45a22-5155-4ae9-a0d5-0da6eaf397e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'2b9b8352-38a1-462f-8872-8754c00e64e4','2025-10-13 07:14:08.923',1200,'KAPIDA ÖDEME - YOLCU EVİN - 515463699','COLLECT','2025-10-13 07:14:08.923','2025-10-14 09:26:02.880',NULL),
('a4bae372-4898-4e33-91f8-a585f3502c63','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'37c5e10d-e0b6-4c94-85c7-2b6278fcee2c','2025-05-24 10:58:02.722',350,'KAPIDA ÖDEME - IVANA JURCEVİC - 437869312','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('a4e777f8-f987-4679-9995-b71a42dce042','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'bb90725b-84e6-4211-8728-367d09c14525','2025-02-18 16:29:44.418',960,'KAPIDA ÖDEME - POLAT - 412346704','COLLECT','2025-02-18 16:29:44.418','2025-02-27 13:37:30.441',NULL),
('a4ff6aed-2e03-4fee-826e-089451c98a52','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'98f2dea4-caf9-419a-931c-7d9d7c9b36ac','2025-04-19 10:12:45.918',1600,'KAPIDA ÖDEME - BOURAS ABDELGHANİ - 501703321','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('a5389db5-5fdb-449f-98cc-b4e9b35a3d13','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'8cc2607c-b005-4e4e-858a-0729fc8630a4','2025-07-08 12:54:05.094',200,'KAPIDA ÖDEME - ARMİN İMERİ SSH - 221471794','COLLECT','2025-07-08 12:54:05.094','2025-07-08 12:54:05.094',NULL),
('a585922d-3476-4b93-a28a-d53095b0dd54','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'864782d3-b9d9-42bb-b370-cce193db468b','2025-04-15 09:07:09.163',375,'KAPIDA ÖDEME - MEHMET GÖK - 613420026','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('a587839b-3d1b-4db0-a1de-5821f7130546','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'c2acc395-6485-49a4-be2f-5ad47b678cb0',NULL,'2024-03-30 13:00:49.699',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.675'),
('a58a17a2-bbb2-46d9-afa1-d272d8bf069f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'ed33a630-2ac9-4148-a314-b2a44a100a96','2025-09-02 12:04:14.928',1100,'KAPIDA ÖDEME - BURHAN BAYRAKTAR - 644758410','COLLECT','2025-09-02 12:04:14.928','2025-09-02 14:46:19.407',NULL),
('a5a5078b-6de8-4e33-8a0f-10fffc195e85','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0b9e594a-9050-45a0-a4fd-c58ac204bb9d','2025-09-23 07:43:59.527',1900,'KAPIDA ÖDEME - UMUT YÖRÜK - 644243216','COLLECT','2025-09-23 07:43:59.527','2025-09-24 13:41:15.034',NULL),
('a5ab2d99-fe2e-49e3-b534-3d9635217c6b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'61814c87-b908-4fb2-ba7f-eae762fc1882','2024-07-20 10:42:26.356',2350,'KAPIDA ÖDEME - ŞEYDA ŞAHİN - 9824380','COLLECT','2024-07-20 10:42:26.356','2024-07-20 10:42:26.356',NULL),
('a5c7e822-e6fd-4252-811f-e3c7adc0d1df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3','2025-05-28 19:05:41.771',200,'KAPIDA ÖDEME - SEMA KUZULUK SSH - 644635640','COLLECT','2025-05-28 19:05:41.771','2025-05-28 19:05:44.543',NULL),
('a5d58c2a-32a6-4b74-9d31-7ff0898cf5c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2','2025-02-03 17:59:08.362',575,'KAPIDA ÖDEME - LEPETİT CHRİSTELLE - 221987558','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('a5e5b899-0f56-4823-abff-481cdcc8d95c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'79c8efb8-c504-45ca-bec0-780372b87574','2025-01-26 10:51:58.409',250,'KAPIDA ÖDEME - ÇUVAL  - 976423277','COLLECT','2025-01-26 10:51:58.409','2025-01-29 12:24:52.459',NULL),
('a5fe6615-0ff3-41d5-981a-6c8e0da5a347','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d92bec02-a9d2-4e8e-88e6-6b64208e6b26',NULL,NULL,'65fd407c-2335-4e5b-a51c-a9a8124139b8','2025-09-10 06:49:18.573',250,'KAPIDA ÖDEME - ALMİRA - 920610594','COLLECT','2025-09-10 06:49:18.573','2025-09-10 07:11:56.205',NULL),
('a6656d19-20a2-4047-9386-0a59262c9d20','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d15a709f-fa29-4813-a00d-cb2854f71f87',NULL,'2024-03-30 07:25:34.194',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.607'),
('a66ca666-8143-42c1-856d-67bdb9589bd6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'b813dd27-a1e6-41aa-b813-0dfa0052b27c',NULL,'2024-03-30 07:25:33.043',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.640'),
('a67d1b9f-cbf1-47e8-a2ad-c12a47e416b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'29ad9f78-9c53-4873-a500-c56a5fe3e826','2025-10-17 06:45:24.577',1000,'KAPIDA ÖDEME - MEHMET SEVİM KEBELİ - 59856960','COLLECT','2025-10-17 06:45:24.577','2025-10-17 10:53:07.505',NULL),
('a69732b5-55f3-4020-be32-e47211b3364e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'f88a76d7-303d-42cd-8c6a-7f28ae3b408e','2025-04-30 13:44:23.805',950,'KAPIDA ÖDEME - MURAT TEKİN - 371437952','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('a6c38a99-6749-416e-beba-af5bd057197d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3fe8ec1d-272b-4989-b3fb-4322708f7edf','2025-01-26 10:26:43.612',1050,'KAPIDA ÖDEME - VEYSEL POLAT - 221362176','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('a6ce054a-cbc2-4ca6-9fa6-4c1914c94064','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'3008395f-ad73-440c-95df-6a289efc5dab','2025-05-28 18:50:18.071',1500,'KAPIDA ÖDEME - YAŞAR YALMAN - 478559056','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('a6d07245-7a77-450f-9565-113b6091331d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'0206cc12-5924-408c-bbe9-7a7984e214d8',NULL,'2024-03-30 13:00:50.854',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.743'),
('a6da3607-5304-4fe9-a097-4d47fd0362bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'2c711d77-8430-46fd-aafd-42fbd20c1258',NULL,'2024-03-30 07:14:02.708',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.954'),
('a7071e4b-6d91-4770-9a26-42892e51c6ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'356bdd4e-5e08-4f43-9351-bdf6b54cdbb4','2025-02-27 11:02:40.269',550,'KAPIDA ÖDEME - MELEK IŞIK - 64418413','COLLECT','2025-02-27 11:02:40.269','2025-03-21 17:17:29.974',NULL),
('a73b1a0a-7450-42a9-8660-b28020913c4c','DEFAULT-EUR','173956a2-c232-495a-b036-4a6a36c073e2','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'e2cd59c5-096c-4f6a-9181-6be527344ec8','2024-10-31 18:30:24.257',2620,'KAPIDA ÖDEME - Ayşegül telli - 449235098','COLLECT','2024-10-31 18:30:24.257','2024-10-31 19:01:36.125','2024-10-31 19:01:36.131'),
('a748709a-7fb0-4ed7-b212-22018dbc379e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'383fe013-af48-41d5-ad33-ad7c8b16446b','2025-01-10 08:54:21.157',3300,'KAPIDA ÖDEME - SEYİT GENÇALİOĞLU  - 221476651','COLLECT','2025-01-10 08:54:21.157','2025-01-10 08:54:21.157',NULL),
('a76ea5bd-779c-4f0b-9bf3-451ad0a0e110','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'2b6577a2-c3ad-4aca-8b8b-446c848207f1','2025-08-25 11:36:09.182',1000,'KAPIDA ÖDEME - SERKAN KAHRAMAN - 221254389','COLLECT','2025-08-25 11:36:09.182','2025-08-25 12:11:45.701',NULL),
('a7ac6327-fe6f-47c1-83a9-637da59601b6','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'4beeb944-7865-42f1-92a5-015bdc8f8dcb','2025-07-29 12:30:31.504',1125,'KAPIDA ÖDEME - MELİSA  - 817630523','COLLECT','2025-07-29 12:30:31.504','2025-07-29 12:37:20.387',NULL),
('a7e300f4-1965-4a3e-9c2c-98ed9f65a51e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5','2024-12-27 11:46:00.462',560,'KAPIDA ÖDEME - EMEL AYKAÇ - 735258843','COLLECT','2024-12-27 11:46:00.462','2024-12-27 12:23:49.166',NULL),
('a7f89cf2-0823-404e-849a-9d95479a609c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'8385b6e4-e1a2-43de-b257-e53a890a4c6b','2025-06-27 17:09:48.551',790,'KAPIDA ÖDEME - NERMİNA SKENDERİ - 371749484','COLLECT','2025-06-27 17:09:48.551','2025-07-01 09:19:38.982',NULL),
('a7fa0002-e2e2-4e3b-9e8b-9aee504434e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1b6f0f97-a485-43b5-9b80-a51adf1e7b83','2025-02-23 12:18:58.301',690,'KAPIDA ÖDEME - ORHAN ÖZSOY - 745140498','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('a81a1574-a23c-4a67-a9c5-b4c347375e3f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1f693920-f2af-4070-9034-3b5ae439f603','2024-09-18 21:09:24.726',1350,'KAPIDA ÖDEME - PEPE DİMBİ GRACE - 982219496','COLLECT','2024-09-18 21:09:24.726','2024-09-19 17:45:37.272',NULL),
('a8239ff3-55eb-47b2-9f2d-1d405d6c9aea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5','2024-12-13 12:40:16.912',2850,'KAPIDA ÖDEME - YALÇIN - 735553146','COLLECT','2024-12-13 12:40:16.912','2024-12-16 18:41:52.448',NULL),
('a826ff74-f042-4e31-a60e-79d8f38e570f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,NULL,'2024-11-08 16:49:37.789',-17000,NULL,'PAYMENT','2024-11-08 16:49:46.613','2024-11-08 16:49:46.613',NULL),
('a849fb70-6865-4314-b12b-5f9ae72066e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5b3baf2b-7f2f-4d1b-b94e-916816876346','2025-08-07 16:12:15.192',790,'KAPIDA ÖDEME - CEYLAN ÇELİK - 745747218','COLLECT','2025-08-07 16:12:15.192','2025-08-12 08:07:30.311',NULL),
('a858e662-ee87-47c0-ab5e-f1edc910d331','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e71c747c-650e-428d-b0f0-4bd431181e74',NULL,'2024-03-30 07:14:01.157',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.889'),
('a869df34-7fb8-4469-b908-d3b1bec11f8a','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','2025-05-14 16:56:37.597',4500,'KAPIDA ÖDEME - ABUZER TEKCE - 319232330','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('a8932ea9-6ccc-41f6-b071-fc0e9945730a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'bbbfec16-7fc6-4768-8141-eb412f41dde7','2025-05-28 18:50:18.071',1600,'KAPIDA ÖDEME - CAN DERİN - 517337381','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('a8b4925a-d60a-4c0b-8178-ac5237edecce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3fd2af84-ab67-49bb-a6d0-0a0c71de818d',NULL,'2024-03-30 13:00:49.254',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.601'),
('a8b6c1d6-bffe-4f36-b234-ba22f2c8135a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'936577ed-02ef-44c5-9226-4d241235c1bf','2025-10-22 07:51:14.158',900,'KAPIDA ÖDEME - ADRİANNA WİEMANN - 505724535','COLLECT','2025-10-22 07:51:14.158','2025-10-22 11:29:52.771',NULL),
('a90bb47e-10ee-43e6-aca0-426ee585183f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'5038002a-b4fa-4ffd-b9c8-c48aca58f88d','2025-05-28 18:50:18.071',825,'KAPIDA ÖDEME - RABİA AKKUŞ - 644507096','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('a9ae0771-4ead-44e1-a292-658d2fe0b347','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d9b0ce74-5697-4dc6-bd7d-0842b76d7082',NULL,'2024-03-30 07:14:01.958',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.949'),
('a9d8f47d-e69e-4908-ab51-166a5503c6c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'5deaab6d-c7b6-40f1-a897-d1f9e87d89ca','2024-11-02 09:16:02.250',500,'KAPIDA ÖDEME - MESUT BEY - 248720273','COLLECT','2024-11-02 09:16:02.250','2024-11-02 09:16:02.250',NULL),
('a9dbe195-8adc-4c85-bf1a-b8124b919d6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'820d81ce-055d-4070-84ca-4f9b767e4da5',NULL,'2024-03-30 07:14:01.057',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.022'),
('a9de4113-dd41-49e4-8c25-cc5d53d9a9a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a8bd3c61-ea6f-4b4b-9dc8-6a8216426958','2024-09-28 15:31:40.530',900,'KAPIDA ÖDEME - ZİYA ALTIN - 745390643','COLLECT','2024-09-28 15:31:40.530','2024-09-28 15:31:40.530',NULL),
('a9de4eb0-da1d-4e4a-973c-3a9eef99e095','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'c6f6261d-9af4-4463-9afd-4a26817ea19f','2024-11-15 16:45:31.933',1700,'KAPIDA ÖDEME - SEVİLAY BÖLER - 745824914','COLLECT','2024-11-15 16:45:31.933','2024-11-28 09:15:31.466',NULL),
('aa230447-f38f-4920-be2d-ef7222914f17','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'5d3f012b-7248-479f-97ec-c01599311f5c','2025-03-12 18:37:42.098',350,'KAPIDA ÖDEME - MARİANE SARKİS - 338426911','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('aa3504b0-d6de-4207-baa2-bc4f529643f8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f0abc24d-9737-42f3-a9fd-11c5e59d1b61',NULL,'2024-03-30 13:00:50.551',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.751'),
('aa35ad50-c5ee-4184-a6b1-c5d2008b0dad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'c7858430-6187-438e-9e7e-600528fb9aeb','2025-08-14 07:43:55.157',460,'KAPIDA ÖDEME - VLORİNA BERİSHA - 613378961','COLLECT','2025-08-14 07:43:55.157','2025-08-14 08:02:29.798',NULL),
('aa579055-3f5d-400b-9495-7b0791872d24','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'e3db4a37-eb88-4141-a1ac-f9dc8586b414','2025-09-06 17:04:26.048',495,'KAPIDA ÖDEME - FAZİLET ÖZÇELİK - 437232562','COLLECT','2025-09-06 17:04:26.048','2025-09-10 12:48:00.880',NULL),
('aa7147c9-6edb-486a-961a-298aec6f12ed','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'79b8f307-f370-445c-a869-4986e76c6399','2025-07-29 12:30:31.468',740,'KAPIDA ÖDEME - GÜLNUR ENGİN - 598585736','COLLECT','2025-07-29 12:30:31.468','2025-07-29 12:37:20.433',NULL),
('aa9c6be8-5237-4b8e-a5e3-b5d4d1252efd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'862c3997-124c-487c-86b2-4bc8c8575b1f','2025-06-05 14:21:46.729',1000,'KAPIDA ÖDEME - ŞEVKİ MORİNA - 976765698','COLLECT','2025-06-05 14:21:46.729','2025-06-06 02:46:03.729',NULL),
('aab98764-2ad0-4d8d-b7af-9031610fc762','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'f7ef839c-2795-4f15-80a8-414937600965','2025-07-12 09:16:05.686',500,'KAPIDA ÖDEME - HARUN - 412302460','COLLECT','2025-07-12 09:16:05.686','2025-07-16 14:21:29.672',NULL),
('aac04a1c-e332-431d-b81e-aa11b281342e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e','2025-09-16 07:10:55.407',1025,'KAPIDA ÖDEME - İSA ALTUNER(K) - 644422105','COLLECT','2025-09-16 07:10:55.407','2025-09-19 10:00:25.419',NULL),
('aaf03027-59be-447d-a04f-4bed703dc5e4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'82f2dc1e-58cf-4fd0-9936-e9927dc016f0','2025-04-19 10:12:45.918',450,'KAPIDA ÖDEME - SADOUN ABDELKADİR - 221804377','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('ab005427-630e-4727-8f9a-0c551656ffbe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'1d5b2e29-00c0-4ef0-bfe8-d62f921bed94','2024-11-02 08:12:34.909',300,'KAPIDA ÖDEME - EURO STAR MOBEL - 412417422','COLLECT','2024-11-02 08:12:34.909','2024-11-02 08:12:34.909',NULL),
('ab0511f1-13db-438c-99f4-9f2ff9f296b0','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'7dba6aad-c685-4d86-96a0-5bd7caa80a14','2025-09-12 17:03:30.350',395,'KAPIDA ÖDEME - WALDEMAR HEİNZ  - 613940015','COLLECT','2025-09-12 17:03:30.350','2025-09-12 17:16:02.662',NULL),
('ab3654fa-1c76-44a9-939b-51d47ceb5364','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'56059bd6-d32a-4603-91da-c059737a036d','2025-01-26 10:26:43.612',850,'KAPIDA ÖDEME - ALEV DOĞRU - 478860616','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('ab487849-da8a-4e9d-be66-d6be3bccb7ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'ada30e7c-1819-48d8-b086-9ceffe365e0b','2025-10-25 08:53:14.956',360,'KAPIDA ÖDEME - NİDA YİLDİRİM - 412939859','COLLECT','2025-10-25 08:53:14.956','2025-10-25 08:58:44.093',NULL),
('ab66a1aa-8e09-4961-8f7a-7802f1c3d2ed','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'d448143d-3fcc-4fc3-8d37-30d1af2dec9e','2025-03-27 08:52:32.483',4250,'KAPIDA ÖDEME - MECİT AVCI - 478957028','COLLECT','2025-03-27 08:52:32.483','2025-03-27 13:37:50.309',NULL),
('abf40c82-4cd9-4ed8-bd09-d5702ad64f75','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'16715384-46fe-4d2a-88d8-8467cd5c6d5b','2025-04-19 10:12:45.918',1500,'KAPIDA ÖDEME - EDİZ DİNLER - 478783487','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('ac46e5a4-7ce5-456c-9fac-5e1f38839b68','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'f8707ecf-1dbe-4a0a-87e0-a7980b1877bc','2024-03-22 07:34:35.075',1600,'KAPIDA ÖDEME - YILMAZ İNAÇ - 501901219','COLLECT','2024-03-22 07:34:35.075','2024-03-22 07:34:35.075',NULL),
('ac6c8be4-4234-4482-96b0-00331ea9653b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'72595593-1c70-4451-8d5d-15322ee88f0f','2024-05-10 08:26:10.079',2000,'KAPIDA ÖDEME - KECKİN GÜLÜZAR - 449921347','COLLECT','2024-05-10 08:26:10.079','2024-05-10 08:26:10.079',NULL),
('aca27b4c-7b9e-4418-8c40-30015095adb2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,NULL,'2024-11-12 07:56:50.210',-2142,NULL,'PAYMENT','2024-11-12 07:57:02.412','2024-11-12 07:57:02.412',NULL),
('ace85296-4c29-4ea8-a85b-ebae6e8517d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'26e7065e-7d7c-4b87-8fc9-8255ca593083','2025-10-17 10:48:44.618',600,'KAPIDA ÖDEME - MEHDİ SALİHU - 371434188','COLLECT','2025-10-17 10:48:44.618','2025-10-17 10:53:07.605',NULL),
('acff2e06-cb9d-42bd-a7e9-65514a2a2635','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'830e197e-1aa8-4f6a-9f71-58048c60d7b5','2025-02-20 08:55:34.912',1000,'KAPIDA ÖDEME - ASLI ALTINTAŞ - 478775583','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('ad36287e-b383-4d93-8f80-fd6341c7c670','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'8d9f1798-76a5-467b-a81f-d20a878b42fa','2024-12-09 09:08:23.817',850,'KAPIDA ÖDEME - MİHRİBAN SİS -TRANSJET - 735637082','COLLECT','2024-12-09 09:08:23.817','2024-12-17 19:52:32.750',NULL),
('ad7a1674-b56f-418c-9e7d-153f1ba5f9d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'98bda885-fe47-4716-8e4c-6ea1a95114e8','2025-03-25 19:27:15.880',1100,'KAPIDA ÖDEME - ŞENOL AKKOYUN - 644535273','COLLECT','2025-03-25 19:27:15.880','2025-03-29 13:37:01.615',NULL),
('ad7a5b41-9e7f-437a-bfd9-21e758d0f3ac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'2abdc40e-c15a-4ac5-a5b1-459adbffa8dd','2024-11-29 13:22:10.580',2650,'KAPIDA ÖDEME - GÜLPERİ ÜNVER  - 478415751','COLLECT','2024-11-29 13:22:10.580','2024-12-09 17:29:19.987',NULL),
('adf55983-2abd-4c90-bb1e-bbb2ad03ea08','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'8facfb49-4d23-4b98-a41c-851f07a053e4','2025-06-25 10:51:21.141',1000,'KAPIDA ÖDEME - SENEL YILMAZ - 517365072','COLLECT','2025-06-25 10:51:21.141','2025-07-01 09:19:39.004',NULL),
('ae306559-9cfd-4447-9239-b468021ccc7a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a6f1c3bd-9788-43da-8af3-996af9bfb0b2','2024-12-17 18:01:29.926',2400,'KAPIDA ÖDEME - FATMA ÜNSAL - 74565294','COLLECT','2024-12-17 18:01:29.926','2025-01-11 10:16:45.910',NULL),
('ae410c2a-469a-4af4-85ee-a02b34b63dde','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'6a7e11fc-8af7-4a54-9444-d563a0776049','2025-08-30 12:05:07.622',950,'KAPIDA ÖDEME - ÖMER YILMAZ - 644763473','COLLECT','2025-08-30 12:05:07.622','2025-09-05 08:55:11.084',NULL),
('ae6c91b6-0e6a-49f2-9aa0-91c70085805f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'1bb074a3-ddf3-432d-9ee8-e36060092ef8','2025-09-02 12:04:14.908',2800,'KAPIDA ÖDEME - MERT ÇİÇEK - 598954734','COLLECT','2025-09-02 12:04:14.908','2025-09-02 14:46:19.391',NULL),
('ae873dc7-36e4-42aa-9e02-155eab9cd292','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c77c75ce-e3d2-47ae-8608-121fa3b3621d','2025-09-06 17:00:09.118',1100,'KAPIDA ÖDEME - İBRAHİM AKIN  - 221594735','COLLECT','2025-09-06 17:00:09.118','2025-09-10 12:48:00.867',NULL),
('ae972062-e4c1-4c46-8d4c-28e872985389','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f0b80554-e825-487a-9ec5-ec30be5eade8','2024-11-15 16:52:33.414',3000,'KAPIDA ÖDEME - AMELA MULİC  - 982972858','COLLECT','2024-11-15 16:52:33.414','2024-11-28 09:15:31.466',NULL),
('ae9fb1bc-3b1e-4658-99d0-c5207bc4c152','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'2816d30a-252b-4b32-a00a-c62fbd6aa168','2025-10-02 06:39:26.368',600,'KAPIDA ÖDEME - BUNJAMİN HALİMİ  - 221962516','COLLECT','2025-10-02 06:39:26.368','2025-10-02 11:05:59.207',NULL),
('aeafb109-4383-4545-af09-1613a91e615d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a99855a1-4c2d-4b5a-b222-5fd61915169a','2025-05-09 16:49:05.440',750,'KAPIDA ÖDEME - YASEMİN GÜNDOĞDU - 644340759','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('aeb525bb-23d7-4e8b-b2d5-fa09c0378667','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'c3124b77-c71e-488a-b104-3d05e5b06ca6','2025-09-23 07:43:59.577',1120,'KAPIDA ÖDEME - MANOLYA PELİN ERDOĞAN ÖZÇELİK - 437649706','COLLECT','2025-09-23 07:43:59.577','2025-09-24 13:41:15.104',NULL),
('aebb9601-33bc-4c97-be54-c2ea075ab2bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'1710853d-7394-43e0-9868-1a68f0b61796','2025-04-19 10:16:53.375',3000,'KAPIDA ÖDEME - İBRAHİM AYIK  - 449728917','COLLECT','2025-04-19 10:16:53.375','2025-05-02 17:08:29.291',NULL),
('aec45b83-e05d-405d-92b2-d4ed3dcefd1b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a624a844-f729-4653-993f-bd28278f47e5','2024-08-20 15:03:33.531',1100,'KAPIDA ÖDEME - KORAY KÜPE - 478693155','COLLECT','2024-08-20 15:03:33.531','2024-08-23 09:05:21.133',NULL),
('aeda1ce6-464f-4130-9971-a8681a672949','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2','2025-07-18 17:45:49.963',1000,'KAPIDA ÖDEME - MERYEM BULAK - 371408514','COLLECT','2025-07-18 17:45:49.963','2025-07-22 16:18:49.521',NULL),
('aee6c304-5ddb-4509-83f1-3fc189811961','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'2c97cb3e-43a3-4446-a336-f97bc3f68c00','2025-01-26 10:22:06.784',1325,'KAPIDA ÖDEME - GURAY SEYFELİ - 221390997','COLLECT','2025-01-26 10:22:06.784','2025-01-29 12:24:52.459',NULL),
('af0597cf-2def-4d45-bbb8-bd5608d550a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'50b32b06-83ec-4001-a220-a61d557cd0b9','2025-05-23 06:37:54.446',1800,'KAPIDA ÖDEME - ZEHRA AŞIK - 478243785','COLLECT','2025-05-23 06:37:54.446','2025-05-26 13:23:22.333',NULL),
('af06109b-babd-4d76-a767-494a9301bdc8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'c9bfdd67-9310-4f2a-9ce9-8d28690b4937','2025-01-26 10:38:52.013',920,'KAPIDA ÖDEME - MURAT - 412586892','COLLECT','2025-01-26 10:38:52.013','2025-01-29 12:24:52.459',NULL),
('af326546-502a-4745-962b-725e888dbaad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'aec29545-1708-47a6-a33d-352a69ad4876','2025-02-13 20:20:47.547',2355,'KAPIDA ÖDEME - MİRAÇ SAKAR - 437969799','COLLECT','2025-02-13 20:20:47.547','2025-02-24 20:28:04.441',NULL),
('af33ddb1-0294-4a4c-9143-f69e9c360b31','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'580415fe-7112-4432-89b1-efebbd154841','2025-10-07 14:59:47.733',1300,'KAPIDA ÖDEME - SEMİH TÜRKOĞLU - 371696812','COLLECT','2025-10-07 14:59:47.733','2025-10-07 15:17:28.439',NULL),
('af39a48b-a6fb-42c3-b492-fd644b3eb99a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'846144fe-95bb-4d2a-83ea-4552d599f458','2025-10-22 07:51:14.393',650,'KAPIDA ÖDEME - ÖZCAN ŞAHİN - 644589662','COLLECT','2025-10-22 07:51:14.393','2025-10-22 11:29:52.762',NULL),
('af5165d3-d9ff-40bb-a778-5ad83f92bff3','DEFAULT-TRY','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3f47b50a-127d-4de1-88d7-b9c7ec06ab2b',NULL,NULL,'792fcb83-3583-425f-8515-80f98a19c7f3','2024-11-02 09:19:03.886',1000,'KAPIDA ÖDEME - NURİ ÖZKAN - 347986383','COLLECT','2024-11-02 09:19:03.886','2024-11-02 09:30:11.140',NULL),
('af56a3c6-0ad5-49f6-bfb1-bde6498eadf4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'2b1bc1e0-6a49-4e87-af0e-9acd36639f9f','2025-04-25 15:45:30.739',1500,'KAPIDA ÖDEME - EDİ - 412384414','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('af87845a-281d-45fd-93d1-a7e5787904c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'110f0eb8-2914-4e85-b599-dc743891806b','2024-11-12 16:35:14.333',900,'KAPIDA ÖDEME - OĞUZ ÖZÇELİK - 449203445','COLLECT','2024-11-12 16:35:14.333','2024-11-23 12:17:08.607',NULL),
('afa87fd7-feff-49e9-bb1e-bc4807b23db9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbae633b-07d9-4b61-90f7-87b941010b27',NULL,NULL,'ee498557-0564-4d86-8d79-85e7c39d48e5','2025-02-07 12:02:29.208',300,'KAPIDA ÖDEME - YILDIZ GÜNGÖR  - 633870078','COLLECT','2025-02-07 12:02:29.208','2025-02-15 11:10:42.855',NULL),
('afd3b9f6-09d2-4ade-8140-6b3bd463e1e9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'e8d23d8a-2637-4202-afea-6441ccee21d3','2025-05-25 10:51:31.745',1900,'KAPIDA ÖDEME - MERYEM BİRCAN ANİK - 437791709','COLLECT','2025-05-25 10:51:31.745','2025-05-26 15:07:26.342',NULL),
('afe85a1d-8250-4aaa-9518-d4e5c716c324','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d50fb551-10f1-4b7c-b65d-6eb4bef94704',NULL,NULL,'ff9e08fe-696f-4877-a50a-03ca709dfb92','2025-07-26 07:29:09.360',550,'KAPIDA ÖDEME - MONİCA TODERAŞ - 505597041','COLLECT','2025-07-26 07:29:09.360','2025-07-26 08:40:12.434',NULL),
('b00f290e-5c1f-4358-bc42-295c382cef61','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,NULL,'923a076a-9ebb-431d-9f79-3f5aa33e3231','2024-11-23 14:29:59.921',500,'KAPIDA ÖDEME - MURAT  - 163548367','COLLECT','2024-11-23 14:29:59.921','2024-12-02 09:51:49.376',NULL),
('b0173d0e-edeb-45c4-a3ea-54c02557049a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'43936c33-9e17-4692-a788-a835ff8aa72f',NULL,'2024-03-25 11:45:14.584',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.681'),
('b036a5f2-f241-4485-953b-26e9d4838fd1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c301d58c-ecdd-45ca-85ce-fb5d8517c3be','2025-06-27 17:09:48.523',1825,'KAPIDA ÖDEME - MUHAMMED DALKARA - 221646640','COLLECT','2025-06-27 17:09:48.523','2025-07-01 09:19:39.040',NULL),
('b0491b13-f878-464b-bd9e-86953a26c26b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d632ec-bc89-4254-b43c-4f7383017076',NULL,NULL,'671dde40-cd76-4a65-bfd7-95fafdc3618a','2025-08-14 07:54:07.576',300,'KAPIDA ÖDEME - MERVE HANIM - 663164000','COLLECT','2025-08-14 07:54:07.576','2025-08-14 08:02:29.740',NULL),
('b051762d-2661-459f-9529-2ba4275b0a41','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','02756ab4-fa8a-408f-b81c-76a84dc82d6f',NULL,NULL,'25b7b1d6-4d63-45b9-8031-fabd67fcd516','2024-09-27 12:22:56.793',1485,'KAPIDA ÖDEME - AYHAN TÜRKMEN - 027527659','COLLECT','2024-09-27 12:22:56.793','2024-09-27 13:46:01.428',NULL),
('b0b6dcd5-a7ea-4d9b-8e2c-64c9adebdeb6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'df9f1c03-7e5e-40ee-8715-8a2d4326acb0','2024-12-13 13:23:20.141',680,'KAPIDA ÖDEME - ALİ ŞİMŞEK - 735736030','COLLECT','2024-12-13 13:23:20.141','2024-12-16 18:41:52.448',NULL),
('b0dc6425-7644-4bc8-9d7c-4dbcd1873030','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f67ccbd8-fb5a-4345-aaf5-bb5631c7c482','2024-09-27 11:29:28.441',700,'KAPIDA ÖDEME - ABDULLAH DEMİR - 745744183','COLLECT','2024-09-27 11:29:28.441','2024-09-27 11:29:28.441',NULL),
('b0e56b5c-6c82-4e5f-ba53-28957150b873','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8a3a5949-7a42-4ac9-a011-34fadde1265c','2024-03-23 06:41:40.154',1000,'KAPIDA ÖDEME - YUSUF YILMAZ - 745481313','COLLECT','2024-03-23 06:41:40.154','2024-03-23 06:41:40.154',NULL),
('b10198e7-7c84-4ba7-bd7f-5d299c54f461','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'3391efb6-f905-452e-9046-16422800fd88','2025-05-28 18:50:18.071',1700,'KAPIDA ÖDEME - ÖZGÜR PİLİÇ - 517447554','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('b1112a18-9918-4bc9-9e29-84948610ef6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'53b6d665-2c5b-4d51-b191-51a5a0be9665','2024-08-31 13:12:07.002',550,'KAPIDA ÖDEME - NATASH SALİMİ - 982196265','COLLECT','2024-08-31 13:12:07.002','2024-08-31 13:12:07.002',NULL),
('b1544709-6d75-4144-9c62-f501e980968c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'226d454f-504a-4c41-9f7c-2a37ac051991','2024-10-17 12:50:26.171',1650,'KAPIDA ÖDEME - SUNAİM İBESKİ - 982498702','COLLECT','2024-10-17 12:50:26.171','2024-10-17 12:50:26.171',NULL),
('b162588a-0407-41d3-9b22-b30ce3ce49d9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'afb9199b-bdc3-4b55-9817-9bf24a3421c6','2024-12-09 07:53:34.325',1323,'KAPIDA ÖDEME - MELİKE KOÇ - 735931871','COLLECT','2024-12-09 07:53:34.325','2024-12-17 19:52:32.750',NULL),
('b1b7642e-c807-4e31-8bd8-b307a35bd377','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b9164589-534d-4d1e-a7e0-ad53801936ef','2025-06-26 10:30:49.502',850,'KAPIDA ÖDEME - MUHAMMED YUŞA YILDIRIM - 478261120','COLLECT','2025-06-26 10:30:49.502','2025-07-01 09:19:39.032',NULL),
('b1c52ac0-aeb4-4926-8329-94b66d932d32','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'cc203893-33b0-4595-9231-86901a0a9cf9','2025-09-15 15:26:04.873',900,'KAPIDA ÖDEME - ANİL ZAMUR  - 221204525','COLLECT','2025-09-15 15:26:04.873','2025-09-19 10:00:25.345',NULL),
('b1c7d5c9-4e36-46bd-9fd7-dab1793c1c77','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'4776d10a-2cab-47b6-b212-60c0ab466107','2025-04-19 10:21:58.939',2100,'KAPIDA ÖDEME - MUHAMMED ALİ ASLAN - 437982892','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('b1e7cf3e-d879-42cf-9ceb-866ef4035dcd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d4eec699-15e8-4023-b611-78ceb15be51f','2024-12-17 17:59:59.367',2500,'KAPIDA ÖDEME - YASEMİN YILDIZ - 745346486','COLLECT','2024-12-17 17:59:59.367','2025-01-11 10:16:45.910',NULL),
('b1f612de-1fb8-40d3-b3d7-645311610c6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'b05077ea-d4bb-417b-8413-3e1fc0346e79','2024-03-30 09:38:03.364',1750,'KAPIDA ÖDEME - ENİ SYLEJMANİ - 449178440','COLLECT','2024-03-30 09:38:03.364','2024-03-30 09:38:03.364',NULL),
('b1f65d14-d089-44da-8cfc-2bedcaede75d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'7cefa81c-deac-4617-8809-7002f9076b03','2024-08-31 13:18:37.201',1400,'KAPIDA ÖDEME - TAMES PREİN JANY - 982545187','COLLECT','2024-08-31 13:18:37.201','2024-08-31 13:18:37.201',NULL),
('b215475f-dd72-44ec-9417-7199af88ceaf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'29aaa54d-b47b-4224-b91b-303cd6be157e','2025-05-09 16:49:05.440',1550,'KAPIDA ÖDEME - FURKAN BARUT - 644644143','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('b2193fe8-db7f-4457-9fd9-fc29bcdb535f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'0dc43c9f-95ed-4a01-8e5e-356e535e67c3','2025-08-26 11:42:28.762',300,'KAPIDA ÖDEME - ONUR COŞKUN  - 65754067','COLLECT','2025-08-26 11:42:28.762','2025-08-26 11:42:28.762',NULL),
('b2240c8c-5fa4-43be-ada9-332d5add540a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'9d793d11-dd40-4c10-9d08-77df5b643ca6','2024-12-27 12:02:56.326',900,'KAPIDA ÖDEME - SAMİ CENGİZ  - 248213954','COLLECT','2024-12-27 12:02:56.326','2024-12-27 12:23:49.166',NULL),
('b252610b-e56f-4d4c-bf67-637da1cda721','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8c7727ab-5a57-4d7e-9785-b58268d5cdaa','2024-06-14 09:22:10.238',140,'KAPIDA ÖDEME - VOLKAN ÖZKAN - 478702476','COLLECT','2024-06-14 09:22:10.238','2024-06-14 09:22:10.238',NULL),
('b2716050-86cc-48eb-aba9-24d6d0932a6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ab128945-3927-4eb2-ab95-c3e7b5334f18','2025-03-27 08:47:28.703',1000,'KAPIDA ÖDEME - ESMANUR ZENGİN  - 221668922','COLLECT','2025-03-27 08:47:28.703','2025-03-29 13:56:05.249',NULL),
('b2a19697-d040-4449-8c8b-a2d89471a417','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'e4810702-1740-40c2-9d61-e9412939d07c','2025-05-28 18:45:21.684',1400,'KAPIDA ÖDEME - NAZIM KORKMAZER - 644771270','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('b2b31929-3910-408e-96c5-6a8e8bbcdf9d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'35563c2e-e808-44fd-8e6b-f1d59af96d33','2025-09-02 12:04:14.866',2850,'KAPIDA ÖDEME - VAİSE İBRAHİM - 613108463','COLLECT','2025-09-02 12:04:14.866','2025-09-02 14:46:19.347',NULL),
('b2b3cc52-100b-4746-b5fc-dbb54d63a28b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'267f6081-c782-4fae-8e62-aa926bd63c79','2025-08-22 19:43:14.483',350,'KAPIDA ÖDEME - ALEYNA İREP - 37119244','COLLECT','2025-08-22 19:43:14.483','2025-08-22 20:28:07.500',NULL),
('b2da82e2-3c5f-4ee5-a5e4-d452e4b4a1b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'41e6c990-9769-486b-b72c-37b090f7b3d4','2024-08-07 14:46:25.723',450,'KAPIDA ÖDEME - SELİM EROL - 976577497','COLLECT','2024-08-07 14:46:25.723','2024-08-07 14:46:25.723',NULL),
('b2e70f3d-6502-4211-b963-91f2a15753dc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'6e979cb9-141a-43d7-a38c-362246b8f5a8','2025-10-02 06:39:26.353',2000,'KAPIDA ÖDEME - ZEHRA ÜNAL - 598320188','COLLECT','2025-10-02 06:39:26.353','2025-10-02 11:05:59.191',NULL),
('b2eecb89-69d7-40ba-af7b-4c5e8daa9ac1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'89f250d7-ea03-4dad-b40b-0dd01296a0ce','2025-08-21 06:49:01.564',2000,'KAPIDA ÖDEME - AHU KARUÇ - 437786734','COLLECT','2025-08-21 06:49:01.564','2025-08-21 08:12:56.967',NULL),
('b2fa387c-34a3-4a73-b210-e420c38f3cad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'1e3e8ac2-1a23-459a-86a3-92cf233a6f66','2025-05-09 17:09:16.358',200,'KAPIDA ÖDEME - NADİR KURUKOL  - 428414858','COLLECT','2025-05-09 17:09:16.358','2025-05-09 17:17:20.778',NULL),
('b3022c56-a9c4-4941-9397-8c9149e6f601','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'c36d986a-edbc-4585-a361-c03d6d1c6a23','2025-04-30 13:44:23.805',1532,'KAPIDA ÖDEME - MUSTAFA AZAMİ  - 786668251','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('b3086f73-e991-452f-a477-617919a16dfa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ee60ec73-3c76-4379-8775-11a6bda57fea','2024-12-07 09:04:36.537',600,'KAPIDA ÖDEME - AYŞE ŞEKER - 745671718','COLLECT','2024-12-07 09:04:36.537','2024-12-17 19:52:32.750',NULL),
('b30aee81-788a-48ee-b4bf-df9398af73e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9103cb0e-e686-4e54-ab7a-664a063bc56c','2025-10-13 07:14:08.951',5150,'KAPIDA ÖDEME - BECET ÖZDEMİR - 478221533','COLLECT','2025-10-13 07:14:08.951','2025-10-14 08:52:36.796',NULL),
('b30bbc19-dff0-424c-b1c0-196764b7fc73','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b734c482-3c00-4897-ad35-bc358cd02d56',NULL,NULL,'8c3b10ad-bfb3-4939-a407-5ebb29115ccb','2024-05-10 07:12:14.645',400,'KAPIDA ÖDEME - HATİCE BOZKURT - 734627626','COLLECT','2024-05-10 07:12:14.645','2024-05-10 07:12:14.645',NULL),
('b31955d8-5276-4073-80dd-aa34cb5f82a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d','2024-10-11 16:07:21.211',1080,'KAPIDA ÖDEME - HAVVA-HÜMEYRA DEMİR - 42851120','COLLECT','2024-10-11 16:07:21.211','2024-10-11 16:07:21.211',NULL),
('b321affe-c45d-40f4-a392-7076a5eb2527','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'d5b2fa03-abec-4a92-ba35-d62dcc2cbf95','2025-04-19 10:06:25.357',1000,'KAPIDA ÖDEME - RAMAZAN AÇIKEL - 412411011','COLLECT','2025-04-19 10:06:25.357','2025-05-02 17:08:29.291',NULL),
('b330cb00-302b-486e-8cd9-c50bc7b6361f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'9fe64691-2031-49a6-a917-f5af8aa63a82','2025-08-30 12:41:46.624',2950,'KAPIDA ÖDEME - OKAN EKİNCİ - 745873539','COLLECT','2025-08-30 12:41:46.624','2025-09-05 08:55:11.129',NULL),
('b37a1245-bcbf-4686-b93b-fc6b8e728f76','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7d8c572c-5a4f-4649-a705-fd9b7255cf60',NULL,'2024-03-30 07:14:01.407',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.000'),
('b38e8d49-ae21-4829-96e9-545f8d8bc710','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'44397bf0-f8fd-4ce2-bc11-c3303b438080','2024-12-17 18:06:56.705',720,'KAPIDA ÖDEME - EUROMAT - 735293129','COLLECT','2024-12-17 18:06:56.705','2025-01-11 10:16:45.910',NULL),
('b3952082-8349-4361-93d4-a4f4849edda3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2fd537fd-8d71-4980-83ba-812e63488956','2024-11-03 21:20:09.638',1500,'KAPIDA ÖDEME - JALAL ASLAM - 982966360','COLLECT','2024-11-03 21:20:09.638','2024-11-25 09:20:39.164',NULL),
('b39c991d-dff2-4690-a1e5-490252920322','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'77917a95-2dc0-44c5-b207-d5b4157f7420','2024-11-02 09:20:50.455',670,'KAPIDA ÖDEME - FATMA HANIM - 248259363','COLLECT','2024-11-02 09:20:50.455','2024-11-02 09:20:50.455',NULL),
('b3c5c06c-d932-41fd-9637-f81cabd2326d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'78b80c42-44c2-4ec1-827a-ef8e32bcec6c','2025-09-23 07:43:59.590',1000,'KAPIDA ÖDEME - MEHMET ORMANOĞLU - 614636969','COLLECT','2025-09-23 07:43:59.590','2025-09-24 13:41:15.118',NULL),
('b437f2eb-0e09-411b-b1ed-6acc119e76d8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'70f1d000-69a9-42e6-bbf8-0e2afa7a3f33','2024-10-30 12:38:30.170',2000,'KAPIDA ÖDEME - NAZAN DENİZ - 517616028','COLLECT','2024-10-30 12:38:30.170','2024-12-09 08:24:38.479',NULL),
('b44be98a-6922-40ae-acab-f1c82c3395d9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'bfc5b29f-424e-465e-8d1d-8f10342630de','2025-08-21 07:01:13.964',450,'KAPIDA ÖDEME - ERAY ASLANCAN - 745294810','COLLECT','2025-08-21 07:01:13.964','2025-08-21 08:12:57.018',NULL),
('b44e6696-a2bf-4979-97de-64739443be38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'03edbb2f-aa6f-42fb-8da2-233d6ea1d184','2025-01-22 08:43:42.642',1600,'KAPIDA ÖDEME - AYŞE BAĞCI - 478365640','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('b456417e-3c1b-4f29-a609-5058bc62d5fb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'416cbe10-f76a-4e3f-b035-b846a08cc8a3','2025-01-26 10:22:06.784',900,'KAPIDA ÖDEME - MUSA LÖK - 517521279','COLLECT','2025-01-26 10:22:06.784','2025-01-29 12:24:52.459',NULL),
('b4630ded-bea2-4b30-ac6f-415a550abee6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'26dac25b-c3a4-48f3-a7c9-711fda2dbf20','2025-09-23 07:43:59.549',650,'KAPIDA ÖDEME - NUR YILDIRIM - 745278745','COLLECT','2025-09-23 07:43:59.549','2025-09-24 13:41:15.070',NULL),
('b4b11623-742d-47ef-a577-26c44475d094','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c4474eef-8bc5-41c6-90ed-9545793a31cf','2025-01-11 15:02:07.378',2425,'KAPIDA ÖDEME - KEMAL ETKER - 478631020','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('b4e2b4b1-9d56-4cb2-8443-05c1b6e77c49','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','afdbd570-d700-442a-b617-752921194603',NULL,NULL,'ed98c31c-308d-4856-9efd-a92eb1603386','2025-02-20 12:39:16.883',500,'KAPIDA ÖDEME - TÜRKAN DEMİR - 570121325','COLLECT','2025-02-20 12:39:16.883','2025-02-20 12:40:28.679',NULL),
('b4f8fc78-59b4-4a20-9250-224bb20b0c33','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'bff7b018-9fd3-45fb-bd37-fd078042b359','2025-05-28 18:50:18.071',2750,'KAPIDA ÖDEME - GÜLAY FASOLD - 644820551','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('b4fce00b-c659-43d3-8bb3-840bb81ad946','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'fae6865f-80a7-46a1-9f93-f722559d4617','2025-04-26 15:27:23.552',880,'KAPIDA ÖDEME - POLAT BALKAYA - 412610139','COLLECT','2025-04-26 15:27:23.552','2025-04-26 16:02:30.708',NULL),
('b51e5cd0-12e7-46c2-bfac-fcdc83738cea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'f8a35a67-4391-400d-b200-b2e5eb8c88d5','2025-07-12 09:16:05.714',2650,'KAPIDA ÖDEME - AYŞE ŞEKER - 976114868','COLLECT','2025-07-12 09:16:05.714','2025-07-16 14:21:29.680',NULL),
('b561d7b9-ce06-4555-a16f-0f83929d070f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'2406cb72-b2ab-4be4-85b7-bd328a413fd8',NULL,'2024-03-25 11:45:13.983',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.677'),
('b56a0e53-7b00-45e4-8ac9-8a3850e63237','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'4854617d-8e10-44dc-9d64-e083a9bc9ee3','2025-08-22 19:43:14.511',850,'KAPIDA ÖDEME - AYHAN ÇEKİ - 598758154','COLLECT','2025-08-22 19:43:14.511','2025-08-22 20:28:07.514',NULL),
('b59ab4ec-ce5a-43bd-958f-16bc64eb9695','DEFAULT-EUR','1764a07b-eb47-4578-b6cd-f3c0d0e743be','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'c43d1a62-fa97-4d61-9dce-df2c792a2403','2024-11-08 09:08:32.166',1000,'KAPIDA ÖDEME - dilaver  ulutaş - 478156531','COLLECT','2024-11-08 09:08:32.166','2024-11-12 17:10:40.671','2024-11-12 17:10:40.677'),
('b5a04bd3-41ce-4f9d-986c-f9ae3fc0c5cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,NULL,'2024-11-12 08:01:29.030',-135,'5000 TL KARŞILIĞI','PAYMENT','2024-11-12 08:01:43.067','2024-11-12 08:01:43.067',NULL),
('b5b78ca6-ad19-45d8-8fad-6697bd0f19ae','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ac5f1d3a-fb21-4eca-a8fb-bef56a299855','2024-11-02 08:56:07.808',550,'KAPIDA ÖDEME - KADİR DALKILIÇ - 745881843','COLLECT','2024-11-02 08:56:07.808','2024-11-04 13:45:03.560',NULL),
('b5b9dd84-6089-422f-81eb-08168263fccc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b0f8549b-c1c2-4996-bf7f-22c82846b134','2025-04-11 12:26:08.423',1290,'KAPIDA ÖDEME - BELKISA KAPLAN - 478403794','COLLECT','2025-04-11 12:26:08.423','2025-04-15 14:54:58.058',NULL),
('b5fa02d3-8b78-4f0c-baf1-96e2021dc654','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'bf721424-1a05-4d9c-95f0-728c336c9ab9','2025-04-04 09:39:58.728',1250,'KAPIDA ÖDEME - TAŞLAR - 248475044','COLLECT','2025-04-04 09:39:58.728','2025-04-04 09:39:58.728',NULL),
('b64d6983-09f8-43e3-97e0-adc2b8cbda23','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'06e21650-25ae-4be2-b1dd-31866d6e20f9','2025-04-11 12:27:22.133',1200,'KAPIDA ÖDEME - YUSUF SARIKAN - 745767667','COLLECT','2025-04-11 12:27:22.133','2025-04-15 14:54:58.058',NULL),
('b651b8fd-f50c-45b9-bf0d-60ffea0038c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d955e29b-88c5-4096-a9b2-3616f6f8df28',NULL,'2024-03-18 07:29:48.110',-500,'Sefer No: 3163334','EXPENSE','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163',NULL),
('b65ababe-11a6-4b23-ae57-f00743a481c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'32278c95-82a4-4810-a8d8-06f8ab1eeb81',NULL,'2024-03-30 13:00:50.450',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.746'),
('b660196a-1016-4cdc-9226-20b6c62a2a3e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5fc6171b-505c-485c-b075-49cfe5dd62fd','2025-09-18 06:43:39.396',550,'KAPIDA ÖDEME - MERYEM BULAK  - 745374253','COLLECT','2025-09-18 06:43:39.396','2025-09-18 15:48:17.526',NULL),
('b69aa575-8045-43c8-8c2b-6e53818392e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b989a112-5f6f-468a-9d42-1bf6bdbf3300','2025-01-11 15:16:42.451',10000,'KAPIDA ÖDEME - EMİN EKRAMOĞLU - 478678748','COLLECT','2025-01-11 15:16:42.451','2025-01-13 07:50:40.305',NULL),
('b6a25530-c09c-4352-bced-f54ad55bf991','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'43be9060-d29c-4aa2-b1cf-821eb6dc9820',NULL,'2024-03-30 07:14:00.956',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.018'),
('b6b02e18-0ac0-4794-9126-40604dffca97','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d100cd88-31b8-4788-8c56-3df2fd4058aa',NULL,NULL,'3810b138-eae3-49b3-94fb-6ece3e64ea2e','2024-05-29 10:05:41.012',1000,'KAPIDA ÖDEME - YUSUF - 100972804','COLLECT','2024-05-29 10:05:41.012','2024-05-29 10:05:41.012',NULL),
('b6c9cbd0-9ce0-4388-a937-8773dec3725c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e4b060c3-fb34-42f4-9364-6b48d058bac3','2024-10-17 12:54:36.970',1850,'KAPIDA ÖDEME - SABRİNA ZAHEY - 982555492','COLLECT','2024-10-17 12:54:36.970','2024-10-17 12:54:36.970',NULL),
('b6d74e9c-22fa-477b-888f-805d50a905b2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'104f5406-c5fd-4a46-8b03-63d308b6ac35','2025-01-22 08:43:42.642',1100,'KAPIDA ÖDEME - HURİYE SERBEST - 221416180','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('b6f44706-6a84-449d-ba69-0ee311172348','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1e9ad390-bf85-414e-98b1-b7175b25c837','2025-09-02 12:04:14.831',500,'KAPIDA ÖDEME - TAYFUN ŞENGÜL - 644424764','COLLECT','2025-09-02 12:04:14.831','2025-09-02 14:46:19.311',NULL),
('b708e356-e27c-4edc-a693-d07478c93392','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'3dc2cba9-0647-4ca4-9fa8-0d67554d850a','2025-08-27 08:40:22.021',725,'KAPIDA ÖDEME - (K)SİNEM İDRİZAJ  - 644880161','COLLECT','2025-08-27 08:40:22.021','2025-09-03 06:09:36.690',NULL),
('b7317f57-7e78-4448-9bba-dc725c7a3b5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a8639359-b083-404c-8030-0e950aae15e4',NULL,'2024-03-30 07:25:33.343',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.707'),
('b79d7c85-2b39-4ae8-834e-a7df96be11a4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d78e9aef-d794-44e4-a9be-c55739db8e56','2024-10-14 08:46:53.645',1000,'KAPIDA ÖDEME - ÜMMÜGÜLSÜM KARAKUŞ - 745924426','COLLECT','2024-10-14 08:46:53.645','2024-10-14 08:46:53.645',NULL),
('b7a3f688-709f-42c5-aab3-cc58c6ffcaec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'c8d1b4d4-fafa-4eca-9c51-b7057479fd17','2025-09-16 07:10:55.398',950,'KAPIDA ÖDEME - ORHAN KURT - 817578021','COLLECT','2025-09-16 07:10:55.398','2025-09-19 10:00:25.410',NULL),
('b7a9f9f3-c4cc-4c5a-a20f-27487604f478','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'3b2b9553-2254-427e-9970-41bddf8e65b0','2025-10-22 07:51:14.329',395,'KAPIDA ÖDEME -  İLKER YAVAŞOĞLU - 613252288','COLLECT','2025-10-22 07:51:14.329','2025-10-22 11:29:52.653',NULL),
('b7ac4058-555f-470c-a18f-8d1f635218c9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b5e64b87-904e-46f0-aedc-c5bac9faa988','2024-11-21 10:23:26.160',1500,'KAPIDA ÖDEME - HÜSEYİN DÖNERTAŞ - 24886445','COLLECT','2024-11-21 10:23:26.160','2024-11-28 09:15:27.364','2024-11-28 09:15:27.372'),
('b7c21cce-c4d0-47be-9e60-4c18d73c92e4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'3b24c44b-141a-498a-a365-b5111a55d868','2025-07-12 09:16:05.856',750,'KAPIDA ÖDEME - HALİLOVİÇ ELMA - 371104317','COLLECT','2025-07-12 09:16:05.856','2025-07-16 14:21:29.474',NULL),
('b7e2d92d-df58-4535-b4c8-82c72ddc2b08','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'7be6621d-9b68-40b3-a06b-e80341f0ae5d','2025-04-26 14:40:15.277',590,'KAPIDA ÖDEME - ERTAN TOSUNER - 598454821','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('b8038b56-f852-4ce7-94f3-c57ce8db7308','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'c0c37a9e-a856-4546-9c17-87681e0484fc','2025-04-02 16:31:00.749',2500,'KAPIDA ÖDEME - LEİPZİNG - 248133427','COLLECT','2025-04-02 16:31:00.749','2025-04-04 09:39:42.877',NULL),
('b81a1b0e-3529-4203-a29c-8e50e7676744','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'6df88176-a01f-4232-a091-4e10895a39df','2024-07-20 10:03:59.050',2300,'KAPIDA ÖDEME - FARİSHTE AHMEDİ - 44940434','COLLECT','2024-07-20 10:03:59.050','2024-07-20 10:03:59.050',NULL),
('b81e48b7-f13b-45dc-819a-e3fbb0553cec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'f97838bf-6f9a-497c-88e0-36e7f07964ff','2024-09-05 09:27:53.736',1250,'KAPIDA ÖDEME - NAFİLE HANIM - 976543269','COLLECT','2024-09-05 09:27:53.736','2024-09-05 09:27:53.736',NULL),
('b848bad5-3cdc-4f45-ab6a-4fa2fcb0b72f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'0686aefd-6bc5-4963-b256-37bb53456216','2025-09-25 16:04:06.496',450,'KAPIDA ÖDEME - NURAY ÖZKAN - 412767922','COLLECT','2025-09-25 16:04:06.496','2025-09-26 12:34:13.497',NULL),
('b8adbdb3-ed8a-4731-adfb-a456e681923c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'6be99b5d-41a3-4b9e-a67f-f951b7f620ed','2024-05-29 10:28:52.070',850,'KAPIDA ÖDEME - Arif ağca - 449837324','COLLECT','2024-05-29 10:28:52.070','2024-05-29 10:28:52.070',NULL),
('b8d362ca-416e-41da-b9ff-2e6ec1b98b8e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'0d746c5c-f194-4ed9-b71a-bf56f53af841','2025-09-17 14:44:21.767',850,'KAPIDA ÖDEME - SEBİHA DEMİR - 437233194','COLLECT','2025-09-17 14:44:21.767','2025-09-18 15:48:17.429',NULL),
('b8ee87de-6979-4aa4-a9d7-9ce0b3e7dfb3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5d6a4625-934e-46e6-87c9-560c887e2125','2025-04-30 13:44:23.805',1000,'KAPIDA ÖDEME - BELGİZAR GEZİCİ - 745173444','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('b905e7fa-73c4-449f-ac7e-4aad6d013ca7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'3d2878ed-86ff-4ab4-a6eb-f24022792e37','2024-09-16 07:54:13.852',1150,'KAPIDA ÖDEME - ABBAS GELERİ - 517914097','COLLECT','2024-09-16 07:54:13.852','2024-09-16 07:54:13.852',NULL),
('b92130ad-8165-4927-b574-c4034e34ded5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37','2025-01-11 15:02:07.378',2700,'KAPIDA ÖDEME - AYHAN AKTAŞ  - 982685222','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('b93f7268-d228-4d08-a37c-dfe62b506608','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'a5641d1e-87fc-41c1-a35d-67b9939f56aa','2025-03-24 12:25:13.927',1050,'KAPIDA ÖDEME - PELÇİN BUZLU - 437554629','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('b975e242-519b-46ef-82ba-ff90f5a56ba4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'46342cb8-9154-4a08-82ea-f958497b32c2','2025-09-16 07:10:55.428',1575,'KAPIDA ÖDEME - ABDULLAH SÖNMEZ - 428107185','COLLECT','2025-09-16 07:10:55.428','2025-09-19 10:00:25.441',NULL),
('b9795d01-0eed-44c2-a2bd-c9ea4d0a7a0e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9db12415-2152-439d-bb63-bebefc3c640c','2025-02-15 10:11:41.018',6000,'KAPIDA ÖDEME - ÖZLEM RAMADAN - 478150977','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('b99190ae-92f4-4b48-abac-9b1d39fb1dd0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'af66e0b1-a72e-4c45-9e91-18e38e131f34','2025-07-26 07:29:09.329',890,'KAPIDA ÖDEME - SERKAN ELGİT  - 61310831','COLLECT','2025-07-26 07:29:09.329','2025-07-26 08:40:12.393',NULL),
('b99c94f6-6e79-4d0f-b204-9d6effe8f075','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'bdde5e4c-e62c-4ddd-9471-758e286d2013','2025-02-13 20:38:51.033',4000,'KAPIDA ÖDEME - DONİKA - 786849282','COLLECT','2025-02-13 20:38:51.033','2025-02-24 20:28:04.441',NULL),
('b9a29dc2-87b8-4bdd-b840-f7eedd676550','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'9e64600d-1c01-44ab-9728-6619d083385a','2025-09-05 13:52:01.468',2500,'KAPIDA ÖDEME - SİHAM MAHMOUD - 598280715','COLLECT','2025-09-05 13:52:01.468','2025-09-06 09:41:31.860',NULL),
('b9a77924-365f-4cc5-9bc2-b64469e0a09c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'f0b553df-a781-4ccd-a273-f9c311927595','2024-09-09 12:52:35.248',900,'KAPIDA ÖDEME - HAKAN AKDAĞ - 412418230','COLLECT','2024-09-09 12:52:35.248','2024-09-09 12:52:35.248',NULL),
('b9ed06f9-72c5-42f6-8fab-7f2f5d78c65d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9b3716c5-1516-4a14-9ee7-cde40b37434c','2024-11-02 09:12:59.963',1200,'KAPIDA ÖDEME - HAKAN ASLAN - 982858369','COLLECT','2024-11-02 09:12:59.963','2024-11-04 13:48:53.839',NULL),
('ba09509d-9e3e-4194-83db-bac67d61fab6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d100cd88-31b8-4788-8c56-3df2fd4058aa',NULL,NULL,NULL,'2024-11-08 17:19:45.019',170,NULL,'COLLECT','2024-11-08 17:19:52.916','2024-11-08 17:19:52.916',NULL),
('ba123d51-47d6-4f0d-8973-f2ae93c1c300','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,NULL,'2024-11-08 16:52:50.755',-56268,'HESAP DÜZLEME','PAYMENT','2024-11-08 16:53:07.961','2024-11-08 16:53:07.961',NULL),
('ba2d80ed-8cbc-4b62-bf4a-8a66ef15de0b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'fcd7666d-0415-4ff3-a449-800232806032','2025-02-07 11:48:22.096',1200,'KAPIDA ÖDEME - SELCAN ALTINSOY - 910479941','COLLECT','2025-02-07 11:48:22.096','2025-02-09 14:09:29.708',NULL),
('ba478ec0-8c48-4d15-8ed3-cab7951516a8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'def7f2ab-5847-442b-86e4-71e9c7cd2dcc','2025-08-21 06:49:01.529',740,'KAPIDA ÖDEME - IMAN JAWİD - 531245816','COLLECT','2025-08-21 06:49:01.529','2025-08-21 08:12:57.036',NULL),
('ba5419b9-aa07-4e43-9b27-4fb507a2cadc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'6d4039b6-c00e-459a-95f4-bdff009aedea','2025-03-25 09:39:17.021',745,'KAPIDA ÖDEME - ELİF KAVUCUK - 37197237','COLLECT','2025-03-25 09:39:17.021','2025-03-29 13:56:05.249',NULL),
('ba5c2cdd-ae2c-44ca-92af-465ce6acc552','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0f7b6d43-5763-4b5b-93f8-46153e09c05f','2025-10-01 06:41:28.873',800,'KAPIDA ÖDEME - BERFİN UZUNER  - 221900850','COLLECT','2025-10-01 06:41:28.873','2025-10-01 07:56:23.140',NULL),
('baca6cf2-52bf-4b57-9915-f47dd49217ce','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'862e4bdc-2e76-4b0a-b6fc-8557101a2020','2025-06-30 18:34:37.117',5300,'KAPIDA ÖDEME - İLHAM SEVAL İNDİRME - 478259590','COLLECT','2025-06-30 18:34:37.117','2025-07-07 11:44:52.711',NULL),
('baf7073d-0676-4e2e-9fe7-67429e38d63e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'5e9395d5-2dff-41a1-b7d1-d080344fbc2b','2024-12-07 09:00:18.509',500,'KAPIDA ÖDEME - VAHİT FISTIKÇI - 910950688','COLLECT','2024-12-07 09:00:18.509','2024-12-18 14:19:31.545',NULL),
('baf87a67-6e17-4f3f-b56b-6434c7662aaa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'685294c3-f19d-4310-a937-1d0a6fb675a7','2025-01-11 15:02:07.378',1400,'KAPIDA ÖDEME - SEMAHAT ÇELİK - 221803289','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('bb0ff19e-194b-42ef-948b-dec49883ffc4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1fa393a0-6e5c-4c85-ba8f-0b92d38af36e','2025-02-20 08:41:42.101',900,'KAPIDA ÖDEME - YASMİNE  - 982824242','COLLECT','2025-02-20 08:41:42.101','2025-02-20 12:40:28.679',NULL),
('bb181ebf-8e24-4384-83ec-d671cdf56e66','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45','2025-03-11 14:16:19.289',2100,'KAPIDA ÖDEME - SAİMİR BALLA  - 982431907','COLLECT','2025-03-11 14:16:19.289','2025-03-15 09:47:16.005',NULL),
('bb1e31fb-c52b-4292-915c-a0dce91ace5d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'da4845d7-4297-4d18-8c32-8b56a284257b','2025-03-11 14:16:19.289',1500,'KAPIDA ÖDEME - MİAMİ STYLE  - 982999114','COLLECT','2025-03-11 14:16:19.289','2025-03-15 09:47:16.005',NULL),
('bb3f511c-4f40-4263-8882-94e20e557efc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'72cfbd20-52f4-440a-b62e-8fdf632177d6','2025-04-28 11:52:47.962',477,'KAPIDA ÖDEME - GİZEM KARAVİL - 786820149','COLLECT','2025-04-28 11:52:47.962','2025-04-28 11:52:47.962',NULL),
('bb41e5cc-9ebe-4052-b77e-81bb2e860557','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'d8406e1c-80d1-4795-aea9-119c8cad0252','2025-05-23 06:31:10.164',475,'KAPIDA ÖDEME - EMİLY RAMİREZ - 221897784','COLLECT','2025-05-23 06:31:10.164','2025-05-26 13:23:22.333',NULL),
('bb717e54-1d74-447b-8c42-bf9aff3d4b34','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f63dddf8-0e96-4e34-bd07-1c13ed42a69a',NULL,'2024-03-30 07:14:02.208',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.011'),
('bb78a03e-dc3f-4fad-b355-333b2a412920','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'57672219-300a-458c-9d17-3e58d19f71a2','2025-04-30 13:44:23.805',1860,'KAPIDA ÖDEME - RECEP TABAKOĞLU - 371601782','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('bb7c136d-1025-4e5d-a21b-adab03eda93a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9c4a2d66-51b7-4378-aeac-e9b8af1f063a','2025-01-22 08:43:42.642',1150,'KAPIDA ÖDEME - AHMED HAMEL  - 221413192','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('bb902c27-9ce1-47c3-9e79-f19dc17fbbb8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'40e01302-537a-406a-a3c9-9234e4dbf8e8','2025-08-27 09:00:56.772',1050,'KAPIDA ÖDEME - SERHAT AGİRTAS - 515139511','COLLECT','2025-08-27 09:00:56.772','2025-09-03 06:09:36.697',NULL),
('bbdf4711-42ff-4437-92d4-4ae91876ce38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'d054b4a7-35f3-468e-a1b3-28d2ebd815c0','2025-09-25 16:04:06.516',1050,'KAPIDA ÖDEME - GAMZE ÖZDEMİR - 319645924','COLLECT','2025-09-25 16:04:06.516','2025-09-26 12:27:42.410',NULL),
('bbe44238-f805-45e4-9a80-d2a75b03f792','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'8e8833ae-bbf9-4cee-9bb5-b57d59626b5b','2025-07-29 12:30:31.478',445,'KAPIDA ÖDEME - GALİNA KAMERER  - 613499620','COLLECT','2025-07-29 12:30:31.478','2025-07-29 12:37:20.440',NULL),
('bbf4c4e4-1f3b-4c4f-a767-00aefe83ee68','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'8dcb0124-79e0-4138-838e-c613554097e7','2025-10-25 08:43:45.370',760,'KAPIDA ÖDEME - TUĞÇE ÖNCÜ - 371120237','COLLECT','2025-10-25 08:43:45.370','2025-10-25 08:58:44.057',NULL),
('bbf7b1fb-c6d8-4db6-b40a-8190115ccac6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'38c7e847-02cf-481b-b2ca-7299334fad05','2024-11-29 13:31:33.041',2240,'KAPIDA ÖDEME - SEVCAN SALİ - 478863315','COLLECT','2024-11-29 13:31:33.041','2024-12-09 17:29:19.987',NULL),
('bc0806fa-4ad3-401a-91d1-96aace2da20a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'1b527261-0f20-432f-8edd-bf02ae683a47','2024-11-29 13:31:33.041',500,'KAPIDA ÖDEME - NİHAL KURU - 478380707','COLLECT','2024-11-29 13:31:33.041','2024-12-09 17:29:19.987',NULL),
('bc086722-bbd7-40fb-a523-6e1c919328bc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'5841dd15-401b-4238-ac2d-009a61e5f5d1','2025-04-30 14:38:20.482',605,'KAPIDA ÖDEME - MUHAMMED NURTEREB - 412608739','COLLECT','2025-04-30 14:38:20.482','2025-05-02 11:56:13.100',NULL),
('bc14b2da-cd3c-4af2-a291-66db7097bc45','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,NULL,'2024-11-08 17:15:57.841',670,NULL,'COLLECT','2024-11-08 17:16:05.649','2024-11-08 17:16:05.649',NULL),
('bc5ebc62-ea6e-4d1a-9d35-003b33b1a91a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d6241dbb-d9ce-4175-87ee-cffefb12abac',NULL,'2024-03-30 07:25:34.044',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.630'),
('bc8f1fec-f246-4241-b0fd-15d6bcfbde9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'449134ef-d6ce-4d53-aa6f-961c987601fe','2025-07-30 17:56:16.976',300,'KAPIDA ÖDEME - HAKİM AZZOUZ - 657301470','COLLECT','2025-07-30 17:56:16.976','2025-07-30 17:56:16.976',NULL),
('bc9567e0-35ac-4830-9f4b-64bd9222c35d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'41362bb9-f3f2-494f-bf45-1e889e36f93d','2025-03-12 18:28:25.161',3400,'KAPIDA ÖDEME - EMRE AFYON  - 745547550','COLLECT','2025-03-12 18:28:25.161','2025-03-12 19:01:22.362',NULL),
('bca08361-6142-4d4b-9af2-16cf5d9b66ec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'d921e4e9-196f-4ba6-beeb-e5aafb5c80ee','2025-05-09 16:49:05.440',500,'KAPIDA ÖDEME - MUHAMMED ALİ YILMAZ  - 221294149','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('bce2b38f-964c-4833-bbe9-576e53fc5109','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'613669b4-092d-41a5-971c-271dc4ad0bf1','2025-10-07 14:59:47.726',1000,'KAPIDA ÖDEME - YEŞİM AKGÜN  - 011716616','COLLECT','2025-10-07 14:59:47.726','2025-10-07 15:17:28.460',NULL),
('bceb3bcc-a9c7-4f51-ada8-5f85a51d40ef','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'fd795bb0-de9c-492b-b14b-d82674e0098e','2025-07-12 09:16:05.798',895,'KAPIDA ÖDEME - BAKACAK GİRAY - 613814330','COLLECT','2025-07-12 09:16:05.798','2025-07-16 14:21:29.688',NULL),
('bceff78c-0f79-4242-b45e-15bdd58a8d5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'5b21aeae-630c-4c68-bc5e-f5ba08b334c7','2024-04-01 11:31:50.346',900,'KAPIDA ÖDEME - SHAHLA HOSSEİNİ - 982320922','COLLECT','2024-04-01 11:31:50.346','2024-04-01 11:31:50.346',NULL),
('bcff8232-915a-4123-a917-6c73f0c2f943','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2ed09389-6872-45ef-b60f-31ff8428b5fe','2024-11-03 21:07:48.431',1800,'KAPIDA ÖDEME - Maria veigea  - 982333020','COLLECT','2024-11-03 21:07:48.431','2024-11-28 08:56:17.118','2024-11-28 08:56:17.125'),
('bd24e0e0-1c04-4eef-99de-bc52f36f8f2e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'603049b7-6bd8-4aed-a159-4c5f400607b7','2025-08-25 11:36:09.189',3500,'KAPIDA ÖDEME - OKAY DERİNKUYU - 478984010','COLLECT','2025-08-25 11:36:09.189','2025-08-25 12:11:45.723',NULL),
('bd42a019-9110-49ff-a085-8cd0af46c7b1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'99f2313f-189c-456e-bcf0-d0e88ae7ffbf','2024-12-13 13:16:19.811',1050,'KAPIDA ÖDEME - GÜLCAN AYDIN - 976942444','COLLECT','2024-12-13 13:16:19.811','2024-12-16 18:41:52.448',NULL),
('bd5bed0e-71d2-4ca2-a1d7-1a8be511eace','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'fee1921f-e2a1-493a-95cc-3101675adfe8','2024-05-04 10:17:25.351',1400,'KAPIDA ÖDEME - HAKAN YAZICIOĞLU - 478681830','COLLECT','2024-05-04 10:17:25.351','2024-05-04 10:17:25.351',NULL),
('bd73f689-cc2a-41e2-99e5-18208b5d51a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'34efce18-6122-4639-ad74-6bf11623e4ef','2025-06-14 12:45:56.437',1500,'KAPIDA ÖDEME - NOUR MOHAMMAD YAKUBİ - 982578025','COLLECT','2025-06-14 12:45:56.437','2025-06-18 08:08:50.179',NULL),
('bd820cd7-ca6c-4f43-99c5-121881338765','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'40a370ee-a708-413c-991e-1caaa9679823',NULL,'2024-03-30 07:14:01.007',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.991'),
('bd88c1a3-1edb-4395-80d4-1b1ece308d3f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'70bbe7ca-c823-4871-aad0-31c437da2b3c','2025-03-24 12:29:41.705',500,'KAPIDA ÖDEME - MILANA PRODANOVIC - 745837821','COLLECT','2025-03-24 12:29:41.705','2025-04-02 18:57:10.886',NULL),
('bdcd5114-91d8-4e51-a033-e098dcfe7dd8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'6adcfcb9-e4f0-4b7d-895c-940cb17b62dd','2025-09-02 12:04:14.845',700,'KAPIDA ÖDEME - CANSEL KUŞ - 644684020','COLLECT','2025-09-02 12:04:14.845','2025-09-02 14:46:19.326',NULL),
('bdff3fe4-4338-46d8-912d-976759af8150','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'31a9f03a-9f24-417c-b0b7-5e374d34b126','2025-10-17 06:45:24.549',1650,'KAPIDA ÖDEME - HUSSEİN NAKAL - 531606130','COLLECT','2025-10-17 06:45:24.549','2025-10-17 10:53:07.471',NULL),
('be3092fe-f9ac-4fcf-8047-b23336a2c11d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a','2025-08-21 06:49:01.572',1000,'KAPIDA ÖDEME - TUĞBA AKTAŞ - 478687899','COLLECT','2025-08-21 06:49:01.572','2025-08-21 08:12:57.058',NULL),
('be48e02e-b9ff-467d-bb98-a51ee85e81e5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'4ccac009-f5a5-418b-b56b-3918c0e2dd0e','2025-01-19 16:18:39.818',220,'KAPIDA ÖDEME - LORİSWOOD - 412139015','COLLECT','2025-01-19 16:18:39.818','2025-01-28 15:19:34.396',NULL),
('be6db5a1-7bbe-4419-8089-a82427bcf589','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'72ba4e3c-e691-4405-9d2d-10322c64e886',NULL,'2024-03-30 07:14:01.357',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.875'),
('be812cb2-2eb2-4dc0-96c0-b0a43d274ff1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'0fadbd30-6b39-4e10-8b6a-91aab0921641','2025-08-21 07:01:13.944',1950,'KAPIDA ÖDEME - SEVDE SOYUÖZ - 675253974','COLLECT','2025-08-21 07:01:13.944','2025-08-21 08:12:56.878',NULL),
('be95d9e2-cb00-4ee3-bb93-de9757221827','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'e7f656e7-35d0-4f99-bacd-ea6a85d14230','2025-08-27 08:40:22.035',1790,'KAPIDA ÖDEME - HARUN ŞAHİN - 371421349','COLLECT','2025-08-27 08:40:22.035','2025-09-03 06:09:36.811',NULL),
('be96634a-d0f0-40d4-a007-a3eb3db00680','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1918bd79-b749-47cc-b3ab-efae4ee6b144','2025-06-25 10:52:20.267',1600,'KAPIDA ÖDEME - AHMET OKUTAN - 64415501','COLLECT','2025-06-25 10:52:20.267','2025-06-26 16:05:22.673',NULL),
('bebabac2-7b35-4a21-8d5c-26be9365aa4c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'82a52514-f885-46c9-bb75-54161940ec29','2025-02-13 20:20:47.547',850,'KAPIDA ÖDEME - JAFARİ SAYED OMİD - 449448008','COLLECT','2025-02-13 20:20:47.547','2025-02-24 20:28:04.441',NULL),
('bec10c6f-5501-4dc3-921d-60c14262c5c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'7e235f31-a31e-4f86-a52d-66155cdbd820','2024-05-11 08:59:22.404',1200,'KAPIDA ÖDEME - ESRA SEZEN - 428122550','COLLECT','2024-05-11 08:59:22.404','2024-05-11 08:59:22.404',NULL),
('bedec346-b6d6-4a02-a488-9ee8d9856a33','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'f75148df-6581-4c9c-b732-15039b1ebd7d','2025-07-26 07:29:09.352',1365,'KAPIDA ÖDEME - NATASCHA DJORDJEVİC - 80873489','COLLECT','2025-07-26 07:29:09.352','2025-07-26 08:40:12.412',NULL),
('bf4753c9-e341-4093-b8d7-f0f870b576d1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,NULL,'2024-11-08 17:18:18.800',-2810,NULL,'PAYMENT','2024-11-08 17:18:25.550','2024-11-08 17:18:25.550',NULL),
('bf75f627-d309-4f28-a80f-c225f2b1649f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'57a81540-e462-4e25-92dc-f9dd8b6a14df','2024-10-23 14:59:13.894',3000,'KAPIDA ÖDEME - ALİM BAŞ - 50133574','COLLECT','2024-10-23 14:59:13.894','2024-10-23 14:59:13.894',NULL),
('bfaf119b-fed3-468b-af8d-6f92fa083ce1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','afdbd570-d700-442a-b617-752921194603',NULL,NULL,'4bdcdb81-8f1e-445e-a062-3fd4dadc1b21','2025-02-15 10:11:41.018',7010,'KAPIDA ÖDEME - BÜNYAMİN ELİF ÇİLİNGİR - 570899680','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('bfce8456-c485-4470-be3b-0f185cfa93cb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ec53152b-eeec-406a-993a-23f92d510c91','2025-10-13 07:14:09.015',1000,'KAPIDA ÖDEME - FATMA KARAHAN - 478346989','COLLECT','2025-10-13 07:14:09.015','2025-10-14 08:52:36.863',NULL),
('bfd0c8aa-0baa-4dd8-b3b3-ca193a4fb203','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'df44df14-24ab-4b9d-b75e-64df6dd06eb0','2025-06-27 17:09:48.496',1450,'KAPIDA ÖDEME - KUBİLAY AKTAR - 910473991','COLLECT','2025-06-27 17:09:48.496','2025-07-01 09:19:39.055',NULL),
('bff55e96-72c8-40a4-8b02-793efbe08b8b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0f40a488-b453-400e-a6e2-874e5a76c787','2025-04-15 09:07:09.163',1500,'KAPIDA ÖDEME - DİLARA COŞKUN - 644684600','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('c00ad1f1-9be5-440a-8dd6-cc39004242a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'fc31e466-d8a0-4227-8542-d08063fb7971','2025-08-14 09:15:13.472',2525,'KAPIDA ÖDEME - TALHA KARA - 598384021','COLLECT','2025-08-14 09:15:13.472','2025-08-15 20:59:05.088',NULL),
('c01abff2-5ddc-4e35-aec6-1d90e4f9267f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'afedd778-4e9a-45c0-8eef-59b05a268db8','2024-12-09 17:29:13.673',1000,'KAPIDA ÖDEME - MUSA EMEK - 501622058','COLLECT','2024-12-09 17:29:13.673','2024-12-09 17:29:19.987',NULL),
('c0374bcd-dd14-44e4-8673-81727545d9fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1a63399e-9dca-4c70-be0e-e8e8a874b582',NULL,NULL,'99f6416e-f8e9-4260-942f-3c4c6b6fdae6','2024-09-05 15:54:27.415',1100,'KAPIDA ÖDEME - MURAT AKTAŞ - 163961995','COLLECT','2024-09-05 15:54:27.415','2024-09-05 15:54:27.415',NULL),
('c04a031d-d603-4e5b-a446-a68a605a012f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'54427ae4-0cae-449c-86ba-ad49870f64d2','2025-10-07 14:59:47.661',960,'KAPIDA ÖDEME - BÜŞRA NUR ÇELEBİ - 221278187','COLLECT','2025-10-07 14:59:47.661','2025-10-07 15:17:28.424',NULL),
('c04bd8aa-3c15-4c6c-b3ae-61d83bac5125','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f23142ef-47ba-426c-9a22-bfb123cfac47',NULL,NULL,'cd3e8ade-ee0a-4141-9b8f-81a23c9c49af','2025-01-20 06:41:20.672',1500,'KAPIDA ÖDEME - LİBELLA FRİSEURBEDAR  - 231216092','COLLECT','2025-01-20 06:41:20.672','2025-01-28 15:19:34.396',NULL),
('c063fdbb-48c2-4ea1-af06-e5c187710eb0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'821ce6fd-2cdb-4d44-be55-13bf12a05f4c','2025-08-07 16:12:15.221',650,'KAPIDA ÖDEME - BAHAR SARI - 478525280','COLLECT','2025-08-07 16:12:15.221','2025-08-16 12:28:48.751',NULL),
('c068a523-ca5e-455f-a746-a0e55eb86a67','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'9609be73-cca2-458a-aba2-d4fc54168866','2025-05-16 16:07:59.860',800,'KAPIDA ÖDEME - GAFUR NUHA - 43758285','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('c07518ad-7527-4e79-aebe-b62d5e76db52','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'ca97344f-8f56-4954-b65a-e497b3d804a4','2024-12-27 11:33:24.732',1200,'KAPIDA ÖDEME - HANAN ALİKHAN - 73529249','COLLECT','2024-12-27 11:33:24.732','2024-12-27 12:23:49.166',NULL),
('c09aa42e-69b8-4643-a686-31aa55834871','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'33e70679-b537-4fdc-8ce5-40aa59bc19f2','2024-05-04 09:35:08.632',350,'KAPIDA ÖDEME - YUSUF ADIGÜZEL - 976942978','COLLECT','2024-05-04 09:35:08.632','2024-05-04 09:35:08.632',NULL),
('c0c75b28-343e-46ee-a6e1-f83c4bd62f73','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'5a45aa6b-67e0-4e93-835b-88c97d490f10','2024-11-09 14:43:41.222',1440,'KAPIDA ÖDEME - MUSTAFA MÜEZZİNOĞLU  - 428538007','COLLECT','2024-11-09 14:43:41.222','2024-11-16 21:16:02.800',NULL),
('c10872f9-921a-40a3-b5c2-c07084d78284','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'3b29ef33-2d5d-4e29-b828-9833896d4a0d','2025-09-05 17:48:44.917',1375,'KAPIDA ÖDEME - HASSAN KHORRAM - 598441020','COLLECT','2025-09-05 17:48:44.917','2025-09-06 09:41:31.802',NULL),
('c113efca-64ca-4c92-a19a-9114f61b7701','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3e6f544c-260c-4661-9a22-59d5cb509c0a','2025-04-30 13:44:23.805',350,'KAPIDA ÖDEME - GÜLDEN KARADAĞ - 745291553','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('c117a161-aa6f-4e7d-989d-e6665746a6e3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'4db2cf6a-4630-408a-8eb4-5fa058697a7a',NULL,'2024-03-30 07:14:01.307',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:53.014'),
('c16dd34f-6b5d-4abe-a84f-050b4b0548b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'b3da5f6e-e62f-4f04-9a07-a71259befc0b','2025-02-07 11:30:49.656',1100,'KAPIDA ÖDEME - NURTEN-HASAN ÇAKMAK - 478644410','COLLECT','2025-02-07 11:30:49.656','2025-02-15 11:10:42.855',NULL),
('c1a5ffda-eac1-424f-a101-776544514e99','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'4e0cea3d-63d2-42a8-afae-666b9df651a4','2024-09-12 12:51:39.927',1700,'KAPIDA ÖDEME - MEHMET DORUM - 248526655','COLLECT','2024-09-12 12:51:39.927','2024-09-12 12:51:39.927',NULL),
('c1ad1b08-8ae4-4ab9-ab24-a6a0055eef24','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'67b11594-b70e-476e-8c77-ee73ff34ee0a',NULL,'2024-03-30 07:25:34.544',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.562'),
('c1b5ad24-a35e-4981-9e67-89320f0144cb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5','2025-02-20 08:41:42.101',1000,'KAPIDA ÖDEME - NAİMA BOURAJJOU - 22186590','COLLECT','2025-02-20 08:41:42.101','2025-02-20 12:40:28.679',NULL),
('c1cba125-73a8-4909-9c93-cfe1ae382ff2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'fd6227ea-51d9-463a-bf38-1fd2110f95f6','2025-09-12 17:03:30.373',990,'KAPIDA ÖDEME - ADEM  GENÇ - 614553524','COLLECT','2025-09-12 17:03:30.373','2025-09-12 17:16:02.732',NULL),
('c2214f60-18b8-4a24-b277-c3091d82a304','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'887939c6-c572-4048-9ec2-13b2ba75c706','2024-09-16 12:16:54.154',1800,'KAPIDA ÖDEME - SEVDA ÇAYLAK - 449475255','COLLECT','2024-09-16 12:16:54.154','2024-09-27 13:36:34.932',NULL),
('c2298227-a423-4d9d-8016-331afedfb9bb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'a5a0d095-3374-44f2-a144-e0660e15a03a','2025-08-07 16:12:15.243',925,'KAPIDA ÖDEME - DENİZ AKGÜMÜS  - 613601743','COLLECT','2025-08-07 16:12:15.243','2025-08-12 08:07:30.387',NULL),
('c2423451-f8fe-48d1-aa8e-d4046d5b1699','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'e11f564b-74bf-4751-85eb-7e44c0361b37','2025-01-05 15:06:42.581',2300,'KAPIDA ÖDEME - NURAY KARABURUN  - 910407767','COLLECT','2025-01-05 15:06:42.581','2025-01-07 17:06:26.160',NULL),
('c2951cd7-8751-4246-9d39-691eee4798d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'3d2aaa7f-67db-4dff-a3ad-5b3684784654','2024-08-21 13:49:23.910',2050,'KAPIDA ÖDEME - DURSUN GÜNBEYİ - 501766543','COLLECT','2024-08-21 13:49:23.910','2024-08-31 18:15:45.030',NULL),
('c2b35a6e-1651-472f-99cf-34359c032a33','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c904b27b-bbae-4aa4-8662-a377929d7338',NULL,NULL,'65e0ebe7-0bff-4307-92ba-96c874e28cd8','2025-04-11 12:31:02.630',100,'KAPIDA ÖDEME - GÜRKAN DAĞ - 904803845','COLLECT','2025-04-11 12:31:02.630','2025-04-15 14:54:58.058',NULL),
('c2b3f7e7-2815-4b5e-8d6a-6f05aaad8fd1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'a5221ddb-40ec-42e7-8be1-4f0a5fd4c354','2024-11-27 18:55:56.883',450,'KAPIDA ÖDEME - ERKAN KARAKUŞ  - 248614567','COLLECT','2024-11-27 18:55:56.883','2024-12-02 09:51:49.376',NULL),
('c2cc0477-8d41-4776-b16b-d7dca1d7e7d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'c1b1a711-e322-4a5e-a681-2fe0fcb0deba','2024-09-03 15:00:01.310',600,'KAPIDA ÖDEME - ALİ ŞİMŞEK - 248625081','COLLECT','2024-09-03 15:00:01.310','2024-09-03 15:00:01.310',NULL),
('c2d9b9cb-8ce8-46a9-ad2a-327fff946fe8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c1b8db95-a2de-4d83-a91b-b023c570372f','2024-10-31 08:34:25.110',3100,'KAPIDA ÖDEME - NURKOVİC JASMİN - 982176810','COLLECT','2024-10-31 08:34:25.110','2024-11-28 09:15:31.466',NULL),
('c2f004c7-6103-44f2-858c-f30a47d94455','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'e4376e5d-056f-4fc2-8f2c-979f3991845c','2024-09-27 12:40:14.252',1000,'KAPIDA ÖDEME - GÖKBEN BEYDİLLİ - 478836905','COLLECT','2024-09-27 12:40:14.252','2024-09-27 12:40:14.252',NULL),
('c318b978-642c-4865-b2a2-8a2a723b3390','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'777a9d0a-ed8a-4b87-a971-1803e6a68047','2025-07-18 17:50:30.822',1800,'KAPIDA ÖDEME - İPEK ÇİFTÇİ - 478300917','COLLECT','2025-07-18 17:50:30.822','2025-07-22 16:18:49.568',NULL),
('c318eff4-c26c-4cfa-9c08-67bdc3fe7b9c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3addc5c1-e82b-4a1a-b4af-1f66307a9108',NULL,NULL,'afe81c71-4f9c-44db-99e3-a9a478763539','2025-09-01 06:45:43.672',500,'KAPIDA ÖDEME - HÜSEYİN ÇELİK - 351888584','COLLECT','2025-09-01 06:45:43.672','2025-09-05 08:55:11.160',NULL),
('c32925ae-f046-4211-b4b9-98246eacebda','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'50aeff12-6812-447f-b3a6-0c51ad9fc878','2025-02-20 08:55:34.912',1700,'KAPIDA ÖDEME - EHSANULLAH SEDİGİ  - 982663240','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('c34afa13-9e38-44f6-b5b9-c0faa10e3345','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'a182b824-b752-401d-b663-5d96552a9f49','2024-10-07 19:09:50.136',500,'KAPIDA ÖDEME - Ahmet Aydın - 412346984','COLLECT','2024-10-07 19:09:50.136','2024-10-11 08:53:39.745','2024-10-11 08:53:39.753'),
('c34c7e69-d183-45dd-ab9f-8b54e9e6dc30','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'24e58e68-4ee3-40c0-8505-b017493468c7','2025-10-03 15:32:37.664',590,'KAPIDA ÖDEME - ZELİHA SARITAŞ - 644287826','COLLECT','2025-10-03 15:32:37.664','2025-10-03 16:08:51.200',NULL),
('c3d004ab-fa7c-4dcb-99eb-22e04b1cfc54','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'043a7a5f-42c5-447c-9943-b3106067ee95',NULL,'2024-03-25 11:45:14.634',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.646'),
('c40eb97d-f5ef-409b-a518-b54bde8b0081','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'ab2f1d14-a20a-43bf-b89f-55328f271e01','2025-09-25 16:04:06.562',1150,'KAPIDA ÖDEME - CEMAL CANKURT - 976369139','COLLECT','2025-09-25 16:04:06.562','2025-09-26 12:27:42.450',NULL),
('c41d97c6-d09a-4048-a1a1-8de4b19f28f0','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'61c62b54-9519-46bc-a518-390b8b72c6dc','2025-09-12 17:03:30.295',750,'KAPIDA ÖDEME - KADER YILDIZ - 765600734','COLLECT','2025-09-12 17:03:30.295','2025-09-12 17:16:02.635',NULL),
('c42531b3-f4b7-4535-9049-54950c22657f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f','2025-03-25 19:20:46.451',650,'KAPIDA ÖDEME - AMİRA GHRAB - 81723596','COLLECT','2025-03-25 19:20:46.451','2025-03-29 13:37:01.615',NULL),
('c4270cab-9157-4ac5-8440-058d304c5f4e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'fc342b6f-4e7b-4135-b9da-1b0934f30a0d',NULL,'2024-03-30 07:25:33.193',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.626'),
('c4297e89-d073-4768-9cf4-a7598ef74538','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c904b27b-bbae-4aa4-8662-a377929d7338',NULL,NULL,'92da393c-5934-4ca0-96a4-6f7b809428cc','2025-03-06 10:36:00.290',1050,'KAPIDA ÖDEME - GÜRKAN DAĞ  - 904863225','COLLECT','2025-03-06 10:36:00.290','2025-03-06 10:36:11.461',NULL),
('c4406296-5a86-402b-915a-780b0006ebcf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'6189b41d-2a4c-42b9-b146-5fe82bdc676b','2025-02-27 10:42:46.210',620,'KAPIDA ÖDEME - SEDA ERSÖZ - 644823609','COLLECT','2025-02-27 10:42:46.210','2025-03-21 17:17:29.974',NULL),
('c4487e6a-b238-45c8-a51c-6017306ea4cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'00cb480a-305b-41e6-8cb5-337678c881bf','2025-02-15 10:11:41.018',1250,'KAPIDA ÖDEME - ARİFE SARI - 127865742','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('c48db545-4404-442b-b306-9b508ccbdf42','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0afc84bf-0fec-469c-b4e4-09a7be452c9c','2025-04-25 15:45:30.739',990,'KAPIDA ÖDEME - YUSUF TÜRKGELDİ - 478537954','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('c4bbc09c-b195-4819-b7f1-ee0686535106','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'4b7eb51b-9f98-4771-9c1e-ea99abe7f44a','2025-01-22 08:43:42.642',400,'KAPIDA ÖDEME - ASLIHAN KELES - 478112159','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('c4ec5d67-95f4-4dd3-977c-603fc2e5f3f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4','2024-05-11 08:50:56.737',1750,'KAPIDA ÖDEME - MÜLLER CYRİLL - 126525086','COLLECT','2024-05-11 08:50:56.737','2024-05-17 14:16:33.224',NULL),
('c50972fc-8cea-45c0-98bd-35d29802b4a9','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'effb3586-1055-4a6a-95db-95d0060cdeeb','2025-07-29 12:30:31.451',1225,'KAPIDA ÖDEME - GÖKHAN ZÜRLÜER - 598157006','COLLECT','2025-07-29 12:30:31.451','2025-07-29 12:43:42.884',NULL),
('c51d6635-5e8e-4827-bd78-bb994e0a06e9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6',NULL,NULL,NULL,'2024-11-12 08:16:17.852',200,NULL,'COLLECT','2024-11-12 08:16:22.427','2024-11-12 08:16:22.427',NULL),
('c578c0c3-e84c-4bd1-bfb1-4b18480e9d95','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'7edca54a-9671-41a7-883d-c2d819811110','2024-11-06 09:23:43.278',1190,'KAPIDA ÖDEME - YILDIRIM  ASLAN  - 614766744','COLLECT','2024-11-06 09:23:43.278','2024-11-28 09:15:31.466',NULL),
('c58ff4c5-9740-448b-bb9a-c4958638966f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'8828af70-12d3-4a54-b004-b8bbbeafa45f','2025-02-23 12:11:56.360',1160,'KAPIDA ÖDEME - MURAT AKTAŞ - 412842533','COLLECT','2025-02-23 12:11:56.360','2025-03-02 04:33:53.043',NULL),
('c5a53c77-e3fe-4382-a268-5776b2a42fad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'47709c5a-15a6-491c-924f-a72a590fd417','2024-03-30 09:29:38.017',1750,'KAPIDA ÖDEME - DİYAR YEŞİLKAYA - 982547993','COLLECT','2024-03-30 09:29:38.017','2024-04-03 11:39:19.337',NULL),
('c5a85d3d-cb00-486f-baee-a0f866234310','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'183e4649-4c9e-491a-ab8a-0e24c8224108','2025-10-02 06:39:26.332',4000,'KAPIDA ÖDEME - GÜLŞAH KUŞ - 745219309','COLLECT','2025-10-02 06:39:26.332','2025-10-04 11:31:40.628',NULL),
('c5f3a75f-2f42-4064-ad5e-e0cdb009f761','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'967bb071-1af8-4c06-bfd2-0cb20530dd7d','2025-04-15 14:44:59.275',500,'KAPIDA ÖDEME - NAİMA BOURAJJOU - 221106888','COLLECT','2025-04-15 14:44:59.275','2025-04-15 14:54:58.058',NULL),
('c6477e5a-8a91-42bc-be22-1ad5d986adbc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'462436e2-17b1-4c65-8ccd-cd83b180543f','2024-08-31 13:07:31.205',2900,'KAPIDA ÖDEME - MALHA MUHAMMED - 982873637','COLLECT','2024-08-31 13:07:31.205','2024-08-31 13:07:31.205',NULL),
('c66b9321-c80b-493f-a0c4-ab6702f11795','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'223bf502-0a5c-4df0-bef2-463ec95dbb4e','2025-08-07 16:12:15.251',790,'KAPIDA ÖDEME - BERİVAN ERTUĞRUL  - 221559079','COLLECT','2025-08-07 16:12:15.251','2025-08-12 08:07:30.296',NULL),
('c66c898b-5754-4c4f-b7bd-5af607d7e3ab','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'95ff7b1e-98b7-452d-ab80-8e142b1b8abe','2025-07-12 09:16:05.740',545,'KAPIDA ÖDEME - AYHAN İÇEN - 745813483','COLLECT','2025-07-12 09:16:05.740','2025-07-16 14:21:29.572',NULL),
('c6943dd8-9aff-4dda-8171-e5469ade79ba','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'ff95657a-16fe-4eda-9384-6d189d9a5bd8','2024-08-21 13:49:00.838',1400,'KAPIDA ÖDEME - HALİL AYDOĞAN - 501869420','COLLECT','2024-08-21 13:49:00.838','2024-08-23 09:03:06.028',NULL),
('c70c6e98-b071-4586-a25c-52101f936a2c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5f9f6345-4b94-4cd2-9416-610df7cd46da','2025-10-07 14:59:47.760',350,'KAPIDA ÖDEME - MAHMUD BİRÜKOF - 598754271','COLLECT','2025-10-07 14:59:47.760','2025-10-07 15:17:28.453',NULL),
('c70c7d13-16c8-46a4-a38f-6bd5c0058fbf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'443b2d74-2924-44bf-be40-fea72295fd6c','2025-09-16 07:10:55.442',750,'KAPIDA ÖDEME - TAYLAN KAZAL - 371179895','COLLECT','2025-09-16 07:10:55.442','2025-09-19 10:00:25.456',NULL),
('c7183f6d-851f-48d2-a4f6-be3ab8da492c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'db8a75e3-4504-4b96-818d-1dbacdd5b67f',NULL,'2024-03-25 11:45:13.834',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.728'),
('c735e750-ac1d-4d63-b5eb-ad99ea330e58','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'e1db05d8-3a36-4066-8f42-7fd65a69076a','2025-05-14 16:56:37.597',800,'KAPIDA ÖDEME - ENDER CAN ORHAN - 371836215','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('c73759f6-5605-41a5-a083-9d185d54ab60','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'32af2488-e641-4d93-9e64-e4ff7977ab48','2025-09-02 12:04:14.859',2050,'KAPIDA ÖDEME - KHALED SEMMO  - 613175888','COLLECT','2025-09-02 12:04:14.859','2025-09-02 14:46:19.340',NULL),
('c738a8ab-c99c-4fef-823d-94f3b4516720','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'a3d9ed34-0a43-46a5-88ac-b4bf44493c05','2025-04-15 14:54:55.024',1700,'KAPIDA ÖDEME - İSVİÇRE - 248186638','COLLECT','2025-04-15 14:54:55.024','2025-04-15 14:54:58.058',NULL),
('c7428c05-572d-4579-baed-73223d9a06e7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c55504b4-7a7a-439e-8e37-908ee8343a67','2024-11-13 10:22:33.914',1800,'KAPIDA ÖDEME - Ajroski ajsun - 98285799','COLLECT','2024-11-13 10:22:33.914','2024-12-09 08:24:38.479',NULL),
('c74b229f-4b33-48b9-bb4d-32254bdfce17','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'494f3e98-90be-4c2a-94b4-33e9a0c27aaf','2024-09-05 16:33:07.718',840,'KAPIDA ÖDEME - BRÜHL CAMİSİ - 41283002','COLLECT','2024-09-05 16:33:07.718','2024-09-05 16:33:07.718',NULL),
('c7a4a503-4d96-4580-a1f3-9d586c60c0a2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c25ac7c4-4bc1-4a99-bd3f-189af6d00f37','2025-09-23 07:43:59.480',750,'KAPIDA ÖDEME - KADİR ÜZER - 371495147','COLLECT','2025-09-23 07:43:59.480','2025-09-24 13:41:14.989',NULL),
('c7b8a2c6-6fff-4a85-8aa6-ced72daf3b3a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e015be65-fcb6-4e8a-8bc0-935d14b02ec6','2024-09-18 21:25:44.568',1900,'KAPIDA ÖDEME - RODRİGUES AMİNA - 982542299','COLLECT','2024-09-18 21:25:44.568','2024-09-18 21:25:44.568',NULL),
('c7be173f-9ecf-4bcd-8c72-bb41df2f8aac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1c5bab65-b13f-47a3-a069-66dac652ca30','2025-07-12 09:16:05.789',1400,'KAPIDA ÖDEME - SEYİTHAN ASLAN - 745212688','COLLECT','2025-07-12 09:16:05.789','2025-07-16 14:21:29.435',NULL),
('c7d54659-7354-473a-be98-5332ac2cb2ef','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'5a5d710b-b6aa-42ac-baf2-69abc2901c83','2025-10-02 06:39:26.361',850,'KAPIDA ÖDEME - AUCHLİ ANA  - 221616369','COLLECT','2025-10-02 06:39:26.361','2025-10-02 11:05:59.199',NULL),
('c7e728fa-4230-4cfa-a4a2-b002396990ea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'82d80e65-06fc-4494-86fe-0aa63b37337e','2025-08-30 12:41:46.600',700,'KAPIDA ÖDEME - BETÜL GÜNER - 644550858','COLLECT','2025-08-30 12:41:46.600','2025-09-05 08:55:11.114',NULL),
('c81ad863-6402-487d-a7ec-facad7fc8724','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d89f6e4c-ad0d-4d1f-98c2-188a94803196',NULL,NULL,'02252192-88b5-496d-97b8-647d4bed1035','2025-09-02 14:33:07.556',425,'KAPIDA ÖDEME - BESTE NUR ÖZKAYA - 896769535','COLLECT','2025-09-02 14:33:07.556','2025-09-18 15:48:17.548',NULL),
('c8591e4f-4f89-4407-9bdb-fc767b231279','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5045a79c-4874-4baf-b0cf-15d0d296389d','2025-08-25 11:36:09.164',4000,'KAPIDA ÖDEME - KEVSER KAYA - 478983907','COLLECT','2025-08-25 11:36:09.164','2025-08-25 12:31:31.405',NULL),
('c85e49f8-ed87-4c1e-a382-1d8f2e4651bc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'4598b25d-5bcc-42b3-8fc2-57baa395b0d3','2024-05-29 08:57:33.605',4400,'KAPIDA ÖDEME - Aferdidita ukshinaj - 319835776','COLLECT','2024-05-29 08:57:33.605','2024-05-29 08:57:33.605',NULL),
('c85fe6d2-91ed-4b30-956f-e7431dbe4834','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf50c8b-294e-4072-b9f1-99363b966bb1',NULL,NULL,'7b615872-31ff-47b5-87ed-3eca52a1fc1f','2025-10-06 07:15:30.232',650,'KAPIDA ÖDEME - HELENA GÖKKAYA - 150685221','COLLECT','2025-10-06 07:15:30.232','2025-10-06 07:15:30.232',NULL),
('c8a4fd95-d02f-4702-b606-afb687dca86c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'6220c77f-761e-462c-a359-ad8d9ba79902','2024-05-29 08:52:13.026',1410,'KAPIDA ÖDEME - VOLKAN ARAZ - 745553590','COLLECT','2024-05-29 08:52:13.026','2024-05-29 08:52:13.026',NULL),
('c8abb53a-0f2c-4202-9726-a3de9d8edee9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'dc168d3a-15d7-4943-befc-fa8acf731f7a',NULL,'2024-03-30 07:25:34.294',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.590'),
('c8bb77c4-c972-4a21-8f9a-d55961b9fb50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'197eebba-bc46-492a-86c8-87638b86150d','2025-03-08 13:37:32.391',700,'KAPIDA ÖDEME - BERFİN HALİS ŞENGÜL - 910572875','COLLECT','2025-03-08 13:37:32.391','2025-03-11 07:46:41.850',NULL),
('c8bcf657-f743-4a22-95b1-754272b9b0ba','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'05940da7-019d-4e63-b256-fc9fbba594ab','2025-07-29 12:30:31.441',750,'KAPIDA ÖDEME - BEYZA ÇALIK - 644644115','COLLECT','2025-07-29 12:30:31.441','2025-07-29 12:43:31.872',NULL),
('c8ef3a17-6436-4958-bebf-cd3244266d23','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'be44de23-229f-41e6-8dac-6b3d7459bdc7','2025-07-11 07:57:47.139',1350,'KAPIDA ÖDEME - GHATİA PARASCHİVA - 982163675','COLLECT','2025-07-11 07:57:47.139','2025-07-11 08:00:02.582',NULL),
('c90359f4-ded2-4376-bdfc-559e6dd282a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'3e41715f-3ab6-49c2-82c0-0d29a29b4a56','2024-12-13 13:26:01.811',1120,'KAPIDA ÖDEME - İBRAHİM BULUT - 73570714','COLLECT','2024-12-13 13:26:01.811','2024-12-16 18:41:52.448',NULL),
('c9149f80-55bb-4168-a3c2-fbb91fddaec0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'b87e1d8e-8fc1-4a22-a789-515797619936','2025-10-07 14:59:47.610',570,'KAPIDA ÖDEME - TÜLAY ÇAĞLAR - 644637792','COLLECT','2025-10-07 14:59:47.610','2025-10-07 15:17:28.526',NULL),
('c9171850-8cac-43a9-a2b0-1b7bfdb754a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'f0caced4-3715-4549-a387-1a73db0a7166','2024-12-28 14:44:13.141',450,'KAPIDA ÖDEME - ŞEYMA ŞANLI  - 221883606','COLLECT','2024-12-28 14:44:13.141','2025-01-06 20:08:12.782',NULL),
('c937541a-6500-45f5-9fa5-547f467b4c6c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'bc5655fe-7957-4a4b-8b86-3cb1da8d33c6','2025-10-01 06:41:28.853',1300,'KAPIDA ÖDEME - MELEK KAYMAZ(K) - 644547865','COLLECT','2025-10-01 06:41:28.853','2025-10-01 07:56:23.217',NULL),
('c952d969-27a1-4e07-99d3-8d97d2b0985d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'ea3c1c28-a33e-4d1d-8643-1634f428c2c7','2025-02-27 11:45:33.845',1150,'KAPIDA ÖDEME - EMEL SERPMEN - 745311878','COLLECT','2025-02-27 11:45:33.845','2025-03-21 17:17:29.974',NULL),
('c95d1515-b8fc-4fe7-bebf-be69f6aac835','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'81f86e2b-be85-44ae-8061-46babd1b6387',NULL,'2024-03-30 07:25:33.143',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.597'),
('c95f3b2c-f4cd-4a6b-ba8b-f51cdc0cb9ca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'964fcf95-183e-4624-afee-8e83b0ce2134','2025-03-25 19:27:15.880',850,'KAPIDA ÖDEME - ÖZLEM POLAT - 37176846','COLLECT','2025-03-25 19:27:15.880','2025-03-29 13:37:01.615',NULL),
('c976f942-06a9-40dc-8b36-9f1403d8ef42','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'634da4a7-cb23-47ac-b1c0-4e2803761a04',NULL,'2024-03-25 11:45:13.432',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.660'),
('c97d26c6-5930-476a-b2ae-03b8fd23536a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'fd4a184e-d04a-45fa-af74-f7d45806dede','2025-06-30 18:28:07.806',1050,'KAPIDA ÖDEME - TUĞRA NUR DÜZGÜN - 644298759','COLLECT','2025-06-30 18:28:07.806','2025-07-07 11:44:52.861',NULL),
('c97d31fc-6b93-4cb2-a839-ad4076c7515f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'cdfdd075-fc72-48e7-9a4f-fb9cb9f52f1e',NULL,'2024-03-30 07:25:33.743',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.600'),
('c98acb2a-6e8e-429f-8f6c-f2172689d48f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b','2025-08-27 08:40:21.874',575,'KAPIDA ÖDEME - LEPETİT CRİSTELLE - 221251932','COLLECT','2025-08-27 08:40:21.874','2025-09-03 06:09:36.750',NULL),
('c99ecdca-c433-4901-89f2-57e5f8fe0830','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'5d656399-d4c2-49fa-a9e7-be2b15a2116d','2025-09-25 16:04:06.569',1325,'KAPIDA ÖDEME - ALEYNA KARAKUS - 613787861','COLLECT','2025-09-25 16:04:06.569','2025-10-03 16:08:51.070',NULL),
('c9ab975c-f90c-41ec-a4bb-6bb12fd123be','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e3b567b1-e72b-4ce6-a2aa-53a55fb530c1','2025-02-20 08:41:42.101',600,'KAPIDA ÖDEME - TBATOU SELMA  - 221649442','COLLECT','2025-02-20 08:41:42.101','2025-02-20 12:40:28.679',NULL),
('c9ad7b46-dde1-449b-a319-58196fe1d5c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'19e9a585-4bbd-4792-9b14-2af8605e433f','2025-09-25 16:04:06.510',545,'KAPIDA ÖDEME - HASAN KAYA - 64413417','COLLECT','2025-09-25 16:04:06.510','2025-09-26 12:27:42.328',NULL),
('c9d48969-e150-41e0-a806-bb9f30b04f27','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'33bf461b-bfdc-43fa-ba84-0d2a96795062',NULL,'2024-03-25 11:45:13.484',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.776'),
('ca4002f9-affb-4b15-9944-f7e329e5f8ed','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d89f6e4c-ad0d-4d1f-98c2-188a94803196',NULL,NULL,'1f7b65a0-1a7c-4441-b49f-65934040cb94','2025-08-27 08:40:21.943',350,'KAPIDA ÖDEME - KATRİN MESİNGER - 896847151','COLLECT','2025-08-27 08:40:21.943','2025-09-03 06:09:36.646',NULL),
('ca424a3f-c0b9-4fa1-8b46-1c64ff8984b6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','27cbce83-310c-4e98-830f-7433b10c2efd',NULL,NULL,'ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6','2025-08-25 11:36:09.223',2580,'KAPIDA ÖDEME - EMRE ÇELİK - 278329196','COLLECT','2025-08-25 11:36:09.223','2025-08-25 16:32:32.224',NULL),
('ca476bad-43fb-41ca-a889-27ee9690e622','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','2025-05-25 10:54:07.830',1750,'KAPIDA ÖDEME - GAMZE ŞAŞMA - 644523362','COLLECT','2025-05-25 10:54:07.830','2025-05-26 15:07:26.342',NULL),
('ca642ad6-01ee-4ab3-9ca1-57016332d7b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2c93b982-af74-4681-a002-6a0883ae7377','2025-06-14 12:48:04.680',1350,'KAPIDA ÖDEME - THOMAS TELAH - 982681083','COLLECT','2025-06-14 12:48:04.680','2025-06-18 08:08:50.179',NULL),
('ca9b9813-6157-43f5-9b71-4a4b8876d2fd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'509ec2fa-23ec-4576-8840-d2ebdd3ca734','2025-04-15 09:07:09.163',740,'KAPIDA ÖDEME - LALE AKGÜL - 371533444','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('caa45594-06b1-4af6-83ab-53d005a14ca7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0debd19b-d90b-48a0-9568-2d01319377e0',NULL,NULL,'9a2cd9bb-ae57-461a-be14-d7858f39280c','2025-02-07 11:48:22.096',600,'KAPIDA ÖDEME - METE KANDEMİRCİ - 01921294','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('cac8c02a-5c30-41dc-99ca-b60958e53665','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'0c43519c-5551-4f80-8c50-18c10c21048d','2025-10-13 07:14:08.995',595,'KAPIDA ÖDEME - TAKİ ÇAYCI(K) - 644257752','COLLECT','2025-10-13 07:14:08.995','2025-10-14 08:52:36.843',NULL),
('caf1e2c8-66e8-41c7-91ee-631db99fd640','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'273c83bb-2405-453b-8f32-a6fd281b21a7','2025-06-30 18:28:07.839',2300,'KAPIDA ÖDEME - ÜMİT MORCA - 644377995','COLLECT','2025-06-30 18:28:07.839','2025-07-07 11:44:52.663',NULL),
('cb1c0fec-b476-4dd0-ac16-02834aa33c3f','DEFAULT-EUR','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e032e33f-200c-486b-ab1c-c92b86e89536','2024-11-03 21:18:11.245',3100,'KAPIDA ÖDEME - Nurkovic jasmın  - 982572348','COLLECT','2024-11-03 21:18:11.245','2024-11-06 14:20:41.350','2024-11-06 14:20:41.356'),
('cb2bbec0-a1c6-44a8-961b-2153e26dc258','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'32f7a105-8ee5-4d45-907c-2d7f861d1ce3','2025-05-24 10:58:02.722',350,'KAPIDA ÖDEME - İNCİ TOKGÖZ - 478240909','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('cb52a913-bd15-4b9a-b923-b81758e068e6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d7958243-b0c6-4628-be4c-9325b494d303',NULL,'2024-03-25 11:45:13.132',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.803'),
('cbb6eff5-5082-4865-9c97-14803e0eedd6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'d6348c7e-4b86-444e-859f-29dce263d04b','2024-04-07 20:59:27.472',2850,'KAPIDA ÖDEME - Hasan bey - 412800723','COLLECT','2024-04-07 20:59:27.472','2024-04-07 20:59:27.472',NULL),
('cc109be9-09b8-42ec-9669-056cf83be546','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'51eada14-8b0b-474d-993b-35b1df5b1fdc','2025-07-12 09:06:58.280',600,'KAPIDA ÖDEME - GÜLAY KIZIL - 221598709','COLLECT','2025-07-12 09:06:58.280','2025-07-16 14:21:29.519',NULL),
('cc13ccf3-0173-4af1-aa5c-ef8d33c5a9f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'c5ec9d69-bb2f-4aba-896d-c9e40c0158c4','2024-07-02 08:08:45.812',1000,'KAPIDA ÖDEME - HALİT ŞEN - 614474485','COLLECT','2024-07-02 08:08:45.812','2024-07-02 08:08:45.812',NULL),
('cc480ae2-b74f-44ae-84b8-c56df80454cf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d5670c41-1af2-48f4-a947-753c331653a4','2025-09-25 16:04:06.465',1250,'KAPIDA ÖDEME - SÜVEYLA TARHAN - 745906539','COLLECT','2025-09-25 16:04:06.465','2025-09-26 12:27:42.417',NULL),
('cc61cc38-cdfd-4991-b87a-b46cacc68453','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'ac7ab08c-6eaa-4002-9075-7a985dd13c18','2024-12-07 08:50:53.387',1800,'KAPIDA ÖDEME - FEHMİYE KESERCİ - 478949141','COLLECT','2024-12-07 08:50:53.387','2024-12-17 19:52:32.750',NULL),
('cc6682f6-e249-47ed-ab5b-bdf9bd7304d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'f5ff5ecc-8494-400b-acf9-c8906860204a','2024-10-02 09:55:39.044',2070,'KAPIDA ÖDEME - MUHSİN AKTEPE - 248977442','COLLECT','2024-10-02 09:55:39.044','2024-10-02 10:11:50.506',NULL),
('cc6a1435-9dea-497d-a2f3-c1f203965e55','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d','2025-03-25 19:21:55.337',790,'KAPIDA ÖDEME - YAREN ÇAKALLI - 47855592','COLLECT','2025-03-25 19:21:55.337','2025-03-29 13:37:01.615',NULL),
('ccb0eb82-0940-4f8a-a9a8-9f14a82d3e20','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'7c239237-a1fb-41c7-936d-912d80326901','2025-07-12 09:16:05.727',2000,'KAPIDA ÖDEME - AYŞEGÜL GÖKTEPE - 478545457','COLLECT','2025-07-12 09:16:05.727','2025-07-16 14:21:29.548',NULL),
('ccbf8c5d-9e95-4236-8363-473969739939','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'47b351a7-6171-418d-b138-7c197c50e909','2025-08-14 07:54:07.562',645,'KAPIDA ÖDEME - MİYASE AYDIN - 437945654','COLLECT','2025-08-14 07:54:07.562','2025-08-14 08:02:29.732',NULL),
('ccf6edfa-dda1-4548-a7d7-6622e244ec7e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'220db035-3213-4ef9-ba91-2f141c43fdd5','2024-12-20 13:45:49.502',825,'KAPIDA ÖDEME - MERLİNDA MERDJANİ - 248849829','COLLECT','2024-12-20 13:45:49.502','2025-01-11 10:16:45.910',NULL),
('cd70449f-3f63-4959-ab73-0d3d7dcb31f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'cba51d7d-e0e2-4e21-acf0-8699ede8b4b3','2025-05-23 06:31:10.164',350,'KAPIDA ÖDEME - DEMET HANIM - 657640918','COLLECT','2025-05-23 06:31:10.164','2025-05-26 13:23:22.333',NULL),
('cd92044b-7595-482b-831c-c5b8826d2a29','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'91e8883e-fdcc-426e-99c9-17707c173e50','2025-02-03 17:59:08.362',1200,'KAPIDA ÖDEME - AHMET TEKİN - 501934466','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('cd9b0a4d-20a5-48ac-b9d8-5e3433fac5d2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8203fdec-99ef-4eea-b5d2-7dc3476dfcf5','2024-10-02 09:17:41.268',5000,'KAPIDA ÖDEME - NİLÜFER YAMAN - 745972164','COLLECT','2024-10-02 09:17:41.268','2024-10-02 09:17:41.268',NULL),
('cda1ce51-5f45-452a-ad19-ab95d04dbbb7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'aa5c731f-f0ea-43c7-9644-2e9bd7d45c48','2024-11-23 14:36:11.497',2000,'KAPIDA ÖDEME - AHMET ÖZDEMİR - 478622556','COLLECT','2024-11-23 14:36:11.497','2024-12-02 09:51:49.376',NULL),
('cda70810-ccca-4939-ab9f-d41a024aa4b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'7a2cd810-7e27-4b3c-9394-3429f5c4d22b','2025-06-30 18:33:09.255',1000,'KAPIDA ÖDEME - DİLAN HANIM - 486724632','COLLECT','2025-06-30 18:33:09.255','2025-07-07 11:47:15.934',NULL),
('cdbc2065-a2e3-48d2-876b-52906f5e8a8f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'e698509e-076f-4ac2-b2de-bd8a1dfd105e','2025-09-24 13:55:14.383',350,'KAPIDA ÖDEME - AZEM SATTAR - 248158562','COLLECT','2025-09-24 13:55:14.383','2025-09-24 13:55:14.383',NULL),
('cde6cc61-145c-4802-970a-03b707ec94fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'548ed737-ff1e-4d15-8e34-d66ac4314840','2025-07-18 17:50:30.938',2900,'KAPIDA ÖDEME - SAHİN DİNÇ - 371514006','COLLECT','2025-07-18 17:50:30.938','2025-07-22 16:18:49.536',NULL),
('ce0770c3-af5e-4116-a209-eb30fa90edfd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'b00227de-ee41-4b65-a07a-229d31a6d4da','2024-12-20 14:18:40.715',1800,'KAPIDA ÖDEME - HASAN GHASEMİ - 449329901','COLLECT','2024-12-20 14:18:40.715','2024-12-27 12:23:49.166',NULL),
('ce12bd8b-499d-4349-a71d-a787c8a9fb2d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'cd4de4f7-a394-47c7-89e2-dd9e57ec790d','2025-02-03 17:50:13.401',250,'KAPIDA ÖDEME - SEZER DOĞAN - 338474620','COLLECT','2025-02-03 17:50:13.401','2025-02-11 17:09:06.423',NULL),
('ce7d93c6-3b26-4fdb-b772-48f82179302a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'c1cea88c-608d-4453-b63a-81ba0b909940','2024-10-23 14:40:43.347',840,'KAPIDA ÖDEME - BURAK TÜRKEŞ - 614458088','COLLECT','2024-10-23 14:40:43.347','2024-10-23 14:40:43.347',NULL),
('ce9e380d-f6bd-4386-b543-8e33c8aaa910','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4f12f440-a116-4008-91df-70191ee2d9f1','2025-01-22 08:43:42.642',1550,'KAPIDA ÖDEME - MÜSLÜM MERDANE - 74520622','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('ceeed2c2-c741-437e-b111-5c9f45c71ab0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'33c1702e-09af-4ac6-992c-6abbb6899f2c','2025-05-24 10:58:02.722',1650,'KAPIDA ÖDEME - KERİM ŞENTÜRK - 644966461','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('cef1adf6-33ad-4fe3-8532-45cd27e1cf2b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'8634d29b-6164-4e3e-a0b9-d50827c18702','2025-10-13 07:14:09.037',700,'KAPIDA ÖDEME - SELÇUK SÖNMEZ - 371183095','COLLECT','2025-10-13 07:14:09.037','2025-10-14 08:52:36.892',NULL),
('ceffb14a-139f-44ad-a6fe-e8a61206d1fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a2313433-a437-47d9-a63c-55c129ea96e2','2025-04-26 14:41:20.302',600,'KAPIDA ÖDEME - NURSELİ KÖSE  - 221285061','COLLECT','2025-04-26 14:41:20.302','2025-04-26 16:02:30.708',NULL),
('cf0276f6-0561-4ed3-b085-3ce279a80870','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9134b63f-7d66-4eba-936c-7bc7dbbabe6a','2025-02-20 08:55:34.912',860,'KAPIDA ÖDEME - NAMIK KAYGIN - 478142620','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('cf28d768-befa-450a-9e20-575cea833a68','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'1fb32e39-501f-48b7-ba50-860c26209b78','2024-11-06 20:05:35.917',1300,'KAPIDA ÖDEME - Mustafa İlhan - 976369647','COLLECT','2024-11-06 20:05:35.917','2024-11-28 09:15:31.466',NULL),
('cf3480df-6135-4f4e-a6f6-7e19f7750d38','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'5e63d250-c815-4013-8092-cf4f9d3d7e2e','2024-03-30 09:50:31.527',1100,'KAPIDA ÖDEME - HASRET BEYAZIT - 449196428','COLLECT','2024-03-30 09:50:31.527','2024-03-30 09:50:31.527',NULL),
('cf3f46aa-0e99-45a4-b00b-b38c8c1452ec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b9465ae1-c895-4625-887f-bd31a9dc994f','2025-08-27 08:40:21.912',350,'KAPIDA ÖDEME - AYLİN AY - 371201111','COLLECT','2025-08-27 08:40:21.912','2025-09-03 06:09:36.765',NULL),
('cf41c148-b3f7-4d4f-b5f0-50763a7ce43a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'743566a7-8578-41a9-8fed-b6143819111f',NULL,'2024-03-30 07:14:02.058',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.975'),
('cf49a81c-bd60-4265-8776-144575eb4caf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'569fc7cc-e749-4d29-b7d6-9ef416ea0a2d','2024-03-30 08:53:58.707',1000,'KAPIDA ÖDEME - HÜLYA GÜNDOĞDU - 455568872','COLLECT','2024-03-30 08:53:58.707','2024-03-30 08:53:58.707',NULL),
('cf8f5740-fb11-4aec-929c-d29fe7bdde98','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'544de2ca-566d-4b42-80d3-8bdcf76c0ff0','2025-10-07 14:59:47.553',900,'KAPIDA ÖDEME - KAMER DUHAN ECE(K) - 644651781','COLLECT','2025-10-07 14:59:47.553','2025-10-07 15:17:28.432',NULL),
('cf9d539c-0673-4373-a8e2-83246eaed270','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'dcf208dc-cd3f-4596-9430-d35849bbc2f6','2025-09-05 18:22:32.110',1500,'KAPIDA ÖDEME - TUNAY KOCATÜRK - 644196383','COLLECT','2025-09-05 18:22:32.110','2025-09-06 09:41:31.934',NULL),
('d03ebac1-14b0-45f0-8bd1-19013d51c9b6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'6ab64262-e10e-4c69-a128-c1c8101ef7ed','2025-07-26 07:22:40.553',2200,'KAPIDA ÖDEME - YUSUF HAMZA DALKILINÇ - 478423651','COLLECT','2025-07-26 07:22:40.553','2025-07-26 08:40:12.342',NULL),
('d05b1cf3-22e7-4d15-b064-7a235a89be2a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d89f6e4c-ad0d-4d1f-98c2-188a94803196',NULL,NULL,'f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','2025-10-17 10:48:44.611',2365,'KAPIDA ÖDEME - HELİN ÖZDİL - 896155892','COLLECT','2025-10-17 10:48:44.611','2025-10-17 10:53:07.598',NULL),
('d06f8f10-b89f-491b-baa2-c7ed4341d848','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'355d1a2d-fea4-408b-8438-f51efe4d43a3',NULL,'2024-03-30 13:00:50.299',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.734'),
('d0a607ad-99d0-4b85-8224-dce5284c3f9b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e5aec591-aa43-4db5-8228-1d08c0c983d2','2025-08-21 06:49:01.544',500,'KAPIDA ÖDEME - İLAYDA CALINALTI - 22137977','COLLECT','2025-08-21 06:49:01.544','2025-08-21 08:12:57.050',NULL),
('d0a61486-a04b-4c62-ad67-312372920593','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'b8f05d8e-42c0-4160-a8c7-5a49d50213df',NULL,'2024-03-30 07:25:33.593',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.538'),
('d0bdfc46-413d-4407-92b9-b0c66e7447f5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,NULL,'2024-11-08 17:16:25.347',-6945,NULL,'PAYMENT','2024-11-08 17:16:33.540','2024-11-08 17:16:33.540',NULL),
('d0cc0ae8-71df-41fa-b739-697e02774e71','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'7f859e4c-bba8-44f8-9564-dfb0b044e0f8','2025-08-07 16:12:15.228',450,'KAPIDA ÖDEME - İPEK CANTÜRK - 437313362','COLLECT','2025-08-07 16:12:15.228','2025-08-12 08:07:30.357',NULL),
('d0cf4c26-a6e6-482d-9ed4-98fc85123766','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'ce35486e-7680-4c8d-aa21-e602d6ada6b1','2025-05-09 16:49:05.440',350,'KAPIDA ÖDEME - JASMİNA YILMAZ - 371785400','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('d0d8032e-2038-49d5-a1b5-86319c5faa1e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','2025-08-07 16:12:15.258',2300,'KAPIDA ÖDEME - MAHMUT ÖZKAN - 745996696','COLLECT','2025-08-07 16:12:15.258','2025-08-12 08:07:30.380',NULL),
('d100da30-f855-4d74-97a5-2b6b7e9f1654','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f063cb46-f6be-4212-a6d8-9be7624bb39d','2024-11-10 18:26:28.862',500,'KAPIDA ÖDEME - birsat melake  - 982639053','COLLECT','2024-11-10 18:26:28.862','2024-12-09 08:24:38.479',NULL),
('d11dd82f-7a17-4d23-a74c-94b0e721acd5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1943ad09-88d5-4276-8d90-1798cf356edb','2025-03-25 19:20:46.451',1620,'KAPIDA ÖDEME - REİNAS HAİDARİ - 644884110','COLLECT','2025-03-25 19:20:46.451','2025-03-29 13:37:01.615',NULL),
('d11f6d40-b274-456a-be55-8ea68c64263a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'01608d35-8f91-4555-8ddb-ee881418d1b8','2025-01-11 15:02:07.378',4500,'KAPIDA ÖDEME - MUSTAFA ÇELİK - 478945094','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('d1a05149-42a3-4208-823d-e86d687a6ea4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,NULL,'2024-11-08 17:21:27.677',-2810,NULL,'PAYMENT','2024-11-08 17:21:35.783','2024-11-08 17:21:35.783',NULL),
('d1b9412d-6300-446d-adf3-96612025c992','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90','2024-09-06 11:19:51.055',1500,'KAPIDA ÖDEME - NRW MENDEN FRÖNDENBERG - 45586545','COLLECT','2024-09-06 11:19:51.055','2024-09-06 11:19:51.055',NULL),
('d1fdc054-5c27-4615-ba55-6cb6da433539','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'b20579d8-be01-4cf4-a191-a8c8d52e9333','2025-10-03 15:04:04.816',1150,'KAPIDA ÖDEME - ESMA GÜNVAR - 808396862','COLLECT','2025-10-03 15:04:04.816','2025-10-03 16:08:51.138',NULL),
('d238b5ea-35b6-45fe-9706-6307ada3b919','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'a7ceae08-20bd-4e39-8c9a-4d086845bcaa','2024-11-21 10:27:51.142',1900,'KAPIDA ÖDEME - FLORENTİNA - 126561228','COLLECT','2024-11-21 10:27:51.142','2024-12-09 08:24:38.479',NULL),
('d24e9301-c368-46db-b95d-aa6a735f2dba','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8b65f877-ccbd-4d62-80e3-2d9c4c044d3e','2025-08-22 19:43:14.447',540,'KAPIDA ÖDEME - HATİCE ÖZEN - 745734415','COLLECT','2025-08-22 19:43:14.447','2025-08-22 20:28:07.543',NULL),
('d2b91471-2e71-41d1-9df5-009a414e498e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'b51de0f1-3985-4283-b2eb-1cbb4a0743c9','2025-09-23 07:43:59.562',800,'KAPIDA ÖDEME - ERHAN ALP - 808538086','COLLECT','2025-09-23 07:43:59.562','2025-09-24 13:41:15.090',NULL),
('d2bb5b74-8906-46d3-97bd-adaac60acef9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1','2024-09-28 16:02:45.886',300,'KAPIDA ÖDEME - SONER DEMİRCİ - 478422219','COLLECT','2024-09-28 16:02:45.886','2024-09-28 16:02:45.886',NULL),
('d2c29b50-626e-40fb-b490-1bb4f8710cf5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'835e4364-d826-4aea-9a85-7df6a6777f74','2025-10-07 14:59:47.538',420,'KAPIDA ÖDEME - ASMA SOULTANA  - 221854185','COLLECT','2025-10-07 14:59:47.538','2025-10-07 15:17:28.473',NULL),
('d2e0b8c8-1dae-457b-be79-cd1ffd922dff','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'5594587a-f999-49e2-b9f8-adc5bdadc779','2024-10-28 10:41:21.472',440,'KAPIDA ÖDEME - MUHAMMER SARI - 614345013','COLLECT','2024-10-28 10:41:21.472','2024-10-28 10:41:21.472',NULL),
('d2ecab8a-787a-430a-9b7f-97dc1d8279df','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8','2025-10-04 10:42:09.390',1780,'KAPIDA ÖDEME - COŞKUN MURAT AKTAŞ  - 41246036','COLLECT','2025-10-04 10:42:09.390','2025-10-04 10:42:09.390',NULL),
('d3271606-d53c-4c55-9a73-192ba6365ab1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'4e702cc0-9353-4b47-aa7e-ecce06c5c66b','2025-09-05 18:27:28.092',250,'KAPIDA ÖDEME - TURGAY - 412139250','COLLECT','2025-09-05 18:27:28.092','2025-09-06 09:41:31.809',NULL),
('d399d99f-7380-4633-a369-acda8af3113d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'02301bb2-05b9-4f43-b8b5-5ced5c8740c7','2025-08-22 19:43:14.532',4000,'KAPIDA ÖDEME - MEHMET DAĞDEVİREN - 745485271','COLLECT','2025-08-22 19:43:14.532','2025-08-22 20:28:07.491',NULL),
('d3a58d86-de83-40ec-829a-26acb4520e03','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'0523ba39-5d0b-4eca-8a21-9b0b0f843b71','2025-06-25 10:51:21.113',750,'KAPIDA ÖDEME - SEZER HATUN - 745249081','COLLECT','2025-06-25 10:51:21.113','2025-07-01 09:19:38.906',NULL),
('d3b10c73-2038-4350-8ed2-011db9230ddd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'7f7fc18f-c4b7-4970-b1ed-b10790978ab2','2024-03-30 09:11:56.916',700,'KAPIDA ÖDEME - MUHAMMET EL CASİM - 248435862','COLLECT','2024-03-30 09:11:56.916','2024-03-30 09:13:04.830',NULL),
('d3b646e3-88fb-48c9-87d7-5c54dfc2c7a6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3b7061dd-86c2-4ec0-90e7-c714d004752a',NULL,'2024-03-30 13:00:49.201',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.647'),
('d3c08c13-907e-4c05-84d3-690add8728e0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f16e28e8-ecf2-4674-b000-e55b2609d558',NULL,NULL,'ee55d774-0af3-44a4-a04d-c52632a73128','2024-11-29 13:54:07.214',650,'KAPIDA ÖDEME - HACI KURBAN BAŞTÜRK  - 162733891','COLLECT','2024-11-29 13:54:07.214','2024-12-09 17:29:19.987',NULL),
('d3d45ded-5e51-429e-8f03-a1ee7252eb5b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'ce4901d8-9c95-4f4f-bc49-0904a3a413eb','2024-10-11 16:06:10.427',2850,'KAPIDA ÖDEME - ÖMER KARAMAN  - 428561353','COLLECT','2024-10-11 16:06:10.427','2024-10-11 16:06:10.427',NULL),
('d3f7bb51-5e38-4dbe-8dc8-abeef72f4774','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'bda1a022-6558-4b61-9d65-0cbc7957db0b','2025-08-07 16:12:15.214',700,'KAPIDA ÖDEME - HATİCE BOZ - 371441090','COLLECT','2025-08-07 16:12:15.214','2025-08-12 08:07:30.410',NULL),
('d4276797-0a55-401e-9826-5dec0441aa4f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'cc63967e-bae3-4a27-add9-5b4030bf2130','2024-05-11 09:02:48.789',1000,'KAPIDA ÖDEME - DOMİNİK WİNK - 126649227','COLLECT','2024-05-11 09:02:48.789','2024-05-17 14:15:48.163',NULL),
('d4436550-a769-4057-b6c0-97f1a315903c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'834b59f5-b6eb-4131-ba77-6e6e2220713b','2025-05-28 18:50:18.071',675,'KAPIDA ÖDEME - KADER KAVAL  - 817213476','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('d453d50f-7f98-438a-af36-736e680815b3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'b0899837-14d4-46bb-b785-b51c5fde0be4','2025-03-08 13:35:30.206',1000,'KAPIDA ÖDEME - MUSA YAMAN - 745743577','COLLECT','2025-03-08 13:35:30.206','2025-03-11 07:46:41.850',NULL),
('d46e39da-5b19-4d80-a8cf-6f959977d98f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'6c9799b7-d54a-4660-a5bf-0557b778d342','2025-07-11 07:57:47.156',1500,'KAPIDA ÖDEME - MİHAİ LİDİA  - 982708819','COLLECT','2025-07-11 07:57:47.156','2025-07-11 08:00:02.558',NULL),
('d4736384-2795-42c0-af9e-067d51ef7195','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e04b6588-6a22-4c59-8ad5-3cd7c3eecfb1',NULL,NULL,'2f1cee80-98e2-4491-8790-84b0795e2440','2025-02-20 12:37:30.226',2160,'KAPIDA ÖDEME - SEMİH AYDIN - 046487702','COLLECT','2025-02-20 12:37:30.226','2025-02-20 12:40:28.679',NULL),
('d48607a6-3fe9-48ce-ba21-33e3ea7cabfe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'babb1102-d4bb-4eaa-aadd-0d7c27ab01da','2025-09-25 16:04:06.554',700,'KAPIDA ÖDEME - ALPER ALBAYRAK - 371400028','COLLECT','2025-09-25 16:04:06.554','2025-09-26 12:34:50.028',NULL),
('d4c1fe40-f84e-4453-bf92-dfa71efe913c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'1e88a712-77d4-4c0d-9244-0239da63195b','2025-02-15 10:11:41.018',1000,'KAPIDA ÖDEME - MAHMUD YUSUF ÖKDEM - 127253098','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('d538d93d-22ab-4d5f-bfaa-7fce768b1fbb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'9c5e22fd-be64-4432-b4ea-accf07116cf0','2025-02-07 11:25:54.031',360,'KAPIDA ÖDEME - NUMAN ALTUN - 41256945','COLLECT','2025-02-07 11:25:54.031','2025-02-15 11:10:42.855',NULL),
('d54ff778-0e9c-423d-a057-58e7d2adccfe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8b1f42c0-ccaa-4899-9782-c3ad13f853c3','2024-11-29 13:18:31.037',2400,'KAPIDA ÖDEME - MERYEM YUMURTACI - 478154934','COLLECT','2024-11-29 13:18:31.037','2024-12-09 17:29:19.987',NULL),
('d5a565a1-512a-442a-8843-adcef8e8c05e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'1d68877d-7e86-47a0-8436-b6e2ee888f3d','2025-08-21 07:01:13.937',1500,'KAPIDA ÖDEME - FATMA ALBAYRAK - 478935366','COLLECT','2025-08-21 07:01:13.937','2025-08-21 08:12:56.896',NULL),
('d5c5047d-6534-4f3b-97d0-6cd9196e2c42','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'7ebe9302-39fc-46ee-b7c6-423d2cf70cd3','2024-09-20 09:46:31.243',1400,'KAPIDA ÖDEME - SAAİD HUSSEİN - 501760708','COLLECT','2024-09-20 09:46:31.243','2024-09-20 09:46:31.243',NULL),
('d5cb35eb-8d0a-4cf4-af92-043c7f918906','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'62f77eb8-8c8f-460b-b294-ae8437220ece','2025-10-25 08:56:27.129',300,'KAPIDA ÖDEME - AHMET GÜVEN  - 657947887','COLLECT','2025-10-25 08:56:27.129','2025-10-25 08:58:44.037',NULL),
('d5d9d955-f3f8-40c4-9384-e9a2a49d2068','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'737675a9-68eb-41a7-946f-b0dfff8d03bf','2024-10-23 14:44:02.439',900,'KAPIDA ÖDEME - CENGİZ SAKALI  - 910926193','COLLECT','2024-10-23 14:44:02.439','2024-10-23 14:44:02.439',NULL),
('d60a081d-4e84-40d5-a34c-1ab8b3f03ffb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'7111120f-fafa-47e7-88da-3e0454ed201a','2025-04-25 15:45:30.739',200,'KAPIDA ÖDEME - DERYA BALİ - 644178035','COLLECT','2025-04-25 15:45:30.739','2025-04-26 07:32:55.372',NULL),
('d647ff7b-7970-4488-80ca-4603bc4e7d4b','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'ac9528e4-d408-4c6a-9cb5-664445eb6c37','2025-09-10 12:14:31.001',1075,'KAPIDA ÖDEME -  UĞUR KAPLAN  - 011697836','COLLECT','2025-09-10 12:14:31.001','2025-09-10 12:48:00.843',NULL),
('d66bc626-af4c-4938-95af-053d7c7c5e42','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7f34d75e-284a-42ac-9cbe-a29174748991',NULL,NULL,'670e78fe-1680-439d-9f10-3a16b0fdf541','2025-01-19 16:12:38.305',900,'KAPIDA ÖDEME - ALAADDİN ŞAHİN - 734460411','COLLECT','2025-01-19 16:12:38.305','2025-01-28 15:19:34.396',NULL),
('d6c1e188-43f0-45ba-876f-64e89286ae76','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'48f076a7-8fcd-4555-a2be-671e83e1b64b','2025-01-05 14:06:08.842',900,'KAPIDA ÖDEME - CÜNEYT ŞİMŞEK  - 517512652','COLLECT','2025-01-05 14:06:08.842','2025-01-05 14:06:53.366',NULL),
('d6d7ea9f-5dc8-4fdc-b652-d16c586439cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'bd9dba96-c9c5-4c61-b279-b74adace6799','2025-10-14 08:08:57.314',550,'KAPIDA ÖDEME - BEN FRİHA FATMA - 437321677','COLLECT','2025-10-14 08:08:57.314','2025-10-14 08:52:36.744',NULL),
('d7037059-f0ba-4ce0-ad0b-ff729ec36337','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'b9c92720-b4b4-43eb-a9cc-aa09b537ad87','2024-12-09 07:46:11.042',1190,'KAPIDA ÖDEME - BİLAL KARROUCH - 73598166','COLLECT','2024-12-09 07:46:11.042','2024-12-17 19:52:32.750',NULL),
('d713004b-0f45-4e4c-8560-5ff440474df9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'e7e4072c-007c-4219-bd27-b2ba68a6be1e',NULL,'2024-03-18 07:36:54.512',0,'Sefer No: 3163334','EXPENSE','2024-03-18 07:36:54.323','2024-03-30 21:35:31.163','2024-03-30 21:35:31.272'),
('d728eece-249a-4639-b98d-3197748248f1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'21cea3d0-82cc-48c9-8e54-12f04fa0fc99','2024-06-08 09:01:13.186',1150,'KAPIDA ÖDEME - ABDULLAH ŞENOL GÜMÜŞ - 428341237','COLLECT','2024-06-08 09:01:13.186','2024-06-10 14:51:05.954',NULL),
('d749a616-16c9-464a-880a-d15ca3a910d5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'0b7aac01-be82-49d8-9ad7-25b1ae673022','2025-04-26 14:40:15.277',375,'KAPIDA ÖDEME - SUADA HAMZA  - 613725694','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('d75a452d-b4e2-4b73-bee5-d70aa90aa699','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'6eb2b7b3-1491-4ce3-ad14-6b15af827fc4','2025-07-29 12:26:43.590',570,'KAPIDA ÖDEME - BİROL ELİBOL - 437609907','COLLECT','2025-07-29 12:26:43.590','2025-07-29 12:37:20.425',NULL),
('d76a68fb-f25a-4d19-80c1-951c279bfca7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5dc3decb-6410-403a-b949-3324afe3dd6a','2025-05-09 16:49:05.440',1100,'KAPIDA ÖDEME - ARZU AKSİ - 745817440','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('d7c84647-1ed8-452d-94c1-daed7d626347','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'01408d3f-0754-42dd-86fa-5c2b8803ad4e','2024-09-03 15:23:17.726',1350,'KAPIDA ÖDEME - EL HARRAR OUASSİFA - 982666330','COLLECT','2024-09-03 15:23:17.726','2024-09-03 15:23:17.726',NULL),
('d7d5aefa-ac43-437c-bddc-f7b40d503351','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e10bc182-1962-4aff-b973-093a04c71419','2024-11-12 15:20:51.634',1000,'KAPIDA ÖDEME - İBRAHİM ULUSOY - 74582542','COLLECT','2024-11-12 15:20:51.634','2024-11-23 12:17:08.607',NULL),
('d7fb4a04-6ca7-4d92-995c-d81c1b6c28b2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'b67a7550-5843-4b01-a562-83d265c4d1bd','2025-09-12 17:03:30.303',1400,'KAPIDA ÖDEME - ÖZDEMİR YAKAN		 - 910972908','COLLECT','2025-09-12 17:03:30.303','2025-09-12 17:16:02.689',NULL),
('d8054a31-538e-4ac0-a85b-dd6edc7415ca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a50d8db5-2bfe-4146-b10b-a41dcfc378a6','2025-06-30 18:33:09.218',600,'KAPIDA ÖDEME - ESMA MERT - 371282604','COLLECT','2025-06-30 18:33:09.218','2025-07-07 11:44:52.753',NULL),
('d8457676-6b58-4c51-b6a1-e751a2042fc8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'abb61da9-a682-4013-a7fd-554adc61e006','2025-06-14 12:48:04.680',550,'KAPIDA ÖDEME - DEKORATA - 412417235','COLLECT','2025-06-14 12:48:04.680','2025-06-18 08:08:50.179',NULL),
('d85e9d8d-d2a1-4006-9205-1c38a28bc634','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'30753652-c249-4370-954e-0eb227ea17aa','2024-05-09 06:18:24.938',800,'KAPIDA ÖDEME - YENER DOĞAN - 50119540','COLLECT','2024-05-09 06:18:24.938','2024-05-09 06:18:24.938',NULL),
('d8618f32-18f6-4b68-a0a3-e33f7741571b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'20d6c71c-ba5e-45ee-bcc7-3404727b4b16','2025-01-03 09:09:49.753',700,'KAPIDA ÖDEME - NESLİHAN HANIM  - 982614868','COLLECT','2025-01-03 09:09:49.753','2025-01-05 14:06:53.366',NULL),
('d8655de5-2d11-416f-97dc-c05c1232edec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'9cd992a9-f3c9-4cb4-a22b-ac995a102670','2025-10-13 07:14:08.981',500,'KAPIDA ÖDEME - TEBIB MYRIAM  - 221603036','COLLECT','2025-10-13 07:14:08.981','2025-10-14 08:52:36.827',NULL),
('d89a6e5c-de5a-4028-ac40-db160e3e5b8c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7abcec25-2b15-4504-9076-c54982acb983',NULL,NULL,NULL,'2024-11-08 17:09:14.852',-360,NULL,'PAYMENT','2024-11-08 17:09:24.174','2024-11-08 17:09:24.174',NULL),
('d9123f50-e17b-466b-9dae-974b3aeb1d09','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c4ed3c28-c51b-4246-86d1-a36f0aff591d','2025-03-06 10:20:46.458',1200,'KAPIDA ÖDEME - RABİA NALKIRAN - 221307786','COLLECT','2025-03-06 10:20:46.458','2025-03-06 10:36:11.461',NULL),
('d971e004-b723-4595-ba7c-eb6a39c866d3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','2025-05-16 16:07:59.860',1500,'KAPIDA ÖDEME - GÜLCAN İNCE - 33850305','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('d9e59168-7613-46b5-a6d5-cdd8c5c865d6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'92a101d5-f2e2-4731-8009-aa9ff0df1038','2024-10-02 09:03:22.568',2700,'KAPIDA ÖDEME - CÜNEYT BARUT - 745699153','COLLECT','2024-10-02 09:03:22.568','2024-10-02 09:03:22.568',NULL),
('da053dc0-5ef4-4632-a23e-99968ae4386e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'cbc66089-3787-46c8-9770-6e95da20fddd','2025-04-26 14:40:15.277',900,'KAPIDA ÖDEME - BURAK SOYSAL - 817893403','COLLECT','2025-04-26 14:40:15.277','2025-04-26 16:02:30.708',NULL),
('da079144-6a32-4fbb-8496-86c27da7dff3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'3a1ef1a0-617f-4576-b71f-a4e298cceac4','2025-01-22 08:43:42.642',1100,'KAPIDA ÖDEME - ÜNAL KÖR  - 745660870','COLLECT','2025-01-22 08:43:42.642','2025-01-22 09:40:15.479',NULL),
('da18c8c1-bdcd-44f4-b4bf-f7b73cfca562','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d0a21cc6-5601-47eb-9a73-16a32de931da',NULL,'2024-03-30 07:14:02.508',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.994'),
('da20b2ac-3c00-44d9-bfcc-710878d62748','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5b04798d-86e0-44d7-9219-194a32dc85ff',NULL,NULL,'46b1c67e-a68d-48e9-954a-c8a3113d2c63','2025-09-10 06:49:18.678',800,'KAPIDA ÖDEME - FERHAT KARACA - 504780984','COLLECT','2025-09-10 06:49:18.678','2025-09-10 07:11:56.198',NULL),
('da2740ae-d207-4834-a32d-ac1b3fd60542','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'67ce6e25-ae23-4317-bb28-96a9c393e42f','2024-07-30 15:20:03.388',4400,'KAPIDA ÖDEME - MURAT KARADAĞ - 248211803','COLLECT','2024-07-30 15:20:03.388','2024-07-30 15:20:03.388',NULL),
('da4933de-4b52-495f-9398-357147c5c2f2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eafb4551-6e5e-49d5-bca3-02ccb8c16d64',NULL,NULL,'bb868109-aa10-4576-90c5-cea9bda06633','2025-02-09 14:09:21.298',1000,'KAPIDA ÖDEME - SEMRA TERLEMEZ - 45527400','COLLECT','2025-02-09 14:09:21.298','2025-02-15 11:10:42.855',NULL),
('da85fabc-0029-478c-960e-218c0e63dd4f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3','2025-01-26 10:26:43.612',1500,'KAPIDA ÖDEME - BURCU ŞİMŞEK - 12752907','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('dab2738a-419c-4f58-bfb6-d47088d55662','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'1be311ce-e06b-49b5-89b4-ca8a3ecea45f','2025-09-25 16:04:06.524',1000,'KAPIDA ÖDEME - DİLBER ÖZTÜRK - 319585140','COLLECT','2025-09-25 16:04:06.524','2025-09-26 12:27:42.337',NULL),
('dad65889-fcaa-4702-87dd-88ef3863d56f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1106ac37-0c19-4da2-b605-9af60d1e2fd2','2025-09-06 17:04:26.025',540,'KAPIDA ÖDEME - NURDAN GÜNDÜZ - 437529604','COLLECT','2025-09-06 17:04:26.025','2025-09-10 12:48:00.754',NULL),
('dae64ec5-7d5c-4da7-a403-b0bd06c78995','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1','2025-09-06 17:04:26.055',495,'KAPIDA ÖDEME - NİNA ÖZÇELİK - 437397407','COLLECT','2025-09-06 17:04:26.055','2025-09-10 12:48:00.793',NULL),
('daf333b1-5641-4094-85b0-c47068c5c91c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'7d8956ca-698f-462a-81a5-dcf35e87e4ee','2025-09-24 10:50:42.862',2800,'KAPIDA ÖDEME - VİET ANH THAİ - 531250587','COLLECT','2025-09-24 10:50:42.862','2025-09-24 13:41:15.125',NULL),
('db0de6d2-903e-4f02-963a-4ac4f9cdefb2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'06af560c-552f-4ff9-a194-96cfbb5bfe91','2025-04-15 09:07:09.163',2000,'KAPIDA ÖDEME - BİRSEN KARADAVUT - 478833375','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('db1bb8ff-0cf9-4648-8dc1-498e7cf173e6','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'3dce54b1-e7aa-464d-b22d-56c831e082b2','2025-07-29 12:12:50.062',720,'KAPIDA ÖDEME - ŞÖFÖR MEHMET - 412395222','COLLECT','2025-07-29 12:12:50.062','2025-07-29 12:37:20.373',NULL),
('db3e5ab2-0f77-4b6a-83fb-e6c753dd023a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fbe6fd55-96a9-4517-8757-adbf109bf9ca',NULL,NULL,'60088545-2d2c-4c1d-8f5c-07351840a9a5','2024-08-20 14:50:38.081',2300,'KAPIDA ÖDEME - MUSA KIZILASLANOĞLU - 655307091','COLLECT','2024-08-20 14:50:38.081','2024-08-28 07:26:26.822',NULL),
('db5ea0cf-5583-4f04-99e4-3cf9aa79fb8c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'65292c0d-b0ed-44c8-838b-2022b2fd13ac','2025-03-06 10:17:40.312',795,'KAPIDA ÖDEME - AYŞE SÖNMEZ - 745206126','COLLECT','2025-03-06 10:17:40.312','2025-03-06 10:36:11.461',NULL),
('db6398de-a6d2-4c46-84da-5fff98fc7bb0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'0c849468-56f3-4970-8ded-610f5c6820b7','2025-03-12 18:30:21.170',1100,'KAPIDA ÖDEME - JEUNE ROSE DARLYNE - 221892935','COLLECT','2025-03-12 18:30:21.170','2025-03-12 19:01:22.362',NULL),
('db6a834d-5d5e-4760-b592-8d5418a6147c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'eb3d9366-d41c-4a39-bc45-c8babc36cc15','2025-10-07 14:59:47.747',300,'KAPIDA ÖDEME - BURAK SARIKAYA - 745816946','COLLECT','2025-10-07 14:59:47.747','2025-10-07 15:17:28.588',NULL),
('dbb88ccc-441d-4e2b-8d08-d48cf670e60d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'5758b84a-ba06-4b26-888b-a1d46af4fac9','2025-05-16 16:05:10.520',1250,'KAPIDA ÖDEME - İBRAHİM YILDIRIM - 745405587','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('dbd6ee6f-aede-4a1b-b413-30923f3c86d6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','02756ab4-fa8a-408f-b81c-76a84dc82d6f',NULL,NULL,NULL,'2024-11-08 16:46:10.533',3105,NULL,'COLLECT','2024-11-08 16:46:22.035','2024-11-08 16:46:22.035',NULL),
('dbe97c53-e897-4314-bad2-d8d656f4db70','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'308ddadc-251a-4960-a99e-9154ac7e4c88','2025-10-25 08:43:45.565',1500,'KAPIDA ÖDEME - ALBAN HASANİ - 486741087','COLLECT','2025-10-25 08:43:45.565','2025-10-25 08:58:43.946',NULL),
('dc1b9898-8780-4c02-b9fd-44f124f5ee8c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5dbeb578-3815-46c4-8be9-34c6782e8dab','2025-10-25 08:43:45.597',775,'KAPIDA ÖDEME - İBRAHİM TÜRK - 598479723','COLLECT','2025-10-25 08:43:45.597','2025-10-25 08:58:44.028',NULL),
('dc2438d1-1aac-4c06-9503-b95edc01d4fe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bb5832af-6faf-4b4f-86a0-0d8a47cc4626',NULL,NULL,'67b884d5-ea90-4585-94a0-ef9d8b7707d2','2025-09-02 12:04:14.812',1200,'KAPIDA ÖDEME - ALİ GALİP DUMAN - 583643470','COLLECT','2025-09-02 12:04:14.812','2025-09-02 14:46:19.289',NULL),
('dc609d46-4bb5-4035-825b-727ff7630c67','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a1113ea5-513c-4c80-af01-bf6fc31ed2a9','2025-09-05 18:27:28.112',675,'KAPIDA ÖDEME - SILA SEVİL İLGÜN - 644877864','COLLECT','2025-09-05 18:27:28.112','2025-09-10 15:34:21.175',NULL),
('dca22ab8-90db-486e-a9b9-181b0e77e75e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'1577420e-fa6a-4edd-a200-5ec0a2cbd43d','2024-03-30 10:49:17.380',4740,'KAPIDA ÖDEME - ÖZCAN ÇETİN - 614725757','COLLECT','2024-03-30 10:49:17.380','2024-04-27 08:06:27.068',NULL),
('dcbe7808-857d-4e13-866b-ae76842d237a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'4e20fd87-f7a4-4a53-8f1e-901fb60d3cbc',NULL,'2024-03-25 11:45:13.032',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.773'),
('dcc1e9fd-f318-45d4-abd4-5bbf9a598ed8','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'4428b444-78f4-43f3-8d88-220442b30896','2025-09-12 16:46:30.873',2750,'KAPIDA ÖDEME - ALİ ERKOCA - 745177264','COLLECT','2025-09-12 16:46:30.873','2025-09-12 17:16:02.591',NULL),
('dcc47674-272b-44a3-90a8-9487ef5b4ee4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','14e65a3f-31de-4ada-be77-7aceab16b52f',NULL,NULL,NULL,'2024-11-08 16:47:16.385',1500,'HESAP DÜZLEME','COLLECT','2024-11-08 16:47:32.054','2024-11-08 16:47:32.054',NULL),
('dd192bf1-c086-4308-8412-f7cb7a2ede04','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'1af2876c-3389-4499-8232-9de4f494db77','2025-05-16 16:05:10.520',950,'KAPIDA ÖDEME - SILAMNIKU ALTRIN - 371396579','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('dd645c37-6d3c-496a-aed6-5e87bd86418d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'ed90a35b-8493-4c2b-9437-f0f3ba27c20f','2025-03-25 19:21:55.337',1750,'KAPIDA ÖDEME - SEMA KAYALI - 64448364','COLLECT','2025-03-25 19:21:55.337','2025-03-29 13:37:01.615',NULL),
('dd64a1a6-1954-4ad6-9d4f-7a223a31c6aa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'924b0645-442a-4c8d-bf1e-f897f1aa0792','2024-05-10 08:24:26.139',2350,'KAPIDA ÖDEME - AKRAMİ MUHAMMED - 449292416','COLLECT','2024-05-10 08:24:26.139','2024-05-10 08:25:31.164',NULL),
('dd9a4140-b318-46f7-a661-6b3216397e05','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'9fe47d21-2ede-42a1-a005-ddc8b1f669b2',NULL,'2024-03-25 11:45:12.982',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.757'),
('dd9bf0ff-674d-4df9-99db-57ccf9d8422d','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'57aaa2e5-1908-4468-bb27-3c3205ba5948','2025-09-12 17:03:30.387',2500,'KAPIDA ÖDEME - MERVE DAYI - 745869069','COLLECT','2025-09-12 17:03:30.387','2025-09-12 17:16:02.620',NULL),
('ddd709d4-409d-458f-91ed-130075277b4b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a12414af-aaa3-489a-8d2d-f5774540f230',NULL,'2024-03-25 11:45:13.883',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.663'),
('de0d0e8b-0aff-4a27-8f71-9addbea74ee7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'cffae1ee-46fd-4b78-98d7-0a0c75ec876a','2025-01-19 16:09:32.512',3000,'KAPIDA ÖDEME - HAKAN CANBAY - 74565941','COLLECT','2025-01-19 16:09:32.512','2025-01-28 15:19:34.396',NULL),
('de4dd7b5-a031-40ee-93fe-bd8d1d9cec74','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'b87dfd8b-75ee-4a0e-bd25-1178a78774c6','2025-08-21 07:01:13.918',1620,'KAPIDA ÖDEME - ENVER HAN ALKAN - 37146102','COLLECT','2025-08-21 07:01:13.918','2025-08-21 08:12:57.003',NULL),
('de8c20ca-4d33-4717-8cc4-eb2ecc9215dc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'6e6afc45-76dd-42f4-bded-f2fada436aff','2025-07-18 17:50:30.851',1150,'KAPIDA ÖDEME - MEHMET SARI - 371820872','COLLECT','2025-07-18 17:50:30.851','2025-07-22 16:18:49.560',NULL),
('deccec3d-af92-4c74-b783-3c633758f301','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','27cbce83-310c-4e98-830f-7433b10c2efd',NULL,NULL,'140cb0d6-0404-46c4-b441-c9fa8beea92c','2025-08-25 11:36:09.231',1355,'KAPIDA ÖDEME - ÖMER SOLAK - 27829651','COLLECT','2025-08-25 11:36:09.231','2025-08-25 12:11:45.692',NULL),
('ded63ec1-236f-48a4-8ee4-87897c6c8887','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8b219963-3108-4a67-94f3-3bd88636e6f0','2025-03-24 12:18:50.008',500,'KAPIDA ÖDEME - YASEMİN YILDIZ - 745968655','COLLECT','2025-03-24 12:18:50.008','2025-04-02 18:57:10.886',NULL),
('def46b62-ec9d-465f-8c7e-4f30d6fa2510','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'6b308538-0db0-403f-a33f-bc50bf381bb6','2025-09-15 15:26:04.816',3240,'KAPIDA ÖDEME - ŞULE ÇAYIR  - 765501651','COLLECT','2025-09-15 15:26:04.816','2025-09-20 13:34:16.268',NULL),
('df1efbd6-27f8-4a1f-84f9-096ebcaa6885','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'cd0fea75-fde8-4eaf-b371-382be73415aa','2025-06-30 18:29:58.540',1075,'KAPIDA ÖDEME - BERİVAN KÖKTEN - 412550726','COLLECT','2025-06-30 18:29:58.540','2025-07-07 11:44:52.816',NULL),
('df3f87da-5414-4c5e-81a3-f9025d759957','DEFAULT-EUR','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'69d3f67b-d428-4309-b980-d4a463f6b69e','2024-11-10 18:50:56.308',4600,'KAPIDA ÖDEME - KAMRAN MİRZAİE - 982759064','COLLECT','2024-11-10 18:50:56.308','2024-11-21 14:03:08.967','2024-11-21 14:03:08.973'),
('df5ec0f0-edf7-4a5a-bb94-69fd3278e9d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d1ba1223-4475-415e-b63f-154a9404e56e',NULL,NULL,'b2f13caf-67d6-4df1-879e-de1a8b1019c1','2024-11-21 10:13:39.531',2100,'KAPIDA ÖDEME - SHAHRAM RECEBİ  - 112270991','COLLECT','2024-11-21 10:13:39.531','2024-12-09 08:24:38.479',NULL),
('df69abea-8281-4062-a5b4-4f0388bb4a9c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'a75c0466-9f5a-4f5b-89c0-9179e86aed34','2025-08-30 12:05:07.644',1850,'KAPIDA ÖDEME - METİN MOLA - 428693052','COLLECT','2025-08-30 12:05:07.644','2025-09-05 08:55:11.136',NULL),
('df706c16-ffff-41c5-b365-cc163d95551f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'beffebda-e20a-412c-9417-7ba252538d35','2025-08-14 10:05:04.234',650,'KAPIDA ÖDEME - FARUK ANSER - 486552581','COLLECT','2025-08-14 10:05:04.234','2025-08-15 20:59:05.043',NULL),
('df715df5-116d-4faa-9660-63a4a69d5e32','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'eac20332-3b72-49af-9e16-57159be774ea','2025-08-22 19:43:14.490',490,'KAPIDA ÖDEME - SENA ONMAZ  - 43714618','COLLECT','2025-08-22 19:43:14.490','2025-08-22 20:28:07.601',NULL),
('df780fa9-8061-4190-b546-f7b82b2607db','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'721d0aca-999f-44fa-95d4-e71c5a8eb478',NULL,'2024-03-30 07:14:02.958',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.982'),
('dff9968c-0a7a-41ad-a587-4526beab5091','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c6e5fe36-4cb2-4837-b35f-93523014a3bd','2025-10-09 08:36:32.959',640,'KAPIDA ÖDEME - MOHAMED CHAMLALİ - 221920880','COLLECT','2025-10-09 08:36:32.959','2025-10-09 08:39:37.020',NULL),
('e00cf379-00b1-4e71-b348-dd95c42dd9e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'6ffa5c9a-93c5-400c-b777-8b753a8d744f','2025-10-17 06:45:24.563',1000,'KAPIDA ÖDEME - YAVUZ GÜNEŞ - 59874048','COLLECT','2025-10-17 06:45:24.563','2025-10-17 10:53:07.489',NULL),
('e011b6c5-e781-42c3-ad69-5afb14193ded','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'07db3804-178b-4b42-ba68-1b6cc6758010','2025-08-21 07:01:13.972',725,'KAPIDA ÖDEME - SERKAN DOKKAL - 598961970','COLLECT','2025-08-21 07:01:13.972','2025-08-21 08:12:56.864',NULL),
('e01f6f55-fcac-4cd2-92fd-4fe977a311e2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','85834865-ac23-4c00-a99b-c9551971a5a1',NULL,NULL,NULL,'2024-11-08 17:12:58.665',-1800,NULL,'PAYMENT','2024-11-08 17:13:10.218','2024-11-08 17:13:10.218',NULL),
('e0325f7d-3d90-4981-8580-80e786c6ad83','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'e88c81a3-c41c-4a2d-94f5-a0819da7c913','2024-09-16 08:20:13.431',550,'KAPIDA ÖDEME - MURAT BAĞCI - 614460765','COLLECT','2024-09-16 08:20:13.431','2024-09-27 13:51:14.348',NULL),
('e03e87d0-bacc-42ab-b5fc-58c31f6f62ec','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','338e8c09-4ca5-4617-bfc1-a0692646d475',NULL,NULL,'96a7a9ce-ac9e-4c25-a15b-91289b6df9c7','2025-10-03 15:04:04.830',300,'KAPIDA ÖDEME - MUSTAFA ŞİMŞEK - 338730647','COLLECT','2025-10-03 15:04:04.830','2025-10-03 16:08:51.152',NULL),
('e05da0b0-4e30-4e83-8af7-ab78e715d2b1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'6e7511a6-da4e-49c4-b1e0-36335129a7eb','2025-04-30 13:55:21.569',1525,'KAPIDA ÖDEME - CENNET YAVUZ - 437250812','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('e10ca54b-bb3c-4b0f-a4e0-62f3c9fb2039','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'a5f7ed18-5a60-4872-a40a-85372a9873ed','2024-10-28 11:40:06.427',990,'KAPIDA ÖDEME - YASİN ÖKTEM  - 614352','COLLECT','2024-10-28 11:40:06.427','2024-12-09 17:29:19.987',NULL),
('e120e988-d6ee-4947-89e2-adec8d963b9c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'3d2e4684-1f1f-4b69-af07-96f688d5b93f','2025-05-23 06:35:45.707',650,'KAPIDA ÖDEME - ISMAİL REMMO - 61330729','COLLECT','2025-05-23 06:35:45.707','2025-05-26 13:23:22.333',NULL),
('e16c3b70-2c41-4a26-9dd8-3fccb6c5f557','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'75fc25cd-5f64-489c-b87c-7c749bd09cb9','2025-08-22 19:43:14.518',800,'KAPIDA ÖDEME - SULTAN SEVİNÇ - 808935275','COLLECT','2025-08-22 19:43:14.518','2025-08-22 20:28:07.536',NULL),
('e170a060-9137-455e-a1c9-85723b521ee9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'72e3b2db-d663-4612-b75b-d12c95d1cb5f','2025-06-14 12:41:41.837',1500,'KAPIDA ÖDEME - ESİN TUNCA - 982314530','COLLECT','2025-06-14 12:41:41.837','2025-06-18 08:08:50.179',NULL),
('e17449cc-b4ba-468c-89dd-b95352812995','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d1ba1223-4475-415e-b63f-154a9404e56e',NULL,NULL,'190aceeb-f986-4f9a-b734-78ec3fc1e2f7','2025-01-05 13:55:52.871',1300,'KAPIDA ÖDEME - ABDUL AHMAD - 112609358','COLLECT','2025-01-05 13:55:52.871','2025-01-07 17:06:26.160',NULL),
('e1dd92a0-b6cb-446b-b7e6-d9f177b9d044','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'d96f6453-1e25-424a-9d19-ea7d43ea1cb5','2024-12-20 14:08:14.761',1000,'KAPIDA ÖDEME - SAMİ MEHDEROĞLU - 735272751','COLLECT','2024-12-20 14:08:14.761','2025-01-11 10:16:45.910',NULL),
('e1e4cf33-892a-46c8-bc8c-cc7069782948','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'39a9ae66-741d-4e91-97aa-a8ea9f83985b','2025-09-05 18:27:28.072',250,'KAPIDA ÖDEME - SAGAX CONSULTİNG  - 412380161','COLLECT','2025-09-05 18:27:28.072','2025-09-06 09:41:31.795',NULL),
('e22442ea-2edf-40e1-8038-26ee5d16d612','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'bedc8bfd-1431-4017-9109-bedbb2184827','2025-10-22 07:51:14.413',1400,'KAPIDA ÖDEME - KADER ŞAHİN - 598719647','COLLECT','2025-10-22 07:51:14.413','2025-10-22 11:29:52.825',NULL),
('e22bfafa-4f6f-4a52-992b-8d848797ca9a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'c0cc8fc6-08f2-45a3-a974-7d378329a372','2025-03-08 13:53:03.264',800,'KAPIDA ÖDEME - FADİME AKDEMİR - 644130393','COLLECT','2025-03-08 13:53:03.264','2025-03-11 07:46:41.850',NULL),
('e23c83a9-9508-4e57-85d4-1593bd862613','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d3157cbd-9f22-499b-b371-4eff6e509b92',NULL,NULL,'8559ffd8-49b0-421d-ad48-3ec35e2083d7','2024-05-10 07:02:58.849',700,'KAPIDA ÖDEME - TEKİN ÇİLLİ - 315959949','COLLECT','2024-05-10 07:02:58.849','2024-05-10 07:02:58.849',NULL),
('e23e5b6a-294a-43ed-a6ac-bfc0777411ed','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb','2025-03-24 12:29:02.382',1600,'KAPIDA ÖDEME - RUKİYE KIRIMLI - 478861689','COLLECT','2025-03-24 12:29:02.382','2025-04-02 18:57:10.886',NULL),
('e25ece66-2af0-4c3d-bcd1-ffea96f8eb44','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'3deaeffc-f7ae-4254-af05-4a37b20814a8','2024-09-16 12:18:56.237',2200,'KAPIDA ÖDEME - DERYA KÖSE - 449208438','COLLECT','2024-09-16 12:18:56.237','2024-09-28 16:13:19.616',NULL),
('e2609146-7309-403d-a026-af1f10f325c0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'4dcd0598-cccb-4e25-a905-d0b8bb159ce5','2025-04-30 13:44:23.805',950,'KAPIDA ÖDEME - RUKEN ŞAKIR - 910187142','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('e2629cb6-1c06-4fd3-b366-adf05a551d3c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'16d7b18b-4de1-4251-9407-87c514282aa9','2025-04-19 10:12:45.918',950,'KAPIDA ÖDEME - ZAINOUNE LOUBNA - 613809111','COLLECT','2025-04-19 10:12:45.918','2025-05-02 17:08:29.291',NULL),
('e26a9785-6d98-47fa-b582-9bccf7ca5faf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'e848a3ea-fc44-4076-9fb6-e6a259b11ad5','2024-11-23 14:38:12.553',1679,'KAPIDA ÖDEME - EBUBEKİR ATA  - 319316615','COLLECT','2024-11-23 14:38:12.553','2024-12-02 09:51:49.376',NULL),
('e2802cd3-d8e3-4880-8b4a-6d078010f51f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'966391c6-e0ee-427b-b16f-5f8b2d1477ad','2024-12-07 09:18:10.956',1000,'KAPIDA ÖDEME - ZELİHA AKCAN - 910120533','COLLECT','2024-12-07 09:18:10.956','2024-12-17 19:52:32.750',NULL),
('e2950dcf-81ca-4942-8a2f-ab817c853d9e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'268c20d2-55c4-4e13-bdbd-8705781eda7b','2024-03-22 07:36:55.947',2000,'KAPIDA ÖDEME - VEYSİ DAĞDELEN - 614456400','COLLECT','2024-03-22 07:36:55.947','2024-03-22 07:36:55.947',NULL),
('e2c69a68-ace6-4537-8c73-c823613e414d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'e8131f06-593c-49fc-9c77-c5965295a667','2025-01-11 15:02:07.378',1650,'KAPIDA ÖDEME - KÜBRA ARPA - 501588943','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('e2d5dd95-e87b-4c6b-b3ad-019d3d38bc57','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1c8769e3-a44a-4ab0-8478-4b2f48b04b7b',NULL,'2024-03-25 11:45:14.483',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.794'),
('e2e8adfd-2837-4dfb-80c2-b5a244b89824','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'3014fb42-2f2f-486f-8a00-c9ecf3f7497c','2025-05-16 16:05:10.520',1270,'KAPIDA ÖDEME - MARİGLEN SHKEMBİ - 437431907','COLLECT','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('e3020513-55c8-48ce-b921-6fba9ccf150d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'82f7f211-f2f7-4707-aaf2-eb58043e049c','2025-02-07 11:48:22.096',1000,'KAPIDA ÖDEME - MEHMET KANBEROĞLU - 976441354','COLLECT','2025-02-07 11:48:22.096','2025-02-15 11:10:42.855',NULL),
('e3080057-526c-4586-b0d9-eba61aa05ffb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'13c3c792-77da-4c87-b857-707f973cc267','2025-03-12 18:37:42.098',330,'KAPIDA ÖDEME - ÇİĞDEM UĞUR FRANSA - 221158425','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('e30ba14f-8b02-4936-bd03-c43bb4099e03','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'c6b7a352-13a1-47fb-acd7-9c5f9910f021','2025-01-26 10:26:43.612',680,'KAPIDA ÖDEME - MERYEM BERK  - 221583384','COLLECT','2025-01-26 10:26:43.612','2025-01-29 12:24:52.459',NULL),
('e32b163b-7686-413a-bf32-6db3ef9f60de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5c48d310-debd-455c-9ecb-1fa53a60e1f8',NULL,'2024-03-30 13:00:50.400',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.726'),
('e34d0ade-53dd-4343-bcd2-3663d8787816','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1c402ba0-2fcc-4b19-b28c-bd6071805ddd',NULL,NULL,'fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5','2025-10-03 15:04:04.723',840,'KAPIDA ÖDEME - GAMZE ÇOKENGİN - 140681782','COLLECT','2025-10-03 15:04:04.723','2025-10-03 16:08:51.042',NULL),
('e35c420a-1808-4a54-aec6-c6ef08a1f155','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'61867c22-c86f-44a9-a203-2b810c74f596','2025-03-12 19:14:13.795',1450,'KAPIDA ÖDEME - İBRAHİM AYIK  - 449700444','COLLECT','2025-03-12 19:14:13.795','2025-03-12 19:14:13.795',NULL),
('e37af527-e8f5-40c0-b16b-996a00122167','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'a259ef7e-4720-40a6-a012-5f10d15b9067','2024-08-07 14:43:39.641',3400,'KAPIDA ÖDEME - ÇİLEM KAYNI - 61428079','COLLECT','2024-08-07 14:43:39.641','2024-08-07 14:43:39.641',NULL),
('e37f51e2-38e4-4993-aa09-edf7d4bdc0f6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'08723415-4b6f-4a95-a326-2405074a7498','2025-07-22 16:18:46.081',750,'KAPIDA ÖDEME - PARK - 248549362','COLLECT','2025-07-22 16:18:46.081','2025-07-22 16:18:49.467',NULL),
('e3ad11da-c0e6-40bc-81b6-9d58ee857684','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'a00e37fb-9c25-4ad9-b693-543d9ddf388a','2025-05-28 18:45:21.684',950,'KAPIDA ÖDEME - FATMA ALTAY - 745871666','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('e3bf1a2d-6572-4fd5-89ff-3662cb8c7e37','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'85071203-536b-4dca-b6ab-eb378a6c9c05','2025-05-16 16:07:59.860',800,'KAPIDA ÖDEME - HİLAL DEMİR - 644145142','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('e3d8442a-fe60-4794-b02a-9ff8bee77b53','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'6c47a19e-0b53-4437-bd26-af1e1f1b9daa','2025-01-26 10:30:15.511',600,'KAPIDA ÖDEME - GÜLCAN ÇELİKKANAT - 428519862','COLLECT','2025-01-26 10:30:15.511','2025-01-29 12:24:52.459',NULL),
('e3dc1cc9-642b-4dee-b38b-93e35dd0cb1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f8828112-c2c0-43e1-8300-a4fea7da05f8','2025-02-20 08:55:34.912',2800,'KAPIDA ÖDEME - LOULOU FİRAS  - 982754836','COLLECT','2025-02-20 08:55:34.912','2025-02-20 12:40:28.679',NULL),
('e3dc8c3c-7893-4ef1-84c8-d7344cc61e83','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'cc8347aa-14af-4bef-ac88-92a4a5c8063b','2024-08-07 14:46:49.103',1000,'KAPIDA ÖDEME - HASAN ULUSOY - 976819499','COLLECT','2024-08-07 14:46:49.103','2024-08-07 14:46:49.103',NULL),
('e443ab0f-144b-41c0-b10f-67799b984354','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'ef714645-7f38-4a84-8d4c-124593386b53','2025-01-26 10:31:51.796',1200,'KAPIDA ÖDEME - MÜCAHİD GÜZEL - 22162472','COLLECT','2025-01-26 10:31:51.796','2025-01-29 12:24:52.459',NULL),
('e4733fc9-c9dc-46eb-b93c-d5d581d3fd79','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51','2025-01-26 10:31:51.796',1000,'KAPIDA ÖDEME - HATİCE GÜRBAY - 22140129','COLLECT','2025-01-26 10:31:51.796','2025-01-29 12:24:52.459',NULL),
('e47aa968-5bd5-401d-a527-1f3cf3033dea','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'9739db1e-0165-46ba-ba28-b7ce9e88c38b','2025-09-06 17:00:09.168',150,'KAPIDA ÖDEME - MUSTAFA ÖZÇOBAN - 657264606','COLLECT','2025-09-06 17:00:09.168','2025-09-10 12:48:00.814',NULL),
('e483973c-7608-4ada-b588-21385fb3637c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f4436630-2c1a-44d9-a503-1ec5a674d42b','2025-02-20 08:41:42.101',1100,'KAPIDA ÖDEME - NASIR NOORI  - 982558117','COLLECT','2025-02-20 08:41:42.101','2025-02-20 12:40:28.679',NULL),
('e48d3337-8436-4a3f-8514-94fb3acf1a50','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'6a1719c6-6fdf-49b7-8175-c8a0ccf6b652','2025-05-24 10:58:02.722',1000,'KAPIDA ÖDEME - HÜMEYRA ZEYREK - 37152330','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('e490c3ad-32ce-4a60-b623-5bf73d6f5663','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5e292f87-77b6-4b9a-bc20-8032bd3242f2','2025-07-29 12:30:31.434',1100,'KAPIDA ÖDEME - AYLİN MİYANYEDİ - 598444930','COLLECT','2025-07-29 12:30:31.434','2025-07-29 12:43:22.147',NULL),
('e4a6ed76-cdf6-4251-8059-0536a2e989d2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'b89cd91f-460c-462f-a284-8d6b2a01dd71','2025-03-08 13:28:46.864',1850,'KAPIDA ÖDEME - MUHAMMED ERDOĞAN - 221396383','COLLECT','2025-03-08 13:28:46.864','2025-03-11 07:46:41.850',NULL),
('e4ae7191-0315-46b2-b84b-796d653cb520','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'ead6dade-f350-443d-a16a-41863d612c7c','2024-03-30 09:33:58.484',2500,'KAPIDA ÖDEME - MUSTAFA ÇETİN - 982490890','COLLECT','2024-03-30 09:33:58.484','2024-03-30 09:33:58.484',NULL),
('e4d4505a-34e3-4b64-912f-20cff86bff9d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1e0e887d-6244-4f8b-a7d0-710cf6802438','2025-10-01 07:16:48.876',1450,'KAPIDA ÖDEME - ERHAN ÇEKİÇ - 644445996','COLLECT','2025-10-01 07:16:48.876','2025-10-06 10:58:16.207',NULL),
('e500387b-10a7-45ad-b6ce-25e3e78f0fd8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'70b2b3d8-5939-4c79-b6bc-21bfa0ffde36','2025-10-17 06:45:24.511',500,'KAPIDA ÖDEME - ZELİHA ÖCAL - 6442594','COLLECT','2025-10-17 06:45:24.511','2025-10-17 10:53:07.430',NULL),
('e50090c5-aa61-4768-9ed9-2f17fffdaf63','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'8277179b-dd64-4a72-b947-d8a5c906a9b0','2025-02-03 17:59:08.362',950,'KAPIDA ÖDEME - NAFİLE ÖCALAN - 976821188','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('e5464cf6-dc5e-4586-aa6d-af62160bd99f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96','2025-01-10 08:54:21.157',400,'KAPIDA ÖDEME - GÖKMEN GÖNÜLTAŞ - 428754067','COLLECT','2025-01-10 08:54:21.157','2025-01-10 08:54:21.157',NULL),
('e57b2160-9f73-44cc-a1fe-80df84290c0f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'cc716c12-75ab-49ae-8d32-bb1b4fd1d45e','2025-06-20 15:44:35.632',100,'KAPIDA ÖDEME - SUADA HAMZA  - 613990020','COLLECT','2025-06-20 15:44:35.632','2025-06-27 08:25:57.912',NULL),
('e5b7bf6a-eb7a-4ef6-ac7d-1f5c17b5c96d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5566c1f0-6ecc-40f3-86d3-3187ae59231d',NULL,'2024-03-30 07:14:02.858',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.917'),
('e5baa6e6-6abe-417f-985c-80bae920af42','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'4a8a3d2f-092a-4deb-84f4-be3d926123a2','2025-08-22 19:43:14.426',1500,'KAPIDA ÖDEME - HAKAN AKDEMİR - 478110382','COLLECT','2025-08-22 19:43:14.426','2025-08-22 20:28:07.528',NULL),
('e5baf7e1-d106-4e03-b7c6-dff0fb8f0bc7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'a95b6f69-d856-411d-92e3-628c20975e08','2024-09-05 15:32:33.033',1010,'KAPIDA ÖDEME - HALİL GÜLER - 478418764','COLLECT','2024-09-05 15:32:33.033','2024-09-05 15:32:33.033',NULL),
('e60667a6-6f84-46d2-8890-7d744f741ffd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'e81fdf76-b529-423f-8485-057fd816e54d','2025-06-30 18:21:20.148',2900,'KAPIDA ÖDEME - MARA EDEN - 982240405','COLLECT','2025-06-30 18:21:20.148','2025-07-07 11:44:52.839',NULL),
('e6569291-f26d-4e49-8b04-470f539f3b3a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'a856c3b2-bd1c-47db-b02f-9127f2bb4d67','2025-10-07 14:59:47.707',1250,'KAPIDA ÖDEME - ALİŞAN CERCİ(K) - 644847294','COLLECT','2025-10-07 14:59:47.707','2025-10-07 15:17:28.503',NULL),
('e69b9078-9b86-40da-bd01-43f70f6b7dcd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','2025-08-07 16:13:53.439',2400,'KAPIDA ÖDEME - ELFRİDA RAİCEVİC  - 613510894','COLLECT','2025-08-07 16:13:53.439','2025-08-12 08:07:30.394',NULL),
('e6a84a32-4b37-4630-a411-ad15c45b9374','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'5b569715-9b3f-4e71-8f65-5766da410613','2024-12-13 13:16:19.811',1200,'KAPIDA ÖDEME - SİDAR AKDENİZ - 428178028','COLLECT','2024-12-13 13:16:19.811','2024-12-16 18:41:52.448',NULL),
('e6ae5c78-e771-4551-ae99-0baee6a7fd7c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'2d1546c2-bea6-40ad-a656-acdd6173cc27','2025-08-14 07:43:55.149',1200,'KAPIDA ÖDEME - ESTİFANOS HABTE  - 982496646','COLLECT','2025-08-14 07:43:55.149','2025-08-14 08:02:29.718',NULL),
('e6e2ff1a-f707-4316-a31b-0a8af842bd3e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'59340ffb-ba9b-4386-a0a4-686fcf54115b','2025-09-18 06:43:39.356',850,'KAPIDA ÖDEME - HASAN YALÇIN - 221724224','COLLECT','2025-09-18 06:43:39.356','2025-09-18 15:48:17.472',NULL),
('e7451238-3cef-4dd3-8da7-d33710f9f354','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'051ad970-b67b-4d28-a0a1-340daf71d02f','2025-04-30 13:55:21.569',2000,'KAPIDA ÖDEME - SERCAN MİRCALİ - 531549696','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('e75545ab-97d0-4eac-8304-d480cd67f1c5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9c622fdf-272f-4650-ac75-c35e205b6022','2024-10-17 12:37:24.020',1100,'KAPIDA ÖDEME - ALİ BÜKLÜ - 982506182','COLLECT','2024-10-17 12:37:24.020','2024-10-17 12:37:24.020',NULL),
('e7580250-0386-43de-b0b3-2864d8d612a1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f307f0b3-1e6f-4062-b3df-b0ccecb5eb70','2025-03-06 10:17:40.312',1000,'KAPIDA ÖDEME - MADAME COURTOIS IMANE - 745987581','COLLECT','2025-03-06 10:17:40.312','2025-03-06 10:36:11.461',NULL),
('e75b1594-a90d-4720-9f58-76ab6a96697f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'ff039116-94c2-4c75-851c-9deaf4e01549','2024-10-02 10:47:06.063',500,'KAPIDA ÖDEME - ASLIHAN GÜÇLÜ  - 428499287','COLLECT','2024-10-02 10:47:06.063','2024-11-06 15:12:27.939',NULL),
('e76fbbb7-8a20-4855-848c-ab60867825a0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'24bfd523-6e80-4e24-89e9-93f7f88a6f2d','2025-07-11 07:57:47.188',1500,'KAPIDA ÖDEME - MEHMED SHABAN  - 982893962','COLLECT','2025-07-11 07:57:47.188','2025-07-11 08:00:02.549',NULL),
('e7b3f995-26c2-4a52-9217-349e6c08c667','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5baaef95-cfe9-4495-b2ef-fed3f147497d',NULL,'2024-03-30 13:00:49.650',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.718'),
('e7ce46bb-5290-4f29-a7b3-856ef7da75bf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0','2025-08-27 08:40:21.935',695,'KAPIDA ÖDEME - SABİNA KAYA - 598548833','COLLECT','2025-08-27 08:40:21.935','2025-09-03 06:09:36.639',NULL),
('e7e1c357-072e-4e29-84fb-f67002a90aa9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'d1cfa6cc-2247-4475-be75-54d2bdd21d0c','2025-08-30 12:05:07.666',490,'KAPIDA ÖDEME - MEHMET SEKBAN - 437840419','COLLECT','2025-08-30 12:05:07.666','2025-09-05 08:55:11.193',NULL),
('e7e2568f-dfb6-4b57-bee2-2323f67d41a1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab','2025-06-30 18:33:09.193',200,'KAPIDA ÖDEME - MURAT - 4127825','COLLECT','2025-06-30 18:33:09.193','2025-07-07 11:44:52.738',NULL),
('e7ed98bb-6876-44c9-bea2-0d84c7f2158b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fdb96289-c48e-47a8-9fd3-37b529486551',NULL,NULL,NULL,'2024-11-08 17:10:52.663',-850,NULL,'PAYMENT','2024-11-08 17:11:00.171','2024-11-08 17:11:00.171',NULL),
('e7fb8cf1-1779-4024-8918-c3aab446aee3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f0a5289b-f034-4540-b03b-9510ca71ec7a','2025-01-03 09:09:49.753',1800,'KAPIDA ÖDEME - AYDIN KEMERLİ  - 982837523','COLLECT','2025-01-03 09:09:49.753','2025-01-05 14:06:53.366',NULL),
('e80e6d0d-0952-4c64-9090-57e97a6bc4b4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'c7aca399-e42c-4cf3-aaff-22648818fcfc','2024-12-09 07:56:12.672',693,'KAPIDA ÖDEME - İLDA TOKOVİÇ - 735520226','COLLECT','2024-12-09 07:56:12.672','2024-12-17 19:52:32.750',NULL),
('e831b740-711f-4795-8d53-6915c4ea949f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'cb3c3900-b517-4430-a11a-2f2b7755d652','2025-04-30 13:55:21.569',2000,'KAPIDA ÖDEME - BERİVAN TİNTAŞ - 478994871','COLLECT','2025-04-30 13:55:21.569','2025-05-02 11:56:13.100',NULL),
('e84cd845-ba4c-44df-b569-0879fed1fc1d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'b2a22a30-754d-42fb-a7e9-beef7ed2ae23','2025-02-23 12:03:23.298',2150,'KAPIDA ÖDEME - BRHZAD ALİKHANİ  - 982402434','COLLECT','2025-02-23 12:03:23.298','2025-03-02 04:33:53.043',NULL),
('e879c873-a05c-4bcd-acb6-bce9b6ada3e9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5fa2fdac-b02e-40d3-aad0-addab62842bc',NULL,'2024-03-30 13:00:50.901',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.694'),
('e8a95cbf-115c-405c-8ae0-28b9aa5a584a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'80cc77d6-2140-493c-a7df-e75aa5104691','2025-08-14 09:15:13.514',495,'KAPIDA ÖDEME - BEKİR TEKELİ - 437700144','COLLECT','2025-08-14 09:15:13.514','2025-08-15 20:59:04.988',NULL),
('e8abf98f-b620-42ea-81d9-b3f899dd5e2c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'54227612-b8f2-4146-ac20-5622ca9f45c2','2025-10-07 14:59:47.629',1500,'KAPIDA ÖDEME - OKAN CORAMAN - 745980941','COLLECT','2025-10-07 14:59:47.629','2025-10-07 15:17:28.416',NULL),
('e8c648fb-dc82-4307-91e0-c6e9678f67cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'82c2a380-c89a-4beb-ba59-ed765263d701','2025-10-22 07:51:14.207',3350,'KAPIDA ÖDEME - ÜLKER SEPETÇİ - 4786538','COLLECT','2025-10-22 07:51:14.207','2025-10-22 11:29:52.751',NULL),
('e8cf7bb2-adb7-463c-95df-90f43683c773','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'2e51945e-3da1-4c02-ae97-956500db2c2a','2025-04-19 10:21:58.939',1000,'KAPIDA ÖDEME - SELCAN KURU - 221208954','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('e9126861-a533-4be3-80a5-755245e5fa9b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'0689343a-01c3-4235-b709-f5f67e87d641','2025-08-21 07:01:13.951',2600,'KAPIDA ÖDEME - TOLGA KAPLAN - 598463425','COLLECT','2025-08-21 07:01:13.951','2025-08-21 08:12:56.855',NULL),
('e9284b72-2b24-484f-85ed-adcc07b96a73','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'895e1a54-1679-4334-a0d8-1b1901c592a5','2025-03-27 08:52:32.483',2400,'KAPIDA ÖDEME - BERKANT YAŞA - 745717474','COLLECT','2025-03-27 08:52:32.483','2025-03-29 13:56:05.249',NULL),
('e9852e3b-348e-4170-9e3e-800cb5b6f1fa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'6b361dae-234d-4a49-8c9a-41f1607c3e0c',NULL,'2024-03-30 13:00:50.051',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.740'),
('e9b1621e-c5c8-4aed-a2b0-67b67deac009','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'8d846a6b-e2c3-45bd-928c-7238130acfdf','2024-09-18 21:04:41.771',590,'KAPIDA ÖDEME - AYŞE ÖZSOY - 745132796','COLLECT','2024-09-18 21:04:41.771','2024-09-18 21:04:41.771',NULL),
('e9d0ffaf-19da-41ec-a08e-051a5ee98271','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'50065a32-533f-412d-badc-5149cb99bf62','2025-07-26 07:29:09.307',380,'KAPIDA ÖDEME - ALTİN RAMADANİ - 61355212','COLLECT','2025-07-26 07:29:09.307','2025-07-26 08:40:12.321',NULL),
('e9dce756-cff3-4e09-9e42-c2ea5fd972a1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'88508694-0e8b-4ee8-a819-7c218ab0cce7','2024-10-23 09:13:17.697',490,'KAPIDA ÖDEME - MURAT MAKAS - 248764146','COLLECT','2024-10-23 09:13:17.697','2024-10-23 10:16:47.780',NULL),
('ea32b197-def5-433c-ba99-788fd50a278a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','2025-08-14 08:50:57.212',1500,'KAPIDA ÖDEME - ÖZKAN ERDEM  - 478784133','COLLECT','2025-08-14 08:50:57.212','2025-08-15 20:59:04.947',NULL),
('ea334961-0380-4a33-b57f-0a388d22c4de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'994456e0-b759-4b05-827f-74c05ad02194','2025-10-07 14:59:47.694',1700,'KAPIDA ÖDEME - NİLGÜN LEUKEL - 531629494','COLLECT','2025-10-07 14:59:47.694','2025-10-07 15:17:28.487',NULL),
('ea537425-4873-4732-b770-c6d27c453478','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f4fdc95f-d066-47f9-858c-34b39a3d3ebd','2025-10-13 07:14:08.944',2800,'KAPIDA ÖDEME - AYSEL-İSMAİL ÇILGIN - 478928003','COLLECT','2025-10-13 07:14:08.944','2025-10-14 08:52:36.788',NULL),
('ea811d62-11aa-4a87-ab65-04833dd19c4b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'68a62bbd-fbf3-4ebb-9e06-55ca9ba041a2',NULL,'2024-03-30 07:14:02.608',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.960'),
('eaaa3cd3-f415-4c24-ad9a-c637e778dad3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'83523717-3c96-466b-bee7-e0dfa2259e82','2025-02-23 12:24:13.847',700,'KAPIDA ÖDEME - PINAR SALMA - 745687103','COLLECT','2025-02-23 12:24:13.847','2025-03-02 04:33:53.043',NULL),
('eae4ad04-b211-4ea9-a8a6-c3e8fdaa3506','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'d01b4f69-9644-4e00-b4be-407f21dbd835','2024-11-06 12:39:54.840',800,'KAPIDA ÖDEME - SERDAL ÇEPER - 42899153','COLLECT','2024-11-06 12:39:54.840','2024-11-16 21:16:02.800',NULL),
('eb03ce56-b788-4d2d-82cb-41de7ece6f49','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'30b6bd7d-f466-4e5d-98b7-9c04544e31a8','2025-07-12 09:16:05.829',800,'KAPIDA ÖDEME - SERHAT MOUEMİN - 675799375','COLLECT','2025-07-12 09:16:05.829','2025-07-16 14:21:29.451',NULL),
('eb3fadb6-5b49-4ac7-b70a-39267070a8f7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7f928743-a15c-45e6-923e-c9353a847d5f',NULL,'2024-03-30 13:00:48.898',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.697'),
('eb4570a4-398a-4bfa-b890-cee6206cfdc9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3b80982a-28cd-44f1-8d72-59c4daf5e636',NULL,NULL,'59dde410-951f-46d0-a70c-9d7bad1aa73f','2025-03-24 15:51:15.840',400,'KAPIDA ÖDEME - HÜLYA LAÇİNOK - 380497843','COLLECT','2025-03-24 15:51:15.840','2025-04-02 18:57:10.886',NULL),
('eb52c94d-2ee9-4172-8d88-0c084ccce17c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'5e55f20c-e2ab-4965-a16e-95af4a5ed4da','2025-08-07 16:13:53.425',1700,'KAPIDA ÖDEME - SEMANUR GÜLER - 598781522','COLLECT','2025-08-07 16:13:53.425','2025-08-12 08:07:30.318',NULL),
('eb743666-4f6c-41be-8793-0f6a16e0c730','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'1d98874a-3c1d-4a2e-ad9b-b943512896cd','2025-01-11 15:02:07.378',1200,'KAPIDA ÖDEME - CAROLİE KENZA  - 982212726','COLLECT','2025-01-11 15:02:07.378','2025-01-13 07:50:40.305',NULL),
('eb886287-3b1b-4d1d-b6ec-568cda6f6e6d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d','2025-10-25 08:43:45.342',1750,'KAPIDA ÖDEME - YUSUF BARAN - 478450171','COLLECT','2025-10-25 08:43:45.342','2025-10-25 08:58:44.051',NULL),
('eb8cc26b-2f05-4e12-87c4-ae8c25553ce4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'34e042be-7f8d-4047-b3b9-96ed6829bf2f','2025-05-23 06:29:06.668',1500,'KAPIDA ÖDEME - YASİN OĞUZ - 478233957','COLLECT','2025-05-23 06:29:06.668','2025-05-26 13:23:22.333',NULL),
('ebc55988-4f06-4062-8d70-990baf5d7bd5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'aaf63331-ccff-4ade-8965-5318b9f59d6e','2024-05-10 08:34:23.372',2525,'KAPIDA ÖDEME - BOZTAŞ - 412726953','COLLECT','2024-05-10 08:34:23.372','2024-05-10 08:34:23.372',NULL),
('ebde5e2e-7d0b-4699-8232-152d2e5dac1a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'e3871411-a780-42a7-af06-7808ea097f15','2025-10-07 14:59:47.589',590,'KAPIDA ÖDEME - RUKİYE TURAN - 644301613','COLLECT','2025-10-07 14:59:47.589','2025-10-07 15:17:28.580',NULL),
('ebe4694c-5095-4a82-afd9-137ec7d3ca28','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'f7194f95-fa52-48ad-8c78-86a92187abde','2025-09-10 12:14:31.009',2325,'KAPIDA ÖDEME - MARTİN MARİNKOVİC - 675885408','COLLECT','2025-09-10 12:14:31.009','2025-09-10 12:48:00.894',NULL),
('ebeb18a3-5016-41a7-9572-57c55db52d74','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'96741763-bc18-47ed-be48-0c973149d4fb','2025-07-19 09:24:05.793',675,'KAPIDA ÖDEME - AYLİN KIRLANGIÇ - 127221315','COLLECT','2025-07-19 09:24:05.793','2025-07-22 16:18:49.598',NULL),
('ec5b5a06-f4bc-42d6-9817-8ac1304c2f7e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1bf2ee62-29f3-4d32-9c25-7d51c7d34096',NULL,NULL,'90a8f7ac-5c28-443a-9cbe-23f5c2942327','2024-09-09 15:21:35.819',1450,'KAPIDA ÖDEME - ERKAN AKSOY - 126824871','COLLECT','2024-09-09 15:21:35.819','2024-09-09 15:21:35.819',NULL),
('ec867fb7-a3e3-4548-84ad-ac10030a4bfa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'4e848e66-1956-4160-9b53-a1fab280f1f6','2025-10-07 14:59:47.597',750,'KAPIDA ÖDEME - HAMİYET KARASOY - 371876767','COLLECT','2025-10-07 14:59:47.597','2025-10-07 15:17:28.408',NULL),
('ec930428-9255-4d54-aa79-c54d32ff465b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'f59e89d5-cc6e-4d5f-8394-432af9b9c0b2','2025-03-12 18:37:42.098',2600,'KAPIDA ÖDEME - RERHAYE KHADJA  - 982834531','COLLECT','2025-03-12 18:37:42.098','2025-03-12 19:01:22.362',NULL),
('ec96e1c6-5494-4676-a837-4aa3403e0d71','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45','2025-01-05 13:51:16.891',570,'KAPIDA ÖDEME - YUSUF IŞIK - 449582137','COLLECT','2025-01-05 13:51:16.891','2025-01-07 16:55:53.804',NULL),
('ecba34d2-fa88-4287-9779-619ac3c94956','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'5aa78870-c5db-449e-aff0-2a524544eba3','2025-06-25 10:51:21.106',500,'KAPIDA ÖDEME - SELCAN BOZKURT  - 221118460','COLLECT','2025-06-25 10:51:21.106','2025-07-01 09:19:38.968',NULL),
('ecfaf5e7-fe07-430c-89ca-cdbc7856b398','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'eed830c2-dab6-4198-ad41-2a2be9a929dc','2024-11-29 13:22:10.580',1350,'KAPIDA ÖDEME - İRFAN AKTAŞ  - 501167444','COLLECT','2024-11-29 13:22:10.580','2024-12-09 17:29:19.987',NULL),
('ed0873cd-7b39-4719-b108-34bbdbb6bfcd','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'34514862-3195-4033-94ff-722d00f7f62e',NULL,'2024-03-30 13:00:50.801',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.643'),
('ed2f9f32-cb48-430b-b547-f48608157cac','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f23142ef-47ba-426c-9a22-bfb123cfac47',NULL,NULL,'1a546dc5-d5a2-4124-a2a5-67bc24821f50','2024-11-07 13:31:48.436',2750,'KAPIDA ÖDEME - ÖZGÜR BOZKURT - 231211138','COLLECT','2024-11-07 13:31:48.436','2024-11-25 09:20:39.164',NULL),
('ed4a5782-e641-41ed-8275-74d743f3ce1b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'4a5b9bbc-8625-4b70-95ee-60399f0043bf','2025-05-24 10:58:02.722',1500,'KAPIDA ÖDEME - GÜLÇİN İSMAİLÇEBİOĞLU - 31925609','COLLECT','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('ed5f97d7-4b3e-48dc-872f-3ea471a3c885','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'f774fd73-b557-40e4-a1f0-2f9f1e99e70a','2025-07-18 17:45:49.991',2450,'KAPIDA ÖDEME - KÜRŞAT OKUTAN - 644377360','COLLECT','2025-07-18 17:45:49.991','2025-07-22 16:18:49.675',NULL),
('ed75297c-5829-40c0-8446-adb68a82eabf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'8fb47c44-2d49-4fed-9d20-275d1c3b846a','2025-08-30 12:05:07.677',700,'KAPIDA ÖDEME - GÜLSÜM UÇAR  - 221345365','COLLECT','2025-08-30 12:05:07.677','2025-09-05 08:55:11.121',NULL),
('ed7a88b0-8fd4-40c8-b9b2-161810d78068','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'def82a96-8956-42bc-885f-988dfa22f789','2025-09-10 16:10:02.171',300,'KAPIDA ÖDEME - LOWENSTERN - 412990147','COLLECT','2025-09-10 16:10:02.171','2025-09-10 16:10:02.171',NULL),
('ede51c56-be75-4a10-a495-1642e79100bc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'4a285e1c-8129-4c9c-85a3-06394604421e','2024-03-30 08:59:39.049',2760,'KAPIDA ÖDEME - METE-TAHA TOPAL - 478281907','COLLECT','2024-03-30 08:59:39.049','2024-03-30 08:59:39.049',NULL),
('ede6e54a-474f-4289-a988-d72016430850','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee',NULL,NULL,'2d5afee9-087f-41e1-a999-dc4fe606e35c','2025-09-06 17:00:09.112',1000,'KAPIDA ÖDEME - İBRAHİM AKIN - 465524926','COLLECT','2025-09-06 17:00:09.112','2025-09-10 12:48:00.778',NULL),
('ee33a0b1-82e5-4e5a-9ec7-03c39995df16','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'87929b1a-65a1-4766-84ad-495ee7ffcb70','2024-07-09 08:41:11.330',850,'KAPIDA ÖDEME -  - 248450889','COLLECT','2024-07-09 08:41:11.330','2024-07-09 08:41:11.330',NULL),
('ee4ebb4a-5912-4fb1-8607-e1a971295413','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'9016d7f6-7477-4afe-9a6c-22410434be77','2024-11-12 16:25:52.228',1000,'KAPIDA ÖDEME - DİLAVER ULUTAŞ - 47836811','COLLECT','2024-11-12 16:25:52.228','2024-11-23 12:17:08.607',NULL),
('ee88103d-e69d-44b8-959f-cc597a2a2f54','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c','2025-10-04 10:50:24.457',1950,'KAPIDA ÖDEME - HASAN BEY (İRFAN) - 412797306','COLLECT','2025-10-04 10:50:24.457','2025-10-04 10:50:24.457',NULL),
('eebf64d8-176a-461b-b808-8b14cd153504','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52840269-0db7-4c57-8a50-57d49049f342',NULL,NULL,'13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc','2024-09-18 20:58:11.453',1000,'KAPIDA ÖDEME - EMRE DİNÇ - 52896910','COLLECT','2024-09-18 20:58:11.453','2024-09-18 20:58:11.453',NULL),
('eef67154-1605-4f40-a093-55d5859a1713','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'c3d3518b-3207-4e42-8927-efa33c951310','2025-10-17 06:45:24.623',1250,'KAPIDA ÖDEME - AHMET GÜMÜŞ - 598387436','COLLECT','2025-10-17 06:45:24.623','2025-10-17 10:53:07.563',NULL),
('eeff8454-ed22-4635-8d37-4a761c6b3577','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'7b348f53-5c5b-4ec1-b494-8e7dc766995e','2025-02-23 12:18:58.301',1190,'KAPIDA ÖDEME - DIANA ÇELİKER - 449974141','COLLECT','2025-02-23 12:18:58.301','2025-03-02 04:33:53.043',NULL),
('ef357d8d-5077-4d4d-bdc4-44d202c98fc1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'22aac75b-880d-4ec6-b9a5-586a4d8ba155','2024-12-27 11:27:16.964',1000,'KAPIDA ÖDEME - YUSUF ATUM  - 501212768','COLLECT','2024-12-27 11:27:16.964','2024-12-27 12:23:49.166',NULL),
('ef3f6ea0-d6ca-4ed2-a418-0d8ecc7950b0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'f41591d6-a92e-4ea1-9c50-b10accb09a51','2025-05-16 16:07:59.860',1050,'KAPIDA ÖDEME - HAFİZE BALİ - 371539784','COLLECT','2025-05-16 16:07:59.860','2025-05-16 16:30:10.378',NULL),
('ef6e2bce-01c5-4222-8616-03b6850d822b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'5289d63f-a7a4-464d-80ad-20c84233ff2b','2025-10-25 08:43:45.386',1950,'KAPIDA ÖDEME - TARIK TURAN - 644769101','COLLECT','2025-10-25 08:43:45.386','2025-10-25 08:58:43.990',NULL),
('ef7db74a-428b-481f-9756-fa00e83ade1e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3b80982a-28cd-44f1-8d72-59c4daf5e636',NULL,NULL,'fde38e03-9a98-45f7-8ebe-3ba96b9c8830','2025-04-26 14:41:20.302',820,'KAPIDA ÖDEME - YONCA KILIÇ - 380417164','COLLECT','2025-04-26 14:41:20.302','2025-04-28 07:39:38.799',NULL),
('ef925e97-9744-4580-a417-7e3f5de577da','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'ed1c3d42-dad9-477c-953a-0f9f25eed681','2025-03-29 13:41:39.077',1090,'KAPIDA ÖDEME - MURAT  - 412716766','COLLECT','2025-03-29 13:41:39.077','2025-03-29 13:56:05.249',NULL),
('ef9ce082-e62d-478b-aba4-aa8a4dbe402d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7c55a7a8-40fe-4ef7-90df-f477ca185e1e',NULL,NULL,'5ff8b69d-3f0b-4991-8c5b-8c9973d39429','2024-12-28 14:46:54.976',1100,'KAPIDA ÖDEME - BUSE HOME - 755919446','COLLECT','2024-12-28 14:46:54.976','2025-01-06 20:08:12.782',NULL),
('efb63866-53b7-48a2-90c5-ea275af676b7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5a5a9f00-fb8f-478f-a43c-f8bd300ac0a4',NULL,'2024-03-25 11:45:14.233',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.766'),
('f015a305-36a1-426a-b035-69071f867069','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'32676e01-684e-4e88-b01e-02f858a6cf93','2025-07-18 17:50:30.910',1700,'KAPIDA ÖDEME - SEPİDEH AJORLOO - 478854135','COLLECT','2025-07-18 17:50:30.910','2025-07-22 16:18:49.498',NULL),
('f047c3df-ca73-4934-966d-191239554811','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'f9930b26-2916-433c-84e9-7d26f5c38b59','2025-07-26 07:29:09.337',600,'KAPIDA ÖDEME - VOLKAN CELİK - 515785688','COLLECT','2025-07-26 07:29:09.337','2025-07-26 08:40:12.420',NULL),
('f06e0d16-bd81-4102-a0a2-fa45fc9b9d95','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'e0ff461d-a3df-473b-8c9d-6d28295d3169','2024-08-20 15:18:02.280',800,'KAPIDA ÖDEME - RASİM EKİCİ - 614462377','COLLECT','2024-08-20 15:18:02.280','2024-08-23 09:04:42.762',NULL),
('f07851cd-c44b-49df-b584-fa18da9699b1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'1588a62a-68c3-4ab3-a790-c8924ac0f9c2','2024-11-15 16:56:07.909',3300,'KAPIDA ÖDEME - MÜŞERREF GONCA - 745831913','COLLECT','2024-11-15 16:56:07.909','2024-11-28 09:15:31.466',NULL),
('f09cd882-ef03-4b20-b09e-2622c76e5141','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'92ef11d7-249d-45f0-a76f-8b59e5a6399e','2025-03-08 13:35:30.206',1250,'KAPIDA ÖDEME - GHAZAL TARIK İLHAN - 644971564','COLLECT','2025-03-08 13:35:30.206','2025-03-11 07:46:41.850',NULL),
('f0ae93d9-18a6-4be6-850a-c96758f32d4c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'73425516-263e-4f72-894c-4cfd33d6ee43','2025-10-13 10:17:43.303',5500,'KAPIDA ÖDEME - ŞENOL BEY - 412157183','COLLECT','2025-10-13 10:17:43.303','2025-10-13 10:18:17.149',NULL),
('f0b0a48b-dcdd-4de3-8e3e-014395cd2cc0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'e8a249a9-b090-42b5-ba99-445005f2b553','2024-05-29 08:50:12.996',400,'KAPIDA ÖDEME - NURTEN TÜRK - 745220703','COLLECT','2024-05-29 08:50:12.996','2024-05-29 08:50:12.996',NULL),
('f0b69709-a1bb-4183-8260-dd59729f57d4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'30529cb9-4bbf-4a63-8d88-6ac4e67509cb','2025-06-25 10:51:21.134',375,'KAPIDA ÖDEME - MUHAMMET TÜRKMEN - 745952430','COLLECT','2025-06-25 10:51:21.134','2025-07-01 09:19:38.940',NULL),
('f0c01f29-e606-4bb9-816b-450ebd3c2414','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'ed280e04-bf9d-4058-a9ca-c28010e0e3a6','2024-12-27 11:32:09.296',1400,'KAPIDA ÖDEME - HÜLYA AKKOÇ - 735384295','COLLECT','2024-12-27 11:32:09.296','2024-12-27 12:23:49.166',NULL),
('f0d3f45e-ce93-4150-af02-e2d35fc9a1cc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'aaf80057-65ea-4999-832a-29537bd6ba3e','2025-06-05 14:19:23.965',2800,'KAPIDA ÖDEME - BERKAN AKTÜRK - 371823380','COLLECT','2025-06-05 14:19:23.965','2025-06-06 02:46:03.729',NULL),
('f0e443c2-42e3-4ac2-a077-f6b06943bb04','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'fb6d94c6-dc73-470f-92ac-fd4950b9d25a','2025-05-28 19:11:07.451',350,'KAPIDA ÖDEME - BERKAN AĞIRMAN - 910899167','COLLECT','2025-05-28 19:11:07.451','2025-05-28 19:11:07.451',NULL),
('f1098240-ddfc-42cd-9c7a-c857302f3aa4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'22345714-b5fa-41b0-909c-acf5f1e9d725','2025-07-16 14:24:19.201',600,'KAPIDA ÖDEME - HAMİDİ SONİA  - 221949733','COLLECT','2025-07-16 14:24:19.201','2025-07-16 14:29:34.135',NULL),
('f12b946e-103d-4461-b9af-76ab45b50bde','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'f3a1ac48-b527-42d9-94b5-e4019b6f4591','2025-09-12 16:59:40.452',850,'KAPIDA ÖDEME - EDA ABUL - 817160215','COLLECT','2025-09-12 16:59:40.452','2025-09-12 17:16:02.718',NULL),
('f14a0d32-4868-43cc-bd74-ca6456c77684','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'46aa945f-6044-4640-8ed8-99191e2890af','2025-07-18 17:50:30.917',1700,'KAPIDA ÖDEME - MEHMET AKHAN - 371998665','COLLECT','2025-07-18 17:50:30.917','2025-07-22 16:18:49.505',NULL),
('f1c45bd3-f505-440a-a655-3fb9aa168299','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5f3f13d2-795f-4eba-b7bd-61428d952ca2',NULL,NULL,'85a61e83-6a63-4ba3-be2f-7f76b267dcef','2025-04-30 13:44:23.805',825,'KAPIDA ÖDEME - İBRAHİM PİLİG - 531724547','COLLECT','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('f1d6c8b5-55fa-4fdc-8f08-e765e6736fa7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1b95f6b8-b318-4efe-90f5-5c3bca7a5637','2025-04-19 10:21:58.939',1100,'KAPIDA ÖDEME - YASEMİN ÖZKILINÇ - 437819954','COLLECT','2025-04-19 10:21:58.939','2025-05-02 17:08:29.291',NULL),
('f218604a-000e-4939-b5e3-d637a6217db3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'d586bc5d-72ab-46a5-8f07-a0f14d351b51','2025-07-18 17:50:30.859',450,'KAPIDA ÖDEME - FOUAD BJA - 515103460','COLLECT','2025-07-18 17:50:30.859','2025-07-22 16:18:49.653',NULL),
('f21ad329-ce7f-42e8-b595-56e9bed2f4de','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'e9363e6f-11f7-400b-bc2a-13288789cb1a','2025-05-28 18:50:18.071',300,'KAPIDA ÖDEME - ÇİĞDEM MURAT - 65758007','COLLECT','2025-05-28 18:50:18.071','2025-05-28 19:05:44.543',NULL),
('f235e1a9-4f53-4e15-8f68-7957b9410b15','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'2b0da990-33f0-4a20-bc6f-d7e86a9688d7','2025-02-20 09:07:52.452',1825,'KAPIDA ÖDEME - NECATİ AKIN - 31929392','COLLECT','2025-02-20 09:07:52.452','2025-02-20 12:40:28.679',NULL),
('f24e1f7d-f720-433c-a4a1-6cfe29983fa9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'b7214302-d982-4460-ad8c-ebf440918b82','2024-10-02 09:56:02.594',2000,'KAPIDA ÖDEME - İBRAHİM AKARSU  - 501307359','COLLECT','2024-10-02 09:56:02.594','2024-10-02 09:56:02.594',NULL),
('f26e624e-9600-49c6-9454-2b725843664a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d','2025-02-23 12:23:18.706',2000,'KAPIDA ÖDEME - ALESSANDRA ALTAVİLLA - 127343940','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('f27269c8-9826-4a9a-bf77-7af9749fae8d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'b0c601ac-0773-47fe-862f-c858fbc7ea4f','2025-03-24 12:25:13.927',560,'KAPIDA ÖDEME - MUHAMMED ARACI - 221247114','COLLECT','2025-03-24 12:25:13.927','2025-04-02 18:57:10.886',NULL),
('f296d006-25f5-4381-83b6-28fcc7b6aab5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'1916783b-4f27-42eb-9741-6293c2d89316','2025-09-18 06:43:39.329',590,'KAPIDA ÖDEME - UMUT ETHEM EMRE  - 437101296','COLLECT','2025-09-18 06:43:39.329','2025-09-18 15:48:17.442',NULL),
('f29fe770-3dc0-45a0-9bd7-ed9e93ad5cde','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'5fcfabaf-abfd-496b-84fd-6ef04452b85c','2025-09-12 17:03:30.336',2500,'KAPIDA ÖDEME - HÜLYA ŞENEL  - 011195834','COLLECT','2025-09-12 17:03:30.336','2025-09-12 17:16:02.628',NULL),
('f2ac6d03-453d-486f-8638-99e777c2b3f6','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'87c55df7-f40e-45d7-a3d5-773c1c5084ea','2025-08-14 09:15:13.427',1380,'KAPIDA ÖDEME - M.CEDRİC KLEINDIENST - 221850151','COLLECT','2025-08-14 09:15:13.427','2025-08-15 20:59:05.016',NULL),
('f3152f80-1c89-4733-84b0-990868134593','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'74637af9-7a7a-405b-a482-73059c1633c6','2025-03-08 13:37:32.391',825,'KAPIDA ÖDEME - BERNARD BEJİQ - 644714329','COLLECT','2025-03-08 13:37:32.391','2025-03-11 07:46:41.850',NULL),
('f3196383-6a51-4ea8-8098-3cf59ad7a9ca','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'2e7c73f7-d738-4447-86bd-2c43c4f79b02','2025-07-26 07:29:09.345',500,'KAPIDA ÖDEME - SAFİYE TINCA - 371194748','COLLECT','2025-07-26 07:29:09.345','2025-07-26 08:40:12.305',NULL),
('f31f7c5a-bfc8-4e1d-b2ef-8cfc41c17981','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'7d94f5dc-3374-42f1-918a-96335b5e8070','2024-05-08 18:35:31.028',2470,'KAPIDA ÖDEME - Arbesa - 982653067','COLLECT','2024-05-08 18:35:31.028','2024-05-08 18:35:31.028',NULL),
('f3336761-0b8c-4e33-a9d5-c7b89c1e2461','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'6bf15977-81c1-4276-bfef-d11adbf0e1ea','2025-05-23 06:35:45.707',800,'KAPIDA ÖDEME - FATİME YILMAZ - 371626943','COLLECT','2025-05-23 06:35:45.707','2025-05-26 13:23:22.333',NULL),
('f3e973a3-201f-4125-8acf-a6097ce5aae8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'61630d35-0a19-4513-83ef-94b891cf12e5','2025-05-09 16:49:05.440',1000,'KAPIDA ÖDEME - NESLİHAN DEMİR - 371586742','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('f403bcc2-7511-458f-96a2-ca70b9fedfc5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'f58ff780-8d60-44ab-895e-cd1887ec2eb7','2025-08-07 16:13:53.432',1660,'KAPIDA ÖDEME - BELGİN YAĞLI		 - 910762495','COLLECT','2025-08-07 16:13:53.432','2025-08-12 08:07:30.449',NULL),
('f43e6bd5-b954-4c7f-8861-635b6db5695f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','65e7b37e-4d55-4714-b338-3f35d8bfc4d5',NULL,NULL,'3f435f52-f9e1-4789-86ed-910c595d9e14','2025-03-27 12:35:12.160',300,'KAPIDA ÖDEME - ALPEREN BAYRAM - 65722585','COLLECT','2025-03-27 12:35:12.160','2025-03-29 13:37:01.615',NULL),
('f440cabe-b3bf-4043-a6c6-76fa5cf05b01','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0','2024-12-13 13:16:19.811',1675,'KAPIDA ÖDEME - ASLIHAN GÜÇLÜ - 745554582','COLLECT','2024-12-13 13:16:19.811','2024-12-16 18:41:52.448',NULL),
('f444afc3-690a-432c-915d-924021e09924','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e','2025-05-09 16:49:05.440',950,'KAPIDA ÖDEME - YEŞİM TOPKIRAN - 221960678','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('f448616f-42c3-4160-bb02-e96e3fc761ba','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f351cefc-89af-459c-b9b5-75872c24101f',NULL,'2024-03-30 07:14:02.108',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.941'),
('f455dfca-9731-4b10-b3b8-2d23ac064008','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f4861afa-47df-4a6b-b9ca-da22afe273e4',NULL,NULL,'044d9be3-0770-4d6a-af0c-8fd047dc7191','2025-07-12 09:16:05.693',1625,'KAPIDA ÖDEME - SUAN RASTODER - 486405325','COLLECT','2025-07-12 09:16:05.693','2025-07-21 12:03:55.928',NULL),
('f465e899-3b66-4aad-9d9b-6aa7257beab9','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7868f0ab-d491-44f8-9f78-15fc6f286ffa',NULL,NULL,'1510ebf8-1c9a-4576-83cb-afd76b0d011d','2025-02-13 20:39:54.399',1900,'KAPIDA ÖDEME - VALBOANA - 786254351','COLLECT','2025-02-13 20:39:54.399','2025-02-24 20:28:04.441',NULL),
('f4971126-72ee-4301-84dd-7553beaea85d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'7a6b9f5a-66cf-4b7f-9d4d-5fa009563746',NULL,'2024-03-30 07:25:33.093',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.695'),
('f4a084d6-cf35-432a-bd71-9e6a921d8fa4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'4f9d5c38-0063-4e07-b2a8-9a979cfc78c5','2025-08-20 15:43:06.394',600,'KAPIDA ÖDEME - MÜCAHİD AL - 437880840','COLLECT','2025-08-20 15:43:06.394','2025-08-21 08:12:56.925',NULL),
('f4aca0f3-9864-4fb5-8132-b62b91d85fc5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'89246671-a5c1-446d-bc5e-be3c518b5d0e','2025-05-09 16:49:05.440',1500,'KAPIDA ÖDEME - EDİZ DİNLER - 478989383','COLLECT','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('f4b3ed52-aa32-4970-b8d4-6d5b90897ce3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'4fcf7206-6a08-4a73-833c-a5e8b873c885','2024-12-20 16:50:36.282',500,'KAPIDA ÖDEME - İMDAT KILIÇASLAN - 428480095','COLLECT','2024-12-20 16:50:36.282','2024-12-27 12:23:49.166',NULL),
('f4bf05b0-3874-4631-bd68-3a9cdcf28358','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9','2024-10-23 08:54:45.029',1050,'KAPIDA ÖDEME - HASAN BÜLBÜL - 478941206','COLLECT','2024-10-23 08:54:45.029','2024-10-23 10:17:23.299',NULL),
('f5449abd-a96c-4405-a79a-1105ee81d445','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'86762eef-fd62-4b28-b589-b418608643f9','2025-03-27 08:02:20.217',350,'KAPIDA ÖDEME - CEYDA KARA - 437791163','COLLECT','2025-03-27 08:02:20.217','2025-03-29 13:37:01.615',NULL),
('f558afbf-e952-403d-b34b-4df7c755eadb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'67f5e4dc-108b-4d6d-98e1-a173056bbadd','2024-03-23 06:42:19.800',475,'KAPIDA ÖDEME - NERMİN TÜREDİ - 745524390','COLLECT','2024-03-23 06:42:19.800','2024-03-23 06:42:19.800',NULL),
('f568905a-b1d4-46e8-bc2f-a0029708e466','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'f466e52e-3646-44f8-a493-620d6580aea9','2024-07-20 10:26:07.181',950,'KAPIDA ÖDEME - NESİME BAĞCI - 614250408','COLLECT','2024-07-20 10:26:07.181','2024-10-04 11:52:41.965','2024-10-04 11:52:41.970'),
('f577566b-c74a-4e3f-bb62-82047d6486f7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e7023ff3-7189-4722-b023-fb3fc983b16a','2025-07-08 11:09:31.420',530,'KAPIDA ÖDEME - GELİNLİKÇİ - 412574307','COLLECT','2025-07-08 11:09:31.420','2025-07-08 11:33:15.266',NULL),
('f5802263-c7c2-4d66-88dd-aadd742cddb3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'835a9700-3c1e-47b8-bbf6-cfa3c91675b3','2024-05-29 10:13:44.100',1000,'KAPIDA ÖDEME - REYHAN BİLDİRİCİ - 3198601','COLLECT','2024-05-29 10:13:44.100','2024-05-29 11:00:13.000',NULL),
('f5828ad0-bc63-47d4-b4b8-f65c62c33f10','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'f7d5b080-0e6d-41d4-ada4-022be6e316f2','2024-10-17 11:46:50.425',550,'KAPIDA ÖDEME - FATMA GÜR - 745382052','COLLECT','2024-10-17 11:46:50.425','2024-10-17 11:46:50.425',NULL),
('f587d51a-b238-42a6-8432-f44c754155c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'00597150-64a3-4ed2-95da-544d8eb849d1','2025-02-03 17:59:08.362',3600,'KAPIDA ÖDEME - ZEHRA OCALAN - 976192214','COLLECT','2025-02-03 17:59:08.362','2025-02-11 17:09:06.423',NULL),
('f620b912-388e-4b2e-b7de-f783d1062a72','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'dc6dd7f2-9d08-46bb-875c-df8315d9d4f3','2025-09-05 17:48:44.939',795,'KAPIDA ÖDEME - DANİAL ARAMESHK  - 613191069','COLLECT','2025-09-05 17:48:44.939','2025-09-06 09:41:31.926',NULL),
('f633a0ae-9105-4024-bede-cb174b25724b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'c8b96623-e586-496c-849d-fbff1ec7f11d','2025-02-20 08:44:36.676',1500,'KAPIDA ÖDEME - VEDAT ÜZER  - 982342488','COLLECT','2025-02-20 08:44:36.676','2025-02-20 12:40:28.679',NULL),
('f63b429e-cce2-477e-b8cf-2c84c65ba1c4','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'f31b5648-bfa8-453b-a0cc-3f15b30f8046','2025-08-27 08:25:43.943',1200,'KAPIDA ÖDEME - BAHAR ORHAN - 478835180','COLLECT','2025-08-27 08:25:43.943','2025-09-03 06:09:36.825',NULL),
('f675c999-c4db-40f3-b118-0764982ca774','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'e221f07b-ec1d-448a-801d-7d5296e3b735','2024-08-22 14:45:51.033',2300,'KAPIDA ÖDEME - ZEKERİYA HOCA - 412903480','COLLECT','2024-08-22 14:45:51.033','2024-08-25 13:34:55.067',NULL),
('f6805b72-ad05-41ae-8235-e980ed20c33b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5b30305a-f3b1-4e5d-b74a-d6724e9cb7d5',NULL,'2024-03-30 07:25:32.893',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.542'),
('f6861142-d877-4e24-8845-f59d07a5a987','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'53c89851-ed2b-4173-80a6-867b215bbcfe','2025-01-05 15:11:22.958',550,'KAPIDA ÖDEME - FIRAT BEY - 98283616','COLLECT','2025-01-05 15:11:22.958','2025-01-07 17:06:26.160',NULL),
('f696dc1d-4a18-43e5-a202-4596f6a95b02','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'1709f9f6-d8a5-4fcd-9435-10a6874394d7',NULL,'2024-03-30 07:14:01.907',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.969'),
('f6999cf2-1d91-4d39-86d7-b1fe8568ca94','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'adf790b3-29b5-476e-ba13-8e482d9bc940','2025-06-30 18:28:07.812',1800,'KAPIDA ÖDEME - HAKİF ZİNAL - 644330933','COLLECT','2025-06-30 18:28:07.812','2025-07-07 11:44:52.767',NULL),
('f6c238e7-81ae-4f26-b9e1-cea52008b166','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'c372b398-b1ae-40ad-b0e3-91301cb6ee99','2025-05-28 18:45:21.684',1500,'KAPIDA ÖDEME - SÜMEYRA YARİM - 371381951','COLLECT','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('f72ef3d0-f75e-478a-93b9-d633aa7d0d33','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'e9d35722-4f61-4858-b63b-066b56b95e42','2025-04-19 10:16:53.375',885,'KAPIDA ÖDEME - CHERİET NAJET - 221287992','COLLECT','2025-04-19 10:16:53.375','2025-05-02 17:08:29.291',NULL),
('f7424ac7-1790-4148-b7e1-be8e27612b6f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'a42a1c77-dffe-41cf-b2b2-08ccedab680b','2025-10-25 08:43:45.449',850,'KAPIDA ÖDEME - ŞÜKRÜ AK - 598445423','COLLECT','2025-10-25 08:43:45.449','2025-10-25 08:58:44.065',NULL),
('f7572024-ca20-4036-bad7-177935912017','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'1a38a8c4-2aa6-4815-816b-49ef6b71901e','2025-10-17 06:45:24.492',1000,'KAPIDA ÖDEME - ÜMİT ALBAYRAK - 644526832','COLLECT','2025-10-17 06:45:24.492','2025-10-17 10:53:07.415',NULL),
('f7594529-a3fe-4279-9d19-948017828b45','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'dc0e5911-5e20-4595-8d5a-e9803266613f','2025-04-15 09:07:09.163',400,'KAPIDA ÖDEME - OSMAN ASLAN - 598127401','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('f75bb4ae-0e61-4d48-abe3-c54781f15fc2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'136523e8-0a3d-4719-a4d6-930b31cde60f','2025-06-05 14:41:36.833',800,'KAPIDA ÖDEME - İSMAİL ŞANLI - 248710120','COLLECT','2025-06-05 14:41:36.833','2025-06-06 02:46:03.729',NULL),
('f779de0c-194f-4b7a-a980-ff676cff71d0','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'b094bf7e-153f-4984-b737-f7bdece60165','2024-11-21 10:23:26.160',1200,'KAPIDA ÖDEME - ERKAN  - 248974894','COLLECT','2024-11-21 10:23:26.160','2024-11-28 09:15:31.466',NULL),
('f779ebc9-886b-40ce-83a2-d1810b089727','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b',NULL,NULL,'ee47f1d8-1ad5-4907-acb2-e3edf9f48713','2025-02-07 11:34:53.010',1700,'KAPIDA ÖDEME - ŞAZİYE KARABACAK - 50133684','COLLECT','2025-02-07 11:34:53.010','2025-02-15 11:10:42.855',NULL),
('f7f2f3c4-fae3-423c-b03b-915a3d1cf992','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','67e5a145-070e-4e0f-9c3b-09f273d6ed40',NULL,NULL,'1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5','2025-10-03 15:04:04.855',660,'KAPIDA ÖDEME - EDİSA MUSTAFSOVSKA - 675412794','COLLECT','2025-10-03 15:04:04.855','2025-10-03 16:08:51.179',NULL),
('f7fb5b3e-80f6-4e6f-8785-7cdfa0e4dc4d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'9504e4a5-303e-4819-a70c-cb5f6e9502ba','2025-07-26 07:29:09.314',570,'KAPIDA ÖDEME - GÜL KOÇAK - 437672074','COLLECT','2025-07-26 07:29:09.314','2025-07-26 08:40:12.365',NULL),
('f80d7829-fbe3-49dc-b039-9b86166f35cf','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'3fb4b4c4-9589-4783-9ff5-8758e13e3f39',NULL,'2024-03-30 13:00:49.501',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.708'),
('f8307181-5be5-446f-a410-23c29c7b76fc','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bce952bd-e658-4eff-b14a-3b71ea5a5124',NULL,NULL,'a029bd37-9eca-4220-a768-df5b0d586118','2024-11-12 07:48:40.397',2000,'KAPIDA ÖDEME - GÜLNUR KURUOĞLU - 952470417','COLLECT','2024-11-12 07:48:40.397','2024-11-23 12:17:08.607',NULL),
('f841ff61-105a-44a0-8dbf-93750590c71e','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'16a741e3-499a-4c78-b643-f7c20a086922','2025-06-25 10:58:22.226',5000,'KAPIDA ÖDEME - CAN ÇELİK - 478507488','COLLECT','2025-06-25 10:58:22.226','2025-06-26 16:05:22.666',NULL),
('f8518c4a-3779-4965-9c6d-8059224e944b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'df3b6b97-3416-43f5-bb61-b50d903d9f72','2024-09-05 16:30:22.343',2350,'KAPIDA ÖDEME - FATMİRA CELA - 449281517','COLLECT','2024-09-05 16:30:22.343','2024-09-09 11:25:29.211',NULL),
('f8550781-ccda-47e2-b7b8-ccd85d7a6498','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','515c4bf3-dd06-4075-ad27-6ad0e74d6d00',NULL,NULL,'87a56817-1368-4494-92c1-074a6979a4b8','2025-10-06 07:21:38.243',455,'KAPIDA ÖDEME - SEMA PALA  - 515747086','COLLECT','2025-10-06 07:21:38.243','2025-10-06 07:21:38.243',NULL),
('f8c9966f-3906-460e-b7df-4909f1f46d3f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'77ae1565-c04e-4a61-91bb-c10a993fdc5b','2025-09-23 07:43:59.495',4300,'KAPIDA ÖDEME - GÖKHAN ÇAYLAK - 745808994','COLLECT','2025-09-23 07:43:59.495','2025-09-24 13:41:15.004',NULL),
('f8da8afe-fef4-4160-bfe2-4b9f1bed120d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'7af8955f-37e6-4e93-a7b7-e2155fe380f1','2024-12-07 08:50:53.387',120,'KAPIDA ÖDEME - SEVGİ ÇELEBİ - 412665767','COLLECT','2024-12-07 08:50:53.387','2024-12-17 19:52:32.750',NULL),
('f91402e0-20cc-4371-9b1c-533f05efa4c8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'6365708e-a492-4502-8739-ff5d98b2e2c4','2024-07-20 10:04:17.671',1440,'KAPIDA ÖDEME - mukungu kulemfuka - 449205900','COLLECT','2024-07-20 10:04:17.671','2024-07-20 10:04:17.671',NULL),
('f93c5e0d-2b64-4dcb-a16a-f1bce7e24f97','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'f4bd20c1-e77e-468a-82a9-4daefeb2df5c','2025-03-08 13:28:46.864',900,'KAPIDA ÖDEME - GODİNA REJEP  - 221157320','COLLECT','2025-03-08 13:28:46.864','2025-03-11 07:46:41.850',NULL),
('f94e0bb9-5507-4709-844a-e3dc0e238e5d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4b494cd3-c9fc-4519-ba9e-b4261706ae49',NULL,NULL,'36cefbee-b74b-43cf-ad5c-7484e0e0f6f7','2024-05-23 07:20:42.134',970,'KAPIDA ÖDEME - RAMİSH MİRZAYER - 449401217','COLLECT','2024-05-23 07:20:42.134','2024-05-23 07:20:42.134',NULL),
('f98f1fde-9d19-4440-a05a-e6289c52bd11','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'a2c26b12-b789-4b58-b623-97d44b486663','2025-09-12 16:46:30.880',700,'KAPIDA ÖDEME - KELLY DE VOS  - 221560581','COLLECT','2025-09-12 16:46:30.880','2025-09-12 17:16:02.683',NULL),
('f9f71621-60ba-40e9-92e8-5c4d9b99602a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'5a30d1b8-9d30-414a-8486-6981fef2c820',NULL,'2024-03-30 07:25:34.394',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.649'),
('fa0dd10c-4e82-44c6-95fc-710b0501fe1f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',NULL,NULL,'d2d77708-f738-416d-a601-6a86aa678898','2025-02-23 12:23:18.706',2100,'KAPIDA ÖDEME - EMRAH ERAYDIN - 127395599','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('fa2ea86a-346f-48c7-93bb-c3a436c3b7b8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'792d6397-5783-4fc5-9cff-46f4a9961a12','2025-04-15 09:20:19.827',1150,'KAPIDA ÖDEME - HASAN ŞİMŞEK  - 817317858','COLLECT','2025-04-15 09:20:19.827','2025-04-15 09:32:18.233',NULL),
('fa3c90e5-cb13-43a7-92f4-0fdc47a9090a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'2960c047-80c3-41d4-a2b6-646498478977','2025-07-18 17:50:30.895',700,'KAPIDA ÖDEME - FEMİ SALİHİ - 644100790','COLLECT','2025-07-18 17:50:30.895','2025-07-22 16:18:49.491',NULL),
('fa4263f5-99e3-4fc9-bfc1-48020c02f60f','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0',NULL,NULL,'02d7bc39-8bff-409d-a369-f5c602c1c79b','2025-06-20 15:51:47.778',3162,'KAPIDA ÖDEME - GIULİA CLARA CASAGRANDE  - 69529713','COLLECT','2025-06-20 15:51:47.778','2025-06-27 08:25:57.829',NULL),
('fa46fa53-ca10-49d6-91d1-159eaad7d598','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51','2025-07-29 12:30:31.412',770,'KAPIDA ÖDEME - HÜSEYİN SAYLAN - 412678735','COLLECT','2025-07-29 12:30:31.412','2025-07-29 12:37:20.497',NULL),
('fa5ec98b-d7e6-4bde-84df-d4534f02706f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'bb01835e-3a0f-40ef-bb00-ab2b1bb945e3','2025-09-05 17:48:44.956',500,'KAPIDA ÖDEME - BEGÜM KIRCA - 371801847','COLLECT','2025-09-05 17:48:44.956','2025-09-06 09:41:31.897',NULL),
('fa97f0ab-8bbd-446a-a410-53aff7ba4fea','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'690f6517-eb93-442b-b224-2954ac3c5231','2025-08-07 16:03:34.156',3900,'KAPIDA ÖDEME - FİROUZEH NOORZAİ - 982561254','COLLECT','2025-08-07 16:03:34.156','2025-08-12 08:07:30.341',NULL),
('fa9b9951-e12e-4a71-a370-0a3472053b83','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'6ea42d00-b759-44f3-889c-15eaf3bf614e','2025-02-03 17:50:13.401',1000,'KAPIDA ÖDEME - PINAR ÇİÇEK - 221970338','COLLECT','2025-02-03 17:50:13.401','2025-02-11 17:09:06.423',NULL),
('fab0242b-f32f-4ce7-9e64-fbe8982c3416','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','73596a75-b658-4249-8c71-b0490654bc8b',NULL,NULL,'675097a8-4389-4279-b982-311d3a8bcbdb','2025-07-08 11:07:05.326',1505,'KAPIDA ÖDEME - KEREM TOGAY - 735792949','COLLECT','2025-07-08 11:07:05.326','2025-07-08 11:33:15.252',NULL),
('facd00c6-100a-45c5-939e-aff0a2cd6fe2','DEFAULT-EUR','05135cd5-2d33-4363-b51e-c9b83a94094d','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'a529d4b1-7131-4e37-82ab-dd7986268aa3','2025-05-14 16:56:37.597',1400,'KAPIDA ÖDEME - ORHAN GAZİ ÇEKİCİ - 371699257','COLLECT','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('face8922-7857-4581-865f-ed285f947762','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f',NULL,NULL,'1e1adb91-c239-4909-b5fa-ff18ba2d8157','2025-07-12 09:16:05.781',1350,'KAPIDA ÖDEME - VENERA RUSTEMİ - 817838997','COLLECT','2025-07-12 09:16:05.781','2025-07-16 14:21:29.443',NULL),
('fadf5185-3740-4143-a0cd-e7dbfb35c343','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','59868701-abe4-4705-a7e6-d91c2c69262e',NULL,NULL,'21e3be67-9336-48fe-9a70-3338aee8c4a9','2025-08-21 07:01:13.898',700,'KAPIDA ÖDEME - DAVUT BİNGÖL - 598530881','COLLECT','2025-08-21 07:01:13.898','2025-08-21 08:12:56.903',NULL),
('faeb21af-e8f4-4d2d-a0c2-c760e8358d4a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'f03c2c06-5809-44d4-bc6d-4944e5d70570',NULL,'2024-03-25 11:45:13.784',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.697'),
('fb1a9d56-a7cf-4eac-9b04-c6d9176f6ff5','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'751e7cfe-45c9-4ff6-a9db-f5b7e29356ac','2025-10-22 07:51:14.306',300,'KAPIDA ÖDEME - DİLCAN YEŞİLMEN - 371290223','COLLECT','2025-10-22 07:51:14.306','2025-10-22 11:29:52.731',NULL),
('fb21ddf7-ca52-4029-a909-0b7600154c7b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'a69f955e-df2b-44dd-8811-569ba620bc40','2024-10-30 11:46:44.176',1000,'KAPIDA ÖDEME - FATİH ŞEKER - 910891585','COLLECT','2024-10-30 11:46:44.176','2024-11-23 12:17:08.607',NULL),
('fb4f7536-eeb7-4767-9b28-372b19249501','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'df62221e-0cc3-4a29-a238-107295b4bcb7',NULL,'2024-03-25 11:45:13.582',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.778'),
('fb671224-870d-4d0d-a79d-d24e4784c69f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'a0cd7be3-d245-4f0c-8d35-aeae645b4d04',NULL,'2024-03-25 11:45:14.383',0,'Sefer No: 2843894','EXPENSE','2024-03-25 11:45:12.488','2024-03-30 21:35:16.514','2024-03-30 21:35:16.668'),
('fb7af427-1c34-4f7f-bbcb-cbceb66af8c3','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'22f306ed-6c48-4e15-a370-d8f8b96b6499','2025-10-13 07:14:08.936',550,'KAPIDA ÖDEME - MURAT KALKAN - 478520504','COLLECT','2025-10-13 07:14:08.936','2025-10-14 08:52:36.781',NULL),
('fb95c000-9b46-4acd-a2cc-fb1550f6af71','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'cb0a1aec-c578-429f-95e6-acec1ba4b711',NULL,'2024-03-30 13:00:49.998',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.688'),
('fb9a48a0-a116-4395-8450-52ae486beb07','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3c7190b6-f6ee-4275-8958-d7af952132ab',NULL,NULL,'88e73e43-dac2-4ecf-ab5a-8fb52d544ece','2025-09-02 12:04:14.901',800,'KAPIDA ÖDEME - DERYA BAYRAK - 371180149','COLLECT','2025-09-02 12:04:14.901','2025-09-02 14:46:19.383',NULL),
('fc22d6d3-0bbb-49ad-b7b1-09b70d3d7157','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,NULL,'2024-11-08 17:20:13.491',-17730.08,NULL,'PAYMENT','2024-11-08 17:20:23.388','2024-11-08 17:20:23.388',NULL),
('fc25e9b0-fd79-411d-9382-70b569cd4b16','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c2d4ce84-536d-4816-837f-7abbf6a7e061',NULL,NULL,'0c708994-6e45-4ea2-8025-bc17c41e7542','2024-12-20 13:43:53.152',450,'KAPIDA ÖDEME - ZANA - 248538815','COLLECT','2024-12-20 13:43:53.152','2024-12-24 12:42:13.587',NULL),
('fc2ddbfd-737f-4907-b5da-c831838ae1aa','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'ce6a533a-a695-4c7d-9d16-ee9de079d7bc','2025-02-15 10:11:41.018',1000,'KAPIDA ÖDEME - CUMALİ ERCAN - 910759399','COLLECT','2025-02-15 10:11:41.018','2025-02-15 16:08:16.558',NULL),
('fc445912-09fb-40a2-bf5e-3b52d2d442db','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d8172c72-d29b-40c5-b0b2-0277129ff6b4',NULL,NULL,'888c1a17-6ddc-4bc8-b1ab-b00d72942811','2025-10-17 06:45:24.590',945,'KAPIDA ÖDEME - BÜLENT KILIÇ - 817682643','COLLECT','2025-10-17 06:45:24.590','2025-10-17 10:53:07.537',NULL),
('fc5917ae-d1ad-4dbc-901f-4d3f4927149f','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'d1449931-2ff8-4afa-9b0e-bdc3343cb106','2025-09-10 06:49:18.671',1140,'KAPIDA ÖDEME - CEM BÜYÜKDEMİRCİ - 437545074','COLLECT','2025-09-10 06:49:18.671','2025-09-10 07:11:56.247',NULL),
('fc877550-8329-4619-9d94-10aaacc2280b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7',NULL,NULL,'d009c914-f7f6-4644-8a84-a30cb9311137','2024-03-22 07:36:38.613',1850,'KAPIDA ÖDEME - MEHMET KAÇIRAN - 745484472','COLLECT','2024-03-22 07:36:38.613','2024-03-22 07:36:38.613',NULL),
('fcab9750-71ee-4322-a94f-b8bcda2b2596','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','976b33fa-4cd2-4029-8251-5f6f2b9cd77a',NULL,NULL,'92ff5019-7ca9-4eef-a75a-ac187b9be39d','2025-10-02 06:39:26.281',1300,'KAPIDA ÖDEME - SOUQİ İMANE - 976185606','COLLECT','2025-10-02 06:39:26.281','2025-10-02 11:05:59.110',NULL),
('fcb8fc39-2f00-484d-b53f-269788b9fe63','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'37513226-d4df-4cbc-b99c-f0566be6cb46','2025-09-25 16:04:06.479',650,'KAPIDA ÖDEME - SELMA YILMAZ  - 437649696','COLLECT','2025-09-25 16:04:06.479','2025-09-26 12:27:42.360',NULL),
('fcd83580-253d-4cc8-a49a-c36093c47bfe','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bb6a552-e940-4456-bfc3-50a13013996c',NULL,NULL,'fe1bf79f-2efb-488d-8554-0ec73016bf8c','2025-10-17 06:45:24.603',300,'KAPIDA ÖDEME - ZÜLAL KABA  - 765472156','COLLECT','2025-10-17 06:45:24.603','2025-10-17 10:53:07.545',NULL),
('fd054aab-35ab-4b7c-a617-4adc672a4f56','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'a04ae8dd-1caf-4622-97e8-aa08c8974c93','2025-09-05 18:43:35.132',1300,'KAPIDA ÖDEME - UFUK SANATÇI - 43783689','COLLECT','2025-09-05 18:43:35.132','2025-09-06 09:41:31.869',NULL),
('fd0bca24-7572-453b-aac4-a070654ac8b1','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52840269-0db7-4c57-8a50-57d49049f342',NULL,NULL,'4c96cdc2-5925-4a3e-88ac-0186ce15c8e9','2025-05-25 15:28:52.721',3000,'KAPIDA ÖDEME - ERTUĞRUL - 528433255','COLLECT','2025-05-25 15:28:52.721','2025-05-26 13:23:22.333',NULL),
('fd1c75b2-c0e1-4e03-8c6c-ba1f7188921d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e6d4faef-484c-4ce7-992c-906e05fc083e',NULL,NULL,'e00a4597-7f8a-4e0f-8cd9-480107421adb','2025-04-15 09:07:09.163',550,'KAPIDA ÖDEME - BETÜL ÇELİK - 644334455','COLLECT','2025-04-15 09:07:09.163','2025-04-15 09:32:18.233',NULL),
('fd24f061-7f82-44a1-a6d6-cc4340cdb949','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6133a2db-79c4-4372-9338-505db46b1847',NULL,NULL,'db01aefa-720b-410d-8344-0672007b060d','2025-08-27 08:40:21.905',700,'KAPIDA ÖDEME - CİGDEM DENKER  - 613391684','COLLECT','2025-08-27 08:40:21.905','2025-09-03 06:09:36.803',NULL),
('fd6dabee-6029-4c91-a470-73be03685c6a','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba',NULL,NULL,'ff9f8958-5781-4a16-9eff-ea176baadba4','2025-02-15 10:43:41.795',2110,'KAPIDA ÖDEME - LEYLA TACİMOĞLU - 319212544','COLLECT','2025-02-15 10:43:41.795','2025-02-15 16:08:16.558',NULL),
('fd836f44-29b4-4483-8388-47572a9ce134','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'9e65ae08-29b6-4cde-954a-39f0530ce16e','2025-08-14 07:54:07.547',2500,'KAPIDA ÖDEME - FERİDE USLI  - 982674617','COLLECT','2025-08-14 07:54:07.547','2025-08-14 08:02:29.769',NULL),
('fdcf526a-3dd5-4026-aa9b-86bdbffb2348','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153',NULL,NULL,'0f733eb9-d262-417e-b01a-927f3219d47a','2025-10-17 10:49:30.126',750,'KAPIDA ÖDEME - ÖZEN GÖKYEŞİL - 517619393','COLLECT','2025-10-17 10:49:30.126','2025-10-17 10:53:07.521',NULL),
('fde0ec8e-c5c5-4726-b55e-ab293bc57aad','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'2d2e3588-712f-4c84-a6f5-a45bc45a416b','2024-05-17 15:50:15.833',3200,'KAPIDA ÖDEME - El osman - 412877197','COLLECT','2024-05-17 15:50:15.833','2024-05-22 08:30:39.105',NULL),
('fde659b7-ba53-489c-b990-bef430769f6c','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','22a1dbd6-475c-4d4b-bb13-f459e3029634',NULL,NULL,'381be1c2-928b-42d0-a2f3-8a80afb39ed3','2025-03-12 18:24:00.109',600,'KAPIDA ÖDEME - BARBOSA SHANNA  - 221403218','COLLECT','2025-03-12 18:24:00.109','2025-03-12 19:01:22.362',NULL),
('fdf735e6-fb5b-4bc9-8e08-2a5311f39072','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'f997086a-fb73-43a8-899e-ff36b6cb5597','2025-08-30 12:10:41.296',495,'KAPIDA ÖDEME - EMEL ALATAŞ - 43789661','COLLECT','2025-08-30 12:10:41.296','2025-09-05 08:55:11.222',NULL),
('fe062df9-f6fc-407c-9410-0a7921283209','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a42d8839-caef-4422-888f-cbfdf4188c5b',NULL,NULL,'d3143cfe-61a7-4061-b2d1-c65e956748ab','2024-10-17 14:12:06.589',3600,'KAPIDA ÖDEME - MUSTAFA ÖZYİĞİT  - 42837513','COLLECT','2024-10-17 14:12:06.589','2024-10-17 14:12:06.589',NULL),
('fe25abd6-bdb6-485e-b375-9a6444b02910','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','47880255-08ee-4e99-940b-16038e07de55',NULL,NULL,'5ab838fc-3b03-474c-9930-88db6a09eba3','2024-10-23 08:56:20.985',5000,'KAPIDA ÖDEME - SÜLEYMAN BOZAN - 478778961','COLLECT','2024-10-23 08:56:20.985','2024-10-23 10:17:10.304',NULL),
('fe2e7fde-865a-481b-b6f8-6b726ca173a7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dea91080-5383-4085-af2e-7eace2c64224',NULL,NULL,'e0c4f0d4-cef1-4622-8782-650f949049ae','2025-02-23 12:23:18.706',850,'KAPIDA ÖDEME - MUHSİN GÜMÜŞ - 910225013','COLLECT','2025-02-23 12:23:18.706','2025-03-02 04:33:53.043',NULL),
('fe39fdcc-d620-4559-8d81-806d8dba4f35','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'bf55ba8d-4886-4535-bedc-892994749297','2025-09-15 15:26:04.858',1800,'KAPIDA ÖDEME - HAZAL BATUR - 437712381','COLLECT','2025-09-15 15:26:04.858','2025-09-19 10:00:25.328',NULL),
('fec17129-59b1-444d-8794-b91824fd183d','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'ab6807fc-b98b-4af0-baf4-f5c711cb275b',NULL,'2024-03-30 07:14:01.657',0,'Sefer No: 8891115','EXPENSE','2024-03-30 07:14:00.773','2024-03-30 21:34:52.742','2024-03-30 21:34:52.979'),
('fec25f7e-7579-46cf-aecf-c82d116fc719','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3',NULL,NULL,'e1bb043d-37c4-4f82-9935-600eeef13a23','2024-05-29 09:55:26.714',750,'KAPIDA ÖDEME - İRFAN MUTLU - 614390628','COLLECT','2024-05-29 09:55:26.714','2024-05-29 09:55:26.714',NULL),
('fefc275d-1d19-4a65-a16f-52a5a3a19d82','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'d53f321e-ac07-4741-acb4-cef86bb99db2',NULL,'2024-03-30 07:25:34.344',0,'Sefer No: 0060940','EXPENSE','2024-03-30 07:25:32.484','2024-03-30 21:34:41.403','2024-03-30 21:34:41.574'),
('ff39f7d8-d938-4f46-b7a6-2612bd9248c2','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b0c1192a-7d38-4b69-a901-778f65a98b9d',NULL,NULL,'b1a52e0a-42f8-41be-85f8-f4189669ece7','2025-10-07 14:59:47.714',500,'KAPIDA ÖDEME - MUHAMMET UCBAY - 011428040','COLLECT','2025-10-07 14:59:47.714','2025-10-07 15:17:28.512',NULL),
('ff636594-1236-4609-9698-18895175dd3b','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2682d67a-85fc-4f82-9b33-ed916cf1fc26',NULL,NULL,'02d94ba2-d3a2-4840-ba21-792d26a0031b','2024-05-04 07:54:25.127',330,'KAPIDA ÖDEME - SAS CONFORT CONCEPT - 268163356','COLLECT','2024-05-04 07:54:25.127','2024-05-04 07:54:25.127',NULL),
('ff6c4a1c-b470-4c2d-b1a4-70118bdca540','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98ea2dbd-82be-4bbe-b758-b7175c0f8659',NULL,NULL,'0cba4c66-9032-4c31-99e3-c345fa1edafa','2024-03-30 06:55:21.004',1350,'KAPIDA ÖDEME - MASUD SALAH - 982320208','COLLECT','2024-03-30 06:55:21.004','2024-04-01 11:33:01.076',NULL),
('ff90d4ea-bbb3-44e5-99f2-d92952dbbee7','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dc80f8cd-4aa0-42f5-b84e-658da7d079dd',NULL,NULL,'b49349e7-c597-47d1-a275-ed6a18b0719e','2025-09-18 06:43:39.375',1000,'KAPIDA ÖDEME - YUSA ELLİALTI - 808427332','COLLECT','2025-09-18 06:43:39.375','2025-09-18 15:48:17.502',NULL),
('ffa66f10-830b-4b5f-97ed-87e688eee3e8','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,NULL,'ceaa425b-0242-4196-8342-6498858ac3a0',NULL,'2024-03-30 13:00:49.050',0,'Sefer No: 1660708','EXPENSE','2024-03-30 13:00:48.721','2024-03-30 21:34:30.454','2024-03-30 21:34:30.662'),
('ffc239e4-ec29-4b3b-80a9-b4eaecf571cb','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4126da30-ba9b-41b7-be29-865069aa484c',NULL,NULL,'60678b24-7d3d-4c4a-88dd-f65cb84dcdf9','2025-03-29 13:36:37.219',2750,'KAPIDA ÖDEME - FUNDA HANIM - 412149383','COLLECT','2025-03-29 13:36:37.219','2025-03-29 13:37:01.615',NULL),
('fff61a26-e870-440e-ab17-e4dd3c1817ae','DEFAULT-EUR','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6',NULL,NULL,'cc35ba49-88e8-4dfb-96a9-b8e77e535bd8','2025-08-25 11:36:09.216',570,'KAPIDA ÖDEME - METİN EROL - 437306380','COLLECT','2025-08-25 11:36:09.216','2025-08-25 12:11:45.772',NULL);
/*!40000 ALTER TABLE `matransaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `moneyaccount`
--

DROP TABLE IF EXISTS `moneyaccount`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `moneyaccount` (
  `id` varchar(191) NOT NULL,
  `categoryId` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `currency` enum('TRY','EUR','USD') NOT NULL,
  `accountNo` varchar(191) DEFAULT NULL,
  `balance` double NOT NULL DEFAULT 0,
  `isDefault` tinyint(1) NOT NULL DEFAULT 0,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `moneyAccount_categoryId_fkey` (`categoryId`),
  CONSTRAINT `moneyaccount_categoryId_fkey` FOREIGN KEY (`categoryId`) REFERENCES `category` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `moneyaccount`
--

LOCK TABLES `moneyaccount` WRITE;
/*!40000 ALTER TABLE `moneyaccount` DISABLE KEYS */;
INSERT INTO `moneyaccount` VALUES
('DEFAULT-EUR','DEFAULT-MONEY-ACCOUNT','EURO Kasa','EUR',NULL,2036497.92,1,'2024-03-11 21:16:25.813','2025-10-25 11:56:27.000',NULL),
('DEFAULT-TRY','DEFAULT-MONEY-ACCOUNT','TL Kasa','TRY',NULL,1000,1,'2024-03-11 21:16:25.810','2024-11-06 18:27:49.000',NULL),
('DEFAULT-USD','DEFAULT-MONEY-ACCOUNT','DOLAR Kasa','USD',NULL,0,1,'2024-03-11 21:16:25.815','2024-03-11 21:16:25.815',NULL);
/*!40000 ALTER TABLE `moneyaccount` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pricing`
--

DROP TABLE IF EXISTS `pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pricing` (
  `id` varchar(191) NOT NULL,
  `country` varchar(191) NOT NULL,
  `postalzone` varchar(191) DEFAULT NULL,
  `price` double NOT NULL,
  `currency` enum('TRY','EUR','USD') NOT NULL,
  `pricingListId` varchar(191) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `pricing_pricingListId_fkey` (`pricingListId`),
  CONSTRAINT `pricing_pricingListId_fkey` FOREIGN KEY (`pricingListId`) REFERENCES `pricinglist` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pricing`
--

LOCK TABLES `pricing` WRITE;
/*!40000 ALTER TABLE `pricing` DISABLE KEYS */;
INSERT INTO `pricing` VALUES
('0cdf50e4-e1d8-4d84-953a-437ca0f85aac','Çek Cumhuriyeti',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('0ce9e252-8d53-4aaa-8f0c-957d19d65eff','Fransa','10',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('0efcc887-7600-4089-9422-cc4f5af6a61c','Fransa','90',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('1189d422-0c55-40ce-b5be-c7ed622bcfdf','Fransa','25',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('14301981-d826-4add-9d92-c083207997d0','İsviçre',NULL,140,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('1bf3d8d8-8139-400f-aec0-e34c16609642','Fransa','89',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('28fffaf7-caa5-48af-9aa3-3fb817bfdd4d','Almanya',NULL,110,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('2ad3db86-38f0-4a79-bd79-edc3cf3a714d','Fransa','58',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('2d2c20dd-7a01-461a-8805-6b5f466c43c8','Belçika',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('2da722e4-5f9e-4980-9133-c230b5f277ed','Fransa',NULL,130,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('2ea8d64c-1267-476e-b106-c653a6173b13','Fransa','70',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('31cfa3cb-90c8-44a6-b214-c1b89fa34f39','Fransa','75',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('3e11c415-7ce1-4a96-885d-a07df0fb5a9b','Fransa','21',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('3f545393-8067-4dcf-a58c-b755741ff342','İsviçre',NULL,140,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('41245f90-5ab8-4b99-8774-440493274289','Lüksemburg',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('453e2090-db05-4972-8cc7-931444c5d8d7','Fransa','92',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('46d7dd8c-7c45-4c74-a16c-dab82b21fe3d','Fransa','88',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('471674c0-61a5-4ce1-a220-e9c77841fc26','Fransa','45',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('4b91aa12-d9e6-4aca-809d-c90b7b0f55ca','Fransa','27',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('512346cc-2532-415d-8a6b-0b71b622bed3','Avusturya',NULL,110,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('58806ecf-eb62-4ff0-b227-14c0cf9670d9','Fransa','52',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('62684cd1-6155-4495-98f3-1f00830346b5','Fransa','54',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('6633d601-749d-415e-9fe6-5d38351e1bba','Fransa',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('673a9d2a-6ffe-4680-9956-fcc2d3e26baa','Fransa',NULL,130,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('694a9027-8c82-45f8-9714-e9ae7497498a','Fransa','08',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('6b646db8-be7b-4942-90ff-2349db65b9e6','Almanya',NULL,105,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('709c8028-f52f-487a-a01e-18b42318f350','Fransa','55',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('778cf223-2f2f-43c4-bd30-c1bf820fe218','Hollanda',NULL,120,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('77dbd2ee-4b92-43ec-a501-b79be2722589','İsviçre',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('794e249d-0e3d-4eff-8ed5-199a0e9b04fb','Belçika',NULL,120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('7f461a1c-e550-4130-b62e-b4dfeeb15b04','Hollanda',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('819d2c60-39e6-4efc-a395-dc36956423d9','Fransa','60',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('81b7721c-32ee-4791-b31b-5b2f46a33e54','Fransa','59',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('83052fa1-fd52-40d5-adc8-f079756fb55f','Fransa','67',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('85357bb7-4564-4447-a187-9d8d65400e81','Fransa','94',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('8c7864d2-ca93-4963-9570-4651f1414d48','Avusturya',NULL,140,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('93d74230-8198-4441-b0d1-027f7feac99a','Fransa','41',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('9cab8407-c6ae-4b29-9a99-c860457210da','Fransa','28',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('a1737c27-288d-4c4c-942f-a4cd6ed719b1','Lüksemburg',NULL,120,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('a3099f1a-9864-40d3-a491-9c83fd7269aa','Fransa','68',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('a588f8af-6ba3-43f3-ae2e-1ef32d0a282c','Fransa','62',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('a95ac2d0-f448-4f7d-8dbd-79a5b7b8c409','Fransa','18',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('aeb7c132-f806-4620-bde4-8377a2f02f67','Belçika',NULL,120,'EUR','589a2ae7-10a2-427a-9d2a-4b6a701af4f2'),
('b0935a6d-82fd-4f94-85bb-b42ceb497806','Fransa','80',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('b1d15c9e-5ef7-46c7-98c9-5a8b0ce9562d','Fransa','36',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('b4ac6426-153a-476b-bc46-499ada47947e','Lüksemburg',NULL,120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('c4f82580-7831-4f3f-bee6-324e7e0f6ee0','Fransa','76',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('c6ae124a-2259-4228-9cc9-8828e212d183','Fransa','57',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('c9ba92a1-4f92-45d0-8938-7ddd9d2238c2','Fransa','77',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('d2a42e45-52b4-42a3-b442-ec6f3ad064d1','Avusturya',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('de6e34db-1917-4a80-b6d1-7cff302f7a12','Fransa','95',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('e2252beb-1619-49ae-8b3b-2697325fb3d9','Fransa','39',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('e25c228c-cf41-47d4-9eeb-64a513708831','Fransa','93',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('e85d0b0b-bfd0-44b9-8395-c317a4e03898','Almanya',NULL,140,'EUR','c704a9cd-daa9-44ac-b81a-af419a285ef8'),
('efecc3f6-f369-4762-b746-4292a658fc84','Fransa','71',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('f04a4e4f-8902-4814-af20-02383ca64e24','Fransa','51',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('f6a3fa55-30f7-4ee6-8ed9-42d48f093a72','Fransa','91',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('f6ebd468-281b-4e95-9a1d-963211c2a844','Hollanda',NULL,120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('fc692155-5b5f-4574-a84f-42f0eaf6fac5','Fransa','02',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a'),
('fc739fda-2d1d-4a94-ae0b-65aa9fe15a43','Fransa','37',120,'EUR','39bd047c-b852-4703-bb92-303cc735ab0a');
/*!40000 ALTER TABLE `pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pricinglist`
--

DROP TABLE IF EXISTS `pricinglist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pricinglist` (
  `id` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pricinglist`
--

LOCK TABLES `pricinglist` WRITE;
/*!40000 ALTER TABLE `pricinglist` DISABLE KEYS */;
INSERT INTO `pricinglist` VALUES
('39bd047c-b852-4703-bb92-303cc735ab0a','YENİ FİYAT LİSTESİ','2024-11-04 09:36:04.658','2025-10-14 10:24:49.762',NULL),
('466b99e4-f8e4-41e5-aa0d-46c3f5181514','FİYATLİSTESİ','2024-03-12 06:46:30.803','2024-12-29 12:39:29.753','2024-12-29 12:39:29.753'),
('589a2ae7-10a2-427a-9d2a-4b6a701af4f2','ÖZEL FİYAT','2025-01-05 14:25:06.786','2025-01-05 14:25:42.984',NULL),
('c704a9cd-daa9-44ac-b81a-af419a285ef8','MİNİVAN','2024-11-08 17:50:15.571','2024-11-08 17:52:03.163',NULL),
('e2ceac71-f9c2-409f-90b7-29335ebf8070','FİYAT','2024-03-12 06:50:10.966','2024-03-26 06:59:56.476','2024-03-26 06:59:56.481');
/*!40000 ALTER TABLE `pricinglist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product`
--

DROP TABLE IF EXISTS `product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `product` (
  `id` varchar(191) NOT NULL,
  `categoryId` varchar(191) DEFAULT NULL,
  `barcode` varchar(191) NOT NULL,
  `code` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `unit` enum('C62','GRM','KGM','MTK','MTQ','LTR','MTR') NOT NULL DEFAULT 'C62',
  `price` double NOT NULL DEFAULT 0,
  `costPrice` double NOT NULL DEFAULT 0,
  `currency` enum('TRY','EUR','USD') NOT NULL DEFAULT 'USD',
  `discount` int(11) NOT NULL DEFAULT 0,
  `tax` int(11) NOT NULL DEFAULT 0,
  `stockQuantity` double NOT NULL DEFAULT 0,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `product_barcode_key` (`barcode`),
  UNIQUE KEY `product_code_key` (`code`),
  KEY `product_categoryId_fkey` (`categoryId`),
  CONSTRAINT `product_categoryId_fkey` FOREIGN KEY (`categoryId`) REFERENCES `category` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product`
--

LOCK TABLES `product` WRITE;
/*!40000 ALTER TABLE `product` DISABLE KEYS */;
/*!40000 ALTER TABLE `product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipment`
--

DROP TABLE IF EXISTS `shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipment` (
  `id` varchar(191) NOT NULL,
  `userId` varchar(191) DEFAULT NULL,
  `voyageId` varchar(191) DEFAULT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `deliveryCode` int(11) NOT NULL,
  `senderId` varchar(191) NOT NULL,
  `receiverName` varchar(191) NOT NULL,
  `receiverPhone` varchar(191) NOT NULL,
  `receiverPhone2` varchar(191) DEFAULT NULL,
  `receiverCountry` varchar(191) NOT NULL,
  `receiverDistrict` varchar(191) DEFAULT NULL,
  `receiverPostalZone` varchar(191) NOT NULL,
  `receiverAddress` varchar(191) DEFAULT NULL,
  `order` int(11) NOT NULL DEFAULT 0,
  `pricedM3` double NOT NULL DEFAULT 0,
  `m3price` double NOT NULL DEFAULT 0,
  `shipmentNo` varchar(191) NOT NULL,
  `reviewStar` enum('5','4','3','2','1','0') NOT NULL DEFAULT '0',
  `reviewStarDriver` enum('5','4','3','2','1','0') NOT NULL DEFAULT '0',
  `reviewComment` text DEFAULT NULL,
  `payAmountAtDoor` double NOT NULL DEFAULT 0,
  `payHasReceived` tinyint(1) NOT NULL DEFAULT 0,
  `note` text DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `shipment_shipmentNo_key` (`shipmentNo`),
  KEY `shipment_voyageId_fkey` (`voyageId`),
  KEY `shipment_senderId_fkey` (`senderId`),
  KEY `shipment_userId_fkey` (`userId`),
  CONSTRAINT `shipment_senderId_fkey` FOREIGN KEY (`senderId`) REFERENCES `current` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `shipment_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `shipment_voyageId_fkey` FOREIGN KEY (`voyageId`) REFERENCES `voyage` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipment`
--

LOCK TABLES `shipment` WRITE;
/*!40000 ALTER TABLE `shipment` DISABLE KEYS */;
INSERT INTO `shipment` VALUES
('0057de4c-fa8f-4061-a2b1-334d4c1637e1','8fff5e14-418c-4377-bd83-3a3f81383507','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-06 13:24:43.720',8145,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ZERDOUN SALOME','33767885681',NULL,'Fransa','PARİS','75019','10B RUE DU HAİNAUT',3,2.5,120,'437573248','0','0',NULL,845,1,'PEMBE ETİKET','2025-08-06 13:28:05.363','2025-09-01 16:57:20.579',NULL),
('00597150-64a3-4ed2-95da-544d8eb849d1','89428e9c-4d02-45c3-a044-0b2a5ac2465d','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2024-12-29 16:51:27.860',10530,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ZEHRA OCALAN','33652961737','33628834042','Fransa','GRIGNY','91350','35 RUE CLOZEAU',15,12,130,'976192214','0','0',NULL,3600,1,'MOR ETİKETLİ','2024-12-29 16:52:55.033','2025-02-13 13:19:28.645',NULL),
('006b20ec-9123-4bbc-9826-67622acc03ba','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-25 11:47:17.386',5394,'47880255-08ee-4e99-940b-16038e07de55','ALEV DOĞRU','491782203045','491782203045','Almanya','WÜRSELEN','52146','MARTİN-LUTHER-KİNG STRASSE \nNR:62 \n52146 WÜRSELEN \nDEUTSCHLAND',5,2,105,'478697529','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-03-25 11:48:35.187','2025-04-08 15:34:45.071',NULL),
('00b3b029-8596-4eeb-aa4a-7c3173126b3b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-16 11:39:18.799',5013,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ENGİN POSETLERDEN KALAN KUTU ','491723845058',NULL,'Almanya',NULL,'85368',NULL,17,2,110,'248188933','0','0',NULL,0,0,'ETİKETSİZ','2025-01-16 11:40:18.289','2025-01-29 13:30:45.157',NULL),
('00c9f797-aeda-4640-80a8-f170a3df58f4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-20 12:50:37.459',5205,'e6d4faef-484c-4ce7-992c-906e05fc083e','MİHRİBAN ÖZEN','33767512328','330766449064','Fransa','ENSİSHEİM','68190','22 RUE DU KAC BKANC ENSİSHEİM',0,8,120,'644776565','0','0',NULL,1550,1,'MOR ETİKETLİ','2025-05-20 12:56:24.171','2025-06-06 17:34:14.192',NULL),
('00cb480a-305b-41e6-8cb5-337678c881bf','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-13 13:04:44.250',2025,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ARİFE SARI','32486379906','32486379906','Almanya','VÖLKLİNGEN','66333 ','SAARBRÜCKERSTR. 248 66333 VÖLKLİNGEN/ALMANYA',10,5.5,110,'127865742','0','0',NULL,1250,1,'BEJ ETİKETLİ','2025-02-13 13:11:41.018','2025-02-26 08:36:28.152',NULL),
('00d5c701-5909-4eed-be40-af7cd9965f1a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:25:24.949',7404,'47880255-08ee-4e99-940b-16038e07de55','ZEKAİ TAVASLI','4917658874897','','Almanya','MİTWİTZ','96268','SONNEBERGER STRABE 32',6,1.5,100,'478979004','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-04-27 08:27:32.096','2024-05-08 21:07:56.622',NULL),
('00d70258-2f30-4c8b-8f72-089d4172bbd9','eccfe611-9163-42aa-a1ff-e711af0248e6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-09 06:12:21.989',1396,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SERHAT TAŞÇEVİREN','4915258412907',NULL,'Almanya',NULL,'48529','LAUENBURGER STRABE 22 48529 NORDHORN',7,2,110,'221187320','5','5','Kendisine çok teşekkür \nEdiyorum çok memnun kaldım ',810,1,'TURUNCU ETİKETLİ','2025-09-09 06:14:47.618','2025-09-25 06:59:45.149',NULL),
('00ed7c47-6897-4b03-a708-882316651c7e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-22 12:58:34.737',6432,'e6d4faef-484c-4ce7-992c-906e05fc083e','EDANUR CİVELEK','4917631789419','4915773767353','Almanya','GREVENBRAİCH','41515','KARL ARNOLD STRASSE 28',0,2,110,'644565744','0','0',NULL,800,0,NULL,'2025-10-22 13:07:15.833','2025-10-23 10:42:32.479',NULL),
('00f4949d-f6aa-4775-913c-9c6fc75113bf','5c723cdc-e582-4b00-8271-838c085984c2','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-09-24 11:35:33.711',5421,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET ANDIÇ','4915781801163','4917630700485','Almanya',NULL,'47495','ANNASTRABE 60, 47495 RHEINBERG ALMANYA',0,8,105,'745759881','0','0',NULL,2000,0,NULL,'2025-09-24 11:35:31.408','2025-10-09 08:39:59.394',NULL),
('00f85745-0785-4a7a-9691-f650a9d585f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-04-05 08:52:13.017',8332,'a42d8839-caef-4422-888f-cbfdf4188c5b','SAMER JİNİED','4917622161768','','Avusturya','Graz','8020','GRİMGASSE 16',14,5.5,120,'42845711','0','0',NULL,0,0,'','2024-04-05 09:17:49.725','2024-05-29 11:17:01.506',NULL),
('0116ba48-a627-4970-bb8d-8e8fd4d8c4af','38f55ecc-79e1-4650-a77b-c756f8cd8fab',NULL,'2025-10-24 14:10:05.000',10332,'d89f6e4c-ad0d-4d1f-98c2-188a94803196','KRİSTİNA ULMANN','4917662468002','4917672284964','Almanya','BORNWEG 2','67734','BORNWEG 2, 67734 KATZWEİLER',0,2,110,'896447989','0','0',NULL,525,0,NULL,'2025-10-22 11:14:22.232','2025-10-24 08:46:51.111',NULL),
('01408d3f-0754-42dd-86fa-5c2b8803ad4e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-09-03 15:20:38.227',4829,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','EL HARRAR OUASSİFA','33640502682','','Fransa','','44150','',5,1,110,'982666330','0','0',NULL,1350,1,'MAVİ ETİKETLİ','2024-09-03 15:23:17.726','2024-09-14 19:01:44.723',NULL),
('0145552e-55dc-4a11-81f7-9a1580774cf9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:54:06.303',3917,'b734c482-3c00-4897-ad35-bc358cd02d56','ARZU YILDIRIM','004915125808648',NULL,'Almanya',NULL,'12529','ALFRED DÖBLİN ALLE 50',13,1,0,'734525943','0','0',NULL,0,0,'KIRMIZI BANTLI','2024-11-12 15:55:03.906','2024-11-23 12:17:08.607',NULL),
('015e4711-850e-4dfd-8a7d-b891bbcf8752','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','dec3986f-102f-43bc-891f-7de9ebce0626','2025-08-01 12:08:47.893',3046,'59868701-abe4-4705-a7e6-d91c2c69262e','SEYHAN GÜNDÜZ','4917624718439','4917670954169','Almanya',NULL,'68219','FRONACKERSTRASSE 50, 68219 MANNHEİM ALMANYA',25,3.5,110,'598148104','0','0',NULL,745,1,'TURUNCU ETİKET ','2025-08-01 12:12:33.287','2025-09-27 10:27:57.874',NULL),
('01608d35-8f91-4555-8ddb-ee881418d1b8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-10 09:54:33.666',8167,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA ÇELİK','4915738754138','4915788624211','Almanya','RHAİN','79576','KUBECKSTRESSE 30 79576 WEİL AM RHAİN ALMANYA',15,10,105,'478945094','0','0',NULL,4500,1,'YEŞİL ETİKETLİ','2025-01-10 09:56:28.997','2025-01-17 11:00:24.009',NULL),
('016b2dfe-69f8-45ec-bf7e-6ad705106bc6','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-09-08 07:37:00.703',3178,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','İMRAN SAVAS','41791206391',NULL,'İsviçre','BERN','2542','B.BERISHA POSTGASSE 41 2542 PİETEREN KANTON BERN',0,2,140,'531240111','0','0',NULL,1200,0,'CAM kapaklı ürün ','2025-09-08 07:38:30.617','2025-09-23 07:34:05.813','2025-09-23 07:34:05.812'),
('017c5187-ccfb-4c37-9cc6-a58640b22cda','d074816b-78fd-4378-91c0-3835eba28f44','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-01 09:02:18.031',2221,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NERGİZ YURTSEVEN','4917622033486',NULL,'Almanya','MARİNESTRABE','59075','  59075 HAMM MARİNESTRABE 16',11,2.5,110,'614525681','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-09-01 09:10:31.623','2025-09-24 14:32:55.330',NULL),
('01c7f991-854b-4e63-a448-14857c24f6f1','5c723cdc-e582-4b00-8271-838c085984c2','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-04 12:14:20.915',2882,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İSRAFİL ŞENGÖNÜL','33766894111','33651656494','Fransa',NULL,'25400','61 RUE DE BELFART 25400 AUDINCOURT FRANSA ',20,2,130,'745297087','0','0',NULL,2500,1,'MAVİ ETİKETLİ','2025-03-04 12:20:58.660','2025-03-20 18:08:17.358',NULL),
('02252192-88b5-496d-97b8-647d4bed1035','38f55ecc-79e1-4650-a77b-c756f8cd8fab','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-10 14:15:59.000',6357,'d89f6e4c-ad0d-4d1f-98c2-188a94803196','BESTE NUR ÖZKAYA','491784897423','4917620954584','Almanya','BERGHEİM','50127','DOMACKERSTRASSE 71D',17,2,110,'896769535','0','0',NULL,425,1,'SARI ETİKET','2025-09-02 14:18:35.256','2025-09-30 18:47:32.745',NULL),
('02301bb2-05b9-4f43-b8b5-5ced5c8740c7','5c723cdc-e582-4b00-8271-838c085984c2','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-02 15:16:51.519',4227,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET DAĞDEVİREN','4369911337727','436763436191','Avusturya',NULL,'2261','TEICHQASSE 221 2261 MANNERSDORF AND DER MARCH ',16,9.5,140,'745485271','0','0',NULL,4000,1,'SARI ETİKETLİ','2025-07-02 15:18:10.136','2025-09-01 11:08:37.826',NULL),
('024b19f7-e2b8-4833-a610-6f1f48b3258e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5d69534a-5f21-44ba-8343-594269f45f1a','2024-07-20 10:27:49.063',4800,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NESİME BAGCI','31625204455','','Hollanda','SCHIEDAM','3117','VRIENDSCHAPLEİN 18',2,1,100,'614652730','0','0',NULL,950,1,'','2024-07-20 10:36:28.834','2024-08-05 19:56:13.040',NULL),
('024dc41f-19fa-47c4-95f9-0e8250d8c70c','f784b688-ba6b-4886-87dd-fe4cfbed85b4','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-03 07:10:42.740',1174,'dea91080-5383-4085-af2e-7eace2c64224','AHMET EMİN ALGÜL SSH','4917624864505','4917624864507','Almanya',NULL,'88212','WANGENERSTRABE 134/1 88212 RAVENSBURG		\n		\n		\n',14,2,110,'910375036','0','0',NULL,0,0,'MAVİ ETİKET','2025-09-03 07:11:16.127','2025-10-09 09:25:01.482',NULL),
('026148a6-1f09-460e-bbc5-d795abe9cde4','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-06-17 07:57:13.426',6429,'47880255-08ee-4e99-940b-16038e07de55','NURGÜL KARACAN','436608696599','436767101591','Avusturya','DORNBİRN','6980','NEGRELLİ STRASSE 14. 6980 LUSTERAU DORNBİRN',0,6,140,'478412191','0','0',NULL,3500,0,'5.5 m3','2025-06-17 08:04:25.568','2025-10-10 09:06:27.522',NULL),
('02ac49e1-502e-4bc4-b041-65c1b38fb8c7','173956a2-c232-495a-b036-4a6a36c073e2','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-02 09:05:44.538',10100,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MİTRA MESKİNİ','4917663874660','4917663874660','Almanya','BERLİN','13158','DİETZGENSTRASSE 160\nBERLİN 13158',10,1,110,'44932987','0','0',NULL,600,1,'MAVİ ETİKETLİ','2025-01-02 09:07:02.350','2025-01-28 20:45:17.186',NULL),
('02caa650-97c8-4705-a9bc-95c4f819c322','4c3a2917-702d-4b2d-be91-e8860cfc98a7','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-07 09:12:07.014',2893,'f4861afa-47df-4a6b-b9ca-da22afe273e4','ŞİRİN BALCIN','41794403640',NULL,'Almanya','GRENZACH-WHYLEN','79639','MARKGRAFENSTRASSE 39B 79639 GRENZACH-WHYLEN ',9,8,110,'486181220','0','0',NULL,2550,1,'PEMBE ETİKETLİ','2025-05-07 09:19:40.251','2025-05-24 08:05:54.730',NULL),
('02d7bc39-8bff-409d-a369-f5c602c1c79b','df0d8353-2caa-413c-9f14-b01af77df00b','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-16 07:59:03.928',7565,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','GIULİA CLARA CASAGRANDE ','41791530005',NULL,'İsviçre',NULL,'3855',NULL,0,6,140,'69529713','0','0',NULL,3162,1,'2975 CHF ALINACAK YOKSA 3162 EURO ALINACAK SARI ETİKET','2025-06-16 08:03:20.345','2025-07-02 06:17:15.323',NULL),
('02d94ba2-d3a2-4840-ba21-792d26a0031b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:49:04.366',9073,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','SAS CONFORT CONCEPT','33762586432','','Fransa','','34680','8 RUE DES ROCHES ',23,3,110,'268163356','0','0',NULL,330,1,'PEMBE ETİKETLİ','2024-05-04 07:54:25.127','2024-05-24 07:07:55.937',NULL),
('02f21391-f1d5-4bee-b4d9-17f65a20feb7','ab532050-8a54-4cb4-9e27-59229ab24a9b','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-10 15:12:14.439',7636,'338e8c09-4ca5-4617-bfc1-a0692646d475','NURTEN YILMAZ','49176322545443',NULL,'Almanya',NULL,'10965','FİDİCİN STR 28 BERLİN 10965',19,6.5,110,'338411614','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2025-08-10 15:19:07.264','2025-09-12 22:09:53.320',NULL),
('032b3134-3092-40b9-b2b2-be3390b4726e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:33:47.442',1982,'4126da30-ba9b-41b7-be29-865069aa484c','SEDAT ARSLAN','33623704351','','Fransa','','14740','4 RUE FLORENCE CONRAD ',4,7,110,'412359172','3','5','Link güncel değil.',0,0,'LİLA ETİKETLİ','2024-05-10 06:38:15.008','2024-06-06 09:53:46.800',NULL),
('034a3e96-f5a1-4c15-8c1e-0ea592d85c1a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-19 11:19:54.856',8540,'fdb96289-c48e-47a8-9fd3-37b529486551','İSA KAPLAN ','33623950988','','Fransa','MACON','71000','210 RUE FLANDRES DUNKERQUE',8,12.5,0,'962908456','0','0',NULL,850,1,'SARI ETİKETLİ','2024-09-19 11:56:55.390','2024-10-09 15:38:51.513',NULL),
('035c96f6-6c26-44ed-a788-5eae403c09a6','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-06 08:05:55.469',7900,'a42d8839-caef-4422-888f-cbfdf4188c5b','ERKAN BAYRAK','491747695306','491736631768','Almanya',NULL,'49377 ','BUSSARDSTRAPE 4 - 49377 VECHTA',3,2,110,'428222834','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-01-06 08:12:39.681','2025-01-31 12:16:16.902',NULL),
('037003ee-72aa-4ac0-80cf-0a8a21f4600f','8fff5e14-418c-4377-bd83-3a3f81383507',NULL,'2025-07-31 07:35:51.162',3012,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','HASAN ÇETİNKAYA','33666187361',NULL,'Fransa','RENNES','35200','4 RUE XAVİER GRDL ',0,2,130,'437335093','0','0',NULL,400,0,NULL,'2025-07-31 07:37:31.359','2025-09-02 12:08:07.926','2025-09-02 12:08:07.925'),
('0377ad80-1956-41c6-a11a-260bb80faee4','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-09-23 14:09:30.408',9196,'6133a2db-79c4-4372-9338-505db46b1847','RAHİMİ AİLEEN','015168424823',NULL,'Almanya','ARNSBERG','59759','MARKTSTR. 44\n59759 ARNSBERG',0,2,110,'613992876','0','0',NULL,375,0,NULL,'2025-09-23 14:11:03.926','2025-10-27 14:21:47.909','2025-10-27 14:21:47.908'),
('03edbb2f-aa6f-42fb-8da2-233d6ea1d184','1764a07b-eb47-4578-b6cd-f3c0d0e743be','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-09 08:44:24.982',6273,'47880255-08ee-4e99-940b-16038e07de55','AYŞE BAĞCI','41766507323','41766507323','İsviçre','MAGENWİL','5506','ALTE BRUGGERSTRASSE 18  5506 MAGENWİLL SCHWEİZ',7,3.5,140,'478365640','0','0',NULL,1600,1,'YEŞİL ETİKETLİ','2025-01-09 08:46:35.468','2025-02-01 11:08:26.320',NULL),
('041d4369-8e52-432c-a39c-693f970677e0','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-10 09:07:10.959',1660,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İBRAHİM MERMERCİ','31681790138',NULL,'Hollanda',NULL,'5701','HEİSTRAAT 2 H, 5701 HN HELMOND',15,2,120,'221102071','0','0',NULL,600,1,'(SARI RENK)','2025-06-10 09:08:29.186','2025-07-21 08:00:56.497',NULL),
('042f3c72-dff0-4f05-808d-d871ab750191','8fff5e14-418c-4377-bd83-3a3f81383507','7bd09245-c179-4127-b0e1-46737615122b','2025-08-06 07:54:25.842',4726,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ESRA KAYA','4917680898294',NULL,'Almanya','ERKRATH','40699','KASTANİEN STR 17.',4,9,110,'437514624','0','0',NULL,1700,1,'KIRMIZI ETİKET','2025-08-06 07:57:49.705','2025-08-21 16:36:49.269',NULL),
('0433f27d-703a-4a68-9cdb-58d86767559d','eccfe611-9163-42aa-a1ff-e711af0248e6','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-18 11:38:41.790',1132,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GÖKHAN ÖZYURT ','32484828555',NULL,'Belçika',NULL,'4680','RUE DU LA MOİNERİE 3,4680 HERMEE ',3,2.5,120,'2213416','0','0',NULL,1000,1,'PEMBE ETİKETLİ','2025-03-18 11:40:47.570','2025-04-08 15:34:58.197',NULL),
('044a52d2-c11d-4386-8992-ff1211fd99c9','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-07 14:23:46.266',9539,'59868701-abe4-4705-a7e6-d91c2c69262e','VELİ ŞAHİN','4917623129728','4917624317947','Almanya',NULL,'13409','HANSASTR 11, 13409 BERLİN ALMANYA',9,4,110,'598168850','0','0',NULL,900,0,'KAHVERENGİ ETİKET','2025-10-07 14:32:24.547','2025-10-20 07:18:11.511',NULL),
('044d9be3-0770-4d6a-af0c-8fd047dc7191','4c3a2917-702d-4b2d-be91-e8860cfc98a7','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-02 10:36:27.948',5157,'f4861afa-47df-4a6b-b9ca-da22afe273e4','SUAN RASTODER','4915202016225',NULL,'Almanya','VELBERT','42549','ZUR GRAFENBURG 65 42549 VELBERT',12,6.5,110,'486405325','5','5','A',1625,1,'AÇIKMAVİ ETİKETLİ','2025-07-02 10:41:05.426','2025-07-25 10:55:55.610',NULL),
('045d42d0-3ff6-4046-b437-9e4080f515c5','5c723cdc-e582-4b00-8271-838c085984c2','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-13 10:13:29.704',9301,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HAYATİ ELBİR','491741853822',NULL,'Almanya',NULL,'54516','IM BRÜHL 20 54516 WITTLICH ALMANYA ',18,2,105,'745536465','0','0',NULL,500,1,'MAVİ ETİKETLİ','2025-01-13 10:15:15.865','2025-02-17 21:43:20.918',NULL),
('04757da4-5689-4b28-8662-727fabf44027','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:34:32.717',7737,'fabe2c23-b5a5-4123-a962-af519ac31d3b','HASAN PİCKEL','491737710164','49913127367','Almanya','MÖHRENDORF','91096','ERLANGER STRASSE 60A',3,1,100,'223210999','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-08-07 14:37:03.562','2024-08-15 10:30:55.072',NULL),
('049cec7b-ec44-4295-afa5-768b2786337d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-04 14:53:32.424',8793,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','SULTAN GÜNDOĞDU','4915737582950','','Almanya','MEİNERZHAGEN','58540','KORBECKER WEG 1',4,4,100,'455477301','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-09-04 14:58:26.263','2024-09-12 10:54:28.998',NULL),
('04b906a6-7837-4515-810d-2b36aefb9873','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-04 07:37:13.286',6910,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','ENVER GÜLMEZ','4915784866219','','Almanya','DORTMUND','44357','GESSEWNHOF STR 5',10,5,100,'501981507','0','0',NULL,1900,1,'AÇIK MAVİ ETİKETLİ','2024-10-04 07:42:15.831','2024-10-24 19:09:25.282',NULL),
('04d19bef-43c6-4b34-937f-982110f6f8e0','eccfe611-9163-42aa-a1ff-e711af0248e6','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-06 12:57:15.375',10881,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ANİSSA İFAR ','32492429454',NULL,'Belçika',NULL,'6240','RUE QUARTİER DU PACHY HUE 70C 6240 FARCİENNES ',0,2,120,'221924148','0','0',NULL,550,1,'PEMBE ETİKETLİ','2025-02-06 12:58:56.556','2025-03-09 12:10:11.419',NULL),
('04fb8dfc-07be-4e81-a060-8a8a6f53ef14','c21cdd02-4af2-4b32-bc87-c70a576c3a99','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-20 13:44:12.479',1974,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','GAMZE ÖRSELOGLU','4917683315716','4917664637177','Almanya','KARLSRUHE','76189','WİLHELM- LEUSCHNER -STRASSE 37  76189 KARLSRUHE',21,7,110,'515377519','0','0',NULL,2000,0,'SARI ETİKET ','2025-09-20 13:49:21.927','2025-10-22 13:06:46.078',NULL),
('05161621-4074-4395-a4ac-b594dfcce0f9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d123109e-9a26-4781-939a-87cda202f683','2024-11-20 07:54:32.698',9087,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','JELENA BARATOVİC','41763265325',NULL,'İsviçre',NULL,'8152','GLATTTBURGG ',8,1,140,'126245978','0','0',NULL,0,0,'SARI ETİKETLİ','2024-11-20 07:55:38.215','2024-12-14 17:25:34.448',NULL),
('051ad970-b67b-4d28-a0a1-340daf71d02f','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-29 07:20:30.830',5994,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','SERCAN MİRCALİ','491737487037',NULL,'Almanya','GLADBACH','51469','SERCAN MİRCALİ \nHANDSTR 338\n51469 BERGİSCH GLADBACH',18,6,110,'531549696','0','0',NULL,2000,1,'BEYAZ ETİKETLİ','2025-04-29 07:22:46.562','2025-05-12 09:07:43.432',NULL),
('0523ba39-5d0b-4eca-8a21-9b0b0f843b71','5c723cdc-e582-4b00-8271-838c085984c2','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-23 08:47:13.813',5837,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEZER HATUN','33635914929','33602366647','Fransa',NULL,'44110','4 RUE DE VERDUN 44110 CHATEAUBRIAND FRANSA ',1,2,130,'745249081','0','0',NULL,750,1,'PEMBE ETİKETLİ','2025-05-23 08:48:36.223','2025-07-16 07:46:09.842',NULL),
('0527ee67-fe4f-4982-b162-501d694f6d0e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-12 18:30:26.328',6879,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','ATİLLA GÖNÜLTAŞ','33647335236',NULL,'Fransa',NULL,'78300','95 RUE DE VİLLİERS',9,2,130,'268615271','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-03-12 18:31:28.146','2025-03-23 16:15:52.675',NULL),
('05588ac5-1827-4e7a-aa48-8b1a8cbac0d0','92fdfc3f-30a0-47d1-a5dc-275b7de3ed7f','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-06 11:15:35.662',10768,'0dae8190-b900-4826-9171-b2d74a2538b0','DONYA AL HAİDARİ','4917670882754',NULL,'Almanya','SALZSTRASSE','30,63450 ','SALZSTRASSE 30,63450 HANAU',14,2,110,'081411095','0','0',NULL,850,1,'GRİ ETİKETLİ','2025-02-06 11:17:14.693','2025-02-23 09:31:07.586',NULL),
('05621906-10fc-483c-89a6-f51e344e576b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-10-30 14:47:00.812',10500,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','VARELA FURTADO ELLİS','33661693303',NULL,'Lüksemburg',NULL,'4811','27 RUE CHARLOTTE ',1,2,120,'982716246','0','0',NULL,0,1,'KREM RENKLİ','2024-10-30 14:50:52.402','2024-12-01 12:29:36.681',NULL),
('05940da7-019d-4e63-b256-fc9fbba594ab','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-28 13:15:13.345',2744,'e6d4faef-484c-4ce7-992c-906e05fc083e','BEYZA ÇALIK','4917680676918','4916093919802','Almanya','OBERHAUSEN','46045','MÜLHEİMERSTRASSE 412',13,4,110,'644644115','0','0',NULL,750,1,'BEYAZ ETİKETLİ EN ARKAYA KONULDU','2025-07-28 13:21:16.983','2025-08-08 08:47:32.675',NULL),
('05c3682c-97a8-485e-84ef-f349df760f4f','5c723cdc-e582-4b00-8271-838c085984c2','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-05 10:21:00.540',5648,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜSEYİN ÖÇAL SSH ','33635494107','33785512732','Fransa',NULL,'73200','148 CHEMIN DES ECOLIERS ALBERTVILLE 73200 FRANSA ',3,2,130,'745350597','5','5','Hizmet güzeldi beğendim',0,0,'TURUNCU ETİKETLİ','2025-05-05 10:22:29.297','2025-05-25 19:13:53.674',NULL),
('05e527f9-8a74-4f42-b673-b05994d5555d','eccfe611-9163-42aa-a1ff-e711af0248e6','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-16 13:37:38.660',4421,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BETÜL YILDIZ','31629324395',NULL,'Hollanda',NULL,'2408','BRABANTSTRAAT 250, 2408 GE ZUİD ',3,3,120,'221811614','0','0',NULL,875,0,'GRİ ETİKET','2025-10-16 13:39:36.178','2025-10-25 08:59:22.001',NULL),
('06683822-5af1-4c0e-a0e5-5ca26659fb23','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:03:44.677',6725,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN','32470652077','','Belçika','BUGGENHOUT','9255','KASTEELSTRAAT 223',14,6,0,'703581635','0','0',NULL,600,1,'KIRMIZI ETİKETLİ','2024-06-08 07:07:46.052','2024-06-22 11:10:59.991',NULL),
('066ab857-a3c6-4a0e-95c8-a26e5b2ce708','51b55e5b-7487-4d8a-923e-163f04d0b1d9','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-26 07:23:44.594',7330,'47880255-08ee-4e99-940b-16038e07de55','BELKISA KAPLAN','33699946659',NULL,'Fransa',NULL,'13700',NULL,4,2,130,'478570794','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-07-26 07:24:39.389','2025-08-04 18:53:19.707',NULL),
('0686aefd-6bc5-4963-b256-37bb53456216','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-19 11:45:50.253',3921,'4126da30-ba9b-41b7-be29-865069aa484c','NURAY ÖZKAN','33767550958',NULL,'Fransa',NULL,'57200',NULL,7,5,0,'412767922','0','0',NULL,450,1,'SARI ETİKET ','2025-09-19 11:46:35.086','2025-10-09 15:52:46.018',NULL),
('0689343a-01c3-4235-b709-f5f67e87d641','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-30 08:46:53.946',4640,'59868701-abe4-4705-a7e6-d91c2c69262e','TOLGA KAPLAN','4917641453096','491637394774','Almanya',NULL,'53840','THEODOR HEUSS RİNG 14, TROİSDORF 53840 ALMANYA',26,9.5,110,'598463425','0','0',NULL,2600,1,'YEŞİL ETİKET','2025-07-30 08:48:21.616','2025-09-02 06:51:57.139',NULL),
('068f2f26-67fb-4542-8cbf-cb81478c317b','92fdfc3f-30a0-47d1-a5dc-275b7de3ed7f','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-06 11:07:27.235',2537,'0dae8190-b900-4826-9171-b2d74a2538b0',' NARİN ABDİ','491738592864',NULL,'Almanya',' SÜDRİNG 52,55128 MAİNZ',' 55128 ',' SÜDRİNG 52,55128 MAİNZ',11,3.5,110,'081581964','0','0',NULL,700,1,'YEŞİL ETİKETLİ','2025-02-06 11:09:44.135','2025-02-24 17:29:21.268',NULL),
('06af560c-552f-4ff9-a194-96cfbb5bfe91','1764a07b-eb47-4578-b6cd-f3c0d0e743be','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-13 12:48:24.662',8069,'47880255-08ee-4e99-940b-16038e07de55','BİRSEN KARADAVUT','491749634049','491721729468673','Almanya','NİENBURG','31582','OLDENBURGER STR 7 31582 NİENBURG WESER ALMANYA',10,3,105,'478833375','0','0',NULL,2000,1,'YEŞİL ETİKETLİ','2025-03-13 12:53:54.266','2025-04-26 17:56:22.723',NULL),
('06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:27:25.401',7928,'47880255-08ee-4e99-940b-16038e07de55','ÖZKAN BALCI','33786032286','','Fransa','','56890','2 CHEMİN DE LA TERRE ROUGE SAİNT',1,1,110,'478261585','0','0',NULL,200,1,'MAVİ ETİKETLİ','2024-05-10 06:28:56.779','2024-06-04 14:24:46.948',NULL),
('06b7693c-2369-4ec9-8e2d-cbc58d32c3c8','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-24 08:08:28.555',10182,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÖZCAN ALCI','32483319628',NULL,'Belçika',NULL,'9940','VLİERBOOMSTRAAT 21 EVERGEM GENT 9940',0,2,120,'221351976','0','0',NULL,600,0,NULL,'2025-10-24 08:13:30.005','2025-10-27 07:59:44.755',NULL),
('06c582f1-63bd-4b65-a2a6-e51e33713b25','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 08:50:30.775',5641,'47880255-08ee-4e99-940b-16038e07de55','ESMA YILDIRIM','4915730766491','491741681168','Almanya','DÜREN','52351','BERLİNER STR.52',4,3.5,100,'478158518','0','0',NULL,1300,0,'','2024-03-18 08:52:13.195','2024-03-26 08:51:25.023','2024-03-26 08:51:25.032'),
('06d506ff-85ab-4c73-8dc5-2b5ebf3a9143','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-09-03 13:44:04.470',8013,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SULTAN YAŞAR ','41765643750','00414265766','İsviçre',NULL,'4912','SAN HALTMATTVEG 18 4912 AARWONGEN SWİTZERTLAND',0,3,140,'745105230','0','0',NULL,1300,0,'3.5 M3 ','2025-09-03 13:46:49.897','2025-10-14 11:25:00.218',NULL),
('06e1e4d8-8efa-4bf5-b2a5-b17c829042b5','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-18 11:52:32.388',10089,'e6d4faef-484c-4ce7-992c-906e05fc083e','HATİCE ÇETİN(K)','01749180995','01729404068','Almanya','DUİSBURG','47178','AM GERRİKSHOF 2',10,3,110,'644834421','0','0',NULL,545,1,NULL,'2025-09-18 11:59:19.195','2025-10-02 06:11:13.650',NULL),
('06e21650-25ae-4be2-b1dd-31866d6e20f9','5c723cdc-e582-4b00-8271-838c085984c2','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-24 09:14:51.042',2774,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YUSUF SARIKAN','33631750301','33664587030','Fransa',NULL,'71530','16 A IMPASSE DES BAIGNEUX 71530 CHAMPFORGEUIL FRANCE',10,4.5,130,'745767667','0','0',NULL,1200,1,'MOR ETİKETLİ','2025-03-24 09:17:01.546','2025-04-24 15:02:05.019',NULL),
('06e56b2e-9b9b-4c5b-8022-4849479f4e4a','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-22 10:56:38.235',3754,'3c7190b6-f6ee-4275-8958-d7af952132ab','ONUR ÖZÇELİK','491784042586','491784042586','Almanya','HAMBURG','22297','SYDNEY STRABE 38 22297 HAMBURG ALMANYA',3,3.5,110,'371695056','0','0',NULL,1400,1,'KIRMIZI ETİKETLİ','2025-08-22 10:59:28.922','2025-09-16 06:34:26.391',NULL),
('070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf','585b4575-ecea-4671-89b2-199f0605ed62','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-14 08:55:40.167',9491,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','ESRA MURATOGLU','4917683412499',NULL,'Almanya','GÖLLHEİM','67307','GOETHESTRASSE 11\n67307 GÖLLHEİM',20,2,110,'786276080','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-04-14 08:57:38.323','2025-04-25 09:51:53.684',NULL),
('071c9b00-dfd6-452e-a75b-c40b31f270dc','8fff5e14-418c-4377-bd83-3a3f81383507','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-14 15:06:07.503',6860,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DİLEK YILMAZ','31641388732',NULL,'Hollanda','LEİDEN','2321','JOHANNES POSTSTROOT 23',0,3.5,120,'437227214','0','0',NULL,600,0,'SARI ETİKET','2025-10-14 15:08:54.920','2025-10-22 13:07:12.749',NULL),
('072d8a33-17fa-4b64-bb6e-a1631be72033','05135cd5-2d33-4363-b51e-c9b83a94094d','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-13 08:05:40.595',1631,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','MUHAMMED EMİN TILMAZ','4917614644899',NULL,'Almanya',NULL,'42899','LENHARTZHAMMER 2',11,2,110,'65728268','0','0',NULL,300,1,'MERMER PALETİ','2025-05-13 08:06:26.574','2025-06-06 17:36:45.892',NULL),
('076f6dac-8fe6-4bac-b210-2dda825192db','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2025-03-06 08:57:59.853',5032,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','İBRAHİM AYIK','33608517581','33608517581','Fransa',NULL,'67600','4 RUE DU LİEUTENANT CASTAİNG \n67600 SÉLESTAT /FRANCE',0,2.5,120,'449181756','0','0',NULL,5300,0,NULL,'2025-03-06 09:03:40.138','2025-04-19 10:19:38.231','2025-04-19 10:19:38.233'),
('07db3804-178b-4b42-ba68-1b6cc6758010','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-25 07:06:57.836',1030,'59868701-abe4-4705-a7e6-d91c2c69262e','SERKAN DOKKAL','4915228807643','4917632810959','Almanya',NULL,'97753','STATİONSWEG 4A, 97753 KARLSTADT ALMANYA',29,3.5,110,'598961970','0','0',NULL,725,1,'TURUNCU ETİKET','2025-07-25 07:07:55.363','2025-09-01 16:56:53.496',NULL),
('0816b3df-4d3c-4f83-935b-999df0cfa38e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:12:06.283',1092,'73596a75-b658-4249-8c71-b0490654bc8b','PATRİCA','004915254106580',NULL,'Almanya',NULL,'86456','KORNFELD STB 9',21,1,0,'735139102','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-12-07 09:13:44.922','2024-12-17 19:52:32.750',NULL),
('08318497-59bc-4444-82cf-f14fd0a31917','1f0119e0-2853-442a-8394-39cf94fce7df','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-21 09:04:31.820',7067,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','NAFİT GANİOĞLU','33637509452','05380623114','Fransa','MACON','01290','13BİS GRANDE RUE PONT DE VEYLE, BOURG EN BRESSE, MACON/FRANSA 01290',11,6,130,'517255345','0','0',NULL,2420,1,'SARI ETİKET','2025-09-21 09:20:05.846','2025-10-23 13:50:31.470',NULL),
('0831e36a-bfec-49cb-862f-5d57cf563310','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:33:27.799',9116,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','TUĞBA HANIM','491736344643',NULL,'Almanya',NULL,'38122','STEİNBERGANGER 45',8,1,100,'126421974','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-12 15:34:55.910','2024-11-23 12:17:08.607',NULL),
('0842ca05-4fb7-45eb-8075-13043a47f7c2','5c723cdc-e582-4b00-8271-838c085984c2','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-12 13:59:21.246',1669,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','RAMAZAN DUMAN','4915204766042',NULL,'Almanya',NULL,'83646','GAISSACHER STR 27 83646 BAD TÖLZ ALMANYA',6,3,105,'745343811','0','0',NULL,890,1,'SARI ETİKET','2025-06-12 14:00:13.838','2025-06-29 18:30:40.604',NULL),
('084a9df9-c2a5-4ac0-83c6-5c5c4de780b1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 11:02:46.101',9314,'c2d4ce84-536d-4816-837f-7abbf6a7e061','TABELA','3536737367346734',NULL,'Almanya',NULL,'13409','RESİDENZSTRABE 121',9,2,110,'248915549','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-02-27 11:06:43.508','2025-03-21 17:17:29.974',NULL),
('084daa7f-3636-427c-9862-03f8214bc1f5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:38:27.072',8766,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','FATMA İSAOĞLU','491789377871','','Almanya','STEİNFURT','49525','SCHULTEN STROBE',2,4.5,100,'449557088','0','0',NULL,1300,1,'KIRMIZI ETİKETLİ','2024-05-29 09:48:00.179','2024-06-10 13:50:44.710',NULL),
('086387ea-e6c3-4408-a3fe-99b5b7b6a381','d074816b-78fd-4378-91c0-3835eba28f44','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-01 09:42:33.752',2832,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','GÜNGÖR SAK','4915782263491',NULL,'Almanya','ALDENHOVEN','52457','MARİENSTRABE 16 52457 ALDENHOVEN GERMANY',15,3.5,110,'614901187','5','5','Çok iyi hizmet',2000,1,'AÇIK YEŞİL ETİKET ','2025-10-01 09:57:54.227','2025-10-18 07:37:18.439',NULL),
('0870a03e-86ea-4d91-bf42-aa250c0c7ee1','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-17 10:51:49.945',4289,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','EMRAH ERAYDIN','33787053460','33787053460','Fransa','SAVERNE','67700',' 15, RUE DE LA COLLİNE 67700 SAVERNE/ ALSACE FRANCE',12,2,120,'127552437','0','0',NULL,0,0,'KASALI MASA','2025-06-17 10:55:14.249','2025-07-08 11:48:44.032',NULL),
('08723415-4b6f-4a95-a326-2405074a7498','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-18 15:36:19.359',1955,'c2d4ce84-536d-4816-837f-7abbf6a7e061','PARK','491739514221',NULL,'Almanya',NULL,'88250',NULL,28,6,110,'248549362','1','1','Makas kesmiyormuş 🤔😞',750,1,'AÇIK MAVİ ETİKETLİ','2025-07-18 15:39:39.815','2025-07-26 08:56:42.599',NULL),
('087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-30 14:48:06.967',6592,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT YALIN','4917661977979','','Almanya','','99427','',1,1,0,'412330197','0','0',NULL,0,0,'SUBENDE LOKANTADA','2024-07-30 14:50:15.334','2024-08-05 20:20:51.622',NULL),
('0884b3d4-5cc0-44eb-9508-2f4bc25839ac','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-01-29 10:29:21.665',10714,'47880255-08ee-4e99-940b-16038e07de55','SÜLEYMAN KAYHAN','4915115830326','4915152091392','Almanya','CABURG','96465','ALMANYA 96465 NEUSTADT BEİ CABRG ALMANYA',9,2,105,'478763903','5','5','Sıkıntısız ve hızlı teslimat ',6250,1,'YEŞİL ETİKETLİ','2025-01-29 10:32:38.917','2025-02-27 13:37:30.441',NULL),
('088fba56-0e50-4ce7-864f-7f301956e881','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-11-11 13:20:09.107',9935,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','HANEFİ ALİOĞLU','491739901545',NULL,'Almanya',NULL,'59909','LUDWİNG STR 4',7,1,100,'501247386','0','0',NULL,750,1,'GRİ ETİKETLİ','2024-11-11 16:11:36.295','2025-01-07 10:35:37.747',NULL),
('08903c44-0aec-492e-ae36-4f7ff8701446','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-17 15:39:04.849',1284,'e6d4faef-484c-4ce7-992c-906e05fc083e','AKIN KARUT','31614355006','31657678818','Hollanda','ENSCHEDE','7534','ELZENKER 15',0,3.5,120,'644775291','0','0',NULL,500,1,'1 PALET','2025-04-17 15:43:45.938','2025-05-03 06:22:27.306',NULL),
('08b07ff9-692e-4ca8-866e-27a96667e87f','f20f374d-c0a5-4ce9-aba4-4f631eade97d','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-06-26 09:33:47.676',9353,'5f244b33-94ca-477b-ae15-8d3bf79ba2c8','OSMAN GÖKBEKİŞ','00436505113533',NULL,'Avusturya',NULL,'6840','KİRLASTRABE 138',5,5.5,120,'524289921','0','0',NULL,1000,1,NULL,'2025-06-26 11:05:11.120','2025-07-22 08:59:55.913',NULL),
('08c394f5-81b6-4f94-b6e3-4d898cb44cae','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-24 07:48:56.702',7847,'3c7190b6-f6ee-4275-8958-d7af952132ab','SALİM TEKE','4915151400304','4915151400304','Almanya','HALSTENBEK','25469','PAPENMOORWEG 21 25469 HALSTENBEK ALMANYA',0,5.5,110,'371884796','0','0',NULL,1625,1,'GRİ ETİKETLİ','2025-04-24 07:55:29.856','2025-05-14 06:38:01.059',NULL),
('090e53a7-9f47-40c2-990b-65dbc36b9e2c','8fff5e14-418c-4377-bd83-3a3f81383507','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-08 13:33:06.474',5895,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','HÜSEYİN ELİF TUNCA ','4915223927812',NULL,'Almanya','RASTATFÖRCH','76437','FAVORİTE STR 44A',20,2,110,'437809521','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-10-08 13:34:39.203','2025-10-22 13:06:47.194',NULL),
('091754cf-7aa6-431a-8a90-b30fd8978287','5c723cdc-e582-4b00-8271-838c085984c2','66307a01-d585-4127-903b-18748421c29e','2025-04-21 10:21:16.287',2165,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ELMAS KAYA','4369914178102','4369910288849','Avusturya',NULL,'1230','STEINERGASSE 36 18 9 1230 WIEN AVUSTURYA',20,5,140,'745411152','0','0',NULL,1600,1,'AÇIKMAVİ ETİKETLİ','2025-04-21 10:25:30.739','2025-05-05 09:10:22.589',NULL),
('0968d1cc-0ba0-445c-8f49-74a0f7b6c441','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-04-24 07:41:40.136',9989,'a42d8839-caef-4422-888f-cbfdf4188c5b','TUĞBA YILMAZ','905542969953','905072738632','Almanya','','','',2,7.5,100,'42845475','0','0',NULL,1080,1,'GRİ ETİKETLİ','2024-04-24 07:46:39.040','2024-05-17 18:53:05.584',NULL),
('09866d43-d0a4-4a7d-a951-82fc550bd732','05135cd5-2d33-4363-b51e-c9b83a94094d','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-16 07:06:01.861',2552,'4126da30-ba9b-41b7-be29-865069aa484c','ENES','1111111111',NULL,'Fransa',NULL,'57000',NULL,12,2,0,'41268257','0','0',NULL,0,0,'SARI ETİKET','2025-09-16 07:07:25.366','2025-10-03 06:54:34.215',NULL),
('098e3733-92d8-47a9-8dbf-5c340e142d3a','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-05-15 07:48:10.365',8646,'3c7190b6-f6ee-4275-8958-d7af952132ab','ERDEMCAN ORHAN','4917685967745','4917685967745','Almanya','TROİSDORF SPİCH','53842','HAUPTSRT 200 53842 TROİSDORF SPİCH ALMANYA',0,2,110,'371263556','0','0',NULL,350,0,'masa','2025-05-15 07:49:42.127','2025-05-22 14:36:06.154','2025-05-22 14:36:06.157'),
('0991bee4-87cb-4b77-85ae-0f81a11d33ba','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-11 13:03:30.452',4475,'59868701-abe4-4705-a7e6-d91c2c69262e','ALİYE GÖRDÜK','491638098235','4917680626495','Almanya',NULL,'13585','SCHÜTZENSTRASSE 5, 13585 BERLİN/ALMANYA',15,4.5,110,'598156869','5','5','👍süper ',1250,1,'MAVİ ETİKETLİ','2025-08-11 13:05:25.786','2025-09-13 11:37:08.828',NULL),
('0a137908-ceed-4a84-b0cb-945ff56ddcb8','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-23 07:27:03.359',7611,'3c7190b6-f6ee-4275-8958-d7af952132ab','ERDEMCAN GÖZÜBÜYÜK','4917685967745','4917685967745','Almanya','TROİSDORF SPİCH','53842','HAUPTSTR 200 53842 TROİSDORF SPİCH ALMANYA',17,2,110,'37159654','0','0',NULL,350,1,'GRİ ETİKETLİ','2025-05-23 07:29:23.615','2025-06-05 12:35:47.781',NULL),
('0a266acf-5707-4e27-8a72-fd079a3c1ee6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-24 09:48:49.783',8478,'e6d4faef-484c-4ce7-992c-906e05fc083e','NADİYE ÇAVUŞ','491797759335','4917631033403','Almanya','REİLİNGEN','68799','PORJSTRABE 5A',15,6,110,'644200718','0','0',NULL,1700,1,'KIRMIZI ETİKETLİ','2025-07-24 09:57:06.670','2025-08-07 15:07:09.458',NULL),
('0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-05 09:51:49.378',7194,'e6d4faef-484c-4ce7-992c-906e05fc083e','GAMZE ŞAŞMA','491782611540','4917660473262','Almanya','BRACKENHEİM','74336','LEİNTALSTRABE 34',5,6,110,'644523362','0','0',NULL,1750,1,'MOR ETİKETLİ','2025-05-05 10:02:48.481','2025-06-03 09:40:51.787',NULL),
('0a6c0b58-ffe6-490d-896b-e43d0294c257','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-08-31 12:41:01.708',7717,'a42d8839-caef-4422-888f-cbfdf4188c5b','ULAŞ YILDIZ','41613314258','','İsviçre','','4053','MAİLAN STRASSE 31',0,1,140,'428674355','0','0',NULL,0,0,'SARI ETİKETLİ','2024-08-31 12:43:37.624','2024-10-04 11:52:37.982','2024-10-04 11:52:37.994'),
('0a76a60a-33b8-43ca-a666-e1704b2975e3','05135cd5-2d33-4363-b51e-c9b83a94094d','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-06-25 10:52:26.332',9493,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MAİL BOXES ETC','1111122342423133',NULL,'Almanya',NULL,'45768','BRASSERTSTRABE 34',3,2,0,'223379282','0','0',NULL,0,0,NULL,'2025-06-25 10:53:49.279','2025-07-03 11:20:02.280',NULL),
('0a8f1755-81d7-48cb-888e-f50eb6ea01e8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-24 10:20:22.867',8363,'47880255-08ee-4e99-940b-16038e07de55','ZEYNEP CİHANGİR','4915901358916','4917621155442','Almanya','DORTMUND','44263',' \nAM HEEDBRİNK 4\n44263 DORTMUND',16,2,105,'478623446','0','0',NULL,1400,1,'TURUNCU ETİKETLİ','2025-03-24 10:22:52.239','2025-04-07 11:35:33.345',NULL),
('0aaad212-a936-42da-a38a-78f129b220bb','1764a07b-eb47-4578-b6cd-f3c0d0e743be','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-28 16:39:04.873',7673,'47880255-08ee-4e99-940b-16038e07de55','BELKIS DUMAN','4915732042277','491778682427','Almanya','FRANKFURT','60435','KARL-LACHMAN-STR 8 ECKENHEİM 60435 FRANKFURT',24,2,105,'478662278','0','0',NULL,0,0,'AÇIKMAVİ ETİKETLİ','2025-04-28 16:45:40.337','2025-05-10 20:13:32.865',NULL),
('0abef697-325b-4fde-a364-d1f3c1d2b3f9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 12:48:41.414',8060,'e6d4faef-484c-4ce7-992c-906e05fc083e','SUZAN EL MOUSSA(K)','491759091093','01759091093','Almanya','KÜNZELL','36093','WİLHELM ÖSTERİCH STRABE 8 ',0,4,110,'644303406','0','0',NULL,1125,0,NULL,'2025-09-17 12:57:37.949','2025-10-22 12:46:30.317',NULL),
('0ac67115-ca12-48cc-a0b1-abc8c3a29d08','5c723cdc-e582-4b00-8271-838c085984c2','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-29 08:04:47.014',10657,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KENAN SOYLU','33626335448',NULL,'Fransa',NULL,'41000','30 RUE DE LA GOVALIERE 41000 BLOIS FRANSA ',9,2,130,'74534951','0','0',NULL,700,1,'FOSFORLU YEŞİL ETİKETLİ','2025-01-29 08:05:59.569','2025-02-14 10:41:18.327',NULL),
('0adf917f-cd8a-434f-ae14-355f5b8a1a1a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-20 13:09:12.380',1785,'0debd19b-d90b-48a0-9568-2d01319377e0','NİSRİNE ','31640399233',NULL,'Hollanda',NULL,'3902',NULL,4,2.5,120,'019814367','0','0',NULL,500,1,'YEŞİL ETİKETLİ','2025-05-20 13:10:04.960','2025-06-06 18:15:43.166',NULL),
('0afc84bf-0fec-469c-b4e4-09a7be452c9c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-22 10:44:51.205',4234,'47880255-08ee-4e99-940b-16038e07de55','YUSUF TÜRKGELDİ','32483028074','32484564147','Belçika','GENK','3600','ONDERWİJSBON44 3600 GENG',12,4,120,'478537954','0','0',NULL,990,1,'AÇIKMAVİ ETİKETLİ','2025-04-22 10:47:26.395','2025-05-02 06:58:05.857',NULL),
('0b1cc952-6f67-4baa-ba60-c50028dfbd88','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-01-07 09:21:28.333',7755,'dea91080-5383-4085-af2e-7eace2c64224','EMRULLAH ŞENGÜL','33787068261','33674420848','Fransa',NULL,'74240','12 AVENUE DE LA BRECHE',0,1,130,'910121020','0','0',NULL,1200,0,NULL,'2025-01-07 09:24:30.371','2025-01-07 09:26:38.407','2025-01-07 09:26:38.409'),
('0b6d3d95-378b-4d48-9a2c-6a0e39674941','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-11 08:10:03.082',7022,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',' İSMET CEYLAN','33651062743','0651062743','Fransa','CHARMONT ','25200',' 2 RUE DES BLEUETS 25200 GRAND CHARMONT FRANSA',19,2,120,'127241743','0','0',NULL,720,1,'AÇIK MAVİ ETİKETLİ','2025-03-11 12:10:06.842','2025-03-20 18:08:22.871',NULL),
('0b7aac01-be82-49d8-9ad7-25b1ae673022','313cc2e2-5529-49ab-abe5-27b5d390bc5f','66307a01-d585-4127-903b-18748421c29e','2025-03-25 17:29:27.012',6274,'6133a2db-79c4-4372-9338-505db46b1847','SUADA HAMZA ','436503555735',NULL,'Avusturya','GUNTRAMSDORF ','2353','JOHANN STRAUSS GASSE 20B \n2353 GUNTRAMSDORF \nNİEDERÖSTERREİCH ',21,2,140,'613725694','0','0',NULL,375,1,'BEJ ETİKETLİ','2025-03-25 17:32:00.913','2025-07-24 10:25:52.737',NULL),
('0b896bd7-2c3b-47b7-8e7c-81c9ececb79e','394112c3-f977-4fc2-b430-775e79e472ca','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-09 08:40:44.803',5067,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ORASAN DAVUT ','40741604282',NULL,'Romanya',NULL,'51775',NULL,1,2,0,'98275727','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2025-07-09 08:41:31.956','2025-07-21 07:59:59.277',NULL),
('0b9e594a-9050-45a0-a4fd-c58ac204bb9d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-08-13 10:43:37.632',8083,'e6d4faef-484c-4ce7-992c-906e05fc083e','UMUT YÖRÜK','4917662149337','4917647606470','Almanya','HAMBURG','21077','ARRO HOLZ WEG 13',7,5.5,110,'644243216','0','0',NULL,1900,1,'MAVİ ETİKET','2025-08-13 14:50:11.380','2025-10-05 12:16:01.631',NULL),
('0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 16:00:45.637',7112,'47880255-08ee-4e99-940b-16038e07de55','SONER DEMİRCİ','33609880831','336660655288','Fransa','CABRİES','13480','6162 RATTE DAS PENNES GRANNE',17,1,110,'478422219','0','0',NULL,300,1,'YEŞİL ETİKETLİ','2024-09-28 16:02:45.886','2024-10-12 15:50:54.840',NULL),
('0bf84329-c85d-4d24-8259-d2cf5ac61459','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-26 13:29:29.169',2234,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','CEMİLE İLHAN','491726260844',NULL,'Almanya',' ERLENSEE','63526 ','HAİNSTRASSE 55 \n63526 ERLENSEE',7,2,110,'817239122','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-05-26 13:31:45.048','2025-06-20 08:45:23.213',NULL),
('0c0919ed-e869-4b33-a525-8e05358a4852','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-08 13:26:25.807',6392,'4126da30-ba9b-41b7-be29-865069aa484c','ESKİŞEHİR 2','0000000000000000',NULL,'Belçika',NULL,'6041',NULL,4,2,0,'412472932','0','0',NULL,0,0,NULL,'2025-03-08 13:27:08.896','2025-03-19 12:35:58.109',NULL),
('0c1f42ec-e581-418c-a11b-418b92d2cc9e','173956a2-c232-495a-b036-4a6a36c073e2','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-31 19:19:31.148',9814,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','AYŞEGÜL TELLİ','491716488120',NULL,'Almanya','Wilhelmstraße','56598','Wilhelmstraße 17 56598 Rheinbrohl',16,5,100,'449962472','0','0',NULL,2620,1,'PEMBE ETİKETLİ','2024-10-31 19:22:27.547','2024-11-09 18:54:07.488',NULL),
('0c3ef94e-a3b8-4021-9443-6b89d022c491','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:27:41.895',8708,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','KÖSE BEY','31686174189','','Hollanda','ZOETERMEER','2711','GRİEKENLANDLAAN 145',14,1,0,'750926872','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-09-27 12:31:01.193','2024-10-07 14:02:49.696',NULL),
('0c43519c-5551-4f80-8c50-18c10c21048d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-17 12:45:08.681',3121,'e6d4faef-484c-4ce7-992c-906e05fc083e','TAKİ ÇAYCI(K)','33771744012','33782398897','Fransa','MULHOUSE','68200','21 RUE DE WESSERLİNG',16,4,120,'644257752','0','0',NULL,595,1,'AÇIK KAHVE','2025-09-17 12:51:33.805','2025-10-23 06:20:07.502',NULL),
('0c5baaa9-88b0-464f-9b3b-8d21de6877b8','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-24 13:17:07.360',8431,'e6d4faef-484c-4ce7-992c-906e05fc083e','   BEKİR','4915209792574','4915560273745','Almanya','TROİSDORF','53842','KİRCHWEG 15, TROİSDORF',11,2,110,'644567515','0','0',NULL,425,1,'SARI ETİKETLİ','2025-02-24 13:25:31.846','2025-03-18 18:32:44.433',NULL),
('0c6e2777-797b-45ae-b55b-1a2b5ee437ac','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 11:12:18.082',5232,'c2d4ce84-536d-4816-837f-7abbf6a7e061','CEM OKUMUŞ','4363573467467362',NULL,'Almanya',NULL,'12581',NULL,17,2,110,'248883377','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-07-08 11:15:02.376','2025-07-24 06:26:53.166',NULL),
('0c708994-6e45-4ea2-8025-bc17c41e7542','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:29:02.598',9266,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ZANA','4917684439417',NULL,'Almanya',NULL,'13599','PULVERMÜHLENWEG 7',2,1,0,'248538815','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-12-17 17:05:06.518','2025-01-11 14:08:23.007',NULL),
('0c849468-56f3-4970-8ded-610f5c6820b7','eccfe611-9163-42aa-a1ff-e711af0248e6','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-25 15:36:24.382',1086,'22a1dbd6-475c-4d4b-bb13-f459e3029634','JEUNE ROSE DARLYNE','33667821840',NULL,'Fransa',NULL,'78480','23 RUE DU LAC VERNEUİL SUR SEİNE ',8,2,130,'221892935','0','0',NULL,1100,1,'AÇIK MAVİ ETİKETLİ','2025-02-25 15:38:59.342','2025-03-23 16:15:57.285',NULL),
('0c8bac25-5433-4bd6-bcc9-b94a47de9047','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-30 09:33:09.283',2944,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BOUKİ BOUCHRA','33617406567','','Fransa','','13600','',13,4,110,'982918194','0','0',NULL,1600,1,'MAVİ ETİKETLİ MİNİVANDA','2024-08-30 09:35:19.345','2024-09-09 15:17:32.717',NULL),
('0ca39cb3-cb01-4190-946c-6ebea8eb1b68','eccfe611-9163-42aa-a1ff-e711af0248e6','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-24 08:13:39.185',4889,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SALİHA ŞERİF','31687750912',NULL,'Hollanda',NULL,'3314','DORDRECHT WİLLY MARTENNSTRAAT 29 3314 XV',0,2.5,120,'221651438','0','0',NULL,800,0,'TURUNCU ETİKET ','2025-10-24 08:16:08.980','2025-10-25 08:59:26.343',NULL),
('0cba4c66-9032-4c31-99e3-c345fa1edafa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-30 06:51:51.042',2110,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MASUD SALAH','491705532123','','Almanya','','38518','BRAUNSCHEWİGERSTR. 82',6,4,130,'982320208','0','0',NULL,1350,1,'MAVİ ETİKETLİ','2024-03-30 06:55:21.004','2024-04-04 12:49:01.227',NULL),
('0cec0d02-7fac-44ec-a4bd-1669385b451a','5c723cdc-e582-4b00-8271-838c085984c2','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-07 09:36:01.538',6253,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HATİCE KARABAĞCA SSH ','4917670344465',NULL,'Almanya',NULL,'35586','WIESEN STR 2/6 35586 HERMANSTEIN WETZLAR ALMANYA',6,2,105,'745658808','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-05-07 09:39:45.099','2025-06-20 13:05:25.864',NULL),
('0d30fc8e-1bbc-4241-8485-e20902596e8d','1f0119e0-2853-442a-8394-39cf94fce7df','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-18 12:55:25.192',2154,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','FERHAT DEMİRCİ','33640110601','33652126348','Fransa','PARİS','91100','ADRES 27 RUE RAYMOND, ROZİER 91100  CORBEİL ESSONNES',0,2.5,110,'517901924','5','5','Cok memnun kaldım cok tesekur ederım',1500,1,'KIRMIZI ETİKETLİ','2024-11-18 14:02:36.273','2024-12-12 07:51:19.994',NULL),
('0d40e91f-6390-4121-9303-5976e9f6f226','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-28 09:03:33.883',9710,'4126da30-ba9b-41b7-be29-865069aa484c','ERKAN ÇEVİK','33788856164',NULL,'Fransa',NULL,'93360','25 AVENUE DU PRESİDENT KENNEDY',20,2,0,'41291679','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-01-28 09:04:25.125','2025-02-12 10:27:26.637',NULL),
('0d464a57-d48d-4898-8ed5-05d911433d8e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:50:10.915',7069,'a42d8839-caef-4422-888f-cbfdf4188c5b','TUĞBA YILMAZ','905542969953','','Almanya','KONZ','54329','YAKIN Bİ YERDEN ALIRSA İYİ OLUR',5,1,100,'428160643','0','0',NULL,0,0,'TURUNCU ','2024-06-08 07:51:49.771','2024-06-20 20:16:27.107',NULL),
('0d55a789-9635-407b-8c56-f61ca0500289','8fff5e14-418c-4377-bd83-3a3f81383507','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-22 09:50:23.293',9297,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MERVE KARADAVUT','33660617145',NULL,'Fransa','GOUSSANVİLLE','95190','8 RUE DES VİOLETTES',1,8,120,'437233015','0','0',NULL,1950,1,'MAVİ ETİKETLİ','2025-04-22 09:51:57.797','2025-05-22 15:23:27.973',NULL),
('0d5fa9af-726d-48a9-a5d1-c407a279f76f','313cc2e2-5529-49ab-abe5-27b5d390bc5f','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-18 11:29:57.056',8927,'6133a2db-79c4-4372-9338-505db46b1847','GÖKKUS PİNAR','491792099913','491792099909','Almanya','ISENBÜTTEL','38550','ALTES MÜHLENFELD 56A\n38550 ISENBÜTTEL\nGERMANY',6,6.5,110,'61340935','0','0',NULL,837,0,'AÇIK MAVİ','2025-09-18 11:32:24.303','2025-10-20 07:18:14.790',NULL),
('0d746c5c-f194-4ed9-b71a-bf56f53af841','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-04 11:22:05.954',4463,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SEBİHA DEMİR','31643014600','31641919290','Hollanda',NULL,'4006','VURENLAUN 121',1,2.5,120,'437233194','0','0',NULL,850,1,'MAVİ ETİKET','2025-09-04 11:25:36.132','2025-10-02 06:12:19.101',NULL),
('0dc43c9f-95ed-4a01-8e5e-356e535e67c3','d008d786-a02e-404b-b090-54460d9d421e','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-01 14:57:08.538',10365,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ONUR COŞKUN ','31648989014',NULL,'Hollanda','ROTTERDAM','3088GR','SOERWEG 5',5,2,120,'65754067','0','0',NULL,300,1,'1 PALET','2025-08-01 14:59:53.530','2025-09-04 21:03:33.162',NULL),
('0dd4a2d2-2050-49e5-b089-3c05a90162dc','f784b688-ba6b-4886-87dd-fe4cfbed85b4','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-04-17 12:14:58.792',8657,'dea91080-5383-4085-af2e-7eace2c64224','SÜLEYMAN MAKAS ','491725459093',NULL,'Almanya','ELLZEE','3 89352','BAHNHOF STR 3 89352 ELLZEE',5,2,110,'910980337','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-04-17 12:16:46.949','2025-06-04 19:39:33.557',NULL),
('0e07b0ae-06f1-463c-8579-3c8aa8ed2f73','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-02 08:06:27.156',2935,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','DANFA','33616563372',NULL,'Fransa','CRETEİL','94000','MON ADRESSE : 12 RUE BERNARD PALİSSY 94000 CRÉTEİL',1,2,120,'817288476','0','0',NULL,400,1,'KIRMIZI ETİKET','2025-10-02 08:10:23.928','2025-10-25 09:00:41.405',NULL),
('0e1add8c-7e20-424c-83f0-cdb80a06f744','1764a07b-eb47-4578-b6cd-f3c0d0e743be','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-13 09:46:35.914',10213,'47880255-08ee-4e99-940b-16038e07de55','ZİLAN BİLİN','4917663388742','4917663388742','Almanya','HAMBURG','21149','OHRNSWEG 32 21149 HAMBURG ALMANYA',1,2,105,'478250269','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-01-13 09:53:03.445','2025-01-31 12:16:25.732',NULL),
('0e1f0ff2-0fd0-467d-be19-57aad10ed98b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-30 13:44:26.194',10673,'4126da30-ba9b-41b7-be29-865069aa484c','RAHİM MALOĞLU','3254354253235432',NULL,'Almanya',NULL,'41352',NULL,15,2,0,'412731497','0','0',NULL,0,0,'2 PALET','2025-04-30 13:47:01.004','2025-05-12 09:08:09.366',NULL),
('0e2dab47-10d3-49e3-9862-b25eac0ed739','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-03-13 11:24:03.367',1285,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYHAN EREK','33666919222',NULL,'Fransa',NULL,'33150','4 RUE CAMILLE PELLETANT RES COMME UNE INTUITION APPT 6 33150 CENON FRANSA',0,2,130,'745991316','0','0',NULL,3500,0,'7 M3','2025-03-13 11:31:21.357','2025-03-25 11:50:17.566','2025-03-25 11:50:17.569'),
('0e2e4dbe-5815-4688-acd8-82ba0120462c','672088cb-62c6-4858-b0a7-a64015547c74','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-05 09:03:58.328',10173,'7487951b-3af6-4f83-a5fa-6847a10dd8c6','CAMELİA BESSAL','33645699498','33629828903','Fransa','RİXHEİM','68170','10 RUE DE LA BRASSERİE 68170 RİXHEİM / FRANSA',14,2,140,'748663171','0','0',NULL,1075,1,'MOR ETİKETLİ','2024-11-05 09:28:28.842','2024-11-25 09:20:39.164',NULL),
('0e34ca38-5c56-42c9-98cc-a90025b718c0','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2025-02-03 10:47:30.925',6104,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SOVZALİYEV ELSEVAR','33602307220','33602307220','Fransa','MAYENNE','53200','ADRES.68 RUE DU LT MORILLO 53200 CHATEAU GONTIER S/MAYENNE.',0,2,130,'449863914','0','0',NULL,4730,0,NULL,'2025-02-03 10:53:38.767','2025-02-10 12:02:55.485','2025-02-10 12:02:55.487'),
('0e367b6a-44c3-40e4-9097-1055385b6e27','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-07 12:23:31.590',7379,'3c7190b6-f6ee-4275-8958-d7af952132ab','DİLAY MERYEM CİKU','4915222818917','4915222818917','Almanya','RİEDSTADT','64560','ROSENHOF 16A 64560 RİEDSTADT ALMANYA',23,3.5,110,'371737204','0','0',NULL,800,0,'AÇIK YEŞİL ETİKET','2025-10-07 12:24:51.823','2025-10-25 08:58:54.706',NULL),
('0e3cd4c9-294c-4ded-8194-bf22e23bc5a0','c21cdd02-4af2-4b32-bc87-c70a576c3a99','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-13 19:23:42.474',9289,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','HİLAL ZÜBEYİRLER','4915122149327','4915901249281','Almanya','HAİGER ','35708','ROTEBERGSTRASSE 2 35708 HAİGER ',18,2,110,'515973668','0','0',NULL,650,0,'AÇIK MAVİ ETİKET','2025-10-13 19:36:04.552','2025-10-25 08:59:01.029',NULL),
('0e8dbe8e-49ac-4a8e-a189-9b29da83c362','51b55e5b-7487-4d8a-923e-163f04d0b1d9','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-26 10:18:38.055',2684,'c2d4ce84-536d-4816-837f-7abbf6a7e061','VEFA ÇAĞLAR SÖNMEZ','31638446688',NULL,'Hollanda',NULL,'2134','BALG 12',0,2,120,'248746531','0','0',NULL,0,0,'MOR ETİKETLİ ','2025-01-26 10:19:55.207','2025-02-10 14:16:49.589',NULL),
('0e979831-071a-44d0-92b5-b61f986da797','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 08:55:02.056',7737,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZKAN KAYACAN','4917678708676','','Almanya','BRUCKMÜHL','83052','FÖHREN STR 103',2,1,100,'745170376','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-10-02 08:58:26.367','2024-10-08 09:24:47.606',NULL),
('0ea00d37-52d8-4f61-9891-dd8fcc0d358c','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-12 06:27:14.319',10930,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','TAYFUN TATLIGÜN','491774646467','491774646467','Almanya','DİETZENBACH ','63128 ','TALSTRASSE 35 A 63128 DİETZENBACH ALMANYA',24,2.5,110,'8087036','5','5','Tesekkürler',1000,1,NULL,'2025-09-12 06:30:25.549','2025-09-30 10:03:35.485',NULL),
('0ea8d257-afae-4860-8574-29747c60c8c6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-27 07:57:04.523',1005,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELDA KARA','4917680081051','436508893388','Avusturya','FELDKİRCH','6800','HAMMERLESTRABE 40',22,7,140,'64451300','0','0',NULL,2440,1,'AÇIK MAVİ ETİKETLİ','2025-03-27 08:06:59.898','2025-05-02 17:08:29.291',NULL),
('0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2','313cc2e2-5529-49ab-abe5-27b5d390bc5f','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-02 12:37:30.690',2096,'6133a2db-79c4-4372-9338-505db46b1847','JULJANA TARLLAMİSHAJ ','4917662786074','4917662786074','Almanya','WASSERLİESCH','54332','WALDSTRASSE 4 , 54332 WASSERLİESCH İN DEUTSCHLAND ',14,2,110,'613568438','0','0',NULL,570,0,'KIRMIZI ETİKET ','2025-10-02 12:42:07.673','2025-10-22 13:06:54.380',NULL),
('0f326b7b-35d4-442e-8ee4-8437b42beef5','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-03-21 08:34:13.015',7248,'47880255-08ee-4e99-940b-16038e07de55','SEVCAN SALİ','4917623171726','4917623171726','Almanya','MÜNİH','80637','REİNMAR PLATZ 20 80637 MUNCHEN ALMANYA',0,2,105,'478141666','0','0',NULL,0,0,'ssh','2025-03-21 08:41:08.139','2025-03-27 07:07:50.936','2025-03-27 07:07:50.941'),
('0f36cd64-fd9d-4454-b14c-e388fa4a57d2','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-18 16:48:04.373',2112,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','EMİNE İMRAG','4915204351936','4915204351936','Almanya','VÖLKLİNGEN','66333','GUTENBERGSTRASSE 9 66333 VÖLKLİNGEN / ALMANYA',11,2.5,110,'808830873','0','0',NULL,1000,1,'SARI ETİKET','2025-08-18 16:53:17.023','2025-09-06 07:19:31.533',NULL),
('0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-09 16:45:50.876',1499,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','CEMAL YALÇIN SSH','4915158036323','5388999874','Almanya',NULL,'58540',NULL,20,2,110,'319388100','0','0',NULL,0,0,'BEYAZ ETİKET','2025-08-09 16:47:08.633','2025-09-10 17:05:30.502',NULL),
('0f40a488-b453-400e-a6e2-874e5a76c787','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-17 12:06:41.736',2036,'e6d4faef-484c-4ce7-992c-906e05fc083e','DİLARA COŞKUN','491735124254','4915252659401','Almanya','WESSELİNG','50389','AM ENTENFANG 40',15,5,110,'644684600','0','0',NULL,1500,1,'SARI ETİKETLİ','2025-03-17 12:30:53.963','2025-04-25 19:39:52.517',NULL),
('0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-10-04 07:47:19.760',2698,'a42d8839-caef-4422-888f-cbfdf4188c5b','SEFA SİNER','32483839092',NULL,'Belçika','WİLLEBROEK','2830','OUDE DENDER MONDESE STRAAT 8A',13,12,100,'428651654','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-10-04 08:01:52.759','2024-12-05 16:17:06.733',NULL),
('0f733eb9-d262-417e-b01a-927f3219d47a','1f0119e0-2853-442a-8394-39cf94fce7df','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-16 14:24:32.259',1250,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','ÖZEN GÖKYEŞİL','491794359151','491789155540','Almanya','BERLİN','12555','FRİEDEN STR. 22, 12555 BERLİN/ALMANYA',14,2,110,'517619393','0','0',NULL,750,0,'SARI ETİKET','2025-10-16 14:42:04.463','2025-10-20 07:18:04.671',NULL),
('0f7992ed-f0f4-4017-b947-5693cfd94285','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-07-02 08:10:46.679',10570,'47880255-08ee-4e99-940b-16038e07de55','AYHAN ELBAĞLI','4917610039808','491728098361','Almanya','BERLİN','12205','SOPHİE TAUBER ARP WEG 2 12205 BERLİN ALMANYA',0,2,105,'478357206','0','0',NULL,2000,0,'3.5 m3','2025-07-02 08:12:39.791','2025-07-14 08:22:13.032','2025-07-14 08:22:13.031'),
('0f7a8dca-9600-447a-a216-28087b5362ba','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','29868815-59a3-472d-968a-f687cc30c0d6','2025-01-31 14:00:45.003',9047,'338e8c09-4ca5-4617-bfc1-a0692646d475','RAUF ÇALIŞ ','4369911180211','4369910824300','Avusturya','VIENNA','1230','ANTON BAUMGARTNER STRASSE 44/C2/8/3',24,2,140,'338691111','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-01-31 14:03:32.387','2025-04-02 18:57:10.886',NULL),
('0f7b6d43-5763-4b5b-93f8-46153e09c05f','eccfe611-9163-42aa-a1ff-e711af0248e6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-18 08:06:09.827',3774,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BERFİN UZUNER ','31638550109',NULL,'Hollanda',NULL,'2516','RİJSWİJKSEPLEİN 760, 2516 LX DEN HAAG',6,2.5,120,'221900850','0','0',NULL,800,1,'KIRMIZI ETİKET ','2025-09-18 08:08:11.973','2025-10-15 20:05:17.040',NULL),
('0f83b9ec-6ba6-4b67-812d-586619784634','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9e06441c-1bec-4f47-847f-83bea94f8369','2025-09-03 12:42:23.484',10272,'47880255-08ee-4e99-940b-16038e07de55','ERKUT PEKTAŞ','436507400301','431703503576','Avusturya','HOHENEMS','6845','LUSTERAU STRABE 40 6845 HOHENEMS AVUSTURYA',11,5.5,140,'478474988','0','0',NULL,2250,1,'KIRMIZI ETİKET ','2025-09-03 12:46:04.307','2025-09-17 17:51:16.582',NULL),
('0f896043-41f5-4e03-93cf-693eadfeb3c2','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-16 14:05:41.719',6152,'3c7190b6-f6ee-4275-8958-d7af952132ab','BİLAL KIZILIRMAK','4917634403928','4917634403928','Almanya','FREUDENBERG','57258','KREUZTAL STRABE 25 57258 OBERHOLZKLAU FREUDENBERG',22,3.5,110,'371155650','0','0',NULL,800,1,'GRİ ETİKET ','2025-09-16 14:07:09.213','2025-09-30 06:44:37.463',NULL),
('0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1','eccfe611-9163-42aa-a1ff-e711af0248e6','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-07 15:05:42.161',9187,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SEMİH TASKELE','41764518719',NULL,'İsviçre',NULL,'8630','IM GUBEL 25 8630 RÜTİ',11,2.5,140,'221693523','0','0',NULL,1050,1,'Mor etiketli','2025-02-07 15:07:36.824','2025-02-24 20:28:04.441',NULL),
('0fadbd30-6b39-4e10-8b6a-91aab0921641','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-13 22:47:12.644',7194,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','SEVDE SOYUÖZ','491748731890',NULL,'Almanya','KÖLN','51149','AM HOCHKREUZ 5 /51149 KÖLN',25,6,110,'675253974','5','4','Memnun kaldık ',1950,1,'TURUNCU ETİKET','2025-08-13 23:00:44.344','2025-09-02 07:36:57.998',NULL),
('0fb4d287-c84c-4138-a4bc-12c37b404970','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-29 07:58:38.444',6159,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÜMİT MORCA SSH','32495328608','32489954615','Belçika','ZELE','9240','LANGESTRAAT 39',0,2,120,'644760466','5','5','2 defa ürünlerimiz geldi her ikisindede memnun kaldık herşey için teşekkür ederiz ',0,0,'BEYAZ ETİKTLİ KARGO İLE GİDERSE VERELİM','2025-08-29 11:44:59.196','2025-09-26 10:32:28.491',NULL),
('0fd1883d-eec9-47b2-84ef-dcbefc9c3f77','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2025-02-12 08:55:44.166',5424,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','CAM PARÇA SSH ','0000000000','0000000000000000','Almanya',NULL,'00000','ALMANYA BERLİN ',0,2,110,'449147151','0','0',NULL,0,0,NULL,'2025-02-12 08:57:11.293','2025-02-27 13:01:56.103','2025-02-27 13:01:56.106'),
('0fd9ad4b-9c17-4380-957d-18193561c45c','804a2f53-7a26-4e8e-a505-7fc107953b50','2a352437-950c-42a9-9135-55482cf3977c','2025-07-30 06:12:36.415',9362,'a42d8839-caef-4422-888f-cbfdf4188c5b','SELEN SEMERCİ','33783081098','33781635699','Fransa',NULL,'25400','19 RUE LOUİS ARAGON AUDİNCOURT FRANSA 25400',1,4,120,'428326285','0','0',NULL,1200,1,'AÇIK MAVİ ETİKET','2025-07-30 06:15:15.640','2025-08-27 05:38:22.526',NULL),
('0fe32732-478d-4914-8b33-290a72aa934f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-18 07:39:14.979',7789,'4126da30-ba9b-41b7-be29-865069aa484c','KARABAS LANDMASCHİNEN','11111111111',NULL,'Almanya','TUNİNGEN','78609','GEWERBESTRABE 9',21,11.5,0,'412977009','0','0',NULL,1250,1,NULL,'2025-04-18 07:41:34.948','2025-05-02 17:08:29.291',NULL),
('0fef7900-6144-44c7-9378-415e663633c9','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-04 23:19:51.555',8692,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AYŞE TÜRKMEN ','491635214231',NULL,'Almanya',NULL,'51702','KOLNERSTRABE 226  51702 BERGNEUSTADT',25,2,110,'221507815','5','5','Bicargo olarak çok iyi  ve alakalısınz \nŞöför dakikti tam söylediği saatte geldi herşey için çok teşekkür ediyorum ',1470,1,'GRİ ETİKETLİ','2025-01-04 23:23:42.850','2025-02-09 22:58:20.989',NULL),
('104f5406-c5fd-4a46-8b03-63d308b6ac35','eccfe611-9163-42aa-a1ff-e711af0248e6','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-14 08:55:46.051',5317,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HURİYE SERBEST','41787438626',NULL,'İsviçre',NULL,'1306','ROUTE DE COSSONAY -GARE 10  1306 DAİLLENS ',5,2,140,'221416180','5','5','Şöför bey çok saygılı kendisine teşekkür ederiz.',1100,1,'YEŞİL ETİKETLİ','2025-01-14 08:58:32.551','2025-02-01 19:51:51.261',NULL),
('1080adba-e901-4380-93d1-e3ffaab7c355','5c723cdc-e582-4b00-8271-838c085984c2','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-17 08:35:42.439',4429,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DİLARA TARHAN','33668292449','33666141635','Fransa',NULL,'95500','9 RUE DU PONT A L\'HUILE 95500 LE THİLLAY FRANCE ',4,9.5,130,'745233031','5','5','Eksiksiz, kırık olmadan getirilmiş çok teşekkürler hizmetlerinizden dolayı çok memnun kaldık.',3250,1,'AÇIK YEŞİL ETİKET','2025-09-17 08:37:33.665','2025-10-10 21:33:15.870',NULL),
('10862bf3-01dd-40a9-beaa-6ba3d5075238','eccfe611-9163-42aa-a1ff-e711af0248e6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-24 08:47:57.462',2207,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÖZAY ÖZDEMİR YILDIZ','31681124473',NULL,'Hollanda',NULL,'3082','WOLPHAERTSBOCHT 84-J 3082 AS ROTTERDAM',6,3,120,'221746261','5','5','.',1750,1,'TURUNCU ETİKETLİ','2025-04-24 08:50:33.801','2025-05-23 16:06:52.757',NULL),
('10d22b54-2959-49b7-ac9c-935cb90eaedc','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-27 08:13:11.475',6525,'e6d4faef-484c-4ce7-992c-906e05fc083e','OSMAN ALTUN','4915772515215','4915772515214','Almanya','LİMBURG','65550','IM UNTERSTEN GRUND 1',18,2,110,'644901751','0','0',NULL,600,1,'1 PALET','2025-03-27 08:18:09.722','2025-04-25 12:44:06.842',NULL),
('10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-06-05 09:15:25.680',5815,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','TUĞBA BAĞCI','491736344643','','Almanya','BRAUNSCHWEİG','38122','STEİNBERGANGER 45',2,17.5,100,'126200859','0','0',NULL,6500,1,'TURUNCU ETİKETLİ','2024-06-05 10:16:28.932','2024-08-07 08:41:51.552',NULL),
('1106ac37-0c19-4da2-b605-9af60d1e2fd2','8fff5e14-418c-4377-bd83-3a3f81383507','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-18 08:51:28.945',2984,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NURDAN GÜNDÜZ','43676879613231',NULL,'Avusturya','WİEN','1100','OTTO PROBST STR 32/A/11',14,3,120,'437529604','0','0',NULL,540,1,'KREM ETİKET ','2025-08-18 08:53:23.841','2025-09-17 16:03:51.803',NULL),
('110f0eb8-2914-4e85-b599-dc743891806b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-10-30 08:32:35.317',8754,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','OĞUZ ÖZÇELİK','4915753541736',NULL,'Almanya',NULL,'22415','VOGTSHOF 8',4,6.5,100,'449203445','0','0',NULL,900,1,'KREM RENKLİ','2024-10-30 08:40:06.022','2024-11-23 12:17:27.924',NULL),
('1177acbb-1392-40c1-b24d-59dd7e3651a8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-17 11:42:36.772',3674,'85834865-ac23-4c00-a99b-c9551971a5a1','RECEP BEY','491794959823','','Almanya','','25746','',5,1,0,'858124295','1','1','Teşekkür hızlı ve herşey iyi geldi sizlerle çalışabilirim hep böyle devam maşallah',0,0,'','2024-10-17 11:43:41.667','2024-10-26 12:36:02.352',NULL),
('11b5e5b0-5008-4cd0-8348-2326293e7dcb','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-09-04 10:13:54.437',7063,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','ANONİM','905423036885',NULL,'İsviçre',NULL,'8404','8404 WİNTERTHURT',0,2,140,'92021344','0','0',NULL,0,0,'ürün detayları ve alıcı bilgileri revize edilecek','2025-09-04 10:19:21.733','2025-09-19 10:18:43.313','2025-09-19 10:18:43.312'),
('121f11bb-9b5a-4db0-a1ec-87c68b1ce47a','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-06 10:31:56.242',5778,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ELVAN DURSUN','31619649864',NULL,'Hollanda','LEİDEN','2301','LEİVEN DE',5,3,120,'437158505','0','0',NULL,570,1,'KIRMIZI ETİKET ','2025-09-06 10:33:43.532','2025-10-02 06:11:54.487',NULL),
('122e072e-9a04-4ece-a40c-c2aaa95b6630','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-15 11:27:48.293',2088,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA UZUNBOY','31634031801','31634031801','Hollanda','ARNHEİM','6836','İDA GERHARDSTRAAT 80  6836 V6 ARNHEİM',3,1,0,'478618410','0','0',NULL,0,0,'KREM RENK ETİKETLİ--- ESRA ALTINTAŞ MÜŞTERİSİNE BIRAKILCAK','2024-11-15 11:30:46.976','2024-12-05 16:18:43.895',NULL),
('12438c42-fc27-4ae8-8cff-d96af3f07b68','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-24 12:41:38.996',4740,'e6d4faef-484c-4ce7-992c-906e05fc083e','HASRET AVCI','491746264666','491795473589','Almanya','GELSENKİRCHEN','45897','STEİNKUHLE 26.B 45897',9,3,110,'644890175','0','0',NULL,950,1,'GRİ ETİKETLİ','2025-02-24 12:51:38.267','2025-03-18 18:32:54.342',NULL),
('125c6d79-f243-4cb8-a15a-74cffdb00247','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-24 08:45:28.091',9409,'3c7190b6-f6ee-4275-8958-d7af952132ab','FERHAT BOZBEYLİ','491788888667','4917683251891','Almanya','MÖRFELDEN-WALLDORF','64546','SAVOYEN RİNG 5 64546 MÖRFELDEN-WALLDORF ALMANYA',0,2,110,'371422337','0','0',NULL,2020,0,'köşe takımı, masa sehpa, puf, sandalye','2025-10-24 08:48:08.427','2025-10-24 08:48:08.427',NULL),
('12b5cb18-7b59-4361-9c5f-b40222dc7d16','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-01 09:16:57.960',9922,'47880255-08ee-4e99-940b-16038e07de55','MURAT KALKAN','33789432951','33685686692','Fransa','LANTHANEY','41200','17 RUE ANNE DE BRETAGNE 41200 ROMORANTİN LANTHANEY ',0,2,130,'478981977','0','0',NULL,550,0,'2m3','2025-10-01 09:19:53.391','2025-10-10 14:30:42.044','2025-10-10 14:30:42.043'),
('12e9e80a-5a59-4dbe-befb-126310a97b43','1764a07b-eb47-4578-b6cd-f3c0d0e743be','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-04 16:34:01.687',9299,'47880255-08ee-4e99-940b-16038e07de55','KISMET URDOĞAN','41764537057','41764537057','İsviçre',NULL,'8953','ZURİCH  / İSVİÇRE - 8953\n',9,2,140,'478560084','0','0',NULL,0,0,'Yeşil etiketli','2025-02-04 16:39:11.499','2025-02-24 20:28:04.441',NULL),
('12ee6998-24f5-4d1e-a05e-e05480e238bd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:55:08.511',5387,'73596a75-b658-4249-8c71-b0490654bc8b','İSABEL SEDRAYKYAN','004917663284963',NULL,'Almanya',NULL,'40211','GERRESHEİMER STR80',9,1,0,'735977134','0','0',NULL,2100,1,'SARI ETİKETLİ','2024-12-07 08:56:09.372','2024-12-19 14:53:56.125',NULL),
('12f34352-3245-4b1c-af57-1762c30010cd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-25 15:45:32.017',8115,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK','234242762767242',NULL,'Almanya',NULL,'47167',NULL,18,2,0,'223823107','0','0',NULL,0,0,'TONER KUTULARI','2025-04-25 15:46:26.669','2025-05-01 09:51:59.251',NULL),
('13119f2d-05d5-4b2d-b32f-396c12ed0ea0','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-06-03 12:00:15.741',4027,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','MUSTAFA','491639801426',NULL,'Almanya',NULL,'41539',NULL,5,15,110,'107623614','0','0',NULL,1650,1,'TURUNCU ETİKETLİ','2025-06-03 14:39:23.634','2025-06-22 09:26:27.307',NULL),
('131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 07:57:33.934',8922,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HİLAL YAVUZ','32485863945',NULL,'Belçika',NULL,'1780','DE LİMBURGSTİRUMLAAN 211',6,2,110,'982194447','0','0',NULL,2600,1,'MOR ETİKETLİ','2024-11-02 07:59:36.412','2024-11-12 16:17:08.742',NULL),
('131fd469-6ac9-4301-8b36-4007cc1563c0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:33:10.428',1672,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZNUR KOŞAK','4917683122321',NULL,'Almanya',NULL,'12359','MARTIN WAGNER RİNG 25',6,2,100,'745283034','0','0',NULL,750,1,'MAVİ ETİKETLİ','2024-12-17 17:10:00.141','2025-01-11 10:16:45.910',NULL),
('13382df8-a786-4221-b2be-81ba3d674937','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-22 16:49:13.595',7654,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','ARZU ASLAN','436603406293',NULL,'Avusturya',NULL,'1120','SUSİ-WEİGEL-WEG 1-5/31-1120',24,5,120,'675629833','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-06-22 17:07:17.475','2025-07-21 10:22:31.990',NULL),
('136523e8-0a3d-4719-a4d6-930b31cde60f','05135cd5-2d33-4363-b51e-c9b83a94094d','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-06-05 14:24:18.933',6886,'c2d4ce84-536d-4816-837f-7abbf6a7e061','İSMAİL ŞANLI','4917624386600',NULL,'Almanya',NULL,'82256','FÜRSTENFELDBURCK',21,2,110,'248710120','0','0',NULL,800,1,'KIRMIZI ETİKETLİ','2025-06-05 14:38:43.725','2025-06-16 20:21:19.772',NULL),
('1372768c-0132-475f-bd20-c5373f0785ae','394112c3-f977-4fc2-b430-775e79e472ca','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-28 20:06:45.071',4557,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NURTEN MENEKŞE ','33650234345',NULL,'Fransa',NULL,'87410',NULL,0,15.5,140,'982106314','0','0',NULL,720,1,'PEMBE ETİKETLİ','2024-12-28 20:10:30.132','2025-01-12 13:23:13.222',NULL),
('13870329-2aa7-4b40-89d5-b947358fe886','1764a07b-eb47-4578-b6cd-f3c0d0e743be','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-22 09:02:24.178',5389,'47880255-08ee-4e99-940b-16038e07de55','BÜNYAMİN ILIKSOY','33754109043','3352305296','Fransa','PARİS','78700','64 RUE DU GENERAL SARREİL 78700 CONFLANS SAİNTE -HONORİE PARİS',1,4.5,130,'478668622','0','0',NULL,1500,1,'PEMBE ETİKET','2025-09-22 09:04:20.156','2025-10-10 21:30:19.168',NULL),
('13aba735-b82d-4898-a98c-4167bb80085c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:21:21.930',9211,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','LYNDA MOUSSA','33753451993','','Fransa','VERRİE','49400','',12,1,110,'982425532','0','0',NULL,1350,1,'YEŞİL ETİKETLİ','2024-09-18 21:23:01.850','2024-09-28 09:04:10.925',NULL),
('13b7e986-8aa5-48cf-8d62-fdb2c0c334f3','1764a07b-eb47-4578-b6cd-f3c0d0e743be','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 08:45:04.191',8594,'47880255-08ee-4e99-940b-16038e07de55','MÜZEYYEN TEYMUROĞLU','491773968051','491788354147','Almanya','HAMBURG','22177','22177 HAMBURG',4,2,105,'478677950','0','0',NULL,4000,1,'YEŞİL ETİKETLİ','2025-02-24 08:51:32.904','2025-03-21 17:17:29.974',NULL),
('13c3c792-77da-4c87-b857-707f973cc267','eccfe611-9163-42aa-a1ff-e711af0248e6','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-25 13:52:47.518',9418,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÇİĞDEM UĞUR FRANSA','33768950442',NULL,'Fransa',NULL,'54700','1237 RUE DU BOİS LE PRETRE PONTA MOUSSON',15,2,120,'221158425','0','0',NULL,330,1,'BEYAZ ETİKETLİ','2025-02-25 13:55:20.296','2025-03-22 07:37:13.222',NULL),
('13c6ae04-64e7-4d5d-9d68-285118e320cf','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2024-11-07 13:31:28.090',8288,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP','491628157309','4917623201470','Almanya','NÜRTİNGEN','72622  ','HOLBEİN STR 31 /72622   NÜRTİNGEN /ALMANYA',0,1,100,'614308473','0','0',NULL,0,0,NULL,'2024-11-07 13:35:53.885','2024-11-07 13:54:05.726','2024-11-07 13:54:05.733'),
('13d25c6c-54a0-4d99-bbbe-499e98654a1c','804a2f53-7a26-4e8e-a505-7fc107953b50','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-16 08:29:02.399',7800,'a42d8839-caef-4422-888f-cbfdf4188c5b','FATİH KAZAR','4917683383437',NULL,'Almanya',NULL,'12529','SCHWALBENWEG 10',22,4,110,'428182749','0','0',NULL,0,0,'MOR ETİKETLİ','2025-07-16 08:31:20.968','2025-08-19 10:15:49.472',NULL),
('13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 10:18:56.928',8970,'52840269-0db7-4c57-8a50-57d49049f342','EMRE DİNÇ','4384548568','','Avusturya','OBERNBERG','4982','VORMARKT NONSBACH 43',0,3.5,0,'52896910','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2024-09-18 10:24:38.261','2024-09-24 16:00:34.897',NULL),
('13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:17:51.140',1409,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','ERSİN','4915254883380','','Almanya','','72636','',12,1,100,'126377805','0','0',NULL,0,0,'GRİ ETİKETLİ \nFAHREDİN ÖZENÇ MÜŞTERİSİNE BIRAKILCAK','2024-10-02 09:19:33.441','2024-10-09 11:10:47.116',NULL),
('13f14d6a-f39d-4909-acdc-fedbca6dd80d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-23 15:44:50.824',10755,'47880255-08ee-4e99-940b-16038e07de55','MERYEMA TEKİN','373737278373',NULL,'Fransa','PARİS','77130','2 BİS AVENUE LGENNEC PARİS MELUN 77130 MONTEREGU\n3 RUE JEAN BOUİN MONTEREAU  FAULT YONNE',7,2,130,'478958383','0','0',NULL,0,0,'BEYAZ ETİKET SSH ','2025-08-23 15:45:48.954','2025-09-07 10:15:22.011',NULL),
('14059478-ba08-4b58-99fe-dca8a607799f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-04-17 15:28:23.997',8365,'e6d4faef-484c-4ce7-992c-906e05fc083e','OSMAN ALTUN','4915772515215','4915772515214','Almanya','LİMBURG','65550','IM UNTERSTEN GRUND 1',0,2,110,'644331966','0','0',NULL,600,0,NULL,'2025-04-17 15:33:17.502','2025-04-17 15:34:58.806','2025-04-17 15:34:58.809'),
('140cb0d6-0404-46c4-b441-c9fa8beea92c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-22 20:30:51.293',2313,'27cbce83-310c-4e98-830f-7433b10c2efd','ÖMER SOLAK','436763237242',NULL,'Avusturya',NULL,'6134','JOSEF HEİSS STR 29',10,3.5,120,'27829651','0','0',NULL,1355,1,'AÇIK MAVİ ETİKET','2025-08-22 20:32:24.997','2025-08-30 18:25:16.939',NULL),
('142a82ad-defd-462a-a877-e872e40354a3','89428e9c-4d02-45c3-a044-0b2a5ac2465d','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-24 10:31:29.078',2769,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SONER UZUN','4917631753389',NULL,'Almanya','BRACKENHEİM','74336','SCHIEBRAINSTR 35',18,9,110,'976680764','0','0',NULL,3500,1,'açık mavi','2025-06-24 10:52:59.190','2025-07-07 06:55:23.558',NULL),
('14395ac1-388d-436d-a633-eb7f1c0beb39','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:07:17.851',1405,'b734c482-3c00-4897-ad35-bc358cd02d56','EMRAH MERCAN','33660364663','','Fransa','','42160','',17,2,100,'734970518','0','0',NULL,450,1,'AÇIKMAVİ ETİKETLİ','2024-05-04 10:08:24.140','2024-05-21 18:46:29.546',NULL),
('1447bfb1-b651-4bdb-b28a-c905ac844f05','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:52:41.328',7732,'b734c482-3c00-4897-ad35-bc358cd02d56','ELVİN ÇETİN','00491627384252',NULL,'Almanya',NULL,'89597','ALLENSTEİNER STR 64',18,5,0,'734955536','0','0',NULL,2700,1,'MAVİ BANTLI','2024-11-15 16:55:10.683','2024-11-28 09:15:31.466',NULL),
('144e05b1-97f8-4419-b9c5-ec6fc2546f88','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-08 18:28:30.168',8047,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','Ramish mirzayer','4917622016838','93788616359','Almanya','Bad hamburg','61350','Lindanailee 4A',1,4,100,'449354047','0','0',NULL,2300,1,'Turuncu etiketli','2024-05-08 18:31:57.983','2024-05-17 09:44:40.129',NULL),
('146fc510-0538-4dac-90fe-d885bf1490c4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-07-30 07:33:48.552',6568,'e6d4faef-484c-4ce7-992c-906e05fc083e','YASİN YAYLAK','491735905915','4921817047678','Almanya','GREVENBRAİCH','41515','IM BUCHFELD 19',0,3,110,'644234384','0','0',NULL,725,0,NULL,'2025-07-30 07:40:23.944','2025-08-19 12:36:48.916','2025-08-19 12:36:48.916'),
('147e8615-279e-4297-866d-fbccbd1231af','5c723cdc-e582-4b00-8271-838c085984c2','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-02 15:21:50.946',10021,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜSEYİN AKBANA','491634680218','4915510083523','Almanya',NULL,'25761','DANGIZER STRABE 16 25761 BÜSUM ALMANYA',2,9,105,'745191568','0','0',NULL,3300,1,'AÇIK MAVİ ETİKETLİ','2025-07-02 15:24:02.163','2025-08-21 21:29:33.155',NULL),
('148ecec2-cd7b-4ac3-88bc-9569bf15505e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:53:30.122',4308,'4126da30-ba9b-41b7-be29-865069aa484c','BATTAL','32476391369','','Belçika','','1600','ALBERT VAN COTTHEM STRAAT 70',10,33,60.61,'412565065','0','0',NULL,6500,1,'SARI ETİKETLİ','2024-03-23 07:56:25.558','2024-04-04 12:47:51.274',NULL),
('149850c7-89eb-4248-a529-b235c5710935','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-21 14:51:39.233',9580,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','RECEP ONAY ','491785990575',NULL,'Almanya',NULL,'86381','HÜRBENER STR',19,3,0,'465313266','3','5','🤷‍♂️unutulan esyami yeni teslim aldim sofor cok iyi bunun bir ise yarayacagini da zannetmiyorum ',0,0,'AÇIK MAVİ ETİKETLİ','2024-11-21 14:53:53.271','2024-12-09 17:29:19.987',NULL),
('14ccf007-d3c5-4576-b55a-7094ed23bee6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','66307a01-d585-4127-903b-18748421c29e','2025-04-26 10:02:45.476',1762,'a42d8839-caef-4422-888f-cbfdf4188c5b','FATİH KAZAR','4917683383437',NULL,'Almanya',NULL,'12529','SCHWALBENWEG 10',0,10,110,'428135973','5','3','Hizmet çok güzel, zamanında geldi eşyalarımız. Şoför iyi niyetli ve dakik.  fakat müşteriye nasıl davranacağını bilmiyor küfürlü ve argo konuşmaları var.   ',1300,1,'AÇIK MAVİ ETİKETLİ','2025-04-26 10:16:24.926','2025-05-10 20:48:21.493',NULL),
('150442fb-cc98-4a3d-861f-26845907dbfa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 06:45:42.134',2468,'a42d8839-caef-4422-888f-cbfdf4188c5b','FERHAT TUNA','491622633232','905439502626','Almanya','','41517','IM HERRENBUSCH 22',7,6.5,100,'42814374','0','0',NULL,2200,1,'AÇIK MAVİ ETİKETLİ','2024-06-08 06:49:16.463','2024-06-20 20:16:09.456',NULL),
('1510ebf8-1c9a-4576-83cb-afd76b0d011d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 20:22:50.727',1178,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','VALBOANA','41762266970',NULL,'İsviçre',NULL,'8583','STEİNACKERSTRASSE 9\n8583 SULGEN , SCHWEİZ',12,5,140,'786254351','3','3','.',1900,1,'Turuncu etiketli','2025-02-13 20:24:44.737','2025-02-24 20:28:04.441',NULL),
('15245f29-ed5d-405d-b5b2-37fae1f3e5f6','1764a07b-eb47-4578-b6cd-f3c0d0e743be','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-16 11:06:40.699',10748,'47880255-08ee-4e99-940b-16038e07de55','EMİN EKRAMOĞLU','33769000460','33769000460','Fransa',NULL,'67230',NULL,14,2,130,'478548963','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-04-16 11:08:05.551','2025-05-02 17:08:29.291',NULL),
('152de64e-7685-4980-ac8b-8970beb190fd','f784b688-ba6b-4886-87dd-fe4cfbed85b4','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-11 20:06:40.718',6175,'dea91080-5383-4085-af2e-7eace2c64224','GÖZDE TEMİZ		','33766319183','33749417037','Fransa',NULL,'11100','12 CHEMİN DE SAİNT JEAN 		\nRESİDENCE AİR		\nMARİN 11100 NARBONNE		\n',1,4,130,'910670298','0','0',NULL,850,1,'BEYAZ ETİKETLİ','2025-06-11 20:08:02.877','2025-06-26 08:18:44.849',NULL),
('1577420e-fa6a-4edd-a200-5ec0a2cbd43d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-03-15 14:17:52.209',5831,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÖZCAN ÇETİN','33604050932','','Fransa','PROVİNCE','77160','RUE DES PRES DE LA COMTESSE',4,9,110,'614725757','0','0',NULL,4740,1,'30 PC AÇIK MAVİ ETİKETLİ','2024-03-15 14:23:38.279','2024-05-08 21:08:12.685',NULL),
('1588a62a-68c3-4ab3-a790-c8924ac0f9c2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:24:01.640',2928,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MÜŞERREF GONCA','491625434501','491728436940','Almanya',NULL,'88400','MALIWEG 17',19,8,100,'745831913','0','0',NULL,3300,1,'TURUNCU ETİKETLİ','2024-11-15 16:25:39.879','2024-11-28 09:15:31.466',NULL),
('158f02f1-6bc3-4134-8f9c-7b088d6e5c2b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7bd09245-c179-4127-b0e1-46737615122b','2025-04-30 08:53:01.368',10679,'47880255-08ee-4e99-940b-16038e07de55','OSMAN BOZKAN','4917674951049','306978038133','Almanya','ROTTENBURG','72149','GARTEN STRABE 5. NEUSTETTEN/ ROTTENBURG  72149 ALMANYA',8,9,105,'478302796','0','0',NULL,2100,1,'TURUNCU RENK ','2025-04-30 08:59:06.723','2025-08-20 06:14:48.112',NULL),
('161a3eec-2f1c-415c-8536-7e1a1da5b969','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-08-26 13:35:50.246',9831,'853c3488-15ac-4631-aa14-318dedb447a4','HÜSEYİN KAYAOĞLU','33781091123','','Fransa','NOİSY LE DES','93130','30 CHEM DES CARROUGES ',4,12.5,0,'853766753','0','0',NULL,1375,1,'YEŞİL ETİKETLİ','2024-08-26 13:51:55.880','2024-09-14 19:01:35.933',NULL),
('1657f433-204b-4d15-aff8-0ea67bb24e0c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-21 06:48:58.888',8029,'4126da30-ba9b-41b7-be29-865069aa484c','BERKANT','32498162350','32488135313','Belçika',NULL,'3550','KORENHOF 34 - 3550 HEUSDEN,ZOLDER \nLİMBURG-BELÇİKA',11,2,0,'412252365','0','0',NULL,0,0,'GRİ ETİKET','2025-08-21 06:53:57.646','2025-09-03 19:36:05.327',NULL),
('1665dee0-24f9-42b5-b654-0fc276b61c52','394112c3-f977-4fc2-b430-775e79e472ca','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-05 09:26:35.176',3834,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MERYEM PEREZ ','33665221905',NULL,'Fransa',NULL,'38200',NULL,1,3,140,'982126318','5','5','👍🏼👍🏼👍🏼👍🏼👍🏼',850,1,'KIRMIZI ETİKETLİ','2025-03-05 09:27:36.297','2025-03-17 16:25:50.462',NULL),
('16715384-46fe-4d2a-88d8-8467cd5c6d5b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-07 14:16:56.220',5102,'47880255-08ee-4e99-940b-16038e07de55','EDİZ DİNLER','33621633706','33744724088','Fransa','PARİS','95380','4 RESİDENCE ANDRE MALRAUX LOUVRES FRANCE PARİS 95380',9,6,130,'478783487','5','5','5',1500,1,'YEŞİL ETİKETLİ','2025-04-07 14:23:37.888','2025-05-02 23:25:42.451',NULL),
('16a741e3-499a-4c78-b643-f7c20a086922','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-06-11 13:36:30.241',10365,'47880255-08ee-4e99-940b-16038e07de55','CAN ÇELİK','491742907800','4917685637648','Almanya','45357','ESSEN','DORNEBERGWEG 10 45357 ESSEN ALMANYA',2,9.5,105,'478507488','0','0',NULL,5000,1,'MOR ETİKETLİ','2025-06-11 13:39:39.525','2025-07-03 11:20:07.768',NULL),
('16c1502b-604e-4738-a2f1-13c522febb96','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-10 12:51:00.556',2306,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','DAVUT KAYHAN ','32485188062','32485062930','Belçika',NULL,'2630','FRİSTVAN DEN BERGHELANN 78',1,5.5,120,'517887763','0','0',NULL,1100,1,'YEŞİL ETİKETLİ','2025-03-10 12:56:52.053','2025-04-08 15:35:11.107',NULL),
('16d48fda-c874-40e8-a9da-275d6658ea3f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 09:31:31.579',6433,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','YAKUP EMİN GÜNEŞ','4917684353400','','Almanya','ISCHENDORF','50127','SANDSTRABE 131C',9,3.5,100,'982744560','0','0',NULL,1450,1,'','2024-03-12 09:37:48.381','2024-03-22 10:14:41.904',NULL),
('16d7b18b-4de1-4251-9407-87c514282aa9','313cc2e2-5529-49ab-abe5-27b5d390bc5f','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-20 16:12:54.894',1634,'6133a2db-79c4-4372-9338-505db46b1847','ZAINOUNE LOUBNA','33695724672','33781975694','Fransa','LE MANS','72100','11 RUE DES SABLONS, 72100 LE MANS',3,2,130,'613809111','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-03-20 16:16:17.226','2025-05-30 13:56:41.810',NULL),
('1710853d-7394-43e0-9868-1a68f0b61796','173956a2-c232-495a-b036-4a6a36c073e2','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-16 10:06:46.923',3254,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','İBRAHİM AYIK ','33608517581',NULL,'Fransa','SELASTAT','67600','4 RUE DU LİEUTENANT CASTAİNG \n67600 SÉLESTAT /FRANCE',15,6.5,120,'449728917','0','0',NULL,3000,1,'SARI ETİKETLİ','2025-04-16 10:10:01.848','2025-05-02 17:09:31.939',NULL),
('172f35f0-b688-47ce-a09e-605aeab33ec9','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-09-10 11:56:53.959',10081,'47880255-08ee-4e99-940b-16038e07de55','YASEF İCEL','33642608703','33607954368','Fransa','KALTENHAUSE','67240','3 RUE ROSENFELD ',0,2,130,'478494886','0','0',NULL,0,0,'SSH','2025-09-10 11:57:50.382','2025-09-16 06:24:34.151','2025-09-16 06:24:34.150'),
('175392bb-7213-43c6-b3da-6b01f5de3b51','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-19 15:32:51.646',5431,'a42d8839-caef-4422-888f-cbfdf4188c5b','HÜSEYİN ERCAN NAMAL','491734737192','','Almanya','BORKEN','46325','BRÜMMER STRABE 6',12,4,100,'428225143','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-08-19 15:35:09.215','2024-09-02 08:33:34.977',NULL),
('1761a5cd-665b-4d31-87c9-a191cdaf4d50','ca1490dc-0456-4517-a1c1-d45ab1c360c0','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-31 07:30:28.562',2777,'8d03b939-d544-45f8-8173-464bea4e67ab','GÜLŞAH KARAKAŞ','491635688741',NULL,'Almanya',NULL,'52477','WEİDENHOF 40\n52477 ALSDORF',13,2.5,110,'803828322','0','0',NULL,625,1,'MOR ETİKET','2025-07-31 07:32:17.018','2025-09-03 07:07:54.141',NULL),
('177d16d4-44e0-4c83-bf57-ccaa02fc61de','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:36:03.378',7491,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA YILMAZ','33682615843','33783160277','Fransa',NULL,'67240','3 RUE DU COMMERCE',11,2,110,'745445888','2','5','Hizmet 10 numara ama yolladiginiz takip linkten kargo durumu takip edilmedi zamaninda denilen gunde geldi sofor guler yuzlu 10 numar hizmet ',590,1,'TURUNCU ETİKETLİ','2024-11-15 16:38:00.215','2024-12-01 13:15:29.375',NULL),
('17a07c46-d669-4812-a1e6-7296886311ab','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-17 07:27:50.056',4013,'59868701-abe4-4705-a7e6-d91c2c69262e','MELİKZADE AHMET ATAY','4915158856914','4915158856914','Almanya',NULL,'52388','MAGNOLİENWEG 4, 52388 NÖRVENİCH ALMANYA',18,3.5,110,'598493196','0','0',NULL,750,1,'KIRMIZI ETİKET ','2025-09-17 07:36:20.339','2025-09-30 06:45:08.498',NULL),
('17a3d3ea-9822-46c1-a225-976edf021056','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-19 09:56:11.381',10805,'c2d4ce84-536d-4816-837f-7abbf6a7e061','INNSTRABE ','491738882350',NULL,'Almanya','ROSEZNHEİM','83022','INN STRABE 62',14,5,110,'248648996','0','0',NULL,0,0,'SARI ETİKETLİ','2025-03-19 09:59:28.780','2025-04-02 18:57:10.886',NULL),
('17c44301-4570-4224-802c-27bd566a17e6','5c723cdc-e582-4b00-8271-838c085984c2','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-05-07 12:02:38.981',8522,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET BAYTOK SSH','33749426479',NULL,'Fransa',NULL,'19200','13 PE CHAUDERQUE 19200 USSEL FRANSA ',5,2,130,'745253500','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-05-07 12:03:14.955','2025-10-16 06:54:27.770',NULL),
('17d4a677-f522-4e31-85af-9b012f78f44d','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-23 10:16:09.310',4989,'47880255-08ee-4e99-940b-16038e07de55','FATMA YILDIZ ','4915228390727','491625392793','Almanya','MANNHEİM','68219','MANHEİM 68219 ALMANYA',0,2,105,'478220285','0','0',NULL,1000,0,'3M3','2025-10-23 10:18:49.845','2025-10-23 10:18:49.845',NULL),
('17f5b0ed-7e87-4e65-98a6-bf2bebc4900e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-07 14:23:52.823',9962,'47880255-08ee-4e99-940b-16038e07de55','GÜL-MURAT AVCU','41762077419','41782110649','İsviçre','FONS','2300','RUE DEBİAFOND1  2300 LA CHAUX DE FONDS',12,2,140,'478919360','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-04-07 14:25:54.908','2025-04-23 17:45:52.850',NULL),
('17ff61a0-f389-446e-bb91-6ee68e1b222d','d008d786-a02e-404b-b090-54460d9d421e','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-23 21:55:49.218',4089,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ALİ ARSLAN ','0033758584410',NULL,'Fransa','NORDHOUSE','67150','1E RUE PFLAUMENGARREN',17,2,120,'657153999','0','0',NULL,0,0,'1 PALET','2025-07-23 21:59:56.477','2025-08-28 14:09:00.529',NULL),
('18160de0-d8d5-49f6-b6ca-04227578b93d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','acf5e984-44c0-4233-9521-0c373102472f','2024-11-25 13:18:27.280',2055,'193ed304-b86e-40a4-9bce-613f799736ab','HALİL İBRAHİM AKALIN ','33768242208',NULL,'Fransa',NULL,'08000','42 RUE FERROUL',4,4.5,0,'1936694','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-25 13:20:15.784','2024-12-24 12:30:25.814',NULL),
('183e4649-4c9e-491a-ab8a-0e24c8224108','5c723cdc-e582-4b00-8271-838c085984c2','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-25 08:56:54.978',5475,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLŞAH KUŞ','41796133167','41797024262','İsviçre',NULL,'1212','CHEMIN DE COMPOSTELLE 7 1212 GRAND LANCY İSVİÇRE ',10,9,140,'745219309','0','0',NULL,4000,1,'GRİ ETİKET ','2025-09-25 08:58:20.308','2025-10-15 08:32:34.227',NULL),
('1864d9b1-dcd3-4670-aa46-78f5576aa7cd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 10:56:41.873',2047,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','MAĞAZA','','','Fransa','PARİS','78130','32 RUE JEAN JAURES ',9,1,0,'027336842','0','0',NULL,1620,1,'KIRMIZI ETİKETLİ ROMÖRK','2024-07-20 10:58:58.786','2024-07-30 14:55:02.493',NULL),
('1879da27-b3bb-4922-be98-d1ddc5fe38a9','eccfe611-9163-42aa-a1ff-e711af0248e6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-24 08:57:36.833',2662,'22a1dbd6-475c-4d4b-bb13-f459e3029634','DERGHAM NAWEL ','33759392497',NULL,'Fransa',NULL,'68300','121 D RUE DE MULHOUSE 68300 SAİNT LOUİS',11,2,120,'22145441','0','0',NULL,775,1,'GRİ ETİKET ','2025-07-24 08:59:55.291','2025-08-29 16:53:21.383',NULL),
('188a35d6-cefe-4fff-b723-12226d6d2796','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-17 08:16:03.941',8146,'e6d4faef-484c-4ce7-992c-906e05fc083e','SERPİL KOCA','4917672828055','4917672730367','Almanya','GECSTHACHT','21502','TWİETE 4',0,3.5,110,'644637221','0','0',NULL,700,0,NULL,'2025-10-17 08:23:08.489','2025-10-23 12:02:39.596',NULL),
('18ddc51e-7bf4-420c-99ae-7e25b7cfa32f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-01 10:39:20.234',3809,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','SEMANUR KÜTÜKÇÜ','31648475188',NULL,'Hollanda',NULL,'5673','JONKER FLORİSLOON 47',3,4.5,110,'750145910','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-11-01 10:41:52.747','2024-11-12 16:17:30.024',NULL),
('18e20c12-0084-4178-a4a0-370a754f1563','eccfe611-9163-42aa-a1ff-e711af0248e6','436a1d7c-14cd-401b-8132-3d9c26d9d327','2024-12-27 10:58:20.388',5304,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HİLAL YILMAZ ','491727567055','491766154615','Almanya',NULL,'70825','BRESLAUSER STRABE 12/1 70825 KORNTAL-MÜNCHİNGEN BADEN- WÜTTEMBERG',15,2.5,100,'2213375','0','0',NULL,700,1,'GRİ ETİKETLİ-3 ADET DE KOLİ VAR SAAT KAYIŞLARI BU ADRESE YAKIN HABER VERCEZ GELİP ALCAKLAR','2024-12-27 11:01:11.763','2025-01-29 14:53:26.787',NULL),
('18ef4d21-d80d-45a3-9290-b7d6562f11b5','8fff5e14-418c-4377-bd83-3a3f81383507','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-20 11:11:05.430',5915,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SERAP ÖZTEK','4917634365178',NULL,'Almanya','LUDWİGSHAFEN','67067','KÖTHE-KOLLWİTZ ALLE11',24,5.5,110,'437660658','5','5','Cok memnun kaldik.',945,1,'YEŞİL ETİKET','2025-08-20 11:15:19.807','2025-09-04 06:49:25.990',NULL),
('190aceeb-f986-4f9a-b734-78ec3fc1e2f7','769f3044-7b21-4f0b-9fb6-6c8f6900dfd8','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-31 06:52:08.478',8755,'d1ba1223-4475-415e-b63f-154a9404e56e','ABDUL AHMAD','33766554745',NULL,'Fransa','MULHOUSE','68100','13 RUE EUGENE DELACRUİX',12,3.5,130,'112609358','0','0',NULL,1300,1,'BEYAZ ETİKETLİ','2024-12-31 06:57:23.811','2025-01-10 09:45:24.615',NULL),
('190d0f26-9ae1-44bb-91fe-2fddc3ae2695','8184d19c-0d1f-4439-978c-7a3364e54967','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-22 10:05:54.280',3184,'b0c1192a-7d38-4b69-a901-778f65a98b9d','SSH   UĞUR KAPLAN   ','436607580201',NULL,'Avusturya','VİYANA',' 1210','FERDİNAND-PLATZER-GASSE 3/1/16, 1210 VİYANA\nAVUSTURYA',18,2,120,'011811088','0','0',NULL,0,0,'BEYAZ ETİKET','2025-09-22 10:07:48.861','2025-10-15 08:24:27.667',NULL),
('1916783b-4f27-42eb-9741-6293c2d89316','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-16 10:02:53.456',9210,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','UMUT ETHEM EMRE ','31633087507',NULL,'Hollanda','GİESSENDOM','3371','HARDİNUXELD',3,3,120,'437101296','0','0',NULL,590,1,'MOR ETİKET ','2025-09-16 10:05:51.774','2025-10-02 06:12:04.731',NULL),
('1918bd79-b749-47cc-b3ab-efae4ee6b144','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-05-05 10:21:57.784',7311,'e6d4faef-484c-4ce7-992c-906e05fc083e','AHMET OKUTAN','32487160490','32470620199','Belçika','BERİNGEN','3581','ULFORSTRAAT 19',0,7,120,'64415501','0','0',NULL,1600,1,'(MOR RENK)','2025-05-05 10:29:06.106','2025-07-03 11:20:19.126',NULL),
('1935d2c6-346a-4632-90ac-9fab7da8d3f6','8fff5e14-418c-4377-bd83-3a3f81383507','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-17 11:40:16.204',6603,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','KAAN ALTINSOY','491728496024','491728496024','Almanya','ALBSTADT','72458','DANNECKER STR 138',17,2,110,'437591433','0','0',NULL,550,1,'AÇIK MAVİ ETİKETLİ','2025-03-17 11:42:23.952','2025-04-05 13:45:35.705',NULL),
('1943ad09-88d5-4276-8d90-1798cf356edb','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-18 10:40:29.115',1796,'e6d4faef-484c-4ce7-992c-906e05fc083e','REİNAS HAİDARİ','31620244050','31615081540','Hollanda','ENSCHEDE','7533','MORSESTRAAT 12, 7533ZH ENSCHEDE HOLLANDA',4,3,120,'644884110','0','0',NULL,1620,1,'KIRMIZI ETİKETLİ','2025-03-18 10:46:26.322','2025-04-08 15:37:49.807',NULL),
('1965b9c6-c511-459f-8f4e-dddb4f23f943','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-09 08:45:16.675',3739,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ALİ AKKAN','491636216129','4917622968923','Almanya','MÖNCHENGLADBACH','41239','FELD STR.9',16,12.5,110,'43725194','0','0',NULL,3200,1,'TURUNCU ETİKET ','2025-09-09 08:48:52.913','2025-09-30 18:47:42.066',NULL),
('197eebba-bc46-492a-86c8-87638b86150d','f784b688-ba6b-4886-87dd-fe4cfbed85b4','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-18 12:23:55.709',1154,'dea91080-5383-4085-af2e-7eace2c64224','BERFİN HALİS ŞENGÜL','4917634567085','4917630112093','Almanya',NULL,'71638','\"FRİEDRİCH-EBERT-STRASSE 58 \n\"		\n71638 LUDWİGSBURG 		\n',19,3.5,110,'910572875','0','0',NULL,700,1,'TURUNCU ETİKETLİ','2025-02-18 12:27:15.114','2025-03-17 14:53:57.989',NULL),
('19a75a47-9ec3-4217-9552-31d27faae3e4','313cc2e2-5529-49ab-abe5-27b5d390bc5f','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-01 08:42:09.336',10622,'6133a2db-79c4-4372-9338-505db46b1847','MANJUTHA VATHANASEELAN','41765200676','41765200676','İsviçre','AARBURG','4663','STRİCKEREİSTRASSE 2B\n4663 AARBURG / SWİTZERLAND',7,2,140,'613990071','0','0',NULL,355,1,' AÇIK MAVİ ETİKETLİ    325 CHF alınacaktır','2025-03-01 08:46:46.835','2025-04-26 16:16:55.623',NULL),
('19b98edb-d0d6-4399-8b6c-60219add529d','ab532050-8a54-4cb4-9e27-59229ab24a9b','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-22 14:43:53.884',8962,'338e8c09-4ca5-4617-bfc1-a0692646d475','NURTEN YILMAZ (SSH) ','4917632545443',NULL,'Almanya',NULL,'10965','FİDİCİN STR28 BERLİN 10965\n(TESLİM ALACAK YÜKSEL BEY)',18,2,110,'338842710','0','0',NULL,0,0,'MOR ETİKET  SSH','2025-09-22 14:47:34.763','2025-10-02 11:12:11.388',NULL),
('19c26519-0688-4a4d-a323-ec65ddad8463','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-08 08:10:58.960',3648,'47880255-08ee-4e99-940b-16038e07de55','DELİL ALGUNERHAN','33624490316','33650437486','Fransa','MAREİL EN','95850','9 RUE DELA FONTAİNE 95850MAREİL EN FRANSA',3,6.5,130,'478677262','0','0',NULL,2450,1,'GRİ ETİKET ','2025-09-08 08:13:42.793','2025-10-04 13:57:29.803',NULL),
('19e9a585-4bbd-4792-9b14-2af8605e433f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-18 14:02:15.590',6500,'e6d4faef-484c-4ce7-992c-906e05fc083e','HASAN KAYA','491777474184','4917685433742','Almanya','LAHR','77933','AM STERNENKELLER 19',9,3,110,'64413417','0','0',NULL,545,1,'MOR ETİKET','2025-09-18 14:08:37.786','2025-10-09 09:24:37.464',NULL),
('1a321f86-2bdc-4576-99e1-3d3d72eb1823','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-23 06:54:19.919',7398,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ARBESA SADRİJAJ','4917629501949','','Almanya','CHAM','93413','FLİEDER STRABE 1',0,5.5,100,'982533088','0','0',NULL,0,0,'SARI ETİKETLİ','2024-03-23 06:58:10.855','2024-04-10 16:26:48.741',NULL),
('1a38a8c4-2aa6-4815-816b-49ef6b71901e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-10 06:34:45.659',8022,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÜMİT ALBAYRAK','4917670705129','4917660956465','Almanya','NEUMÜNSTER','24537','FALDERSTRASSE 28 ',1,2,110,'644526832','0','0',NULL,1000,0,'MAVİ ETİKET','2025-10-10 06:42:18.913','2025-10-20 07:18:20.525',NULL),
('1a546dc5-d5a2-4124-a2a5-67bc24821f50','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-06 15:01:06.401',2998,'f23142ef-47ba-426c-9a22-bfb123cfac47','ÖZGÜR BOZKURT','33763889303',NULL,'Fransa',NULL,'33110','384 AVENUE DE LA LİBERATİON ENTREE ',3,5,140,'231211138','0','0',NULL,2750,1,'TURUNCU ETİKETLİ','2024-11-06 15:05:10.007','2024-11-25 09:20:39.164',NULL),
('1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 11:36:33.881',8971,'338e8c09-4ca5-4617-bfc1-a0692646d475','YUŞA SOYER','4917631174423','4917662030920','Almanya',NULL,'73770','KERNER STR 10',26,3,100,'338678802','0','0',NULL,0,0,'SARI ETİKETLİ','2024-11-21 11:42:22.872','2024-12-03 10:00:03.182',NULL),
('1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:55:54.214',3058,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','SİBEL OĞUZ','31631493312','','Hollanda','AMSTERDAM','1024','WATERLANDPLEİN 115',13,1,0,'750951041','0','0',NULL,0,0,'MOR ETİKETLİ','2024-09-27 12:03:53.611','2024-10-07 14:02:36.786',NULL),
('1aab780a-270d-4d41-aa6e-89172259c9fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:59:42.937',7298,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','TUNCAY AKAR','33658512711','','Fransa','RUMİLLY','74150','3 RUE DE GRUMİLLON',14,1,110,'745483178','0','0',NULL,200,1,'MAVİ ETİKETLİ','2024-05-04 08:01:37.198','2024-05-21 18:46:06.354',NULL),
('1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7','5c723cdc-e582-4b00-8271-838c085984c2','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-07-31 13:51:37.158',5403,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MAJD KAMSHA','491781854994','4915731363686','Almanya',NULL,'06124','GOTTFRIED SEMPER STRABE 9 06124 HALLE SAALE ALMANYA',21,2,105,'745653378','0','0',NULL,1700,1,NULL,'2025-07-31 13:52:41.504','2025-09-30 18:45:08.706',NULL),
('1ad43916-6b71-4844-8c13-9ae4882c08fd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 11:37:07.023',10293,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM BAĞCI 1','','','Almanya','','','',1,5,100,'745832267','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-10-11 11:40:53.817','2024-10-24 19:09:25.282',NULL),
('1ad7ddb4-76f9-481c-8d5d-2018e9c8e712','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-29 08:17:31.327',8915,'59868701-abe4-4705-a7e6-d91c2c69262e','TUĞÇE ÖZKAYA','491747823424','491728743891','Almanya',NULL,'68809','TULLASTR. 17, 68809 NEULUSSHEİM ALMANYA',28,2,110,'598587609','0','0',NULL,500,1,'AÇIK MAVİ ETİKET','2025-07-29 08:21:10.436','2025-09-03 19:38:01.269',NULL),
('1ae924c7-e6f6-4715-8c97-f693d6de2fda','56323a39-e192-4016-a254-840950ca2e27','b624c770-5cbb-488e-8512-45ad975a729d','2024-11-28 15:03:43.817',5668,'7f34d75e-284a-42ac-9cbe-a29174748991','ÖZLEM SAĞIR','491631534915','491731699402','Almanya','LÖHNE','32584','AM VERREDAMM 13 32584 LÖHNE ',10,4.5,0,'73427297','0','0',NULL,750,1,'BEJ RENK ETİKETLİ','2024-11-28 15:06:34.999','2025-01-21 19:54:49.989',NULL),
('1af2876c-3389-4499-8232-9de4f494db77','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-24 08:04:27.248',9450,'3c7190b6-f6ee-4275-8958-d7af952132ab','SILAMNIKU ALTRIN','41792382873','41792382873','İsviçre','VİLLENEVVE','1844','CHEMİN DU CABİNET 9 1844 VİLLENEVVE İSVİÇRE',5,2.5,140,'371396579','0','0',NULL,950,1,'YEŞİL ETİKETLİ','2025-04-24 08:08:01.324','2025-05-25 19:11:33.904',NULL),
('1aff7295-6f61-4138-b273-b03f55942801','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-01 09:02:19.457',8032,'3c7190b6-f6ee-4275-8958-d7af952132ab','AKIN COŞKUNSU','491606817658','491606817658','Almanya','ATTENDORN','57439','DANZİGER STR 10D 57439 ATTENDORN ALMANYA',22,3.5,110,'371365427','0','0',NULL,950,1,'TURUNCU ETİKET ','2025-10-01 09:03:40.684','2025-10-17 06:14:44.871',NULL),
('1b163e3d-0d8a-4a00-b303-d452c744557b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-30 14:13:23.228',3260,'47880255-08ee-4e99-940b-16038e07de55','ZEYNEP CİHANGİR','4915901358916','4917621155442','Almanya','DORTMUND','44263','\nAM HEEDBRİNK 4\n44263 DORTMUND',4,2,105,'478678849','0','0',NULL,0,0,'SARI ETİKETLİ','2025-05-30 14:15:12.635','2025-06-22 09:26:46.562',NULL),
('1b20804a-76a0-418e-b22d-40783c68915b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-09 08:47:26.411',8504,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','HAFİZE GÜNEY ','4917647800347','491794407859','Almanya',NULL,'99974','KARL MARX STRABE 34',16,6,100,'319382208','4','4','Kargo geç geldi baya',1500,1,'GRİ ETİKETLİ','2024-12-09 08:49:36.895','2025-01-11 08:46:56.083',NULL),
('1b527261-0f20-432f-8edd-bf02ae683a47','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-18 12:42:03.213',10818,'47880255-08ee-4e99-940b-16038e07de55','NİHAL KURU','4917663069031','4917663069031','Almanya','ALTDARF','71155','SCHİLLER STRABE 131 71155 ALTDARF ALMANYA',16,3.5,100,'478380707','0','0',NULL,500,1,'SARI ETİKETLİ','2024-11-18 12:44:06.524','2024-12-09 17:29:19.987',NULL),
('1b611478-1dbd-4a35-9f49-606526e2fe1b','394112c3-f977-4fc2-b430-775e79e472ca','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-10 06:59:12.703',6833,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','CEYLAN YILMAZ ','4917664019933',NULL,'Almanya',NULL,'90763',NULL,10,2,140,'982464994','0','0',NULL,700,1,'KIRMIZI ETİKETLİ','2025-03-10 07:00:03.977','2025-04-04 09:29:40.653',NULL),
('1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-07 07:34:28.021',5443,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','MEHMET AKİF ATAMAN','491629139526',NULL,'Almanya',NULL,'71522','SEELACHER WEG 13',17,4,110,'750498273','0','0',NULL,0,0,'BEJ RENK ETİKETLİ','2025-03-07 07:37:26.756','2025-03-17 14:54:04.694',NULL),
('1b6f0f97-a485-43b5-9b80-a51adf1e7b83','5c723cdc-e582-4b00-8271-838c085984c2','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-12 13:34:51.087',8349,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ORHAN ÖZSOY','491787159677','495451801422','Almanya',NULL,'59199','AUFVORWIGSHOF 6 59199 BÖNEN ALMANYA',11,2,105,'745140498','0','0',NULL,690,1,'TURUNCU ETİKETLİ','2025-02-12 13:38:09.701','2025-03-06 15:54:32.345',NULL),
('1b95f6b8-b318-4efe-90f5-5c3bca7a5637','8fff5e14-418c-4377-bd83-3a3f81383507','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-15 09:55:38.741',2216,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','YASEMİN ÖZKILINÇ','4369916121712',NULL,'Avusturya','FELDKİRCH','6800','HELDEN STR. 54',23,2,140,'437819954','0','0',NULL,1100,1,'MOR ETİKETLİ','2025-04-15 09:58:01.482','2025-05-02 17:08:29.291',NULL),
('1bb074a3-ddf3-432d-9ee8-e36060092ef8','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-07 09:59:40.878',5927,'59868701-abe4-4705-a7e6-d91c2c69262e','MERT ÇİÇEK','491743051897','491727368947','Almanya',NULL,'65428','FRİEDRİCH-EBERT-STR 31, 65428 RÜSSELSHRİM AM MAİN',22,7.5,110,'598954734','0','0',NULL,2800,1,'YEŞİL ETİKET','2025-08-07 10:03:18.808','2025-09-10 07:23:56.170',NULL),
('1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-21 15:05:06.983',8303,'59868701-abe4-4705-a7e6-d91c2c69262e','SABİNA KAYA','4915222605151','491778742178','Almanya',NULL,'66386','RAİNHOLD BECKERSTRASSE 45, 66386 SANKT İNBERT',16,3,110,'598548833','0','0',NULL,695,1,'TURUNCU ETİKET','2025-08-21 15:07:22.447','2025-09-06 07:18:57.693',NULL),
('1bda9f39-f27b-4736-be6f-b3d3489888ad','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-19 11:36:03.745',2667,'a42d8839-caef-4422-888f-cbfdf4188c5b','KADİR ÖZCAN ','491749753629','4917635994280','Almanya',NULL,'67433','NEUSTADT AN DER WEİNSTRABE',24,1,0,'428159880','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-19 11:37:33.032','2024-12-03 10:00:22.117',NULL),
('1be311ce-e06b-49b5-89b4-ca8a3ecea45f','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-12 09:11:52.092',3350,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','DİLBER ÖZTÜRK','5444482458','5413112906','Almanya',NULL,'78727','78727',11,9.5,110,'319585140','0','0',NULL,1000,1,'GRİ ETİKET ','2025-09-12 09:15:22.851','2025-10-09 09:24:47.314',NULL),
('1c1071fa-bd95-40d4-8ed1-ab7e019add96','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-26 14:15:40.158',6157,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','FERHAT ','4915145859337',NULL,'Almanya',NULL,'81375','HEDERFELD 16',22,2,110,'750728735','0','0',NULL,500,1,'TURUNCU ETİKETLİ','2025-05-26 14:17:09.759','2025-06-16 20:21:15.376',NULL),
('1c14969a-f21e-4d10-ad0e-526d04fe3018','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-08 08:34:04.702',5448,'47880255-08ee-4e99-940b-16038e07de55','MİNA ANNABİ','33625698024','33770014809','Fransa','NANCY','54600','9 RUE MARTİAL MOUNT  54600 VİLLERS LES NANCY FRANSA',5,2,130,'478278253','1','1','Très très très déçu de votre service . Livraison très très tardive on ne nous laisse pas le choix. Canape laissé dans la rue très loin je suis une femme seule et le livreur qui ne  eut pas aider sauf si je le paie. Inadmissible ',2000,1,'KIRMIZI ETİKETLİ\n','2025-05-08 08:36:35.987','2025-05-22 16:07:05.483',NULL),
('1c22473f-9acf-4632-b67d-e2661b059739','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-05-22 11:56:16.552',8563,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','İREM ÖZCAN','0041768021502','0041768021502','İsviçre','OBERRİET','4,  9451','NELKENWEG4,9451 KRİESSERN /OBERRİET İSVİÇRE',0,2,140,'127405848','0','0',NULL,0,0,NULL,'2025-05-22 12:07:34.266','2025-05-23 18:48:16.039','2025-05-23 18:48:16.042'),
('1c37ec40-77c6-4885-995d-696850992a10','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 13:04:25.653',6680,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','005313459454','','Almanya','OSTFİLDERN','73760','GERHART HAUPTMANN STR 69',1,1,0,'24889830','0','0',NULL,750,1,'AÇIK MAVİ ETİKETLİ','2024-09-09 13:07:02.922','2024-09-16 17:09:34.647',NULL),
('1c435a89-18ee-4459-a82f-d4e80b7c4daa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2a352437-950c-42a9-9135-55482cf3977c','2025-08-12 13:20:14.652',8658,'33cc49ad-e7a0-4ee9-9120-2a98bd963a47','AHMET YILDIRIM','436601909208',NULL,'Avusturya',NULL,'5581',NULL,11,3,120,'334206952','0','0',NULL,900,1,'AÇIK KAHVE ETİKET','2025-08-12 13:21:16.159','2025-08-21 08:14:06.251',NULL),
('1c4d1793-ac06-480e-9fec-1ed042f34347','8fff5e14-418c-4377-bd83-3a3f81383507','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-22 07:51:33.770',3266,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ALİ KURUÇAM','4367763453759','436506740424','Avusturya','LUSTENAU VORADBERG','6890','BRUGGER WİESEN 9A',7,5.5,120,'437707209','0','0',NULL,1140,1,'KIRMIZI ETİKET ','2025-08-22 07:54:17.657','2025-09-19 12:35:14.905',NULL),
('1c5bab65-b13f-47a3-a069-66dac652ca30','5c723cdc-e582-4b00-8271-838c085984c2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-12 15:06:54.663',4669,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEYİTHAN ASLAN','4917632406392','4917670211470','Almanya',NULL,'74257','UNTEREISESHEIM HEILBRONN 74257 ALMANYA',26,3,105,'745212688','0','0',NULL,1400,1,'MOR ETİKETLİ','2025-06-12 15:09:23.350','2025-07-23 06:22:07.807',NULL),
('1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-20 12:49:06.574',7249,'22a1dbd6-475c-4d4b-bb13-f459e3029634','STEPHANİE GOSSEYE','32483589693',NULL,'Belçika',NULL,'2000','GENERAAL BELLİARDSTRAAT 14,BUS 204,2000 ANTWERPEN',11,2.5,120,'221669694','0','0',NULL,825,1,'MOR ETİKETLİ','2025-05-20 12:50:41.260','2025-06-06 17:34:45.657',NULL),
('1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-05 11:04:37.829',4615,'e6d4faef-484c-4ce7-992c-906e05fc083e','İSA ALTUNER(K)','4917662047027','4917632543868','Almanya','HEİLBRONN','74081','MAX PLANCH STR.20',18,2.5,110,'644422105','0','0',NULL,1025,1,'TURUNCU ETİKET ','2025-09-05 11:11:34.489','2025-09-30 06:16:22.259',NULL),
('1ccb123e-55ae-441d-b623-a1914d69bafb','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-19 15:19:21.382',6226,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÖMER NEBİ ÖZDEMİR','3363710364',NULL,'Fransa','BELLEVİLLE-EN ','69220','-47RUED\'AİGUERANDE 69220 BELLEVİLLE-EN - BEAUJOLAİS',0,2,130,'614789435','0','0',NULL,700,0,NULL,'2025-10-19 15:23:52.089','2025-10-20 10:57:12.383',NULL),
('1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-08 07:52:57.964',2415,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YUSUF KAYA','32485432209','32465090657','Belçika',NULL,'2060','ERWTEN STRAAT 47',12,2.5,100,'501760253','0','0',NULL,0,0,'PEMBE ETİKETLİ—- BU ADRESDEN ÜRÜNLER ALINIP SAİT CARCUR A BIRAKILCAK','2024-11-08 07:57:02.631','2024-12-05 16:17:13.323',NULL),
('1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-24 08:51:24.123',4020,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','EDİSA MUSTAFSOVSKA','4368120943457',NULL,'Avusturya','VİYANA','1120','SPİTTELBREİTENGASSE 26/12-1120',21,2,120,'675412794','0','0',NULL,660,1,'KIRIMIZI ETİKET','2025-09-24 08:55:44.918','2025-10-13 06:39:58.734',NULL),
('1d5b2e29-00c0-4ef0-bfe8-d62f921bed94','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:10:45.698',5582,'4126da30-ba9b-41b7-be29-865069aa484c','EURO STAR MOBEL','491639801426',NULL,'Almanya',NULL,'41539',NULL,13,3,100,'412417422','0','0',NULL,300,1,'GRİ ETİKETLİ','2024-11-02 08:12:34.909','2024-11-09 18:54:29.480',NULL),
('1d68877d-7e86-47a0-8436-b6e2ee888f3d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-23 08:08:10.162',9365,'47880255-08ee-4e99-940b-16038e07de55','FATMA ALBAYRAK','491551014119','05531042901','Almanya','OLPE','57462',' SİEGENER STR 110 57462 OLPE ALMANYA',24,4,105,'478935366','0','0',NULL,1500,1,'AÇIK MAVİ ETİKET','2025-07-23 08:10:13.381','2025-09-02 06:52:12.482',NULL),
('1d8366a7-8e61-4b91-ad70-62acf43daa32','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-22 13:25:00.448',2311,'47880255-08ee-4e99-940b-16038e07de55','KIYMET KARA','491626248441','4962425033377','Almanya','VORMUS','67547','PETRUSDORN STRABE 14/A 67547 VORMUS ALMANYA',23,3.5,100,'478606230','1','1',' Evet  serhat  bey  tırşöferi\n kargo    Aldıklarımızı teslim etti    bu gün ',1100,1,'MAVİ ETİKETLİ','2024-11-22 13:28:18.542','2024-12-03 21:28:25.837',NULL),
('1d98874a-3c1d-4a2e-ad9b-b943512896cd','394112c3-f977-4fc2-b430-775e79e472ca','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-09 10:34:41.197',3417,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','CAROLİE KENZA ','330665221905',NULL,'Fransa',NULL,'38200',NULL,10,2.5,130,'982212726','5','5','😀✔️✔️✔️✔️✔️✔️✔️',1200,1,'AÇIK MAVİ ETİKETLİ','2025-01-09 10:36:20.233','2025-01-20 11:19:49.091',NULL),
('1d9f810e-286d-4bae-8abd-224e036ce2c8','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-09-15 09:59:40.661',4027,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ADEM DEMİR ','33787094714',NULL,'Fransa',NULL,'29000','13 PLACE DECOSSE 29000 QUIMPER FRANCE ',0,4,130,'745197948','0','0',NULL,1000,0,'3 M3 ','2025-09-15 09:58:59.749','2025-09-19 12:03:02.628',NULL),
('1db28ca3-8c27-419d-877e-64aa6a075f69','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:24:29.216',2819,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MURAT KARAOĞLU','491747392825','4915739428286','Almanya','BERLİN','14089','GATOVER STR 313',9,5.5,100,'745629044','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2024-11-12 15:26:06.327','2024-11-23 12:17:08.607',NULL),
('1e0e887d-6244-4f8b-a7d0-710cf6802438','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-18 13:28:49.891',2843,'e6d4faef-484c-4ce7-992c-906e05fc083e','ERHAN ÇEKİÇ','4917630133122','491602272143','Almanya','INGELHEIM','55237','LEİNPFAD 2',18,5,110,'644445996','0','0',NULL,1450,1,'SARI ETİKET ','2025-09-18 14:02:41.818','2025-10-14 09:35:44.975',NULL),
('1e1adb91-c239-4909-b5fa-ff18ba2d8157','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-02 13:11:41.414',8713,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','VENERA RUSTEMİ','4915560564579','4915560564579','Almanya','MEİNE ADRESSE: SAMİR RUSTEMİ MAXİMİLİANSTR 6 75172 PFORZHEİM','75172','MAXİMİLİANSTR 6',25,4.5,110,'817838997','0','0',NULL,1350,1,'turuncu renk','2025-06-02 13:13:57.498','2025-07-23 06:22:15.027',NULL),
('1e3e8ac2-1a23-459a-86a3-92cf233a6f66','804a2f53-7a26-4e8e-a505-7fc107953b50','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 06:48:03.891',9182,'a42d8839-caef-4422-888f-cbfdf4188c5b','NADİR KURUKOL ','4915788014296','4917631419046','Almanya',NULL,'70327','NÄGELESÄCKER STR. STUTTGART(LUGİNSLAND)',22,2,110,'428414858','0','0',NULL,200,1,'GRİ ETİKETLİ','2025-04-24 06:50:41.706','2025-05-20 16:27:47.262',NULL),
('1e582ab5-26a1-4aad-96cc-f8f8f5507030','05135cd5-2d33-4363-b51e-c9b83a94094d','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-19 10:13:54.363',6144,'47880255-08ee-4e99-940b-16038e07de55','YASEF İÇEL','33642608703',NULL,'Fransa',NULL,'67240','3 RUE ROSENFELD',12,2,130,'478723817','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-04-19 10:15:36.549','2025-05-02 17:08:29.291',NULL),
('1e6caf49-6860-42e7-be14-c5cb6dd899e2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-21 12:44:42.293',9532,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MESUT AKYÖN','11111111111111',NULL,'Avusturya',NULL,'1020','NORDBAHN STR 13/143\n1020 VİYANA / AVUSTURYA ',11,2,120,'437481013','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-05-21 12:46:01.750','2025-06-03 09:41:23.291',NULL),
('1e88a712-77d4-4c0d-9244-0239da63195b','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-29 07:26:57.333',3628,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','MAHMUD YUSUF ÖKDEM','491627680129','491627680129','Almanya',' KÖSCHİNG',' 85092','BAHNHOFSTR. 42, 85092 KÖSCHİNG',16,3,110,'127253098','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-01-29 07:31:06.295','2025-02-23 09:30:56.747',NULL),
('1e9ad390-bf85-414e-98b1-b7175b25c837','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-11 12:12:26.212',7577,'e6d4faef-484c-4ce7-992c-906e05fc083e','TAYFUN ŞENGÜL','4917623697326','4917681094812','Almanya','KREFELD','47829','KASTANİENSTRABE 114',11,2,110,'644424764','0','0',NULL,500,1,'PEMBE ETİKET','2025-08-11 12:19:36.175','2025-09-12 06:56:06.375',NULL),
('1e9c1aa6-f481-4959-ba4d-d29600769920','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:43:46.933',7347,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','BAŞAK BEYOĞLU','4915755360334','','Almanya','ESSEN','45139','',8,1,0,'750501209','2','3','Getirdiğiniz ürünlere biraz değer verin. Çöp taşımıyorsunuz ',0,0,'SARI ETİKETLİ','2024-09-05 15:45:59.664','2024-09-12 13:23:06.121',NULL),
('1e9d42ff-05cc-460b-bc22-065b93bef5b5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5d69534a-5f21-44ba-8343-594269f45f1a','2024-07-20 10:21:55.187',10313,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','DURMUŞ MEVLÜT','31612139530','316212833629','Hollanda','ALMELO','7603','SPINNERIJ 35',1,1,100,'614873400','0','0',NULL,0,0,'','2024-07-20 10:23:45.522','2024-08-05 19:56:07.288',NULL),
('1ea05f4a-9cd8-431a-834f-290a784ba20f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-20 09:08:01.678',10973,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','MUSTAFA NARİN','491635454335','491624269090','Almanya',NULL,'40489',NULL,15,5,110,'319911664','0','0',NULL,0,0,'BEJ RENK ETİKETLİ','2025-02-20 09:09:06.802','2025-03-06 10:33:31.427',NULL),
('1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-25 19:23:03.287',2564,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MAİL BOXES ETC ','1111222222222222',NULL,'Almanya',NULL,'45768','BRASSERT STRABE 34',14,2,0,'223896175','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-03-25 19:25:09.841','2025-04-07 17:30:05.099',NULL),
('1ec0ce5d-771e-4436-84c6-caea3a7da2de','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-24 06:11:31.691',10712,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',' MAHMUD YUSUF ÖKDEM(SSH)','491627680129','491627680129','Almanya','KÖSCHİNG','85092',' BAHNHOFSTR. 42, 85092 KÖSCHİNG',22,2,110,'127945692','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-03-24 06:16:29.248','2025-04-04 17:24:37.240',NULL),
('1ec8b3a1-d058-45b7-aba0-c8d3eae82e19','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-09 13:10:31.997',9195,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİEFABRİC','4920350083648','','Almanya','DUİSBURG','47167','HEUSS STRABE 60',12,4,100,'223433822','0','0',NULL,0,0,'MOR ETİKETLİ KOLİLER','2024-10-09 13:19:00.789','2024-10-24 19:09:25.282',NULL),
('1ee5a386-3625-40ef-8fa2-25fe7d75616b','92fdfc3f-30a0-47d1-a5dc-275b7de3ed7f','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-02-06 11:09:58.813',6800,'0dae8190-b900-4826-9171-b2d74a2538b0',' MUSTAFA KHALİFEH','4917620747376',NULL,'Almanya',' MEMMMİNGEN','87700 MAMMO STR 18',' MEMMMİNGEN 87700 MAMMO STR 18 GERMANY',11,5,110,'081982015','0','0',NULL,1200,1,'YEŞİL RENK ETİKETLİ','2025-02-06 11:12:42.406','2025-03-13 15:28:39.032',NULL),
('1ee695b2-e6cc-43a6-8353-dfb5294700ed','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-18 11:40:53.210',4518,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MİHAND SAFAE ','33660895865',NULL,'Fransa',NULL,'44470','22 RUE PAUL VERLAİNE 44470 THOVARE SURE LOİRE',1,2.5,130,'221257971','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-03-18 11:42:25.767','2025-05-03 15:28:14.552',NULL),
('1eee00b6-90f3-4331-83c5-6bef65b0bf33','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-14 15:02:25.552',10836,'59868701-abe4-4705-a7e6-d91c2c69262e','SEVGİ BOLAT','491726827478','491733557232','Almanya',NULL,'74076','PFÜHLSTRASSE 15 HEİLBRONN 74076 ALMANYA',19,2,110,'598250504','0','0',NULL,990,1,'AÇIKMAVİ ETİKETLİ','2025-07-14 15:04:25.887','2025-07-26 21:25:24.118',NULL),
('1f3c011b-b082-4eaf-a3ea-8f8ab2934010','eccfe611-9163-42aa-a1ff-e711af0248e6','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-24 08:33:01.200',1962,'22a1dbd6-475c-4d4b-bb13-f459e3029634','CEM KONDU','33782039319',NULL,'Fransa',NULL,'74300','515 AVENUE DES VALLESS 74300 THYEZ',4,2,130,'221686815','0','0',NULL,275,1,'AÇIKMAVİ ETİKETLİ','2025-04-24 08:34:05.121','2025-05-25 19:11:38.702',NULL),
('1f667c31-0a45-4450-be98-281039258085','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-10-24 09:35:46.166',8199,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MEHMET ALİ ÇAKIROĞLU ','4940403022','27293030330','Almanya',NULL,'2627282',NULL,17,2,100,'223744518','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-10-24 09:38:04.145','2024-11-25 09:20:39.164',NULL),
('1f693920-f2af-4070-9034-3b5ae439f603','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:06:55.458',7902,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','PEPE DİMBİ GRACE','33666954029','','Fransa','TROYES','10000','2B QUAİ DAMPİERRE',9,1,110,'982219496','0','0',NULL,1350,1,'KIRMIZI ETİKETLİ','2024-09-18 21:09:24.726','2024-09-27 16:39:50.359',NULL),
('1f6f8681-0eb0-40ff-b660-5e573091098c','d4cae326-953d-4da4-b88b-53535f8f8cd3',NULL,'2025-09-09 13:10:23.895',2247,'5b04798d-86e0-44d7-9219-194a32dc85ff','DJDJJDDJD','4895858547478338',NULL,'Almanya',NULL,'4567','FJKGGG',0,2,110,'504772058','0','0',NULL,1000,0,NULL,'2025-09-09 13:11:58.312','2025-09-09 13:12:52.964','2025-09-09 13:12:52.963'),
('1f7b65a0-1a7c-4441-b49f-65934040cb94','38f55ecc-79e1-4650-a77b-c756f8cd8fab','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-14 06:22:56.000',4625,'d89f6e4c-ad0d-4d1f-98c2-188a94803196','KATRİN MESİNGER','491709668487','491717951084','Almanya','KİRN ','55606','PAUL-EHRLİCH-STRASSE 8, 55606 KİRN',17,2,110,'896847151','0','0',NULL,350,1,'YEŞİL ETİKET','2025-08-13 13:37:10.783','2025-09-05 08:51:08.802',NULL),
('1fa393a0-6e5c-4c85-ba8f-0b92d38af36e','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2024-12-28 19:55:07.012',4757,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','YASMİNE ','33753661602',NULL,'Fransa',NULL,'66200',NULL,2,1,140,'982824242','0','0',NULL,900,1,'PEMBE ETİKETLİ','2024-12-28 19:59:23.594','2025-03-04 15:38:24.059',NULL),
('1fb32e39-501f-48b7-ba50-860c26209b78','89428e9c-4d02-45c3-a044-0b2a5ac2465d','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-06 19:55:42.694',8554,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','Mustafa İlhan','33620807187',NULL,'Fransa','Talange','57525','22 Rue Boris Vian',4,4.5,110,'976369647','4','3','Hafta içi olduğu için tektim, şoför arkadaş taşımaya yardımcı olmak istemedi. Biz Türkler Yardımsever diyoruz buradaki yabancılara, o buna  ters davrandı ama , Herşey Sağlam geldiği için \nGenel  olarak \nMemnun Kaldım Teslimattan  !!! \nTeşekkürler  !!',1300,1,'YEŞİL ETİKETLİ','2024-11-06 20:04:11.203','2024-12-04 07:45:05.348',NULL),
('2001cb25-64fc-43dd-827f-15869eca039f','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-14 10:03:32.369',5041,'47880255-08ee-4e99-940b-16038e07de55','BİLAL AYTAR','31642748016','31614972751','Hollanda','BARENDRECHT','2994','CEDER HOUT 16  2994 B ARENDRECHT HOLLANDA',0,7,120,'478702481','0','0',NULL,4000,0,'9m3','2025-10-14 10:07:16.729','2025-10-24 07:33:15.308',NULL),
('2022b96f-403f-4258-b521-3378c40a33b7','eccfe611-9163-42aa-a1ff-e711af0248e6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-15 06:09:22.605',2349,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HASAN BİLECEN (SSH)','31624237190',NULL,'Hollanda',NULL,'3531','BOEROEHOF 16, 3531 WH UTRECHT',2,2,120,'221996027','2','2','2 veriyorum cunku benim teslimatim eve kadar getirilmedi ben 35 km gittim baska bi musterinizin evinden aldim geldim bu niye boyle oldu anlamadim hizmet hic begenmedim kabul edilir gibi degil benim eve kadar getirmedi',0,0,'AÇIK MAVİ','2025-09-15 06:10:40.531','2025-10-02 09:42:02.163',NULL),
('202d1194-6695-4d7d-9f50-b6cebb37d56a','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-01-22 09:53:05.403',1328,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','DAMLA KARGÜN','004915785105369','004915785105369','Almanya',' SENDEN','48308','AM SCHLOSSPARK 14, 48308 SENDEN/ALMANYA',0,2,110,'127809639','0','0',NULL,3000,0,NULL,'2025-01-22 10:02:28.248','2025-01-24 06:52:02.661','2025-01-24 06:52:02.664'),
('203b6560-2fe1-4637-804e-b6b6df86b59f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 06:47:07.050',10287,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','PINAR BARUTÇU','491575264110','4917683290603','Almanya','BOCHUM','44795','WEİTMARER STRABE 3 A',5,4.5,100,'6148124','0','0',NULL,3350,1,'MAVİ ETİKETLİ','2024-03-23 06:51:32.406','2024-04-03 18:54:49.660',NULL),
('2068e6bf-22ee-4b92-9be7-bbb6d829aaca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:40:20.385',8015,'47880255-08ee-4e99-940b-16038e07de55','SYLVİA LOPEZ','33682073450','','Fransa','MONTPELLİER','34570','20 RUE AGNES VARDA LOG 9',24,1,110,'478598314','0','0',NULL,400,1,'YEŞİL ETİKETLİ','2024-05-04 07:43:09.980','2024-05-24 07:08:00.705',NULL),
('2094040d-2cfd-4028-9115-e50a2e855156','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 08:35:51.122',6788,'52840269-0db7-4c57-8a50-57d49049f342','ROSA DİDİEVA','4917670009817','','Almanya','STRALSUND','18435','GOTTLİEB MOHNİKE WEG 15 A',9,3.5,0,'52817450','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-09-09 08:38:07.219','2024-09-18 16:13:00.028',NULL),
('20ba0bfa-9720-4a4e-8dc3-12812663abec','313cc2e2-5529-49ab-abe5-27b5d390bc5f','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-05 08:27:54.636',1195,'6133a2db-79c4-4372-9338-505db46b1847','DİLBERAY MELLO','4915112339457','491629336430','Almanya','MANNHEİM','68219','DİLBERAY MELLO\nIM HUMMELHORST 11\n68219 MANNHEİM',17,3,110,'613910788','0','0',NULL,750,1,'TURUNCU ETİKETLİ','2025-05-05 08:33:58.969','2025-05-30 13:57:18.717',NULL),
('20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:04:39.081',3904,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','','4915254883380','','Almanya','','72636','',8,1,100,'12630810','0','0',NULL,0,0,'MUSTAFA ÜNLÜSOY MÜŞTERİSİNE BIRAKILCAK\nAÇIK MAVİ ETİKETLİ HALI','2024-10-02 09:10:43.693','2024-10-08 20:17:48.669',NULL),
('20d6c71c-ba5e-45ee-bcc7-3404727b4b16','394112c3-f977-4fc2-b430-775e79e472ca','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-27 08:38:17.620',9189,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NESLİHAN HANIM ','33650234345',NULL,'Fransa',NULL,'87410',NULL,2,2,140,'982614868','0','0',NULL,700,1,'MOR ETİKETLİ','2024-12-27 08:39:50.038','2025-01-12 13:23:00.339',NULL),
('2100dfc1-4753-442b-b0f7-5bc9cc0e593a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bd09245-c179-4127-b0e1-46737615122b','2025-08-11 08:02:43.360',10410,'fabe2c23-b5a5-4123-a962-af519ac31d3b','TCR WARENHANDEL GMBH (MARTİN CREUTZBURG)','4915217769767',NULL,'Almanya',NULL,'31157','VOSS STRASSE 125-127 31157 SARSTEDT COSİTY LOGİSTİK FULFILLMENT',1,17,140,'223853931','0','0',NULL,0,0,'155 KOLİ','2025-08-11 08:06:07.004','2025-08-22 10:59:14.823',NULL),
('211e8ae7-95cf-4dc5-9e14-70ad976a2f56','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-14 07:58:42.556',6680,'e6d4faef-484c-4ce7-992c-906e05fc083e','OLSZWESKİ MATZ SSH','015733572257','017662467195','Almanya','GLİENİCKE NORDBAHN','16548','BEETHOVENSTR 67, 16548 GLİENİCKE NORDBAHN \nGERMANY',0,2,110,'644706970','0','0',NULL,0,0,NULL,'2025-09-14 08:00:42.741','2025-09-16 13:49:50.726',NULL),
('21405ba5-5cc3-4bdb-8ec3-3246a3630f70','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-09 10:34:30.752',8789,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MİGENA MAKSUTİ','41791094972','41795472299','İsviçre',NULL,'8486','TÖSSTALSTRASSE 23 8486 RİKON İSVİÇRE',0,3,140,'745509928','0','0',NULL,1090,0,'3 M3','2025-10-09 10:34:55.688','2025-10-10 13:12:10.768',NULL),
('21454fc9-f40e-4ffc-b94d-8c647a484482','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-10 10:42:03.805',6440,'c2d4ce84-536d-4816-837f-7abbf6a7e061','CAFER BEY','41783198799',NULL,'İsviçre',NULL,'5610','ALTE BAHNHOFSTRASSE 9',2,3.5,140,'248630618','0','0',NULL,700,1,'sarı etiket','2025-06-10 10:44:13.732','2025-07-01 09:00:53.543',NULL),
('2151f3d2-2bfc-48a0-9fa1-3f684dec08c4','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-06 04:52:25.498',1326,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SİBEL SADAK','4917623836831',NULL,'Almanya',NULL,'86899','WAİTZİNGER WİESE 6, 86899 LANDSBERG AM LECH',0,2,110,'221824127','0','0',NULL,1000,0,NULL,'2025-10-06 04:55:43.121','2025-10-22 13:22:33.193',NULL),
('21546945-039e-423a-a388-34ddf8d28654','bf6f92ba-eef7-4290-902d-b1bac86244bb',NULL,'2025-03-10 14:59:08.273',8465,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','OĞUZHAN SARP - SSH','33606519879','33651909991','Fransa',NULL,'58000','45 RUE  ESTUTT DE TRACY 58000 NEVERS',0,2,120,'501700728','0','0',NULL,0,0,NULL,'2025-03-10 15:00:23.243','2025-07-04 18:35:38.070','2025-07-04 18:35:38.070'),
('21cea3d0-82cc-48c9-8e54-12f04fa0fc99','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-05-31 09:15:11.822',6447,'a42d8839-caef-4422-888f-cbfdf4188c5b','ABDULLAH ŞENOL GÜMÜŞ','4917662712397','4917681283003','Almanya','BRUCHSAL','76646','LUİSEN STRABE 1',2,2.5,100,'428341237','0','0',NULL,1150,1,'YEŞİL ETİKETLİ','2024-05-31 09:51:52.651','2024-06-20 20:15:42.322',NULL),
('21e3be67-9336-48fe-9a70-3338aee8c4a9','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-22 06:37:11.147',7932,'59868701-abe4-4705-a7e6-d91c2c69262e','DAVUT BİNGÖL','4917621701947','4915731326705','Almanya',NULL,'42651','HASSELSTRASSE NO:119, 42651 SOLİNGEN ALMANYA',18,2,110,'598530881','5','5','Çok teşekkür ederiz ilginize ',700,1,'AÇIK MAVİ ETİKET','2025-07-22 06:38:43.730','2025-09-03 06:14:16.798',NULL),
('220db035-3213-4ef9-ba91-2f141c43fdd5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:35:30.142',10609,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MERLİNDA MERDJANİ','491637510415',NULL,'Almanya',NULL,'12524','RUDOWER STRABE 69',7,3.5,0,'248849829','0','0',NULL,825,1,'SARI ETİKETLİ','2024-12-17 17:11:08.866','2025-01-11 10:16:45.910',NULL),
('22239f89-5592-49c8-b2c4-dc804b06b788','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:45:46.010',6908,'47880255-08ee-4e99-940b-16038e07de55','SİNAN YILDIZ','33677050522','','Fransa','HAUTE-SAVOİ','74460','88 RUE DES CHEVASSİNES',9,1,110,'478209702','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-09-28 15:49:01.019','2024-10-10 11:34:46.197',NULL),
('22345714-b5fa-41b0-909c-acf5f1e9d725','eccfe611-9163-42aa-a1ff-e711af0248e6','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-07-01 10:05:45.873',3451,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HAMİDİ SONİA ','33763204411',NULL,'Fransa',NULL,'21600','16 RUE JOSEPHİNE BAKER 21600 LONGVİC',1,2,120,'221949733','0','0',NULL,600,1,'YEŞİL ETİKETLİ','2025-07-01 10:07:03.604','2025-07-22 21:00:34.495',NULL),
('223bf502-0a5c-4df0-bef2-463ec95dbb4e','eccfe611-9163-42aa-a1ff-e711af0248e6','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-05 13:37:18.138',1460,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BERİVAN ERTUĞRUL ','491638306069',NULL,'Almanya',NULL,'22547','LÜDERSRİNG 41, 22547 HAMBURG',11,2.5,110,'221559079','0','0',NULL,790,1,'PEMBE ETİKETLİ','2025-08-05 13:38:48.580','2025-08-21 08:12:31.707',NULL),
('223c42ff-34b8-451f-8dd0-0377774e9c28','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-29 15:30:29.191',10995,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BOUDJELLOLİ LAKHAR','33777886864','','Fransa','MAİCHE','25120','',6,2,110,'982340056','0','0',NULL,1000,1,'YEŞİL ETİKETLİ MİNİVANDA','2024-08-29 15:32:27.205','2024-09-07 15:54:09.866',NULL),
('225eec2c-83ef-4f12-a430-b56f6429a736','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-08 09:12:18.160',10402,'3c7190b6-f6ee-4275-8958-d7af952132ab','MAGDALENA DELİJANOVA','436642175788','436642175788','Avusturya','HALLEİN','5400','ZELLERWEG 8/6 HALLEİN 5400 AVUSTURYA',18,2,120,'371521572','0','0',NULL,300,1,'GRİ ETİKETLİ','2025-05-08 09:16:26.076','2025-05-23 14:06:47.825',NULL),
('226d454f-504a-4c41-9f7c-2a37ac051991','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-16 13:00:18.831',4899,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SUNAİM İBESKİ','4917647661534','49151684228','Almanya','','88250','',3,4,100,'982498702','0','0',NULL,1650,1,'TURUNCU ETİKETLİ','2024-10-16 13:02:12.043','2024-10-23 16:38:04.049',NULL),
('226e99fa-2222-409d-9c22-ab0639c760f9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 11:00:08.544',10606,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','TKHİLİ NAİDA','330620164241','','Fransa','','26540','',7,1,110,'982318245','0','0',NULL,600,1,'PEMBE ETİKETLİ ROMÖRK','2024-07-20 11:01:52.903','2024-07-29 13:30:04.515',NULL),
('227e1ba4-cd58-4884-aa89-d563a3f38226','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','66307a01-d585-4127-903b-18748421c29e','2025-04-26 06:56:25.723',1730,'e6d4faef-484c-4ce7-992c-906e05fc083e','RAMAZAN AY','4917661977861','491795290795','Almanya','BERLİN','10965','RAMAZAN AY \nHAGELBERGER STRASSE 6 \n10965 BERLİN \n',3,3.5,110,'644542202','0','0',NULL,1250,1,'MOR ETİKETLİ','2025-04-26 06:58:32.559','2025-05-10 20:12:39.533',NULL),
('22aac75b-880d-4ec6-b9a5-586a4d8ba155','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:40:49.403',9834,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YUSUF ATUM ','491758184316','491752887112','Almanya',NULL,'84085',NULL,25,3.5,100,'501212768','0','0',NULL,1000,1,'PEMBE ETİKETLİ','2024-12-20 12:47:43.281','2025-01-03 19:31:52.612',NULL),
('22d0b545-968c-4731-9428-8683cd6b2cc3','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-04-25 10:31:35.040',3687,'6133a2db-79c4-4372-9338-505db46b1847','EDONJETA GOLAJ ','0763249342','0763225663','İsviçre','STİLLİ','5233','STİLLİHUSSTRASSE 9 \n5233 STİLLİ AG \nSCHWEİZ ',0,2,140,'613165111','0','0',NULL,725,0,'725 CHF alınacaktır.','2025-04-25 10:35:08.309','2025-07-06 13:15:24.850','2025-07-06 13:15:24.849'),
('22f306ed-6c48-4e15-a370-d8f8b96b6499','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-06 09:38:23.813',1915,'47880255-08ee-4e99-940b-16038e07de55','MURAT KALKAN','33789432951','33685686692','Fransa','RPMANTİN LANTHONEY','41200','17 RUE ANNE DE BRETAGNE 41200 ROMORANTİN-LANTHANEY FRANSA',8,2,130,'478520504','0','0',NULL,550,1,'AÇIK KAHVE ETİKET','2025-10-06 09:40:08.485','2025-10-25 09:00:02.399',NULL),
('23003647-c65c-45ed-a37a-c8d8db575ea2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-10-04 09:15:16.452',10319,'8d03b939-d544-45f8-8173-464bea4e67ab','SERA KARAHAN','436763369823',NULL,'Avusturya','VİYANA','1200','AİGNERSTRABE 1/9/42',0,2,120,'803703209','0','0',NULL,650,0,NULL,'2025-10-04 09:17:38.679','2025-10-22 07:50:52.377',NULL),
('231cdd37-a6e7-4662-97a2-d7f8144e2edd','394112c3-f977-4fc2-b430-775e79e472ca','bae1a051-2661-4d51-b287-a8fd73d30813','2025-02-26 13:14:56.917',10519,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','DENİSA LANGU ','447342132724',NULL,'Romanya',NULL,'20 dolj ',NULL,1,2.5,0,'982134567','5','5','10',1100,1,NULL,'2025-02-26 13:16:25.143','2025-03-18 17:05:53.511',NULL),
('23362a6b-e084-465f-a474-3935662b512b','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 09:42:45.727',6095,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ALİ ÇETİN ','33652627588',NULL,'Fransa',NULL,'73410',NULL,13,2,140,'982408783','0','0',NULL,1100,1,'MOR ETİKETLİ','2025-02-07 09:54:41.953','2025-02-28 12:04:46.694',NULL),
('2354f542-69c3-4efa-816d-63f11bc99126','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-13 11:59:41.195',3325,'59868701-abe4-4705-a7e6-d91c2c69262e','SOMİA KARABİLA SSH','491637115819','491637115819','Almanya',NULL,'65203','DYCKERHOFFSTRASSE 32, 65203 WİESBADEN ALMANYA',16,2,110,'59840179','0','0',NULL,0,0,'BEYAZ ETİKET','2025-08-13 12:01:15.995','2025-09-08 14:12:35.867',NULL),
('235ede83-046c-43b3-a7f1-746b19237d67','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-15 13:15:00.486',10606,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HİLAL YILDIZ-MERT YETGİN','31681413524','31647505800','Hollanda',NULL,'2729','ZUİDWİJKSTRAAT 8 \nZOETERMEER\n2729 KD',10,2.5,120,'221440431','0','0',NULL,1150,1,'MOR ETİKETLİ','2025-01-15 13:21:21.160','2025-02-08 15:05:06.582',NULL),
('239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-24 07:13:40.401',7344,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ABUZER TEKCE','4915124276955','4915122809101','Almanya','NEVLANDTRABE 8','95119','NAİLA',7,9,110,'319232330','0','0',NULL,4500,1,'TURUNCU ETİKETLİ','2025-04-24 07:27:24.389','2025-05-23 14:07:52.050',NULL),
('23ac0286-127d-44b7-bac9-6e2f2c77ea59','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:20:32.943',1536,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AMİN SAKİ','4917657743687','','Almanya','ERFURT','99089','',4,4,130,'982372153','0','0',NULL,1450,1,'','2024-04-23 10:22:18.757','2024-04-29 19:18:25.008',NULL),
('23baf79e-0401-46f1-881d-b4e0b8c2a729','d074816b-78fd-4378-91c0-3835eba28f44','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-12 12:47:10.937',5393,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÖZKAN KARAOĞLU','491632447779','492043378631','Almanya','KÖHNESTR.','37 45968','KÖHNESTR.37 45968 GLADBECK NORDRHEİN WESTFALEN  ALMANYA ',3,2.5,100,'614200423','5','5','Hersey isdedıgımiz gibi ilerledi',0,0,'YEŞİL ETİKETLİ','2024-12-12 13:15:40.593','2025-01-07 17:46:42.020',NULL),
('23c2fb27-3d69-40e0-9027-0877538a4b71','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-16 09:10:58.236',7487,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MERAL GÖGDAS ','491788608416',NULL,'Almanya',NULL,'63303','WİNGERTSTR 77 63303 DREİEİCH',28,4,110,'221965496','0','0',NULL,1540,1,'açık mavi ETİKETLİ','2025-06-16 09:13:38.207','2025-07-16 16:51:17.521',NULL),
('23c7b08f-63d2-4f18-9f68-f434d59760ab','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-04 21:54:14.251',2820,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','MEDİNE ÖKDEN','4915209045743','4915209045743','Almanya','GERMERSHEİM','76726','QUEİCHSTRABE5,76726GERMERSHEİM/ALMANYA',22,4.5,110,'127639932','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-02-04 22:06:20.005','2025-02-15 16:09:43.829',NULL),
('23d90d82-1e00-4325-8ee3-52a0d3809873','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-30 06:46:24.480',5074,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','LOSİF LOUNT MİRİUTA','4915756416500','','Almanya','BERLİN','13581','',3,3.5,130,'982592763','0','0',NULL,1350,1,'SARI ETİKETLİ','2024-03-30 06:51:20.534','2024-04-04 12:48:41.646',NULL),
('23e62882-9f5f-43ab-96e5-5c3074d8a0e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-17 10:44:21.582',4610,'4126da30-ba9b-41b7-be29-865069aa484c','MOWO','491636774270',NULL,'Almanya','LEİPZİNG','11111','KÖTHENER STRASSE 24. HALLE (SAALE)',21,2,0,'412757132','0','0',NULL,0,0,'YEŞİL ETİKET','2025-10-17 10:44:54.314','2025-10-27 09:24:38.908',NULL),
('23ec5827-d1c3-4fec-8fb6-3f4083decab0','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-22 07:48:19.110',8099,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YAKUP YAVUZ','33782164677','33651113137','Fransa',NULL,'56000','13 RUE CLAUDE MONET 56000 VANNES FRANCE ',0,2,130,'74520701','0','0',NULL,400,0,NULL,'2025-10-22 07:49:13.711','2025-10-23 09:58:54.669',NULL),
('24096b71-5b5e-4da8-9191-8e3168102053','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-30 08:35:31.654',1708,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BOUSLİMAİN ECHOUAK','33626422127','','Fransa','','13001','',12,4,110,'982868918','0','0',NULL,1350,1,'MOR ETİKETLİ MİNİVANDA','2024-08-30 08:50:18.499','2024-09-09 08:43:26.643',NULL),
('24134964-1a25-4af7-9b32-d97d0a1be4aa','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-03-26 07:50:02.867',8299,'59868701-abe4-4705-a7e6-d91c2c69262e','AAAA','4545452545454','5454647545','Almanya',NULL,'28500','AEAİEA',0,2,110,'598897347','0','0',NULL,1200,0,NULL,'2025-03-26 07:53:44.722','2025-03-26 07:54:30.540','2025-03-26 07:54:30.543'),
('2456bba8-8438-4070-98e2-c287835345fb','585b4575-ecea-4671-89b2-199f0605ed62','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-14 08:40:00.889',10765,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','ÖMÜR TOSUN','491729086965','491729086965','Almanya','HESSEN','65375','ZANGERSTRASSE 4\n65375 OESTRİCH-WİNKEL',23,3,110,'78633450','0','0',NULL,845,1,'KIRMIZI ETİKETLİ','2025-04-14 08:42:41.866','2025-05-10 20:13:40.356',NULL),
('2473140a-52f5-4b86-a285-e3de923dde5c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:52:34.463',5294,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MON NAM ALEMİ','33640564045','','Fransa','','74330','37 ROUTE FRANCAİSE GRUFFAZ',10,1,110,'982799609','0','0',NULL,1350,1,'GRİ ETİKETLİ','2024-09-28 15:55:33.686','2024-10-10 11:34:51.671',NULL),
('247e7e41-18c8-469b-9539-739f6ede7d7f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-10 14:34:58.609',2675,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MOHAMAD NOUR TARRAB','4917666559986',NULL,'Almanya',NULL,'56564','ROSENGARTEN STRABE 1',17,11.5,110,'248739379','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-02-10 14:53:39.076','2025-03-06 10:33:10.122',NULL),
('249874ad-8b13-436d-be45-fc0a2c651a43','1764a07b-eb47-4578-b6cd-f3c0d0e743be','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-13 12:26:07.591',1374,'47880255-08ee-4e99-940b-16038e07de55','BURCU GÖKÇE','4917662386214','4917662386214','Almanya','BERLİN','13581','SEEBURGERSTR 76  13581 BERLİN ALMANYA',3,2,105,'478559134','0','0',NULL,300,1,'TURUNCU ETİKETLİ','2025-03-13 12:27:35.112','2025-04-05 10:58:12.819',NULL),
('24b32008-080d-4cf2-b2e3-73b35877738d','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-02-26 13:17:54.584',10575,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BOGDAN MADALİNA ','40766560378',NULL,'Romanya',NULL,'175 blok 1',NULL,0,2,0,'982376655','0','0',NULL,4000,0,NULL,'2025-02-26 13:19:12.354','2025-03-03 09:34:58.587','2025-03-03 09:34:58.591'),
('24bfd523-6e80-4e24-89e9-93f7f88a6f2d','394112c3-f977-4fc2-b430-775e79e472ca','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-09 08:31:43.216',8099,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MEHMED SHABAN ','4915776951609','359885267323','Bulgaristan',NULL,'BULGARİA','KIRCAALİ NO 22 ',7,2.5,0,'982893962','0','0',NULL,1500,1,'SARI ETİKETLİ','2025-07-09 08:38:20.147','2025-07-17 19:16:14.064',NULL),
('24ce526d-0f1b-4457-8342-2e64978bfedd','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-19 08:31:51.662',3727,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','MEHDİ NAEİMİ','32487655588','32493360527','Belçika',NULL,'8200','LEGEWEG 8200 SİNT ANDRİES',9,4,120,'319275080','0','0',NULL,1116.5,1,'SARI ETİKETLİ','2025-06-19 08:38:44.269','2025-07-22 10:19:20.310',NULL),
('24e58e68-4ee3-40c0-8505-b017493468c7','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-25 12:29:16.406',10458,'e6d4faef-484c-4ce7-992c-906e05fc083e','ZELİHA SARITAŞ','4369917101202','436602528784','Avusturya','LOOSDORF','3382','ROHNENSTRASSE 39-8-1',24,3,120,'644287826','5','5','.',590,1,'AÇIK MAVİ ETİKET','2025-09-25 12:36:00.955','2025-10-13 11:48:27.180',NULL),
('250a38e7-1fe6-4161-8032-c64b33f1c604','eccfe611-9163-42aa-a1ff-e711af0248e6','2a352437-950c-42a9-9135-55482cf3977c','2025-08-06 12:32:23.260',10216,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HAMİDİ SONİA (SSH)','33763204411',NULL,'Fransa',NULL,'21600','16 RUE JOSEPHİNE BAKER 21600 LONGVİC',0,2,120,'221748184','0','0',NULL,0,0,'MAVİ ETİKET','2025-08-06 12:33:40.487','2025-08-27 05:39:11.569',NULL),
('2559df4c-1140-401e-a44d-4bfdd5d05129','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-10-18 19:03:17.310',6260,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HALİL ÇELİK','','','Almanya','','','',0,1,100,'97688342','0','0',NULL,0,0,'','2024-10-18 19:03:47.065','2024-10-25 09:21:23.908','2024-10-25 09:21:23.914'),
('2575d832-a07d-426e-9b9e-deb29806d1d4','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2024-12-16 12:12:58.902',5144,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','AYNUR KAYKUSUZ ','4915785094861',NULL,'Almanya','RHEİNLAND','55543','SALİNENSTRASSE 65  55543 BAD KREUZNACH RHEİNLAND - PFALZ',0,4,100,'449224087','0','0',NULL,1800,0,NULL,'2024-12-16 12:16:59.669','2025-02-05 10:19:22.635','2025-02-05 10:19:22.637'),
('259921e5-33a8-46ab-8da6-91a44b26b420','8fff5e14-418c-4377-bd83-3a3f81383507','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-06 07:59:01.071',4054,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NİSA PARLAR','4917624497671',NULL,'Almanya','HESSEN','63179','ALBERT-EİNSTEİN STR 8',20,4.5,110,'437895842','4','5','Link üzeri yer bildirimi daha geliştirilebilir. ',940,1,'YEŞİL ETİKET','2025-08-06 08:02:34.685','2025-09-08 06:48:12.277',NULL),
('25b7b1d6-4d63-45b9-8031-fabd67fcd516','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:31:41.099',9385,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','AYHAN TÜRKMEN','491776434343','','Almanya','DUİSBURG','47137','WEİBENBURGER STR.10',6,1,0,'027527659','0','0',NULL,1485,1,'TURUNCU ETİKETLİ','2024-09-27 11:33:52.959','2024-10-05 18:18:15.507',NULL),
('25d12410-c8e7-490e-98e0-9ef0a0d9272d','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-09-24 12:32:11.435',10924,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MÜKREMİN GÜNDOĞDU','33679026469',NULL,'Fransa',NULL,'67640','7 RUE DU BOSQUET 67640 FEGERSHEİM',0,2,120,'221584314','0','0',NULL,900,0,NULL,'2025-09-24 12:34:09.445','2025-09-25 11:34:57.172',NULL),
('26021dc0-1339-4317-be03-053c91e39d17','1764a07b-eb47-4578-b6cd-f3c0d0e743be','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-20 10:34:49.148',2365,'47880255-08ee-4e99-940b-16038e07de55','AYSUN ELİBÜYÜK SSH','31614991851','31614851530','Hollanda','AMERSFOORT','3814','VONRANDWİJCKLAAN 15 A 3814 AG AMERSFOORT HOLLANDA',5,2,120,'478646824','0','0',NULL,0,0,'BEYAZ ETİKET\n','2025-10-20 10:36:17.854','2025-10-25 08:59:19.807',NULL),
('261b8c3d-2e8f-4348-9ae5-3be163c70130','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-05-15 08:50:21.085',7883,'52840269-0db7-4c57-8a50-57d49049f342','??','1111111111',NULL,'Almanya',NULL,'111',NULL,0,5,0,'528640995','0','0',NULL,0,0,NULL,'2025-05-15 08:55:12.080','2025-05-23 06:38:39.332','2025-05-23 06:38:39.334'),
('261c7a7a-8bf9-4d02-8660-2292232ca442','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-01 07:50:55.536',4738,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','TÜLAY KILIÇ','32487862116',NULL,'Belçika',NULL,'9100','HEİSTRAAT 184',5,1,110,'982880880','0','0',NULL,800,1,'SARI ETİKETLİ','2024-11-01 07:55:05.868','2024-11-12 16:17:16.557',NULL),
('2630e226-f8e4-4780-bd53-00a42db1e018','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:38:18.264',3977,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','BİRGÜL ÖRNEK','4915229249274','','Almanya','SİNGEN','78224','LAUBWALDSTR 2',13,3,100,'268188607','0','0',NULL,300,1,'KIRMIZI ETİKETLİ','2024-03-30 09:44:54.240','2024-04-12 17:26:52.449',NULL),
('26321c61-8ef9-4498-b666-82a04622843a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:59:56.665',3019,'73596a75-b658-4249-8c71-b0490654bc8b','RAMAZAN KAVRUK','004915566210140',NULL,'Almanya',NULL,'31711','DORFSTRABE 2',11,1,0,'735561469','0','0',NULL,0,0,'SARI ETİKETLİ','2024-12-20 13:00:56.922','2025-01-09 13:53:34.835',NULL),
('263a2887-35f1-4299-a777-21a594a634b6','eccfe611-9163-42aa-a1ff-e711af0248e6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-15 08:37:05.001',1405,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HAVVA KUM','32484568424',NULL,'Belçika',NULL,'4800','RUE DES FABRİQUES 122 , 4800 VERVİERS',6,3,120,'221443179','0','0',NULL,1000,1,'MAVİ RENK','2025-07-15 08:39:15.707','2025-07-29 13:55:22.241',NULL),
('264eba0c-b5ea-449d-bd51-0689287b0593','313cc2e2-5529-49ab-abe5-27b5d390bc5f','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-06 09:23:02.075',8269,'6133a2db-79c4-4372-9338-505db46b1847','BESİR FAZLİJİ','41764721719','41764721719','İsviçre','ORBE','1350','CHEMİN DES COUVETS\n1350 ORBE',6,2,140,'613168811','0','0',NULL,325,1,'325 CHF alınacaktır. PEMBE ETİKETLİ','2025-05-06 09:25:20.309','2025-06-20 13:58:41.540',NULL),
('2663d683-5300-4689-84a8-995bb05d4342','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-10-06 09:27:41.271',9780,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','ARBİAS ARAPİ','0041798821237',NULL,'İsviçre',NULL,'8702','FOHRBACHSTR. 12 / 8702 ZOLLİKON',0,2,140,'695530845','0','0',NULL,640,0,'640 chf alınacak','2025-10-06 09:28:44.317','2025-10-14 14:54:51.619',NULL),
('26683bbe-0d6e-4088-afa7-4c620918ff73','dc73af25-3744-4a35-87e7-05bab24167a0','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-02 07:49:02.983',2877,'31ccd2de-c68e-405f-adee-14ff1a7a1869','OKAY TUNCA','4551944912',NULL,'Danimarka','RØDEKRO','62300','PARKVEJ 45',0,8,0,'312422305','0','0',NULL,11800,0,'SARI ETİKET','2025-10-02 07:52:02.082','2025-10-21 23:34:17.141',NULL),
('267f6081-c782-4fae-8e62-aa926bd63c79','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-22 07:16:35.574',3923,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALEYNA İREP','4915566766358','4915566766358','Almanya','BAYERN','94491','ERLACHSTRABE 23 A 94491 HENGERSBERG BAYERN ALMANYA',9,2,110,'37119244','0','0',NULL,350,1,'BEYAZ ETİKETLİ','2025-07-22 07:19:22.165','2025-09-03 06:11:30.430',NULL),
('268c20d2-55c4-4e13-bdbd-8705781eda7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 08:37:34.929',5036,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','VEYSİ DAĞDELEN','4917622880624','','Almanya','LÜNEBURG','21339','STOTEROGGE STRASSE 88',3,17.5,100,'614456400','0','0',NULL,2000,1,'','2024-03-12 08:41:44.115','2024-03-22 07:37:07.324',NULL),
('2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-26 11:52:09.851',4345,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUHAMMED PERVANE ','4915776361097','4917684770342','Almanya','SİNGEN','78224','EKKEHARDSTRASSE 31',18,2,110,'644531622','0','0',NULL,1000,1,'PALET','2025-05-26 11:59:26.073','2025-06-17 16:02:11.633',NULL),
('269b4bca-6e23-4b7c-a9d2-e7abf0e79373','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-09-19 13:17:19.908',3101,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MELİNA KAHALİ','491787706364','491749651996','Almanya','WAHNBEK','26180','MEMELSTRASSE 7\n26180 WAHNBEK',0,3.5,110,'50538335','0','0',NULL,1250,0,NULL,'2025-09-19 13:18:55.627','2025-10-23 11:43:29.420',NULL),
('26b9febf-7e0a-455c-acf6-ac5b4fe7b20d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-08 08:43:02.235',2260,'47880255-08ee-4e99-940b-16038e07de55','Leman emre','3164777260','','Hollanda','Nijmegen','6431','Alden hof',8,3,100,'478361652','0','0',NULL,1900,1,'Yeşil etiketli','2024-04-08 08:45:40.779','2024-05-02 19:56:42.327',NULL),
('26cf631a-f5d6-48f2-bd12-a1732b406f1a','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-04-22 13:28:47.850',9703,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','SERCAN MİRCALİ','491737487037','491737487037','Almanya','GLADBACH','51469','SERCAN MİRCALİ \nHANDSTR 338\n51469 BERGİSCH GLADBACH',0,4.5,110,'531680148','0','0',NULL,2000,0,'1 TRAVERTEN MASA\n10 ADET SANDALYE\n\nTRAVERTEN MASASI GELECEK','2025-04-22 13:30:29.818','2025-04-29 07:45:03.346','2025-04-29 07:45:03.348'),
('26dac25b-c3a4-48f3-a7c9-711fda2dbf20','5c723cdc-e582-4b00-8271-838c085984c2','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-22 08:21:17.762',4664,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NUR YILDIRIM','491778339684','4915782204531','Almanya',NULL,'30165','DAIMLERSTR 6C 30165 HANNOVER ALMANYA',12,2,105,'745278745','0','0',NULL,650,1,'AÇIK MAVİ ','2025-09-22 08:21:48.610','2025-10-05 12:15:28.864',NULL),
('26dc53f3-1a21-44ea-a0d6-f51c8996bf85','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-04-25 09:16:02.605',8612,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AYEOLOWO SEKİNAT','31687440743','31649620613','Hollanda',NULL,'1112','CHARLOOTTE VAN PALLANDTHOF 224 1112 ZL,DİEMEN PAYS-BAS ',6,2,120,'221433158','0','0',NULL,900,1,'PEMBE ETİKETLİ','2025-04-25 09:18:06.666','2025-06-06 17:36:06.346',NULL),
('26e7065e-7d7c-4b87-8fc9-8255ca593083','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-29 13:05:38.856',3421,'3c7190b6-f6ee-4275-8958-d7af952132ab','MEHDİ SALİHU','4917670281614','4917670281614','Almanya','WEİDEN','92637','SPERBERWEG 2A 92637 WEİDEN ALMANYA',24,2,110,'371434188','0','0',NULL,600,1,'TURUNCU ETİKET ','2025-09-29 13:07:17.464','2025-10-27 09:24:00.820',NULL),
('26eebedd-d4ee-429f-bfe5-964620f33452','8184d19c-0d1f-4439-978c-7a3364e54967','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-22 09:56:49.127',3690,'b0c1192a-7d38-4b69-a901-778f65a98b9d','KAM.   TUBA YİLDİRİM','33643419084',NULL,'Fransa','PARİS','78500','25 RUE DES EAUX 78500 SARTROUVİLLE PARİS FRANSA',5,5,130,'011804405','0','0',NULL,1050,1,'AÇIK MAVİ ETİKET','2025-09-22 10:00:50.432','2025-10-25 09:00:18.615',NULL),
('2716f260-a220-4cbc-9e3d-883dd2448bbc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-01-10 07:01:23.464',1958,'a42d8839-caef-4422-888f-cbfdf4188c5b','SİDAR AKDENİZ ','491634613400',NULL,'Almanya',NULL,'66127',NULL,18,2,110,'42877136','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-01-10 07:02:27.002','2025-03-05 14:40:53.436',NULL),
('273c83bb-2405-453b-8f32-a6fd281b21a7','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-23 09:15:32.793',5750,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÜMİT MORCA','32495328608','32489954615','Belçika','ZELE','9240','LANGESTRAAT 39',10,6,120,'644377995','5','5','Muhteşem',2300,1,'AÇIKMAVİ ETİKETLİ','2025-06-23 11:18:10.535','2025-07-21 19:10:09.745',NULL),
('2754ec7f-f526-44d3-8178-29280a48b322','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-24 09:47:04.125',1706,'4126da30-ba9b-41b7-be29-865069aa484c','BRÜHL CAMİSİ','12212211111',NULL,'Almanya','BRÜHL','1111111',NULL,15,2.5,0,'412441586','0','0',NULL,300,1,'YEŞİL ETİKETLİ','2024-10-24 09:52:36.926','2024-11-09 18:54:14.451',NULL),
('277bb0f0-75c4-4045-848c-72f8729d43a4','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-07-22 09:30:17.525',10822,'6133a2db-79c4-4372-9338-505db46b1847','SOZDAR AKTAS','004917660947678','004917632335952','Almanya','VÖLKLİNGEN','66333','BUCHENWEG 13\n66333 VÖLKLİNGEN/ SAARLAND/ ALMANYA',0,10,110,'613592756','0','0',NULL,3095,0,NULL,'2025-07-22 09:36:01.097','2025-10-23 12:47:50.652',NULL),
('2791411b-f352-4706-ac7e-e1f3dcb20fa4','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-05-26 11:07:41.861',10025,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÖNÜL BOZKURT','5013613310','33659801905','Fransa','MARSEILLE','13000','MARSEILLE ',0,3,130,'745436157','0','0',NULL,2675,0,'8 M3','2025-05-26 11:10:42.286','2025-06-15 21:31:38.022','2025-06-15 21:31:38.026'),
('2791c56f-7265-461d-b1bf-4a378276ed53','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-21 14:39:06.443',5961,'dea91080-5383-4085-af2e-7eace2c64224','AYNUR ÖZDEMİR ','33603865506','33652723801','Fransa',NULL,'93250','26 RUE VİCTOR HUGP',7,3.5,110,'91062607','0','0',NULL,1350,1,'MAVİ ETİKETLİ','2024-11-21 14:48:16.568','2024-12-12 07:41:08.460',NULL),
('27e6d149-a838-4bc0-a4d3-7fec20ae44c6','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-10-17 07:23:55.350',1399,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','ARXHEND HOXHAJ','4917673898682','4917673898682','Almanya','MÜNCHEN','85748','85748 GARCHİNG BEİ. MÜNCHEN \nMÜHLGASSE 9',0,2.5,110,'808384982','0','0',NULL,1200,0,NULL,'2025-10-17 07:26:24.731','2025-10-22 08:30:35.297',NULL),
('27e70f47-5f87-4da5-8e2b-11e4017c44d3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:56:40.274',6014,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ROYA SHARİFİ','00491630241746',NULL,'Almanya',NULL,'81739','CARL WERY STR 70A',3,1,0,'248614196','0','0',NULL,0,0,'MOR ETİKETLİ','2024-10-23 08:58:50.782','2024-10-29 11:09:46.353',NULL),
('280e9889-e4b3-48a6-9ac5-246bac1566c1','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-18 12:43:40.490',5865,'47880255-08ee-4e99-940b-16038e07de55','YAŞAR YALMAN SSH','4917660894702','4917632998796','Almanya','KARLURUHE','76185','HERRMAN LEİCHTLİN STRABE 32 KARLURUHE 76185 ALMANYA',15,2,105,'478816988','0','0',NULL,350,1,'AÇIK KAHVE ','2025-08-18 12:45:21.826','2025-10-01 08:00:26.782',NULL),
('2816d30a-252b-4b32-a00a-c62fbd6aa168','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-24 12:21:31.669',10054,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BUNJAMİN HALİMİ ','41782412222',NULL,'İsviçre',NULL,'9450','IM GİLLİMOOS 7, 9450 LÜCHİNGEN İN ',15,2,140,'221962516','0','0',NULL,600,1,'TURUNCU ETİKET ','2025-09-24 12:23:10.446','2025-10-10 21:30:40.540',NULL),
('2827eb07-f9d6-46f4-b3fc-8d044083d85b','173956a2-c232-495a-b036-4a6a36c073e2','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-18 19:47:39.261',6015,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','NURGÜL YILMAZ','4915737960433',NULL,'Almanya','KÖLN','50',' \nAM BİLDERSTÖCKCHEN 50, KÖLN /ALMANYA ',10,1,100,'449393754','0','0',NULL,300,1,'KREM RENK ETİKETLİ','2024-12-18 19:50:00.415','2025-01-06 20:09:31.662',NULL),
('2866225f-68db-4e77-83ab-5217fbdc2e85','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-11-06 10:39:43.063',5956,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MUKUNKU KULENFUGA','33605930464',NULL,'Fransa',NULL,'38130','9 RUE DE VASSİEUSE',0,1,120,'449787716','0','0',NULL,0,0,NULL,'2024-11-06 10:43:51.057','2024-11-07 13:13:48.948','2024-11-07 13:13:48.954'),
('28745864-aae9-4957-9346-b61332e96fff','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 08:49:27.289',10034,'47880255-08ee-4e99-940b-16038e07de55','ÖMER KOLAT','41787614204','41788864551','İsviçre','CHAUX DE FORD','2300','AV- LEOPOLD ROBERT 108',19,1,140,'478593603','5','5','Memnun kaldık basşarılar',3000,1,'SARI ETİKETLİ','2024-03-30 08:53:41.794','2024-04-17 16:45:32.707',NULL),
('2894ebed-fc17-429a-b8af-6ed24e9d7a59','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:19:23.261',4977,'47880255-08ee-4e99-940b-16038e07de55','NEVZAT KAHRAMAN','33658222162','33605595062','Fransa','PARİS','93390','15 RESİDENCE SEVİGNE ',9,1,110,'478212125','5','5','Çok teşekkür ederiz emeğinize sağlık her şeyimiz düzenli geldi bir dahaki sefere inşallah sizi yine tercih edeceğiz',1000,1,'MAVİ ETİKETLİ','2024-08-07 14:22:52.395','2024-08-16 21:55:57.390',NULL),
('28b92b39-fb44-43d7-a392-add43e96df28','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-01 07:42:30.190',9335,'47880255-08ee-4e99-940b-16038e07de55','CELİNE KARA','33632142652','33652350138','Fransa','OYONNAX','01100','7A CHEMİN DE LA TUİLERİE 01100 OYONNAX',12,3.5,130,'478164511','5','5','Harika 🙌 ',2000,1,'TURUNCU ETİKET','2025-10-01 07:44:20.655','2025-10-23 08:11:58.220',NULL),
('28d77c29-5660-4bd1-beec-e4790f6ae7e8','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-07-15 11:09:53.581',7377,'59868701-abe4-4705-a7e6-d91c2c69262e','OKAN ÖZTÜRK','4915156720543','491716213399','Almanya',NULL,'91154','PARCCELS USSTRASSE 1, 91154 ROTH ALMANYA',0,4.5,110,'598891928','0','0',NULL,1300,0,'3,5 m3','2025-07-15 11:11:21.274','2025-09-16 10:26:44.355','2025-09-16 10:26:44.354'),
('28d7d2ec-ff1b-4dfc-895f-17904bc60866','51b55e5b-7487-4d8a-923e-163f04d0b1d9','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-12 18:28:30.419',5247,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','LEİLA GELES','33695585562',NULL,'Fransa',NULL,'95400',NULL,7,2,130,'745266700','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-03-12 18:29:12.062','2025-03-23 16:16:02.037',NULL),
('29175f89-ad14-442c-b1fb-71c9053ba227','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-15 13:52:42.549',1565,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','Meliha yüksek','33629412067','','Fransa','','','',1,5.5,110,'319458159','0','0',NULL,1925,1,'','2024-05-15 13:57:09.613','2024-05-30 21:04:19.038',NULL),
('291ba583-1dab-4923-9616-d33db1cf3f25','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2024-12-10 19:12:20.405',4707,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','JETMİR UKZMAJL','41792391104',NULL,'İsviçre',NULL,'1400','İ RUE JEAN-ANDRÉ VENEL 1400 YVERDON-LES-BAİNS ',0,1,140,'449995503','0','0',NULL,1600,0,NULL,'2024-12-10 19:28:16.328','2025-01-10 08:19:05.021','2025-01-10 08:19:05.025'),
('2956a5ed-066c-4d0f-8c48-6243c78cf6ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:14:13.756',3228,'47880255-08ee-4e99-940b-16038e07de55','SUNAY KURU','491779155437','','Almanya','MÜNCHEN','80689','MİTTERFELD STR.12',2,1,0,'478526484','5','5','Zamaninda teslim tskr ederim',0,0,'','2024-04-23 10:15:27.001','2024-04-26 17:41:36.659',NULL),
('2960c047-80c3-41d4-a2b6-646498478977','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-14 07:01:07.819',1576,'e6d4faef-484c-4ce7-992c-906e05fc083e','FEMİ SALİHİ','4917632498561','495118315683','Almanya','STUTTGART','70435','HÖRDSTRASSE 1',20,2,110,'644100790','0','0',NULL,700,1,'TRAVERTEN MASA','2025-07-14 07:06:59.730','2025-07-26 21:25:19.278',NULL),
('2980d03e-0382-4f21-a380-2dae95b9b72d','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-03-18 19:57:52.249',6245,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ELİSA PEROLLİ ','4366499738773',NULL,'Avusturya',NULL,'8401',NULL,0,2,140,'982368997','0','0',NULL,550,0,NULL,'2025-03-18 19:59:16.537','2025-05-29 13:34:50.015','2025-05-29 13:34:50.018'),
('29897483-14ac-4404-8bba-38c2a76aa9a9','31fcb6ec-2c6c-46d9-ab3b-a7347a37477e',NULL,'2025-10-14 10:18:34.977',9275,'1c402ba0-2fcc-4b19-b28c-bd6071805ddd','AHU AYYILDIZ','4915127051981',NULL,'Almanya','WİNSEL LUHE','21423','AKAZİENWEG 46\n21423 WİNSEN LUHE',0,2,110,'140421350','0','0',NULL,1510,0,NULL,'2025-10-14 10:22:12.040','2025-10-27 11:18:52.935',NULL),
('29aaa54d-b47b-4224-b91b-303cd6be157e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-17 15:18:04.783',8609,'e6d4faef-484c-4ce7-992c-906e05fc083e','FURKAN BARUT','4915751450070','4917632147972','Almanya','SCHWALBACH','65307','EMSER STR48',10,5,110,'644644143','0','0',NULL,1550,1,'PEMBE ETİKETLİ','2025-04-17 15:24:55.393','2025-05-21 18:37:11.087',NULL),
('29ad9f78-9c53-4873-a500-c56a5fe3e826','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-03 14:58:02.808',6323,'59868701-abe4-4705-a7e6-d91c2c69262e','MEHMET SEVİM KEBELİ','491774633410','4917661875274','Almanya',NULL,'10559','STEPHAN STR 32, 10559 BERLİN ALMANYA',12,3,110,'59856960','0','0',NULL,1000,0,'SARI ETİKET','2025-10-03 15:02:38.566','2025-10-20 07:18:07.350',NULL),
('29e07758-ee2d-462d-95cb-5effc249b279','fb4cc158-8685-4d60-965f-4e4ac7c4c696','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-04 08:55:55.495',4233,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','HÜSEYİN GÜNDÜZ','33782093093','33782093093','Fransa',NULL,'54140',NULL,6,1.5,110,'455614339','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-04 08:58:43.655','2024-12-01 12:28:29.332',NULL),
('29ec9532-924f-47cd-86e5-76f47bbd3428','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-10 12:38:09.135',8963,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAMPAİ CATHERİNE','330769082765','','Fransa','POİTİERS','86000','3 RUE DU FİEF DES HAUSSES PORTE 1375',11,3.5,110,'982118676','0','0',NULL,1350,1,'SARI ETİKETLİ','2024-09-10 12:39:47.877','2024-09-28 07:10:38.861',NULL),
('2a010a66-59d6-493d-bd68-e8dcb1ced2a0','eccfe611-9163-42aa-a1ff-e711af0248e6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-22 14:00:33.562',10985,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GURAY SEYFELİ','32483716814','32483547124','Belçika',NULL,'3600','HEESTERBESSTRAAT 6, 3600 GENK',13,2.5,0,'221496522','0','0',NULL,0,0,'MOR ETİKETLİ','2025-04-22 14:02:56.432','2025-05-02 06:57:47.117',NULL),
('2a0828de-87e8-4be2-ad06-d0db6af4ac25','bf6f92ba-eef7-4290-902d-b1bac86244bb',NULL,'2025-01-14 21:41:32.000',6770,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','FURKAN ÇINAR','33648279968','33614096086','Fransa',NULL,'08000','4 PLACE GASTON DEFFERE 08000\nCHARLEVİLLE -MEZİERES\n',0,1,120,'501848072','0','0',NULL,0,0,NULL,'2025-01-08 07:42:33.798','2025-01-28 09:16:57.164','2025-01-28 09:16:57.167'),
('2a49a8b8-d291-4b65-ab34-09699d72e39f','5c723cdc-e582-4b00-8271-838c085984c2','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-08 07:52:20.292',8250,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','LEİLA GELES SSH','33695585562',NULL,'Fransa',NULL,'95400','6 RUE ALBERT LEFEBVRE 95400 ARNAUVILLE FRANSA ',2,2,130,'745865715','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-05-08 07:55:22.388','2025-05-22 15:23:16.748',NULL),
('2a5abbbf-2ecd-4ad5-887d-fd60d4f4f436','d4cae326-953d-4da4-b88b-53535f8f8cd3',NULL,'2025-10-23 15:47:03.973',2586,'5b04798d-86e0-44d7-9219-194a32dc85ff','MÜBECCEL KOÇER','00491781755014',NULL,'Almanya','DÜREN','52351 ','MÜBECCEL KOÇER \nAN DER WİNDMÜHLE 35\n52351 DÜREN\n00491781755014',0,2,110,'504769853','0','0',NULL,1000,0,NULL,'2025-10-23 15:50:31.199','2025-10-24 07:38:17.792',NULL),
('2a5af105-d0c8-46fd-ad7c-0aa1fac82094','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-08-15 12:05:41.283',10272,'3c7190b6-f6ee-4275-8958-d7af952132ab','EBRU AKSU','436509108563','436509108563','Avusturya','MÜNCHENDORF','2482','HAUPTSTRASSE 27 2482 MÜNCHENDORF AVUSTURYA',0,6.5,120,'371117320','0','0',NULL,1800,0,'köşe takımı, masa, sehpa, sandalye','2025-08-15 12:07:36.572','2025-09-05 07:26:30.274','2025-09-05 07:26:30.273'),
('2a615cd5-31fe-4786-897f-defeaeff6284','804a2f53-7a26-4e8e-a505-7fc107953b50','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-15 09:11:36.879',8347,'a42d8839-caef-4422-888f-cbfdf4188c5b','HASAN ÖZSOY','436601484788','905534917566','Avusturya',NULL,'1100 ','HETZENDORFER STRASSE 1100 VİENNA\n\n',15,4.5,120,'428653750','0','0',NULL,1250,1,'BEYAZ ETİKET ','2025-08-15 09:13:29.668','2025-09-17 16:03:45.127',NULL),
('2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-06 14:29:38.046',9315,'59868701-abe4-4705-a7e6-d91c2c69262e','MELİSSA KARACAKAYA','4917681017112','4917681017112','Almanya',NULL,'66538','WELLESWEİLER STRASSE 34,66538',15,2,110,'598961911','0','0',NULL,650,1,'MOR ETİKET','2025-08-06 14:31:08.338','2025-09-06 07:19:02.562',NULL),
('2a7caf03-8581-4191-84b5-cab0632ebe96','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-07-18 09:18:54.453',4839,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SERVET ERDOĞAN ','352691333084',NULL,'Lüksemburg',NULL,'3520',NULL,0,2,140,'982376159','0','0',NULL,1350,0,NULL,'2025-07-18 09:20:06.542','2025-07-21 07:16:54.218','2025-07-21 07:16:54.217'),
('2a84330e-2f6b-4172-ac76-ba18ce40bd1c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c6a1c9e-fad3-44d2-8812-5ebe40baad05','2024-05-11 08:30:48.768',2083,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SİBEL BAHÇECİ','4915259155926','','Almanya','DÜREN','52353','LUDWİGSTRABE 26A',1,4,100,'449902693','0','0',NULL,1125,1,'MAVİ ETİKETLİ','2024-05-11 08:32:48.508','2024-05-23 11:41:36.078',NULL),
('2a9c7f69-97e7-4504-8e8e-9939d84f393a','38f55ecc-79e1-4650-a77b-c756f8cd8fab','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-03 08:35:19.000',3422,'d89f6e4c-ad0d-4d1f-98c2-188a94803196','BESTENUR ÖZKAYA SSH','491784897423','4917620954584','Almanya','BERGHEİM','50127','DOMACKERSTRASSE 71D',17,2,110,'896998229','0','0',NULL,0,0,'MÜŞTERİDEN MASA ALINACAK BEYAZ ETİKET','2025-10-02 08:40:24.551','2025-10-17 20:57:02.711',NULL),
('2aaae1dd-f6fd-4240-80c3-399ffba3fc37','f784b688-ba6b-4886-87dd-fe4cfbed85b4','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-02-25 06:49:52.105',2877,'dea91080-5383-4085-af2e-7eace2c64224','SAMED DERE','491781401509','491514786908','Almanya',NULL,'66333','GERHARDSTRABE 512		\n66333 VOLLTLİNGEN ALMANYA		\n',13,8,110,'910717262','0','0',NULL,2800,1,'PEMBE ETİKETLİ','2025-02-25 06:54:33.731','2025-04-05 20:39:10.152',NULL),
('2ab9bb8f-58c4-4826-94a1-bf5b458b034e','313cc2e2-5529-49ab-abe5-27b5d390bc5f','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-21 09:37:46.714',10319,'6133a2db-79c4-4372-9338-505db46b1847','ELİF BEYZA ARVİŞ','491792205831','4917664700278','Almanya','HAMELİN','31785','SERTÜRNER STRASSE 26 31785 HAMELN',13,2,110,'613112731','5','2','👍',725,1,'AÇIKMAVİ ETİKETLİ','2025-03-21 09:45:11.004','2025-05-07 16:51:51.195',NULL),
('2abdc40e-c15a-4ac5-a5b1-459adbffa8dd','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-27 07:32:55.831',2154,'47880255-08ee-4e99-940b-16038e07de55','GÜLPERİ ÜNVER ','33679512042','337833578657','Fransa','SAİNT MARİE AUX LİNES','68160','1 RUE HAUCHAT 68160 SAİNTE  MARİE AUX LİNES FRANSA',10,6,110,'478415751','0','0',NULL,2650,1,'YEŞİL ETİKETLİ','2024-11-27 07:35:43.829','2024-12-10 12:36:04.970',NULL),
('2afcf460-a080-4273-8901-46e80d97fa18','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:43:14.307',4708,'7a22d421-75df-4ab0-a87f-63e0a71155c0','ÇAĞLAR','491631408924','','Almanya','FRANKFUT AMMAİN','60313','CARL THEODOR REİFFEN STEİN ',3,2,0,'72247088','0','0',NULL,500,1,'TABELA VE KUMAŞ','2024-06-08 07:44:46.141','2024-06-20 20:15:37.271',NULL),
('2b07945c-640f-49e9-a7a3-fdcc706090f9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-18 13:20:54.165',5043,'e6d4faef-484c-4ce7-992c-906e05fc083e','ETEM FIRAT YÜKSEL(K)','4917661338122','4917664963406','Almanya','HAMBURG','21075','GELLERSENWEG 14A',5,5.5,110,'644664237','0','0',NULL,1600,0,'YEŞİL ETİKET','2025-09-18 13:31:24.981','2025-10-20 07:18:16.076',NULL),
('2b0da990-33f0-4a20-bc6f-d7e86a9688d7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-20 08:52:56.405',3978,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','NECATİ AKIN','33767648959','33680742499','Fransa',NULL,'38200',NULL,11,2,130,'31929392','0','0',NULL,1825,1,'PEMBE ETİKETLİ','2025-02-20 08:54:20.255','2025-03-01 14:06:52.749',NULL),
('2b1bc1e0-6a49-4e87-af0e-9acd36639f9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-25 15:41:13.887',7450,'4126da30-ba9b-41b7-be29-865069aa484c','EDİ','32491914908',NULL,'Belçika',NULL,'9000','WONDELGEMSTRAAT 69',7,2,0,'412384414','0','0',NULL,1500,1,'PEMBE ETİKETLİ','2025-04-25 15:43:05.835','2025-05-02 06:59:43.486',NULL),
('2b333e3a-4a90-4fa5-a8a8-97b3fef507b4','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-09-24 12:23:15.247',9298,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BERKAY NAMDAR','33766114584',NULL,'Fransa',NULL,'26100','20 BİS AVENUE DU MAGVİS 26100 ROMANS SUR ISERE',0,3.5,130,'221963489','0','0',NULL,1200,0,NULL,'2025-09-24 12:24:51.239','2025-10-02 11:22:26.041',NULL),
('2b4a9a44-3280-41b5-a65e-97b1f532481b','313cc2e2-5529-49ab-abe5-27b5d390bc5f','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-22 12:47:19.569',10483,'6133a2db-79c4-4372-9338-505db46b1847','KÜBRA YAMAN','491743202967','017660006494','Almanya','AACHEN','52078','SCHAGENSTRASSE 182\n52078 AACHEN, NORDRHEİNWESTFALEN \nDEUTSCHLAND',17,2,110,'613251938','0','0',NULL,800,1,'MAVİ ETİKETLİ','2025-05-22 12:51:31.650','2025-07-24 10:25:40.668',NULL),
('2b6577a2-c3ad-4aca-8b8b-446c848207f1','eccfe611-9163-42aa-a1ff-e711af0248e6','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-01 14:37:55.904',1515,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SERKAN KAHRAMAN','33660910086',NULL,'Fransa',NULL,'69310','4 ALLEE DU CHATEAU 69310 OULLINS PIERRE BENITE',2,2.5,130,'221254389','0','0',NULL,1000,1,'SARI ETİKET','2025-08-01 14:39:52.700','2025-09-04 21:04:10.230',NULL),
('2b90a4bf-839a-4804-abdc-8987ed2eec85','8fff5e14-418c-4377-bd83-3a3f81383507','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-10 07:25:13.064',9077,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DOBREA NİCOLETA SSH','3168244547',NULL,'Hollanda','NM ECHT','6101','KERKVELDSWEG OOST 13B',12,2,120,'437132386','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-09-10 07:27:40.795','2025-10-17 20:57:51.021',NULL),
('2b9b8352-38a1-462f-8872-8754c00e64e4','c21cdd02-4af2-4b32-bc87-c70a576c3a99','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-14 16:33:42.278',5113,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','YOLCU EVİN','33634270535','33646051742','Fransa','GUERVİLLE','78930','148 RUE DE LA LİBÉRATİON -78930 GUERVİLLE - FRANCE',6,2.5,130,'515463699','0','0',NULL,1200,1,'GRİ ETİKET','2025-09-14 16:35:37.645','2025-10-25 09:00:13.547',NULL),
('2bc13cda-c525-42a2-a315-a0390ae06337','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:37:07.546',2238,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','DERYA GÜLLER','4915147542838','','Almanya','SAARBRÜCHEN','66113','LEBECHER STRABE 128',4,4.5,100,'449627061','5','5','Şoför çok yardımsever',1000,1,'MAVİ ETİKETLİ','2024-06-08 07:39:30.007','2024-06-20 21:23:26.239',NULL),
('2bd83cbf-8c3f-4acb-90f5-5fa761fa0a32','aaa4a453-cb36-4567-b88e-335acb07c024',NULL,'2025-10-16 13:05:49.307',6535,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','SONAY SAAR','0031647567122',NULL,'Hollanda','ZWİJNDRECHT','85RE3331','VEİLİNGDREEF 85 RE 3331 ZWİJNDRECHT HOLLANDA',0,2,120,'465742511','0','0',NULL,475,0,NULL,'2025-10-16 13:08:56.698','2025-10-16 14:55:27.394','2025-10-16 14:55:27.393'),
('2bdc9d94-c171-475a-ae24-5adf3fadaea9','eccfe611-9163-42aa-a1ff-e711af0248e6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-24 12:20:04.800',10795,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İYAD SHOURBAJİ ','32460966676',NULL,'Belçika',NULL,'6800','LA RUELLE 4, 6800 SBERCHAMPS ',16,2,120,'221591105','0','0',NULL,450,1,'YEŞİL ETİKET ','2025-09-24 12:21:25.367','2025-10-15 08:20:18.471',NULL),
('2be6b904-2905-4e27-ab5f-58e66f9487ff','394112c3-f977-4fc2-b430-775e79e472ca','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-27 08:45:25.476',8655,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ELİF GABEL ','33767057067',NULL,'Fransa',NULL,'67200',NULL,8,2,140,'982536674','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2024-12-27 08:47:05.621','2025-01-08 20:28:29.985',NULL),
('2bec061f-81f9-4dda-a4e3-f9afaa7f4903','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:57:44.461',7410,'47880255-08ee-4e99-940b-16038e07de55','ADEM ŞAHİN','33651617359','','Fransa','','01130','7 RUE DU PRELOURS',10,3.5,110,'478685156','5','5','Ürünümüz teslim edilene kadar sürekli bilgilendirme yaptığınız için teşekkürler ',1000,1,'KIRMIZI ETİKETLİ','2024-05-04 07:59:30.701','2024-05-21 19:08:29.600',NULL),
('2bec7dc4-1e0b-41fd-a49a-0b5961518451','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-24 08:34:41.745',6246,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LATİF KAAN ÇALIŞKAN','33695528311',NULL,'Fransa',NULL,'08000','26 RUE DE LA POUDEİRE 08000 LA FRANCHEVİLLE',0,2,120,'221260249','0','0',NULL,875,0,NULL,'2025-10-24 08:37:06.732','2025-10-24 08:37:06.732',NULL),
('2bf98fdf-48e1-48eb-89ed-995b2100ba96','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-22 09:08:16.903',8854,'3c7190b6-f6ee-4275-8958-d7af952132ab','GAMZE TUNÇ','4915221682693','4915221682693','Almanya','WEİNSBERG','74189','BEHEİMSTR 8 74189 WEİNSBERG ALMANYA',0,3,110,'371245433','0','0',NULL,700,0,'köşe takımı, 3 metreküp','2025-10-22 09:09:42.435','2025-10-22 11:19:33.120',NULL),
('2bfb4ebc-a071-48f5-9c44-727046a13ab1','796d8b7b-662b-493a-8d3f-78c3ae052712','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-16 06:41:01.163',2916,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','AHMET AKAT','333632361757','33647208983','Fransa','DRESLİNCOURT','60170','231 REU GEORGE SAND 60170 REİBECOURT-DRESLİNCOURT- FRANSA ( 05350232377 YEDEK NUMARA ) ',6,6.5,120,'817619747','0','0',NULL,1125,1,'AÇIK MAVİ ETİKET','2025-09-16 06:46:11.585','2025-10-10 21:29:43.022',NULL),
('2c12d266-801d-47b6-a3fe-3e5faa2457b9','173956a2-c232-495a-b036-4a6a36c073e2','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-03 11:06:41.981',4129,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MONİKA MORKİ ','41794613009','41794613009','İsviçre','RUBİGEN','3113','HUBELSTRASSE6 3113 RUBİGEN',5,5,140,'449693939','0','0',NULL,1000,1,'Yeşil etiketli','2025-02-03 11:14:02.599','2025-02-25 17:03:19.994',NULL),
('2c2b9f6a-7788-4e01-831d-aa89201542d0','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-26 11:47:26.199',1574,'c2d4ce84-536d-4816-837f-7abbf6a7e061','CHİKH HAMZA GHUFRAN','4917661473873',NULL,'Almanya',NULL,'83115','SAİLERBACHSTR.17',23,2,110,'248707022','0','0',NULL,150,1,'GRİ ETİKETLİ','2025-06-26 13:16:44.142','2025-07-04 21:24:20.482',NULL),
('2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37','394112c3-f977-4fc2-b430-775e79e472ca','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-09 10:28:00.976',3770,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AYHAN AKTAŞ ','330624632282',NULL,'Fransa',NULL,'26100',NULL,4,6,140,'982685222','0','0',NULL,2700,1,'KIRMIZI ETİKETLİ','2025-01-09 10:29:52.642','2025-01-19 14:52:05.854',NULL),
('2c353236-af7a-4d2d-b79e-d8ecc6a5ae6e','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-08-26 13:21:58.986',9273,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','VELİT FİLİZ','4917621650674','4917621650674','Almanya','BERLİN','10963','HALLESCHES UFER 52, 10963 BERLİN',0,4,110,'808855328','0','0',NULL,0,0,NULL,'2025-08-26 13:23:42.318','2025-09-05 18:38:58.038','2025-09-05 18:38:58.038'),
('2c4fddf4-35c6-4e66-a529-d3bcad5bb71b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-19 12:17:02.641',2546,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SERHAT KARATAŞ ','33618425759','','Fransa','','74540','4ROUTE DE BANGES',14,4,110,'449197003','0','0',NULL,1850,1,'TURUNCU ETİKETLİ','2024-09-19 12:24:13.988','2024-10-10 16:32:52.344',NULL),
('2c5c126c-885b-423a-9e95-19a5f6a09a61','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-23 08:10:41.252',2665,'47880255-08ee-4e99-940b-16038e07de55','LABABABİD WEJDAN','33614797015','3361479705','Fransa','92000','paris','44 BOULEVARD DES BOUVETS APT A845 92000 NANTERRE FRANCE',4,2,130,'478417862','0','0',NULL,700,1,'MOR ETİKET','2025-07-23 08:12:38.739','2025-09-01 11:08:22.515',NULL),
('2c93b982-af74-4681-a002-6a0883ae7377','394112c3-f977-4fc2-b430-775e79e472ca','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-12 08:47:49.630',8956,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','THOMAS TELAH','330758774283',NULL,'Fransa',NULL,'21000',NULL,8,4,140,'982681083','5','5','Good',1350,1,'SARI ETİKETLİ','2025-06-12 08:48:50.033','2025-06-22 09:27:04.634',NULL),
('2c93ce34-e03d-44d9-994a-7219e1c623b0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-07-30 16:16:53.933',5183,'47880255-08ee-4e99-940b-16038e07de55','ENVER GÜL','4915154689430','4915122429753','Almanya','VELLMAR','34246','HACKERSHAUSER STRABE 53 A 34246 VELLMAR ALMANYA',13,2,105,'478659791','0','0',NULL,1550,1,'MOR BEYAZ ETİKETLİ','2025-07-30 16:19:00.100','2025-09-24 14:32:43.887',NULL),
('2c97cb3e-43a3-4446-a336-f97bc3f68c00','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2024-12-27 13:36:26.236',9013,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GURAY SEYFELİ','32483716814','32483547124','Belçika',NULL,'2660','PİERRE VAN DEN EDENSTRAAT 23',5,5,120,'221390997','5','5','Isinin hakkini veren bir sofor. Kendisine hayirli yolculuklar dileriz. ',1325,1,'TURUNCU ETİKETLİ','2024-12-27 13:39:24.785','2025-02-10 18:24:47.366',NULL),
('2cd4df69-3bf7-4556-b02d-248a7c9eed51','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-07-21 07:06:20.635',10768,'3c7190b6-f6ee-4275-8958-d7af952132ab','EBRU ALTUNTAŞ','33767752609','33767752609','Fransa','ARPAJON','91290','6 RUE MARCELLE GOURMELON 91290 ARPAJON',0,2,120,'37165070','0','0',NULL,300,0,'MASA','2025-07-21 07:08:41.703','2025-08-26 11:48:15.661','2025-08-26 11:48:15.660'),
('2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:30:49.582',6211,'73596a75-b658-4249-8c71-b0490654bc8b','EMEL AYKAÇ','004915733909244',NULL,'Almanya',NULL,'22119','SPLİEDRİNG 28',2,1,0,'735258843','0','0',NULL,560,1,'BEYAZ ETİKETLİ','2024-12-20 12:32:28.222','2025-01-11 09:48:43.702',NULL),
('2d1546c2-bea6-40ad-a656-acdd6173cc27','394112c3-f977-4fc2-b430-775e79e472ca','2a352437-950c-42a9-9135-55482cf3977c','2025-07-30 08:39:44.348',9141,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ESTİFANOS HABTE ','41782334263',NULL,'İsviçre',NULL,'1018',NULL,2,2,140,'982496646','1','1','Yemek masasını sizden aldım, nasıl vidalayabilirim?',1200,1,'YEŞİL ETİKET','2025-07-30 08:40:49.825','2025-08-27 08:12:10.484',NULL),
('2d29dff2-ab81-4877-b223-c3503fe00f35','1f0119e0-2853-442a-8394-39cf94fce7df',NULL,'2025-03-21 10:00:54.073',3532,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','DİDEM BAKES','31628641442','31628730191','Hollanda','ZAANDİJK','1544','IRVİNG BERLİNSTRAAT 14, 1544 LD ZAANDİJK',0,2,120,'517807404','0','0',NULL,0,0,NULL,'2025-03-21 10:03:20.312','2025-03-21 11:23:00.464','2025-03-21 11:23:00.468'),
('2d2e3588-712f-4c84-a6f5-a45bc45a416b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c6a1c9e-fad3-44d2-8812-5ebe40baad05','2024-05-11 08:13:00.212',2301,'4126da30-ba9b-41b7-be29-865069aa484c','El osman','905393435887','','Almanya','Essen','','',2,1,0,'412877197','0','0',NULL,3200,1,'3 KAPAK ','2024-05-11 08:16:11.943','2024-05-23 11:42:34.524',NULL),
('2d3bf117-ace6-4823-84ca-6f7db821df9b','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-17 07:54:20.331',6551,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','PERİHAN ÖZVURAL','491796697290',NULL,'Almanya','ZELL İM WİESENTAL','79669','KİRCHSTR. 2\n79669 ZELL İM WİESENTAL',12,5.5,110,'531344250','0','0',NULL,1850,1,'SARI ETİKET ','2025-07-17 07:56:57.585','2025-08-29 16:53:17.534',NULL),
('2d5afee9-087f-41e1-a999-dc4fe606e35c','aaa4a453-cb36-4567-b88e-335acb07c024','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-11 08:42:49.041',9677,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','İBRAHİM AKIN','33786300110',NULL,'Fransa','REİCHSTETTE','67116','1 RUE DES MARGUERİTES 67116 REİCHSTETTE',1,4.5,120,'465524926','0','0',NULL,1000,1,'KIRMIZI ETİKET ','2025-08-11 08:44:55.190','2025-09-20 19:00:24.411',NULL),
('2d717ffb-678b-4e82-9f61-5357693131d8','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-04-10 08:43:22.968',3284,'6133a2db-79c4-4372-9338-505db46b1847',' RİM MOUSSA ','41799510981','41791394164','İsviçre','CHENE','1224','14 RUE JULES-COUGNARD, 1224 CHÊNE-BOUGERİES',0,6,140,'613868869','0','0',NULL,2600,0,'2600 CHF alınacaktır.\n25-30 Nisan teslim edilecektir.','2025-04-10 09:01:17.250','2025-05-12 14:42:10.681','2025-05-12 14:42:10.684'),
('2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3','05135cd5-2d33-4363-b51e-c9b83a94094d','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-12 16:46:34.362',8688,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MAİL BOXES','3464537473687444',NULL,'Almanya',NULL,'45768','BRASSERSTRABE 34',6,2,0,'223254418','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-09-12 16:58:43.417','2025-09-25 06:55:47.162',NULL),
('2df8f21d-ed0d-434f-b04f-7522c7fbbae4','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-26 08:34:06.763',10616,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SANDALYE','11111111111',NULL,'Almanya',NULL,'21335','HOTEL RATSMÜHLE',5,6.5,110,'248291895','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-02-26 08:37:33.873','2025-03-21 17:17:29.974',NULL),
('2e3dd4aa-6e0b-4063-aabf-0948a2561c35','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 12:59:53.439',10712,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HALİL İBRAHİM BACAKSIZ','4915560261024','','Almanya','BADEN','74172','STUTTGARTER STR. 36',3,1,100,'97623604','0','0',NULL,470,1,'GRİ ETİKETLİ','2024-09-09 13:01:19.302','2024-09-16 21:13:58.766',NULL),
('2e51945e-3da1-4c02-ae97-956500db2c2a','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-02-27 09:50:10.199',10733,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SELCAN KURU','4915739271239',NULL,'Fransa',NULL,'68128','9 RUE DES ORANES 68128 VİLLAGE NEUF',18,2.5,120,'221208954','0','0',NULL,1000,1,'KIRMIZI ETİKETLİ','2025-02-27 09:52:04.772','2025-05-02 17:08:29.291',NULL),
('2e594749-653d-418d-b1d8-5310f505a9c6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-09 11:55:10.700',6625,'e6d4faef-484c-4ce7-992c-906e05fc083e','DUDU ÖZDEMİR(K)','491718955351','4915756850025','Almanya','VERL','33415','BAHNHOFSTRASSE 42',12,4,110,'644754778','0','0',NULL,0,0,'MOR ETİKETLİ','2025-09-09 11:56:38.474','2025-09-24 14:32:48.661',NULL),
('2e714490-58ed-4864-b2bf-67a5cb20f5a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-11-02 07:50:21.579',2870,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','SEMANUR KÜTÜKÇÜ','31648475188',NULL,'Hollanda',NULL,'5673','JONKER FLORİSLOON 47',0,4,110,'750919384','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-11-02 07:53:51.130','2024-11-02 08:24:38.279','2024-11-02 08:24:38.285'),
('2e7c73f7-d738-4447-86bd-2c43c4f79b02','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-04-24 08:13:17.630',1519,'3c7190b6-f6ee-4275-8958-d7af952132ab','SAFİYE TINCA','436606200309','436606200309','Avusturya','SCHWECHAT','2320','HİMBERGER STRABE 81-83/9 2320 SCHWECHAT AVUSTURYA',17,4.5,140,'371194748','0','0',NULL,500,1,'KREM RENK ETİKETLİ','2025-04-24 08:14:41.407','2025-07-31 17:46:57.303',NULL),
('2e84e42f-b241-4285-8be1-464db22053be','8fff5e14-418c-4377-bd83-3a3f81383507','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-20 11:16:04.039',10844,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','IVANA ELİAS','491727832300','491713468875','Almanya','GERSTHOFEN','86368','MİLLÖCKERSTRABE 7',25,6,110,'437426295','0','0',NULL,1125,1,'SARI ETİKET','2025-08-20 11:19:45.702','2025-09-09 18:10:59.563',NULL),
('2e959f4e-0d79-4ec0-865b-ff5f684e63bf','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-20 08:28:05.804',10217,'47880255-08ee-4e99-940b-16038e07de55','İSMAİL YILMAZ','33622562039','33675622024','Fransa','LORİENT','56100','5 RUE RIBERT GOLLOU - LORİENT 56100',0,2.5,130,'478777575','0','0',NULL,1400,0,NULL,'2025-10-20 08:29:49.026','2025-10-24 07:28:53.293',NULL),
('2e9c0bdc-1469-4642-8dc7-5a45d837bbe0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:15:54.662',8077,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ÖMER ALİ ALKAN','31648870746','31634559022','Hollanda','DEN HAAG','','',13,5,100,'319897198','0','0',NULL,2280,1,'YEŞİL ETİKETLİ','2024-06-08 07:18:05.251','2024-06-22 11:10:53.464',NULL),
('2ea9f592-fc79-4bd5-aeff-4c86310c8b37','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-14 14:07:43.830',7569,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FARZANA SEDİGHİ','436609537403','','Avusturya','BREGENZ','6900','AMMİANUSSTRABE 5',4,3.5,120,'982691264','0','0',NULL,2350,1,'PEMBE ETİKETLİ','2024-10-14 14:19:19.500','2024-10-23 16:38:04.049',NULL),
('2eac751e-9abb-4289-a78f-365093ac6e16','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5d69534a-5f21-44ba-8343-594269f45f1a','2024-07-20 10:01:21.965',7681,'4126da30-ba9b-41b7-be29-865069aa484c','MEHMET ÇİL','','','Almanya','GREİSHEİM','64347','',0,1,0,'412450269','0','0',NULL,0,0,'','2024-07-20 10:02:51.200','2024-07-29 16:40:42.800',NULL),
('2eb37c1d-0fda-41c9-9eb2-518de9069f88','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 10:43:18.858',2955,'c2d4ce84-536d-4816-837f-7abbf6a7e061','CONSİGNEE','491716444408',NULL,'Almanya',NULL,'21107','STENZELRING 17',3,2,110,'2487154','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-02-27 10:48:01.804','2025-03-21 17:17:29.974',NULL),
('2eb5f10e-e566-4406-9074-57c0c21bd403','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-26 10:35:46.424',1170,'47880255-08ee-4e99-940b-16038e07de55','MİLLE FİERRA COELHO  LUDİVİNE ','33649856318','330235750785','Fransa','FLEURS','27520','44 ROUTE DU NEUBOURG GRAND BOURGTHEROULDE ISA FLEURS ',2,2,130,'478505417','0','0',NULL,1000,1,'GRİ ETİKET','2025-08-26 10:41:34.657','2025-09-08 05:17:31.693',NULL),
('2ed09389-6872-45ef-b60f-31ff8428b5fe','394112c3-f977-4fc2-b430-775e79e472ca','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-03 21:05:30.860',3550,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ALİ ŞİMŞEK','33767846954',NULL,'Fransa','Redange','57140',NULL,5,3.5,140,'982333020','0','0',NULL,0,0,'SARI ETİKETLİ','2024-11-03 21:07:48.431','2024-12-01 12:28:33.543',NULL),
('2f1cee80-98e2-4491-8790-84b0795e2440','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-20 08:47:21.646',1608,'e04b6588-6a22-4c59-8ad5-3cd7c3eecfb1','SEMİH AYDIN','905525002621',NULL,'Fransa',NULL,'83400','144 İMPASSE DU BERGER HYERES',8,16,130,'046487702','0','0',NULL,2160,1,'TURUNCU ETİKETLİ','2025-02-20 08:50:53.855','2025-03-01 17:30:01.496',NULL),
('2f2a65eb-44bb-4a5a-b907-73d6c6c49771','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-14 08:50:01.057',1158,'47880255-08ee-4e99-940b-16038e07de55','OSMAN KILINÇ','33652652450','33652652450','Fransa','SALES','74150','93  ROUTE DES MOLLİATS 74150 SALES FRANCE',1,2,130,'478205168','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-05-14 08:51:59.936','2025-05-26 06:37:52.206',NULL),
('2f2a9416-f846-4142-bbdc-6f31920db56f','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-02 13:08:30.705',5527,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','LEYLA AYDIN','4917621560869',NULL,'Almanya',NULL,'97422',NULL,20,4.5,110,'31951233','0','0',NULL,1230,1,'SARI ETİKETLİ','2025-01-02 13:17:28.636','2025-01-28 15:19:34.396',NULL),
('2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:52:31.855',4725,'47880255-08ee-4e99-940b-16038e07de55','ALİ KULABEROĞLU','4915783615401','491786241769','Almanya','AULENDORF','88326','HAUPTSTRABE 40',9,1,100,'478319922','0','0',NULL,0,0,'İSİM YAZILI','2024-05-10 06:54:19.374','2024-05-31 10:16:39.587',NULL),
('2f96bf63-9b6a-4629-9bf1-1f428f44e517','f784b688-ba6b-4886-87dd-fe4cfbed85b4','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-28 10:08:40.362',3432,'dea91080-5383-4085-af2e-7eace2c64224','MUSA ÖZER		','491773713394','491634503423','Almanya',NULL,'65604','OBERDORFSTR.10		\n65604 ELZ		\n',16,3.5,110,'910586114','0','0',NULL,1150,1,'MOR ETİKETLİ','2025-01-28 10:09:43.231','2025-02-18 09:36:12.669',NULL),
('2fb92d16-b307-4896-974c-b96cb9542bc6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-08-15 08:10:14.204',1128,'3c7190b6-f6ee-4275-8958-d7af952132ab','BÜŞRA POYRAZ','436606573775','436606573775','Avusturya','SALZBURG','5020','OTTO VON LİLİENTHAL STRASSE 54 SALZBURG AVUSTURYA',9,4.5,120,'371508043','0','0',NULL,1800,1,'TURUNCU ETİKET ','2025-08-15 10:16:09.782','2025-10-15 08:25:29.651',NULL),
('2fd537fd-8d71-4980-83ba-812e63488956','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-03 21:18:31.683',6428,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','JALAL ASLAM','33606409257',NULL,'Fransa','Annecy ','74000','74000 annecy ',11,4.5,140,'982966360','1','1','6428',1500,1,'AÇIK MAVİ ETİKETLİ','2024-11-03 21:20:09.638','2024-11-25 09:20:39.164',NULL),
('2fdbcaf5-7205-4828-8dfe-34a2370ccdc0','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-10 14:23:53.847',4858,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','ATIL SOPHİA','0767059929','0614160996','Fransa','BESANÇON','25000','24 RUE JACQUES PRÉVERT \n25000 BESANÇON',6,2,120,'505850944','0','0',NULL,650,1,'MAVİ ETİKET ','2025-08-10 14:25:52.069','2025-09-17 18:54:56.036',NULL),
('2fdeaf43-40b1-4ace-92ce-ff8cd4522e73','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-04 08:48:06.968',9431,'47880255-08ee-4e99-940b-16038e07de55','ZEYNEP ALEYNA ÖZBEY','33769187229',NULL,'Fransa',NULL,'45140','21 RUE DE LA PRAİRİE 45140 SAİNT JEAN DE LA RUELLE ORLEANS FRANSA',0,1,55,'478192530','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-11-04 08:50:11.606','2024-11-28 16:59:24.127',NULL),
('3008395f-ad73-440c-95df-6a289efc5dab','1764a07b-eb47-4578-b6cd-f3c0d0e743be','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-04-15 07:53:53.150',2136,'47880255-08ee-4e99-940b-16038e07de55','YAŞAR YALMAN','4917660894702','4917632998796','Almanya','KARLURUHE','76185','HERRMAN LEİCHTLİN STRABE 32 KARLURUHE 76185 ALMANYA',26,5.5,105,'478559056','0','0',NULL,1500,1,'TURUNCU ETİKETLİ','2025-04-15 07:56:58.309','2025-06-04 07:24:40.608',NULL),
('3012bc75-124d-4be7-b4db-cd1cbb0ff9bb','1764a07b-eb47-4578-b6cd-f3c0d0e743be','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-26 11:10:36.355',10213,'47880255-08ee-4e99-940b-16038e07de55','MURAT ŞEKER ','316389917702','31641101237','Hollanda','ZOETERMEAR','2722','VAN DER AOPAD 18 2722 BD ZOETERMEAR HOLLANDA',5,2,120,'478832291','0','0',NULL,800,1,'MOR ETİKET','2025-08-26 11:13:57.916','2025-09-12 19:46:50.947',NULL),
('3014fb42-2f2f-486f-8a00-c9ecf3f7497c','8fff5e14-418c-4377-bd83-3a3f81383507','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-07 07:31:11.121',10127,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MARİGLEN SHKEMBİ','33766392423',NULL,'Fransa','CHAMBERY','73420','663 ROUTR DES ESSARTS',2,3.5,130,'437431907','0','0',NULL,1270,1,'KIRMIZI ETİKETLİ','2025-05-07 07:35:05.560','2025-05-26 06:37:44.248',NULL),
('3022afa3-ee21-4e5f-a3a7-5a20829729f8','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-05-29 08:53:26.784',6453,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUHAMMED PERVANE','49157763611097','4917684770342','Almanya','SİNGEN','78224','EKKENHERDSTRABE 31',0,2,110,'644784213','0','0',NULL,1000,0,NULL,'2025-05-29 08:59:17.270','2025-06-05 14:22:35.212','2025-06-05 14:22:35.214'),
('304a2496-cb37-4646-a094-9980a688ced5','1764a07b-eb47-4578-b6cd-f3c0d0e743be','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-30 13:30:27.274',6033,'47880255-08ee-4e99-940b-16038e07de55','ALİ DİNAR','33652341181','33784196938','Fransa','BRUMATH ','67170','1 RUE DES ALOUETTES BRUMATH 67170\n FRANSA',17,2,130,'478185886','0','0',NULL,0,0,'sshlar','2025-05-30 13:33:29.620','2025-07-07 06:56:07.768',NULL),
('30529cb9-4bbf-4a63-8d88-6ac4e67509cb','5c723cdc-e582-4b00-8271-838c085984c2','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-14 09:26:32.846',2328,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUHAMMET TÜRKMEN','33652266722','33605874886','Fransa',NULL,'41100','25 ROUTE DE LA TUILERIE 41100 SAINT OUEN FRANCE ',8,2,130,'745952430','0','0',NULL,375,1,'AÇIKMAVİ ETİKETLİ','2025-05-14 09:29:56.975','2025-07-10 07:16:37.956',NULL),
('30753652-c249-4370-954e-0eb227ea17aa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-03-23 07:38:43.169',1174,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YENER DOĞAN','33652406089','','Fransa','CLUSES','74300','AVENUE DU DOCTEUR JACQUES ARNAUD',11,3.5,110,'50119540','0','0',NULL,800,1,'SARI ETİKETLİ','2024-03-23 07:41:47.078','2024-05-21 18:45:46.061',NULL),
('307b2e66-0c82-44f9-bcce-a3c2236f189f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-23 10:52:23.986',3523,'a42d8839-caef-4422-888f-cbfdf4188c5b','EKİN BEBE','111111111111',NULL,'Almanya',NULL,'1111',NULL,0,1,0,'428437129','0','0',NULL,0,0,NULL,'2024-12-23 11:00:18.013','2024-12-27 08:43:13.459','2024-12-27 08:43:13.461'),
('308ddadc-251a-4960-a99e-9154ac7e4c88','4c3a2917-702d-4b2d-be91-e8860cfc98a7','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-30 09:21:14.670',1003,'f4861afa-47df-4a6b-b9ca-da22afe273e4','ALBAN HASANİ','4917643510470',NULL,'Almanya','KELSTERBACH','65451','RÜSSELSHEİMER STRASSE 187 65451 KELSTERBACH\nDEUTSCHLAND',22,5.5,110,'486741087','0','0',NULL,1500,0,'TURUNCU ETİKET','2025-09-30 09:24:07.623','2025-10-25 08:58:56.097',NULL),
('30b6bd7d-f466-4e5d-98b7-9c04544e31a8','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-20 20:44:13.650',5048,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','SERHAT MOUEMİN','491726242111',NULL,'Almanya',NULL,'73207','PLOCHİNGEN/KARLSTRASE 36',31,2,110,'675799375','0','0',NULL,800,1,'GRİ ETİKETLİ','2025-06-20 20:57:22.229','2025-07-22 13:23:02.941',NULL),
('30d56795-1b1e-4834-832e-beb8e2339c41','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-21 07:31:42.124',6818,'3c7190b6-f6ee-4275-8958-d7af952132ab','SAİT YALÇIN','4915153002727','4915153002727','Almanya','HESSEN','36179','ANDER BLEİCHE 8 WEİTERODE 36179 BEBRA HESSEN ALMANYA',0,4.5,110,'37198203','0','0',NULL,1450,0,'köşe takımı + berjer','2025-10-21 07:33:34.473','2025-10-22 09:33:01.312',NULL),
('311d6f09-bcb6-4e2f-a20a-8c99e7177094','5c723cdc-e582-4b00-8271-838c085984c2','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-09 08:15:51.067',5861,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YUSUF ALAN SSH ','491742184791','491712326850','Almanya',NULL,'34246','OBERVELLMARSCHE STRASSE 54 34246 VELLMAR ALMANYA',7,2,105,'745639343','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-04-09 08:18:21.277','2025-05-13 09:06:18.176',NULL),
('31322282-8ccf-4553-94bc-7f1b8069ed4e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:44:18.226',3524,'73596a75-b658-4249-8c71-b0490654bc8b','MASOUME IBRAHİMKHEL','491788649783',NULL,'Almanya',NULL,'47053','HEER STR. 37',2,1,0,'735211280','0','0',NULL,1800,1,'MOR ETİKETLİ','2024-12-28 14:45:04.099','2025-01-07 17:28:52.027',NULL),
('313a72ed-6534-4a76-a704-0b5ce01d87db','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-24 12:30:27.333',4326,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SAMİR KERANOVİC ','41775230627',NULL,'İsviçre',NULL,'4132','GRÜNDENSTRASSE 50, 4132 MUTTENZ',12,3,140,'221837026','5','5','Top',1000,1,'YEŞİL ETİKET ','2025-09-24 12:32:05.891','2025-10-12 11:19:26.770',NULL),
('313ea73f-ae21-453f-98ea-2178061648bd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:55:35.178',1140,'b734c482-3c00-4897-ad35-bc358cd02d56','ALİ KIZILKAYA','033782054435','','Fransa','SAİNTE MARİE','25160','19B RUE BEAU SİTE',8,1,100,'734482220','0','0',NULL,250,1,'MAVİ ETİKETLİ','2024-05-04 09:57:08.619','2024-05-21 18:45:23.921',NULL),
('3158d721-cd4d-40c3-becb-f4648e896fd9','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-01-18 07:49:12.413',5417,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','AYGÜL MİL','004917662162513','004917662162513','Almanya','NİEDERSACHSEN','31137','AN DER BEEKE 5, 31137 HİLDESHEİM NİEDERSACHSEN/ALMANYA',0,2,110,'12727952','0','0',NULL,0,0,NULL,'2025-01-18 08:30:45.633','2025-01-24 06:52:14.423','2025-01-24 06:52:14.425'),
('3167a684-9120-4a08-a96f-a652ac70c76f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-09 12:55:17.217',2692,'4126da30-ba9b-41b7-be29-865069aa484c','CEMİL BEY','4917684673033','','Almanya','','','',3,5,0,'412119334','0','0',NULL,0,0,'','2024-10-09 13:09:35.918','2024-10-26 07:31:08.053',NULL),
('31898da9-acb0-4ff9-aff5-1305eceaf2d3','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-15 06:33:40.001',6558,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','RABİJE OSMANİ','4917657842770','4917642796230','Almanya','BERLİN','13355','DEMMİNER STRASSE 4 \n13355 BERLİN 6. ETAGE',11,5,110,'505332275','0','0',NULL,825,0,NULL,'2025-09-15 06:35:58.527','2025-10-20 07:18:09.468',NULL),
('31910f60-232b-44e2-8f56-f03979280a12','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:43:28.012',7598,'a42d8839-caef-4422-888f-cbfdf4188c5b','TURGAY YILDIRIM','4915754602001','','Almanya','KREFELD','47805','DİEBEMER BRUCH 132',7,1,100,'428510909','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-03-23 07:47:20.108','2024-04-03 18:54:59.982',NULL),
('31a99b88-a5a2-467c-9eb7-bab69bec01d2','1f0119e0-2853-442a-8394-39cf94fce7df',NULL,'2024-12-27 09:08:19.195',8095,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','YASİN ARSLAN','33664834021','33641723756','Fransa','SALLANCHES','74700','271, RUE DU 8 MAİ 1945, 74700 SALLANCHES/ FRANCE',0,1,0,'51744237','0','0',NULL,800,0,NULL,'2024-12-27 09:11:11.826','2024-12-30 12:59:47.338','2024-12-30 12:59:47.341'),
('31a9f03a-9f24-417c-b0b7-5e374d34b126','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-30 07:38:51.093',7569,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','HUSSEİN NAKAL','4915734590367',NULL,'Almanya','BERLİN','13407','GOTTHARDSTRASSE 66 13407 BERLİN',8,5,110,'531606130','0','0',NULL,1650,0,'TURUNCU ETİKET','2025-09-30 07:41:07.889','2025-10-20 07:18:12.638',NULL),
('31cd8435-cf46-4deb-b1e7-b94fe44ebdf9','05135cd5-2d33-4363-b51e-c9b83a94094d','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-27 15:09:49.733',8306,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MEO JONATHON SSH','33612326252','33617505236','Fransa','BOUC BEL AİR','13320','5 RUE FERNANDEL DOMAİNE SAN BAQUES',1,2,130,'437124353','0','0',NULL,0,0,'MOR ETİKET ','2025-08-27 15:12:45.508','2025-09-20 07:01:48.384',NULL),
('31e57ac5-fccb-463d-9767-6b43f825e71a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','17587478-e8f1-4fbe-afd1-d9025c9583a4','2024-10-21 07:50:57.676',10541,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','VOLKAN ÖZCAN','33783196763',NULL,'Fransa',NULL,'74300',NULL,0,4,0,'517495121','0','0',NULL,1050,1,NULL,'2024-10-21 07:53:34.276','2024-11-21 06:56:22.160',NULL),
('3218de28-55a1-4ef9-97e9-ca2400fc4715','56323a39-e192-4016-a254-840950ca2e27',NULL,'2025-01-21 19:04:27.223',10890,'7f34d75e-284a-42ac-9cbe-a29174748991','HASAN ÇETİNER','4917683020325','4915901365218','Almanya','BOBİNGEN','86399','SUDETENSTRASSE 12 86399 BOBİNGEN',0,3.5,110,'734230509','0','0',NULL,1100,0,NULL,'2025-01-21 19:53:23.571','2025-02-16 18:26:26.496','2025-02-16 18:26:26.499'),
('321b5102-f51d-4d38-a21e-c4a2191ea4ac','804a2f53-7a26-4e8e-a505-7fc107953b50','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-03 08:33:18.055',9115,'a42d8839-caef-4422-888f-cbfdf4188c5b','KADİR ÖZCAN','491749753629','4917635994280','Almanya',NULL,'22 67433','ALLENSTEİNER STRASSE 22 67433 NEUSTADT AN DER WEİNSTRASSE ALMANYA',29,2,0,'428417364','0','0',NULL,0,0,'1 KANEPE','2025-01-03 08:34:45.533','2025-02-06 09:24:48.478',NULL),
('322aeb29-42e3-4166-8669-1fa18b704bfc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:47:27.291',4432,'4126da30-ba9b-41b7-be29-865069aa484c','MEHMET KARA','491783209660','','Almanya','BRÜHL','','BRÜHL CAMİSİ',8,1,600,'412977083','0','0',NULL,600,1,'1 PALET 1 KUTU','2024-03-23 07:49:07.504','2024-04-03 18:55:06.259',NULL),
('32676e01-684e-4e88-b01e-02f858a6cf93','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-16 07:22:08.725',3399,'47880255-08ee-4e99-940b-16038e07de55','SEPİDEH AJORLOO','4915751613198','49151151816534','Almanya','STUTTGART','70565','WEGAWEG 6  70565 STUTTGART ALMANYA',22,5,105,'478854135','0','0',NULL,1700,1,'KIRMIZI RENK','2025-07-16 07:24:21.533','2025-07-26 21:25:05.739',NULL),
('3279cd33-84a3-4a75-b268-cbf614f54c41','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-08 11:34:27.245',9789,'8d03b939-d544-45f8-8173-464bea4e67ab','SELÇUK SÖNMEZ','4915222621206',NULL,'Almanya',NULL,'89165','BRECHTSTRASSE 24',32,2,110,'803961620','0','0',NULL,425,1,'AÇIKMAVİ ETİKETLİ','2025-07-08 11:35:57.957','2025-07-22 13:22:57.741',NULL),
('32a7763a-26ff-40ce-a7e9-6378f8554627','1764a07b-eb47-4578-b6cd-f3c0d0e743be','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-24 07:22:01.067',8018,'47880255-08ee-4e99-940b-16038e07de55','MÜCAHİT SÖYLEMEZ','491783919050','491634722211','Almanya','PORCHİM','19370','PUTLİTZER STRABE 1  19370 PORCHİM ALMANYA',4,8,105,'478342417','0','0',NULL,2270,1,'MAVİ ETİKETLİ','2025-04-24 07:25:24.571','2025-05-24 17:54:56.887',NULL),
('32af2488-e641-4d93-9e64-e4ff7977ab48','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-08 06:13:31.588',1056,'6133a2db-79c4-4372-9338-505db46b1847','KHALED SEMMO ','491748787633','491785431226','Almanya','BOTTROP ','46238','DEUTSCHLAND \nGOHRWEİDE 15\n46238 BOTTROP ',15,7.5,110,'613175888','0','0',NULL,2050,1,'TURUNCU ETİKET','2025-08-08 06:17:46.933','2025-09-18 15:07:50.258',NULL),
('32ce6385-317d-48fc-9fc4-c553326c562b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-19 08:12:36.754',7273,'47880255-08ee-4e99-940b-16038e07de55','NURCAN MANSUR','4915776398644','4915776398644','Almanya','MÜNCHEN','81735','KURT EİSNER STRABE 39  81735 MÜNCHEN',23,4.5,100,'478377442','0','0',NULL,2150,1,'MOR ETİKETLİ','2024-11-19 08:16:34.155','2024-12-09 17:29:19.987',NULL),
('32d385ed-3e8f-402f-80a2-9531544e451a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-03-27 07:54:23.418',7367,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÖZLEM KIZILARSLAN','4915733940520','01779194671','Almanya','WETZLER','35584','WALDGİRMESER STR 24',29,2,110,'644650618','0','0',NULL,1150,1,'GRİ ETİKETLİ','2025-03-27 07:59:44.248','2025-06-03 18:26:58.008',NULL),
('32d8dcee-9361-46e5-a98f-6e606f4ea7ca','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-14 08:08:13.623',8993,'e6d4faef-484c-4ce7-992c-906e05fc083e','CANAN ŞENEL','4369910398530','436604962982','Avusturya','WİEN','1120','EİCHENSTABE 6A STİEGE 1 TOP 108',13,5,120,'644319069','0','0',NULL,2200,1,'SARI ETİKETLİ','2025-05-14 08:15:53.120','2025-05-21 15:30:12.203',NULL),
('32e2befd-32f1-4bb7-a60e-635dd9c600ef','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-10 18:37:12.597',5926,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','donya bazaz','41794334443',NULL,'İsviçre','thun','3600','3600 thun ',2,4.5,140,'982692076','5','5','super🩷',1500,1,'MAVİ ETİKETLİ','2024-11-10 18:38:34.501','2024-12-15 20:14:44.541',NULL),
('32f7a105-8ee5-4d45-907c-2d7f861d1ce3','1764a07b-eb47-4578-b6cd-f3c0d0e743be','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-04-30 08:51:01.309',3672,'47880255-08ee-4e99-940b-16038e07de55','İNCİ TOKGÖZ','491636718375','491726402592','Almanya','MÜNCHEN','80807','MİLBERSHOFENER STR 98  80807 MUNCHEN ALMANYA',7,2,105,'478240909','0','0',NULL,350,1,'PEMBE ETİKETLİ','2025-04-30 08:52:44.003','2025-06-04 19:39:25.936',NULL),
('332b1f22-620c-42bd-8d4b-e8acc54988be','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-14 15:23:04.964',9559,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN BİLİCAN','32470652077','','Belçika','BUGGENHOUT','9255','KASTEELSTRAAT 223',0,1,44.45,'703624236','0','0',NULL,0,0,'','2024-03-14 15:25:07.987','2024-03-14 15:25:22.610','2024-03-14 15:25:22.609'),
('33559e2b-89eb-400e-bccc-223d68f8842e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-05 08:15:31.754',10333,'4126da30-ba9b-41b7-be29-865069aa484c','SEBAHATTİN ÜNVER','','','Almanya','Bönen','59199','GOTTFRIED KELLER STRABE',6,2.5,0,'412225517','0','0',NULL,350,1,'','2024-04-05 08:19:51.667','2024-05-02 19:56:42.327',NULL),
('335d66ef-091d-4af1-8b0b-38c2daa9e96d','bf6f92ba-eef7-4290-902d-b1bac86244bb','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-17 15:09:48.638',6147,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','OGUZHAN SARP','33606519879','33651909991','Fransa',NULL,'58000','45 RUE  ESTUTT DE TRACY 58000 NEVERS',4,4,110,'501345257','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2024-12-17 17:44:20.558','2025-01-11 14:07:41.414',NULL),
('3384ef49-434c-4b51-b74f-5e9f4a178772','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-20 13:27:44.600',8558,'e6d4faef-484c-4ce7-992c-906e05fc083e','DÖNDÜ YÖRÜK SSH','4917663287928','49015151400787','Almanya','HAMBURG','22549','LESEBERGWEG 27B HAMBURG 22549',7,2,110,'644458216','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-06-20 14:51:15.868','2025-07-25 18:05:05.030',NULL),
('3391efb6-f905-452e-9046-16422800fd88','1f0119e0-2853-442a-8394-39cf94fce7df','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-15 20:34:35.820',6492,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','ÖZGÜR PİLİÇ','4917657786100','4917643816856','Almanya','KARLSRUHE',' 76227','DÜRRBACH STRASSE 31,  76227 KARLSRUHE, DEUTSCHLAND ',25,5.5,110,'517447554','0','0',NULL,1700,1,'AÇIKMAVİ ETİKETLİ','2025-05-15 20:37:19.242','2025-06-04 07:25:10.371',NULL),
('339cd09c-c132-45d3-a7b6-80ffe5a2e8d6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-24 12:57:45.712',10704,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','YUSUF NAVRUZ ','1111111111111',NULL,'Almanya',NULL,'73430',NULL,20,6.5,110,'319141495','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-03-24 13:04:29.202','2025-04-05 13:45:20.920',NULL),
('33a66c99-d47d-4b2a-a8a1-74fa024a9e07','e6cc7d42-de29-4029-bf0f-5ba2156e1e85',NULL,'2025-01-09 13:02:59.098',1283,'a42d8839-caef-4422-888f-cbfdf4188c5b','SİDAR AKDENİZ','491634613400','4915773775727','Almanya',NULL,'66127 ','FRİEDRİCHSTRASSE 67 , 66127 KLARENTHAL - SAARBRÜCKEN\n\n',0,1,110,'428605585','0','0',NULL,0,0,NULL,'2025-01-09 13:04:30.850','2025-02-02 11:11:38.778','2025-02-02 11:11:38.781'),
('33c1702e-09af-4ac6-992c-6abbb6899f2c','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-05 09:31:55.417',5130,'e6d4faef-484c-4ce7-992c-906e05fc083e','KERİM ŞENTÜRK','4917663882376','4917680082781','Almanya','GEİSENHAUSEN','84144','LİNDENSTRABE 23',8,5.5,110,'644966461','5','4','Randagu biraz daha iyi ayarlanabilir.\n4 yildiz',1650,1,'AÇIK MAVİ ETİKETLİ','2025-05-05 09:42:22.109','2025-06-04 20:08:36.178',NULL),
('33cf2dd5-d360-43eb-8f3a-27e48526fd03','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-04 10:15:40.340',10922,'3c7190b6-f6ee-4275-8958-d7af952132ab','STEFANİA KİOSKER','491788532068','491788532068','Almanya','LİNKENHEİM','76351','ESCHENWEG 5 76351 LİNKENHEİM HOCHSTETTEN ALMANYA',16,2,110,'371734068','0','0',NULL,690,1,'YEŞİL ETİKET ','2025-09-04 10:18:02.620','2025-09-30 07:40:09.586',NULL),
('33e70679-b537-4fdc-8ce5-40aa59bc19f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:30:46.669',3662,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','YUSUF ADIGÜZEL','33634738043','','Fransa','SAİNT JEAN','57510','31 RUE NATİONALE',3,3.5,100,'976942978','0','0',NULL,350,1,'KIRMIZI ETİKETLİ','2024-05-04 09:35:08.632','2024-05-21 18:44:54.330',NULL),
('340801e4-6036-4b2f-9cae-d51385895b71','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-10-19 19:51:58.998',2511,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','KİM KNÖPFLE','4915203832383','4915203832383','Almanya','BAYERN','86836','MARİA-POYNTZ-STRASSE 20 86836 GRABEN BAYERN DEUTSCHLAND',0,9.5,110,'808690841','0','0',NULL,3100,0,NULL,'2025-10-19 19:53:22.225','2025-10-24 08:24:59.109',NULL),
('3416941c-5567-46cf-8f2b-ec732315a5b8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:55:15.603',1956,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLİZAR KOCADAĞ','491788611744','4915560792303','Almanya',NULL,'64665','ALTE BERGSTRASSE 6A',17,2.5,100,'745816008','0','0',NULL,750,1,'TURUNCU ETİKETLİ','2024-12-28 14:56:18.700','2025-01-06 20:08:12.782',NULL),
('34482f3d-44cb-4842-a5dc-1cad4ad4bef5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 09:44:45.325',3961,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MOHAMAD SULAİMAN','4915731719721','','Almanya','BERLİN','13509','BREİTENBACHSTR 24',1,16,75,'248810550','0','0',NULL,0,0,'','2024-03-12 09:46:44.543','2024-03-22 07:36:25.455',NULL),
('34998387-c573-429b-a68a-d13a844cfc40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:47:16.868',5580,'47880255-08ee-4e99-940b-16038e07de55','Hyusein petrov','31687397547','','Hollanda','Purmerend','1446','Wakerdijk 15',14,1,100,'478702716','0','0',NULL,0,0,'Mavi etiketli','2024-04-07 20:48:53.493','2024-05-02 19:56:42.327',NULL),
('34dc4506-d1e6-469c-93c4-450d31fe5fea','eccfe611-9163-42aa-a1ff-e711af0248e6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-15 15:06:19.520',3129,'22a1dbd6-475c-4d4b-bb13-f459e3029634','THOMAS MICHEL ','32499810587',NULL,'Belçika',NULL,'4800','RUE DU MAMELON VERT 33 4800 VERVİERS',14,2.5,120,'221685294','0','0',NULL,700,1,'PEMBE ETİKETLİ','2025-04-15 15:07:37.611','2025-05-02 06:57:34.636',NULL),
('34e0270e-97b8-4007-bdff-03282449c33a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:50:55.207',6962,'b734c482-3c00-4897-ad35-bc358cd02d56','FATMA KURT ÇAKIR','033789094109','','Fransa','SEURRE','21250','PARKİNG SAİNT MİCHEL',9,6,100,'734936220','0','0',NULL,800,1,'PEMBE ETİKETLİ','2024-05-04 09:53:38.003','2024-05-21 18:45:33.372',NULL),
('34e042be-7f8d-4047-b3b9-96ed6829bf2f','1764a07b-eb47-4578-b6cd-f3c0d0e743be','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-15 13:05:40.062',1134,'47880255-08ee-4e99-940b-16038e07de55','YASİN OĞUZ','31650899845','31636101599','Hollanda','ARNHEM','6845','MAASTRİCCT SİNGEL 35 6845 DA ARNHEM HOLLANDA',3,5.5,120,'478233957','0','0',NULL,1500,1,'TURUNCU ETİKETLİ','2025-05-15 13:14:11.903','2025-06-06 21:03:54.502',NULL),
('34efce18-6122-4639-ad74-6bf11623e4ef','394112c3-f977-4fc2-b430-775e79e472ca','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-12 08:30:49.422',3272,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NOUR MOHAMMAD YAKUBİ','33749000249',NULL,'Fransa',NULL,'38100',NULL,6,3.5,140,'982578025','0','0',NULL,1500,1,'MOR ETİKETLİ','2025-06-12 08:32:09.814','2025-06-23 09:30:00.019',NULL),
('35339fbe-2f0f-48c5-87b0-cc5d75325f26','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-29 08:25:27.077',1354,'47880255-08ee-4e99-940b-16038e07de55','NURCAN DOLDUR','41764331829','41798375512','İsviçre','RAPPERRSWİL','8640','SÖGESTRASS1 8640 RAPPERSWİL İSVİÇRE ',9,2,140,'478223658','5','5','Hersey icin Tesekür ediyorum zamaninda ve saatinde geldi mobilyalarim.\n',490,1,'AÇIK KAHVE','2025-08-29 08:27:27.278','2025-09-17 19:23:59.193',NULL),
('3539abdf-5c17-413b-8a00-89b58f218933','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:09:17.795',3107,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MEHMET SÜZEN','4917642908659','','Almanya','','38118','',2,2,100,'982562609','0','0',NULL,1300,1,'TURUNCU ETİKETLİ','2024-03-23 07:12:45.296','2024-04-03 08:28:41.117',NULL),
('35563c2e-e808-44fd-8e6b-f1d59af96d33','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-18 06:21:18.295',10061,'6133a2db-79c4-4372-9338-505db46b1847','VAİSE İBRAHİM','491639052092','4915770347137','Almanya','BOTTROP','46236','PFARRSTR 13  46236 BOTTROP',16,9,110,'613108463','0','0',NULL,2850,1,'MOR ETİKET','2025-08-18 06:24:22.730','2025-09-26 12:52:57.153',NULL),
('356bdd4e-5e08-4f43-9351-bdf6b54cdbb4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 13:26:29.660',9347,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELEK IŞIK','4917676864801','4915783856117','Almanya','WUNSTORF','31515','BARNE STRASSE 73, ',6,2,110,'64418413','0','0',NULL,550,1,'MOR ETİKETLİ','2025-02-24 13:34:48.818','2025-03-21 17:17:29.974',NULL),
('35aa85df-7aef-4067-ae33-117a3bc2dd18','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 09:51:15.606',7191,'d100cd88-31b8-4788-8c56-3df2fd4058aa','AHMAD ALHASAN','491631500970',NULL,'Almanya','HOF','95028','FABRİKZEİLE 27',14,4.5,110,'100799933','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-02-24 10:03:15.426','2025-03-21 17:17:29.974',NULL),
('35b607a9-05e1-4a39-8d5e-e9d252bd8443','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-22 14:58:02.919',6005,'3c7190b6-f6ee-4275-8958-d7af952132ab','SEMİH YEŞİLYAYLA','491608415396','4917672726152','Almanya','WEİNGARTEN','88250','GEORGE ELSER STRABE 4, 88250 WEİNGARTEN ALMANYA',15,6,110,'371716908','0','0',NULL,1500,1,'KIRMIZI ETİKET','2025-09-22 15:01:03.971','2025-10-09 09:25:06.591',NULL),
('35cb8f31-e838-41db-b77a-66b99e847841','1764a07b-eb47-4578-b6cd-f3c0d0e743be','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 12:11:49.612',2216,'47880255-08ee-4e99-940b-16038e07de55','EMEL YILDIZ','491749320466','491749320466','Almanya','BREMEN','28777',' BLOCKMACHER STR 1 A 28777 BREMEN ALMANYA',2,2,105,'478644533','0','0',NULL,0,0,'SARI ETİKETLİ','2025-02-24 12:13:15.404','2025-03-21 17:17:29.974',NULL),
('35cd7f79-46ea-4b11-b481-f22dd082a5d0','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0',NULL,'2024-12-26 10:16:26.713',6162,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','USJJS AL','494667363737',NULL,'Almanya',NULL,'77163','KKDJDKDSKWKDJW',0,1,100,'319928581','0','0',NULL,1100,0,NULL,'2024-12-26 10:18:33.241','2024-12-27 09:10:27.663','2024-12-27 09:10:27.665'),
('35f1b0f1-bc4f-4e6f-8148-f2b91da14c77','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-16 08:20:14.058',7004,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','','','','Fransa','CLAYE SOUİLLY','77410','',0,1,110,'655419413','0','0',NULL,0,0,'','2024-09-16 08:22:05.674','2024-10-02 09:28:49.965','2024-10-02 09:28:49.982'),
('3610bba5-de59-4197-9fdf-4ea4e4998699','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-07 11:35:54.696',10795,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','AYSEL OK','491782206321','','Almanya','','64545','OKRIFTELER STRABE 21',2,4,100,'976245604','1','5','Şöförden gayet memnundum ama koltuk kumaşından hiç memnun değilim. Kalitesiz kumaş kullanılmış . İnsanları bu şekilde mağdur bırakmak bence hiç doğru değil. ',0,0,'MOR ETİKETLİ','2024-10-07 11:43:33.160','2024-10-24 19:09:25.282',NULL),
('361c79f6-d2f7-4391-a551-aeba4ac518de','8fff5e14-418c-4377-bd83-3a3f81383507','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-17 10:50:31.504',9514,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DİLAN ÜNVER','31611299714',NULL,'Hollanda','UTRECHT','3452','DOYENNEPELAAN 76.',3,9.5,120,'437584936','0','0',NULL,2305,1,'AÇIK MAVİ ETİKETLİ','2025-07-17 10:54:04.151','2025-08-11 12:32:33.741',NULL),
('36207ae6-947b-4a63-b98b-478d30a194b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-23 12:24:20.611',10981,'a42d8839-caef-4422-888f-cbfdf4188c5b','NADİR KURUKOL','4915788014296','4917631419046','Almanya',NULL,'70327',NULL,25,2,110,'428131786','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-02-23 12:25:48.230','2025-03-04 20:47:46.448',NULL),
('3645be91-e47a-4a21-8c81-c49771ba3639','5c723cdc-e582-4b00-8271-838c085984c2','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-06-12 14:59:30.496',2798,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA SARI','4915147524518',NULL,'Almanya',NULL,'89518','STEINBEISSTRABE 28 HEIDENHEIM AN DER BRENZ 89518',5,7.5,105,'745619301','0','0',NULL,2350,1,'SARI ETİKETLİ','2025-06-12 15:05:11.249','2025-07-01 19:00:59.515',NULL),
('365ff697-3271-4de2-aa7d-b8bcf4ff9590','1764a07b-eb47-4578-b6cd-f3c0d0e743be','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-10 09:29:45.337',7374,'47880255-08ee-4e99-940b-16038e07de55','SAMET BEY','31686125426','31684292598','Hollanda','SPİJKANİSSE','3206','SCHERPGROS 16 3206 SL  HOLLANDA SPİJKANİSSE',1,8.5,120,'478544570','0','0',NULL,1450,0,'AÇIK MAVİ ETİKET','2025-10-10 09:33:41.354','2025-10-25 08:59:25.500',NULL),
('3677d700-20f1-449d-b4d8-d9b08ec6b141','eccfe611-9163-42aa-a1ff-e711af0248e6','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-11 11:50:24.965',4589,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AZİZE KAYA','4917636373200',NULL,'Almanya',NULL,'33428','SÜRENBREDE 9 , 33428 HARSEWİNKEL',4,2,110,'221946527','0','0',NULL,480,1,'MOR ETİKETLİ','2025-01-11 11:53:59.558','2025-01-31 12:16:13.312',NULL),
('368245d4-9f2d-4657-8e21-783fb08ea560','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-26 13:37:50.094',10199,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','','','','Hollanda','NİEUWERSLUİS','3631','ANGSTELKADE 2A',6,6,0,'027339599','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-07-26 13:40:48.991','2024-08-07 08:45:53.944',NULL),
('36c2bf88-d916-406a-9c75-5831ceac476b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-18 10:59:24.685',3349,'f91bb148-259f-42bb-9f08-b97a4cd49dbc','ERKAN ÇELİK ','33788856164',NULL,'Fransa',NULL,'93360','25 AVENUE DU PRESİDENT KENNEDY',6,6.5,0,'911398945','0','0',NULL,0,0,'MOR ETİKETLİ','2024-12-18 11:04:22.427','2025-01-10 16:33:51.205',NULL),
('36cefbee-b74b-43cf-ad5c-7484e0e0f6f7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-23 07:19:35.823',9126,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','RAMİSH MİRZAYER','4917622016838','','Almanya','','61350','',3,1,100,'449401217','0','0',NULL,970,1,'','2024-05-23 07:20:42.134','2024-05-29 11:21:56.855',NULL),
('36d04374-8820-448d-9e27-e2a098baa9f9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 13:21:29.348',1390,'73596a75-b658-4249-8c71-b0490654bc8b','SEMİL HADZİ','0041799084222',NULL,'Almanya',NULL,'79798','HAUPT STR 15',11,1,0,'735905073','0','0',NULL,1183,1,'BEYAZ ETİKETLİ','2024-12-13 13:23:00.351','2024-12-21 10:34:20.584',NULL),
('36d38390-5cfa-4e01-8327-52dbfc708657','8184d19c-0d1f-4439-978c-7a3364e54967','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-27 09:54:10.454',7124,'b0c1192a-7d38-4b69-a901-778f65a98b9d','EMRE KIZIL SSH','4915785625950',NULL,'Almanya','DEUTSCHLAND','47803','INRATHER STRASSE 221\n47803 KREFELD\nDEUTSCHLAND',10,2,110,'011222896','0','0',NULL,0,0,'GRİ ETİKET','2025-08-27 09:57:31.810','2025-09-12 06:56:40.400',NULL),
('36e13cd7-5444-4fd3-b0c0-95a15516c80a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-05-31 12:11:57.962',10552,'a42d8839-caef-4422-888f-cbfdf4188c5b','DİLARA KILIÇ','','','','','','',0,5.5,0,'428413605','0','0',NULL,0,0,'','2024-05-31 13:01:25.779','2024-07-20 09:52:33.078','2024-07-20 09:52:33.082'),
('36f25521-b01c-4589-be32-1479a5a1b79e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 21:15:04.720',6343,'d3157cbd-9f22-499b-b371-4eff6e509b92','Mirkan cem','4306764892040','','Avusturya','Hall in tirol ','6060','Fessergasse 31',3,3,120,'315164103','0','0',NULL,750,1,'Pembe etiketli ','2024-04-07 21:18:35.709','2024-05-02 19:56:42.327',NULL),
('36fc131d-bc86-4534-8af5-a0b5a37ff93e','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-03 10:12:17.757',8640,'93551a3a-1718-4d23-8200-422fb4f0d5b4','YASİN YAMANOĞLU','905433560559',NULL,'Almanya','BERLİN ','10178','KARL-MARX-ALLEE 51',4,4,0,'93566108','0','0',NULL,0,0,NULL,'2024-12-03 10:16:20.375','2025-01-11 14:08:00.763',NULL),
('3702b5a9-ea4c-409a-aff6-311eb12eb584','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-15 14:27:11.364',3443,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLİSTAN ÇİÇEK','4917692843831','491723213351','Almanya',NULL,'25746',NULL,4,1,100,'745276835','0','0',NULL,550,1,NULL,'2024-10-15 14:27:54.066','2024-10-26 07:30:12.615',NULL),
('37032355-b423-4a3a-bb38-ee78ac469313','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 20:24:49.841',8960,'6133a2db-79c4-4372-9338-505db46b1847','SELMA BAJRAMOSKA','41798624904','41798262813','İsviçre',NULL,'6971','HUEBER REBGARTEN 5',13,2,140,'613633231','0','0',NULL,0,0,'Mavi etiketli','2025-02-13 20:27:53.848','2025-04-26 16:16:51.992',NULL),
('371ed4dd-6766-4075-a1fd-881baaf53b96','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-21 08:02:33.618',2301,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','NURGÜL ÖZDEMİR ','4917661928608',NULL,'Almanya','BADEN','73655','ADELBERGER STRABE 30',10,3,0,'750450570','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-10-21 08:10:24.792','2024-10-30 18:09:56.509',NULL),
('37513226-d4df-4cbc-b99c-f0566be6cb46','8fff5e14-418c-4377-bd83-3a3f81383507','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-16 13:36:12.321',7738,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SELMA YILMAZ ','33782835819',NULL,'Fransa','GOUSSAİNUİLLE','95190','11 RUE ARAGO',5,4,120,'437649696','0','0',NULL,650,1,'TURUNCU ETİKET','2025-09-16 13:38:32.411','2025-10-10 21:29:51.184',NULL),
('3753ec0d-793c-43d2-920b-d39827ee0154','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-24 13:26:24.244',4819,'c2d4ce84-536d-4816-837f-7abbf6a7e061','NASTENA IROBE-POŞETLER','491723845058',NULL,'Almanya',NULL,'85368','BAVYERA MOOSBURG AN DER ISAR 60',10,1,0,'248539327','0','0',NULL,400,1,'BEYAZ ETİKETLİ','2024-12-24 13:33:26.674','2025-01-08 10:30:55.332',NULL),
('375c4744-28e0-4fab-a9cf-b3b1451e7848','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-22 11:57:45.578',10797,'47880255-08ee-4e99-940b-16038e07de55','AYŞE TUNÇKAŞIK','491717692852',NULL,'Almanya','STUTTGART','70174','LEİCHEN STRABE 7A 70174 STUTTGART ALMANYA',0,3.5,105,'478345195','0','0',NULL,0,0,'3 M3','2025-10-22 12:02:29.443','2025-10-23 10:16:48.758',NULL),
('37c5e10d-e0b6-4c94-85c7-2b6278fcee2c','8fff5e14-418c-4377-bd83-3a3f81383507','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-14 11:16:33.424',4317,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','IVANA JURCEVİC','436763676926',NULL,'Avusturya','WİEN','1230','TRİESTER STR. 350/7',13,2,120,'437869312','0','0',NULL,350,1,'YEŞİL ETİKETLİ','2025-05-14 11:19:04.031','2025-06-03 09:41:12.981',NULL),
('37d103ae-cd34-456d-bf73-1ddb563d8a20','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-22 07:36:06.588',4899,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT AKTAŞ','31625064385',NULL,'Hollanda','EİNDOVEN','5684','DE WAAL 2E',3,2,0,'412400536','0','0',NULL,200,0,'TURUNCU -MAVİ BANTLI KOLİLER','2025-10-22 07:36:54.277','2025-10-22 13:07:09.586',NULL),
('37e2474e-9d12-4f0f-900d-4305b84d27f1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-04 07:47:52.402',9040,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','HEROLİND PROVATAJ','33603993672',NULL,'Fransa',NULL,'60110','10 RUE NOVA 60110 MERU/FRANSA ',2,10.5,120,'750496630','0','0',NULL,0,0,'SARI ETİKET ','2025-09-04 07:51:34.146','2025-10-04 13:57:34.401',NULL),
('37e24e6c-6aac-4ee7-b2f5-433071dc1d49','1f0119e0-2853-442a-8394-39cf94fce7df','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-07 10:06:02.507',2654,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','ELİF SIKI ','32484736205','32489309952','Belçika','GENT','9041','GROENSTRAAT 63, 9041 OOSTAKKER ',6,2.5,120,'517157021','0','0',NULL,775,1,'KIRMIZI ETİKETLİ','2025-07-07 10:08:11.733','2025-07-26 16:11:59.387',NULL),
('37f59dff-6352-4082-a18f-d2696e483eff','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-10 12:01:46.303',3970,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','BEYTULLAH ARAS','','','Almanya','','','',0,5,100,'319324843','0','0',NULL,1315,1,'','2024-05-10 12:10:30.695','2024-05-29 19:00:07.929',NULL),
('37faeeb0-a5b7-4b97-8159-3e4c585ae6f8','f784b688-ba6b-4886-87dd-fe4cfbed85b4','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-11 20:41:34.506',3345,'dea91080-5383-4085-af2e-7eace2c64224','ÖZKAN ÖZKOŞAR','33651400749','33651400749','Fransa',NULL,'33450','30 ROUTE DE CAUSSADE 33450 MONTUSSAN BORDEAUX		\n		\n',6,12.5,130,'910756975','0','0',NULL,3600,1,'turuncu renk  EXTRA 100 EURO İLE 3600','2025-06-11 20:44:38.782','2025-07-14 06:05:11.367',NULL),
('3810b138-eae3-49b3-94fb-6ece3e64ea2e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-10 12:14:44.232',7807,'d100cd88-31b8-4788-8c56-3df2fd4058aa','YUSUF','49176849361733','','Almanya','BAHRDORF','38459','',1,11,100,'100972804','0','0',NULL,1000,1,'LİLA-MOR ETİKETLİ','2024-05-10 12:34:12.875','2024-06-10 13:50:39.163',NULL),
('381be1c2-928b-42d0-a2f3-8a80afb39ed3','eccfe611-9163-42aa-a1ff-e711af0248e6','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-06 09:19:29.117',5085,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BARBOSA SHANNA ','33769707760',NULL,'Fransa',NULL,'29200','4 RUE DE QUİZAC , BREST 29200 FRANSA ',0,2,130,'221403218','0','0',NULL,600,1,'YEŞİL ETİKETLİ','2025-03-06 09:21:06.299','2025-03-29 21:27:41.676',NULL),
('383c0dfd-fe5e-4691-9b5f-187f66c80c04','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-08-19 15:09:53.401',8473,'59868701-abe4-4705-a7e6-d91c2c69262e','FATİH YÜKSEL','491781976531','491772703881','Almanya',NULL,'12349','AN DEN BUCKOWER FELDERN 18, 12349 BERLİN/NEVKÖLLN',18,4.5,110,'59878032','0','0',NULL,1500,0,'GRİ ETİKET','2025-08-19 15:12:01.796','2025-10-20 07:17:57.978',NULL),
('383f84ab-67a9-43c3-89be-23dcca380e91','313cc2e2-5529-49ab-abe5-27b5d390bc5f','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-24 16:14:06.906',4966,'6133a2db-79c4-4372-9338-505db46b1847','IRA YİLDİRİM ','4915204104793','491759698096','Almanya','HERSCHEİD ','58849','IN DER WİNZENBECKE 5 58849 HERSCHEİD ',21,2,110,'613297420','0','0',NULL,750,1,'YEŞİL ETİKETLİ','2025-03-24 16:17:03.134','2025-05-05 11:34:48.934',NULL),
('383fe013-af48-41d5-ad33-ad7c8b16446b','eccfe611-9163-42aa-a1ff-e711af0248e6','4c4828d9-9707-439a-b671-bb6ed27bf116','2025-01-04 23:06:40.116',1008,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SEYİT GENÇALİOĞLU ','4369919159261',NULL,'Avusturya',NULL,'1220','DONAUSTADTSTRASSE 30/12/35  1220 WİEN',1,8,140,'221476651','5','5','Beklediginizden hizli bir sekilde kargomuz teslim edildi söförede ayrica tesekkurler ediyorum',3300,1,NULL,'2025-01-04 23:11:48.921','2025-01-15 08:08:42.659',NULL),
('3894922a-0cf2-4bd8-94ae-aac69c8c7eac','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 21:02:23.890',3458,'47880255-08ee-4e99-940b-16038e07de55','Özcan nazlı','491621912454','','Almanya','Mannheim','68305','Nauheimer straabe 16\n',5,1,0,'478281011','0','0',NULL,0,0,'Sarı etiketli','2024-04-07 21:08:24.868','2024-05-02 19:56:42.327',NULL),
('38aec1a2-aa0a-4d63-9082-896aaa3694be','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-09-11 10:36:18.559',4827,'b0c1192a-7d38-4b69-a901-778f65a98b9d','ESRA İSMAİL','491607634230',NULL,'Almanya','BREUBERG','64747',' IM  BREUNGESGRABEN 8  64747 BREUBERG',0,5.5,110,'011548428','0','0',NULL,4080,0,NULL,'2025-09-11 10:46:18.992','2025-10-08 15:47:00.062','2025-10-08 15:47:00.061'),
('38c7e847-02cf-481b-b2ca-7299334fad05','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-27 15:50:22.206',7321,'47880255-08ee-4e99-940b-16038e07de55','SEVCAN SALİ','4917623171726','4917623171726','Almanya','MÜNİH','80637','REİNMAR PLATZ 20 80637 MUNCHEN ALMANYA',22,4.5,100,'478863315','0','0',NULL,2240,1,'MAVİ ETİKETLİ','2024-11-27 15:55:13.757','2024-12-09 17:29:19.987',NULL),
('38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-23 08:14:25.221',7407,'47880255-08ee-4e99-940b-16038e07de55','ÖZKAN ERDEM ','33753285709','33753794689','Fransa','PARİS','9999','\n\n14 RUE SAİNTE SAENS 91240 ST MİCHEL SUR ORGE',5,4,130,'478784133','0','0',NULL,1500,1,'BEYAZ ETİKET','2025-07-23 08:17:45.001','2025-09-01 11:08:13.633',NULL),
('38e09ff7-02c9-4d9c-8e18-67048459c54e','585b4575-ecea-4671-89b2-199f0605ed62',NULL,'2025-10-22 12:40:55.608',9103,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','OMİD REZAİ','017661228234','05388618969','Almanya','BERLİN','13591','NENNHAUSER DAMM 134, 13591 BERLİN',0,2,110,'786654251','0','0',NULL,1700,0,NULL,'2025-10-22 12:42:56.504','2025-10-22 12:46:56.820',NULL),
('391a1fd1-39d8-4cd4-837d-1a6143c744d8','9c2e84a6-e19f-46ed-9dbb-4745ed235475',NULL,'2025-07-30 14:27:43.110',10496,'7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','ANİSA MURTOVİ','41793900271',NULL,'İsviçre',NULL,'1820','MONTREUX SUİSSE 1820 İSVİÇRE',0,2,140,'776958920','0','0',NULL,1000,0,NULL,'2025-07-30 14:36:27.604','2025-08-22 19:06:45.849','2025-08-22 19:06:45.848'),
('39266e8b-9caf-4386-a36a-8133aa79e848','804a2f53-7a26-4e8e-a505-7fc107953b50','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-11 07:26:46.942',9735,'a42d8839-caef-4422-888f-cbfdf4188c5b','GÜRSEL KURTULMUŞ','32470174105','3247788295','Belçika',NULL,'9240 ','ZELE 9240 HANSEWELDE NO:72',7,5,120,'428659303','0','0',NULL,550,1,'MAVİ ETİKET','2025-08-11 07:28:15.413','2025-09-04 06:17:02.024',NULL),
('3932d875-21e8-45e1-a16c-797670968c92','8fff5e14-418c-4377-bd83-3a3f81383507','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-25 07:22:40.890',7552,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SİBEL HİTAY','4917631090224',NULL,'Almanya','LANGWEDELER','27299','LANGWEDELER STR.10',8,6,110,'437812245','0','0',NULL,1140,1,'SARI ETİKETLİ','2025-08-25 07:26:23.100','2025-09-16 06:34:01.481',NULL),
('39388d94-97db-4210-9b52-61151393cf23','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-11 09:09:19.399',3472,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','HİCRAN KAPLAN','32485874064','32488006856','Belçika','LİMBURG','3940','COMONSWEG NR 2 3940 HECHTEL EKSEL LİMBURG/BELGİE',12,4,120,'319206159','0','0',NULL,1205,1,'BEJ RENK ETİKETLİ','2025-01-11 09:11:55.553','2025-02-08 15:04:47.831',NULL),
('39397b1a-3018-4479-9b5f-2c8efb77f6d0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-21 12:53:54.210',10322,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ÇUVALLAR','4917683277906',NULL,'Almanya',NULL,'58097','ALTENHAGENER STR.30',18,2,110,'24891590','0','0',NULL,300,1,'BEJ RENK ETİKETLİ','2025-03-21 12:55:15.451','2025-04-07 11:35:23.400',NULL),
('3940cd3d-d2f7-46b6-8add-88c26b8f55d2','5c723cdc-e582-4b00-8271-838c085984c2','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-06 10:06:48.794',10773,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET KIRMALI SSH','4917644265408','4917644265407','Almanya',NULL,'78532','SCHLÖSSLEWEG 15 78532 TUTTLINGEN ALMANYA ',12,2,105,'745961245','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-05-06 10:08:59.760','2025-05-23 14:07:13.362',NULL),
('3942cfd4-4dd6-486c-8571-aa8d22e10518','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-27 08:10:06.051',6956,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEMA KUZULUK','4917621610242','4917684245023','Almanya','HOPPENHEİM','64646','HANNOVERSTRABE 11',19,2,110,'644653549','0','0',NULL,1000,1,'1 PALET','2025-03-27 08:14:52.182','2025-04-25 09:51:57.803',NULL),
('396cb143-14ce-480a-8762-a43699b4d2d2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2c596345-3f37-4571-9d62-83b8b96993d4','2025-06-23 08:11:11.795',8287,'47880255-08ee-4e99-940b-16038e07de55','ATİLLA POLAT','33744210474','33768384960','Fransa','PARİS','91390','3ALLEE JEAN RACİNE MORSANG SUR ORGE 91390 PARİS',6,7,130,'478502129','5','5','Çok memnun kaldım.',3950,1,'AÇIK MAVİ ETİKET','2025-06-23 10:16:37.744','2025-09-07 10:20:07.252',NULL),
('3977a5d5-74d4-4a83-924b-634b068065a2','05135cd5-2d33-4363-b51e-c9b83a94094d','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-30 17:10:49.187',3168,'4126da30-ba9b-41b7-be29-865069aa484c','GÖKHAN YETİŞ','31657147344',NULL,'Hollanda',NULL,'8331','STEENWİJK',3,2,0,'41295798','1','1','Geri bildirim konusunda oldukça eksik bir şirketsiniz ve sizinle bir daha çalışmamak için özen göstereceğim.',0,0,'TURUNCU ETİKETLİ','2025-06-30 18:22:29.670','2025-07-23 07:48:32.158',NULL),
('398f18a6-4116-4296-8890-4d154fc30789','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-09-27 09:01:43.711',5456,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','HÜLYA ÇELİK ','33616174478','33672564792','Fransa','MONTAUBAN','82000','62 RUE MAURİCE RAVEL',4,7.5,140,'517910414','0','0',NULL,1400,1,'PEMBE ETİKETLİ','2024-09-27 09:47:08.188','2024-11-25 09:20:39.164',NULL),
('398f925f-e9ff-4494-a4eb-d80689e256ac','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-03-15 14:19:24.429',7597,'e6d4faef-484c-4ce7-992c-906e05fc083e','AMAL EL JABBARİ','491636759658','4915753272553','Almanya','NEUSS','41462','VENLOER STRABE 53, 41462 NEUSS',14,6,110,'644789157','0','0',NULL,1850,1,'SARI ETİKETLİ','2025-03-15 14:25:10.846','2025-05-13 09:05:03.014',NULL),
('39a2c1f9-754e-40a7-9e18-c240852aa8cd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-03-30 10:49:39.650',7101,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BEA JONGERİUS','310645034303','','Hollanda','HOUTEN','3994','PUNTMOS 31',11,4,100,'982984016','0','0',NULL,0,1,'','2024-03-30 10:52:54.994','2024-05-02 19:56:42.327',NULL),
('39a9ae66-741d-4e91-97aa-a8ea9f83985b','05135cd5-2d33-4363-b51e-c9b83a94094d','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-05 18:23:05.397',1311,'4126da30-ba9b-41b7-be29-865069aa484c','SAGAX CONSULTİNG ','3656253652736275',NULL,'Almanya',NULL,'10557',NULL,17,2,0,'412380161','0','0',NULL,250,1,'BEYAZ ETİKETLİ','2025-09-05 18:24:11.947','2025-09-12 22:10:03.961',NULL),
('39b8366a-c9ba-4484-bb91-a877325d0b1c','eccfe611-9163-42aa-a1ff-e711af0248e6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-18 08:11:04.550',9200,'22a1dbd6-475c-4d4b-bb13-f459e3029634','FURKAN KAYABAŞ','32472247513',NULL,'Belçika',NULL,'2610','DRUKPERSSTRAAT 36, 101,  2610 ANTWEPEN ',10,2,120,'221631052','0','0',NULL,750,1,'KIRMIZI ETİKET ','2025-09-18 08:12:40.355','2025-10-15 08:22:16.961',NULL),
('39b9f7fd-eff8-4a6e-975f-50fa78b8d93e','8fff5e14-418c-4377-bd83-3a3f81383507','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-20 09:16:16.544',7669,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MARİNE NETO','33783709896',NULL,'Fransa','SAUSSAN','34570','24 RUE DE CERES',0,2,130,'43720744','0','0',NULL,950,1,'MOR ETİKETLİ','2025-03-20 09:18:48.721','2025-04-28 11:58:44.064',NULL),
('39bb85ad-efc0-4fc2-9377-e76f06d914ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-14 09:42:16.405',2116,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','YILMAZ ÇELİK','491626841610',NULL,'Almanya',NULL,'44339',NULL,16,4.5,110,'455160997','0','0',NULL,0,0,'YEŞİL ETİKET','2025-10-14 09:45:24.988','2025-10-25 08:59:03.115',NULL),
('39bff5ea-6368-4a28-b3a2-8e798294a348','eccfe611-9163-42aa-a1ff-e711af0248e6','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-06 12:59:29.865',3287,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MEHMET ALİ YİĞİT','32494160305',NULL,'Belçika',NULL,'6061','CHAUSSEE DE NAMUR 87 6061 MONTİGNİES SUR SAMBRE',1,2,120,'221441605','0','0',NULL,550,1,'BEYAZ ETİKETLİ','2025-02-06 13:00:52.342','2025-03-09 12:10:06.602',NULL),
('39d4eef6-e838-4975-96ef-7f71258c7d3a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:22:57.240',1157,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET GÜRKAN','4917663383581',NULL,'Almanya',NULL,'21502','GEESTHACHT ',6,2,100,'745661183','5','5','Ürün ambalajlari köşebentsiz ve korunaksizdi.ürünüm hasarli geldi.teslimat sürecinde sorun yasamadim.tesekkür ederim.iyi calismalar',600,1,'TURUNCU ETİKETLİ','2024-11-12 15:24:21.704','2024-11-23 16:16:50.477',NULL),
('39fe7b17-1a25-490e-8486-f344c7b112d9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:44:44.780',3753,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYSEL ASLAN','4917661070525','4915738348642','Almanya','MÜNCHEN','81735','QUİDDE STR22 ',0,3.5,100,'745606440','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2024-06-08 07:46:50.278','2024-06-20 20:15:25.555',NULL),
('3a1ef1a0-617f-4576-b71f-a4e298cceac4','5c723cdc-e582-4b00-8271-838c085984c2','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-20 13:29:19.850',9512,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÜNAL KÖR ','33656867217','33695831959','Fransa',NULL,'73300','RUE 408 G CLEMENCEAU SAINT JEAN DE MAURIENNE 73300 FRANSA ',1,4.5,120,'745660870','0','0',NULL,1100,1,'TURUNCU ETİKETLİ','2025-01-20 13:31:36.926','2025-02-03 10:51:44.846',NULL),
('3a203b82-4de4-41c8-a1e5-3cd5ed8aa42d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3271b677-620a-4420-88c0-5c08cda9fe26','2024-03-15 14:13:44.129',1439,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA KORKMAZ','','','Almanya','BERLİN','12057','ARONSSTRABE 88',0,5,100,'428184423','0','0',NULL,800,1,'','2024-03-15 14:17:32.071','2024-03-26 05:54:51.119',NULL),
('3a352d28-b0b9-4b59-9821-a77910ca2fbb','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-13 22:21:26.420',8525,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','RECEP DUYGULU','436702040780',NULL,'Avusturya','VİYANA','1230','ENDRESSTRASE 93-95/7/4-1230 WİEN',12,8.5,120,'675139037','0','0',NULL,3000,1,'MOR ETİKET ','2025-08-13 22:27:22.493','2025-09-18 07:01:30.939',NULL),
('3a413ad6-1fa8-40a1-8617-788cf4219a4a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-04-17 15:40:44.580',1014,'e6d4faef-484c-4ce7-992c-906e05fc083e','BARLEB KASS HANNA','31640579879','31634618099','Hollanda','ENSCHEDE','7542','WİLTHUİSLANDEN 126',0,2,120,'644106987','0','0',NULL,1150,1,'MOR ETİKETLİ','2025-04-17 15:45:53.988','2025-06-07 08:55:09.675',NULL),
('3a570254-b092-4922-92c1-beea8773ea63','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:27:22.290',2937,'47880255-08ee-4e99-940b-16038e07de55','HAKAN YAZICIOĞLU','33761054646','','Fransa','GİROMAYNY','90200','3 RUE DE LA TURİLERİE',5,1,110,'478807426','0','0',NULL,600,1,'MAVİ ETİKETLİ','2024-09-28 15:29:19.755','2024-10-09 08:37:14.648',NULL),
('3a6116b3-b977-4787-9877-ea0b090bc7e7','d074816b-78fd-4378-91c0-3835eba28f44','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-28 14:00:23.414',8902,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','OSMAN SATİCİ','4917624811097',NULL,'Almanya',NULL,'67346',' 67346 KEİFERN WEG 18/A STR.',25,2.5,110,'614536111','0','0',NULL,800,1,'SARI ETİKET','2025-07-28 14:04:49.495','2025-09-04 06:16:31.245',NULL),
('3a78ddf5-1cf6-4a73-8d31-30826f499319','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 21:09:40.948',9315,'d3157cbd-9f22-499b-b371-4eff6e509b92','Serkan yıldız','436602121085','','Avusturya','Lustenau','6890','Martin kink strasse 38',4,3,120,'315752826','0','0',NULL,1100,1,'Yeşil etiketli','2024-04-07 21:14:56.395','2024-05-02 19:56:42.327',NULL),
('3a9d845e-c0a4-45e3-bf3d-740d6536bc45','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-16 06:48:45.452',3511,'dea91080-5383-4085-af2e-7eace2c64224','RUKİYE EKERBİÇER ','33749894912',NULL,'Fransa',NULL,'02400','12 RUE DE LA MARE AUX CANES ',8,3,110,'910903191','0','0',NULL,600,1,'BEYAZ ETİKETLİ','2024-12-16 06:54:33.199','2025-01-10 09:45:03.348',NULL),
('3aa437d7-1b46-478b-9e81-baf5f2be1eb0','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-23 07:57:16.250',5026,'e6d4faef-484c-4ce7-992c-906e05fc083e','CİHAN TOKAY SSH','05417912611','05394752647','Almanya','MÜNCHEN','81539','SCHLİERSEESTR 77',0,2,110,'644890936','0','0',NULL,0,0,NULL,'2025-10-23 08:03:56.849','2025-10-23 08:03:56.849',NULL),
('3ace9aac-a197-4e9b-9f08-d07c0b7f938b','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-05-14 08:57:15.167',9435,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LEPETİT CRİSTELLE (SSH)','33768202556',NULL,'Fransa',NULL,'54310','13 RUE DES CHARMES 54310 HOOME COURT',0,2,120,'221901011','0','0',NULL,575,0,NULL,'2025-05-14 08:59:56.762','2025-06-27 18:01:26.455','2025-06-27 18:01:26.454'),
('3ad53d36-5814-4fb1-b916-51c2073c9b01','363b87bc-2706-4c48-b0fd-04ba0c56950c',NULL,'2025-09-25 08:56:05.871',9628,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLŞAH KUŞ','363637373737373',NULL,'İsviçre',NULL,'0000',NULL,0,4,0,'745151910','0','0',NULL,0,0,NULL,'2025-09-25 08:59:37.717','2025-10-01 09:24:36.520','2025-10-01 09:24:36.519'),
('3aef1178-e8a2-4762-a4d1-895ac16f415f','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 07:56:12.296',7346,'3c7190b6-f6ee-4275-8958-d7af952132ab','SEDA YILMAZ','4917620585657','4917620585657','Almanya','BEİLSTEİN','71717','KATHERİNENRİNG 9 71717 BEİLSTEİN ALMANYA',26,4.5,110,'371429381','0','0',NULL,1400,1,'MOR ETİKETLİ','2025-04-24 07:58:36.360','2025-05-20 06:23:59.224',NULL),
('3b0f4dee-9f8d-4f00-8b0b-7f628ea71698','173956a2-c232-495a-b036-4a6a36c073e2','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-31 21:52:42.374',1802,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','RAHİMİ','31613006004',NULL,'Hollanda','Netherlands','3069','BR albert camusplaats 286 Rotteram',2,2.5,100,'449666503','1','1','şoför kaba bir insandı ve kamyondan malzemelerimi çıkarmak yerine ekstra para istedi. çok kötü teslimat, masa ayakları çiziklerle hasarlı , ',700,1,'KIRMIZI ETİKETLİ','2024-10-31 21:55:20.339','2024-11-12 17:27:07.590',NULL),
('3b1547c4-588c-40d9-9372-6dd0bc1df655','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-17 08:47:14.167',6596,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','BERKANT CEYLAN ','31627024701','31627024701','Hollanda','AMSTERDAM ','1067','JAN VAN DUİVENVOORDESTRAAT 189\n1067MT \n',6,2,120,'657784193','0','0',NULL,0,0,'1 PALET','2025-09-17 08:49:55.628','2025-10-02 06:11:48.354',NULL),
('3b24c44b-141a-498a-a365-b5111a55d868','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-08 14:33:38.042',4411,'3c7190b6-f6ee-4275-8958-d7af952132ab','HALİLOVİÇ ELMA','491621988472','491621988472','Almanya','LANGWEİD AM LECH','86462','KARWENDELSTRABE 3 86462 LANGWEİD AM LECH ALMANYA',35,2,110,'371104317','0','0',NULL,750,1,'MAVİ ETİKET','2025-07-08 14:35:26.368','2025-07-21 17:00:44.678',NULL),
('3b29ef33-2d5d-4e29-b828-9833896d4a0d','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-07-25 08:13:28.770',2280,'59868701-abe4-4705-a7e6-d91c2c69262e','HASSAN KHORRAM','4915772539240','4917672416653','Almanya',NULL,'22145','LAPPLANDRİNG 26, 22145 HAMBURG ALMANYA',4,2.5,110,'598441020','0','0',NULL,1375,1,'MOR ETİKETLİ','2025-07-25 08:15:20.113','2025-09-16 06:34:21.592',NULL),
('3b2b9553-2254-427e-9970-41bddf8e65b0','313cc2e2-5529-49ab-abe5-27b5d390bc5f','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-18 11:32:48.484',10858,'6133a2db-79c4-4372-9338-505db46b1847',' İLKER YAVAŞOĞLU','4915227637315','4915252103069','Almanya','WÖRT AM RHEİN','76744','JAHNSTRASSE 11B\n76744 WÖRTH AM RHEİN',19,2,110,'613252288','0','0',NULL,395,0,'SARI ETİKET ','2025-09-18 11:36:00.834','2025-10-22 13:06:48.332',NULL),
('3b5dfdd8-edb3-4e39-a9f5-5ea586431b28','f784b688-ba6b-4886-87dd-fe4cfbed85b4','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-04 07:59:59.570',7768,'dea91080-5383-4085-af2e-7eace2c64224','ZELİHA AKCAN','491605646374','4915172036890','Almanya',NULL,'84034','STETHAİMERSTRASSE 13 84034 LANDSHUT',17,2,110,'910291071','0','0',NULL,0,0,'Etiketli','2025-02-04 08:01:53.986','2025-02-24 20:28:04.441',NULL),
('3b6129d0-8adb-475b-a9bb-394ff6773ada','8fff5e14-418c-4377-bd83-3a3f81383507','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-20 11:58:52.886',9991,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','TUĞBA BALIKÇI','491742555594','491744555584','Almanya','FRAKNURT AM AİN','60435','BOSKOOPSTR 28',19,2,110,'437154123','0','0',NULL,450,1,'SARI ETİKET','2025-08-20 12:00:35.733','2025-09-05 08:50:58.370',NULL),
('3b7689bf-7ebf-44e3-8355-6807100fe5de','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-14 10:35:16.004',4358,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELİSA DÜZME','4915202113856','4915111866659','Almanya','KÖNİNGSBRUNN','86343','ALPENSTRABE 17C',3,4.5,110,'644796083','0','0',NULL,1175,1,'AÇIK MAVİ ETİKETLİ','2025-08-14 10:42:17.195','2025-09-03 06:12:11.936',NULL),
('3bb4499e-7b18-422f-a19d-ece35be90286','df0d8353-2caa-413c-9f14-b01af77df00b','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-06-24 09:26:04.329',5222,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','FİRAS MACHANTAT','491627758662','491627758662','Almanya',NULL,'58675',NULL,4,10.5,110,'750125400','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2025-06-24 09:44:49.375','2025-07-02 11:46:45.984',NULL),
('3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-04 09:20:44.427',6633,'8d03b939-d544-45f8-8173-464bea4e67ab','SALİH KAHRAMAN','491634192330',NULL,'Almanya',NULL,'61191','TAUNUSSTR. 15 61191 ROSBACH',28,2,110,'803441454','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-10-04 09:21:56.045','2025-10-17 06:15:16.791',NULL),
('3be4ecd7-d378-4dec-aa13-23a899f8bbeb','622ce64a-aa43-475c-929c-9298491d72d5','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-10 10:00:23.466',8277,'e41c8c53-684c-4376-8162-2e589c44b742','WALİ MAADAN','33616450587',NULL,'Fransa','MARCORİGNAN','11120','9 AVENUE DE NEVİAN ',3,2,130,'418857351','0','0',NULL,710,1,'GRİ ETİKETLİ','2025-06-10 10:02:53.695','2025-08-05 13:05:11.125',NULL),
('3c33fcf8-dece-4d1b-bc38-5ebe74c82464','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 11:09:26.964',2150,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MEDZENİTH GMBH','4356256625652652',NULL,'Almanya',NULL,'13593','WİLHELMSTRABE 30G',14,2,0,'223444495','0','0',NULL,0,0,'TONER KUTULARI','2025-07-08 11:11:04.344','2025-07-24 18:00:53.306',NULL),
('3c3a0ffd-2c10-4488-924d-af36cb5763bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-05 13:57:12.747',10814,'73596a75-b658-4249-8c71-b0490654bc8b','RASHİCA ADNAN','4917662746063',NULL,'Almanya',NULL,'71065','ERNST-BARLACH STR',15,1,0,'73558075','0','0',NULL,1330,1,'MOR ETİKETLİ','2025-01-05 13:58:12.617','2025-01-09 10:06:09.562',NULL),
('3c3d8662-c519-424b-a30b-3c4e5d01c1e1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 13:52:55.672',7359,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AKKAY NADİA','32486080855',NULL,'Belçika',NULL,'1080','BOULEVARD LEOPARD 2',14,2,110,'22133183','0','0',NULL,1100,1,'SARI ETİKETLİ----MÜŞTERİYE GİTMEDEN ÖNCE BANA HABER VER CAMLARIN ALICISINI ARICAM','2024-11-21 13:55:38.722','2024-12-04 13:09:46.997',NULL),
('3c4d5d4a-9ea9-4045-ac66-d16b3b30ec2c','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-07-11 08:22:42.250',10102,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','SHOWROMM','11111111111',NULL,'Almanya',NULL,'1111',NULL,0,2,110,'107239545','0','0',NULL,0,0,NULL,'2025-07-11 08:25:22.207','2025-07-12 09:23:26.876','2025-07-12 09:23:26.875'),
('3c78b7fc-a182-4269-8da4-db683ff8cada','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-30 12:27:54.874',3063,'3c7190b6-f6ee-4275-8958-d7af952132ab','KUDRET KALK','491781529585','491781529585','Almanya','WESSELBUREN','25764','DOHRNSTRABE 24 25764 WESSELBUREN',2,3,110,'371804669','0','0',NULL,710,1,'MOR ETİKETLİ','2025-04-30 12:29:37.360','2025-05-24 17:55:04.433',NULL),
('3c99fa74-861a-4491-a1d0-f58a8971a7b2','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2024-11-13 10:24:06.167',10822,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Nader siala ','49015224227248',NULL,'Almanya',NULL,'31135',NULL,0,1,140,'982707795','0','0',NULL,650,0,NULL,'2024-11-13 10:25:10.482','2024-11-19 15:12:12.710','2024-11-19 15:12:12.718'),
('3caa13eb-3143-47f2-b11e-c9f3575e57b0','394112c3-f977-4fc2-b430-775e79e472ca','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-17 12:29:20.566',2500,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MAGBULE DZELİLİ','41788774757',NULL,'İsviçre',NULL,'8953',NULL,9,2,140,'982843761','0','0',NULL,1300,1,'SARI ETİKETLİ','2025-01-17 12:30:30.168','2025-02-01 10:51:11.058',NULL),
('3cbb1188-1698-4b6e-bd28-06d238414388','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:00:57.181',2499,'4126da30-ba9b-41b7-be29-865069aa484c','SEYFETTİN BİLİCAN','','','Belçika','','9255','KASTEELSTRAAT 223',8,1,4370,'412741555','0','0',NULL,4370,1,'YARIM TIR','2024-05-29 09:04:50.646','2024-06-11 14:05:08.568',NULL),
('3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5','eccfe611-9163-42aa-a1ff-e711af0248e6','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-01-12 14:23:58.959',6644,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NAİMA BOURAJJOU','33646824181',NULL,'Fransa',NULL,'34000','91 RUEDE SARDAİGNE 34000 MONTPELLİER',3,2,130,'22186590','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-01-12 14:27:51.697','2025-03-04 15:38:15.828',NULL),
('3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51','05135cd5-2d33-4363-b51e-c9b83a94094d','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-29 12:26:48.260',8030,'4126da30-ba9b-41b7-be29-865069aa484c','HÜSEYİN SAYLAN','491779689978',NULL,'Almanya',NULL,'41464',NULL,9,2,0,'412678735','0','0',NULL,770,1,'PEMBE ETİKETLİ','2025-07-29 12:28:11.740','2025-08-08 12:23:53.637',NULL),
('3d2878ed-86ff-4ab4-a6eb-f24022792e37','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-09-12 11:23:41.380',5613,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','ABBAS GELERİ','4917621895120','4917620715846','Almanya','FRANKENBERG','09669','AUBERE CHEMNİTZER STABE 21',2,3.5,0,'517914097','5','5','Kaliteli hizmet',1150,1,'','2024-09-12 11:29:01.832','2024-11-21 06:56:27.863',NULL),
('3d2aaa7f-67db-4dff-a3ad-5b3684784654','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-10 15:30:19.995',2464,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','DURSUN GÜNBEYİ','32466345026','','Belçika','MAASMECHELEN','3630','JEURİSSEN STRAAT 6',4,2.5,100,'501766543','0','0',NULL,2050,1,'GRİ ETİKETLİ','2024-08-10 15:38:23.162','2024-08-31 18:15:48.180',NULL),
('3d2e4684-1f1f-4b69-af07-96f688d5b93f','313cc2e2-5529-49ab-abe5-27b5d390bc5f','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 09:29:10.021',4153,'6133a2db-79c4-4372-9338-505db46b1847','ISMAİL REMMO','4917681321777','4917680857659','Almanya','ESSEN','45147',' WİCKENBURGSTRASSE 30\n45147 ESSEN',23,2,110,'61330729','0','0',NULL,650,1,'PALET','2025-05-13 09:31:07.491','2025-07-24 10:25:43.424',NULL),
('3d40d0f6-e7bd-434d-934e-23f8c73df745','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-07-31 12:18:27.924',5248,'59868701-abe4-4705-a7e6-d91c2c69262e','ENES İSMET UGUZ','4917663691991','4915251454520','Almanya',NULL,'24539','MÜHLENSTRABE 45 A, 24539 NEUMÜNSTER',2,8,110,'598986653','0','0',NULL,0,0,'YEŞİL ETİKET','2025-07-31 12:20:36.480','2025-10-07 06:17:47.042',NULL),
('3dc2cba9-0647-4ca4-9fa8-0d67554d850a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-13 14:51:57.436',5085,'e6d4faef-484c-4ce7-992c-906e05fc083e','(K)SİNEM İDRİZAJ ','4915204346659','4915201020700','Almanya','HABMERSHAİM','74855','BUCHENWEG 22',29,4.5,110,'644880161','0','0',NULL,725,1,'MOR ETİKET','2025-08-13 14:58:48.346','2025-09-03 19:37:53.203',NULL),
('3dc5e146-3fe8-432e-96b4-cb8472b9343c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-01 17:20:10.394',6454,'47880255-08ee-4e99-940b-16038e07de55','KEYVAN GHADİMİ','491638012299','491625752306','Almanya','HAMBURG','22459','FRAHMESTRABE 73 HAUS 12 22459 HAMBURG ALMANYA AAA',9,4,105,'478363734','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-07-01 17:21:44.112','2025-07-25 18:04:56.369',NULL),
('3dce54b1-e7aa-464d-b22d-56c831e082b2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-16 17:26:42.418',9485,'4126da30-ba9b-41b7-be29-865069aa484c','ŞÖFÖR MEHMET','32484855240',NULL,'Belçika',NULL,'9090',NULL,0,5.5,0,'412395222','0','0',NULL,720,1,'MOR ETİKETLİ','2025-07-16 17:27:10.577','2025-08-12 06:14:45.105',NULL),
('3deaeffc-f7ae-4254-af05-4a37b20814a8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-16 09:28:30.832',1114,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','DERYA KÖSE','33651995967','','Fransa','METZ','57645','2B RUE DES BLEUETS',3,6.5,110,'449208438','0','0',NULL,2200,1,'KIRMIZI ETİKETLİ','2024-09-16 09:42:45.863','2024-10-08 07:57:49.259',NULL),
('3e19392f-7b28-4ec5-bd54-c32058400252','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:52:11.976',8969,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EBRU DEMİRHAN','4915566942853','491625434501','Almanya',NULL,'86356','ALTE REICHSSTRASSE 31 A',12,5,100,'745422037','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2024-12-17 17:27:08.185','2025-01-11 10:16:45.910',NULL),
('3e323a55-ba70-413e-929d-bc1527816bbc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-15 13:09:52.786',4856,'85834865-ac23-4c00-a99b-c9551971a5a1','CANKUT BEY','4915202074220',NULL,'Almanya','NÜRNBERG','90473','IMBUSCH STRABE 6',6,7,0,'858200454','0','0',NULL,300,1,'KIRMIZI ETİKETLİ','2024-10-15 13:26:04.812','2024-10-30 11:17:48.985',NULL),
('3e41715f-3ab6-49c2-82c0-0d29a29b4a56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 13:24:27.984',5696,'73596a75-b658-4249-8c71-b0490654bc8b','İBRAHİM BULUT','004917642976478',NULL,'Almanya',NULL,'82008','GRÜNAUER ALLLE 49',14,1,0,'73570714','0','0',NULL,1120,1,'MOR ETİKETLİ','2024-12-13 13:25:45.102','2024-12-21 08:19:18.498',NULL),
('3e6f544c-260c-4661-9a22-59d5cb509c0a','5c723cdc-e582-4b00-8271-838c085984c2','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-24 06:57:41.269',9305,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLDEN KARADAĞ','4915115356238','4915115356238','Almanya',NULL,'33605','BRESLAUER STRABE 24 33605 BIELEFELD ALMANYA ',6,2,105,'745291553','0','0',NULL,350,1,'KIRMIZI ETİKETLİ','2025-04-24 06:59:04.359','2025-05-13 09:06:30.362',NULL),
('3e7bc361-1239-4318-a168-479ffa7372b0','f784b688-ba6b-4886-87dd-fe4cfbed85b4','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-28 15:25:58.534',4790,'dea91080-5383-4085-af2e-7eace2c64224','BİRCAN ŞAHİN','491783053622','4915739347909','Almanya',NULL,'88250','GABLERSTRABE 10		\n88250 WİNGARTEN		\n',20,5,110,'91074356','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-05-28 15:28:34.759','2025-06-17 16:02:01.069',NULL),
('3ec0fac2-4ee2-4e9f-8698-576c7ac60363','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-24 10:17:28.719',1750,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','KAZIM CENGİZ','4922039168112',NULL,'Almanya',NULL,'51149','HANSESTRASSE 73',11,1,100,'655935224','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-12-24 10:29:08.651','2025-01-06 20:09:34.953',NULL),
('3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bd143f82-77da-4c1d-9d90-001698b828cf','2025-09-01 13:10:19.157',7579,'27cbce83-310c-4e98-830f-7433b10c2efd','İLYAS ÖZBEK ','31633137745',NULL,'Hollanda',NULL,'2624','MULTATULİWEG 9 2624 CD DELFT',7,3.5,120,'278583277','0','0',NULL,970,1,'SARI ETİKET','2025-09-01 13:11:40.155','2025-09-12 19:46:35.543',NULL),
('3ee9e633-d24c-4516-8992-e6b95c9dc558','51b55e5b-7487-4d8a-923e-163f04d0b1d9','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-02-03 17:52:14.841',9009,'73596a75-b658-4249-8c71-b0490654bc8b','ASLI AYCİ','0033649778500',NULL,'Fransa',NULL,'49800','6 ALL DE LA LOİRE AUTHİON',6,2,0,'73555265','0','0',NULL,1330,1,'TURUNCU ETİKETLİ','2025-02-03 17:53:42.718','2025-02-14 15:00:10.497',NULL),
('3f0da6fe-5c46-4444-a319-47ee65028a68','4c3a2917-702d-4b2d-be91-e8860cfc98a7','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-08-29 07:35:27.068',3885,'f4861afa-47df-4a6b-b9ca-da22afe273e4','FARIH SANAE','33769173074',NULL,'Fransa','AMBILLY','74100','9 RUE DE L\'HELVÉTİE 74100 AMBİLLY FRANCE',9,2.5,130,'486609627','0','0',NULL,700,1,'KOYU YEŞİL ETİKET ','2025-08-29 07:41:47.304','2025-10-15 08:32:41.217',NULL),
('3f10ddd5-0494-4a63-8c1b-40acc9372609','eccfe611-9163-42aa-a1ff-e711af0248e6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-24 10:54:05.245',9247,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ALİYE DALKAYA','33666926469','33675157353','Fransa',NULL,'93370','161 BİS CHEMİN DU CLOS ROGER MONTFERMEİL ',2,2.5,120,'221763889','3','3','👍🏻',780,1,'YEŞİL ETİKET','2025-07-24 10:55:56.667','2025-09-01 19:00:07.910',NULL),
('3f18122e-004e-4381-bc37-c92c815065a9','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-08-20 09:49:51.365',10486,'6133a2db-79c4-4372-9338-505db46b1847','SEVVAL KELES','436602233690','436766933902','Avusturya','PÖLTEN','3100','MAXİMİLİANSTRASSE 49 TOP 85\n3100 ST. PÖLTEN',0,2,120,'613495902','0','0',NULL,0,0,NULL,'2025-08-20 09:52:52.841','2025-08-27 09:19:08.245','2025-08-27 09:19:08.244'),
('3f298ea0-796a-4ae2-a1d8-43723fc8f5e0','8fff5e14-418c-4377-bd83-3a3f81383507','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-16 08:34:29.252',1112,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','RASİM OZAN','436609968921',NULL,'Avusturya','SALZBURG','5110','WERK STR. 11,  5510 OBERNDORF BEİ SALZBURG/AVUSTURYA',7,4.5,120,'437642214','0','0',NULL,1800,1,'MAVİ ETİKETLİ','2025-06-16 08:37:53.782','2025-06-29 15:02:48.570',NULL),
('3f435f52-f9e1-4789-86ed-910c595d9e14','51b55e5b-7487-4d8a-923e-163f04d0b1d9','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-25 19:16:45.558',6298,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ALPEREN BAYRAM','31611699188',NULL,'Hollanda',NULL,'2496','STEENTİNJDSİNGEL 37',1,2,120,'65722585','0','0',NULL,300,1,'MERMER MASA','2025-03-25 19:18:57.772','2025-04-09 12:54:23.745',NULL),
('3f7ffe14-ff1f-4d95-8dd4-55570a12656c','f784b688-ba6b-4886-87dd-fe4cfbed85b4','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-14 06:39:54.582',5215,'dea91080-5383-4085-af2e-7eace2c64224','AHMET EMİN GÜL','4917624864505','4917624864507','Almanya',NULL,'88212','WANGENERSTRABE 134/1 88212 RAVENSBURG',19,3.5,110,'910201328','0','0',NULL,750,1,'PEMBE ETİKETLİ','2025-05-14 06:41:27.952','2025-06-17 16:02:05.831',NULL),
('3f82ae91-19cb-4663-bb33-377d660eea84','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:23:05.686',9323,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ZEYNEP ALKIŞ','33787094714','33676578058','Fransa','QUİMPER','29000','20 RUE SUZANNE FLON',0,3.5,110,'745964132','3','5','9323',1200,1,'TURUNCU ETİKETLİ','2024-05-10 06:25:48.018','2024-06-06 11:14:28.484',NULL),
('3f94ebca-ddaa-4014-83ed-71965cea96d3','1764a07b-eb47-4578-b6cd-f3c0d0e743be','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-08-29 08:31:01.361',5972,'47880255-08ee-4e99-940b-16038e07de55','EDOLİNA AJETİ REXHEPİ','4363702086493','436705563218','Avusturya','ÖSTERRETCH ','9064','HAUPLATZ 27 VOLKERMART ÖSTERRETCH AVUSTURYA ',10,4,140,'478749881','0','0',NULL,1890,1,'AÇIK MAVİ ETİKET ','2025-08-29 08:59:05.083','2025-10-15 08:25:23.453',NULL),
('3f9e45b1-4602-41af-96ef-65e5dc6414f2','56e5168e-cbcf-408d-8798-5560be5c7235',NULL,'2025-10-12 21:29:50.934',8157,'7bb6a552-e940-4456-bfc3-50a13013996c','HAMZA TOPALOĞLU','4915147263676',NULL,'Almanya','LAUCHRİNGEN ','79787','DR.-KONRAD-ADENAUER-RİNG 9\n79787 LAUCHRİNGEN ALMANYA',0,4.5,110,'765864813','0','0',NULL,600,0,NULL,'2025-10-12 21:32:29.069','2025-10-14 07:31:27.662',NULL),
('3fba1e1a-d3f7-4a72-b88c-284f205185ce','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-05-29 09:06:48.794',9081,'e6d4faef-484c-4ce7-992c-906e05fc083e','MAZHAR BAYMAN','4915256924287','4915733741918','Almanya','UHLDİNGEN','88690','OBERE AUEN 2',6,10,110,'644903033','0','0',NULL,2500,1,' (TURUNCU RENK)','2025-05-29 09:17:02.127','2025-07-01 19:00:55.755',NULL),
('3fc65322-0e5b-4725-b433-ff14b8fed4c8','eccfe611-9163-42aa-a1ff-e711af0248e6','2a352437-950c-42a9-9135-55482cf3977c','2025-07-24 08:50:21.384',7620,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NURSEL ALİOĞLU','4915201348727',NULL,'İsviçre',NULL,'9470','BRUNNENSTR 19, 9470 BUCHS SG İSVİÇRE',8,2,140,'221272241','0','0',NULL,555,1,'SARI ETİKET','2025-07-24 08:52:38.838','2025-08-25 07:11:01.392',NULL),
('3fe4384f-667e-4804-9bed-05209e202db9','89428e9c-4d02-45c3-a044-0b2a5ac2465d',NULL,'2025-02-26 23:36:25.063',7212,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HELİN GÜNDEŞ','33781067947',NULL,'Fransa','VERT LE PETİT','91710','30 RUE DU BOUCHET',0,8,120,'976462703','0','0',NULL,4000,0,NULL,'2025-02-26 23:38:26.337','2025-05-06 11:01:14.440','2025-05-06 11:01:14.443'),
('3fe8ec1d-272b-4989-b3fb-4322708f7edf','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2024-12-27 13:09:48.696',7497,'22a1dbd6-475c-4d4b-bb13-f459e3029634','VEYSEL POLAT','31611378787',NULL,'Hollanda',NULL,'2548','ATLANTASTRAAT 21 / 2548 JL DENHAAG',9,2.5,110,'221362176','0','0',NULL,1050,1,'GRİ ETİKETLİ','2024-12-27 13:14:47.565','2025-02-10 14:15:50.599',NULL),
('3feebec9-f45b-4b23-9292-7a6a93bc7d05','5c723cdc-e582-4b00-8271-838c085984c2','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-12 13:23:14.146',3021,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DURMUŞ YÜKSEKTEPE','491722377347','4917641694614','Almanya',NULL,'86152','ROSENAU STRASSE 74 86152 AUGSBURG ALMANYA',17,2,105,'745935889','0','0',NULL,900,1,'MAVİ ETİKETLİ','2025-02-12 13:25:47.622','2025-03-21 17:17:29.974',NULL),
('400f01f9-93ac-402c-9545-879c310ade12','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:59:01.244',1162,'b734c482-3c00-4897-ad35-bc358cd02d56','ZİYA DEĞERLİ','033627383077','','Fransa','','25300','5 RUE CLAUDE CHAPE ',7,5,100,'734782763','0','0',NULL,450,1,'TURUNCU ETİKETLİ','2024-05-04 10:01:42.899','2024-05-21 18:45:16.795',NULL),
('401ecd97-fb17-4288-b2ea-4445b8cdc4f1','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-13 08:19:21.871',1106,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SERPİL KACIR','4915750480854','491767669162','Almanya',NULL,'45879','SCHWANENSTR 19A 45879 GELSENKIRCHEN ALMANYA',0,2,105,'745141319','0','0',NULL,1560,0,NULL,'2025-10-13 08:20:57.791','2025-10-27 13:12:55.527',NULL),
('4031214e-7ff4-4917-b027-c570d8c4e65f','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-16 20:50:40.947',5071,'6133a2db-79c4-4372-9338-505db46b1847','OGULCAN BAYRAM','01783097953',NULL,'Almanya','KEMPTEN','87437','RUDOLF-AERNE-WEG 14 \n87437 KEMPTEN',33,2,110,'613822987','0','0',NULL,375,1,'PEMBE ETİKET','2025-06-16 20:53:46.012','2025-08-05 12:58:58.713',NULL),
('4053ad5c-7690-4d86-bb5d-264f6025895b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-21 11:18:35.415',4314,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MOHAMMED ASIF KARİMİ','46737863155','','Almanya','Eilanburg','04838','',13,4,100,'982425071','0','0',NULL,0,0,'','2024-03-21 11:22:35.234','2024-03-30 08:49:15.180','2024-03-30 08:49:15.190'),
('40683a71-69a8-4dcd-8bfa-2e521bc73880','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-09 15:11:21.975',7205,'47880255-08ee-4e99-940b-16038e07de55','SÜMEYYE ARSLAN','49162150360','49162150360','Almanya','MANHEİM','68309','POSTSTRE 48 68309 MANHEİM ALMANYA',23,1,105,'478719602','0','0',NULL,0,0,'SARI ETİKETLİ','2025-01-09 15:12:43.681','2025-02-15 16:09:39.544',NULL),
('406ebbb4-13b5-4567-9950-1d118159195d','05135cd5-2d33-4363-b51e-c9b83a94094d','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-07 16:18:24.470',8290,'73596a75-b658-4249-8c71-b0490654bc8b','RANA PEKER CİNGÖZ','4917630122956',NULL,'Almanya',NULL,'12101','HOEPPNERSTRASSE 53',20,2,0,'735159660','0','0',NULL,2100,1,'PEMBE ETİKETLİ','2025-08-07 16:19:56.481','2025-08-19 14:52:28.254',NULL),
('407deddd-1eea-492c-b3b9-cb9b467f573d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-17 10:56:20.679',5658,'42b99374-3597-4c9c-b338-8bd585490a92','HALİME ÜNSAL','491639578000','','Almanya','KARLSRUHE','76185','',2,8,0,'429340012','0','0',NULL,700,1,'Arkadaki Paletler','2024-08-17 11:00:33.272','2024-08-31 18:15:48.180',NULL),
('40e01302-537a-406a-a3c9-9234e4dbf8e8','c21cdd02-4af2-4b32-bc87-c70a576c3a99','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-30 13:56:17.326',7345,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','SERHAT AGİRTAS','4917681123517','4915732123789','Almanya','HAİNBURG','63512','SCHİLLERSTRASSE 27 63512 HAİNBURG ALMANYA',21,2.5,110,'515139511','0','0',NULL,1050,1,NULL,'2025-07-30 14:02:39.988','2025-09-05 08:50:48.511',NULL),
('40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f','585b4575-ecea-4671-89b2-199f0605ed62','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-14 08:50:09.069',7612,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','ALBNORA MUSTAFA ','4917672315833','4917672315833','Almanya','WULMSTORF','21629','EDUARD-MÖRİKE-STRASSE 44, 21629 NEU WULMSTORF',8,2,110,'786286562','0','0',NULL,447,1,'MOR ETİKETLİ','2025-04-14 08:53:18.167','2025-04-26 17:56:36.043',NULL),
('40f4a8a2-0c08-45ca-b2a2-587b0f53b46f','585b4575-ecea-4671-89b2-199f0605ed62',NULL,'2025-10-17 11:41:01.601',9297,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','DURJANT','41764244797','05388618969','İsviçre','URDORF','8902','IM KESSLER 9 8902 URDORF',0,2,140,'786476168','0','0',NULL,1075,0,NULL,'2025-10-17 11:42:15.672','2025-10-22 12:49:07.522',NULL),
('40fcf0e9-c7f1-43ac-997b-6042ca4b152a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:08:54.456',3156,'4126da30-ba9b-41b7-be29-865069aa484c','ELA SARL','905356503956','','Fransa','','27000','',0,1,1,'412316933','0','0',NULL,0,0,'YARIM TIR','2024-04-27 08:12:18.850','2024-05-07 15:42:29.677',NULL),
('410bd7e1-97fe-4832-9494-5d11b92da461','d008d786-a02e-404b-b090-54460d9d421e','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-11 10:45:32.557',4760,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','HARUN YILDIRIM','31638631333',NULL,'Hollanda','DEN HAAG ','2543tk','MİDDENSTEDE245 DEN HAAG',3,2,120,'657782','0','0',NULL,300,1,'PALET','2025-07-11 10:51:25.633','2025-07-28 18:39:21.504',NULL),
('41362bb9-f3f2-494f-bf45-1e889e36f93d','5c723cdc-e582-4b00-8271-838c085984c2','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-24 11:44:47.425',6738,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EMRE AFYON ','33625614718','33768416130','Fransa',NULL,'28500','1 RUE DAUNAY 28500 AUNAY SOUS CRECY FRANSA',4,2,130,'745547550','5','5','Her şey çok iyiydi, teslimat zamanında ve sorunsuz gerçekleşti. Şoför de nazik ve yardımcıydı. Teşekkür ederim!',3400,1,'TURUNCU ETİKETLİ','2025-02-24 11:51:29.045','2025-03-25 14:00:12.334',NULL),
('4157eaee-8648-432f-b717-8aeedcc9bd2a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-06 10:47:16.290',7206,'a42d8839-caef-4422-888f-cbfdf4188c5b','SİBEL ÇINAR','33626434007',NULL,'Fransa',NULL,'67240','2 RUE CHRİSTİAN CHRİSTMANN ',15,1,0,'428511580','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2024-11-06 10:49:55.458','2024-11-25 09:20:39.164',NULL),
('416cbe10-f76a-4e3f-b035-b846a08cc8a3','1f0119e0-2853-442a-8394-39cf94fce7df','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-13 07:10:06.005',7010,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','MUSA LÖK','320465188346','320465508210','Belçika','BRÜKSEL','1030','RUE DES PALAİS 290, 1030 SCHAERBEEK, BRÜKSEL/BELÇİKA',2,5,120,'517521279','0','0',NULL,900,1,'YEŞİL ETİKETLİ','2025-01-13 07:13:46.346','2025-02-10 14:16:39.412',NULL),
('418c37cd-497a-45d2-a47a-3b77943bfa63','5c723cdc-e582-4b00-8271-838c085984c2','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-06 11:36:07.572',5380,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','PINAR SALMA SSH ','4917646295086',NULL,'Almanya',NULL,'71067','PFARRWIESENALLEE 49 71067 SINDELFINGEN ALMANYA',25,2,0,'745332643','0','0',NULL,0,0,'BEYAZ ETİKET SSH BAZA ','2025-08-06 11:35:38.976','2025-08-27 05:41:40.984',NULL),
('4197af5f-54c3-4efd-8f7b-cdb3412520ca','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-09 13:51:36.920',3398,'e6d4faef-484c-4ce7-992c-906e05fc083e','SÜLEYMAN ATAR','491729380817','4917684482169','Almanya','RHEİNE','48431','VERDİSTRASSE 1 \n48431 RHEİNE \nALMANYA',5,11.5,110,'644653229','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-03-09 13:59:02.173','2025-04-08 15:37:42.159',NULL),
('41e6c990-9769-486b-b72c-37b090f7b3d4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-07-24 09:53:14.935',4034,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SELİM EROL','4915164418447','','Almanya','FAULBACH','97906','WEİNWEG 38',4,4,100,'976577497','5','5','10',450,1,'MAVİ ETİKETLİ','2024-07-24 09:58:21.918','2024-08-15 14:56:44.910',NULL),
('41fed73c-dc58-4075-b35d-1e0c09c3eab3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 13:04:39.990',5256,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ABDİL ACAR','33679890673','','Fransa','ALLİNGES','74200','370 RUE CHAMP MENOU',8,1,110,'614788293','0','0',NULL,0,0,'PEMBE ETİKETLİ MİNİVANDA','2024-08-31 13:05:57.302','2024-09-08 08:30:12.812',NULL),
('4201089d-4123-423c-809e-645e609e8e0a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:27:59.541',3102,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','HACI ULUDAĞ','32486433314','32486837229','Belçika','ZWİNJNDRECCHT','2070','JOSEF CORDİJN STRAAT',7,11,100,'449898615','0','0',NULL,3620,1,'YEŞİL ETİKETLİ','2024-05-29 09:29:57.426','2024-06-11 14:05:02.615',NULL),
('424a2b5e-eb63-4ef9-a8a8-b1ca35078529','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 14:38:51.936',6832,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ABDULLAH DEMİR','4917684399909','492352549133','Almanya',NULL,'58762','LENNES STR 54',21,1,0,'745105520','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-11-23 14:40:13.807','2024-12-03 21:16:52.233',NULL),
('424fa171-c6b9-4f3b-9ce6-69d66ca733d1','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-11 16:03:38.671',3890,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','BETÜL & MELVİN SARVAN','01601657325','015114315194','Almanya','BERGNEUSTADT','51702','AM HOLZWEG 2\n51702 BERGNEUSTADT',0,2,110,'51519591','0','0',NULL,0,0,NULL,'2025-10-11 16:05:41.161','2025-10-11 16:05:41.161',NULL),
('42a4ed0b-8222-43be-8854-f98e1ac39e41','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-05-08 09:24:40.165',8872,'47880255-08ee-4e99-940b-16038e07de55','ZEKERİYA EMİN','359884096039',NULL,'Bulgaristan','KİRKOVO','6882','PURVİRSA 78 6882 KORDZAHALİ KİRKOVO BULGARİSTAN',0,2,0,'478825542','0','0',NULL,800,0,NULL,'2025-05-08 09:26:20.872','2025-06-05 16:50:49.726','2025-06-05 16:50:49.729'),
('42fcea6f-25da-443c-8add-2a8f44573b78','1764a07b-eb47-4578-b6cd-f3c0d0e743be','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-23 07:54:26.516',5492,'47880255-08ee-4e99-940b-16038e07de55','AYSUN ELİBÜYÜK','31614991851','31614851530','Hollanda','AMERSFAART','3814','VONRANDWİJCKLAAN 15 A 3814 AG AMERSFARART HOLLANDA',2,3,120,'478273603','5','5','Memnun kaldik tesekkurler',1500,1,'PEMBE ETİKET ','2025-09-23 07:58:21.152','2025-10-16 15:56:18.813',NULL),
('435240dd-12c3-416b-98d9-0b0a66ae658d','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-22 09:12:34.825',2758,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','MELEK ALİ AKTAŞ','0783294932','0766018322','Fransa','SOLEİL','25500','9 RUE BEAU SOLEİL 25500 FRANCE',0,2,120,'515457545','0','0',NULL,600,0,NULL,'2025-10-22 09:15:58.575','2025-10-22 09:15:58.575',NULL),
('43632aad-d9e3-4042-a98c-3de650df2487','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-08-12 11:27:46.850',6316,'59868701-abe4-4705-a7e6-d91c2c69262e','BERİVAN PALAVAN','4917680520105','491711177115','Almanya',NULL,'30165','PRUSSWEG 25, 30165 HANNOVER ALMANYA',13,2.5,110,'598903023','0','0',NULL,0,0,'2 m3','2025-08-12 11:29:04.960','2025-10-05 12:15:21.538',NULL),
('4385dea8-b863-44f4-a1cb-c589317b4ab9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 11:10:35.540',4106,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MİTRA MESKİNİ','4917663874660',NULL,'Almanya',NULL,'13158','DİETZGENSTRASSE 160',11,2,110,'449866390','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-02-27 11:14:14.717','2025-03-21 17:17:29.974',NULL),
('438dd97c-f434-42d2-bc9b-5844c47dc0bd','173956a2-c232-495a-b036-4a6a36c073e2','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 17:11:23.858',5050,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','AYSEL KARABULUT','31687655114',NULL,'Hollanda','ZOETERMER','2715xk','FONTEİNBOS  175\n2715XK  ZOETERMEER \nDEN HAAG \nHOLLANDA',6,3.5,110,'449454395','3','2','Söförumuz biraz sinirliydi .yolhali  diyelim gerisi iyiydi tskr',1350,1,'KIRMIZI ETİKETLİ','2024-11-21 17:13:09.834','2024-12-05 16:22:19.986',NULL),
('43b4cdba-f0e7-4de7-ae8c-4174a5d3537a','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-08-04 10:52:00.604',3883,'3c7190b6-f6ee-4275-8958-d7af952132ab','YASEMİN DOĞAN','4915750620938','4915750620938','Almanya','KÖLN','51103','KALKER HAUPTSTRABE 48 51103 KÖLN ALMANYA',0,5,110,'371215833','0','0',NULL,1550,0,'köşe takımı, seramik masa, sandalye. 5 metreküp','2025-08-04 10:54:13.925','2025-10-24 06:39:17.872',NULL),
('43d385d8-2280-4cba-bca7-d4cd3193968d','173956a2-c232-495a-b036-4a6a36c073e2','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-14 14:14:39.451',1120,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','YAVUZ GENÇ ','4917632843611',NULL,'Almanya','HERRENBERGER','71069','HERRENBERGER STR. 66  71069 SİNDELFİNGEN',14,2,100,'449801040','0','0',NULL,850,1,'BEJ RENKLİ ETİKET','2024-11-14 14:16:35.123','2024-11-28 09:15:31.466',NULL),
('43eacd8e-c171-4b25-ae3a-3d30f999cfc3','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-06 10:27:23.405',9798,'9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','MOHAMED AHDAGO','4917655059841',NULL,'Almanya','Münich','81927','SILVANA STR 12',20,6,100,'902332542','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-11-06 10:39:32.080','2024-11-23 12:17:08.607',NULL),
('44210846-9f4f-4a9a-bee7-90445db03b5c','f784b688-ba6b-4886-87dd-fe4cfbed85b4','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-13 08:40:09.678',2178,'dea91080-5383-4085-af2e-7eace2c64224','M.ALİ ÇETİN','4917660841394','4915210309033','Almanya','LAGELERSTRABE','88250','LAGELERSTRABE 86 88250 WEİNGARTEN ',21,3.5,110,'910129924','0','0',NULL,300,1,'SARI ETİKET','2025-10-13 08:45:22.998','2025-10-22 07:00:55.246',NULL),
('4428b444-78f4-43f3-8d88-220442b30896','5c723cdc-e582-4b00-8271-838c085984c2','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-11 07:49:41.703',1788,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALİ ERKOCA','32490369779','32475529099','Belçika',NULL,'1140','GRİMBERGSEESTEENWEG 188 1853 STRAMBEEK BEVER BELÇİKA ',1,7.5,120,'745177264','0','0',NULL,2750,1,'MAVİ ETİKETLİ','2025-08-11 07:52:04.769','2025-09-26 07:08:03.153',NULL),
('44397bf0-f8fd-4ce2-bc11-c3303b438080','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:27:59.932',3736,'73596a75-b658-4249-8c71-b0490654bc8b','EUROMAT','00493056821467','00493056821469','Almanya',NULL,'13581','ALTONAER STR 77',1,1,0,'735293129','0','0',NULL,720,1,'AÇIK MAVİ ETİKETLİ','2024-12-17 17:04:09.335','2025-01-12 11:17:43.261',NULL),
('443aa222-33f8-4fe0-a2f8-8966543ddebf','457bf674-d75e-437d-b0a3-80642dbd988e','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-09 07:31:06.315',7646,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MAHRİCAN DERİN','4915753617776',NULL,'Almanya','STUTENSEE','76297','SCHİLLER STRABE',13,4,100,'501848451','0','0',NULL,1500,1,'MOR ETİKETLİ','2024-10-09 07:32:55.863','2024-10-31 12:05:38.042',NULL),
('443b2d74-2924-44bf-be40-fea72295fd6c','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-03 08:08:52.361',9904,'3c7190b6-f6ee-4275-8958-d7af952132ab','TAYLAN KAZAL','4915222699200','4915222699200','Almanya','BAYERN','85139','STAMMHAMERSTRASSE 7 85139 WETTSTETTEN BAYERN ALMANYA',23,3.5,110,'371179895','0','0',NULL,750,1,'MAVİ ETİKET','2025-09-03 08:10:55.553','2025-09-29 12:23:01.142',NULL),
('44536842-36f0-437b-afe2-58a8df62b9df','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-09-24 13:01:47.707',2754,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','HÜSEYİN ARDUC','4915237920029','4915226320007','Almanya','UTTLİNGEN ( NENDİNGEN )','78532 ','MÜHLHEİMER STR.92 78532 TUTTLİNGEN ( NENDİNGEN ) ALMANYA ',0,3,110,'515967328','0','0',NULL,650,0,NULL,'2025-09-24 13:04:45.085','2025-10-14 07:35:32.026',NULL),
('4475a939-a408-4d10-a256-61dc03f279da','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','60cc9c45-e005-43ac-9846-aca99952ff14','2024-12-16 06:58:51.697',7009,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','MEHDİ NAEİMİ','32487655588',NULL,'Belçika',NULL,'8200','SİNT-ANDRİES',1,1,100,'319276460','0','0',NULL,400,1,'BEYAZ ETİKETLİ','2024-12-16 07:01:07.922','2025-02-10 14:16:44.580',NULL),
('447dba3f-3a2b-4aae-943a-a8cb16c2bfda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-27 13:32:07.990',3268,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','FATİH KAYA','4917670477850','','Almanya','DEGGENDORF','94469','RUSELSTR.18',0,7,0,'750845897','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-09-27 13:42:50.141','2024-10-08 09:24:39.307',NULL),
('449134ef-d6ce-4d53-aa6f-961c987601fe','d008d786-a02e-404b-b090-54460d9d421e','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-23 22:00:07.122',4197,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','HAKİM AZZOUZ','31614272440','31641672960','Hollanda','ROOSENDAAL','4702kl','HAYDNLAAN19',2,2,120,'657301470','0','0',NULL,300,1,'PALET','2025-07-23 22:04:53.570','2025-08-12 06:14:33.799',NULL),
('449509c8-dd74-4151-a2b8-9260734e7dac','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-05-31 08:52:48.067',3969,'a42d8839-caef-4422-888f-cbfdf4188c5b','KEREM ERKURT','','','','','','',0,8,0,'428180919','0','0',NULL,0,0,'','2024-05-31 09:13:21.224','2024-07-20 09:52:27.543','2024-07-20 09:52:27.553'),
('449a0466-41c0-4cc0-8da6-376268e5bdfd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-08-25 12:35:25.117',5788,'e6d4faef-484c-4ce7-992c-906e05fc083e','ABDULLAH ÖĞRETEN SSH','4917632881676','015209328224','Almanya','HAMBURG','22111','LEGİENSTR.6',0,2,110,'644486114','0','0',NULL,0,0,NULL,'2025-08-25 12:41:25.342','2025-10-14 14:57:45.464',NULL),
('44ab156f-e89c-4eaa-b7ab-1fed4206ce92','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-03-27 08:04:22.827',5584,'e6d4faef-484c-4ce7-992c-906e05fc083e','ERDEL SİBEL','33769005262','33744884261','Fransa','MONTEREAU FAULT YONNE','77130','2 RUE DU TERTRE BLANC',3,6,120,'644968450','0','0',NULL,1750,1,'SARI ETİKETLİ','2025-03-27 08:10:20.836','2025-05-22 15:23:05.758',NULL),
('44afd7bc-3d03-422d-ab40-1ff34cc96cc0','313cc2e2-5529-49ab-abe5-27b5d390bc5f','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-12 06:30:33.892',8239,'6133a2db-79c4-4372-9338-505db46b1847','RANİA PİSİT','4915566234500','491728265079','Almanya','OLDENBURG','26133','HARREWEG 156\n26133 OLDENBURG ',0,3,110,'613464926','0','0',NULL,745,1,'AÇIK MAVİ ETİKETLİ','2025-05-12 06:32:36.962','2025-06-20 13:56:25.032',NULL),
('44dcdf36-5cb1-40e1-af63-fa023b3cb019','f784b688-ba6b-4886-87dd-fe4cfbed85b4','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-06-02 08:33:17.045',3936,'dea91080-5383-4085-af2e-7eace2c64224','BERKAN AĞIRMAN','491578706465','4917664681539','Almanya',NULL,'46117','BOTTROPER STRASSE 146\n46117 OBERHAUSEN',2,3.5,110,'91034652','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-06-02 08:34:08.748','2025-06-24 06:24:22.448',NULL),
('44de58ec-edda-43a3-a838-2ef9d452d2ff','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-16 08:23:10.884',7006,'59868701-abe4-4705-a7e6-d91c2c69262e','ANAHİTA MORİD','4915772539240','4917672416653','Almanya',NULL,'25495','BUNDESSTRASSE 80 L, 25495 KUMMERFELD ALMANYA',4,2,110,'598412225','0','0',NULL,950,1,'TURUNCU ETİKET','2025-09-16 08:25:44.603','2025-10-07 06:17:34.491',NULL),
('45658f08-1cac-40c6-b173-5814bf12543e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-24 07:47:45.304',2062,'916cfed9-9aea-4249-974d-c8780eba3eae','NATALİJE','420606704964','','Almanya','','','DRESDEN DE KAMYON İLE GELİP ALCAKLAR',0,9,0,'916836796','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-07-24 08:30:33.678','2024-08-05 19:56:58.912',NULL),
('458258c9-fe44-4947-9731-45517b0b0dba','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-07-01 14:50:54.076',9441,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA SARI ','4915147524518',NULL,'Almanya',NULL,'89518','STEINBEISSTRABE 28 HEIDENHEIM AN DER BRENZ 89518',0,2,105,'7455365','0','0',NULL,0,0,'EKSİK SANDALYELER  ACİL ACİL ACİL ','2025-07-01 14:50:41.727','2025-07-16 07:48:30.360','2025-07-16 07:48:30.359'),
('45898089-0430-47fd-85a9-8108fa8d9a5e','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-24 07:58:44.226',3414,'22a1dbd6-475c-4d4b-bb13-f459e3029634','OSMANAJ VALDRİN','33610635771',NULL,'Fransa',NULL,'68440','10 B İMPASSE DE MUHLBACH 68440 DIETWILLER',17,8.5,120,'221746947','0','0',NULL,3000,1,'BEJ ETİKETLİ','2025-03-24 08:05:13.196','2025-05-02 17:08:29.291',NULL),
('458ad7cc-9bf1-47ee-87b0-b3ad346d4b07','8fff5e14-418c-4377-bd83-3a3f81383507','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-07 10:13:20.221',7310,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','GAMZE ŞAHİN','33767355660',NULL,'Fransa','FRAUENBERG','57200','98 RUE PRİNCİPALE',7,2.5,120,'437400305','0','0',NULL,950,1,'AÇIKMAVİ ETİKETLİ','2025-05-07 10:15:52.215','2025-05-21 19:38:26.161',NULL),
('458ed3b8-b224-474f-bf44-b16282a7b8f1','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-05-05 10:08:29.943',2735,'e6d4faef-484c-4ce7-992c-906e05fc083e','RAYAN SLEİMANİ ','4917680300114','4917684739114','Almanya','NORDEN ','26506','WURZELDEİCHER STRABE 24A',1,2,110,'644403373','0','0',NULL,625,1,'MOR RENK','2025-05-05 10:23:16.638','2025-07-23 14:29:13.652',NULL),
('4598b25d-5bcc-42b3-8fc2-57baa395b0d3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-15 13:57:51.655',9393,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','Aferdidita ukshinaj','','','İsviçre','','','',0,12,140,'319835776','0','0',NULL,4400,1,'AÇIK MAVİ ETİKETLİ','2024-05-15 14:19:22.702','2024-06-10 13:49:53.436',NULL),
('45d8def2-e582-418f-9223-cec939f8916c','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-03-11 07:30:00.554',7189,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','AAAAAAASS','1364747373737374',NULL,'Fransa',NULL,'00000',NULL,0,2,130,'268264114','0','0',NULL,0,0,NULL,'2025-03-11 07:30:34.600','2025-03-12 18:37:59.014','2025-03-12 18:37:59.017'),
('45dc2083-2d17-4ec9-b0e0-1e9a0d5e38d9','796d8b7b-662b-493a-8d3f-78c3ae052712',NULL,'2025-10-27 13:48:57.444',8510,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','MELİH ULUDAĞ','491747090995','491738946093','Almanya','BORKEN','34582','34582 BORKEN (HESSEN), TEİCHGARTENWEG 3 ALMANYA',0,2,110,'817520762','0','0',NULL,1000,0,NULL,'2025-10-27 13:52:52.118','2025-10-27 13:52:52.118',NULL),
('45e284ed-6c80-498d-bd79-6d394761aa92','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-04-11 07:40:57.771',9606,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','OMARI EMAL ','33620174742',NULL,'Fransa',NULL,'89100',NULL,0,2,140,'982751417','0','0',NULL,4000,0,'ürünler paris depoda müşteri teslim edilecek 4000eur alınacak ','2025-04-11 07:44:01.038','2025-05-06 11:00:46.375','2025-05-06 11:00:46.378'),
('4611b81d-e164-42c5-9c5a-9ccc4855f384','c21cdd02-4af2-4b32-bc87-c70a576c3a99','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-30 13:51:20.055',5742,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','SONGÜL AKKOC','4917623385759','4917635776995','Almanya','REMSCHEİD','42855','LENNEPERSTRASSE 75A\n42855 REMSCHEİD\nGERMANY',19,2,110,'515171044','0','0',NULL,0,0,'YEŞİL ETİKET','2025-07-30 13:54:40.846','2025-09-03 05:43:30.663',NULL),
('4620449d-5bd3-49d6-816f-684d639a3e44','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-06 07:51:32.691',8577,'dea91080-5383-4085-af2e-7eace2c64224','FETHİ YÜCEL ','4915774445546','4915774445552','Almanya',NULL,'88250','İM ALTEN STADİON 47',17,7,110,'910728512','0','0',NULL,1700,1,'AÇIK MAVİ ETİKETLİ','2025-01-06 07:55:35.746','2025-01-15 21:05:45.883',NULL),
('462436e2-17b1-4c65-8ccd-cd83b180543f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-30 09:35:45.751',6259,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MALHA MUHAMMED','33783080694','','Fransa','','74130','',9,6.5,110,'982873637','0','0',NULL,2900,1,'PEMBE ETİKETLİ ROMÖRKDE','2024-08-30 09:44:33.869','2024-09-08 09:33:49.248',NULL),
('46342cb8-9154-4a08-82ea-f958497b32c2','804a2f53-7a26-4e8e-a505-7fc107953b50','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-20 07:17:48.282',4689,'a42d8839-caef-4422-888f-cbfdf4188c5b','ABDULLAH SÖNMEZ','491623487541','49173496047','Almanya',NULL,'89250 ','PARKSTRASSE 44 89250 SENDEN\n\n',21,5.5,110,'428107185','0','0',NULL,1575,1,'KIRMIZI ETİKET ','2025-08-20 07:21:24.684','2025-09-30 06:16:14.755',NULL),
('4648df64-b4ca-47a7-8d76-63ab12d19ffc','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-24 14:02:02.185',3128,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MUSTAFA ÖZMEN ','496642016386','','Avusturya','FELIXDORF','2603','BRAUNLICHGASSE 18/5',0,4,120,'501168544','0','0',NULL,0,0,'','2024-09-24 14:03:25.749','2024-10-25 09:32:35.416','2024-10-25 09:32:35.422'),
('46528672-1c96-4785-80ba-77e3cec82ee8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-07 14:06:15.902',1406,'47880255-08ee-4e99-940b-16038e07de55','MELİSA SAĞLIK','436603639033','436602777312','Avusturya','TİMELKAM','4850','AM ANGER 6/4 4850 TİMELKAM AVUSTURYA',26,6,140,'478483851','0','0',NULL,4000,1,'MAVİ ETİKETLİ','2025-04-07 14:08:54.207','2025-05-02 17:08:29.291',NULL),
('46613c75-fbe6-436f-8ee8-ee41b6bbf1a1','313cc2e2-5529-49ab-abe5-27b5d390bc5f','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-10 22:48:33.190',5604,'6133a2db-79c4-4372-9338-505db46b1847','KUTAY KENAN TOMUR','4917634171072','491796638028','Almanya','HERNE','44627','GERTHERSTR 23 44627 HERNE ',20,2,110,'613976667','1','1','Niemeier ',425,1,'AÇIK MAVİ ETİKETLİ','2025-04-10 22:51:57.292','2025-05-30 13:57:10.733',NULL),
('46858fce-23b4-4734-be3f-9ef1f6cd02e6','eccfe611-9163-42aa-a1ff-e711af0248e6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-13 07:04:06.456',3309,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SWETLANA NESCHİNSKİ','4917632216516',NULL,'Almanya',NULL,'30455','SİEGFRİEDWEG 10 , 30455 HANNOVER',6,2,110,'221989961','0','0',NULL,400,1,'GRİ ETİKETLİ','2025-05-13 07:05:41.930','2025-06-06 17:37:19.862',NULL),
('469ffe47-8345-4906-aaad-d07f19e1be1f','5c723cdc-e582-4b00-8271-838c085984c2','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-19 10:23:12.019',10626,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','PERİHAN GÜNAY','491737466004','491718067720','Almanya',NULL,'28279','WAN BEEK STR 8 28279 BREMEN ALMANYA ',9,2.5,105,'745770556','0','0',NULL,700,1,'MAVİ ETİKETLİ','2025-03-19 10:25:27.534','2025-04-26 17:56:30.038',NULL),
('46a5e555-47e9-4fd4-bbf4-635d40a7d1a5','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','bae1a051-2661-4d51-b287-a8fd73d30813','2025-03-04 07:35:30.471',6002,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','SEVİNÇ ÖZKAN ','11111111111',NULL,'Bulgaristan',NULL,'11111',NULL,3,12,0,'614143415','0','0',NULL,1600,1,NULL,'2025-03-04 07:57:17.174','2025-03-17 21:46:07.822',NULL),
('46aa945f-6044-4640-8ed8-99191e2890af','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-10 12:34:28.236',3896,'3c7190b6-f6ee-4275-8958-d7af952132ab','MEHMET AKHAN','491737165730','491737165730','Almanya','OBERBOİHİNGEN','72644','STATTMANN STRABE 11 72644 OBERBOİHİNGEN ALMANYA',23,5,110,'371998665','5','1','Tsk ',1700,1,'SARI ETİKETLİ','2025-07-10 12:37:24.445','2025-07-26 16:21:49.549',NULL),
('46acd094-2dab-4345-a6e6-c468f9dc52c7','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-03 13:42:25.353',3495,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','AYHAN ALAGAÇ','4915229965739',NULL,'Almanya','EİTENSHEİM','85117','BUXHEİMER STR.14 85117 EİTENSHEİM ALMANYA',0,2,110,'61440092','0','0',NULL,1690,0,NULL,'2025-10-03 13:56:35.772','2025-10-22 12:03:51.995',NULL),
('46b19e09-91c3-4a3b-99ec-5d708063cba6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-27 14:23:35.583',1500,'3c7190b6-f6ee-4275-8958-d7af952132ab','ADEM BÜYÜK','4915751330310','4915751330310','Almanya','SCHWENTİNENTAL','24223','PREUBENECK 7, 24223 SCHWENTİNENTAL ALMANYA',12,5,110,'371913094','0','0',NULL,1200,1,'PEMBE ETİKETLİ','2025-06-27 14:26:59.757','2025-07-24 18:03:00.764',NULL),
('46b1c67e-a68d-48e9-954a-c8a3113d2c63','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9e06441c-1bec-4f47-847f-83bea94f8369','2025-09-08 12:38:57.211',5202,'5b04798d-86e0-44d7-9219-194a32dc85ff','FERHAT KARACA','491717089315',NULL,'Almanya',NULL,'88046','AİSTEGSTR24',12,3.5,110,'504780984','0','0',NULL,800,1,'SARI ETİKET','2025-09-08 12:40:34.470','2025-09-17 05:40:55.312',NULL),
('46c770a5-8227-45f5-8d34-7141d1d901cd','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-03-10 12:56:54.948',8351,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','DİDEM BAKES ','31628641442','31628730191','Hollanda',NULL,'1544',NULL,3,2,120,'517279482','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-03-10 12:57:56.566','2025-05-02 17:09:11.363',NULL),
('46debcfc-622e-49c2-bc0c-3ace3fa84661','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-15 08:07:04.630',5338,'59868701-abe4-4705-a7e6-d91c2c69262e','CAN ÖZKAN','4915206452765','4917620787419','Almanya',NULL,'47259','EHİNGER BERG 191, 47259 DUİSBURG ALMANYA',12,2,110,'598262809','0','0',NULL,800,1,'MOR ETİKET ','2025-09-15 08:32:54.552','2025-10-02 06:11:02.973',NULL),
('46f3f6ca-c581-44b8-a4a0-2872c19288de','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-23 07:56:54.756',7842,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','ÖZGE ÖZTÜRK','491632506225',NULL,'Almanya','STELZENGASSE 18','71706','STELZENGASSE 18 MARKGRÖNİNGEN\nBADEN-WÜRTTEMBERG ',12,3,110,'817121694','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-05-23 08:06:32.358','2025-06-18 07:15:26.935',NULL),
('474a3a6a-6eed-40dd-b9a3-2ab629d2b662','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-05 11:08:19.991',3327,'e6d4faef-484c-4ce7-992c-906e05fc083e','MURAT BALTACI(K)','4917634145313','4917656985678','Almanya','AUGSBURG','86153','BERLİNER ALLEE 20C',22,3,110,'644762741','0','0',NULL,750,1,'MAVİ ETİKET','2025-09-05 11:14:26.425','2025-09-29 12:23:06.903',NULL),
('476a35ac-9d9d-4d70-a965-370a980951c2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 08:51:43.898',6041,'47880255-08ee-4e99-940b-16038e07de55','SÜLEYMAN ERDOĞAN','4917687849417','4917630119950','Almanya','WALDKRAİBURG','84478','RİCHARD WAGNER STR 53',1,7,100,'478723327','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2024-10-02 08:54:57.162','2024-10-08 09:24:43.846',NULL),
('476b3b22-cc52-456b-baca-94ab2554e38d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d123109e-9a26-4781-939a-87cda202f683','2024-11-20 07:55:42.806',9119,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','FİKRETE RAPCİ','41765044236',NULL,'İsviçre',NULL,'4702','OENSİNGE SOLOTHURM',3,2.5,140,'126806100','0','0',NULL,750,1,'SARI ETİKETLİ','2024-11-20 07:57:07.510','2024-12-15 20:07:24.367',NULL),
('47709c5a-15a6-491c-924f-a72a590fd417','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:26:03.624',1988,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','DİYAR YEŞİLKAYA','491634491802','','Almanya','MANNHEİM','68159','HAFENSTRABE 62',6,5.5,100,'982547993','0','0',NULL,1750,1,'LİLA ETİKETLİ','2024-03-30 09:29:38.017','2024-04-12 07:16:47.839',NULL),
('477173c8-79ff-4a6d-999c-82792b9cd70a','dc73af25-3744-4a35-87e7-05bab24167a0',NULL,'2025-10-10 10:45:50.833',7074,'31ccd2de-c68e-405f-adee-14ff1a7a1869','OKAY TUNCA','4551944912',NULL,'Danimarka','RØDEKRO','62300','PARKVEJ 45',0,2,0,'31276230','0','0',NULL,0,0,'KAPIDA ÖDEMESİ VAR BELİRTECEĞİM','2025-10-10 10:49:12.547','2025-10-10 15:03:29.025','2025-10-10 15:03:29.024'),
('47743b4f-0f71-47f0-aabf-3e472b257714','89428e9c-4d02-45c3-a044-0b2a5ac2465d','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-16 20:44:29.879',10651,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HASAN EROL','4915561661704',NULL,'Almanya','DORFPROZELTEN','97904','WİESENSTRASSE 2',13,2,110,'976568852','0','0',NULL,2000,1,'AÇIK MAVİ ETİKETLİ','2025-02-16 20:49:34.841','2025-03-18 07:31:58.966',NULL),
('4776d10a-2cab-47b6-b212-60c0ab466107','8fff5e14-418c-4377-bd83-3a3f81383507','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-16 12:05:30.706',6818,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MUHAMMED ALİ ASLAN','436506511162',NULL,'Avusturya','BURMOOS','5111','MOARHAUSGASSE 2A',25,5.5,140,'437982892','0','0',NULL,2100,1,'SARI ETİKETLİ','2025-04-16 12:07:49.042','2025-05-02 17:08:29.291',NULL),
('4794626f-1ea7-475e-83ad-bdefd15b98b4','5c723cdc-e582-4b00-8271-838c085984c2','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-04-28 10:19:16.170',1828,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NEVİN KIRIK','32472893913','32467686443','Belçika','EUPEN','4700','GÜLCHERSTRASSE 2 4700 EUPEN BELGIUM ',16,5.5,120,'745638060','0','0',NULL,1700,1,'PEMBE ETİKETLİ','2025-04-28 10:22:01.250','2025-06-05 16:38:22.844',NULL),
('47b351a7-6171-418d-b138-7c197c50e909','8fff5e14-418c-4377-bd83-3a3f81383507','2a352437-950c-42a9-9135-55482cf3977c','2025-08-12 09:54:57.830',8946,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MİYASE AYDIN','436607950540',NULL,'Avusturya','NEUNKİRCHEN','2620','WENİSCHGASSE 8/2',15,2.5,120,'437945654','0','0',NULL,645,1,'MOR ETİKET ','2025-08-12 09:58:56.094','2025-08-21 08:13:40.734',NULL),
('47c4a897-9b46-451e-81b9-3ed2ac6147c6','d074816b-78fd-4378-91c0-3835eba28f44','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-17 13:55:12.535',9701,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NURKAN AŞIR','33613166090',NULL,'Fransa','CAVAILLON',' 84300',' LE MEDİTERRANEE BAT A 71 RUE GEORGES VEVE 84300 CAVAILLON',2,2,130,'614868518','4','2','Geldi kargomuz gecikmeli de olsa \nMerci ',0,0,'PEMBE ETİKETLİ','2025-03-17 14:30:47.347','2025-04-30 03:58:56.077',NULL),
('47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506','1764a07b-eb47-4578-b6cd-f3c0d0e743be','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-15 09:51:42.014',2244,'47880255-08ee-4e99-940b-16038e07de55','İREM AKÇORA','491632326581','491701994007','Almanya','LAATZEN','30880','DANZİGER WEG 10 30880 LAATZEN',6,2,0,'478930985','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-01-15 09:54:33.880','2025-01-31 12:16:05.012',NULL),
('47f285e8-830a-42cf-a352-d8268aef8cdb','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-30 07:33:10.117',4005,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','BUKET AKDAG','497680698747',NULL,'Almanya','BERLİN','12529','WEHRMATHEN 28 12529 SCHÖNEFELD BERLİN',20,2.5,110,'531380104','0','0',NULL,680,0,'TURUNCU ETİKET','2025-09-30 07:34:57.367','2025-10-20 07:17:55.584',NULL),
('480a346e-68e0-4b73-8032-240c8e47de53','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-01-16 11:36:42.709',2344,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ENGİN KUTU HOLLANDA ','1111111111',NULL,'Hollanda',NULL,'111',NULL,0,2,0,'248513969','0','0',NULL,0,0,NULL,'2025-01-16 11:38:00.646','2025-02-22 11:19:36.630','2025-02-22 11:19:36.634'),
('48196fd5-d544-4ced-9605-49aae5ad4f08','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:31:48.862',8571,'c2d4ce84-536d-4816-837f-7abbf6a7e061','YATAK ODASI','00491754696524',NULL,'Almanya','SCHWERİN','19063','KOMAROW STRABE 32',5,1,0,'248143023','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-11-12 15:33:11.859','2024-11-23 12:17:22.195',NULL),
('483b6f65-6972-4267-8fb5-43e1ad8b38cb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:00:31.246',9324,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ORKUN SÖĞÜTLÜ','32499630637','32489062134','Belçika',NULL,'9051','KORTRİJKSESTEENWEG 1092',7,6,0,'248292815','0','0',NULL,1040,1,'YEŞİL ETİKETLİ','2024-11-02 08:03:24.718','2024-11-12 16:17:02.601',NULL),
('48431447-596f-456f-9008-45bdd35c892a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 12:43:29.000',3803,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÖMER GEDİK','4917672257446','491774619575','Almanya','BÖNEN','59199','HARDENBURG STR 2 A',6,3,110,'644113252','0','0',NULL,590,1,'GRİ ETİKET ','2025-09-17 12:50:02.333','2025-10-20 06:32:16.904',NULL),
('4854617d-8e10-44dc-9d64-e083a9bc9ee3','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-01 12:14:09.466',1308,'59868701-abe4-4705-a7e6-d91c2c69262e','AYHAN ÇEKİ','436608590261','436605507330','Avusturya',NULL,'1220','AM HEİDJOCHL 14/10/1, 1220 WİEN AVUSTURYA',13,3,120,'598758154','0','0',NULL,850,1,'AÇIK MAVİ ETİKETLİ','2025-08-01 12:16:26.861','2025-09-01 15:17:19.745',NULL),
('48599652-b40b-4605-9b8c-4be79cb180f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:52:34.842',3721,'b734c482-3c00-4897-ad35-bc358cd02d56','EMİNE-YASEMİN','1111111111111111',NULL,'Almanya',NULL,'10553','BEUSSELSTR 44',11,1,0,'734109910','0','0',NULL,0,0,'SARI BANTLI','2024-11-12 15:53:59.213','2024-11-23 12:17:08.607',NULL),
('486d73c0-74f0-41fc-a42f-8c39f323cc01','d008d786-a02e-404b-b090-54460d9d421e','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 15:12:32.784',9537,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','AHMET GÜVEN','31614272440',NULL,'Hollanda','ROTTERDAM','3088 GA','ALBERTPLESMANWEG 11 ROTTERDAM HOLLANDA',4,2,120,'657832584','0','0',NULL,300,1,'PALET','2025-07-01 15:25:08.842','2025-07-28 07:57:34.248',NULL),
('4895452e-4598-4194-8203-cf9f5506200a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-03 13:37:55.838',3133,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','DİLEK GÜNEY','33787752471',NULL,'Fransa',NULL,'95300','24 LES HAUTS DEMARCOUVİLLE ',1,2,0,'26896907','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-01-03 13:40:38.752','2025-01-13 07:51:03.908',NULL),
('48b57732-88ad-473d-a3a7-b8630725788e','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb',NULL,'2025-10-23 23:22:35.981',2242,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','HÜSEYİN KARAKUS','491738740057',NULL,'Almanya',NULL,'71069','SCHEUERWİESEN STRASE 5 /71069 SİNDELFİNGEN\n',0,2,110,'675224907','0','0',NULL,900,0,NULL,'2025-10-23 23:28:29.539','2025-10-23 23:28:29.539',NULL),
('48f076a7-8fcd-4555-a2be-671e83e1b64b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-11 14:04:27.248',3934,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','CÜNEYT ŞİMŞEK ','33609726291','33614933816','Fransa',NULL,'25270','12 A RUE DU STADE ',5,4,0,'517512652','0','0',NULL,900,1,'KIRMIZI ETİKETLİ','2024-12-11 14:07:27.548','2025-01-11 07:53:51.697',NULL),
('48ff80ab-53c7-4a25-ba1e-303a3d7073d1','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-19 14:22:08.224',4219,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','MEHMET COPUR','4368184013442',NULL,'Avusturya',NULL,'3454','NALKENGASSE 4B/3454 SİTZENBERG-REİDLİNG',17,11.5,120,'675644991','0','0',NULL,1600,1,'AÇIKMAVİ ETİKETLİ','2025-08-19 14:24:51.071','2025-09-01 05:47:17.725',NULL),
('4935e2c6-1278-4f37-9267-8259ac87fafc','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-10-13 13:49:09.544',8369,'b0c1192a-7d38-4b69-a901-778f65a98b9d','GÜLHAN KAMİLTÜRK','491796543028',NULL,'Almanya','FRİEDRİCHSHAFEN',' 88045','KEPLER STR14\n 88045 FRİEDRİCHSHAFEN\n ALMANYA',0,2,110,'011309904','0','0',NULL,550,0,NULL,'2025-10-13 13:51:03.564','2025-10-27 07:55:55.871',NULL),
('494f3e98-90be-4c2a-94b4-33e9a0c27aaf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:56:42.838',6647,'4126da30-ba9b-41b7-be29-865069aa484c','BRÜHL CAMİSİ','491783209660','','Almanya','BRÜHL','','',13,1,0,'41283002','0','0',NULL,840,1,'KIRMIZI ETİKETLİ','2024-09-05 15:58:16.999','2024-09-13 16:38:19.763',NULL),
('495a3166-1c12-482e-90be-0373d0fcbd9b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:47:54.118',4236,'73596a75-b658-4249-8c71-b0490654bc8b','PATRİK','004915254106580',NULL,'Almanya',NULL,'86456','KORNFELD STRABE 9',11,10,0,'735329890','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-12-17 17:23:04.047','2025-01-11 10:16:45.910',NULL),
('4976e309-54de-42bc-9a9b-1f542a9bd4d0','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-14 15:26:56.135',7642,'59868701-abe4-4705-a7e6-d91c2c69262e','BURCU ASLAN','4917632724714','4917624885131','Almanya',NULL,'66333','SCHUBERTSTRASSE 26, 66333 VÖLKLİNGEN ALMANYA',12,2,110,'598220619','0','0',NULL,375,1,'BEYAZ RENK','2025-07-14 15:31:18.011','2025-07-28 18:39:59.643',NULL),
('4978d2e1-4aa7-4597-b112-e0c303bb3df2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 13:59:38.360',9443,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP','4916228157309','4917623201470','Almanya','NÜRTİNGEN','72622','HOLBEİN STR 31',11,1,100,'614650407','0','0',NULL,1380,1,'YEŞİL ETİKETLİ','2024-10-23 14:04:21.146','2024-10-30 18:10:03.011',NULL),
('499cda13-5036-44b3-a782-3aa5247b7b44','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-23 12:53:50.126',3480,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','HÜLYA KÜTÜK','33753468202',NULL,'Fransa',NULL,'56320','8 BİS İMPASSE DE LA SPANİRE LA FAOUET',0,3.5,130,'268262151','0','0',NULL,2500,1,'YEŞİL ETİKETLİ','2025-06-23 14:33:52.252','2025-07-16 16:50:48.019',NULL),
('49b010c9-adaf-47a9-8d72-ec98e9a40479','8fff5e14-418c-4377-bd83-3a3f81383507','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-09 08:27:43.090',1056,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','FAİSAL İBRAHİM','4917661320036',NULL,'Almanya','BERLİNER','65428','RÜSELSHEİM AM MAİN',19,2,110,'437319119','0','0',NULL,350,1,'YEŞİL ETİKETLİ','2025-09-09 08:28:56.383','2025-09-24 06:51:09.697',NULL),
('49b3f497-a340-40f9-9aeb-fcbaeae86b09','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-02 08:13:57.216',2522,'3c7190b6-f6ee-4275-8958-d7af952132ab','GÜLSEREN ŞAHİN','4917622797061','4917641085113','Almanya','WÖRRSTADT','55286','AM SCHLOB 24 55286 WÖRRSTADT',9,4,110,'371494792','0','0',NULL,700,1,'BEJ ETİKETLİ','2025-05-02 08:16:26.547','2025-05-21 19:37:59.629',NULL),
('49c48f88-3c20-42bd-8ea9-304d94c9460f','89428e9c-4d02-45c3-a044-0b2a5ac2465d','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 07:46:24.434',2447,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','MEHMET ALİ ALBECER','4917648386532',NULL,'Almanya','SCHWERTE','58239','AM HOLDERBUSCH 5',14,3.5,110,'976747802','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-07-01 07:58:21.488','2025-07-25 10:49:11.537',NULL),
('49e64dc1-b571-41e2-8735-35d2ef2613ae','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 20:29:32.727',7259,'85834865-ac23-4c00-a99b-c9551971a5a1','HALUK ÖZTOPRAK','436604414246',NULL,'Avusturya',NULL,'6830','BİFANG STRASSE 45/7',15,2,140,'858708990','0','0',NULL,1600,1,'Açık mavi etiketli','2025-02-13 20:31:39.529','2025-02-24 20:28:04.441',NULL),
('4a285e1c-8129-4c9c-85a3-06394604421e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 08:57:16.034',8684,'47880255-08ee-4e99-940b-16038e07de55','METE-TAHA TOPAL','491759161362','','Almanya','GERMERSHEİM','76726','ZEPPELİN STRABE 7',9,11,100,'478281907','0','0',NULL,2760,1,'SARI ETİKETLİ','2024-03-30 08:59:39.049','2024-04-12 07:17:06.638',NULL),
('4a38f569-617d-48cf-b0fc-27e25fd3884e','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-18 08:08:28.554',2777,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BURCU GELİR ','33668105646',NULL,'Fransa',NULL,'33560','54 RUE LAROQUE 33560 SAİNTE EULALİE',3,3,130,'221461818','0','0',NULL,1500,1,'TURUNCU ETİKET ','2025-09-18 08:10:55.654','2025-10-16 16:44:12.511',NULL),
('4a5445f2-707f-4fe2-a767-f0dcae05a014','51b55e5b-7487-4d8a-923e-163f04d0b1d9','922303e0-023c-44c4-9569-272efdb9286e','2024-07-02 12:00:23.780',6120,'47880255-08ee-4e99-940b-16038e07de55','FARUK EMRE KAYA','491624583604','','Almanya','LÜBECK','23560','AUF DEM SCHİLD 2',0,1,100,'478418480','0','0',NULL,0,0,'','2024-07-02 12:01:25.606','2024-07-18 07:31:41.176',NULL),
('4a5b9bbc-8625-4b70-95ee-60399f0043bf','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-02 09:02:49.738',6334,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','GÜLÇİN İSMAİLÇEBİOĞLU','4369910940808','4369911677447','Avusturya',NULL,'3130',NULL,14,4,120,'31925609','0','0',NULL,1500,1,'KIRMIZI ETİKETLİ','2025-05-02 09:05:04.257','2025-06-03 09:41:07.360',NULL),
('4a8a3d2f-092a-4deb-84f4-be3d926123a2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-18 08:04:51.303',6082,'47880255-08ee-4e99-940b-16038e07de55','HAKAN AKDEMİR','436763810050','436766536472','Avusturya','TELFS','6410','UNTERMARKT STRABE 60 6410 TELFS ÖSTEEİCH AVUSTURYA',1,3.5,140,'478110382','0','0',NULL,1500,1,'SARI ETİKETLİ','2025-08-18 08:06:08.483','2025-09-03 12:47:01.224',NULL),
('4ab249eb-ffb9-4bfa-ab09-0071234e0617','1764a07b-eb47-4578-b6cd-f3c0d0e743be','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-17 09:13:59.930',2000,'47880255-08ee-4e99-940b-16038e07de55','GÖKHAN EYCAN ','31687211172','31643641346','Hollanda','ROZENBURK','3181','KASTANJELAAN 293181 BK ROZENBURK HOLLANDA',6,2,120,'478751440','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-02-17 09:16:37.513','2025-03-08 13:57:50.780',NULL),
('4ac57e98-4d31-4029-af5c-63c778250adc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-02 13:46:08.301',2925,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','EURO STAR MOBEL','491639801426',NULL,'Almanya',NULL,'111',NULL,7,3,0,'107870370','0','0',NULL,300,1,'GRİ ETİKETLİ','2024-12-02 13:50:41.147','2024-12-19 14:54:06.615',NULL),
('4aefeaca-07a5-46c4-8497-55b99b83d2f8','313cc2e2-5529-49ab-abe5-27b5d390bc5f','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-21 09:22:33.589',3916,'6133a2db-79c4-4372-9338-505db46b1847','BURHAN SARİKURT','491788201397','4917684805467','Almanya','BERLİN','13047','SEPTİMERSTRASSE 44A\n13047 BERLİN',6,2.5,110,'613508377','0','0',NULL,650,1,'MOR ETİKETLİ','2025-03-21 09:37:00.962','2025-04-05 10:57:59.260',NULL),
('4b0a63a8-b888-4398-b6a4-26f747429361','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-31 11:53:04.628',6294,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','AYHAN KOCAKAYA','33658242473',NULL,'Fransa','PARİS','94190','26 RUE ALEXANDRE DUMAS 94190 VİLLENEUVE SAİNT GEORGES',6,4.5,120,'31979626','0','0',NULL,1890,1,'KIRMIZI ETİKET','2025-07-31 11:55:21.533','2025-09-01 11:08:06.635',NULL),
('4b0f77c0-836a-4892-a19c-c0032f863e4b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:35:24.426',5800,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ADNAN MUSTAFAJ','33624131521','','Fransa','HUNİNGUE','68330','4 RUE DES FLORALIES',4,3.5,110,'449343471','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-03-16 08:38:10.791','2024-03-26 05:55:37.761',NULL),
('4b40049d-0967-49c8-8e4e-49b9a8e0a539','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:18:39.821',9172,'47880255-08ee-4e99-940b-16038e07de55','ERSİN ÖZDEMİR','491722006500','','Almanya','KAMAN','59174','EBERTALLE 14A',2,1,100,'478392276','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2024-09-27 11:22:23.898','2024-10-05 11:44:33.143',NULL),
('4b7eb51b-9f98-4771-9c1e-ea99abe7f44a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-13 09:32:44.338',1760,'47880255-08ee-4e99-940b-16038e07de55','ASLIHAN KELES','41782148595','41787001294','İsviçre','FRAUNFELD','8500','İNDUSTRİESTRASSE 15 8500 FRAUENFELD İSVİÇRE',11,2,140,'478112159','0','0',NULL,400,1,'MAVİ ETİKETLİ','2025-01-13 09:36:42.013','2025-01-31 20:06:26.727',NULL),
('4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-12 07:18:52.000',8118,'dea91080-5383-4085-af2e-7eace2c64224','EKREM ASLAN','4915785558827','4915785558828','Almanya',NULL,'75175','EUTİNGER STR. 75175 PFORZHEİM',10,3.5,110,'91059017','0','0',NULL,2075,1,'KIRMIZI ETİKETLİ','2025-05-12 07:20:30.198','2025-06-18 07:16:02.555',NULL),
('4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85','51b55e5b-7487-4d8a-923e-163f04d0b1d9','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-26 10:26:52.509',2907,'4126da30-ba9b-41b7-be29-865069aa484c','FURKAN','491787074737',NULL,'Almanya',NULL,'59192','ERNST-SCHERİNG STRABE 5',21,2,0,'412580908','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-01-26 10:27:58.479','2025-02-07 11:19:17.303',NULL),
('4bdcdb81-8f1e-445e-a062-3fd4dadc1b21','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-15 10:05:14.609',10911,'afdbd570-d700-442a-b617-752921194603','BÜNYAMİN ELİF ÇİLİNGİR','33651153601','33768280115','Fransa',NULL,'76480','1334 RUE LE PETİT ',2,28,120,'570899680','0','0',NULL,7010,1,'SARI ETİKETLİ','2025-02-15 10:08:09.346','2025-02-28 12:03:24.448',NULL),
('4beeb944-7865-42f1-92a5-015bdc8f8dcb','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-25 13:53:32.430',1320,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','MELİSA ','4917687857999',NULL,'Almanya','MÜNCHEN','80933','THURWİESERSTR.7\n80933 MÜNCHEN',20,3,110,'817630523','3','3','Söförün yanina ya bi yardimci gönderin yada daha kücük arabalarla yolla gönderin, koltuklari 1km kendimiz tasimak zorunda kaldik ',1125,1,NULL,'2025-07-25 13:55:37.154','2025-08-06 18:08:53.687',NULL),
('4c0fdc4e-fba8-41b2-955c-295b479ea428','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 12:48:41.414',6238,'e6d4faef-484c-4ce7-992c-906e05fc083e','SUZAN EL MOUSSA(K)','491759091093','01759091093','Almanya','KÜNZELL','36093','WİLHELM ÖSTERİCH STRABE 8 ',0,2,110,'644275969','0','0',NULL,1125,0,NULL,'2025-09-17 12:57:37.839','2025-09-17 12:59:53.614','2025-09-17 12:59:53.613'),
('4c2a467e-0e16-4b5c-93dc-bdb7504d2fec','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-26 15:07:39.093',4290,'47880255-08ee-4e99-940b-16038e07de55','FEHMİYE KESERCİ','31619691823','31619691823','Hollanda',NULL,'2172','SASENHAİM  / HOLLANDA - 2172',0,2,120,'478839575','0','0',NULL,0,0,'SARI ETİKETLİ','2025-02-26 15:08:41.951','2025-03-20 18:08:08.052',NULL),
('4c2f86c9-653c-4859-ad05-f53200e7d5ba','eccfe611-9163-42aa-a1ff-e711af0248e6','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-04 23:15:25.327',10075,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İMANE LAARİ','33621599637',NULL,'Fransa',NULL,'26250','14 RUE DU PERRİER LOT LES LOCHES , 26250 LİVRON DUR DROME ',3,3,130,'22130093','0','0',NULL,1100,1,'GRİ ETİKETLİ','2025-01-04 23:18:19.160','2025-01-19 14:52:10.025',NULL),
('4c449693-e58b-4f1c-aa28-fae57056e377','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-10 06:51:27.992',2735,'e6d4faef-484c-4ce7-992c-906e05fc083e','REBEKKA İRMER','4917664273200','4917664272042','Almanya','FARCHTBERG','74670','SONNEHALDE 11,74670 FARCHTBERG',28,2,110,'644113100','0','0',NULL,650,1,'AÇIKMAVİ ETİKETLİ','2025-04-10 06:58:41.400','2025-05-19 20:26:37.031',NULL),
('4c6a6d6f-af58-43f6-9a04-2610b54ab8a0','394112c3-f977-4fc2-b430-775e79e472ca','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-07 10:02:02.749',10176,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','CLEİDY MARTİNS ','33641852217',NULL,'Fransa',NULL,'54190',NULL,7,2.5,140,'982475389','0','0',NULL,1250,1,'MOR ETİKETLİ','2025-02-07 10:03:08.919','2025-02-26 08:36:44.285',NULL),
('4c96cdc2-5925-4a3e-88ac-0186ce15c8e9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-09 05:08:27.221',1426,'52840269-0db7-4c57-8a50-57d49049f342','ERTUĞRUL','32477787877',NULL,'Belçika',NULL,'1030',NULL,14,2,120,'528433255','0','0',NULL,3000,1,'YEŞİL ETİKETLİ','2025-05-09 05:08:56.331','2025-06-05 16:38:30.974',NULL),
('4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1','8fff5e14-418c-4377-bd83-3a3f81383507','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-18 09:13:33.060',7991,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NİNA ÖZÇELİK','436766504588',NULL,'Avusturya','WİEN','1210','GRELLGASSE 11/4/2',18,3.5,120,'437397407','0','0',NULL,495,1,'KIRMIZI ETİKET ','2025-08-18 09:16:13.496','2025-09-17 16:03:29.946',NULL),
('4c9e628d-c4ff-4606-88fd-789fb9c3affc','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-22 15:02:58.353',8043,'3c7190b6-f6ee-4275-8958-d7af952132ab','SHİMA MAKEH VANDİ','4917664132163','4917664132163','Almanya','STUTGART','70435','SCHROZBERG 12, 70435 STUTGART ALMANYA',1,2,110,'371865484','0','0',NULL,300,1,'yemek masası','2025-09-22 15:04:19.710','2025-10-17 06:13:01.460',NULL),
('4ca3f816-65f3-42e3-9d35-51e86f0b5030','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-10-18 08:33:19.177',4947,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','ZURA ADEMOSKİ','436766944915','436764508486','Avusturya','WİEN','1100',' WENDSTATTGASSE 13/87/22 1100 WİEN',0,2,110,'50579665','0','0',NULL,495,0,NULL,'2025-10-18 08:34:41.733','2025-10-18 08:34:41.733',NULL),
('4ccac009-f5a5-418b-b56b-3918c0e2dd0e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-19 15:04:07.808',3097,'4126da30-ba9b-41b7-be29-865069aa484c','LORİSWOOD','4915738614883',NULL,'Almanya','BERLİN','13053','MARZAHNER STR 17',12,2,0,'412139015','0','0',NULL,220,1,'YEŞİL ETİKETLİ','2025-01-19 16:17:48.140','2025-01-28 20:45:04.034',NULL),
('4cee8ce4-6f87-40e4-9944-489354d592c5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 13:01:50.437',8219,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','REZA ÖMERİ','4915221698583','','Almanya','STEİNBACH','61449','NİEDERHACSTAD STR.20',4,1,100,'449968881','0','0',NULL,0,0,'SSH YAZILI BANTLI','2024-10-11 13:04:52.753','2024-10-24 19:09:25.282',NULL),
('4cf8e968-59ad-4be3-85fe-2d5ab1c9063f','d008d786-a02e-404b-b090-54460d9d421e','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 15:52:12.810',2934,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','MERVE KIZILIRMAK','32483112952',NULL,'Belçika','VİLVOORDE','1800','NEDERLANDLAAN 6 VİLVOORDE  BELÇİKA',7,2,120,'657258901','0','0',NULL,300,1,'PALET','2025-07-01 15:58:52.196','2025-07-26 16:11:52.722',NULL),
('4d0b2acc-d1c8-46aa-b839-b13854fbe901','5c723cdc-e582-4b00-8271-838c085984c2','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-29 07:53:28.350',5203,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SERHAT ÇAÇAN','33698945005',NULL,'Fransa',NULL,'91910','3 CHEMIN DE LA PROCESSION 91910 SAINT SULPİCE DE FAVIERES FRANSA ',12,5.5,130,'745303876','0','0',NULL,2885,1,'FOSFORLU YEŞİL ETİKETLİ','2025-01-29 07:57:03.204','2025-02-13 13:19:44.651',NULL),
('4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f','d074816b-78fd-4378-91c0-3835eba28f44','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 08:55:41.595',3584,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','BAHATTİN AGİT ÇELİK','4917660878841','4917622702695','Almanya','GIEBEN','35398','SCHUPP STRASE 3 GIEBEN 35398 ALMANYA',22,4.5,100,'614350153','0','0',NULL,1100,1,'PEMBE ETİKETLİ','2024-11-21 09:10:46.535','2024-12-03 21:16:46.789',NULL),
('4d25f6fc-edd0-4a96-9bb2-91c21a66472a','c21cdd02-4af2-4b32-bc87-c70a576c3a99','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-04 15:04:21.835',2358,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','FATİH YİGİT','491722006627','4915734541843','Almanya','BAD RAPPENAU','74906 ','ROSEN STRASSE 23 74906 BAD RAPPENAU',25,2.5,110,'515956879','5','5','Hersey Tam Vaktinde geldi cok güzeldi ! ',900,1,'KIRMIZI ETİKETLİ','2025-08-04 15:06:27.810','2025-09-23 14:09:34.039',NULL),
('4d4ad16a-ebbb-41f2-9d01-d167180af909','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:21:58.413',9217,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FAHREDDİN ÖZENC','491621003138','','Almanya','LUDWIGSHAFEN','67065','HOCHFELD STRABE 153',13,1,100,'745283309','0','0',NULL,700,1,'MAVİ ETİKETLİ','2024-10-02 09:23:42.203','2024-10-09 11:10:56.705',NULL),
('4d4f0208-1ac3-44ef-8887-3111a56f2a9f','56e5168e-cbcf-408d-8798-5560be5c7235','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-04 18:35:28.528',4791,'7bb6a552-e940-4456-bfc3-50a13013996c','SEVGİ ÖZÇELİK ','491777070885',NULL,'Almanya','OBERHAUSEN','46049','ADRES:ANNASTR.37\n46049 OBERHAUSEN, ALMANYA\n',7,2,110,'765627791','5','5','Kartonumu teslim eden Şöför Beyefendi ,yardım sever,sayılıydı.Ayrıca bi Cargo  bilgilendirme sistemi harikaydı ,bilgilendir me ile kendimi teslimata hazırlayabildim. Söylene zamanda teslimat gerçekleşti bunun için teşekkürlerimi tüm çalışanlara iletirim .Kolay gelsin ,başarılarınız devamını temenni ederim ',0,0,'KAPI ÖNÜ TESLİM OLMAYACAK EN YAKIN ADRESE TESLİM OLACAK 30 KM YAKINDA. BEYAZ ETİKET ','2025-10-04 18:50:01.922','2025-10-20 10:22:46.496',NULL),
('4d829d78-94c2-4e78-a544-eebc09aa13b0','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-04-24 08:08:13.522',2568,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALEV BAYGÜNDÜZ','4917632486076','4917632486076','Almanya','WEDEL','22880','GALGENBERG 67 WEDEL 22880 ALMANYA',0,3.5,110,'371903427','0','0',NULL,2000,0,'köşe takımı, masa, sehpa, sandalye, berjer. 6 metreküp','2025-04-24 08:10:35.430','2025-10-27 07:49:08.127',NULL),
('4d90aba0-8b4f-4e5c-b747-d70de9be6cb4','aaa4a453-cb36-4567-b88e-335acb07c024','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-19 08:27:28.288',10933,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','HATİCE GÜNGÖR','31648497230',NULL,'Hollanda',NULL,'1068','VRİJZİCHT 38, 1068 CADDE AMSTERDAM',5,2,120,'465634666','0','0',NULL,0,0,'YEŞİL ETİKET ','2025-09-19 08:30:52.089','2025-10-16 15:46:43.298',NULL),
('4db8cd5e-35c6-4751-834d-0124e5766e08','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-02 12:12:02.023',5319,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','AYŞE KABAN','0782202390',NULL,'Fransa','PERPİGNAN','18','PERPİGNAN 18 RUE ABRAHAM BOSSE',0,4,120,'614204771','0','0',NULL,1570,0,NULL,'2025-10-02 12:28:16.450','2025-10-07 10:20:46.838',NULL),
('4dbf93f9-e436-46b7-8455-aa2f9617afb4','eccfe611-9163-42aa-a1ff-e711af0248e6','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-25 16:01:20.224',8299,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUSA BEKİM','33771602575',NULL,'Fransa',NULL,'78125','23 RUE DES AQUİTAİNE 78125 GAREZAN',3,2.5,130,'221624652','0','0',NULL,1500,1,'GRİ ETİKETLİ','2025-02-25 16:05:30.780','2025-03-24 16:02:44.915',NULL),
('4dcd0598-cccb-4e25-a905-d0b8bb159ce5','f784b688-ba6b-4886-87dd-fe4cfbed85b4','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-22 14:11:06.470',4110,'dea91080-5383-4085-af2e-7eace2c64224','RUKEN ŞAKIR','4915906114014','4915115864396','Almanya','ZİERENBERG','34289','HESSEN AMSELWEG 2A 34289',8,4,110,'910187142','0','0',NULL,950,1,'TURUNCU ETİKETLİ','2025-04-22 14:12:33.971','2025-05-13 09:06:07.341',NULL),
('4df16b2c-055b-4ac8-aeb3-8ecccdbc057f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-02-21 11:56:31.628',10251,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','TÜLAY HANIM ','491627760699',NULL,'Almanya',NULL,'59192','GESCHWİSTER SCHOLL STRABE 5',11,4,110,'455658704','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-02-21 11:58:42.959','2025-04-08 15:37:02.657',NULL),
('4e0cea3d-63d2-42a8-afae-666b9df651a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 13:07:06.507',6050,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MEHMET DORUM','00491605639383','','Almanya','LANGWEİD AM LECH','86462','PARKSTRABE 16',0,1,0,'248526655','0','0',NULL,1700,1,'KIRMIZI ETİKETLİ','2024-09-09 13:08:23.440','2024-09-16 12:23:11.869',NULL),
('4e1208ff-8f5b-4346-a832-196d997bdb96','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-07 13:50:25.114',10327,'59868701-abe4-4705-a7e6-d91c2c69262e','SADİJE KAMBERİ','4915730994641','4915730994641','Almanya',NULL,'58093','ELMENHORST STR 89, 58093 HAGEN ALMANYA',17,3.5,110,'59841260','0','0',NULL,690,0,'TURUNCU ETİKET','2025-10-07 14:01:23.593','2025-10-25 08:59:02.132',NULL),
('4e495647-8999-4246-a35c-fd58b0c1ac75','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','66307a01-d585-4127-903b-18748421c29e','2025-04-17 15:23:46.898',10606,'e6d4faef-484c-4ce7-992c-906e05fc083e','SELİN ÖZALP','4917663834666','4917641531210','Almanya','BERLİN','12347','KEİNHEİDWEG 11A ',2,2,110,'644615727','0','0',NULL,1300,1,'YEŞİL ETİKETLİ','2025-04-17 15:30:10.339','2025-05-10 20:12:44.485',NULL),
('4e49b5ee-1be1-4c7d-bc8a-cb8cb8fa0197','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-03-20 11:16:47.861',9265,'4126da30-ba9b-41b7-be29-865069aa484c','ŞÖMİNE CAMI','41764259879',NULL,'İsviçre',NULL,'9542','IM ZENTRUM 14',0,2,0,'412811389','0','0',NULL,0,0,NULL,'2025-03-20 11:17:39.398','2025-04-11 12:44:30.842','2025-04-11 12:44:30.845'),
('4e702cc0-9353-4b47-aa7e-ecce06c5c66b','05135cd5-2d33-4363-b51e-c9b83a94094d','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-05 18:24:14.595',3456,'4126da30-ba9b-41b7-be29-865069aa484c','TURGAY','7627367263762632',NULL,'Almanya',NULL,'12053',NULL,20,2,0,'412139250','0','0',NULL,250,1,'PEMBE ETİKETLİ','2025-09-05 18:25:05.174','2025-09-12 22:09:47.091',NULL),
('4e8221f0-0ed6-4604-bd0f-45a00d3e3c89','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-08 10:27:10.278',2115,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEPAN MOHAMMED','491771886030','491703582670','Almanya','GÖPPİNGEN','73033','BLEİCHSTRASSE 1, 73033 GÖPPİNGEN',19,2,110,'644107524','0','0',NULL,625,1,'1 PALET','2025-03-08 10:33:06.200','2025-04-05 13:45:25.635',NULL),
('4e848e66-1956-4160-9b53-a1fab280f1f6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-29 08:53:43.097',3607,'3c7190b6-f6ee-4275-8958-d7af952132ab','HAMİYET KARASOY','4915226123899','4915226123899','Almanya','MOERS','47443','URANUSRİNG 25C 47443 MOERS',9,2,110,'371876767','0','0',NULL,750,1,'BEYAZ ETİKET ','2025-09-29 08:57:51.877','2025-10-20 06:31:57.755',NULL),
('4ea10ab4-061b-4394-9937-abf14e77d39b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:09:17.723',10974,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FURKAN BAŞTEPE','49176199183551','4917670549547','Almanya',NULL,'41836','GENDOFOIS STRABE 41',11,2,100,'745778561','0','0',NULL,600,1,'TURUNCU ETİKETLİ','2024-11-02 08:10:35.168','2024-11-11 19:55:44.992',NULL),
('4eca9076-fb67-4509-9af7-f82fb79db731','e6cc7d42-de29-4029-bf0f-5ba2156e1e85',NULL,'2025-10-10 09:44:10.599',6989,'a42d8839-caef-4422-888f-cbfdf4188c5b','ESRA SAATÇİ','33753831255','33749344276','Fransa',NULL,'82000','68 AVENUE DES MOURETS MONTAUBAN OCCİTANİE FRANCE 82000\n\n',0,5,130,'428905379','0','0',NULL,0,0,'yükleme videosu istiyoruz.\nödeme vekliyoruz yola çıkmasın.','2025-10-10 09:46:41.980','2025-10-23 07:37:42.350',NULL),
('4ee5ea12-f019-4745-8dc5-d1a4bfa3b2b9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-02-20 11:35:23.136',3986,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN','27373737282838',NULL,'Belçika',NULL,'0000',NULL,0,2,120,'70333177','0','0',NULL,0,0,NULL,'2025-02-20 11:35:57.391','2025-02-23 12:03:38.346','2025-02-23 12:03:38.348'),
('4f02bcd7-906b-4707-88c7-1785ae978dff','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-08-31 12:43:54.523',2462,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','ZERDEŞT DALMIŞ','41782487327','','İsviçre','BASEL','4057','ACKER STRASSE',0,1,140,'455784012','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-08-31 12:45:55.360','2024-08-31 12:47:52.720','2024-08-31 12:47:52.730'),
('4f12f440-a116-4008-91df-70191ee2d9f1','5c723cdc-e582-4b00-8271-838c085984c2','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-20 13:23:53.738',10217,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MÜSLÜM MERDANE','33695831959','33695831959','Fransa',NULL,'73500','RUE ANDRE LEBON 715 73500 MODANE FRANSA ',0,7,120,'74520622','0','0',NULL,1550,1,'MAVİ ETİKETLİ','2025-01-20 13:29:38.887','2025-02-03 10:51:51.608',NULL),
('4f1e9e45-fd05-4b73-b176-afd047965ff2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-29 13:18:39.443',3925,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EMİR ASLANOĞLU','33607979254',NULL,'Fransa',NULL,'93370','21 AVENUE DES SCIENCES ',8,1,110,'745747559','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-29 13:20:47.476','2024-12-10 16:03:57.695',NULL),
('4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-01-20 13:47:46.485',9662,'47880255-08ee-4e99-940b-16038e07de55','RAMAZAN KAYHAN','4915152091392','4915115830326','Almanya','CABURG','96465','ALMANYA 96465 NEUSTADTBEİ CABURG',10,2,105,'478972804','0','0',NULL,13750,1,'SARI ETİKETLİ','2025-01-20 14:01:10.629','2025-02-27 13:37:30.441',NULL),
('4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-25 10:52:27.405',1877,'3c7190b6-f6ee-4275-8958-d7af952132ab','MERYEM BULAK','4915778860967','4915778860967','Almanya','WUPPERTAL','42289','WERLESTR 15 42286 WUPPERTAL ALMANYA',4,4,110,'371408514','5','5','Super service',1000,1,'. KAHVERENGİ RENK','2025-06-25 10:55:01.948','2025-07-30 08:40:41.325',NULL),
('4f563dbc-f003-405e-bdb8-828b7a66d357','804a2f53-7a26-4e8e-a505-7fc107953b50','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-10 11:23:27.715',4780,'a42d8839-caef-4422-888f-cbfdf4188c5b','KADİR SÜLÜN','4917632257124','4917620554139','Almanya',NULL,'85049','FALKENSTRASSE 2 85049 İNGOLSTADT\n\n',20,9.5,110,'428696149','0','0',NULL,1400,1,'KIRMIZI ETİKET ','2025-09-10 11:29:59.130','2025-10-14 05:37:27.072',NULL),
('4f91d654-f578-426a-8133-5299ed48d624','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:56:14.568',7634,'73596a75-b658-4249-8c71-b0490654bc8b','OZAN YEŞİL','004917632786230',NULL,'Almanya',NULL,'47169','GESTERMANN STR. 23',11,1,0,'735442629','0','0',NULL,1533,1,'AÇIK MAVİ ETİKETLİ','2024-12-07 08:57:39.171','2024-12-19 09:32:46.035',NULL),
('4f9d5c38-0063-4e07-b2a8-9a979cfc78c5','8fff5e14-418c-4377-bd83-3a3f81383507','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-12 11:28:00.876',7482,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MÜCAHİD AL','31685834791',NULL,'Hollanda','AMSTERDAM','1064','HUMEHOF 2-1 1064 *B',1,2,120,'437880840','0','0',NULL,600,1,'AÇIKMAVİ ETİKET','2025-08-12 11:31:30.082','2025-09-04 21:03:50.131',NULL),
('4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2','1f0119e0-2853-442a-8394-39cf94fce7df','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-21 06:51:39.573',1881,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','BARAN RAKİP','4915906843844','4917670469390','Almanya','HEİDELBERG','69168','WİESLOCH/HEİDELBERG, HANS THOMA STR: 17, 69168',14,4.5,100,'517764616','0','0',NULL,1700,1,'PEMBE ETİKETLİ','2024-11-21 06:53:49.605','2024-12-10 12:35:38.736',NULL),
('4fcbc651-ced6-4837-a3cf-17f82d36dabe','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-15 08:01:56.544',2947,'3c7190b6-f6ee-4275-8958-d7af952132ab','MİTHRA EKHLAS','31641824655','31641824655','Hollanda','AJ LELYSTAD','8226','NOORDZEESTRAAT 46 8226 AJ LELYSTAD',0,2,120,'371665790','0','0',NULL,450,1,'GRİ ETİKET','2025-08-15 08:04:52.010','2025-09-04 21:03:56.201',NULL),
('4fcf7206-6a08-4a73-833c-a5e8b873c885','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-07 09:09:08.278',2300,'a42d8839-caef-4422-888f-cbfdf4188c5b','İMDAT KILIÇASLAN','4915906122844','4917621490516','Almanya',NULL,'7 74405','ST. JOSEFWEG 7 74405 GAİLDORF ALMANYA',20,4,100,'428480095','0','0',NULL,500,1,'YEŞİL ETİKETLİ','2024-12-07 09:11:12.521','2025-01-07 17:27:56.920',NULL),
('4fe827f7-044c-467f-84fa-f87c0fb696c4','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-05-29 16:02:31.523',4342,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GÜLER DELİDUMAN','4917622142785','4917622920209','Almanya',NULL,'91093','SCHLEİFWEG 26,91093 HESSDORF ERLANGEN HÖCHSTADT',29,3,110,'221432350','4','3','Siparişlerimi çok beyendim çok salam bu şekilde elimde oldu çok teşekkür ederim ',1175,1,'(TURUNCU RENK)','2025-05-29 16:04:36.393','2025-07-16 18:11:32.281',NULL),
('4fecd93b-0230-4b8f-9c66-a61c426ac9bb','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-08-29 11:40:05.086',7941,'e6d4faef-484c-4ce7-992c-906e05fc083e','DELİL ÖZÇELİK','4916097979747','4915737531253','Almanya','SİEGELSBACH','74936','IM SCHLOSSPARK 7',0,2,110,'644883152','0','0',NULL,0,0,NULL,'2025-08-29 11:47:16.404','2025-09-25 16:31:43.156','2025-09-25 16:31:43.155'),
('4ff50bd5-680b-45e9-8634-5c6a78e87f56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:31:13.271',1441,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALİ ÖZDEN','33645025760','33622632744','Fransa',NULL,'57220','36 RUE HENRIETTE DE LORRAINE',8,10,110,'745978651','0','0',NULL,2900,1,'MAVİ ETİKETLİ','2024-11-15 16:32:52.065','2024-12-01 12:28:14.055',NULL),
('50065a32-533f-412d-badc-5149cb99bf62','313cc2e2-5529-49ab-abe5-27b5d390bc5f','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-20 10:38:47.837',3892,'6133a2db-79c4-4372-9338-505db46b1847','ALTİN RAMADANİ','41794543642','41798943300','İsviçre','ALTENDORF','8852','CHURERSTRASSE 60, 8852 ALTENDORF, SCHWEİZ',12,2,140,'61355212','0','0',NULL,380,1,'326 frank alınacak','2025-06-20 12:13:56.024','2025-08-23 14:04:40.813',NULL),
('50101273-0c1d-452c-b0ea-a3c2e64b8022','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-25 12:55:17.162',1864,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUSA CAN KOÇAK','491743355024','4917660948830','Almanya','EHİNGEN','89584','DONAU KÖNİGSBERGER STRABE',25,5,110,'644389756','0','0',NULL,1600,1,'GRİ RENK','2025-06-25 13:04:12.601','2025-07-26 14:17:14.136',NULL),
('5038002a-b4fa-4ffd-b9c8-c48aca58f88d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-22 06:48:50.388',7656,'e6d4faef-484c-4ce7-992c-906e05fc083e','RABİA AKKUŞ','4915752861277','491774238890','Almanya',NULL,'73347','WİESENSTEİGER STRASSE 22\n73347 MÜHLHAUSEN İM TÄLE',27,3.5,110,'644507096','0','0',NULL,825,1,'KIRMIZI ETİKETLİ','2025-05-22 06:51:38.589','2025-06-04 07:24:33.130',NULL),
('503d054f-153e-4dba-9be1-a45ec1b52abe','05135cd5-2d33-4363-b51e-c9b83a94094d','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-29 12:13:01.403',2962,'4126da30-ba9b-41b7-be29-865069aa484c','BOLL TRADE','31625064385',NULL,'Hollanda',NULL,'5684',NULL,4,2,0,'412173308','0','0',NULL,1370,1,'KOLİLER','2025-07-29 12:15:28.362','2025-08-11 10:24:52.470',NULL),
('5045a79c-4874-4baf-b0cf-15d0d296389d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-07-30 08:08:26.915',7597,'47880255-08ee-4e99-940b-16038e07de55','KEVSER KAYA','33764176010','33668879544','Fransa','MARİGNANE','13700','PORC MEDİTERNANEE BATİMENT C11 13700 MARİGNANE',0,5.5,130,'478983907','0','0',NULL,4000,1,'PEMBE ETİKET','2025-07-30 08:15:54.657','2025-09-20 18:54:33.576',NULL),
('5063dfa2-5328-4697-84aa-52c286384d28','f784b688-ba6b-4886-87dd-fe4cfbed85b4','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-04 07:29:50.066',8317,'dea91080-5383-4085-af2e-7eace2c64224','YASİN YAVAŞ','3378192950','33699281403','Fransa',NULL,'13009','121 BOULEVARD PAUL CLAUDEL PARC		\nFLEURİ 13009 MARSEİLLE		\n',7,5,130,'910599740','0','0',NULL,1470,1,'BEJ RENK ETİKETLİ','2025-02-04 07:32:02.793','2025-03-03 12:37:37.230',NULL),
('509ec2fa-23ec-4576-8840-d2ebdd3ca734','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-09 08:14:15.518',9587,'3c7190b6-f6ee-4275-8958-d7af952132ab','LALE AKGÜL','4917628135179','4917628135179','Almanya','HAMBURG','21147','JOCHENHOFWİNKEL 1 21147 HAMBURG ALMANYA',6,3.5,110,'371533444','0','0',NULL,740,1,'KIRMIZI ETİKETLİ','2025-04-09 08:15:48.689','2025-04-28 11:58:58.862',NULL),
('50ac71ad-f352-4f3f-9611-9447396e01a3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-15 13:32:50.569',5544,'4126da30-ba9b-41b7-be29-865069aa484c','MESUT-ŞENOL','4915788580085',NULL,'Almanya',NULL,'10999',NULL,13,2,0,'412206514','0','0',NULL,5500,0,NULL,'2025-10-15 13:55:59.284','2025-10-22 12:43:49.196',NULL),
('50aeff12-6812-447f-b3a6-0c51ad9fc878','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 10:04:37.199',10458,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','EHSANULLAH SEDİGİ ','33755431348',NULL,'Fransa',NULL,'73100',NULL,12,4,140,'982663240','5','5','Magnifique le calcites Merci a vous ',1700,1,'SARI ETİKETLİ','2025-02-07 10:05:57.830','2025-02-28 17:00:04.353',NULL),
('50b32b06-83ec-4001-a220-a61d557cd0b9','1764a07b-eb47-4578-b6cd-f3c0d0e743be','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-08 08:57:45.083',9136,'47880255-08ee-4e99-940b-16038e07de55','ZEHRA AŞIK','4917661141685','491728705267','Almanya','GRAVENBROİCH','41515','STRALSUNDER STR 38 41515  GRAVENBROİCH ALMANYA',28,4,105,'478243785','0','0',NULL,1800,1,'TURUNCU ETİKETLİ','2025-05-08 09:01:31.900','2025-06-03 18:27:05.775',NULL),
('50bc90ae-fedc-49be-8709-4c99c7900a95','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-10-18 08:36:19.119',3059,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','RANA DOĞAN','436609870442','436766137610','Avusturya','HALL İN TİROL','6060','FAİSTENBERGERSTRASSE 3, TOP4\n6060 HALL İN TİROL',0,2,110,'50533973','0','0',NULL,675,0,NULL,'2025-10-18 08:37:54.682','2025-10-18 08:38:47.967',NULL),
('51128593-b736-40db-b3d3-679310ee1e96','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:22:20.182',2080,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','','','','Hollanda','Nieuwersluis','3631','Angstelkade 2a',11,1,0,'027734999','0','0',NULL,0,0,'SARI ETİKETLİ','2024-06-08 07:23:00.664','2024-06-21 16:18:34.775',NULL),
('515ab2de-5820-447c-8757-f2e57f2d6a69','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','60cc9c45-e005-43ac-9846-aca99952ff14','2024-12-30 09:28:17.311',7604,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA MÜEZZİNOĞLU','32490219326','32490219325','Belçika',NULL,'2800','KREİTENBORGSTRAAT 26 2800 MECHELEN BELÇİKA\n\n',4,1,120,'428341956','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-12-30 09:30:07.943','2025-02-10 14:16:27.212',NULL),
('516dfaaa-e378-4999-b13f-ef0839711334','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-02 10:11:22.782',3874,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','TÜRKAN ÖZER','436763404107',NULL,'Avusturya','WELS','4600','\nEİBENSTRASSE 44',9,5,120,'531983278','0','0',NULL,1300,1,'KIRMIZI ETİKETLİ','2025-06-02 10:12:54.427','2025-06-28 21:53:45.120',NULL),
('517e33c7-4738-4676-b2b6-9a46d48326bb','f784b688-ba6b-4886-87dd-fe4cfbed85b4','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-06 07:53:03.857',1815,'dea91080-5383-4085-af2e-7eace2c64224','NERMİN ÇETİNAVCI','33671902832','33749507221','Fransa','BEAUVAİS','60000','60.000 TL		\nBEAUVAİS 		\n5.6RUE PROSPER MERİMEE		\n',6,3.5,120,'910948770','0','0',NULL,700,1,'KREM ETİKETLİ','2025-03-06 08:01:50.202','2025-03-23 16:16:07.965',NULL),
('519c4dcc-e8d4-4545-8bfe-61ee397d5447','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-10-07 12:04:01.558',7268,'fabe2c23-b5a5-4123-a962-af519ac31d3b','BESTFULFİLLER','111111111111',NULL,'Almanya',NULL,'56288','BESTFULFİLLER INH. A. FELDE\nAN DER MOLKEREİ 8\n56288 KASTELLAUN\nGERMANY\n',2,2,0,'22330381','0','0',NULL,0,0,NULL,'2025-10-07 12:06:25.239','2025-10-09 08:39:56.345',NULL),
('51eada14-8b0b-474d-993b-35b1df5b1fdc','eccfe611-9163-42aa-a1ff-e711af0248e6','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 10:01:00.962',2916,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GÜLAY KIZIL','32489389683',NULL,'Belçika',NULL,'3600','BİJENSTRAAT 41 A 3600 GENK',8,2,120,'221598709','5','5','Kargo şirketi ve şoförün hizmetinden dolayı çok teşekkür ederiz herşey zamanında ve hasarsız bir şekilde teslim edildi. ',600,1,'YEŞİL ETİKETLİ','2025-07-01 10:02:55.270','2025-07-26 10:15:15.976',NULL),
('521af45a-6561-45db-adfb-641b8fafbc92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:15:26.895',3780,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','SEZER BEY','33680267085','','Fransa','','14740','20 RUE DE LA DİME',1,5.5,110,'126889614','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-04-27 08:17:42.557','2024-05-08 21:07:19.873',NULL),
('5242bea6-83a9-46c0-b42f-249dd7e9ef0a','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-08-18 12:45:24.509',8023,'47880255-08ee-4e99-940b-16038e07de55','PELŞİN YILDIZ','32467611773','32467611773','Belçika','SERAİNG','4100','RUE DES PİERRES 226 4100 SERAİNG BELÇİKA',0,2,120,'47876680','0','0',NULL,0,0,'SSH','2025-08-18 12:49:52.264','2025-10-23 07:04:16.524',NULL),
('524f025c-b247-483b-ae98-d4e6c7b69249','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-04-28 15:12:45.958',10343,'e6d4faef-484c-4ce7-992c-906e05fc083e','ANIL ÇOKBİLİR','4917687922868','4915904737735','Almanya','MÜNİH','85551','AM BERGANGER 4',28,2,110,'644584641','0','0',NULL,700,1,'MERMER PALET','2025-04-28 15:13:50.737','2025-06-04 07:24:26.939',NULL),
('526aa02e-2975-431a-8cc4-16032700e014','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-29 10:23:42.756',8387,'47880255-08ee-4e99-940b-16038e07de55','ALİCE CHOCRON','33618459202','33601991875','Fransa','PARİS','75016','13 RUE DU GENERAL DELESTRAİNT 75016 PARİS FRANSA',4,3,130,'478589258','0','0',NULL,1100,1,'YEŞİL ETİKET','2025-09-29 10:25:37.774','2025-10-25 09:00:24.655',NULL),
('526de5bb-5478-4ac9-aaab-26c962aa787b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-24 12:19:18.367',4788,'e6d4faef-484c-4ce7-992c-906e05fc083e','GÜLŞEN YİRMİBEŞOĞLU','3363457245','33634120628','Fransa','EYBENS','38320','14 BİS CHEMİN DE BEL AİF',0,3,130,'644563405','0','0',NULL,2000,0,NULL,'2025-09-24 12:30:59.739','2025-10-27 13:41:33.391',NULL),
('5289d63f-a7a4-464d-80ad-20c84233ff2b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-10 06:25:24.235',8001,'e6d4faef-484c-4ce7-992c-906e05fc083e','TARIK TURAN','4915208688801','491722663878','Almanya','BOTTROP','46238','POSSTRASSE 76A',10,5,110,'644769101','0','0',NULL,1950,0,'GRİ ETİKET','2025-10-10 06:33:23.682','2025-10-25 08:59:13.605',NULL),
('528a4efc-5102-4165-8106-60f8052866e1','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-03-17 13:41:29.936',4488,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ARZU BÖÇKÜN','4915735873115',NULL,'Almanya','HANNOVER','31275','İLTENER STRASE 69 //31275 //LEHRTE //HANNOVER',0,2,110,'614496263','0','0',NULL,0,0,NULL,'2025-03-17 13:51:00.572','2025-03-27 07:10:24.531','2025-03-27 07:10:24.534'),
('52951d3a-938c-4ea9-baf5-8e4605f5a78f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-23 07:19:04.204',9942,'e6d4faef-484c-4ce7-992c-906e05fc083e','MAKBULE ATEŞ','017643671132','017643673235','Almanya','GARBSEN','30823','SATURNRHG 71',0,2,110,'644463972','0','0',NULL,1750,0,NULL,'2025-10-23 07:30:30.052','2025-10-27 08:30:13.674',NULL),
('52ea460d-e94a-410a-9cce-0b771b3e4cc8','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-08-04 10:57:26.646',1053,'3c7190b6-f6ee-4275-8958-d7af952132ab','AYCAN ÇOLAK','4915560835617','4915560835617','Almanya','OBERKİRCH','77704','ADOLF-KOLPİNG STRABE 57 77704 OBERKİRCH',8,9.5,110,'371120278','5','5','Cok memnunum servisten görevli arkadaşdan cok icten di hersey icin teşekkür ederim ',3000,1,'KIRMIZI ETİKET','2025-08-04 11:01:16.574','2025-10-09 21:02:48.654',NULL),
('5302a3c5-ac11-48d5-8325-9704cfa8ca5b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-06 09:03:26.333',7214,'dea91080-5383-4085-af2e-7eace2c64224','ERDAL ULAŞ','33651552074','33768511676','Fransa',NULL,'93240','64 RUE EUGEN CAS',18,5.5,120,'910645687','0','0',NULL,1600,1,'SARI ETİKETLİ','2025-01-06 09:05:17.252','2025-02-13 13:19:17.782',NULL),
('5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e500be43-361f-413c-9720-89cc683cacf9','2025-10-13 10:13:10.002',1250,'4126da30-ba9b-41b7-be29-865069aa484c','YASİN DOVENSE','905050303939',NULL,'Almanya',NULL,'23556','LOHGERBERSTRASSE 7\n23556 LÜBECK',0,2,0,'41283852','0','0',NULL,2500,1,NULL,'2025-10-13 10:14:30.520','2025-10-17 10:41:42.720',NULL),
('53342718-86b2-40d9-a013-7091e0df1800','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-16 08:59:58.497',5823,'47880255-08ee-4e99-940b-16038e07de55','ALİ RIZA ÇOLAK','41766200005','41766181211','İsviçre','BASEL','4133','ZEHNTEN STRASSE 112  4133 PRATTEİN BASEL İSVİÇRE',0,2,140,'478881148','0','0',NULL,2250,0,'3.5 m3','2025-10-16 09:01:33.816','2025-10-16 11:52:43.867',NULL),
('5363a998-3fe4-420a-85a2-b67e56e97d35','f784b688-ba6b-4886-87dd-fe4cfbed85b4','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-01-14 13:08:58.905',10111,'dea91080-5383-4085-af2e-7eace2c64224','CAN KÜREKÇİ','4917621764667','491725821943','Almanya',NULL,'77652','WACKERSTRABE 48 BOHLSBACH		\n77652 OFFENBURG		\n',21,2,110,'910426934','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-01-14 13:10:27.628','2025-03-05 14:40:18.879',NULL),
('537f327a-f919-43fa-9be8-fa8d0af3cf00','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-07-30 16:19:09.449',3692,'47880255-08ee-4e99-940b-16038e07de55','KISMET ÖZTÜRK','32492456003','32467611773','Belçika','SERAİNG','4100','RUE DE LA RESİSTANCE 50 BTE 22  4100 SERAİNG BELÇİKA',0,4,120,'478892203','0','0',NULL,2100,0,'7M3','2025-07-30 16:23:15.055','2025-10-22 13:23:05.462',NULL),
('53b6d665-2c5b-4d51-b191-51a5a0be9665','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 13:08:18.108',7713,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NATASH SALİMİ','33751029586','','Fransa','','84000','',10,1,110,'982196265','0','0',NULL,550,1,'TURUNCU ETİKETLİ ROMÖRKDE','2024-08-31 13:12:07.002','2024-09-08 15:57:17.347',NULL),
('53c08779-8ccb-43dc-8df3-b0f7ba11e871','1f0119e0-2853-442a-8394-39cf94fce7df','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-02 12:01:49.705',3622,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','GAMZE CAPALBO - GABRİELE','491778394505','4917630410720','Almanya','GROSSAUHEİM','63457','LUİSENSTRASSE 39, 63457 HANAU - GROSSAUHEİM',18,2,110,'517395181','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-07-02 12:03:31.692','2025-07-24 18:03:49.514',NULL),
('53c89851-ed2b-4173-80a6-867b215bbcfe','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-27 12:53:55.853',9706,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FIRAT BEY','491721843886',NULL,'Almanya',NULL,'82008','WALTER PAETZMANNSTR.38',19,1.5,140,'98283616','0','0',NULL,550,1,'KIRMIZI ETİKETLİ','2024-12-27 12:59:00.827','2025-01-08 18:08:22.435',NULL),
('53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-02 12:21:06.238',9003,'a42d8839-caef-4422-888f-cbfdf4188c5b','HAVVA-HÜMEYRA DEMİR','491707609047','','Almanya','EMMERİCH','46446','BAUSTRASSE 17D',13,6.5,100,'42851120','0','0',NULL,1080,1,'PEMBE ETİKETLİ','2024-10-02 12:26:25.517','2024-10-24 19:09:25.282',NULL),
('5400fc28-c829-4ccc-a810-54ae598d5606','8184d19c-0d1f-4439-978c-7a3364e54967','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-23 14:24:50.269',10729,'b0c1192a-7d38-4b69-a901-778f65a98b9d','FERHAT SANUÇ','31629103799',NULL,'Hollanda','EİNDHOVEN MERCURİUSLAAN 174','174','HOLLANDA EİNDHOVEN \nMERCURİUSLAAN 174',5,5,120,'011573387','0','0',NULL,1625,1,'AÇIK MAVİ ETİKETLİ','2025-07-23 14:30:11.854','2025-08-11 10:24:57.179',NULL),
('54106caa-0b40-4d00-bc8f-c90cc5a93c72','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-01 09:17:10.167',5831,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MURAT YALIN','4917662664297','4917661977979','Almanya','','99427','',7,7.5,100,'501216728','1','1','Berbat berbat berbat ötesi , herşey zarar görmüş ve parçalar eksikdi!!!',3400,1,'SARI ETİKETLİ','2024-04-01 09:19:43.647','2024-05-07 15:57:10.353',NULL),
('54227612-b8f2-4146-ac20-5622ca9f45c2','5c723cdc-e582-4b00-8271-838c085984c2','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 08:30:34.034',8167,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OKAN CORAMAN','4915757272301','4915739316619','Almanya',NULL,'52477','OIDTWEILERWEG 61 52477 ALSDORF GERMANY',14,5.5,105,'745980941','0','0',NULL,1500,1,'KIRMIZI ETİKET ','2025-09-17 08:30:42.517','2025-10-17 20:57:31.178',NULL),
('54305dea-1aae-421b-a780-6ea6cb1e48be','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-31 15:40:05.300',8038,'47880255-08ee-4e99-940b-16038e07de55','YALÇIN BÜYÜKMURAT','4915141230280','491746858313','Almanya','FREİBURG','79110','AUWALDSTRABE 80 79110 FREİNURG ALMANYA',13,3.5,0,'478643015','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-12-31 15:41:56.249','2025-01-09 10:06:25.424',NULL),
('54427ae4-0cae-449c-86ba-ad49870f64d2','eccfe611-9163-42aa-a1ff-e711af0248e6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-15 06:56:08.421',10913,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BÜŞRA NUR ÇELEBİ','491724221941',NULL,'Almanya',NULL,'51377','MARİA-TERWİEL STRABE 3, 51377 LEVERKUSEN',19,2.5,110,'221278187','0','0',NULL,960,1,'GRİ ETİKET ','2025-09-15 06:59:15.716','2025-10-17 06:14:29.928',NULL),
('544de2ca-566d-4b42-80d3-8bdcf76c0ff0','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 13:01:30.838',4253,'e6d4faef-484c-4ce7-992c-906e05fc083e','KAMER DUHAN ECE(K)','4917620989771','4917655270836','Almanya','ISERLOHN','58642','HAGENERSTRABE 83',3,3,110,'644651781','0','0',NULL,900,1,'KIRMIZI ETİKET ','2025-09-17 13:09:06.776','2025-10-20 06:32:43.863',NULL),
('546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693','1764a07b-eb47-4578-b6cd-f3c0d0e743be','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-08 11:01:39.657',4683,'47880255-08ee-4e99-940b-16038e07de55','BİNALİ BOZBAŞ','491636703149','491764560707','Almanya','DUİSBURG','47198','2 UR ALTEN ZİEGELEİ 31 47198 DUİSBURG ALMANYA',4,2,105,'478798827','0','0',NULL,0,0,'SSH KARGOYA VERELİM','2025-09-08 11:03:36.804','2025-09-25 14:05:03.151',NULL),
('548ed737-ff1e-4d15-8e34-d66ac4314840','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-15 08:00:46.650',2109,'3c7190b6-f6ee-4275-8958-d7af952132ab','SAHİN DİNÇ','4915204222121','4915204222121','Almanya','LİPTİNGEN','78576','SCHLASSÜHLSTRABE 29 78576 LİPTİNGEN ALMANYA',26,8,110,'371514006','0','0',NULL,2900,1,'GRİ ETİKETLİ','2025-07-15 08:04:56.548','2025-07-26 14:17:10.167',NULL),
('54991aeb-2686-48c8-a4ae-b1b93c2336a7','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-12 12:35:28.398',1278,'4126da30-ba9b-41b7-be29-865069aa484c','NİZAMETTİN ALAGÖZ ','1111111111',NULL,'Almanya',NULL,'111',NULL,2,5.5,0,'412970240','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-03-12 12:41:03.189','2025-03-29 21:27:29.605',NULL),
('54e0df3d-9714-48db-8da6-46af349072d3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5d2ec7d8-1233-449c-8b75-c7d1571c790e','2024-10-21 07:46:53.939',5791,'dea91080-5383-4085-af2e-7eace2c64224','MÜZEYYEN ÖZDEMİR ','491723226773',NULL,'Almanya',NULL,'56567','BRÜDER GRİMM STRASSE 3',0,4.5,0,'910163142','0','0',NULL,825,1,NULL,'2024-10-21 07:50:05.938','2024-10-31 07:50:27.640',NULL),
('54f6e131-a6a8-449c-94bf-fd5f1f3719a5','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-09-04 14:03:40.762',9927,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','ZEHRA ÖZTÜRK','0769109520',NULL,'Fransa','VAUCLUSE','84700','60 IMPASSE DU BOİS MARRON 84700 SORGUES /VAUCLUSE/FRANSE',0,2,130,'515491042','0','0',NULL,700,0,NULL,'2025-09-04 14:05:47.495','2025-09-23 13:15:50.719',NULL),
('551b3f66-bfd0-40a3-aadb-9d6601e1a170','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 08:59:33.185',3182,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','XHEMİLE KURBOGAJ','41799421699','','İsviçre','ST. MARGRETHEN','9430','NEBENGRABEN STRASSE 36A',0,5,140,'126274786','0','0',NULL,1150,1,'','2024-05-11 09:01:16.747','2024-05-28 16:23:12.626',NULL),
('5520ae80-1d44-45d7-8797-fe0ffe5c09c5','804a2f53-7a26-4e8e-a505-7fc107953b50',NULL,'2025-08-06 06:35:04.130',8734,'a42d8839-caef-4422-888f-cbfdf4188c5b','AHMET ÇAKMAK','491733084191',NULL,'Almanya',NULL,'27711','AM HOCHZEİTSWALD 61 27711 ODTERHOLZ-SCHARMBECK\n\n',0,2,110,'428579129','0','0',NULL,1530,0,NULL,'2025-08-06 06:40:47.828','2025-08-06 09:50:38.314','2025-08-06 09:50:38.314'),
('55240a4d-a46b-43e7-90cb-b80fbb7defa8','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-10 08:14:39.547',4502,'47880255-08ee-4e99-940b-16038e07de55','FATMA KARAHAN','33681254075','33788354620','Fransa','STARASSBOURS','67380','12 RUE TİERGAERTEL 67380 LİNGODSHEİM STRASSBURG',0,2,130,'478203217','0','0',NULL,1000,0,'2 m3','2025-10-10 08:17:01.963','2025-10-10 13:59:20.296','2025-10-10 13:59:20.295'),
('5545a525-a1f8-4628-a148-d06b89ed77d1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-11 14:17:04.293',10423,'a42d8839-caef-4422-888f-cbfdf4188c5b','NADİR KURUKOL ','11111111111',NULL,'Almanya',NULL,'70327',NULL,0,1.5,100,'428163052','0','0',NULL,0,0,NULL,'2024-12-11 14:19:08.140','2024-12-28 14:36:51.590','2024-12-28 14:36:51.594'),
('55512975-1b08-4931-aa51-a204463134c2','eccfe611-9163-42aa-a1ff-e711af0248e6','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-19 07:51:32.226',5675,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LAMİSENT BUSİNESS','491632639510',NULL,'Almanya',NULL,'13156','HEİNRİCH-BÖLL-STRABE 15 B ,13156 BERLİN',10,2,110,'221339460','0','0',NULL,400,1,'SARI ETİKETLİ','2025-02-19 07:54:48.594','2025-03-21 17:17:29.974',NULL),
('5552132e-e408-47bc-ab37-19083b622454','1764a07b-eb47-4578-b6cd-f3c0d0e743be','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-23 10:24:27.792',5896,'47880255-08ee-4e99-940b-16038e07de55','İLKAY İNCE','31657997897','31621121193','Hollanda','ALKMAAR','1814','AMELİA VAN SOLMSSTRAAT 162 1814NR HOLLANDA',4,5,120,'478485864','0','0',NULL,1400,0,'YEŞİL ETİKET','2025-10-23 10:27:20.617','2025-10-25 08:59:21.121',NULL),
('558ade04-1baa-47ac-99df-233551c2e4c2','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-02 08:17:31.061',6880,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İSMET IRMAK','491742894095','016099741733','Almanya','OFFENBURG','77652','HAUPTSTRABE 120 77652 OFFENBURG/ALMANYA ',0,2,110,'614932526','0','0',NULL,0,0,'AYHAN DOĞAN-ŞERİF DOĞAN TESLİM EDİLECEK.BİLAL BEY İLE GÖRÜŞTÜM SSH LARI ÜCRETSİZ TESLİM EDECEK.','2025-10-02 08:26:24.769','2025-10-12 15:10:40.758',NULL),
('5594587a-f999-49e2-b9f8-adc5bdadc779','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-09 13:32:53.515',2586,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','MUHAMMER SARI','33618347342',NULL,'Fransa','PARİS','75200','23 RUE DES ENVIERGES',21,4,110,'614345013','0','0',NULL,440,1,'PEMBE ETİKETLİ','2024-10-09 13:36:34.975','2024-11-04 08:40:24.634',NULL),
('55e607ed-d51c-485a-8378-e7a48e23c319','51b55e5b-7487-4d8a-923e-163f04d0b1d9','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-11 12:15:01.172',9936,'4126da30-ba9b-41b7-be29-865069aa484c','ALİ ÖZVEREN','33632522248','33642266995','Fransa',NULL,'67600','48 RUE DE CHATENOIS SELESTAT',18,4,0,'412722649','5','5','Çok teşekkür ederim gerçekten muazzam çalışıyorsunuz gerçekten böyle ben mest oldum kolay gelsin selamlar ',1500,1,'GRİ ETİKET','2025-10-11 12:15:49.194','2025-10-22 08:49:31.393',NULL),
('56059bd6-d32a-4603-91da-c059737a036d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-15 09:40:40.050',2347,'47880255-08ee-4e99-940b-16038e07de55','ALEV DOĞRU','491782203045','491774020606','Almanya','WÜRSELLEN','52146','MARTİN KUTHER KİNG STRASSE NR 62 52146 WÜRSELEN',13,6,105,'478860616','5','5','Teşekkürler memnun kaldık. ',850,1,'SARI ETİKETLİ','2025-01-15 09:46:52.320','2025-02-08 16:25:22.279',NULL),
('5623dd4f-820f-4c2b-b881-83711ff989fd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','66307a01-d585-4127-903b-18748421c29e','2025-04-26 14:35:54.185',2803,'fabe2c23-b5a5-4123-a962-af519ac31d3b','ZEHRA ÖZALP','4915147045689',NULL,'Almanya',NULL,'95326',NULL,9,2,0,'223963997','0','0',NULL,0,0,NULL,'2025-04-26 14:36:45.723','2025-05-10 20:13:13.998',NULL),
('563299ed-822d-490a-97cc-eb08990a8bdb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-29 13:23:43.223',2154,'73596a75-b658-4249-8c71-b0490654bc8b','İBRAHİMİ ALİ JAN','00491726977318',NULL,'Almanya',NULL,'79224','SCHAUİNSLAND STRABE 10',12,1,0,'735500422','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-11-29 13:25:15.950','2024-12-10 12:35:50.469',NULL),
('5638b80a-4caa-4fda-9164-868d6f925066','5c723cdc-e582-4b00-8271-838c085984c2','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-22 08:37:20.513',5475,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERCAN VARSAK SSH ','4917632298382','4917662248908','Almanya',NULL,'21481','AM SCHÜSSELTEICH 8 21481 LAVENBURG ALMANYA',5,2,105,'745282619','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-08-22 08:37:43.181','2025-09-16 06:34:16.662',NULL),
('56416526-a1b9-4abd-8f0b-7b4ddb02e6fe','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-20 13:26:29.154',5819,'e6d4faef-484c-4ce7-992c-906e05fc083e','BETÜL ÇELİK SSH','4917673582903','491625968428','Almanya','HAMBURG','21107','VERİNGSTR 92, 21107 HAMBURG ALMANYA',4,2,110,'644298325','0','0',NULL,0,0,'SARI ETİKETLİ','2025-06-20 14:49:57.529','2025-07-25 18:05:20.193',NULL),
('564fedca-e233-4201-9160-9d65dc5da199','d008d786-a02e-404b-b090-54460d9d421e','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-26 07:57:13.076',3967,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','MERVE ÖZÇOBAN','436609400015','436609500017','Avusturya','TRİBUSWİNKEL','2512','MİTTELGASSE 22A',23,2,120,'657192716','0','0',NULL,300,1,NULL,'2025-06-26 11:02:24.625','2025-07-21 10:22:40.970',NULL),
('56569bbe-2460-4ca9-903c-508e769e4a29','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-01 08:58:48.560',1069,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALİ SAHMARANİ','4917676898071','491768795157','Almanya','SİEGEN','57074','AM SCHWARZEN BARTH 78 57074 SİEGEN ALMANYA',0,5,110,'371216639','0','0',NULL,3050,0,'koltuk takımı, sandalye, masa, tv ünitesi, konsol, sehpa','2025-10-01 09:02:07.225','2025-10-24 06:39:34.550',NULL),
('566f5cfb-cca0-4c69-85df-9c8acc621458','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','82f1d7bf-2100-48db-928f-49720faaff90','2024-12-23 09:22:17.185',9428,'a42d8839-caef-4422-888f-cbfdf4188c5b','SALİH DURAK','491719000609','5466167473','Almanya',NULL,'27 36043 ','RONSBACHSTRASSE 27 36043 FULDA DEUTSCHLAND',19,9,100,'428718727','0','0',NULL,1350,1,'MOR ETİKETLİ','2024-12-23 09:30:48.178','2025-01-28 15:19:34.396',NULL),
('5674d700-ff2a-461c-8ec2-d14658a2bc7a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-29 12:05:04.397',3700,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','ZERDEŞT DALMIŞ','41782487327','','İsviçre','BASEL','4057','ACKERSTRASSE',3,4.5,140,'455726286','0','0',NULL,1600,1,'MAVİ ETİKETLİ','2024-08-29 12:06:56.499','2024-09-07 15:53:55.861',NULL),
('56779a22-f184-44a7-8ac7-070b7bbde2dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:26:11.411',7894,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AHMET KURT','4915156727662','4915213260096','Almanya',NULL,'03238','SCHARNHORST STR 13',14,2,100,'745286096','0','0',NULL,690,1,'YEŞİL ETİKETLİ','2024-11-12 15:27:45.620','2024-11-23 12:17:08.607',NULL),
('567de155-b820-4225-ac37-23f88ed0500c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-04 15:00:35.911',9096,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','FATMA EROĞLU','4915737582950','','Almanya','MEİNERZHAGEN','58540','ZUM IMMECKER GRUND 6',3,5.5,100,'455165840','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-09-04 15:03:17.174','2024-09-12 10:54:24.707',NULL),
('5689f2eb-3126-469d-bd48-b54e23a855c8','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','66307a01-d585-4127-903b-18748421c29e','2025-04-07 08:23:58.728',6613,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERFURT  MOBİLYA KOLTUK','4917663208908',NULL,'Almanya',NULL,'99085','AZMANNSDORFER WEG 5',10,7,110,'248568702','0','0',NULL,800,1,'BEYAZ ETİKETLİ','2025-04-07 08:35:23.524','2025-05-08 07:31:06.957',NULL),
('56934bb2-8807-472a-9265-23392c22511f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-08 17:59:18.235',9421,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','EURO STAR MOBEL','491639801426',NULL,'Almanya','DORMAGEN','41539','KÖLNER STR',6,1,100,'107593305','0','0',NULL,0,0,'SARI ETİKETLİ','2024-11-08 18:01:23.877','2024-11-16 21:16:02.800',NULL),
('569bba17-5ac8-4ea3-bd0b-b8896ac22b68','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2025-02-03 11:02:57.930',3494,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ERDEM DELİ ','31618654806','31618654806','Hollanda','SPİNETSTRAAT','4876','SPİNETSTRAAT 70 4876 XT ETTEN-LEUR ',0,4,120,'449983232','0','0',NULL,1950,0,NULL,'2025-02-03 11:05:59.180','2025-02-19 20:51:00.456','2025-02-19 20:51:00.460'),
('569fc7cc-e749-4d29-b7d6-9ef416ea0a2d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-18 08:41:19.267',6239,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','HÜLYA GÜNDOĞDU','411798150062','','İsviçre','','3930','NAPOLEONSTRASSE VİSPWALLİS SCHWEİZ',20,4.5,140,'455568872','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2024-03-18 08:46:38.410','2024-04-17 10:16:37.203',NULL),
('56c417cf-c265-4351-92f6-09fa93a1f112','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-18 11:54:23.219',4918,'e6d4faef-484c-4ce7-992c-906e05fc083e','ERDEM ŞAHİN(K)','4915787836767','4915771953365','Almanya','ESSEN','45219','NECKERSTRASSE 15',12,3,110,'644522996','0','0',NULL,500,0,'TURUNCU ETİKET','2025-09-18 12:01:35.703','2025-10-25 08:59:10.092',NULL),
('56f30890-8cd9-48d2-9a6a-3354e8a6a762','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 06:52:44.274',5055,'c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','HASAN BEY','905540182920','','Belçika','JUMET','6040','RUE DU DİARBOİS 8',17,1,0,'44831715','0','0',NULL,2500,1,'','2024-06-08 06:54:57.895','2024-06-22 23:00:04.354',NULL),
('5716aae4-8f4b-48b9-96d5-193f5c4795d6','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-23 06:33:52.325',7931,'4126da30-ba9b-41b7-be29-865069aa484c','MOWO','491791902931',NULL,'Almanya',NULL,'46539',NULL,21,2,0,'412846685','0','0',NULL,880,1,'SARI ETİKETLİ','2025-05-23 06:34:31.787','2025-06-04 19:42:41.195',NULL),
('571ee7d4-2abf-4a45-83e7-822277468f5d','e6cc7d42-de29-4029-bf0f-5ba2156e1e85',NULL,'2025-10-23 09:53:29.117',4767,'a42d8839-caef-4422-888f-cbfdf4188c5b','ESRA KESİMLİ','491779218406',NULL,'Almanya',NULL,'68519 ','HOLZSTRASSE 12 68519 VİERNHEİM\n\n',0,2,110,'428455785','0','0',NULL,0,0,NULL,'2025-10-23 09:56:21.633','2025-10-23 09:57:14.895',NULL),
('57416db8-ee86-40d4-9d10-8a10779dc24c','f784b688-ba6b-4886-87dd-fe4cfbed85b4','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-25 08:02:08.889',8539,'dea91080-5383-4085-af2e-7eace2c64224','ÖZLEM ŞEKERCİ		','33782787916','33768365488','Fransa',NULL,'91130','\n7 RUE DU CHATEAU D\'EAU 91130 		\nRİS ORANGİS FRANCE		',5,4.5,120,'910884465','0','0',NULL,0,0,'SARI ETİKETLİ','2025-03-25 08:03:35.415','2025-05-02 17:10:58.407',NULL),
('5758b84a-ba06-4b26-888b-a1d46af4fac9','5c723cdc-e582-4b00-8271-838c085984c2','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-28 10:23:03.759',5530,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM YILDIRIM','33788688334',NULL,'Fransa','PONTARLIER','25300','33 CHEMIN DU VUILLECIN 25300 PONTARLIER FRANSA ',7,3,130,'745405587','3','3','Cumartesi günü Turkıye bursa ve inegol den gelen mobilya siparişim geldi amma şöyle söyleyim arkadaş tek başnaaydı ve ben yardim etmek zorunlay dım isterdim en az 2 kişi olmasıydı ',1250,1,'SARI ETİKETLİ','2025-04-28 10:24:06.988','2025-05-26 06:57:45.224',NULL),
('57672219-300a-458c-9d17-3e58d19f71a2','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-25 08:46:22.240',6555,'3c7190b6-f6ee-4275-8958-d7af952132ab','RECEP TABAKOĞLU','491787704238','491787704238','Almanya','GELSENKİRCHEN','45889','AHLMANNSHOF 15A 45889 GELSENKİRCHEN ALMANYA',11,5,110,'371601782','0','0',NULL,1860,1,'MAVİ ETİKETLİ','2025-04-25 08:49:15.770','2025-05-13 09:05:36.154',NULL),
('57a81540-e462-4e25-92dc-f9dd8b6a14df','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-07 11:11:07.330',2722,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','ALİM BAŞ','4917624766377',NULL,'Almanya','GEİSSENFELD','85290','MİTTERWEG 18',5,4.5,100,'50133574','0','0',NULL,3000,1,'YEŞİL ETİKETLİ','2024-10-07 11:17:26.468','2024-10-30 11:04:20.667',NULL),
('57aaa2e5-1908-4468-bb27-3c3205ba5948','5c723cdc-e582-4b00-8271-838c085984c2','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-07-07 13:02:28.923',4774,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MERVE DAYI','4917620519550','4917656525814','Almanya',NULL,'68549','NEOSTADTER STRABE 2 68549 ILVESHEIM ',22,4.5,105,'745869069','0','0',NULL,2500,1,'BEJ ETİKETLİ','2025-07-07 13:09:36.958','2025-09-23 14:04:02.225',NULL),
('57ca2461-e718-4402-86f5-359b366200e6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:26:43.252',6858,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','EMAL ENRİQUE','32465121667','','Belçika','OLEN','225','HOOGBULL 43',13,5.5,100,'449511744','0','0',NULL,1850,1,'TURUNCU ETİKETLİ','2024-03-23 07:29:47.563','2024-04-08 08:33:40.394',NULL),
('57d149b0-26bf-4d32-bd70-63fa29f50cd3','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-10 06:39:55.484',10898,'e6d4faef-484c-4ce7-992c-906e05fc083e','EMRE GÖZÜM(K)','31625162575','05453430091','Hollanda','ROTTERDAM','3194 TA','NOORDZİJDSEDİJK 88',2,3.5,120,'644312365','0','0',NULL,0,0,'KIRMIZI ETİKET (KAPIDA ÖDEME YOK)','2025-10-10 06:47:48.506','2025-10-22 13:07:10.126',NULL),
('57e894a7-068e-465a-bc70-3b4e9860cee5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-29 08:39:55.134',9404,'47880255-08ee-4e99-940b-16038e07de55','HAKAN ŞİMŞEK','41799232324','41617018888','İsviçre','BREİTENBACH','4226','SCHULGARTEN WEG 7A',3,1,140,'47889024','0','0',NULL,820,1,'','2024-05-29 08:42:56.043','2024-06-10 13:49:48.873',NULL),
('57ea5801-e3e6-46ac-b5d0-a60cf4d26d01','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:29:29.439',3182,'c2d4ce84-536d-4816-837f-7abbf6a7e061','PARWEZ MOHAMMADİ','004917616377875',NULL,'Almanya','KİEL','24109','HELSİNKİ STR 10',1,1,0,'248694668','0','0',NULL,450,1,'PEMBE ETİKETLİ','2024-11-12 15:31:43.580','2024-11-24 17:08:06.397',NULL),
('580415fe-7112-4432-89b1-efebbd154841','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-29 13:10:30.950',5014,'3c7190b6-f6ee-4275-8958-d7af952132ab','SEMİH TÜRKOĞLU','491787816278','491787816278','Almanya','LUDWİGSHAFEN AM RHEİN','67059','WESTENDSTRABE 26, 67059 LUDWİGSHAFEN AM RHEİN ALMANYA',30,2.5,110,'371696812','0','0',NULL,1300,1,'GRİ ETİKET ','2025-09-29 13:13:03.543','2025-10-15 08:13:32.560',NULL),
('581b4f00-ddd5-472c-b485-0863440ffc50','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-02-25 06:54:36.052',9353,'dea91080-5383-4085-af2e-7eace2c64224','ERDAL ULAŞ		','33651552074','33768511676','Fransa',NULL,'93240','\"64 RUE EUGEN CAS 93240\nSTAİN / PARİS\"		\n',0,2,120,'910611541','0','0',NULL,0,0,NULL,'2025-02-25 06:56:04.738','2025-03-24 15:18:33.763','2025-03-24 15:18:33.765'),
('58257b33-0630-4737-9729-852125dc7322','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-01 12:39:03.645',1936,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','ZEYNEP KÜÇÜKBIYIK','4917620172453',NULL,'Almanya','KAARST','41564','\nDANZİGER STR.15   41564  KAARST \nALMANYA',15,3,110,'531450758','0','0',NULL,0,0,'MAVİ ETİKET','2025-08-01 12:41:50.950','2025-09-03 05:44:24.021',NULL),
('582bd0ee-3bef-4bc8-9243-917189827f95','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-24 11:02:38.893',2096,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','RASHİD FECİANE','33669929545','','Fransa','CHOMBERG','73000','30 ALLE DA MOST GRELE',15,3.5,110,'449823745','0','0',NULL,1100,1,'MOR ETİKETLİ','2024-09-24 11:11:28.394','2024-10-11 11:28:25.410',NULL),
('58313a08-d2a0-4dce-97d3-e911857314d3','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-01-24 14:08:55.961',4618,'22a1dbd6-475c-4d4b-bb13-f459e3029634','KARİM','33759680107',NULL,'Fransa',NULL,'19100','2 BOULEVARD PİERRE BROSSOLETTE 19100 BRİVE-LA-GAİLLARDE',0,2.5,130,'221763224','0','0',NULL,1390,0,NULL,'2025-01-24 14:11:17.517','2025-05-07 14:33:39.715','2025-05-07 14:33:39.717'),
('5834e5ad-035b-4bd5-ba17-95504a0c5e1a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-15 13:31:02.256',5778,'a42d8839-caef-4422-888f-cbfdf4188c5b','Adil aşan','','','İsviçre','','','',1,9,140,'428839296','0','0',NULL,0,0,'','2024-05-15 13:39:10.489','2024-06-10 13:49:58.058',NULL),
('5841dd15-401b-4238-ac2d-009a61e5f5d1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-28 09:31:13.873',8790,'4126da30-ba9b-41b7-be29-865069aa484c','MUHAMMED NURTEREB','4917666559986',NULL,'Almanya',NULL,'56564',NULL,22,5.5,0,'412608739','0','0',NULL,605,1,NULL,'2025-04-28 09:33:36.691','2025-05-10 20:13:45.106',NULL),
('5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-09 15:48:10.828',10452,'47880255-08ee-4e99-940b-16038e07de55','MEHRDAND RAZMPOUR','32465639816','32466461371','Belçika','ZELLİK','1731','DRİE KONİNGENLAAN8  17341 ZELLİK BELÇİKA',8,2,120,'478962763','0','0',NULL,3000,1,'MAVİ ETİKETLİ','2025-04-09 15:50:53.909','2025-05-02 06:59:30.684',NULL),
('58c71bd8-91b7-498b-b4e1-100313e74a0d','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-09-04 10:19:39.384',9423,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','HASSAN','5423036885',NULL,'Fransa',NULL,'33310','26 RUE DE LA MOUNE 33310 LORMONT FRANCE',0,2,130,'920137471','0','0',NULL,0,0,NULL,'2025-09-04 10:21:21.549','2025-09-18 21:10:35.584','2025-09-18 21:10:35.583'),
('58d4a91c-acf5-448c-9848-3d5806828926','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-02 11:37:36.711',6654,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','FİRAS MACHANTAT','491627758662','491627758662','Almanya',NULL,'58675',NULL,3,2,110,'750505145','0','0',NULL,500,1,'AÇIK MAVİ ETİKETLİ','2025-07-02 11:44:42.707','2025-07-30 08:02:07.303',NULL),
('58e3e5d5-2e17-40da-96ac-0310bd71ed03','30b3fa45-4362-4bef-b611-4d4d2a3c84e3',NULL,'2025-10-16 07:22:31.622',10392,'9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','EROL KIŞLAK','0033649548330',NULL,'Fransa','LİON SENTETİEN','42400','11 BİS ROUTE DE CELLİEU 42400',0,2,130,'959626673','0','0',NULL,0,0,NULL,'2025-10-16 07:28:46.944','2025-10-23 12:29:32.071',NULL),
('5913d039-3ade-4c0a-b799-6d69b6824f00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:49:22.589',5456,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA UZUNBOY','31634031801','','Hollanda','ARNHEİM','6836','İDA GERHARD STRAAT 80',12,1,100,'47867667','0','0',NULL,2300,1,'YEŞİL ETİKETLİ','2024-09-27 11:53:55.511','2024-10-07 14:02:25.807',NULL),
('59340ffb-ba9b-4386-a0a4-686fcf54115b','eccfe611-9163-42aa-a1ff-e711af0248e6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-08-27 12:02:26.775',10980,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HASAN YALÇIN','31618085363',NULL,'Hollanda',NULL,'8224','KLİP 56 8224 CD LELYSTAD ',7,2,120,'221724224','0','0',NULL,850,1,'TURUNCU ETİKET ','2025-08-27 12:05:07.731','2025-10-02 06:11:36.371',NULL),
('59dde410-951f-46d0-a70c-9d7bad1aa73f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-20 11:08:07.108',2185,'3b80982a-28cd-44f1-8d72-59c4daf5e636','HÜLYA LAÇİNOK','436764679635',NULL,'Avusturya',NULL,'6020','GENERAL EECCHER STRABE 29',12,2.5,140,'380497843','0','0',NULL,400,1,'BEYAZ ETİKETLİ','2025-03-20 11:09:08.027','2025-04-02 18:57:10.886',NULL),
('59f8293d-670d-46aa-baa2-c4a3a969aea2','eccfe611-9163-42aa-a1ff-e711af0248e6','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-16 09:08:52.897',2302,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LEJLA GUDİC ','436769039960',NULL,'Avusturya',NULL,'4846','HAİNPRECHTİNG 101/4846 REDLHAM WOHNUNH TOP 15 ',8,2,120,'221758948','0','0',NULL,600,1,'PEMBE ETİKETLİ','2025-06-16 09:10:37.361','2025-06-29 15:02:31.408',NULL),
('5a03448d-5de2-4154-86a6-c1af699ed137','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:48:32.097',3473,'47880255-08ee-4e99-940b-16038e07de55','YAKUP KILIÇ','','','Belçika','GENT','','HOLLEHAAR STAAT 98',20,1,100,'478516951','0','0',NULL,0,0,'BİR SONRAKİ ADRESE BIRAKILCAK','2024-09-27 12:57:12.216','2024-12-13 15:37:32.870',NULL),
('5a4136d4-a877-40b8-8119-6f26b2fc6d0d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-13 13:55:37.473',7852,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ENGİN ','11111111111',NULL,'Almanya',NULL,'111',NULL,0,3.5,0,'248501679','0','0',NULL,0,0,NULL,'2024-12-13 13:57:38.455','2024-12-19 13:56:23.712','2024-12-19 13:56:23.716'),
('5a45aa6b-67e0-4e93-835b-88c97d490f10','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-10-24 09:30:50.436',7897,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA MÜEZZİNOĞLU ','32490219326','32490219325','Belçika',NULL,'2800','KREİTENBORG STRAAT 26',1,12,100,'428538007','0','0',NULL,1440,1,'MOR ETİKETLİ','2024-10-24 09:35:16.683','2024-11-16 21:34:32.901',NULL),
('5a5d710b-b6aa-42ac-baf2-69abc2901c83','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-24 12:27:19.447',7912,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AUCHLİ ANA ','41786878898',NULL,'İsviçre',NULL,'6020','STAUFFACHERSTRASSE 1 , 6020 EMMEBRUCKE',14,2.5,140,'221616369','0','0',NULL,850,1,'AÇIK MAVİ ETİKET ','2025-09-24 12:28:42.341','2025-10-11 14:59:53.186',NULL),
('5a89b7b0-e128-4e6d-96f8-3fe39b44b85f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:44:02.810',10258,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MURAT SABAK','436601875213','','Avusturya','Selzthal','8900','Şimon kaiser weg 6',1,8,120,'745859135','0','0',NULL,2700,1,'Kırmızı etiketli','2024-04-07 20:46:49.440','2024-05-02 19:56:42.327',NULL),
('5aa78870-c5db-449e-aff0-2a524544eba3','eccfe611-9163-42aa-a1ff-e711af0248e6','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-13 07:08:58.293',1347,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SELCAN BOZKURT ','33749273890',NULL,'Fransa',NULL,'44800','1 RUE D,ARRAS 44800 SAİNT HERBLAİN',3,2,130,'221118460','0','0',NULL,500,1,'(MOR RENK)','2025-05-13 07:10:40.558','2025-07-15 22:27:06.361',NULL),
('5ab838fc-3b03-474c-9930-88db6a09eba3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:54:49.127',9240,'47880255-08ee-4e99-940b-16038e07de55','SÜLEYMAN BOZAN','33610781591',NULL,'Fransa',NULL,'54110','5 RUE DU SANON DAMBASLE SUR',16,1,110,'478778961','0','0',NULL,5000,1,'SARI ETİKETLİ','2024-10-23 08:56:20.985','2024-11-04 08:40:46.659',NULL),
('5ab946bf-4daf-4a95-a7b6-8f3505531252','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-13 11:55:27.329',6499,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MEHMET KIZILDERE','33761750666','33669931427','Fransa',NULL,'78500','60 RUE DES SUREEAUX',4,6,110,'501488750','0','0',NULL,2500,1,'PEMBE ETİKETLİ','2024-11-13 12:03:04.191','2024-12-12 07:41:25.689',NULL),
('5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-18 10:19:48.167',10348,'47880255-08ee-4e99-940b-16038e07de55','GÖKHAN EYCAN','31687211172','31643641346','Hollanda','ROZENBURG','3181 bk','KASTONJELCAN 29  3181 BK ROZENBURG HOLLANDA',0,11,100,'478681299','0','0',NULL,6600,1,'MAVİ ETİKETLİ','2024-12-18 10:24:13.547','2025-01-07 19:30:46.445',NULL),
('5ad44ce7-8456-4857-b0ee-214d21edb110','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-10-06 09:28:55.918',3311,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','SHPETİM QERİMİ','41765617793',NULL,'İsviçre',NULL,'8172','KİRCHRAİNSTRASSE 5, 8172 NİEDERGLATT, SCHWEİZ',0,2.5,140,'695763797','0','0',NULL,1739,0,'1739 chf alınacak','2025-10-06 09:30:03.511','2025-10-16 13:23:30.311','2025-10-16 13:23:30.310'),
('5ae8d626-7580-4933-b99b-5dc0ec84d646','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:30:58.905',6950,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET','4916094922910',NULL,'Almanya','DUİSBURG','47167','HEUSS-STRABE 60',7,2,0,'223385669','0','0',NULL,0,0,'BEYAZ ETİKETLİ KOLİ','2025-02-07 11:33:45.297','2025-02-19 18:37:27.994',NULL),
('5b091e48-c241-44ae-9f12-59295c693382','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-26 09:25:14.609',5649,'3c7190b6-f6ee-4275-8958-d7af952132ab','İLAYDA GÜNEŞ SSH','491741928164','491741928164','Almanya','OBERSULM','74182','UHLANDSTRABE 3 74182 OBERSULM ALMANYA',21,2,110,'371280361','0','0',NULL,0,0,'TURUNCU ETİKET','2025-08-26 09:26:41.652','2025-09-08 05:04:26.574',NULL),
('5b1a0cd4-bd43-439a-9c7e-9bde54150a22','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-02-24 10:45:43.935',1750,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','MEHDİ HASSEİNİ','436604146690',NULL,'Avusturya',NULL,'6850','STİGLİNGEN 1',10,4,140,'455522020','0','0',NULL,950,1,'PEMBE ETİKETLİ','2025-02-24 10:50:14.803','2025-03-13 18:34:44.542',NULL),
('5b21aeae-630c-4c68-bc5e-f5ba08b334c7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-23 07:18:54.524',10807,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SHAHLA HOSSEİNİ','4367762955236','','Avusturya','VİYANA','1190','',1,2,120,'982320922','0','0',NULL,900,1,'PEMBE ETİKETLİ','2024-03-23 07:25:54.964','2024-04-03 08:28:11.225',NULL),
('5b3baf2b-7f2f-4d1b-b94e-916816876346','5c723cdc-e582-4b00-8271-838c085984c2','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-04 14:30:59.051',6858,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','CEYLAN ÇELİK','4917693356695','491624193445','Almanya',NULL,'25746','BLUMEN STR 2 25746 HEIDE ALMANYA',3,5.5,105,'745747218','0','0',NULL,790,1,'YEŞİL ETİKETLİ','2025-08-04 14:32:30.054','2025-08-21 21:29:28.224',NULL),
('5b410819-0339-4c69-a500-825f92b681a3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-08 08:47:47.658',8935,'6b16eb99-81b1-4306-b528-e41ae9bc90b3','MUARREM NAİR','33658296936',NULL,'Fransa',NULL,'06110',NULL,8,7,140,'616254479','0','0',NULL,1500,1,'KIRMIZI ETİKETLİ','2024-11-08 08:52:19.021','2024-11-25 09:20:39.164',NULL),
('5b42d72a-b62f-4cc4-9b48-7b1bab3054f4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 11:02:04.763',7342,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','QASIM MOHAMMADİ','330753353258','','Fransa','','74000','',5,1,110,'982331367','0','0',NULL,2800,1,'GRİ ETİKETLİ ROMÖRK','2024-07-20 11:03:42.091','2024-07-29 13:29:38.132',NULL),
('5b516169-2e1d-421d-a411-a20956666225','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:36:46.605',5220,'73596a75-b658-4249-8c71-b0490654bc8b','ANGELİNA KHALCHYTSKAYA','004917631517696',NULL,'Almanya',NULL,'09111','BAHNHOFSTRABE 22',8,1,0,'73574376','0','0',NULL,3600,1,'TURUNCU ETİKETLİ','2024-12-17 17:12:00.286','2025-01-11 10:16:45.910',NULL),
('5b569715-9b3f-4e71-8f65-5766da410613','804a2f53-7a26-4e8e-a505-7fc107953b50','acf5e984-44c0-4233-9521-0c373102472f','2024-11-26 07:07:41.300',7681,'a42d8839-caef-4422-888f-cbfdf4188c5b','SİDAR AKDENİZ','491634613400','4915773775727','Almanya',NULL,'66127','FRİEDRİCHSTRASSE 67 , 66127 KLARENTHAL - SAARBRÜCKEN',7,4.5,100,'428178028','0','0',NULL,1200,1,'YEŞİL ETİKETLİ','2024-11-26 07:13:13.016','2024-12-22 12:45:29.546',NULL),
('5b7d4688-f67a-4ea8-be59-b782013f7458','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:38:58.690',6451,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ABDULLAH DEMİR','33769293116','','Fransa','LOUVİERS','27400','37 ROUTE LA HAYE LE COMTE',5,6,110,'449239758','0','0',NULL,1630,1,'AÇIK ABDULLAH DEMİRMAVİ ETİKETLİ','2024-05-10 06:41:29.815','2024-06-04 14:25:07.582',NULL),
('5b941dae-75e7-4901-ad1f-19d95df3e0e8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-10-03 12:28:58.474',9684,'c2d4ce84-536d-4816-837f-7abbf6a7e061','TURGAY','111111111111',NULL,'Almanya',NULL,'82110','STARNBERGER WEG 11A\n82110 GERMERİNG',5,5.5,110,'248240825','0','0',NULL,1060,1,'YEŞİL ETİKET ','2025-10-03 12:30:44.077','2025-10-16 08:43:25.814',NULL),
('5bdda36d-058c-48a6-a634-4d0876d0f654','05135cd5-2d33-4363-b51e-c9b83a94094d','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-05 17:49:46.396',8983,'4126da30-ba9b-41b7-be29-865069aa484c','İHSAN KEPİR','491729063463',NULL,'Almanya',NULL,'27751',NULL,10,2,0,'412299499','0','0',NULL,500,1,'BOYALAR','2025-09-05 18:21:09.114','2025-09-15 06:12:43.178',NULL),
('5bdfe11c-5151-4ee3-bc79-c1e58f3bc770','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-01-02 10:07:26.950',9685,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BAYRAM KARAKÜTÜK','11111111111',NULL,'Almanya',NULL,'111',NULL,0,1,0,'982858048','0','0',NULL,0,0,NULL,'2025-01-02 10:08:53.314','2025-01-09 10:26:44.961','2025-01-09 10:26:44.963'),
('5be6a019-e31c-4bdd-ac62-bd037d756e64','1764a07b-eb47-4578-b6cd-f3c0d0e743be','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-24 08:40:54.724',9167,'47880255-08ee-4e99-940b-16038e07de55','MERYEMA TEKİN','33753319527','33753319527','Fransa','PARİS','77130','2 BİS AVENUE LGENNEC PARİS MELUN 77130 MONTEREGU\n3 RUE JEAN BOUİN MONTEREAU  FAULT YONNE',12,2,130,'478431848','0','0',NULL,3950,1,'SARI ETİKETLİ','2025-02-24 08:44:49.411','2025-03-22 19:19:11.167',NULL),
('5beae305-2b0d-4fcb-8a79-b68e23b3bcf1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:59:48.344',1052,'d3157cbd-9f22-499b-b371-4eff6e509b92','MİKAİL VUREL','436607081476','','Avusturya','KÖRNLEN','9560','DR.WALTER DOMENİG WEG',13,3.5,120,'315903894','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-05-10 07:01:34.076','2024-05-29 11:17:10.734',NULL),
('5c020160-b2d9-48d6-a019-7718647a1ff3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-16 13:05:12.145',5618,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ZOE BACHTOLD','41768164040','','İsviçre','WONGEN BEİ','4612','OBERE DUMERN STRASSE 28',7,9,140,'449644504','0','0',NULL,3800,1,'YEŞİL ETİKETLİ','2024-10-16 13:13:23.690','2024-10-24 01:09:15.395',NULL),
('5c0601b9-5e96-482f-b47c-52f985b49aa6','5c723cdc-e582-4b00-8271-838c085984c2','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-15 08:53:34.011',6981,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALİ ERKOCA SSH ','32490369779','32475529099','Belçika',NULL,'1140','GRİMBERGSEESTEENWEG 188 1853 STRAMBEEK BEVER BELÇİKA ',11,2,120,'745942521','0','0',NULL,0,0,'TURUNCU ETİKET ','2025-10-15 08:52:37.915','2025-10-22 13:06:57.242',NULL),
('5c5ee17e-b7fe-4686-853d-8b627742e536','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-30 06:55:23.158',10798,'c2d4ce84-536d-4816-837f-7abbf6a7e061','İBRAHİM BEY','4369919051995','','Avusturya','VİYANA','1220','RENNBAHNWEG 42',2,3,0,'248902824','0','0',NULL,480,1,'KIRMIZI ETİKETLİ','2024-03-30 07:02:04.954','2024-04-03 08:28:16.532',NULL),
('5c6ec0c5-22d6-47e2-968f-a3dffce4d711','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:55:50.231',3374,'47880255-08ee-4e99-940b-16038e07de55','KENAN KARAKAYA','33689770031','','Fransa','SAİNT CYPRİEN','42160','4 ALLEE DES MARAİCHERS',18,1,55,'478805224','0','0',NULL,0,0,'YEŞİL ETİKETLİ AYNA','2024-05-04 07:57:25.343','2024-05-23 08:25:05.126',NULL),
('5c7ee7c7-55ec-4754-bb1a-69a26c30fff6','eccfe611-9163-42aa-a1ff-e711af0248e6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-15 07:02:00.239',5957,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NECMİYE AMET','4915124010499',NULL,'Almanya',NULL,'64747','FLİEDERSTR.47 BREUBERG 64747',0,2,110,'221801165','0','0',NULL,500,1,'MAVİ ETİKET','2025-09-15 07:03:11.464','2025-10-17 06:13:07.090',NULL),
('5c8a45fd-4f1c-4791-a236-1f8362adf868','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-14 15:24:14.869',3209,'59868701-abe4-4705-a7e6-d91c2c69262e','BORAN ALBAYRAK','41764397280','491742714883','İsviçre',NULL,'4057','KLEİNHONİNGERANLAGE 19, 4057 BASEL/İSVİÇRE',10,2,140,'598668612','0','0',NULL,800,1,'KIRMIZI ETİKETLİ','2025-07-14 15:26:41.103','2025-08-02 17:36:11.138',NULL),
('5c90fa33-182c-4494-99fd-4c200fd9b3b8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 12:48:51.195',2275,'a42d8839-caef-4422-888f-cbfdf4188c5b','ULAŞ YILDIZ','41613314258','','İsviçre','','4053','MAİLAND STRASSE 31',2,1,140,'428177245','0','0',NULL,0,0,'SARI ETİKETLİ MİNİVANDA','2024-08-31 12:51:26.592','2024-09-07 08:07:20.122',NULL),
('5cc7fdee-aea2-4e42-9349-1dfbca5c009e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:14:36.960',1744,'83b080d0-7549-4d18-8037-da9fac2693a3','BELLA MEUBEL','32483436523',NULL,'Belçika',NULL,'2060','SİNT JANSPLEİN 41',2,2,120,'830905881','0','0',NULL,240,1,'MAVİ ETİKETLİ','2025-02-07 11:17:18.439','2025-02-20 09:14:10.976',NULL),
('5cd8c573-9917-4715-b37d-f245fd0bba24','51b55e5b-7487-4d8a-923e-163f04d0b1d9','05e8de78-1979-427a-85ea-4116295aadf5','2025-10-01 07:04:02.180',8059,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','GÜLSEN ERDİNÇ SSH','32483027058',NULL,'Belçika',NULL,'6280','RUE DES ECOLE 12F ACOZ 6280 GERPİNNES',14,2,120,'75052392','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-10-01 07:14:09.220','2025-10-15 08:20:29.969',NULL),
('5d1aaf32-9c7f-40a5-9b1d-76519643d12e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-24 10:55:56.427',10115,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEYHAN ECE','0764008173','0789779737','İsviçre','AM RAİNBACH 34','6340','AM RAİNBACH 34',0,6.5,140,'644104537','0','0',NULL,3150,0,NULL,'2025-09-24 11:02:51.866','2025-10-27 13:39:04.728',NULL),
('5d1c34cf-e5dc-426c-87f8-ac812da1f3cd','d074816b-78fd-4378-91c0-3835eba28f44','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-19 12:40:37.053',5352,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','MEHMET AKDAĞ','4915124486565',NULL,'Almanya','NÜRNBERG','90451',' KOLBERGER STRABE 17 90451 NÜRNBERG',33,2.5,110,'614666366','0','0',NULL,1300,1,'TURUNCU ETİKET','2025-09-19 12:46:11.017','2025-10-15 08:12:57.977',NULL),
('5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:02:11.632',3606,'47880255-08ee-4e99-940b-16038e07de55','EMEL TEKİN','4915120786621','4915156084631','Almanya','WEİTER STADT','64331','FELDBERG STRABE 10',5,2,100,'478180584','0','0',NULL,600,1,'SARI ETİKETLİ','2024-03-30 09:05:05.109','2024-04-11 06:21:34.868',NULL),
('5d3f012b-7248-479f-97ec-c01599311f5c','ab532050-8a54-4cb4-9e27-59229ab24a9b','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-20 09:26:48.949',10097,'338e8c09-4ca5-4617-bfc1-a0692646d475','MARİANE SARKİS','33769768648','33651143736','Fransa','SIENNE','92200','5 RUE DU GENERAL LANREZAC NEUİLLY SUR SİENNE',10,3.5,120,'338426911','0','0',NULL,350,1,'MOR ETİKETLİ','2025-02-20 09:30:33.660','2025-03-23 16:15:49.033',NULL),
('5d4df7c0-7f38-4095-847c-3996a99d1a51','c21cdd02-4af2-4b32-bc87-c70a576c3a99','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-14 16:20:43.185',1577,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','EMİNE MERİÇ','4915147077400','4915147275146','Almanya','BREİDENBACH','35236','HAUSBERGWEG 20 35236 BREİDENBACH ALMANYA',19,2.5,110,'51557557','0','0',NULL,650,0,'GRİ ETİKET','2025-09-14 16:22:43.389','2025-10-25 08:59:00.066',NULL),
('5d53684d-5145-46de-9a87-24f8f4a4bab1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-04 12:25:56.265',10814,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MUSA EMEK','33609307736',NULL,'Fransa','NOİSY LE SEC','93130','15 RUE PARMENTİER',19,5.5,110,'501786631','0','0',NULL,2500,1,'MAVİ ETİKETLİ','2024-10-04 12:30:27.966','2024-11-04 08:40:33.502',NULL),
('5d656399-d4c2-49fa-a9e7-be2b15a2116d','313cc2e2-5529-49ab-abe5-27b5d390bc5f','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-18 08:31:47.965',4721,'6133a2db-79c4-4372-9338-505db46b1847','ALEYNA KARAKUS','4917645942929','905445745615','Almanya','LANDSHUT','84034','JOHANİSSTRASE 22 \n84034 LANDSHUT ',6,5.5,110,'613787861','0','0',NULL,1325,1,'TURUNCU ETİKET','2025-09-18 08:36:50.646','2025-10-16 08:43:32.985',NULL),
('5d6a4625-934e-46e6-87c9-560c887e2125','5c723cdc-e582-4b00-8271-838c085984c2','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-09 08:14:07.604',4887,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BELGİZAR GEZİCİ','4917620398976',NULL,'Almanya',NULL,'22547','GRÜNSPECHT 8A 22547 HAMBURG ALMANYA',1,4.5,105,'745173444','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-04-09 08:15:38.099','2025-05-14 06:37:48.850',NULL),
('5d9fba6e-ed3a-4844-97a3-b9e244247031','eccfe611-9163-42aa-a1ff-e711af0248e6','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-01-16 10:58:54.317',6099,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ERKAN TAŞDELEN ','49176030609788',NULL,'Almanya',NULL,'95447','LAİMBACHERSTR 47\n95447 BAYREUTH',11,3,110,'221397270','0','0',NULL,1100,1,'MOR ETİKETLİ','2025-01-16 11:00:49.203','2025-02-27 13:37:30.441',NULL),
('5d9fc79f-710b-4e63-8698-fbbd03275cc8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-15 14:33:39.375',4712,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','HALİT SEVER','33605875913',NULL,'Fransa',NULL,'77190','102 İMPASSE DU BOİS DE TESSAN\n77190 DAMMARİE',11,6.5,120,'750363306','0','0',NULL,1100,1,'KIRMIZI ETİKET','2025-09-15 14:36:10.270','2025-10-03 06:54:42.114',NULL),
('5dbeb578-3815-46c4-8be9-34c6782e8dab','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-11 13:23:50.086',10467,'59868701-abe4-4705-a7e6-d91c2c69262e','İBRAHİM TÜRK','4915120350898','491624610120','Almanya',NULL,'63179','RİNG STRASSE 36, 63179 OBERTSHAUSEN ALMANYA',24,2,110,'598479723','0','0',NULL,775,0,'SARI ETİKET','2025-09-11 13:34:35.204','2025-10-25 08:58:53.630',NULL),
('5dc3decb-6410-403a-b949-3324afe3dd6a','5c723cdc-e582-4b00-8271-838c085984c2','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-07 08:59:22.992',4806,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ARZU AKSİ','4917621638496',NULL,'Almanya',NULL,'63755','MERKURSTR 4A 63755 ALMANYA',13,2,105,'745817440','0','0',NULL,1100,1,'YEŞİL ETİKETLİ','2025-05-07 09:18:58.357','2025-05-21 08:16:54.198',NULL),
('5deaab6d-c7b6-40f1-a897-d1f9e87d89ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:12:46.898',7760,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MESUT BEY','00491749246020',NULL,'Almanya',NULL,'51140','ETTORE BUGATTİ STR 41',14,4.5,0,'248720273','0','0',NULL,500,1,'MOR ETİKETLİ','2024-11-02 08:14:51.318','2024-11-09 18:54:22.601',NULL),
('5e10a116-1ecb-4aba-8b9d-2cd155929a91','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 10:42:50.072',6796,'4126da30-ba9b-41b7-be29-865069aa484c','ALPEREN URHANOĞLU','0436781221026','0436605966832','Avusturya','VİYANA','1020','STURGASSE 2',0,1,0,'412366586','0','0',NULL,0,0,'KIRMIZI ETİKETLİ ÖNDE','2024-07-20 10:46:25.543','2024-07-25 21:24:27.039',NULL),
('5e1f8bc1-fbc6-4a17-9981-db921860e228','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-03 07:38:46.092',1892,'e6d4faef-484c-4ce7-992c-906e05fc083e','EBRU TÜRKMEN','0658334161','0664925561','Fransa','THİLLAY','95500','4 AVENUE DES LİLAS',0,7,120,'644495739','0','0',NULL,2000,0,NULL,'2025-10-03 07:47:43.552','2025-10-23 07:09:46.079',NULL),
('5e22a843-fca3-49b3-ab98-7ed84747a703','eccfe611-9163-42aa-a1ff-e711af0248e6','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-10 08:57:52.205',6325,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BİANCA AGOSTİNHO','41788083391',NULL,'İsviçre',NULL,'1305','CHEMİN DES CEDRES 1 , 1305 PENTHALAZ ',0,2,140,'221439268','0','0',NULL,0,0,'Açık mavi etiketli','2025-02-10 09:00:52.967','2025-02-25 17:03:46.052',NULL),
('5e292f87-77b6-4b9a-bc20-8032bd3242f2','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-18 07:01:49.104',5474,'59868701-abe4-4705-a7e6-d91c2c69262e','AYLİN MİYANYEDİ','4917632856382','4917632856382','Almanya',NULL,'45968',NULL,12,2.5,110,'598444930','0','0',NULL,1100,1,'GRİ ETİKETLİ','2025-07-18 07:12:08.173','2025-08-08 12:23:34.911',NULL),
('5e333a30-7986-4a32-be40-ecb91b558892','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','82f1d7bf-2100-48db-928f-49720faaff90','2024-12-25 13:40:44.704',2495,'83b080d0-7549-4d18-8037-da9fac2693a3','YUSUF BEY ','905354141537',NULL,'Almanya',NULL,'07381','JULİUS FURİK STRABE 2',18,4.5,0,'830611219','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-12-25 13:55:18.307','2025-01-28 15:19:34.396',NULL),
('5e55f20c-e2ab-4965-a16e-95af4a5ed4da','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-14 15:15:30.871',6244,'59868701-abe4-4705-a7e6-d91c2c69262e','SEMANUR GÜLER','4917671929975','491634714605','Almanya',NULL,'13357','BELLERMANNSTR 24, 13357 BERLİN ALMANYA',17,5,110,'598781522','0','0',NULL,1700,1,'BEYAZ ETİKETLİ','2025-07-14 15:23:19.216','2025-08-19 19:34:02.155',NULL),
('5e63d250-c815-4013-8092-cf4f9d3d7e2e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:47:18.786',10098,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','HASRET BEYAZIT','4915732123337','','Almanya','MEMMİNGEN','87700','MONSENSTR 7',12,5.5,100,'449196428','0','0',NULL,1100,1,'MAVİ ETİKETLİ','2024-03-30 09:50:31.527','2024-04-15 11:37:26.642',NULL),
('5e70dde1-35e1-403e-bbeb-3153ccf77d80','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-17 07:44:15.584',5504,'e6d4faef-484c-4ce7-992c-906e05fc083e','OLSZWESKİ MATZ','4915733572257','4917662467195','Almanya','GLİENİCKE','16548','BEETHOVENSTR 67, 16548 GLİENİCKE NORDBAHN \nGERMANY',15,2,110,'644658399','0','0',NULL,900,1,'BEJ ETİKETLİ','2025-07-17 07:50:48.000','2025-08-19 19:34:10.946',NULL),
('5e876e3f-c0f8-4334-a426-ff4493e61c54','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-13 22:35:19.898',10473,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','MİKAİL ÖZBEK','436769208586',NULL,'Avusturya',NULL,'4600','TRAUNAUSTRASE 31/19-4600 WELS',11,5,120,'675749315','5','5','Çok memnun olduk,tam saatinde geldi mobilyalarimiz.Tesekkürler.',2000,1,'PEMBE ETİKET','2025-08-13 22:47:02.417','2025-08-30 19:22:28.354',NULL),
('5e8ddd62-748e-4719-9bad-9f588fc2c7d3','30b3fa45-4362-4bef-b611-4d4d2a3c84e3','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-13 13:55:40.723',4960,'9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','ERCAN DİKME','491728678117',NULL,'Almanya','STUTTGART','70191','NORDBAHNHOFSTRASSE 35 70191',23,4.5,110,'959658567','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-10-13 13:59:14.613','2025-10-22 13:06:44.530',NULL),
('5e9395d5-2dff-41a1-b7d1-d080344fbc2b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-02 08:01:25.225',10735,'dea91080-5383-4085-af2e-7eace2c64224','VAHİT FISTIKÇI','4916097966652','4915118520349','Almanya',NULL,'44649','UNSER FRİTZ STR.29',13,4.5,100,'910950688','0','0',NULL,500,1,'KIRMIZI ETİKETLİ','2024-12-02 08:04:19.340','2024-12-18 16:37:07.052',NULL),
('5eb60d14-02a3-405b-84ef-2be197850002','173956a2-c232-495a-b036-4a6a36c073e2','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-10 08:18:24.275',2763,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MEHMET ÇANKAYA','33644892137','33644892137','Fransa',NULL,'13110','93. AVENUE MAURİCE THOREZ. 13110. PORT-DE-BOUC.',2,6,130,'449136824','0','0',NULL,1900,1,'SARI ETİKETLİ','2025-01-10 08:22:32.375','2025-01-19 14:52:15.736',NULL),
('5eb9d56a-9ea5-4713-886f-df1ddcba4c69','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:14:08.376',3368,'47880255-08ee-4e99-940b-16038e07de55','ZEYNEP ALEYNA ÖZBEY','33769187229','','Fransa','ORLEANS','45140','21 RUE DELA PRAİRİE',11,3.5,110,'478101302','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-08-07 14:16:11.617','2024-08-16 19:22:09.872',NULL),
('5ee001c6-de4d-4cf2-89fa-9fd9588b6576','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:46:47.823',5967,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÇAĞLA YILMAZ','4917623140674','4917623527687','Almanya','MÜNCHEN','81373','AYSEL ASLAN MÜŞTERİSİNE GİDERKEN ARANILCAK ORDAN ALCAK',1,1,100,'74594122','0','0',NULL,0,0,'SARI ETİKETLİ','2024-06-08 07:49:08.816','2024-06-20 20:15:30.824',NULL),
('5f1384e7-3101-476b-be1f-bb10a9abe0b3','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-22 07:59:48.592',3433,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ABBES İMEN ','33617108609',NULL,'Fransa',NULL,'71880','38 RUE VİNCENT D INDY 71880',0,3,120,'221407742','0','0',NULL,1100,0,NULL,'2025-10-22 08:01:25.573','2025-10-27 08:05:58.801',NULL),
('5f1e05ef-a967-45d1-a984-4cd1f018c261','eccfe611-9163-42aa-a1ff-e711af0248e6','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-24 08:05:59.416',5254,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED ÇETİN','33787870311',NULL,'Fransa',NULL,'74600','19 RUE DU CHAMP DE LA TAİLLEE 74600 ANNECY',7,2.5,130,'221234413','0','0',NULL,1150,1,'BEYAZ ETİKETLİ','2025-03-24 08:10:44.542','2025-04-25 09:52:53.207',NULL),
('5f54cf54-9e84-4494-a263-8967ec9803e2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-04 08:02:48.538',3197,'dea91080-5383-4085-af2e-7eace2c64224','NECİP DELİPOYRAZ ','4915733902660','49911330027','Almanya','NUNBERG','90408','RİEMENSCHNEİDER STR 7',1,4.5,0,'910943161','5','5','Super\n',975,1,'SARI ETİKETLİ ','2024-10-04 08:06:23.500','2024-10-23 16:38:04.049',NULL),
('5f57a0f7-857f-4662-b47b-242a72bd52b3','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3c847602-8428-494a-84ce-0c9c9392db1a','2025-07-03 09:24:16.060',3419,'e6d4faef-484c-4ce7-992c-906e05fc083e','GAMZE KOCAMAZ','01705204782','01733972547','Almanya','WİLDFLECKEN','97772','SONNENSTRASSE 88\n97772 WİLDFLECKEN',1,2,110,'644682734','0','0',NULL,0,0,'MOR ETİKETLİ','2025-07-03 09:25:05.882','2025-07-24 09:43:16.475',NULL),
('5f656441-40ec-47a2-a5a0-c7819b0df651','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-08 09:18:30.305',1142,'3c7190b6-f6ee-4275-8958-d7af952132ab','ELİSABETH BRUCH','4917621666906','4917621666906','Almanya','GEMMRİGHEİM','74376','AM HOLZPLATZ 9 74376 GEMMRİGHEİM ALMANYA',25,2,110,'371807983','0','0',NULL,300,1,'BEJ ETİKETLİ','2025-05-08 09:21:43.618','2025-05-20 06:24:03.531',NULL),
('5f770c96-052e-4429-8137-dee2c4ed5bd9','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-01-07 09:47:19.088',6143,'dea91080-5383-4085-af2e-7eace2c64224','HDKSKJC','499675646464',NULL,'Almanya',NULL,'54322','DHJDKJDKDE',0,1,110,'910841021','0','0',NULL,1200,0,NULL,'2025-01-07 09:48:45.963','2025-01-07 09:52:59.410','2025-01-07 09:52:59.413'),
('5f8e022a-f026-498f-bbc5-f04ab0863363','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-07-01 12:51:28.920',6542,'6133a2db-79c4-4372-9338-505db46b1847','TALA KURAEZAN','41791596633','41765898797','İsviçre','GALLEN','9014','WOLFGANGSTRASSE 88A  9014 ST. GALLEN',0,2,140,'613137842','0','0',NULL,2000,0,'2000 CHF alınacaktır.\n21-26 arası teslim edilecektir.','2025-07-01 12:59:13.162','2025-07-06 13:15:16.287','2025-07-06 13:15:16.286'),
('5f9f6345-4b94-4cd2-9416-610df7cd46da','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-26 11:43:20.763',5837,'59868701-abe4-4705-a7e6-d91c2c69262e','MAHMUD BİRÜKOF','4915780460011','4915738807619','Almanya',NULL,'90762','NÜRNBERGER STRASSE 4, FÜRTH, 90762 ALMANYA',34,2,110,'598754271','0','0',NULL,350,1,'GRİ ETİKET','2025-09-26 11:45:11.322','2025-10-15 08:12:51.780',NULL),
('5fa14283-df86-4b3d-ad0f-9b686ba6117b','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-09 09:27:39.248',3796,'59868701-abe4-4705-a7e6-d91c2c69262e','FATMA ERDEM','491712300528','491639179546','Almanya',NULL,'70806','STAMMHEİMER STR. 90, 70806 KORNWESTHERM ALMANYA',28,3,110,'598161990','0','0',NULL,740,1,'KIRMIZI ETİKETLİ','2025-07-09 09:30:02.050','2025-07-22 13:23:30.418',NULL),
('5fc6171b-505c-485c-b075-49cfe5dd62fd','5c723cdc-e582-4b00-8271-838c085984c2','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-15 09:52:10.490',7634,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MERYEM BULAK ','4915778860967',NULL,'Almanya',NULL,'42289','WERLE STR 15 42289 WUPPERTAL ALMANYA',14,2.5,105,'745374253','5','5','Allah razi olsun ',550,1,'AÇIK KAHVE ETİKET ','2025-09-15 09:52:36.807','2025-09-30 19:00:49.543',NULL),
('5fcfabaf-abfd-496b-84fd-6ef04452b85c','8184d19c-0d1f-4439-978c-7a3364e54967','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-15 12:22:39.218',8949,'b0c1192a-7d38-4b69-a901-778f65a98b9d','HÜLYA ŞENEL ','491725951880',NULL,'Almanya','MÜNDEN ','34346',' VECKERHÄGERSTRASSE 12\n 34346 HANN MÜNDEN',15,8.5,110,'011195834','0','0',NULL,2500,1,'KIRMIZI ETİKETLİ','2025-08-15 12:25:00.076','2025-09-24 14:32:31.466',NULL),
('5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-09-08 07:53:42.913',1979,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERAY SÖNMEZAY','31686056813','31611167262','Hollanda',NULL,'2671','PALESTİNA 12 2671 XJ NOLDWIJK HOLLANDA ',0,10,120,'745189997','0','0',NULL,4500,0,'ARALIK 15 TESLİM ','2025-09-08 07:54:29.216','2025-10-09 12:03:56.686',NULL),
('5fe39fcd-c517-4068-9edd-0a87a35acb0f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-30 06:38:28.686',7080,'e6d4faef-484c-4ce7-992c-906e05fc083e','REİNAS HAİDARİ SSH','31620244050','31615081540','Hollanda','ENSCHEDE','7533 ZH','MORSESTRAAT 12',1,2,120,'644490677','5','5','Good',0,0,'KIRMIZI ETİKETLİ','2025-05-30 06:44:56.671','2025-06-25 08:26:51.873',NULL),
('5fe73200-216d-4572-a46e-fc6418650bf7','05135cd5-2d33-4363-b51e-c9b83a94094d','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-06-05 14:19:27.352',7560,'4126da30-ba9b-41b7-be29-865069aa484c','NADİR KURUKOL','3454363464652424',NULL,'Almanya',NULL,'11111111111',NULL,15,2,0,'412217714','0','0',NULL,0,0,NULL,'2025-06-05 14:19:59.355','2025-06-17 16:02:39.682',NULL),
('5ff8b69d-3f0b-4991-8c5b-8c9973d39429','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-20 11:43:57.148',10213,'7c55a7a8-40fe-4ef7-90df-f477ca185e1e','BUSE HOME','491726507208',NULL,'Almanya',NULL,'45879','GELSENKİRCHEN',4,10,0,'755919446','0','0',NULL,1100,1,'SARI ETİKETLİ','2024-12-20 12:06:19.510','2025-01-07 17:28:32.755',NULL),
('60088545-2d2c-4c1d-8f5c-07351840a9a5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e10c5155-6fe5-4df2-8f96-eddaea94db05','2024-07-29 09:16:19.008',8121,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','MUSA KIZILASLANOĞLU','33652528141','','Fransa','','','',0,23,110,'655307091','0','0',NULL,2300,1,'MAVİ ETİKETLİ','2024-07-29 10:12:47.947','2024-09-03 15:32:53.774',NULL),
('603049b7-6bd8-4aed-a159-4c5f400607b7','1764a07b-eb47-4578-b6cd-f3c0d0e743be','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-06-25 07:46:05.830',5852,'47880255-08ee-4e99-940b-16038e07de55','OKAY DERİNKUYU','41764103638','4915231405303','İsviçre','MURİ','5630','BACHMATTEN7 5630 MURİ İSVİÇRE',3,7,140,'478984010','0','0',NULL,3500,1,'KREM ETİKET','2025-06-25 07:51:02.426','2025-09-01 11:35:05.840',NULL),
('6042b337-8e8a-4695-ae65-4e5f031a1b0f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 12:52:46.503',7330,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','004917663208908','','Almanya','ERFURT','99091','PRAGER STRABE 4',7,1,0,'248573438','0','0',NULL,550,1,'KIRMIZI ETİKETLİ','2024-09-09 12:54:28.018','2024-09-17 14:38:37.099',NULL),
('60678b24-7d3d-4c4a-88dd-f65cb84dcdf9','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-20 13:31:40.807',9689,'4126da30-ba9b-41b7-be29-865069aa484c','FUNDA HANIM','31681041112',NULL,'Hollanda',NULL,'2809','RAMMAZEYNHOEK 28',0,6,0,'412149383','0','0',NULL,2750,1,'PEMBE ETİKETLİ','2025-03-20 13:40:47.443','2025-04-09 12:54:30.745',NULL),
('6127835e-b380-4636-8fc5-dc785fc26f6a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:30:43.523',3866,'b734c482-3c00-4897-ad35-bc358cd02d56','YAVUZ TEK','','','Fransa','OYONNA','01100','17 RUE LAVOİSER',6,4,96,'734391005','0','0',NULL,645,1,'MOR ETİKETLİ','2024-03-16 08:33:20.137','2024-03-26 16:09:00.986',NULL),
('613669b4-092d-41a5-971c-271dc4ad0bf1','8184d19c-0d1f-4439-978c-7a3364e54967','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-22 09:51:39.584',1591,'b0c1192a-7d38-4b69-a901-778f65a98b9d','YEŞİM AKGÜN ','4917662469694',NULL,'Almanya','ROHRHEİM',' 64579',' LORSCHERSTRASSE 21\n 64579 KLEİN \nROHRHEİM',29,3,110,'011716616','0','0',NULL,1000,1,'GRİ ETİKET ','2025-09-22 09:55:16.845','2025-10-17 06:15:22.782',NULL),
('61630d35-0a19-4513-83ef-94b891cf12e5','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 07:40:41.316',9430,'3c7190b6-f6ee-4275-8958-d7af952132ab','NESLİHAN DEMİR','4917630550743','4917630550743','Almanya','SAARLAND','66424','DANZİGER STRABE 6 66424 HOMBURG SAAR SAARLAND ALMANYA',8,3,110,'371586742','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-04-24 07:44:06.310','2025-05-21 19:38:07.427',NULL),
('61814c87-b908-4fb2-ba7f-eae762fc1882','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 10:40:44.698',10290,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ŞEYDA ŞAHİN','436609197422','','Avusturya','VİYANA','2700','',2,1,120,'9824380','0','0',NULL,2350,1,'YEŞİL ETİKETLİ ÖNDE','2024-07-20 10:42:26.356','2024-07-25 21:24:38.399',NULL),
('6185b161-cfc2-4a8a-a2f2-c2e05c20c446','9c2e84a6-e19f-46ed-9dbb-4745ed235475','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-10 14:29:22.000',7914,'7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','ŞENEL KURU','4915206358147',NULL,'Almanya',NULL,'85057','RİCHARD WAYNER STRABE 24 85057',26,6,110,'776312220','0','0',NULL,770,0,'SARI ETİKET ','2025-10-02 14:31:28.091','2025-10-22 13:06:42.033',NULL),
('61865f3a-d280-4338-ba54-fe634b230fbd','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-11 07:41:03.385',2960,'59868701-abe4-4705-a7e6-d91c2c69262e','MEHMET ULUIŞIK','4917661739027','4917656772155','Almanya',NULL,'44145','TİEFE STRABE 45, 44145 DORTMUND ALMANYA',23,3,110,'598614826','5','5','Çok saygılı ve olumlu işiniz için teşekkür ederiz ',745,1,'AÇIK KAHVE ETİKET','2025-08-11 07:52:47.846','2025-09-04 16:32:59.796',NULL),
('61867c22-c86f-44a9-a203-2b810c74f596','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-06 09:02:57.828',9953,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','İBRAHİM AYIK ','33608517581',NULL,'Fransa',NULL,'67600','4 RUE DU LİEUTENANT',17,3.5,120,'449700444','0','0',NULL,1450,1,'MOR ETİKETLİ','2025-03-06 09:06:14.683','2025-03-22 07:37:04.678',NULL),
('6189b41d-2a4c-42b9-b146-5fe82bdc676b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 13:22:52.200',4389,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEDA ERSÖZ','4917662543723','4917621696450','Almanya','BREMEN','28201','NİEDERSACHSENDAMM 20',1,2,110,'644823609','0','0',NULL,620,1,'PEMBE ETİKETLİ','2025-02-24 13:28:22.335','2025-03-21 17:17:29.974',NULL),
('61c1c529-aae3-45a2-af9a-9196a653fa94','804a2f53-7a26-4e8e-a505-7fc107953b50','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-01 09:11:44.886',2172,'a42d8839-caef-4422-888f-cbfdf4188c5b','ALİ GÜLEÇ','491755862725',NULL,'Almanya',NULL,'30916','MOZARTSTRASSE 5, 30916 ISERNHAGENAL',14,2,110,'428470171','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-08-01 09:15:23.063','2025-08-20 12:01:46.079',NULL),
('61c62b54-9519-46bc-a518-390b8b72c6dc','56e5168e-cbcf-408d-8798-5560be5c7235','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-25 11:55:46.154',2564,'7bb6a552-e940-4456-bfc3-50a13013996c','KADER YILDIZ','491733758651',NULL,'Almanya','RHEİNE ','48432','KARWEG 79\n 48432 RHEİNE \nALMANYA',9,5.5,110,'765600734','0','0',NULL,750,1,'KOYU YEŞİL ETİKETLİ','2025-08-25 11:58:01.399','2025-09-25 06:48:25.771',NULL),
('61dd2e23-34d6-44a9-9516-6e9c953b281e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:10:33.321',2005,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','HASSAN ABDULBARİ','33603603944','','Fransa','','84800','465 AVANUE NAPOLCON BANAPORTE ',13,4.5,110,'44937818','0','0',NULL,1050,1,'MAVİ ETİKETLİ','2024-03-16 08:14:33.445','2024-03-29 17:57:40.500',NULL),
('61f09758-c694-460b-870c-7202dd8cbfcc','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-01-29 07:35:38.709',10905,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','YUNUS BEY','33769535449','33769535449','Fransa','DANJOUTİN','90400','9 RUE DU GÉNÉRAL LECLERC 90400 DANJOUTIN BELFORT FRANCE',6,4,120,'127504677','0','0',NULL,2000,1,'Mor etiketli','2025-01-29 07:57:43.495','2025-02-24 20:30:58.481',NULL),
('61fc8ab4-3763-4ab8-98a5-4b8228ba92d0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:50:30.971',4845,'47880255-08ee-4e99-940b-16038e07de55','ESMA YILDIRIM','4915730766491','491741681168','Almanya','DÜREN','52351','BERLİNER STR. 52',9,1,100,'478227571','5','5','Memnun oldum',1300,1,'YEŞİL ETİKETLİ','2024-03-23 07:53:08.030','2024-04-03 19:51:57.167',NULL),
('6202e8aa-bce2-4ba0-9ca5-ecd030f659be','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-18 15:56:38.195',3262,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','NFS GRUNDTVİGS','2325643653447647',NULL,'Danimarka','SKANDERBORG','8660','NFS GRUNDTVİGS VEJ 18.1',1,2,0,'655644248','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-02-18 15:59:57.359','2025-02-27 16:38:52.610',NULL),
('6220c77f-761e-462c-a359-ad8d9ba79902','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-29 08:50:19.403',3905,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','VOLKAN ARAZ','436765735090','436765735040','Avusturya','SALZBURG','','LIECHTENSTEINKLAM STRASSE 76',7,3,120,'745553590','0','0',NULL,1410,1,'TURUNCU ETİKETLİ','2024-05-29 08:52:13.026','2024-06-10 13:50:20.363',NULL),
('623aef24-2f33-4ceb-b49b-a0d41b424435','394112c3-f977-4fc2-b430-775e79e472ca','ada046d0-c324-498e-b319-06be0a19f72b','2024-11-25 19:43:47.727',8504,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SERKAN DAĞ ','491717001300',NULL,'Almanya',NULL,'67547','WORMS \nGAUSTR.64',15,1,140,'982432822','0','0',NULL,600,1,'PEMBE ETİKETLİ','2024-11-25 19:45:38.692','2024-12-18 16:36:57.903',NULL),
('6245482e-e4e9-4ec3-a033-d261753e3a36','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-16 07:56:15.650',3823,'47880255-08ee-4e99-940b-16038e07de55','KEMAL ETKER ','33668485580','33660990222','Fransa','LYON','69000','78 AVENUE JEAN MACE  DECİNES CHARPİEU LYON FRANSA',0,2,130,'47876427','0','0',NULL,0,0,'MOR ETİKETLİ','2025-04-16 08:14:00.303','2025-05-27 07:54:25.413',NULL),
('62738f81-bb34-4a26-b713-b7972c5a1fb5','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-07-18 12:32:06.228',1737,'b0c1192a-7d38-4b69-a901-778f65a98b9d','YASEMİN ','54524665366','05539740010','Almanya',NULL,'1111111','WOBILIMODA MALL HUZUR MH. MOBİLYA VADİ CD. NO:2 / 92, İNEGOL 16400, INEGOL 16400',0,2,110,'011894235','0','0',NULL,3000,0,NULL,'2025-07-18 12:34:21.757','2025-07-18 12:52:07.670','2025-07-18 12:52:07.670'),
('62bf8206-794c-42ff-b904-4820a312f32b','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-23 12:19:18.996',10859,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İSMAİL AYTEKİN','4915208516730','4917631467751','Almanya','HAMBURG','22767','  HOSTEN STR 5822767 HAMBURG',0,2,110,'614443513','0','0',NULL,1100,0,NULL,'2025-10-23 12:43:21.180','2025-10-27 12:33:45.046',NULL),
('62c72b38-75cc-4808-b1d5-7296d0000146','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:26:17.180',3789,'c2d4ce84-536d-4816-837f-7abbf6a7e061','KHALED AHMAD','4915731155565','','Almanya','ESSEN','45145','DRESDENER STR 28',9,7.5,0,'248890689','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-06-08 07:27:08.081','2024-06-20 20:16:43.258',NULL),
('62caace2-8a1f-47b5-b5ca-7b5356657263','1764a07b-eb47-4578-b6cd-f3c0d0e743be','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-01 07:51:44.231',1287,'47880255-08ee-4e99-940b-16038e07de55','AYŞEGÜL GÖKTEPE','4915161573588','4915161573588','Almanya','WEEİLMÜNSTER','35789','SCHWALBENWEG 14 35789 WEİLMÜNSTER',16,2,105,'478774501','0','0',NULL,0,0,'SSH BEYAZ ETİKETLİ','2025-09-01 07:52:44.840','2025-09-24 06:51:22.785',NULL),
('62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0','394112c3-f977-4fc2-b430-775e79e472ca','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-20 12:40:40.336',10398,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SELAMAWİT ESTİFANOS ','410791552484',NULL,'İsviçre',NULL,'1203',NULL,2,2.5,140,'982495052','0','0',NULL,2250,1,'AÇIK MAVİ ETİKETLİ','2025-01-20 12:42:22.534','2025-02-01 17:38:23.829',NULL),
('62eea1a6-1676-4355-8243-6e04f6d3e284','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-21 08:46:38.698',1237,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','SAHDİYE BİSKİN','4917681094794','491788204430','Almanya',NULL,'64807','DİEBURG ALBERT EİNSTEİN STR',18,2.5,100,'614707427','0','0',NULL,1100,1,'TURUNCU ETİKETLİ','2024-10-21 08:54:02.334','2024-11-09 18:53:44.547',NULL),
('62f77eb8-8c8f-460b-b294-ae8437220ece','d008d786-a02e-404b-b090-54460d9d421e','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-23 10:44:00.248',2137,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','AHMET GÜVEN ','31614272440',NULL,'Hollanda','CAPELLE AD İJSSEL','2908Lj','ESSEBAN 29 ',2,2,120,'657947887','0','0',NULL,300,0,'BEYAZ ETİKET','2025-10-23 10:52:57.886','2025-10-25 08:59:23.353',NULL),
('6325741c-0a89-4585-b7b0-b2afd9a2b77f','8fff5e14-418c-4377-bd83-3a3f81383507','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-05-27 09:02:06.591',10120,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','STEFAN SUCEVİC','436603775115',NULL,'Avusturya','WİEN','1020','OBERE AUGARTEN STR. 12-14/6/5.\n\n1020 WİEN/AUSTRİA',14,2,120,'437133708','1','1','The driver said he would come at 22:30, he came at 23:45. I took all the boxes myself to myself because it took him 30min to rearrange his truck. He did not speak a word English nor any other language than turkish. Never again!',350,1,'(TURUNCU RENK)','2025-05-27 09:10:57.823','2025-06-28 17:33:36.422',NULL),
('633d745b-6334-4fbc-906f-28ed4e0c5168','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-13 08:12:13.765',8813,'47880255-08ee-4e99-940b-16038e07de55','DEMET DEDE','4917632868288',NULL,'Almanya','MAİNZ','55118','JOSEFSTRASSE 42  MAİNZ 55118',16,6.5,100,'478409459','0','0',NULL,3300,1,'TURUNCU ETİKETLİ','2024-12-13 08:41:37.532','2025-01-06 20:08:12.782',NULL),
('63565a3e-11e9-4738-9a52-f03824d05dcc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:34:47.672',4913,'0279a6d3-79de-4470-9728-f1654e3ba0b6','ERKAM CAMİ','491787074737','','Almanya','BERGKAMEN','59192','ERNST SCHERİNG STRABE',7,1,0,'027547681','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-09-05 15:42:48.330','2024-09-12 10:54:41.145',NULL),
('635836b6-8a00-4f08-aa34-ecc10b10490c','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-13 13:42:55.669',5695,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','HARUN ERCAN','4369911307024','4369911307024','Avusturya','OBERWALTERSDORF','2522','GUSTAV PREINERSTR. 24, 2522 OBERWALTERSDORF',9,12,120,'127847689','0','0',NULL,1500,1,'PEMBE ETİKETLİ','2025-05-13 13:52:45.009','2025-05-23 14:07:43.162',NULL),
('6365708e-a492-4502-8739-ff5d98b2e2c4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-02 11:58:30.176',6977,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','mukungu kulemfuka','33605930464','','Fransa','ECHİRALLES','38130','9 RUE DE VASSİEUSE',6,1,110,'449205900','0','0',NULL,1440,1,'SARI ETİKETLİ','2024-07-02 12:00:15.624','2024-07-29 13:29:48.181',NULL),
('63733cef-e274-4dc6-b6fb-08178c1dd9ff','1764a07b-eb47-4578-b6cd-f3c0d0e743be','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-30 08:49:35.512',6780,'47880255-08ee-4e99-940b-16038e07de55','YUSUF ASLANYÜREK','491729060799','491729060799','Almanya','KÖLN','51063','GROUNER STRABE 286  51063 KÖLN',16,2,105,'478746196','0','0',NULL,385,1,'TURUNCU ETİKETLİ','2025-04-30 08:50:58.086','2025-05-12 09:08:00.216',NULL),
('63812a5c-02ef-4661-96d7-348a4af6ef8a','804a2f53-7a26-4e8e-a505-7fc107953b50','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-16 15:24:59.331',3418,'a42d8839-caef-4422-888f-cbfdf4188c5b','SEBAHAT KOÇAK','33782338105','0782338105','Fransa',NULL,'73200','186 ROUTE DE LA RACHY 73200 GİLLY SUR İSERE FRANCE',8,7,130,'428761245','0','0',NULL,3200,1,'MOR ETİKETLİ','2025-07-16 15:29:30.457','2025-08-04 06:40:09.551',NULL),
('63bcaab6-1f45-4304-b9b2-e21172f2f74b','eccfe611-9163-42aa-a1ff-e711af0248e6','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-27 11:59:40.265',8726,'22a1dbd6-475c-4d4b-bb13-f459e3029634','KAYHAN BOZKURT','33651014066',NULL,'Fransa',NULL,'67206','4 RUE DE STRASBURG 67206 MİTTELHAUSBERGEN',3,2.5,120,'221692379','0','0',NULL,900,1,'SARI ETİKET ','2025-08-27 12:02:16.741','2025-09-20 19:00:13.570',NULL),
('63c72f92-c955-4221-9d99-5fc007d4c399','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-22 07:42:04.937',10424,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','RÜVEYDA ŞAHİN','41765845886','41765845886','İsviçre','WİNTERTHUR',' 119A, 8404',' WALLRÜTİ STR. 119A, 8404 WİNTERTHUR İSVİÇRE',3,4.5,140,'127150146','0','0',NULL,1220,1,'KIRMIZI ETİKETLİ','2025-05-22 07:47:12.470','2025-06-05 16:39:13.518',NULL),
('63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-09-08 08:10:55.759',10351,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERSİN KILIÇ ','41789052907','41788381982','İsviçre',NULL,'9492','ESSANERSTRASSE 154 9492 ESCHEN LIECHTENSEN SCHWEIZ İSVİÇRE ',0,2,140,'745505506','0','0',NULL,2270,0,NULL,'2025-09-08 08:11:30.385','2025-10-16 13:39:59.478',NULL),
('63fb504d-4814-482e-9dca-ed3716a960e5','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-04 16:26:10.649',8806,'47880255-08ee-4e99-940b-16038e07de55','GÜL KAYAS ARSLANMUGÜL','4917664852334','4917664852334','Almanya','NEUENRADE','58809','WİSER WEG 34/5 NEUENRADE 58809 ALMANYA',13,2,105,'478188178','0','0',NULL,1600,1,'MAVİ ETİKETLİ','2025-02-04 16:27:54.876','2025-02-18 17:24:17.678',NULL),
('641b07ae-f1a1-4ba6-b157-d3d15b50b73d','804a2f53-7a26-4e8e-a505-7fc107953b50','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-10 11:19:10.561',2136,'a42d8839-caef-4422-888f-cbfdf4188c5b','GÖNÜL GİDER','4915168460456','4915228033800','Almanya',NULL,'74193','OSTEND STRASSE 47 74193 SCHWAİGERN\n\n',24,2.5,110,'428671806','5','5','Çok iyi,tesekkurler',1560,1,'GRİ ETİKETLİ','2025-09-10 11:22:30.182','2025-09-23 16:35:22.763',NULL),
('643316ee-78c8-474d-b4d1-843fadca34cb','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-22 09:05:59.833',3730,'3c7190b6-f6ee-4275-8958-d7af952132ab','SVENJA KEMPEN','4917672267256','4917672267256','Almanya','GLADBACH','51427','LUSTHEİDE 91 51427 BERGİSCH GLADBACH ALMANYA',0,3.5,110,'3718332','0','0',NULL,725,0,'köşe takımı + sehpa. 3,5 metreküp','2025-10-22 09:07:44.587','2025-10-22 11:24:42.733',NULL),
('6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 13:49:06.481',4723,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AYŞE ACAR','32470420226',NULL,'Belçika','LİEGE','4000','RUE SAİNTE WALBURGE 368',16,2,110,'221639055','0','0',NULL,600,1,'GRİ ETİKETLİ','2024-11-21 13:50:34.617','2024-12-04 13:09:33.506',NULL),
('649029c3-dc44-4148-9d1c-afdd4ca73418','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-06 11:15:29.603',3457,'fabe2c23-b5a5-4123-a962-af519ac31d3b','HOMAM AL FAJJARİ','1111111111',NULL,'Belçika',NULL,'1800','MECHELSESTEENWEG 89 , 1800 VİLVOORE ',9,2,0,'223575392','0','0',NULL,0,0,'GRİ ETİKET ','2025-10-06 11:18:54.626','2025-10-22 13:06:59.842',NULL),
('64b8a1ba-85de-4554-a334-d674f0951e0e','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-01 10:15:42.281',4785,'a42d8839-caef-4422-888f-cbfdf4188c5b','TÜLAY AYDIN','491747042790','4915777901877','Almanya',NULL,'52351 ','/ / 52351 DÜREN\n\n',16,2,110,'428604775','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-10-01 10:17:50.914','2025-10-17 20:57:08.776',NULL),
('64d8448e-d8f7-4534-941f-050bce796337','8184d19c-0d1f-4439-978c-7a3364e54967','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-17 13:14:22.470',9428,'b0c1192a-7d38-4b69-a901-778f65a98b9d','FERHAT SANUÇ  SSH','31629103799',NULL,'Hollanda','MERCURİUSLAAN','174','HOLLANDA EİNDHOVEN \nMERCURİUSLAAN 174',0,2,120,'011131883','0','0',NULL,0,0,NULL,'2025-09-17 13:16:57.523','2025-10-02 13:31:44.360',NULL),
('64f79831-49d1-48f5-a6e6-698737009565','313cc2e2-5529-49ab-abe5-27b5d390bc5f','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-02 12:33:09.763',8373,'6133a2db-79c4-4372-9338-505db46b1847','LAURA SCHMİTT','491723218858','4915112325829','Almanya','SAARLOUİS','66740','SCHWİMMBADSTR. 16, 66740 SAARLOUİS\n',15,2,110,'613721320','0','0',NULL,500,0,'YEŞİL ETİKET ','2025-10-02 12:36:30.861','2025-10-22 13:06:53.604',NULL),
('6507cc31-ed5f-4bae-990e-d4dcf85c4840','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-02-06 07:18:25.986',2743,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','NİHAL ÖZER','491632503429','491632503429','Almanya','WESTFALEN','45139','SİLBERSTRASSE 8 45139 ESSEN NORDRHEİN-WESTFALEN ALMANYA',0,2,110,'127745125','0','0',NULL,0,0,NULL,'2025-02-06 07:25:53.821','2025-02-13 12:13:40.169','2025-02-13 12:13:40.172'),
('65292c0d-b0ed-44c8-838b-2022b2fd13ac','5c723cdc-e582-4b00-8271-838c085984c2','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-04 12:07:58.374',1082,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYŞE SÖNMEZ','33695430000','33651254936','Fransa',NULL,'42160','29 AVENUE DE MONTBRISON 42160 ANDREZIEUX BOUTHEON FRANSA',0,2,130,'745206126','0','0',NULL,795,1,'SARI ETİKETLİ','2025-03-04 12:10:10.701','2025-03-17 14:53:44.076',NULL),
('652b8f3e-d7dd-479b-aacc-14b9a45a626e','3b8909c4-8a78-46c3-93e4-9259d59b50be','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-02-11 08:34:42.614',8369,'1b51c5f7-649a-424f-ba17-cc37d6298af9','NEVZAT HACIOĞLU','49485827454',NULL,'Belçika',NULL,'3581','ZUİDSTRAAT 104 3581 BERİNGEN MOUTERİJSTRAAT LİMBURG',11,10,0,'15153034','0','0',NULL,200,1,'KIRMIZI ETİKETLİ','2025-02-11 08:38:37.573','2025-05-02 06:58:24.644',NULL),
('6555f7e8-59ef-4ebf-ab04-5e7fab746f3a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-02-06 11:52:25.537',8457,'47880255-08ee-4e99-940b-16038e07de55','GÜL-MURAT AVCU','41762077419','41782110649','İsviçre','FONS','2300','RUE DEBİAFOND1  2300 LA CHAUX DE FONDS',4,2,140,'478449021','0','0',NULL,5950,1,'SARI ETİKETLİ','2025-02-06 12:00:20.706','2025-03-15 15:59:26.083',NULL),
('65c0e929-3375-4985-8c4f-62681ad7745f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 21:18:48.122',7942,'d3157cbd-9f22-499b-b371-4eff6e509b92','Ahmet özçiçek','436767005361','','Avusturya','Tirol','6130','Spornberger strabe 4',2,1,120,'31515833','0','0',NULL,0,0,'Sarı etiketli','2024-04-07 21:20:18.680','2024-05-02 19:56:42.327',NULL),
('65cd44ca-893b-4894-b062-6cfd32e95228','ab532050-8a54-4cb4-9e27-59229ab24a9b','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-25 20:55:29.790',10498,'338e8c09-4ca5-4617-bfc1-a0692646d475','ZEKERİYA SOYER','49017662030920','4917631174423','Almanya',NULL,'73734','HOHENHEİMER STR. 32, 73734 ESSLİNGEN AM NECKAR',21,2,110,'338878009','5','5','Teşekkür ederim  bilgilendirme ve hizmetkar güzel elinize emeğinize sağlık ',0,0,'KIRMIZI ETİKETLİ','2025-04-25 20:58:20.786','2025-05-20 17:19:49.028',NULL),
('65e0ebe7-0bff-4307-92ba-96c874e28cd8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-11 12:28:05.257',4737,'c904b27b-bbae-4aa4-8662-a377929d7338','GÜRKAN DAĞ','905348867917',NULL,'İsviçre',NULL,'1530','RUE DES DEUX TOURS 1',11,2,140,'904803845','0','0',NULL,100,1,'GRİ ETİKETLİ','2025-04-11 12:30:28.104','2025-04-24 06:04:58.668',NULL),
('65fd407c-2335-4e5b-a51c-a9a8124139b8','bad42655-8495-4cb1-a41d-68ec2bde3c99','9e06441c-1bec-4f47-847f-83bea94f8369','2025-09-04 10:03:29.739',10372,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','ALMİRA','905423036885',NULL,'Fransa',NULL,'06410','2 AVENUE DES ALOUETTES ALPES MARİTİMES 06410 BİOT FRANCE',0,3,130,'920610594','0','0',NULL,250,1,'1 palet ','2025-09-04 10:13:30.160','2025-09-20 18:55:42.175',NULL),
('661d9a27-3879-4952-bd6b-5e396f437e8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','54ef8984-2e3b-495d-97cf-d335170f5365','2025-01-03 09:09:55.322',2363,'a42d8839-caef-4422-888f-cbfdf4188c5b','ŞÜKRÜ AKSOY','491634257044',NULL,'Almanya',NULL,'86165',NULL,9,1,0,'428490126','1','5','Cargo şirketi olarak organizasyonuz çok kotü \nBenim gelen esyalarimdan bir tanesi hasarlı yüklemenizden kaynaklı  tir şoförü çok iyiydi ama ',0,0,'2 SANDALYE','2025-01-03 09:10:31.151','2025-01-08 20:41:15.787',NULL),
('661ddd47-5b72-400b-be6c-10d5c422f4c3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 15:03:35.153',8287,'47880255-08ee-4e99-940b-16038e07de55','ESRA TEZCAN','3165428312','','Hollanda','NİJMEGEN','6545','DENGEERKAMP ',11,1,100,'478778231','0','0',NULL,1950,1,'AÇIK MAVİ ETİKETLİ','2024-08-20 15:04:53.549','2024-09-02 08:33:22.120',NULL),
('66271fb4-4976-4283-9334-d7a1a3905280','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-01-13 10:31:49.359',4660,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HATİCE KARABAĞCA','4917670344465',NULL,'Almanya',NULL,'35586','WIESEN STR 2/6 35586 HERMANSTEIN WETZLAR ALMANYA ',0,2,105,'745369988','0','0',NULL,900,0,'2 M3 ','2025-01-13 10:35:59.699','2025-01-29 08:10:40.209','2025-01-29 08:10:40.211'),
('664a5f59-18db-48f6-9aab-5a678554d75d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 09:27:35.126',7510,'a42d8839-caef-4422-888f-cbfdf4188c5b','BÜLENT GÜZEL','491723775504','','Almanya','BREMEN','28329','BARDOWİCKSTR 189',5,4.5,100,'428647459','0','0',NULL,500,1,'','2024-03-12 09:31:12.315','2024-03-22 10:14:05.551',NULL),
('666fc04e-4f35-40cf-9568-33fe5de5cfbb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-23 12:19:13.929',1944,'0dae8190-b900-4826-9171-b2d74a2538b0','SİBEL SAYDAM','4917622304263',NULL,'Almanya',NULL,'47445','ELBESTRABE 38 ',13,2,110,'08159662','0','0',NULL,700,1,'YEŞİL ETİKETLİ','2025-02-23 12:20:44.456','2025-03-06 10:33:42.242',NULL),
('66702713-08d3-4a3a-bbf4-b641e0b48916','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-25 09:51:51.097',9893,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MEHMET BATMAZ ','491726428404',NULL,'Almanya',NULL,'66450','KOLPİNG STRASSE 55',14,2,110,'465194627','0','0',NULL,0,0,'BEJ ETİKETLİ','2025-03-25 09:53:04.352','2025-04-05 20:39:06.079',NULL),
('668dd554-9513-4da3-8f96-649ae0505732','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-09-20 07:07:49.167',1350,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MURAT BAŞAR','01626380921','01733743692','Almanya','BAUNATAL','34225','AM BAUNSBERG 3\n34225 BAUNATAL\nDEUTSCHLAND',0,3,110,'50552381','0','0',NULL,800,0,NULL,'2025-09-20 07:09:25.025','2025-10-09 13:56:55.397',NULL),
('670e78fe-1680-439d-9f10-3a16b0fdf541','56323a39-e192-4016-a254-840950ca2e27','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-03 09:09:06.574',10370,'7f34d75e-284a-42ac-9cbe-a29174748991','ALAADDİN ŞAHİN','4917670363986','4915906171003','Almanya','LAGE','32791','LİNDENSTR. 19 32791 LAGE ALMANYA',5,4,0,'734460411','0','0',NULL,900,1,'TURUNCU ETİKETLİ','2025-01-03 09:14:18.828','2025-01-31 12:16:08.870',NULL),
('671dde40-cd76-4a65-bfd7-95fafdc3618a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2a352437-950c-42a9-9135-55482cf3977c','2025-08-12 08:15:00.839',7384,'e6d632ec-bc89-4254-b43c-4f7383017076','MERVE HANIM','436604565532',NULL,'Avusturya',NULL,'1230',NULL,17,2,0,'663164000','0','0',NULL,300,1,'1 PALET','2025-08-12 08:15:51.865','2025-08-19 06:02:02.037',NULL),
('674d4f44-d9cc-40a1-9116-92e99f843f11','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-27 14:28:16.642',5817,'4b545346-8acc-42eb-84c7-be96e0cc1e19','HASAN DOYRAN','33664143322','','Fransa','INGWİLLER','67340','2 RUE DOBERSOULTZBACH',1,1,0,'454880224','5','5','👍👍👍👍👍👍👍',0,0,'PEMBE ETİKETLİ','2024-09-27 14:32:17.851','2024-10-08 08:04:53.211',NULL),
('675097a8-4389-4279-b982-311d3a8bcbdb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 11:02:33.387',8090,'73596a75-b658-4249-8c71-b0490654bc8b','KEREM TOGAY','4915147245701',NULL,'Almanya',NULL,'24939','DUBERGER STR 7',10,2,0,'735792949','0','0',NULL,1505,1,'YEŞİL ETİKETLİ','2025-07-08 11:04:09.241','2025-07-25 06:56:26.352',NULL),
('676d9d67-fd03-4351-b823-77157f0e87aa','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-10 14:36:37.819',2550,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEDA TULGAR','491625403964','4915753642605','Almanya','JODİTZER','95030','JODİTZER WEG 54',22,2,110,'644152675','0','0',NULL,800,1,'TRAVERTEN MASA','2025-09-10 14:43:24.606','2025-09-30 18:44:54.780',NULL),
('6786ccb2-517a-4991-b179-6d41d556a614','394112c3-f977-4fc2-b430-775e79e472ca','2a352437-950c-42a9-9135-55482cf3977c','2025-07-30 08:40:52.722',5298,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ADİSA BALANCA ','41782155575',NULL,'İsviçre',NULL,'8180',NULL,5,5,140,'982751509','0','0',NULL,3000,1,'SARI ETİKET','2025-07-30 08:42:42.550','2025-08-25 07:11:32.383',NULL),
('67b755d6-8527-41db-b18d-4497bd14d893','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-25 10:46:45.328',1480,'fabe2c23-b5a5-4123-a962-af519ac31d3b','PROMO HANDEL','2738484747373737',NULL,'Almanya',NULL,'47057',NULL,1,2,0,'22391500','0','0',NULL,0,0,'Kırmızı etiketli','2025-05-25 10:48:15.023','2025-06-04 07:00:07.030',NULL),
('67b884d5-ea90-4585-94a0-ef9d8b7707d2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bd143f82-77da-4c1d-9d90-001698b828cf','2025-09-01 13:40:39.811',4848,'bb5832af-6faf-4b4f-86a0-0d8a47cc4626','ALİ GALİP DUMAN','31640599400',NULL,'Hollanda',NULL,'3122',NULL,8,4.5,120,'583643470','0','0',NULL,1200,1,'BEJ ETİKET','2025-09-01 13:41:17.522','2025-09-12 19:46:30.502',NULL),
('67ce6e25-ae23-4317-bb28-96a9c393e42f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-30 14:37:55.050',10534,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MURAT KARADAĞ','004915730034297','','Almanya','MARL','45768','BRÜDER STR 71',5,1,0,'248211803','0','0',NULL,4400,1,'GRİ ETİKETLİ','2024-07-30 14:39:43.898','2024-08-07 08:41:42.094',NULL),
('67dfcee1-7fd7-4c4a-bd62-3036e85f4035','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-16 07:44:32.357',1693,'59868701-abe4-4705-a7e6-d91c2c69262e','İBRAHİM YEŞİLKAYA','4917611633498','4917611633498','Almanya',NULL,'67065','HOFSTRASSE 14. 67065 LUDWİGSHAFEN',16,2,110,'598211009','0','0',NULL,700,1,'SARI ETİKETLİ','2025-07-16 07:45:59.701','2025-07-28 12:02:39.073',NULL),
('67f3e803-506e-4fab-b999-051b7a0368e2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-05 14:01:02.754',7232,'73596a75-b658-4249-8c71-b0490654bc8b','SAİT BEY','004917616377875',NULL,'Almanya',NULL,'73235',NULL,17,1,0,'735814007','0','0',NULL,1800,1,NULL,'2025-01-05 14:01:46.957','2025-01-08 18:08:30.764',NULL),
('67f5e4dc-108b-4d6d-98e1-a173056bbadd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:47:18.059',3407,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NERMİN TÜREDİ','49015901977010','49017657994353','Almanya','BAD AIBLING','83043','FRÜHLINGSTRABE 28',1,2,100,'745524390','0','0',NULL,475,1,'YEŞİL ETİKETLİ','2024-03-16 08:50:01.427','2024-03-23 06:42:26.412',NULL),
('6815aa94-5a08-4d6c-8b41-dac4b7358a0b','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-05-22 14:27:19.150',10425,'47880255-08ee-4e99-940b-16038e07de55','SALİCHA OUZOUN','4915736507300','4915731640192','Almanya','KELSTERBACH','65451','RUSSELSHEİMER STR 189.  65451 KELSTERBACH ALMANYA',0,2,105,'478688620','0','0',NULL,1000,0,'3.5 m3','2025-05-22 14:31:18.499','2025-05-26 15:40:59.556','2025-05-26 15:40:59.559'),
('681a9409-dfea-4051-898e-57fa8d7d2fef','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-22 11:40:27.598',2687,'47880255-08ee-4e99-940b-16038e07de55','BİLGEN TATAR SSH','33652449725','33651149418','Fransa','SURVİLLERS','95470','17 RUE DES AMEMMOMES 95470 FRANSA',0,2,130,'478237582','0','0',NULL,0,0,NULL,'2025-10-22 11:43:06.487','2025-10-22 12:37:36.108',NULL),
('6820eacc-9bd4-4db6-87db-45adf3959c56','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-09 14:09:33.678',10569,'f91bb148-259f-42bb-9f08-b97a4cd49dbc','SAMET ÖZTÜRK ','491776464425',NULL,'Almanya',NULL,'13407','MONTANSTR28 13407 BERLİN',3,17,0,'911787432','0','0',NULL,0,0,NULL,'2024-12-09 14:15:47.781','2025-01-11 14:08:16.457',NULL),
('68290f88-32b3-4699-8927-09eb5cfc1ac6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-18 07:53:42.611',1798,'3c7190b6-f6ee-4275-8958-d7af952132ab','EMEL ÖZTÜRK','491712347917','491712347917','Almanya','DİLLİNGEN','89407','GARTENACKERWEG 2 89407 DİLLİNGEN ANDERDONAU  ALMANYA',18,2,110,'371191289','0','0',NULL,620,1,'AÇIK MAVİ ETİKETLİ','2025-07-18 07:55:51.223','2025-08-07 07:12:44.161',NULL),
('6832af34-4eaa-4b00-8c36-a811910e9201','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-23 09:10:06.000',9699,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','ELİF GÖKTAN','4915737597078','491736518131','Almanya','WÜRSELEN','52146','DORFSTR.9\n52146 WÜRSELEN',6,2.5,110,'505770346','5','5','Hersey cok iyidi tsk ederim',800,1,'MOR ETİKETLİ','2025-07-22 09:14:07.314','2025-08-11 12:26:55.784',NULL),
('683d27ef-d6a6-4b68-8486-43f1c42af547','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 07:05:14.283',1274,'47880255-08ee-4e99-940b-16038e07de55','SELAHATTİN BAŞPINAR','330695878603','','Fransa','MOULİNS','03000','92 BOULEVARD DE NOMAZY LA CAMPAGNE',11,1,110,'47835620','0','0',NULL,0,0,'İSİM YAZILI','2024-03-16 07:07:54.363','2024-03-29 17:57:22.178',NULL),
('685294c3-f19d-4310-a937-1d0a6fb675a7','eccfe611-9163-42aa-a1ff-e711af0248e6','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-09 09:15:32.372',4471,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SEMAHAT ÇELİK','33608972898',NULL,'Fransa',NULL,'42600','6 ALLEE DU BİEF 42600 SAVIGNEUX',11,3,130,'221803289','0','0',NULL,1400,1,'SARI ETİKETLİ','2025-01-09 09:17:02.881','2025-01-19 14:51:36.489',NULL),
('687d4dda-737c-4d30-8593-e81992c2a693','5c723cdc-e582-4b00-8271-838c085984c2','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-10 09:52:07.635',2502,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ABDULLAH DEMİR ','436609821810','436607858584','Avusturya',NULL,'1220','ATTEMSGASSE 39 STIEGE 1 KAPI 1 1220 VİYANA AVUSTURYA ',16,3,140,'745906720','0','0',NULL,1000,1,'MAVİ ETİKET','2025-09-10 09:56:13.426','2025-10-15 08:24:39.146',NULL),
('688081c7-c067-4206-bac2-763e3648f709','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-05-12 06:58:50.698',8682,'0debd19b-d90b-48a0-9568-2d01319377e0','SİBEL DURMAZ','11111111111',NULL,'Almanya','BREMEN','28259',NULL,0,3.5,110,'019225297','0','0',NULL,0,0,'(MOR RENK)','2025-05-12 07:00:20.914','2025-06-19 07:45:05.438','2025-06-19 07:45:05.441'),
('68b0a915-121f-4d3c-b2e8-25b8e3e18525','8fff5e14-418c-4377-bd83-3a3f81383507','7bd09245-c179-4127-b0e1-46737615122b','2025-08-06 07:36:56.334',2046,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SATİ CENGE','4915754509402',NULL,'Almanya','GELSENKİRCHEN','45896','HEİHOFFSWEG21',3,5.5,110,'437427529','0','0',NULL,1215,1,'YEŞİL ETİKET','2025-08-06 07:41:58.078','2025-08-21 16:37:01.898',NULL),
('690f6517-eb93-442b-b224-2954ac3c5231','394112c3-f977-4fc2-b430-775e79e472ca','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-30 08:50:56.709',6515,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FİROUZEH NOORZAİ','4524951213',NULL,'Danimarka',NULL,'9800',NULL,0,7,0,'982561254','0','0',NULL,3900,1,'MAVİ ETİKETLİ','2025-07-30 08:58:06.727','2025-08-25 07:06:53.264',NULL),
('692c748c-7c37-415c-b3d9-996281a0eba4','5c723cdc-e582-4b00-8271-838c085984c2','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 08:53:07.965',1750,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BURHAN AZEMİ','41762827635','41767141855','İsviçre',NULL,'1530','RUE DU FAVEZ 20 1530 PAYERNE İSVİÇRE',2,2,140,'74594372','3','3','Ok',2000,1,'Mavi kırmızı etiketli','2025-02-13 08:55:15.190','2025-02-25 17:29:06.728',NULL),
('696b1572-cc50-4ca5-aa1f-d74d769842a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-08-26 15:03:53.124',6917,'47880255-08ee-4e99-940b-16038e07de55','BİLGEN TATAR','36473737373',NULL,'Fransa',NULL,'363636',NULL,0,2,130,'478647664','0','0',NULL,0,0,NULL,'2025-08-26 15:04:21.377','2025-08-26 15:22:55.756','2025-08-26 15:22:55.755'),
('697955d3-b7a2-4988-99d7-ef09f8a4cea4','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-24 15:53:45.963',1453,'47880255-08ee-4e99-940b-16038e07de55','BÜLENT ECEVİT DUROĞLU','4915171697261',NULL,'Almanya','RİEDELBACH','61276','AM SOMMERBERG 69  WELLROAD 61276 RİEDELBACH ALMANYA',14,3,100,'478368190','1','5','👍süper ',0,0,'MOR ETİKETLİ','2024-12-24 15:55:54.368','2025-01-06 20:34:42.087',NULL),
('69ac6a84-035b-4ab3-b3f0-63c8136753f8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-10-07 12:06:28.427',2507,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET','1111111111',NULL,'Almanya',NULL,'47167','DİE FABRİK OUTLET\nDUİSBURG 47167\nGERMANY',1,2,0,'223317066','0','0',NULL,0,0,NULL,'2025-10-07 12:07:27.710','2025-10-09 08:39:57.710',NULL),
('69cd3737-18d9-4403-b086-38131b718d3b','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-10-18 08:29:15.677',5921,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MATEA JOSİPOVİC','4917631660631',NULL,'Almanya','BREMERHAVEN','27576','EUPENER STRASSE 27\n27576 BREMERHAVEN ',0,2,110,'50586339','0','0',NULL,670,0,NULL,'2025-10-18 08:32:11.175','2025-10-18 08:32:11.175',NULL),
('69d3c95a-372c-4578-8450-8194788ac842','804a2f53-7a26-4e8e-a505-7fc107953b50','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-30 06:44:39.203',7076,'a42d8839-caef-4422-888f-cbfdf4188c5b','MEHMET KILINÇ','31624464120','31655504455','Hollanda',NULL,'190 3544 ','MONARCHVLİNDERLAAN 190 3544 DC UTRECHT HOLLANDA',7,3.5,120,'428173598','0','0',NULL,1400,1,'SARI ETİKETLİ','2025-06-30 08:52:56.412','2025-07-23 06:17:56.348',NULL),
('69d3f67b-d428-4309-b980-d4a463f6b69e','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2024-11-10 18:48:26.981',5638,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','KAMRAN MİRZAİE','4368120329880',NULL,'Avusturya','LİNZ','4030','4030 LİNZ ',0,7.5,140,'982759064','0','0',NULL,4600,0,NULL,'2024-11-10 18:50:56.308','2024-11-21 14:03:08.967','2024-11-21 14:03:08.975'),
('69d7a07d-c199-439f-8e6c-e59065df2772','5c723cdc-e582-4b00-8271-838c085984c2','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-21 09:48:12.079',9963,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EMRE YILMAZ','4917683344866','4915560755375','Almanya',NULL,'68723','LINCKSTRABE 8 68723 SCHWETZINGEN ALMANYA',18,6,105,'745884226','1','1','Ürünlerin ayakları yüklenme hatasından dolayı kırık geldi. Tırla araba parçası değil Mobilya taşıdığınızın farkına varmanızı temenni ediyorum.',2000,1,'AÇIK MAVİ ETİKETLİ','2025-04-21 09:50:27.637','2025-05-21 21:38:09.437',NULL),
('69e1fe5a-461e-4d68-bdbb-b22f7bc39bdf','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-22 07:57:32.708',2949,'22a1dbd6-475c-4d4b-bb13-f459e3029634','FEDA DEMİRKAYA','41765710096',NULL,'İsviçre',NULL,'8102','ZÜRCHERSTRASSE 98C 8102 OBERENGSTRİNGEN CH',0,2,140,'221196305','0','0',NULL,570,0,NULL,'2025-10-22 07:59:05.723','2025-10-27 08:11:07.704',NULL),
('69f93507-2cdd-4907-8d7a-258e6ecfc342','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 12:43:19.099',4582,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET SALDANLI','4915730902133','4915756323110','Almanya','','77966','KAPPEL GRAFENHAUSEN',11,1,100,'745508995','0','0',NULL,1700,1,'YEŞİL ETİKETLİ','2024-10-17 12:46:40.524','2024-10-29 11:11:31.925',NULL),
('69fe4f9c-47cc-4216-8bca-b92bce12c165','1764a07b-eb47-4578-b6cd-f3c0d0e743be','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-12 12:22:20.855',4991,'47880255-08ee-4e99-940b-16038e07de55','SÜMEYYE ARSLAN','49162150360',NULL,'Almanya','MANHEİM','68309','POSTSTRE 48 ',12,1,100,'478355116','0','0',NULL,600,1,'TURUNCU ETİKETLİ','2024-11-12 12:24:12.347','2024-11-28 09:15:31.466',NULL),
('6a0da1c8-000c-4513-b226-ac4e7f8c7a30','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 15:00:20.893',4777,'47880255-08ee-4e99-940b-16038e07de55','YAKUP KILIÇ','32484574195','32499876558','Belçika','GENT','9041','HOLLEHAARSTAAT 98',7,1,100,'478124503','5','5','Çok teşekkür ederiz daha erken teslimat yaptılar memnun kaldık ',4500,1,'TURUNCU ETİKETLİ','2024-08-20 15:02:17.702','2024-08-31 18:19:46.022',NULL),
('6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-08-15 11:57:23.483',2230,'3c7190b6-f6ee-4275-8958-d7af952132ab','ESRA AVAN','491783973119','491783973119','Almanya','OFFENBACH AM MAİN','63073','KONRAD ADENAUER STRABE 2 63073 OFFENBACH AM MAİN ALMANYA',0,5.5,110,'371105450','0','0',NULL,2100,0,'köşe takımı, sandalye, keramik masa, baskılı sehpa. 7,5 metreküp','2025-08-15 12:00:50.125','2025-10-27 07:50:22.156',NULL),
('6a1719c6-6fdf-49b7-8175-c8a0ccf6b652','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-04-24 08:10:54.626',6523,'3c7190b6-f6ee-4275-8958-d7af952132ab','HÜMEYRA ZEYREK','436767311848','436767311848','Avusturya','VİYANA','1100','LAAER BERG STRABE 47B, 1100 VİYANA',10,2.5,140,'37152330','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-04-24 08:12:55.213','2025-06-03 09:41:29.120',NULL),
('6a21439d-54c9-48f3-b2b6-f67d8ade5c6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:46:56.072',6173,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET','49020350083648','','Almanya','DUİSBURG','47167','HEUSS STRABE 60',10,1,100,'223337181','0','0',NULL,0,0,'YEŞİL ETİKETLİ KOLİLER','2024-09-05 15:49:05.770','2024-09-12 10:54:58.872',NULL),
('6a397517-cdaf-4836-a678-f168177b94a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-23 07:18:02.211',1248,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','REZA OMERİ','4915221698583','','Almanya','STEİNBACH','61449','NİEDERHACH STADTER STR',5,7,100,'449394658','0','0',NULL,2150,1,'','2024-05-23 07:19:34.145','2024-05-29 14:54:39.098',NULL),
('6a7e11fc-8af7-4a54-9444-d563a0776049','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-21 12:49:55.183',5395,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÖMER YILMAZ','32472837629','32472837629','Belçika','CHARKEROİ','526000','RUE DE PITTSBURGH',0,3,120,'644763473','5','5','Süper',950,1,'SARI ETİKET ','2025-08-21 13:01:32.560','2025-09-12 20:08:28.053',NULL),
('6aa00240-966f-486c-99d1-9d64e41babbd','1764a07b-eb47-4578-b6cd-f3c0d0e743be','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-05-13 16:54:11.521',1823,'47880255-08ee-4e99-940b-16038e07de55','BELKISA KAPLAN','33699946659','33699946659','Fransa','MARİGNANE','13700','PARC PERRUSSON BAT H BOULEVARD ALBERİC BERNARD 13700 MARİGNANE FRANCE',3,2,130,'478428380','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-05-13 16:55:40.370','2025-06-26 14:18:33.878',NULL),
('6ab64262-e10e-4c69-a128-c1c8101ef7ed','1764a07b-eb47-4578-b6cd-f3c0d0e743be','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-04 08:03:38.388',5297,'47880255-08ee-4e99-940b-16038e07de55','YUSUF HAMZA DALKILINÇ','33763241174','33783623343','Fransa','BORDEAUX','33150','3 RUE JEAN COCTEAUAOT 28  33150 CANON BORDEAUX FRANSA',0,5,130,'478423651','0','0',NULL,2200,1,'KIRMIZI ETİKETLİ','2025-07-04 08:05:59.916','2025-08-05 14:06:23.753',NULL),
('6adcfcb9-e4f0-4b7d-895c-940cb17b62dd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-06 11:39:56.911',6347,'e6d4faef-484c-4ce7-992c-906e05fc083e','CANSEL KUŞ','491791457419',NULL,'Almanya','GLADBECK','45966','BRUNNENSTR 15',13,2,110,'644684020','0','0',NULL,700,1,'1 PALET ','2025-08-06 11:46:44.402','2025-09-12 06:55:49.063',NULL),
('6aebb14b-c093-4594-a175-4b9445b945d8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-08 08:19:05.613',2380,'47880255-08ee-4e99-940b-16038e07de55','OSMAN BOZKAN','4917674951049','306978038133','Almanya',' ROTTENBURG','72149','GARTEN STRABE 5. NEUSTETTEN/ ROTTENBURG  72149 ALMANYA',19,2,105,'47822949','0','0',NULL,0,0,'BEYAZ ETİKET','2025-09-08 08:20:07.331','2025-09-30 06:16:27.196',NULL),
('6b308538-0db0-403f-a33f-bc50bf381bb6','56e5168e-cbcf-408d-8798-5560be5c7235','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-21 13:22:26.540',1573,'7bb6a552-e940-4456-bfc3-50a13013996c','ŞULE ÇAYIR ','33782976683',NULL,'Fransa','BRENOUİLLE','60870','25 BİS RUE ROBERT GUERLİN\n60870 BRENOUİLLE',0,7,120,'765501651','0','0',NULL,3240,1,'YEŞİL ETİKET ','2025-08-21 13:29:03.563','2025-10-04 13:57:47.478',NULL),
('6b536f48-3034-48b2-9b97-92824679a502','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-03 20:54:00.530',2023,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','POLAT HANIM','330769065408',NULL,'Fransa','Marsille','13015',NULL,7,3.5,140,'982644032','0','0',NULL,1350,1,'SARI ETİKETLİ','2024-11-03 20:58:33.899','2024-11-25 09:20:39.164',NULL),
('6b5fec87-7926-4fa4-ae31-13921c722f9d','f784b688-ba6b-4886-87dd-fe4cfbed85b4','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-27 10:37:22.056',7274,'dea91080-5383-4085-af2e-7eace2c64224','RAMAZAN ALTINKAYNAK','33658781000','33769604042','Fransa','OYONNAX','01100','24 RUE ANATOLE FRANCE 01100 OYONNAX',9,5.5,130,'910163146','0','0',NULL,1250,1,'BEJ RENK ETİKETLİ','2025-03-27 10:39:52.167','2025-04-25 09:52:26.884',NULL),
('6b72e67a-4029-4618-9942-062ca2c63ca5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:13:02.218',3494,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA ÜNLÜSOY','4917623256596','4917661993409','Almanya','SİNDELFİNGEN','71067','KARLSBADERWEG 16/1',9,8,100,'478479612','0','0',NULL,4700,1,'YEŞİL ETİKETLİ','2024-10-02 09:15:30.877','2024-10-08 20:17:54.300',NULL),
('6b7bf40f-8730-4f82-9851-ca74df5b5a7c','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-08-13 14:49:44.385',2538,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUHAMMET KÖSEDAĞ(K)','491784084802','491786857560','Almanya','MİTTEN','10115','CHAVSSEESTR 51',16,2.5,110,'644590959','0','0',NULL,700,1,'TURUNCU ETİKET ','2025-08-13 14:55:58.117','2025-10-02 11:12:24.133',NULL),
('6ba9900e-286c-40c2-bd00-67d4e8a2212a','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-07-02 15:33:58.249',9066,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MAHMUT KONAK','4917622035676','4917670472341','Almanya',NULL,'32756','LAGESAHE STR 12 32756 DETMOLD ALMANYA',0,2,105,'74527393','0','0',NULL,1150,0,'6 M3 ','2025-07-02 15:35:15.065','2025-07-17 12:47:26.011','2025-07-17 12:47:26.010'),
('6bb117b8-f17b-4adf-b1d8-76f485b60723','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-25 10:44:03.759',7579,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MAİL BOXES ETC','11125363838374',NULL,'Almanya',NULL,'45768',NULL,0,2,0,'223923203','0','0',NULL,0,0,'325 adet mavi etiketli','2025-05-25 10:46:43.496','2025-06-04 19:43:21.305',NULL),
('6bbedfc9-507d-41d1-9473-1eea989ff050','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-30 07:50:00.238',5543,'4126da30-ba9b-41b7-be29-865069aa484c','CAVİT ','4847477382939394',NULL,'Fransa',NULL,'59160',NULL,1,12,0,'412129107','0','0',NULL,2440,1,'AÇIK MAVİ ETİKET ','2025-08-30 07:50:33.901','2025-09-12 19:45:52.110',NULL),
('6be6b415-9978-41fa-b920-1eb149c147e3','394112c3-f977-4fc2-b430-775e79e472ca','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-10 10:20:16.133',1359,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SÜMEYYE KALKAN ','436606772849',NULL,'Avusturya',NULL,'6971',NULL,14,2,140,'98258846','0','0',NULL,500,1,'Pembe etiktli','2025-02-10 10:21:51.725','2025-02-24 20:28:04.441',NULL),
('6be99b5d-41a3-4b9e-a67f-f951b7f620ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-10 12:10:53.531',3739,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','Arif ağca','','','','','','',2,2.5,0,'449837324','0','0',NULL,850,1,'','2024-05-10 12:14:38.411','2024-06-10 13:50:02.744',NULL),
('6bf15977-81c1-4276-bfef-d11adbf0e1ea','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 08:16:01.030',2983,'3c7190b6-f6ee-4275-8958-d7af952132ab','FATİME YILMAZ','491735396163','491735396163','Almanya','OBERHAUSEN','46119','BAUMSTRABE 10, 46119 OBERHAUSEN ALMANYA',22,3,110,'371626943','5','5','Süper iletişim! Hızlı teslimat! ',800,1,'KIRMIZI ETİKETLİ','2025-05-13 08:18:04.993','2025-06-05 05:42:59.679',NULL),
('6c005507-054f-4904-8f84-b0774ba70335','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:18:57.449',7934,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ZÜLFİKAR CAN','4915204591677','498381940171','Almanya',NULL,'88161','BAUMEISTER STRASSE 30',20,4,100,'745936573','0','0',NULL,1200,1,'TURUNCU ETİKETLİ','2024-11-15 16:22:06.329','2024-11-28 09:15:31.466',NULL),
('6c17a0c8-3209-41cb-8f5c-f47400874b9b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 13:36:51.555',2644,'9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','UĞUR YILDIRIM ','4917670590775',NULL,'Almanya','BERGHEİM','50126','DİESEL STR 19',17,2,100,'902194722','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-21 13:43:10.868','2024-12-03 21:23:38.196',NULL),
('6c47a19e-0b53-4437-bd26-af1e1f1b9daa','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-03 06:47:39.762',7584,'a42d8839-caef-4422-888f-cbfdf4188c5b','GÜLCAN ÇELİKKANAT','4915752014437','4915566115310','Almanya',NULL,'16 59077','ROBERTSTR.16 59077HAMM DEUTSCHLAND',23,4,0,'428519862','4','5','Teşekkürler ',600,1,'BEJ RENK ETİKETLİ','2025-01-03 06:50:21.517','2025-02-07 12:17:15.977',NULL),
('6c9799b7-d54a-4660-a5bf-0557b778d342','394112c3-f977-4fc2-b430-775e79e472ca','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-09 08:41:37.538',8973,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MİHAİ LİDİA ','400725755108',NULL,'Romanya',NULL,'225300',NULL,2,4,0,'982708819','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2025-07-09 08:42:24.709','2025-07-19 09:39:02.149',NULL),
('6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2','173956a2-c232-495a-b036-4a6a36c073e2','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-10 19:06:38.842',5787,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MEHMET EMİN KARAGÜZEL','4917680448730','4917680448730','Almanya',NULL,'38226','SALDERSCHE STRASSE 43\nSALZGİTTER 38226',14,3.5,100,'449665773','4','5','😇',1350,1,'MAVİ ETİKETLİ','2024-12-10 19:09:53.053','2025-01-08 20:33:10.422',NULL),
('6d081276-ddf8-46f0-93cd-4f0c203eb705','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','bd143f82-77da-4c1d-9d90-001698b828cf','2025-07-31 12:00:36.206',6547,'59868701-abe4-4705-a7e6-d91c2c69262e','NERİMAN SARI','4915234223357','4915234223362','Almanya',NULL,'52457','ENGELSDORFER WEG 11. 52457 ALDENHOVEN ALMANYA',18,9,110,'598226174','0','0',NULL,4400,1,'KIRMIZI ETİKET','2025-07-31 12:05:17.815','2025-09-10 17:05:41.390',NULL),
('6d4039b6-c00e-459a-95f4-bdff009aedea','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-21 09:13:53.067',4933,'3c7190b6-f6ee-4275-8958-d7af952132ab','ELİF KAVUCUK','491725826815','491725826815','Almanya','WİTTLİCH','54516','TRİERER LANDSTR 65  54516 WİTTLİCH ALMANYA',12,3.5,110,'37197237','0','0',NULL,745,1,'YEŞİL ETİKETLİ','2025-03-21 09:15:41.866','2025-04-05 20:39:29.869',NULL),
('6d6f2808-c231-4334-856e-47064121ade2','30b3fa45-4362-4bef-b611-4d4d2a3c84e3',NULL,'2025-09-09 13:31:06.424',1898,'9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','ALİ','4999999999999999','4999999999999999','Almanya',NULL,'1666666666','SADADASD',0,2,110,'959475359','0','0',NULL,1000,0,NULL,'2025-09-09 13:32:53.898','2025-09-09 13:36:17.815','2025-09-09 13:36:17.814'),
('6d8023fb-7e68-4b37-8709-816c5519380e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:39:58.665',6839,'1a63399e-9dca-4c70-be0e-e8e8a874b582','MURAT','31625064385','','Hollanda','BEST','5684','DE WAAL 2E',9,1,0,'163229349','0','0',NULL,650,1,'TAÇ YAZILI KOLİLER','2024-09-27 11:42:30.192','2024-10-06 13:26:07.141',NULL),
('6d9db45b-999e-401c-84f3-c6b4dbc128ec','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-08-20 15:07:35.906',9757,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','EURO MOBEL','491639801426','','Almanya','DOMAGEN','41539','KÖLNER STR 53',12,1,0,'107394609','0','0',NULL,250,1,'PEMBE ETİKETLİ','2024-08-20 15:07:51.091','2024-09-12 10:55:22.231',NULL),
('6da14393-4c45-403b-a068-6c3e487296c7','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 10:06:16.797',1499,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MOHAMMED MALHA ','33783080694',NULL,'Fransa',NULL,'74130',NULL,15,4.5,140,'982125625','0','0',NULL,3800,1,'AÇIK MAVİ ETİKETLİ','2025-02-07 10:09:09.139','2025-02-28 12:04:16.511',NULL),
('6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e','eccfe611-9163-42aa-a1ff-e711af0248e6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-05 07:28:57.800',9080,'22a1dbd6-475c-4d4b-bb13-f459e3029634','YEŞİM TOPKIRAN','491726603821',NULL,'Almanya',NULL,'63128','RODGAUSTRABE 46 , 63128 DİETZENBACH',14,2.5,110,'221960678','0','0',NULL,950,1,'BEYAZ ETİKETLİ','2025-05-05 07:31:20.780','2025-05-21 08:16:45.804',NULL),
('6dba3758-1465-4641-b00e-aa374ccc812b','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-18 08:54:00.121',9642,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','MUSTAFA TETİK','017631697864','015254086091','Almanya','WEİL İM SCHÖNBUCH','71093','IM TROPPEL 32 71093 WEİL İM SCHÖNBUCH',0,2,110,'515596760','0','0',NULL,1150,0,NULL,'2025-10-18 08:58:37.025','2025-10-18 08:58:37.025',NULL),
('6dce8b90-0bb7-4578-ad31-082486aad8f2','d074816b-78fd-4378-91c0-3835eba28f44','4ee6aa10-9436-4302-ba93-b9b567907896','2025-08-25 13:53:44.608',9928,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İSMET  IRMAK','00491742894095','016099741733','Almanya','OFFENBURG','77652','HAUPTSTRABE 120 77652 OFFENBURG/ALMANYA',0,24,110,'614659832','0','0',NULL,8000,1,'AYHAN DOĞAN-ŞERİF DOĞAN TESLİM EDİLECEK.','2025-08-25 14:16:20.623','2025-09-16 21:26:03.630',NULL),
('6de04c45-fcae-42a3-aebf-5b140d42d81f','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-24 07:44:21.689',5938,'3c7190b6-f6ee-4275-8958-d7af952132ab','TUĞBA COŞKUN','4917676660206','4917676660206','Almanya','MEERBUSCH','40667','BADENERWEG 16 40667 MEERBUSCH ALMANYA',16,6,110,'371672954','0','0',NULL,1650,1,'SARI ETİKETLİ','2025-04-24 07:47:37.835','2025-05-01 09:52:28.275',NULL),
('6de127b7-5d6f-49c5-bd23-1ab403d220de','f784b688-ba6b-4886-87dd-fe4cfbed85b4','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-04-15 12:55:02.605',7461,'dea91080-5383-4085-af2e-7eace2c64224','YAKUP KOÇOĞLU','33652889169','33688096085','Fransa',NULL,'26130','6 İMPASSE DE LA SAUGE  26/30 26130 SAİNT PAUL TROİS CHATEAUX',2,2,130,'910778068','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-04-15 12:57:09.740','2025-06-26 08:18:40.097',NULL),
('6df4ddf2-1d8c-407a-836a-ac83506102f3','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-06-16 21:06:19.950',6010,'6133a2db-79c4-4372-9338-505db46b1847','BERK YİKİLMAZ','41764159925','41764407535','İsviçre','DAGMERSELLEN','6252','LİNDENGARTEN 1 , 6252 DAGMERSELLEN',0,7.5,140,'613362697','0','0',NULL,2600,0,'2600 CHF alınacaktır\nTemmuz ilk haftası teslim olucak\n(Traverten masa lider lojistikte)','2025-06-16 21:13:52.583','2025-07-06 13:15:00.828','2025-07-06 13:15:00.827'),
('6df88176-a01f-4232-a091-4e10895a39df','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 09:58:18.779',8246,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','FARİSHTE AHMEDİ','33780145878','','Fransa','ALENCON','61000','19 RUE ANATALE FRANCE',8,1,110,'44940434','0','0',NULL,2300,1,'TURUNCU ETİKETLİ','2024-07-20 10:00:19.620','2024-07-30 14:54:56.271',NULL),
('6e0be5a1-e68c-498b-aab1-17f032d29cb5','89428e9c-4d02-45c3-a044-0b2a5ac2465d','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-29 13:11:20.979',2359,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HAVVA GÜL','33781907685',NULL,'Fransa','HETTANGE-GRANDE','57330','5 İMPASSE DES HORTENSİAS',9,4.5,130,'976530579','0','0',NULL,2350,1,'MAVİ ETİKETLİ','2024-12-29 13:12:54.091','2025-01-10 09:45:09.667',NULL),
('6e41f6a8-bb92-49dc-af72-2b1e16aa490c','05135cd5-2d33-4363-b51e-c9b83a94094d','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-13 08:17:05.094',10604,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','OSMAN BEY','33678270339',NULL,'Fransa','COLMAR','68500','17 RUE DES HERONS',14,2,120,'657405652','0','0',NULL,300,1,'PALET','2025-05-13 08:18:18.729','2025-07-08 11:33:53.274',NULL),
('6e6afc45-76dd-42f4-bded-f2fada436aff','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-15 08:06:20.621',2197,'3c7190b6-f6ee-4275-8958-d7af952132ab','MEHMET SARI','491795637471','491795637471','Almanya','BAD KREUZNACH','55543','DÜRERSTRABE 32 55543 BAD KREUZNACH ALMANYA',14,5,110,'371820872','5','5','Memnunuz cok teşekkür ederriz.! ',1150,1,'KAHVERENGİ RENK ','2025-07-15 08:09:18.283','2025-07-28 18:50:30.061',NULL),
('6e70fec4-ae28-4ffb-9ee0-160b7b77935f','89428e9c-4d02-45c3-a044-0b2a5ac2465d','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-05 11:17:42.814',3992,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SAMET KÖTEN','4915756455656',NULL,'Almanya','ULM','89075','TROLLİNGERWEG 41',27,3.5,110,'976439318','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-02-05 11:20:36.004','2025-03-04 15:54:31.452',NULL),
('6e7511a6-da4e-49c4-b1e0-36335129a7eb','8fff5e14-418c-4377-bd83-3a3f81383507','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-22 14:17:57.153',4431,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','CENNET YAVUZ','4915736399251',NULL,'Almanya','EİTORF','53783','AN DER KİRCHENWİESE 52',21,6,110,'437250812','0','0',NULL,1525,1,'MAVİ ETİKETLİ','2025-04-22 14:21:09.222','2025-05-10 20:13:49.714',NULL),
('6e760be6-8248-4caa-8c44-7fd2be1fbd2a','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-22 09:08:11.274',3354,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','MAHİYE BİDAV','00436604777186','00436601481782','Avusturya','İMST','6460','KARL-JAİS-STRASSE 2 6460 İMST AVUSTURYA',0,2,110,'515534574','0','0',NULL,1000,0,NULL,'2025-10-22 09:12:21.447','2025-10-22 09:12:21.447',NULL),
('6e979cb9-141a-43d7-a38c-362246b8f5a8','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-08-19 14:52:32.541',10670,'59868701-abe4-4705-a7e6-d91c2c69262e','ZEHRA ÜNAL','41794639037','41763221453','İsviçre',NULL,'4310','WALDHOFSTRASSE 69, 4310 RHEİNFELDEN İSVİÇRE',13,10.5,140,'598320188','0','0',NULL,2000,1,'YEŞİL ETİKET ','2025-08-19 14:54:41.973','2025-10-11 15:07:33.569',NULL),
('6ea42d00-b759-44f3-889c-15eaf3bf614e','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-09 09:11:38.290',3171,'22a1dbd6-475c-4d4b-bb13-f459e3029634','PINAR ÇİÇEK','33767941492',NULL,'Fransa',NULL,'44800','11 BOULEVARD CHARLES DE GAULLE 44800 SAİNT HERBLAİN',3,2,130,'221970338','0','0',NULL,1000,1,'BEYAZ ETİKETLİ','2025-01-09 09:14:20.028','2025-02-14 15:00:47.767',NULL),
('6eb2b7b3-1491-4ce3-ad14-6b15af827fc4','8fff5e14-418c-4377-bd83-3a3f81383507','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-22 14:04:01.938',9076,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','BİROL ELİBOL','491789146885','491784616992','Almanya','MÖNCHENGLADBACH','41239','EİBEN STR.34',7,3,110,'437609907','5','5','Çok memnun kaldık ',570,1,'KIRMIZI ETİKETLİ','2025-07-22 14:06:46.277','2025-08-09 11:04:51.946',NULL),
('6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc','eccfe611-9163-42aa-a1ff-e711af0248e6','82f1d7bf-2100-48db-928f-49720faaff90','2024-12-16 13:25:46.694',7968,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AMANY MOUSA','4917620210271',NULL,'Almanya',NULL,'12103','NEVE STRABE 9 , 12103 BERLİN ',16,1.5,100,'22134117','0','0',NULL,470,1,'AÇIK MAVİ ETİKETLİ','2024-12-16 13:27:27.231','2025-01-28 15:19:41.507',NULL),
('6ec88ca1-f52a-40e6-9c14-f95cfc64427a','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-22 08:04:28.050',4193,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NECMETTİN BEYAZİT','33668159994',NULL,'Fransa','ESSONNE','91700','13ALLEE DU VAL 91700 SAİNTE GENEVİEVE DES BOİS ESSONNE FRANCE',0,2,120,'614601595','0','0',NULL,1000,0,NULL,'2025-10-22 08:18:32.912','2025-10-22 09:05:06.947',NULL),
('6ee1e536-13dc-4a76-a70e-ab75c46f193b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-08-27 10:37:26.064',6157,'3c7190b6-f6ee-4275-8958-d7af952132ab','CELALETTİN ÖZKAY','491722902390','491722902390','Almanya','MÜLHEİM AM MAİN HESSEN','63165','LAMMERSPİELER STRABE 23A 63165 MÜLHEİM AM MAİN HESSEN ALMANYA',0,4.5,110,'371797202','0','0',NULL,2000,0,'koltuk takımı, konsol, masa, sandalye, sehpa. 6 metreküp','2025-08-27 10:41:09.212','2025-10-24 06:38:10.262',NULL),
('6f09bf36-0623-4409-a371-888d1bbf7a91','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-10-08 15:37:03.049',8852,'b0c1192a-7d38-4b69-a901-778f65a98b9d','ESRA İSMAİL','491607634230',NULL,'Almanya',NULL,'64747',NULL,5,9.5,110,'011940661','0','0',NULL,4080,0,NULL,'2025-10-08 15:46:40.527','2025-10-09 08:39:52.751',NULL),
('6f4a13be-78b8-4d33-9535-7be01091d06a','8184d19c-0d1f-4439-978c-7a3364e54967','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-13 13:43:49.929',1835,'b0c1192a-7d38-4b69-a901-778f65a98b9d','SAMET ERGİSİ','31620923693',NULL,'Hollanda','NEDERLAND',' 2721','SHETLANDPAD 13, 2721HM, ZOETERMEER, \nNEDERLAND',1,6.5,120,'011766113','0','0',NULL,1650,0,'AÇIK MAVİ ETİKET ','2025-10-13 13:48:27.125','2025-10-22 13:07:10.734',NULL),
('6f6f3f97-26d1-4eb9-9f9c-527ec752389c','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-24 11:34:17.379',9992,'e6d4faef-484c-4ce7-992c-906e05fc083e','BEYTULLAH AKSOY','4915232158548','491715317113','Almanya','GELDERSHEİM','97505','SONNENSTRABE 9',8,4.5,110,'644826911','0','0',NULL,1900,1,'BEJ ETİKETLİ','2025-04-24 11:47:09.789','2025-05-23 14:07:47.533',NULL),
('6f819014-9aee-49bd-a372-9beb415e27cd','313cc2e2-5529-49ab-abe5-27b5d390bc5f','66307a01-d585-4127-903b-18748421c29e','2025-03-25 17:16:56.414',9385,'6133a2db-79c4-4372-9338-505db46b1847','DİANA BARAKAEVA','436763463503','4369919243273','Avusturya','WİEN','1210','HERZMANOVSKY-ORLANDO-GASSE 1-13/36/10, 1210 WİEN',16,2,140,'613502652','0','0',NULL,650,1,'MAVİ ETİKETLİ','2025-03-25 17:27:48.224','2025-07-24 10:25:49.947',NULL),
('6f8c203a-dba4-456b-b37b-a7092a5e19a7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:30:00.808',8587,'73596a75-b658-4249-8c71-b0490654bc8b','SABRİNA KHODR','004917632601476',NULL,'Almanya',NULL,'23812','MARKT 1',1,1,0,'735660192','0','0',NULL,4200,1,'SARI ETİKETLİ','2024-12-20 12:30:42.612','2025-01-11 09:48:50.086',NULL),
('6faddf53-18a1-4f1f-affe-7ed38ef9e524','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:35:54.141',8538,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SARAH SCHNEİDER','004915733334152',NULL,'Almanya','BERLİN','13507','BİEDENKOPFER STR 50',10,1,0,'248904478','0','0',NULL,2200,1,'PEMBE ETİKETLİ','2024-11-12 15:36:42.041','2024-11-23 12:17:08.607',NULL),
('6fbc940d-f90d-4421-9557-c3c507ca66e1','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-30 10:44:46.522',8208,'a42d8839-caef-4422-888f-cbfdf4188c5b','FİKRİ GÜNEŞ','','','','','','',0,2,0,'428407424','0','0',NULL,0,0,'','2024-09-30 10:55:58.991','2024-09-30 14:30:02.140','2024-09-30 14:30:02.151'),
('6fc699fb-c118-45cb-9d3b-8275ec921ec5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','05e8de78-1979-427a-85ea-4116295aadf5','2025-10-01 06:41:35.613',9595,'e6d632ec-bc89-4254-b43c-4f7383017076','SİAART MERMER','31648963092',NULL,'Hollanda',NULL,'3023','STEENVORM POTTEN BAKKER STRAAT 17 2984 AX RİDDERKERK',8,2,0,'663743560','0','0',NULL,750,1,'2 PALET MERMER ','2025-10-01 06:51:47.337','2025-10-15 20:05:03.312',NULL),
('6fe06ae2-3155-4059-8f77-a92d8d23543a','5c723cdc-e582-4b00-8271-838c085984c2','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-03-24 09:20:43.011',7871,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA IBRYAMOV','4915758009049','4915750864806','Bulgaristan',NULL,'9120','9120 DOLNI CHIFLIK ',4,11.5,0,'745907299','0','0',NULL,3325,1,'MOR ETİKETLİ','2025-03-24 09:26:37.626','2025-07-18 06:24:51.290',NULL),
('6ffa5c9a-93c5-400c-b777-8b753a8d744f','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-15 08:33:22.671',9262,'59868701-abe4-4705-a7e6-d91c2c69262e','YAVUZ GÜNEŞ','4917663228369','4917670880874','Almanya',NULL,'13347','LİEBENWALDER STR. 53 13347 BERLİN ALMANYA',10,2,110,'59874048','0','0',NULL,1000,0,'GRİ ETİKET','2025-09-15 08:35:54.849','2025-10-20 07:18:10.105',NULL),
('702ebb26-b834-4081-a58c-2279f0d9af03','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:10:45.508',9208,'47880255-08ee-4e99-940b-16038e07de55','KAZIM YOL','33652634167','','Fransa','CRAN GEVRİER','74960','11 CHEMİN DES GREVES',12,1,110,'478202878','0','0',NULL,580,1,'LİLA ETİKETLİ','2024-05-04 10:12:32.994','2024-05-21 18:45:51.098',NULL),
('70305ca6-1276-478d-974a-f8168b04c382','5c723cdc-e582-4b00-8271-838c085984c2','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-06 10:54:12.836',9888,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METİN PEKSERT SSH','4915752948798','4977219162688','Almanya',NULL,'78050','WILLINGEN SCHWNNINGEN 78050 ALBAH DOLD STRABE 14 ALMANYA',21,2,105,'745430976','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-03-06 10:55:24.473','2025-03-19 12:37:05.683',NULL),
('70679c39-169c-46b4-9b96-b3994b9aee84','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 12:59:12.812',5419,'73596a75-b658-4249-8c71-b0490654bc8b','ZEKERİYA AKTAŞ','0033673412285',NULL,'Fransa','TRILPORT','77470','18 RUE DU GENERAL DE GAULLE',2,1,0,'735525138','0','0',NULL,1150,1,'SARI ETİKETLİ','2024-12-13 13:08:04.091','2024-12-24 12:30:36.004',NULL),
('70777159-ea94-424b-8d36-a3768ef41772','05135cd5-2d33-4363-b51e-c9b83a94094d','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-23 07:35:33.939',2972,'fabe2c23-b5a5-4123-a962-af519ac31d3b','PASS','5365908694',NULL,'Almanya',NULL,'31157',NULL,14,2,0,'223441694','0','0',NULL,0,0,'KOLİ','2025-09-23 07:37:04.037','2025-10-05 12:15:06.066',NULL),
('70b2b3d8-5939-4c79-b6bc-21bfa0ffde36','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-02 10:55:48.584',10703,'e6d4faef-484c-4ce7-992c-906e05fc083e','ZELİHA ÖCAL','4915901858511','4915205903853','Almanya','HAMBURG','22335','AM WEİBENBERGE 21',3,3,110,'6442594','0','0',NULL,500,0,'BEYAZ ETİKET','2025-10-02 11:12:17.435','2025-10-20 07:18:18.094',NULL),
('70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-04 15:04:28.629',10545,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','NRW MENDEN FRÖNDENBERG','491753662810','','Almanya','MENDEN','58706','FRÖNDENBERGER STRABE 158',5,6,100,'45586545','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2024-09-04 15:08:43.744','2024-09-12 10:54:33.263',NULL),
('70bb5389-78e9-4cd1-b018-0133ebcdd21c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 11:42:25.424',2208,'4126da30-ba9b-41b7-be29-865069aa484c','ZEHRA ÖZALP','4915147045689',NULL,'Almanya',NULL,'95326','WEİDENLEİTE 2',15,2,0,'412107970','0','0',NULL,0,0,'MOR ETİKETLİ','2025-02-27 11:43:54.477','2025-03-21 17:17:29.974',NULL),
('70bbe7ca-c823-4871-aad0-31c437da2b3c','5c723cdc-e582-4b00-8271-838c085984c2','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-13 10:59:58.694',5450,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MILANA PRODANOVIC','4366488883248',NULL,'Avusturya',NULL,'1150','ULLMANNSTRABE 16 1150 VIENNA AUSTRIA',23,2,140,'745837821','0','0',NULL,500,1,'MAVİ ETİKETLİ','2025-03-13 11:02:28.934','2025-04-02 18:57:10.886',NULL),
('70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-20 13:41:38.828',5356,'f23142ef-47ba-426c-9a22-bfb123cfac47','SALİHAPİA LEULD','41765060550',NULL,'İsviçre',NULL,'7205','CALANDA STRASSE 7',4,2,140,'231250162','0','0',NULL,500,1,NULL,'2025-06-20 15:00:37.117','2025-06-29 20:24:30.376',NULL),
('70f1d000-69a9-42e6-bbf8-0e2afa7a3f33','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d123109e-9a26-4781-939a-87cda202f683','2024-10-28 13:18:01.705',2050,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','NAZAN DENİZ','41768170678',NULL,'İsviçre','ZURİH','8050','REGENSBERGSTR ',7,3,140,'517616028','5','5','Aldım teşekkür ediyoruz sizlere',2000,1,'MOR ETİKETLİ','2024-10-28 13:23:02.394','2024-12-14 17:28:09.337',NULL),
('7111120f-fafa-47e7-88da-3e0454ed201a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-17 15:35:22.876',9253,'e6d4faef-484c-4ce7-992c-906e05fc083e','DERYA BALİ','4917682319373','491787046829','Almanya',NULL,'47798','CORNELİUSSTR 15',17,2,110,'644178035','0','0',NULL,200,1,'PALET','2025-04-17 15:40:33.428','2025-05-01 09:52:24.226',NULL),
('711413e7-9565-452a-b808-a0700618dc85','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:55:30.639',7644,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','DURMUŞ MEVLÜT','31612139530','31621283629','Hollanda','ALMELO','7603','SPINNERIJ 35',3,3,100,'614425900','0','0',NULL,600,1,'PEMBE ETİKETLİ','2024-05-29 09:57:28.167','2024-06-11 14:04:45.861',NULL),
('712504b4-3082-4d55-b36d-6c65e190776a','eccfe611-9163-42aa-a1ff-e711af0248e6','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-07 09:41:46.256',2306,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ROHAD TOSUN ','41797342584',NULL,'İsviçre',NULL,'9300','BETTENWİESENSTRASSE 2, 9300 WİTTENBACH',13,2.5,140,'221529516','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-05-07 09:43:19.563','2025-05-23 14:07:10.169',NULL),
('7179853a-28db-4c0d-8dbc-b947110f9e96','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:18:48.566',5537,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','GEZİM PLUSHİ','41768170444','41763247775','İsviçre','ZÜRİCH','8134','FİNSTERRUTİSTR 23',15,4,140,'982629756','0','0',NULL,1350,1,'PEMBE ETİKETLİ','2024-03-30 09:22:16.339','2024-04-17 10:15:56.135',NULL),
('7199e362-dd55-4a37-aba4-6ef7822710ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 11:04:07.376',1292,'73596a75-b658-4249-8c71-b0490654bc8b','MUHAMMET AL KHALAF','4915730928748',NULL,'Almanya',NULL,'12347','PİTSCHALLEE 5',16,2,0,'735785649','0','0',NULL,980,1,'MAVİ ETİKETLİ','2025-07-08 11:05:22.897','2025-07-24 06:26:58.578',NULL),
('71bc85dd-ef9e-4b79-a825-feb4851a5ac5','5c723cdc-e582-4b00-8271-838c085984c2','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-07 12:07:31.674',9282,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İSMAİL ÖZAY ','436763366858','436608138124','Avusturya',NULL,'6911','TONI RUSS STRABE 5 6911 LOCHAU AUSTRIA ',14,2,140,'745423192','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-05-07 12:08:12.463','2025-05-23 14:07:04.991',NULL),
('71ea314b-7a45-4dd6-ac6a-722d8715f15e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-15 09:36:57.592',1846,'47880255-08ee-4e99-940b-16038e07de55','YETKİN TOKER','4917663056847','4917641579711','Almanya','HAMM','59075','WELLEKÖTTER WEG 23 59075 HAMM ALMANYA',22,2,105,'478120731','0','0',NULL,500,1,'KIRMIZI ETİKETLİ','2025-01-15 09:39:33.192','2025-02-07 11:19:13.804',NULL),
('71f0d0b2-3d17-43c7-bf48-7355e5d7675a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bd143f82-77da-4c1d-9d90-001698b828cf','2025-06-25 13:06:59.337',7040,'e6d4faef-484c-4ce7-992c-906e05fc083e','ESRA BALTACI','491629768572','4917670325071','Almanya','SOLİNGEN','42653','NUMMENERSTR 68A 42653 SOLİNGEN WESTFALEN',19,5.5,110,'644711459','0','0',NULL,1800,1,'GRİ ETİKET','2025-06-25 13:23:29.309','2025-09-10 17:05:35.159',NULL),
('71f77e69-e535-4a68-a67d-b53c19b38276','4c3a2917-702d-4b2d-be91-e8860cfc98a7','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-07 08:31:59.537',5730,'f4861afa-47df-4a6b-b9ca-da22afe273e4','ZEESHAN AHMAD FAROOQ','33751255527',NULL,'Fransa','BEAUZELLE','31700','APT D58 61 CHEMİN DES AMANDİERS\n31700 BEAUZELLE FRANCE',1,2,130,'486874151','0','0',NULL,750,1,'SARI ETİKETLİ','2025-07-07 08:34:56.749','2025-08-05 13:52:37.524',NULL),
('72028383-f354-4335-af98-094bc771c86d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:23:42.905',8036,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','RAHİMİ','31613006004','','Hollanda','ROTTERDAM','3069','BR ALBERT CANUS PLANTS ',4,4.5,100,'449445608','1','1','Masam açıldığında hasar gördü ve kırıldı, kırık camlar nedeniyle ezildi ve çizildi',950,1,'YEŞİL ETİKETLİ','2024-05-29 09:27:28.205','2024-06-11 22:18:27.229',NULL),
('7213cf8b-e2b3-4fcd-b9d6-789a0803cc16','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-22 09:09:54.455',8741,'3c7190b6-f6ee-4275-8958-d7af952132ab','RECEP SÜRÜCÜ','4917641521015','4915142811451','Almanya','THİEDE SALZGİTTEV','38239','FRANKFURTER STR 73 38239 SALZGİTTEV THİEDE',0,3.5,110,'371364319','0','0',NULL,900,0,'köşe takımı + sandalye. 5 metreküp','2025-10-22 09:11:58.708','2025-10-27 07:48:23.800',NULL),
('723c8dbf-02f3-414f-bf79-3654c88f74e1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-13 13:57:45.459',5611,'dea91080-5383-4085-af2e-7eace2c64224','EMRULLAH ŞENGÜL','33787068261',NULL,'Fransa',NULL,'94000','12 AVENUE DE LA BRECHE CRETEİL ',7,5,110,'910304835','0','0',NULL,1350,1,'BEJ RENK ETİKETLİ','2024-12-13 14:02:14.096','2025-01-10 09:44:36.813',NULL),
('72595593-1c70-4451-8d5d-15322ee88f0f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:29:13.751',8541,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','KECKİN GÜLÜZAR','4333635914929','','Fransa','CHATEAUBRİANT','44110','25 MORECHAL FACH ',2,5.5,110,'449921347','0','0',NULL,2000,1,'PEMBE ETİKETLİ','2024-05-10 06:31:42.568','2024-06-04 14:25:21.698',NULL),
('725c7dcd-e043-4d79-afc1-ac8b4c557518','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-23 06:32:37.092',5250,'fabe2c23-b5a5-4123-a962-af519ac31d3b','KREM KUTULARI','3433434343344444',NULL,'Almanya',NULL,'47179',NULL,20,2,0,'223186784','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-05-23 06:33:23.900','2025-06-04 19:42:46.840',NULL),
('72aa64fd-4469-41aa-9db0-8095ab4bfdf0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-27 07:30:12.481',4317,'47880255-08ee-4e99-940b-16038e07de55','VELİ ÖKTEN','33783457448','33783457448','Fransa','SAİNTE MARİE AUX MİNES','68160','5 RUE MUHLENBECK 68160 SAİNTE MARİE AUX MİNES FRANSA',11,4,110,'478284503','0','0',NULL,1150,1,'YEŞİL ETİKETLİ','2024-11-27 07:31:41.783','2024-12-10 12:35:58.728',NULL),
('72aa8e60-9a79-4342-a46f-b23239e81fb0','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-27 13:58:39.857',7448,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','MEHMET ALİ ADIGÜZEL','33675154529',NULL,'Fransa',NULL,'54280','12 RUE DE JARDİNETS',25,3.5,120,'4551399','0','0',NULL,0,0,'MOR ETİKETLİ','2025-01-27 14:00:20.814','2025-02-11 17:09:06.423',NULL),
('72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:49:07.919',9357,'47880255-08ee-4e99-940b-16038e07de55','MELİH ÜNAL','4917643694619','4917630185368','Almanya','STUTGART','70597','FELİX DAHN STR',8,1,100,'478235858','0','0',NULL,0,0,'LİLA ETİKETLİ','2024-05-10 06:52:29.975','2024-05-31 10:16:29.386',NULL),
('72cfbd20-52f4-440a-b62e-8fdf632177d6','585b4575-ecea-4671-89b2-199f0605ed62','66307a01-d585-4127-903b-18748421c29e','2025-04-14 08:53:53.697',3457,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','GİZEM KARAVİL','4917624188930',NULL,'Almanya',NULL,'83512','ERLENSTRASSE 7\n83512 REİTMEHRİNG',15,2,110,'786820149','0','0',NULL,477,1,'YEŞİL ETİKETLİ','2025-04-14 08:54:53.461','2025-05-06 11:26:18.860',NULL),
('72d228c3-4890-476a-b92a-a7a953a0be97','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d123109e-9a26-4781-939a-87cda202f683','2024-10-24 09:45:13.467',7079,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SAKİNA RAHİMİ ','4915750730726',NULL,'Almanya',NULL,'84503','MÜHLDORFER STR 40',14,2,100,'449108957','0','0',NULL,200,1,'KIRMIZI ETİKETLİ','2024-10-24 09:46:49.527','2024-12-13 14:13:36.041',NULL),
('72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f','05135cd5-2d33-4363-b51e-c9b83a94094d','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-19 10:06:51.755',5167,'223e2487-81b9-4d78-968c-522e914203d0','NİZAMETTİN','33782119084',NULL,'Fransa',NULL,'35200','52 RUE PAUL BOURGET',2,2,0,'223719427','0','0',NULL,0,0,'MOR ETİKETLİ','2025-04-19 10:09:12.526','2025-05-03 15:28:08.996',NULL),
('72e3b2db-d663-4612-b75b-d12c95d1cb5f','394112c3-f977-4fc2-b430-775e79e472ca','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-12 08:34:10.017',9481,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ESİN TUNCA','33660766848',NULL,'Fransa',NULL,'06510',NULL,5,4,140,'982314530','0','0',NULL,1500,1,'TURUNCU ETİKETLİ','2025-06-12 08:35:23.121','2025-06-23 09:30:05.016',NULL),
('72f1e393-e099-4538-86f0-2e59b27b9761','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-09 15:14:43.025',5119,'47880255-08ee-4e99-940b-16038e07de55',' SEHER GÜNAY','33679049076','33766691017','Fransa','ORBACH','57600','3 İMPASSEDESKERŞSŞERS 57600 FORBACH',19,1,130,'478540346','0','0',NULL,0,0,'BEJ ETİKETLİ','2025-01-09 15:21:30.777','2025-02-17 21:43:08.580',NULL),
('73425516-263e-4f72-894c-4cfd33d6ee43','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e500be43-361f-413c-9720-89cc683cacf9','2025-10-13 10:14:32.657',1977,'4126da30-ba9b-41b7-be29-865069aa484c','ŞENOL BEY','4915788580085',NULL,'Almanya',NULL,'10999','ORANİENPLATZ 11-13\n10999 BERLİN\nMEMORİES',1,2,0,'412157183','0','0',NULL,5500,1,NULL,'2025-10-13 10:15:57.182','2025-10-16 06:56:36.734',NULL),
('73760c06-ddf4-438a-b4ca-f709ffabe11c','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-09 13:04:42.086',2030,'a42d8839-caef-4422-888f-cbfdf4188c5b','ŞÜKRÜ AKSOY','491634257044','491634257044','Almanya',NULL,'94 86165','DERCHİNGER STRASE 94 86165 AUGSBURG\n\n',16,2,110,'428930069','0','0',NULL,0,0,'BEJ ETİKETLİ','2025-01-09 13:06:29.910','2025-01-29 13:30:49.205',NULL),
('737675a9-68eb-41a7-946f-b0dfff8d03bf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-21 07:42:32.286',10672,'dea91080-5383-4085-af2e-7eace2c64224','CENGİZ SAKALI ','33637302044','33769426062','Fransa','CREİL','60100','17 RUE VOLTAİRE ',18,4.5,0,'910926193','4','3','İnsanımız verilen sözde randevusunda dakik olmayı başaramadı gitti!..Kapı önünde teslimat dendi sonra kamyon kiraladım ve üç saat tırın gelmesini bekledim gecenin saat birinde eşyalarımı teslim aldım!..',900,1,'YEŞİL ETİKETLİ','2024-10-21 07:46:32.986','2024-11-04 13:14:21.524',NULL),
('73a48364-e3d4-4fab-851c-d3a1f4617a64','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-06 09:40:21.051',10080,'47880255-08ee-4e99-940b-16038e07de55','SÜMEYYE DURUKAN','336455734378','33766519155','Fransa','SEİNGBOUSE','57455','1 İMPASSE DES ANEMONE 57455 SEİNGNOUSE',0,5,130,'478153975','0','0',NULL,2850,0,'4,5 M3','2025-10-06 09:43:23.413','2025-10-22 08:41:14.620',NULL),
('73b78ebb-8c97-412a-8a1b-bd037a5153db','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 08:54:23.082',8794,'47880255-08ee-4e99-940b-16038e07de55','GAZİ PINARBAŞI','41768145302','','İsviçre','SCHWEİZ','4133','WARTENBER STR 70',16,3.5,140,'478125476','0','0',NULL,900,1,'YEŞİL ETİKETLİ','2024-03-30 08:56:59.849','2024-04-17 10:16:28.647',NULL),
('73df0d9c-5733-4d04-8f77-6e191897e0ff','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-17 11:35:09.604',8095,'e6d4faef-484c-4ce7-992c-906e05fc083e','YUNUS HADIMLI','33658068721','33663262781','Fransa','CHİMİLİN','38490','26 CHEMİN DES ESSERTS',6,4,130,'644732617','0','0',NULL,925,1,'KIRMIZI ETİKETLİ','2025-03-17 11:50:08.886','2025-04-25 21:36:15.192',NULL),
('73e11a5e-8f1e-4939-880a-7a4290068064','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-07-01 10:31:25.253',1890,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','ELA BAYRAM','33698172262',NULL,'Fransa','İLLZACH','68110','19 RUE DES TEİNTURİERS \n68110 ILLZACH (FRANCE)',2,3.5,120,'531737045','5','5','Süpersiniz ',0,0,'MOR ETİKETLİ','2025-07-01 10:33:11.055','2025-07-22 20:32:22.323',NULL),
('741ca2d5-ef09-4582-aa3d-7a8f747bfc42','56e5168e-cbcf-408d-8798-5560be5c7235',NULL,'2025-08-01 13:11:53.819',9769,'7bb6a552-e940-4456-bfc3-50a13013996c','DİLEK KHALİL','4915758509876','491628991076','Almanya',NULL,'79837','TODMOOSER STRABE 3',0,2,110,'765827254','0','0',NULL,1000,0,NULL,'2025-08-01 13:15:35.274','2025-08-01 13:40:22.584','2025-08-01 13:40:22.583'),
('7458ef39-6eb9-40f5-ba04-84de030fd5d7','f784b688-ba6b-4886-87dd-fe4cfbed85b4','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-16 08:56:35.781',1598,'dea91080-5383-4085-af2e-7eace2c64224','ZELİHA ARAS','4901708970529','4901733860312','Almanya',NULL,'75059','HAUPSTRASSE 85		\n75059 ZAİSENHAUSEN		\n',19,6.5,110,'910280020','0','0',NULL,1900,1,'MAVİ ETİKETLİ','2025-04-16 09:00:22.405','2025-05-20 16:56:12.129',NULL),
('746346ca-da04-465b-bff8-fc464fa93ece','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:42:53.864',10967,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SARA MOHAİUDDİN','04917684676042',NULL,'Almanya',NULL,'83395','HAGENWEG 27',1,4,0,'248216907','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-10-23 08:49:27.047','2024-10-29 11:08:40.139',NULL),
('74637af9-7a7a-405b-a482-73059c1633c6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-24 12:48:58.487',10256,'e6d4faef-484c-4ce7-992c-906e05fc083e','BERNARD BEJİQ','491795275736','4917617137029','Almanya','HEİLBORN','74078','SACHSENACKER STR 10',16,3,110,'644714329','0','0',NULL,825,1,'YEŞİL ETİKETLİ','2025-02-24 12:55:26.213','2025-03-17 14:54:09.264',NULL),
('74721b66-738e-483a-a107-dcb77d21146a','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-08-06 12:12:50.112',2553,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ZAZA PACK FACTORY ','420777286123',NULL,'Çek Cumhuriyeti',NULL,'41510',NULL,0,2,140,'982626339','0','0',NULL,1500,0,NULL,'2025-08-06 12:13:47.032','2025-09-04 13:40:26.804','2025-09-04 13:40:26.803'),
('747b5fc5-10a3-4ca5-bdfe-cf4db34e4800','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-24 10:48:32.388',8997,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','GÜRKAN GÜLER ','32487972030','32484737825','Belçika','DİLSEN','3650','EKSTERVELDWEG 45',8,6,100,'449693252','0','0',NULL,2000,1,'SARI ETİKETLİ','2024-09-24 11:01:18.591','2024-10-06 11:10:49.421',NULL),
('74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','ab532050-8a54-4cb4-9e27-59229ab24a9b','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-22 07:00:43.688',1558,'338e8c09-4ca5-4617-bfc1-a0692646d475','GÜLCAN İNCE','436607735988','436766833448','Avusturya',NULL,'6800','MUTTERSTRASSE 4 6800 FEELDKIRC',15,8,120,'33850305','0','0',NULL,1500,1,'KIRMIZI ETİKETLİ','2025-04-22 07:06:59.118','2025-05-23 14:07:00.550',NULL),
('74e67c9c-8558-47ee-aa88-c7ca5718c754','5c723cdc-e582-4b00-8271-838c085984c2','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-06 09:01:40.838',4732,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NİLÜFER YAMAN SSH ','4917684650922',NULL,'Almanya',NULL,'75443','QUELLENSSTRABE 8 75443 ÖTISHEIM ERLENBACH ALMANYA',23,2,105,'745525130','0','0',NULL,0,0,'MOR ETİKET  SSH ','2025-08-06 09:01:48.812','2025-08-27 05:41:52.198',NULL),
('74fe07f7-1a7f-4967-a60e-9e6e00adcc0d','d074816b-78fd-4378-91c0-3835eba28f44','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-25 15:02:32.290',8944,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ALAETTİN BAYKAN','491737632417','4915754521372','Almanya','STUTGART','72622','72622 NURTİNGEN OBERENSİGER STRASSE 18 STUTGART/ALMANYA',17,3,100,'614396499','5','5','Çok güzel ',0,0,'MAVİ ETİKETLİ','2024-11-25 15:07:26.690','2024-12-09 17:29:19.987',NULL),
('751916ad-50d2-4794-9387-4d8c4dc5a813','5c723cdc-e582-4b00-8271-838c085984c2','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-06 11:00:02.293',5155,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLDEN KARADAĞ','4915115356238','491739497562','Almanya',NULL,'33605','BRESLAUER STRABE 24 33605 BIEFELD ALMANYA ',9,2,105,'745580296','0','0',NULL,345,1,'GRİ ETİKETLİ','2025-03-06 11:02:07.043','2025-04-08 15:37:12.797',NULL),
('751e7cfe-45c9-4ff6-a9db-f5b7e29356ac','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-29 13:03:41.007',6521,'3c7190b6-f6ee-4275-8958-d7af952132ab','DİLCAN YEŞİLMEN','4915112196306','4915112196306','Almanya','SAARLAND','66740','LEBACHERSTRABE 39 66740 SAARLOUİS SAARLAND ALMANYA',17,2,110,'371290223','0','0',NULL,300,0,'TURUNCU ETİKET ','2025-09-29 13:05:05.643','2025-10-22 13:06:51.724',NULL),
('755e2ad9-81c1-4538-8d82-5b3d0b23767c','d074816b-78fd-4378-91c0-3835eba28f44','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-01-20 08:42:58.070',5001,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NURKAN AŞIR','33613166090',NULL,'Fransa','CAVAILLON','84300','LE MEDİTERRANEE BAT A 71 RUE GEORGES VEVE 84300 CAVAILLON',9,4,130,'614741569','5','5','Hersey iyiydi , teşekkür ederim hayirli işler dilerim ',1330,1,'YEŞİL ETİKETLİ','2025-01-20 09:56:17.163','2025-03-02 08:07:50.580',NULL),
('755f29ea-0c4a-4711-8cef-0e6360e5867f','5c723cdc-e582-4b00-8271-838c085984c2','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-29 08:10:13.268',8589,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GİZEM YAZICI ','33603129182','33782501255','Fransa',NULL,'27000','9 PLACE DUPONT DE I\'EURE APPT 1 1ER ETAGE 27000 EVREUX FRANSA',10,3,130,'745582484','0','0',NULL,1300,1,'PEMBE ETİKETLİ','2025-01-29 08:12:10.000','2025-02-13 18:39:02.323',NULL),
('7590bedf-0280-42f9-ad6c-b270b2eef0c5','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-23 06:35:53.152',8171,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','SSHLAR','4653467627566257',NULL,'Almanya',NULL,'45879',NULL,25,2,110,'817893266','0','0',NULL,0,0,'MOR ETİKETLİ','2025-05-23 06:36:30.666','2025-06-04 19:42:18.729',NULL),
('75a70e80-2c1f-412d-86f8-4dbb396ad806','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-23 07:20:45.271',7327,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MME MENAUR RACHİDO','33605537745','','Fransa','','77600','35 BAULEUDER THİBOULT',4,4,110,'449890150','0','0',NULL,2700,1,'','2024-05-23 07:22:04.695','2024-05-31 10:16:03.501',NULL),
('75b514ad-164b-4680-8bcb-d21353d39504','1764a07b-eb47-4578-b6cd-f3c0d0e743be','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-06 09:47:19.559',5801,'47880255-08ee-4e99-940b-16038e07de55','RAMAZAN KAYHAN SSH','4915152091392','4915115830326','Almanya',NULL,'96465','ALMANYA 96465 NEUSTADTBEİ CABURG',22,2,105,'478885112','0','0',NULL,0,0,'BEYAZ ETİKET','2025-10-06 09:48:16.125','2025-10-27 09:24:33.569',NULL),
('75e0c108-e981-4c3f-9706-342da216ff28','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-21 07:51:46.327',2349,'22a1dbd6-475c-4d4b-bb13-f459e3029634','OGÜN KARAER','33627746632',NULL,'Fransa',NULL,'38370','105 CHEMİN DES CRETS 38370 SAİNT ALBAN DU RHONE',0,2,130,'221607575','0','0',NULL,550,0,NULL,'2025-10-21 07:53:09.693','2025-10-27 07:57:28.568',NULL),
('75fc25cd-5f64-489c-b87c-7c749bd09cb9','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-09 23:30:47.228',7302,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','SULTAN SEVİNÇ','436605107396',NULL,'Avusturya','VİYANA','1210','JUSTGASSE 18/104/9, 1210 WİEN',14,2,120,'808935275','0','0',NULL,800,1,'KIRMIZI ETİKETLİ','2025-08-09 23:33:27.477','2025-09-01 15:17:14.159',NULL),
('763269f0-c331-405d-955e-8f2aa8b9564e','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-13 08:19:34.585',3895,'a42d8839-caef-4422-888f-cbfdf4188c5b','ESMERAY ÇOBAN','32474864705',NULL,'Belçika',NULL,'75 2170','RİNGLAAN 75 - 2170 ANTWERPEN',6,5.5,120,'428633070','0','0',NULL,0,0,'SARI ETİKETLİ','2025-01-13 08:24:04.510','2025-02-10 14:16:10.551',NULL),
('764df280-e03e-49f4-9e1f-81ff18f0251d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-02-03 17:47:12.810',5185,'4126da30-ba9b-41b7-be29-865069aa484c','SOBA-PETEK','1111111111111',NULL,'Fransa',NULL,'29200','72 RUE DE KERMARİA',0,2,0,'41270066','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-02-03 17:48:38.442','2025-02-15 16:08:47.809',NULL),
('769295fe-385b-4195-9bd0-58e04754d3ad','eccfe611-9163-42aa-a1ff-e711af0248e6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-18 07:38:50.788',5876,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MURAT CENGİZ ','31612622634',NULL,'Belçika',NULL,'3900','WİLHELM SCHULTEPLEİN 12,3900 PELT',8,3.5,120,'221186271','0','0',NULL,2000,1,'SARI ETİKET ','2025-08-18 07:41:17.383','2025-09-10 05:45:08.212',NULL),
('76973b07-223c-4e19-93b2-e2f735cd609b','313cc2e2-5529-49ab-abe5-27b5d390bc5f','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-16 09:50:10.625',10937,'6133a2db-79c4-4372-9338-505db46b1847','RANİA PİSİT','4915566234500','491728265079','Almanya','OLDENBURG','26133','HARREWEG 156\n26133 OLDENBURG ',0,2,110,'613512690','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-06-16 09:52:14.282','2025-08-05 12:59:05.748',NULL),
('76991b10-04f4-476a-b317-0315495b4a37','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 12:36:13.809',5711,'e6d4faef-484c-4ce7-992c-906e05fc083e','HÜLYA KAHRAMAN(K)','4901716160487','01739256144','Almanya','SPEİCHERSDORF','95469','GOETESTR3',0,2,110,'644272451','0','0',NULL,675,0,NULL,'2025-09-17 12:46:49.477','2025-10-27 08:21:24.694',NULL),
('76a93010-f727-45fd-9ab0-e27e6c84c779','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-17 16:53:47.952',7190,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','ZEHRA','004917632525030',NULL,'Almanya','BEXBACHERSTRASSE 2  67063 LUDWİGSHAFEN AM RHEİN','67063',NULL,20,2,110,'817918521','0','0',NULL,600,1,'MAVİ ETİKET','2025-06-17 16:55:08.960','2025-07-24 06:22:57.917',NULL),
('771279e7-2a96-4a29-a936-3062722353d4','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-03-13 11:05:03.939',1436,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NECLA TURGUT','4915147374940','4915170573601','Almanya',NULL,'84137','DAIMLERWEG 6 84137 VILSBIBURG ALMANYA',0,2,105,'745202587','0','0',NULL,1400,0,'4.5 M3','2025-03-13 11:09:22.599','2025-03-19 10:29:03.033','2025-03-19 10:29:03.037'),
('7714cc95-f8de-4560-8240-8168befc09b9','89428e9c-4d02-45c3-a044-0b2a5ac2465d','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 21:38:45.569',2720,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ADEM ÖZKAN','491784770228',NULL,'Almanya','MANNHEİM','68219','POSTHORNWEG 7',25,4,100,'976779460','0','0',NULL,1250,1,'KIRMIZI ETİKETLİ','2024-11-21 21:43:48.095','2024-12-03 10:00:08.315',NULL),
('7722797e-2c67-4213-8908-859d85e5ef36','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-18 13:59:02.021',7427,'e6d4faef-484c-4ce7-992c-906e05fc083e','SABİHA SATICI','491626958911','491785050597','Almanya','DARMSTADT','64291','NACH DEM WİESCHEN',19,6,110,'644520957','0','0',NULL,2000,1,'AÇIK KAHVE ETİKET','2025-09-18 14:06:38.664','2025-10-14 05:37:37.433',NULL),
('7769da2f-9686-48c6-ae96-b03c5a2ae610','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-04 10:54:33.727',8985,'3c7190b6-f6ee-4275-8958-d7af952132ab','AHMET AĞIRMAN','491604615612','491604615612','Almanya','MERCHWEİLER','66589','BERGSTRABE 3A 66589 MERCHWEİLER ALMANYA',14,5.5,110,'371413703','5','5','Super',1490,1,'AÇIK MAVİ ETİKET','2025-08-04 10:56:42.977','2025-09-06 07:38:45.969',NULL),
('777a9d0a-ed8a-4b87-a971-1803e6a68047','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-17 10:58:09.443',6660,'47880255-08ee-4e99-940b-16038e07de55','İPEK ÇİFTÇİ','33609521096','33614367699','Fransa','VALMONT','57730','16 RUE DES VERGERS 57730 VALMONT FRANSA',10,5,130,'478300917','0','0',NULL,1800,1,'YEŞİL ETİKETLİ','2025-07-17 11:04:23.622','2025-07-28 18:40:09.673',NULL),
('778294cd-ffc6-4789-a055-1419d207d31f','8fff5e14-418c-4377-bd83-3a3f81383507','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-25 12:26:11.333',2015,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MERVE KARADAVUT','33660617145',NULL,'Fransa','GOUSSANVİLLE','95190','8 RUE DES VİOLETTES',4,2,120,'437998346','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-08-25 12:28:05.589','2025-10-04 13:57:23.933',NULL),
('7786397b-871f-47e3-8e4a-cb1bd837419f','d074816b-78fd-4378-91c0-3835eba28f44','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-02 15:23:45.020',2220,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP ','491628157309','4917623201470','Almanya','NÜRTİNGEN','72622','HOLBEİN STR 31/72622 NÜRTİNGEN/ALMANYA',21,1,100,'614969446','0','0',NULL,0,0,'MOR ETİKETLİ','2024-12-02 15:34:23.190','2025-01-06 07:01:32.038',NULL),
('7787dcfa-bee7-4c10-b4b3-88982e49499d','796d8b7b-662b-493a-8d3f-78c3ae052712',NULL,'2025-09-10 12:56:49.437',2118,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','HARUN','5352711900',NULL,'Almanya',NULL,'16400','SDASDSDSAD',0,2,110,'817550178','0','0',NULL,0,0,NULL,'2025-09-10 12:59:05.983','2025-09-10 13:06:26.763','2025-09-10 13:06:26.762'),
('77917a95-2dc0-44c5-b207-d5b4157f7420','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:19:34.689',7655,'c2d4ce84-536d-4816-837f-7abbf6a7e061','FATMA HANIM','00306988787488',NULL,'Almanya',NULL,'80689','WİLLİBALD STRABE 112',21,5.5,0,'248259363','0','0',NULL,670,1,'SARI ETİKETLİ','2024-11-02 08:21:24.171','2024-11-09 11:12:20.375',NULL),
('7792b079-15a5-4c2a-b33a-dea2dc61692b','ab532050-8a54-4cb4-9e27-59229ab24a9b','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-14 07:57:06.644',3356,'338e8c09-4ca5-4617-bfc1-a0692646d475','MEHMET ERTÜRK','32485026823','32484532916','Belçika',NULL,'9240','VELDEKENSSTRAAT 108 9240 ZELE  (+32484532916) (TR:0537 366 2849)',5,4,120,'338737901','0','0',NULL,500,1,'AÇIK KAHVE ETİKET ','2025-08-14 08:03:53.695','2025-09-10 16:32:58.533',NULL),
('77ae1565-c04e-4a61-91bb-c10a993fdc5b','5c723cdc-e582-4b00-8271-838c085984c2','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-08 07:56:17.933',3336,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÖKHAN ÇAYLAK','491749347138','4915222735434','Almanya',NULL,'22417','STOCKFLETH 227 A 22417 HAMBURG ALMANYA',3,6.5,105,'745808994','0','0',NULL,4300,1,'TURUNCU ETİKET','2025-09-08 07:57:09.026','2025-10-07 06:17:42.399',NULL),
('77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92','394112c3-f977-4fc2-b430-775e79e472ca','2a352437-950c-42a9-9135-55482cf3977c','2025-08-11 18:19:11.007',7939,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ABBAS GHULANI ','4368864127387',NULL,'Avusturya',NULL,'6410',NULL,9,2,140,'982978293','0','0',NULL,800,1,'KIRMIZI ETİKET','2025-08-11 18:20:17.180','2025-08-25 07:10:53.527',NULL),
('77d6bcb8-1638-4066-943f-4ca74a17b5a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:15:35.047',3327,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','AGIM NURSHOBO','491771951870','','Almanya','STROUBİNG','94315','KREUZWEG 43',0,4,100,'44971858','0','0',NULL,800,1,'','2024-04-23 10:17:17.495','2024-04-26 17:00:05.653',NULL),
('77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-13 07:23:30.409',6488,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ALESSANDRA ALTAVİLLA','4917656864788','4917656864788','Almanya',NULL,'75217','ALESSANDRA ALTAVİLLA\nMÜHLGASSE 30, GRÄFENHAUSEN\n75217 BÄRKENFELD',22,2,110,'127343940','2','3','Teslimat çok geç oldu. Neredeyse bir ay ürünlerimi bekledim. Yola çıktıktan sonra teslimat günü konusunda sürekli muğlak bilgiler edindim. Ayrıca şoförün teslimatta yardımcı olduğunu ve sabırlı davrandığını söyleyebilirim ',2000,1,'SARI ETİKETLİ','2025-02-13 07:28:47.438','2025-03-05 20:53:42.574',NULL),
('77e78f51-be80-4b08-a516-e9fc28d5622f','5c723cdc-e582-4b00-8271-838c085984c2','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-07-02 15:39:42.603',9709,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BURÇİN MEN','33649427969','33631854017','Fransa',NULL,'25300','33 CHEMIN DE VUILLECIN 25300 PONTARLIER FRANSA ',8,2,130,'745970479','0','0',NULL,800,1,'MAVİ ETİKET ','2025-07-02 15:43:20.393','2025-10-15 08:32:47.506',NULL),
('77eac80c-4c21-48c5-b2d5-8d730b4593ec','173956a2-c232-495a-b036-4a6a36c073e2','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-14 14:11:53.591',10954,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','İBRAHİM AKÇİN','4917630144018',NULL,'Almanya','HERRENBERG','71083','STUTTGARTER STRASSE 21\n71083 HERRENBERG\n',15,3.5,100,'449215672','5','5','Çok memnunum tır şoförü harika bir insan ve çok yardımcı birisi ',1350,1,'YEŞİL ETİKETLİ','2024-11-14 14:14:36.907','2024-11-28 09:15:31.466',NULL),
('781f03ac-2015-438f-bba9-a8e09715b445','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 10:03:39.984',1506,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','TKHİLİ BOUSHABA ','33651051557',NULL,'Fransa',NULL,'26400',NULL,10,2,140,'982578491','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2025-02-07 10:04:33.730','2025-03-01 14:06:58.367',NULL),
('7843425f-fb19-4fb2-a74f-b8a496a42e1b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-30 07:19:52.485',3284,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MERYEM YILDIZ','4917676707917','','Almanya','MALCIN','17139','GOETHE STRABE',5,1,0,'745957068','0','0',NULL,0,0,'','2024-03-30 07:21:09.453','2024-04-04 12:48:56.092',NULL),
('78463605-c329-4929-b567-24a3f88f4b7d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-22 11:22:13.441',7896,'e6d4faef-484c-4ce7-992c-906e05fc083e','MERT GÖKMEN','491721561971','017631598105','Almanya','LUDWİGSHATEN','67065','NİEDERFELDSTRASSE 7,67065 LUDWİGSHATEN AW RHEİN',9,8,110,'644796086','5','5','10 numara',2000,1,'MOR ETİKETLİ','2025-05-22 11:58:26.490','2025-06-19 10:18:49.408',NULL),
('7880358c-ba4e-4929-b5d9-4aed20c36174','4c3a2917-702d-4b2d-be91-e8860cfc98a7','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-13 14:56:44.761',9111,'f4861afa-47df-4a6b-b9ca-da22afe273e4','AYNUR KANDEMIR','491734175349',NULL,'Almanya','SPEYER','67346','THEODOR-HEUSS-STR 26 67346 SPEYER\nALMANYA',26,3,110,'486184665','0','0',NULL,1000,1,'KIRMIZI ETİKET','2025-08-13 15:00:00.117','2025-09-04 06:16:23.124',NULL),
('78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-23 06:25:54.953',2886,'c2d4ce84-536d-4816-837f-7abbf6a7e061','CAMLAR-SALİH AK','3445353423553535',NULL,'Hollanda',NULL,'6931','HAMERSESTRAAT 25',2,2,120,'248217260','0','0',NULL,550,1,NULL,'2025-05-23 06:27:45.367','2025-06-06 21:03:59.477',NULL),
('78b69f29-3789-4968-b725-c04339316224','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-23 08:17:55.228',2408,'47880255-08ee-4e99-940b-16038e07de55','SEVİM KAMER','494621092008','491621091849','Almanya','KÖLN','50769','FERDİNAND KÖNİGSHOFENSTRASSE 19 50769 KÖLN ALMANYA',16,2,105,'478151970','0','0',NULL,0,0,'DORSE YAN DOLAPDA SPREY BOYA','2025-07-23 08:19:14.836','2025-09-03 05:43:43.021',NULL),
('78b80c42-44c2-4ec1-827a-ef8e32bcec6c','d074816b-78fd-4378-91c0-3835eba28f44','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-17 09:09:06.381',6042,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','MEHMET ORMANOĞLU','4917661287885','4917624915178','Almanya','BERLİN','12353',' SOLLMANNWEG 9   12353   BERLİN //ALMANYA ',19,3.5,110,'614636969','0','0',NULL,1000,1,'MOR ETİKET ','2025-09-17 09:12:46.387','2025-10-02 11:12:06.916',NULL),
('78e0dc7d-612a-43d0-b71f-d2ff5178a06b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-05-23 11:46:36.716',3580,'4126da30-ba9b-41b7-be29-865069aa484c','YUSUF IŞIK','33623933331',NULL,'Fransa',NULL,'61100',NULL,0,2,0,'412903881','0','0',NULL,0,0,NULL,'2025-05-23 11:47:17.246','2025-07-04 18:37:40.820','2025-07-04 18:37:40.820'),
('791e33b7-8896-46f8-95f8-717ff7671574','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:58:54.444',8905,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SUAT','00491520424249',NULL,'Almanya','MÜNCHEN','81377','HABACHER STRABE 68',4,1,0,'248103321','0','0',NULL,900,1,'MAVİ ETİKETLİ','2024-10-23 09:00:39.908','2024-10-29 11:09:56.722',NULL),
('792d6397-5783-4fc5-9cff-46f4a9961a12','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-04 12:18:00.954',2221,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','HASAN ŞİMŞEK ','491773328964',NULL,'Almanya',NULL,'10967','KOTTBUSSER DAMM',1,5,110,'817317858','0','0',NULL,1150,1,'PEMBE ETİKETLİ','2025-04-04 12:28:48.970','2025-04-28 18:15:43.175',NULL),
('792dc306-a786-4b24-b735-ba05b7a72e0d','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-10 18:41:47.153',3757,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SADAT SAIDI','41779993098',NULL,'İsviçre','GENEVE','1219','1219 GENEVE ',0,8.5,140,'982365685','1','1','3757',4200,1,'TURUNCU ETİKETLİ','2024-11-10 18:43:47.518','2024-12-16 22:16:55.327',NULL),
('792fcb83-3583-425f-8515-80f98a19c7f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-30 14:22:18.664',1636,'3f47b50a-127d-4de1-88d7-b9c7ec06ab2b','NURİ ÖZKAN','491621337891',NULL,'Almanya',NULL,'74189','KİRSCHENALLEE 1',19,2,100,'347986383','0','0',NULL,1000,1,'KIRMIZI ETİKETLİ','2024-10-30 14:24:55.521','2024-11-09 11:12:30.683',NULL),
('795a7b9c-3044-492f-912f-d05f4ba21df6','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-02-28 15:27:14.732',10169,'dea91080-5383-4085-af2e-7eace2c64224','İDRİS EŞKIN','4306641865848','5379444793','Avusturya',NULL,'1110','VİYANA ROSE-JOHMANN-RİNG NO:14-11		\nPOSTA KODU		\n1110		\n',0,2,140,'910601621','0','0',NULL,1300,0,NULL,'2025-02-28 15:47:44.792','2025-03-21 13:25:03.243','2025-03-21 13:25:03.246'),
('79676ac8-69ac-464e-8e35-ce3119fd1f42','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-13 12:44:33.297',9309,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','ÖZGE KIZILASLANOĞLU','4917661733030','4917670653696','Almanya','LEUTENBACH','71397 ','NELLMERSBACHER STRASSE 22 71397 LEUTENBACH / ALMANYA',0,2,110,'51528243','0','0',NULL,750,0,NULL,'2025-10-13 12:46:13.640','2025-10-23 07:30:11.314',NULL),
('79b8f307-f370-445c-a869-4986e76c6399','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-22 06:41:56.810',4471,'59868701-abe4-4705-a7e6-d91c2c69262e','GÜLNUR ENGİN','4915730253868','4915226419992','Almanya',NULL,'71065','SCHÖNEBERGER WEG 15, 71065 SİNDELFİNGEN ALMANYA',16,3,110,'598585736','5','5','Yorumsuz',740,1,'YEŞİL ETİKETLİ','2025-07-22 06:45:20.576','2025-08-07 19:20:41.408',NULL),
('79baeae2-c29e-4ea3-ae77-ef38917cdcf3','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-07-29 14:22:29.271',9206,'dea91080-5383-4085-af2e-7eace2c64224','BERKAN AĞIRMAN','491578706465','4917664681539','Almanya',NULL,'46117','BOTTROPER STRASSE 146\n46117 OBERHAUSEN',0,3.5,110,'910781464','0','0',NULL,0,0,NULL,'2025-07-29 14:23:01.997','2025-08-19 12:38:31.063','2025-08-19 12:38:31.063'),
('79bfeebe-4f74-437f-8072-2e6a2e10f67f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-08-26 11:47:58.121',2948,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','NURGÜL ÖZDEMİR','4917661928608','','Almanya','BADEN','73655','ADELBERGER STRABE 30',2,9,0,'75056602','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-08-26 11:58:22.607','2024-09-16 17:09:39.159',NULL),
('79c8efb8-c504-45ca-bec0-780372b87574','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-15 10:56:41.423',9902,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ÇUVAL ','491788201134',NULL,'Almanya','KÖLN','50996','EMİL-HOFFMANN STR.1A',26,2,110,'976423277','0','0',NULL,250,1,'SARI ETİKETLİ','2025-01-15 10:57:59.745','2025-02-06 09:25:02.607',NULL),
('79f0fc3e-4899-4c29-8dad-eb9b646777fa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-08 17:55:15.477',2819,'c2d4ce84-536d-4816-837f-7abbf6a7e061','BRÜKSEL','1111111111111111',NULL,'Belçika',NULL,'11111',NULL,0,1,0,'248592138','0','0',NULL,0,0,NULL,'2024-11-08 17:55:51.395','2024-11-16 21:34:38.137',NULL),
('7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-06 12:14:05.303',4218,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','ELİF HANIM ','491778507163',NULL,'Almanya',NULL,'57074','HAUPTSTR.97\n57074 SİEGEN',15,2,110,'455685955','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-02-06 12:14:59.856','2025-02-18 17:24:08.058',NULL),
('7a1c035d-4dfb-480e-bc9c-b1a62adfa157','c21cdd02-4af2-4b32-bc87-c70a576c3a99','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-29 14:53:11.458',4408,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','SEDA -  MUSTAFA SERCAN GUNDOGMUS ','32488922343','32487879077','Belçika','VİLVOORDE','1800 ',' KODAKPLEİN 1 BUS02.05 -1800 VİLVOORDE/ BELGİQUE ',8,5,120,'515829047','0','0',NULL,1650,0,'TURUNCU ETİKET ','2025-09-29 14:56:17.365','2025-10-22 13:07:00.774',NULL),
('7a2cd810-7e27-4b3c-9394-3429f5c4d22b','4c3a2917-702d-4b2d-be91-e8860cfc98a7','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-18 14:24:30.914',4608,'f4861afa-47df-4a6b-b9ca-da22afe273e4','DİLAN HANIM','4915737520214',NULL,'Almanya','LEVERKUSEN','51381','BURSCHEİDERSTR 75 51381 LEVERKUSEN\nDEUTSCHLAND',23,3,110,'486724632','0','0',NULL,1000,1,'TURUNCU RENK','2025-06-18 14:30:54.354','2025-07-17 14:40:52.403',NULL),
('7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9','1f0119e0-2853-442a-8394-39cf94fce7df','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-29 11:45:21.122',4091,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','FUAT HUT','31642407835','31614556700','Hollanda','TİLBURG','5048','MİNOSSTRAAT 3, 5048 CK TİLBURG, NEDERLAND',9,3,120,'517903636','0','0',NULL,1000,1,'KIRMIZI ETİKET ','2025-08-29 11:47:38.214','2025-09-12 06:56:48.627',NULL),
('7a667252-ed58-40d2-8847-e86c3c8dd45d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-10-16 13:02:32.451',2687,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SUNAİM İBESKİ ','','','','','','',0,4,0,'982268643','0','0',NULL,0,0,'','2024-10-16 13:03:38.410','2024-10-16 13:15:56.035','2024-10-16 13:15:56.042'),
('7a6b4261-2f63-460f-b0ad-3b61cd0b29e6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-30 07:31:17.854',10459,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','MEHMET ALİ ADIGÜZEL','33675154529',NULL,'Fransa',NULL,'54280','12 RUE DE JARDİNETS',6,9.5,0,'455411696','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-12-30 07:33:56.189','2025-01-09 16:52:42.284',NULL),
('7a71a4e0-3e90-4099-bd84-f11cdef53c31','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-11 09:05:11.488',5864,'47880255-08ee-4e99-940b-16038e07de55','ÖZKAN ERDEM ','33753285709','33753794689','Fransa','PARİS','91240','\n\n14 RUE SAİNTE SAENS 91240 ST MİCHEL SUR ORGE',10,2,130,'478862837','0','0',NULL,0,0,'BEYAZ ETİKET','2025-09-11 09:06:54.638','2025-10-03 09:15:52.721',NULL),
('7aa9750a-32ef-4501-a5aa-1bf0b29fba80','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-02-13 08:09:10.216',3807,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','VEBİ DZELLİ ','41788774757',NULL,'İsviçre',NULL,'8953',NULL,0,2,140,'982424653','0','0',NULL,2500,0,NULL,'2025-02-13 08:10:54.018','2025-02-14 08:11:31.060','2025-02-14 08:11:31.063'),
('7ac45678-811d-4aea-b89d-0ec5dbedd607','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-09-11 13:49:46.274',1644,'59868701-abe4-4705-a7e6-d91c2c69262e','ÇİÇEK BOLAT','4917622175111','4917624641474','Almanya',NULL,'83059','KOLBERMOOR 83059, PFARRER BİRNKAMMER STARSSE 1A ALMANYA',0,5.5,110,'59898054','0','0',NULL,1650,0,'5 m3','2025-09-11 13:52:09.145','2025-10-23 11:57:35.691',NULL),
('7af2880d-3a81-482d-afb4-351d64968ae8','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-07-31 08:23:14.351',8774,'3c7190b6-f6ee-4275-8958-d7af952132ab','ŞENGÜL BABAOĞLU','491728162123','491728162123','Almanya','SCHÖNEFELD','12529','THEODOR FONTANE ALLE 24 2H 12529 SCHÖNEFELD ALMANYA',25,2,110,'371304914','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2025-07-31 08:25:20.729','2025-09-12 22:09:23.092',NULL),
('7af47c44-93b1-42ec-813b-77c155a1b050','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:40:55.483',9810,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','Abbas sertaç','436603554835','436601100069','Avusturya','Viyana','8012','INZERSDORFERSTRASSE ',0,7,120,'745715303','0','0',NULL,3300,1,'Turuncu etiketli','2024-04-07 20:43:59.522','2024-05-02 19:56:42.327',NULL),
('7af8955f-37e6-4e93-a7b7-e2155fe380f1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:39:15.477',4139,'4126da30-ba9b-41b7-be29-865069aa484c','SEVGİ ÇELEBİ','31627458014',NULL,'Hollanda',NULL,'1567','KROMMEVEN 20',1,1,0,'412665767','0','0',NULL,120,1,'PEMBE ETİKETLİ','2024-12-07 08:46:33.072','2024-12-20 14:35:19.739',NULL),
('7b348f53-5c5b-4ec1-b494-8e7dc766995e','173956a2-c232-495a-b036-4a6a36c073e2','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-20 12:03:39.641',1798,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','DIANA ÇELİKER','491726741919','491726741919','Almanya','VOERDE','46562','\nİN DEN WEİHERN 6 \n46562 VOERDE \nIN DEUTSCHLAND \n',12,3.5,110,'449974141','0','0',NULL,1190,1,'PEMBE ETİKETLİ','2025-02-20 12:05:25.652','2025-03-06 14:25:32.996',NULL),
('7b615872-31ff-47b5-87ed-3eca52a1fc1f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-10-02 09:47:49.661',6994,'1bf50c8b-294e-4072-b9f1-99363b966bb1','HELENA GÖKKAYA','33662243896',NULL,'Fransa',NULL,'81370',NULL,0,3,130,'150685221','0','0',NULL,650,1,'MAVİ ETİKET ','2025-10-02 09:49:04.859','2025-10-20 06:33:16.734',NULL),
('7b746611-d918-4f49-b5de-eb29d4fcdcb3','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-16 09:08:25.241',9638,'47880255-08ee-4e99-940b-16038e07de55','NURCAN DOLDUR','41764331829','41798375512','İsviçre',NULL,'8640','SÖGESTRASS1 8640 RAPPERSWİL İSVİÇRE ',0,2,140,'478196073','0','0',NULL,0,0,'ssh','2025-10-16 09:11:51.232','2025-10-16 12:03:26.230',NULL),
('7b8429d0-1c7f-489c-9ed5-1fd61d831270','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-25 09:08:46.335',4097,'a42d8839-caef-4422-888f-cbfdf4188c5b','SİBEL ÇINAR','33626434007','','Fransa','BERHOFFEN','67240','2 RUE CHRİSTİAN CHRİSTMANN ',14,4.5,110,'428736949','0','0',NULL,700,1,'SARI ETİKETLİ','2024-09-25 09:13:38.647','2024-10-10 16:31:34.970',NULL),
('7b9471cb-d4f3-4db3-8ac7-d88e488c33f5','ab532050-8a54-4cb4-9e27-59229ab24a9b','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-17 09:29:21.030',5268,'338e8c09-4ca5-4617-bfc1-a0692646d475','HÜLYA MEŞE (SSH)','31641319611','31641319611','Hollanda',NULL,'2543','2543 AC STEENZICHT 123',3,2,120,'338882287','0','0',NULL,0,0,'BEYAZ ETİKET','2025-07-17 09:30:37.509','2025-09-04 21:03:41.501',NULL),
('7bc83ab8-fd3a-4a00-a977-e067a1ad530c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:50:43.641',9726,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FLORJEN KRASNİGİ','4917682356727','','Almanya','EPPELHEİM','69214','HAYDN STRABE 2',8,4,100,'982310142','0','0',NULL,1650,1,'TURUNCU ETİKETLİ','2024-03-30 09:53:26.624','2024-04-12 07:17:01.209',NULL),
('7bc9f4ec-7fcf-432f-916b-dfd99ec231f8','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-07-29 19:23:16.173',6800,'6133a2db-79c4-4372-9338-505db46b1847','SAUDİN CURİC','436601434442','436601540069','Avusturya','WELS','4600','KALKOFENSTRASSE 44\n4600 WELS',0,2,120,'613745862','0','0',NULL,1020,0,NULL,'2025-07-29 19:27:13.462','2025-08-19 07:52:22.144','2025-08-19 07:52:22.144'),
('7be6621d-9b68-40b3-a06b-e80341f0ae5d','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','66307a01-d585-4127-903b-18748421c29e','2025-04-08 07:52:52.734',8773,'59868701-abe4-4705-a7e6-d91c2c69262e','ERTAN TOSUNER','4917670413077','4917670681296','Almanya',NULL,'80809','PREUSSENSTR, 17A, 80809 MÜNİH ALMANYA',14,2.5,110,'598454821','0','0',NULL,590,1,'KIRMIZI ETİKETLİ','2025-04-08 07:56:10.960','2025-05-06 11:26:00.016',NULL),
('7c13036d-04f3-4695-8d5b-26b5832743c9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-02 11:20:07.662',7304,'e6d4faef-484c-4ce7-992c-906e05fc083e','İPTAL','49913818974','4915205903853','Almanya','HAMBURG','22335','GE 21',0,2,110,'644537132','0','0',NULL,500,0,NULL,'2025-10-02 11:26:51.510','2025-10-10 12:30:46.077','2025-10-10 12:30:46.076'),
('7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-24 14:04:46.940',9098,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LEPETİT CHRİSTELLE','33768202556',NULL,'Fransa',NULL,'54310','13 RUE DES CHARMES 54310 HOMECOURT \'',24,2.5,120,'221987558','0','0',NULL,575,1,'MAVİ ETİKETLİ','2025-01-24 14:08:22.380','2025-02-11 17:09:13.639',NULL),
('7c239237-a1fb-41c7-936d-912d80326901','1764a07b-eb47-4578-b6cd-f3c0d0e743be','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-10 08:01:51.177',10507,'47880255-08ee-4e99-940b-16038e07de55','AYŞEGÜL GÖKTEPE','491733039881','4915121097412','Almanya','BRAUNFELS','35619','FORSTHAUS STRAABE 3  35619 BRAUNFELS ALMANYA',17,4.5,105,'478545457','0','0',NULL,2000,1,'GRİ ETİKETLİ','2025-07-10 08:04:57.335','2025-07-24 18:03:55.704',NULL),
('7c6c2dd1-52e2-4059-a97e-d340167fe009','20266106-34af-42db-a26b-578356db50a6','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-19 09:21:13.128',3743,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','HÜSEYİN CANDAN','41794580561',NULL,'İsviçre',NULL,'4663','BERNSTRASSE 26 4663 AARBURG',1,12.5,140,'695249199','0','0',NULL,7000,1,'7000 chf alınacak müşteri chf olarak ödeyecek\nMavi renk','2025-06-19 09:26:47.320','2025-07-02 06:17:10.670',NULL),
('7c6f41df-7a66-4cad-b01f-112bedad69ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-07-26 13:31:23.023',3871,'6b16eb99-81b1-4306-b528-e41ae9bc90b3','SERDAR BALCI','4915205605713','','Almanya','','86356','ALPENSTRABE 14',2,2,0,'616724751','0','0',NULL,250,1,'AÇIK MAVİ ETİKETLİ','2024-07-26 13:33:38.691','2024-08-15 10:30:51.457',NULL),
('7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9','1f0119e0-2853-442a-8394-39cf94fce7df','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-20 10:20:25.884',5305,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','RABİA DULU','4917623590552','4917672932158','Almanya','HAMBURG','21147','NEUWİEDENTHALER 119E, HAMBURG HARBURG 21147',2,5,110,'517278082','5','5','Cok memnun kaldik',1000,1,'TURUNCU ETİKETLİ','2025-05-20 10:23:43.887','2025-06-09 07:13:23.651',NULL),
('7c8f18be-c3f6-4903-ad13-f994b00c847e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:43:40.035',1552,'73596a75-b658-4249-8c71-b0490654bc8b','MUHAMMED HAMIDO','00491739094453',NULL,'Almanya',NULL,'21371',NULL,4,1,0,'735280128','0','0',NULL,0,0,'MOR ETİKETLİ','2024-12-20 12:44:34.320','2025-01-11 09:48:35.537',NULL),
('7ca0c26d-8bbc-4deb-a210-90620aca69ad','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','2a352437-950c-42a9-9135-55482cf3977c','2025-08-01 12:42:24.879',2430,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','CEM TOPYÜREK','41793101768',NULL,'İsviçre','MELS','8887','C +L TOPYÜREK \nIM STOFFEL 37 \n8887 MELS ',7,7.5,140,'53111592','0','0',NULL,2300,1,'GRİ ETİKET','2025-08-01 12:46:58.385','2025-08-25 07:11:09.013',NULL),
('7cae2eaf-f51c-496a-aa79-beedb60cda43','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:22:55.797',10047,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MİNE GÖKÜZÜM','491632336304','','Almanya','WELZHEİM','73642','SCHİLLER STR 11/2',10,4,100,'982992264','0','0',NULL,1650,1,'PEMBE ETİKETLİ','2024-03-30 09:25:39.078','2024-04-12 07:17:12.019',NULL),
('7cc7cbc1-b825-489b-99ca-2352be2803ea','f784b688-ba6b-4886-87dd-fe4cfbed85b4','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-03-18 12:43:38.307',2900,'dea91080-5383-4085-af2e-7eace2c64224','ROHAT KALABAŞ','49152216712','5556268485','Almanya',NULL,'45144','BERLİNER STRASSE 203 		\n45144/ESSEN		\n',19,5.5,110,'910245715','0','0',NULL,850,1,'BEJ ETİKETLİ','2025-03-18 12:45:32.281','2025-05-01 09:52:18.856',NULL),
('7cefa81c-deac-4617-8809-7002f9076b03','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-30 08:32:08.590',10410,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','TAMES PREİN JANY','33782340961','','Fransa','','06100','',14,3.5,110,'982545187','0','0',NULL,1400,1,'YEŞİL ETİKETLİ MİNİVANDA','2024-08-30 08:35:28.528','2024-09-09 15:17:41.175',NULL),
('7d1d7e49-6aae-4b9a-a041-419ddc6e5eae','313cc2e2-5529-49ab-abe5-27b5d390bc5f','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-16 15:16:38.213',7661,'6133a2db-79c4-4372-9338-505db46b1847','WASİ BAHİR ','491636378552','4915254790344','Almanya','LÜBECK','23562','KASTANİENALLEE 27, 23562 LÜBECK',5,2.5,110,'613373885','0','0',NULL,475,1,'KIRMIZI ETİKETLİ','2025-07-16 15:18:36.406','2025-09-01 10:25:09.780',NULL),
('7d5531cd-fb21-4284-9145-817c08eee250','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-09 08:05:25.297',5432,'47880255-08ee-4e99-940b-16038e07de55','MASOUD SÜLEYMAN','31639275902','31633413434','Hollanda','DEN RİJİN','2403','BARNSTEEN STRAAT 82 2403 CA ALPHAN AAAN DEN RİJİN THE NETHERLAND',0,2,120,'478183761','0','0',NULL,6100,0,'6,5m3','2025-10-09 08:10:50.904','2025-10-24 11:27:19.234',NULL),
('7d5e9833-8a69-43a6-8c18-775c82287e7a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-30 07:42:32.260',9858,'47880255-08ee-4e99-940b-16038e07de55','MERYEMA TEKİN','33758896442','33758896442','Fransa','PARİS','77130','2.BİS AVENUE LEANNEC MOBTERA FAUL YONNE',7,10,120,'478322325','0','0',NULL,4000,1,'MAVİ ETİKET','2025-07-30 07:47:05.549','2025-08-31 19:20:30.341',NULL),
('7d6fb76f-77a1-487b-abf8-27a26b46c803','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','66307a01-d585-4127-903b-18748421c29e','2025-03-08 10:08:05.630',7849,'e6d4faef-484c-4ce7-992c-906e05fc083e','CANSU BEYAZ','491724542171','4915739477075','Almanya','BERLİN','12355','BENATZKYWEG 24, 12355 BERLİN ALMANYA',1,5.5,110,'644282587','5','5','Teşekkür ederiz ',2000,1,'TURUNCU ETİKETLİ','2025-03-08 10:13:13.926','2025-05-10 20:20:50.778',NULL),
('7d8316a2-565e-4804-89d8-cb47b032bbf2','05135cd5-2d33-4363-b51e-c9b83a94094d','7ac756d2-64a5-4427-8ec5-4a522acc0088','2025-06-25 10:53:54.111',7310,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET','4920350083648',NULL,'Almanya',NULL,'47167','THEODOR HEUSS STRABE 60',1,2,0,'223422825','0','0',NULL,0,0,NULL,'2025-06-25 10:57:14.890','2025-07-03 11:20:12.754',NULL),
('7d8956ca-698f-462a-81a5-dcf35e87e4ee','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-23 08:35:00.899',7856,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','VİET ANH THAİ','4917662226476',NULL,'Almanya','BERLİN','10437','DUNCKERSTRASSE 5\n10437 BERLİN',20,2.5,110,'531250587','0','0',NULL,2800,1,'AÇIK YEŞİL ETİKET','2025-09-23 08:38:32.942','2025-09-30 18:45:14.653',NULL),
('7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45','173956a2-c232-495a-b036-4a6a36c073e2','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-20 13:29:14.359',3040,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','YUSUF IŞIK','33623933331',NULL,'Fransa','NORMANDİE','61100','23 RUE DE LA FOURNİERE 61100 FLERS  BASSE NORMANDİE / FRANCE',0,9,120,'449582137','0','0',NULL,0,0,'KIRMIZI ETİKETLİ 2.KAPAĞA SONRADAN KONULAN ÜRÜN','2024-12-20 13:34:30.888','2025-01-13 07:51:15.784',NULL),
('7d8e5510-6139-402c-b2eb-e91c010cf1ea','f784b688-ba6b-4886-87dd-fe4cfbed85b4','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-17 15:28:56.403',3976,'dea91080-5383-4085-af2e-7eace2c64224','SONGÜL KEKEÇ','4917620526995','491737325307','Almanya',NULL,'53115','BRUCKNERSTRASSE 6 , 53115 BONN		\n',20,5,110,'910197116','0','0',NULL,925,1,'SARI ETİKETLİ','2025-04-17 15:30:17.725','2025-05-10 20:13:55.964',NULL),
('7d94f5dc-3374-42f1-918a-96335b5e8070','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-08 18:33:27.525',2601,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Arbesa','4917661977409','','Almanya','Cham','93413','Flieder strabe 1',0,1,100,'982653067','0','0',NULL,2470,1,'Sarı etiketli','2024-05-08 18:35:31.028','2024-05-17 09:44:35.365',NULL),
('7dba6aad-c685-4d86-96a0-5bd7caa80a14','313cc2e2-5529-49ab-abe5-27b5d390bc5f','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-06 17:04:20.053',1596,'6133a2db-79c4-4372-9338-505db46b1847','WALDEMAR HEİNZ ','4915785847007','4917632294519','Almanya','BRACHTTAL','63636','BİRSTEİNERSTRASSE 42A, 63636 BRACHTTAL',17,2,110,'613940015','0','0',NULL,395,1,'MAVİ ETİKETLİ','2025-09-06 17:09:24.153','2025-09-24 06:51:18.915',NULL),
('7dd8fd8d-1e65-4d72-a3a3-e995172ad367','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-08 08:49:50.309',6459,'4126da30-ba9b-41b7-be29-865069aa484c','Songül şahin','31636115974','','Hollanda','Krommenie','1561','Blauwe arendstraat 2',13,2,100,'412157634','0','0',NULL,0,0,'Kırmızı etiketli','2024-04-08 08:55:58.494','2024-05-02 19:56:42.327',NULL),
('7debbec8-4b40-438d-b2a3-04d64fa74ec0','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-22 07:49:49.509',7683,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KEMAL SALMAN','310625516345','31638604540','Hollanda',NULL,'3131','KUIPERSTRAAT 50 3131 CH VLAARDINGEN CENTRUM HOLLANDA',0,2,120,'745386422','0','0',NULL,1500,0,NULL,'2025-10-22 07:52:56.481','2025-10-22 07:52:56.481',NULL),
('7e235f31-a31e-4f86-a52d-66155cdbd820','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-04-24 08:08:28.701',9172,'a42d8839-caef-4422-888f-cbfdf4188c5b','ESRA SEZEN','436608152569','4306603197698','Avusturya','POTTENBRUNN','3140','FÜNFHAUSGASSE 5A',15,2,120,'428122550','0','0',NULL,1200,1,'MAVİ ETİKETLİ','2024-04-24 08:08:56.935','2024-05-27 19:19:11.570',NULL),
('7e266893-f849-462e-9a81-e6336886fc16','1764a07b-eb47-4578-b6cd-f3c0d0e743be','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-10 06:43:04.822',5284,'47880255-08ee-4e99-940b-16038e07de55','FAHRETTİN AKISKA','32494889531','5334943834','Belçika','LİEGE','4000','4000 LİEGE BELÇİKA',15,8,120,'478339664','0','0',NULL,4100,1,'KIRMIZI ETİKET ','2025-09-10 06:47:43.153','2025-10-15 08:20:24.218',NULL),
('7e6b3d54-6e1a-4c75-aad5-52fb31d0c647','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-11-25 11:13:44.762',5553,'d100cd88-31b8-4788-8c56-3df2fd4058aa','AAAAA','05393958712',NULL,'Almanya',NULL,'26954','ALTE HEERSTRABE 50',8,3,100,'100655378','0','0',NULL,330,1,'AÇIK MAVİ ETİKETLİ','2024-11-25 11:14:40.174','2025-01-09 13:53:55.006',NULL),
('7e6be2bc-3fb4-4348-b595-2abc3ea964a0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-16 12:54:34.423',8215,'b79c36e4-6b21-42c9-aa7f-8483a465c2f9','RUHİ MANAV ','4915236632469',NULL,'Almanya',NULL,'46000',NULL,8,3.5,0,'79354282','0','0',NULL,0,0,'KIRMIZI ETİKET ','2025-09-16 12:57:57.861','2025-10-02 06:11:30.058',NULL),
('7e7dc595-616a-449b-82e5-63d04f63ca8f','5c723cdc-e582-4b00-8271-838c085984c2','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-02-24 11:51:49.042',6745,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DELİL ÖZTÜRK','32455122888','32485530941','Belçika',NULL,'4040','RUE JELES DESTREE 12 4040 HERSTAL BELÇİKA',4,2,120,'74529534','0','0',NULL,6400,1,'TURUNCU ETİKETLİ','2025-02-24 11:55:22.124','2025-04-08 15:34:50.056',NULL),
('7e8785f1-7130-4936-8f4d-d44ffa1d9b07','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-05 10:55:05.398',7697,'e6d4faef-484c-4ce7-992c-906e05fc083e','ANDREW YARBUG(K)','31636599387','31611196921','Hollanda','VOGEZENLAAN','7577 MR','VOGEZENLAAN 8',6,5,120,'644799923','0','0',NULL,1750,0,'SARI ETİKET','2025-09-05 11:02:58.306','2025-10-25 08:59:18.908',NULL),
('7ea76b05-b121-495a-8d2a-ccda072629c6','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-10-06 09:25:46.504',3020,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','BRADLEY MÜLHAUSER','0041754330771',NULL,'İsviçre',NULL,'1740','RTE DU PÉRÉLON 7, 1740 NEYRUZ',0,2,140,'695734625','0','0',NULL,1540,0,'1540 chf alınacak','2025-10-06 09:27:36.896','2025-10-14 14:54:24.494',NULL),
('7eb8fa9b-b381-4a05-90c4-02d73cd76f15','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-11 08:20:25.779',6029,'dea91080-5383-4085-af2e-7eace2c64224','GÖKHAN BEKTAŞ ','491746797988','1628102357','Almanya',NULL,'89250','BUCHER STRABE 2',17,5,100,'910352489','0','0',NULL,925,1,'TURUNCU ETİKETLİ','2024-11-11 08:34:00.057','2024-11-23 12:17:08.607',NULL),
('7ebc061e-668d-437b-b1f8-46651f8f4ce0','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-08-11 11:23:44.116',7804,'e6d4faef-484c-4ce7-992c-906e05fc083e','BARAN YILDIZ','491601818240','491606303499','Almanya','HAMBURG','66424','REİCHSSTRABE 4',27,8,110,'644832811','0','0',NULL,1875,1,'MOR ETİKET ','2025-08-11 11:39:25.833','2025-09-27 08:39:24.170',NULL),
('7ebe9302-39fc-46ee-b7c6-423d2cf70cd3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-11 13:48:50.343',9052,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','SAAİD HUSSEİN','4917641556413','','Almanya','RHEİNFELDEN','79618','FRİEDRİCH STR 123',8,4,100,'501760708','0','0',NULL,1400,1,'GRİ ETİKETLİ','2024-09-11 13:53:00.974','2024-09-26 17:27:03.900',NULL),
('7ebece0e-bf8d-4678-bf15-17e6bed10020','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-09-23 07:36:38.052',9346,'47880255-08ee-4e99-940b-16038e07de55','YEZNİK ADORYAN','41789159593','41789159593','İsviçre','CLARENS','1815','CHEMİN DU PETİT-CLAS 13 CLARENS SWİTZERLAND',0,8,140,'47816855','0','0',NULL,5000,0,NULL,'2025-09-23 07:40:07.775','2025-10-14 12:36:59.941',NULL),
('7ed3d8b7-5e55-437d-b2cb-c80e4f63010b','8fff5e14-418c-4377-bd83-3a3f81383507','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-08-28 09:24:22.456',2807,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SANİYE BIÇAKÇI','491736493653',NULL,'Almanya','RİTTERHUDE','27721','LEHMBARG 28',11,5,110,'43774917','0','0',NULL,700,1,'TURUNCU ETİKET','2025-08-28 09:26:54.938','2025-10-05 12:15:35.762',NULL),
('7ed51e97-f73a-473a-bca0-1959c9e5c202','56e5168e-cbcf-408d-8798-5560be5c7235',NULL,'2025-10-14 08:50:54.849',4937,'7bb6a552-e940-4456-bfc3-50a13013996c','KEREM ÖZYAZICI ','31627902299',NULL,'Hollanda','ALMERE','1328','THÉRÈSE SCHWARTZESTRAAT 67\n1328 CB ALMERE, HOLLANDA',0,2.5,120,'765334693','0','0',NULL,650,0,NULL,'2025-10-14 08:54:46.542','2025-10-26 20:24:44.710',NULL),
('7ed7929e-101c-4ff9-a280-ee1b1b4fa958','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-09-01 13:12:47.143',3382,'47880255-08ee-4e99-940b-16038e07de55','OKAY DERİNKUYU','41764103638','4915231405303','İsviçre',NULL,'5630','BACHMATTEN7 5630 MURİ İSVİÇRE',0,2,140,'478554846','0','0',NULL,0,0,NULL,'2025-09-01 13:14:08.131','2025-09-24 14:51:03.887','2025-09-24 14:51:03.886'),
('7edca54a-9671-41a7-883d-c2d819811110','d074816b-78fd-4378-91c0-3835eba28f44','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-06 09:16:29.651',4298,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','YILDIRIM  ASLAN ','4915738159369','491786615616','Almanya','VOLKLİNGERN','66333','VÖLKLİNGEN LUDWEİLER VÖLKLİNGERS  STRASSE 75',10,4.5,100,'614766744','0','0',NULL,1190,1,'SARI ETİKETLİ','2024-11-06 09:23:43.278','2024-12-01 12:28:01.536',NULL),
('7eeb3429-c256-465d-8b88-a60afd893ca0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-09 13:29:18.354',2539,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','ERSİN ESEN','4917622021338',NULL,'Almanya','PHİLİPPSBURG','76661','GERSTENFELD STR 57',14,3.5,100,'501256266','0','0',NULL,1650,1,'AÇIK MAVİ ETİKETLİ','2024-10-09 13:32:49.013','2024-10-31 12:13:55.505',NULL),
('7f38de3b-7387-4b91-9e96-d8a8ae7341de','df0d8353-2caa-413c-9f14-b01af77df00b','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-18 12:15:25.778',9186,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SERVET ERDOĞAN','352691333084',NULL,'Lüksemburg',NULL,'3520',NULL,7,3.5,140,'982426968','0','0',NULL,1350,1,'YEŞİL ETİKETLİ','2025-07-18 12:16:25.855','2025-07-29 13:55:08.002',NULL),
('7f52958a-ccf0-400f-89e3-4730414f3b72','f784b688-ba6b-4886-87dd-fe4cfbed85b4','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-06-11 20:17:36.784',5669,'dea91080-5383-4085-af2e-7eace2c64224','İSMAİL TURŞUCU		','491747353519','491626234457','Almanya',NULL,'79787','BÜRGERMEİSTERAMT LAUCHRİNGEN		\nPOSTFACH 1164 79781 		\nLAUCHRİNGEN		\n',4,6.5,110,'910697257','0','0',NULL,1650,1,'KIRMIZI ETİKETLİ','2025-06-11 20:20:18.340','2025-07-22 08:19:40.603',NULL),
('7f6e46a0-6664-4624-b492-d5fe0196f1c7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-23 07:16:11.463',1615,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET ŞAFAK','4917663104062','','Almanya','STUTGART','61350','',2,2,100,'745303298','0','0',NULL,600,1,'','2024-05-23 07:17:49.399','2024-05-29 19:00:18.557',NULL),
('7f7fc18f-c4b7-4970-b1ed-b10790978ab2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:09:11.710',2867,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MUHAMMET EL CASİM','41793377228','','İsviçre','NEUENEGG','3176','GRABMATTWEG 3',18,3.5,130,'248435862','0','0',NULL,700,1,'MAVİ-MOR ETİKETLİ','2024-03-30 09:11:56.916','2024-04-17 10:16:12.696',NULL),
('7f855c7f-0b0b-4ad0-be73-f19332cbf660','1764a07b-eb47-4578-b6cd-f3c0d0e743be','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-17 08:43:42.968',7197,'47880255-08ee-4e99-940b-16038e07de55','AHMET ÖZDEMİR','491776418748','491776418748','Almanya','VELBERT',' 42551','VELBERT  / ALMANYA - 42551',14,2,0,'478472384','0','0',NULL,100,1,'KIRMIZI ETİKETLİ','2025-01-17 08:46:24.804','2025-02-08 15:04:38.470',NULL),
('7f859e4c-bba8-44f8-9564-dfb0b044e0f8','8fff5e14-418c-4377-bd83-3a3f81383507','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-30 07:38:14.674',5686,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','İPEK CANTÜRK','491629865985',NULL,'Almanya','HAMBURG','22307','HABİCHT STR 120',8,2.5,110,'437313362','0','0',NULL,450,1,'SARI ETİKETLİ','2025-07-30 07:40:01.878','2025-08-21 08:12:52.703',NULL),
('7f8c4888-b2a0-46d9-b594-dfcbf578986f','05135cd5-2d33-4363-b51e-c9b83a94094d','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-09-06 17:02:37.675',6082,'4126da30-ba9b-41b7-be29-865069aa484c','ENES','3434574663476434',NULL,'Avusturya',NULL,'1230',NULL,13,2,0,'412746738','0','0',NULL,2500,1,'PEMBE ETİKET ','2025-09-06 17:03:28.256','2025-09-17 16:04:00.289',NULL),
('7f9379fc-d4c1-4277-b25d-671a459d4658','ca1490dc-0456-4517-a1c1-d45ab1c360c0',NULL,'2025-05-09 08:19:04.154',7715,'8d03b939-d544-45f8-8173-464bea4e67ab','CANAN TURHAN ','491771767394',NULL,'Almanya','SİEGBURG','53721','JÄGERSTR 55 D\n53721 SİEGBURG',0,2,110,'803248094','0','0',NULL,625,0,NULL,'2025-05-09 08:26:32.832','2025-05-16 12:24:38.069','2025-05-16 12:24:38.072'),
('7faf0313-0350-4d8f-ae44-2086dabb4ea7','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-16 13:35:40.098',10682,'22a1dbd6-475c-4d4b-bb13-f459e3029634','EMBİYE DENİZ ','32471877407','32491646807','Belçika',NULL,'2660','HENDRİKLEİ 213, 2660 HOBOKEN ',0,2,120,'221394764','0','0',NULL,1300,0,NULL,'2025-10-16 13:37:33.133','2025-10-24 08:47:16.398',NULL),
('7fb143cf-43fb-404b-999f-52ebf5c4af6c','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-02 13:56:26.771',6418,'afdbd570-d700-442a-b617-752921194603','MERİÇ KARACAN ','4917676733022',NULL,'Almanya',NULL,'88471','SCHMEİEDSTRABE 16',30,4.5,110,'570417524','0','0',NULL,1700,1,'YEŞİL ETİKETLİ','2025-05-02 14:00:00.385','2025-05-19 20:26:27.502',NULL),
('7ff713ea-32d3-468f-b2ec-bd1dde38b6ef','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-30 14:43:51.207',2071,'c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','HASAN BEY','905540182920',NULL,'Belçika','JUMET','6040','RUE DU DİARBOİS 8',8,14,0,'448805304','0','0',NULL,2500,1,'6 PALET -PALETİN 1 TANESİ AÇILDI','2024-10-30 14:46:01.231','2024-11-12 16:16:56.945',NULL),
('801ba5f4-d6b6-411f-91c9-fd875339900c','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-26 13:29:04.305',2912,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','ŞÜKRÜ YÜCE','491639749830',NULL,'Almanya',NULL,'50858',NULL,7,4,110,'655688103','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-03-26 13:38:45.130','2025-04-07 17:19:17.059',NULL),
('806ac2ff-05c6-4761-b7c1-9dea0c05a1bb','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-24 10:54:16.474',4394,'e6d4faef-484c-4ce7-992c-906e05fc083e','MERYEM KAYA','4917663715654','491578629363','Almanya','BERLİN','12357','SEİDELBASTWEG 111A',15,4.5,110,'644178445','0','0',NULL,650,0,NULL,'2025-09-24 11:00:45.019','2025-10-20 07:18:03.600',NULL),
('808b4ef9-a87c-49a2-938f-85cb6e7e8004','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-22 07:38:22.686',5153,'4126da30-ba9b-41b7-be29-865069aa484c','ROMARİO AVELOO (BAŞTÜRK) ','31618837777',NULL,'Hollanda','EİNDHOVEN','5632','MİRANDASTRAAT 12 EYALET: NOORD-BRABANT ',4,2,0,'412757812','0','0',NULL,1800,0,'BEYAZ ETİKET ','2025-10-22 07:42:34.183','2025-10-22 13:07:09.019',NULL),
('80cc77d6-2140-493c-a7df-e75aa5104691','8fff5e14-418c-4377-bd83-3a3f81383507','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-05 09:16:40.159',6115,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','BEKİR TEKELİ','491741630656',NULL,'Almanya','NECKARWESTHEİM','74382','HOUPTSTR 52',22,4.5,110,'437700144','5','5','Iyi',495,1,'KREM ETİKET ','2025-08-05 09:19:22.604','2025-08-27 19:39:10.068',NULL),
('80da5b1b-534a-4c8c-96c2-bace937f5e61','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:53:14.229',3070,'73596a75-b658-4249-8c71-b0490654bc8b','LAMİA BADAOUİ','004917630153600',NULL,'Almanya',NULL,'63165','OFFENBACHER STR.79',15,1,0,'735389141','0','0',NULL,1495,1,'1 PALET MERMER','2024-12-28 14:54:00.677','2025-01-06 20:09:15.195',NULL),
('810dc52a-159e-44ab-b7dd-937d9c4e84cf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:21:29.550',2829,'4126da30-ba9b-41b7-be29-865069aa484c','HÜSEYİN ÖZGÜR','32467701837','','Belçika','MAASMECHELEN','3630','STEENKUİLSTRAAT 54 ',9,2.5,0,'412903351','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-05-29 09:23:38.273','2024-06-11 14:04:39.030',NULL),
('8197b3b9-ae6a-4c96-ac0a-85c38b7a4871','56323a39-e192-4016-a254-840950ca2e27','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-13 13:09:09.364',9308,'7f34d75e-284a-42ac-9cbe-a29174748991','Erkan ÖZKÖKKAYA','491722947166','4915204613986','Almanya','Stuttgart','73249','Braigeweg 18 73249 WERNAU',16,4.5,100,'734788911','4','5','Genel olarak iyi hizmet. Özellikle gelen şöför Abim 10 numara',750,1,'MOR ETİKETLİ','2024-11-13 13:17:29.297','2025-01-21 19:54:59.362',NULL),
('81d90712-62e3-438c-bb65-68ef2f0ed8e5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 07:01:42.863',9364,'47880255-08ee-4e99-940b-16038e07de55','DİLAN ÖZKAN','33769060012','','Fransa','SOULEOU','13014','487 RUE JEANQUEİLLAU RESİDENCE LOU SOULEOU',16,1,110,'478125578','0','0',NULL,200,1,'YEŞİL ETİKETLİ','2024-03-16 07:04:59.858','2024-03-29 17:58:02.407',NULL),
('8203fdec-99ef-4eea-b5d2-7dc3476dfcf5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:15:42.041',1842,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NİLÜFER YAMAN','4917684650922','','Almanya','ERLENBACH','75443','QUELLENS STRABE 8',10,1,100,'745972164','0','0',NULL,5000,1,'MAVİ ETİKETLİ','2024-10-02 09:17:41.268','2024-10-08 20:46:31.147',NULL),
('821ce6fd-2cdb-4d44-be55-13bf12a05f4c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-30 08:17:15.051',4682,'47880255-08ee-4e99-940b-16038e07de55','BAHAR SARI','491718076933','491718076933','Almanya','HAMBURG','22309','GROPİUSRİNG 33 22309 HAMURG ALMANYA',7,2.5,105,'478525280','0','0',NULL,650,1,'GRİ ETİKETLİ','2025-07-30 08:18:30.972','2025-08-21 08:12:57.335',NULL),
('822d89d5-a2bc-4eca-87ce-9ea0d7fb109c','5c723cdc-e582-4b00-8271-838c085984c2','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-05-15 08:55:44.047',8401,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MURAT ERKUL SSH','4917623882618','4917632975827','Almanya',NULL,'13599','LANGER SEE STRABE 8 13599 BERLİN ALMANYA',15,2,105,'745898734','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-05-15 08:56:15.043','2025-07-24 06:27:03.815',NULL),
('8236ee4d-7b00-4708-bd5f-e656d5a3b5e6','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-09-06 11:16:16.161',6632,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','CAFER BEY ','905423036885',NULL,'İsviçre','ZURİH','8000',NULL,0,2,140,'920368521','0','0',NULL,0,0,'5m3','2025-09-06 11:18:57.503','2025-09-18 21:10:40.043','2025-09-18 21:10:40.042'),
('824b8b50-1127-4eb5-8137-c9c3822a54a2','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-01 12:30:12.430',9146,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','YUNUS EMRE ÖZAGİR','4917632961366',NULL,'Almanya','EGGENSTEIN LEOPOLDSHAFEN','76344','YUNUS EMRE ÖZAGİR THEODOR-HEUSS-STRASSE 4 76344 EGGENSTEİN-LEOPOLDSHAFEN +',19,2.5,110,'531988506','0','0',NULL,660,1,'TURUNCU ETİKET ','2025-08-01 12:33:29.280','2025-08-27 19:35:01.417',NULL),
('8259588b-b757-4856-a390-2e9ec4c403c8','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-16 06:54:57.795',1767,'dea91080-5383-4085-af2e-7eace2c64224','ATAKAN OLCAYTÜRK ','491777466973',NULL,'Almanya',NULL,'97318','SCHWALBENGASSE 2',18,4.5,100,'910485088','0','0',NULL,0,0,'SARI ETİKETLİ','2024-12-16 06:58:28.784','2025-01-07 17:28:07.120',NULL),
('826475dc-b2f5-46e9-8c2c-4ddeb82b942b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-12 08:48:19.695',2021,'47880255-08ee-4e99-940b-16038e07de55','BİLGEN TATAR','33652449725','33651149418','Fransa','SURVİLLERS','95470','17 RUE DES AMEMMOMES 95470 FRANSA',0,9,120,'478764154','0','0',NULL,4000,1,'MAVİ ETİKET','2025-08-12 09:00:52.539','2025-09-02 07:46:22.518',NULL),
('8277179b-dd64-4a72-b947-d8a5c906a9b0','89428e9c-4d02-45c3-a044-0b2a5ac2465d','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-30 09:29:26.096',7850,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','NAFİLE ÖCALAN','33676496054','33623912069','Fransa','MORELLES EN HUREPOIX','91630','39 CHEMIN DE PARIS 91630 MORALLES EN HUREPOIX',13,2,120,'976821188','0','0',NULL,950,1,'BEJ RENK ETİKETLİ','2025-01-30 09:36:57.220','2025-02-13 13:19:40.212',NULL),
('82859b5d-2c9e-4a29-be96-14240c8a1e53','20266106-34af-42db-a26b-578356db50a6','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-16 08:25:24.519',9012,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','VALMİRA RAMADANİ','431728611102',NULL,'İsviçre',NULL,'8802','OBERE BÄNKLEN 10, 8802 KİLCHBERG/ZÜRİCH',3,5,140,'695394738','0','0',NULL,2680,1,'2680 CHF ALINACAK EURO KARŞILIĞI 2850 PEMBE ETİKET','2025-06-16 08:28:41.583','2025-06-30 08:56:30.725',NULL),
('82a52514-f885-46c9-bb75-54161940ec29','173956a2-c232-495a-b036-4a6a36c073e2','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-03 10:58:55.190',6191,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','JAFARİ SAYED OMİD','41768446429','41768446429','İsviçre','CHERNEX','1822','ROUTE DE CHAULİN 17   1822 CHERNEX CONTON VAUD',1,4,140,'449448008','0','0',NULL,850,1,'Pembe etiketli','2025-02-03 11:02:40.114','2025-02-25 17:03:41.023',NULL),
('82c2a380-c89a-4beb-ba59-ed765263d701','1764a07b-eb47-4578-b6cd-f3c0d0e743be','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-20 16:06:19.222',3459,'47880255-08ee-4e99-940b-16038e07de55','ÜLKER SEPETÇİ','32477270955','32486710951','Belçika','1831','machelen','DOKTOR ALBERT SCHWEİTZERS 12 1831 MACHELEN BELÇİKA',10,2.5,120,'4786538','0','0',NULL,3350,0,'SARI ETİKET ','2025-10-20 16:08:21.639','2025-10-22 13:06:58.808',NULL),
('82d17384-1e37-4136-b61d-8ad262906c8b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-08 10:30:25.471',8096,'e6d4faef-484c-4ce7-992c-906e05fc083e','RADİA AL ADOUİ','31613050944','31628566081','Hollanda','HUİZEN ','1271','BATTERSTRAAT 90, 1271 XN HUİZEN/HOLLANDA',3,2.5,120,'644599754','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-03-08 10:39:40.073','2025-04-09 06:26:20.389',NULL),
('82d80e65-06fc-4494-86fe-0aa63b37337e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-25 08:20:16.823',4359,'e6d4faef-484c-4ce7-992c-906e05fc083e','BETÜL GÜNER','4917681316361','4917681316361','Almanya','KÖLN','51067','FLORENTİNE EİCHLER STR56',12,2,110,'644550858','0','0',NULL,700,1,'KIRMIZI ETİKET','2025-08-25 08:26:44.860','2025-09-09 12:51:01.121',NULL),
('82dc9888-ae2d-49d7-bb95-d6afb6ece526','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2024-12-21 08:32:10.278',4630,'47880255-08ee-4e99-940b-16038e07de55','ERSİN ÖZDEMİR','491722006500','5383780507','Almanya','KAMAN','59174','EBERTALLE 14 A 59174 KAMAN ALMANYA',0,1,100,'478995424','0','0',NULL,0,0,NULL,'2024-12-21 08:34:29.837','2025-01-01 10:54:46.155','2025-01-01 10:54:46.158'),
('82f2dc1e-58cf-4fd0-9936-e9927dc016f0','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-12 13:33:17.452',8342,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SADOUN ABDELKADİR','33663685576',NULL,'Fransa',NULL,'37000','13 RUE JEAN MESSİRE 37000 TOURS FRANSA',4,2,120,'221804377','4','4','Parfait ',450,1,'MAVİ ETİKETLİ','2025-03-12 13:37:17.587','2025-05-03 08:47:37.040',NULL),
('82f7f211-f2f7-4707-aaf2-eb58043e049c','89428e9c-4d02-45c3-a044-0b2a5ac2465d','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-05 11:02:51.486',6356,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','MEHMET KANBEROĞLU','491628599053',NULL,'Almanya','RADEVORMWALD','42477','DİETRİCH-BONHOEFFER- STR.17',12,3,110,'976441354','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-02-05 11:13:35.664','2025-02-18 17:24:25.088',NULL),
('8302f8df-382c-4f52-ab07-b0458d742a93','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-21 09:07:59.747',9247,'3c7190b6-f6ee-4275-8958-d7af952132ab','FATMA DUMAN','491773889396','491773889396','Almanya','HESSEN','61350','GLUCKENSTEİNWEG 170 B 61350 BAD HOMBURG HESSEN ALMANYA',9,3.5,110,'371696993','0','0',NULL,745,1,'MOR ETİKETLİ','2025-03-21 09:10:03.581','2025-04-07 17:19:01.106',NULL),
('830e197e-1aa8-4f6a-9f71-58048c60d7b5','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-12 07:36:32.013',1173,'47880255-08ee-4e99-940b-16038e07de55','ASLI ALTINTAŞ','33786958976','33643805773','Fransa','ARBENT','01100','14B RUE NEUVE 01100 EBENT FRANSA',16,2,130,'478775583','0','0',NULL,1000,1,'GRİ ETİKETLİ','2025-02-12 07:41:58.848','2025-02-28 12:03:55.924',NULL),
('8327f88c-b625-4fa3-872e-273fef27e498','394112c3-f977-4fc2-b430-775e79e472ca','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-14 11:28:38.795',1942,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','LAMMARİ BAYA ','33627054551',NULL,'Fransa',NULL,'59192',NULL,1,2,140,'98232043','0','0',NULL,650,1,'MAVİ ETİKETLİ','2025-02-14 11:31:25.124','2025-02-28 12:03:31.414',NULL),
('833e1960-d162-4228-ac7a-54bd28d48049','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-06 19:21:58.615',9743,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Emek thibaut agit','33788243398',NULL,'Fransa','Marsille','13015',NULL,6,8,140,'982292057','0','0',NULL,3490,1,'MOR ETİKETLİ','2024-11-06 19:23:42.449','2024-11-25 09:20:39.164',NULL),
('834b59f5-b6eb-4131-ba77-6e6e2220713b','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-01 10:01:40.465',9261,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','KADER KAVAL ','4917670174690',NULL,'Almanya',NULL,'50765','AM BRAUNSACKER 19\n',16,3.5,110,'817213476','0','0',NULL,675,1,'KIRMIZI ETİKETLİ','2025-05-01 10:03:43.871','2025-06-05 12:35:52.359',NULL),
('834cc505-c304-4e3e-8d96-1e57f8a7cd48','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-07 11:44:12.440',1646,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','REMZİYE UNAT','49163348754','','Almanya','HEUSENSTAMM','63150','LEİPZİGER RİNG 23',3,4.5,100,'976898541','0','0',NULL,1300,1,'PEMBE ETİKETLİ','2024-10-07 11:45:40.884','2024-10-24 19:09:25.282',NULL),
('834f05c9-ba0b-4030-8950-1efd86d43ae1','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-23 13:19:39.376',9834,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ARZU ÜNLÜ','491775901111',NULL,'Almanya','LİLİENWEG','53840','LİLİENWEG 14 53840 TROİSFORD',19,2,110,'319829855','0','0',NULL,300,1,'GRİ ETİKETLİ','2025-04-23 13:21:56.696','2025-05-10 20:14:00.361',NULL),
('83523717-3c96-466b-bee7-e0dfa2259e82','5c723cdc-e582-4b00-8271-838c085984c2','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-12 13:37:52.249',8839,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','PINAR SALMA','4917646295086','5451801422','Almanya',NULL,'71067','PFARRWIESENALLEE 49 71067 SINDELFINGEN ALMANYA',24,2,105,'745687103','0','0',NULL,700,1,'SARI ETİKETLİ','2025-02-12 13:42:34.783','2025-03-04 20:47:52.542',NULL),
('835863ce-70ff-4b53-b486-a32e6936cae4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-12 09:07:02.027',3194,'4126da30-ba9b-41b7-be29-865069aa484c','EURO MOBEL','491639801426',NULL,'Almanya',NULL,'41539',NULL,10,2,0,'412218985','0','0',NULL,875,1,'PEMBE ETİKETLİ','2025-07-12 09:08:50.006','2025-07-26 08:29:57.892',NULL),
('835a9700-3c1e-47b8-bbf6-cfa3c91675b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-10 11:59:44.526',1036,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','REYHAN BİLDİRİCİ','31681743936','','Hollanda','LAHEY','','',6,4,100,'3198601','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2024-05-10 12:01:43.543','2024-06-10 13:50:55.810',NULL),
('835e4364-d826-4aea-9a85-7df6a6777f74','eccfe611-9163-42aa-a1ff-e711af0248e6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-15 06:59:33.623',10867,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ASMA SOULTANA ','4917631605482',NULL,'Almanya',NULL,'58089','WORTHERBRUCHSTR 1 , 58089 HAGEN ',1,2,110,'221854185','0','0',NULL,420,1,'AÇIK MAVİ ETİKET ','2025-09-15 07:01:26.896','2025-10-20 06:32:55.986',NULL),
('837cee4f-9e79-4aa8-b135-399bc5f2e9ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 11:15:01.339',6765,'4126da30-ba9b-41b7-be29-865069aa484c','ULRİCH RİECK SÖHNE','491723113867',NULL,'Almanya',NULL,'14979',NULL,13,2,0,'41279166','0','0',NULL,2950,1,'GRİ ETİKETLİ','2025-02-27 11:41:40.902','2025-03-21 17:17:29.974',NULL),
('8385b6e4-e1a2-43de-b257-e53a890a4c6b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-25 08:41:34.706',2143,'3c7190b6-f6ee-4275-8958-d7af952132ab','NERMİNA SKENDERİ','491732013160','491732013160','Almanya','SİNDELFİNGEN','71063','HİRSAUER STRABE 5 71063 SİNDELFİNGEN ALMANYA',19,3.5,110,'371749484','0','0',NULL,790,1,'açık mavi renk','2025-06-25 08:43:17.144','2025-07-07 06:55:17.755',NULL),
('83a7db81-f98d-4f51-a534-ec63e6d9784b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-08 17:55:54.609',6223,'c2d4ce84-536d-4816-837f-7abbf6a7e061','HOLLANDA','1111111111111111',NULL,'Hollanda',NULL,'3117',NULL,4,1,0,'248602682','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-08 17:56:40.530','2024-11-16 21:34:13.030',NULL),
('83b46886-5368-4d6c-8779-63f4585588f3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:56:26.664',8155,'73596a75-b658-4249-8c71-b0490654bc8b','YAKUP TEKE','00491732783896',NULL,'Almanya',NULL,'69151','HERMANN WALKER STR.16',18,1,0,'735565748','0','0',NULL,0,0,'SİYAH PALETLER','2024-12-28 14:57:21.153','2025-01-06 20:08:12.782',NULL),
('83b6fa22-325d-4428-9f65-24d93d1dbfb4','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-04-25 09:13:16.226',8038,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÖZGÜR GÖKÜZÜM','31642750576',NULL,'Hollanda',NULL,'1504','JASPERSSTRAAT 112 , 1504 GJ ZAANDAM',7,2.5,120,'22142813','0','0',NULL,1200,1,'MAVİ ETİKETLİ','2025-04-25 09:15:45.915','2025-06-06 17:35:55.146',NULL),
('83bacbe4-57a3-4420-afeb-27d135cfb375','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-07-28 11:05:08.129',8879,'59868701-abe4-4705-a7e6-d91c2c69262e','FERHAD MORİD','4917672523276','491787320573','Almanya',NULL,'22419','NETTELKRÖGEN 25, 22419 HAMBURG ALMANYA',2,3,110,'598188038','0','0',NULL,950,1,'TURUNCU ETİKET','2025-07-28 11:09:04.576','2025-09-16 06:34:33.584',NULL),
('83c15065-f7ee-4656-8aa9-c87a3e40a083','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-01-22 08:59:57.636',9985,'47880255-08ee-4e99-940b-16038e07de55','AHMET ÖZDEMİR','491776418748',NULL,'Almanya','42551','42551',' ALMANYA - 42551 VELBERT',0,2,105,'47843052','0','0',NULL,0,0,NULL,'2025-01-22 09:02:17.985','2025-01-26 10:23:10.703','2025-01-26 10:23:10.706'),
('83dcfa57-e33d-46e2-b78c-ed99b59bfc16','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-09 08:07:33.522',9655,'3c7190b6-f6ee-4275-8958-d7af952132ab','ELÇİN ÖZDEMİR','4915734900369','4915734900369','Almanya','UHİNGEN','73066','ULRİCHSTRABE 6 73066 UHİNGEN ALMANYA',25,3.5,110,'371860514','0','0',NULL,790,1,'BEJ ETİKETLİ','2025-04-09 08:11:43.929','2025-04-24 15:01:32.170',NULL),
('83fe2028-17f9-4b82-a141-f935042a08dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-30 13:56:35.445',10411,'1a63399e-9dca-4c70-be0e-e8e8a874b582','MURAT BEY','31625064385',NULL,'Hollanda',NULL,'5684','DE WAAL 2E',4,7.5,110,'16334418','0','0',NULL,1550,1,'TAÇ YAZILI KOLİLER','2024-10-30 14:01:27.906','2024-11-12 16:17:22.577',NULL),
('84050b65-b4a8-4360-a13e-ee8cc50aef3b','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-16 10:54:55.347',9231,'22a1dbd6-475c-4d4b-bb13-f459e3029634','TALL YOANN','33642364836',NULL,'Fransa',NULL,'44119','35 ROUTE DE LA ROCHERE 44119 GRANCHAMPS DES FANTAİNES',1,2.5,130,'221132707','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-01-16 10:56:53.120','2025-02-15 05:21:52.903',NULL),
('8411debd-d339-4324-8e6e-8d3b1d031e43','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:04:48.419',3958,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FURKAN GÜNEŞOĞLU','436767024629','','Avusturya','HALL IN TIROL','6060','INNSBRUCKER STRASSE 8',6,1,120,'74532550','0','0',NULL,2000,1,'TURUNCU ETİKETLİ','2024-09-18 21:06:41.447','2024-09-26 15:55:21.569',NULL),
('842ba9cb-4346-4cb2-a708-1b2d3e7d839f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','17587478-e8f1-4fbe-afd1-d9025c9583a4','2024-10-23 15:10:57.478',6103,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MURAT YILMAZ','33760923065','33757676315','Fransa',NULL,'13003',NULL,1,1,110,'223440405','0','0',NULL,0,0,NULL,'2024-10-23 15:12:10.616','2024-11-08 16:31:03.162',NULL),
('846144fe-95bb-4d2a-83ea-4552d599f458','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-15 07:22:41.583',4518,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÖZCAN ŞAHİN','49795927502','491752984134','Almanya','WOHFAHRT','86343','BGM WOHFAHRT STR33A ',25,3.5,110,'644589662','0','0',NULL,650,0,'TURUNCU ETİKET ','2025-10-15 07:26:41.938','2025-10-22 13:06:42.959',NULL),
('849dc3bf-f8cd-4d56-b754-d79724b3a46a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-08 16:38:09.644',6805,'47880255-08ee-4e99-940b-16038e07de55','ÖZGÜR BAY','33640248237','33640248237','Fransa','LOYATTES','01360','5İMPASSE GEORGES BRASSENS 01360 LOYATTES FRANSA',8,2,130,'47833977','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-04-08 16:41:15.191','2025-04-25 09:52:43.474',NULL),
('84a619fc-ad14-46ac-8e5d-a6ee1d4d043a','622ce64a-aa43-475c-929c-9298491d72d5','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-16 11:00:22.744',6673,'e41c8c53-684c-4376-8162-2e589c44b742','SİNGH PERWİNDEJİT','33613393054',NULL,'Fransa','LE BLANC MESNİL','93150','21 RUE MAXİME GORKİ\n93150 LE BLANC MESNİL',10,2.5,120,'418120869','0','0',NULL,1000,1,'(mavi renk)','2025-05-16 11:05:41.135','2025-08-05 13:05:06.871',NULL),
('84ead5c5-3c6f-4c94-bfaf-62c790476a67','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-06-13 10:00:23.654',5727,'4126da30-ba9b-41b7-be29-865069aa484c','SERDAL','32484767015','','Belçika','MERCHTEM','1785','HOLBEEK',1,52.5,0,'412586204','0','0',NULL,5500,1,'GR İETİKETLİ','2024-06-13 10:14:51.241','2024-07-18 07:32:21.073',NULL),
('85071203-536b-4dca-b6ab-eb378a6c9c05','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-12 11:14:49.993',1791,'e6d4faef-484c-4ce7-992c-906e05fc083e','HİLAL DEMİR','436508346455','4369911340501','Avusturya','TİROL','6410 TELFS','SOGLSTRABE 28A',16,3.5,120,'644145142','0','0',NULL,800,1,'AÇIKMAVİ ETİKETLİ','2025-05-12 11:21:24.635','2025-05-23 14:06:55.651',NULL),
('850c1c4c-b08c-4669-954f-2e95f85d66d8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-16 07:07:20.775',3288,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','HANEFİ ALİOĞLU','491739901545','','Almanya','BESTWİNG','59909','LUDWİNG STR 4',1,7,100,'501667618','0','0',NULL,2000,1,'KIRMIZI ETİKETLİ','2024-09-16 07:21:11.518','2024-10-05 11:44:26.302',NULL),
('8551d3c1-420d-41bd-a461-00738dd54bda','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-22 07:53:08.188',10904,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ŞERAFETTİN KOYUNCU','33609428610',NULL,'Fransa',NULL,'69680','19 RUE MAURİCE RİBAUD 69680 CHASSİEU',0,2,130,'221817193','0','0',NULL,570,0,NULL,'2025-10-22 07:54:49.930','2025-10-27 08:08:51.365',NULL),
('8559ffd8-49b0-421d-ad48-3ec35e2083d7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 07:01:50.723',4243,'d3157cbd-9f22-499b-b371-4eff6e509b92','TEKİN ÇİLLİ','436503601028','','Avusturya','DORNBİRN','6850','BİRKENWİESE 52',10,1,120,'315959949','0','0',NULL,700,1,'','2024-05-10 07:02:58.849','2024-05-29 18:58:20.404',NULL),
('855d2794-7066-4b47-b159-2cf8816867f4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 11:56:19.362',3425,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SEVGİ YILMAZ','4915170072402','','Almanya','ERGOLDSBACH','84061','ROTTENBURGER STR.13',0,1,100,'97677559','0','0',NULL,550,1,'KIRMIZI ETİKETLİ','2024-10-17 12:04:31.175','2024-10-23 16:38:04.049',NULL),
('8561441c-71d3-4fdc-b62c-38b9d59e21bd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-24 12:02:10.367',9906,'e6d4faef-484c-4ce7-992c-906e05fc083e','HÜSEYİN ÇELEBİ','31636286991','31640226281','Hollanda',NULL,'5931TA','ZWANEBLOEM 11',15,2,120,'644576493','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-04-24 12:07:41.191','2025-05-01 09:52:31.774',NULL),
('8583f2b4-5e34-4b29-b37d-c779a2102d5c','5c723cdc-e582-4b00-8271-838c085984c2','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-06-19 09:21:18.460',5804,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METİN PEKSERT SSH ','4915752948798','4977219162688','Almanya',NULL,'78050','WILLINGEN SCHWNNINGEN 78050 ALBAH DOLD STRABE 14 ALMANYA',14,2,105,'74597110','0','0',NULL,0,0,'KIRMIZI ETİKET SSH','2025-06-19 09:21:15.674','2025-08-28 18:20:12.204',NULL),
('85a61e83-6a63-4ba3-be2f-7f76b267dcef','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-18 12:13:54.650',4926,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','İBRAHİM PİLİG','4917630360547',NULL,'Almanya','ESSEN','45327','FARREN BRIİCH 3 ',13,4,110,'531724547','0','0',NULL,825,1,'MOR ETİKETLİ','2025-04-18 12:16:13.107','2025-05-13 09:05:13.396',NULL),
('85b0f72f-07ea-48eb-90eb-1dd0abae2a87','df0d8353-2caa-413c-9f14-b01af77df00b','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-30 07:29:17.119',10652,'4126da30-ba9b-41b7-be29-865069aa484c','DERMAN YATAK MURAT ÇAYAN','4917630326860',NULL,'Almanya',NULL,'44267','HOLZENER STRABE 9',10,6.5,0,'412913992','0','0',NULL,2850,1,'BEJ ETİKETLİ','2025-04-30 07:42:38.111','2025-05-13 09:05:45.760',NULL),
('86130e7b-5d28-4a62-afa7-9f16bc13cc42','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 14:53:25.101',10915,'fd2f8958-dabf-4d4a-a10e-62713178bf3b','GHASAN ALBUKAİ','4917684656802','','Almanya','','90441','İNDUSTRİESTRABE 19',0,1,0,'289392695','0','0',NULL,0,0,'BEYAZ MDFLER VE UFAK POŞET','2024-08-20 14:54:54.952','2024-08-31 18:15:48.180',NULL),
('8626893e-4c0a-4e99-966b-8b12a8482815','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-17 12:07:25.025',9727,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','1111111','1111111111111',NULL,'Almanya',NULL,'1111',NULL,0,5,0,'02713231','0','0',NULL,0,0,NULL,'2024-12-17 14:54:58.380','2024-12-17 17:56:37.611','2024-12-17 17:56:37.614'),
('862c3997-124c-487c-86b2-4bc8c8575b1f','89428e9c-4d02-45c3-a044-0b2a5ac2465d','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-20 06:24:33.117',10447,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ŞEVKİ MORİNA','491732811270',NULL,'Almanya','KÖNGEN','73257','OBERE NEUE STR. 19 KÖNGEN / STUTGART',16,3.5,110,'976765698','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2025-05-20 06:39:28.344','2025-06-17 16:02:34.544',NULL),
('862e4bdc-2e76-4b0a-b6fc-8557101a2020','1764a07b-eb47-4578-b6cd-f3c0d0e743be','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-26 07:26:09.917',10124,'47880255-08ee-4e99-940b-16038e07de55','İLHAM SEVAL İNDİRME','491636081743','491629284220','Almanya','BRÜHL ','50321','SCHÖÖFEN STR 12  50321 BRÜHL ALMANYA',25,4,105,'478259590','0','0',NULL,5300,1,'YEŞİL ETİKETLİ','2025-06-26 09:27:52.584','2025-07-17 14:40:44.021',NULL),
('8634d29b-6164-4e3e-a0b9-d50827c18702','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-06 09:03:19.289',3562,'3c7190b6-f6ee-4275-8958-d7af952132ab','SELÇUK SÖNMEZ','4915222621206','4915222621206','Almanya','DİETENHEİM','89165','BRECHTSTRASSE 24 89165 DİETENHEİM ALMANYA',23,2,110,'371183095','0','0',NULL,700,1,'AÇIK MAVİ ETİKET','2025-10-06 09:07:09.193','2025-10-22 06:59:54.604',NULL),
('863a4d29-ce12-4697-a15e-977449f015c7','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:15:19.493',5913,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','GAZEL AĞAÇKIRAN','491742764385',NULL,'Almanya',NULL,'29699','AUF DER MEİNTE 6',7,4,100,'126908301','0','0',NULL,2200,1,'KIRMIZI ETİKETLİ-ÜRÜNLER SONRADAN GELDİĞİ İÇİN ARKAYA YÜKLENDİ','2024-12-20 12:26:48.638','2025-01-09 16:52:13.614',NULL),
('864782d3-b9d9-42bb-b370-cce193db468b','313cc2e2-5529-49ab-abe5-27b5d390bc5f','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-02 11:05:46.916',1857,'6133a2db-79c4-4372-9338-505db46b1847','MEHMET GÖK','4915222634759','4915117328553','Almanya','PEİNE','31224','WOLTORFER STR. 2A',11,2,110,'613420026','0','0',NULL,375,1,'BEYAZ ETİKETLİ','2025-04-02 11:07:55.211','2025-05-07 16:52:05.546',NULL),
('86489c05-a1b1-45e7-87e0-efdf57f77ac9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-22 13:05:44.239',9913,'e6d4faef-484c-4ce7-992c-906e05fc083e','TUĞBA GÜLSEVEN SSH','4915784616270','491626393170','Almanya','SELTERS','56242','TUGBA GÜLSEVEN\nHEİMATSTRASSE 20A\n56242 SELTERS\n004915784616270\n00491626393170',20,2,110,'644860505','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-05-22 13:09:53.146','2025-06-05 12:35:12.685',NULL),
('866ff076-12a1-4d7b-8ebc-b64544beb08e','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-09 10:30:44.239',4911,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OKTAY SAMET ŞAHİN SSH ','4915568542682','491738569767','Almanya',NULL,'63755','BRENTANOSTRABE 17 63755 ALZENAU ALMANYA',0,2,105,'745693868','0','0',NULL,0,0,NULL,'2025-10-09 10:31:04.670','2025-10-23 08:44:00.786',NULL),
('86762eef-fd62-4b28-b589-b418608643f9','8fff5e14-418c-4377-bd83-3a3f81383507','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-17 11:36:47.437',2666,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','CEYDA KARA','4915233653344',NULL,'Almanya','KARLSTADT','97753','ARNSTEİNER STR 18',24,2,110,'437791163','0','0',NULL,350,1,'KREM ETİKETLİ','2025-03-17 11:39:04.299','2025-04-05 13:45:44.467',NULL),
('868fcd34-4588-4ed6-8571-a4e5a094c6c8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-04 14:59:13.726',10147,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','ELİF KELEŞ','491778507163','','Almanya','SİEGEN','57074','KNOPS STRABE 13',2,4,100,'455460659','0','0',NULL,0,0,'SARI ETİKETLİ','2024-09-04 15:00:32.069','2024-09-12 10:54:20.815',NULL),
('86d586d7-1a49-47d7-bf34-7486f84a12e5','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-09-25 09:50:56.693',3632,'dea91080-5383-4085-af2e-7eace2c64224','ÖZDEMİR YAKAN		','4917643489874','491747474640','Almanya',NULL,'49086','BREMER STRABE 242 49086		\n',0,2,110,'910752431','0','0',NULL,0,0,NULL,'2025-09-25 09:51:47.716','2025-09-25 10:44:54.621',NULL),
('86e9c1bc-01b8-4214-96d5-1341c7ccec82','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-01-13 11:09:18.014',9761,'dea91080-5383-4085-af2e-7eace2c64224','RUKİYE EKERBİÇER ','11111111111',NULL,'Almanya',NULL,'111',NULL,0,2.5,0,'91022025','0','0',NULL,0,0,NULL,'2025-01-13 11:11:01.926','2025-01-23 10:20:31.112','2025-01-23 10:20:31.115'),
('87226e30-fe1d-481b-8c10-e309459138ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-22 20:29:25.253',6021,'27cbce83-310c-4e98-830f-7433b10c2efd','ABBAS ARSLAN','436644579917',NULL,'Avusturya',NULL,'6973','HAUPTSTRASSE 10/3',6,3.5,120,'278440694','0','0',NULL,970,1,'MOR ETİKET','2025-08-22 20:31:07.712','2025-08-30 18:26:03.668',NULL),
('875f12e4-f0f5-47f9-bf4e-6f63cb2a1014','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 08:44:54.507',10160,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','HABTEMARIAM BIZEN','41764965010','','İsviçre','ZÜRİCH','8152','INDUSTRIE STRASSE 21',2,6,140,'126908886','0','0',NULL,0,0,'Yeşil etiketli\nÖdeme yok','2024-05-11 08:49:08.905','2024-05-29 11:18:06.619',NULL),
('8772de92-e350-425f-a8eb-0c7d440b804f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-24 10:49:16.594',1212,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','AAAAAAAAA','11111111111',NULL,'Fransa',NULL,'54280','12 RUE DE JARDİNETS',7,5.5,0,'45592606','0','0',NULL,8000,1,'YEŞİL ETİKETLİ','2024-12-24 11:08:41.747','2025-01-09 16:52:37.594',NULL),
('877feceb-dcee-4240-b3d0-2096978d9783','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','b624c770-5cbb-488e-8512-45ad975a729d','2024-11-28 08:30:24.578',3985,'a42d8839-caef-4422-888f-cbfdf4188c5b','ŞÜKRÜ AKSOY','491634257044','491634257044','Almanya',NULL,'94 86165','DERCHİNGER STRASE 94 86165 AUGSBURG',23,3.5,100,'428390036','1','5','Tir çok kotü yüklenmiş yüklenmeyen dolayı üçlü koltugumda hasar görmüş ve bu çözülmedi sandalyeler 2 tanesi yüklendi denildi bana ama yüklenilmemisti ',0,0,'BEJ RENK ETİKETLİ','2024-11-28 08:33:37.486','2025-01-09 13:06:46.013',NULL),
('87929b1a-65a1-4766-84ad-495ee7ffcb70','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-07-02 08:15:22.342',8095,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','','','Almanya','MAULBRONN','75433','KEPLER STB 35',5,1,0,'248450889','0','0',NULL,850,1,'PEMBE ETİKETLİ','2024-07-02 08:17:08.538','2024-07-16 05:12:00.272',NULL),
('87a56817-1368-4494-92c1-074a6979a4b8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-10-01 13:14:28.219',10114,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','SEMA PALA ','33698869736',NULL,'Fransa',NULL,'38230','101 CHEMİN DE PASSİEU 38230 TİGNİEU JAMEYZİEU',7,3,130,'515747086','0','0',NULL,455,1,'AÇIK KAHVE ETİKET ','2025-10-01 13:17:13.840','2025-10-15 20:06:25.460',NULL),
('87c55df7-f40e-45d7-a3d5-773c1c5084ea','eccfe611-9163-42aa-a1ff-e711af0248e6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-24 08:53:10.828',7503,'22a1dbd6-475c-4d4b-bb13-f459e3029634','M.CEDRİC KLEINDIENST','33617127634','33778663770','Fransa',NULL,'68110','12 RUE DU CANAL, 68110 ILLZACH ',10,3,120,'221850151','0','0',NULL,1380,1,'AÇIK KAHVE ETİKET','2025-07-24 08:55:55.282','2025-08-29 16:53:24.935',NULL),
('8828af70-12d3-4a54-b004-b8bbbeafa45f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-23 12:03:46.657',5577,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT AKTAŞ','31625064385',NULL,'Hollanda',NULL,'5684',NULL,5,2,0,'412842533','0','0',NULL,1160,1,'TAÇ YAZILI KOLİLER','2025-02-23 12:10:33.299','2025-03-08 13:58:02.373',NULL),
('8839e4d9-61c1-44f2-8680-b2634a2b4923','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-27 10:17:37.648',5736,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SUMMSTOFF IMKEGENOSSENSCHAFT','354646466464444',NULL,'Almanya',NULL,'49479','IBBENBÜRENER SRABE 88',0,2,110,'248243194','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-02-27 10:22:41.680','2025-03-21 17:17:29.974',NULL),
('88508694-0e8b-4ee8-a819-7c218ab0cce7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 09:00:51.021',10294,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MURAT MAKAS','04917737377373',NULL,'Almanya','AUGSBURG','86165','STATZLİNGER STR 66',7,1,0,'248764146','0','0',NULL,490,1,'MAVİ ETİKETLİ','2024-10-23 09:02:40.846','2024-10-30 18:09:35.878',NULL),
('8865fcd1-2596-4520-a0ad-0e0afe35a700','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-04-24 08:17:10.434',3425,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MURAT YALIN','','','','','','',0,5,0,'501589922','0','0',NULL,0,0,'','2024-04-24 08:23:58.915','2024-04-27 08:06:47.685','2024-04-27 08:06:47.691'),
('887939c6-c572-4048-9ec2-13b2ba75c706','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-16 09:44:28.600',10393,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SEVDA ÇAYLAK','4915231306886','','Almanya','ERLANGEN','91052','JOHANN KALB STR 3',0,6.5,100,'449475255','0','0',NULL,1800,1,'SARI ETİKETLİ','2024-09-16 09:54:07.779','2024-10-04 16:05:12.736',NULL),
('887d1301-8182-4254-93e6-73d1ecf6af40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:11:09.686',9406,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HASSAN HUSSEİN','4917680868263','','İsviçre','MÜNCHWİLEN','4333','BUSTEL STRASSE 2B',7,1,140,'976494428','0','0',NULL,700,1,'MAVİ ETİKETLİ','2024-09-18 21:15:33.877','2024-09-26 15:55:12.342',NULL),
('8886c04f-f904-4e77-a2f1-25b72bcd1e91','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-05 11:17:17.084',6830,'e6d4faef-484c-4ce7-992c-906e05fc083e','ÖMER VAROL(K)','4917657744267','4917615735547','Almanya','NEUWİED','56566','BENDORFERSTRASSE 24',23,4.5,110,'644714925','0','0',NULL,945,1,'AÇIK KAHVE ETİKET ','2025-09-05 11:25:45.444','2025-10-17 06:14:50.623',NULL),
('888c1a17-6ddc-4bc8-b1ab-b00d72942811','796d8b7b-662b-493a-8d3f-78c3ae052712','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-06 11:52:55.785',3398,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','BÜLENT KILIÇ','4917623973787','491785627372','Almanya','BERLİN','12351','PLZ GEMEİNDE , GGF , ORTSTEİLE STRABE ,HAUSNR ,ADRESSIERUNGSZUSATZE',16,5.5,110,'817682643','0','0',NULL,945,0,'AÇIK MAVİ ETİKET','2025-10-06 11:57:46.913','2025-10-20 07:18:02.414',NULL),
('88a13537-ee7e-4373-9a6b-9ad389c583a7','8fff5e14-418c-4377-bd83-3a3f81383507',NULL,'2025-10-08 13:28:11.673',3065,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ALİ KURUÇAM','4367763453759',NULL,'Avusturya','VORADBERG','6890','BRUGGER WİESEN 9A',0,2,120,'437465500','0','0',NULL,0,0,NULL,'2025-10-08 13:32:59.445','2025-10-14 07:21:06.426',NULL),
('88ac5034-c866-4cfd-9646-8c2316ae0024','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-27 07:19:10.879',4678,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELEK IŞIK SSH','4917676864801','4915783856117','Almanya','WUNSTORF','31515','BARNE STRASSE 73',1,2,110,'644452767','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-06-27 07:22:55.308','2025-07-26 16:11:30.132',NULL),
('88cc6a24-35a3-4b23-8747-59b47b080f1a','eccfe611-9163-42aa-a1ff-e711af0248e6','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-24 10:57:03.698',3215,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ISENİ ELMEDİNA ','41795226139',NULL,'İsviçre',NULL,'1040','PRES DU RECORD 27,1040 ECHALLENS',9,2,140,'221967241','5','5','3215',900,1,'AÇIK MAVİ ETİKETLİ','2025-07-24 10:59:30.695','2025-08-02 22:07:05.933',NULL),
('88d46ad5-3201-49c1-bafb-3c271a911158','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','acf5e984-44c0-4233-9521-0c373102472f','2024-12-09 13:37:12.003',10575,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','EYÜP KIZILASLAN','33770349060',NULL,'Fransa',NULL,'77410','4 RUE D ANJOU',1,10.5,110,'655919587','0','0',NULL,1560,1,'KIRMIZI ETİKETLİ','2024-12-09 14:06:19.379','2024-12-24 12:30:41.043',NULL),
('88e3316c-4816-449f-a946-ceba121ee2bb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:31:44.726',8121,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KAMEL NECBA','33646220992','','Fransa','CREUSOT','71200','5 RUE MARECHAL LECLERC',7,1,110,'745849265','0','0',NULL,0,0,'MOR ETİKETLİ','2024-09-28 15:43:42.385','2024-10-09 15:39:01.142',NULL),
('88e73e43-dac2-4ecf-ab5a-8fb52d544ece','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','bd143f82-77da-4c1d-9d90-001698b828cf','2025-07-31 08:15:22.240',10176,'3c7190b6-f6ee-4275-8958-d7af952132ab','DERYA BAYRAK','491747765301','491747765301','Almanya','OFFENBACH AM MAİN','63071','FRİEDENSSTRABE 10, 63071 OFFENBACH AM MAİN ALMANYA',21,2,110,'371180149','0','0',NULL,800,1,'PEMBE ETİKET','2025-07-31 08:17:18.706','2025-09-10 07:24:12.131',NULL),
('88f68865-5f11-4a8f-8f8d-1e298ec5ff03','5c723cdc-e582-4b00-8271-838c085984c2','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-13 11:16:47.179',5818,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YASEMİN YAŞA','4915208904469','4917645789684','Almanya',NULL,'76137','MORGENSTRABE 32 76137 ALMANYA',15,2,105,'745818939','0','0',NULL,1700,1,'TURUNCU ETİKETLİ','2025-03-13 11:18:46.699','2025-04-05 20:39:01.049',NULL),
('88f84531-ef49-42b4-ba11-ad770eba8aa1','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-08-25 14:30:46.044',3087,'59868701-abe4-4705-a7e6-d91c2c69262e','MUSTAFA KELEŞ','4917687972563','4917449179710','Almanya',NULL,'78244','KOTİLBERGWEG 20, 78244 GOTTMADİNGEN ALMANYA',12,5,110,'598263441','0','0',NULL,2350,1,'AÇIK MAVİ ETİKET ','2025-08-25 15:21:03.566','2025-10-09 09:24:52.646',NULL),
('89246671-a5c1-446d-bc5e-be3c518b5d0e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 07:27:23.252',7802,'47880255-08ee-4e99-940b-16038e07de55','EDİZ DİNLER','33621633706','33744724088','Fransa',NULL,'95380','4 RESİDENCE ANDRE MALRAUX LOUVRES FRANCE PARİS 95380',0,2,130,'478989383','0','0',NULL,1500,1,'PEMBE ETİKETLİ','2025-04-24 07:30:08.410','2025-05-22 15:23:37.163',NULL),
('895e1a54-1679-4334-a0d8-1b1901c592a5','5c723cdc-e582-4b00-8271-838c085984c2','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-13 11:18:41.866',5924,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BERKANT YAŞA','4917645789684','4917672239456','Almanya',NULL,'76137','KARLSRUHE RÜPPURER STRABE 75 76137 ALMANYA',16,2,105,'745717474','0','0',NULL,2400,1,'SARI ETİKETLİ','2025-03-13 11:23:44.066','2025-04-05 20:38:56.958',NULL),
('8970c6df-ded4-4e10-a476-faa9d8e3a4df','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 10:00:08.435',7846,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HAKIMI MUSTAFA','33767299223',NULL,'Fransa',NULL,'67200',NULL,19,2,140,'982742157','0','0',NULL,2400,1,'MAVİ ETİKETLİ','2025-02-07 10:01:29.438','2025-02-27 10:12:54.875',NULL),
('8974646e-d2f4-461a-a229-980f5d4d3462','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-01 10:35:42.827',3321,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','SALAM KORKMAZ','4915737537059',NULL,'Almanya','BONN','53119','THUARSTRASSE 31, 53119 BONN',5,6,110,'531445058','0','0',NULL,1600,1,'MOR RENK','2025-07-01 10:37:13.311','2025-07-29 18:00:33.036',NULL),
('89bb7b3f-2e28-43eb-a568-761a34765b3e','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-03-25 09:37:13.031',6794,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN','1113232332323323',NULL,'Belçika',NULL,'9255',NULL,0,2,120,'703914684','0','0',NULL,0,0,NULL,'2025-03-25 09:37:53.980','2025-04-11 07:59:38.188','2025-04-11 07:59:38.195'),
('89c7af9b-6049-4f3e-9b7a-1672824189c6','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-10 14:20:19.974',5263,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MARİNELA MARİNKOVİC','4917670037980','4917677017660','Almanya','NEULUSSHEİM','68809','WAGHÄUSELER STR. 62/2\n68809 NEULUSSHEİM',27,2,110,'505948491','0','0',NULL,730,1,'GRİ ETİKET','2025-08-10 14:23:40.910','2025-09-04 06:16:16.063',NULL),
('89eb6491-3e20-44a2-80d5-2107251a822e','5c723cdc-e582-4b00-8271-838c085984c2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-04-21 09:54:07.839',6954,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERCAN VARSAK','4917632298382','4917662248908','Almanya',NULL,'21481','AM SCHÜSSELTEICH 8 21481 LAVENBURG ALMANYA',1,2.5,105,'745318139','0','0',NULL,1300,1,'MOR ETİKETLİ','2025-04-21 09:57:48.162','2025-06-07 14:08:05.782',NULL),
('89edfd24-71a4-4e25-8532-ca78ef0bdca4','eccfe611-9163-42aa-a1ff-e711af0248e6','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-06 09:26:44.694',9007,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ASHLEY BLANCO RODRİGEZ','33664842794',NULL,'Fransa',NULL,'44160','1 ALLEE DES GENETS LORİE ANLANTİQVE 44160 BESNE ',1,2.5,130,'221417545','0','0',NULL,1350,1,'SARI ETİKETLİ','2025-03-06 09:29:01.198','2025-03-29 21:27:35.583',NULL),
('89f250d7-ea03-4dad-b40b-0dd01296a0ce','8fff5e14-418c-4377-bd83-3a3f81383507','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-12 09:16:25.197',6815,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','AHU KARUÇ','32495776498',NULL,'Belçika','FORCİENNES','6240','RUE JULES DESTREE 36',9,6.5,120,'437786734','0','0',NULL,2000,1,'SARI ETİKET','2025-08-12 12:24:08.624','2025-09-03 19:36:18.881',NULL),
('8a01daee-3535-4440-8996-fc7c3e2f3de0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 06:48:58.488',5777,'47880255-08ee-4e99-940b-16038e07de55','YÜKSEL KILIÇ','33749069844','','Fransa','TOULUSE','81100','18 RUE BAPTİSTE MARCET',18,7,110,'478339779','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2024-03-16 06:53:00.564','2024-04-01 07:52:44.960',NULL),
('8a185dc3-3990-4ba8-b87e-5f39ac4b1643','31fcb6ec-2c6c-46d9-ab3b-a7347a37477e',NULL,'2025-10-10 11:20:42.712',7613,'1c402ba0-2fcc-4b19-b28c-bd6071805ddd','SAMAR OSMAN','436606309922',NULL,'Avusturya','STRASSHOF AN DER NORDBAHN','2231','GUSTAV MAHLER STRASSE 50\n2231 STRASSHOF AN DER NORDBAHN \nÖSTERREİCH',0,2,120,'140284101','0','0',NULL,0,0,NULL,'2025-10-10 12:16:33.871','2025-10-23 12:23:41.851',NULL),
('8a3a5949-7a42-4ac9-a011-34fadde1265c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:50:10.923',9278,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YUSUF YILMAZ','491723655773','4915257688907','Almanya','GÜNZBURG','89313','PARKSTRASSE 34',0,4.5,100,'745481313','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2024-03-16 08:52:12.067','2024-03-23 06:41:49.776',NULL),
('8a5420fd-ce6a-457f-b63e-64e4ffb57c77','bf6f92ba-eef7-4290-902d-b1bac86244bb',NULL,'2025-03-10 15:00:28.191',3208,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YUSUF KAYA - SSH','5337240755','32485432209','Belçika',NULL,'2060','ERWTENSTRAAT 47 2060 ANTWERPEN',0,2,120,'501396873','0','0',NULL,0,0,NULL,'2025-03-10 15:02:00.057','2025-03-27 07:10:30.885','2025-03-27 07:10:30.887'),
('8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-08 09:31:39.501',7431,'47880255-08ee-4e99-940b-16038e07de55','EMİN EKRAMOĞLU','33769000460','33769000460','Fransa',NULL,'67230','67230 FRANSA ',10,2,130,'478337610','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-05-08 09:34:02.729','2025-05-23 14:07:24.682',NULL),
('8aae14a6-2700-4220-893c-6329618c4b17','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','66307a01-d585-4127-903b-18748421c29e','2025-04-22 07:50:43.626',3747,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','NURŞEN ADACI','4369913555140',NULL,'Avusturya',NULL,'1100','HERNDLGASSE 19/4 1100 VİYANA AVUSTURYA',19,3.5,140,'8176511','0','0',NULL,700,1,'MOR ETİKETLİ','2025-04-22 07:58:29.794','2025-05-05 09:10:30.650',NULL),
('8ab9b43a-c91d-4cac-9d3a-646d10808a99','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-10-02 11:26:51.810',8240,'e6d4faef-484c-4ce7-992c-906e05fc083e','FATMA SILA KAÇAK','4369910088111','436602050348','Avusturya','WİEN','1160','OTTAKRİNGERSTR  159/40',22,3,120,'644194590','0','0',NULL,390,1,'SARI ETİKET','2025-10-02 11:34:01.293','2025-10-13 06:39:52.728',NULL),
('8ac11872-8b52-4d38-b53d-bc95257e76e8','89428e9c-4d02-45c3-a044-0b2a5ac2465d','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-17 07:12:30.202',1138,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ÖZKAN KUYUCU','4917624966741',NULL,'Almanya','UNTERHACHİNG','82008','SCHMORELLSTR 14',20,4.5,110,'976121570','0','0',NULL,1550,1,'yeşil renk','2025-06-17 07:48:31.394','2025-07-04 21:24:55.448',NULL),
('8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-24 08:24:35.366',8612,'47880255-08ee-4e99-940b-16038e07de55','YUSUF BARAN','4915773333260','5439765092','Almanya','DORTSEN','46284','MARTİN LUTHER STRABE 17   46284 DORSTAN ALMANYA',7,11,105,'478450171','0','0',NULL,1750,0,'TURUNCU ETİKET','2025-09-24 08:29:01.476','2025-10-25 08:59:16.419',NULL),
('8adca791-05c7-48d5-b055-a001bdaf2f29','05135cd5-2d33-4363-b51e-c9b83a94094d','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-16 06:22:46.194',8486,'47880255-08ee-4e99-940b-16038e07de55','YASEF İCEL','33642608703','33607954368','Fransa','KALTONHAUSE','67240','3 RUE ROSENFELD ',14,2,130,'478978353','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-09-16 06:23:49.994','2025-10-03 06:54:19.293',NULL),
('8afa44a9-611f-49db-a99e-d5e01b5689f2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-04 07:12:59.189',4032,'47880255-08ee-4e99-940b-16038e07de55','FATİH ÇELİK','33749990296','33616745884','Fransa','MONTFERİNEİL','93370','193 AVENEU JEAN JOURES 93370 MONTFERNEİL ',7,4,130,'478603328','0','0',NULL,1600,1,'TURUNCU ETİKET ','2025-09-04 07:15:12.246','2025-10-03 14:58:06.531',NULL),
('8b1f42c0-ccaa-4899-9782-c3ad13f853c3','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-27 07:27:14.712',3730,'47880255-08ee-4e99-940b-16038e07de55','MERYEM YUMURTACI','33623241491','33614374158','Fransa','AULNAY SOUS BAS ','93600','78 BİS RUE DU COMMANDENT BRAUSSER 93600 AULNAY SOUS BAS FRANCE',5,5,110,'478154934','0','0',NULL,2400,1,'YEŞİL ETİKETLİ','2024-11-27 07:29:58.990','2024-12-12 07:41:18.899',NULL),
('8b219963-3108-4a67-94f3-3bd88636e6f0','5c723cdc-e582-4b00-8271-838c085984c2','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-06 10:46:35.705',1879,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YASEMİN YILDIZ','491773384706','495449192315','Almanya',NULL,'17139','KARL DRESSEL STR 24 17139 MALCHIN ALMANYA',0,2,105,'745968655','0','0',NULL,500,1,'YEŞİL ETİKETLİ','2025-03-06 10:49:17.307','2025-04-05 17:48:17.433',NULL),
('8b65f877-ccbd-4d62-80e3-2d9c4c044d3e','5c723cdc-e582-4b00-8271-838c085984c2','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-02 15:31:39.357',7236,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HATİCE ÖZEN','4915152520496','4916091826970','Almanya',NULL,'86529','REICHENBERGER STR 2 86529 SCHROBENHAUSEN ALMANYA',4,2,105,'745734415','0','0',NULL,540,1,'KIRMIZI ETİKETLİ','2025-07-02 15:31:49.034','2025-09-03 06:12:05.456',NULL),
('8b8f439c-2dbf-40f1-a946-d37ea9c4566f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:18:06.608',1984,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','31687242352','','Hollanda','ALPHEN AAN DEN ','2403','DİAMANT STRAAT ',12,3.5,0,'248746135','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-06-08 07:20:23.361','2024-06-21 16:18:39.742',NULL),
('8c3b10ad-bfb3-4939-a407-5ebb29115ccb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:53:50.210',8160,'b734c482-3c00-4897-ad35-bc358cd02d56','HATİCE BOZKURT','033641874047','','Fransa','','69560','400 RUE DE VAUNOY',15,1,100,'734627626','0','0',NULL,400,1,'LİLA ETİKETLİ','2024-05-04 09:55:24.853','2024-05-21 18:46:13.114',NULL),
('8c4bc8b4-007a-4be3-80bf-25d53f48ebc3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-29 08:44:02.391',8908,'47880255-08ee-4e99-940b-16038e07de55','ÖMER KOLAT','41787614204','','İsviçre','','2300','CHAUX-DE FORD',4,1,140,'478733683','0','0',NULL,0,0,'','2024-05-29 08:45:16.597','2024-06-10 13:50:06.134',NULL),
('8c642f07-fecc-4e58-93cd-963c384ca41d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-05 13:56:02.836',8271,'73596a75-b658-4249-8c71-b0490654bc8b','MANGAL MÖBEL','00491727271107',NULL,'Almanya',NULL,'76437','KAPELLENSTRABE 4',14,1,0,'735340001','0','0',NULL,1100,1,'AÇIK MAVİ ETİKETLİ','2025-01-05 13:57:03.823','2025-01-09 10:06:17.575',NULL),
('8c7727ab-5a57-4d7e-9785-b58268d5cdaa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52c02271-6eae-4be1-a572-d97f124d470a','2024-06-14 09:20:29.879',5776,'47880255-08ee-4e99-940b-16038e07de55','VOLKAN ÖZKAN','33768933805','','Fransa','TOULOUSE','31300','12 RUE GİLBERT DEFER',1,1,110,'478702476','0','0',NULL,140,1,'','2024-06-14 09:22:10.238','2024-06-25 14:26:25.215',NULL),
('8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-12 10:57:55.078',4529,'a42d8839-caef-4422-888f-cbfdf4188c5b','NADİR KURUKOL','4915788014296','4917631419046','Almanya',NULL,'70327','NÄGELESÄCKER STR. STUTTGART(LUGİNSLAND)',19,11,100,'428752676','5','5','100',0,0,'SARI ETİKETLİ','2024-12-12 11:04:11.085','2025-01-06 20:08:12.782',NULL),
('8cb0e92a-0903-450a-b20f-cfe7f3f01dd1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-19 15:09:26.934',3565,'f23142ef-47ba-426c-9a22-bfb123cfac47','GALATA ','905076046290',NULL,'Almanya',NULL,'10555',NULL,14,2,110,'231717770','0','0',NULL,0,0,'BEJ RENK ETİKETLİ','2025-01-19 16:22:54.800','2025-01-28 20:44:54.688',NULL),
('8cb3e6c1-dad7-49e4-8443-0c03ea610bf7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:05:12.160',2078,'b734c482-3c00-4897-ad35-bc358cd02d56','TAHRİ TATAR','033751045942','','Fransa','MARSİLYA','13014','03 RUE BİSKRA ',21,9,100,'734380041','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2024-05-04 10:07:06.125','2024-05-23 08:25:25.620',NULL),
('8cc2607c-b005-4e4e-858a-0729fc8630a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-16 11:53:35.843',9591,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ARMİN İMERİ SSH','491728739578',NULL,'Almanya',NULL,'92421','BÖHMERWALDSTRASSE 1 A , 92421 SCHWANDORF',20,2,110,'221471794','0','0',NULL,200,1,'PEMBE ETİKETLİ','2025-06-16 11:54:17.460','2025-07-22 19:06:58.071',NULL),
('8cc8e2cc-149c-401c-9303-207ddf345d9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-05-31 09:53:46.703',6680,'70a3a4f1-e9cb-485f-aada-62059168e54e','FERHAT TUNA ','','','','','','',0,6.5,0,'703266692','0','0',NULL,0,0,'','2024-05-31 10:00:14.168','2024-06-08 06:45:21.970','2024-06-08 06:45:21.978'),
('8cf92937-e0c9-49c9-87aa-33b3c2fd4773','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-17 15:15:49.495',6833,'e6d4faef-484c-4ce7-992c-906e05fc083e','BLANDİ ZOTA','31629002803','31627837111','Hollanda','DEM HAG','2497','VAN DER WOUDENDİJK 137',4,6,120,'644965833','0','0',NULL,0,0,'SARI ETİKETLİ','2025-04-17 15:21:27.796','2025-05-02 17:09:06.015',NULL),
('8d1fae0e-1294-46bd-9c6d-bc64039e7933','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-06 09:35:39.644',8928,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','SADIK BEYSİR','33638503809','33695487500','Fransa','saint etienne','42000','95 BOULEVARD ANTONİO VİVALDİ',16,9,0,'517110811','0','0',NULL,3000,1,'SARI ETİKETLİ','2024-09-06 09:47:59.738','2024-11-21 06:56:36.974',NULL),
('8d2106dc-0692-4d32-a05c-11091d0b412b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-13 11:25:17.048',1051,'3c7190b6-f6ee-4275-8958-d7af952132ab','SOFİA KYRİAKİDOU','4915785563559','4915785563559','Almanya','WUPPERTAL','42107','HOLSTEİNER STRABE 20 42107 WUPPERTAL',22,3.5,110,'371186967','0','0',NULL,0,0,'SARI ETİKETLİ','2025-06-13 11:27:27.609','2025-07-18 05:16:04.066',NULL),
('8d6ed7c8-fbb3-458c-b0c4-41d279db9b32','eccfe611-9163-42aa-a1ff-e711af0248e6','82f1d7bf-2100-48db-928f-49720faaff90','2024-12-25 13:36:50.430',10277,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AİCHEH EL-KATİB','491632639510',NULL,'Almanya',NULL,'13156','HEİNİCH BÖLL STRABE 15B 13156 BERLİN',11,1,100,'221416475','0','0',NULL,0,0,'SARI ETİKETLİ','2024-12-25 13:41:31.194','2025-01-28 20:45:10.314',NULL),
('8d846a6b-e2c3-45bd-928c-7238130acfdf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:02:30.479',2681,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYŞE ÖZSOY','436607290700','436609678124','Avusturya','SALZBURG','5020','WEISERHOF STRABE 5',4,1,120,'745132796','0','0',NULL,590,1,'MAVİ ETİKETLİ','2024-09-18 21:04:41.771','2024-09-25 12:59:16.338',NULL),
('8d9f1798-76a5-467b-a81f-d20a878b42fa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:08:21.782',2356,'73596a75-b658-4249-8c71-b0490654bc8b','MİHRİBAN SİS -TRANSJET','004917284997194',NULL,'Almanya',NULL,'86343','KÖNİGSBRUNN',22,1,0,'735637082','0','0',NULL,850,1,'SARI ETİKETLİ','2024-12-07 09:09:44.524','2024-12-17 19:52:32.750',NULL),
('8dc371e3-6c16-4776-bb6b-6285b5a674e1','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2024-11-07 12:13:04.314',4162,'47880255-08ee-4e99-940b-16038e07de55','yusuf şahin','49527235152','491735199129','Almanya',NULL,'33034','KÖNİGSTR8 33034 BRAKOL ALMANYA',0,1,100,'47879897','0','0',NULL,500,0,NULL,'2024-11-07 12:15:49.487','2024-11-13 11:00:22.847','2024-11-13 11:00:22.855'),
('8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bd09245-c179-4127-b0e1-46737615122b','2025-08-05 10:45:56.728',5337,'4126da30-ba9b-41b7-be29-865069aa484c','SEYFETTİN','32470652077',NULL,'Belçika',NULL,'9255','KASTEELSTRAAT 223',6,12,110,'41298450','0','0',NULL,1400,1,'MOR ETİKET ','2025-08-05 10:46:45.006','2025-08-21 06:44:14.714',NULL),
('8dcb0124-79e0-4138-838e-c613554097e7','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-21 09:21:28.940',6267,'3c7190b6-f6ee-4275-8958-d7af952132ab','TUĞÇE ÖNCÜ','4915208677667','4915208677667','Almanya','GLADBECK','45968','GESCHWİSTER SCHOLL STR 5A 45968 GLADBECK ALMANYA',9,2,110,'371120237','0','0',NULL,760,0,'BEYAZ ETİKET','2025-10-21 09:22:49.296','2025-10-25 08:59:14.312',NULL),
('8dd05e34-9561-4afb-8daf-fd24f92ac628','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-18 12:47:41.182',1837,'6133a2db-79c4-4372-9338-505db46b1847','BERNA YİLDİRİM','491752616978','4915223038564','Almanya','GELSENKİRCHEN','45896','POLSUMER STRASSE 146, 45896 GELSENKİRCHEN, ALMANYA',14,2,110,'61390448','0','0',NULL,0,0,'BEYAZ ETİKET','2025-08-18 12:51:31.539','2025-09-26 12:52:48.554',NULL),
('8ddba844-a989-499f-a6a5-be77dd52ea3a','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-09-11 09:11:54.441',8443,'59868701-abe4-4705-a7e6-d91c2c69262e','İBRAHİM GEYİK','436606881993','436604321888','Avusturya',NULL,'6971','IN BAMMEN 5, 6971 HARD AVUSTURYA',0,5.5,120,'598967733','0','0',NULL,1800,0,NULL,'2025-09-11 09:14:43.185','2025-10-21 09:18:04.653','2025-10-21 09:18:04.652'),
('8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-04 12:56:27.507',9310,'e6d4faef-484c-4ce7-992c-906e05fc083e','GHAZAL TARIK İLHAN','491795209461','491734523187','Almanya','GUNDERNHAUSEN','64380','STETTERİTZRİNG 10, ROSSDORF-GUNDERNHAUSEN 64380, (HESSEN ) GERMANY',23,2,110,'644826740','0','0',NULL,0,0,'AÇIK MAVİ ETİKET','2025-08-04 13:02:54.618','2025-09-04 06:16:45.735',NULL),
('8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-06 20:16:45.378',5487,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','DRAGİ DİJANA','436601880277',NULL,'Avusturya',NULL,'8605','HANNELORE-VALENCAK-SİEDLUNG12/8605 KAPFENBERG',21,2,120,'675951028','0','0',NULL,500,1,'KIRMIZI ETİKETLİ','2025-07-06 20:22:13.071','2025-07-21 14:11:19.708',NULL),
('8e1bcc6c-d49a-4ede-abe4-f49246a8b1ef','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-08-25 08:09:52.350',4791,'3c7190b6-f6ee-4275-8958-d7af952132ab','AHMET AĞIRMAN','491604615612','491604615612','Almanya','MERCHWEİLER','66589','BERGSTRABE 3A 66589 MERCHWEİLER',0,2,110,'371747945','0','0',NULL,1490,0,'köşe takımı, bazalı karyola, döşek, 2 adet komidin. 5,5 metreküp. TÜM ÜRÜNLER DEPONUZDA. YÜKLEMEYE HAZIR.','2025-08-25 08:12:24.459','2025-08-26 09:08:54.634','2025-08-26 09:08:54.633'),
('8e8833ae-bbf9-4cee-9bb5-b57d59626b5b','313cc2e2-5529-49ab-abe5-27b5d390bc5f','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-21 18:18:40.670',9385,'6133a2db-79c4-4372-9338-505db46b1847','GALİNA KAMERER ','491737526626','01737526626','Almanya','BERGLEN','73663','HOLZWİESENSTRASSE 23\n73663 BERGLEN- RETTERSBURG \nGERMANY ',17,2,110,'613499620','0','0',NULL,445,1,'MOR ETİKETLİ','2025-07-21 18:23:37.300','2025-08-24 10:52:33.765',NULL),
('8e9de283-057d-4b23-a2a9-ce528f93257d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-04 12:55:28.647',9067,'e6d4faef-484c-4ce7-992c-906e05fc083e','(GÜLŞEN KARATAŞ) SSH ','4917670742870','4915201870026','Almanya','DUİSBURG','47443','HOLDEN STR 1C ',3,2,110,'644423895','0','0',NULL,0,0,'TRAVERTEN MASA','2025-08-04 13:01:01.707','2025-09-25 14:05:07.223',NULL),
('8ec34b98-cd6b-4969-b5da-337d1130a80a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:35:18.602',8907,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERDİNÇ GENÇER','003140374207','','Hollanda','Deventer','7417','Scheldestraat 14',16,4.5,100,'745262490','0','0',NULL,0,0,'','2024-04-07 20:38:21.092','2024-05-02 19:56:42.327',NULL),
('8f201baa-69fe-442b-9cab-fa1f47b7420b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-14 09:01:59.995',3525,'47880255-08ee-4e99-940b-16038e07de55','PELŞİN YILDIZ','32467611773',NULL,'Belçika','SERAİNG','4100','RUE DES PİERRES 226 4100 SERAİNG BELÇİKA',4,5,120,'478245028','0','0',NULL,6080,1,'MAVİ ETİKETLİ','2025-05-14 09:06:56.561','2025-06-03 20:09:09.258',NULL),
('8f38f94a-f9de-478d-9d69-21faf6e91db1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-15 13:06:23.289',1188,'a42d8839-caef-4422-888f-cbfdf4188c5b','ULAŞ YILDIZ','41613314258','905343972457','İsviçre','','4053','Mailand strasse 31',6,9,140,'428602278','0','0',NULL,1550,1,'Mavi etiketli','2024-05-15 13:27:03.406','2024-05-29 18:58:51.799',NULL),
('8f46653b-9700-4005-98b3-aae1d0eac6e1','5c723cdc-e582-4b00-8271-838c085984c2','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-24 14:38:08.974',3695,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HASAN ÇETİN','436609266371',NULL,'Avusturya',NULL,'2424','FELDGASSE 10 2424 ZURNDORF BURGENDLAND AUSTRIA ',14,2,140,'745810889','0','0',NULL,650,1,'TURUNCU ETİKET','2025-09-24 14:37:57.009','2025-10-15 08:24:52.146',NULL),
('8f4e86b2-0ef1-4837-b7be-63270a8f0af2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:01:30.000',3942,'73596a75-b658-4249-8c71-b0490654bc8b','CANSU EVCİ','004917672312771',NULL,'Almanya',NULL,'74564','LANGE STR. 58',17,1,0,'735318305','0','0',NULL,4205,1,'BEYAZ ETİKETLİ','2024-12-07 09:02:18.722','2024-12-17 19:52:32.750',NULL),
('8f6807e5-5c09-4383-bd17-acc03cf88760','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-06-19 09:26:50.236',3223,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','HİSNA FERADİ','0041789543304',NULL,'İsviçre',NULL,'8422','GROSSWİESENSTRASSE 52, 8422 PFUNGEN, SCHWEİZ',0,2,140,'695570555','0','0',NULL,3500,0,'3500 chf ödeyecek bilgisi var ','2025-06-19 09:29:28.900','2025-07-03 13:15:59.285','2025-07-03 13:15:59.284'),
('8facfb49-4d23-4b98-a41c-851f07a053e4','1f0119e0-2853-442a-8394-39cf94fce7df','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-13 09:10:38.547',1034,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','SENEL YILMAZ','33769010323','33621355129','Fransa','GARGES LES GONESSE','95140','11 RUE DES ACACİAS, 95140 GARGES LES GONESSE',9,4.5,120,'517365072','0','0',NULL,1000,1,'(MOR RENK)','2025-05-13 09:12:15.347','2025-07-09 11:39:56.374',NULL),
('8fb47c44-2d49-4fed-9d20-275d1c3b846a','eccfe611-9163-42aa-a1ff-e711af0248e6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-29 09:52:16.312',6223,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GÜLSÜM UÇAR ','32484781672',NULL,'Belçika',NULL,'3582','KORHOENSTRAAT 35, 3582 BERİNGEN ',7,2,120,'221345365','5','3','Mahaleye tir malesef giremedi , girersem çıkamam dedi şöför. Ve eşyaları 2 sokak aşadan kendimiz taşımak zorunda kaldık. Koskoca tırda taşımak için bir malzeme olmaması enteresandı ,.. ama yinede mobilyalarım çok güzel .. memnunum tşk ederim . ',700,1,'KIRMIZI ETİKET ','2025-08-29 09:54:02.472','2025-09-10 11:43:55.358',NULL),
('8fb8c47d-f3c2-4303-816b-fb50dd9d6798','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-13 14:11:02.261',9706,'dea91080-5383-4085-af2e-7eace2c64224','NESLİHAN KÖSEM ','33781020589',NULL,'Fransa',NULL,'57070','40 RUE DU VİGNOBLE',10,5.5,110,'910405441','5','5','100',975,1,'YEŞİL ETİKETLİ','2024-12-13 14:14:46.968','2025-01-14 20:01:45.283',NULL),
('8fc185cd-9441-4a92-b878-7da80b8d6502','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-04 23:24:36.934',8102,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SIDI MARİ MUHAMMED ','33789462575',NULL,'Fransa',NULL,'72100','2 RUE DU JURA LEMANS 72100',8,2.5,130,'221859569','0','0',NULL,900,1,'SARI ETİKETLİ','2025-01-04 23:27:54.730','2025-02-14 10:41:28.342',NULL),
('8fe451fc-7a84-4cca-9cde-dff384de2c9a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-08 11:01:56.801',1775,'e6d4faef-484c-4ce7-992c-906e05fc083e','MURAT YILDIZ ','4917624897582','491783900759','Almanya','DİETZENBACH','63128','OFFENBACHER STRASSE 28',10,2,110,'644481653','0','0',NULL,950,1,'KIRMIZI ETİKETLİ','2025-03-08 11:08:23.995','2025-04-07 17:18:55.363',NULL),
('9016d7f6-7477-4afe-9a6c-22410434be77','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 16:04:36.318',3511,'47880255-08ee-4e99-940b-16038e07de55','DİLAVER ULUTAŞ','4915111667554','491624318595','Almanya','AUGSBURG','86356','ALTE STRABE 14A',19,7,100,'47836811','0','0',NULL,1000,1,'SARI-KREM RENKLİ','2024-11-12 16:06:28.506','2024-11-23 12:17:08.607',NULL),
('90273c80-e292-4a76-8be5-a4c812e9f569','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 08:33:15.102',5421,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN','32470652077','','Belçika','','9255','KASTEELSTRAAT 223',6,6,0,'703183067','0','0',NULL,600,1,'YEŞİL ETİKETLİ','2024-08-20 08:41:27.585','2024-08-31 18:15:48.180',NULL),
('90462b6a-6fe2-4fba-8b01-1afd6272a71f','804a2f53-7a26-4e8e-a505-7fc107953b50',NULL,'2025-07-02 13:43:58.504',9023,'a42d8839-caef-4422-888f-cbfdf4188c5b','ERDOĞAN DEMİREL','4917655414646','491772251395','Almanya','BERLİN','11111',NULL,0,7,110,'428172853','0','0',NULL,0,0,'eksik parçalar var ürün çıkmasın tamalanmadan','2025-07-02 13:54:18.297','2025-10-17 10:37:37.482',NULL),
('905ad5bb-94b2-42ac-8672-ce8d147a9563','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:35:51.118',9656,'47880255-08ee-4e99-940b-16038e07de55','MEHMET SENCER','33633949591','','Fransa','TROİSFONTAİNES','57870','37 RUE DE LA VALLEE',4,1,110,'478321858','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-05-04 09:37:04.639','2024-05-21 18:45:00.280',NULL),
('908ced55-4ada-4513-96d9-5b7218af5cd7','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-06 10:40:49.771',1045,'3c7190b6-f6ee-4275-8958-d7af952132ab','SEDA ULUSOYLU','491742627039','491742627039','Almanya','BORNHEİM','55237','FİNKENWEG 5 55237 BORNHEİM ALMANYA',18,2,110,'371691350','0','0',NULL,800,1,'1 PALET','2025-08-06 10:42:09.869','2025-09-05 08:51:03.383',NULL),
('90958150-7001-4d34-b42d-731ec53aa3d6','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-09 11:51:28.967',2091,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ELANUR AKBALIK','4917655541367',NULL,'Almanya',NULL,'88046','GUTASTRASSE 4, 88046 FRİEDRİCHSHAFEN ',0,2.5,110,'221897229','0','0',NULL,800,0,NULL,'2025-10-09 11:53:12.924','2025-10-14 14:47:07.462',NULL),
('90a8f7ac-5c28-443a-9cbe-23f5c2942327','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-08-20 12:59:35.441',6507,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','ERKAN AKSOY','','','Almanya','WORMS','67547','PHİLOSOPHEN STR 27',5,13.5,100,'126824871','0','0',NULL,1450,1,'PEMBE ETİKETLİ','2024-08-20 13:03:44.170','2024-09-17 13:49:48.056',NULL),
('90ca9af9-d39c-47ed-a9d5-76aa8cb5557f','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-24 08:16:15.714',2364,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ESENGÜL TOPAKTAŞ','4917656828016',NULL,'Almanya',NULL,'26419','LESSİNGSTR 29 26419 SCHORTENS ',0,2,110,'221574787','0','0',NULL,750,0,NULL,'2025-10-24 08:17:55.410','2025-10-27 08:01:34.678',NULL),
('90dbc8a8-5725-4f17-86ab-64186bd111a6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-17 08:26:06.864',1257,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUSTAFA ATİK','330607346065','330636781975','Fransa','MONTMERLE','01090','959 RUE DE CHATİLLON',0,2,130,'644857367','0','0',NULL,600,0,NULL,'2025-10-17 08:34:50.023','2025-10-23 10:36:20.677',NULL),
('90e4117b-333a-4d53-b6d1-0ec61b7315b8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-21 08:41:29.636',8246,'47880255-08ee-4e99-940b-16038e07de55','NURCAN MANSUR','4915776398644','4915776398644','Almanya',NULL,'81735','KURT EİSNER STRABE 39  81735 MÜNCHEN',20,2,105,'478438901','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-03-21 08:42:51.407','2025-04-17 13:54:18.485',NULL),
('90e758b9-fc91-49ea-ab6c-5838a25327d1','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-31 06:35:20.506',8907,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ÖMER FARUK ÇANAK','5326077059',NULL,'Almanya','ESSEN','45307','AM ZEHNTHAF 168',20,2,110,'31934282','0','0',NULL,550,1,'SARI ETİKET','2025-07-31 06:36:41.512','2025-09-03 05:43:13.674',NULL),
('9103cb0e-e686-4e54-ab7a-664a063bc56c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-08-08 08:13:15.103',6824,'47880255-08ee-4e99-940b-16038e07de55','BECET ÖZDEMİR','33666051702','3377867204','Fransa','BOURGES','18000','13 RUE PHİLLİPPE KİEFER 18000 BOURGES FRANSA',10,13,130,'478221533','0','0',NULL,5150,1,'SARI ETİKET','2025-08-08 08:25:58.252','2025-10-23 13:50:39.736',NULL),
('9106d25a-25ef-40fe-9a6e-a0b6c4d5ccbe','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-24 10:32:50.944',6879,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MUSTAFA ÖZMEN ','','','','','','',0,3.5,0,'449888594','0','0',NULL,0,0,'','2024-09-24 10:36:16.969','2024-09-24 14:01:55.936','2024-09-24 14:01:55.943'),
('910744ec-cad6-475e-ad64-324c153358ad','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-24 08:27:22.681',7109,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ŞEYMA BOZDAĞ','31640538953',NULL,'Hollanda',NULL,'1069','LEDERAMBACHTSTRAAT 69, 1069 HM AMSTERDAM',4,2.5,120,'221940723','0','0',NULL,960,1,'MAVİ ETİKETLİ','2025-06-24 08:29:42.644','2025-07-23 06:18:30.728',NULL),
('911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 14:58:13.810',7897,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SUZAN GÜNER','','','','','','DURSUN GÜNBEYİ ADRESİNE BIRAKILCAK',3,1,0,'745268660','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-08-20 14:58:56.464','2024-08-31 18:15:48.180',NULL),
('9134b63f-7d66-4eba-936c-7bc7dbbabe6a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-12 07:32:02.401',1368,'47880255-08ee-4e99-940b-16038e07de55','NAMIK KAYGIN','336702877593','33647562465','Fransa','MEYTLNET','74960','6 RUE CHANTE BİSE 74960 MEYTLNET FRANSA',14,4.5,130,'478142620','0','0',NULL,860,1,'TURUNCU ETİKETLİ','2025-02-12 07:36:26.328','2025-02-28 12:04:36.224',NULL),
('91983c05-77bb-427d-b258-13e5f5aca93a','05135cd5-2d33-4363-b51e-c9b83a94094d','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-06-05 14:09:31.707',8681,'8b7a9e5c-33ee-48ea-80dc-618db5fa40ff','MURAT BAYDAR','491772575787',NULL,'Almanya',NULL,'45133','HATZPERBOGEN 49',3,2,110,'879845359','0','0',NULL,350,1,'AÇIK MAVİ ETİKETLİ','2025-06-05 14:10:44.158','2025-06-22 09:26:54.562',NULL),
('91b404e8-2ef9-4d0e-b8ea-60c442570c42','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-21 07:26:38.306',7915,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','BURCU BİNGÖLBALI ','491772742981',NULL,'Almanya','KÖLN','51069','BERGİSCH GLADBARCHER SRT 797',17,4,110,'817830150','0','0',NULL,1150,1,'PEMBE ETİKETLİ','2025-04-21 07:31:00.049','2025-05-12 09:07:52.132',NULL),
('91baf8ac-c499-4118-bb77-3c280cca0a2f','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-08-06 12:41:41.080',4379,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OZAN AL ','491788916015','5397939752','Almanya',NULL,'45899','ESSENER STR 8 45899 GELSENKIRCHEN ALMANYA ',0,8,105,'745995046','0','0',NULL,1350,0,'7 M3  ÜRÜNLER EKİM BAŞI YOLA ÇIKACAKTIR. ','2025-08-06 12:43:04.592','2025-10-14 11:21:57.409',NULL),
('91d165b6-d978-4c8d-b44a-7b2fb9ad068b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-02 11:49:02.901',5692,'e6d4faef-484c-4ce7-992c-906e05fc083e','KIYMET DALMAN','491777519570','491779666161','Almanya','BÖNEN','59199','AM PETERSKAMP 1',0,2,110,'644584323','0','0',NULL,590,0,NULL,'2025-10-02 11:57:19.189','2025-10-06 14:36:11.346','2025-10-06 14:36:11.345'),
('91e8883e-fdcc-426e-99c9-17707c173e50','bf6f92ba-eef7-4290-902d-b1bac86244bb','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-08 07:32:44.453',8156,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','AHMET TEKİN','33652441407','33695878939','Fransa','COUBRON','93470','52 AV PASTEUR 93470 COUBRON ',22,4,120,'501934466','0','0',NULL,1200,1,'YEŞİL ETİKETLİ','2025-01-08 07:36:44.934','2025-02-11 17:09:24.437',NULL),
('92035bab-37fe-43c0-8f20-e718fcf5f1f2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 07:28:59.353',1467,'47880255-08ee-4e99-940b-16038e07de55','GÜLSÜN UZUN','491781356131','491781356131','Almanya','TÖRNİSVARST','47918','CORNELİUSPLAT64 47918 TÖRNİSVARST AKMANYA',5,2,105,'478118994','0','0',NULL,500,1,'MAVİ ETİKETLİ','2025-01-29 07:30:30.779','2025-02-19 18:37:44.613',NULL),
('9236b858-0a44-4581-b11d-b5a57a9522a0','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-18 13:17:28.862',7111,'e6d4faef-484c-4ce7-992c-906e05fc083e','RAMAZAN HAVAÇEKEN(K)','4915566183812','4917640388186','Almanya','WESSELİNG','50389','AN DEN BERDEN 38',19,3,110,'644879098','0','0',NULL,545,1,NULL,'2025-09-18 13:24:41.922','2025-09-30 06:45:01.426',NULL),
('923a076a-9ebb-431d-9f79-3f5aa33e3231','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 14:29:37.531',2407,'1a63399e-9dca-4c70-be0e-e8e8a874b582','MURAT ','31625064385',NULL,'Hollanda',NULL,'5684',NULL,10,4,110,'163548367','0','0',NULL,500,1,'TAÇ YAZILI','2024-11-21 14:32:22.258','2024-12-05 16:17:27.151',NULL),
('924b0645-442a-4c8d-bf1e-f897f1aa0792','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:44:11.719',7258,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','AKRAMİ MUHAMMED','436601425568','','Avusturya','SALZBURG','5020','İNGE MARATHPALTZ 18',11,5,120,'449292416','0','0',NULL,2350,1,'TURUNCU ETİKETLİ','2024-05-10 06:45:44.585','2024-05-29 11:17:24.597',NULL),
('924da3d8-9a73-46a3-a085-d7683bf2448e','5c723cdc-e582-4b00-8271-838c085984c2','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-04-21 09:52:42.947',8018,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZLEM TURA','43650589188',NULL,'Avusturya',NULL,'6850','6850 DORNBIRN KAUFMANNEN 19 AVUSTURYA',4,2,140,'745808637','0','0',NULL,1100,1,'YEŞİL ETİKETLİ','2025-04-21 09:53:33.071','2025-06-05 16:39:06.619',NULL),
('927e12ff-5564-4a31-a8d5-f4d5eaffc582','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-07-21 07:35:25.584',2167,'47880255-08ee-4e99-940b-16038e07de55','KAZIM KURUCU','33763000176','33628708481','Fransa','ORANGİS','91130','41 RUE DU PROGNES A RİS ORANGES 91130 FRANSA',9,11.5,130,'478335843','0','0',NULL,0,0,'AÇIK MAVİ','2025-07-21 07:42:36.442','2025-10-03 09:15:59.031',NULL),
('92a101d5-f2e2-4731-8009-aa9ff0df1038','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:01:02.478',8238,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','CÜNEYT BARUT','4915782470438','','Almanya','MONHEİM','86653','BAYERN STRABE 2',5,6.5,100,'745699153','0','0',NULL,2700,1,'TURUNCU ETİKETLİ','2024-10-02 09:03:22.568','2024-10-08 09:25:04.325',NULL),
('92da393c-5934-4ca0-96a4-6f7b809428cc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-03 08:36:38.663',4231,'c904b27b-bbae-4aa4-8662-a377929d7338','GÜRKAN DAĞ ','5348867917',NULL,'İsviçre',NULL,'1530','RUE DES DEUX TOURS 1',3,7.5,140,'904863225','0','0',NULL,1050,1,'PEMBE ETİKETLİ','2025-03-03 08:48:41.184','2025-03-16 11:52:20.007',NULL),
('92ef11d7-249d-45f0-a76f-8b59e5a6399e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-04 09:52:19.397',4947,'e6d4faef-484c-4ce7-992c-906e05fc083e','GHAZAL TARIK İLHAN','491795209461','491734523187','Almanya','GUNDERNHAUSEN','64380','STETTERİTZRİNG 10, ROSSDORF-GUNDERNHAUSEN 64380, (HESSEN ) GERMANY',14,2,110,'644971564','0','0',NULL,1250,1,'KIRMIZI ETİKETLİ','2025-03-04 09:55:24.809','2025-03-17 14:54:20.815',NULL),
('92ff5019-7ca9-4eef-a75a-ac187b9be39d','89428e9c-4d02-45c3-a044-0b2a5ac2465d','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-10 19:49:09.296',6297,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SOUQİ İMANE','33626936541',NULL,'Fransa','LE HAILLAN','33185','RUE EMİLE VİDEAU RESİDENCE POİNSTOT G002',2,3,130,'976185606','0','0',NULL,1300,1,'KIRMIZI ETİKET ','2025-09-10 20:04:17.199','2025-10-17 06:16:56.789',NULL),
('9304190a-dd40-4d16-b7c3-2f3a039dd301','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-19 13:01:00.925',10408,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','NİSRİN GHARİB HASSAN ','4915753005551',NULL,'Almanya',NULL,'28779','KÜFERSTRASSE.1\n28779 BREMEN',3,3.5,110,'817747938','0','0',NULL,750,1,'AÇIKMAVİ ETİKETLİ','2025-05-19 13:02:39.017','2025-06-07 08:54:43.928',NULL),
('930adcd5-da6e-48f4-89c5-29b62fffc488','5c723cdc-e582-4b00-8271-838c085984c2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-23 07:32:39.125',9940,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EBRU DEMİRHAN SSH','4915566942853','491625434501','Almanya',NULL,'86356','ALTE REICHSSTRASSE 31 A',34,2,105,'745433427','5','5','Disiplininizin dewamiyla başarıla dilerim.',0,0,'BEYAZ ETİKET','2025-06-23 09:38:56.435','2025-07-21 17:04:19.231',NULL),
('9326d3b9-2f43-4c06-80e8-7b468e9642ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:00:25.637',9571,'73596a75-b658-4249-8c71-b0490654bc8b','SARA BOBAJ','004917631692675',NULL,'Almanya',NULL,'58840','ESCHENER WEG 63',14,3.5,0,'735173063','0','0',NULL,1295,1,'TURUNCU ETİKETLİ','2024-12-07 09:01:21.599','2024-12-18 16:37:02.165',NULL),
('932af7f2-df9e-4032-b8ab-056455a1eb6f','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-31 12:12:16.209',9266,'59868701-abe4-4705-a7e6-d91c2c69262e','NUSRET VAROL VURAL','4369919078247','4368120902265','Avusturya',NULL,'1210','CARRO GASS3 1-5/11/002 1210 WİEN ÖSTERREİCH',15,8,120,'598427868','5','1','Hersey için teşekkür ederim özellikle söför arkas için ayrıca teşekkür ediyorum harika cok net bir insan',3300,1,'YEŞİL ETİKETLİ','2025-07-31 12:17:43.644','2025-09-01 12:21:51.564',NULL),
('93386b76-7f5f-4ccd-845c-f624d343a1ea','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-10-13 13:54:44.938',4766,'b0c1192a-7d38-4b69-a901-778f65a98b9d','ALMANYA HÜLYA ŞENEL ','491725951880',NULL,'Almanya','MÜNDEN',' 34346',' VECKERHÄGERSTRASSE 12\n 34346 HANN MÜNDEN\n DESCR',0,3.5,110,'01169597','0','0',NULL,1400,0,NULL,'2025-10-13 13:57:13.308','2025-10-16 07:36:01.229',NULL),
('93582d1b-031b-454d-8d8f-d69cf39f35b1','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-31 06:37:11.967',8467,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ARZU ÜNLÜ','491775901111',NULL,'Almanya','LİLİENWEG','53840','LİLİENWEG 14 53840 TROİSFORD',27,2,110,'319515461','0','0',NULL,300,1,'BEYAZ ETİKET','2025-07-31 06:38:47.397','2025-09-01 16:57:01.814',NULL),
('935f330d-55f1-4c8c-bb42-ed0f8f8433bc','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-07 11:39:03.797',10943,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','SİBEL ÖZTAMUR','491607553949',NULL,'Almanya',NULL,'33607','DOMPFAFFWEG 6A \n33607 BİELEFELD',7,3,110,'817872283','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-05-07 11:40:58.680','2025-06-06 17:37:15.490',NULL),
('936577ed-02ef-44c5-9226-4d241235c1bf','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-15 06:26:59.719',3954,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','ADRİANNA WİEMANN','32469216538','32492822332','Belçika','AALST','9310','AALST-HERDERSEM\nKAPELLEOMMEGANG 6',6,3,120,'505724535','0','0',NULL,900,0,NULL,'2025-09-15 06:33:24.698','2025-10-22 13:07:06.149',NULL),
('936ebbaf-6f47-4069-b653-db28ba74c6b6','1764a07b-eb47-4578-b6cd-f3c0d0e743be','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-09 08:39:03.104',2774,'47880255-08ee-4e99-940b-16038e07de55','KISMET URDOĞAN','41764537057','41766507323','İsviçre','ZURİCH','8953','STEİNMURLİ STR4  8953 DİETİKAN ZÜRİH SİVİÇRE',8,13,140,'478449275','0','0',NULL,5400,1,'YEŞİL YAZILI-AÇIK MAVİ ETİKETLİ','2025-01-09 08:44:07.382','2025-02-01 10:51:15.249',NULL),
('9380973c-fd42-4ef7-a6e3-5e7f392c02da','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-18 07:19:55.462',2476,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ROMİNA ÇÖPLÜ','491634662527','491634662527','Almanya','RAUXEL','44577','FALKENSTR. 43, 44577 CASTROP-RAUXEL/ALMANYA',19,2.5,110,'127927013','0','0',NULL,1180,1,'PEMBE ETİKETLİ','2025-01-18 07:48:53.693','2025-02-07 11:19:27.865',NULL),
('9389f67d-2767-4619-90da-cdf983bc767b','ab532050-8a54-4cb4-9e27-59229ab24a9b','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-02 09:26:46.793',4301,'338e8c09-4ca5-4617-bfc1-a0692646d475','MEHMET GÜL','4917680117580','4917922929386','Almanya',NULL,'63477','CİNAR TRANSPORTE LİEBİGSTR. 4 63477 MAİNTAL',20,4,110,'33841628','0','0',NULL,500,1,'KIRMIZI ETİKET','2025-08-02 09:34:51.513','2025-09-05 08:50:53.464',NULL),
('93a423f4-81fb-4690-bc1a-7b1c23ae6a8c','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-09 06:05:54.168',10138,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AHMED AZEEZ ','33636227871',NULL,'Fransa',NULL,'64000','10 RUE DU COMTE DE SAİNT CRİCA 64000 PAU FRANSA',1,2,130,'221364325','0','0',NULL,540,1,'AÇIK MAVİ ETİKET','2025-09-09 06:07:45.997','2025-10-17 06:17:01.820',NULL),
('93c365fd-397d-46ce-91b9-bdd586250f02','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:19:17.298',2495,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AYŞE DOĞAN','33660485307','','Fransa','ALENÇON','61000','34 BOULEVARD DE LA REPUBLİQUE',14,1,110,'982415045','0','0',NULL,1900,1,'TURUNCU ETİKETLİ','2024-09-18 21:21:17.604','2024-09-28 16:28:24.636',NULL),
('93cfee64-4853-4395-af0b-9caa4355f18f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-06-13 08:02:05.897',6369,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','AYHAN KILIÇ','4917623546219','4917671762583','Almanya','REGENSBURG','93051','KRIEMHILD STR 17',6,5.5,100,'614134006','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-06-13 08:06:04.136','2024-07-16 05:11:54.166',NULL),
('93d2ab3b-6a9a-4642-becf-a89234c7ee14','8184d19c-0d1f-4439-978c-7a3364e54967','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-27 09:36:07.973',3881,'b0c1192a-7d38-4b69-a901-778f65a98b9d','FAHRİYE KARTAL','4915901967333',NULL,'Almanya','SCHAUERNHEİM','67125','MOZARTSTRASSE 5 67125 DANNSTADT-SCHAUERNHEİM',23,3.5,110,'011255060','1','1','2',750,1,'BEYAZ ETİKET','2025-08-27 09:37:50.368','2025-09-10 13:15:02.156',NULL),
('9418fa6a-d578-4e34-8927-b28f347cbf40','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-02-25 06:56:10.214',9754,'dea91080-5383-4085-af2e-7eace2c64224','FATMA FİLİZ DEMİR		','33651552074','33768511676','Fransa',NULL,'93380','0667000395 ADRES 57 RUE		\nPARMENTİER 93380 		\nPİERREFİTTE SUR		\nSİENNE		\n',0,2,120,'910550169','0','0',NULL,0,0,NULL,'2025-02-25 06:57:25.432','2025-03-24 15:18:31.070','2025-03-24 15:18:31.073'),
('941a927a-9750-49c2-86d8-69862080c82e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 07:18:42.576',9287,'b734c482-3c00-4897-ad35-bc358cd02d56','FİLİZ KARAAĞAÇ','','','Fransa','MARSİLYA','13014','55 RUE SAİNT ANDRE',15,6,96,'734579794','0','0',NULL,700,1,'TURUNCU ETİKETLİ','2024-03-16 08:04:26.080','2024-03-29 17:57:55.461',NULL),
('942b967a-b7e1-48f8-9cb2-21dcf67db34e','8fff5e14-418c-4377-bd83-3a3f81383507','7bd09245-c179-4127-b0e1-46737615122b','2025-08-12 15:35:02.062',8895,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DERYA ERDOĞMUŞ','4915224134737',NULL,'Almanya','GLODBECK','45964','KAMP STR 91',2,6,110,'437578664','0','0',NULL,1140,1,'MOR ETİKET','2025-08-12 15:39:10.638','2025-08-22 10:58:44.297',NULL),
('944463e8-220a-4540-bab2-ef92cb495c59','51b55e5b-7487-4d8a-923e-163f04d0b1d9','66307a01-d585-4127-903b-18748421c29e','2025-04-26 14:34:08.913',7038,'c2d4ce84-536d-4816-837f-7abbf6a7e061','EMRE','491797333588',NULL,'Almanya',NULL,'111111',NULL,6,2,110,'248968905','0','0',NULL,250,1,'TUNCAY KOÇOĞLUNA BIRAKILCAK','2025-04-26 14:35:08.545','2025-05-08 07:31:37.872',NULL),
('944f9673-fd0f-4fa0-b813-94de36c84532','8fff5e14-418c-4377-bd83-3a3f81383507',NULL,'2025-09-11 06:50:21.130',5154,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MURAT AZAKLIOĞLU','4915730800040',NULL,'Almanya','DORTMUND','44147','OFENSTRABE 7',0,2,110,'437516260','0','0',NULL,0,0,NULL,'2025-09-11 06:52:04.826','2025-09-16 08:05:33.643','2025-09-16 08:05:33.642'),
('945602cc-25e3-4d66-bae2-b70fa6008882','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-09 10:54:18.737',4467,'47880255-08ee-4e99-940b-16038e07de55','SEVCAN SALİ','4917623171726',NULL,'Almanya',NULL,'80637','REİNMAR PLATZ 20',19,2,105,'47888038','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-04-09 10:55:16.300','2025-04-17 13:54:22.361',NULL),
('9483dfd2-0e4b-4399-803e-1374da25fce7','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-01-24 07:23:47.197',8860,'a42d8839-caef-4422-888f-cbfdf4188c5b','ABDULKADİR AKYURT','491726549948','4917663713415','Almanya',NULL,'29 85055','AM MAİLİNGER MOOS 29, 85055, INGOLSTADT',16,2,110,'428851627','0','0',NULL,0,0,NULL,'2025-01-24 07:25:40.291','2025-02-24 20:28:04.441',NULL),
('94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b','eccfe611-9163-42aa-a1ff-e711af0248e6','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-22 19:00:45.825',2939,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LEPETİT CRİSTELLE','33768202556',NULL,'Fransa',NULL,'54310','13 RUE DES CHARMES 54310 HOMECOURT \'',8,2,120,'221251932','0','0',NULL,575,1,'MOR ETİKET','2025-07-22 19:02:30.538','2025-09-06 17:54:24.940',NULL),
('94ed4318-546d-4bfe-8ecf-e1631bc2b933','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-28 09:33:42.282',8819,'92d31478-aa4f-4f7e-b6e7-95b858af9bfe','ENİSA YEKTA ','4915161718333',NULL,'Almanya',NULL,'59527',NULL,9,3,110,'923436295','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2025-04-28 09:36:28.638','2025-05-13 09:05:57.394',NULL),
('94fef2de-86f8-489c-828b-0b9a5e9ec1b4','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-29 15:13:24.877',5694,'59868701-abe4-4705-a7e6-d91c2c69262e','GÜLSÜM KÖNÜ','4917662992402','4917662992402','Almanya',NULL,'22761','VAN SAUVER STRASSE 10, 22761 HAMBURG ALMANYA',4,2,110,'598373943','0','0',NULL,300,0,'MAVİ ETİKET','2025-09-29 15:15:04.143','2025-10-20 07:18:17.165',NULL),
('9504e4a5-303e-4819-a70c-cb5f6e9502ba','8fff5e14-418c-4377-bd83-3a3f81383507','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-22 14:06:53.866',9448,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','GÜL KOÇAK','4917634657298',NULL,'Almanya','LİNDAU BODOLZ','88131','DR. EMİL. HASEL. SİEDLUNG',13,3.5,110,'437672074','0','0',NULL,570,1,'SARI ETİKETLİ','2025-07-22 14:08:15.465','2025-08-02 17:35:57.649',NULL),
('95091d3e-5f38-4f5f-9e36-f30d00c51ff3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-30 14:17:34.718',3522,'47880255-08ee-4e99-940b-16038e07de55','NADİDE BAHÇEÇİOĞLU','491758664558','','Almanya','HÖRSTEL','48477','RODDER STRABE 19',4,1,100,'478283773','0','0',NULL,0,0,'LİLA ETİKETLİ','2024-07-30 14:19:43.772','2024-08-07 08:42:03.488',NULL),
('953f3501-da44-4096-afef-f255993a1b13','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-05 11:09:46.738',2058,'e6d4faef-484c-4ce7-992c-906e05fc083e','MERT OSMAN DEMİR(K)','4915152072002','491623245493','Almanya','SİEGBURG','53721','LUİSENSTRABE 148',20,4.5,110,'644153988','0','0',NULL,750,1,'YEŞİL ETİKET ','2025-09-05 11:16:41.404','2025-09-30 06:44:54.100',NULL),
('955c7c46-bc72-473b-9a0f-e11f625e9690','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-08 07:51:01.692',4665,'47880255-08ee-4e99-940b-16038e07de55','FERDİ KURT','436602003887',NULL,'Avusturya','LİNZ','4020','HASNERSTRASSE20 4020 LİNZ AVUSTURYA',20,2,140,'478996959','1','1','Ürunler toz icinde kesinlikle memnun degilim söförünüz yarim saat onceden bilgi verdi bu kabul edilebilir birsey degil en azindan 2 yada  3 saat onceden haber verilebilirdi kesinlikle memnun degilim urunleri paketinden acmadan kontrol edemeden teslim almak zorunda kaldim cunku yarim saat onceden söför tarafından haber edildi  kirik  yirtik var ise kargo firmasi yada uretici firma magduriyetimi karsilamak durumundadir 1000 euro Ödeme söföre teslim edildi herhangi bir fatura falan verilmedi. Faturayida WhatsApp uzerinden gondermenizi rica ediyorum.',1000,1,'YEŞİL-MOR ETİKETLİ','2025-05-08 07:52:48.944','2025-05-21 19:03:51.939',NULL),
('955fd2d1-deec-43d2-babf-7c48c40d74f0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-13 09:49:46.543',7609,'47880255-08ee-4e99-940b-16038e07de55','AHMET CELEBCİ','491716245168','491716245168','Almanya','HENGERSBERG','94491','FİSCHER STRABE 1  94491 HENGERSBERG ALMANYA',23,2,105,'478650682','0','0',NULL,500,1,'TURUNCU ETİKETLİ','2025-03-13 09:54:36.341','2025-04-04 17:24:33.515',NULL),
('957f07fd-d732-4d5c-bc32-193dd5d6c0d6','f784b688-ba6b-4886-87dd-fe4cfbed85b4','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-07 07:00:00.938',6693,'dea91080-5383-4085-af2e-7eace2c64224','İDRİS EŞKIN','4306641865848','4306641865848','Avusturya',NULL,'1110',NULL,11,2,120,'910593915','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-05-07 07:01:28.695','2025-05-21 15:30:20.198',NULL),
('95a5f2f5-7a3e-4a17-acdd-545ebd756dd9','804a2f53-7a26-4e8e-a505-7fc107953b50','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-24 06:46:02.804',8224,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA MÜEZZİNOĞLU','32490219326','32490219325','Belçika',' MECHELEN ','26 2800 ','KREİTENBORGSTRAAT 26 2800 MECHELEN BELÇİKA',9,2,120,'428459785','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-04-24 06:48:01.464','2025-05-02 06:59:08.326',NULL),
('95a80c6f-f63c-41d5-917a-d2547b834cdd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-25 13:03:15.607',3036,'e6d4faef-484c-4ce7-992c-906e05fc083e','ALEYNA AKAY','4917670742870','4915201870026','Almanya','DUİSBURG','47139','FLOTTENSTR 33,47139',0,4.5,110,'644500765','1','1','Şöför çok saygısız ve anlayışsız. Aldigimiz ürünlerde hasar var. ',1900,1,'PEMBE ETİKETLİ','2025-06-25 13:11:05.853','2025-07-30 16:53:30.726',NULL),
('95ff7b1e-98b7-452d-ab80-8e142b1b8abe','5c723cdc-e582-4b00-8271-838c085984c2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-12 14:03:07.488',5941,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYHAN İÇEN','4917631329672','4915206306725','Almanya',NULL,'55595','SCHULSTRABE 5 55595 BOCKENAU ALMANYA',19,3,105,'745813483','0','0',NULL,545,1,'PEMBE ETİKETLİ','2025-06-12 14:03:26.293','2025-07-24 18:03:45.377',NULL),
('9609be73-cca2-458a-aba2-d4fc54168866','8fff5e14-418c-4377-bd83-3a3f81383507','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-24 07:10:47.982',4867,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','GAFUR NUHA','4368181273062',NULL,'Avusturya','LİNZ','4030','KAFKAWEG 15',19,3.5,140,'43758285','0','0',NULL,800,1,'SARI ETİKETLİ','2025-04-24 07:16:58.157','2025-05-21 18:42:26.744',NULL),
('9612581b-4d73-4d8f-bd7f-f89025cfe7b9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-15 09:00:07.918',3883,'f23142ef-47ba-426c-9a22-bfb123cfac47','MUSA TABARU','491774653260',NULL,'Almanya',NULL,'13353','MULLER STYREET 138C',2,2,110,'231348651','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-04-15 09:01:24.931','2025-04-28 18:15:37.520',NULL),
('964fcf95-183e-4624-afee-8e83b0ce2134','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-20 10:52:41.454',3904,'3c7190b6-f6ee-4275-8958-d7af952132ab','ÖZLEM POLAT','4917634311162','4917634311162','Almanya','GLADBACH','51467','HAFERBUSCH 30 51467 BERGİSCH GLADBACH ALMANYA',20,4.5,110,'37176846','0','0',NULL,850,1,'AÇIK MAVİ ETİKETLİ','2025-03-20 10:55:13.541','2025-04-05 22:11:34.360',NULL),
('966391c6-e0ee-427b-b16f-5f8b2d1477ad','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-02 13:41:53.128',3973,'dea91080-5383-4085-af2e-7eace2c64224','ZELİHA AKCAN','491605646374','4915172036890','Almanya',NULL,'84034','STETHAİMER STRASSE 13',25,4.5,100,'910120533','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2024-12-02 13:45:45.513','2024-12-17 19:52:32.750',NULL),
('9665df81-a895-4779-ad78-e6fc3e7f28df','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-08-25 13:00:07.921',4745,'59868701-abe4-4705-a7e6-d91c2c69262e','ERDAL PEKER','4917640578212','4917684579991','Almanya',NULL,'12101','WERNER VOB DAMM 19 12101 BERLİN',0,6,110,'598944852','0','0',NULL,3265,0,NULL,'2025-08-25 13:03:26.815','2025-10-03 08:18:45.412','2025-10-03 08:18:45.411'),
('9667990f-57b0-4e89-ac6c-4a2ef8899bf0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:22:48.694',9162,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BARIŞ ÇOŞKUN','33781435091','33699519041','Fransa','MOSELLE','57220','17 RUE JACQUES DES LINNIVILLE',2,1,110,'745656343','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2024-09-28 15:25:06.558','2024-10-08 07:57:43.399',NULL),
('96741763-bc18-47ed-be48-0c973149d4fb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-18 11:35:50.402',8420,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','AYLİN KIRLANGIÇ','4917670386373',NULL,'Almanya',NULL,'45327','MİNDENER STR 95A',2,3,110,'127221315','0','0',NULL,675,1,'PEMBE ETİKETLİ','2025-07-18 11:39:16.993','2025-07-30 08:02:13.960',NULL),
('967b9ee1-7adb-4c9b-9386-f8200b05df01','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 08:01:46.536',3322,'f23142ef-47ba-426c-9a22-bfb123cfac47','EMİNE AKPINAR','33672637355','','Fransa','MARLGYNY SAİNT','74150','ROUTE DU NANT BORE',13,3.5,100,'231455458','0','0',NULL,500,1,'YEŞİL ETİKETLİ','2024-05-04 08:04:10.003','2024-05-21 18:45:56.505',NULL),
('967bb071-1af8-4c06-bfd2-0cb20530dd7d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-11 12:22:32.581',10138,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NAİMA BOURAJJOU','33646824181',NULL,'Fransa',NULL,'34000',NULL,1,2,130,'221106888','0','0',NULL,500,1,'MAVİ ETİKETLİ','2025-04-11 12:24:28.125','2025-04-28 11:58:38.030',NULL),
('967d15a7-2096-45bd-bc90-7a65319402f4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 06:54:56.956',1493,'47880255-08ee-4e99-940b-16038e07de55','DEFNE AKAY','32494484997','','Belçika','','','ZAVELBAAN 54',16,1.5,100,'478642368','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-06-08 07:00:28.128','2024-06-22 11:11:09.220',NULL),
('968b133b-83c8-4a7b-8237-6fc0a98af493','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-21 12:56:31.961',4038,'c2d4ce84-536d-4816-837f-7abbf6a7e061','FERİT YEKDA','4917620552211',NULL,'Almanya',NULL,'13585','NEUENDORFER STR 64-69',2,2,110,'248284961','5','5','Sorunsuz teslim aldım, çok teşekkürler ',0,0,'AÇIK MAVİ ETİKETLİ CAM PALET','2025-03-21 12:58:42.348','2025-04-05 12:35:10.065',NULL),
('96a7a9ce-ac9e-4c25-a15b-91289b6df9c7','ab532050-8a54-4cb4-9e27-59229ab24a9b','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-16 21:45:09.370',1567,'338e8c09-4ca5-4617-bfc1-a0692646d475','MUSTAFA ŞİMŞEK','436601287333','436608636840','Avusturya',NULL,'1220','BERRESGASSE 11/3/34 1220 WIEN',17,2.5,120,'338730647','0','0',NULL,300,1,'KAHVERENGİ ETİKET','2025-09-16 21:51:30.745','2025-10-15 08:24:33.635',NULL),
('96a8795c-0926-4c3d-9071-8628d0419669','eccfe611-9163-42aa-a1ff-e711af0248e6','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-15 06:11:38.658',3585,'22a1dbd6-475c-4d4b-bb13-f459e3029634','M.CEDRİC KLEINDIENST (SSH)','33617127634','33778663770','Fransa',NULL,'68110','12 RUE DU CANAL, 68110 ILLZACH ',17,2,120,'221105277','0','0',NULL,0,0,'BEYAZ ETİKET','2025-09-15 06:13:01.725','2025-10-22 07:00:08.036',NULL),
('96b15390-c2d3-4a0c-8b82-b2750ed0ca0e','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-04-24 13:23:40.752',9430,'47880255-08ee-4e99-940b-16038e07de55','MECİT AVCI','30697562034','4917657600955','Almanya',NULL,'65930','LANDAUER STRABE 36 65930 FRANKFURT ALMNAYA',0,2,105,'478361746','0','0',NULL,0,0,'SSH','2025-04-24 13:26:59.512','2025-04-30 14:18:01.995','2025-04-30 14:18:01.997'),
('96c2c716-1238-46f7-a269-0431c07150af','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-01-15 10:58:58.878',4168,'dea91080-5383-4085-af2e-7eace2c64224','CAN KÜREKÇİ ','11111111111',NULL,'Almanya',NULL,'111',NULL,0,2,0,'910904581','0','0',NULL,0,0,NULL,'2025-01-15 11:00:55.605','2025-01-16 09:39:04.395','2025-01-16 09:39:04.397'),
('96c4ce39-37cf-4514-b642-887eae14caa2','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-09-01 11:37:04.691',6925,'4126da30-ba9b-41b7-be29-865069aa484c','İLYAS ÖZBEK','31633137745',NULL,'Hollanda',NULL,'2624','MULTATULİWEG 9 2624 CD DELFT',0,2,0,'412184975','0','0',NULL,970,0,'3m3','2025-09-01 11:42:29.228','2025-09-01 13:10:44.176','2025-09-01 13:10:44.176'),
('96fd2ec1-bc18-4e5c-aa54-b63b621f826c','eccfe611-9163-42aa-a1ff-e711af0248e6','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-01 14:42:58.273',7712,'22a1dbd6-475c-4d4b-bb13-f459e3029634','JASSEY COLİNE','33647785711',NULL,'Fransa',NULL,'25200','2 RUE GURENBERG 25200 BETHONCOURT',7,2.5,120,'221190454','5','5','Şofor abimiz 10 numara adnan dursun bey',1090,1,'MOR ETİKET ','2025-08-01 14:44:30.935','2025-09-17 18:25:34.159',NULL),
('97162218-d772-45a9-81ad-57dead4ac1ff','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-01 14:14:53.222',2963,'3c7190b6-f6ee-4275-8958-d7af952132ab','LAURA TOLDİ','491749016774','491749016774','Almanya','UNTERSCHLEİSSHEİN BAVARİA','85716','EİNSTEİNSTRABE 6 85716 UNTERSCHLEİSSHEİN BAVARİA ALMANYA',0,2,110,'371395170','0','0',NULL,570,0,'masa + sehpa','2025-10-01 14:16:57.037','2025-10-24 06:38:18.663',NULL),
('97182860-1f38-433b-b884-7944ccda1a30','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-05 14:20:21.706',6068,'0debd19b-d90b-48a0-9568-2d01319377e0','KENAN SEKMEN ','4369910728517',NULL,'Avusturya','WİEN','1060','GARBERGASSE',12,2,120,'01914447','0','0',NULL,600,1,'YEŞİL ETİKETLİ','2025-05-05 14:22:02.362','2025-05-21 15:30:17.272',NULL),
('9739db1e-0165-46ba-ba28-b7ce9e88c38b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-09-02 11:25:32.945',3054,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','MUSTAFA ÖZÇOBAN','436609400015',NULL,'Avusturya',NULL,'2514','HOCHMÜHLSTRASSE 32, 2514 TRAİSKİRCHEN',9,2,120,'657264606','0','0',NULL,150,1,'1 PALET TRAVERTEN MASA','2025-09-02 11:26:55.059','2025-09-18 07:01:50.102',NULL),
('97aeede9-88c1-41c0-a1c0-b47031f0ee1e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','28e43894-abb7-4d47-acb4-b276a342b979','2024-03-15 14:31:21.842',8959,'4126da30-ba9b-41b7-be29-865069aa484c','BATTAL','32476391369','','Belçika','ALBERT','1600','ALBERT VAN COTTHEM STRAAT 70',1,8,100,'412524404','0','0',NULL,800,1,'','2024-03-15 14:37:26.968','2024-03-30 21:35:16.514',NULL),
('97d3447f-3a32-459a-8bdd-d360b881a042','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 13:57:28.194',4559,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA KESKİN','4917657654361',NULL,'Almanya','SÜSSEN','73079','HORNWİESEN STRASSE 9',9,1,0,'745976194','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2024-10-23 13:58:32.934','2024-11-12 08:04:45.917',NULL),
('97df81d0-5a59-4e29-bb48-4768b4a079cd','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-31 15:33:22.843',2407,'47880255-08ee-4e99-940b-16038e07de55','İBRAHİM TANKAZ','33695776275','33621123208','Fransa','LİVRY','93190','48 ALLEE DE MAC MOHAN 93190 LİVRY FRANSA',5,4,0,'47815812','0','0',NULL,2200,1,'TURUNCU ETİKETLİ','2024-12-31 15:39:15.238','2025-01-10 16:33:57.732',NULL),
('97f210f7-77d7-4798-b689-12729f296667','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-10 12:07:55.236',2105,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NAGEHAN ÇETİNKAYA ','491636641877',NULL,'Almanya',NULL,'34466','DAWESWEG 11 , 34466 WOLFHAGEN ',0,2,110,'221919629','0','0',NULL,500,0,NULL,'2025-10-10 12:09:35.403','2025-10-22 10:39:56.094',NULL),
('9852a2c7-87f3-43dc-8446-014d62d6842f','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','66307a01-d585-4127-903b-18748421c29e','2025-03-27 08:08:43.202',3179,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','MEDİNE POLAT','436604393878',NULL,'Avusturya','MARİSCHKAPRNMENADE','1210','MARİSCHKAPRAMENADE 2012146 1210 WİEN AVUSTURYA',17,3,140,'817488957','0','0',NULL,650,1,'SARI ETİKETLİ','2025-03-27 08:12:32.808','2025-05-06 11:26:25.870',NULL),
('98638de6-50b2-480f-acc9-1f74364a7f92','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-24 08:29:48.389',7014,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MAZİJA IBRAHIMOVİC','31623610676',NULL,'Hollanda',NULL,'4902','BARAN VAN HALLSTRAAT 1 , 4902 WM OOSTERHOUT ',13,2,120,'221417499','0','0',NULL,450,1,'YEŞİL ETİKETLİ','2025-06-24 08:31:42.108','2025-07-21 14:10:49.019',NULL),
('9872a403-aa8b-4c5a-97f3-17ed9113c1ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 12:54:14.164',4623,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYŞE KUTLU','41789618914','41786730121','İsviçre','PAYERNE','1530','RUE DE GUİLLERMAUX 4',5,1,140,'745449587','0','0',NULL,3900,1,'MOR ETİKETLİ ROMÖRK','2024-08-31 12:56:59.959','2024-09-07 15:54:04.720',NULL),
('988b6ac4-89de-44d1-b2f2-021d95db2baf','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-08-19 07:38:22.752',10236,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA İBRYAMOV SSH ','5451801422',NULL,'Bulgaristan',NULL,'1',NULL,0,2,0,'745763001','0','0',NULL,0,0,NULL,'2025-08-19 07:39:00.232','2025-08-28 11:19:24.667',NULL),
('98bda885-fe47-4716-8e4c-6ea1a95114e8','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-14 11:19:55.906',8437,'e6d4faef-484c-4ce7-992c-906e05fc083e','ŞENOL AKKOYUN','4915734620667','4915164628076','Almanya','ISERLOHN','58642','IM NORDFELD 56',17,3,110,'644535273','0','0',NULL,1100,1,'SARI ETİKETLİ','2025-03-14 11:25:27.194','2025-04-07 11:35:28.501',NULL),
('98c40a46-22d8-4470-84a1-302a19073f0d','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-06 15:09:57.151',10695,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BYTYCİ REZARDE','330667702698',NULL,'Fransa','Gap','05000',NULL,9,3.5,140,'982773684','0','0',NULL,1400,1,'BEYAZ ETİKETLİ','2024-11-06 15:11:52.734','2024-11-25 09:20:39.164',NULL),
('98f2dea4-caf9-419a-931c-7d9d7c9b36ac','bf6f92ba-eef7-4290-902d-b1bac86244bb','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-20 09:04:11.326',3695,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','BOURAS ABDELGHANİ','33651431937',NULL,'Fransa',NULL,'93230','67 RUE DU DUOCTEUR PARAT 93230 ROMAİNVİLLE',6,3.5,120,'501703321','0','0',NULL,1600,1,'KIRMIZI ETİKETLİ','2025-03-20 09:06:54.753','2025-05-02 17:10:53.232',NULL),
('994456e0-b759-4b05-827f-74c05ad02194','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-22 14:37:06.348',3037,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','NİLGÜN LEUKEL','01794421633',NULL,'Almanya','MONTABAUR','56410','ELBESTR. 15 \n56410 MONTABAUR',24,6,110,'531629494','0','0',NULL,1700,1,'GRİ ETİKET ','2025-09-22 14:40:17.895','2025-10-17 06:14:56.162',NULL),
('9944adb4-543d-4384-9dd3-6faf5055bb85','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-05 13:17:49.214',1473,'47880255-08ee-4e99-940b-16038e07de55','İBRAHİM TANKAZ','33621123208','33621123208','Fransa','LİVRY','93190','LİVRY  / FRANSA - 93190\n',5,2,130,'478354582','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-02-05 13:19:30.826','2025-02-27 16:42:24.996',NULL),
('99481881-e1d7-425b-9aa3-9cb0c61cb139','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:20:54.802',9557,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NURCAN ÖZER','491745765956','491525140470','Almanya',NULL,'24887','SCHLEWING KÖKBER STR 39',0,3.5,100,'745940979','0','0',NULL,1250,1,'TURUNCU ETİKETLİ','2024-11-12 15:22:34.293','2024-11-23 19:56:09.399',NULL),
('994c111c-e6b7-4e44-a12d-e02010c92c4a','394112c3-f977-4fc2-b430-775e79e472ca','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-09 19:51:46.217',3575,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HABİL ŞENER ','436609207591',NULL,'Avusturya',NULL,'9020',NULL,16,8.5,140,'982864044','0','0',NULL,3000,1,'MOR ETİKETLİ','2025-03-09 19:52:43.260','2025-04-02 18:57:10.886',NULL),
('999f9b3b-86d9-4db6-8455-c7f828dbacab','8fff5e14-418c-4377-bd83-3a3f81383507','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-07 07:46:18.053',6495,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ESME GÜNEŞ','491733842224',NULL,'Almanya','NUSPLİNGEN','72362','UHLANDSTR 29',17,2,110,'437256638','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-05-07 07:51:51.619','2025-06-17 16:02:25.266',NULL),
('99bf3199-3c27-48a2-a451-a85f9c13bd5c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-08 13:38:26.871',6320,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','FEVRİ YALÇIN','4917663707432',NULL,'Almanya',NULL,'70327','LİNDENFELSTR 45',20,2,110,'750135738','0','0',NULL,500,1,'SARI ETİKETLİ','2025-03-08 13:40:12.564','2025-03-15 08:58:11.901',NULL),
('99c9a988-01a1-474c-b7f5-70e4528c16c4','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3c847602-8428-494a-84ce-0c9c9392db1a','2025-07-11 11:05:44.206',9266,'3c7190b6-f6ee-4275-8958-d7af952132ab','SİNEM ULUSOY','4917670801496','4917670801496','Almanya','WÜRZBURG BAYERN','97098','BRUNNENSTRABE 14 97078 WÜRZBURG BAYERN ALMANYA',2,2,110,'37183091','0','0',NULL,800,1,'SARI ETİKETLİ','2025-07-11 11:10:26.271','2025-07-24 09:42:54.056',NULL),
('99f2313f-189c-456e-bcf0-d0e88ae7ffbf','89428e9c-4d02-45c3-a044-0b2a5ac2465d','acf5e984-44c0-4233-9521-0c373102472f','2024-12-05 12:03:30.248',10972,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','GÜLCAN AYDIN','33784178504',NULL,'Fransa','CREUTZWALD','57150','3 RUE GEORGE SAND',6,3.5,120,'976942444','0','0',NULL,1050,1,'MAVİ ETİKETLİ','2024-12-05 12:12:43.969','2024-12-22 12:45:33.978',NULL),
('99f6416e-f8e9-4260-942f-3c4c6b6fdae6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:49:31.317',2511,'1a63399e-9dca-4c70-be0e-e8e8a874b582','MURAT AKTAŞ','31625064385','','Hollanda','EİNDOVEN','5684','DE WAAL 2E',11,1,0,'163961995','0','0',NULL,1100,1,'TAÇ YAZILI KOLİLER','2024-09-05 15:54:27.415','2024-09-12 10:55:08.191',NULL),
('9a1969a8-0e13-466d-8869-8ce1c930334b','1f0119e0-2853-442a-8394-39cf94fce7df','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-16 09:39:43.321',3233,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','ALİ ALBAY','436605971568','436644740291','Avusturya','VİYANA','1100','KLEDERİNGERSTRASSE 119 HAUS 2. 1100 VİYANA/AVUSTURYA',25,5.5,120,'517205085','0','0',NULL,1000,1,'PEMBE ETİKET','2025-06-16 09:57:47.460','2025-07-21 10:22:28.740',NULL),
('9a1b78d9-2f44-4f22-8fcc-953573cdfffe','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-25 10:48:22.166',4875,'4126da30-ba9b-41b7-be29-865069aa484c','BOLL TRADE','173737373828383',NULL,'Hollanda',NULL,'5684',NULL,3,2,0,'412795154','0','0',NULL,2940,1,'Renkli bantlı koliler armut kılıfı','2025-05-25 10:49:29.702','2025-06-03 20:09:13.749',NULL),
('9a1e163d-879a-4faa-97dc-a573fdac190c','5c723cdc-e582-4b00-8271-838c085984c2','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-31 13:54:43.895',4909,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEDA KURTDİNÇEL','4917631212460','491765457602','Almanya',NULL,'16341','GRAZER STR2 16341 PANKETAL BRANDENBURG ALMANYA',16,3,105,'745431846','0','0',NULL,550,1,'MOR ETİKETLİ','2025-07-31 13:56:27.832','2025-08-19 19:34:06.860',NULL),
('9a2cd9bb-ae57-461a-be14-d7858f39280c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:41:20.568',9278,'0debd19b-d90b-48a0-9568-2d01319377e0','METE KANDEMİRCİ','4917647166886',NULL,'Almanya',NULL,'59229',NULL,11,2,110,'01921294','0','0',NULL,600,1,'GRİ ETİKETLİ','2025-02-07 11:43:10.207','2025-02-19 08:38:48.550',NULL),
('9a458821-6f05-4e00-b50d-eea5b3159cbd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-15 14:27:59.697',8346,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEDA TULGAR(K)','01625403964','015753642605','Almanya','HOF','95030','JODİTZER WEG 54\n95030 HOF \nALMANYA',0,2,110,'64433503','0','0',NULL,800,0,NULL,'2025-09-15 14:30:41.235','2025-09-22 17:24:05.950','2025-09-22 17:24:05.949'),
('9a46cc66-4f61-498a-861c-8abfaff03b4a','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-06 08:30:43.243',5275,'59868701-abe4-4705-a7e6-d91c2c69262e','ENES KARABAŞOĞLU','4917682107795','4917682057600','Almanya',NULL,'91257','91257 PEGNİTZ AM SCHLOSSBERG 16 ALMANYA',26,3,110,'598130952','0','0',NULL,0,0,'MOR ETİKETLİ','2025-08-06 09:07:47.914','2025-09-12 06:52:49.110',NULL),
('9a50f1e8-a344-4e30-8e8f-b77c66559586','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:45:09.292',7028,'47880255-08ee-4e99-940b-16038e07de55','MEHMET EMİN ŞIK','32456110358','32479973950','Belçika','ANTWERPAN','2660','SNT BERNARDE STEENWEG 871',18,1,100,'478955837','0','0',NULL,2000,1,'MAVİ ETİKETLİ','2024-09-27 12:47:02.223','2024-10-08 07:16:04.690',NULL),
('9a5b1798-a2b1-4df0-a151-463694364cd5','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-09-06 09:57:05.456',2291,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NATALİA MARKOVA','359892743769','359893900162','Bulgaristan','VARNA','9000','KAPİTAN GEORGİ  GEORGİ EV 6  9000 VARNA',0,5.5,0,'614364554','0','0',NULL,4600,0,NULL,'2025-09-06 10:01:46.135','2025-10-23 13:31:54.573','2025-10-23 13:31:54.572'),
('9a626800-f140-4dfa-a7a3-96ec6cf606bd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:18:16.325',3417,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖMER ÇALIK','491748888386','4917680173048','Almanya',NULL,'74343','BAHNHOF STR 64',20,4,100,'745127322','0','0',NULL,1000,1,'FOSFORLU YEŞİL ETİKETLİ','2024-11-02 08:19:17.853','2024-11-12 17:25:00.328',NULL),
('9a74f51a-7e75-4db9-acdc-874ddf9e54c5','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-09 08:04:05.150',8374,'3c7190b6-f6ee-4275-8958-d7af952132ab','NEŞE ERĞAT','4917684332584','4917684332584','Almanya','NEU ULM','89231','ZUGSPİTZRİNG 31 89231 NEU ULM ALMANYA',26,3,110,'371363007','0','0',NULL,740,1,'AÇIK MAVİ ETİKETLİ','2025-04-09 08:07:31.979','2025-04-24 15:01:27.378',NULL),
('9a8f0b0e-e360-4912-87e7-49eaffffb114','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-29 08:46:06.967',9627,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BEYTUK KAPLAN','41792079376','','İsviçre','AARBURG','4663','WARTBURG 6',5,11,140,'745724680','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2024-05-29 08:47:51.737','2024-06-10 13:50:10.456',NULL),
('9a8fe83d-8c43-4179-8ed4-895265a42b51','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-24 11:15:07.401',5670,'e6d4faef-484c-4ce7-992c-906e05fc083e','KEVSER KAYAHAN(K)','491637190228','1637190228','Almanya','HERZOGENRATH','52134','HUMBOLDSTRASSE 15',0,3.5,110,'644390236','0','0',NULL,745,0,NULL,'2025-09-24 11:23:59.273','2025-10-23 08:04:41.766',NULL),
('9aaeab80-cfa4-4210-b789-4d7ae0454982','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:27:40.849',2886,'c2d4ce84-536d-4816-837f-7abbf6a7e061','DARAYYA MÖBEL','015908423104','','Almanya','DESSAU','06842','KABELWEG 32',8,1,0,'248771792','0','0',NULL,1260,1,'TURUNCU ETİKETLİ','2024-04-27 08:29:31.905','2024-05-08 21:07:51.840',NULL),
('9ab1e698-3e9c-4902-81a7-1cc2cb0af3ff','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-14 15:17:46.273',10843,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN BİLİCAN','32470652077','','Belçika','BUGGENHOUT','9255','KASTEELSTRAAT 223',0,90,44.45,'703700559','0','0',NULL,0,0,'','2024-03-14 15:22:33.969','2024-03-14 15:23:00.137','2024-03-14 15:23:00.137'),
('9ad0f9c0-122b-4939-b7d3-2bbf042048fd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 08:58:49.403',1910,'47880255-08ee-4e99-940b-16038e07de55','SAVAŞ AKTAŞ','4917623983797','','Almanya','MÜNCHEN','81671','IMSBRUCKER RİNG 72',3,5.5,100,'478815317','0','0',NULL,1500,1,'SARI ETİKETLİ','2024-10-02 09:00:55.285','2024-10-08 09:24:53.436',NULL),
('9ad30007-c146-4449-9cf9-5e061740cfa4','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-22 09:03:32.536',2127,'3c7190b6-f6ee-4275-8958-d7af952132ab','KADİR YILMAZ','436505951978','436505951978','Avusturya','DARNBİRN','6850','BÜNDTLİTTENSTRABE 13 TOP 2 6850 DARNBİRN AVUSTURYA',0,4.5,110,'371118280','0','0',NULL,1300,0,'köşe takım, berjer, bazalı karyola. 6 metreküp','2025-10-22 09:05:38.868','2025-10-22 11:30:18.285',NULL),
('9aebce2f-4ca4-4d19-b7e8-f47f6e15e1a0','05135cd5-2d33-4363-b51e-c9b83a94094d',NULL,'2025-08-27 15:08:50.301',8854,'4126da30-ba9b-41b7-be29-865069aa484c','İHSAN KEPİR','4334434234324324',NULL,'Almanya',NULL,'27751','AM DONNERESCH 33',0,2,0,'412980691','0','0',NULL,0,0,NULL,'2025-08-27 15:09:43.792','2025-09-05 18:23:01.465','2025-09-05 18:23:01.464'),
('9af50f14-4a22-4798-bc08-091a8f5a42ce','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-30 13:36:18.527',6082,'fabe2c23-b5a5-4123-a962-af519ac31d3b','CANSEL YILMAZ','33760923065','33757676315','Fransa','MARSİLYA','13003','',11,6.5,110,'223275516','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-08-30 13:44:11.722','2024-09-08 18:51:02.007',NULL),
('9afe7094-ce46-4441-8b6f-2e0a7ff9dc54','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-03 21:11:20.713',9795,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','YASSMİNE JADMOUR','33651871381',NULL,'Fransa','Toulouse','31770','31770 touşouse',5,2.5,140,'982455918','5','5','😇',0,0,'BEJ ETİKETLİ','2024-11-03 21:12:58.658','2024-11-25 09:20:39.164',NULL),
('9b0fdc03-2303-4892-bf4d-0d91b19ec321','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-14 19:32:17.771',6244,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ERKAN UYSAL ','491711202605','491747638534','Almanya',NULL,'85057',NULL,12,3.5,140,'982271871','1','5','Ürünler çok gecikmeli geldi ',1850,1,'GRİ ETİKETLİ','2024-11-14 19:34:09.081','2024-12-14 08:30:09.264',NULL),
('9b2b97c3-e08e-424a-9a23-e7c625f3e6cc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-13 15:51:15.089',4629,'33cc49ad-e7a0-4ee9-9120-2a98bd963a47','BİRSEN YILMAZ','491726668460',NULL,'Almanya',NULL,'74523',NULL,21,2,110,'334873891','0','0',NULL,1000,1,'YEŞİL ETİKET ','2025-08-13 15:54:32.788','2025-08-27 19:34:52.034',NULL),
('9b2f2551-1d35-437d-8ac4-759e5572cc4b','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-17 09:37:07.565',1574,'22a1dbd6-475c-4d4b-bb13-f459e3029634','YILDIZ KILIÇ','33661933324',NULL,'Fransa',NULL,'44100','1 IMPASSE DE LA DURANTİERE 44100 NANTES',4,2,130,'221952785','0','0',NULL,875,1,'YEŞİL ETİKETLİ','2025-01-17 09:38:55.594','2025-02-14 15:00:35.915',NULL),
('9b3716c5-1516-4a14-9ee7-cde40b37434c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-31 14:34:58.605',5084,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HAKAN ASLAN','32466169557',NULL,'Belçika',NULL,'4100','RUE DE I\'AVİATİON 36',9,3,110,'982858369','0','0',NULL,1200,1,'KIRMIZI ETİKETLİ','2024-10-31 14:43:14.103','2024-11-11 19:55:59.632',NULL),
('9b5b3b68-3e25-45b7-a856-05ae20d3cce5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-05 18:35:59.219',10496,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','VELİT FİLİZ','4917621650674',NULL,'Almanya',NULL,'10963','HALLESCHES UFER 52',18,4,110,'808450440','5','5','10/10',1200,1,'BEJ RENK','2025-09-05 18:37:45.055','2025-09-15 15:38:52.022',NULL),
('9baf761a-5eba-4780-bfc0-003e1236dff6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:25:18.529',7008,'47880255-08ee-4e99-940b-16038e07de55','MELİSA DEMİRTAŞ','33781067727','','Fransa','DANJOUTİN','90400','9 RUE DU GENERAL LECLERC',4,1,110,'478504480','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-09-28 15:27:14.853','2024-10-09 08:37:08.450',NULL),
('9bb69d66-9d62-43d8-bd75-6e65b41ffe8b','30b3fa45-4362-4bef-b611-4d4d2a3c84e3','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-15 07:37:58.902',1906,'9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','FERİDUN BAYER','32485453027','05362285629','Belçika','ANTWERPEN','2660','SİNT BERNARDSE STEENWEG 477 2660 ANTWERPEN/HOBOKEN BELGİE',11,2,120,'959168443','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-09-15 07:57:16.061','2025-10-16 15:46:11.313',NULL),
('9bc7ed7a-88ba-4843-ab9e-94956f2066a3','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-08-28 09:33:12.124',8711,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','EBRU SOBAY','004917661019761','004915202033588','Almanya','DİLLİNGEN ','66763','STUTTGORTES 19',26,2.5,110,'437574361','0','0',NULL,750,1,'YEŞİL ETİKET ','2025-08-28 09:38:24.522','2025-09-27 08:39:30.839',NULL),
('9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17','313cc2e2-5529-49ab-abe5-27b5d390bc5f','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-31 08:27:14.765',8870,'6133a2db-79c4-4372-9338-505db46b1847','SEVİM KARATEKE ','491723174389','491622351265','Almanya','MÜNCHEN','80997','ALLACHERSTR.90 80997 MÜNCHEN ',6,2,110,'613528305','0','0',NULL,750,1,'MAVİ ETİKETLİ','2025-07-31 08:29:22.202','2025-09-18 15:07:42.194',NULL),
('9c0b1881-fd94-413c-b7b5-63b9d4d26501','eccfe611-9163-42aa-a1ff-e711af0248e6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-18 13:28:36.152',2327,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SERKAN YILMAZ','31686094393',NULL,'Hollanda',NULL,'1067','J G SUURHOFFSTRAAT 147 , 1067 VR AMSTERDAM ',2,2,120,'22145224','5','5','Saygili ve guzel iletisimli',600,1,'YEŞİL ETİKETLİ','2025-03-18 13:30:50.305','2025-04-09 07:14:13.798',NULL),
('9c3d7567-24b3-4c51-9c80-4065af9769a9','56e5168e-cbcf-408d-8798-5560be5c7235','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-05 11:35:14.713',7196,'7bb6a552-e940-4456-bfc3-50a13013996c','DİLEK KHABİL','4915758509876','491628991076','Almanya','BADEN-WÜRTTEMBERG','79837',' TODTMOOSERSTRASSE 3 \n79837 ST.BLASİEN  \nBADEN-WÜRTTEMBERG ALMANYA',13,6.5,110,'765729280','0','0',NULL,1000,1,'TURUNCU ETİKET ','2025-08-05 11:39:36.675','2025-08-28 18:20:16.505',NULL),
('9c4a2d66-51b7-4378-aeac-e9b8af1f063a','eccfe611-9163-42aa-a1ff-e711af0248e6','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-04 23:28:42.840',1455,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AHMED HAMEL ','33769844475',NULL,'İsviçre',NULL,'1267','ROUTE DE LA TOURBİERE 13B 1267 COİNSİNS',3,2.5,140,'221413192','5','5','perfect',1150,1,'GRİ ETİKETLİ','2025-01-04 23:30:47.069','2025-02-03 09:12:42.361',NULL),
('9c50c2ab-574c-478e-bfbf-37bbf5ebab18','5c723cdc-e582-4b00-8271-838c085984c2','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-23 08:45:14.871',3403,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLÜZAR KECKİN','33635914929','33602366647','Fransa',NULL,'44110','52 RUE DU MARECHAL FOCH 44110 CHATEAUBRIAND FRANSA ',2,3.5,130,'745276257','0','0',NULL,850,1,'TURUNCU ETİKETLİ','2025-05-23 08:46:59.795','2025-07-16 07:46:05.669',NULL),
('9c5e22fd-be64-4432-b4ea-accf07116cf0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:18:54.761',3405,'4126da30-ba9b-41b7-be29-865069aa484c','NUMAN ALTUN','491771708842',NULL,'Almanya',NULL,'52222','STOLBERG NORDRHEİN-WESTFALEN',3,2,0,'41256945','0','0',NULL,360,1,'TURUNCU ETİKETLİ','2025-02-07 11:25:16.643','2025-02-19 19:03:52.735',NULL),
('9c622fdf-272f-4650-ac75-c35e205b6022','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 12:36:01.316',2021,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ALİ BÜKLÜ','41765923442','','İsviçre','','4123','',8,1,140,'982506182','0','0',NULL,1100,1,'KIRMIZI ETİKETLİ ROMÖRK','2024-10-17 12:37:24.020','2024-10-24 01:09:27.947',NULL),
('9c818465-8168-4f07-aaba-0d59b1260716','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-14 14:51:13.464',9083,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda',' ELİF MUHCU','436765714761','436765714761','Avusturya',' MAİRBERG','4592','4592 LEONSTEİN MAİRBERG 15 AVUSTURYA',17,2,140,'127281736','0','0',NULL,800,1,'MAVİ ETİKETLİ','2025-02-14 14:54:58.492','2025-02-21 17:08:57.557',NULL),
('9c826bc4-15c9-43a5-8ec8-92c216c54593','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-22 10:49:38.598',7109,'47880255-08ee-4e99-940b-16038e07de55','SERKAN ÖZBAY','31686432673','31684469645','Hollanda','HE BEST','5684','GRISKLOSKSE 45 4684 HE BEST HOLLANDA',10,5.5,120,'478800752','0','0',NULL,1450,1,'YEŞİL ETİKETLİ','2025-04-22 10:51:47.757','2025-05-02 06:58:52.817',NULL),
('9c99f254-2612-4029-ac15-ffb095b93de3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-24 12:38:48.785',5231,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','MEHMET SARIKAYA','32487435166','','Belçika','PUURS','2890','HEMELRİJKEN 3',19,2.5,100,'268368509','0','0',NULL,250,1,'YEŞİL ETİKETLİ','2024-09-24 12:46:34.106','2024-10-08 07:16:14.799',NULL),
('9ca5ad68-0419-4edf-862a-2a6e5047e63d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:24:15.366',8267,'1a63399e-9dca-4c70-be0e-e8e8a874b582','MURAT AKTAŞ','31625064385','','Hollanda','EİNDOVEN','5684','DE WAAL2E',10,1,0,'163401674','0','0',NULL,0,0,'TAÇ YAZILI BANTLI KOLİLER','2024-06-08 07:26:13.651','2024-06-21 09:39:19.258',NULL),
('9cc644ac-8707-4c8c-8387-2459908b1a57','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-10-28 13:16:01.190',7557,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','ZÜLEYHA MUĞLU','33769135395',NULL,'Fransa',NULL,'69120','6 CHEMİN DE LA GODİLLE',12,3.5,140,'750486427','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-10-28 13:17:53.979','2024-11-25 09:20:39.164',NULL),
('9cd992a9-f3c9-4cb4-a22b-ac995a102670','eccfe611-9163-42aa-a1ff-e711af0248e6','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-22 11:43:06.235',3265,'22a1dbd6-475c-4d4b-bb13-f459e3029634','TEBIB MYRIAM ','33626413222',NULL,'Fransa',NULL,'25000','16 A QUAI HENRİ BUGNET 25000 BESANCON',14,2,120,'221603036','5','5','3265',500,1,'KIRMIZI ETİKET','2025-09-22 11:44:44.785','2025-10-23 17:40:40.983',NULL),
('9ce62bd7-3afd-4765-a2a2-99f4aea71849','eccfe611-9163-42aa-a1ff-e711af0248e6','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-24 08:38:53.109',6780,'22a1dbd6-475c-4d4b-bb13-f459e3029634','REUAN SHAMO ','491625165832',NULL,'Almanya',NULL,'30952','SİLBERBERGWEG 26F 30952 RONNENBERG',4,2,110,'221947357','0','0',NULL,650,1,'BEYAZ ETİKETLİ','2025-04-24 08:41:32.212','2025-05-14 06:37:16.241',NULL),
('9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c','5c723cdc-e582-4b00-8271-838c085984c2','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-25 12:35:35.917',4975,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EMRE YILMAZ SSH ','4917683344866','4915560755375','Almanya',NULL,'68723','LINCKSTRABE 8 68723 SCHWETZINGEN ALMANYA',23,2,105,'745771664','1','1','Baştan sona herşey çok kötü. ',0,0,'SSH','2025-06-25 12:35:38.649','2025-07-24 06:56:43.307',NULL),
('9d125453-ffdb-4ead-96a1-dad36ea9137f','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-24 08:47:35.553',4380,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','ARZU ASLAN','436605070364',NULL,'Avusturya','VİYANA','1120','SUSİ-WEİGEL-WEG 1-5/2/31 - 1120',20,3,120,'675965194','5','5','5',0,0,'YEŞİL ETİKET','2025-09-24 08:51:18.360','2025-10-13 11:26:03.287',NULL),
('9d26f3f5-1617-4627-a308-2aea49169455','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 08:59:22.532',9257,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','AŞKIN TUN','004917642060637',NULL,'Almanya',NULL,'70806','KORNWESTHEİM',12,2.5,0,'127105973','0','0',NULL,950,1,'KIRMIZI ETİKETLİ','2024-12-13 09:02:29.158','2025-01-19 13:34:13.249',NULL),
('9d2cc51d-661d-4efe-b0fd-2306ca62f7fd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:57:06.219',3675,'d3157cbd-9f22-499b-b371-4eff6e509b92','ALİ ÖZ','436602591422','','Avusturya','FELDKİRCHEN','9560','MARKSTEİN SİEDLUNG 5/11',12,3,120,'315389904','0','0',NULL,1000,1,'BEJ ETİKETLİ','2024-05-10 06:59:46.422','2024-05-29 11:17:16.427',NULL),
('9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab','05135cd5-2d33-4363-b51e-c9b83a94094d','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-30 17:20:13.177',6306,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT','31625064385',NULL,'Hollanda',NULL,'5684',NULL,14,2,0,'4127825','0','0',NULL,200,1,'MOR ETİKETLİ','2025-06-30 18:31:03.599','2025-07-21 08:01:00.374',NULL),
('9d5fc36f-ed4b-4eac-8e6c-6b24348b505e','eccfe611-9163-42aa-a1ff-e711af0248e6','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-04-24 08:45:18.514',10440,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LATİFA KHAZROUKI','33634048698',NULL,'Fransa',NULL,'17170','3 CHEMİN TERRE DES MOULİNS 17170 COURÇON',4,2.5,130,'221139773','0','0',NULL,1000,1,'MOR RENK','2025-04-24 08:46:57.055','2025-07-15 19:42:51.929',NULL),
('9d793d11-dd40-4c10-9d08-77df5b643ca6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-18 14:14:03.802',6862,'c2d4ce84-536d-4816-837f-7abbf6a7e061','SAMİ CENGİZ ','4915207719720',NULL,'Almanya',NULL,'26781','JUİSTER STRASSE 41',9,3,0,'248213954','0','0',NULL,900,1,'YEŞİL ETİKETLİ','2024-12-18 14:16:12.365','2025-01-09 13:53:47.382',NULL),
('9d816e36-46d4-475f-ab4d-8dc4e121cb72','f784b688-ba6b-4886-87dd-fe4cfbed85b4','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-04 07:18:46.008',2970,'dea91080-5383-4085-af2e-7eace2c64224','MUSTAFA DÜNDAR		','4917624132760','4917639148019','Almanya',NULL,'18107','OSLOER STR.6		\n18107 ROSTOCK/DEUTSCHLAND		\n',3,13.5,110,'910775394','0','0',NULL,750,1,'SARI ETİKETLİ','2025-02-04 07:20:20.757','2025-02-27 13:37:30.441',NULL),
('9da5d3b0-f88e-4c15-a503-00d3fecd11b9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bd143f82-77da-4c1d-9d90-001698b828cf','2025-09-02 10:50:58.544',6461,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','NURCAN KURNAZ','31638732101',NULL,'Hollanda',NULL,'2521','VERHEESKADE 363 2521DE /DEN HAAG-HOLLANDA',6,3,120,'786252388','0','0',NULL,995,1,'AÇIK KAHVE ETİKET','2025-09-02 10:55:12.719','2025-09-12 19:46:40.785',NULL),
('9db12415-2152-439d-bb63-bebefc3c640c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-27 10:15:18.291',3534,'47880255-08ee-4e99-940b-16038e07de55','ÖZLEM RAMADAN','33605947525','337713211538','Fransa','METZ','57070','2 RUE DE VİLLERS 57070 METZ FRANSA',9,2,130,'478150977','5','5','Çok iyi',6000,1,'MAVİ ETİKETLİ','2025-01-27 10:17:25.307','2025-03-03 14:37:02.881',NULL),
('9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b','f784b688-ba6b-4886-87dd-fe4cfbed85b4','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-29 14:23:04.938',8152,'dea91080-5383-4085-af2e-7eace2c64224','EKREM ASLAN','4915785558827','4915785558828','Almanya',NULL,'75175','EUTİNGER STR. 75175 PFORZHEİM		\n',24,2,0,'910632087','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-07-29 14:26:55.505','2025-08-27 05:41:45.747',NULL),
('9df2d9a2-447d-43e4-ba38-1e784040acf7','8fff5e14-418c-4377-bd83-3a3f81383507','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-18 09:02:51.058',6089,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','EDA ÇALIŞKAN','4917666234903',NULL,'Almanya','KRUMBACH','86381','NATTENHAUSER STR 7',8,3.5,110,'437539983','0','0',NULL,490,1,'SARI ETİKET','2025-08-18 09:04:29.248','2025-08-30 18:25:27.870',NULL),
('9e04acec-f940-4ce2-9a36-44b825987e05','394112c3-f977-4fc2-b430-775e79e472ca','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-07 12:33:47.286',1543,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','OMARİ EMAL ','33620174742',NULL,'Fransa',NULL,'89100',NULL,13,5.5,140,'982726615','0','0',NULL,4000,1,'TURUNCU ETİKETLİ','2025-03-07 12:35:24.784','2025-03-22 07:37:28.261',NULL),
('9e399534-04a6-4572-a7ec-3a630c910cdf','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-09-26 07:34:40.357',10552,'59868701-abe4-4705-a7e6-d91c2c69262e','ÖZLEM GÜN','41764573181','41764573181','İsviçre',NULL,'8589','AMRİSWİLERSTRASSE 17, 8589 SİTTERDORF İSVİÇRE/THURGAU',0,4.5,140,'598604443','0','0',NULL,1000,0,'4.5 m3','2025-09-26 07:38:29.411','2025-10-22 13:14:32.447',NULL),
('9e64600d-1c01-44ab-9728-6619d083385a','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-06 08:02:52.881',2686,'59868701-abe4-4705-a7e6-d91c2c69262e','SİHAM MAHMOUD','4542392394','4560523452','Almanya',NULL,'24944','STRALSUNDER STRASSE 6, 24944 FLENSBURG ALMANYA',0,8,110,'598280715','0','0',NULL,2500,1,'SARI ETİKET','2025-08-06 08:12:14.042','2025-09-16 17:47:08.285',NULL),
('9e65ae08-29b6-4cde-954a-39f0530ce16e','394112c3-f977-4fc2-b430-775e79e472ca','2a352437-950c-42a9-9135-55482cf3977c','2025-08-11 18:20:20.254',10414,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FERİDE USLI ','4369919053808',NULL,'Avusturya',NULL,'8010',NULL,13,3.5,140,'982674617','0','0',NULL,2500,1,'PEMBE ETİKET','2025-08-11 18:21:36.061','2025-08-21 08:13:58.053',NULL),
('9ed256bd-b366-4a81-80af-3c33747dd7f2','d03032cd-3542-403b-975d-f781dffab494',NULL,'2024-10-24 13:16:54.100',9013,'4126da30-ba9b-41b7-be29-865069aa484c','test','1547737773',NULL,'Almanya',NULL,'75253',NULL,0,1,0,'412629947','0','0',NULL,0,0,NULL,'2024-10-24 13:22:45.288','2024-10-24 15:19:45.935','2024-10-24 15:19:45.943'),
('9f3a5616-6c64-44aa-90f5-c34379989ac3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:51:36.479',1933,'73596a75-b658-4249-8c71-b0490654bc8b','MURAT','0031687542541',NULL,'Hollanda',NULL,'1111','GROENEWEG 22C',5,4.5,0,'73547719','0','0',NULL,450,1,'TURUNCU ETİKETLİ','2024-12-07 08:52:45.516','2024-12-20 09:33:50.324',NULL),
('9f65e17e-c684-49ab-8966-be09ed865fe2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 12:29:39.037',5840,'92d31478-aa4f-4f7e-b6e7-95b858af9bfe','FUNDA CAMDAN','4915204907905','','Almanya','KÖNİGSBRUNN','86343','RATHAUSSTR. 60',2,1,0,'923419994','0','0',NULL,1300,1,'KIRMIZI ETİKETLİ','2024-10-17 12:31:13.153','2024-10-23 16:38:04.049',NULL),
('9f748f02-e185-45e0-9d24-ee921761490f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:31:50.429',7225,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','SEZER BEY','33680267085','','','ROTS','14740','20 RUE DE LA DİME ',3,3.5,110,'126922033','0','0',NULL,0,0,'SARI ETİKETLİ','2024-05-10 06:33:40.638','2024-06-04 14:25:01.923',NULL),
('9fd3dea4-8f19-4273-b4a8-c62b1771e97a','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-01-29 07:30:52.617',3562,'47880255-08ee-4e99-940b-16038e07de55','CESİM ALDEMİR','33744511668','33661272084','Fransa','MARSEİLLE','13005','13 RUE CAPİTONE DU GALİNAT 13005 MARSEİLLE FRANSA',0,2,130,'47892345','0','0',NULL,1000,0,'4 m3','2025-01-29 07:32:41.709','2025-01-30 10:15:13.801','2025-01-30 10:15:13.804'),
('9fe64691-2031-49a6-a917-f5af8aa63a82','5c723cdc-e582-4b00-8271-838c085984c2','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-04 14:33:58.259',10614,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OKAN EKİNCİ','491608350626','5421009721','Almanya',NULL,'65558','WIESENSTRASSE 21 65558 OBERNEISEN ALMANYA ',15,8.5,105,'745873539','0','0',NULL,2950,1,'AÇIK KAHVE ETİKET ','2025-08-04 14:35:54.373','2025-09-09 12:49:41.764',NULL),
('9feff913-404e-4b4c-b57f-21740becbcff','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-13 09:45:43.281',2172,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MOHAMED SAİD ZARZAURİ','32499836512',NULL,'Belçika',NULL,'1800','NİJVERHEİDSSTRAAT 26,1800 VİLVOORDE',3,2,120,'221240151','0','0',NULL,490,1,'MAVİ ETİKETLİ','2025-01-13 09:48:09.930','2025-02-10 14:16:33.210',NULL),
('a00e37fb-9c25-4ad9-b693-543d9ddf388a','5c723cdc-e582-4b00-8271-838c085984c2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-14 10:23:30.945',6494,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA ALTAY','4915757838054','4917662792602','Almanya',NULL,'58095','58095 HAGEN GOLDBERG STRABE 12A ALMANYA',10,5,105,'745871666','5','5','100 puan ',950,1,'MOR ETİKETLİ','2025-05-14 10:24:45.576','2025-06-06 18:14:22.323',NULL),
('a029bd37-9eca-4220-a768-df5b0d586118','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-07 14:34:24.861',5243,'bce952bd-e658-4eff-b14a-3b71ea5a5124','GÜLNUR KURUOĞLU','4917682095628','491634817126','Almanya','BERLİN','10969','JAKOBSTRABE 20',12,5,0,'952470417','0','0',NULL,2000,1,'BEYAZ ETİKETLİ','2024-11-07 14:40:49.855','2024-11-23 12:17:08.607',NULL),
('a04ae8dd-1caf-4622-97e8-aa08c8974c93','8fff5e14-418c-4377-bd83-3a3f81383507','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-15 11:39:45.317',5284,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','UFUK SANATÇI','4917661423024',NULL,'Almanya','BERLİN','12524','MOHNWEG 3 B',24,5.5,110,'43783689','0','0',NULL,1300,1,'GRİ ETİKETLİ','2025-08-15 11:45:07.658','2025-09-12 22:09:27.951',NULL),
('a04f974c-9931-40d4-ae61-21f5044fce18','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-21 11:41:54.029',6378,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN ','32470652077',NULL,'Belçika',NULL,'9255',NULL,3,3.5,120,'703870981','5','5','Allah razı olsun söz verildiği gibi ',420,1,'SARI ETİKETLİ','2025-02-21 11:44:13.990','2025-08-21 09:23:04.620',NULL),
('a05e0bfa-eaae-4d7d-a151-404547093031','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-08 14:36:38.283',2096,'3c7190b6-f6ee-4275-8958-d7af952132ab','SÜLEYMAN SUNGUR','41793422327','41793422327','İsviçre','BASEL STADT','4058','TANGENTENWEG 11 4058 BASEL STADT İSVİÇRE',11,2.5,140,'371365041','5','5','Herşey güzeldi',1300,1,'SARI ETİKETLİ','2025-07-08 14:39:06.603','2025-08-02 17:41:35.226',NULL),
('a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','eccfe611-9163-42aa-a1ff-e711af0248e6','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-15 08:39:38.610',1621,'22a1dbd6-475c-4d4b-bb13-f459e3029634','FİRDEVS ORHAN','33627391444','33666268323','Fransa','+33 6 27 39 14 44','14550','41 RUE DE ROME 14550 BLAİNVİLLE -SUR-ORNE',0,3.5,130,'221407228','0','0',NULL,1600,1,'KIRMIZI ETİKET','2025-07-15 08:42:20.738','2025-09-08 05:17:41.191',NULL),
('a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','5c723cdc-e582-4b00-8271-838c085984c2','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-02 15:28:39.744',5518,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MAHMUT ÖZKAN','491795446214',NULL,'Almanya',NULL,'32584','THEODOR FONTANE STRABE 14 32584 LÖHNE ALMANYA',12,8,105,'745996696','0','0',NULL,2300,1,'SARI ETİKETLİ','2025-07-02 15:30:29.528','2025-08-21 08:12:27.394',NULL),
('a0dca27d-4e30-4743-8f98-0a016e2624ec','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-06-26 13:32:36.914',9379,'47880255-08ee-4e99-940b-16038e07de55','BİNALİ BOZBAS','491636703149','491636703149','Almanya','DUİSBURG','47198','YAKİN ADRESTEN ALACAK SSH',0,2,105,'478790178','0','0',NULL,0,0,NULL,'2025-06-26 14:52:33.493','2025-07-11 12:22:01.997','2025-07-11 12:22:01.996'),
('a1113ea5-513c-4c80-af01-bf6fc31ed2a9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-11 12:07:33.953',9555,'e6d4faef-484c-4ce7-992c-906e05fc083e','SILA SEVİL İLGÜN','4917680220658','491634672803','Almanya','BERLİN','12349','AM MÜHLANGER 9',23,2,110,'644877864','0','0',NULL,675,1,'BEJ ETİKETLİ','2025-08-11 12:15:42.638','2025-09-12 22:09:32.774',NULL),
('a132cd43-3a78-405e-8d75-c0a8147b581f','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-08 11:41:49.846',5041,'59868701-abe4-4705-a7e6-d91c2c69262e','HAYRİYE BOZKURT','491629891216','4917634315393','Almanya',NULL,'67071','ROBERT LAUTH STR. 73, 67071 LUDWİGS HAFEN ALMANYA',25,2.5,110,'598405313','0','0',NULL,745,1,'MOR ETİKETLİ','2025-04-08 11:49:17.152','2025-05-10 20:13:29.165',NULL),
('a149c299-f700-457c-ad04-aac7b10d4609','1764a07b-eb47-4578-b6cd-f3c0d0e743be','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-17 09:03:56.206',9770,'47880255-08ee-4e99-940b-16038e07de55','ŞEVKET ZİRİH','491724690226','49171241720','Almanya','TROCHTELFİNGEN','72818','SCHMALGASSE16/1 TROCHTELFİNGEN 72818 ALMANYA',26,2,105,'478545295','0','0',NULL,400,1,'KIRMIZI ETİKETLİ','2025-02-17 09:07:09.503','2025-03-04 20:47:35.346',NULL),
('a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 10:01:19.043',7463,'a42d8839-caef-4422-888f-cbfdf4188c5b','KÖKSAL ÇELİK','4917656562784','4915144166539','Almanya','EHİNGEN','89584','ALFRED DELP STRABE 3',11,1,0,'428991499','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-03-30 10:04:32.900','2024-04-12 07:17:21.202',NULL),
('a182b824-b752-401d-b663-5d96552a9f49','d03032cd-3542-403b-975d-f781dffab494',NULL,'2024-10-07 18:11:53.610',10841,'4126da30-ba9b-41b7-be29-865069aa484c','Ahmet Aydın','905244879964','','Aland Adaları','','14789','Küçükbalıklı MH.\n6. CD. No 53/B',0,1,0,'412346984','0','0',NULL,500,0,'','2024-10-07 18:12:34.844','2024-10-11 08:53:39.745','2024-10-11 08:53:39.765'),
('a1891b3d-2115-4842-a527-66a78ad1317d','313cc2e2-5529-49ab-abe5-27b5d390bc5f','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-24 16:06:09.142',4319,'6133a2db-79c4-4372-9338-505db46b1847','FJOLLA VRENEZİ','41792517143','41763260101','İsviçre','ST.GALLEN','9016','ZİLSTRASSE 12A 9016 ST.GALLEN SWITZERLAND',15,2,140,'613853408','1','1','.',650,1,'YEŞİL ETİKETLİ\n650 CHF alınacaktır','2025-03-24 16:10:12.475','2025-05-07 16:51:45.644',NULL),
('a19108da-c4a8-4e26-aaec-815a4c582fb5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-08-26 12:07:15.956',5965,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','GAMZE CAPALBO','491778394505','4917630410720','Almanya','GROBAUHEİM','63457','LUİSENSTRASSE 39',6,9.5,0,'517147933','1','1','10',2700,1,'SARI ETİKETLİ','2024-08-26 12:17:42.694','2024-11-21 06:56:50.227',NULL),
('a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-27 08:08:11.295',4528,'e6d4faef-484c-4ce7-992c-906e05fc083e','SONGÜL BALTACI','4915735191479','491776786642','Almanya','BERLİN','12359','GRÜNERWEG 85A ',0,2,110,'64446005','0','0',NULL,1000,1,'1 PALET','2025-03-27 08:12:42.795','2025-04-28 18:15:48.256',NULL),
('a19d66bb-d207-4329-bba8-b2b0c50bd4f6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-28 12:39:41.657',5051,'3c7190b6-f6ee-4275-8958-d7af952132ab','NERGİZ TOPRAK','4917663371401','4917663371401','Almanya','EPPİNGEN','75031','LEONHARD ENGELHARDT STR 2 75031 EPPİNGEN ALMANYA',23,3.5,110,'371540742','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2025-08-28 12:42:17.061','2025-09-23 14:03:57.119',NULL),
('a1cb7e5c-5a8b-4188-a8f3-3130d05e6963','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2024-12-24 10:03:42.818',8652,'a42d8839-caef-4422-888f-cbfdf4188c5b','SÜMEYYE KARAMAN','41765187366',NULL,'İsviçre',NULL,'3007',NULL,4,2,140,'428103279','0','0',NULL,0,0,'Turuncu etiketli','2024-12-24 10:07:25.531','2025-02-25 17:03:24.823',NULL),
('a1f6b1cb-16eb-4f24-903c-834f148431b7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-09 13:21:59.233',4635,'4126da30-ba9b-41b7-be29-865069aa484c','ABDULKADER TARRAB','4915901350790',NULL,'Almanya',NULL,'59320','DEUTSCHLAND \nENNİGERLOH 59320 \nHAUPTSTRASSE 10 ',13,3,0,'412383870','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-07-09 13:23:47.811','2025-07-25 10:49:18.047',NULL),
('a2010327-e9ab-4331-9de9-8dfb1da2f54d','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-21 07:29:38.320',7322,'3c7190b6-f6ee-4275-8958-d7af952132ab','ELÇİN COŞKUN','4917666896153','4917666896153','Almanya','SEELZE','30926','KORNBLUMENWEG 6A 30926 SEELZE ALMANYA',0,3.5,110,'371456634','0','0',NULL,500,0,'köşe takımı + puf. 3 metreküp','2025-10-21 07:31:02.999','2025-10-22 09:35:16.849',NULL),
('a2313433-a437-47d9-a63c-55c129ea96e2','eccfe611-9163-42aa-a1ff-e711af0248e6','66307a01-d585-4127-903b-18748421c29e','2025-03-24 13:44:51.994',1296,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NURSELİ KÖSE ','436604738360',NULL,'Avusturya',NULL,'2601','AM SONNENHAİN 28 / 2601 SOLLENAU',23,2,140,'221285061','0','0',NULL,0,1,'KIRMIZI ETİKETLİ','2025-03-24 13:47:35.093','2025-05-03 08:06:31.717',NULL),
('a24d30f0-9062-4981-a420-016c96165eab','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-10-18 08:39:34.255',7361,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','İVANA JUKİC','491736664496','4969575742','Almanya','FRANKFURT AM MAİN','60439','AN DER SANDELMÜHLE 35\n60439 FRANKFURT AM MAİN ',0,2,110,'505459225','0','0',NULL,450,0,NULL,'2025-10-18 08:41:10.183','2025-10-18 08:41:10.183',NULL),
('a259ef7e-4720-40a6-a012-5f10d15b9067','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-07-25 09:04:01.324',1928,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÇİLEM KAYNI','4915255996436','','Almanya','MARKTABELDOF','87616','BİSCHOF KETTELER STR.6',1,8,100,'61428079','0','0',NULL,3400,1,'GRİ ETİKETLİ','2024-07-25 09:34:50.682','2024-08-14 13:45:37.986',NULL),
('a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66','05135cd5-2d33-4363-b51e-c9b83a94094d','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-09-06 17:04:31.007',6634,'4126da30-ba9b-41b7-be29-865069aa484c','EREN','4545544545343443',NULL,'Avusturya',NULL,'0000',NULL,20,2,0,'412922680','0','0',NULL,350,1,'MAVİ ETİKET ','2025-09-06 17:04:59.656','2025-09-17 16:03:15.095',NULL),
('a2926116-d6cb-4f23-857e-b99221b6f59e','aaa4a453-cb36-4567-b88e-335acb07c024','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-18 11:14:17.922',2317,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','HATİCE GÜNGÖR','31648497230',NULL,'Hollanda',NULL,'1068','VRİJZİCHT 38, 1068 CADDE AMSTERDAM HOLLANDA',1,2,120,'465181388','0','0',NULL,1030,1,'YEŞİL ETİKET','2025-08-18 11:21:30.794','2025-09-12 19:47:17.959',NULL),
('a29a2b1f-c2a8-4ac6-97a4-dad514383f7d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 08:51:15.188',2407,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','İSHOAK ABU BAKER','41763455531','','İsviçre','NİDAU','2560','BİRKENWEG 1',5,4.5,140,'126938963','0','0',NULL,1145,1,'Pembe etiketli\nÖdeme 1145 frank olacak','2024-05-11 08:58:54.787','2024-05-29 18:59:01.872',NULL),
('a29f5d76-e07a-44c2-ae0c-d3be10092d5a','f31a9617-7158-463d-bedb-a556183c7c2c',NULL,'2025-08-05 11:02:38.782',6507,'76950dd8-e203-45e6-9e40-29f7046e8db7','AAAAAA','49058847843355',NULL,'Almanya',NULL,'41160','FNFFEFEFEEFE',0,2,110,'76913598','0','0',NULL,600,0,NULL,'2025-08-05 11:04:21.353','2025-08-05 11:24:42.564','2025-08-05 11:24:42.563'),
('a2c26b12-b789-4b58-b623-97d44b486663','eccfe611-9163-42aa-a1ff-e711af0248e6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-09 06:09:27.173',10862,'22a1dbd6-475c-4d4b-bb13-f459e3029634','KELLY DE VOS ','32478764812',NULL,'Belçika',NULL,'2220','SPOORWEGSTRAAT 2B/5 2220 HE İST OP DEN BERG ANTWEPEN ',2,2.5,120,'221560581','0','0',NULL,700,1,'TURUNCU ETİKETLİ','2025-09-09 06:11:32.010','2025-09-26 07:07:53.610',NULL),
('a2d259a0-8a03-4763-951b-98fe714623ce','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 11:40:59.741',8954,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM BAĞCI','4917656525814','4917620519550','Almanya','ILVESHEIM','68549','NEUSTADTER STR 2',0,1,100,'745197344','0','0',NULL,5350,1,'TURUNCU ETİKETLİ','2024-10-11 11:47:05.043','2024-10-24 19:09:25.282',NULL),
('a3288f43-b0c7-494e-af3f-17eaf962b183','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ada046d0-c324-498e-b319-06be0a19f72b','2024-11-25 12:15:11.769',2283,'c2d4ce84-536d-4816-837f-7abbf6a7e061','AMMAR ALANİ ','31686017559',NULL,'Hollanda',NULL,'5443','TULPEN STRAAT 6',4,3,0,'248421874','3','3','goed',0,0,'YEŞİL ETİKETLİ','2024-11-25 12:17:18.701','2024-12-20 14:47:21.229',NULL),
('a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-13 12:39:03.804',1135,'47880255-08ee-4e99-940b-16038e07de55','YAREN ÇAKALLI','4917630693252','4915777530623','Almanya','AHLEN','59229','BERLİNER STRABE 59229 AHLEN ALMANYA',10,2,105,'47855592','0','0',NULL,790,1,'TURUNCU ETİKETLİ','2025-03-13 12:41:10.231','2025-04-08 15:37:07.395',NULL),
('a3373a1a-ad36-472f-907f-b0578ee9cac1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-22 20:04:16.424',7347,'b0c1192a-7d38-4b69-a901-778f65a98b9d','AYDIN SARI','436767948204',NULL,'Avusturya',NULL,'6111','BUNDES STR 45C',0,13,120,'011620933','5','5','👍',4800,1,'MOR ETİKETLİ','2025-08-22 20:06:30.357','2025-09-03 20:44:12.784',NULL),
('a349e6ca-f1b8-46ae-908a-a7f522ecfdf1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 09:33:04.069',5501,'47880255-08ee-4e99-940b-16038e07de55','MEHMET ÇOBAN','491632890514','','Almanya','HOMBURG','61352','DAİMLER STR.7',5,1,100,'478244236','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2024-10-11 09:34:42.709','2024-10-24 19:09:25.282',NULL),
('a34f337a-4aa3-4909-9386-aba561d8a6a0','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-22 10:56:07.269',4782,'59868701-abe4-4705-a7e6-d91c2c69262e','ERKAN URAL','491702765634','491752603457','Almanya',NULL,'65599','HİNTER STR 28, 65599 DORNBURG ALMANYA',25,4.5,110,'5983047','0','0',NULL,1000,1,'YEŞİL ETİKET ','2025-09-22 10:59:04.581','2025-10-17 06:15:01.526',NULL),
('a34f5acd-e7a0-4960-a2f6-754b4e35e40a','5c723cdc-e582-4b00-8271-838c085984c2','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-06 09:04:27.696',7372,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ELOUAZGHİ ANAİS ','33609376931',NULL,'Fransa',NULL,'69560','18 IMPASSE DE LA PLAINE 69560 SAINT ROMAIN EN GALE FRANCE ',3,6,130,'745879253','0','0',NULL,1250,1,'MOR ETİKET ','2025-08-06 09:04:48.156','2025-09-20 07:01:59.492',NULL),
('a3560d76-087f-40a9-8bed-913dfa8f5663','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:14:37.256',8730,'d100cd88-31b8-4788-8c56-3df2fd4058aa','CELAL','41764460655','','İsviçre','NUSSBAUMEN','5415','LANDSTRASSE 33',17,3,140,'100605954','0','0',NULL,350,1,'KIRMIZI ETİKETLİ \n3 ÇUVAL 5 KOLİ ','2024-03-30 09:18:26.152','2024-04-17 10:16:21.037',NULL),
('a363fe79-1948-4fe4-80de-2d172a039951','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-09-17 08:27:27.029',8186,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','GÜLŞEN ERDİNÇ','11111111111',NULL,'Belçika',NULL,'6280',NULL,0,2,120,'750836864','0','0',NULL,0,0,NULL,'2025-09-17 08:29:35.212','2025-10-02 16:26:40.069','2025-10-02 16:26:40.069'),
('a3672ebb-5053-433e-a8e4-f57986e68156','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-13 14:56:01.460',1611,'e6d4faef-484c-4ce7-992c-906e05fc083e','(K)HÜSAMETTİN CANBOLAT','491624296602','491624296622','Almanya','NELLİNGEN','73760','VOGELSANGSTR 12',20,3,110,'644469726','0','0',NULL,545,1,'MOR ETİKET','2025-08-13 15:02:31.300','2025-09-30 06:16:32.277',NULL),
('a36a070b-1cb8-45e1-8e89-ef4588485aec','8fff5e14-418c-4377-bd83-3a3f81383507','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-05 09:19:29.624',7739,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NURİYE İKİZKAYA','491777095742',NULL,'Almanya','DUİSBURG','47139','WESTSTRABE 60',12,3.5,110,'437854000','0','0',NULL,495,1,'YEŞİL ETİKET','2025-08-05 09:22:20.005','2025-09-12 06:55:55.906',NULL),
('a37059bd-e77e-44ec-96b7-00e7c36b0512','5c723cdc-e582-4b00-8271-838c085984c2','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-06 10:51:35.785',8144,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','CANSU YENİLMEZER SSH','353874069642','5451801422','Almanya',NULL,'42683','UBIERWEG 9 42683 SOLINGEN ALMANYA',10,2,105,'745124199','0','0',NULL,0,0,'MOR ETİKETLİ','2025-03-06 10:53:14.903','2025-03-18 18:32:47.945',NULL),
('a39b0448-094c-4d23-ad55-d527d7d7c69d','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-03 08:51:06.191',6074,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','ALAA AL- AHMAD','4917662627829',NULL,'Almanya','BERLİN','12347','HOLZMİNDENERSTRASSE 20 12347 BERLİN',22,2.5,110,'5312778','0','0',NULL,775,1,'KIRMIZI ETİKETLİ','2025-09-03 08:57:04.109','2025-09-12 22:09:37.741',NULL),
('a3c1d16e-1d65-47ab-9a96-281fee178cfd','796d8b7b-662b-493a-8d3f-78c3ae052712',NULL,'2025-10-27 13:44:45.225',7670,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','BİRKAN KOLCU','31634610472','31652127275','Hollanda','DENHAAG','2492LB','PİJLKRUİDVELD 28-2492LB DENHAAG HOLLANDA',0,2,120,'817247120','0','0',NULL,1200,0,NULL,'2025-10-27 13:48:46.364','2025-10-27 13:48:46.364',NULL),
('a3d53642-0b85-4df2-9ed7-ec01c62f4ae3','eccfe611-9163-42aa-a1ff-e711af0248e6','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-17 09:31:20.915',10498,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BİANCA AGOSTİNO','41788083391',NULL,'İsviçre',NULL,'1305','CHEMİN DES CEDRES 1, 1305 PENTHALAZ',4,2,140,'221481972','0','0',NULL,490,1,'MOR ETİKETLİ','2025-01-17 09:32:43.432','2025-02-01 17:38:09.630',NULL),
('a3d9ed34-0a43-46a5-88ac-b4bf44493c05','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-11 12:36:06.844',9715,'c2d4ce84-536d-4816-837f-7abbf6a7e061','İSVİÇRE','2323244222444443',NULL,'İsviçre',NULL,'6500',NULL,17,2,140,'248186638','0','0',NULL,1700,1,'PEMBE ETİKETLİ','2025-04-11 12:37:30.071','2025-04-23 08:12:49.638',NULL),
('a3da76d9-3e08-44c3-b712-87bc2e6f90e4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-02 09:25:01.365',4836,'e6d4faef-484c-4ce7-992c-906e05fc083e','SANİ ALAJBEGOVİC','4917662642928','491590140330','Almanya','OSTFİLDERN','73760','IN DEN STEİNEN 12',30,2,110,'644344492','0','0',NULL,0,0,'PALET','2025-07-02 09:31:02.823','2025-07-22 13:23:15.210',NULL),
('a3e67de0-2821-4964-8e1b-51116009f272','1764a07b-eb47-4578-b6cd-f3c0d0e743be','dec3986f-102f-43bc-891f-7de9ebce0626','2025-08-26 11:14:52.585',4445,'47880255-08ee-4e99-940b-16038e07de55','MEHMET ALİ ŞAHİN','491787575752',NULL,'Almanya','WUPPERTAL ','42329','EHRENHAİNSTR 2 G 42329',15,5,105,'478616973','0','0',NULL,0,0,'MAVİ ETİKET ','2025-08-26 11:19:46.647','2025-09-30 18:47:48.888',NULL),
('a41f3bf5-2506-42b4-9e2a-75956dfd1aca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-19 15:12:10.088',7961,'f23142ef-47ba-426c-9a22-bfb123cfac47','SILA MARKET','491749868075',NULL,'Almanya',NULL,'10551','TURMSTRABE 37',15,2,110,'231712628','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-01-19 16:24:05.407','2025-01-28 15:19:34.396',NULL),
('a42a1c77-dffe-41cf-b2b2-08ccedab680b','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-03 14:56:18.005',2428,'59868701-abe4-4705-a7e6-d91c2c69262e','ŞÜKRÜ AK','4915771337736','4917672328748','Almanya',NULL,'41469','ISARSTRASSE 12, 41469 NEUSS ALMANYA',14,3,110,'598445423','0','0',NULL,850,0,'GRİ ETİKET','2025-10-03 14:58:00.065','2025-10-25 08:59:07.177',NULL),
('a451f68c-dd26-4757-af49-72fa26f23f80','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-03 12:48:05.495',4591,'4126da30-ba9b-41b7-be29-865069aa484c','EUROMOBEL','491639801426','','Almanya','DORMAGEN','41539','KÖLNER STR 53',8,8,0,'412395565','0','0',NULL,800,1,'SARI ETİKETLİ','2024-10-03 12:48:46.974','2024-10-24 19:09:25.282',NULL),
('a4adc8bf-b71d-4a75-b862-396d61d1047b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 08:59:42.143',7103,'47880255-08ee-4e99-940b-16038e07de55','KERİM KUTLU','4917620470826','','Almanya','LUDWİGSHAFEN','67071','AM WEİDENSCHLAG 11',7,3.5,100,'478263896','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2024-03-30 09:02:09.186','2024-04-12 07:16:54.576',NULL),
('a4b0544f-8781-4cb5-97b8-539cc674a28c','c65ed555-e6a8-409d-9031-28c5c1e8da7b','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-02 09:34:15.562',9938,'e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','MERT ALİ YÖNTEM','491738956929',NULL,'Almanya','HAİGER','35708','GOLDBACHSTRASSE 18, 35708 HAİGER',26,4.5,110,'203151723','0','0',NULL,1750,1,'(TURUNCU RENK)','2025-06-02 09:40:13.996','2025-07-17 09:31:07.006',NULL),
('a4c0af65-f3e2-484c-99b8-617b31d3f22d','eccfe611-9163-42aa-a1ff-e711af0248e6','66307a01-d585-4127-903b-18748421c29e','2025-04-24 08:35:30.207',8009,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ARMİN IMERİ ','491728739578',NULL,'Almanya',NULL,'92421','BÖHMERWALDSTRASSE 1 A , 92421 SCHWANDORF',12,2.5,110,'221867394','0','0',NULL,1000,1,'GRİ ETİKETLİ','2025-04-24 08:38:28.757','2025-05-07 06:08:01.237',NULL),
('a4db2a81-e01e-459f-a5dc-0aa1254f8b05','5c723cdc-e582-4b00-8271-838c085984c2','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-07-31 10:08:58.104',5053,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZLEM TÜRKMEN','436603215138',NULL,'Avusturya',NULL,'2320','BRUCK HAINBURGER STRABE 2 / 1 /13 2320 SCHWECHAT AUSTRIA',11,6.5,140,'745853192','0','0',NULL,2250,1,'TURUNCU ETİKETLİ','2025-07-31 10:12:26.545','2025-09-01 16:06:08.982',NULL),
('a4f61a34-65e2-4637-828a-46f7b5c23cb4','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-15 07:06:25.081',5234,'3c7190b6-f6ee-4275-8958-d7af952132ab','ŞİRİN ASLAN','4917672242540','4917672242540','Almanya','LUDWİGSHAFEN','67065','KEBLERWEG 22 67065 LUDWİGSHAFEN AM RHEİN ALMANYA',24,4,110,'371193272','0','0',NULL,1200,1,'MOR ETİKETLİ','2025-05-15 07:08:26.999','2025-06-04 07:30:22.164',NULL),
('a5079bde-b9a2-41dc-aab2-fdf041c914e2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-07 11:01:30.710',2283,'193ed304-b86e-40a4-9bce-613f799736ab','ERGÜN GÜZEL','491636841244',NULL,'Almanya',NULL,'30855','GORMS STR 2',7,9.5,100,'193362317','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-11-07 11:10:17.116','2024-11-23 12:17:08.607',NULL),
('a50d8db5-2bfe-4146-b10b-a41dcfc378a6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-05-08 09:26:20.018',9942,'3c7190b6-f6ee-4275-8958-d7af952132ab','ESMA MERT','4917683226592','4917683226592','Almanya','DUİSBURG','47139','WESTSTRABE 48 47139 DUİSBURG ALMANYA',17,2,110,'371282604','0','0',NULL,600,1,'TURUNCU ETİKETLİ','2025-05-08 09:28:07.458','2025-07-18 17:08:45.020',NULL),
('a519280a-5153-4940-80b7-3e59e0747d85','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-29 10:55:30.728',6176,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','KARAARSLAN YELİZ','436604807629','436604807629','Avusturya','SALZBURG','5600','SCHNÜRERGASSE 1\n5600 SANKT JOHANN İM PONGAU\nAVUSTURYA',8,2,120,'808886614','0','0',NULL,1000,1,'MERMER MASA DİKKAT EDELİM','2025-08-29 10:58:11.956','2025-09-19 12:34:35.875',NULL),
('a51f78e6-dd8c-4785-ab21-d6f8a35cdf06','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-08 13:28:58.218',2314,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','DİKİŞ MAKİNASI','0000000000000000',NULL,'Belçika',NULL,'4040','RUE DE HERMEE 196',5,2,120,'655583517','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-03-08 13:30:33.709','2025-03-19 12:35:53.698',NULL),
('a5221ddb-40ec-42e7-8be1-4f0a5fd4c354','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 10:35:18.069',9399,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERKAN KARAKUŞ ','31648122803',NULL,'Hollanda','NL TILBURG','5049','DONIZETTI STRAAT 11E',9,4.5,0,'248614567','5','5','.',450,1,'TURUNCU ETİKETLİ','2024-11-21 10:48:12.095','2024-12-20 18:08:27.883',NULL),
('a529d4b1-7131-4e37-82ab-dd7986268aa3','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-28 08:39:49.501',6970,'3c7190b6-f6ee-4275-8958-d7af952132ab','ORHAN GAZİ ÇEKİCİ','4368181402521','436602086672','Avusturya','MİTTENDORF ANDER FİSCHA','2441','LAGERSTRABE 6/12 MİTTENDORF ANDER FİSCHA 2441 AVUSTURYA',10,5.5,140,'371699257','0','0',NULL,1400,1,'MOR ETİKETLİ','2025-04-28 08:43:32.191','2025-05-23 14:07:39.190',NULL),
('a53b1986-8cad-4d57-b0e3-756673c6e406','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 06:46:25.024',1886,'47880255-08ee-4e99-940b-16038e07de55','ONUR PEKŞEN','33647271942','','Fransa','','','48 RUE DE EFFORT MUTUELMASSY',7,2.5,110,'478958320','0','0',NULL,730,1,'YEŞİL ETİKETLİ','2024-05-10 06:49:00.682','2024-06-04 14:25:40.001',NULL),
('a53c5b62-db3a-4293-b5f7-0e5ef514b45e','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-18 07:30:03.905',3069,'3c7190b6-f6ee-4275-8958-d7af952132ab','ARZU KUZUCU','4915254879175','4915254879175','Almanya','HESSEN','63069','HERMANN LÖNS STRASSE 11 63069 OFFENBACH AM MAİN HESSEN ALMANYA',11,3.5,110,'371160737','0','0',NULL,700,1,'MAVİ ETİKETLİ','2025-04-18 07:32:09.120','2025-05-21 18:37:05.329',NULL),
('a53ce358-8681-4bd7-86f3-ca3347ae0364','89428e9c-4d02-45c3-a044-0b2a5ac2465d','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2024-12-29 10:36:06.466',2063,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','ERDAL OCALAN','33614047867',NULL,'Fransa','SAİNT VRAİN','91770','1 RUE DU PETİT CHÂTEAU',14,5,120,'976126416','0','0',NULL,1630,1,'MAVİ ETİKETLİ','2024-12-29 10:48:44.455','2025-02-13 13:19:35.146',NULL),
('a5641d1e-87fc-41c1-a35d-67b9939f56aa','8fff5e14-418c-4377-bd83-3a3f81383507','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-20 09:03:41.047',1254,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','PELÇİN BUZLU','4369919970009',NULL,'Avusturya','WİENER NEUSTADT','2700','KORNMÜHLENGASSE 4/1/15',18,4.5,140,'437554629','0','0',NULL,1050,1,'MAVİ ETİKETLİ','2025-03-20 09:09:06.385','2025-04-02 18:57:10.886',NULL),
('a57bc9c8-fe89-4ea5-a536-9bb73d9abc0f','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2024-11-14 19:34:44.499',8240,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','KAMBERALİ SAİTİ ','4901629767619',NULL,'Almanya',NULL,'83115',NULL,0,1,140,'98272804','0','0',NULL,1550,0,NULL,'2024-11-14 19:35:43.582','2024-11-19 08:14:33.336','2024-11-19 08:14:33.340'),
('a5a0d095-3374-44f2-a144-e0660e15a03a','313cc2e2-5529-49ab-abe5-27b5d390bc5f','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-21 18:15:24.932',7923,'6133a2db-79c4-4372-9338-505db46b1847','DENİZ AKGÜMÜS ','491788999021','491638282124','Almanya','SCHENEFELD','22869','SCHENEFELDER PLATZ 31,\n       22869, DEUTSCHLAND',10,3.5,110,'613601743','0','0',NULL,925,1,'KIRMIZI ETİKETLİ','2025-07-21 18:18:36.048','2025-09-01 10:25:29.310',NULL),
('a5a9372f-c23a-4cfd-971f-d494355aeac5','5c723cdc-e582-4b00-8271-838c085984c2','2a352437-950c-42a9-9135-55482cf3977c','2025-08-12 09:08:22.898',4004,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DENİZ ŞİMŞEK','41764340270',NULL,'İsviçre',NULL,'6300','OBERALLMENDSTRASSE 18 6300 ZUG SCHWEİZ ',6,2,140,'745824761','0','0',NULL,0,0,'PEMBE ETİKET','2025-08-12 09:08:31.498','2025-08-25 07:11:25.135',NULL),
('a5be4396-bdd8-419f-b266-a5f1a1f8df07','5c723cdc-e582-4b00-8271-838c085984c2','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-09 08:10:05.881',7299,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MURAT ERKUL','4917623882618','4917632975827','Almanya',NULL,'13599','LANGER SEE STRABE 8 13599 BERLİN ALMANYA',3,4,105,'745639167','0','0',NULL,950,1,'TURUNCU ETİKETLİ','2025-04-09 08:13:54.185','2025-04-28 11:59:28.218',NULL),
('a5cb3a8e-37a0-4ca4-bdef-add90fb70af6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-12 08:15:56.887',8588,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','GÜLSEN ERDİNÇ','374747383838848',NULL,'Belçika',NULL,'0000',NULL,8,8,120,'750717756','0','0',NULL,0,0,'TURUNCU ETİKET','2025-08-12 08:16:45.368','2025-09-03 19:36:36.852',NULL),
('a5f7ed18-5a60-4872-a40a-85372a9873ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-10-24 09:41:19.353',8856,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','YASİN ÖKTEM ','33669942525',NULL,'Fransa','sarcelles','95000','3 RUE DU BAS PERREUX',3,4.5,110,'614352','3','5','Şoförünüz çok sempatik ve eşyaları taşımada oldukça yardımcı oldu. Kendisine teşekkür ederim.\nKargo şirketiyle ilgili bilgilendirme süreçlerinin yetersiz ve geç olduğunu gözlemledim. Bu konuda iyileştirmeler yapılması gerektiğini düşünüyorum.',990,1,'YEŞİL ETİKETLİ','2024-10-24 09:44:22.644','2024-12-12 08:16:53.409',NULL),
('a6138fa7-f1c8-4c89-8e27-5a51160e281b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-08-18 12:37:36.230',6471,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','AHSHDHSSHN','26373746473383',NULL,'Belçika',NULL,'00000',NULL,0,2,120,'75078459','0','0',NULL,0,0,NULL,'2025-08-18 12:38:00.474','2025-08-20 07:40:10.798','2025-08-20 07:40:10.797'),
('a61aaaae-ea6b-46da-8c29-fd91e43d4e80','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-02-17 09:24:26.140',1276,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','SEVİNÇ ÖZKAN','00359890333362','0898807323','Bulgaristan','PLOVDİV','74109','BRANİPOLE KALOYON SOKAK NO:74109 PLOVDİV/BULGARİSTAN',0,2,0,'614941926','0','0',NULL,1600,0,'1.600 EURO NAKLİYE ÜCRETİ ALINACAK.RIFAT ŞEVKİ TESLİM EDİLECEK.','2025-02-17 13:34:58.414','2025-03-11 14:16:48.893','2025-03-11 14:16:48.896'),
('a624a844-f729-4653-993f-bd28278f47e5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 15:02:20.025',3364,'47880255-08ee-4e99-940b-16038e07de55','KORAY KÜPE','31640888503','','Hollanda','HOOGVLİET','3194','PARELVİSSER STRAAT 42',8,1,100,'478693155','0','0',NULL,1100,1,'TURUNCU ETİKETLİ','2024-08-20 15:03:33.531','2024-08-31 18:15:48.180',NULL),
('a644f2e3-654e-4729-bff3-0390037448f0','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-07-18 08:10:01.420',1550,'3c7190b6-f6ee-4275-8958-d7af952132ab','MUHAMMED TOPAL','4917630158799','4917630158799','Almanya','WÖRBLİNGEN','78239','HOHENKRAHEN STRABE 9 78239 WÖRBLİNGEN ALMANYA',6,5.5,110,'371681337','0','0',NULL,1500,1,'MOR ETİKET ','2025-07-18 08:12:07.332','2025-09-19 12:35:04.384',NULL),
('a6485cd5-5e0e-4aed-8125-a830f96164a2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 14:05:44.878',7387,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HARUN UZUN','4915751641214','491783971272','Almanya',NULL,'76726','ZEPPELIN STR 7',15,1,0,'745519015','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2024-10-23 14:06:35.119','2024-11-12 08:06:59.098',NULL),
('a6738f2f-6b68-43b0-af19-0baf0d11e818','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-11 13:38:09.917',2902,'e6d4faef-484c-4ce7-992c-906e05fc083e','HAKİF ZİNAL SSH','31687653993','31621494387','Hollanda','REEVWİJK','2811','HUGO DE GROOTSTRAAT 12',4,2,120,'644391223','0','0',NULL,0,0,'BEYAZ ETİKET','2025-08-11 13:46:20.802','2025-09-12 19:46:57.040',NULL),
('a68b37ad-6908-462f-8e58-d0079fd2d77d','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-06-14 09:22:03.491',1775,'47880255-08ee-4e99-940b-16038e07de55','GÜLSEREN BAYRAM','33662757369','33767355721','Fransa','BLOİS','41000','5 ROUTE DE CHATEAURENAULT',0,2.5,110,'478912846','0','0',NULL,0,0,'','2024-06-14 09:23:56.522','2024-07-20 09:52:59.059','2024-07-20 09:52:59.071'),
('a68ff85d-0ddc-4b4b-8585-e95e4f9e2597','5c723cdc-e582-4b00-8271-838c085984c2','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 08:00:51.942',6893,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DÖNDÜ ESER','491795060734','491795060758','Almanya',NULL,'45739','ZILLERSTR 30A 45739 OER ERKENSCHWICK ALMANYA',8,2,105,'745498790','0','0',NULL,750,1,'YEŞİL ETİKETLİ','2025-01-29 08:02:16.372','2025-02-19 18:37:19.839',NULL),
('a69f955e-df2b-44dd-8811-569ba620bc40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-10-30 08:29:22.932',8368,'dea91080-5383-4085-af2e-7eace2c64224','FATİH ŞEKER','4917672987001','4915254110873','Almanya','SCHELKLİNGEN','89601','JAHNSTRABE 17',16,4,100,'910891585','0','0',NULL,1000,1,'MOR ETİKETLİ','2024-10-30 08:31:37.222','2024-11-23 12:17:08.607',NULL),
('a6b849e9-82a6-4209-bbf8-1190e6651471','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-04 09:43:37.508',4889,'59868701-abe4-4705-a7e6-d91c2c69262e','İVAN SLEMAN DİNO','4917620811001','05379688307','Almanya',NULL,'26919','ROSENBURGRİNG 121, 26919 BRAKE (UNTERWELER) ALMANYA',10,4.5,110,'598410676','0','0',NULL,1450,1,'TURUNCU ETİKET','2025-09-04 10:07:38.110','2025-10-05 12:16:21.134',NULL),
('a6f1c3bd-9788-43da-8af3-996af9bfb0b2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:42:48.435',9907,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA ÜNSAL','491766044656','491749779282','Almanya',NULL,'85055','NIEMESERSTRABE 5',10,6,100,'74565294','0','0',NULL,2400,1,'MAVİ ETİKETLİ','2024-12-17 17:21:24.325','2025-01-11 10:16:45.910',NULL),
('a7037727-81db-4381-841e-e0b4f6b5366b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 13:34:41.705',9473,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DAVUT YILDIRIM','4917681920264','491781424421','Almanya',NULL,'48683','QUANTWICKER STRABE 37',0,6,100,'745991438','0','0',NULL,2200,1,'TURUNCU ETİKETLİ','2024-11-23 13:36:50.927','2024-12-06 10:08:54.035',NULL),
('a70aa802-d5bc-4a2c-97c6-3ca3264dc327','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-11 13:49:28.658',1168,'59868701-abe4-4705-a7e6-d91c2c69262e','TUBA BAŞKAŞ SSH','4917661479043','4917661479043','Almanya',NULL,'50765','JOHANNES PRASSEL STRABE 45, 50765 KÖLN ALMANYA',17,2,110,'598876994','0','0',NULL,0,0,'AÇIK MAVİ ETİKET','2025-08-11 13:52:18.276','2025-09-03 05:43:38.827',NULL),
('a70ce6b0-06c6-4668-802f-b5bc4cc490ef','d074816b-78fd-4378-91c0-3835eba28f44','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-21 09:49:27.335',2588,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NURKAN AŞIR','33613166090',NULL,'Fransa','CAVAILLON','84300','LE MEDİTERRANEE BAT A 71 RUE GEORGES VEVE 84300 CAVAILLON  ',7,2,130,'614529512','4','5','Kargo hersy iyiydi ama neden yakın bi yere bırakın diye talimat vermiş Bilal bey anlamadım , şoför abide çok saygılı anlayışlı biriydi çok yardımcı oldu sagolsun 🙏',0,0,'KREM ETİKETLİ BAŞKA ADRESE TESLİM OLCAK','2025-06-21 09:58:13.904','2025-08-04 13:08:08.165',NULL),
('a7189c2d-87e3-4488-8a7c-25941c07355b','d074816b-78fd-4378-91c0-3835eba28f44','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-14 21:50:47.000',3918,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','BURAK TÜRKEŞ','33652910874','33668779218','Fransa','ROMAİNVİLLE','93230','45 RUE MADELEİNE ODRU 93230 ROMAİNVİLLE',19,2,110,'614419362','0','0',NULL,0,0,'BEJ RENK-100 EURO VERİLCEK','2024-12-20 15:56:04.022','2025-02-12 10:27:30.687',NULL),
('a71c1b97-adb1-44f0-8622-8ebc242aee74','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-16 08:08:23.733',3690,'59868701-abe4-4705-a7e6-d91c2c69262e','RASİM YAVUZ','4917621902385','4917632171889','Almanya',NULL,'73107','LOTENBERG STRABE 23, 73107 ESCHENBECH/BADEN WÜRTTEMBERG',24,9.5,110,'598894090','0','0',NULL,3600,0,'KIRMIZI ETİKET ','2025-09-16 08:10:41.435','2025-10-22 13:06:44.055',NULL),
('a72800e1-54dc-4d60-b293-ca2184c62129','51b55e5b-7487-4d8a-923e-163f04d0b1d9','922303e0-023c-44c4-9569-272efdb9286e','2024-06-05 10:37:11.102',1333,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','KIYMET ŞAHİN','4915232016495','','Almanya','ELMSHORN','25335','IRENA SENDLER STRABE 62 A',1,10.5,100,'614987879','0','0',NULL,2800,1,'','2024-06-05 10:40:06.959','2024-07-16 05:11:22.185',NULL),
('a735e5ae-993e-42ad-8bd7-5bfc541165aa','5c723cdc-e582-4b00-8271-838c085984c2','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-25 11:39:15.058',6316,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KENAN BAYAR SSH ','436766459770','4917683242362','Avusturya','WİEN','1140','MARZSTRASSE 164/9 1140 WIEN AVUSTURYA',23,2,140,'745101735','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-09-25 11:39:00.128','2025-10-13 06:39:39.819',NULL),
('a75c0466-9f5a-4f5b-89c0-9179e86aed34','804a2f53-7a26-4e8e-a505-7fc107953b50','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-28 08:40:21.085',1090,'a42d8839-caef-4422-888f-cbfdf4188c5b','METİN MOLA','32486993128','32478530269','Belçika',NULL,'9000','HAM 95 9000 GENT',3,7,120,'428693052','5','5','👍',1850,1,'KIRMIZI ETİKET ','2025-08-28 08:43:31.972','2025-09-10 17:46:37.160',NULL),
('a77006b0-079f-4321-bacd-fa817113e818','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-30 08:49:43.209',7897,'47880255-08ee-4e99-940b-16038e07de55','CİVAN EMİN İBRAHİM ','11111111111',NULL,'Almanya',NULL,'111',NULL,0,3,0,'47865425','0','0',NULL,0,0,NULL,'2024-12-30 08:52:25.246','2025-01-02 14:38:11.715','2025-01-02 14:38:11.732'),
('a787358d-13f9-45cb-8b61-75798cab6ea3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-20 11:13:21.505',6565,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','GİZEM YILDIRIM','4917670513936',NULL,'Almanya',NULL,'50354','HERMÜLHEİM STR. 222',8,4.5,110,'817500904','0','0',NULL,800,1,'YEŞİL ETİKETLİ','2025-03-20 11:14:27.686','2025-04-07 17:19:07.220',NULL),
('a797dd9c-2824-4d7d-8bf3-c9f727ff603d','394112c3-f977-4fc2-b430-775e79e472ca','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-03 21:13:26.106',3808,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BRAHIMA NAIMA','33698234123',NULL,'Fransa',NULL,'63100',NULL,13,2,140,'982446186','0','0',NULL,1600,1,'TURUNCU ETİKETLİ','2024-11-03 21:14:44.250','2024-11-25 09:20:39.164',NULL),
('a7a425bb-cfdf-4d19-a194-e17082ccd37b','eccfe611-9163-42aa-a1ff-e711af0248e6','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-23 10:32:54.232',9930,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NURGÜL ÖZER','33660711568',NULL,'Fransa',NULL,'71850','8 RUE AMBROSİE PARE CHARNEY LES MACON 71850 ',5,4.5,120,'221191139','5','5','bellısımo urunlerı bırıncı kalıte sınırsız hızmet ',1650,1,'KIRMIZI ETİKET ','2025-08-23 10:36:10.558','2025-09-18 13:06:14.135',NULL),
('a7ceae08-20bd-4e39-8c9a-4d086845bcaa','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d123109e-9a26-4781-939a-87cda202f683','2024-11-19 11:38:06.761',5379,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','FLORENTİNA','41795825997',NULL,'İsviçre',NULL,'9323','BİFANGSTRASSE 8',9,3.5,140,'126561228','0','0',NULL,1900,1,'YEŞİL ETİKETLİ','2024-11-19 11:43:48.884','2024-12-14 14:37:46.208',NULL),
('a7d1afe4-c6c3-4eee-998b-24b4521490d0','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-30 05:50:45.394',9535,'a42d8839-caef-4422-888f-cbfdf4188c5b','GÖKHAN UYSAN','4916221534324917','4916221534324917','Almanya','FRANKENTHAL','67227 ','CARL-BOSCH-RİNG 2 \n67227 FRANKENTHAL',8,2,110,'42873500','0','0',NULL,1020,1,'PEMBE ETİKETLİ ','2025-05-30 05:53:29.368','2025-06-20 06:50:45.665',NULL),
('a7f2c8a1-4d37-45da-904c-4406f86faab9','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-26 11:04:33.916',1269,'47880255-08ee-4e99-940b-16038e07de55','CAN KUL ','4915255838893','4915115979347','Almanya','ALFELD','31061','ZUM TONNNENKAMP 31061 ALFELD LEİNE ALMANYA ',13,3,105,'478161304','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-08-26 11:09:42.160','2025-09-14 13:25:19.013',NULL),
('a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd','eccfe611-9163-42aa-a1ff-e711af0248e6','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-16 09:40:35.966',4372,'22a1dbd6-475c-4d4b-bb13-f459e3029634','EL GHZİZAL CHAİME ','33628622755',NULL,'Fransa',NULL,'67550','26 RUE DU COMMERCE 67550 VENDENHEİM',16,2.5,120,'221686736','5','5','Super livreur patient merci beaucoup ',950,1,'kırmızı renk','2025-06-16 09:42:40.150','2025-07-08 12:56:05.065',NULL),
('a83ff746-6483-4a7a-b143-9f59ac9e331d','8fff5e14-418c-4377-bd83-3a3f81383507','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-06 09:01:03.269',8783,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DİANA HUSSEİN','31641191889',NULL,'Hollanda','HAAKSBERGEN','7483','PAPAVER 6, 7483 CN',1,2.5,120,'437917777','0','0',NULL,975,1,'BEYAZ ETİKETLİ','2025-05-06 09:05:24.967','2025-06-07 08:55:03.737',NULL),
('a856c3b2-bd1c-47db-b02f-9127f2bb4d67','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-05 11:12:00.635',5740,'e6d4faef-484c-4ce7-992c-906e05fc083e','ALİŞAN CERCİ(K)','4915208602802','4915157638110','Almanya','TOURUSSTEİN','65232','ARNDTSTRABE 6',26,5,110,'644847294','0','0',NULL,1250,1,'KIRMIZI ETİKET ','2025-09-05 11:19:01.500','2025-10-17 06:15:07.134',NULL),
('a87c1195-4073-4758-919d-0b3055e5f5d6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-25 17:20:24.613',1706,'1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','EURO MOBEL','491639801426',NULL,'Almanya',NULL,'41539',NULL,19,3.5,110,'107869996','0','0',NULL,385,1,'MOR ETİKETLİ','2025-03-25 17:23:21.169','2025-04-07 11:35:18.898',NULL),
('a87cf842-cbf5-4954-a97f-dfa9faa9dbc2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-08 07:48:07.790',7619,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YUSUF KAYA','32485432209','32465090657','Belçika','ANTWERPEN','2060','ERWTEN STRAAT 47',2,8.5,100,'501428847','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-11-08 07:52:50.693','2024-11-16 21:34:27.300',NULL),
('a8888d05-159a-4d87-90a8-88a98dc908ae','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-08-15 12:13:01.729',10910,'b0c1192a-7d38-4b69-a901-778f65a98b9d','AYDIN SARI ','436767948204',NULL,'Avusturya','TİROL','6111','BUNDES STR 45 C\n6111  VOLDERS\nTİROL/AVUSTURYA.   00436767948204',0,9.5,120,'011399882','0','0',NULL,5800,0,'MOR ETİKETLİ','2025-08-15 12:21:25.744','2025-08-22 20:20:00.059','2025-08-22 20:20:00.058'),
('a8bd3c61-ea6f-4b4b-9dc8-6a8216426958','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:29:40.505',9493,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ZİYA ALTIN','33695498919','33787263846','Fransa','BAİNS','70300','38 RUE GUSTAVE COURBET ',6,1,110,'745390643','0','0',NULL,900,1,'MAVİ ETİKETLİ','2024-09-28 15:31:40.530','2024-10-09 08:37:19.397',NULL),
('a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-28 15:58:42.237',10082,'e6d4faef-484c-4ce7-992c-906e05fc083e','DUYGU DEMİRHAN','491623325353','4915772159477','Almanya','GERLİNGEN','70839','LİNDENSTR.17',14,3.5,110,'644703173','5','5','Her şey mükemmel.',900,1,'TURUNCU ETİKETLİ','2025-05-28 16:00:37.315','2025-06-17 17:01:07.642',NULL),
('a8d6af10-f6df-4fed-9267-1395f40ba8f9','5c723cdc-e582-4b00-8271-838c085984c2','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 07:57:21.139',9444,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA YILMAZ','33682615843','33783160277','Fransa',NULL,'67240','3 RUE DU COMMERCE 67240 OBERHOFFEN SUR MODER FRANSA',21,2,130,'745636493','5','5','hizmet super ',300,1,'MAVİ ETİKETLİ','2025-01-29 07:58:41.185','2025-02-17 22:08:37.431',NULL),
('a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','313cc2e2-5529-49ab-abe5-27b5d390bc5f','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-29 10:26:32.669',8665,'6133a2db-79c4-4372-9338-505db46b1847','ELFRİDA RAİCEVİC ','4917673560925','491782692542','Almanya','BERLİN','10963','HALLESCHES UFER 42 \n10963 BERLİN',19,9,110,'613510894','0','0',NULL,2400,1,'KIRMIZI ETİKETLİ','2025-07-29 10:34:50.873','2025-09-01 10:28:09.510',NULL),
('a916a88f-8a03-4757-aca9-0c0d2c64a51b','8fff5e14-418c-4377-bd83-3a3f81383507','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-22 09:01:47.941',3182,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ESRA KAYA','4917680898294',NULL,'Almanya','EKRATH','40699','KASTANİEN STR17.',15,2,110,'43750462','0','0',NULL,0,0,'BEYAZ ETİKET','2025-10-22 09:03:48.882','2025-10-25 08:59:06.361',NULL),
('a92b5169-963a-4b74-9857-229dbed0d9e7','394112c3-f977-4fc2-b430-775e79e472ca','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-17 12:06:13.466',8326,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MEHMET SÜZEN ','491751501286',NULL,'Almanya',NULL,'38259',NULL,7,4.5,140,'98238273','0','0',NULL,1500,1,'BEJ RENK ETİKETLİ','2025-01-17 12:07:20.712','2025-01-30 09:59:58.590',NULL),
('a937e92a-5a9a-4b83-9ddd-3433937e9bfb','f784b688-ba6b-4886-87dd-fe4cfbed85b4','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-25 08:03:38.996',8586,'dea91080-5383-4085-af2e-7eace2c64224','AYHAN KAHRAMAN','4917672357148','491784048339','Almanya',NULL,'57223 ','BUSCHHÜTTENERSTRE.32		\n57223 KREUZTAL		\n1784048339',22,2,110,'91028874','0','0',NULL,0,0,'SARI ETİKETLİ','2025-03-25 11:24:44.553','2025-04-05 22:11:18.672',NULL),
('a94cadae-57e8-4a39-9f91-6ecbab98c555','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-06 09:30:59.253',2434,'dea91080-5383-4085-af2e-7eace2c64224','TOLGA KESEN ','4915774445546','4915774445552','Almanya',NULL,'88250','IRMENTRUDSTRABE 5',14,4.5,110,'910796066','0','0',NULL,825,1,'KIRMIZI ETİKETLİ','2025-01-06 09:32:53.258','2025-01-30 09:59:36.200',NULL),
('a95b6f69-d856-411d-92e3-628c20975e08','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-05 15:30:29.557',6279,'47880255-08ee-4e99-940b-16038e07de55','HALİL GÜLER','4915750975472','','Almanya','HAMM','59065','NORDENSTİFTSWEG 95',6,1,100,'478418764','0','0',NULL,1010,1,'TURUNCU ETİKETLİ','2024-09-05 15:32:33.033','2024-09-12 10:54:37.436',NULL),
('a97987c9-ee05-4a3f-94b1-9f85768072d8','1764a07b-eb47-4578-b6cd-f3c0d0e743be','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-07 10:29:18.692',3848,'47880255-08ee-4e99-940b-16038e07de55','METİN NEŞELİ','491788617240','4917672868336','Almanya','RHOİN SVETLA','67061','WOHNUNSNR A314  67061 LUDWİGSHAFEN AM RHEİN SVETLA',21,6,105,'478345732','5','5','Zamanından önce geldi ürünleri güzel ve kaliteli şoför arkadaş sürekli iletişim halindeydi teşekkürler ',800,1,'SARI ETİKETLİ','2025-07-07 10:33:07.014','2025-07-24 06:47:19.721',NULL),
('a97d7c55-7024-4e97-872e-5931f2242e1e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 08:25:23.224',7578,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','PINAR BARUTÇU','4917683290603','','Almanya','BOCHUM','44795','WEITMARER STRABE 3',8,4,100,'614813890','0','0',NULL,3350,1,'','2024-03-12 08:37:17.480','2024-03-22 10:14:57.066',NULL),
('a99855a1-4c2d-4b5a-b222-5fd61915169a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 11:31:51.388',6537,'e6d4faef-484c-4ce7-992c-906e05fc083e','YASEMİN GÜNDOĞDU','4915756075578','491627321230','Almanya','STEİNHEİM','63456','PFAFFENBRUNNENSTR 168',12,2,110,'644340759','0','0',NULL,750,1,'PALET','2025-04-24 11:37:22.730','2025-05-21 15:29:59.752',NULL),
('a9e92a4f-2e0c-410b-8783-a6088e15e8db','30b3fa45-4362-4bef-b611-4d4d2a3c84e3','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-23 11:33:28.314',6791,'9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','FEYZULLAH ALTEKİN','491638635381',NULL,'Almanya','SAARBRÜCKEN','66287','IM BİRKENSTÜCK 1, 66287 QWİERSCHİED SAARPAND ALMANYA',18,2,110,'959513288','0','0',NULL,0,0,NULL,'2025-09-23 11:40:39.755','2025-10-22 13:06:50.096',NULL),
('aa2cf5a9-9070-43b4-b152-2dfe60634cc3','d074816b-78fd-4378-91c0-3835eba28f44','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2024-12-19 08:36:08.286',3022,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','YILDIRIM ASLAN','4915738159369','491786615616','Almanya','VOLKLİNGERN','66333 ','VÖLKLİNGEN LUDWEİLER VÖLKLİNGERS  STRASSE 75',26,1,100,'614339204','0','0',NULL,0,0,'SARI ETİKETLİ','2024-12-19 10:27:29.729','2025-02-11 17:09:06.423',NULL),
('aa3f39f2-a374-4662-9b70-6a623142a920','5c723cdc-e582-4b00-8271-838c085984c2','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-07-31 09:50:01.043',3573,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OKTAY SAMET ŞAHİN','4915568542682','491738569767','Almanya',NULL,'63755','BRENTANOSTRABE 17 63755 ALZENAU ALMANYA',17,13.5,105,'745782616','0','0',NULL,5800,1,'AÇIK MAVİ ETİKET','2025-07-31 09:53:13.702','2025-09-08 14:12:31.683',NULL),
('aa459b9d-90ee-4bb9-8354-0f3f48dd9b48','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-21 11:47:48.764',2354,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SAKİNA RAHİMİ','4915750730726',NULL,'Almanya',NULL,'84503','MÜHLDORFER STR 40',0,4,100,'449874608','0','0',NULL,1200,1,'KIRMIZI ETİKETLİ','2024-10-21 11:52:48.478','2024-10-28 18:33:26.824',NULL),
('aa4be844-95eb-452d-bd6e-d1ea66d882ea','51b55e5b-7487-4d8a-923e-163f04d0b1d9','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-06-19 08:07:57.446',10824,'4126da30-ba9b-41b7-be29-865069aa484c','REYHAN','359896871111',NULL,'Bulgaristan','PLOVDİV','4135',NULL,6,5,0,'41286775','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-06-19 08:09:14.878','2025-07-17 14:41:44.640',NULL),
('aa584535-e03c-4c2c-afa7-fa71495534c6','05135cd5-2d33-4363-b51e-c9b83a94094d','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-07 16:21:49.489',8426,'4126da30-ba9b-41b7-be29-865069aa484c','TABELA','491797333588',NULL,'Almanya','POSTDAM','00000',NULL,24,2,0,'412548356','0','0',NULL,300,1,'TABELA','2025-08-07 16:22:18.299','2025-08-19 06:46:45.909',NULL),
('aa5c731f-f0ea-43c7-9644-2e9bd7d45c48','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-15 10:47:27.623',6905,'47880255-08ee-4e99-940b-16038e07de55','AHMET ÖZDEMİR','491776418748','491776418748','Almanya','VELBERT','42551','ALTEBAHN 10 42551 VELBERT',18,4.5,100,'478622556','0','0',NULL,2000,1,'YEŞİL ETİKETLİ','2024-11-15 10:49:18.515','2024-12-03 21:22:56.085',NULL),
('aa5e5bf9-e64b-4731-8c85-62582faeb98e','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-18 11:57:13.303',6383,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELEK KAYMAZ(K)','0686096778','0687916596','Hollanda','BLAKKER','1695','ELLE MOLSTRAAT 26',0,2,120,'644869924','0','0',NULL,1300,0,NULL,'2025-09-18 12:04:52.346','2025-09-19 11:34:59.238','2025-09-19 11:34:59.237'),
('aa89225f-004a-42b9-8b91-83ea8db5b923','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 13:07:39.376',7313,'4126da30-ba9b-41b7-be29-865069aa484c','AKRAH ABDULNASSER','33487361121','','Belçika','GENT','9050','GENT BRUGGE',21,1,0,'412968011','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-09-27 13:15:44.325','2024-10-08 09:25:30.920',NULL),
('aa97f652-a0d1-40c6-aced-340a7cbb5564','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-06-26 14:59:29.478',8040,'3c7190b6-f6ee-4275-8958-d7af952132ab','HAFİZE BALİ','436766461961','436766461961','Avusturya','GRİESKİRCHEN','4710','GRABENSTRASSE 13/2 4710 GRİESKİRCHEN',12,2,120,'371684650','0','0',NULL,450,1,'KIRMIZI ETİKET','2025-06-26 16:12:11.534','2025-08-30 18:25:03.280',NULL),
('aaa69afc-0eda-49b4-818d-8769ee88f336','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-15 07:01:50.501',2027,'3c7190b6-f6ee-4275-8958-d7af952132ab','EMİLE ARSLAN','4915772639272','4915772639272','Almanya','SCHWEİNFURT','97421','OTTOSTRASSE 3 97421 SCHWEİNSTRASSE ALMANYA',31,3.5,110,'37142091','0','0',NULL,800,1,'SARI ETİKETLİ','2025-05-15 07:03:29.592','2025-06-03 13:20:22.991',NULL),
('aaae96e2-c0d9-4998-8984-129df3d3e10a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:44:42.927',9242,'73596a75-b658-4249-8c71-b0490654bc8b','HELİN SICAK','004917278170406','004972312771','Almanya',NULL,'28865','WÖRPEWEG 6.',6,1,0,'735298003','0','0',NULL,1155,1,'MAVİ ETİKETLİ','2024-12-20 12:45:35.689','2025-01-11 09:47:07.034',NULL),
('aacfdb28-66df-4a6f-8b8d-f575a38b002b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-05 09:59:57.996',9180,'e6d4faef-484c-4ce7-992c-906e05fc083e','RUKİYE BARUT','4917681106453','491779822285','Almanya','LAHMAR','53797','WİESENFFAD 21',18,4,110,'644626371','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2025-05-05 10:10:07.624','2025-06-05 12:35:24.609',NULL),
('aae115aa-05f3-4d7c-b25f-3b266a2aa636','eccfe611-9163-42aa-a1ff-e711af0248e6','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-07 15:02:30.453',5059,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ABDULLAH KARACA','31687509269',NULL,'Hollanda',NULL,'2711','LUXEMBURGLAAN 10E 2711 BC ZOETERMEER',7,2.5,120,'221554711','0','0',NULL,1120,1,'GRİ ETİKETLİ','2025-02-07 15:05:04.133','2025-03-08 13:57:44.556',NULL),
('aae71aff-c951-458b-ba97-38d2072aa657','df0d8353-2caa-413c-9f14-b01af77df00b','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-11 08:18:03.816',6002,'4126da30-ba9b-41b7-be29-865069aa484c','BELLA MEUBEL','32483436523',NULL,'Belçika',NULL,'2060','SİNT JANSPLEİN 41',5,3.5,0,'412102597','0','0',NULL,420,1,'MOR ETİKETLİ','2025-07-11 08:18:51.254','2025-07-28 07:57:27.593',NULL),
('aaf63331-ccff-4ade-8965-5318b9f59d6e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','2024-05-10 07:19:39.790',8992,'4126da30-ba9b-41b7-be29-865069aa484c','BOZTAŞ','','','','','','',6,1,0,'412726953','0','0',NULL,2525,1,'','2024-05-10 07:20:01.459','2024-06-04 14:25:13.634',NULL),
('aaf80057-65ea-4999-832a-29537bd6ba3e','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-04-24 08:22:35.555',6775,'3c7190b6-f6ee-4275-8958-d7af952132ab','BERKAN AKTÜRK','491744713856','491744713856','Almanya','LEONBERG','71229','QUELLENSTRABE 30 71229 LEONBERG ALMANYA',11,9,110,'371823380','0','0',NULL,2800,1,'SARI ETİKETLİ','2025-04-24 08:25:14.567','2025-06-18 07:15:41.886',NULL),
('ab128945-3927-4eb2-ab95-c3e7b5334f18','eccfe611-9163-42aa-a1ff-e711af0248e6','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-10 11:11:30.873',3302,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ESMANUR ZENGİN ','32489166477',NULL,'Belçika',NULL,'3550','HEUSDEN ZOLDER , GUİDO GEZELLELAAN 53 BUS 1 , 3550 BELÇİKA',2,2,120,'221668922','0','0',NULL,1000,1,'BEYAZ ETİKETLİ','2025-03-10 11:15:54.394','2025-04-08 15:35:04.166',NULL),
('ab2f1d14-a20a-43bf-b89f-55328f271e01','89428e9c-4d02-45c3-a044-0b2a5ac2465d','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-11 09:31:18.593',7366,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','CEMAL CANKURT','4915732408373',NULL,'Almanya','MEMMİNGEN','87700','HOLDERACKER 7',18,4,110,'976369139','0','0',NULL,1150,1,'SARI ETİKET ','2025-09-11 09:38:44.863','2025-10-07 14:12:25.524',NULL),
('ab41b8c0-66a4-4c51-ba67-322b1df9498b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3271b677-620a-4420-88c0-5c08cda9fe26','2024-03-18 07:24:00.748',6416,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ABDULLAH ÇELİK','4915259684251','905453570043','Almanya','BAD VİLBEL','61118','FRANKFURTER STR 86A',0,10,100,'745714095','0','0',NULL,0,0,'','2024-03-18 07:26:10.286','2024-03-25 08:44:04.125',NULL),
('ab5aecf3-3848-4bed-b17f-3f3ab2404c76','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-10 13:18:32.995',6356,'3c7190b6-f6ee-4275-8958-d7af952132ab','ERSAN SULİMANOVSKİ','4917631686937','4917631686937','Almanya','ESSEN','45355','MİTZMANNWEG 26 İN 45355 ESSEN ALMANYA',11,3,110,'371985580','0','0',NULL,500,0,'YEŞİL ETİKET','2025-10-10 13:20:06.040','2025-10-25 08:59:12.926',NULL),
('ab5c9dd3-1a09-47c4-8748-32885c12b8b2','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-27 07:52:29.948',6314,'e6d4faef-484c-4ce7-992c-906e05fc083e','ALİ SARI','491707003988','491718442660','Almanya','MAİN','97816','NEU GARTEN 12, 97816 LOHR AM MAİN',23,2,110,'64441153','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2025-03-27 07:57:16.471','2025-04-24 15:01:41.799',NULL),
('ab5fcfea-2c70-4648-a088-f39fd930c2ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 10:59:15.616',3543,'73596a75-b658-4249-8c71-b0490654bc8b','RUKİYE BİÇEM KAPAN','4917657764675',NULL,'Almanya',NULL,'21109','KORALLUSRİNG 22',5,2,0,'735929791','0','0',NULL,1190,1,'MOR ETİKETLİ','2025-07-08 11:02:37.124','2025-07-25 18:05:15.056',NULL),
('ab6c5673-d6a0-4529-b932-e0c888851a0f','eccfe611-9163-42aa-a1ff-e711af0248e6','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-15 07:03:33.674',1714,'22a1dbd6-475c-4d4b-bb13-f459e3029634','LESLİE SEROR ','33662698743',NULL,'Fransa',NULL,'92100','55 RUE LE CORBUSİER 92100 BOULOGNE BİLLANCOURT',2,2,120,'22144793','0','0',NULL,500,1,'KIRMIZI ETİKET','2025-09-15 07:04:51.784','2025-10-10 21:30:12.841',NULL),
('ab709265-d9c6-47a9-8b61-ea995dfc952b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-09 08:08:01.684',1950,'7abcec25-2b15-4504-9076-c54982acb983','RIZA KUŞÇU','491777454971','','Almanya','BOTTROP','46244','KLAUS GROTH STR 20',11,6.5,0,'725500857','0','0',NULL,360,1,'YEŞİL ETİKETLİ','2024-10-09 08:20:41.252','2024-10-24 19:09:25.282',NULL),
('ab7b4af9-0f1b-4686-8ac3-9b36e49cae04','1f0119e0-2853-442a-8394-39cf94fce7df','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-02 11:59:57.337',5228,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','MASİS YAZMACİYAN','33675449544','5324145618','Fransa','CAGNES SUR MER','06800','CAGNES SUR MER, 3 IMPASSE DES OEİLLETS, 06800',6,2.5,130,'517867004','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-07-02 12:01:42.114','2025-08-04 10:55:07.811',NULL),
('ab8aea2d-8bea-4d4c-9d83-556a52f26e1b','5c723cdc-e582-4b00-8271-838c085984c2','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-09 15:04:41.968',3926,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZGÜR SEDAT YAMALAK','491749390960',NULL,'Almanya',NULL,'30449','GÖTTİNGERSTR 57\n30449 HANNOVER\nDEUTSCHLAND',12,1,100,'74513098','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-12-09 15:14:08.540','2025-01-09 13:53:30.063',NULL),
('ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb','173956a2-c232-495a-b036-4a6a36c073e2','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-04 12:20:49.361',5271,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','PETER BOUMA','31621641052',NULL,'Hollanda','NETHERLAND','7605ac','NİEUWSTRAAT 131\n7605AC\nALMELO, THE NETHERLANDS ',3,3,110,'449446169','0','0',NULL,2030,1,'PEMBE ETİKETLİ','2024-12-04 12:23:54.100','2024-12-20 14:35:08.090',NULL),
('ab950112-9d6b-4ec6-916c-a8cb79c8a7bb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:49:16.278',6801,'47880255-08ee-4e99-940b-16038e07de55','ADEM KILINÇ','33648138449','33783895898','Fransa','RUMİLLY','74150','31 RUE DE VERDUN',11,1,110,'478117771','0','0',NULL,2500,1,'YEŞİL ETİKETLİ','2024-09-28 15:51:16.314','2024-10-10 11:34:57.840',NULL),
('abb61da9-a682-4013-a7fd-554adc61e006','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-14 12:46:55.412',6586,'4126da30-ba9b-41b7-be29-865069aa484c','DEKORATA','36363737364',NULL,'Fransa',NULL,'38230',NULL,7,2,0,'412417235','0','0',NULL,550,1,'2 PALET','2025-06-14 12:47:36.884','2025-06-23 09:29:45.131',NULL),
('abd1fa1d-ef72-449a-84e2-496a5a892b63','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-06-14 12:46:03.002',9341,'4126da30-ba9b-41b7-be29-865069aa484c','DEKORATA','162636262626627',NULL,'Fransa',NULL,'38230',NULL,0,2,0,'412955849','0','0',NULL,550,0,NULL,'2025-06-14 12:46:48.405','2025-06-15 21:32:11.383','2025-06-15 21:32:11.385'),
('abe5ef68-f84c-446c-b39b-d13674dbab80','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-15 14:31:54.720',10913,'e6d4faef-484c-4ce7-992c-906e05fc083e','GAMZE KOCAMAZ SSH','01705204782','01733972547','Almanya','WİLDFLECKEN','97772','SONNENSTRASSE 88\n97772 WİLDFLECKEN',0,2,110,'644537401','0','0',NULL,0,0,NULL,'2025-09-15 14:33:27.391','2025-10-20 13:27:36.734',NULL),
('abeb06ec-0186-44af-abeb-248b55f83e5f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-17 11:09:59.137',7513,'c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','HASAN BEY','905540182920','','Belçika','JUMET','6040','RUE DU DİARBOİS 8',5,10,0,'448774640','0','0',NULL,1650,1,'4 PALET ÇÖP POŞETİ ','2024-08-17 11:11:37.482','2024-08-31 18:15:48.180',NULL),
('ac0697e8-d848-40e2-afe8-1e847866ef0e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-07-02 08:11:25.875',4041,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM KAYA','491772522817','','Almanya','WİESBADEN','65203','KREUZNACHER STR 8',3,1,100,'745823692','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-07-02 08:13:04.295','2024-07-18 07:32:34.566',NULL),
('ac090290-e782-4821-b1b3-5cacdab9c03c','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-13 12:46:53.600',6635,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','SEYHAN TOSUNOĞLU','0041764288187',NULL,'İsviçre','ZUG','6300','RİEDMATT 11 6300 ZUG CH',0,2,140,'515865798','0','0',NULL,850,0,NULL,'2025-10-13 12:51:33.987','2025-10-23 07:30:47.751',NULL),
('ac25d1b9-2250-4154-b15b-f735a6fdc731','f784b688-ba6b-4886-87dd-fe4cfbed85b4','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-06-11 20:22:10.181',10058,'dea91080-5383-4085-af2e-7eace2c64224','YAVUZ KOÇMAN		','4917666876193','491727920023','Almanya',NULL,'79268','ALLMENDWEG 20		\n79268 BÖTZİGEN		\nDEUTCSHLAND		\n',3,5,110,'910772127','0','0',NULL,1200,1,'PEMBE ETİKETLİ','2025-06-11 20:23:43.661','2025-07-22 17:22:00.526',NULL),
('ac5f1d3a-fb21-4eca-a8fb-bef56a299855','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 07:46:35.593',4798,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KADİR DALKILIÇ','31650492862',NULL,'Hollanda',NULL,'1945','DE ZANDERIJEN 13',0,2,100,'745881843','0','0',NULL,550,1,'YEŞİL ETİKETLİ','2024-11-02 07:48:56.525','2024-11-12 17:06:08.204',NULL),
('ac733c82-d892-4d52-ad57-605808af235f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-14 06:27:53.783',3110,'e6d4faef-484c-4ce7-992c-906e05fc083e','RABİA AKKUŞ SSH','4915752861277','491774238890','Almanya',NULL,'73347','WİESENSTEİGER STRASSE 22\n73347 MÜHLHAUSEN İM TÄLE',24,2,110,'644564440','0','0',NULL,0,0,'TRAVERTEN MASA','2025-07-14 06:33:30.251','2025-07-26 14:17:19.757',NULL),
('ac7835d5-bf3f-4244-9351-a2bddd683e96','eccfe611-9163-42aa-a1ff-e711af0248e6','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-11 10:31:09.306',7555,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ARİC AKA','491789273072',NULL,'Almanya',NULL,'58332','FRANKFURTER STRABE 1.  58332 SCHWELM ',9,2.5,100,'221350993','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2024-12-11 10:33:05.704','2025-01-06 20:09:27.226',NULL),
('ac7ab08c-6eaa-4002-9075-7a985dd13c18','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-05 15:14:00.770',2693,'47880255-08ee-4e99-940b-16038e07de55','FEHMİYE KESERCİ','31619691823','31619691823','Hollanda','SASENHAİM','2172','VROUWENPOLDERSTRAAT8 2172 SE SE SASSENHEİM',0,5,100,'478949141','0','0',NULL,1800,1,'YEŞİL ETİKETLİ','2024-12-05 15:17:08.436','2024-12-20 14:35:25.910',NULL),
('ac9528e4-d408-4c6a-9cb5-664445eb6c37','8184d19c-0d1f-4439-978c-7a3364e54967','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-09-08 13:10:02.403',9854,'b0c1192a-7d38-4b69-a901-778f65a98b9d',' UĞUR KAPLAN ','436607580201',NULL,'Avusturya','VİYANA','1210','FERDİNAND-PLATZER-GASSE 3/1/16, 1210 VİYANA\nAVUSTURYA',19,2.5,120,'011697836','0','0',NULL,1075,1,'KIRMIZI ETİKET ?','2025-09-08 13:35:47.945','2025-09-17 16:03:19.864',NULL),
('aca1e6bd-e356-4d59-bb04-0430a246e5cb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-23 15:27:36.509',1117,'6133a2db-79c4-4372-9338-505db46b1847','HANDE PALMA','491751082413','4915150865710','Almanya','STADE','21680','KÖNİGREİCHER STRASSE 10 \n21640 STADE ',8,2.5,110,'61378160','0','0',NULL,775,1,NULL,'2025-09-23 15:28:05.206','2025-10-05 16:30:49.633',NULL),
('acb56e55-0830-4986-97da-b0788ca9b99b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-06 09:37:42.438',1773,'47880255-08ee-4e99-940b-16038e07de55','RAMAZAN KIYMAZ','33676771322','33769061663','Fransa','SCİONZİER','74950','397 RUE DES MYOSOTİS 74950 SCİONZİER\n',7,6,120,'478900175','0','0',NULL,2130,1,'\nTURUNCU ETİKETLİ','2025-01-06 09:42:00.377','2025-01-19 14:51:52.810',NULL),
('acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d','eccfe611-9163-42aa-a1ff-e711af0248e6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-18 07:36:18.349',2433,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AYNUR KAPUCU','4915566264535',NULL,'Almanya',NULL,'41836','HÜCKELHOVEN 41836 PAPPELSTR 75',10,2.5,110,'221694221','1','1','çok teşekkür ederim şöförünüzden memnunum ürünlerimi kapımın önüne kadar getirdi bana teslim etdi cok çok teşekkür ederim şöförünüze firma olarak sizdende memnunum sizede çok teşekkürler ',750,1,'AÇIKMAVİ ETİKET ','2025-08-18 07:38:11.884','2025-09-09 13:42:50.876',NULL),
('acc18069-a61f-4cc1-b29c-0024e5408038','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:31:59.238',10576,'c2d4ce84-536d-4816-837f-7abbf6a7e061','PİPET','491772656565',NULL,'Almanya',NULL,'12249','HAYNAUER STRABE 68A',5,1,0,'248284003','0','0',NULL,1000,1,'PİPET KOLİLER','2024-12-17 17:07:52.523','2025-01-11 14:14:12.963',NULL),
('acdafd0f-548d-4921-bc4a-a82a585cf32b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-04 12:30:27.106',8235,'fabe2c23-b5a5-4123-a962-af519ac31d3b','MAİL BOXES','111111111111111',NULL,'Almanya',NULL,'45768','BRASSERT STRABE 34',14,5.5,0,'223734808','0','0',NULL,0,0,NULL,'2025-04-04 12:33:21.817','2025-04-26 09:16:50.959',NULL),
('ad0e6c08-bd08-47a2-9854-d784d07275f0','8fff5e14-418c-4377-bd83-3a3f81383507','2a352437-950c-42a9-9135-55482cf3977c','2025-08-05 09:05:25.307',6517,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','EZGİ YÜCEL','436769706003',NULL,'Avusturya','MATTERSBURG','7210','MÜHLGESSE 23',16,3.5,120,'437713339','0','0',NULL,495,1,'TURUNCU ETİKET','2025-08-05 09:16:37.697','2025-08-19 19:34:38.051',NULL),
('ad1fc3b4-d18e-491b-969b-dea74538868b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','922303e0-023c-44c4-9569-272efdb9286e','2024-07-03 14:32:29.995',1079,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MERHDED AKHTARİ','4915209473876','','Almanya','','','',2,1,100,'449680755','0','0',NULL,1450,1,'','2024-07-03 14:34:39.346','2024-07-16 05:11:26.830',NULL),
('ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-20 13:23:25.852',3436,'e6d4faef-484c-4ce7-992c-906e05fc083e','GÜLŞAH SEVİMLİ','4917624498009','491744167777','Almanya','STUTTGART','70437','NACHSOMMERWEG 1,70437 ',29,2,110,'644721676','0','0',NULL,0,0,'yeşil renk','2025-06-20 14:48:34.947','2025-07-22 13:23:20.100',NULL),
('ad2e35a4-0708-4aa6-bb79-6b1c99a587d8','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-09 08:14:17.673',7692,'e6d4faef-484c-4ce7-992c-906e05fc083e','DÖNDÜ YÖRÜK','4917663287928','49015151400787','Almanya','HAMBURG','22549','LESEBERGWEG 27B HAMBURG 22549',4,2,110,'644887691','0','0',NULL,550,1,'YEŞİL ETİKETLİ','2025-03-09 08:19:11.716','2025-04-28 11:59:07.352',NULL),
('ad3de3cb-31f6-433a-9d51-1c613adb9f27','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-10-14 11:41:40.848',4229,'dea91080-5383-4085-af2e-7eace2c64224','EYÜP TOPALOĞLU','4917622174606','491794405251','Almanya','BAİENFURT','88255','BAİNDTER STR. 69 88255 BAİENFURT',0,2,110,'91055249','0','0',NULL,900,0,NULL,'2025-10-14 11:43:22.489','2025-10-22 12:51:46.624',NULL),
('ad525e43-9190-4602-ac34-b389ec280f0a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:27:51.941',2591,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜSEYİN KIRTAY','4917620131305','4917662211030','Almanya',NULL,'91353','HOSCHETSIEDLUNG 11',15,4,100,'745357299','0','0',NULL,1100,1,'MAVİ ETİKETLİ','2024-11-12 15:29:19.908','2024-11-23 12:17:08.607',NULL),
('ad6e0801-e463-45ff-8ac4-917337b9aa53','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:02:21.663',1200,'73596a75-b658-4249-8c71-b0490654bc8b','OKAN ERTÜRK','00491782351151',NULL,'Almanya',NULL,'71254','LEİTERWEG 39',18,3.5,0,'735233033','0','0',NULL,1393,1,'YEŞİL ETİKETLİ','2024-12-07 09:03:11.116','2024-12-17 19:52:32.750',NULL),
('ada30e7c-1819-48d8-b086-9ceffe365e0b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-17 11:18:05.230',10422,'4126da30-ba9b-41b7-be29-865069aa484c','NİDA YİLDİRİM','4917642010727',NULL,'Almanya',NULL,'62205','NİDA YİLDİRİM\nKÖHLSTRASSE 48\n65205 WİESBADEN \nDEUTSCHLAND',21,2,0,'412939859','0','0',NULL,360,0,'SARI ETİKET','2025-10-17 11:20:30.473','2025-10-25 08:58:57.609',NULL),
('adadaf60-4a49-481c-8c1e-bad7b1cfd588','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-12-09 08:38:23.711',9779,'dea91080-5383-4085-af2e-7eace2c64224','CAN KÜREKÇİ ','4917621764667','491725821943','Almanya','BOHLSBACH','77652','WACKERSTRABE 48',0,4.5,100,'910181635','0','0',NULL,1000,0,NULL,'2024-12-09 08:41:17.165','2024-12-23 12:52:29.674','2024-12-23 12:52:29.677'),
('adb2b821-db09-48e2-aa73-097ac1069722','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-06-14 12:36:47.429',10429,'4126da30-ba9b-41b7-be29-865069aa484c','INTERCASH','33760179240',NULL,'Fransa',NULL,'13290','Z.I DES MİLLES 280RUE LOUİS ARMAND',4,2,0,'412838128','0','0',NULL,2600,1,'ROMÖRKDEKİ ÇOKLU ÜRÜN','2025-06-14 12:37:08.382','2025-06-24 13:42:26.627',NULL),
('adcb1693-42f3-4520-af12-e32f2e2ee2f5','ae57be75-c0b1-4a5e-9005-d65c4a98f6a2',NULL,'2025-08-21 13:58:55.751',8803,'27cbce83-310c-4e98-830f-7433b10c2efd','EMRULLAH SOYSAL ','05413792483',NULL,'Almanya',NULL,'63337','SSKSIDJDUJDJD',0,2,110,'278921636','0','0',NULL,90,0,NULL,'2025-08-21 14:00:14.106','2025-08-21 14:00:36.642','2025-08-21 14:00:36.641'),
('adf0440c-3715-4603-a3a4-91b6f557e095','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-10 10:32:03.687',9783,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ZAKARİA MASHHOD','1111111111',NULL,'Almanya',NULL,'111',NULL,21,5.5,0,'248352114','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-06-10 10:33:53.014','2025-07-18 05:16:08.058',NULL),
('adf790b3-29b5-476e-ba13-8e482d9bc940','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-16 06:20:43.106',5760,'e6d4faef-484c-4ce7-992c-906e05fc083e','HAKİF ZİNAL','31687653993','31621494387','Hollanda','REEVWİJK','2811','HUGO DE GROOTSTRAAT 12',6,3.5,120,'644330933','1','1','-00000',1800,1,'YEŞİL ETİKETLİ','2025-06-16 06:30:37.719','2025-07-23 06:37:52.502',NULL),
('ae4be566-d149-4887-b3bd-f5c96537b47b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5d2ec7d8-1233-449c-8b75-c7d1571c790e','2024-10-21 11:42:44.060',9711,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','OMAR AHMEDİ ','491725184945',NULL,'Almanya',NULL,'63674','AMSELWEG 12 ',1,4,100,'44998008','0','0',NULL,1500,1,NULL,'2024-10-21 11:47:44.095','2024-10-31 07:50:35.355',NULL),
('ae582db0-f6d5-465e-936e-071de92415c4','5c723cdc-e582-4b00-8271-838c085984c2','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-22 11:09:33.815',6132,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DELİL ÖZTÜRK SSH','32455122888','32485530941','Belçika',NULL,'4040','RUE JELES DESTREE 12 4040 HERSTAL BELÇİKA',15,2,120,'745786401','0','0',NULL,0,0,'SARI ETİKETLİ','2025-05-22 11:13:22.405','2025-06-05 16:38:26.855',NULL),
('ae77010c-fd9b-4dda-9995-d94d5c8976bb','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7bd09245-c179-4127-b0e1-46737615122b','2025-07-02 08:13:07.171',9984,'47880255-08ee-4e99-940b-16038e07de55','OĞUZHAN TIĞ','33695774017','3376262828','Fransa','VAL DE MODER','67350','36RUE PRİNCİPLE 67350 LA WALCK VAL DE MADER FRANSA',7,9,120,'478824521','0','0',NULL,5200,1,'SARI ETİKET','2025-07-02 08:22:13.858','2025-08-21 06:44:09.151',NULL),
('ae8696be-f69f-4953-8633-4f9337e8b482','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-10-24 12:29:26.616',9806,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','ERKAN LJUTFİJİ','0041792735840',NULL,'İsviçre',NULL,'4057','NEUHAUSSTRASSE 34, 4057 BASEL\n',0,2,140,'695635873','0','0',NULL,1400,0,'1400 frank alınacaak','2025-10-24 12:39:02.808','2025-10-27 08:45:32.107','2025-10-27 08:45:32.105'),
('ae9be805-ab66-4bf7-889f-22b5fd9c7351','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-05-31 13:02:37.299',7008,'a42d8839-caef-4422-888f-cbfdf4188c5b','ALİNA GÜL','491723667357','4917664047516','Almanya','RHEİNBACH','53359','',6,5.5,100,'428138926','0','0',NULL,5500,1,'PEMBE ETİKETLİ','2024-05-31 13:36:59.353','2024-06-20 20:15:56.066',NULL),
('ae9f7d11-5a84-4522-aea1-889eadc47453','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-12 07:07:22.204',10802,'47880255-08ee-4e99-940b-16038e07de55','SEVDA GÜMÜŞBOĞA','00000000000','','Belçika','BBB','4600','AAAAAA',0,4,100,'478712498','0','0',NULL,1150,0,'','2024-03-12 07:20:13.803','2024-03-12 07:39:19.480','2024-03-12 07:39:19.479'),
('aeac836e-0479-4329-a118-27c77a0ff22d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-18 09:00:51.657',2864,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','OKTAY TAN','4917684455895','','Almanya','BOTTROP','46238','SİEMENS STRASSE 20',6,4,100,'319533001','0','0',NULL,915,1,'MOR ETİKETLİ','2024-03-18 09:03:24.794','2024-04-03 18:54:55.086',NULL),
('aec29545-1708-47a6-a33d-352a69ad4876','8fff5e14-418c-4377-bd83-3a3f81383507','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-01-28 07:17:18.687',6590,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MİRAÇ SAKAR','41766263875','41762293875','İsviçre','AESCH-BL','4147','FİECHTENWEG 4',7,4.5,140,'437969799','0','0',NULL,2355,1,'Bej renk etiketli','2025-01-28 07:19:46.139','2025-02-25 17:04:01.430',NULL),
('aee090b4-4bf2-4cde-89e9-1e2353dcb896','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-08-26 11:33:44.569',1499,'59868701-abe4-4705-a7e6-d91c2c69262e','DUYGU YILDIZ','491727930576','491726666457','Almanya',NULL,'24939','WALD STR 53, 24939 FLENSBURG ALMANYA',0,2.5,110,'598396998','0','0',NULL,1000,1,'SARI ETİKET','2025-08-26 11:37:01.388','2025-10-07 06:18:10.521',NULL),
('af077b9e-3c00-4ad8-bbfa-3e1f04750a1b','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-12 11:22:55.725',9239,'e6d4faef-484c-4ce7-992c-906e05fc083e','SİBEL ÇEVİK','31634977937','31641506768','Hollanda','DASSENBRUCHT 72','5344LP','NEDERLAND DASSENBRUCHT 72 ',0,5,120,'644631223','5','5','Sofor  hizmetinden cok menmnun kaldik her sey icin tesekuler😊',1250,1,'MOR ETİKETLİ','2025-05-12 12:06:57.110','2025-06-25 16:55:44.614',NULL),
('af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b','eccfe611-9163-42aa-a1ff-e711af0248e6','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2024-12-13 14:16:14.921',9197,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BOUAZZA SANNA ','33788061133',NULL,'Fransa',NULL,'38100','3 RUE PAUL DOUMER 38100 GRENOBLE ',5,2.5,120,'221264394','5','1','Chauffeur Nonchalant \na refusé un billet de banque car c’est une ancienne version\nN\'a pas voulu rentrer dans notre ruelle alors qu\'il rentrait largement\nà décharger notre Livraison dans une autre rue que la nôtre',850,1,'BEYAZ ETİKETLİ','2024-12-13 14:18:26.406','2025-01-20 11:49:53.373',NULL),
('af0f7782-1737-4c97-a42f-8db7bba38d2e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 12:34:26.430',10284,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÇİLEM KAYNI','4915255996436','','Almanya','MARKTABELDORF','87616','BİSCHOFF KETTELER STR 6',0,1,100,'614508817','0','0',NULL,0,0,'MAVİ ETİKETLİ MİNİVANDA','2024-08-31 12:36:46.628','2024-09-07 07:22:30.807',NULL),
('af17c16d-842e-4d8c-9c05-f06402e1d75f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:34:28.486',5157,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','DURSUN GÜNBEYİ','32466345026','','Belçika','MAASMECHELEN','3630','BURG JEURİSSEN STRAAT 6',7,1,100,'501243340','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-09-27 11:39:48.680','2024-10-05 18:18:20.361',NULL),
('af1902d4-2938-44ae-80c0-795a83518ffd','5c723cdc-e582-4b00-8271-838c085984c2','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-22 08:34:37.242',9887,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYDIN İLKNUR','33652891560','33786539844','Fransa',NULL,'67390','5C RUE DU LAVİAR 67390 MARCKOLSHEIM FRANSA',4,2,130,'745545386','0','0',NULL,0,0,'YEŞİL ETİKET ','2025-08-22 08:35:47.631','2025-09-20 19:00:06.128',NULL),
('af1de73f-c335-48ff-a271-54ebfe04fc91','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-22 08:56:26.766',4071,'47880255-08ee-4e99-940b-16038e07de55','SULTAN GÖR','33771550561','33750583147','Fransa','LA BASSEE','59480','13 RUE GENERAL  LECLERC 59480 LA BASSE FRANSA',0,2,130,'478885043','0','0',NULL,0,0,'MOR ETİKETLİ','2025-01-22 08:58:03.656','2025-02-28 17:30:36.364',NULL),
('af3522dc-162f-4e08-bc60-ffc39d821f1f','5c723cdc-e582-4b00-8271-838c085984c2','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-08 07:56:22.631',10500,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALİ ÖZDEN ','33645025760','33622632744','Fransa',NULL,'57220','36 RUE HENRITTE DE LORRAINE 57220 BOVLAY MOSELLE FRANCE ',6,2,130,'745991962','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-05-08 07:57:40.412','2025-05-21 19:38:37.567',NULL),
('af3c24bb-f60e-414f-9ee5-8ecc68adbfff','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-08 10:36:45.887',10632,'e6d4faef-484c-4ce7-992c-906e05fc083e','NEGİN EHSANİFARD','491742173010','4917680856506','Almanya','MÜNSTER','48161','RÜSCHHAUSWEG 1, 48161M MÜNSTER ALMANYA',6,5.5,110,'644206771','0','0',NULL,2000,1,'SARI ETİKETLİ','2025-03-08 11:02:16.757','2025-04-08 15:37:36.306',NULL),
('af4e1860-0998-4434-bd62-e28f7958cebe','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-16 11:38:04.740',2314,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ENGİN TV ÜNİTESİ ','4915778521102',NULL,'Almanya',NULL,'45665','DORTMUNDER STRABE 115',20,2,110,'248269890','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-01-16 11:39:10.952','2025-02-07 11:19:22.861',NULL),
('af5fa1f9-a15e-47b6-96f7-530e8fa3fec2','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-08 11:50:02.089',7582,'59868701-abe4-4705-a7e6-d91c2c69262e','MENEKŞE SEVEN','31613557547','31681164065','Hollanda',NULL,'7546','BERNİNKHOLFOEK 15, 7546 CC ENSCHEDE HOLLANDA',1,3.5,120,'598508016','0','0',NULL,800,1,'MOR ETİKETLİ','2025-04-08 11:52:48.703','2025-05-03 06:22:22.042',NULL),
('af651e1f-8b6a-416b-b346-d687c280a32b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-10-14 14:28:27.431',5929,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','YAKUP ERDAL SSH','33760179240',NULL,'Fransa',NULL,'13290','280 RUE LOUİS ARMAND 13290 AİX EN PROVENCE',0,2,130,'75091779','0','0',NULL,0,0,NULL,'2025-10-14 14:30:26.028','2025-10-14 14:30:26.028',NULL),
('af66e0b1-a72e-4c45-9e91-18e38e131f34','313cc2e2-5529-49ab-abe5-27b5d390bc5f','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-21 18:27:10.821',7828,'6133a2db-79c4-4372-9338-505db46b1847','SERKAN ELGİT ','436606332095','436601881431','Avusturya','KİRCHDORF ','4560','S. REDTENBACHER-PLATZ 6, 4560 KİRCHDORF ',15,2,120,'61310831','5','5','Ürün sorunsuz bir şekilde bize ulaştı hizmetinizden dolayı çok teşekkür ederiz. Bir dahaki alışverişimizde kesinlikle yine sizi tercih edeceğiz👍🏻☺️',890,1,'GRİ ETİKETLİ','2025-07-21 18:30:41.924','2025-08-24 10:52:46.570',NULL),
('afb9199b-bdc3-4b55-9817-9bf24a3421c6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:07:08.872',7775,'73596a75-b658-4249-8c71-b0490654bc8b','MELİKE KOÇ','00491717942160',NULL,'Almanya',NULL,'89584','DAİMLERWEG 13',20,3,0,'735931871','0','0',NULL,1323,1,'MAVİ ETİKETLİ','2024-12-07 09:08:17.900','2024-12-17 19:52:32.750',NULL),
('afda17ee-6395-4bb0-bbe2-3e976e5044bc','c65ed555-e6a8-409d-9031-28c5c1e8da7b','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-08 14:22:28.810',3092,'e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','MELİSA YILMAZ','491724524938',NULL,'Almanya','GELSENKİRCHEN','45884','MECHTENBERGSTRASSE 135 45884 GELSENKİRCHEN',24,6,110,'203519424','0','0',NULL,1400,1,'YEŞİL ETİKETLİ','2025-05-08 14:37:36.668','2025-06-04 19:42:23.079',NULL),
('afe0ae69-06ca-44c7-8928-75ee9c95e9f3','bb561a28-5dde-42e6-a2cb-dd7f6178002f','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-15 11:59:33.106',10631,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','MERVE İÇEN','4917623926506','4917664793999','Almanya','BOCHUM ','44803 ','ALTER WERNER HELLWEG 149, 44803 BOCHUM \nALMANYA ',13,6.5,110,'351330330','0','0',NULL,1425,1,NULL,'2025-09-15 12:02:38.776','2025-09-30 18:48:07.748',NULL),
('afe81c71-4f9c-44db-99e3-a9a478763539','bb561a28-5dde-42e6-a2cb-dd7f6178002f','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-27 12:36:05.467',5536,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','HÜSEYİN ÇELİK','4917655430941','4917684484965','Almanya','OBERTSHAUSEN','63179','BİRKENWALDSTR 18 63179 OBERTSHAUSEN',19,2,110,'351888584','0','0',NULL,500,1,'SARI ETİKET','2025-08-27 12:39:59.646','2025-09-08 06:39:11.825',NULL),
('afedd778-4e9a-45c0-8eef-59b05a268db8','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-06 10:51:20.998',5502,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MUSA EMEK','33609307736',NULL,'Fransa',NULL,'93130','15 RUE PARMENTIER ',6,1,0,'501622058','0','0',NULL,1000,1,'GRİ ETİKETLİ SSH UFAK PARÇALAR','2024-11-06 10:53:13.958','2024-12-12 07:41:13.909',NULL),
('b00227de-ee41-4b65-a07a-229d31a6d4da','173956a2-c232-495a-b036-4a6a36c073e2','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-10 20:30:05.927',4335,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','HASAN GHASEMİ','4915216420316','4915216420316','Almanya',NULL,'99084','SCHMİDTSTEDTER STR. 40\n99084 ERFURT',17,4.5,100,'449329901','0','0',NULL,1800,1,'AÇIK MAVİ ETİKETLİ','2024-12-10 20:55:52.841','2025-01-08 20:28:51.875',NULL),
('b006cc45-9807-4678-89ca-491086a75064','1764a07b-eb47-4578-b6cd-f3c0d0e743be','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-04 07:53:17.051',7213,'47880255-08ee-4e99-940b-16038e07de55','BİRSEN KARADAVUT','491749634049','491721729468673','Almanya','NİENBURG','31582','OLDENBURGER STR 7 31582 NİENBURG WESER ALMANYA',2,2,105,'478403352','0','0',NULL,0,0,'AÇIKMAVİ ETİKETLİ','2025-07-04 07:55:59.925','2025-07-26 16:11:26.524',NULL),
('b035d749-8b47-4cef-bb6f-fb97f2480a4a','313cc2e2-5529-49ab-abe5-27b5d390bc5f','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-10 09:17:35.569',3851,'6133a2db-79c4-4372-9338-505db46b1847','ASUDE FİLİZER','491777459484','491629703966','Almanya','SALZGİTTER','38239','PANSCHEBERG 82 \n38239 SALZGİTTER THİEDE',12,2,110,'613786429','0','0',NULL,650,1,'PEMBE ETİKETLİ','2025-04-10 09:23:37.566','2025-05-07 16:52:12.356',NULL),
('b03e4184-3ccd-452d-bdbf-3a4ddecfb868','313cc2e2-5529-49ab-abe5-27b5d390bc5f','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-16 21:16:08.077',9012,'6133a2db-79c4-4372-9338-505db46b1847','BERNA YİLDİRİM','491752616978','4915223038564','Almanya','GELSENKİRCHEN','45896','POLSUMER STRASSE 146, 45896 GELSENKİRCHEN, ALMANYA',19,4,110,'613847250','0','0',NULL,1200,1,' MAVİ ETİKET','2025-06-16 21:19:40.958','2025-08-05 12:59:27.029',NULL),
('b05077ea-d4bb-417b-8413-3e1fc0346e79','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:34:12.748',9530,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ENİ SYLEJMANİ','41782664887','','İsviçre','FLAWİL','9230','WİSENTOLWEG',14,5,140,'449178440','0','0',NULL,1750,1,'LİLA ETİKETLİ','2024-03-30 09:38:03.364','2024-04-15 11:37:34.889',NULL),
('b051fe92-2caf-48d1-986e-2c884be9900c','eccfe611-9163-42aa-a1ff-e711af0248e6','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-15 06:53:47.697',1207,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SAİDA ELAZZOUZİ ','33768690174',NULL,'Fransa',NULL,'38230','8 İMPASSE EDMOND ABRAHAM 38230 PONT DE CHERUY',6,2,130,'221282484','0','0',NULL,800,1,'YEŞİL ETİKET ','2025-09-15 06:55:50.084','2025-10-15 20:06:33.336',NULL),
('b06c319e-439b-4418-a1a2-2e22a78014a8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:16:53.990',1011,'b734c482-3c00-4897-ad35-bc358cd02d56','METİN CAMGÖZ','','','Fransa','CHAMOND','42400','25 PLACE DE LA LİBERTE',12,4.5,96,'734957360','0','0',NULL,425,1,'LİLA ETİKETLİ','2024-03-16 08:19:16.020','2024-03-29 17:57:29.898',NULL),
('b0899837-14d4-46bb-b785-b51c5fde0be4','5c723cdc-e582-4b00-8271-838c085984c2','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-04 12:32:03.068',7799,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSA YAMAN','491721850583','905451801422','Almanya',NULL,'65589','MAINZER LANDSTRABE 127 65589 NIDERHADAMAR ALMANYA',12,2,105,'745743577','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-03-04 12:34:47.767','2025-03-18 07:32:03.079',NULL),
('b094bf7e-153f-4984-b737-f7bdece60165','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:46:44.890',7946,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERKAN ','0033666437319',NULL,'Fransa',NULL,'54400','2 BİS RUE DE FRANCHE COMTE COSNES',2,1,0,'248974894','0','0',NULL,1200,1,'TURUNCU ETİKETLİ','2024-11-15 16:47:36.142','2024-12-01 12:28:52.642',NULL),
('b09d6f55-3ecf-4da7-9a79-8f16282c4d71','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-26 14:52:58.887',5750,'3c7190b6-f6ee-4275-8958-d7af952132ab','NECİP FAZIL ŞİMŞEK','4917662337872','4917662337872','Almanya','DÜSSELDORF','40472','VOLKERDEYER WEG 12, 40472 LİCHTENBROİCH DÜSSELDORF ALMANYA',16,2,110,'371261673','4','4','Sorunsuz ve bilgili kargo',600,1,'GRİ ETİKETLİ','2025-06-26 16:06:12.089','2025-07-21 22:48:20.994',NULL),
('b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-06-25 13:00:20.665',9060,'e6d4faef-484c-4ce7-992c-906e05fc083e','GÜLŞEN KARATAŞ','4915786757057','491785618388','Almanya','MOERS','47443','HOLDEN STR 1 ',11,6,110,'644859309','0','0',NULL,1900,1,'SARI ETİKETLİ','2025-06-25 13:07:17.938','2025-08-08 12:23:41.501',NULL),
('b0c379aa-80ca-43d0-b23b-65db895d3ecd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 10:37:40.593',8708,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','KEMAL TAŞTAN','33786985474','','Fransa','','95200','1 ALLEE NİCOLAS POUSSİN',10,1,110,'982405831','0','0',NULL,1500,1,'MAVİ ETİKETLİ ÖNDE','2024-07-20 10:40:37.768','2024-08-05 19:56:35.100',NULL),
('b0c601ac-0773-47fe-862f-c858fbc7ea4f','eccfe611-9163-42aa-a1ff-e711af0248e6','29868815-59a3-472d-968a-f687cc30c0d6','2025-02-19 21:29:01.000',2012,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED ARACI','436765917420',NULL,'Avusturya',NULL,'2603','FELİXDORF GHEGAGASSE 10',19,2,140,'221247114','0','0',NULL,560,1,'KIRMIZI ETİKETLİ','2025-02-20 13:30:42.816','2025-04-02 18:57:10.886',NULL),
('b0da9512-5d73-41f1-bda6-6bec8b6a6191','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 07:05:37.744',5536,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YILMAZ İNANÇ','436602545826','436603846067','Avusturya','LİNZ','4511','ALHAMİNG DİSTELWEG 14',0,1,120,'501859705','0','0',NULL,1600,0,'','2024-03-18 07:09:57.196','2024-03-18 07:11:11.222','2024-03-18 07:11:11.221'),
('b0f8549b-c1c2-4996-bf7f-22c82846b134','1764a07b-eb47-4578-b6cd-f3c0d0e743be','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-08 16:41:17.389',1009,'47880255-08ee-4e99-940b-16038e07de55','BELKISA KAPLAN','33699946659','33699946659','Fransa','MARİGNANE','13700','PARC PERRUSSON BAT H BOULEVARD ALBERİC BERNARD 13700 MARİGNANE FRANCE',3,3,130,'478403794','1','1','0',1290,1,'SARI ETİKETLİ','2025-04-08 16:43:41.444','2025-04-28 12:17:37.938',NULL),
('b10467dd-1ad4-4468-8e8e-6d6e751fff22','eccfe611-9163-42aa-a1ff-e711af0248e6','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-27 13:59:59.757',7585,'22a1dbd6-475c-4d4b-bb13-f459e3029634','RANJA SABRİ ','491709634304',NULL,'Almanya',NULL,'31515','WİNTERSTRABE 20, 315151 WUNSTORF',0,3,110,'221904119','0','0',NULL,1380,1,'KIRMIZI ETİKETLİ','2025-06-27 14:02:32.892','2025-07-26 16:11:35.048',NULL),
('b115bb17-6ee3-4846-9e72-2f91f2abf901','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','66307a01-d585-4127-903b-18748421c29e','2025-04-11 08:00:12.752',3792,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ABDÜLKERİM AKDAS','4915118402012',NULL,'Almanya',NULL,'95028',NULL,8,5,110,'248359668','0','0',NULL,750,1,'KIRMIZI ETİKETLİ ','2025-04-11 08:02:49.702','2025-05-08 07:31:19.558',NULL),
('b14ef2f2-ec6b-4e5a-835c-56bd2fed4d76','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-08 06:23:43.997',10675,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALİ ÖZKAN','491749003983','491749003983','Almanya','BAD OEYNHAUSEN','32547','AM HALLENBAD 8 32547 BAD OEYNHAUSEN ALMANYA',0,2,110,'371949439','0','0',NULL,550,0,'masa + sehpa','2025-10-08 06:25:42.205','2025-10-24 06:38:50.113',NULL),
('b1a52e0a-42f8-41be-85f8-f4189669ece7','8184d19c-0d1f-4439-978c-7a3364e54967','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-22 10:01:25.624',8903,'b0c1192a-7d38-4b69-a901-778f65a98b9d','MUHAMMET UCBAY','491631905914',NULL,'Almanya',' 65203','WİESBADEN',' KASTELER STRASSE 16\n 65203 WİESBADEN\n',27,2,110,'011428040','5','5','Herşey sorunsuz geçti. Teşekkürler. ',500,1,'TURUNCU ETİKET ','2025-09-22 10:03:26.697','2025-10-17 07:06:17.690',NULL),
('b1ca63ca-ed42-45cb-ae7f-983ef68f5a78','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d123109e-9a26-4781-939a-87cda202f683','2024-10-07 10:09:21.826',2235,'a42d8839-caef-4422-888f-cbfdf4188c5b','SÜMEYYE KARAMAN','41765187366',NULL,'İsviçre','BERN','3007','KONSUM STRASSE',1,10,140,'428958532','0','0',NULL,650,1,'PEMBE ETİKETLİ','2024-10-07 10:27:01.769','2024-12-16 21:29:16.112',NULL),
('b1ebdda3-f50f-4336-8da0-ec3f51d55410','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 12:47:28.095',6466,'c2d4ce84-536d-4816-837f-7abbf6a7e061','HALİT KADİM','004915255400500','','Almanya','HAMBURG','21077','KOMOROWSKİEWEG 2',10,1,0,'248533509','0','0',NULL,0,0,'MOR ETİKETLİ','2024-09-09 12:49:24.696','2024-09-18 16:13:07.070',NULL),
('b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba','5c723cdc-e582-4b00-8271-838c085984c2','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-29 12:41:55.709',5312,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SSH ALPEREN DÜZENLİ ','4915124291903','4917655112033','Almanya',NULL,'51766','UNTER DER HARDT 7 ENGELSKIRCHEN 51766 ALMANYA',20,2,105,'745863981','0','0',NULL,0,0,'AÇIK MAVİ ETİKET ','2025-09-29 12:41:31.118','2025-10-17 06:14:34.211',NULL),
('b20579d8-be01-4cf4-a191-a8c8d52e9333','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-23 12:38:34.056',5004,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','ESMA GÜNVAR','436601407495','436601407495','Avusturya','WİEN','1220','MARLEN-HAUSHOFER-WEG 6/2/57\n1220 WİEN',15,2.5,120,'808396862','0','0',NULL,1150,1,'SARI ETİKET','2025-09-23 12:43:20.229','2025-10-15 08:24:46.846',NULL),
('b21c6f76-2185-4cbb-ae48-70494372e886','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-09-19 08:37:39.160',10344,'04673282-898f-4a7a-b3b5-7521480e5322','ÇİÇEK MÖBEL','491725700454',NULL,'Almanya',NULL,'66666',NULL,3,31.5,110,'046517356','0','0',NULL,0,0,NULL,'2025-09-19 08:39:34.886','2025-10-09 08:50:16.065',NULL),
('b246d186-ebbb-4410-afe2-737f312e473e','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-10-21 09:12:29.626',2316,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','YASİN ERDAL','4369010241881','4369010241881','Avusturya','WİENER NEUSTADT','2700','2700 WİENER NEUSTADT, POTTENDORFER STRASSE 153/TOP 13',0,3.5,110,'808696925','0','0',NULL,1400,0,NULL,'2025-10-21 09:15:08.410','2025-10-23 10:19:19.770',NULL),
('b2702ffc-90a1-4e2a-96d3-f80e323c5ce9','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-24 08:17:43.004',2623,'3c7190b6-f6ee-4275-8958-d7af952132ab','MERVE DEĞİRMENCİ','4915773625355','4915773625355','Almanya','BERLİN','13587','PEPİTOPROMENADE 16 13587 BERLİN ALMANYA',5,2,110,'371665826','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-04-24 08:20:39.641','2025-05-23 14:08:03.642',NULL),
('b283ad69-8361-4491-9417-eb0b9d2e9b3a','89428e9c-4d02-45c3-a044-0b2a5ac2465d',NULL,'2025-04-25 21:17:57.411',9139,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','KARİMA BELKESSSAM','33659872865',NULL,'Fransa','NİCE','06300','4 İMPASSE ESCOFFİER BATİMENT B LE NİCE SAİNT ROCH',0,3,130,'976849487','0','0',NULL,1050,0,NULL,'2025-04-25 21:21:38.963','2025-07-04 18:35:48.891','2025-07-04 18:35:48.890'),
('b2a22a30-754d-42fb-a7e9-beef7ed2ae23','394112c3-f977-4fc2-b430-775e79e472ca','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-20 14:00:59.332',7590,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BRHZAD ALİKHANİ ','32489642440',NULL,'Belçika',NULL,'1200',NULL,2,4.5,140,'982402434','0','0',NULL,2150,1,'YEŞİL ETİKETLİ','2025-02-20 14:02:06.445','2025-03-08 13:58:32.384',NULL),
('b2b78b1a-acb8-4599-be16-f4aa7cc745b8','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-01-24 14:13:51.648',8684,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ALİ ÖZKİLİSLİ-GİZEM SEVDE','32484930249',NULL,'Belçika',NULL,'2660','KLOOSTERSTRAAT 82 2660 HOBOKEN ANTWERPEN',0,2,120,'221600878','0','0',NULL,500,0,NULL,'2025-01-24 14:15:52.519','2025-02-19 21:27:05.473','2025-02-19 21:27:05.476'),
('b2b859ce-5c1c-47e6-b995-d5f7cd993878','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-04-24 07:56:03.216',9434,'a42d8839-caef-4422-888f-cbfdf4188c5b','SAMER JNİED','4917622161768','','Avusturya','','820','GRAZ GRİMGASSE 16/4',0,5.5,120,'42857810','0','0',NULL,0,0,'SARI ETİKETLİ','2024-04-24 08:08:08.044','2024-05-11 08:44:34.741','2024-05-11 08:44:34.753'),
('b2b86e6d-e570-4c38-ac25-e910c71c1e2f','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-04 16:30:28.116',10403,'47880255-08ee-4e99-940b-16038e07de55','SÜLEYMAN BOZAN','33610781591','33610781591','Fransa','MEURTHE','54110','5 RUE DU SANOM DAMBASLE SUR MEURTHE FRANSA 54110',18,2,130,'478406590','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-02-04 16:33:10.358','2025-03-13 09:29:10.469',NULL),
('b2cd1680-a31f-4de2-b636-a5c7910e8acf','eccfe611-9163-42aa-a1ff-e711af0248e6','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-07 14:51:01.521',4558,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SAVYO RAFFO','31685438613',NULL,'Hollanda',NULL,'7544','BENTELOBRİNK 168 7544 CS ENSCHEDE ',10,3,120,'22164822','0','0',NULL,1700,1,'MAVİ ETİKETLİ','2025-02-07 14:54:06.862','2025-03-08 13:57:28.116',NULL),
('b2d0b2c9-07c0-445f-ab95-428a8319038e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-24 12:22:41.673',3351,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ÖRÜMCEK','491739514221',NULL,'Almanya',NULL,'88250',NULL,11,2,110,'248692077','0','0',NULL,2700,1,'TURUNCU ETİKETLİ','2025-03-24 12:23:26.264','2025-04-04 09:29:32.770',NULL),
('b2ecd293-305d-46fb-a245-c6b981cfac7e','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-02 18:19:19.845',10516,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','ESRA CELİK ','436608568229','06601326363','Avusturya',' WİEN','1110 ','HERBORTGASSE 33/4/17 1110 WİEN ÖSTERREİCH ',0,2,120,'515120219','0','0',NULL,800,0,NULL,'2025-10-02 18:21:27.706','2025-10-27 08:09:05.354',NULL),
('b2f13caf-67d6-4df1-879e-de1a8b1019c1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d123109e-9a26-4781-939a-87cda202f683','2024-11-20 13:13:24.535',1227,'d1ba1223-4475-415e-b63f-154a9404e56e','SHAHRAM RECEBİ ','41782224348',NULL,'İsviçre',NULL,'8610',NULL,10,4.5,140,'112270991','0','0',NULL,2100,1,'PEMBE ETİKETLİ','2024-11-20 13:33:45.841','2024-12-14 12:00:59.316',NULL),
('b2f9655b-0316-4ee8-b6ba-9ad1280e80a3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:17:21.437',6723,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','REZA MUHAMMEDİ','491784558163','','Almanya','HAMBURG','22399',' ',6,5,130,'982292794','1','1','982292794\n\n\n',1900,1,'','2024-04-23 10:19:00.603','2024-04-29 20:31:40.909',NULL),
('b3402260-d451-4d00-8ed8-35b3af56080f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:43:12.910',2749,'47880255-08ee-4e99-940b-16038e07de55','ASLAN GÜLŞEN','33682073450','','Fransa','MONTPELLİER','34570','165 RUE AGNES VARDA',25,2,110,'478647079','0','0',NULL,300,1,'YEŞİL ETİKETLİ','2024-05-04 07:44:40.135','2024-05-24 07:08:05.841',NULL),
('b384d0a2-c272-4375-a026-2cf2910078c9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:44:48.339',7179,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEZAİ TUNÇ','33695161466','33605631583','Fransa','MARSİLYA','13015','76 CHEMİN DES BOURRELY BATIMENTS ',22,3,110,'745850370','0','0',NULL,750,1,'TURUNCU ETİKETLİ','2024-05-04 07:46:46.327','2024-05-23 08:25:33.815',NULL),
('b38a7b03-e548-4549-88de-73bd00712e29','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-09-06 11:19:27.012',9492,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','AYŞE HANIM','905423036885',NULL,'Belçika','GENT','9000',NULL,0,2,120,'920700931','0','0',NULL,0,0,'4-5 m3','2025-09-06 11:21:03.519','2025-09-19 10:18:31.547','2025-09-19 10:18:31.546'),
('b3ad85de-ea3c-4f24-b3c9-4fd20e6a5496','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 10:21:52.786',3217,'4126da30-ba9b-41b7-be29-865069aa484c','LEX-DCP DETTMER CONTAİNER','','','Almanya','BREMEN','28197','CONTAİNER STRABE 13',6,4,162.5,'412996718','0','0',NULL,0,0,'','2024-03-12 10:23:29.558','2024-03-22 10:14:21.101',NULL),
('b3ae875f-7a87-471f-8393-3afab90f9796','804a2f53-7a26-4e8e-a505-7fc107953b50','ada046d0-c324-498e-b319-06be0a19f72b','2024-11-26 06:57:10.128',8537,'a42d8839-caef-4422-888f-cbfdf4188c5b','ÖMER KARAMAN','491762348854','4917672163704','Almanya',NULL,'10 52428',' KOPERNİKUSSTRASSE NORTH RHİNE-WESTPHALİA / JULİCH',6,1.5,100,'428857511','0','0',NULL,0,0,'KREM ETİKETLİ','2024-11-26 06:59:52.167','2024-12-19 14:54:10.502',NULL),
('b3da5f6e-e62f-4f04-9a07-a71259befc0b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-05 10:25:12.580',5398,'47880255-08ee-4e99-940b-16038e07de55','NURTEN-HASAN ÇAKMAK','4917684700417','4917654974069','Almanya','VİERSEN','41748','BESSEMFLED 12-41748 VİERSEN ',4,2,105,'478644410','0','0',NULL,1100,1,'KIRMIZI ETİKETLİ','2025-02-05 10:29:54.530','2025-02-19 18:37:51.991',NULL),
('b40d3c46-b787-4f86-a1cc-1ee534edd3cd','e6cc7d42-de29-4029-bf0f-5ba2156e1e85',NULL,'2025-09-29 08:34:46.877',4728,'a42d8839-caef-4422-888f-cbfdf4188c5b','FİLİZ OSANMAZ','0650427836','05315988899','Hollanda','PİMPERNELSTRAAT ','3544','PİMPERNELSTRAAT 24 3544 BG UTRECHT HOLLANDA\n\n',0,3,120,'428372230','0','0',NULL,1370,0,'yükleme videosu  istiyoruz','2025-09-29 08:39:25.046','2025-10-23 07:35:49.944',NULL),
('b413a505-b0a4-4081-803d-a0776c7e84fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 10:17:50.404',9548,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İBRAHİM AKÇORA','','','Almanya','','','ADRES VERİLCEK',1,1,0,'614289770','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-03-30 10:21:40.061','2024-04-17 10:15:44.136',NULL),
('b419b47d-089e-47f1-a6c9-53e095e845bb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-17 13:15:38.640',7228,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ZEKİ ASLANER','491734941989',NULL,'Almanya',NULL,'59368','LİPPE STR 55\n59368 WERNE\nDEUTSCHLAND',20,2,110,'248799636','0','0',NULL,300,1,'SARI ETİKETLİ','2025-06-17 13:17:08.899','2025-07-18 09:32:16.366',NULL),
('b446493b-1082-4321-a430-c914fa49afcf','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-23 14:41:41.883',7875,'6133a2db-79c4-4372-9338-505db46b1847','DİLBERAY MELLO','4915112339457','491629336430','Almanya','MANNHEİM','68219','IM HUMMELHORST 11\n68219 MANNHEİM',22,2,110,'613199072','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-06-23 16:14:50.919','2025-08-05 12:59:58.813',NULL),
('b44944f3-7dd8-418b-84ab-1045b4554936','d074816b-78fd-4378-91c0-3835eba28f44','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-06 10:00:24.403',4968,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP','491628157309','4917623201470','Almanya','NÜRTİNGEN','31 /72622','HOLBEİN STR 31',17,1,0,'614990703','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-06 10:08:47.344','2024-11-28 09:15:31.466',NULL),
('b465c878-5c55-4a06-a58b-bd7c57228652','f784b688-ba6b-4886-87dd-fe4cfbed85b4','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-14 11:44:06.884',6706,'dea91080-5383-4085-af2e-7eace2c64224','YASEMİN ERKAN','32499502341','32467736626','Belçika',NULL,'3050','BOAARDENSTRAAT 11 OUD HEVERİEE',12,7.5,120,'910152598','0','0',NULL,2500,0,'SARI ETİKET ','2025-10-14 11:46:57.625','2025-10-22 13:06:56.700',NULL),
('b4816c73-13ed-40e0-87cb-f3536c1d3140','56e5168e-cbcf-408d-8798-5560be5c7235','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-05 19:47:54.523',9225,'7bb6a552-e940-4456-bfc3-50a13013996c','EMRE ALTUN ','491627420193',NULL,'Almanya','BAIENFURT','88255','UHLANDSTRASSE 41, \n88255 BAIENFURT, ALMANYA\n',22,4,110,'765828045','0','0',NULL,890,1,'TURUNCU ETİKET','2025-10-05 19:50:44.462','2025-10-22 07:00:00.227',NULL),
('b481ba7a-9a27-43d3-92c1-35c2773d8b82','51b55e5b-7487-4d8a-923e-163f04d0b1d9','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-10-01 13:40:22.266',5799,'4126da30-ba9b-41b7-be29-865069aa484c','SALONİ','11111111111',NULL,'Almanya',NULL,'79689',NULL,11,5.5,0,'412989879','0','0',NULL,0,0,'KIRMIZI ','2025-10-01 13:47:26.216','2025-10-14 09:36:00.702',NULL),
('b4928a65-9e4d-47ad-b0bf-11fde9288de9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-25 06:48:23.058',8276,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELEK IŞIK','4917676864801','4915783856117','Almanya','WUNSTORF','31515','BARNE STRASSE 73, ',5,2,110,'644739716','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-04-25 07:01:02.757','2025-05-14 06:37:04.347',NULL),
('b49349e7-c597-47d1-a275-ed6a18b0719e','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-12 06:31:53.818',8345,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','YUSA ELLİALTI','491716168674','491716168674','Almanya','DUİSBURG','47167','AM TELLMANNSHOF 25 47167 DUİSBURG ALMANYA NRW',11,2,110,'808427332','5','5','Söför iyi idi',1000,1,NULL,'2025-09-12 06:33:58.910','2025-10-02 07:58:59.721',NULL),
('b4ba97ad-fbff-40b7-8bb6-420238f15b4c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-12 07:47:23.225',4612,'47880255-08ee-4e99-940b-16038e07de55','MERAL YAZICI','491739542704','491764813040','Almanya','BİELEFELD','33719','UELZENER STR 3 33719 BİELEFELD ALMANYA',5,2,105,'478101413','0','0',NULL,1490,1,'TURUNCU ETİKETLİ','2025-02-12 07:49:47.483','2025-02-27 13:37:30.441',NULL),
('b4df3c44-e272-4f15-83b1-063b9f953adc','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-13 12:14:28.784',5091,'47880255-08ee-4e99-940b-16038e07de55','ŞÜKRAN ÖZGÜL','33651656452','33634468583','Fransa','MORALLES AN BRİE','94440','11 RUE DES FOURNEAUX 9440 MORALLES EN BRİE ',0,7.5,130,'478739679','0','0',NULL,3960,0,'10M3','2025-10-13 12:20:31.539','2025-10-14 11:13:31.385',NULL),
('b4f193d3-ef4e-4341-9bd2-136dfaae75a5','aaa4a453-cb36-4567-b88e-335acb07c024','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-07 07:37:55.132',3016,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MEHMET BATMAZ','491726428404',NULL,'Almanya','BEXBACH','66450','KOLPİNG SSTRASSE 55\n66450 BEXBACH',20,11.5,110,'46558561','0','0',NULL,1300,1,'KIRMIZI ETİKETLİ','2025-01-07 07:46:48.697','2025-02-17 21:43:03.874',NULL),
('b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-26 11:56:53.758',6747,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEMA KUZULUK SSH','4917621610242','4917684245023','Almanya','HOPPENHEİM','64646','HANNOVERSTRABE 11',23,2,110,'644635640','0','0',NULL,200,1,'MERMER MASA','2025-05-26 12:01:46.166','2025-06-05 12:34:59.155',NULL),
('b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-26 14:50:51.829',4547,'3c7190b6-f6ee-4275-8958-d7af952132ab','MELİKE BAYINDIR','491708511252','491708511252','Almanya','ERBENHEİM','65205','AM HOCHFELD 55 65205 ERBENHEİM ALMANYA',27,2,110,'371398805','0','0',NULL,600,1,'AÇIKMAVİ ETİKETLİ','2025-06-26 16:03:56.984','2025-07-16 17:47:31.515',NULL),
('b51de0f1-3985-4283-b2eb-1cbb4a0743c9','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-12 06:35:37.032',9967,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','ERHAN ALP','491736564566','491736564566','Almanya','DEUTSCHLAND','31275 ','BREİTE LADE 19 31275 LEHRTE DEUTSCHLAND',15,2,110,'808538086','0','0',NULL,800,1,NULL,'2025-09-12 06:36:38.842','2025-10-02 11:12:29.840',NULL),
('b52527d5-1a66-4241-b1c3-b951b7b28f51','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c6a1c9e-fad3-44d2-8812-5ebe40baad05','2024-05-11 08:32:57.208',10869,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','RECEP DAMAR','491777224398','4915758196530','Almanya','BONN','53117','HEINRICH - BURSCH STR',0,7,100,'745912057','5','5','Teşekkürler ',2595,1,'TURUNCU ETİKETLİ','2024-05-11 08:34:56.339','2024-05-23 13:44:52.045',NULL),
('b52c4507-aa46-4c8c-844a-4ab37f665946','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-22 07:40:43.659',4774,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','OKAN EKİNCİ SSH','491608350626','5421009721','Almanya',NULL,'65558','WIESENSTRASSE 21 65558 OBERNEISEN ALMANYA ',0,2,105,'745931497','0','0',NULL,0,0,'ssh masa ayak konsol üst + 1 kapak ','2025-10-22 07:42:16.648','2025-10-22 07:42:16.648',NULL),
('b54c98c3-f73e-49ce-af82-9b0bb87bd251','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 14:09:35.995',6256,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERKAN SOYSAL','1111111111111111',NULL,'Hollanda',NULL,'3815','ZWALUWENSTRAAT 20',4,4.5,0,'248543155','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-11-23 14:11:18.961','2024-12-05 16:18:31.772',NULL),
('b5545ecb-25d9-4bc6-95bb-2740c6431904','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-08-06 08:19:40.597',7463,'59868701-abe4-4705-a7e6-d91c2c69262e','DAVUT BİNGÖL','4917621701947','4915731326705','Almanya',NULL,'42651','HASSELSTRASSE NO:119, 42651 SOLİNGEN ALMANYA',0,2,110,'598562461','0','0',NULL,700,0,NULL,'2025-08-06 08:21:06.160','2025-08-06 09:16:27.455','2025-08-06 09:16:27.454'),
('b562fd3b-e30e-4218-a985-6517692ba823','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3271b677-620a-4420-88c0-5c08cda9fe26','2024-03-18 07:26:14.599',6709,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜSEYİN PEKTAŞ','4915225646424','4915225928224','Almanya','NORDENHAM','26954','WERFTSTRASSE 39',0,2,100,'745193877','5','5','Son derece güvenilir firma tesekkür ederiz ilginizden dolayi. Biz cok memnun kaldik.',600,1,'','2024-03-18 07:27:50.360','2024-04-01 22:42:14.593',NULL),
('b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-11 14:47:29.596',1001,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','AHASSSDDDW','33628043396',NULL,'Fransa',NULL,'83600',NULL,0,2,130,'750704426','0','0',NULL,330,1,'KREM RENK ETİKETLİ','2025-01-11 14:51:21.385','2025-01-19 14:52:25.260',NULL),
('b5c1db79-0154-4eeb-bcc8-d0daa11527b1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 06:58:32.174',8575,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MOHAMMED ASİF KARİMİ','49737863155','46737863155','Almanya','','04838','',0,4,100,'982501931','0','0',NULL,1400,1,'KIRMIZI ETİKETLİ','2024-03-23 07:01:32.383','2024-04-02 16:08:31.694',NULL),
('b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8','8fff5e14-418c-4377-bd83-3a3f81383507','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-08 14:46:08.297',8903,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','AHU KARUÇ','32495776498',NULL,'Belçika','FERCİANNES','6240','RUE JULES DESTREE 36',13,2,120,'437170354','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-10-08 14:48:06.749','2025-10-22 13:06:55.664',NULL),
('b5e4c122-6b08-49f6-87aa-e17148ba18f4','1764a07b-eb47-4578-b6cd-f3c0d0e743be','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-05 08:38:15.542',3318,'47880255-08ee-4e99-940b-16038e07de55','ÖMER KARAN','3374492498','33625625960','Fransa','NEUFCHOTEAU','88300','268 RUE DU HATRO 88300 NEUFCHOTEAU FRANSA',4,4.5,130,'478165569','0','0',NULL,1800,1,'TURUNCU ETİKETLİ','2025-05-05 08:43:48.821','2025-05-22 15:22:42.523',NULL),
('b5e64b87-904e-46f0-aedc-c5bac9faa988','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:45:42.084',9792,'c2d4ce84-536d-4816-837f-7abbf6a7e061','HÜSEYİN DÖNERTAŞ','0033613462791',NULL,'Fransa','TOUL','54200','10 RUE DU MOULİN SAİNTİN',7,1,0,'24886445','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-15 16:46:41.756','2024-12-01 12:28:22.117',NULL),
('b5e77378-5244-46e2-a563-c188060aab93','173956a2-c232-495a-b036-4a6a36c073e2','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-28 10:46:56.258',5093,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','RAMİN HUSSEİNİ','017656921957',NULL,'Almanya','HOLUNDERWEG 12','77933','HOLUNDERWEG 12  \n77933 SCHWANAU \nRAMİN HOSSEİNİ \nJENNİFER HEİTZ',13,4,100,'44920682','0','0',NULL,1450,1,'MOR ETİKETLİ','2024-11-28 10:49:26.014','2024-12-10 12:35:44.768',NULL),
('b5fab0b8-4818-41cf-8f21-23ec7d0a27d5','56323a39-e192-4016-a254-840950ca2e27','ada046d0-c324-498e-b319-06be0a19f72b','2024-11-28 15:06:43.241',10747,'7f34d75e-284a-42ac-9cbe-a29174748991','AKİF AĞCA','491729567967','4915732035473','Almanya','DUISBURG','47229','SAARBRÜCKERSTRASEE 4',10,4.5,0,'734626870','0','0',NULL,1000,1,'MOR ETİKETLİ','2024-11-28 15:09:39.780','2025-01-21 19:54:41.313',NULL),
('b60d9fb4-59a0-499b-a666-8d8e4d8f147a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-06 11:32:05.766',3915,'47880255-08ee-4e99-940b-16038e07de55','MUHAMMET ÖZKAN','491747448592','491747444351','Almanya','OBERHOUSEN','46149','ILTISSTRABE1  46149 OBERHAUSEN ALMANYA',17,7,105,'47830878','0','0',NULL,2750,1,'SARI ETİKETLİ','2025-01-06 11:34:15.443','2025-02-07 15:52:46.388',NULL),
('b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0','5c723cdc-e582-4b00-8271-838c085984c2','acf5e984-44c0-4233-9521-0c373102472f','2024-12-05 16:10:17.106',4888,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ASLIHAN GÜÇLÜ','491725413866','491722552789','Almanya',NULL,'66839','RÖMERSTRASSE 47 66389 SCHMELZ ALMANYA',8,5,100,'745554582','0','0',NULL,1675,1,'KIRMIZI ETİKETLİ','2024-12-05 16:14:11.998','2024-12-21 21:13:19.691',NULL),
('b659a388-1c45-405b-a478-fa4eb2398376','51b55e5b-7487-4d8a-923e-163f04d0b1d9','381f9935-45e3-4ffc-92f4-b280022d45a6','2024-07-30 14:41:31.796',7492,'4b545346-8acc-42eb-84c7-be96e0cc1e19','','4915206102072','','Almanya','PORTA WESTFALİCA','32457','WESER STRABE 65',3,1,0,'454592303','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-07-30 14:45:03.117','2024-08-07 08:41:59.030',NULL),
('b66f3ad7-e0cf-4e4e-852f-584b41ad42db','1764a07b-eb47-4578-b6cd-f3c0d0e743be','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-22 09:36:01.086',10422,'47880255-08ee-4e99-940b-16038e07de55','SEMİH ELMAS','33643896068','33669711120','Fransa','TRELAZE','49800','235 ROUTE D\'AUDERD 49800 TRELAZE FRANCE',7,5.5,130,'478173801','0','0',NULL,1750,1,'YEŞİL ETİKETLİ','2025-01-22 09:38:21.145','2025-02-14 10:41:34.361',NULL),
('b67594be-f958-4225-900b-19c5f6be08ce','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-08 16:40:31.763',10989,'85834865-ac23-4c00-a99b-c9551971a5a1','KAYA BEY','4917679700868',NULL,'Almanya',NULL,'89150','BLAURER STR 4',16,1,200,'858854212','0','0',NULL,500,1,'BEJ ETİKETLİ','2024-11-08 16:42:22.879','2024-11-25 09:20:39.164',NULL),
('b67a7550-5843-4b01-a562-83d265c4d1bd','f784b688-ba6b-4886-87dd-fe4cfbed85b4','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-10 06:27:10.040',6750,'dea91080-5383-4085-af2e-7eace2c64224','ÖZDEMİR YAKAN		','4917643489874','491747474640','Almanya','OSNABRÜCK','49086','BREMER STRABE 242 49086		\n',10,5,110,'910972908','0','0',NULL,1400,1,'GRİ ETİKETLİ','2025-09-10 06:28:53.052','2025-09-25 06:48:18.536',NULL),
('b69ca32a-31d3-41b6-a93d-838a8d15e6d7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-09-03 15:00:11.259',9008,'4126da30-ba9b-41b7-be29-865069aa484c','ELİF HANIM','33745103912','','Fransa','METZ','57140','46 AVENUE DE THİONVİLLE',1,1,0,'412871738','0','0',NULL,1100,1,'MOR ETİKETLİ','2024-09-03 15:11:57.597','2024-09-13 16:38:54.588',NULL),
('b6bfea48-486d-4441-a306-788893764967','d03032cd-3542-403b-975d-f781dffab494',NULL,'2024-10-07 19:03:39.110',7070,'4126da30-ba9b-41b7-be29-865069aa484c','Yusuf AYDIN','905342491655','','Almanya','','91450','Küçükbalıklı mah.',0,1,0,'412169316','0','0',NULL,0,0,'','2024-10-07 19:04:03.232','2024-10-25 09:21:27.663','2024-10-25 09:21:27.667'),
('b7214302-d982-4460-ad8c-ebf440918b82','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-20 07:08:05.124',3756,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','İBRAHİM AKARSU ','491739058302','4915752422219','Almanya','İTTLİNGEN','74930','HAUPT STR.11',11,6.5,100,'501307359','0','0',NULL,2000,1,'MAVİ ETİKETLİ','2024-09-20 07:16:25.167','2024-10-09 08:37:58.563',NULL),
('b7371a5c-1964-498e-9777-29d5a4fb4e31','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-09-24 13:24:23.411',10674,'47880255-08ee-4e99-940b-16038e07de55','FİDAN ÇALI','33621207184','336692155913','Fransa','LOUVRES','95380','11SQUARE DE PRADES 95380 LOUVRES FRANSA',0,4.5,130,'478545195','0','0',NULL,1300,0,'3,5M3','2025-09-24 13:26:57.106','2025-10-09 13:50:16.349',NULL),
('b7407633-c428-448a-991c-9ae8a31e3782','8fff5e14-418c-4377-bd83-3a3f81383507','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-25 07:33:00.386',6666,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','CEMAL İBRAHİMBAŞ','4917681000439',NULL,'Almanya','BAAR-EBENHAUSEN','85107','WERK STR.38 ',31,2.5,110,'437222135','0','0',NULL,480,1,'MOR ETİKETLİ','2025-06-25 07:34:55.652','2025-07-15 19:43:15.075',NULL),
('b76bdb52-fa77-477f-afbf-6246f10d357a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-18 17:45:55.792',6660,'4126da30-ba9b-41b7-be29-865069aa484c','ÖMER METZ','33762279977',NULL,'Fransa','METZ','570000',NULL,9,2,0,'412647671','0','0',NULL,350,1,'SARI ETİKETLİ','2025-07-18 17:47:22.791','2025-07-29 13:54:58.337',NULL),
('b773320b-83f9-406c-8d3a-312ca17d7ff8','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-26 14:55:11.975',3207,'3c7190b6-f6ee-4275-8958-d7af952132ab','ÖZLEM AKAY','4917656765746','4917656765746','Almanya','HAMBURG','22115','GROBE HOLL 7, 22115 HAMBURG ALMANYA',6,2,110,'371440688','5','5','Söförünüz isini cok güzel yapiyor',570,1,'KIRMIZI ETİKETLİ','2025-06-26 16:07:47.531','2025-07-25 18:08:21.247',NULL),
('b7777790-d6b3-4324-8c03-3534c7356952','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-05 10:44:14.134',3477,'e6d4faef-484c-4ce7-992c-906e05fc083e','MAHSUN ALDEMİR(K)','491601209210','015163483379','Almanya','LOLLAR GİEBEN','35457','KİRSCHGARTEN 9',23,5.5,110,'644593040','0','0',NULL,1400,1,NULL,'2025-09-05 10:53:26.353','2025-09-30 06:44:24.266',NULL),
('b78bd5b9-8cff-4d83-880b-6b121f0affe1','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-09-11 08:16:12.919',2988,'47880255-08ee-4e99-940b-16038e07de55','CEYLAN AKTAŞ','33762101906','33622391582','Fransa','MARSİLYA','13015','4 PLACE DE COMMERCE LA MOURELETTE 13015 MARSİLYA FRANSA',0,14,130,'478350685','0','0',NULL,9450,0,NULL,'2025-09-11 08:21:42.622','2025-10-23 11:01:19.197',NULL),
('b7c95c3f-abb7-49bb-a4a9-e9be8ea92fa2','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-02-07 09:56:25.029',5784,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','BRAHIMA NAIMA ','33698234123',NULL,'Fransa',NULL,'63100',NULL,0,2,140,'982866560','0','0',NULL,2350,0,NULL,'2025-02-07 09:58:02.489','2025-02-17 08:53:42.349','2025-02-17 08:53:42.352'),
('b821f1cd-d990-4100-9455-a2c619562c1e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-02 12:47:52.104',8067,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','MUSTAFA SEVİNDİ','436606596708','436606593598','Avusturya','MİTTERNDORF','2441','GRAMATNEUSİEDLER STRASSE 24',1,5.5,0,'517827584','5','5','Hepsi yolunda gitti söför arkadaş ta cok iyiyidi. ',900,1,'KIRMIZI ETİKETLİ','2024-09-02 12:49:35.312','2024-11-21 06:56:42.871',NULL),
('b851368b-bd09-4a80-b1af-2daea0faab4a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:59:58.943',1063,'47880255-08ee-4e99-940b-16038e07de55','Öner alabaş','491779291845','','Almanya','Alsdorf','52477','Sudetenstrabe 24',7,1,0,'478803764','0','0',NULL,0,0,'Açık mavi etiketli','2024-04-07 21:02:06.461','2024-05-02 19:56:42.327',NULL),
('b8568cae-1462-47fa-adc8-9f74f45d83c7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-30 12:06:35.240',5879,'4126da30-ba9b-41b7-be29-865069aa484c','PASS','11111111111',NULL,'Hollanda',NULL,'0000','EİNDHOVEN',9,2,0,'412315808','0','0',NULL,0,0,'PEMBE ETİKET','2025-08-30 12:09:17.969','2025-09-09 18:00:33.390',NULL),
('b859ef01-6d86-4a7c-881c-0c4d9c9eeee1','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-21 08:28:26.554',1059,'47880255-08ee-4e99-940b-16038e07de55','MAHMUT KAYA','491729344122','491713463394','Almanya','BADEN','89134','HUMMEL STRASSE 16 89134 ALMANYA',18,3,100,'478705604','0','0',NULL,425,1,'Üstünde isim yazılı','2024-12-21 08:30:49.779','2025-01-08 18:08:26.831',NULL),
('b87dfd8b-75ee-4a0e-bd25-1178a78774c6','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-18 08:06:35.107',10083,'3c7190b6-f6ee-4275-8958-d7af952132ab','ENVER HAN ALKAN','4917641547802','4917641547802','Almanya','WİTTEN','58455','HELLWEG 45 58455 WİTTEN ALMANYA',21,6,110,'37146102','5','5','Butün siparışler sağ sağlim bize ulaştı. Çok memnunuz ve teşekkür ediyoruz. Kesinlikle tavsiye ediyorum.',1620,1,'TURUNCU ETİKET','2025-07-18 08:09:53.797','2025-09-03 06:10:13.521',NULL),
('b87e1d8e-8fc1-4a22-a789-515797619936','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-24 12:30:22.497',5948,'e6d4faef-484c-4ce7-992c-906e05fc083e','TÜLAY ÇAĞLAR','491784094408','4915752227857','Almanya','KREFELD','47805','RİTTER STR160',11,3.5,110,'644637792','0','0',NULL,570,1,'AÇIK MAVİ ETİKET ','2025-09-24 12:43:19.901','2025-10-20 06:31:40.859',NULL),
('b89cd91f-460c-462f-a284-8d6b2a01dd71','eccfe611-9163-42aa-a1ff-e711af0248e6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-25 13:47:23.786',8907,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED ERDOĞAN','32470754918',NULL,'Belçika',NULL,'9300','LEDEBAAN 231,9300 AALST BRUXELLLES',2,4,120,'221396383','0','0',NULL,1850,1,'AÇIK MAVİ ETİKETLİ','2025-02-25 13:52:17.178','2025-03-20 18:08:01.972',NULL),
('b8cd88fd-9a6c-40bd-ad5f-292e992b957f','f784b688-ba6b-4886-87dd-fe4cfbed85b4','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-03 07:11:19.259',10046,'dea91080-5383-4085-af2e-7eace2c64224','ABDULLAH ÖZER		','33771771223','33975706258','Fransa',NULL,'70200','6 RUE DE LA 70200		\nLURE FRANCA		\n',15,5.5,120,'910594430','0','0',NULL,875,1,'YEŞİL ETİKET','2025-09-03 07:12:33.406','2025-10-23 06:19:59.175',NULL),
('b8e1c5ea-37ab-4a88-bf6e-66220eac77ff','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-26 14:44:42.918',5698,'3c7190b6-f6ee-4275-8958-d7af952132ab','FİLİZ DEĞER','4917683202035','4917683202035','Almanya','BAYERN','95326','BLAİCH 6 95326 KULMBACH BAYERN ALMANYA',30,2,110,'371655670','0','0',NULL,290,1,'KIRMIZI ETİKETLİ','2025-06-26 15:58:52.410','2025-07-16 16:50:59.613',NULL),
('b90afa4b-4bfb-45de-b36a-051a3bf6a245','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 12:41:53.860',7900,'e6d4faef-484c-4ce7-992c-906e05fc083e','KIYMET DALMAN(K)','491777519570','4917779666161','Almanya','BÖNEN','59199','AM PETERSKAMP 1',5,3,110,'644742878','0','0',NULL,590,1,'AÇIK YEŞİL ETİKET ','2025-09-17 12:48:26.191','2025-10-20 06:32:22.650',NULL),
('b9164589-534d-4d1e-a7e0-ad53801936ef','1764a07b-eb47-4578-b6cd-f3c0d0e743be','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-19 08:14:38.982',6759,'47880255-08ee-4e99-940b-16038e07de55','MUHAMMED YUŞA YILDIRIM','4915734807422','491781975056','Almanya','MÜNCHEN','80939','LÜTZELSTENİNER STR 17 80939 MÜNCHEN ALMANYA',21,4,105,'478261120','0','0',NULL,850,1,'KIRMIZI ETİKETLİ','2025-06-19 08:16:20.013','2025-07-04 21:24:47.648',NULL),
('b91bbec9-94f9-4b78-8185-c4064072c11d','5c723cdc-e582-4b00-8271-838c085984c2','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-21 12:11:25.980',6548,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METİN PEKSERT SSH','4915752948798',NULL,'Almanya',NULL,'78050','WİLLİNGEN SCHWNNİNGEN 78050 ALBAH DOLD STRABE 14 ALMANYA ',20,2,105,'745933378','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-03-21 12:13:34.460','2025-05-02 17:08:29.291',NULL),
('b92361d9-2a0d-4287-b424-72a47a8f2fa4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:46:59.849',9851,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','00491777048158','','Almanya','INGOLSTAD','85057','EWALD KLUGE STRABE',0,1,0,'248425122','0','0',NULL,150,1,'LİLA ETİKETLİ','2024-08-07 14:48:32.570','2024-08-14 11:55:07.386',NULL),
('b9465ae1-c895-4625-887f-bd31a9dc994f','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-05 12:39:46.422',2570,'3c7190b6-f6ee-4275-8958-d7af952132ab','AYLİN AY','4917620022816','4917620022816','Almanya','SUZBACH','66280','OBERDORFSTRABE 28 66280 SUZBACH ALMANYA',13,2,110,'371201111','0','0',NULL,350,1,'masa','2025-08-05 12:41:21.360','2025-09-06 07:19:22.991',NULL),
('b9790373-c876-4108-aaca-1b1a5e2b9aa5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:12:48.282',6013,'c20e39e0-b2f7-4f7d-9393-8729cad35ae4','MUSTAFA SAİT ÖZDEMİR','31614754134',NULL,'Hollanda',NULL,'8012','ASTERSTRAAT 13',1,2,120,'203497868','0','0',NULL,1395,1,'PEMBE ETİKETLİ','2025-02-07 11:14:27.216','2025-02-20 11:56:02.221',NULL),
('b989a112-5f6f-468a-9d42-1bf6bdbf3300','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2024-11-05 09:07:17.446',2168,'47880255-08ee-4e99-940b-16038e07de55','EMİN EKRAMOĞLU','33769000460','33749496070','Fransa',NULL,'67230',NULL,16,18.5,120,'478678748','0','0',NULL,10000,1,'MOR ETİKETLİ','2024-11-05 10:24:03.213','2025-01-16 09:38:38.363',NULL),
('b98bc4c0-d13e-4cca-ad93-173ed8365841','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-24 13:32:12.339',9834,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUHAMMED ALİ TÜMKAYA','4915783935236','4915750608145','Almanya','BERGHEİM','50127','KAMMERSTRABE 7',8,3.5,110,'64455982','0','0',NULL,1350,1,'MAVİ ETİKETLİ','2025-02-24 13:46:19.062','2025-03-18 18:32:58.597',NULL),
('b98ee553-278c-457b-9e14-25f2810f7f82','585b4575-ecea-4671-89b2-199f0605ed62',NULL,'2025-10-21 12:48:49.995',9132,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','MADLİN FARHAN','41798692119','05388618969','Almanya','JESTETTEN','79798','SUDETENWEG 1\n79798 JESTETTEN',0,3.5,110,'786811264','0','0',NULL,0,0,NULL,'2025-10-21 12:51:05.021','2025-10-23 10:22:00.369',NULL),
('b9b2c28d-8252-4049-8b72-6810977e2ff3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 12:59:49.760',8681,'47880255-08ee-4e99-940b-16038e07de55','FURKAN SAYGIN','33658561334','33749650350','Fransa','PONTARLİER','25300','9A RUE DES EPİNETTES',7,1,110,'478498501','5','5','Sofore cok tesekurler ',1500,1,'YEŞİL ETİKETLİ ROMÖRKDE','2024-08-31 13:01:43.726','2024-09-07 21:31:34.647',NULL),
('b9c00c19-4cd1-40b4-b93c-2fa738520c65','92fdfc3f-30a0-47d1-a5dc-275b7de3ed7f','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-06 11:00:51.079',9915,'0dae8190-b900-4826-9171-b2d74a2538b0','ESRA KAMBERİ','4917624742044',NULL,'Almanya',' SCHÄFERWEG 17 71706 MARKGRÖNİNGEN','71706','SCHÄFERWEG 17 71706 MARKGRÖNİNGEN',23,2,110,'081789192','0','0',NULL,750,1,'GRİ ETİKETLİ','2025-02-06 11:07:01.230','2025-03-04 20:48:00.141',NULL),
('b9c92720-b4b4-43eb-a9cc-aa09b537ad87','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:52:53.004',1411,'73596a75-b658-4249-8c71-b0490654bc8b','BİLAL KARROUCH','004917640716853',NULL,'Almanya',NULL,'40724','FURTWANGLER STR.69',8,4,0,'73598166','0','0',NULL,1190,1,'MAVİ ETİKETLİ','2024-12-07 08:53:56.951','2024-12-19 14:54:01.806',NULL),
('b9f93946-382b-435b-9bca-6293072351d1','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-13 11:27:49.101',3264,'3c7190b6-f6ee-4275-8958-d7af952132ab','İSA SÖNMEZ','4915147201286','4915147201286','Almanya','SAARBRÜCKEN','66113','WEİBENBURGER STR 8 66113 SAARBRUCKEN',13,4,110,'371820680','0','0',NULL,1000,1,'PEMBE ETİKETLİ','2025-06-13 11:29:51.316','2025-07-28 18:39:55.403',NULL),
('ba172bbc-5662-4e18-8ae6-5279c6042b03','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-26 10:07:50.799',6226,'e6d4faef-484c-4ce7-992c-906e05fc083e','RUKİYE BARUT SSH','4917681106453','491779822285','Almanya','LAHMAR','53797','WİESENFFAD 21',14,2,110,'644625326','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-08-26 10:14:23.109','2025-09-09 12:50:01.975',NULL),
('ba457943-412f-43ae-a291-8f5550a492f1','f784b688-ba6b-4886-87dd-fe4cfbed85b4','16065e19-f4a9-409d-85c0-ca54cfa7564c','2025-06-11 20:46:42.131',7115,'dea91080-5383-4085-af2e-7eace2c64224','KENAN ACER		','33769997691','33634695698','Fransa',NULL,'01370','370 A RUE DU REVERMONT		\n01370 SAİNT ETİENNE DU BOİS		\n',0,5.5,130,'910684336','0','0',NULL,1000,1,'turuncu renk','2025-06-11 20:47:25.683','2025-07-22 21:00:41.428',NULL),
('ba93047e-2113-4d72-8a99-44f3c9fe2b01','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-16 07:01:36.386',10468,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÖZAY ÖZDEMİR YILDIZ (SSH)','31681124473',NULL,'Hollanda',NULL,'3082','WOLPHAERTSBOCHT 84-J 3082 AS ROTTERDAM ',10,2,120,'221530805','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-05-16 07:05:02.697','2025-06-06 17:34:50.226',NULL),
('baae34a4-033d-4893-b696-b36e57c318f7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:19:03.273',3266,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HASAN SARMAN','4917621986322','491781831118','Almanya','BREMEN','28755','',5,5,130,'982364429','0','0',NULL,2300,1,'','2024-04-23 10:20:29.433','2024-04-29 19:18:30.729',NULL),
('babb1102-d4bb-4eaa-aadd-0d7c27ab01da','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-03 08:11:50.709',2731,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALPER ALBAYRAK','491741677309','4917661518920','Almanya','KEMPTEM','87435','SCHİLLERSTRASSE 62 87435 KEMPTEM ALMANYA',17,3,110,'371400028','0','0',NULL,700,1,'AÇIK MAVİ ETİKET(sağ kapak açılacak)','2025-09-03 08:14:35.078','2025-10-07 14:12:30.489',NULL),
('bad05b30-4d32-46ea-a474-6a5a27c42d3c','8fff5e14-418c-4377-bd83-3a3f81383507','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-20 09:13:56.638',3867,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DİRİL NURİ','33632415512',NULL,'Fransa','SARCELLES','95200','24 PARC MİRAVİLLE',8,2,120,'43792999','0','0',NULL,475,1,'GRİ ETİKETLİ','2025-03-20 09:15:45.375','2025-05-02 17:10:36.933',NULL),
('bb01835e-3a0f-40ef-bb00-ab2b1bb945e3','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-28 12:37:54.238',10655,'3c7190b6-f6ee-4275-8958-d7af952132ab','BEGÜM KIRCA','4917657742944','4917657742944','Almanya','BREMEN','28325','TESSİNER STRABE 93 28325 BREMEN ALMANYA',9,2,110,'371801847','0','0',NULL,500,1,'AÇIK YEŞİL ETİKEETLİ','2025-08-28 12:39:18.511','2025-09-15 12:30:38.020',NULL),
('bb12bd3c-d87b-4ede-9827-8c115b6da789','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-07 09:58:13.627',6261,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ŞAHİN MUAMMER','33665171012',NULL,'Fransa',NULL,'67200',NULL,20,2,140,'982840804','0','0',NULL,2600,1,'YEŞİL ETİKETLİ','2025-02-07 09:59:57.497','2025-02-27 10:12:50.052',NULL),
('bb1e482d-dbc9-40c2-a5ef-9d3227196dd8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:23:08.683',7830,'47880255-08ee-4e99-940b-16038e07de55','DAVUT DEĞİRMENCİ','4917658150125','','Almanya','LANGENLONSHEİM','55450','CRAMER STRASSE 52',5,1,100,'478686372','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-04-27 08:25:15.157','2024-05-08 21:08:02.490',NULL),
('bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2024-11-14 19:36:19.323',3127,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','PELİN DEMİR ','4917664822550',NULL,'Almanya',NULL,'12355',NULL,0,1,140,'98272805','0','0',NULL,3950,0,NULL,'2024-11-14 19:38:06.458','2024-11-19 08:14:24.657','2024-11-19 08:14:24.664'),
('bb42b5ec-6fe1-44c7-ac46-c43f160658e9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-08-31 11:55:21.081',9880,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','RUKİYE DARDANOĞLU','491743967643','','Almanya','KÖLN','51067','BECHSTEİN STR 1D',5,7,100,'976521198','5','5','Cok hızlı be güvenılır tesekkürler',1820,1,'PEMBE ETİKETLİ','2024-08-31 11:58:12.258','2024-10-05 21:30:00.863',NULL),
('bb4a6dd2-62fb-484d-a695-2d7b87e164ed','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-11 12:32:34.631',6755,'4126da30-ba9b-41b7-be29-865069aa484c','ŞÖMİNE','41764259879',NULL,'İsviçre',NULL,'9542','IM ZENTRUM 14',14,2,0,'412987652','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-04-11 12:33:54.791','2025-04-23 17:45:43.580',NULL),
('bb67462b-3d86-408b-993d-ee8fb3ab52e1','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-22 07:04:58.263',2548,'59868701-abe4-4705-a7e6-d91c2c69262e','ZELİHA ÖZCAN','4915757299057','491726468929','Almanya',NULL,'51702','KÖLNER STRASSE 353, 51702 BERGNEUSTADT ALMANYA',21,2,110,'598492066','0','0',NULL,600,1,'KIRMIZI ETİKET ','2025-09-22 07:06:40.311','2025-10-17 06:14:39.891',NULL),
('bb67f0d6-0d35-431c-adda-2a839f6021ef','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 08:07:22.966',1576,'fabe2c23-b5a5-4123-a962-af519ac31d3b','pirard caroline','32495243203',NULL,'Belçika',NULL,'4140','RUE DU TUTTAY 3',10,1,100,'22315159','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-11-02 08:09:07.912','2024-11-11 19:55:51.322',NULL),
('bb6dbf38-0841-4b1c-8e3d-c3593de38040','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-06-16 08:28:51.617',7794,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','GİULİA CLARA CASAGRANDE','41791530005',NULL,'İsviçre',NULL,'3855','HAUPTSTRASSE 144 / 3855 BRİENZ (KANTON BERN)',0,2,140,'695274055','0','0',NULL,2975,0,'2975 CHF ALINACAK YOKSA CHF 3162 EURO ALINACAK','2025-06-16 08:31:50.848','2025-07-03 13:16:09.092','2025-07-03 13:16:09.092'),
('bb868109-aa10-4576-90c5-cea9bda06633','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-06 12:08:04.146',8994,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','SEMRA TERLEMEZ','4917622969487',NULL,'Almanya',NULL,'47139','FRİEDHOFSTRASSE 18\n47139 DUİSBURG',6,4.5,110,'45527400','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-02-06 12:12:40.530','2025-02-19 18:37:39.233',NULL),
('bb90725b-84e6-4211-8728-367d09c14525','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-18 16:08:52.641',7773,'4126da30-ba9b-41b7-be29-865069aa484c','POLAT','491781789912',NULL,'Almanya','SASSENBURG','38524','BERGSTRABE 16',4,2,0,'412346704','0','0',NULL,960,1,'PEMBE ETİKETLİ','2025-02-18 16:28:15.521','2025-02-27 13:37:30.441',NULL),
('bba01e5e-85bc-4c7c-b195-3960e7fc5c66','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-24 11:19:08.420',9667,'e6d4faef-484c-4ce7-992c-906e05fc083e','ALİ SOYDEMİR(K)','0031638119286','0031651135068','Hollanda',NULL,'3119VE','KO SUURHOFFLAAN 16',0,2,120,'644843470','0','0',NULL,590,0,NULL,'2025-09-24 12:23:30.448','2025-10-27 08:20:09.270',NULL),
('bba121d9-edb3-4b4b-9645-cb61aea83210','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-01-29 08:06:53.497',9456,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜSEYİN ÖÇAL','33635494107','33785512732','Fransa',NULL,'73200','148 CHEMIN DES ECOLIERS ALBERTVILLE 73200 FRANSA ',0,2,130,'745928524','0','0',NULL,1100,0,'4 M3 ','2025-01-29 08:09:57.254','2025-02-13 08:52:05.631','2025-02-13 08:52:05.634'),
('bbbfec16-7fc6-4768-8141-eb412f41dde7','1f0119e0-2853-442a-8394-39cf94fce7df','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-13 09:08:26.063',10454,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','CAN DERİN','905350866560','4917621376557','Almanya','OFFENBACH AM MAİN','63071','BİEBERERSTRASSE. 219, 63071 OFFENBACH AM MAİN',22,4.5,110,'517337381','0','0',NULL,1600,1,'SARI ETİKETLİ','2025-05-13 09:10:34.903','2025-06-05 12:35:03.972',NULL),
('bbe0a3f7-d405-4f31-b110-5a17a6297431','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:25:33.882',8255,'47880255-08ee-4e99-940b-16038e07de55','ESRA TEZCAN','3165428312','','Hollanda','NİJMEGEN','6545','DENGEERKAMP 1431',10,1,100,'478728370','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-09-27 12:27:35.272','2024-10-07 14:02:43.363',NULL),
('bbe6dafe-0c06-4dae-86a5-c71abc373150','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-10-08 08:55:23.269',2214,'59868701-abe4-4705-a7e6-d91c2c69262e','TUĞÇE ÖZKAYA SSH','491747823424','491728743891','Almanya',NULL,'68809','TULLASTR. 17, 68809 NEULUSSHEİM ALMANYA',0,2,110,'598314012','0','0',NULL,0,0,'ssh ürün bedel yazılmayacak','2025-10-08 08:58:13.783','2025-10-23 12:05:24.073',NULL),
('bbee5f58-f6e5-4525-b872-ef97ac4ab579','bb561a28-5dde-42e6-a2cb-dd7f6178002f',NULL,'2025-10-08 11:48:06.109',6108,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','SEVCAN BAYRAM','4915212031133','4915121623627','Almanya','QUAKENBRÜCK','49610 ','SCHULSTRASSE 69\n49610 QUAKENBRÜCK',0,5.5,110,'351183541','0','0',NULL,1300,0,NULL,'2025-10-08 11:53:44.645','2025-10-13 11:02:18.661',NULL),
('bbffe63d-9618-42a2-944f-0a4b76bb33ae','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 08:50:16.888',5971,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','FIRAT DEMİRCİ','4915739316802','','Almanya','HAMBURG','21073','KNOOPSTRABE 3',4,2.5,100,'982451991','0','0',NULL,1000,1,'','2024-03-12 08:55:46.638','2024-03-22 07:37:35.143',NULL),
('bc037735-462f-4198-8d2d-23ba6a125e18','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-02 10:14:39.220',8552,'fdb96289-c48e-47a8-9fd3-37b529486551','İSA KAPLAN ','33623950988',NULL,'Fransa',NULL,'71000','210 RUE FLANDRES DUNKERQUE',13,1,0,'962168012','0','0',NULL,0,0,'KREM RENK ETİKETLİ','2025-01-02 10:15:40.513','2025-01-17 11:00:34.042',NULL),
('bc141652-9c08-41a5-8abc-a2a5bb180127','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-20 09:32:55.829',7417,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','RÜVEYDA ŞAHİN','0041765845886','0041765845886','İsviçre','WİNTERTHUR','8404','WALLRÜTİ STR. 119A, 8404 WİNTERTHUR İSVİÇRE',5,2,140,'12771217','0','0',NULL,0,0,'KIRMIZI ETİKET','2025-08-20 09:37:32.165','2025-08-31 10:05:37.484',NULL),
('bc3edf3c-08ad-439c-b6ee-9b055fb20fab','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 13:11:54.297',4945,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','ALİ GÖKSU ','4917681266759',NULL,'Almanya',NULL,'86179','LEHARSTRASSE 6A',26,2,110,'268145141','0','0',NULL,1150,1,'KIRMIZI ETİKETLİ','2025-01-29 13:16:58.791','2025-02-15 11:10:42.855',NULL),
('bc5655fe-7957-4a4b-8b86-3cb1da8d33c6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-05 10:49:37.354',7688,'e6d4faef-484c-4ce7-992c-906e05fc083e','MELEK KAYMAZ(K)','31686096778','31687916596','Hollanda','BLOKKER','1695CK','ELLE MOLSTRAAT 26',3,3.5,120,'644547865','0','0',NULL,1300,1,'TURUNCU ETİKET','2025-09-05 10:57:07.249','2025-10-16 15:46:55.231',NULL),
('bc9cdd42-f20d-47dd-a305-ef4f97580e2c','d03032cd-3542-403b-975d-f781dffab494',NULL,'2024-10-07 18:07:51.320',5096,'4126da30-ba9b-41b7-be29-865069aa484c','Test','905342491655','','Ermenistan','','16250','',0,1,0,'412751955','0','0',NULL,0,0,'','2024-10-07 18:08:13.209','2024-10-25 09:21:31.041','2024-10-25 09:21:31.045'),
('bca69f0f-c971-4a0c-bf97-7f3178e5ccc5','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-01-09 10:36:41.656',10025,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAİDATİ İMANE ','33647460384',NULL,'Fransa',NULL,'74100',NULL,0,1,140,'982627854','0','0',NULL,2050,0,NULL,'2025-01-09 10:40:08.743','2025-01-09 20:08:34.656','2025-01-09 20:08:34.660'),
('bca77d81-68cd-453a-baac-e90e9d898da0','bb561a28-5dde-42e6-a2cb-dd7f6178002f','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-18 08:31:32.323',7351,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','AZAT ALKAN','4917663870920','491749591942','Almanya','AACHEN','52078','STETTİNER STR 6  52078 AACHEN ALMANYA',12,4.5,110,'35119636','0','0',NULL,1200,1,'AÇIK KAHVE ETİKET','2025-08-18 08:36:04.149','2025-09-03 07:08:02.304',NULL),
('bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9','eccfe611-9163-42aa-a1ff-e711af0248e6','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-17 11:46:36.520',4095,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MİYASE SARIKAYA','31648828012',NULL,'Hollanda',NULL,'1503','BRANDARİS 162 , 1503 CC ZAANDAM ',8,2,120,'221966080','0','0',NULL,500,1,'MOR ETİKETLİ','2025-02-17 11:47:54.665','2025-03-08 13:57:38.797',NULL),
('bcc57c6c-154f-43e9-bfcc-5d4a7225b29a','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-02-12 13:28:26.014',6311,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SADET DURSUN','436608300590','436601731171','Avusturya',NULL,'6923','LERCHENPARK 1 VORARLBERG 6923 LAUTERACH AUSTRİA',0,2,140,'74546300','0','0',NULL,695,0,'3 M3','2025-02-12 13:30:45.147','2025-03-03 21:55:13.797','2025-03-03 21:55:13.801'),
('bceef6ba-e1ee-4daa-b926-518c0bbcce5d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:28:24.851',4250,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ABDİL ACAR','33679890673','','Fransa','ALLINGES','74200','370 RUE CHAMP MENOU ',7,3.5,110,'61467762','0','0',NULL,1000,1,'MAVİ ETİKETLİ','2024-03-16 08:30:40.099','2024-03-27 11:09:56.689',NULL),
('bcf75901-1def-440f-8bcd-fcbe758d1224','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-17 15:26:42.470',2731,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','AYŞE ÇÖPLÜ','4915735318430',NULL,'Almanya','RAUXEL','44575','VİKTORİAST.80 44575 CASTROP-RAUXEL ALMANYA',18,2,110,'127530070','0','0',NULL,750,1,'TURUNCU ETİKETLİ','2025-01-17 15:46:18.873','2025-02-07 11:21:19.005',NULL),
('bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-12 08:49:42.609',10280,'897db2b6-7b3e-46d6-bdb1-886bd9410c3a','MUSA VARICI ','905317943903',NULL,'Almanya',NULL,'73430',NULL,15,5,110,'897291641','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-02-12 08:52:48.523','2025-02-23 09:31:03.540',NULL),
('bd298d61-17ac-40db-8ec3-3741f3c4e017','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-21 20:51:04.076',3295,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','SUHAD AL-ASADİ ','436606544408',NULL,'Avusturya',NULL,'4663','SCHERERSTRASSE 3C/6\n4663 LAAKİRCHEN',14,2,120,'675124573','0','0',NULL,550,1,'YEŞİL ETİKETLİ','2025-06-21 20:53:42.444','2025-08-01 13:39:23.237',NULL),
('bd343457-fe23-4870-a5c8-17ec7d82c974','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:25:33.031',6036,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','NOM HASSAN ABDULE','33753822818','','Fransa','','74300','11 RUE EDAVORD HERRİOT CLUSES',8,5.5,110,'449806465','5','1','C\'était cool. ',2450,1,'TURUNCU ETİKETLİ','2024-03-16 08:28:18.990','2024-03-27 15:44:51.489',NULL),
('bd527c1b-2a83-4e69-9c2d-979c479102b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:03:30.119',9679,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','','','Almanya','WEİNGARTEN','88250','JUNKERS STRASSE 35',6,1,0,'248383650','0','0',NULL,900,1,'KIRMIZI ETİKETLİ','2024-10-02 09:04:18.517','2024-10-08 17:09:18.900',NULL),
('bd7eda5e-ac7f-480c-b763-07c7b440ee80','eccfe611-9163-42aa-a1ff-e711af0248e6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-01 10:03:38.084',5536,'22a1dbd6-475c-4d4b-bb13-f459e3029634','TİMUÇİN SAYIN','4917664184092',NULL,'Almanya',NULL,'88677','KONRAD-ADENAUER STRABE 2 , 88677 MARKDORF ',27,2,110,'221786435','0','0',NULL,750,1,'SARI RENK ','2025-07-01 10:05:34.634','2025-07-26 09:24:06.361',NULL),
('bd80bdec-0c89-4c10-9849-bbafe5a44605','51b55e5b-7487-4d8a-923e-163f04d0b1d9','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 13:25:17.101',10248,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','BARIŞ ÖZTÜRK','32497224149',NULL,'Belçika',NULL,'3600','LEMBURG / BELÇİKA',13,3.5,120,'750355737','0','0',NULL,0,0,'MOR ETİKET ','2025-09-17 13:27:41.234','2025-10-17 20:57:44.720',NULL),
('bd9dba96-c9c5-4c61-b279-b74adace6799','8fff5e14-418c-4377-bd83-3a3f81383507','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-10 15:17:32.558',3357,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','BEN FRİHA FATMA','33661847175',NULL,'Fransa','CLİCHY SOUS BOİS','93390','28 ALLEE DE RECY',3,4,120,'437321677','0','0',NULL,550,1,'BEYAZ ETİKET','2025-10-10 15:19:30.263','2025-10-25 09:00:30.633',NULL),
('bda1a022-6558-4b61-9d65-0cbc7957db0b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-06 10:38:45.355',3389,'3c7190b6-f6ee-4275-8958-d7af952132ab','HATİCE BOZ','491622711992','491622711992','Almanya','BAD OLDESLOE','23843','WENDUM 15 23843 BAD OLDESLOE ALMANYA',6,2,110,'371441090','0','0',NULL,700,1,'TRAVERTEN MASA','2025-08-06 10:40:31.319','2025-08-21 08:13:02.684',NULL),
('bdb01abd-b400-4d77-9dc6-589a2150e1ce','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-27 07:23:14.807',9441,'3c7190b6-f6ee-4275-8958-d7af952132ab','SUAT TURA','4917624686469','4917624686469','Almanya','SCHWEGENHEİM','67365','BAHNHOFSTRABE 43 67365 SCHWEGENHEİM',24,3,110,'371628660','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ ','2025-06-27 07:31:25.824','2025-07-23 06:22:20.773',NULL),
('bdb980ba-2d77-4b13-a3ae-a172bc776850','f784b688-ba6b-4886-87dd-fe4cfbed85b4','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-14 13:02:41.173',8134,'dea91080-5383-4085-af2e-7eace2c64224','RUKİYE EKERBİÇER','33749894912','33761359212','Fransa',NULL,'02400','12 RUE DE LA MARE AUX CANES		\nCHATEAU THIERRY 02400		\nFRANSA		\n',23,2,120,'910638892','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-01-14 13:05:47.667','2025-02-11 17:09:18.216',NULL),
('bdde5e4c-e62c-4ddd-9471-758e286d2013','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 15:27:37.141',5334,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','DONİKA','41762149925',NULL,'İsviçre',NULL,'8604','ACKERSTRASSE 150 8604 VOLKETSWİL SCHWEİZ',10,7.5,140,'786849282','0','0',NULL,4000,1,'Kırmızı etiketli','2025-02-13 15:38:50.193','2025-02-24 20:28:04.441',NULL),
('be44de23-229f-41e6-8dac-6b3d7459bdc7','394112c3-f977-4fc2-b430-775e79e472ca','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-09 08:39:15.843',2489,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','GHATİA PARASCHİVA','40756878017',NULL,'Romanya',NULL,'427245',NULL,0,4,0,'982163675','0','0',NULL,1350,1,'SARI ETİKETLİ','2025-07-09 08:40:41.031','2025-07-21 08:00:02.727',NULL),
('be61ae08-268e-417d-9e86-940a675647f2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9e06441c-1bec-4f47-847f-83bea94f8369','2025-09-08 08:34:50.729',8803,'47880255-08ee-4e99-940b-16038e07de55','OKAY DERİNKUYU','41764103638','4915231405303','İsviçre','MURİ','5630','BACHMATTEN7 5630 MURİ İSVİÇRE',8,2,140,'478402358','0','0',NULL,1750,1,'AÇIK KAHVE','2025-09-08 08:36:00.290','2025-09-17 17:51:31.344',NULL),
('be63ebf6-5ba8-4695-a8cc-d99a2fc9238c','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-08 10:27:45.343',1890,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','CEMAL YALÇIN','4915158036323','05388999874','Almanya',NULL,'58540','ALMANYA',16,4,110,'319116491','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2025-07-08 10:30:57.644','2025-07-25 10:48:52.288',NULL),
('be6b74bb-6b56-429f-8118-650dc26879d4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3c847602-8428-494a-84ce-0c9c9392db1a','2025-07-02 10:04:52.278',5800,'e6d4faef-484c-4ce7-992c-906e05fc083e','ABDULLAH ÖĞRETEN','4917632881676','015209328224','Almanya','HAMBURG','22111','LEGİENSTR.6',0,2,110,'644917251','0','0',NULL,950,1,'YEŞİL ETİKETLİ','2025-07-02 10:11:06.080','2025-07-24 18:04:22.416',NULL),
('be724a3e-9060-4b50-872b-a56ac4c3c92b','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-07-30 08:03:54.344',7527,'47880255-08ee-4e99-940b-16038e07de55','MURAT KALKAN','33789432951','33685686692','Fransa','LANTHENAY','41200','17 RUE ANNE DE BRETAGNE 41200 ROMORANTİN LANTHENAY FRANSA',0,2,130,'478778771','0','0',NULL,2200,0,'5m3','2025-07-30 08:08:19.182','2025-08-21 10:24:03.451','2025-08-21 10:24:03.450'),
('be9967c6-717c-4bdc-910a-34e5434a1c5b','5c723cdc-e582-4b00-8271-838c085984c2','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-24 09:07:33.087',8742,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HİDAYET KURT','4917692916375',NULL,'Almanya',NULL,'73760','HINDENBURG STRABE 7 73760 OSTFILDERN STUTTGART ALMANYA',18,2,105,'745789797','0','0',NULL,500,1,'MOR ETİKETLİ','2025-03-24 09:09:30.917','2025-04-05 13:45:31.240',NULL),
('bec65e06-6270-4da0-8ec5-c65be8d1c4e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:57:33.165',9140,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','HUSNA ISHAGZAİ','4915208790958','','Almanya','FRANKFURT','60435','AM NEUNBERG 18',2,8,100,'44926965','0','0',NULL,2900,1,'PEMBE ETİKETLİ','2024-03-30 10:00:56.599','2024-04-11 06:19:45.987',NULL),
('becc1835-a791-4103-9eb4-4d14db8a91fb','394112c3-f977-4fc2-b430-775e79e472ca','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-25 20:59:41.240',8724,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ARTON BERİSHA ','4917682030293',NULL,'Almanya',NULL,'87700','87700 MEMMİNGEN ',21,3.5,100,'982835475','0','0',NULL,1350,1,'TURUNCU ETİKETLİ','2024-11-25 21:01:17.282','2024-12-09 17:29:19.987',NULL),
('bed8b1f7-85e7-41e8-b669-6360ddf5b5ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 10:22:23.891',10668,'4126da30-ba9b-41b7-be29-865069aa484c','İHSAN KEPİR','4334434234324324',NULL,'Almanya',NULL,'27751','AM DONNERESCH 33',3,2,0,'412378459','0','0',NULL,1450,1,'MAVİ ETİKETLİ','2025-07-08 10:25:41.120','2025-07-25 18:05:24.878',NULL),
('bedc8bfd-1431-4017-9109-bedbb2184827','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','98672fb9-339c-4dd4-895c-652e44b438ac','2025-09-09 08:24:47.041',1288,'59868701-abe4-4705-a7e6-d91c2c69262e','KADER ŞAHİN','4917655561792','4917655561793','Almanya',NULL,'85354','PLANTAGENWEG 14, 85354 FREİSİNG ALMANYA',27,5.5,110,'598719647','0','0',NULL,1400,0,'YEŞİL ETİKET ','2025-09-09 08:27:04.990','2025-10-22 13:06:41.295',NULL),
('bee81a54-df39-48a5-9fb3-63e75a6f2e1d','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-15 09:02:17.381',3329,'47880255-08ee-4e99-940b-16038e07de55','ELVAN ARSLAN','33667698710','33660612801','Fransa','METZ','57280','18 AVENUE DE LATTRE DE TOSSİGNY 57280 MAİZİERES LES METZ FRANSA',0,7,130,'47856812','0','0',NULL,3000,0,NULL,'2025-10-15 09:07:35.718','2025-10-24 07:26:24.425',NULL),
('beffebda-e20a-412c-9417-7ba252538d35','4c3a2917-702d-4b2d-be91-e8860cfc98a7','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-04 08:51:53.885',2317,'f4861afa-47df-4a6b-b9ca-da22afe273e4','FARUK ANSER','4915223499584',NULL,'Almanya','STUTTGART','70771','MAX-LEANG-STR.13 70771 STUTTGART-\nLEINFELDEN-ALMANYA',26,2,110,'486552581','3','5','Sizden bilgi alamadım, şoför den aldım ',650,1,NULL,'2025-08-04 08:56:40.606','2025-08-27 08:12:41.968',NULL),
('bf1f4b78-8b96-4650-9e12-82af1edcf06d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 12:46:45.978',2098,'e6d4faef-484c-4ce7-992c-906e05fc083e','ESRA MOLLA(K)','017670376314','01738919454','Almanya','HANAU','63452','IM VENUSSEE 1',0,2,110,'64471370','0','0',NULL,1070,0,NULL,'2025-09-17 12:53:11.937','2025-10-27 08:18:55.781',NULL),
('bf2667e1-bf39-437c-9e10-0e2cf3b28d46','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-18 16:00:01.369',8472,'4126da30-ba9b-41b7-be29-865069aa484c','RIDVAN BEY','4917663775902',NULL,'Almanya',NULL,'24148','POPPENREDE 13',2,2,0,'412241218','0','0',NULL,600,1,'MAVİ ETİKETLİ','2025-02-18 16:02:47.253','2025-02-27 16:38:40.670',NULL),
('bf2ed432-e49a-44c6-8058-51173e940f0e','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-24 13:45:17.878',5930,'c2d4ce84-536d-4816-837f-7abbf6a7e061','TABLO','4915778521102',NULL,'Almanya',NULL,'45665','DORTMUNDER STRABE 115',5,1,0,'248209461','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-12-24 13:46:49.031','2025-01-07 10:35:46.500',NULL),
('bf3734b5-7721-41e9-9cb0-212fc49e08df','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 10:19:54.849',6488,'4126da30-ba9b-41b7-be29-865069aa484c','LEX-CERAM DESİGN','','','Almanya','NİEDERAU','01689','WEİNBOHLAER STRASSE 7',0,6,125,'412976656','0','0',NULL,0,0,'','2024-03-12 10:21:45.056','2024-03-22 07:35:41.520',NULL),
('bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','922303e0-023c-44c4-9569-272efdb9286e','2024-07-03 14:29:21.213',5860,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İRFAN ÖZDEMİR','','','Almanya','','','',3,1,100,'614337059','0','0',NULL,0,0,'','2024-07-03 14:29:48.218','2024-07-16 05:11:31.470',NULL),
('bf3e9a97-34cf-4695-a98a-6443fec6e1ad','d4cae326-953d-4da4-b88b-53535f8f8cd3',NULL,'2025-10-23 15:31:40.525',3330,'5b04798d-86e0-44d7-9219-194a32dc85ff','ADELİNA GREZDA','4917632844884',NULL,'Almanya','NÜRNBERG','90439 ','ADELİNA GREZDA\nSCHWEİNAUER STRASSE 64\n90439 NÜRNBERG, DEUTSCHLAND.\n+4917632844884 ',0,6,110,'504960523','0','0',NULL,1000,0,NULL,'2025-10-23 15:35:14.573','2025-10-27 07:52:32.772',NULL),
('bf55ba8d-4886-4535-bedc-892994749297','8fff5e14-418c-4377-bd83-3a3f81383507','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-28 15:25:20.754',4029,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','HAZAL BATUR','33782988116','33650178129','Fransa','GAGNY','93320','22 RUE DES COLLİNES',6,5,120,'437712381','1','1','Saygisiz \nHiç profesyonel degilsiniz \nAdam eşime kufur etti ',1800,1,'AÇIK KAHVERENGİ ETİKET ','2025-08-28 15:27:41.531','2025-10-04 14:08:43.965',NULL),
('bf69a70a-73ab-451f-bc43-7e834619f2e6','5c723cdc-e582-4b00-8271-838c085984c2','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-13 08:16:29.603',2039,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BİRSEN BALIM','4917680830421','491772186401','Almanya',NULL,'35630','DILL STR 7 35630 EHRINGSHAUSEN ALMANYA',20,5,105,'74521183','0','0',NULL,2000,0,'YEŞİL ETİKET','2025-10-13 08:16:24.196','2025-10-25 08:58:58.836',NULL),
('bf6d827f-7ff6-4e1e-948c-99dab63704e4','d4cae326-953d-4da4-b88b-53535f8f8cd3',NULL,'2025-10-16 14:32:20.189',3207,'5b04798d-86e0-44d7-9219-194a32dc85ff','NURTEN BALCI','33650130089',NULL,'Fransa','VİLLEBAROU ','41000','2 RUE DES MÉZİÈRES \n41000 VİLLEBAROU \nFRANCE',0,5.5,120,'504809900','0','0',NULL,1400,0,NULL,'2025-10-16 14:35:25.674','2025-10-20 08:38:33.046',NULL),
('bf721424-1a05-4d9c-95f0-728c336c9ab9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-24 12:18:54.509',1268,'c2d4ce84-536d-4816-837f-7abbf6a7e061','TAŞLAR','1122323232323232',NULL,'Almanya',NULL,'13086',NULL,5,2,110,'248475044','0','0',NULL,1250,1,'3 PALET TAŞ','2025-03-24 12:20:12.728','2025-04-05 10:58:03.788',NULL),
('bf79529e-c1ff-49c8-af5b-ad352b688aa3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-07 08:14:37.674',1311,'cc831224-5440-4e53-b6db-4965adaf2533','KAMER DUHAN ECE','4917620989771',NULL,'Almanya',NULL,'58642','HAGENER STRASSE 83\n58642 ISERLOHN',2,2,110,'831899043','0','0',NULL,0,0,'KIRMIZI ETİKET ','2025-10-07 08:16:02.357','2025-10-20 06:32:49.151',NULL),
('bf953636-9909-460f-8244-8ec3b177251f','313cc2e2-5529-49ab-abe5-27b5d390bc5f','eb88f328-c1ca-431b-ad68-6f414d275615','2025-04-08 12:26:17.835',6706,'6133a2db-79c4-4372-9338-505db46b1847','ENES TAHİRİ','41793837824','41795028159','İsviçre','MUTTENZ ','4132','BASELSTRASSE 13\n4132 MUTTENZ \nSCHWEİZ',13,2,140,'613803170','4','5','Pünktlich wie abgesprochen. Der Fahrer war sehr freundlich und ich bin absolut zufrieden. Danke',1175,1,'1175 CHF alınacaktır.\n21-25\n','2025-04-08 12:33:30.809','2025-05-07 16:52:09.285',NULL),
('bf9be925-842f-4ee7-ad0e-8e73349c83f4','8fff5e14-418c-4377-bd83-3a3f81383507','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-22 09:22:44.388',3332,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SERCAN KUCUR','4917671209008','491793933332','Almanya','OBERHAUSEN','46119','RİPSDÖRNESTR 25',17,3,110,'437626008','0','0',NULL,900,1,'SARI ETİKET','2025-08-22 09:25:42.606','2025-09-10 17:05:54.589',NULL),
('bf9e7e37-a303-4c99-91c8-1dc42a4c5e72','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 07:47:09.690',6233,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FİKRET AYDIN','33760972020','33789033482','Fransa','SALON DE','13300','249 BOULEVARD GEORGES CLEMENCAU',20,4,110,'745439695','5','5','Teşekkürler her şey için memnun kaldık umarım Şoför bizden memnun kalmıştır ',0,0,'KIRIMIZI ETİKETLİ','2024-05-04 07:48:57.347','2024-05-23 08:37:53.081',NULL),
('bfb3177d-b014-4d5f-96ed-429027d88083','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-24 15:56:00.065',3258,'47880255-08ee-4e99-940b-16038e07de55','MUHAMMET ALTUNKAYA','491735713527','4915759307313','Almanya','NEUNKİRCHEN','57290','KONTSTRABE1  57290 NEUNKİRCHEN ALMANYA',12,5,100,'478535316','0','0',NULL,1700,1,'YEŞİL ETİKETLİ','2024-12-24 15:58:43.777','2025-01-06 20:09:39.525',NULL),
('bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-22 16:04:18.408',10400,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','SAİT CARCUR','31650234175',NULL,'Hollanda',NULL,'5231','ZİRKOON 14',8,6.5,100,'501874784','0','0',NULL,3750,1,'AÇIK MAVİ ETİKETLİ','2024-11-22 16:05:41.942','2024-12-05 16:17:58.917',NULL),
('bfc5b29f-424e-465e-8d1d-8f10342630de','5c723cdc-e582-4b00-8271-838c085984c2','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-31 14:12:42.613',8317,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERAY ASLANCAN','4917672708890',NULL,'Almanya',NULL,'35745','STEINSEITER 19 35745 HERBORN ALMANYA',28,2.5,105,'745294810','0','0',NULL,450,1,'MOR ETİKET','2025-07-31 14:12:21.942','2025-09-01 16:56:57.990',NULL),
('bff7b018-9fd3-45fb-bd37-fd078042b359','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-04-25 07:19:58.088',9966,'e6d4faef-484c-4ce7-992c-906e05fc083e','GÜLAY FASOLD','491638482506','491785154037','Almanya','TAUNUSSTEİN','65232','BRUNNERSTR 14',21,6.5,110,'644820551','0','0',NULL,2750,1,'MAVİ ETİKETLİ','2025-04-30 07:46:24.483','2025-06-05 12:35:08.404',NULL),
('bffb100f-3ff7-4c20-b550-4d2bd55fc67f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-22 20:32:07.336',6612,'73596a75-b658-4249-8c71-b0490654bc8b','JASMİNA AGA','41763213206',NULL,'İsviçre',NULL,'8604','IFANGSTRASSE 47',4,2,0,'735271543','0','0',NULL,630,1,'TURUNCU ETİKET (584 FRANK ALINACAK)','2025-08-22 20:33:47.775','2025-08-31 10:05:41.863',NULL),
('c021f338-6016-4618-8575-dc3a9f3dca1f','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-01-13 10:19:08.077',6401,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEVİM YILDIRIM','491634668298',NULL,'Almanya',NULL,'67227','FİSCHERGASSE 2 67227 FRANKENTHAL ALMANYA',0,2,105,'745221020','0','0',NULL,400,0,'3 M3 ','2025-01-13 10:32:12.216','2025-01-29 08:10:36.610','2025-01-29 08:10:36.613'),
('c06f587f-6e80-42ec-8b11-2be622f719d0','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-13 10:14:25.986',6655,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ENVER KÖK','4915222583405',NULL,'Almanya',NULL,'85057',NULL,13,2.5,140,'982549375','0','0',NULL,1600,1,'MAVİ ETİKETLİ','2024-11-13 10:15:55.958','2024-12-13 19:00:45.749',NULL),
('c0971211-dd47-4ca0-be3b-b5119c4ec3e8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-07-02 07:47:42.521',8598,'c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','HASAN BEY','905540182920','','Belçika','','6040','RUE DU DİARBOİS 8 JUMET',0,17.5,0,'448153102','0','0',NULL,3950,1,'PALET','2024-07-02 07:49:51.583','2024-07-27 08:40:02.115',NULL),
('c0a6fef4-a5ae-4572-85c7-2f3b28086520','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-27 21:29:19.187',4201,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','ALEYNA','491603319879',NULL,'Almanya','KAUFERİNG BAYERN, ALMANYA 01603319879','86916','WELFENSTR. 9\n86916 KAUFERİNG\nBAYERN, ALMANYA\n01603319879\n',19,3,110,'817395462','0','0',NULL,650,1,'GRİ ETİKETLİ','2025-07-27 21:32:21.393','2025-08-06 17:56:19.273',NULL),
('c0c37a9e-a856-4546-9c17-87681e0484fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-21 12:58:51.516',5581,'c2d4ce84-536d-4816-837f-7abbf6a7e061','LEİPZİNG','1111112333232323',NULL,'Almanya','HALLE','06108',NULL,9,2,110,'248133427','0','0',NULL,2500,1,'BEJ RENK ETİKETLİ','2025-03-21 13:01:38.380','2025-04-04 09:39:42.877',NULL),
('c0c3f9c9-66be-417f-8970-9ed698019421','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-10-07 14:53:45.109',3536,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','MERVE ESER   OKAN DUMAN','33762650402','33765570104','Fransa','LUTTERBACH','68460','18 RUE REİNİNGUE LUTTERBACH 68460 FRANCE',0,2,120,'515536394','0','0',NULL,1650,0,NULL,'2025-10-07 15:04:02.959','2025-10-07 15:04:02.959',NULL),
('c0cc8fc6-08f2-45a3-a974-7d378329a372','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-04 09:55:56.181',4134,'e6d4faef-484c-4ce7-992c-906e05fc083e','FADİME AKDEMİR','4915751154309','4917675876599','Almanya','HERZOGENRATH','52134','LÖRSCHPÜLGEN 28,52134 HERZOGENRATH',7,3.5,110,'644130393','0','0',NULL,800,1,'KIRMIZI ETİKETLİ','2025-03-04 10:10:40.688','2025-03-18 18:33:04.535',NULL),
('c106b212-52f4-41f3-8f99-1ac006f2e5af','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-29 07:27:22.918',9912,'47880255-08ee-4e99-940b-16038e07de55','MEHMET RIZA ÇOBANOĞLU','491632890514',NULL,'Almanya','HAMBURG','61352','DAİMLER STR. 7 61352 BAD HAMBURG ',13,2,105,'478992248','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-01-29 07:28:54.633','2025-02-24 17:24:59.463',NULL),
('c1240440-7bab-4c36-b81b-ce30804d132b','394112c3-f977-4fc2-b430-775e79e472ca','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-17 19:34:14.807',4298,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAİD ALİ ','41792532277',NULL,'İsviçre',NULL,'8855',NULL,10,4.5,140,'982973548','5','5','War sehr schnell und gut ',2000,1,'MOR ETİKETLİ','2025-01-17 19:35:19.192','2025-01-31 20:15:05.711',NULL),
('c139f73d-4a85-4217-8011-d483b3fabd11','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 13:20:38.817',1565,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MAHMOUD AJİ','005071104453','','Belçika','GENT','9000','RERUM NOVARUMPLEİN 98',22,1,0,'248948777','0','0',NULL,400,1,'GRİ ETİKETLİ','2024-09-27 13:23:29.327','2024-10-08 09:25:48.154',NULL),
('c15ec73d-23f3-470b-88b9-b482c773905a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-25 08:15:41.940',5535,'47880255-08ee-4e99-940b-16038e07de55','ALİ DİNAR','33652341181','33784196938','Fransa','BRUMATH','67170','1 RUE DES ALOUETTES BRUMATH 67700 FRANSA',16,2,130,'47811313','1','1','.',3000,1,'YEŞİL ETİKETLİ','2025-02-25 08:19:29.626','2025-03-24 07:57:32.192',NULL),
('c16f579e-010b-42d8-95dd-f1b7b1f32859','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-28 09:06:52.111',8711,'4126da30-ba9b-41b7-be29-865069aa484c','MOONBEAM HOME','4917662135635',NULL,'Almanya',NULL,'45891','CRANGER STR 347',12,4,0,'412284149','0','0',NULL,440,1,NULL,'2025-04-28 09:14:20.956','2025-05-13 09:05:26.084',NULL),
('c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','05e8de78-1979-427a-85ea-4116295aadf5','2025-10-01 06:55:59.970',3766,'4126da30-ba9b-41b7-be29-865069aa484c','COŞKUN MURAT AKTAŞ ','31625064385',NULL,'Hollanda','EİNDHOVEN','5684',NULL,9,2,0,'41246036','0','0',NULL,1780,1,'125 ADET KOLİ ','2025-10-01 06:58:12.327','2025-10-15 20:04:54.631',NULL),
('c19abe66-cb76-4c21-ad00-4ba1ed3d223c','1f0119e0-2853-442a-8394-39cf94fce7df',NULL,'2025-05-29 17:19:18.459',8441,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','TARİK ERCAN','4917681020824','4915257041227','Almanya','UBSTADT-WEİHER','76698','RÖHRİNGSTR. 8, 76698 UBSTADT-WEİHER',0,2,110,'517274063','0','0',NULL,900,0,NULL,'2025-05-29 17:33:36.721','2025-06-23 12:24:25.756','2025-06-23 12:24:25.759'),
('c1b1a711-e322-4a5e-a681-2fe0fcb0deba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-09-03 14:57:12.981',5775,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ALİ ŞİMŞEK','0033767846954','','Fransa','METZ','57525','7 RUE HENRİ BARBUSSE ',0,1,0,'248625081','0','0',NULL,600,1,'AÇIK MAVİ ETİKETLİ','2024-09-03 15:00:01.310','2024-09-13 16:38:48.858',NULL),
('c1b8db95-a2de-4d83-a91b-b023c570372f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-10-30 14:51:13.024',8218,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NURKOVİC JASMİN','352621224281',NULL,'Lüksemburg',NULL,'3583','2 UM HESSELSBİERG TETANGE',0,7,120,'982176810','0','0',NULL,3100,1,'AÇIK MAVİ ETİKETLİ','2024-10-30 14:53:53.803','2024-12-01 12:29:12.435',NULL),
('c1cea88c-608d-4453-b63a-81ba0b909940','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-09 13:24:50.550',6362,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','BURAK TÜRKEŞ','33652910874',NULL,'Fransa','ROMAİNVİLLE','93230','45 RUE MADELEİNE ODRU',20,3,110,'614458088','0','0',NULL,840,1,'SARI ETİKETLİ','2024-10-09 13:28:18.167','2024-11-04 08:40:29.098',NULL),
('c1e90081-d7d5-4180-8f60-a63125cea8c2','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-02 11:45:04.264',8976,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','ESTRELLA TÜMKAYA','491603395837','491603349147','Almanya','BAD BREİSİG','53498','SABESTİAN KNEİPP STR 39 ',17,5,110,'319918133','4','4','Her şey süperdi ',1400,1,'YEŞİL ETİKETLİ','2025-02-02 11:47:17.325','2025-02-18 09:46:21.667',NULL),
('c2076f78-1666-4ea9-9474-176fcb79c195','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb',NULL,'2025-06-22 17:08:05.435',6303,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','ARZU ASLAN','436603406293',NULL,'Avusturya',NULL,'1120','SUSİ-WEİGEL-WEG 1-5/31-1120',0,2,120,'675346042','0','0',NULL,0,0,NULL,'2025-06-22 17:11:41.050','2025-07-08 11:30:12.079','2025-07-08 11:30:12.078'),
('c242a231-cffe-4e5d-bd32-54cf78b29c25','5c723cdc-e582-4b00-8271-838c085984c2','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-21 09:36:37.533',8311,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','KENAN BAYAR','436766459770','4917683242362','Avusturya','WIEN','1140','MARZSTRASSE 164/9 1140 WIEN AVUSTURYA',14,7.5,140,'74568874','0','0',NULL,2650,1,'TURUNCU ETİKETLİ','2025-04-21 09:40:44.255','2025-05-21 15:30:07.918',NULL),
('c25ac7c4-4bc1-4a99-bd3f-189af6d00f37','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-16 14:03:16.516',6951,'3c7190b6-f6ee-4275-8958-d7af952132ab','KADİR ÜZER','4917675899290','4917675899290','Almanya','NEUMÜSNTER','24534','CARLSTRABE 9 24534 NEUMÜNSTER ALMANYA',1,3,110,'371495147','0','0',NULL,750,1,'TURUNCU ETİKET','2025-09-16 14:04:45.526','2025-10-07 06:18:03.066',NULL),
('c2738111-51d8-4195-8709-efd9bbe4d309','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:12:36.377',4600,'47880255-08ee-4e99-940b-16038e07de55','ERGÜN YILMAZ','33782934072','','Fransa','SAİNT LOUSE','68300','42 RUE JEAN JECGUES HENNER',5,3.5,110,'478890979','0','0',NULL,1100,1,'TURUNCU ETİKETLİ','2024-05-04 10:15:08.647','2024-05-21 18:45:07.083',NULL),
('c2a2e3f6-0c40-47f3-b43b-d69383cb87fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-18 16:29:48.167',10437,'4126da30-ba9b-41b7-be29-865069aa484c','VEYSİ BALKAYA','4915566427989',NULL,'Almanya',NULL,'34127','WİTZENHAUSER STRABE 14',8,2,0,'412252425','0','0',NULL,600,1,'TURUNCU ETİKETLİ','2025-02-18 16:31:07.589','2025-02-27 13:37:30.441',NULL),
('c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad','d074816b-78fd-4378-91c0-3835eba28f44','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-09 11:35:52.599',4879,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞADİYE GÖLEÇ','4917643479930',NULL,'Almanya','HAMBURG','22119','AM ÖSENDORFER SEE 54 22119 HAMBURG/ALMANYA',3,2.5,100,'61420700','1','1','Tam beklenen zamanda geldi, fakat şoför ile tam iletişim kuramadıgımız için sıkıntı yaşadık. Esyalarınıda kendimiz taşıdık. ',690,1,'MOR ETİKETLİ','2024-11-09 11:42:20.299','2024-11-24 10:44:18.227',NULL),
('c2d80ea2-bf32-4dd3-96fc-6c76b77ae583','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-09 11:48:13.951',6567,'e6d4faef-484c-4ce7-992c-906e05fc083e','ESRA MAT(K)','4915147016161','4915739434455','Almanya','WİEHL','51674','DAMTESTRASSE 26\n51674 WİEHL',21,2,110,'644484322','0','0',NULL,800,1,'1 PALET','2025-09-09 11:53:23.440','2025-09-30 06:44:44.065',NULL),
('c2f23e3e-f784-442b-86c5-a406b57dc08e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-05 11:09:58.917',5941,'47880255-08ee-4e99-940b-16038e07de55','MELEK ÇELİK','05050220385',NULL,'Hollanda',NULL,'8231','DE XCHANS 18 61 8231 KB LELYSTAD',2,1,100,'478675012','0','0',NULL,100,1,'KIRMIZI ETİKETLİ','2024-12-05 11:11:20.990','2024-12-20 14:35:12.849',NULL),
('c301b3d6-0b7c-4330-bda9-99b0f091d356','394112c3-f977-4fc2-b430-775e79e472ca','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-09 10:21:09.288',3962,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAİDATİ AHMED ','33745172654',NULL,'Fransa',NULL,'74250',NULL,8,2,130,'98274489','0','0',NULL,1300,1,'PEMBE ETİKETLİ','2025-01-09 10:24:14.392','2025-01-19 14:51:47.850',NULL),
('c301d58c-ecdd-45ca-85ce-fb5d8517c3be','eccfe611-9163-42aa-a1ff-e711af0248e6','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-16 09:16:01.794',2513,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED DALKARA','33652944838',NULL,'Fransa',NULL,'67200','39 RUE BASTIAN 67200 STRASBOURG FRANCE',15,4,120,'221646640','5','5','Sorunsuz ve eksiksiz bir şekilde ürünlerimi teslim aldım her şey için teşekkürler',1825,1,'açıkmavi','2025-06-16 09:19:17.476','2025-07-08 12:58:33.526',NULL),
('c30ef00f-b05c-4a82-a40c-4d69d5352e77','eccfe611-9163-42aa-a1ff-e711af0248e6','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-08-29 09:54:25.503',9123,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İNAN PALA','33660468423',NULL,'Fransa',NULL,'41500','3 RUE JACGUELİNE AURİOL 41500 FRASA',7,3,120,'221210071','0','0',NULL,1110,1,'MOR ETİKET','2025-08-29 09:57:12.741','2025-10-25 09:00:07.665',NULL),
('c3124b77-c71e-488a-b104-3d05e5b06ca6','8fff5e14-418c-4377-bd83-3a3f81383507','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-08 14:36:58.351',5069,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MANOLYA PELİN ERDOĞAN ÖZÇELİK','491784598984','4917680727235','Almanya','BERLİN','10117','SCHÜTZEN STRABE 53',17,5,110,'437649706','0','0',NULL,1120,1,'AÇIK MAVİ ETİKET ','2025-09-08 14:39:35.427','2025-10-02 11:12:19.040',NULL),
('c36d986a-edbc-4585-a361-c03d6d1c6a23','585b4575-ecea-4671-89b2-199f0605ed62','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-22 20:14:57.951',7051,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','MUSTAFA AZAMİ ','4917681126034','05388618969','Almanya','HANNOVER','30657','LERCHENSTİEG 9 , 30657 HANNOVER',3,2,110,'786668251','0','0',NULL,1532,1,'MOR ETİKETLİ','2025-04-22 20:16:45.174','2025-05-14 06:37:26.705',NULL),
('c372b398-b1ae-40ad-b0e3-91301cb6ee99','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-08 09:22:49.382',8319,'3c7190b6-f6ee-4275-8958-d7af952132ab','SÜMEYRA YARİM','4915735324307','4915735324307','Almanya','FLENSBURG','24938','PETER CHR HANSEN WEG 8 24938 FLENSBURG ALMANYA',0,5.5,110,'371381951','0','0',NULL,1500,1,'SARI ETİKETLİ','2025-05-08 09:25:13.781','2025-06-07 14:08:13.740',NULL),
('c39a4319-9662-48ba-9a56-fe67a5b7c830','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2024-12-26 13:20:50.205',2079,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MUSTAFA ÖZDEMİR','33764346588',NULL,'Fransa','FLEERS','61100','48 RUE ELİE FRECOUR ',0,1,120,'449197226','0','0',NULL,380,0,NULL,'2024-12-26 13:22:23.967','2025-01-10 08:19:37.142','2025-01-10 08:19:37.145'),
('c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-09-26 12:36:27.842',10197,'59868701-abe4-4705-a7e6-d91c2c69262e','UĞUR KOŞAR','4917614485668','4915780759908','Almanya',NULL,'21107','ZEİDLERSTRASSE 63, 21107 HAMBURG ALMANYA',0,3.5,110,'59884902','0','0',NULL,1500,0,'4.5 m3','2025-09-26 12:38:04.155','2025-10-23 12:08:05.377',NULL),
('c3afcfb5-df2f-44a8-901b-e521fd45aca2','313cc2e2-5529-49ab-abe5-27b5d390bc5f','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-17 12:11:53.203',6120,'6133a2db-79c4-4372-9338-505db46b1847','ISMAİL REMMO','4917681321777','4917680857659','Almanya','ESSEN','45147',' WİCKENBURGSTRASSE 30\n45147 ESSEN',1,2,110,'613813844','5','5','👍🏼',350,1,'GRİ ETİKETLİ','2025-07-17 12:15:57.897','2025-08-05 13:01:03.501',NULL),
('c3b1df03-16a7-42a0-95da-4e7553c79f24','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-10-31 14:21:14.570',8251,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Hilal yavuz ','11111111111',NULL,'Almanya',NULL,'111',NULL,0,2,100,'9823833','0','0',NULL,0,0,NULL,'2024-10-31 14:34:48.615','2024-11-04 13:36:20.625','2024-11-04 13:36:20.632'),
('c3b52580-dbc3-4db6-a1dc-f05f4c2cdf78','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-03-07 07:38:06.201',5075,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','?','1111111111',NULL,'Belçika',NULL,'111',NULL,0,2,0,'655216482','0','0',NULL,0,0,NULL,'2025-03-07 07:40:41.646','2025-03-08 13:38:16.131','2025-03-08 13:38:16.137'),
('c3ca0983-cc3b-4324-b93e-aa09860d88e6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:50:41.681',5741,'47880255-08ee-4e99-940b-16038e07de55','SADIK PALA','4917630150861','90491749145017','Almanya',NULL,'83512','WESSEMBURG AM İM INN',2,7,100,'478633498','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-10-23 08:52:43.571','2024-10-29 11:09:28.115',NULL),
('c3d3518b-3207-4e42-8927-efa33c951310','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-26 11:47:20.810',10739,'59868701-abe4-4705-a7e6-d91c2c69262e','AHMET GÜMÜŞ','491786733975','491791463784','Almanya',NULL,'12307','STEİN STR. 73E, 12307 BERLİN ALMANYA',19,4.5,110,'598387436','0','0',NULL,1250,0,'AÇIK KAHVE ETİKET','2025-09-26 11:54:25.708','2025-10-20 07:17:56.783',NULL),
('c3d6a144-9f64-4576-9ddc-760d75c937fc','eccfe611-9163-42aa-a1ff-e711af0248e6','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-24 12:28:46.943',2857,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HATİCE ÖZTÜRK','33652599311',NULL,'Fransa',NULL,'27400','9 RUE GASTON LAGAFFE 27400 LOUVİERS',0,3,120,'221621737','0','0',NULL,1020,1,'SARI ETİKET','2025-09-24 12:30:23.084','2025-10-10 21:30:25.670',NULL),
('c3f87bab-e7f6-4ef3-a7d1-ff7cab237666','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-24 07:58:37.309',1614,'3c7190b6-f6ee-4275-8958-d7af952132ab','DUYGU METE','4917661327084','4917661327084','Almanya','ARNBACH','75305','GRAFENHAUSERSTR 32 75305 ARNBACH ALMANYA',20,2,110,'371394707','0','0',NULL,650,1,'PEMBE ETİKETLİ','2025-04-24 08:00:08.511','2025-05-20 16:56:07.118',NULL),
('c41ca8d6-668a-4f0d-a4a0-76810c2ba3f4','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-30 14:25:36.643',9091,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','FİKRİ GÜNEŞ','33603221180','33633848541','Fransa','PERPİGNAN','66000','214 AVENUE MERECHAL ',0,2,110,'501724603','0','0',NULL,0,0,'','2024-09-30 14:29:44.768','2025-02-05 10:11:46.204','2025-02-05 10:11:46.210'),
('c43d1a62-fa97-4d61-9dce-df2c792a2403','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2024-11-08 09:05:43.242',7563,'47880255-08ee-4e99-940b-16038e07de55','dilaver  ulutaş','4915111667554','491624318595','Almanya','augsburg','86356','alte strabe 14a neusses',0,1,100,'478156531','0','0',NULL,1000,0,NULL,'2024-11-08 09:08:32.166','2024-11-12 17:10:40.671','2024-11-12 17:10:40.679'),
('c4474eef-8bc5-41c6-90ed-9545793a31cf','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-06 09:24:32.292',7537,'47880255-08ee-4e99-940b-16038e07de55','KEMAL ETKER','33668485580','33660990222','Fransa','LYON','69000','78 AVENUE JEAN MACE  DECİNES CHARPİEU LYON FRANSA',12,9,120,'478631020','0','0',NULL,2425,1,'TURUNCU-SARI ETİKETLİ','2025-01-06 09:36:44.007','2025-01-17 11:00:45.960',NULL),
('c44ad438-ca7d-42db-860f-ada68ed38828','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 08:02:07.500',5780,'47880255-08ee-4e99-940b-16038e07de55','NAHİDE BAHÇEÇİOĞLU','4915208440325',NULL,'Almanya',NULL,'48477','rodder strabe 19',7,5,100,'478127271','0','0',NULL,2000,1,NULL,'2024-03-12 08:11:35.354','2025-08-25 16:20:27.567',NULL),
('c454e08f-938d-43b3-ab45-998625e47a0f','8fff5e14-418c-4377-bd83-3a3f81383507','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','2025-05-26 09:27:22.142',8127,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ALPER ÖZDEMİR','4917621136198',NULL,'Almanya','BESİGHEİM','74354','NECKAR STR. 45, 74354 BESİGHEİM /ALMANYA',13,5,110,'437414847','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2025-05-26 09:33:41.249','2025-06-18 07:15:20.542',NULL),
('c48a406d-f6cc-43e5-ab64-0494c3458163','89428e9c-4d02-45c3-a044-0b2a5ac2465d','29868815-59a3-472d-968a-f687cc30c0d6','2025-02-28 12:03:12.098',10886,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','GÜLNAZ ATMACA','491632403021',NULL,'Almanya','BERLİN','12349','ALT-BUCKOW 56A',8,2,110,'976285905','0','0',NULL,1660,1,'MAVİ ETİKETLİ','2025-02-28 12:07:07.211','2025-04-04 17:24:25.020',NULL),
('c4d88b2f-4e3a-403a-9d13-fd71a089de4b','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-08-01 14:44:48.823',10943,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AYNUR KAPUCU','4915566264535',NULL,'Almanya',NULL,'41836','HÜCKELHOVEN 41836,PAPPELSTR 75',0,2,110,'22124580','0','0',NULL,750,0,NULL,'2025-08-01 14:46:21.879','2025-08-30 19:02:44.579','2025-08-30 19:02:44.578'),
('c4ed3c28-c51b-4246-86d1-a36f0aff591d','eccfe611-9163-42aa-a1ff-e711af0248e6','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-02-13 15:15:11.358',3173,'22a1dbd6-475c-4d4b-bb13-f459e3029634','RABİA NALKIRAN','41789431453','41765594658','İsviçre',NULL,'4147','AUF DEN FİECHTEN 6,4147 AESCH ',6,2.5,140,'221307786','0','0',NULL,1200,1,'GRİ ETİKETLİ','2025-02-13 15:17:47.756','2025-03-15 15:59:17.012',NULL),
('c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-22 07:07:27.264',7632,'59868701-abe4-4705-a7e6-d91c2c69262e','YASEMİN MUTLU','491735389289','491637771977','Almanya',NULL,'86456','BEİN EDİNGBERG 6A, GABLİNGEN 86456 ALMANYA',4,2,110,'598131456','0','0',NULL,425,1,'SARI ETİKET ','2025-09-22 07:10:08.420','2025-10-17 06:12:44.721',NULL),
('c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:45:38.344',9162,'73596a75-b658-4249-8c71-b0490654bc8b','HİEM OMAİRAT ','004915258770812',NULL,'Almanya',NULL,'28207','PFALZBURGER STR 22',5,1,0,'73597674','0','0',NULL,560,1,'PEMBE ETİKETLİ','2024-12-20 12:46:22.319','2025-01-11 09:47:11.464',NULL),
('c5474c30-8b56-4105-b623-902ebb690698','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-07-09 12:37:12.846',10108,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','NAZİF SUAT','491725363536353',NULL,'Almanya','KÖLN','50321','SKDHJYWRW',0,2,110,'808294576','0','0',NULL,1000,0,NULL,'2025-07-09 12:40:56.231','2025-07-17 13:00:31.832','2025-07-17 13:00:31.831'),
('c551c482-a643-4cab-b50a-a3615f511791','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-06 15:07:31.153',5952,'9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','Roa şerif','32487361121',NULL,'Belçika',NULL,'9050',NULL,3,1,110,'902159645','1','1','Ok ',0,0,'YEŞİL ETİKETLİ','2024-11-06 15:08:59.243','2024-11-16 21:51:53.716',NULL),
('c55504b4-7a7a-439e-8e37-908ee8343a67','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-13 10:19:02.784',1527,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Ajroski ajsun','4915758318201',NULL,'Almanya','Ravandburg','88213',NULL,11,5,140,'98285799','0','0',NULL,1800,1,'TURUNCU ETİKETLİ','2024-11-13 10:22:33.914','2024-12-14 08:24:23.415',NULL),
('c58ed249-aadb-4fee-8ca2-1d1eaccb25a3','eccfe611-9163-42aa-a1ff-e711af0248e6','acf5e984-44c0-4233-9521-0c373102472f','2024-12-10 12:19:43.145',8946,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MERVE KORKMAZYUREK','4915774874594',NULL,'Almanya',NULL,'70806','BOLZSTABE 134 70806 KORNWESTHEİM',13,2,100,'221511033','0','0',NULL,900,1,'PEMBE ETİKETLİ','2024-12-10 12:30:14.270','2024-12-21 08:19:24.219',NULL),
('c59d01dd-3504-4be3-8a37-b4203d620130','ab532050-8a54-4cb4-9e27-59229ab24a9b','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-16 09:36:31.191',8343,'338e8c09-4ca5-4617-bfc1-a0692646d475','GÜLCAN İNCE (SSH)','436607735988','436766833448','Avusturya',NULL,'6800','MUTTERSTRASSE 4 6800 FEELDKIRC',5,2,120,'338840422','0','0',NULL,0,0,NULL,'2025-06-16 09:39:27.944','2025-06-29 18:30:43.910',NULL),
('c59eccbb-857b-4cb5-a55a-2910b58b9fb9','05135cd5-2d33-4363-b51e-c9b83a94094d','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-09-01 06:47:41.886',5665,'4126da30-ba9b-41b7-be29-865069aa484c','CENGİZ WAGNER','4915901762821',NULL,'Almanya','MÜNCHEN','85551','BÜRGERMEİSTER-SCHUSTER-STR. 10F  85551 KİRCHHEİM BEİ MÜNCHEN ',22,2,0,'412968518','0','0',NULL,0,0,'PEMBE ETİKET','2025-09-01 06:53:29.216','2025-09-05 12:00:02.684',NULL),
('c5a6103b-c4bd-499a-9cdd-470aac948453','51b55e5b-7487-4d8a-923e-163f04d0b1d9','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-12 18:38:01.631',5409,'4126da30-ba9b-41b7-be29-865069aa484c','MUHAMMED KOKEN','1111111111111111',NULL,'Fransa',NULL,'25300','6 RUE DES FUVES ',18,2,0,'412555066','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-03-12 18:38:59.674','2025-03-20 18:08:27.302',NULL),
('c5ec9d69-bb2f-4aba-896d-c9e40c0158c4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-06-13 08:08:23.296',10548,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','HALİT ŞEN','491787541116','491776698040','Almanya','GERSENKİRCHEN','45892','CACİLİEN STR 42A',2,4.5,100,'614474485','1','1','12 haziranda alınan Kargo 16 temmuzda teslim edilirse. Puanınız yeterlidir.',1000,1,'MAVİ ETİKETLİ','2024-06-13 08:11:25.112','2024-07-18 07:35:41.701',NULL),
('c5edc3e5-cedf-4c8b-b863-1e65c68438c6','5c723cdc-e582-4b00-8271-838c085984c2','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-13 09:58:44.726',8611,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖZGÜR YILDIRIM','491748338255',NULL,'Almanya',NULL,'78199','HABSBURGER STR 18 78199 BRAUNLINGEN ALMANYA',13,3,105,'745302940','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-01-13 10:06:01.245','2025-01-30 10:57:03.703',NULL),
('c5ff309c-8bef-4c02-948a-d06e8823ca09','8fff5e14-418c-4377-bd83-3a3f81383507','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-25 07:27:52.140',3029,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ZEYNEP ŞİMŞEK','436608636840',NULL,'Avusturya','WİEN','1220','BERRESGASSE 11/3/34',16,5.5,120,'437442386','0','0',NULL,1100,1,'SARI ETİKET ','2025-08-25 07:30:18.493','2025-09-17 16:03:39.711',NULL),
('c6094b6b-2487-4a38-ba3f-93750f2a9130','8fff5e14-418c-4377-bd83-3a3f81383507','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-20 11:20:32.731',8813,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MEO JONATHON','33612326252','33617505236','Fransa','BOUC BEL AİR','13320','5 RUE FERNANDEL DOMAİNE SAN BAQUES',1,2,130,'437452475','0','0',NULL,400,1,'AÇIKMAVİ ETİKET','2025-08-20 11:24:53.650','2025-09-20 07:01:22.780',NULL),
('c62221b7-0c98-4cdc-8719-46cbd126b5d6','5c723cdc-e582-4b00-8271-838c085984c2','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-02 21:50:51.000',1928,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEMRA HAKAN KABİR','31640251699','31614671032','Hollanda',NULL,'2492','PLEVIERSINGEL 9 2492PR DEN HAAG HOLLANDA',8,2,120,'745409977','0','0',NULL,1650,1,'SARI ETİKETLİ','2025-04-21 09:51:21.667','2025-06-06 17:35:48.391',NULL),
('c660ccad-df7b-45ce-a388-95120ceea510','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-22 10:37:18.551',8871,'85834865-ac23-4c00-a99b-c9551971a5a1','ANTEP SOFRASI','32696805834',NULL,'Belçika',NULL,'3582','STATIONSTRAAT 35',15,3.5,110,'85814402','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-22 10:40:03.517','2024-12-04 13:09:40.381',NULL),
('c67fa905-f2ae-4d60-a3cb-8209edbe7b9c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-21 09:06:07.336',8040,'4126da30-ba9b-41b7-be29-865069aa484c','SEYFETTİN','4747473637373737',NULL,'Belçika',NULL,'9255',NULL,7,4,0,'412223405','0','0',NULL,420,0,'AÇIK YEŞİL ','2025-10-21 09:06:35.033','2025-10-22 13:07:04.647',NULL),
('c6a4b643-c681-400b-be0f-c368348b5bbd','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-25 11:19:15.641',4755,'59868701-abe4-4705-a7e6-d91c2c69262e','ROJDA BİNGÖL','4915773904587','4917640451459','Almanya',NULL,'24247','KİRCHENWEG 3, 24247 MİELKENDORF RENDSBURG ALMANYA',4,2,110,'598665171','0','0',NULL,775,1,'SARI ETİKETLİ','2025-07-25 11:25:38.463','2025-08-21 21:29:19.691',NULL),
('c6b7a352-13a1-47fb-acd7-9c5f9910f021','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-04 23:12:26.592',9893,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MERYEM BERK ','31686439941',NULL,'Hollanda',NULL,'3071','SPİEKMANSTRAAT 39 3071 RS ROTTERDAM ',7,2,120,'221583384','0','0',NULL,680,1,'KIRMIZI ETİKETLİ','2025-01-04 23:15:15.029','2025-02-10 14:16:03.738',NULL),
('c6ce0690-d0de-43de-9f1a-45fc7344f810','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-15 15:07:47.371',2716,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUKKADIN IBRAHIM','41768248382',NULL,'Almanya',NULL,'79713','LOCHMÜHLWEG 5,79713 BAD SACKİNGEN ',19,2,110,'221941793','0','0',NULL,600,1,'GRİ ETİKETLİ','2025-04-15 15:09:16.573','2025-05-02 17:08:29.291',NULL),
('c6e5fe36-4cb2-4837-b35f-93523014a3bd','eccfe611-9163-42aa-a1ff-e711af0248e6','8d3faf5e-e634-4068-8b6f-c99fd407ca66','2025-09-22 11:45:03.348',6150,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MOHAMED CHAMLALİ','4917621221122',NULL,'Almanya',NULL,'60529','AM RUHESTEİN 43, 60529 FRANFURT AM MAİN',4,2,110,'221920880','0','0',NULL,640,0,NULL,'2025-09-22 11:46:31.213','2025-10-09 08:39:54.291',NULL),
('c6f6261d-9af4-4463-9afd-4a26817ea19f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:29:03.621',5680,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEVİLAY BÖLER','33659806202','33673731044','Fransa',NULL,'57270','86 LOTISSEMENT LE CHAMP DU ROY',3,3,110,'745824914','0','0',NULL,1700,1,'MAVİ ETİKETLİ','2024-11-15 16:31:08.697','2024-12-01 12:28:46.193',NULL),
('c6f81384-e23c-4402-bb79-8669bf5eecbe','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 08:57:44.310',6424,'73596a75-b658-4249-8c71-b0490654bc8b','ÖZGÜL KONAKÇI','00491633905186',NULL,'Almanya',NULL,'46485','AN DER STADTGARTNEREİ 6',12,1,0,'735326602','0','0',NULL,800,1,'YEŞİL ETİKETLİ','2024-12-07 08:58:40.417','2024-12-19 09:32:41.125',NULL),
('c6fa0579-ce0b-4e00-9570-999b5950c155','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-03-17 09:11:29.134',6126,'338e8c09-4ca5-4617-bfc1-a0692646d475','MESUT OLGUN ','33651098791','33660921779','Fransa',NULL,'06510','1180 ROUTE DE LA BARONNE 06510 GATTIERES',0,2.5,130,'338387774','0','0',NULL,0,0,NULL,'2025-03-17 09:12:55.329','2025-04-11 12:59:33.504','2025-04-11 12:59:33.507'),
('c7236957-4e70-458b-8d5d-c7a04c012262','1764a07b-eb47-4578-b6cd-f3c0d0e743be','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-04 07:56:03.638',3743,'47880255-08ee-4e99-940b-16038e07de55','MÜCAHİT SÖYLEMEZ','491783919050','491634722211','Almanya','PORCHİM','19370','PUTLİTZER STRABE 1  19370 PORCHİM ALMANYA',13,2,105,'47842524','0','0',NULL,0,0,'BU ADRESDEN ÜRÜN ALINACAK BEYAZ ETİKETLİ','2025-07-04 07:57:26.433','2025-07-24 18:01:00.406',NULL),
('c72f9eca-340a-48f9-96f6-3dbf8cc7fa30','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-09 11:19:14.826',2082,'3c7190b6-f6ee-4275-8958-d7af952132ab','İLAYDA GÜNEŞ','491741928164','491741928164','Almanya','OBERSULM','74182','UHLANDSTRABE 3 74182 OBERSULM ALMANYA',27,5.5,110,'371528044','0','0',NULL,2090,1,'TURUNCU ETİKETLİ','2025-05-09 11:22:52.391','2025-05-19 20:26:41.211',NULL),
('c72ffa02-90ea-47e9-8464-e38059961b11','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-29 08:24:20.489',2517,'a42d8839-caef-4422-888f-cbfdf4188c5b','ALİ AYDIN','31651912496',NULL,'Hollanda',NULL,'7231','LAGEWEİDE 13 7231NN WARNSVELD HOLLANDA',0,4.5,120,'428391947','0','0',NULL,500,1,'MOR ETİKET ','2025-09-29 08:31:25.258','2025-10-16 15:47:14.752',NULL),
('c7380dcb-b5b3-458a-9219-53fdb3531629','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-21 09:10:40.944',4364,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALİ CAN YILMAZ','436606319101','436606319101','Avusturya','LUSTENAU','6890','RATHAUSSTRASSE 16 6890 LUSTENAU AVUSTURYA',18,4,140,'371102325','0','0',NULL,825,1,'SARI ETİKETLİ','2025-03-21 09:13:44.175','2025-04-23 08:12:45.151',NULL),
('c7437d40-e0c9-4b48-8f95-ce739b84fcfc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2024-12-24 12:40:56.206',3168,'c20e39e0-b2f7-4f7d-9393-8729cad35ae4','KEVIN PAROIS','33652381202',NULL,'Fransa',NULL,'56190',NULL,21,15.5,130,'20390821','0','0',NULL,0,0,'TURUNCU ETİKETLİ-POSTA KODUNDA YANLIŞ VERİLMİŞ SONDAN 2. Adres','2024-12-24 12:43:00.153','2025-02-15 16:08:58.971',NULL),
('c75ecccb-cdd2-4eca-b15e-6750a3df26e6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:27:11.255',2336,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İLYAS KAHRİMAN','491728626727','491638627978','Almanya','LUSWİGSBURG','71636','OSTERHOLZALLEE 94',6,1,100,'745799900','5','5','Herşey için çok teşekkür ederiz km’lerce uzaklıkta sizlere güvenip kat kat karşılığını verdiniz ilgi alakanızdan dolayı minnattarız istediğimizdende kat kat rengi modeli yüksekliği güzel bol kazançlar dileriz …',740,1,'YEŞİL ETİKETLİ YATAK BAŞKASI ALCAK','2024-08-07 14:29:05.141','2024-08-15 23:12:35.425',NULL),
('c76998eb-67dd-4f0b-bee2-f2c6820bdcce','8fff5e14-418c-4377-bd83-3a3f81383507','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-17 11:42:44.467',10892,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ISRA ISKENDER','491632213386',NULL,'Almanya','BOCHUM','44866','HAGEN STR 11',15,2,110,'43736182','0','0',NULL,725,1,'PEMBE ETİKETLİ','2025-03-17 11:43:51.674','2025-04-07 17:30:01.512',NULL),
('c76c212f-c2f8-492d-9608-3c99a318c621','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-08-29 13:17:07.431',3035,'4126da30-ba9b-41b7-be29-865069aa484c','(CANSHOME) ALİ GALİP DUMAN','31640599400',NULL,'Hollanda',NULL,'3122','BART VERHALLENPLEİN 49 3122 TC SCHİEDAM HOLLANDA',0,2,0,'412383524','0','0',NULL,1200,0,NULL,'2025-08-29 13:22:01.915','2025-09-01 13:41:35.414','2025-09-01 13:41:35.413'),
('c77c75ce-e3d2-47ae-8608-121fa3b3621d','eccfe611-9163-42aa-a1ff-e711af0248e6','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-23 07:17:28.201',3519,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İBRAHİM AKIN ','33786300110',NULL,'Fransa',NULL,'67116','1 RUE DES MARGUERİTES 67116 REİCHSTETTE',2,3.5,120,'221594735','0','0',NULL,1100,1,'GRİ ETİKET ','2025-08-23 07:19:51.491','2025-09-20 19:00:18.891',NULL),
('c7858430-6187-438e-9e7e-600528fb9aeb','313cc2e2-5529-49ab-abe5-27b5d390bc5f','2a352437-950c-42a9-9135-55482cf3977c','2025-07-29 19:27:25.857',4827,'6133a2db-79c4-4372-9338-505db46b1847','VLORİNA BERİSHA','410786081031','410791284387','İsviçre','BASEL','4058','4058 BASEL ROSENGARTENWEG 2B',3,2,140,'613378961','0','0',NULL,460,1,'MOR ETİKET (460 CHF alınacaktır)','2025-07-29 19:32:19.728','2025-09-04 09:38:56.910',NULL),
('c79902d9-089e-44e4-a536-9307c5bef39d','0fb40286-423b-44d0-bc48-6fccd2053a67','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-08-27 10:43:05.646',9092,'8426da95-71ca-4ae9-bea1-1e7259d72f62','HATUN ŞİMŞEK','33662539381','05357772672','Fransa','PROVİNS','77160','8 RUE DU BOURG NEUF 77160 PROVİNS',0,2,120,'842151692','0','0',NULL,350,1,'TURUNCU ETİKET','2025-08-27 10:52:18.382','2025-10-25 09:00:46.788',NULL),
('c7aca399-e42c-4cf3-aaff-22648818fcfc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:09:58.791',7992,'73596a75-b658-4249-8c71-b0490654bc8b','İLDA TOKOVİÇ','004915906397569',NULL,'Almanya',NULL,'80469','ISARTAL STR 33',24,1,0,'735520226','0','0',NULL,693,1,'GRİ ETİKETLİ','2024-12-07 09:10:45.398','2024-12-17 19:52:32.750',NULL),
('c7da4efa-976f-41bb-a365-004594890133','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-27 14:27:05.240',10394,'3c7190b6-f6ee-4275-8958-d7af952132ab','CANDAN ÖZDEMİR','4917622920602','4917622920602','Almanya','STUTGART','71067','SOMMERHOFENSTRASSE 209 71067 SİNDELFİNGEN STUTGART ALMANYA',21,5.5,110,'371251508','0','0',NULL,1550,1,'MAVİ RENK ','2025-06-27 14:31:52.065','2025-07-26 21:25:13.568',NULL),
('c7dadeb7-44b2-4e53-8201-7e81393192a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-08-31 12:51:34.326',4729,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','AFERDİTA UKSHİNAS','41798807630','41765582020','İsviçre','BERN','3176','WASSSEERMATTWEG 36',4,1,140,'31912550','0','0',NULL,250,1,'GRİ ETİKETLİ MİNİVANDA','2024-08-31 12:54:06.155','2024-09-07 15:54:00.265',NULL),
('c7df4577-2554-4909-9abc-5a62fa7bafc7','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-18 13:10:39.680',10183,'e6d4faef-484c-4ce7-992c-906e05fc083e','CİHAN TOKAY(K)','05417912611','05394752647','Almanya','MÜNCHEN','81539','SCHLİERSEESTR 77',7,7,110,'644407379','0','0',NULL,0,0,'GRİ ETİKET ','2025-09-18 13:21:26.137','2025-10-16 08:43:39.292',NULL),
('c7e797cf-e784-4ba3-bf54-33ba82cd024b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2024-12-24 07:59:30.485',10575,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','YILMAZ KARA ','41788884872',NULL,'İsviçre',NULL,'2300','AVENUR LEOPOLD ROBERT 13',5,7.5,140,'31922563','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-12-24 08:04:22.883','2025-03-15 15:59:20.665',NULL),
('c7effd94-7a9b-48a7-aa10-5ff2f31371f4','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-26 17:29:16.553',3060,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','TUBA BALTA','4917621293199',NULL,'Almanya',NULL,'41239','PONGSE STR.236\nMÖNCHENGLADBACH',15,2,110,'675902808','0','0',NULL,700,1,'AÇIKMAVİ ETİKETLİ','2025-05-26 17:41:15.085','2025-06-05 12:39:39.710',NULL),
('c82a223e-bb39-4f90-9da3-ee3e7be1f915','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','9e06441c-1bec-4f47-847f-83bea94f8369','2025-09-03 08:40:21.194',1758,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','CEM TOPYÜREK','41793101768',NULL,'İsviçre','MELS','8887','C +L TOPYÜREK IM STOFFEL 37 8887 MELS',10,2,140,'531870941','0','0',NULL,0,0,'TURUNCU ETİKET','2025-09-03 08:43:47.290','2025-09-17 17:51:20.672',NULL),
('c82f6276-7135-4de6-87f0-112f5bbfaf90','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-22 07:47:03.610',6215,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ZELİHA KILGI','491714996995','491723225231','Almanya',NULL,'83646','AM MENFREDHOF 12 83646 BAD TOLZ ALMANYA',0,2,105,'745557977','0','0',NULL,300,0,NULL,'2025-10-22 07:48:13.275','2025-10-23 09:57:55.908',NULL),
('c83b1650-e8ef-42b8-bd59-85142002c440','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-14 08:40:53.163',9609,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','DRANCY MEUBLE','33695741200',NULL,'Fransa',NULL,'93700',NULL,1,2,120,'268443203','0','0',NULL,0,0,'KIRMIZI ETİKET','2025-08-14 08:45:45.368','2025-09-01 16:57:30.127',NULL),
('c8425d91-016d-4937-970a-ecc46c5126d7','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-04-08 07:36:07.751',10567,'59868701-abe4-4705-a7e6-d91c2c69262e','METE AKGÜL','491729283228','4915204888981','Almanya',NULL,'66333','VİKTORİASTRABE 20A, 66333 VÖLKLİNGEN ALMANYA',0,3.5,110,'598138099','0','0',NULL,475,0,'6 parça, 2 m3','2025-04-08 07:40:33.150','2025-04-18 14:49:55.592','2025-04-18 14:49:55.595'),
('c85f0d3f-5c69-47d4-9b44-822058d763b2','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-29 07:46:31.546',10177,'e6d4faef-484c-4ce7-992c-906e05fc083e','TEVFİK KÜÇÜK','905315907031','32487280627','Belçika','OOSTAKKER','9041','DRİESSELSTRAAT 6',4,3,120,'644513470','0','0',NULL,1000,1,'GRİ ETİKET ','2025-08-29 07:47:59.440','2025-09-10 17:04:31.773',NULL),
('c86b331f-7141-49b9-b684-a2a68daaa635','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 13:47:55.306',9231,'85834865-ac23-4c00-a99b-c9551971a5a1','LÖWİK WONEN','11111111111111',NULL,'Hollanda',NULL,'7463','BUTAANSTRAAT 12',1,3,110,'858365882','0','0',NULL,0,0,'MAVİ ETİKETLİ','2024-11-23 14:05:31.898','2024-12-06 10:08:46.951',NULL),
('c8832652-771d-469e-b661-4fd13d628789','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:51:52.751',10154,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SELİNAY ORHAN','491632101189','4917684018597','Almanya',NULL,'65620','WALDBRUYNN WESTERWALD',13,6.5,100,'745398311','0','0',NULL,4025,1,'TURUNCU ETİKETLİ','2024-12-28 14:53:00.334','2025-01-06 20:09:43.908',NULL),
('c885ca27-2244-4162-b7af-4fe67daf7fd3','56e5168e-cbcf-408d-8798-5560be5c7235','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-23 08:30:58.241',8584,'7bb6a552-e940-4456-bfc3-50a13013996c','YOZLEM MİNCHEVA','491622496871',NULL,'Almanya','LANGENLONSHEİM','55450','OBERE GRABEN STR. 11A\n55450 LANGENLONSHEİM\nALMANYA',17,6.5,110,'765564339','0','0',NULL,650,1,'TURUNCU ETİKET','2025-09-23 08:34:38.605','2025-10-14 09:35:39.190',NULL),
('c88d3746-2810-43c1-8ec1-df087223feec','f784b688-ba6b-4886-87dd-fe4cfbed85b4','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-19 07:58:03.870',1260,'dea91080-5383-4085-af2e-7eace2c64224','NURAN YILDIRIM','4917661925156','4915770884048','Almanya',NULL,'64289','BARTNİNG STR 66 64289 DARMSTADT',22,4,110,'910561299','0','0',NULL,600,1,'GRİ ETİKET','2025-08-19 07:59:38.973','2025-09-04 21:05:05.202',NULL),
('c895ea94-60a8-412e-8679-dd76f5821b5e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-08-29 12:39:53.831',2226,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','YUSUF KAYA','4917624748581','','Almanya','MÜNCHEN','80992','IN DEN KİRSCHEN 53',0,6.5,100,'655200069','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-08-29 12:41:39.981','2024-09-12 10:53:41.136',NULL),
('c8b96623-e586-496c-849d-fbff1ec7f11d','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-18 08:38:28.395',4795,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','VEDAT ÜZER ','33774908152',NULL,'Fransa',NULL,'13014',NULL,5,2,140,'982342488','0','0',NULL,1500,1,'KIRMIZI ETİKETLİ','2025-02-18 08:39:35.260','2025-03-04 15:38:06.964',NULL),
('c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-19 12:15:54.869',8217,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','BURCU ŞİMŞEK','49176624400247','4917661664279','Almanya','DUISBURG','47249','EFEUSTR. 23, 47249 DUİSBURG',15,5,110,'12752907','0','0',NULL,1500,1,'YEŞİL ETİKETLİ','2025-01-19 13:44:41.439','2025-02-08 15:04:33.502',NULL),
('c8ca048a-bc13-4ec3-9715-2f7645615c63','1764a07b-eb47-4578-b6cd-f3c0d0e743be','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-19 11:10:28.005',6650,'47880255-08ee-4e99-940b-16038e07de55','BEKİR DOĞAN ','43699171115387','436608311197','Avusturya','VİENNA','1100','FAVORİTEN STRASSE 169/17-18 1100 VİENNA AUSTURİA',21,2,140,'478168461','5','5','teslimatimiz cok güzel bi sekilde elimize ulasti.',600,1,'TURUNCU ETİKETLİ','2025-03-19 11:13:52.988','2025-04-02 18:57:10.886',NULL),
('c8cb8a48-a710-4ed9-befe-c11c81f0f7df','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 11:03:55.635',7755,'a42d8839-caef-4422-888f-cbfdf4188c5b','KÖKSAL ÇELİK','4917656562784','4915144166539','Almanya','EHİNGEN','89584','ALFRED DELP STRABE 3',4,1,100,'42844174','0','0',NULL,0,0,'SARI ETİKETLİ ÖNDE','2024-07-20 11:06:21.931','2024-07-27 08:40:50.353',NULL),
('c8d1b4d4-fafa-4eca-9c51-b7057479fd17','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-11 08:25:39.348',4285,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','ORHAN KURT','491778777755',NULL,'Almanya','EWALD REUZ STR 15','76669','EWALD REUZ STR 15 76669 BAD SCHÖNBORN',17,7,110,'817578021','0','0',NULL,950,1,'AÇIK KAHVE ','2025-09-11 08:27:51.528','2025-09-30 07:39:25.872',NULL),
('c8f99487-f21d-467c-9282-047182f5edbf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52c02271-6eae-4be1-a572-d97f124d470a','2024-06-14 09:18:45.093',8246,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SARAH KUSLU','33652707979','33695163473','Fransa','SAİNT ETİENNE','42100','59AVENUE DU PİLAT',2,1,0,'745502887','0','0',NULL,0,0,'','2024-06-14 09:20:30.209','2024-06-25 14:26:35.042',NULL),
('c8fa1083-9353-41f0-b64e-ae362fb9dad3','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2024-12-20 07:41:13.850',3588,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP ','491628157309','4917623201470','Almanya','NÜRTİNGEN','72622 ','HOLBEİN STR 31 /72622   NÜRTİNGEN /ALMANYA',0,1,100,'614927187','0','0',NULL,0,0,NULL,'2024-12-20 07:59:57.016','2024-12-27 09:08:11.871','2024-12-27 09:08:11.874'),
('c8ffd3f2-c426-4b6c-9439-664479653971','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-01 10:33:15.628',6739,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','SİNEM GÖKÇE','4917670630570',NULL,'Almanya','BORGFELDE','22869','BORGFELDE 38\n22869 SCHENEFELD\nDEUTSCHLAND',8,3.5,110,'531340061','0','0',NULL,1100,1,'PEMBE ETİKETLİ','2025-07-01 10:35:17.130','2025-07-25 18:05:01.480',NULL),
('c90194bc-97cc-4374-adc9-37c98a4f48c9','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-10-23 07:14:20.983',10216,'e6d4faef-484c-4ce7-992c-906e05fc083e','EDA GEÇİLİ','01721572929','01728942681','Almanya','ZİMMERN','64846','REİNHEİMERSTRASSE 79',0,5.5,110,'644726352','0','0',NULL,1250,0,NULL,'2025-10-23 07:21:31.157','2025-10-27 13:20:35.736',NULL),
('c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:52:36.065',2725,'4126da30-ba9b-41b7-be29-865069aa484c','Murat Trendyol home','31625064385','','Hollanda','Best','5684','De Wallet 2e',10,10,70,'41245861','0','0',NULL,0,0,'Taç yazılı koliler','2024-04-07 20:55:21.319','2024-05-02 19:56:42.327',NULL),
('c90b2d7e-0b7d-4a03-b820-37ab49d6ef31','394112c3-f977-4fc2-b430-775e79e472ca','2a352437-950c-42a9-9135-55482cf3977c','2025-08-11 18:17:51.504',5511,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','HASAN ÇALIK ','436609069660',NULL,'Avusturya',NULL,'9433',NULL,12,5,140,'982720250','0','0',NULL,1500,1,'SARI ETİKET','2025-08-11 18:19:01.279','2025-08-21 08:14:02.400',NULL),
('c928edbb-a731-4b55-bdfb-3f68dedd72df','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 11:06:25.003',5789,'a42d8839-caef-4422-888f-cbfdf4188c5b','SEFA TÜZER','4915252595049','','Almanya','INGOLSTADT','85057','EWALD KLUGE STRABE 4',3,1,100,'428879207','5','5','Şoför çok nezaketliydi ve zamanında getirdi. Sadece bir karışıklık olmuş ancak çözüldü',0,0,'AÇIK MAVİ ETİKETLİ ÖNDE','2024-07-20 11:08:05.357','2024-07-27 08:52:21.814',NULL),
('c930eade-75ea-4464-a6c5-445be1fb2f29','8fff5e14-418c-4377-bd83-3a3f81383507','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-16 08:42:06.627',1827,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SEMİH CENGİZ','4915141934259',NULL,'Almanya','SELB','95100','SEDAN STR. 26 , 95100 SELB/ALMANYA',18,6,110,'437551575','0','0',NULL,1800,1,'KIRMIZI ETİKETLİ','2025-06-16 08:44:26.086','2025-07-23 06:46:25.847',NULL),
('c95c986d-eb32-413d-a7af-cbc9b9db9e6b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','acf5e984-44c0-4233-9521-0c373102472f','2024-12-04 15:41:33.688',4980,'47880255-08ee-4e99-940b-16038e07de55','YASEF İCEL','33642608703','33607954368','Fransa','KALTONHAUSE','67240','3 RUE ROSENFELD ',9,6.5,110,'47865598','5','5','Serhat 10 numara 👍🏼',2400,1,'SARI ETİKETLİ','2024-12-04 15:44:03.748','2024-12-21 23:33:49.377',NULL),
('c96401de-d2bb-42c4-b232-62e5a3c21b42','1764a07b-eb47-4578-b6cd-f3c0d0e743be','7bd09245-c179-4127-b0e1-46737615122b','2025-07-30 08:18:39.139',3545,'47880255-08ee-4e99-940b-16038e07de55','SELDA ÇELİK','31631024825','31644144080','Hollanda','BADHOEVEDORP','1171','PROF JOHAMAWESTERDİJK 1171 BADHOEVEDORP HOLLANDA',5,7,120,'478777541','0','0',NULL,2000,1,'MAVİ ETİKET','2025-07-30 08:28:56.977','2025-08-21 06:44:20.213',NULL),
('c9a45f03-14c0-495d-832e-276189a2a69b','173956a2-c232-495a-b036-4a6a36c073e2','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-11 18:42:34.405',4144,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MEHMET EMİN KARAGÜZEL','4917680448730','4917680448730','Almanya',NULL,'38226','SALDERSCHE STRASSE 43\n38226 SALZGİTTER',8,2,110,'449704156','0','0',NULL,0,0,'BEJ RENK ETİKETLİ','2025-02-11 18:44:18.716','2025-03-21 17:17:29.974',NULL),
('c9aeac07-5c87-4e65-8ab9-93e191b865ea','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c6a1c9e-fad3-44d2-8812-5ebe40baad05','2024-05-11 08:37:44.658',3886,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET ','4920350083648','','Almanya','DUİSBURG','47167','THEODOR HEUSS STRABE 60',3,6.5,100,'223631242','0','0',NULL,0,0,'GRİ ETİKETLİ KOLİ','2024-05-11 08:40:24.881','2024-05-23 11:42:38.765',NULL),
('c9bfdd67-9310-4f2a-9ce9-8d28690b4937','51b55e5b-7487-4d8a-923e-163f04d0b1d9','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-24 13:54:55.440',2756,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT','31625064385',NULL,'Hollanda',NULL,'5684',NULL,11,7,0,'412586892','0','0',NULL,920,1,'TAÇ YAZILI KUTULAR','2025-01-24 13:57:20.469','2025-02-08 15:04:54.364',NULL),
('c9db2c84-8a43-43ee-8421-833b9835be84','51b55e5b-7487-4d8a-923e-163f04d0b1d9','66307a01-d585-4127-903b-18748421c29e','2025-04-25 08:12:00.296',9423,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','TUNCAY KOÇOĞLU','491773713548',NULL,'Almanya',NULL,'13369','SOLDİNER STR 84',4,2,110,'465782662','0','0',NULL,0,0,'SARI ETİKETLİ','2025-04-25 08:12:41.352','2025-05-10 20:12:34.676',NULL),
('ca108024-5dae-4885-b583-30c8f69c510c','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-22 11:34:17.144',10204,'47880255-08ee-4e99-940b-16038e07de55','MUHAMMET ALTUNKAYA','491735713527','4915759307313','Almanya','NEUNKİRCHEN','57290','KONTSTRABE1  57290 NEUNKİRCHEN ALMANYA',21,2,105,'478681042','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-04-22 11:36:11.278','2025-04-30 14:30:34.365',NULL),
('ca7f278f-ad79-4c38-a185-b73739ed8248','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 09:57:11.908',9963,'b734c482-3c00-4897-ad35-bc358cd02d56','KADİR SERZAN','033749929034','','Fransa','AVİNGON','84200','',19,3,100,'734889822','0','0',NULL,300,1,'SARI ETİKETLİ','2024-05-04 09:58:55.106','2024-05-23 08:25:12.230',NULL),
('ca8bc896-5c58-4355-a8a8-a80a250e2558','bf6f92ba-eef7-4290-902d-b1bac86244bb','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-04 13:00:30.667',4734,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','TEKİN MAZLUM','33603127893','33979359707','Fransa',NULL,'95400','2 RUE GUYNEMER 95400 VİLLİERS LE BEL',2,7,110,'501872546','0','0',NULL,2500,1,'YEŞİL ETİKETLİ','2024-12-04 13:01:39.761','2025-01-13 07:50:58.956',NULL),
('ca923043-bfdc-4e29-9cf4-8669f6d1b498','5c723cdc-e582-4b00-8271-838c085984c2','2c596345-3f37-4571-9d62-83b8b96993d4','2025-07-02 15:37:20.269',10163,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HALİDE ÖZAY','33768910967',NULL,'Fransa',NULL,'57740','58C RUE DU BOULAY 57740 LONGEVİLLE LES SAINT AVOLD FRANCE',10,4,130,'745208965','0','0',NULL,1900,1,'YEŞİL ETİKET','2025-07-02 15:38:19.141','2025-09-06 07:19:38.252',NULL),
('ca97344f-8f56-4954-b65a-e497b3d804a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 13:01:45.082',8732,'73596a75-b658-4249-8c71-b0490654bc8b','HANAN ALİKHAN','004917621208041',NULL,'Almanya',NULL,'31226','HİNRİCH WİLHELM KOPF STR',13,1,0,'73529249','0','0',NULL,1200,1,'MOR ETİKETLİ','2024-12-20 13:02:37.418','2025-01-09 13:53:26.326',NULL),
('caa25f56-3e3b-4a02-995e-9956a9ae987a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-10-03 12:14:39.529',1764,'4126da30-ba9b-41b7-be29-865069aa484c','LEMAN TUNCER','436769600864','436766642937','Avusturya','AUSSERDORF','6252','AUSSERDORF 90/2BREİTENBAC AM INN 6252 AVUSTURYA',8,2,0,'412467921','5','5','Biraz gecikti ☺️',750,1,'AÇIK KAHVE ETİKET ','2025-10-03 12:18:36.539','2025-10-16 08:52:57.096',NULL),
('cb056a55-a6b8-4c14-a22a-7b912e9e91c2','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 11:52:00.248',2581,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ABDIL HAPLE ','31681294443',NULL,'Hollanda',NULL,'2131','GRAFTERMEER STRAAT 29A',5,1,0,'248955969','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-11-21 12:00:02.626','2024-12-05 16:18:24.624',NULL),
('cb15c1ae-0f66-4f47-875b-dcc051ecb1cb','1764a07b-eb47-4578-b6cd-f3c0d0e743be','acf5e984-44c0-4233-9521-0c373102472f','2024-12-04 15:44:06.425',7890,'47880255-08ee-4e99-940b-16038e07de55','SULTAN GÖR','33771550561','33750583147','Fransa','LA BASSEE','59480','13 RUE GENEREAL LECLERC 59480 LA BASSEE FRANCE',3,10,110,'478212601','5','5','👍',4000,1,'TURUNCU ETİKETLİ','2024-12-04 15:45:59.363','2024-12-24 12:32:00.324',NULL),
('cb3442f8-0b1a-4b4f-8d8c-fefae675f848','51b55e5b-7487-4d8a-923e-163f04d0b1d9','decb3b76-796f-4a09-b900-664277387267','2024-07-02 08:13:19.789',7612,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ASAAD KEBBEH','049015778795333','','Almanya','MALSCH','76316','BLUMEN STR 34',4,1,0,'248418017','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-07-02 08:15:22.030','2024-07-16 05:12:05.214',NULL),
('cb3c3900-b517-4430-a11a-2f2b7755d652','1764a07b-eb47-4578-b6cd-f3c0d0e743be','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-22 07:24:51.663',10424,'47880255-08ee-4e99-940b-16038e07de55','BERİVAN TİNTAŞ','4915773537388','491734654065','Almanya','KİRCHEİM','73230','SAGEMUHLENWEG3  73230 KİRCHEİM UNTERTECK ALMANYA',26,3,105,'478994871','0','0',NULL,2000,1,'MAVİ ETİKETLİ','2025-04-22 07:27:57.778','2025-05-10 20:13:24.404',NULL),
('cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-06 10:24:19.868',1480,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','ALİM BAŞ','4917624766377','491764697733','Almanya',NULL,'85290',NULL,7,2,100,'50156405','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-11-06 10:26:51.037','2024-11-16 21:16:02.800',NULL),
('cb769911-52cc-47a5-acef-a1d0863d2253','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:33:22.300',7779,'b734c482-3c00-4897-ad35-bc358cd02d56','METİN POLAT','','','Fransa','OYONNAX','01100','78 B RUE CASTELLİON',5,2,96,'734499902','0','0',NULL,545,1,'SARI ETİKETLİ','2024-03-16 08:35:03.894','2024-03-26 16:08:52.649',NULL),
('cb8ab28e-84c0-4246-b10d-ada59c224895','5c723cdc-e582-4b00-8271-838c085984c2','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-12 08:25:23.581',8488,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BURHAN AKMEŞE','436603227029','436602434621','Avusturya',NULL,'8010','HÜTTENBRENNGASSE 45 8010 GRAZ AUSTRIA ',9,7.5,140,'745761149','0','0',NULL,2250,1,'MOR ETİKETLİ','2025-05-12 08:33:31.593','2025-06-04 19:39:17.567',NULL),
('cba51d7d-e0e2-4e21-acf0-8699ede8b4b3','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 08:21:31.842',2408,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','DEMET HANIM','31638631333',NULL,'Hollanda','DEN HAAG','2543',NULL,9,2,120,'657640918','0','0',NULL,350,1,NULL,'2025-05-13 08:22:52.759','2025-06-06 17:34:59.179',NULL),
('cbc66089-3787-46c8-9770-6e95da20fddd','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','66307a01-d585-4127-903b-18748421c29e','2025-04-21 07:31:03.197',7410,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','BURAK SOYSAL','4917624125549',NULL,'Almanya','INGOLSLADDT','85049','SANDDARNSTR 14 85049 INGOLSLADDT\\ GEROLFİNG',13,3,110,'817893403','0','0',NULL,900,1,'AÇIK MAVİ ETİKETLİ','2025-04-21 07:33:51.661','2025-05-06 11:25:38.562',NULL),
('cbed5de9-ec7b-4304-94aa-2149a3ee9549','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-09-03 15:24:18.074',10409,'223e2487-81b9-4d78-968c-522e914203d0','ÖZKAN ALTUN','33658093635','33664098432','Fransa','COUERON','44220','39 BOULEVARD DE IOCEAN',6,1,0,'223867751','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-09-03 15:27:52.825','2024-09-15 23:12:06.204',NULL),
('cc203893-33b0-4595-9231-86901a0a9cf9','eccfe611-9163-42aa-a1ff-e711af0248e6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-27 12:06:10.622',6134,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ANİL ZAMUR ','33667410242',NULL,'Fransa',NULL,'94430','17 RUE MOLİERE 94430 CHENNEVİERES MARNE ',8,2.5,120,'221204525','0','0',NULL,900,1,'YEŞİL ETİKET ','2025-08-27 12:08:08.330','2025-10-03 10:12:10.833',NULL),
('cc35ba49-88e8-4dfb-96a9-b8e77e535bd8','8fff5e14-418c-4377-bd83-3a3f81383507','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-13 09:08:11.012',4025,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','METİN EROL','436603002938',NULL,'Avusturya','LUSTENAU','6890','SCHÜTZENGERTEN STR 19 A',7,3,120,'437306380','0','0',NULL,570,1,'GRİ ETİKET','2025-08-13 09:11:13.708','2025-08-30 18:25:59.309',NULL),
('cc63967e-bae3-4a27-add9-5b4030bf2130','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 09:01:20.697',7375,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','DOMİNİK WİNK','41765655638','','İsviçre','UEKEN SCHWEİZ','5028','UNTERDORF STRASSE 8',4,3,140,'126649227','0','0',NULL,1000,1,'Açık mavi etiketli','2024-05-11 09:02:48.789','2024-05-29 11:18:15.877',NULL),
('cc716c12-75ab-49ae-8d32-bb1b4fd1d45e','313cc2e2-5529-49ab-abe5-27b5d390bc5f','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-03 09:07:14.785',5175,'6133a2db-79c4-4372-9338-505db46b1847','SUADA HAMZA ','436503555735',NULL,'Avusturya','GUNTRAMSDORF ','2353','JOHANN STRAUSS GASSE 20B \n2353 GUNTRAMSDORF ',15,2,120,'613990020','0','0',NULL,100,1,'Ssh (dikkat) (TURUNCU RENK)','2025-06-03 09:11:33.739','2025-07-24 10:25:38.177',NULL),
('cc8347aa-14af-4bef-ac88-92a4a5c8063b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-01 08:23:22.787',9152,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HASAN ULUSOY','33641568371','','Fransa','METZ','57150','18 RUE DES PLATANES ',8,9.5,110,'976819499','0','0',NULL,1000,1,'LİLA ETİKETLİ','2024-08-01 08:46:53.633','2024-08-16 04:44:27.910',NULL),
('cca3c1d2-572a-449d-9408-3e4d072a2fa5','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-02-18 09:46:42.787',7161,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','HÜLYA KURTULMUŞ','31644543108','31644543108','Hollanda','NEDERLAND','1171','1171 ZZ BADHOEVEDORP NEDERLAND/HOLLANDA',0,6,120,'127991361','0','0',NULL,1,0,NULL,'2025-02-18 10:01:56.211','2025-02-25 13:49:34.472','2025-02-25 13:49:34.475'),
('ccc401cf-30c4-419e-b8e5-7988457d3293','5c723cdc-e582-4b00-8271-838c085984c2','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-10 10:48:31.339',2436,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BERKANT YAŞA SSH ','4917645789684','4917672239456','Almanya',NULL,'76137','KARLSRUHE RÜPPURER STRABE 75 76137 ALMANYA',18,2,105,'745712790','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-07-10 10:49:27.470','2025-07-28 12:02:29.778',NULL),
('ccec7edf-babd-4962-8945-5f2cc49b04e9','394112c3-f977-4fc2-b430-775e79e472ca','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-14 11:31:28.344',1214,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AMİNA BOUDJENNAH ','330758076179',NULL,'Fransa',NULL,'93240',NULL,4,2,140,'982585914','0','0',NULL,600,1,'KIRMIZI ETİKETLİ','2025-02-14 11:32:30.623','2025-02-27 16:42:30.316',NULL),
('cd0fea75-fde8-4eaf-b371-382be73415aa','05135cd5-2d33-4363-b51e-c9b83a94094d','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-30 17:18:10.630',5782,'4126da30-ba9b-41b7-be29-865069aa484c','BERİVAN KÖKTEN','32484143474',NULL,'Belçika',NULL,'9240','OUDE KOUTERDREEF 59',11,2,0,'412550726','0','0',NULL,1075,1,'KIRMIZI','2025-06-30 18:29:21.437','2025-07-21 18:56:12.310',NULL),
('cd21e329-02ee-479d-aa79-d66d804db51d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-14 14:33:23.625',9702,'14e65a3f-31de-4ada-be77-7aceab16b52f','MOSTAFA RAZOUK','491628528011','','Almanya','LEİPZİG','04207','BRACKESTRABE 29',1,15,100,'146630568','0','0',NULL,2700,1,'SARI ETİKETLİ','2024-03-14 14:42:45.600','2024-04-02 16:08:39.593',NULL),
('cd2ecc94-5d9f-40d5-b067-7e35b5396b4b','8fff5e14-418c-4377-bd83-3a3f81383507','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-09 14:13:28.280',6861,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','DERYA ERDOĞMUŞ SSH','4915224134737',NULL,'Almanya','GLODBECK','45964','KAMP STR 91',9,2,110,'437527391','5','5','Teslimat ve ürünlerden memnun kaldım tşk ederim ',0,0,'BEYAZ ETİKET ','2025-09-09 14:15:15.444','2025-10-02 09:23:59.577',NULL),
('cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','4c4828d9-9707-439a-b671-bb6ed27bf116','2024-12-30 11:13:25.528',2081,'a42d8839-caef-4422-888f-cbfdf4188c5b','GÖKMEN GÖNÜLTAŞ','436764240748','4369910363377','Avusturya',NULL,'4890 ','MİTTERWEG 2 4890 FRANKENMARKT /OBEROESTERREİCH\n\n',0,5,140,'428754067','0','0',NULL,400,1,NULL,'2024-12-30 11:16:38.960','2025-01-15 10:30:26.528',NULL),
('cd3e8ade-ee0a-4141-9b8f-81a23c9c49af','51b55e5b-7487-4d8a-923e-163f04d0b1d9','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-19 15:07:38.348',2022,'f23142ef-47ba-426c-9a22-bfb123cfac47','LİBELLA FRİSEURBEDAR ','4917622528451',NULL,'Almanya',NULL,'10555','GOTZKOWSKY STRABE31',13,2,110,'231216092','0','0',NULL,1500,1,'MOR ETİKETLİ','2025-01-19 16:20:24.419','2025-01-28 20:44:59.603',NULL),
('cd45be95-bde1-4aa8-ba7b-b19b6cded292','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-29 13:26:56.740',6635,'73596a75-b658-4249-8c71-b0490654bc8b','NAVİD BEHBODY','004917621719741',NULL,'Almanya',NULL,'74072','KİRCHBRUNNEN STR 9',15,1,0,'735793543','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-11-29 13:28:05.933','2024-12-09 17:29:19.987',NULL),
('cd4de4f7-a394-47c7-89e2-dd9e57ec790d','ab532050-8a54-4cb4-9e27-59229ab24a9b','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2024-12-02 07:06:44.163',10538,'338e8c09-4ca5-4617-bfc1-a0692646d475','SEZER DOĞAN','33680380408','33636159677','Fransa','ORVAULT','44700','55 AVENUE DE LA CHOLİÈRE, APPARTEMENT 10 POSTA KODU: 44700 ORVAULT/FRANSA ',2,3,120,'338474620','0','0',NULL,250,1,'MOR ETİKETLİ','2024-12-02 07:12:48.312','2025-02-15 05:21:45.648',NULL),
('cd602635-5c4f-4c0e-bb1c-fccb24ae1cea','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-12 06:34:02.728',3552,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','YUSUF ÖZKULLUK','4915771101675','4915771101675','Almanya','HAMBURG','22527 ','WÖRDEMANNSWEG 70C 22527 HAMBURG',6,3,110,'808146332','0','0',NULL,1000,1,'25/09/2025 Tarihine Kadar Teslim Edilmesini Rica Ederim.','2025-09-12 06:35:31.156','2025-10-05 12:15:55.033',NULL),
('cdc7b5f1-b03d-4f6d-88a0-251d10e85884','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 09:02:53.215',1254,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','ALMİRA','41764307026','','İsviçre','BASEL SCHWEİZ','4056','SAİNT LOUİS STRASSE',7,1,140,'126229931','5','5','👏🏼 ',0,0,'Yeşil etiketli\nÖdeme yok','2024-05-11 09:04:28.079','2024-05-29 19:27:28.704',NULL),
('cde89988-42b8-4e80-ba9b-ea5aebd3b21d','eccfe611-9163-42aa-a1ff-e711af0248e6','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-24 14:12:07.260',1008,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ALİHAN ARATEKİN','436608524565',NULL,'Avusturya',NULL,'1100','HİNTSCHİGGASSE 5/1/5 1100 WİEN',18,2.5,140,'221322415','0','0',NULL,850,1,'SARI ETİKETLİ','2025-01-24 14:13:40.371','2025-02-21 17:08:52.720',NULL),
('cdef52e8-4b0b-4e11-8103-ad6f65f33ebe','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-21 15:37:39.896',1489,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH)','32470754918',NULL,'Belçika',NULL,'9300','LEDEBAAN 231,9300 AALST BRUXELLES ',13,2,120,'221561968','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-05-21 15:40:08.409','2025-06-06 17:34:29.771',NULL),
('ce35486e-7680-4c8d-aa21-e602d6ada6b1','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-08 09:16:49.385',8975,'3c7190b6-f6ee-4275-8958-d7af952132ab','JASMİNA YILMAZ','4917682051476','4917682051476','Almanya','AALEN BADEN WÜRTTEMBERG','73431','ATTE HEİDENHEİMERSTRABE 119 73431 AALEN BADEN WÜRTTEMBERG ALMANYA',29,2,110,'371785400','0','0',NULL,350,1,'PEMBE ETİKETLİ','2025-05-08 09:18:19.109','2025-05-19 20:26:32.652',NULL),
('ce4139db-5ecf-40b0-b163-b976a128b763','df0d8353-2caa-413c-9f14-b01af77df00b','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-23 17:19:16.925',10895,'d1ba1223-4475-415e-b63f-154a9404e56e','SALİM YILDIZ','41767113347',NULL,'Almanya',NULL,'1110','AVENUE DE LONAY 23',2,4,110,'112189439','0','0',NULL,0,0,'SARI ETİKETLİ','2025-05-23 17:28:40.395','2025-06-05 18:56:16.626',NULL),
('ce46c288-f229-4ec1-a778-6f45d324b302','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 08:03:13.272',2754,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ERGÜN AKSOY','4915150003211',NULL,'Almanya',NULL,'36124','BİBRASTRABE 4',30,2,110,'657147391','0','0',NULL,350,1,'PALET','2025-05-13 08:05:22.550','2025-06-03 18:26:54.661',NULL),
('ce4901d8-9c95-4f4f-bc49-0904a3a413eb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-09-27 13:52:07.192',3328,'a42d8839-caef-4422-888f-cbfdf4188c5b','ÖMER KARAMAN ','4917623488541','4917672163704','Almanya','JULİCH','52428','KOPERNİKUS STRASSE',7,5.5,100,'428561353','0','0',NULL,2850,1,'BEYAZ ETİKETLİ','2024-09-27 13:58:45.968','2024-10-24 19:09:25.282',NULL),
('ce4c8f08-9110-4882-8b15-e54368f68914','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-19 12:30:50.335',6043,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MUSTAFA AİT','32473991543','','Belçika','BOUTSERGAL','8940','FRANS JOSEF BİLİECKS TRAAT 19',23,4,100,'449769276','0','0',NULL,880,1,'AÇIK MAVİ ETİKETLİ','2024-09-19 12:33:22.495','2024-10-08 17:09:39.128',NULL),
('ce5ca5c1-b954-48fc-bed5-a9638449c61d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-05-26 09:50:51.635',9510,'dea91080-5383-4085-af2e-7eace2c64224','TANER OLGUN ','33627899131','33652468044','Fransa',NULL,'06200','62 AVENUE DE LA BORNALA 06200 NİCE/FRANCE',0,5,130,'910323683','0','0',NULL,0,0,'(MOR RENK)','2025-05-26 09:52:15.063','2025-07-04 18:35:55.299','2025-07-04 18:35:55.298'),
('ce6a533a-a695-4c7d-9d16-ee9de079d7bc','f784b688-ba6b-4886-87dd-fe4cfbed85b4','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-04 07:27:25.906',3631,'dea91080-5383-4085-af2e-7eace2c64224','CUMALİ ERCAN','33781231553','33759580914','Fransa',NULL,'27200','APPARTEMENT 130 VALMEUX 		\nBT4 19 RUE DE LA RENAİSSANCE		\nVERNON 27200		\n',3,5.5,120,'910759399','0','0',NULL,1000,1,'PEMBE ETİKETLİ','2025-02-04 07:29:47.299','2025-02-27 16:43:01.175',NULL),
('ce7ae4ad-2b4a-4f14-97b1-6031c225aff2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:20:29.613',4721,'47880255-08ee-4e99-940b-16038e07de55','İNAN KURUCU','33634229527','','Fransa','ORGE','91390','28 RUE DES TULİPES ',3,1,0,'478572714','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-04-27 08:22:52.929','2024-05-08 21:07:30.507',NULL),
('cea81038-a341-47c6-8f8b-905346a6e5b0','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-24 12:40:34.524',5376,'e6d4faef-484c-4ce7-992c-906e05fc083e','HÜDAYİ HARMANCI','4917670381209','4917677697727','Almanya','KREFELD','47800','UERDİNGEN STR 445',10,6,110,'64422113','5','5','ii',1500,1,'SARI ETİKET ','2025-09-25 07:42:16.396','2025-10-22 11:13:18.916',NULL),
('cebebeee-0bad-4139-9847-7d88c79fbf91','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 15:58:26.755',4978,'c2d4ce84-536d-4816-837f-7abbf6a7e061','FAREDİN BAJRAMİ','0033769307133','0033783840698','Fransa','ANNECY','74600','7 RUE DE LA JONCHERE',13,1,0,'248363931','0','0',NULL,650,1,'AÇIK MAVİ ETİKETLİ','2024-09-28 16:00:36.379','2024-10-10 16:32:44.298',NULL),
('ceed7173-fe7b-438d-9195-fec804ca478e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-06 09:35:03.346',4128,'47880255-08ee-4e99-940b-16038e07de55','HANIM DOĞAN','33751280603','5528582359','Fransa','PARİS','93140','21 ALLEE PABLO NERUDA 93140 BONDY FRANSA',2,2,130,'478730420','0','0',NULL,2100,1,'SARI ETİKET','2025-10-06 09:36:43.592','2025-10-25 09:00:35.557',NULL),
('cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-15 12:01:38.724',3533,'3c7190b6-f6ee-4275-8958-d7af952132ab','LYUDMİLA KORUNOVSKA','4915735267419','4915735267419','Almanya','WOLFSBURG','38446','AN DEN ROHWİESEN 1 POSTLEİTZAHL 38446 NİEDERSACHSEN WOLFSBURG ALMANYA',14,3,110,'371121937','0','0',NULL,1200,1,'KIRMIZI ETİKETLİ','2025-08-15 12:05:01.614','2025-09-13 09:57:06.233',NULL),
('cefb457d-b590-4671-9309-7f0658b9b20e','5c723cdc-e582-4b00-8271-838c085984c2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-07 12:04:54.695',5591,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÜMMÜGÜLSÜM KARAKUŞ SSH ','491786878785','4915259738238','Almanya','BONN','53227','AM WEİTGARTEN',19,2,105,'745967323','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-05-07 12:05:30.393','2025-06-05 12:35:16.516',NULL),
('cf0a7126-8c37-496d-8b00-8c055624489a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-15 13:28:41.135',2270,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','Ruta andom','41786601705','','İsviçre','Einterthur','8404','Am buck 17',1,3,140,'449279198','0','0',NULL,1350,1,'Gri etiketli','2024-05-15 13:30:42.707','2024-05-28 16:23:04.287',NULL),
('cf1b6f71-e318-40c8-a965-e02e6fdabcb3','1764a07b-eb47-4578-b6cd-f3c0d0e743be','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-05-28 09:30:49.047',1228,'47880255-08ee-4e99-940b-16038e07de55','SEVİM KAMER','494621092008','491621091849','Almanya','KÖLN','50769','FERDİNAND KÖNİGSHOFENSTRASSE 19 50769 KÖLN ALMANYA',24,6.5,105,'478524376','0','0',NULL,3250,1,'MAVİ ETİKETLİ','2025-05-28 09:34:04.462','2025-07-17 14:40:48.087',NULL),
('cf345387-d0fa-473f-bd0c-f50c25450c85','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-08-26 10:06:48.085',5791,'fd2f8958-dabf-4d4a-a10e-62713178bf3b','GHASAN ALBUKAİ','4917684656802','','Almanya','','90441','İndustries strabe',1,11,0,'289168915','0','0',NULL,400,1,'MOR ETİKETLİ','2024-08-26 10:26:34.679','2024-09-12 10:53:49.268',NULL),
('cf4c67d0-26de-41bd-bd58-ca5a3375fb32','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-13 08:23:06.856',1511,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','TANER HARMANCI','4369910268832','436606100081','Avusturya',NULL,'1120','JAGERHAUSGASSE 52-56/5/5 1120 AUSTRIA WIEN ',0,3,140,'74532359','0','0',NULL,650,0,'2 M3','2025-10-13 08:23:06.245','2025-10-22 07:39:46.497',NULL),
('cf774409-1636-4858-87ca-49dc1380271d','8fff5e14-418c-4377-bd83-3a3f81383507','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-18 11:10:09.473',4841,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','KEMAL URLAN ','491794992343',NULL,'Almanya','LANDSHUT','84028','SUDETENWEG',7,3,110,'43755091','5','5','Tşk ederiz 🌹',590,1,'KREM RENK ETİKETLİ','2025-08-18 11:11:52.417','2025-09-03 06:42:20.783',NULL),
('cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6','1f0119e0-2853-442a-8394-39cf94fce7df','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-07 11:58:49.929',5894,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','SEVAY NİKOLAEVA YANKOVA','32484930252','32465395227','Bulgaristan','KARNOBAT','8400','ARDA 31, KARNOBAT 8400',5,15.5,0,'517895646','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-07-07 12:01:32.574','2025-07-18 06:24:15.342',NULL),
('cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-18 16:38:33.190',7943,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','TEREZA SHARİPOVA','4379259769999','4379259769999','Avusturya','VİYANA','1020','STREET. SCHWEİDELGASSE 30/1/66 WİEN 1020',12,2.5,120,'808790233','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-08-18 16:48:01.336','2025-09-01 15:17:25.096',NULL),
('cfdfe578-6182-4ffb-95fe-f9a3fee0728c','8fff5e14-418c-4377-bd83-3a3f81383507',NULL,'2025-08-12 15:39:37.965',6738,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NURİYE İKİZKAYA','491783069451',NULL,'Almanya','DUİSBURG','47139','WESTRABE 60',0,2,110,'437865208','0','0',NULL,495,0,NULL,'2025-08-12 15:41:01.555','2025-08-14 15:06:07.087','2025-08-14 15:06:07.086'),
('cff31e86-cae0-4159-890f-d6fdf1bef718','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-20 14:12:31.666',5884,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ÜMRAN HANIM','491621366098',NULL,'Almanya',NULL,'50259','PLAUNER WEG 8',6,5.5,110,'248853188','0','0',NULL,750,1,'SARI ETİKETLİ','2025-03-20 14:16:15.474','2025-04-08 15:34:40.663',NULL),
('cffae1ee-46fd-4b78-98d7-0a0c75ec876a','5c723cdc-e582-4b00-8271-838c085984c2','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-13 10:14:50.303',10854,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HAKAN CANBAY','491726119322',NULL,'Almanya','HAMBURG','22523','HOLSTEINER CHAUSSEE 14 22523 HAMBURG ALMANYA',0,2,105,'74565941','0','0',NULL,3000,1,'MAVİ ETİKETLİ','2025-01-13 10:19:31.046','2025-01-31 12:16:32.601',NULL),
('d00138fa-29c9-4e79-afd4-bb7cf83a496a','173956a2-c232-495a-b036-4a6a36c073e2','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2024-12-10 19:10:35.281',8896,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SERHAT ERDOĞMUŞ','33751366069',NULL,'Fransa',NULL,'13110','64 AVENVE. FREDERİC MİSTRAL 13110',1,4,120,'449558519','0','0',NULL,1550,1,'YEŞİL ETİKETLİ','2024-12-10 19:12:11.726','2025-01-19 14:52:20.190',NULL),
('d006eab6-c320-4751-8fec-f85d79856933','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-24 09:56:35.233',3752,'e6d4faef-484c-4ce7-992c-906e05fc083e','DELİL ÖZÇELİK','4916097979747','4915737531253','Almanya','SİEGELSBACH','74936','IM SCHLOSSPARK 7',20,2,110,'644680025','0','0',NULL,1125,1,'1 PALET','2025-07-24 10:08:18.925','2025-08-27 19:34:57.148',NULL),
('d009c914-f7f6-4644-8a84-a30cb9311137','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 08:12:01.669',1196,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET KAÇIRAN','4915758475728','4915758475728','Almanya','ILSEDE','31241','SCHMEDENSTEDTER WEG 7',2,7,100,'745484472','0','0',NULL,1850,1,'','2024-03-12 08:16:59.161','2024-03-22 07:36:45.078',NULL),
('d01b4f69-9644-4e00-b4be-407f21dbd835','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','6b187f3a-7677-4be2-9b23-6ba035509beb','2024-11-06 12:19:52.693',4457,'a42d8839-caef-4422-888f-cbfdf4188c5b','SERDAL ÇEPER','49117670112264','4917670111258','Almanya',NULL,'1 42281','Drosselstr.1 42281 Wuppertal/Almanya',5,4.5,100,'42899153','0','0',NULL,800,1,'MAVİ ETİKETLİ','2024-11-06 12:35:40.686','2024-11-16 21:16:02.800',NULL),
('d054b4a7-35f3-468e-a1b3-28d2ebd815c0','1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-16 07:56:14.696',2053,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','GAMZE ÖZDEMİR','5444482458','5413112906','Almanya',NULL,'78727',NULL,10,11.5,110,'319645924','0','0',NULL,1050,1,'KOYUYEŞİL ETİKET','2025-09-16 07:57:15.365','2025-10-09 09:24:42.471',NULL),
('d068aa1a-0211-46d1-8268-db89610a5ea5','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-10-22 08:01:55.504',5660,'59868701-abe4-4705-a7e6-d91c2c69262e','ZEHRA ÜNAL SSH','41794639037','41763221453','İsviçre',NULL,'4310','WALDHOFSTRASSE 69, 4310 RHEİNFELDEN İSVİÇRE',0,2,140,'598772340','0','0',NULL,0,0,'bedel yazılmayacak','2025-10-22 09:08:09.331','2025-10-23 12:13:16.114',NULL),
('d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689','313cc2e2-5529-49ab-abe5-27b5d390bc5f','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-04 06:39:57.284',2679,'6133a2db-79c4-4372-9338-505db46b1847','DİANA BARAKAEVA','436763463503','4369919243273','Avusturya','WİEN','1210','HERZMANOVSKY-ORLANDO-GASSE 1-13/36/10, 1210 WİEN',12,2,120,'613554878','0','0',NULL,0,0,'Ssh(Dikkat) (mavi RENK)','2025-06-04 06:41:14.988','2025-07-24 10:26:01.287',NULL),
('d07a41e2-b061-4a35-9e73-38a90d719daa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-15 14:26:37.666',5907,'4126da30-ba9b-41b7-be29-865069aa484c','BATTAL','32476391369','','Belçika','','','',0,8,100,'412232110','0','0',NULL,800,0,'','2024-03-15 14:28:17.728','2024-03-16 06:31:15.786','2024-03-16 06:31:15.786'),
('d1449931-2ff8-4afa-9b0e-bdc3343cb106','8fff5e14-418c-4377-bd83-3a3f81383507','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-28 15:28:14.440',6536,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','CEM BÜYÜKDEMİRCİ','4369919273534',NULL,'Avusturya','LİNZ','4030','LEBLWEG 2/2 11',15,6.5,120,'437545074','0','0',NULL,1140,1,'MOR ETİKET','2025-08-28 15:30:22.147','2025-09-16 17:47:38.334',NULL),
('d14c8be1-206d-44a7-97dc-bb0f2ac15937','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 06:43:45.821',8004,'47880255-08ee-4e99-940b-16038e07de55','VOLKAN ÖZKAN','33768933805','','Fransa','TOULUSE','31300','12 RUE GİLBERT DEFER',19,1.5,110,'478741910','0','0',NULL,1030,1,'YEŞİL ETİKETLİ','2024-03-16 06:45:44.754','2024-04-01 07:52:54.988',NULL),
('d1838829-7a23-4b22-8b75-127eb7ac1cd6','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-11-21 14:49:01.284',5451,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','CAM','1111111111',NULL,'Almanya',NULL,'111',NULL,0,1,0,'455122963','0','0',NULL,0,0,NULL,'2024-11-21 14:50:12.700','2025-02-17 12:51:31.722','2025-02-17 12:51:31.729'),
('d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9','ab532050-8a54-4cb4-9e27-59229ab24a9b','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-11 08:11:00.959',5386,'338e8c09-4ca5-4617-bfc1-a0692646d475','MUAMMER SAYIN','491774822488','4915203294074','Almanya','SPEYER','67346','ALBERT-EINSTEIN-STRABE 9',19,5,110,'338822119','0','0',NULL,750,1,'GRİ ETİKETLİ -ÜSTÜNDE İSMİ YAZAN','2024-12-11 08:16:35.602','2025-01-07 17:28:02.008',NULL),
('d1ca1ce3-2930-4977-a85f-79f092dca21f','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-10-08 15:23:43.914',4416,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','ROMARİO','31618837777',NULL,'Hollanda','EİNDHOVEN','5632','AVELOO SOKAK: MİRANDASTRAAT 12 EYALET: NOORD-BRABANT \nŞEHİR: EİNDHOVEN POSTA KODU: 5632GM ÜLKE: HOLLANDA',0,2,120,'920752929','0','0',NULL,1800,0,NULL,'2025-10-08 15:27:44.104','2025-10-24 11:38:19.328','2025-10-24 11:38:19.327'),
('d1cfa6cc-2247-4475-be75-54d2bdd21d0c','8fff5e14-418c-4377-bd83-3a3f81383507','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-21 11:57:38.000',3039,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MEHMET SEKBAN','32489103760',NULL,'Belçika','HEUSDEN ZOLDEN','3550','MİNDERBROEDERSSTRAAT 69-1',6,4,120,'437840419','0','0',NULL,490,1,'MOR ETİKET ','2025-08-21 12:00:57.516','2025-09-10 16:32:52.073',NULL),
('d2110d46-cc68-4e06-8300-10a6aa3bdcd4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-02 15:52:51.181',1821,'1b51c5f7-649a-424f-ba17-cc37d6298af9','İSMET LEVENT','1636363626363636',NULL,'Almanya',NULL,'67547',NULL,16,2,0,'151258703','0','0',NULL,0,0,'MOR ETİKETLİ','2025-05-02 15:53:42.444','2025-05-21 08:16:23.972',NULL),
('d21c0dd7-8e02-4baf-b630-fdbc71a7958c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-06 09:04:00.742',8860,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','MEHMET KELEK','33786784588','','Fransa','CHAVANOD','74650','67 ROUTE DU MONT',12,10,110,'126371651','0','0',NULL,1200,1,'KIRMIZI ETİKETLİ','2024-09-06 09:17:05.583','2024-10-10 11:35:03.199',NULL),
('d25fd827-385a-48f1-8993-4f48129b3530','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:29:48.907',5665,'4126da30-ba9b-41b7-be29-865069aa484c','İBRAHİM AKÇORA','031681694818','','Hollanda','Groningen','9644','Troel strastraat 6',17,1,0,'412679110','0','0',NULL,0,0,'Mavi etiketli','2024-04-07 20:33:01.484','2024-05-02 19:56:42.327',NULL),
('d27f2367-c652-4d86-b346-10e260811b9c','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-01 14:13:20.299',6934,'3c7190b6-f6ee-4275-8958-d7af952132ab','MEHMET ALİ YILDIZ','436607227033','436607227033','Avusturya','OBERLÜSS','6600','REUTTE 6600 OBERLÜSS 14 AVUSTURYA',0,2,120,'37151088','0','0',NULL,0,0,'masa + sehpa','2025-10-01 14:14:50.137','2025-10-06 09:02:07.743',NULL),
('d29f5e82-17ba-42d5-80af-3310cb7d3a5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-08-30 12:05:12.194',5649,'59868701-abe4-4705-a7e6-d91c2c69262e','AHMED KADİ','3737363636364663',NULL,'Almanya',NULL,'0000',NULL,0,2,110,'598973926','0','0',NULL,0,0,NULL,'2025-08-30 12:05:43.679','2025-09-02 16:41:02.188','2025-09-02 16:41:02.187'),
('d2bc8274-0ee3-4160-8a5b-76f5cbf280b9','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-04-24 08:42:04.913',5067,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BETÜL ULUÇAY','33647277124',NULL,'Fransa',NULL,'11120','5 RUE DES GENEURİERS LOTİSSEMENT LE DOMANİE DES HORTS 11120 ST ANDRE DE ROGUELONGUE',0,3.5,130,'221893262','0','0',NULL,1400,0,'MOR RENK','2025-04-24 08:44:37.972','2025-07-04 18:35:45.859','2025-07-04 18:35:45.858'),
('d2c84f96-5369-41cb-83f8-2768b5603c1d','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-05-26 17:47:41.470',6587,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','YONCA KİLİC','436603838566',NULL,'Avusturya',NULL,'3252','PETZENKİRCHEN \nERLAUFGASSE 2/3',11,3.5,120,'675592889','0','0',NULL,480,1,'(MOR RENK)','2025-05-26 18:02:57.684','2025-06-28 21:53:36.042',NULL),
('d2d00177-2e69-4d99-bbf2-01bd2986666a','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-10 12:18:50.965',1655,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','Hatice avat','','','','','','',0,1,0,'750939503','0','0',NULL,0,0,'','2024-09-10 12:25:58.096','2024-10-10 07:29:46.171','2024-10-10 07:29:46.179'),
('d2d6e485-b5cd-40eb-aea4-a35691e6fe83','1764a07b-eb47-4578-b6cd-f3c0d0e743be','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-11 08:27:19.441',10249,'47880255-08ee-4e99-940b-16038e07de55','HALİL ÖZDEMİR','41779979275','05305275922','İsviçre','ARBON','9320','STACHERHOLZSTRASSE 37 9320 ARBON THURGAU KANTONU İSVİÇRE',16,2,140,'478138166','0','0',NULL,1500,1,'MAVİ ETİKETLİ','2025-03-11 08:30:27.155','2025-04-23 17:45:34.746',NULL),
('d2d77708-f738-416d-a601-6a86aa678898','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-17 10:23:45.633',9254,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','EMRAH ERAYDIN','33787053460','33787053460','Fransa','ALSACE','67700','15, RUE DE LA COLLİNE 67700 SAVERNE/ ALSACE FRANCE',19,7,120,'127395599','0','0',NULL,2100,1,'TURUNCU ETİKETLİ','2025-02-17 10:35:11.301','2025-03-05 14:40:46.219',NULL),
('d2e58279-3f1f-4815-9d06-57edca6efd91','8fff5e14-418c-4377-bd83-3a3f81383507','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-01 07:33:31.497',1967,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','NESLİHAN CAN','436605312866',NULL,'Avusturya','PASCHİNG','4061','HAİDBACH 63/1',21,2,140,'437940825','0','0',NULL,350,1,'TURUNCU ETİKETLİ','2025-05-01 07:35:01.230','2025-05-21 18:42:11.094',NULL),
('d2e72d11-31ac-4049-b68e-934d4095d90d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-19 10:49:55.005',8029,'02756ab4-fa8a-408f-b81c-76a84dc82d6f','AAAAAAAAAAA','33652326324',NULL,'Fransa',NULL,'91600','18 RUE HENRİ DUNANT ',1,3,110,'027517327','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-19 10:54:37.374','2024-12-12 07:41:43.505',NULL),
('d2edbeb4-631f-4db0-a6f7-0af31904cdba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-24 08:57:17.969',5548,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HİLAL POLAT ÇELİK','491796922955',NULL,'Almanya',NULL,'63856','BESSENBACH STR.8',17,3.5,100,'976866527','0','0',NULL,1150,1,'AÇIK MAVİ ETİKETLİ','2024-10-24 09:08:56.053','2024-11-09 18:53:51.251',NULL),
('d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c','eccfe611-9163-42aa-a1ff-e711af0248e6','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 10:07:09.667',3678,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HASAN BİLECEN','31624237190',NULL,'Hollanda',NULL,'3531','BOEROEHOF 16, 3531 WH UTRECHT',1,2.5,120,'221121416','0','0',NULL,800,1,'KREM RENK ETİKETLİ','2025-07-01 10:09:16.391','2025-07-28 18:39:31.113',NULL),
('d313ceae-a8f1-4f54-ba81-fe9e81fef554','1764a07b-eb47-4578-b6cd-f3c0d0e743be','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-08-18 08:06:42.636',7648,'47880255-08ee-4e99-940b-16038e07de55','BESNA ULUĞ','33785173918','333651501156','Fransa','NOGENT SUR OİESE','60180','13 RUE TLUE 60180 NOGENT SUR OİESE FRANSA',1,9.5,130,'478906000','0','0',NULL,5000,1,'KIRMIZI ETİKET ','2025-08-18 08:09:17.381','2025-10-04 13:57:40.404',NULL),
('d3143cfe-61a7-4061-b2d1-c65e956748ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-14 13:32:35.711',6313,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA ÖZYİĞİT ','41796569349','4917661976025','İsviçre','SCHİERS','7020','DORFSTRASSE 62',6,7.5,140,'42837513','5','5','Teşekkür ederiz.',3600,1,'TURUNCU ETİKETLİ','2024-10-14 14:00:42.677','2024-10-24 09:31:19.042',NULL),
('d3e4434c-1317-4092-aed5-8cc884ab1ae7','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321',NULL,'2025-09-08 08:10:50.620',9301,'59868701-abe4-4705-a7e6-d91c2c69262e','CEMİLE VE HÜSEYİN ŞAHİN','4917655561792','4917655561792','Almanya',NULL,'85356','KİEBİTZWEG 3, 85356 FREİSİNG ALMANYA',0,5.5,110,'598697614','0','0',NULL,2400,0,'5.5 m3İ','2025-09-08 08:12:50.303','2025-10-10 14:11:02.803',NULL),
('d406bcf9-208d-4398-83bc-73bfdd569d39','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-15 14:29:02.222',1811,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HAZİNE UCA','4917657693085','4917693359695','Almanya','','25746','',0,1,100,'745839023','0','0',NULL,900,1,'','2024-10-15 14:30:15.768','2024-10-26 07:30:35.975',NULL),
('d448143d-3fcc-4fc3-8d37-30d1af2dec9e','1764a07b-eb47-4578-b6cd-f3c0d0e743be','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-03 07:53:42.593',1837,'47880255-08ee-4e99-940b-16038e07de55','MECİT AVCI','30697562034','4917657600955','Almanya','FRANKFURT','65930','LANDAUER STRABE 36 65930 FRANKFURT ALMNAYA',11,2,105,'478957028','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-03-03 07:57:34.869','2025-04-07 11:35:51.386',NULL),
('d46dc46d-e5f4-4787-aee1-803a6155fef5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:01:46.908',2873,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','JİLLİA AMİRİ','4915128983486','','Almanya','','45661','',4,8.5,100,'982630175','0','0',NULL,4800,1,'YEŞİL ETİKETLİ','2024-03-23 07:09:15.304','2024-04-03 18:54:43.526',NULL),
('d488fa09-b4c4-4a16-b3c7-6b5959ff762c','394112c3-f977-4fc2-b430-775e79e472ca','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-02-07 09:55:13.804',2229,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NORBERTO VAZ ','33663551431',NULL,'Fransa',NULL,'57390',NULL,8,3.5,140,'982573889','0','0',NULL,1350,1,'SARI ETİKETLİ','2025-02-07 09:56:13.888','2025-02-26 13:43:22.913',NULL),
('d495dc82-5d1b-46f4-a06b-4a1ad44cbbc6','20266106-34af-42db-a26b-578356db50a6',NULL,'2025-10-06 09:23:54.293',10350,'69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','ERKAN LJUTFİJİ','0041792735840',NULL,'İsviçre',NULL,'4057','NEUHAUSSTRASSE 34, 4057 BASEL',0,4.5,140,'695864567','0','0',NULL,1400,0,'1400 chf alınacak','2025-10-06 09:25:42.240','2025-10-27 08:29:44.848',NULL),
('d4a40805-981f-48c2-bf0a-a6128b40e638','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-10-23 06:34:19.501',4460,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','DENİZ ŞİMŞEK SSH ','41764340270',NULL,'İsviçre',NULL,'6300','OBERALLMENDSTRASSE 18 6300 ZUG SCHWEİZ ',0,2,140,'745770448','0','0',NULL,0,0,'SSH MODÜL 70CM','2025-10-23 06:32:59.806','2025-10-23 06:32:59.806',NULL),
('d4bc4878-9923-4ef3-b0a1-5cd730e1777a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-04 12:38:37.238',6489,'e6d4faef-484c-4ce7-992c-906e05fc083e','MUSTAFA ÖZTAŞ','491728865904','491734349873','Almanya','ALDİNGEN','78554','SPAİCHİNGER STRABE 33',15,2,110,'644147833','0','0',NULL,625,1,'AÇIK MAVİ ETİKET ','2025-08-04 12:44:57.389','2025-08-28 18:20:08.077',NULL),
('d4eec699-15e8-4023-b611-78ceb15be51f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 13:30:17.765',2758,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YASEMİN YILDIZ','491773384706',NULL,'Almanya',NULL,'17139','KARL DRESSEL STR 24',0,6,100,'745346486','0','0',NULL,2500,1,'YEŞİL ETİKETLİ','2024-12-17 17:03:00.256','2025-01-13 10:45:09.519',NULL),
('d534081c-07c5-470c-bed4-f699f4319aa1','05135cd5-2d33-4363-b51e-c9b83a94094d','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-13 08:15:16.404',2106,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','CİHAN KÖSELER','491731888801',NULL,'Almanya',NULL,'44629','BİSMARCK STR 44A',12,2,110,'657734229','0','0',NULL,300,1,'MERMER PALETİ','2025-05-13 08:16:15.828','2025-06-06 17:36:41.339',NULL),
('d55fdc55-0652-4c3e-b972-a81ea4a847af','89428e9c-4d02-45c3-a044-0b2a5ac2465d','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-05 11:23:50.972',6468,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HAZAL ELMAS','4917641830880',NULL,'Almanya','EİTORF','53783','SPİNNERWEG 46',16,5.5,110,'976983661','0','0',NULL,1800,1,'MOR ETİKETLİ','2025-02-05 11:32:31.855','2025-03-06 10:33:18.017',NULL),
('d5670c41-1af2-48f4-a947-753c331653a4','5c723cdc-e582-4b00-8271-838c085984c2','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-17 08:39:24.904',9888,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SÜVEYLA TARHAN','3363870091','33753744343','Fransa',NULL,'95500','9 RUE DU PONT A L\'HUILE 95500 LE THILLAY FRANCE ',3,2.5,130,'745906539','0','0',NULL,1250,1,'KREM ETİKET','2025-09-17 08:38:53.521','2025-10-10 21:30:06.017',NULL),
('d586bc5d-72ab-46a5-8f07-a0f14d351b51','c21cdd02-4af2-4b32-bc87-c70a576c3a99','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-06-30 14:51:41.879',10627,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','FOUAD BJA','491784026440',NULL,'Almanya','FRANKFURT AM MAİN','60439','IM HEİDENFELD 23 60439 FRANKFURT AM MAİN ALMANYA',15,2,110,'515103460','0','0',NULL,450,1,'YEŞİL RENK','2025-06-30 16:16:58.626','2025-07-28 12:02:44.192',NULL),
('d5b2fa03-abec-4a92-ba35-d62dcc2cbf95','05135cd5-2d33-4363-b51e-c9b83a94094d','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-19 10:02:09.271',10444,'4126da30-ba9b-41b7-be29-865069aa484c','RAMAZAN AÇIKEL','33664447366',NULL,'Fransa',NULL,'85600','5 RUE DES PUİTS ',0,2,0,'412411011','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2025-04-19 10:03:58.508','2025-05-04 22:43:52.407',NULL),
('d5d59451-1dce-44fd-b0d3-87c4b3965259','c65ed555-e6a8-409d-9031-28c5c1e8da7b',NULL,'2025-07-25 08:17:54.769',2979,'e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','EMİNE DÜKME','4915227589204',NULL,'Almanya','WANGEN','88239','RAVENSBURGER STR.32 WANGEN İM ALLGAU',0,3,110,'203797759','0','0',NULL,400,0,NULL,'2025-07-25 08:20:50.216','2025-08-19 12:39:23.692','2025-08-19 12:39:23.691'),
('d5e45bbc-32f3-498d-96c3-b034ee8c10cf','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-16 21:01:13.822',7006,'6133a2db-79c4-4372-9338-505db46b1847','GASİ MUSA','4915906664291','4917631430152','Almanya','HÜCKELHOVEN ','41836','AMBOSSWEG 13B\n41836 HÜCKELHOVEN ',9,4,110,'613262202','0','0',NULL,1250,1,'MAVİ ETİKET','2025-06-16 21:05:09.716','2025-08-05 12:59:21.180',NULL),
('d5f36194-fd5d-4924-9a3b-f9c7b729d368','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-02-10 14:28:36.154',6233,'afdbd570-d700-442a-b617-752921194603','AYNUR MELEK DEMİR','1111111111',NULL,'Fransa',NULL,'111',NULL,0,3,130,'570265257','0','0',NULL,0,0,NULL,'2025-02-10 14:34:25.890','2025-02-20 15:07:25.436','2025-02-20 15:07:25.439'),
('d5f7d072-4afd-46f4-9eee-c847daba51c2','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-13 12:43:18.409',6839,'c2d4ce84-536d-4816-837f-7abbf6a7e061','53489 SİNZİG','4917664318290',NULL,'Almanya',NULL,'53489','JUDENGASSE 18',16,9,110,'248955283','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-03-13 12:49:13.677','2025-04-25 19:39:36.235',NULL),
('d5fa2f57-3177-401e-aa8a-f8944dc6a64f','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-08-07 14:16:21.848',3556,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','BAL CİHAN','33668667974','','Fransa','PARİS','75019','6 BİS RUE DUVERGİER',0,4.5,110,'614661701','0','0',NULL,1150,0,'KIRMIZI ETİKETLİ','2024-08-07 14:18:59.577','2024-08-08 09:26:12.516','2024-08-08 09:26:12.537'),
('d6348c7e-4b86-444e-859f-29dce263d04b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:55:42.338',2459,'4126da30-ba9b-41b7-be29-865069aa484c','Hasan bey','905540182920','','Belçika','Jumet','6040','Rue dünya diarbois 8',9,6,475,'412800723','0','0',NULL,2850,1,'6 palet','2024-04-07 20:59:27.472','2024-05-02 19:56:42.327',NULL),
('d6382e4c-39a7-4f1e-a322-945d02f853e0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-22 09:03:11.615',9287,'47880255-08ee-4e99-940b-16038e07de55','EJDER SOLAK','4917657934135','4917657934133','Almanya',NULL,'65474 ','GİNSHEİMER STR 36 65474 MAİNZ BİSCHAFSHEİM ALMANYA',12,2,105,'47838085','0','0',NULL,0,0,'PEMBE ETİKETLİ müşteriye 200 euro ödeme yapılması gerekiyor','2025-01-22 09:04:43.246','2025-02-24 17:29:14.404',NULL),
('d6635bb2-75b0-48bc-bb9b-7e1161e20b03','51b55e5b-7487-4d8a-923e-163f04d0b1d9','57046791-223a-475d-a95b-9bd35bed67c2','2024-03-12 10:23:37.043',4193,'4126da30-ba9b-41b7-be29-865069aa484c','PRISMANN-NESTE NETHERLANDS','','','Hollanda','ROTTERDAM','3199','ANTARCTİCAWEG 185',10,16,237.5,'412157690','0','0',NULL,0,0,'','2024-03-12 10:25:16.427','2024-03-22 10:16:54.919',NULL),
('d6968286-4388-4d14-a075-b49d0ae8ae44','eccfe611-9163-42aa-a1ff-e711af0248e6','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-01 14:35:21.548',8134,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SANAA ARGANE','33699489518',NULL,'Fransa',NULL,'59790','184 RUE LOUİS BRAİLLE 59790 RONCHIN ',2,2.5,120,'221573899','0','0',NULL,800,1,'TURUNCU ETİKET ','2025-08-01 14:37:49.820','2025-09-10 17:04:42.181',NULL),
('d69dff48-c846-4f9b-b0f8-fd1e65799ff6','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23',NULL,'2025-10-11 10:19:47.164',10378,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','OUAFAA EL-FARNİZİ LAABİCH','491635073607','491635073607','Almanya','BERLİN','12101','GONTERMANNSTRASSE 83 \n12101 BERLİN',0,2,110,'808443666','0','0',NULL,1010,0,NULL,'2025-10-11 10:24:26.008','2025-10-22 10:48:07.804',NULL),
('d6c86bc4-621a-47c9-bff7-65a8004b9c59','394112c3-f977-4fc2-b430-775e79e472ca','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-09 19:50:38.679',8985,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AJLA ORUC ','4306607478961',NULL,'Avusturya',NULL,'9585',NULL,15,3,140,'982329375','0','0',NULL,1550,1,'PEMBE ETİKETLİ','2025-03-09 19:51:38.922','2025-04-02 18:57:10.886',NULL),
('d6ceac62-a798-4065-a2db-6b4d596f974a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-18 14:00:27.026',4020,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERCAN KARADAVUT ','491749683330',NULL,'Almanya',NULL,'24768','PREUBERSTRABE 4',0,6,0,'248315101','0','0',NULL,1500,1,NULL,'2024-12-18 14:11:30.527','2025-01-11 09:48:56.083',NULL),
('d6eb46ce-2d21-4b14-9c4e-4e57a0f8a37e','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-10-18 08:26:49.185',5986,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MOROŞAN ELENA','436605774006','436609206351','Avusturya','EBERGASSİNG','2435','DR. FRED SİNOWATZ STRASSE 4B/09 2435 EBERGASSİNG ',0,2,110,'505193364','0','0',NULL,580,0,NULL,'2025-10-18 08:28:20.076','2025-10-27 07:25:31.881',NULL),
('d6f95cb0-d25d-4e92-a9b7-6c2134ab5062','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-04 08:12:53.894',5224,'e6d4faef-484c-4ce7-992c-906e05fc083e','SUAT TUGAL','4915730878935','491729349795','Almanya','ALLERHAUSEN','85391','ERLENWEG 2, 85391 ALLERHAUSEN',27,7.5,110,'644443664','0','0',NULL,2100,1,'GRİ ETİKETLİ','2025-04-04 08:27:46.698','2025-04-24 15:01:23.008',NULL),
('d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5','f784b688-ba6b-4886-87dd-fe4cfbed85b4','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-27 10:40:21.526',5676,'dea91080-5383-4085-af2e-7eace2c64224','ATAKAN OLCAYTÜRK','491777466973','491632307523','Almanya',NULL,'97318','SCHWALBENGASSE 2		\n97318 KİTZİNGEN 		\nBAVYERA(BAYERN)		\nUNTERFRANKEN		\n',24,2,110,'910251573','5','5','Herşey yolunda gitti. Çok teşekkür ederim. ',0,0,'MAVİ ETİKETLİ','2025-03-27 10:44:34.035','2025-04-24 17:45:47.240',NULL),
('d71f7dec-d2d9-43db-b33d-4120e264d90b','89428e9c-4d02-45c3-a044-0b2a5ac2465d','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-10 20:03:56.561',9247,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','BURHAN SAĞLAM','491721301453',NULL,'Almanya','NEU ISENBURG','63263','NACHTİGALLEN STRABE 40 ',18,3.5,110,'976593604','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-09-10 20:10:46.116','2025-09-24 06:51:13.936',NULL),
('d7273e12-dd22-4fa8-9893-2696b1178656','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-07 11:09:47.515',9070,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','AAAAAA','1111123232432423',NULL,'Hollanda',NULL,'3083',NULL,0,2,120,'65556881','0','0',NULL,0,0,'8 PALET 5 KOLİ','2025-02-07 11:11:19.477','2025-02-22 10:20:07.683',NULL),
('d74a364e-c899-455c-8b3f-5a445fba432a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-21 13:22:52.591',9458,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','MUHAMMER KORKMAZ','4917632064278',NULL,'Almanya','VÖHRİNGEN','89269','BAHNHOF STRABE 34',8,4.5,100,'976187023','0','0',NULL,1250,1,'SARI ETİKETLİ','2024-10-21 13:26:15.967','2024-10-30 18:09:43.450',NULL),
('d74fc593-2936-4bd5-8e08-8bb17c7c02cb','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2025-03-14 14:08:28.935',7151,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ENGİN VARİLLER ','1111111111111',NULL,'Almanya',NULL,'111',NULL,0,2,0,'248100721','0','0',NULL,0,0,NULL,'2025-03-14 14:11:28.285','2025-03-21 11:35:00.199','2025-03-21 11:35:00.202'),
('d78e9aef-d794-44e4-a9be-c55739db8e56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 13:28:39.707',10935,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÜMMÜGÜLSÜM KARAKUŞ','491786878785','4915259738238','Almanya','BONN','53227','AM WEİTGARTEN',6,1,100,'745924426','0','0',NULL,1000,1,'KIRMIZI ETİKETLİ','2024-10-11 13:34:39.106','2024-10-24 19:09:25.282',NULL),
('d79ec9de-a72a-47f5-a918-2b75ec194704','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-10 08:14:00.452',3877,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','DEBORAH BELOVED IDAGU','491759990232','4917637605694','Almanya','KARLSRUHE','76133','BELFORTSTRASSE 14, 76133 KARLSRUHE, GERMANY',18,4.5,110,'505987989','0','0',NULL,0,0,'BEYAZ ETİKET ','2025-07-10 08:18:19.850','2025-08-27 19:39:28.223',NULL),
('d7a12701-09c4-4320-85a8-07d8731effaa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:54:02.268',5014,'47880255-08ee-4e99-940b-16038e07de55','LEMAN EMRE','','','Hollanda','NİJMEGEN','6537','ALDEN HOF ',11,1,100,'478913776','0','0',NULL,0,0,'BİR SONRAKİ MUSTAFA UZUNBOY ADRESİNE BIRAKILCAK\nKIRMIZI ETİKETLİ','2024-09-27 11:55:46.238','2024-10-07 14:02:15.860',NULL),
('d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-02 10:45:28.459',7232,'e6d4faef-484c-4ce7-992c-906e05fc083e','ERDEL SİBEL SSH','33769005262','0744884261','Fransa','MONTEREAU','77130','2 RUE DU TERTRE BLANC 77130 MONTEREAU FAULT YONNE',8,2,0,'644426448','0','0',NULL,0,0,'BEYAZ ETİKET SSH','2025-08-02 10:47:32.012','2025-08-29 16:53:33.284',NULL),
('d7b0bb03-c914-41e5-8899-697339f7e562','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:53:38.688',1105,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','FATIMA KRISHMA','4915114164917','','Almanya','FRANKFURT','60435','AM NEVENBERG 19',3,4.5,100,'982164642','0','0',NULL,1450,1,'KIRMIZI ETİKETLİ','2024-03-30 09:57:18.668','2024-04-11 06:19:53.270',NULL),
('d7b69750-f00d-4eff-a7d5-f4ec3b8988ce','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-11 13:02:11.867',10627,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MARİA JONANOVİC','436765207297','','Avusturya','GUMUNDEN','4810','KARL PLENTZNER STRABE',3,3,120,'449417757','0','0',NULL,1400,1,'SARI ETİKETLİ','2024-09-11 13:11:44.921','2024-09-25 12:59:09.871',NULL),
('d7c365df-3376-4073-9c58-c2c089ddf17d','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-22 14:59:09.571',2764,'a42d8839-caef-4422-888f-cbfdf4188c5b','ESRA ELİŞ','41786933908','05305840234','İsviçre',NULL,'2300 ','RUE DE LA PAİX 147 2300 LA CHAUX-DE-FONDS SUİSSE\n\n',1,3.5,140,'428704278','0','0',NULL,500,1,'MAVİ ETİKETLİ','2025-05-22 15:05:42.368','2025-06-05 20:02:48.162',NULL),
('d7d56728-9768-4bf8-8387-7f8b0fc62a6f','f784b688-ba6b-4886-87dd-fe4cfbed85b4','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-17 15:05:02.006',1658,'dea91080-5383-4085-af2e-7eace2c64224','FATMA FİLİZ DEMİR','33651552074','33768511676','Fransa',NULL,'93380','57 RUE		\nPARMENTİER		\nPİERREFİTTE SUR		\nSİENNE		\n',17,3,120,'910657387','0','0',NULL,700,1,'AÇIK MAVİ ETİKETLİ','2025-01-17 15:11:00.937','2025-02-13 13:19:13.093',NULL),
('d7dfcf55-ee39-4764-87f9-17c50166c245','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 14:56:20.877',8118,'c2d4ce84-536d-4816-837f-7abbf6a7e061','AMİR MJAHED','','','Almanya','Mühlacker','75417','Mühlackerstrbe 53',1,1,0,'248618650','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-08-20 14:56:43.761','2024-08-31 18:15:48.180',NULL),
('d7e6d100-83c7-4980-9636-2ea6521598da','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:08:28.262',9732,'b734c482-3c00-4897-ad35-bc358cd02d56','ENDER ÖZBAKAR','33767911298','','Fransa','','42600','10 RUE DU COLLEGE ',16,1.5,100,'734965369','0','0',NULL,250,1,'KIRMIZI ETİKETLİ','2024-05-04 10:10:22.425','2024-05-21 18:46:21.335',NULL),
('d834f33a-bc33-4d29-8f11-a9b44beafabf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-15 17:06:23.318',3136,'4126da30-ba9b-41b7-be29-865069aa484c','DEKOR ARSLAN','33768120568',NULL,'Fransa',NULL,'51100',NULL,10,2,0,'412332862','0','0',NULL,360,1,'AÇIK MAVİ ETİKETLİ','2025-04-15 17:06:55.477','2025-05-02 17:08:29.291',NULL),
('d8406e1c-80d1-4795-aea9-119c8cad0252','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-20 12:46:12.468',3372,'22a1dbd6-475c-4d4b-bb13-f459e3029634','EMİLY RAMİREZ','32493467320',NULL,'Belçika',NULL,'2630','HELSTSTRAAT 7, AARTSELAAR 2630',12,2,120,'221897784','0','0',NULL,475,1,'KIRMIZI ETİKETLİ','2025-05-20 12:47:54.127','2025-06-06 17:34:35.937',NULL),
('d84c0c48-7c0e-415e-9f69-e9f7870292b7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-28 14:46:59.726',2588,'47880255-08ee-4e99-940b-16038e07de55','ERSİN ÖZDEMİR','491722006500',NULL,'Almanya',NULL,'59174','EBERTALLE 14A',6,1,100,'478892004','0','0',NULL,0,0,'KIRMIZI ETİKETLİ','2024-12-28 14:48:45.137','2025-01-07 10:35:42.341',NULL),
('d850bd2e-4975-4529-8b56-6564706b808f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-06 15:05:29.607',7541,'f23142ef-47ba-426c-9a22-bfb123cfac47','Gruppomino','33787231451',NULL,'Fransa','BORDEAUX','33000','24 RUE SAİNT REMI ',2,1,140,'231429780','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-11-06 15:07:06.136','2024-11-26 08:03:46.532',NULL),
('d85df80f-4bcc-482f-949e-4393d27c0874','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-07 14:23:04.431',3401,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ERDİNÇ ESKİ','4915733689606','4915778071282','Almanya','SAARLAND','68333','HAUSEN STR 33',7,1,100,'745505942','0','0',NULL,1190,1,'BEYAZ ETİKETLİ','2024-08-07 14:25:01.404','2024-08-16 04:44:21.788',NULL),
('d86cddee-4893-4296-91c3-184ec1dc6b17','313cc2e2-5529-49ab-abe5-27b5d390bc5f','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-01 08:52:26.120',10165,'6133a2db-79c4-4372-9338-505db46b1847','SELMA BAJRAMOSKA','41798624904','41798262813','İsviçre','ROMANSHORN','8590','\nHUEBER REBGARTEN 5\n8590 ROMANSHORN\nSCHWEİZ',8,3,140,'613374971','0','0',NULL,925,1,'BEJ RENK ETİKETLİ      850 CHF alınacaktır.\n','2025-03-01 08:59:11.624','2025-03-21 20:08:08.186',NULL),
('d88b92e7-f9dc-4987-9027-18aca7f5c2c1','05135cd5-2d33-4363-b51e-c9b83a94094d','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-27 08:25:48.160',3861,'4126da30-ba9b-41b7-be29-865069aa484c','MAHMUT KAHRAMAN','33783164469',NULL,'Fransa',NULL,'93370','20 PLACE NOTRE DAME DES ANGES 93370 MONTFERMEİL',5,2,0,'412109820','0','0',NULL,0,0,'PEMBE ETİKET','2025-08-27 08:29:01.511','2025-09-07 10:15:31.611',NULL),
('d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-10 14:16:43.601',9569,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','İPEK ÇAKMAKÇI','4917666337155','491607764360','Almanya','HANAU','63450','FREİGERİCHSTRASSE 59\n63450 HANAU\nALMANYA',18,2,110,'505129515','5','5','Süper ',1050,1,'GRİ ETİKET','2025-08-10 14:19:17.138','2025-09-08 11:29:36.541',NULL),
('d8ceea70-718a-4405-a27a-d02336aa2dc9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-03 11:14:32.727',3636,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','FİDAYE YILDIRIM','491797358234',NULL,'Almanya',NULL,'21244','WEG ZUM BADETEİCH 5 21244 BUCHHOLZ İ.D.N DEUTSCHLAND',6,4,110,'920821712','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-09-03 11:17:39.658','2025-09-16 06:34:12.520',NULL),
('d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb','1764a07b-eb47-4578-b6cd-f3c0d0e743be','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-11 08:23:57.308',8305,'47880255-08ee-4e99-940b-16038e07de55','RUKİYE KIRIMLI','436608763006','4308615313','Avusturya','WİEN','1210','MENZEL STRABE 10/3/23  1210 WİEN ÖSTERREİCH AVUSTURYA',22,2,140,'478861689','0','0',NULL,1600,1,'SARI ETİKETLİ','2025-03-11 08:26:25.640','2025-04-02 18:57:10.886',NULL),
('d8e81c58-d245-41e7-a030-04aad4fea77d','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-15 08:49:32.404',8051,'e6d4faef-484c-4ce7-992c-906e05fc083e','ZAFER SARIDAŞ(K)','491752309322','491773638963','Almanya','ARNSBERG','59755','WERLERSTRASSE 20\n59755 ARNSBERG',4,4,110,'644717952','0','0',NULL,550,1,'TURUNCU ETİKET ','2025-09-15 09:02:40.674','2025-10-20 06:32:30.114',NULL),
('d8ea87c9-edbf-4d33-b8c2-caafc3b367d2','313cc2e2-5529-49ab-abe5-27b5d390bc5f','66307a01-d585-4127-903b-18748421c29e','2025-04-22 19:53:58.369',8265,'6133a2db-79c4-4372-9338-505db46b1847','BURHAN SARIKURT','491788201397','4917684805467','Almanya',NULL,'13047','SEPTİMERSTRASSE 44A\n13047 BERLİN',5,2,110,'613431273','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-04-22 20:05:56.802','2025-05-30 13:57:13.887',NULL),
('d90a2d63-8817-4556-b510-fd210ae23d81','51b55e5b-7487-4d8a-923e-163f04d0b1d9','28e43894-abb7-4d47-acb4-b276a342b979','2024-03-14 15:25:33.909',7212,'70a3a4f1-e9cb-485f-aada-62059168e54e','SEYFETTİN BİLİCAN','32470652077','','Belçika','BUGGENHOUT','9255','KASTEELSTRAAT 223',0,90,44.45,'703728513','0','0',NULL,4450,1,'','2024-03-14 15:27:26.595','2024-03-30 21:35:16.514',NULL),
('d921e4e9-196f-4ba6-beeb-e5aafb5c80ee','eccfe611-9163-42aa-a1ff-e711af0248e6','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-15 15:09:34.185',9834,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MUHAMMED ALİ YILMAZ ','4917680243657',NULL,'Almanya',NULL,'70825','CHRİSTİAN WAGNER STR 10 , 70825 KONTRAL MÜNCHİNGEN ',23,2,110,'221294149','0','0',NULL,500,1,'BEYAZ ETİKETLİ','2025-04-15 15:11:20.991','2025-05-20 16:27:39.653',NULL),
('d9271f7c-f437-4def-8584-9c15e6d3a998','51b55e5b-7487-4d8a-923e-163f04d0b1d9','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-24 15:01:33.313',2989,'fabe2c23-b5a5-4123-a962-af519ac31d3b','DİE FABRİK OUTLET','4920350083648',NULL,'Almanya','DUİSBURG','47167','HEUSS STRABE 60',16,15,0,'223249369','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-01-24 15:05:13.972','2025-02-08 15:04:24.328',NULL),
('d94a3df6-39ff-47f5-91f0-f3e59a85c828','313cc2e2-5529-49ab-abe5-27b5d390bc5f','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-19 12:00:37.343',5752,'6133a2db-79c4-4372-9338-505db46b1847','ASLAN MURTAZALİEV','4367762401400','4367761978240','Avusturya','KAPFENBERG','8505','MARİAZELLER STRASSE 75/6, 8605 KAPFENBERG, STEİERMARK, ÖSTERREİCH',17,4,140,'613669036','0','0',NULL,1425,1,'YEŞİL ETİKETLİ','2025-03-19 12:10:52.183','2025-04-02 18:57:10.886',NULL),
('d96f6453-1e25-424a-9d19-ea7d43ea1cb5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1b0bff80-860a-4f39-812d-dac7c77bf49d','2024-12-17 14:40:17.874',5751,'73596a75-b658-4249-8c71-b0490654bc8b','SAMİ MEHDEROĞLU','004915229410362',NULL,'Almanya',NULL,'95032',NULL,9,1,0,'735272751','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-12-17 17:16:01.024','2025-01-11 10:16:45.910',NULL),
('d993ce90-f47a-45f5-b714-cf612685b50d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-02-06 12:12:43.059',7922,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','FATMA EROĞLU ','491739149544',NULL,'Almanya',NULL,'58540',' \nZUM IMMECKER GRUND 6\n58540 MEİNERZHAGEN',14,2,110,'455757391','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-02-06 12:14:03.321','2025-02-18 17:24:12.014',NULL),
('d99ae93f-dd73-4f33-a6a3-1bd33e17655a','585b4575-ecea-4671-89b2-199f0605ed62','98672fb9-339c-4dd4-895c-652e44b438ac','2025-08-26 12:22:10.117',6368,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','NERMİN KAZAN ','4917657685014','49538618969','Almanya','SAARLOUİS','66740','PROVİNZSTRASSE 160\n66740 SAARLOUİS',16,18,110,'786146097','0','0',NULL,4575,0,'AÇIK MAVİ','2025-08-26 12:24:50.040','2025-10-22 13:06:52.544',NULL),
('d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','05e8de78-1979-427a-85ea-4116295aadf5','2025-10-01 06:52:41.631',8537,'4126da30-ba9b-41b7-be29-865069aa484c','HASAN BEY (İRFAN)','5344645190',NULL,'Belçika','CHARLEROİ','6040','RUE DU DİARBOİS 8.\n6040 JUMET',13,2,0,'412797306','0','0',NULL,1950,1,'3 PALET + 82 ADET KOLİ','2025-10-01 06:54:37.166','2025-10-15 08:20:36.362',NULL),
('d9ce2f65-7034-4114-b66f-0c1076eb90bf','8fff5e14-418c-4377-bd83-3a3f81383507','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-21 12:21:34.017',8633,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SELİN URAK','4917645275694','491725393009','Almanya','NORDERSTEDT','22850','MOROMMER STRABE 6',1,6,110,'437152964','0','0',NULL,1260,1,'YEŞİL ETİKET','2025-08-21 12:26:07.986','2025-09-16 06:34:40.142',NULL),
('d9f2c22b-b9f7-410b-a99f-d86912b69cc4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-30 10:58:54.904',10008,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','RUHAT DEĞİRMENCİ ','4915224149443','','Almanya','BACKNANG','71522','GİEBELAU 1',7,3.5,100,'501626049','0','0',NULL,1800,1,'MOR ETİKETLİ','2024-09-30 11:04:58.243','2024-10-08 17:09:24.444',NULL),
('da2f0aa5-ea25-4793-a24c-76f3940dd114','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-02 10:47:33.314',7221,'e6d4faef-484c-4ce7-992c-906e05fc083e','BURAK YAKUT','33652632895','33611031313','Fransa','METZ','57070','26 RUE DE LA FALOGNE 57070 METZ',9,3,120,'644975430','0','0',NULL,725,1,'TURUNCU ETİKET','2025-08-02 10:50:03.928','2025-09-06 17:54:10.928',NULL),
('da4845d7-4297-4d18-8c32-8b56a284257b','394112c3-f977-4fc2-b430-775e79e472ca','bae1a051-2661-4d51-b287-a8fd73d30813','2025-02-26 13:19:43.143',9677,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MİAMİ STYLE ','40754578343',NULL,'Romanya',NULL,'557260',NULL,0,4,0,'982999114','0','0',NULL,1500,1,NULL,'2025-02-26 13:20:32.502','2025-03-18 22:20:43.950',NULL),
('da4d99db-af56-4362-a1e7-d972dc6e8b1a','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','2a352437-950c-42a9-9135-55482cf3977c','2025-07-31 08:17:16.496',4829,'3c7190b6-f6ee-4275-8958-d7af952132ab','DİANA MUJKİC','436641534757','436641534757','Avusturya','SAALFELDEN','5760','MÜHLBACHWEG 6/13 5760 SAALFELDEN AVUSTURYA',10,2,120,'371529841','0','0',NULL,310,1,'MOR ETİKET','2025-07-31 08:19:35.174','2025-08-25 07:10:47.314',NULL),
('da5cde0e-df59-488c-af62-13b113156c25','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-22 08:51:38.092',3394,'e6d4faef-484c-4ce7-992c-906e05fc083e','AYLA BAYKAL','4917640498968','4915209874981','Almanya','ELLWANGEN','73479','HOHENSTAUFENSTRASSE 47',3,6,110,'644606140','5','5','Hersey eksiksiz ve güzel paketlenmiş geldi teşekkür ederim ',2000,1,'KIRMIZI ETİKET ','2025-09-22 09:11:12.843','2025-10-17 09:24:11.052',NULL),
('da9eb398-85ed-41cb-b123-6ca8278d250d','1764a07b-eb47-4578-b6cd-f3c0d0e743be','29868815-59a3-472d-968a-f687cc30c0d6','2025-02-26 15:01:55.292',3271,'47880255-08ee-4e99-940b-16038e07de55','OSMAN SÖYLEMEZ','491722839598','491722839598','Almanya',NULL,'19370 ','MECKLENBURG-VORPOMMERN WİLLENİN STR 26 19370 PORCHİM ALMANYA',1,2,105,'478325717','0','0',NULL,100,1,'KIRMIZI ETİKETLİ','2025-02-26 15:02:40.140','2025-04-05 17:48:11.560',NULL),
('dacd398a-1156-4c32-ba9e-e38cdcc1856c','8fff5e14-418c-4377-bd83-3a3f81383507','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-28 09:21:11.104',10165,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SABRİ ÖNÜZ','31642163844',NULL,'Hollanda','AMERSFOORT','3825','VALUTABOULEVARD 29',0,3.5,120,'437762949','0','0',NULL,495,1,'TURUNCU ETİKET','2025-08-28 09:22:55.429','2025-09-12 19:47:24.575',NULL),
('dafa6134-d665-44c6-a01f-c4d1a6d1716a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-29 13:28:11.041',4094,'73596a75-b658-4249-8c71-b0490654bc8b','ERCAN GÜLER','33333333333333',NULL,'Almanya',NULL,'89081','BLUMENWEG 7',18,1,0,'735121904','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2024-11-29 13:28:58.232','2024-12-09 17:29:19.987',NULL),
('db01aefa-720b-410d-8344-0672007b060d','313cc2e2-5529-49ab-abe5-27b5d390bc5f','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-19 08:39:25.548',6304,'6133a2db-79c4-4372-9338-505db46b1847','CİGDEM DENKER ','4915738317562','4915206231877','Almanya','SAARBRÜCKEN','66113','TRARBACHER PLATZ 4\n66113 SAARBRÜCKEN ',12,2,110,'613391684','0','0',NULL,700,1,'KIRMIZI ETİKET','2025-08-19 08:45:30.359','2025-09-18 15:08:12.558',NULL),
('db3bb2fe-b7ce-413d-8d13-9d22d875adbf','89428e9c-4d02-45c3-a044-0b2a5ac2465d','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-05 11:34:14.259',3540,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SEBA QASEM','491792005887',NULL,'Almanya','BERLİN','13355','RAMLERSTRABE 18A',12,2,110,'976763926','0','0',NULL,1250,1,'YEŞİL ETİKETLİ','2025-02-05 11:40:13.544','2025-03-21 17:17:29.974',NULL),
('db66575e-7eb2-4dcc-8fa6-1fe6496897e6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5c3b6f65-7feb-48ff-8a42-92c0157f1258','2024-03-18 08:47:07.651',3268,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SAFİ','33769502922','','Fransa','PARİS','75020','2 RUE DU GENERAL ',0,4,110,'449634859','0','0',NULL,1600,1,'','2024-03-18 08:49:03.176','2024-03-30 07:26:56.125',NULL),
('db777003-5be8-4bbb-b769-243e7d332355','ab532050-8a54-4cb4-9e27-59229ab24a9b','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-17 11:23:26.718',3269,'338e8c09-4ca5-4617-bfc1-a0692646d475','MESUL OLGUN','33651098791','33660921779','Fransa','GATTİERES','06510','1180 ROUTE DE LA BARONNE 06510 GATTİERES',5,2.5,130,'338607005','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-03-17 11:31:18.792','2025-04-26 17:55:32.224',NULL),
('db8cb965-bd59-4527-8579-8cb4852d50ad','56e5168e-cbcf-408d-8798-5560be5c7235','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-04 19:39:34.431',6953,'7bb6a552-e940-4456-bfc3-50a13013996c','TUĞÇE SUER ','4917670490126',NULL,'Almanya',NULL,'58509',' GREBBECKER WEG 16\n 58509 LÜDENSCHEİD \nGERMANY',0,2,110,'765484490','0','0',NULL,630,1,'SARI ETİKET ','2025-10-04 19:57:56.184','2025-10-20 06:33:02.574',NULL),
('dba78f99-2bf7-4c3e-b975-fcada3864c38','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-04-07 20:49:51.739',5594,'4126da30-ba9b-41b7-be29-865069aa484c','Resul şahin','31653670276','','Hollanda','Krommenie','1561','Blauwearend straat 2',0,2,100,'412532599','0','0',NULL,0,0,'Kırmızı etiketli','2024-04-07 20:51:53.851','2024-10-04 11:52:49.788','2024-10-04 11:52:49.798'),
('dba83242-e0e5-4632-86da-4f274ac9d9bc','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2025-01-17 19:35:30.116',2364,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','YAHİA FARWAİT ','4917655241882',NULL,'Almanya',NULL,'22821',NULL,0,2,140,'982896642','0','0',NULL,1300,0,NULL,'2025-01-17 19:36:36.613','2025-01-20 12:51:27.121','2025-01-20 12:51:27.125'),
('dbc44baf-94fa-4586-8bc2-04870b635e12','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 16:04:40.019',6219,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NİHAT SEMOĞLU','33644764905','','Fransa','MARSEİLLE','13015','3 CHEMIN DE LA BIGOTTE APT G25',18,1,110,'745175736','0','0',NULL,750,1,'MAVİ ETİKETLİ','2024-09-28 16:06:32.999','2024-10-12 15:51:02.378',NULL),
('dbf55493-8328-4ef5-b04e-34ca82fa458e','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-08-30 09:35:42.968',8869,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','SARAH KLEİN','436605954440','4366488118073','Avusturya','WİEN','1020','OTTO-FUTTERKNECHT WEG 1, 1020 WİEN',19,6.5,120,'505153730','0','0',NULL,1700,1,NULL,'2025-08-30 09:36:57.072','2025-10-13 06:40:11.320',NULL),
('dbff9e03-fe62-4dcb-8c9d-13d24c1e0455','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-10-13 17:09:52.357',3606,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','BERKAY GÜNERİ','4915229421101',NULL,'Almanya','HİLDESHEİM','31135','BERKAY GÜNERİ\n\nKİRSCHENWEG 37\n31135 HİLDESHEİM \n\n+4915229421101',0,5,110,'531481098','0','0',NULL,1750,0,NULL,'2025-10-13 17:11:46.867','2025-10-22 11:05:11.850',NULL),
('dc0e5911-5e20-4595-8d5a-e9803266613f','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-08 12:02:48.332',7397,'59868701-abe4-4705-a7e6-d91c2c69262e','OSMAN ASLAN','4915906477073','4915906477073','Almanya',NULL,'63825','KLİNGERSTRASSE 2, 63825 ALMANYA',22,2,110,'598127401','0','0',NULL,400,1,'YEŞİL ETİKETLİ','2025-04-08 12:03:58.464','2025-04-25 09:51:45.421',NULL),
('dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-20 11:06:36.635',3921,'59868701-abe4-4705-a7e6-d91c2c69262e','İLYAS GÖK','4917660866627','491783142283','Almanya',NULL,'50170','KORNBLUMENWEG 4, 50170 KERPON',14,6.5,110,'598982184','0','0',NULL,1600,1,'KIRMIZI ETİKET','2025-08-20 11:31:28.529','2025-09-03 05:44:44.106',NULL),
('dc416865-0c74-4fdd-89bf-5ec5f8499eb4','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-04 10:42:58.282',4572,'a42d8839-caef-4422-888f-cbfdf4188c5b',' BİRSEN DÜZ','491739368382','491625851348','Almanya',NULL,' 153 86167','NEUBURGER STRASSE 153 86167',24,1.5,100,'428990953','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2024-12-04 10:46:20.734','2025-01-04 10:37:10.815',NULL),
('dc524c97-a5f3-4595-9e7c-64677cdda5fc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-15 09:23:59.478',2552,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','MUSTAFA ','491638317510','','Almanya','HAMBURG','21073','WİLSTORFER STRABE 82',6,8,100,'45559266','0','0',NULL,960,1,'','2024-10-15 09:36:15.509','2024-10-26 07:31:35.106',NULL),
('dc5d2caf-3941-4bd5-a27f-492541390d57','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-09 03:46:09.600',7485,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','SABRİNA METZGER ','4917646701488','4917646701488','Almanya','SCHRAMBERG','78713','SEELE 30 78713 WALDMÖSSİNGEN SCHRAMBERG, ALMANYA',20,3.5,110,'808922349','0','0',NULL,1100,1,'SARI ETİKET','2025-10-09 03:51:20.456','2025-10-22 07:00:50.606',NULL),
('dc68d2f6-756e-4103-ad16-7f8a226f0a50','769f3044-7b21-4f0b-9fb6-6c8f6900dfd8',NULL,'2024-11-20 12:36:53.167',9696,'d1ba1223-4475-415e-b63f-154a9404e56e','SHAHRAM RECEBİ ','41782224348',NULL,'İsviçre','ZURCH','8610','ADRESSE: \nSCHWEİZ 🇨🇭\nZÜRİCH, OETWİL AM SEE 8618\nBLATTENACKERSTRASSE 9\nSAMİRA RASSULY, SHAHRAM RECEBİ\n+41782224348',0,1,140,'112423451','0','0',NULL,2100,0,NULL,'2024-11-20 12:38:19.590','2024-11-21 10:10:22.457','2024-11-21 10:10:22.462'),
('dc6a520d-9bc9-41d3-90fd-f505b28363bf','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-11-04 08:45:44.385',1369,'47880255-08ee-4e99-940b-16038e07de55','AYŞE KONDAL','33782212899',NULL,'Fransa',NULL,'36000','11 RUE SAİNT VİNCENT 36000 CHATE AUROUX CENTRE VAL DE LAİRE FRANCE',1,1,55,'478530755','0','0',NULL,0,0,'KIRMIZI ETİKETLİ  CAM PARÇALAR ','2024-11-04 08:48:00.256','2024-11-28 16:59:19.376',NULL),
('dc6dd7f2-9d08-46bb-875c-df8315d9d4f3','313cc2e2-5529-49ab-abe5-27b5d390bc5f','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-19 08:46:46.584',3114,'6133a2db-79c4-4372-9338-505db46b1847','DANİAL ARAMESHK ','4917682417039','4917632057842','Almanya','BUXTEHUDE','21614','HERMANN LÖNS STRASSE 1\n21614 BUXTEHUDE',7,2,110,'613191069','0','0',NULL,795,1,'AÇIK KAHVE ','2025-08-19 08:50:47.309','2025-09-26 12:53:01.966',NULL),
('dcbe7eee-e054-430d-b60c-71cef3ff6b80','8fff5e14-418c-4377-bd83-3a3f81383507','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-15 11:33:05.370',3759,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','UMUTCAN ŞAHİNCİ','491789151262','491742419200','Almanya','MÜNİH','81375','HEDERNFELD 23',5,6,110,'437870707','0','0',NULL,1140,1,'YEŞİL ETİKETLİ','2025-08-15 11:36:38.082','2025-09-03 06:11:58.365',NULL),
('dcf208dc-cd3f-4596-9430-d35849bbc2f6','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-21 12:44:05.467',10184,'e6d4faef-484c-4ce7-992c-906e05fc083e','TUNAY KOCATÜRK','4917642201800','4917672242930','Almanya','BERLİN','13469','BÜRGERSRUH 40',16,5.5,110,'644196383','0','0',NULL,1500,1,'MOR ETİKETLİ','2025-08-21 12:54:37.905','2025-09-12 22:10:08.783',NULL),
('dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-22 13:25:46.573',10088,'27cbce83-310c-4e98-830f-7433b10c2efd','FERHAT CAN','4915771419674',NULL,'Almanya',NULL,'87700','HİNDENBURGRİNG 1',2,3,110,'278498481','5','5','Söför cok iyidi sagolsun\n					ERDOĞAN ŞOFÖR:0532 772 21 33',975,1,'TURUNCU ETİKETLİ','2025-08-22 13:27:53.056','2025-09-03 13:07:35.387',NULL),
('dd9776e7-4b61-4272-8e40-984a52a0303d','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-16 09:09:59.860',1571,'3c7190b6-f6ee-4275-8958-d7af952132ab','DİLAN ÇELİK TOGAN','4917624194526','4917624194526','Almanya','MÜNİH','80939','FRİEDERİKE NADİG ALLEE 88 80939 MÜNİH ALMANYA',22,3,110,'371881042','0','0',NULL,900,1,'PEMBE ETİKET','2025-06-16 09:18:26.317','2025-07-04 21:24:28.083',NULL),
('de0107fb-beb9-41b1-aa9c-f833474e8edc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-12 07:40:19.401',4957,'7487951b-3af6-4f83-a5fa-6847a10dd8c6','LUSYA YILDIRIM ','33660544556','33781578681','Fransa',NULL,'54200','11 RUE PAUL CHEVRİER',14,5.5,120,'748330948','0','0',NULL,1590,1,'PEMBE ETİKETLİ','2025-03-12 07:44:03.590','2025-03-22 07:37:16.803',NULL),
('de0c9db6-1fef-4c46-a93e-6a2c8ee6458c','769f3044-7b21-4f0b-9fb6-6c8f6900dfd8','d123109e-9a26-4781-939a-87cda202f683','2024-11-14 11:14:19.674',10168,'d1ba1223-4475-415e-b63f-154a9404e56e','FATEMEH HOSSAİNİ','41782402516',NULL,'İsviçre','STRENGELBACH','4802','STREUMATTWEG /8',4,3.5,140,'112787965','0','0',NULL,1300,1,'KREM RENK ETİKETLİ','2024-11-14 11:19:58.596','2024-12-15 20:07:20.068',NULL),
('de3ce73a-57c4-41fb-a63c-fcd11d57868a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-19 15:01:00.511',9943,'c2d4ce84-536d-4816-837f-7abbf6a7e061','AAAAAA','152636273636363',NULL,'Almanya',NULL,'13509',NULL,9,2,105,'248135683','0','0',NULL,0,0,'GRİ-BEYAZ ETİKETLİ MOBİLYA','2025-01-19 16:14:11.393','2025-01-29 14:52:37.817',NULL),
('de492754-6967-40e1-bf64-463ad84fdd39','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-08-04 12:50:48.532',10084,'e6d4faef-484c-4ce7-992c-906e05fc083e','MAZHAR BAYMAN SSH','4915256924287','4915733741918','Almanya','UHLDİNGEN','88690','OBERE AUEN 2',13,3.5,110,'644803178','0','0',NULL,400,1,'SARI ETİKET','2025-08-04 12:58:59.646','2025-10-09 09:24:57.388',NULL),
('de4f6039-e43d-4b0d-8dd2-09c55847c5d4','89428e9c-4d02-45c3-a044-0b2a5ac2465d','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-04-25 21:14:27.710',7699,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','YASEMİN KARAKOC','4915228688524',NULL,'Almanya','GROSS-ZİMMERN','64846','TAUNUSSTRASSE 12',15,3,110,'976430102','0','0',NULL,1000,1,'SARI ETİKETLİ','2025-04-25 21:19:11.855','2025-05-21 08:16:34.944',NULL),
('de85f240-06d7-4fff-b4e2-41ac785a6a29','d008d786-a02e-404b-b090-54460d9d421e',NULL,'2025-10-23 11:02:50.495',8415,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ŞAHİNNUR AYDINSOY','491779828986','4917684501919','Almanya','50739KÖLN','101','SCHİEFERSBURGER',0,2,110,'657680010','0','0',NULL,0,0,NULL,'2025-10-23 11:06:30.975','2025-10-24 09:35:12.972',NULL),
('deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba','f784b688-ba6b-4886-87dd-fe4cfbed85b4','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-14 13:58:34.168',10895,'dea91080-5383-4085-af2e-7eace2c64224','MUSTAFA DÜNDAR','4917624132760','4917639148019','Almanya',NULL,'18107','OSLOER STR.6		\n18107 ROSTOCK/DEUTSCHLAND		\n',3,2,110,'91030681','0','0',NULL,0,0,'YEŞİL ETİKETLİ KARGOYA VEREBİLİRİZ','2025-04-14 13:59:47.759','2025-05-24 17:55:00.061',NULL),
('dec449a3-13d6-40c8-925a-d1283d5b0a59','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-01 12:33:37.163',7626,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','TARA SAİDA','004915231627768',NULL,'Almanya','KASSEL','34127','\nROHRWİESENSTRASSE 11, 34127 KASSEL \n0152 31627768',14,2.5,110,'531893295','0','0',NULL,775,1,'MOR PEMBE ETİKETLİ','2025-08-01 12:36:44.968','2025-09-24 14:32:37.478',NULL),
('dedf152d-bf4e-47e1-b412-9078997573d4','eccfe611-9163-42aa-a1ff-e711af0248e6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-02 12:24:16.590',9796,'22a1dbd6-475c-4d4b-bb13-f459e3029634','DİJWAR TAŞÇEVİREN','491722373298',NULL,'Almanya',NULL,'48529','KANALWEG 87 B 48529 NORDHORN',8,5.5,110,'221485829','0','0',NULL,1800,1,'AÇIK YEŞİL ETİKETLİ','2025-09-02 12:30:09.196','2025-09-25 06:48:32.381',NULL),
('dee2df14-4bb3-4032-b3d7-994566aa604d','8184d19c-0d1f-4439-978c-7a3364e54967',NULL,'2025-10-13 13:52:46.678',6946,'b0c1192a-7d38-4b69-a901-778f65a98b9d',' HÜSEYİN BAŞARAN ','4917684524521',NULL,'Almanya','DEUTSCHLAND','76149',' NEUREUTER QUERALLEE 4 \n76149 KARLSRUHE \nDEUTSCHLAND',0,2,110,'011137512','0','0',NULL,550,0,NULL,'2025-10-13 13:54:23.747','2025-10-27 07:55:39.319',NULL),
('dee76d86-fa33-4f64-84d6-a8bb4fd71acc','1764a07b-eb47-4578-b6cd-f3c0d0e743be','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-17 08:46:28.789',3922,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA ÇELİK','4915738754138','4915788624211','Almanya','RHOİN','79576','KYBECK STRASE30 79576 WELLAM RHOİN ALMANYA',12,2,0,'47888654','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-01-17 08:50:24.522','2025-01-30 16:21:08.969',NULL),
('def7f2ab-5847-442b-86e4-71e9c7cd2dcc','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-01 12:47:30.775',6485,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','IMAN JAWİD','313115689790',NULL,'Hollanda','KRİMPEN AAN DEN İJSSEL ','2922EL','MİDDENWETERİNG 262\nSTADT:          KRİMPEN AAN DEN İJSSEL \n PLZ:            2922EL \n LAND :         NİEDERLANDE',4,2,120,'531245816','0','0',NULL,740,1,'RENKSİZ KAPAKDA','2025-08-01 12:53:11.669','2025-09-04 21:03:37.661',NULL),
('def82a96-8956-42bc-885f-988dfa22f789','05135cd5-2d33-4363-b51e-c9b83a94094d','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-09-06 17:00:13.908',1109,'4126da30-ba9b-41b7-be29-865069aa484c','LOWENSTERN','4368181727723',NULL,'Avusturya',NULL,'2482',NULL,10,2,0,'412990147','5','5','Çok memnun kaldım ',300,1,'AÇIK MAVİ ETİKETLİ','2025-09-06 17:01:39.338','2025-09-18 07:06:23.786',NULL),
('df272a39-1da5-45c1-8cc4-f06c8c993887','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-30 07:02:17.372',3881,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YUSUF DURSUN','436601503958','','Avusturya','RİED','4910','REİDAUER STR 44',0,4.5,120,'501668492','0','0',NULL,1500,1,'TURUNCU ETİKETLİ','2024-03-30 07:05:44.191','2024-04-03 08:28:04.945',NULL),
('df3b6b97-3416-43f5-bb61-b50d903d9f72','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-09-04 15:10:33.080',3651,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','FATMİRA CELA','4917660886216','','Almanya','PRÜM','54595','FURHWES 26',14,5,100,'449281517','0','0',NULL,2350,1,'MAVİ ETİKETLİ','2024-09-04 15:12:09.270','2024-09-13 16:38:28.325',NULL),
('df44df14-24ab-4b9d-b75e-64df6dd06eb0','f784b688-ba6b-4886-87dd-fe4cfbed85b4','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-11 20:09:39.746',6060,'dea91080-5383-4085-af2e-7eace2c64224','KUBİLAY AKTAR','33768894970','33768894970','Fransa',NULL,'57050','136 ROUTE DE WOİPPY		\n57050 METZ/FRANCE		\n',11,5.5,120,'910473991','0','0',NULL,1450,1,'KIRMIZI ETİKETLİ','2025-06-11 20:11:12.109','2025-07-09 11:39:43.084',NULL),
('df4cdd55-cb8f-4a40-ae52-688e5f8e5432','51b55e5b-7487-4d8a-923e-163f04d0b1d9','66307a01-d585-4127-903b-18748421c29e','2025-04-26 14:40:14.963',1807,'4126da30-ba9b-41b7-be29-865069aa484c','BMD ELİF ÇEKİCİ','436602086672',NULL,'Avusturya',NULL,'2441','LAGERTSTRABE 6',22,2,0,'412784700','0','0',NULL,250,1,'1 PALET','2025-04-26 14:40:49.662','2025-05-03 09:04:59.711',NULL),
('df54dcca-24e3-4d47-9eea-e04e05622ecc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-24 10:37:22.116',3639,'a42d8839-caef-4422-888f-cbfdf4188c5b','KADİR ÖZCAN ','491749753629','4917635994280','Almanya','WEİNSTRABE','67433','ALLENSTEİNER STRABE 22 ',0,4,100,'428360379','0','0',NULL,500,1,'MOR ETİKETLİ','2024-09-24 10:46:49.870','2024-10-08 07:57:35.037',NULL),
('df564c56-1964-45d7-946b-9c1121729fa8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-13 20:20:55.510',9468,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','VEBİ DZELLİ','41788774757',NULL,'İsviçre',NULL,'8953',NULL,8,2.5,140,'98222656','0','0',NULL,2500,1,'Yeşil etiketli','2025-02-13 20:21:44.253','2025-02-24 20:28:04.441',NULL),
('df58ec64-55e5-44c2-990e-e1e6e1cdf1cc','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-09 08:42:27.074',3681,'e6d4faef-484c-4ce7-992c-906e05fc083e','ZEKİYE TOPATAN','491635169159','491621551678','Almanya','LÜNEN','44534','WİLHEM HAUFF STRABE 13, 44534 LÜNEN ALMANYA',12,6,110,'644877146','0','0',NULL,2850,1,'MAVİ ETİKETLİ','2025-03-09 08:49:35.748','2025-04-08 15:36:58.887',NULL),
('df701c4a-c387-4a31-b317-a8fec3d8ae59','ab532050-8a54-4cb4-9e27-59229ab24a9b','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-22 06:56:02.861',4962,'338e8c09-4ca5-4617-bfc1-a0692646d475','HÜLYA MEŞE','31641319611','31641978848','Hollanda',NULL,'2543','2543 AC STEENZICHT 123',5,2,120,'338411689','0','0',NULL,300,1,'GRİ ETİKETLİ','2025-04-22 07:00:02.086','2025-05-02 17:09:00.996',NULL),
('df9c125a-f311-496d-96b6-2c41f3e5ed96','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-03-13 11:02:35.049',9459,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','LEILA GELES','33695585562','33695585562','Fransa',NULL,'95400','6 RUE ALBERT LEFEBVRE 95400 ARNOUVILLE FRANSA ',0,2,130,'745230171','0','0',NULL,0,0,'6.5 M3 ','2025-03-13 11:04:14.509','2025-03-13 14:59:41.406','2025-03-13 14:59:41.409'),
('df9f1c03-7e5e-40ee-8715-8a2d4326acb0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 13:08:11.389',6026,'73596a75-b658-4249-8c71-b0490654bc8b','ALİ ŞİMŞEK','0033767846954',NULL,'Fransa','WOİPPY','57140','RUE DE PRELES ',5,1,0,'735736030','0','0',NULL,680,1,'PEMBE ETİKETLİ','2024-12-13 13:12:42.302','2024-12-24 12:30:21.380',NULL),
('dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f1349ad1-099b-4319-af1c-56927ca0d070','2024-05-11 08:49:14.649',4229,'1bf2ee62-29f3-4d32-9c25-7d51c7d34096','MÜLLER CYRİLL','41799463289','','İsviçre','STETTEN','5608','KÜNTER STRASSE 4 ',3,1.5,140,'126525086','0','0',NULL,1750,1,'Turuncu etiketli','2024-05-11 08:50:56.737','2024-05-29 18:59:20.397',NULL),
('e007fd33-7715-4011-8189-99fce010ccdf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:05:49.078',10503,'b734c482-3c00-4897-ad35-bc358cd02d56','CANAN DİNÇ','','','Fransa','MARSİLYA','13013','75 AVENUE DES POİLUS ',14,7,96,'734245011','0','0',NULL,700,1,'KIRMIZI ETİKETLİ','2024-03-16 08:08:34.308','2024-03-29 17:57:47.299',NULL),
('e00a4597-7f8a-4e0f-8cd9-480107421adb','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-09 08:29:48.595',2868,'e6d4faef-484c-4ce7-992c-906e05fc083e','BETÜL ÇELİK','4917673582903','491625968428','Almanya','HAMBURG','21107','VERİNGSTR 92, 21107 HAMBURG ALMANYA',5,2,110,'644334455','0','0',NULL,550,1,'SARI ETİKETLİ','2025-03-09 08:34:36.320','2025-04-28 11:59:03.141',NULL),
('e015be65-fcb6-4e8a-8bc0-935d14b02ec6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-18 21:23:35.153',2789,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','RODRİGUES AMİNA','33780501083','','Fransa','CHAMPFLEUR','72610','10 RUE DE LA GASSE BLANCHE',13,1,110,'982542299','0','0',NULL,1900,1,'PEMBE ETİKETLİ','2024-09-18 21:25:44.568','2024-09-28 12:18:48.558',NULL),
('e015e4c5-099b-4cf1-ade2-891af283be78','eccfe611-9163-42aa-a1ff-e711af0248e6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-26 11:54:22.334',8827,'22a1dbd6-475c-4d4b-bb13-f459e3029634','TAYSUMA ESET','32465396386',NULL,'Belçika',NULL,'4800','PLACE SOMMELEVİLLE 75/VERVİERS 4800',6,2,120,'221944135','0','0',NULL,475,1,'YEŞİL ETİKETLİ','2025-02-26 11:55:42.743','2025-03-19 12:35:48.760',NULL),
('e0294a05-406d-40f2-9ebf-a0f322513cfa','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 14:50:16.437',3519,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MUHTEREM KAYA','4915772153329',NULL,'Almanya',NULL,'47506','KREUZSTRASSE 14B',19,1,0,'465891539','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ---- AHMET ÖZDEMİR MÜŞTERİSİNE BIRAKILCAK','2024-11-21 14:51:23.296','2024-12-03 21:17:16.301',NULL),
('e02cad26-f190-42d8-831b-be16442b5e99','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-09-16 07:21:24.696',7982,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','MEHMET TERCAN','33643842637','','Fransa','QUİMPER','29000','26 RUE SUZZANE FLON',0,4.5,110,'501873907','0','0',NULL,0,0,'','2024-09-16 07:30:16.508','2024-10-28 11:36:11.115','2024-10-28 11:36:11.124'),
('e032e33f-200c-486b-ab1c-c92b86e89536','394112c3-f977-4fc2-b430-775e79e472ca',NULL,'2024-11-03 21:16:50.269',10371,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','Nurkovic jasmın ','352621224281',NULL,'Lüksemburg',NULL,'3583','3583 Luxemburg ',0,4,100,'982572348','0','0',NULL,3100,0,NULL,'2024-11-03 21:18:11.245','2024-11-06 14:20:41.350','2024-11-06 14:20:41.357'),
('e044efcc-ec9d-4901-8d6f-56f4f548947a','8fff5e14-418c-4377-bd83-3a3f81383507',NULL,'2025-01-27 11:55:19.599',8084,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MİRAÇ SAKAR','41766263875','41762293875','İsviçre','AESCH-BL','4147','FİECHTENWEG 4',0,2,140,'437847960','0','0',NULL,2200,0,NULL,'2025-01-27 11:58:50.315','2025-01-28 09:11:39.475','2025-01-28 09:11:39.478'),
('e0988cbc-88e9-4211-a047-1305ad22fb1a','5c723cdc-e582-4b00-8271-838c085984c2','3b62d0b0-51d7-42b2-859b-2577ea3967c4','2025-09-15 09:58:10.340',3784,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HUSSRAH MUHAMAD','436609507300','436763366858','Avusturya',NULL,'6900','MEHRERAUER STR 35 6900 BREGENZ AUSTRIA',16,2.5,140,'745464679','0','0',NULL,550,1,'TURUNCU ETİKET','2025-09-15 09:57:26.827','2025-10-07 14:12:37.914',NULL),
('e0c4f0d4-cef1-4622-8782-650f949049ae','f784b688-ba6b-4886-87dd-fe4cfbed85b4','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-13 08:26:28.849',6392,'dea91080-5383-4085-af2e-7eace2c64224','MUHSİN GÜMÜŞ','491747865915','491739128442','Almanya',NULL,'47229','47.229 TL		\nDUİSBUG RHEİNHAUSEN		\nPAUL STR.NR 20		\n',14,4.5,110,'910225013','0','0',NULL,850,1,'SARI ETİKETLİ','2025-02-13 08:28:58.659','2025-03-06 10:33:36.756',NULL),
('e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-18 08:52:21.299',9521,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','DUDU AKSOY','32483639632','','Belçika','ENTWERPEN','2980','MAALSTRAAT 20',12,10,100,'982944278','1','1','Ben ürünleri ısmarlayayım 15.gun oldu hala elime ulaşmadı malesef dudu aksoy',5050,1,'AÇIK MAVİ ETİKETLİ','2024-03-18 08:59:42.538','2024-04-08 18:56:11.061',NULL),
('e0e86ba2-e859-4ff8-909a-d80a2fa0e942','51b55e5b-7487-4d8a-923e-163f04d0b1d9','dec3986f-102f-43bc-891f-7de9ebce0626','2025-09-17 08:32:28.343',2226,'4126da30-ba9b-41b7-be29-865069aa484c','CAVDAROĞLU','1111111111',NULL,'Hollanda',NULL,'0000',NULL,4,2,0,'412955343','0','0',NULL,0,0,'YEŞİL ETİKET','2025-09-17 08:33:23.667','2025-10-02 06:11:59.159',NULL),
('e0ff461d-a3df-473b-8c9d-6d28295d3169','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-14 12:05:09.694',4375,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','RASİM EKİCİ','491738610898','491713217344','Almanya','','41061','JOHANNES STR 23',14,3,100,'614462377','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2024-08-14 12:07:17.895','2024-09-02 08:33:41.727',NULL),
('e10bc182-1962-4aff-b973-093a04c71419','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-11-12 15:18:00.873',6189,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM ULUSOY','4915116506734',NULL,'Almanya',NULL,'25451','KOMPSTRASSE 27',2,3.5,100,'74582542','4','5','Tam zamanında ve hasarsız geldi , şôfer  YILDÎZ beyde çok yardımcı oldu emeği geçenlere ćok teşekkür ederiz ',1000,1,'YEŞİL ETİKETLİ','2024-11-12 15:20:51.634','2024-11-23 17:22:45.372',NULL),
('e11f564b-74bf-4751-85eb-7e44c0361b37','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-03 11:57:49.721',8156,'dea91080-5383-4085-af2e-7eace2c64224','NURAY KARABURUN ','33641688938','33651128899','Fransa',NULL,'93700','35 RUE ANTALOE ',4,5,120,'910407767','0','0',NULL,2300,1,'PEMBE ETİKETLİ','2025-01-03 11:59:32.727','2025-01-10 16:34:01.975',NULL),
('e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-02 08:10:31.163',9281,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HATİCE GÜRBAY','491797361185',NULL,'Almanya',NULL,'60529','GEİSENHEİMER STR.22  60529 FRANFURT AM MAİN ALMANYA',28,2.5,110,'22140129','0','0',NULL,1000,1,'MOR ETİKETLİ','2025-01-02 08:13:32.595','2025-02-06 09:24:52.517',NULL),
('e15a4b43-14fe-4dd6-badf-02324cd22358','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 13:16:26.653',1635,'c2d4ce84-536d-4816-837f-7abbf6a7e061','OMER AL HASHİMİ','4917621775296',NULL,'Almanya',NULL,'79108','WÖHLER STRABE 2',10,1,0,'248203029','0','0',NULL,700,1,'BEJ RENK ETİKETLİ','2024-12-13 13:21:19.714','2024-12-21 21:13:09.807',NULL),
('e16c760d-d790-4586-b7cc-374c53cefd14','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-04-30 12:29:59.978',6102,'3c7190b6-f6ee-4275-8958-d7af952132ab','METE AKGÜL','491729283228','491729283228','Almanya','VÖLKLİNGEN','66333','VİKTORİASTRABE 20A 66333 VÖLKLİNGEN',11,3.5,110,'371857345','0','0',NULL,1050,1,'GRİ RENK','2025-04-30 12:37:50.914','2025-07-28 18:40:04.194',NULL),
('e16f7651-2afd-45bc-9a35-39463a07d099','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-01 16:03:11.419',10092,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ONUR AKDAĞ','3637373838383848',NULL,'Hollanda',NULL,'5343','DE KAS 8',0,2,120,'65722132','0','0',NULL,300,1,'PALET','2025-07-01 16:04:07.661','2025-07-29 13:54:21.901',NULL),
('e1708729-2a47-405a-bcc7-a59e67a2f89c','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b',NULL,'2025-09-15 06:37:08.519',3923,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','KEVSER ŞİMŞEK','4915755050311','4915739294224','Almanya','PFORZHEİM','75179','THEDOR MOHR STR 25',0,2,110,'505355748','0','0',NULL,700,0,NULL,'2025-09-15 06:41:17.376','2025-10-23 07:44:03.402',NULL),
('e1bb043d-37c4-4f82-9935-600eeef13a23','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:49:57.792',2523,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','İRFAN MUTLU','31614367096','31634565565','Hollanda','ROTTERDAM','3074','DONKERSLOOT STRAAT 51',5,4.5,100,'614390628','5','4','Hizmetiniz için teşekkür edriz memnun kaldık',750,1,'GRİ ETİKETLİ','2024-05-29 09:55:26.714','2024-06-11 14:44:54.500',NULL),
('e1db05d8-3a36-4066-8f42-7fd65a69076a','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-05-13 08:18:05.682',6922,'3c7190b6-f6ee-4275-8958-d7af952132ab','ENDER CAN ORHAN','4917632871716','4917632871716','Almanya','ELMSHORN','25335','PETERSTRABE 24 25335 ELMSHORN ALMANYA',1,2,110,'371836215','0','0',NULL,800,1,'MERMER MASA','2025-05-13 08:20:11.763','2025-05-26 06:42:53.855',NULL),
('e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1','89428e9c-4d02-45c3-a044-0b2a5ac2465d','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-16 12:45:38.267',10234,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','SONGÜL GÜRKAN','4917641365513','4917631097857','Almanya','DİLLENBURG','35683','KÖNİGSBERGER 2',23,3.5,110,'976843037','1','5','10',1150,1,'MAVİ ETİKETLİ','2025-03-16 12:51:35.730','2025-04-05 22:33:54.084',NULL),
('e221f07b-ec1d-448a-801d-7d5296e3b735','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-20 15:06:21.825',2801,'4126da30-ba9b-41b7-be29-865069aa484c','ZEKERİYA HOCA','491718276465','','Almanya','Dortmund','44149','Auf dem brummer1',13,1,0,'412903480','3','5','Tuğlaların bir kısmı kırılmıştı. Nakliyede olabilecek birşey değil. Sanırım yüklemede kırıldı',2300,1,'TUĞLA VE YAPIŞTIRICI ','2024-08-20 15:06:40.446','2024-09-02 08:38:25.374',NULL),
('e24a5a16-cb38-43a9-8612-8532bd457d6b','eccfe611-9163-42aa-a1ff-e711af0248e6','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-05-21 15:34:38.363',9587,'22a1dbd6-475c-4d4b-bb13-f459e3029634','KEVSER DENİZ ','33679750944',NULL,'Fransa',NULL,'67210','31 RUE DE LA SABLİERE 67210 OBERNAİ',13,2.5,120,'221368256','5','5','Eksiksiz ',850,1,'(MOR RENK)','2025-05-21 15:36:25.376','2025-07-08 13:06:56.140',NULL),
('e27a6e41-2b2f-403e-91f9-f5bd285a2d96','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-03-18 08:49:05.601',5542,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ENİ SYLEJMANİ','41782664887','','İsviçre','FLAWİL','9230','WİSENTOLWEG 4',0,4.5,140,'449226674','0','0',NULL,0,0,'','2024-03-18 08:50:20.983','2024-03-30 10:34:12.418','2024-03-30 10:34:12.432'),
('e284eca9-ac8c-444b-9259-006514765b59','8fff5e14-418c-4377-bd83-3a3f81383507','05e8de78-1979-427a-85ea-4116295aadf5','2025-08-28 15:41:24.403',2677,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ÖZGÜR ÇEŞME','32488863952','32489883387','Belçika','SINTAMANDSBERG','9040','STAFBUGGENSTROOT',12,6,120,'437694817','0','0',NULL,1120,1,'AÇIK MAVİ ETİKET ','2025-08-28 15:44:55.918','2025-10-15 08:20:42.154',NULL),
('e2917618-7147-4577-94d1-c21f2fc158c1','05135cd5-2d33-4363-b51e-c9b83a94094d','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 08:07:26.282',6579,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','EBRU PAYAS','31621850088',NULL,'Hollanda',NULL,'6045','PİETER BOTHSRAAT 15',18,2,120,'657408169','0','0',NULL,300,1,'PALET','2025-05-13 08:08:14.812','2025-06-05 16:38:11.077',NULL),
('e29cd434-988f-45c9-8c62-49efd76090dd','313cc2e2-5529-49ab-abe5-27b5d390bc5f','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-24 16:01:17.698',9024,'6133a2db-79c4-4372-9338-505db46b1847','MURAT KİRİKKAYA','4915750967512','4915172058475','Almanya','AUGSBURG','86161','FRİEDBERGERSTRASSE 39 A 86161 AUGSBURG',21,2,110,'613529206','0','0',NULL,400,1,'BEJ ETİKETLİ','2025-03-24 16:05:17.072','2025-05-05 11:34:37.879',NULL),
('e2cd59c5-096c-4f6a-9181-6be527344ec8','173956a2-c232-495a-b036-4a6a36c073e2',NULL,'2024-10-31 18:25:48.710',4943,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','Ayşegül telli','491716488120','491716488120','Almanya','Wilhemstrabe','56598','Müşteri yarı ödemeyi kapıda Western ile gönderecek onay tır şöförü ödeme aldığıma dair onay almasını rica ederim SAYGILAR 👋',0,1,100,'449235098','0','0',NULL,2620,0,'Ayşegül telli \nKöşe takımı 3 parça\n3 paket sandlaye ','2024-10-31 18:30:24.257','2024-10-31 19:01:36.125','2024-10-31 19:01:36.133'),
('e2f03dd5-01f8-4162-8079-906edf448e38','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-05 10:29:57.467',9261,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','NADİNE NATUR','4915172748624',NULL,'Almanya','PETER-RİCHARZ-STR 31 40229 DÜSSELDORF','40229',NULL,26,3.5,110,'817303639','0','0',NULL,1000,1,'PEMBE ETİKETLİ','2025-05-05 10:31:01.623','2025-06-04 19:42:15.628',NULL),
('e30052e8-31ee-42d9-b11e-50298f473091','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 12:40:12.300',9678,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METİN PEKSERT','4915752948798','4977219162688','Almanya','','78050','VILLINGEN SCHWNNIGEN',10,1,100,'745645972','0','0',NULL,1700,1,'YEŞİL ETİKETLİ','2024-10-17 12:43:16.094','2024-10-25 05:44:32.816',NULL),
('e301bfde-0e98-47a1-9771-598a50c6dac0','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-04-05 07:42:20.207',9608,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','BERHAN GEZER','','','Fransa','','','',0,8.5,110,'501119446','0','0',NULL,0,0,'Pembe etiketli','2024-04-05 08:14:48.070','2024-05-11 08:44:44.214','2024-05-11 08:44:44.222'),
('e3176b45-a9ae-470a-9151-1ab0181ca82c','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-08 09:59:51.613',6846,'e6d4faef-484c-4ce7-992c-906e05fc083e','CAN ALTIN','4917681341973','4957852966','Almanya','BERLİN','12349','AM MÜHLENGER 15, 12349 BERLİN ALMANYA',7,2,110,'644110179','0','0',NULL,600,1,'SARI ETİKETLİ','2025-03-08 10:06:20.507','2025-04-05 10:57:53.233',NULL),
('e31c6c18-6f02-4884-a633-8cc09e6edad0','5c723cdc-e582-4b00-8271-838c085984c2','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-13 10:10:52.391',10233,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SUAT TANER','4917660360530',NULL,'Almanya',NULL,'58791','WALDSTR 20 58791 ALMANYA',24,3,105,'745129121','0','0',NULL,1250,1,'MAVİ ETİKETLİ','2025-01-13 10:13:55.971','2025-02-06 09:25:13.567',NULL),
('e31fb4e2-d701-4393-8a77-ea678eda57d0','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'2024-11-20 13:34:18.428',7133,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','SÜLEYMAN ACAR ','436603860084','436606004744','Avusturya',NULL,'2215','RAGGERDARF',0,4.5,140,'319400399','0','0',NULL,1100,0,NULL,'2024-11-20 13:36:54.028','2024-12-19 08:24:13.929','2024-12-19 08:24:13.935'),
('e33482b3-d69f-4355-a934-88d95502f498','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-03-17 13:41:29.936',10207,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ARZU BÖÇKÜN','4915735873115',NULL,'Almanya','HANNOVER','31275','İLTENER STRASE 69 //31275 //LEHRTE //HANNOVER',0,2,110,'614396899','0','0',NULL,0,0,NULL,'2025-03-17 13:50:52.196','2025-03-17 13:53:53.654','2025-03-17 13:53:53.657'),
('e343cdb8-530a-4273-b51b-de80339b581f','eccfe611-9163-42aa-a1ff-e711af0248e6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-16 09:13:50.480',9191,'22a1dbd6-475c-4d4b-bb13-f459e3029634','FEHMİ TÜRK','32484569917',NULL,'Belçika',NULL,'3581','STEEG 30,3581 BERİNGEN LİMBURG',12,3,120,'221570854','5','5','Saygili bir sofurunuz oldugunu hatirlatmak isterim..cok tskrl recep abi',1000,1,'PEMBE ETİKET','2025-06-16 09:15:44.868','2025-07-21 18:12:24.103',NULL),
('e34a405c-b206-4de1-aca3-4f8e33268107','5c723cdc-e582-4b00-8271-838c085984c2','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-04 12:23:10.263',2179,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MEHMET KIRMALI','4917644265408','4917644265407','Almanya',NULL,'78532','SCHLÖSSLEWEG 15 78532 TUTTLINGEN ALMANYA',22,2,105,'745471905','0','0',NULL,1300,1,'SARI ETİKETLİ','2025-03-04 12:29:51.404','2025-03-19 12:37:00.703',NULL),
('e34fd977-db36-4dab-bb2f-73cdf84f2f2e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','2024-03-23 07:13:29.037',6393,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ROBERT HASİMOVOC','49015779002510','','Almanya','','13158','',4,3.5,130,'982189682','0','0',NULL,1350,1,'YEŞİL ETİKETLİ','2024-03-23 07:18:43.387','2024-04-04 12:48:48.669',NULL),
('e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-23 08:52:47.869',7609,'47880255-08ee-4e99-940b-16038e07de55','HASAN BÜLBÜL','33695033884','9033613943364','Fransa','LAXOU','54520','5 RUE DELORNOTİA APP 5176 ETA 4',17,3,110,'478941206','0','0',NULL,1050,1,'SARI ETİKETLİ','2024-10-23 08:54:45.029','2024-11-04 08:40:42.087',NULL),
('e37361e5-2f1a-4a2b-b066-a2b1f2111d2b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-02-24 10:18:59.398',8594,'eafb4551-6e5e-49d5-bca3-02ccb8c16d64','BURCU HANIM ','436503440942',NULL,'Avusturya',NULL,'6850','RATFARBGASSE 15',9,2,140,'455207811','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-02-24 10:22:08.180','2025-03-13 19:03:08.684',NULL),
('e3871411-a780-42a7-af06-7808ea097f15','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-24 12:38:29.837',7858,'e6d4faef-484c-4ce7-992c-906e05fc083e','RUKİYE TURAN','491784364840','491791163970','Almanya','DUİSBURG','47167','BİRDE KOPARNİKVSSTR98',8,3,110,'644301613','0','0',NULL,590,1,'AÇIK KAHVE ETİKET ','2025-09-24 12:45:36.965','2025-10-20 06:32:03.725',NULL),
('e3871616-22f9-4e6e-a66d-92c839f7de15','8fff5e14-418c-4377-bd83-3a3f81383507','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-22 07:39:54.668',10881,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MÜCAHİD AL SSH','31685834791',NULL,'Hollanda','AMSTERDAM','1064','HUMEHOF 2-1 1064 *B',4,2,120,'437379015','0','0',NULL,0,0,'ŞİŞE BOYA','2025-09-22 07:41:43.044','2025-10-16 15:46:47.649',NULL),
('e3943ece-5f39-454b-89e6-213b14b5658f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-04 12:30:34.499',6294,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','NUSRET GÜNEŞ ','492315800773',NULL,'Almanya','DORTMUND','44145','HAMMER STR 6',9,6,100,'501163993','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2024-10-04 12:32:52.199','2024-10-24 19:09:25.282',NULL),
('e39631a1-1e5a-43f8-9da1-b9fa1e37acf2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-23 08:05:00.609',8345,'47880255-08ee-4e99-940b-16038e07de55','ONUR ÖZER','33664036278','33664036278','Fransa','MARSİLYA','13015','7CHEMİN DES BRAUTİERES 13015 MARSEİLLE FRANSA',5,2,130,'478733242','0','0',NULL,0,0,'BEYAZ ETİKETLİ','2025-07-23 08:07:56.387','2025-08-04 10:55:14.687',NULL),
('e3a57d2d-4adf-4846-9fa6-c92de9e727ae','51b55e5b-7487-4d8a-923e-163f04d0b1d9','95d39b60-193e-460a-8e07-0929aa9f2949','2024-09-28 16:06:46.474',4230,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ERSİN','33651444703','','Fransa','NİCE','06300','176 ROUTE DE TURİN ',19,1,0,'248535027','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-09-28 16:08:04.701','2024-10-13 10:53:22.883',NULL),
('e3ac9fef-362e-47bc-802f-11dd3d8ca22d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-08 13:25:42.429',2884,'4126da30-ba9b-41b7-be29-865069aa484c','ESKİŞEHİR','0000000000000000',NULL,'Belçika',NULL,'9160',NULL,1,2,0,'412289507','0','0',NULL,0,0,NULL,'2025-03-08 13:26:20.868','2025-03-19 12:36:08.812',NULL),
('e3b1cbd7-aa49-4695-b628-c4b08d2b645d','394112c3-f977-4fc2-b430-775e79e472ca','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-06 11:36:34.404',4507,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SONJA HUSSAİNİ ','4917680107052',NULL,'Almanya','MÜNCHEN ','80636',NULL,23,4,100,'982529212','0','0',NULL,1400,1,'TURUNCU ETİKETLİ','2024-12-06 11:37:41.207','2024-12-17 19:52:32.750',NULL),
('e3b567b1-e72b-4ce6-a2aa-53a55fb530c1','eccfe611-9163-42aa-a1ff-e711af0248e6','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-01-29 11:48:03.466',5654,'22a1dbd6-475c-4d4b-bb13-f459e3029634','TBATOU SELMA ','33652263178',NULL,'Fransa',NULL,'31270','10 RUE SAİNT AUBİN APPT A21 31270 VİLLENEUVE TOLOSANE EN FRANCE',0,2,130,'221649442','1','1','Une chaise n’a toujours pas été livree',600,1,'MAVİ ETİKETLİ','2025-01-29 11:50:11.833','2025-03-24 07:40:53.998',NULL),
('e3d501f7-bb6a-427a-b83e-dcb6d20860d4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:35:13.501',1519,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','SEYFETTİN','32470652077','','Belçika','BUGGENHOUT','9255','KASTEEL STRAAT 223',11,2,0,'268437547','0','0',NULL,0,0,'YEŞİL ETİKETLİ\nSEYFETTİNDE ÜRÜNLER VAR DUDUYA BIRAKILCAK','2024-03-23 07:38:27.592','2024-04-04 12:48:01.104',NULL),
('e3db4a37-eb88-4141-a1ac-f9dc8586b414','8fff5e14-418c-4377-bd83-3a3f81383507','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-08 09:21:20.021',7395,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','FAZİLET ÖZÇELİK','436603703477',NULL,'Avusturya','WİEN','1210','KÜRSCHNER GASSE 11',17,3.5,120,'437232562','0','0',NULL,495,1,'YEŞİL ETİKET ','2025-08-08 09:24:00.945','2025-09-17 16:03:34.523',NULL),
('e41e7781-1c17-4d37-b049-0a5e20034834','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-29 09:37:07.951',6768,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','YUSUF AVCI','491728552763',NULL,'Almanya','SPAİCHİNGEN','78549','YUSUF AVCİ \nPRİMSTRASSE 17\n78549 SPAİCHİNGEN \nALMANYA',5,3.5,110,'817915882','0','0',NULL,1330,1,'KREM ETİKET ','2025-08-29 09:40:11.247','2025-09-19 12:34:16.375',NULL),
('e41e8e3b-d01a-4f78-b908-2a1eab2ded0c','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-07 13:32:20.770',5428,'22a1dbd6-475c-4d4b-bb13-f459e3029634','AZİME YETİM','31644100863',NULL,'Hollanda',NULL,'2551','DENİJSTRAAT 111 2551 HH DENHAAG ',8,1,120,'221752631','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2025-01-07 13:33:31.116','2025-02-10 14:15:56.720',NULL),
('e4376e5d-056f-4fc2-8f2c-979f3991845c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:37:09.580',6677,'47880255-08ee-4e99-940b-16038e07de55','GÖKBEN BEYDİLLİ','31687335737','316427445921','Hollanda','SCHİEDAM','3117','ALEİDASTRAUT 6',15,1,100,'478836905','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-09-27 12:40:14.252','2024-10-07 14:03:05.575',NULL),
('e4810702-1740-40c2-9d61-e9412939d07c','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-14 07:48:12.565',4599,'e6d4faef-484c-4ce7-992c-906e05fc083e','NAZIM KORKMAZER','491779772088','491779772089','Almanya','LEHRTE','31275','LANGE STRASSE 17C',4,2,110,'644771270','0','0',NULL,1400,1,'KIRMIZI ETİKETLİ','2025-05-14 08:00:13.792','2025-06-06 17:37:40.880',NULL),
('e4b060c3-fb34-42f4-9364-6b48d058bac3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-16 12:57:19.401',5823,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SABRİNA ZAHEY','41782502188','','İsviçre','BASEL','4058','',9,4.5,140,'982555492','0','0',NULL,1850,1,'PEMBE ETİKETLİ','2024-10-16 13:00:11.241','2024-10-25 05:44:20.198',NULL),
('e4cc7e91-40bd-48ac-b605-1360a7f4e07c','05135cd5-2d33-4363-b51e-c9b83a94094d','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-27 15:12:49.599',4493,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SERKAN KAHRAMAN SSH','33660910086',NULL,'Fransa',NULL,'69310','4 ALLEE DU CHATEAU 69310 OULLINS PIERRE BENITE',4,2,130,'221348923','0','0',NULL,0,0,'SARI ETİKET','2025-08-27 15:14:02.107','2025-09-20 07:01:52.142',NULL),
('e516d6c1-f3be-4e04-acd3-657ef1da8682','8fff5e14-418c-4377-bd83-3a3f81383507','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-06 08:57:00.000',8136,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','FATMA SAĞLIK','4915757275469','491774677358','Almanya','DORTMUND','44137','HEİNCRİCH WENKE STR 51',22,3,110,'437835103','0','0',NULL,0,0,'PEMBE ETİKET','2025-08-05 09:04:01.873','2025-09-03 05:42:42.939',NULL),
('e5520c68-91f4-4a26-99dc-18b77f9d5c29','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 06:54:42.423',5078,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','HÜSEYİN GÜNGÖRMEZ','33783071401','','Fransa','','13015','47 CHEMİN DU FONTANİEU',17,8,110,'655111652','0','0',NULL,0,0,'SARI ETİKETLİ','2024-03-16 06:59:17.389','2024-03-29 17:58:10.538',NULL),
('e55441b7-eaf6-4645-ac39-b0befcc429b1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-15 12:48:59.817',6110,'4126da30-ba9b-41b7-be29-865069aa484c','ÇOŞKUN ŞENEL','905323039768',NULL,'Almanya',NULL,'11111','KONUM MÜŞTERİDEN ALINACAK',7,2,0,'41288739','0','0',NULL,330,0,'KIRMIZI ETİKET ','2025-10-15 12:50:08.364','2025-10-22 14:07:51.541',NULL),
('e5574090-3955-4e09-af62-dd5eb9f6fce4','bf6f92ba-eef7-4290-902d-b1bac86244bb','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-01-29 09:29:04.192',7494,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','BİROL KURNAZ','4915906432284','4917662422486','Almanya','RİETBERG','33397','GARTEN STRASSE52 33397 RİETBERG',6,3.5,110,'501452801','0','0',NULL,1300,1,'AÇIK MAVİ ETİKETLİ','2025-01-29 09:30:37.181','2025-02-27 13:37:30.441',NULL),
('e57ad8b9-334a-41e5-9eda-efd77b5cfa0d','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-22 07:55:19.802',2263,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NAGLA NAGUİB MAHFOUD','31617766159',NULL,'Hollanda',NULL,'9732','DUKDALF 8, 9732 BJ GRONİNGEN ',0,2.5,120,'221383692','0','0',NULL,1100,0,NULL,'2025-10-22 07:57:14.666','2025-10-27 08:15:34.117',NULL),
('e5a2c381-5ee4-4701-8431-c115c8a67cff','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-18 07:51:00.232',8763,'3c7190b6-f6ee-4275-8958-d7af952132ab','AYKUT KAYA','491774279097','491774279097','Almanya','BERLİN','12487','EİSENHUDWEG 68B 12487 BERLİN ALMANYA',21,2,110,'371660448','0','0',NULL,350,1,'AÇIK MAVİ ETİKETLİ','2025-07-18 07:53:44.201','2025-08-19 14:52:22.917',NULL),
('e5a42a0c-9b4d-47f2-a979-39ceffa1a73a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-14 09:47:07.433',6391,'4126da30-ba9b-41b7-be29-865069aa484c','DEKORASYON','4917684357195',NULL,'Almanya',NULL,'58119',NULL,9,2,0,'412771828','0','0',NULL,250,1,'SARI ETİKETLİ','2025-05-14 09:47:49.406','2025-06-06 17:36:58.591',NULL),
('e5aec591-aa43-4db5-8228-1d08c0c983d2','eccfe611-9163-42aa-a1ff-e711af0248e6','9656d9e4-a381-4143-957d-98a2f19361a5','2025-07-25 09:47:16.630',8603,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İLAYDA CALINALTI','32470798418',NULL,'Belçika',NULL,'9160','BEERVELDESTRAAT 14 , 9160 LOKEREN',6,2,120,'22137977','0','0',NULL,500,1,'YEŞİL ETİKET','2025-07-25 09:48:29.559','2025-09-04 06:17:08.953',NULL),
('e5d25a08-4616-46db-a673-3c63eb09c6f2','d008d786-a02e-404b-b090-54460d9d421e','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-26 09:26:02.594',1160,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','KIYMET HANIM ','436769084848',NULL,'Avusturya','FELİXDORF','2603','SPİTALGASSE48/1FELİXDORF AVUSTURYA ',22,2,120,'657635062','0','0',NULL,350,1,NULL,'2025-06-26 11:10:43.897','2025-07-21 10:22:45.359',NULL),
('e5d95e08-a8c0-4133-845e-d93395f55044','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 13:40:10.916',6724,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','SUZAN ALTIPARMAK','310621327442',NULL,'Hollanda','ROTTERDAM','3042','LEMKENS STRAAT 86',16,1,100,'501339138','0','0',NULL,640,1,'TURUNCU RENK AMBALAJLI','2024-10-11 13:41:44.899','2024-10-24 19:13:00.054',NULL),
('e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf','eccfe611-9163-42aa-a1ff-e711af0248e6','eb88f328-c1ca-431b-ad68-6f414d275615','2025-03-06 09:30:29.434',4878,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ABARDİ NOURDİN','33789316332','33763157609','Fransa',NULL,'06100','380 AVENUE DU PARC MARİA GUARTİER LES LİLAS 06100 NİCE FRANSA',4,2.5,130,'221624848','0','0',NULL,1200,1,'YEŞİL ETİKETLİ','2025-03-06 09:32:52.896','2025-04-26 17:55:36.404',NULL),
('e5ffe400-c79b-4f45-8a39-1085e52959fd','eccfe611-9163-42aa-a1ff-e711af0248e6',NULL,'2025-10-22 08:01:52.409',5796,'22a1dbd6-475c-4d4b-bb13-f459e3029634','SEYDA ASLAN','491629290664',NULL,'Almanya',NULL,'12279','LİCHTERFELDER RİNG 81, 12279 BERLİN',0,2.5,110,'221410306','0','0',NULL,800,0,NULL,'2025-10-22 08:03:14.370','2025-10-27 08:13:42.444',NULL),
('e637af8d-f91f-4227-b5af-f95f10dd7e2f','1764a07b-eb47-4578-b6cd-f3c0d0e743be','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-15 09:24:59.661',3413,'47880255-08ee-4e99-940b-16038e07de55','MAHMUT ÇELİK','33643896068','33669711120','Fransa','ANGERS','49100','22 RUE GABRİEL BARON 49100 ANGERS FRANSA',5,4,130,'478370539','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-01-15 09:26:24.183','2025-02-14 15:00:22.989',NULL),
('e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','66307a01-d585-4127-903b-18748421c29e','2025-04-26 14:37:21.877',9019,'4126da30-ba9b-41b7-be29-865069aa484c','BERAT','491728404403',NULL,'Almanya',NULL,'95100','PAPİERMÜHLWEG 22 \n95100 SELB',11,2,0,'412485805','0','0',NULL,375,1,'TURUNCU ETİKETLİ','2025-04-26 14:38:09.547','2025-05-07 06:08:12.703',NULL),
('e696a6b1-2d51-48d4-90a7-0be073bf8666','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-03-03 07:50:02.566',1192,'47880255-08ee-4e99-940b-16038e07de55','AHMET CELEPCİ','491716245168','491716245168','Almanya','HENGERSBERG','94491','FİSCHERSTRABE 1 94491 HENGERSBERG ALMANYA',0,2,105,'478819088','0','0',NULL,500,0,'2m3','2025-03-03 07:52:28.275','2025-03-04 09:05:17.240','2025-03-04 09:05:17.243'),
('e698509e-076f-4ac2-b2de-bd8a1dfd105e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-24 10:34:00.750',2298,'c2d4ce84-536d-4816-837f-7abbf6a7e061','AZEM SATTAR','491716444408',NULL,'Almanya',NULL,'21107','STENZELRING 17 21107 HAMBURG ',9,2,110,'248158562','0','0',NULL,350,1,'PEMBE ETİKET','2025-09-24 10:37:22.518','2025-10-05 12:16:14.638',NULL),
('e7023ff3-7189-4722-b023-fb3fc983b16a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-08 11:07:00.943',7598,'4126da30-ba9b-41b7-be29-865069aa484c','GELİNLİKÇİ','4917663775902',NULL,'Almanya',NULL,'24148','POPPENRADE 13',11,2,0,'412574307','0','0',NULL,530,1,'TURUNCU ETİKETLİ','2025-07-08 11:08:53.073','2025-07-24 18:03:06.213',NULL),
('e74ec79a-3fe1-4dd7-9872-a4ff0f952163','394112c3-f977-4fc2-b430-775e79e472ca','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2025-01-09 10:26:32.912',4575,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ALİ ÇETİN ','3365262758',NULL,'Fransa',NULL,'73410',NULL,9,4,130,'982817887','0','0',NULL,2650,1,'MOR ETİKETLİ','2025-01-09 10:27:55.247','2025-01-19 14:51:43.991',NULL),
('e75e8612-51c4-4522-8a7c-c324cd173d42','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-10-08 15:19:40.434',2156,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','HASAN ARABACI','436769535571',NULL,'Avusturya',NULL,'6900','AVUSTURYA BREGENZ \n6900',0,2,120,'920359526','0','0',NULL,0,0,NULL,'2025-10-08 15:23:40.547','2025-10-14 14:47:54.443',NULL),
('e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a','1764a07b-eb47-4578-b6cd-f3c0d0e743be','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-06 09:01:18.672',5180,'47880255-08ee-4e99-940b-16038e07de55','TUĞBA AKTAŞ','32470593490','32493872964','Belçika','HOLLOGNE','4460','RUE MAAYA NO1 4460 GRACE HOLLOGNE BELÇİKA',10,2.5,120,'478687899','0','0',NULL,1000,1,'KIRMIZI ETİKET','2025-08-06 09:03:39.232','2025-09-03 19:36:14.948',NULL),
('e7849612-fcb8-4368-bba8-194c1abdf919','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-07 20:38:23.905',4571,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','Müyesser koçak','31619008872','31681924698','Hollanda','Deventer','7412','Akkerstraat 6',15,5.5,100,'745531225','0','0',NULL,0,0,'Sarı etiketli','2024-04-07 20:40:25.407','2024-05-02 19:56:42.327',NULL),
('e784e31f-ff92-404d-ba37-0dfbff43b309','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-10-17 09:00:06.787',6193,'3c7190b6-f6ee-4275-8958-d7af952132ab','ALMİRA ULFA','491789059767','491789059767','Almanya','STUTGART','70186','BERGSTRABE 24 70186 STUTGART ALMANYA',0,2,110,'371258376','0','0',NULL,1900,0,'kanepe, berjer, puf, sandalye, karyola + yatak, 2 adet sehpa. 6,5 metreküp','2025-10-17 09:02:23.915','2025-10-20 11:53:09.964',NULL),
('e7882376-f647-4f5c-acc0-c4777a09f75d','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-18 08:18:52.801',2419,'4126da30-ba9b-41b7-be29-865069aa484c','POLAT İSTİKRAR ','491781789912',NULL,'Almanya',NULL,'38524','BERGSTRABE 16',8,16,110,'412596038','0','0',NULL,1760,1,'SARI ETİKETLİ','2025-01-18 08:56:47.028','2025-01-29 13:32:07.559',NULL),
('e792b913-8e00-4617-bf8c-27fc2a7933e2','1764a07b-eb47-4578-b6cd-f3c0d0e743be','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-04 07:55:22.080',4827,'47880255-08ee-4e99-940b-16038e07de55','AHMET GÜNEŞ','4917674917141','4917674917141','Almanya',NULL,'21077','HAMBURG  / ALMANYA - 21077',7,2,105,'478285861','0','0',NULL,0,0,'BEJ ETİKETLİ','2025-03-04 07:57:31.069','2025-04-26 17:56:55.530',NULL),
('e7b29836-18a7-4b80-a64c-61eeb5b079fe','313cc2e2-5529-49ab-abe5-27b5d390bc5f',NULL,'2025-07-21 09:31:53.358',1000,'6133a2db-79c4-4372-9338-505db46b1847','TAHA MİRA','491791418213','4917684135928','Almanya','WİLHELMSHAVEN','26384','LİLİENBURGSTRASSE 4\n26384 WİLHELMSHAVEN, DEUTSCHLAND',0,2,110,'613362955','0','0',NULL,620,0,NULL,'2025-07-21 09:36:09.863','2025-08-19 07:52:40.403','2025-08-19 07:52:40.402'),
('e7f656e7-35d0-4f99-bacd-ea6a85d14230','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-15 08:05:26.302',7604,'3c7190b6-f6ee-4275-8958-d7af952132ab','HARUN ŞAHİN','491725785095','491725785095','Almanya','OT ERLİNGEN','86405','ALTE DORFSTRABE 2 86405 MEİTİNGEN OT ERLİNGEN ALMANYA',31,6.5,110,'371421349','0','0',NULL,1790,1,'SARI ETİKET','2025-08-15 08:09:51.565','2025-09-03 06:11:03.306',NULL),
('e8131f06-593c-49fc-9c77-c5965295a667','bf6f92ba-eef7-4290-902d-b1bac86244bb','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2024-12-17 15:12:55.479',1197,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','KÜBRA ARPA','33767845756',NULL,'Fransa',NULL,'25500','29 RUE DU VAL VERT 25500 LES FİNS ',14,3.5,110,'501588943','0','0',NULL,1650,1,'MAVİ ETİKETLİ','2024-12-17 17:46:16.437','2025-01-17 11:00:29.595',NULL),
('e81b1e15-b8dc-4eb4-8edc-6bac321e5e00','1764a07b-eb47-4578-b6cd-f3c0d0e743be','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-09 08:18:51.093',6410,'47880255-08ee-4e99-940b-16038e07de55','AHMET GÜNEŞ','4917674917141','4917674917141','Almanya','HAMBURG','21077','ROTBERGFELD 48 21077 HAMBURG',2,2,105,'478300434','0','0',NULL,1190,1,'YEŞİL ETİKETLİ','2025-01-09 08:20:24.553','2025-01-31 12:16:21.240',NULL),
('e81fdf76-b529-423f-8485-057fd816e54d','394112c3-f977-4fc2-b430-775e79e472ca','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-17 13:00:34.515',3609,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MARA EDEN','49015231361108',NULL,'Almanya',NULL,'26725',NULL,2,3,140,'982240405','0','0',NULL,2900,1,'yeşil renk','2025-06-17 13:01:58.763','2025-07-23 14:29:06.682',NULL),
('e82238d9-feaf-4797-93e9-673c49c7b01e','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb',NULL,'2025-07-06 20:10:10.170',2802,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','SUHAD-AL-ESADİ','436606544408',NULL,'Avusturya',NULL,'4663','SCHERERSTRASSE 3C/6/4663 LAAKİRCHEN',0,2,120,'675220933','0','0',NULL,550,0,NULL,'2025-07-06 20:15:49.879','2025-07-07 07:40:31.290','2025-07-07 07:40:31.289'),
('e82d9e2c-30a8-45ae-9d88-e3e83c923e9a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-06-10 08:06:58.450',6943,'e6d4faef-484c-4ce7-992c-906e05fc083e','TAHSİN AKSOY','436601666895','436765710207','Avusturya','WİEN','1210','BAUMER GASSE 34, 1210 WİEN',13,2,120,'644716997','5','5','Memnun kaldik, tesekkürler',900,1,'(SARI RENK)','2025-06-10 08:24:44.033','2025-06-28 16:42:54.438',NULL),
('e83e8f5c-4cde-4c83-881d-94666956b508','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-23 10:28:36.588',1936,'47880255-08ee-4e99-940b-16038e07de55','RADİA SAADİ AHMED','33635451557','33651033084','Fransa','ROBİNSON','92350','92350 FRANSA',0,2,130,'478378675','0','0',NULL,2350,0,'4,5 M3','2025-10-23 10:41:48.205','2025-10-23 10:41:48.205',NULL),
('e8420e4b-28d7-4629-acc4-88baabd1cc27','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-16 09:13:54.048',7586,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','AYNUR DURSUN','4915158584093',NULL,'Almanya',NULL,'58840','UNTERM GRÜNEN BERG 37\n58840 PLETTENBERG',8,3.5,110,'817136073','0','0',NULL,700,1,'MAVİ ETİKETLİ','2025-05-16 09:15:11.963','2025-06-06 17:37:11.377',NULL),
('e848a3ea-fc44-4076-9fb6-e6a259b11ad5','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 11:03:35.071',6185,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','EBUBEKİR ATA ','491746845018','4917640133823','Almanya',NULL,'58509','LÜDENSCHAİD',20,5.5,100,'319316615','0','0',NULL,1679,1,'KREM RENK ETİKETLİ','2024-11-21 11:25:14.066','2024-12-03 21:17:08.176',NULL),
('e8639de3-a760-433a-8023-37feb4abcf62','5c723cdc-e582-4b00-8271-838c085984c2','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-12 13:42:34.176',9712,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SÜLEYMAN KARA','33786128355','33616412161','Fransa',NULL,'67200','74 BOULEVARD LA FONTAINE 67200 STRASBOURG FRANSA',20,2,130,'745523335','0','0',NULL,500,1,'YEŞİL ETİKETLİ','2025-02-12 13:45:30.210','2025-03-05 14:40:41.541',NULL),
('e88c81a3-c41c-4a2d-94f5-a0819da7c913','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-16 08:18:53.906',2101,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','MURAT BAĞCI','31634506011','','Hollanda','ROTTERDAM','3073','BOEKWE STRAAT 19',16,1,100,'614460765','0','0',NULL,550,1,'PEMBE ETİKETLİ','2024-09-16 08:20:13.431','2024-10-07 14:03:13.193',NULL),
('e8a249a9-b090-42b5-ba99-445005f2b553','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fd78c268-e19d-4846-a93a-7f307d082c25','2024-05-29 08:48:00.969',10463,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NURTEN TÜRK','436602251211','436764709852','Avusturya','BREGENZ','6900','ACHSIEDLUNGSTABE 85',6,2,120,'745220703','1','1','Şöför çok saygısız ',400,1,'TURUNCU ETİKETLİ','2024-05-29 08:50:12.996','2024-06-10 14:49:40.094',NULL),
('e8d23d8a-2637-4202-afea-6441ccee21d3','8fff5e14-418c-4377-bd83-3a3f81383507','9c7277b7-16bb-4870-b6a2-7ce035115b31','2025-05-16 08:58:29.664',1117,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MERYEM BİRCAN ANİK','491621579425','491621579425','Almanya','MOERS','47441','PARSİCK STR. 37A , MOERS\n47441 MOERS/ ALMANYA',2,6,110,'437791709','0','0',NULL,1900,1,'PEMBE ETİKETLİ','2025-05-16 09:06:00.222','2025-06-04 07:00:14.609',NULL),
('e91ba42b-a5c5-4961-8243-6c239fcf9a75','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-10-30 08:11:42.710',5647,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','MUHTEREM KAYA','4915772153329',NULL,'Almanya','VLUYN','47506','KREUZSTRASSE 14B',12,9,100,'465500768','5','5','Herşey için teşekkürler. ',0,0,'SARI ETİKETLİ','2024-10-30 08:28:52.316','2024-11-11 21:38:13.035',NULL),
('e929693b-b959-44d7-9fa1-907fe175f670','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-05-21 13:57:46.648',3356,'47880255-08ee-4e99-940b-16038e07de55','SERKAN ÖZBAY ','31686432673','31684469645','Hollanda',NULL,'5684','GRISKLOSKSE 45 4684 HE BEST HOLLANDA ',0,2,120,'478432075','0','0',NULL,0,0,NULL,'2025-05-21 14:00:41.219','2025-06-30 18:35:04.805','2025-06-30 18:35:04.804'),
('e9363e6f-11f7-400b-bc2a-13288789cb1a','05135cd5-2d33-4363-b51e-c9b83a94094d','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-13 08:06:38.081',3355,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','ÇİĞDEM MURAT','4917642954543',NULL,'Almanya',NULL,'46049','OBERHAUSEN',14,2,110,'65758007','0','0',NULL,300,1,'MERMER PALETİ','2025-05-13 08:07:17.729','2025-06-05 12:39:51.228',NULL),
('e94e4dc6-f535-425e-af44-da8f01dfe89d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:20:00.819',4096,'b734c482-3c00-4897-ad35-bc358cd02d56','RAMAZAN SARIKAYA','','','Fransa','','69400','VİLLEFRANCHE SUR SAONE',10,7.5,96,'7347113','0','0',NULL,1080,1,'5 SARI 150 EURO-5 YEŞİL280 EURO-21 GRİ ETİKETLİ 650 EURO\n','2024-03-16 08:22:58.557','2024-03-27 11:10:49.305',NULL),
('e95cef76-b31a-4d48-831a-9295b1ea7ecf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 13:38:22.770',10836,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','NESRİN DUMAN','31641888341','','Hollanda','UTRECHT','3541','BRONNERLEAN 332',15,1,100,'745166392','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-10-11 13:40:01.523','2024-10-24 19:09:25.282',NULL),
('e97846ef-c7e2-47c2-8ed9-5683c56e0d11','f784b688-ba6b-4886-87dd-fe4cfbed85b4',NULL,'2025-10-14 11:40:07.322',3437,'dea91080-5383-4085-af2e-7eace2c64224','CİHAN ÇOLAK','4917663373224','4917663372716','Almanya',NULL,'88410','SPROLLSTRASSE 14 88410 BAD WURZACH',0,4,110,'910510042','0','0',NULL,825,0,NULL,'2025-10-14 11:41:18.403','2025-10-20 08:08:32.730',NULL),
('e98d59d4-4583-412c-bfc4-6bec0baeab2b','5c723cdc-e582-4b00-8271-838c085984c2','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 08:02:28.770',9124,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA BİLGİN','491732807579','4915756457295','Almanya',NULL,'44145','SCHLOSSER STR 39 44145 DORTMUND ALMANYA',9,2,105,'745353139','0','0',NULL,1700,1,'YEŞİL ETİKETLİ','2025-01-29 08:04:09.819','2025-02-19 18:37:15.207',NULL),
('e9aed3da-2754-4ac0-8f89-1a36768fe9bc','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-03 08:58:51.733',2631,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','MEİSSA AL KHALED','4917670362806',NULL,'Almanya','BERLİN','12055','WİPPERSTRASSE 6, 12055 BERLİN',21,3,110,'531480968','5','5','👍🏼👍🏼',1075,1,'MOR ETİKETLİ','2025-09-03 09:01:26.574','2025-09-13 06:08:55.811',NULL),
('e9be7295-2626-4fb3-adb1-dcad8f37101f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:42:33.413',10601,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ÖZLEM GÜLER','4915257652315','','Almanya','BEİMERSTETTEN','89081','BLUMENWEG 7',2,9,83.88,'248653667','0','0',NULL,1080,1,'BEJ ETİKETLİ-2GÜN ÖNCEDEN HABER VERİLCEK','2024-03-16 08:47:07.209','2024-03-23 06:42:46.025',NULL),
('e9c3de84-44b0-416d-b57a-8549b5c187d0','eccfe611-9163-42aa-a1ff-e711af0248e6','66307a01-d585-4127-903b-18748421c29e','2025-02-25 16:06:57.161',8071,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NURİYE ŞAHİN','436603730710',NULL,'Avusturya',NULL,'1100','SONNWENDGASSE 23/1/106.  1100 WİEN',18,3,140,'221447673','0','0',NULL,1200,1,'PEMBE ETİKETLİ','2025-02-25 16:09:38.580','2025-05-05 09:10:45.600',NULL),
('e9c624cc-2fc1-4839-b08d-b9e1310a053d','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-09-24 13:16:03.414',5219,'47880255-08ee-4e99-940b-16038e07de55','SAVAŞ ÖZTÜRK ','436643552284','436643552284','Avusturya','VEİLCHENWEG','4623','GUNSKİRCHEN VEİLHENWEG 4 ÖSTERRİCH ',0,5,140,'478514572','0','0',NULL,2000,0,'6 M3','2025-09-24 13:23:02.224','2025-10-22 12:12:30.051',NULL),
('e9ca480a-5f90-419c-b5bf-aea2d03c7975','bf6f92ba-eef7-4290-902d-b1bac86244bb','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-12 14:20:38.909',10610,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','SAİT CARCUR','31650234175','31655012632','Hollanda',NULL,'5231','ZİRKOON 14 5231 KB DENBOSCH',8,2,120,'501423957','0','0',NULL,0,0,'MOR ETİKETLİ','2025-06-12 14:21:57.150','2025-07-22 10:19:34.420',NULL),
('e9cea214-9c50-4164-bc0c-ec27741915e8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','93da1859-4fa5-47f4-86a4-0a524f16f532','2024-10-17 12:32:15.037',5022,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MAOUD HABİBİ','41772204001',NULL,'İsviçre','CHUR','7000','KASERNENSTRASSE 111',5,1,140,'982765286','0','0',NULL,250,1,'SARI ETİKETLİ','2024-10-17 12:34:27.770','2024-10-23 16:38:15.813',NULL),
('e9d35722-4f61-4858-b63b-066b56b95e42','eccfe611-9163-42aa-a1ff-e711af0248e6','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-24 13:42:15.652',7274,'22a1dbd6-475c-4d4b-bb13-f459e3029634','CHERİET NAJET','33745279519',NULL,'Fransa',NULL,'67380','12 B RUE KONRAD ADENAUER 67380 LİNGOLSHEİM',13,2,120,'221287992','5','5','Parfait ',885,1,'MOR ETİKETLİ','2025-03-24 13:44:16.701','2025-05-02 17:08:29.291',NULL),
('e9d88834-16a0-467d-ac78-572c246346c6','5c723cdc-e582-4b00-8271-838c085984c2','6f4d7a00-e2c2-449b-956c-48fb73752550','2025-05-05 10:23:11.492',5448,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖMER ÇALIK SSH ','491748888386','4917680173048','Almanya',NULL,'74343','BAHNHOF STR 6474343 STUTTGART ',24,2,105,'7456984','0','0',NULL,0,0,'SARI ETİKETLİ YAKIN ADRESDEN ALCAK','2025-05-05 10:24:07.345','2025-05-20 06:24:06.665',NULL),
('e9dbdb19-e82e-456b-8899-0bd05a5b98ed','5c723cdc-e582-4b00-8271-838c085984c2','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-05-05 10:19:31.183',3279,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUSTAFA YILMAZ SSH ','33682615843','33783160277','Fransa',NULL,'67240','3 RUE DU COMMERCE 67240 OBERHOFFEN SUR MODER FRANSA',11,2,130,'745338988','0','0',NULL,0,0,'YEŞİL ETİKETLİ','2025-05-05 10:20:01.745','2025-05-23 14:07:17.962',NULL),
('e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-11 13:36:59.479',10896,'59868701-abe4-4705-a7e6-d91c2c69262e','FADİME ERİMEZ','436605331605','436602444902','Avusturya',NULL,'7201','HAUPTSTARSSE 158, NO:14 7201 NEUDÖRFL AVUSTURYA',13,5.5,120,'598425779','0','0',NULL,2300,1,'AÇIK MAVİ ETİKET','2025-09-11 13:39:34.409','2025-10-15 08:25:00.087',NULL),
('e9f2fa6f-b59c-49e1-86a0-fb4a60531062','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-07-24 10:06:57.932',4077,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HALİL İBRAHİM BACAKSIZ','4915560261024','','Almanya','BADEN','74172','STUTTGARTER STR36',5,5,100,'976894167','0','0',NULL,500,1,'KIRMIZI ETİKETLİ','2024-07-24 10:08:44.022','2024-08-15 13:36:45.677',NULL),
('ea1fd06d-6508-481d-96d9-862de4d05260','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-08-29 14:05:34.513',8038,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','SAHAR KADERİ','436607576919','','Avusturya','SALZBURG','5020','AİGNER STRABE 14',5,4.5,120,'449636092','1','1','Das ',1250,1,'MAVİ ETİKETLİ','2024-08-29 14:08:08.560','2024-09-25 13:04:53.784',NULL),
('ea220406-9a53-4462-8ddb-af10ce32ed5b','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-21 07:03:06.805',9263,'3c7190b6-f6ee-4275-8958-d7af952132ab','LAİLA MANDANİ','491722630370','491722630370','Almanya','MEERBUSCH','40670','BOVERTER KİRCHWEG 38 40670 MEERBUSCH ALMANYA',8,2,110,'371887346','0','0',NULL,645,1,'YEŞİL ETİKETLİ','2025-07-21 07:05:00.422','2025-08-08 14:07:53.364',NULL),
('ea2a970f-57cf-4bbe-a300-250a83e0b8ad','5c723cdc-e582-4b00-8271-838c085984c2','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-10 09:50:24.243',2800,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ALİ KARADUMAN','33762006399',NULL,'Fransa',NULL,'93270','64 RUE DE LA MARNE SEVRAN 93270 FRANSA ',5,4,130,'7454878','0','0',NULL,1000,1,'SARI ETİKET ','2025-09-10 09:50:09.644','2025-10-04 13:57:19.734',NULL),
('ea3c1c28-a33e-4d1d-8643-1634f428c2c7','5c723cdc-e582-4b00-8271-838c085984c2','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-12 13:20:55.000',7630,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','EMEL SERPMEN','4915202902751','491712703199','Almanya',NULL,'86653','OSTERHOL 2 STR 4 86653 MONHEIM ALMANYA',16,2,105,'745311878','0','0',NULL,1150,1,'YEŞİL ETİKETLİ','2025-02-12 13:23:30.470','2025-03-21 17:17:29.974',NULL),
('ea521ff8-eb9f-4152-a03a-e511216077ea','5c723cdc-e582-4b00-8271-838c085984c2','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-17 08:25:33.306',5551,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MUHAMMET YILDIRIM ','33678241654','33640388556','Fransa',NULL,'25300','343 GRANDE RUE 25300 DOMMARTIN FRANSA',13,5.5,130,'745946644','0','0',NULL,2000,1,'AÇIK MAVİ ETİKET','2025-09-17 08:28:32.510','2025-10-23 06:19:46.052',NULL),
('ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3ac24069-be87-4119-8ed6-2f478b64b3f9','2025-08-19 14:09:42.231',3927,'27cbce83-310c-4e98-830f-7433b10c2efd','EMRE ÇELİK','436763502568',NULL,'Avusturya','INNSBURK','6020',NULL,9,7,120,'278329196','0','0',NULL,2580,1,'YEŞİL ETİKET','2025-08-19 14:11:17.859','2025-08-30 18:25:21.099',NULL),
('ea9d7d59-ea20-4a4a-af1f-0788fb179d8a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f731f466-bf33-479e-af39-1ef919b02c88','2024-05-23 07:22:06.970',2520,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MOHAMMAD MASOUD','33749274146','','Fransa','ORTEONS','45000','9 PLACE DU CHAMP CHARDON',6,7.5,110,'449234624','0','0',NULL,3100,1,'','2024-05-23 07:23:44.141','2024-05-30 20:04:38.351',NULL),
('eaa4d38e-5254-4986-b220-3a01cc9187c9','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2024-11-06 21:22:35.000',3898,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ŞÜKRAN ALP','491628157309','4917623201470','Almanya','NÜRTİNGEN','72622','HOLBEİN STR 31 /72622   NÜRTİNGEN /ALMANYA',0,1,100,'61482958','0','0',NULL,0,0,'YARIN ÖĞLENE KADAR ARACIMIZ SİZE TESLİM EDECEK.','2024-11-07 14:25:20.235','2024-11-08 06:44:36.085','2024-11-08 06:44:36.091'),
('eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','acf5e984-44c0-4233-9521-0c373102472f','2024-12-13 12:36:55.389',7162,'73596a75-b658-4249-8c71-b0490654bc8b','YALÇIN','0033771681508',NULL,'Fransa','GİEN','45500','RUE MAURİCE GENEVOİX',0,1,0,'735553146','0','0',NULL,2850,1,'AÇIK MAVİ ETİKETLİ','2024-12-13 12:38:39.455','2024-12-24 12:30:47.747',NULL),
('eac20332-3b72-49af-9e16-57159be774ea','8fff5e14-418c-4377-bd83-3a3f81383507','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-18 13:37:52.627',6385,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','SENA ONMAZ ','4368120439831','436605152000','Avusturya','PÖTTSCHİNG ÖSTERREİCH','7033','FELDGASSE 11',10,3.5,120,'43714618','0','0',NULL,490,1,'MOR ETİKETLİ','2025-08-18 13:39:50.696','2025-09-02 06:43:20.130',NULL),
('ead6dade-f350-443d-a16a-41863d612c7c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1660b7bd-ba08-4a06-83fa-1f5532c82aae','2024-03-30 09:29:54.590',10569,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','MUSTAFA ÇETİN','491723025069','','Almanya','FRANKFURT ','60488','AM HOHEN WEG 30',4,8,100,'982490890','0','0',NULL,2500,1,'AÇIK MAVİ ETİKETLİ','2024-03-30 09:33:58.484','2024-04-11 06:20:01.497',NULL),
('eb022ab2-6101-4e9c-8a86-e4148e447ef2','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-12 09:06:37.570',2061,'2682d67a-85fc-4f82-9b33-ed916cf1fc26','??','111111111111',NULL,'Almanya','AUGSBURG','111',NULL,6,2,0,'268418662','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-05-12 09:08:08.691','2025-06-04 19:39:30.245',NULL),
('eb029e46-e69e-4bea-b717-f1c575aa7ca7','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-18 12:53:54.544',7791,'e6d4faef-484c-4ce7-992c-906e05fc083e','ERDAL AKDAĞ(K)','06649942512','06607038670','Avusturya','GRAZ','8020','JOSEFİGASSE 40',11,15.5,120,'644985861','0','0',NULL,4850,1,'GRİ ETİKET','2025-09-18 13:00:43.035','2025-10-15 08:25:17.352',NULL),
('eb2f8c5f-5056-4e84-8bee-cdfe250f8c42','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-21 13:44:08.186',8738,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ESRA ALTINTAŞ ','31682496201',NULL,'Hollanda',NULL,'7007','BODDENS HOSANG STRAAT 2',2,3,110,'221437904','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-11-21 13:47:59.553','2024-12-06 10:08:41.264',NULL),
('eb3a7ea2-5449-4b23-acff-46a030acf15e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:29:18.336',6993,'0279a6d3-79de-4470-9728-f1654e3ba0b6','FURKAN','905307331627','','Almanya','','44532','BÖCKLİN STR.1',8,1,0,'027201624','0','0',NULL,400,1,'GRİ ETİKETLİ GOLDCAP YAZILI','2024-06-08 07:31:27.469','2024-06-20 20:16:32.527',NULL),
('eb3d9366-d41c-4a39-bc45-c8babc36cc15','5c723cdc-e582-4b00-8271-838c085984c2','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-29 12:37:13.177',1070,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BURAK SARIKAYA','4915772514011','4917663466847','Almanya',NULL,'74333','MARTIN KNOLLER STR 4 74333 AALEN WASSERALFINGEN ALMANYA',32,3.5,105,'745816946','0','0',NULL,300,1,'AÇIK YEŞİL ETİKET','2025-09-29 12:36:45.421','2025-10-15 08:13:05.462',NULL),
('eb7486ef-1def-475a-94cb-2a65d39933d5','8fff5e14-418c-4377-bd83-3a3f81383507','2a352437-950c-42a9-9135-55482cf3977c','2025-08-06 07:48:49.403',4688,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','MERVE BEKTİK','436607950540',NULL,'Avusturya','NEUNKİRCHEN','2620','LACKNERGASSE 18/2',14,6.5,120,'43752518','0','0',NULL,1280,1,'YEŞİL ETİKET','2025-08-06 07:53:48.788','2025-08-21 08:13:45.093',NULL),
('ebaddd2d-5358-49e9-9dab-6b7795385f66','05135cd5-2d33-4363-b51e-c9b83a94094d','e9624207-f65d-451c-9ab0-5f510c811052','2025-08-07 16:19:58.711',9968,'73596a75-b658-4249-8c71-b0490654bc8b','WALLA DİAB','4915227034856',NULL,'Almanya',NULL,'12529',NULL,23,2,0,'735718998','0','0',NULL,1040,1,'TRAVERTEN','2025-08-07 16:20:47.777','2025-08-19 06:46:50.019',NULL),
('ebb63e9c-df73-4c86-8505-d28e8e13e10b','804a2f53-7a26-4e8e-a505-7fc107953b50','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-20 07:11:46.503',10606,'a42d8839-caef-4422-888f-cbfdf4188c5b','MEHMET KILINÇ','31624464120','31655504455','Hollanda',NULL,'3544','MONARCHVLİNDERLAAN 190 3544 DC UTRECHT HOLLANDA\n\n',3,2,120,'428239917','5','5','8.5',0,0,'BEYAZ ETİKET','2025-08-20 07:14:28.588','2025-09-12 20:30:25.337',NULL),
('ebbd439c-6c40-425f-adfe-65a9d4bbd563','8fff5e14-418c-4377-bd83-3a3f81383507','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-28 15:21:51.725',6097,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','HANİFE TURAN','436602341063','436605673801','Avusturya','MARCHTRENK','4614','KROKUSSTRABE 66',14,6,120,'437355925','0','0',NULL,1180,1,'MOR ETİKET ','2025-08-28 15:24:56.239','2025-09-16 17:48:00.459',NULL),
('ec083d8c-b8c3-4e4b-9b30-be29d90cad55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-13 09:54:46.901',5934,'47880255-08ee-4e99-940b-16038e07de55','MEHMET ÖZKAN','4915752547786','4915752547786','Almanya','LADBERGEN','49549','BREEDEN STR4 LADBERGEN 49549 ALMANYA',7,2,105,'478794904','0','0',NULL,1100,1,'TURUNCU ETİKETLİ','2025-03-13 09:56:47.782','2025-04-08 15:37:28.149',NULL),
('ec271b27-08c7-495f-a5a4-d5814e3d12fd','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-10-10 12:02:26.528',2548,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','TARA SAİDA','4915231627768',NULL,'Almanya','KASSEL','34127','TARA SAİDA\nROHRWİESENSTRASSE 11, 34127 KASSEL \n0152 31627768',0,2,110,'531230160','0','0',NULL,0,0,NULL,'2025-10-10 12:03:44.961','2025-10-13 09:30:06.616',NULL),
('ec51c14f-fbdf-4aae-950c-63cb48e29c49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-09-03 15:13:00.147',4859,'47880255-08ee-4e99-940b-16038e07de55','EMRE AKŞEHİRLİ','33627713470','33621632990','Fransa','CREİL','60100','İMPASSE DES CARRİERES',2,1,110,'478188105','0','0',NULL,5200,1,'MAVİ ETİKETLİ','2024-09-03 15:15:35.337','2024-09-14 18:52:13.622',NULL),
('ec53152b-eeec-406a-993a-23f92d510c91','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-10-01 09:27:33.762',1476,'47880255-08ee-4e99-940b-16038e07de55','FATMA KARAHAN','33681254075','33788354620','Fransa','STRASSBURG','67380','12 RUE TİERGAERTEL 67380',19,2,130,'478346989','0','0',NULL,1000,1,'KIRMIZI ETİKET','2025-10-01 09:29:28.963','2025-10-22 07:00:44.506',NULL),
('ec7725cc-032e-4c20-b604-ec9ab99e164e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 14:18:05.560',5322,'85834865-ac23-4c00-a99b-c9551971a5a1','EZGİ BAŞARAN','31685871414',NULL,'Hollanda',NULL,'3194','DESDEMONASTRAAT 63',7,5,110,'858210128','0','0',NULL,0,0,'MOR ETİKETLİ','2024-11-23 14:25:54.088','2024-12-05 16:18:10.062',NULL),
('ec8233a9-2b02-4431-9da9-7ebee3a93ae2','05135cd5-2d33-4363-b51e-c9b83a94094d','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-30 08:12:18.023',7438,'e6d632ec-bc89-4254-b43c-4f7383017076','AYLİN GÜNGÖR','31634277467',NULL,'Hollanda',NULL,'1068','OSDORPER BAN 17',2,2,0,'663458477','0','0',NULL,300,1,'1 PALET','2025-08-30 08:13:50.201','2025-09-12 19:47:12.201',NULL),
('eca42571-21cb-477f-8919-3105870047fa','1f0119e0-2853-442a-8394-39cf94fce7df',NULL,'2025-03-21 09:55:21.986',5578,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','DAVUT KAYHAN','32485188062','32485062930','Belçika','ANTWERPEN','2630','FRİTS VAN DEN, BERGHELAAN 78, POSTA KODU 2630 / AARTSELAAR',0,2,120,'517578831','0','0',NULL,1100,0,NULL,'2025-03-21 09:59:25.609','2025-03-21 11:24:07.895','2025-03-21 11:24:07.897'),
('ecbcf4f8-56fe-4144-8ecf-f1bc0bfaf32a','ae57be75-c0b1-4a5e-9005-d65c4a98f6a2',NULL,'2025-08-25 14:23:01.910',9251,'27cbce83-310c-4e98-830f-7433b10c2efd','NEVİN ÖZDEMİR','491773059813',NULL,'Almanya',NULL,'74076','HANS - SEYFA STR 42/1',0,2,110,'278801478','0','0',NULL,970,0,NULL,'2025-08-25 14:26:33.282','2025-08-26 14:01:59.026','2025-08-26 14:01:59.025'),
('ecd638f1-8a79-4613-9107-f0af2ddb735c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','cff49750-183c-4486-bf27-562e3315a5ed','2024-04-27 08:17:59.095',3542,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HARUN KAYA','33620017327','33646349522','Fransa','','60180','5 RUE ROLAND VACHETTE',2,1,110,'745180441','0','0',NULL,1900,1,'MAVİ ETİKETLİ','2024-04-27 08:20:18.083','2024-05-08 21:07:25.067',NULL),
('ed0857c5-779d-41e7-b628-fdfa431cfa7c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 16:51:20.549',6684,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYŞE İPEKSOY','491711605944','4916094681021','Almanya',NULL,'87437','BRESLAVER STRABE',22,5,100,'745766580','0','0',NULL,1820,1,'MAVİ ETİKETLİ','2024-12-20 16:52:06.742','2025-01-06 07:01:26.419',NULL),
('ed15bdd7-b954-4a77-83a4-3809681dbb05','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-15 08:20:52.660',8457,'3c7190b6-f6ee-4275-8958-d7af952132ab','GÖKHAN ÜLKER','491731829748','491731829748','Almanya','KİEFERNWEG','68789','68789 ST LEON ROT KİEFERNWEG 1',17,2,110,'371944289','0','0',NULL,690,1,' MOR RENK','2025-07-15 08:22:30.725','2025-07-28 12:02:34.929',NULL),
('ed1c3d42-dad9-477c-953a-0f9f25eed681','51b55e5b-7487-4d8a-923e-163f04d0b1d9','1c42ff51-a6d9-49f8-939a-799618c7cd7d','2025-03-25 19:37:10.419',9222,'4126da30-ba9b-41b7-be29-865069aa484c','MURAT ','31625064385',NULL,'Hollanda',NULL,'5684',NULL,0,2,0,'412716766','0','0',NULL,1090,1,'BANTLI KOLİLER','2025-03-25 19:38:07.806','2025-04-08 15:36:41.479',NULL),
('ed2477a7-3410-49d6-97b3-d4a65e4b5d22','5c723cdc-e582-4b00-8271-838c085984c2','de4951fc-994b-4e0e-a802-27ddaab5a0e8','2025-04-21 09:42:15.282',7943,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SALİHA KURT','491793908788','491629815489','Almanya','BERLIN','12559','SALVADOR ALLENDE STRABE 12559 57 BERLIN ALMANYA',6,13,105,'745251111','0','0',NULL,5250,1,'KIRMIZI ETİKETLİ','2025-04-21 09:46:23.712','2025-05-23 14:07:58.792',NULL),
('ed280e04-bf9d-4058-a9ca-c28010e0e3a6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 13:02:45.159',3383,'73596a75-b658-4249-8c71-b0490654bc8b','HÜLYA AKKOÇ','491746723171',NULL,'Almanya','HÖXTER','37671',NULL,15,1,0,'735384295','0','0',NULL,1400,1,'PEMBE ETİKETLİ','2024-12-20 13:03:40.899','2025-01-08 20:29:02.152',NULL),
('ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','2024-06-08 07:00:43.945',2649,'47880255-08ee-4e99-940b-16038e07de55','İSMAİL İSMAİL','32488875404','32486908714','Belçika','GRİMBERGEN','1850','DEFNE AKAY MÜŞTERİSİNE GİDERKEN ARANILCAK ORDAN ALACAK',15,1,100,'478262226','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-06-08 07:02:43.193','2024-06-22 11:11:03.823',NULL),
('ed33a630-2ac9-4148-a314-b2a44a100a96','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bd143f82-77da-4c1d-9d90-001698b828cf','2025-08-18 14:42:47.508',3129,'e6d4faef-484c-4ce7-992c-906e05fc083e','BURHAN BAYRAKTAR','4915224007809','4915256314885','Almanya','KİRCHEİM','73230','PARADİESSTRABE 23',24,4,110,'644758410','0','0',NULL,1100,1,'MOR ETİKET','2025-08-18 14:49:31.204','2025-09-10 07:23:35.121',NULL),
('ed79e715-5409-4641-b31c-ef0bd037b83b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','d272c69b-ff96-475f-9355-592e3bf8c36a','2024-11-02 07:49:03.469',10419,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İLKER BİLİCİ','31634651222','31634640299','Hollanda',NULL,'1087','EVA BESNTO STRAAT 113',1,1,100,'745128598','0','0',NULL,250,1,'TURUNCU ETİKETLİ','2024-11-02 07:50:10.910','2024-11-12 17:05:59.335',NULL),
('ed90a35b-8493-4c2b-9437-f0f3ba27c20f','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-17 11:52:09.570',7015,'e6d4faef-484c-4ce7-992c-906e05fc083e','SEMA KAYALI','4915736216757','4915753286470','Almanya','HERNE','44628','CASTROPER STR 121, 44628 ',13,3.5,110,'64448364','0','0',NULL,1750,1,'YEŞİL ETİKETLİ','2025-03-17 11:59:12.193','2025-04-07 17:30:11.059',NULL),
('ed98c31c-308d-4856-9efd-a92eb1603386','51b55e5b-7487-4d8a-923e-163f04d0b1d9','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-20 08:44:43.430',8301,'afdbd570-d700-442a-b617-752921194603','TÜRKAN DEMİR','33768432369',NULL,'Fransa',NULL,'13013','48 AV FOURNALLE ',6,2,130,'570121325','0','0',NULL,500,1,'AÇIK MAVİ ETİKETLİ','2025-02-20 08:45:21.626','2025-03-03 12:37:41.822',NULL),
('ed99f25e-1517-4d36-8082-0827ffa4aaa5','5c723cdc-e582-4b00-8271-838c085984c2','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-09 07:26:50.633',7190,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HANİFE YILMAZ','436605487120','4369919027126','Avusturya',NULL,'6020','MITTERWEG 159 6020 INNSBRUCK AVUSTURYA',24,3,140,'745252636','0','0',NULL,745,1,'PEMBE ETİKETLİ','2025-04-09 08:07:35.857','2025-05-02 17:08:29.291',NULL),
('edb235b9-3bc7-4176-bf9e-0cc3d4b4d962','51b55e5b-7487-4d8a-923e-163f04d0b1d9','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-24 12:26:11.921',1168,'65e7b37e-4d55-4714-b338-3f35d8bfc4d5','SERKAN SİLAN','436604232899',NULL,'Avusturya',NULL,'7033',NULL,20,2,140,'657785918','0','0',NULL,300,1,'1 PALET','2025-03-24 12:27:03.117','2025-04-02 18:57:10.886',NULL),
('edc25440-29b7-4bf7-9e12-91c088a94762','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-03-14 11:16:54.326',9933,'e6d4faef-484c-4ce7-992c-906e05fc083e','TUĞBA GÜLSEVEN','4915784616270','491626393170','Almanya','SELTERS','56242','HEİMATSTRABE 20A',17,2,110,'64434778','0','0',NULL,1150,1,'MOR ETİKETLİ','2025-03-14 11:22:45.008','2025-05-22 11:17:55.836',NULL),
('edd341ae-d463-4dbb-b4ec-e8899cdb8433','89428e9c-4d02-45c3-a044-0b2a5ac2465d','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-02-28 12:07:24.319',8237,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','RABİA GÜNER','33651994085',NULL,'Fransa',' PETİTQUEVİLLY ROUEN','76140','8 RUE GASTON DONNETTE',5,2,120,'97684781','0','0',NULL,1225,1,'PEMBE ETİKETLİ','2025-02-28 12:12:14.866','2025-03-24 16:02:29.861',NULL),
('edee589c-8584-4bae-8e91-900078074c09','585b4575-ecea-4671-89b2-199f0605ed62','2a352437-950c-42a9-9135-55482cf3977c','2025-08-12 13:15:20.333',6801,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','ELİZA KADRİ','491737075108','05388618969','İsviçre','KAİSERAUGUST','4303','LİEBRÜTİSTRASSE 31\n4303 KAİSERAUGST',4,2.5,140,'786895232','0','0',NULL,1190,1,'BEYAZ ETİKET','2025-08-12 13:16:52.726','2025-08-25 07:11:44.075',NULL),
('ee0c62fa-abac-44d0-915b-567df66647be','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-09-18 09:11:20.378',8826,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','DERYA KARADENİZ','491634081364','491777499327','Almanya','GLADBECK','45964','BÜLSER STR. 26\n45964 GLADBECK',8,2.5,110,'505414907','0','0',NULL,700,0,'AÇIK MAVİ ETİKET','2025-09-18 09:13:03.575','2025-10-25 08:59:15.286',NULL),
('ee15ad4a-dd6f-4a80-9660-0314bf146e8d','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-06-25 08:43:16.382',6727,'3c7190b6-f6ee-4275-8958-d7af952132ab','GİZEM TIRPAN','491786788734','491786788734','Almanya','DUİSBURG','47167','LÜNEBURGER STR 34 47167 DUİSBURG ALMANYA',18,2,110,'37140435','0','0',NULL,800,1,'PEMBE ETİKETLİ','2025-06-25 08:45:25.338','2025-07-18 17:08:41.286',NULL),
('ee442903-bcf3-41c3-8a85-9a99435f8b6b','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-05-14 09:40:25.585',2352,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METE BOZDAĞ ','33695911824','33650187030','Fransa',NULL,'68120','18 RUE DES VOSGES 68120 PFASTATT FRANCE ',0,8.5,130,'745883224','0','0',NULL,2175,0,'14 M3','2025-05-14 10:16:01.236','2025-09-18 21:08:34.445',NULL),
('ee47f1d8-1ad5-4907-acb2-e3edf9f48713','bf6f92ba-eef7-4290-902d-b1bac86244bb','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-29 13:09:01.577',2450,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','ŞAZİYE KARABACAK','4915737096619',NULL,'Almanya','LÜNEN','44    44532 ','SCHULZ GAHMEN STR 44   ',10,3.5,110,'50133684','0','0',NULL,1700,1,'SARI ETİKETLİ','2025-01-29 13:10:21.597','2025-02-19 18:36:53.202',NULL),
('ee498557-0564-4d86-8d79-85e7c39d48e5','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-31 13:37:33.832',2391,'fbae633b-07d9-4b61-90f7-87b941010b27','YILDIZ GÜNGÖR ','4915258150752',NULL,'Almanya',NULL,'1111',NULL,25,4,0,'633870078','0','0',NULL,300,1,'PEMBE ETİKETLİ','2025-01-31 13:44:37.305','2025-02-15 11:10:42.855',NULL),
('ee55d774-0af3-44a4-a04d-c52632a73128','51b55e5b-7487-4d8a-923e-163f04d0b1d9','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-10-21 07:55:16.655',7902,'f16e28e8-ecf2-4674-b000-e55b2609d558','HACI KURBAN BAŞTÜRK ','33648776910','33684188936','Fransa',NULL,'78190',NULL,2,5,120,'162733891','0','0',NULL,650,1,'TURUNCU ETİKETLİ','2024-10-21 07:57:27.121','2024-12-12 07:41:38.687',NULL),
('ee60ec73-3c76-4379-8775-11a6bda57fea','5c723cdc-e582-4b00-8271-838c085984c2','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-05 16:14:14.505',8303,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','AYŞE ŞEKER','4917664025602',NULL,'Almanya','MANNHEIM','68782','IM MERKELGRUND 8',16,2.5,100,'745671718','0','0',NULL,600,1,'KREM ETİKETLİ','2024-12-05 16:15:48.279','2024-12-18 14:57:34.121',NULL),
('ee875e8e-a522-46c6-9e27-e09a0edbc8e6','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-26 08:02:17.703',9233,'59868701-abe4-4705-a7e6-d91c2c69262e','MELİKE ÇALIŞKAN','491738798802','491738798802','Almanya',NULL,'51107','BUCHHEİMER WEG 4, 51107 KÖLN OSTHEİM ALMANYA',13,2,110,'598172413','0','0',NULL,640,1,'YEŞİL  ETİKET ','2025-08-26 08:07:22.883','2025-09-09 12:50:22.144',NULL),
('ee8c23f7-d814-4b75-882a-e96dc5bf946f','f784b688-ba6b-4886-87dd-fe4cfbed85b4','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-06-11 20:38:31.059',9166,'dea91080-5383-4085-af2e-7eace2c64224','GÜLSÜM ÖZBAY DÜZGÜN','491728410943','5354954215','Almanya',NULL,'47443','47443 MOERS EİCHE		\nNSTR 215		\n',10,10.5,110,'910825747','0','0',NULL,0,0,'YEŞİL RENK','2025-06-11 20:41:09.177','2025-08-08 12:23:47.959',NULL),
('eea08890-ec66-4c80-b59d-441d24154725','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-09-01 13:11:26.352',7326,'59868701-abe4-4705-a7e6-d91c2c69262e','AHMAD KADİ','491713800212','4915778776524','Almanya',NULL,'32120','BUCHENKAMP.1 \n32120 HİDDENHAUSEN',12,2.5,110,'598578683','0','0',NULL,200,1,'YEŞİL ETİKETLİ','2025-09-01 13:12:41.788','2025-09-15 06:10:10.781',NULL),
('eed830c2-dab6-4198-ad41-2a2be9a929dc','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-19 08:35:14.552',4604,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','İRFAN AKTAŞ ','33605918727','33662092706','Fransa',NULL,'02200','LOGEMENT ',9,5.5,110,'501167444','0','0',NULL,1350,1,'BEJ RENK ETİKETLİ','2024-11-19 08:37:03.506','2024-12-10 12:36:11.155',NULL),
('eee6549c-7110-48d4-b248-afbe45d679e0','ab532050-8a54-4cb4-9e27-59229ab24a9b','d9ee13db-868d-4d90-927a-35ef1d4ba092','2025-08-10 14:07:32.853',10277,'338e8c09-4ca5-4617-bfc1-a0692646d475','NAGİHAN ALKIRAN','491752512199','491751919255','Almanya',NULL,'84180','AM MÜHLBACH 16 84180 LOİCHİNG BAYERN \n(İKİNCİ TELEFON ÖZAY BEY)',8,5,110,'338829299','0','0',NULL,500,1,'PEMBE ETİKETLİ','2025-08-10 14:11:17.234','2025-09-03 06:11:37.804',NULL),
('ef1198dc-03c9-4c56-80d9-0d4fe298cc66','1764a07b-eb47-4578-b6cd-f3c0d0e743be','4ffb28cb-ca50-4a96-ad30-006bdef57d6b','2024-11-27 15:55:20.596',4550,'47880255-08ee-4e99-940b-16038e07de55','DİLAVER ULUTAŞ','4915111667554','491624318595','Almanya','AUGSBURG','86356','ALTESTRABE14A NEUSSES AUGSBURG ALMANYA',20,1,100,'478670997','0','0',NULL,0,0,'SSH CAMLAR DİKKATLİ KOYALIM','2024-11-27 15:57:56.886','2024-12-09 17:29:19.987',NULL),
('ef1f9bc0-c6f6-4772-86ac-61951ede20a5','1f0119e0-2853-442a-8394-39cf94fce7df','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-11 15:00:45.798',10625,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','NUR SANDALCILAR','32492885572','32485363259','Belçika','SİNT-NİKLAAS','9100','BREMSTRAAT 67, 9100 SİNT-NİKLAAS, BELÇİKA',4,2,120,'517291063','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2025-02-11 15:02:48.378','2025-03-08 13:58:12.078',NULL),
('ef3b570a-0fb1-407c-87bb-aea336aed633','aaa4a453-cb36-4567-b88e-335acb07c024','3e0e9dd7-0a00-4aff-a011-f48405df943a','2024-10-31 10:45:31.156',3932,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','RECEP ONAY','491785990575','491785990575','Almanya','GÜNZBURG','86381','HÜRBENER STR. 11  86381 KRUMBACH GÜNZBURG',18,9.5,100,'465237157','0','0',NULL,1140,1,'PEMBE ETİKETLİ','2024-10-31 10:52:36.173','2024-11-23 12:17:08.607',NULL),
('ef40fca2-d183-4d4d-931d-2303fbe2066e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:23:29.447',7899,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','IVANA JURİC','4901732611373','','Almanya','WALDKRABURG','84478','',1,3.5,130,'982728095','0','0',NULL,1350,1,'','2024-04-23 10:24:40.752','2024-04-26 17:00:11.405',NULL),
('ef437620-5922-42f3-91ee-d44f1d84b757','5c723cdc-e582-4b00-8271-838c085984c2','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-01-29 07:58:51.960',2777,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','YUSUF ALAN','491742184791','491712326850','Almanya',NULL,'34246','OBERVELLMARSCHE STRASSE 54 34246 VELLMAR ALMANYA',7,2,105,'745130019','0','0',NULL,1300,1,'YEŞİL ETİKETLİ','2025-01-29 08:00:39.192','2025-02-27 13:37:30.441',NULL),
('ef65aa6a-6cbd-41fe-a37d-8d3deeea30ed','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-03-20 10:41:33.958',3764,'3c7190b6-f6ee-4275-8958-d7af952132ab','DFSDF','4915621545555555',NULL,'Almanya',NULL,'76125',NULL,0,2,110,'371155605','0','0',NULL,1000,0,NULL,'2025-03-20 10:43:13.203','2025-03-20 10:45:31.534','2025-03-20 10:45:31.537'),
('ef665960-85ce-48ac-b924-d42b48473988','eccfe611-9163-42aa-a1ff-e711af0248e6','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-13 14:18:43.206',2717,'22a1dbd6-475c-4d4b-bb13-f459e3029634','HATEM ','33768423506',NULL,'Fransa',NULL,'92600','7 RUE ROBERT LAVERGNE 92600 ASNİERES',3,3,120,'221341784','0','0',NULL,1000,1,'GRİ ETİKETLİ','2024-12-13 14:21:14.975','2025-01-11 14:09:23.745',NULL),
('ef714645-7f38-4a84-8d4c-124593386b53','eccfe611-9163-42aa-a1ff-e711af0248e6','60cc9c45-e005-43ac-9846-aca99952ff14','2025-01-02 08:06:10.596',7041,'22a1dbd6-475c-4d4b-bb13-f459e3029634','MÜCAHİD GÜZEL','491629293163',NULL,'Almanya',NULL,'35687','NEUGASSE 33  / 35687 DİLLENBURG ALMANYA',27,3.5,110,'22162472','0','0',NULL,1200,1,'YEŞİL ETİKETLİ','2025-01-02 08:09:11.175','2025-02-06 09:24:57.747',NULL),
('ef978fdc-f16f-48d3-82b2-9c1f321e6548','1764a07b-eb47-4578-b6cd-f3c0d0e743be','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-12 07:44:28.300',8314,'47880255-08ee-4e99-940b-16038e07de55','FESİH DOĞAN','337533944622','33605811984','Fransa','MARESİLLE','13014','8 BOULEVARD ROLAND DORGWLES 13014 MARSEİLLE FRANSA',4,2,130,'47853753','0','0',NULL,1390,1,'SARI ETİKETLİ','2025-02-12 07:47:02.511','2025-03-04 15:38:11.587',NULL),
('efd7f051-bdbd-495c-ae12-ff92cadc152e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7bd09245-c179-4127-b0e1-46737615122b','2025-08-05 10:44:38.210',7366,'4126da30-ba9b-41b7-be29-865069aa484c','NİZAMETTİN(BEKİR)','4917662497880',NULL,'Almanya',NULL,'38271',NULL,0,22,0,'412280381','0','0',NULL,2000,1,'TURUNCU ETİKET\n','2025-08-05 10:46:07.464','2025-08-22 10:59:18.902',NULL),
('effb34a0-0ad9-48cd-9191-3cdc75353428','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-09-04 13:59:02.014',4141,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','ZEYNEP CABUK','06602844475','06602003009','Avusturya','SİEGHARTSKİRCHEN','3443','3443 SİEGHARTSKİRCHEN WALDGASSE 6 AUSTRİA',0,2.5,120,'515128101','0','0',NULL,850,0,NULL,'2025-09-04 14:03:32.773','2025-10-22 08:21:51.370',NULL),
('effb3586-1055-4a6a-95db-95d0060cdeeb','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-22 09:40:48.216',7649,'59868701-abe4-4705-a7e6-d91c2c69262e','GÖKHAN ZÜRLÜER','491632040337','4917672226001','Almanya',NULL,'60487','AM FİSCHSTEİN 46, 60487 FRANKFURT AM MAİN ALMANYA',14,3,110,'598157006','0','0',NULL,1225,1,'MAVİ ETİKETLİ','2025-07-22 11:15:28.819','2025-08-08 05:42:00.113',NULL),
('f063cb46-f6be-4212-a6d8-9be7624bb39d','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-10 18:23:18.315',3593,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','birsat melake ','41765344310',NULL,'İsviçre','zürich','8064','8064 zürich',6,1,140,'982639053','0','0',NULL,500,1,'AÇIK MAVİ ETİKETLİ','2024-11-10 18:26:28.862','2024-12-15 17:40:14.800',NULL),
('f068235e-a859-42b0-b6d1-68d5d67061a7','8fff5e14-418c-4377-bd83-3a3f81383507','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','2025-07-17 10:41:44.640',3850,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','FUAT SÜRER','32489297598',NULL,'Belçika','KAMPENHOUT','1910','HUSTRAAT 25.',1,6,120,'437392386','0','0',NULL,1500,1,'SARI ETİKETLİ','2025-07-17 10:45:28.243','2025-08-12 06:14:39.676',NULL),
('f0699886-5b9d-4ea9-8f6d-03786aac722d','d074816b-78fd-4378-91c0-3835eba28f44','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-24 08:00:56.084',10737,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ARZU BÖÇKÜN','4915735873115',NULL,'Almanya','HANNOVER','31275','İLTENER STRASE 69 //31275 //LEHRTE //HANNOVER',7,2,110,'614680407','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-02-24 08:12:04.593','2025-03-21 17:17:29.974',NULL),
('f07faed6-78e8-4324-9668-3a2d9d15f43d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','34e9dac8-0b72-4c9c-a3cd-d018c395e342','2024-05-29 09:57:37.605',3511,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','BARAN YILDIZ','491633617091','493760828565','Almanya','WALDENBURG','08396','ALTENBURGER STRABE 37',0,5,100,'745455914','0','0',NULL,980,1,'MAVİ ETİKETİ','2024-05-29 10:01:55.073','2024-06-10 13:50:34.308',NULL),
('f09498b2-ab9d-4831-be05-04151fd3f0f4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','91baaa13-1952-49c9-bd52-7df7a06ce051','2025-05-23 19:51:48.653',2906,'0debd19b-d90b-48a0-9568-2d01319377e0','ONUR MAHAR','436603605379',NULL,'Avusturya',NULL,'1060',NULL,12,4,120,'019113818','0','0',NULL,1200,1,'BEYAZ ETİKETLİ','2025-05-23 19:54:43.396','2025-06-03 09:41:18.079',NULL),
('f0a2b18e-c335-4984-8a55-31e2b94bbe44','51b55e5b-7487-4d8a-923e-163f04d0b1d9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','2024-03-23 07:29:54.708',7266,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','ZAHRA REZAEİ','4915208716085','','Almanya','','30120','BRAUNSCHEVİNG HAVAL STRABE 21',3,4,100,'449768376','0','0',NULL,1500,1,'PEMBE ETİKETLİ','2024-03-23 07:33:38.375','2024-04-02 16:11:13.712',NULL),
('f0a5289b-f034-4540-b03b-9510ca71ec7a','394112c3-f977-4fc2-b430-775e79e472ca','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-28 20:01:58.352',4578,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AYDIN KEMERLİ ','33699316720',NULL,'Fransa',NULL,'87410',NULL,1,6,140,'982837523','0','0',NULL,1800,1,'SARI ETİKETLİ','2024-12-28 20:04:13.437','2025-01-12 13:23:05.907',NULL),
('f0b553df-a781-4ccd-a273-f9c311927595','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-09 12:49:35.849',8735,'4126da30-ba9b-41b7-be29-865069aa484c','HAKAN AKDAĞ','4917612343333','','Almanya','BRANDENBURG','14979','RUHLSDORFER WEG 23',8,1,0,'412418230','0','0',NULL,900,1,'SANDIK','2024-09-09 12:52:35.248','2024-09-18 07:25:11.220',NULL),
('f0b80554-e825-487a-9ec5-ec30be5eade8','394112c3-f977-4fc2-b430-775e79e472ca','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-14 19:38:20.579',7796,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AMELA MULİC ','49176630348266',NULL,'Almanya',NULL,'71711',NULL,13,5.5,100,'982972858','0','0',NULL,3000,1,'AÇIK MAVİ ETİKETLİ','2024-11-14 19:40:13.229','2024-11-28 09:15:31.466',NULL),
('f0c7a240-326d-492c-88a5-bd8e007daa69','ab532050-8a54-4cb4-9e27-59229ab24a9b','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-16 21:51:49.986',4805,'338e8c09-4ca5-4617-bfc1-a0692646d475','GALİP YAYLALI','310650615822','310681538881','Hollanda',NULL,'3023','PASSERELSTRAAT 21 B 3023 ZA ROTTERDAM/ HOLLANDA',7,2.5,120,'338286320','5','5','tesekur ederim',500,1,'AÇIK MAVİ ETİKET ','2025-09-16 21:57:05.174','2025-10-15 20:45:44.795',NULL),
('f0caced4-3715-4549-a387-1a73db0a7166','eccfe611-9163-42aa-a1ff-e711af0248e6','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-10 12:35:17.651',8153,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ŞEYMA ŞANLI ','31611470628',NULL,'Hollanda',NULL,'3261','SPORTLAAN 34 3261 AV OUD-BEİJERLAND',1,1,110,'221883606','5','5','Cok iyi gecti!',450,1,'TURUNCU ETİKETLİ','2024-12-10 12:37:19.427','2025-01-07 19:37:07.881',NULL),
('f0fd560a-44c1-4908-9784-45a3c9fbd2f7','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','8262d585-bae7-47f4-973a-eef1afacb0ad','2025-05-30 05:53:35.841',8329,'a42d8839-caef-4422-888f-cbfdf4188c5b','FAZIL İSPANYA','34698865709',NULL,'Birleşik Krallık',NULL,'1111',NULL,0,2,0,'42892944','0','0',NULL,4000,1,'İSPANYA YA GİDECEK ','2025-05-30 06:02:57.275','2025-06-26 14:18:43.099',NULL),
('f1036344-e4b5-4489-a46b-adbc8a18c0cd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','924d440d-e432-41b3-b267-70c7eacb6b8a','2024-09-02 14:11:26.767',4006,'fbe6fd55-96a9-4517-8757-adbf109bf9ca','SAAED SALİH','4917640533828','','Almanya','BAD RAPENU','74906','KİRCHHAUSENER STR.22',4,3.5,100,'655571326','0','0',NULL,560,1,'YEŞİL ETİKETLİ','2024-09-02 14:18:13.249','2024-09-16 21:14:07.194',NULL),
('f10b88a4-5160-4b26-9eda-5026590612c9','ab532050-8a54-4cb4-9e27-59229ab24a9b',NULL,'2024-11-28 12:42:22.514',10239,'338e8c09-4ca5-4617-bfc1-a0692646d475','RAUF ÇALIŞ','4369911180211','4369910824300','Avusturya','VİENNA','1230','ANTON BAUMGARTNER STRASSE 44/C2/8/3 VİENNA _ AUSTRIA',0,4,140,'338991013','0','0',NULL,700,0,NULL,'2024-11-28 13:15:29.681','2024-12-23 14:09:23.438','2024-12-23 14:09:23.444'),
('f1669928-edf4-48cd-9d17-1413b45ca355','394112c3-f977-4fc2-b430-775e79e472ca','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-07-01 08:56:04.452',9471,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','DİLARA ALAMOORİ','4917624206670',NULL,'Almanya',NULL,'96103',NULL,19,2,140,'982632860','0','0',NULL,700,1,'YEŞİL ETİKETLİ','2025-07-01 08:57:12.071','2025-07-23 06:12:43.036',NULL),
('f169361d-a98a-44cd-9be5-0d014e87b896','51b55e5b-7487-4d8a-923e-163f04d0b1d9','68938225-8232-4d60-ad2a-917bacc4ae21','2024-08-01 08:47:30.268',2813,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','BAL CİHAN','33668667974','','Fransa','Paris','75019','6 bis rue duvergier',10,4.5,110,'614908568','0','0',NULL,1150,1,'KIRMIZI ETİKETLİ','2024-08-01 08:51:05.393','2024-08-16 19:22:01.168',NULL),
('f1bb8455-e7db-4cbc-a016-77c08ef661d8','05135cd5-2d33-4363-b51e-c9b83a94094d','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-26 10:39:33.653',5979,'73596a75-b658-4249-8c71-b0490654bc8b','GİZEM ÖZKAN','33669077826',NULL,'Fransa',NULL,'95190','24 RUE DAVİD WAKS',3,2,0,'73589256','0','0',NULL,0,0,'MAVİ ETİKET','2025-08-26 10:40:21.870','2025-09-08 05:17:27.363',NULL),
('f1dc4c15-b727-4694-84c2-391d5782dae4','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 13:04:12.013',10966,'e6d4faef-484c-4ce7-992c-906e05fc083e','METİN ERDİ(K)','017662004842','017662004738','Almanya','GLUCKSTADT','25348','REİCHEMSTRABE 54 ',0,2,110,'644667834','0','0',NULL,1475,0,NULL,'2025-09-17 13:13:50.495','2025-10-27 08:19:25.353',NULL),
('f22dfd69-914b-41e8-a1f8-32344e1e8fd9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b5c4e118-f70d-4f61-9bf5-cb930542d764','2024-11-23 13:36:54.996',9956,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÇAĞLA SEVİNÇ','31645212604',NULL,'Hollanda','EİNDHOVEN','5623','GENERAL DE CARİSLAAN 36',11,1,100,'745243104','1','3','20 m lik tir ile gelindi, siparis verirken bu bize soylenmemisti . Sofor ara sokaklardan gelemedi ve yarim saat telefonla yol bulmaya calistik. Evin onune parkedilemedi haliyle ve esyalari tasimak zorunda kaldik. ',0,0,'YEŞİL ETİKETLİ','2024-11-23 13:38:28.325','2024-12-05 16:55:06.160',NULL),
('f28509f2-7a8d-45a7-9f70-448e074b8278','aaa4a453-cb36-4567-b88e-335acb07c024','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-03 07:55:42.817',2935,'af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','TUNCAY KOÇOĞLU','491773713548',NULL,'Almanya','BERLİN','13359','SOLDİNER STR. 84, \n13369 BERLİN ALMANYA',4,2,110,'465844619','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-03-03 07:58:24.931','2025-04-05 10:58:08.670',NULL),
('f285a0e0-bae2-40c4-9bd7-33ad4420a56b','1764a07b-eb47-4578-b6cd-f3c0d0e743be','82f1d7bf-2100-48db-928f-49720faaff90','2025-01-09 08:17:12.908',8793,'47880255-08ee-4e99-940b-16038e07de55','ÖZLEM RECEP ÇANAK','4917620374888','05417350813','Almanya',NULL,'12051','SİEGFRİED STRABE 55 12051 NEUKOLN ALMANYA BERLİN',17,1,105,'478966296','0','0',NULL,0,0,'GRİ ETİKETLİ','2025-01-09 08:18:22.314','2025-01-28 15:19:34.396',NULL),
('f2ddd453-c51d-43a7-827f-f55415305fb3','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-15 07:41:26.622',2852,'c2d4ce84-536d-4816-837f-7abbf6a7e061','ŞÜKRÜ ÇABUK','33658826838',NULL,'Fransa',NULL,'93130',NULL,7,2.5,120,'248240352','0','0',NULL,650,1,NULL,'2025-04-15 07:51:09.934','2025-05-02 17:10:43.394',NULL),
('f2e85c5a-0ab0-460f-8b3f-1dce4d598818','56e5168e-cbcf-408d-8798-5560be5c7235',NULL,'2025-08-21 07:47:59.240',3620,'7bb6a552-e940-4456-bfc3-50a13013996c','DİLAN ŞAHİN ','33634091389','0033651732329','Fransa','RİEDİSHEİM','68400','29 RUE DE LA HARDT 68400 \nRİEDİSHEİM FRANSA\n',0,2,120,'765738093','0','0',NULL,1050,0,NULL,'2025-08-21 07:53:21.376','2025-08-26 16:37:09.857','2025-08-26 16:37:09.856'),
('f2f3813a-4330-4d7a-926d-057c1aa9190a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-05 14:22:03.881',4815,'0debd19b-d90b-48a0-9568-2d01319377e0','İLAYDA FİDAN ','1111111111',NULL,'Almanya',NULL,'41065','VOLKSBADSTRABE 67',27,6,110,'019868401','0','0',NULL,2050,1,'MAVİ ETİKETLİ','2025-05-05 14:22:47.362','2025-06-04 19:42:11.048',NULL),
('f307f0b3-1e6f-4062-b3df-b0ccecb5eb70','5c723cdc-e582-4b00-8271-838c085984c2','1f98c5bf-cc86-4e49-b222-f618c5da23fe','2025-03-04 12:10:02.190',4563,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','MADAME COURTOIS IMANE','33698524733','33626131875','Fransa',NULL,'69360','9 ALLEE CLOS DU GOLFE 69360 SAINT SYMPHORIEN D\'OZON FRANCE',2,2,130,'745987581','0','0',NULL,1000,1,'YEŞİL ETİKETLİ','2025-03-04 12:12:09.183','2025-03-16 15:00:17.707',NULL),
('f31b21b9-c25b-489f-8da9-92e3adcac389','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-10-11 11:05:15.221',8387,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','REBİN DOĞANER','33658892061','33602118580','Fransa','MARCHİENNES','59490 ','27 RUE LESAGE 59490 BRUİLLE LEZ MARCHİENNES //FRANSA',0,2.5,120,'614597563','0','0',NULL,4935,0,NULL,'2025-10-11 11:23:56.232','2025-10-27 10:46:23.083',NULL),
('f31b5648-bfa8-453b-a0cc-3f15b30f8046','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-26 10:20:04.288',6592,'47880255-08ee-4e99-940b-16038e07de55','BAHAR ORHAN','33662787707','33783327120','Fransa','BALİNVİLLE','14550','41 RUE DE ROMA 14550 SUR ORNE FRANSA',1,2,130,'478835180','1','3','Şöför uğur beye  ürünlerimizi  verilen tarih ten önce teslim ettiği için çok teşekkür ederiz  ',1200,1,'AÇIK KAHVE ETİKET','2025-08-26 10:23:28.098','2025-09-08 06:58:46.922',NULL);
INSERT INTO `shipment` VALUES
('f31e552e-c834-40f4-b2b5-57faf61eb7a0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-07 07:25:50.112',3755,'47880255-08ee-4e99-940b-16038e07de55','GÜLCE GÜRLER YEGİN','33685656650','33685656718','Fransa','PARİS','75015','22 RUE MARMOTEL 75015 PARİS',16,2,130,'478484020','0','0',NULL,300,1,'YEŞİL ETİKETLİ','2025-01-07 07:29:03.334','2025-02-13 13:19:23.876',NULL),
('f32513e0-8eeb-4eff-b7e0-6c1734713bae','394112c3-f977-4fc2-b430-775e79e472ca','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-30 08:48:12.219',4717,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','RWWHİKA KATUSABE ','4550323382',NULL,'Danimarka',NULL,'8930',NULL,1,3.5,0,'982484679','5','5','Very good ',1300,1,'PEMBE ETİKETLİ','2025-07-30 08:50:17.500','2025-08-28 12:43:41.047',NULL),
('f365b152-062c-430e-aaeb-30628ef9b06d','5c723cdc-e582-4b00-8271-838c085984c2','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-03-24 10:31:39.328',3213,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','RABEB HOCQUARD','330788238988',NULL,'Fransa',NULL,'88390','6 BIS RUE DES CHASSEURS 88390 LES FORGES FRANSA',16,2,130,'74541057','0','0',NULL,675,1,'MAVİ ETİKETLİ','2025-03-24 10:34:23.894','2025-05-02 17:08:29.291',NULL),
('f39c59eb-6753-46e7-ad11-8f7fba3db577','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','2025-05-26 19:43:21.026',4185,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','MERAL KELES','436763232174',NULL,'Avusturya',NULL,'4332','LUNGİTZERSTRASSE 5\nRİED İN DER RİEDMARK',10,2,120,'675890872','0','0',NULL,240,1,'(TURUNCU RENK)','2025-05-26 19:51:04.146','2025-06-28 21:53:40.969',NULL),
('f3a1ac48-b527-42d9-94b5-e4019b6f4591','5330a3bc-acbd-4c67-b0d6-ee14d2228da2','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-02 06:24:04.256',7657,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','EDA ABUL','4917631669596',NULL,'Almanya','AUGUST-SCHMİDT-STR.90  45470 MÜLHEİM','45470','AUGUST-SCHMİD45470 MÜLHEİM',5,2,110,'817160215','1','1','Stresli hic yardimci olmayan bir soför. Hic memnum degilim!!!! ',850,1,'KIRMIZI ETİKETLİ','2025-09-02 06:27:42.874','2025-09-25 14:09:08.374',NULL),
('f3dbda61-0901-46aa-93b6-d65e972a472d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-26 07:00:01.009',5397,'47880255-08ee-4e99-940b-16038e07de55','FARUK YÜCEL','33658630958',NULL,'Fransa','MARİGNANE','13700','87 AVENUE DE GENERAL RAOUL SALAN 13700 MRİGNANE FRANSA',2,6,130,'478867058','0','0',NULL,3650,1,'YEŞİL ETİKET ','2025-08-26 07:00:47.832','2025-09-20 18:55:34.694',NULL),
('f3fb5afa-e27b-4671-8dc8-33032a54e4d2','eccfe611-9163-42aa-a1ff-e711af0248e6','05e8de78-1979-427a-85ea-4116295aadf5','2025-09-18 08:12:43.453',5053,'22a1dbd6-475c-4d4b-bb13-f459e3029634','NİHAL ŞAHİN','31620957828',NULL,'Hollanda',NULL,'3843','GOEMANBORGESİUSLAAN 293, 3843 XJ HARDERWİJK',1,2.5,120,'221899517','4','5','Sorunsuz teslimat yapildi sadece Tirin mahalleye girememesinden dolayi siparisleri biz tasimak zorunda kaldik,diger hersey iyi idi ',950,1,'SARI ETİKET ','2025-09-18 08:14:29.883','2025-10-16 17:26:43.879',NULL),
('f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45','394112c3-f977-4fc2-b430-775e79e472ca','bae1a051-2661-4d51-b287-a8fd73d30813','2025-02-26 13:16:27.484',6912,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAİMİR BALLA ','306974560448',NULL,'Yunanistan',NULL,'29 drama ',NULL,2,3.5,0,'982431907','0','0',NULL,2100,1,NULL,'2025-02-26 13:17:46.866','2025-03-17 23:30:53.310',NULL),
('f41591d6-a92e-4ea1-9c50-b10accb09a51','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-24 08:27:18.947',1448,'3c7190b6-f6ee-4275-8958-d7af952132ab','HAFİZE BALİ','436766461961','436766461961','Avusturya','GRİESKİRCHEN','4710','GRABENSTRASSE 13/2 4710 GRİESKİRCHEN',22,4,140,'371539784','0','0',NULL,1050,1,'BEYAZ ETİKETLİ','2025-04-24 08:29:21.113','2025-05-21 18:42:06.781',NULL),
('f4218149-4b1c-483c-81b6-8a80932a3219','d074816b-78fd-4378-91c0-3835eba28f44',NULL,'2025-01-22 08:19:12.219',7195,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÜLKÜ AKIL','4917655249340','4915774029504','Almanya','ALBSTADT ','114 72458','SCHMİECHAS STR 114  72458 ALBSTADT ',0,2,110,'614726230','0','0',NULL,0,0,NULL,'2025-01-22 08:24:10.328','2025-02-02 10:57:06.185','2025-02-02 10:57:06.188'),
('f4277465-32cb-4557-9e68-bc0849767854','f784b688-ba6b-4886-87dd-fe4cfbed85b4','72839aed-8961-408f-9ffa-cbc7782e1f6f','2025-09-01 06:27:38.597',1612,'dea91080-5383-4085-af2e-7eace2c64224','ÖZKAN ÖZKOŞAR		','33651400749','33651400749','Fransa',NULL,'33450','		\n30 ROUTE DE CAUSSADE 33450 MONTUSSAN BORDEAUX		\n		\n		\n',4,2,130,'910482480','0','0',NULL,0,0,'KIRMIZI ETİKET ','2025-09-01 06:28:35.793','2025-10-16 16:43:50.653',NULL),
('f429c1c6-c6a3-4f80-ac7f-7e84dfe12573','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-10 12:27:59.244',2384,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','İBRAHİM KARABACAK ','33622831464','','Fransa','LA GUERCHE','18150','13 RUE DE LA GUERCHE SUR ',10,3.5,110,'98222175','0','0',NULL,1350,1,'MOR ETİKETLİ','2024-09-10 12:35:24.664','2024-09-27 16:39:59.826',NULL),
('f442c18d-3b28-447e-b106-1af2fe511995','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-23 11:52:57.044',6153,'e6d4faef-484c-4ce7-992c-906e05fc083e','CYNTHİA GARLEE','31640905029','31630905029','Hollanda','ROTTEKADE','2661','ROTTEKADE 57 2661 JM BERGSCHENHOEK THE NETHERLANDS',2,2,120,'644126759','0','0',NULL,650,1,'PALET','2025-06-23 13:53:13.520','2025-07-28 18:39:25.813',NULL),
('f4436630-2c1a-44d9-a503-1ec5a674d42b','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2024-12-28 19:59:28.406',4199,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','NASIR NOORI ','33767294981',NULL,'Fransa','1','11000',NULL,1,2.5,140,'982558117','0','0',NULL,1100,1,'YEŞİL ETİKETLİ','2024-12-28 20:01:37.067','2025-03-04 15:38:32.599',NULL),
('f466e52e-3646-44f8-a493-620d6580aea9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-07-20 10:23:56.448',3626,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','NESİME BAĞCI','31625204455','','Hollanda','SCHIEDAM','3117','VRİENDSCHAPLEIN 18',0,1,100,'614250408','0','0',NULL,950,0,'','2024-07-20 10:26:07.181','2024-10-04 11:52:41.965','2024-10-04 11:52:41.978'),
('f478ae42-a366-4d1f-a16f-c78bdf279680','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','c1316c2d-c5cf-4a71-8f22-fe7451c83298','2025-04-16 10:05:16.438',9605,'3c7190b6-f6ee-4275-8958-d7af952132ab','MEHMET ORHAN','31611322238','31611322238','Hollanda','HARDERWİJİK','3843wt','HEİNSİUSLAAN 30 3843WT HARDEWİJİK HOLLANDA',2,2,120,'371122828','0','0',NULL,1050,1,'PALET','2025-04-16 10:09:50.450','2025-05-02 17:09:16.612',NULL),
('f47ed464-36d8-4dcc-aa21-62c1ac57a879','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-10-23 14:01:46.902',8115,'4126da30-ba9b-41b7-be29-865069aa484c','HALİL ŞAKA ','41763392591',NULL,'İsviçre',NULL,'3380','UNTERHOL.18 WANGEN ANDER ARE 3380 İSVİÇRE',0,2,0,'412830561','0','0',NULL,0,0,NULL,'2025-10-23 14:05:00.238','2025-10-23 14:05:00.238',NULL),
('f483e682-c963-48b9-8959-a369cedd8ffc','5c723cdc-e582-4b00-8271-838c085984c2','d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','2025-02-12 13:25:37.897',2843,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SAFİYE ÇITAK','41797513051','41799101405','İsviçre',NULL,'1530','RUE DES VERNES 5 1530 PAYERNE İSVİÇRE',3,2,140,'745959029','5','5','10',0,0,'Sarı etiketli','2025-02-12 13:28:40.073','2025-02-25 18:02:35.880',NULL),
('f4925a41-5026-4e2b-a759-10c30274e086','313cc2e2-5529-49ab-abe5-27b5d390bc5f','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-11 15:55:34.700',8942,'6133a2db-79c4-4372-9338-505db46b1847','NURETTİN BAYRAK ','491727322843','491725466785','Almanya','HEİLBRONN ','70476','SALZSTRASSE 28 70476 \nHEİLBRONN ',30,2.5,110,'613661947','0','0',NULL,700,1,'TURUNCU ETİKET','2025-08-11 15:56:52.577','2025-09-18 15:07:45.088',NULL),
('f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41','5c723cdc-e582-4b00-8271-838c085984c2','29868815-59a3-472d-968a-f687cc30c0d6','2025-03-13 10:53:17.514',3602,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','HÜLYA KORKMAZ','436641583122','436641583107','Avusturya',NULL,'6250','DR FRANZ STUMPF STRABE 21 / 4 KUNDL 6250 AUSTRIA ',13,2,140,'745724851','0','0',NULL,1250,1,'AÇIK MAVİ ETİKETLİ TURUNCU AMBALAJ','2025-03-13 10:56:45.709','2025-04-02 18:57:10.886',NULL),
('f4b05c3f-913f-4997-a6b3-6f68dc88c63f','c21cdd02-4af2-4b32-bc87-c70a576c3a99',NULL,'2025-09-30 13:07:50.155',1194,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','EMRE DÜNDAR','00491717424410','00491737958593','Almanya','NEUSÄSS',' 86356','TÄFERTİNGER STR. 38A 86356 NEUSÄSS ALMANYA',0,2,110,'515815881','0','0',NULL,550,0,NULL,'2025-09-30 13:10:52.779','2025-10-22 12:48:36.118',NULL),
('f4bd20c1-e77e-468a-82a9-4daefeb2df5c','eccfe611-9163-42aa-a1ff-e711af0248e6','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-03 08:57:02.246',9689,'22a1dbd6-475c-4d4b-bb13-f459e3029634','GODİNA REJEP ','32493977862',NULL,'Belçika',NULL,'1440','RUE DE TUBİZE 65 BOİTE 4, 1440 BRAİNE LE CHATEAU',3,2.5,120,'221157320','0','0',NULL,900,1,'PEMBE ETİKETLİ','2025-03-03 08:59:22.743','2025-03-20 18:07:56.615',NULL),
('f4f40ee4-217b-42da-be20-ab73e6a72821','c21cdd02-4af2-4b32-bc87-c70a576c3a99','f81ec9dd-8fdd-462e-af9b-c064b55486e6','2025-06-30 10:40:24.143',3043,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','AKKİZ TOPCU','436604882013','436609250606','Avusturya','MATZEN','2243','HOFGARTENSTRASSE 26 2243 MATZEN AUSTRİA',26,3,120,'515129438','5','5','Cok ilgili ve zamaninda ürünleri getirdi tesekür ediyorum ',750,1,'AÇIKMAVİ ETİKETLİ','2025-06-30 12:30:08.876','2025-07-21 10:56:10.480',NULL),
('f4fdc95f-d066-47f9-858c-34b39a3d3ebd','1764a07b-eb47-4578-b6cd-f3c0d0e743be','33575f69-1bd5-4954-a74a-8872b1d00a7f','2025-09-22 08:55:53.092',7522,'47880255-08ee-4e99-940b-16038e07de55','AYSEL-İSMAİL ÇILGIN','33676203285','33650063869','Fransa',NULL,'36000','36000PK',9,7,130,'478928003','0','0',NULL,2800,1,'KIRMIZI ETİKET','2025-09-22 09:00:24.518','2025-10-25 08:59:56.231',NULL),
('f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','38f55ecc-79e1-4650-a77b-c756f8cd8fab','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-15 10:38:30.000',7356,'d89f6e4c-ad0d-4d1f-98c2-188a94803196','HELİN ÖZDİL','4917681295929','4915734346614','Almanya','NÜRNBERG','90491','ÄUSSERE SULZBACHER STR. 162 \n90491 NÜRNBERG',23,8.5,110,'896155892','0','0',NULL,2365,1,'KIRMIZI ETİKET','2025-09-11 10:41:34.384','2025-10-27 09:24:10.272',NULL),
('f50e308b-4ed8-4046-a377-c601e8b36d2d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2e09e370-f862-4361-86b2-28f5d97bb0f6','2024-10-24 09:38:14.704',4344,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','MUKUNGU KULEMFUKA','33605930464',NULL,'Fransa',NULL,'38130','9 RUE DE VASSİEUX',10,1,0,'449193323','0','0',NULL,0,0,'GRİ ETİKETLİ','2024-10-24 09:41:03.749','2024-11-25 09:20:39.164',NULL),
('f5369bfb-80d6-4971-9b20-e83e88c077e9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9b5035ef-abfd-44f8-8720-9ecc2608b463','2024-07-20 10:54:43.948',8678,'4126da30-ba9b-41b7-be29-865069aa484c','CAN GLAS GMBH','0436643585040','','Avusturya','','2325','',1,1,0,'412603598','0','0',NULL,350,1,'PEMBE ETİKETLİ ÖNDE','2024-07-20 10:56:22.090','2024-07-25 21:24:32.800',NULL),
('f53e9e60-357b-4a35-b093-f6db8c2a511e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','2024-08-30 08:56:34.687',6930,'f16e28e8-ecf2-4674-b000-e55b2609d558','SEZGİN- FURKAN ÇULLUK','4917632226340','4917664205279','Almanya','WESTFALEN','45968','BUSFORTSHOF16',9,6,0,'162571177','0','0',NULL,0,0,'MOR ETİKETLİ','2024-08-30 09:00:24.426','2024-09-12 10:54:49.048',NULL),
('f572ceaf-0b46-48ec-916f-1f64fb264425','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-02 12:17:23.668',10043,'a42d8839-caef-4422-888f-cbfdf4188c5b','AYŞE ERDEM','4917642942119','','Almanya','GOCH','47574','HİNTER DER MAUER',14,1,100,'428226833','0','0',NULL,600,1,'GRİ ETİKETLİ','2024-10-02 12:20:59.064','2024-10-24 19:09:25.282',NULL),
('f58ff780-8d60-44ab-895e-cd1887ec2eb7','f784b688-ba6b-4886-87dd-fe4cfbed85b4','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-21 07:05:28.519',3901,'dea91080-5383-4085-af2e-7eace2c64224','BELGİN YAĞLI		','4915774500125','4915755392332','Almanya',NULL,'10585','ZİLLETRABE 30B		\n10585 BERLİN		\n		\n',18,5.5,110,'910762495','0','0',NULL,1660,1,'YEŞİL ETİKETLİ','2025-07-21 07:06:56.042','2025-08-19 14:52:38.938',NULL),
('f59e89d5-cc6e-4d5f-8394-432af9b9c0b2','394112c3-f977-4fc2-b430-775e79e472ca','38f77fc3-5f98-4f20-8995-d0cbc6cfead8','2025-03-07 12:35:26.658',9084,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','RERHAYE KHADJA ','330659794019',NULL,'Fransa',NULL,'94260',NULL,11,5,140,'982834531','2','2','Bonjour \nLe livreur n’est pas arrivé le jour indiqué \nIl est arrivé 2 jours plus tard. \n',2600,1,'YEŞİL ETİKETLİ','2025-03-07 12:36:35.311','2025-03-22 19:28:31.254',NULL),
('f5b18e9c-6bdb-4097-ace8-718bd3dec4e0','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','d32a141a-efed-4aa4-8db8-a628a34c49e2','2025-04-09 08:12:08.955',2131,'3c7190b6-f6ee-4275-8958-d7af952132ab','MUAMMER CANPOLAT','4917622372512','4917622372512','Almanya','OFFENBACH AM MAİN','63075','FECHENHEİMER STR 46 63075 OFFENBACH AM MAİN',21,3,110,'371376503','0','0',NULL,990,1,'KIRMIZI ETİKETLİ','2025-04-09 08:13:32.561','2025-04-25 09:51:49.424',NULL),
('f5b8d0dc-52cc-49a9-849a-46f0c7d99c77','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','2025-09-11 07:32:12.628',10159,'e6d4faef-484c-4ce7-992c-906e05fc083e','AYŞE ÖZKAYA(K)','33761428784','33749843814','Fransa','MEYENMOUTİER','88420','751 RUE DE RAVİNES',13,3,120,'644783664','0','0',NULL,545,1,NULL,'2025-09-11 07:37:00.626','2025-10-03 06:54:27.923',NULL),
('f5c275d6-254f-4e0f-9c07-7da2730731cc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ada046d0-c324-498e-b319-06be0a19f72b','2024-12-07 09:04:53.819',5741,'47880255-08ee-4e99-940b-16038e07de55','MUSTAFA ÜNLÜSOY','4917623256596','4917661993409','Almanya',NULL,'71067','KARLSBADERWEG 16',19,1,100,'478318204','0','0',NULL,0,0,'MOR ETİKETLİ','2024-12-07 09:07:00.394','2024-12-17 19:52:32.750',NULL),
('f5d77768-b445-4580-b1a1-2e07f2bb9f93','f784b688-ba6b-4886-87dd-fe4cfbed85b4','39f2d40f-6e0a-4975-9a98-f49131a96020','2025-04-10 09:05:05.020',1901,'dea91080-5383-4085-af2e-7eace2c64224','NESLİHAN KÖSEM		','33781020589','33766361551','Fransa',NULL,'57070','40 B RUE DU VİGNOBLE FRANSA		\nMETZ 57070		\n',11,2,120,'910316067','0','0',NULL,675,1,'BEYAZ ETİKETLİ','2025-04-10 09:07:14.006','2025-05-02 17:08:29.291',NULL),
('f5d87b20-c153-4013-ad66-04b26744dcaa','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2025-07-16 07:42:29.062',6603,'c2d4ce84-536d-4816-837f-7abbf6a7e061','AHMET YARDIMCI','491739514221',NULL,'Almanya',NULL,'111111',NULL,0,2,110,'248510237','0','0',NULL,0,0,NULL,'2025-07-16 07:46:32.909','2025-07-18 17:50:45.961','2025-07-18 17:50:45.960'),
('f5ff5ecc-8494-400b-acf9-c8906860204a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-10-02 09:19:40.680',9750,'c2d4ce84-536d-4816-837f-7abbf6a7e061','MUHSİN AKTEPE','0033626827688','0033624524331','Fransa','VİRY NOUREUİL','02300','1 RUE CHATELAİNE ',16,1,0,'248977442','0','0',NULL,2070,1,'KIRMIZI ETİKETLİ','2024-10-02 09:20:06.173','2024-10-10 16:32:08.887',NULL),
('f63f39c2-1cd3-4226-a94b-31e8ce8e333f','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-04-30 07:50:09.178',10344,'3c7190b6-f6ee-4275-8958-d7af952132ab','SARA CASTRO','491739366502','491739366502','Hollanda','VENLO','5922','AZALEASTRAAT 21 5922 EC VENLO HOLLANDA',19,2,120,'371287728','0','0',NULL,700,1,'PALET','2025-04-30 07:51:58.192','2025-06-05 16:38:03.043',NULL),
('f63ff1b9-4bf8-4f20-b9ad-8c7466498584','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:39:24.264',2382,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','EVMOURZAEVA İMAN','33769656620','','Fransa','CORNEİLLA','67200','60 AVENUE PİERRE',3,3.5,110,'976751266','0','0',NULL,350,1,'KIRMIZI ETİKETLİ','2024-03-16 08:42:21.509','2024-03-25 10:42:32.899',NULL),
('f64732c3-76ae-4710-b1ac-fb3732ed150b','394112c3-f977-4fc2-b430-775e79e472ca','54ef8984-2e3b-495d-97cf-d335170f5365','2024-12-28 20:04:31.335',6210,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','AYHAN ATEŞ','33630048786',NULL,'Fransa',NULL,'87570',NULL,3,2.5,140,'982979874','0','0',NULL,1600,1,'TURUNCU ETİKETLİ','2024-12-28 20:06:04.235','2025-01-12 13:22:47.999',NULL),
('f66bab09-5ba8-4aa0-8e7b-0bd18b10aea9','51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'2024-08-31 11:58:28.409',8893,'4126da30-ba9b-41b7-be29-865069aa484c','ELİF HANIM','','','','','','',0,7,0,'412922678','0','0',NULL,0,0,'','2024-08-31 12:02:01.386','2024-09-04 08:30:52.625','2024-09-04 08:30:52.632'),
('f67ccbd8-fb5a-4345-aaf5-bb5631c7c482','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 11:25:41.610',3998,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ABDULLAH DEMİR','4917684399909','492352549133','Almanya','ALTENA','58762','LENNES STR 54',4,1,100,'745744183','0','0',NULL,700,1,'YEŞİL ETİKETLİ','2024-09-27 11:29:28.441','2024-10-05 11:44:48.003',NULL),
('f67e7508-1afa-4901-b396-faae504c1726','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e693f1df-a037-435c-8bac-bc9331b6d34c','2024-10-09 08:22:09.153',7336,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ÜLKÜ AKIL','4915774029504','4917655249340','Almanya','ALBSTADT','72458','SCHMEİECHAS STR 114',12,5,100,'61480625','0','0',NULL,1295,1,'KIRMIZI ETİKETLİ','2024-10-09 08:33:33.585','2024-10-30 18:10:11.200',NULL),
('f696ebeb-b709-4b6c-aaab-43e32e65d88e','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-10-21 14:21:52.006',2598,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','SELİN DAGDELEN','4915758078105',NULL,'Almanya','BERLİN','10969','SEGİTZDAMM 32',0,3.5,110,'531575051','0','0',NULL,645,0,NULL,'2025-10-21 14:23:19.834','2025-10-23 10:16:38.908',NULL),
('f6d4c8cd-bc6e-4af1-9285-67ed28f49565','eccfe611-9163-42aa-a1ff-e711af0248e6','50ac20f0-3ed2-41b1-a665-f6c7e74ab061','2025-01-24 14:17:03.727',5603,'22a1dbd6-475c-4d4b-bb13-f459e3029634','BABERIH LEİLA ','33620525658',NULL,'Fransa',NULL,'78280','2 RUE EDMOND DANTES 78280 GUYANCOURT',11,2,130,'221164226','0','0',NULL,700,1,'GRİ ETİKETLİ','2025-01-24 14:19:05.026','2025-02-13 13:19:51.326',NULL),
('f7194f95-fa52-48ad-8c78-86a92187abde','5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-19 14:24:57.643',2101,'67e5a145-070e-4e0f-9c3b-09f273d6ed40','MARTİN MARİNKOVİC','436605273426',NULL,'Avusturya',NULL,'2432','SEİLERGASSE 34/2432 SCHWADORF',11,2,120,'675885408','0','0',NULL,2325,1,'KIRMIZI ETİKET ','2025-08-19 14:32:40.283','2025-09-19 05:17:21.991',NULL),
('f75148df-6581-4c9c-b732-15039b1ebd7d','ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-18 20:33:05.835',7294,'dc80f8cd-4aa0-42f5-b84e-658da7d079dd','NATASCHA DJORDJEVİC','4369919588138','4369919588138','Avusturya','VİYANA','1110','MEİDLGASSE 45/6/1 1110 VİYANA',18,4.5,120,'80873489','5','5','Süper!!!',1365,1,'MOR ETİKETLİ','2025-07-18 20:39:15.156','2025-07-31 15:21:03.295',NULL),
('f75aea68-ca38-4530-9ad3-ae32f05071ef','bb561a28-5dde-42e6-a2cb-dd7f6178002f','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','2025-10-08 11:53:51.523',7476,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','TAYFUN COŞGUN','4915118517172','4915789196176','Almanya','DUİSBURG ','47051','MOSELSTRASSE 43\n47051 DUİSBURG ',13,6,110,'351519592','0','0',NULL,1400,0,'AÇIK MAVİ ETİKET','2025-10-08 11:58:32.516','2025-10-25 08:59:08.075',NULL),
('f774fd73-b557-40e4-a1f0-2f9f1e99e70a','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','2025-07-02 09:22:12.194',10356,'e6d4faef-484c-4ce7-992c-906e05fc083e','KÜRŞAT OKUTAN','33650469375','33614945585','Fransa','MONTAGNE','57860','44 RUE DE LA MİNE',8,6,120,'644377360','0','0',NULL,2450,1,'KIRMIZI RENK','2025-07-02 09:29:06.254','2025-07-29 13:55:03.111',NULL),
('f7979b44-eac7-41b0-a981-1f2165181d24','5c723cdc-e582-4b00-8271-838c085984c2',NULL,'2025-07-02 15:25:17.006',6248,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','ÖMER YILDIZ','4915143815378','4916098056545','Almanya',NULL,'35630','STEIGWIESE 18 35630 EHRINGSHAUSEN ALMANYA',0,2.5,105,'745249761','0','0',NULL,2900,0,'7 M3','2025-07-02 15:26:05.501','2025-07-17 12:47:19.797','2025-07-17 12:47:19.796'),
('f7a8a9e2-a809-489e-aa1a-ca2638acc3a9','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3',NULL,'2025-03-21 11:52:12.534',6484,'3c7190b6-f6ee-4275-8958-d7af952132ab','DFFDFED','1232342422',NULL,'Almanya',NULL,'44343',NULL,0,2,110,'371996022','0','0',NULL,125,0,NULL,'2025-03-21 11:53:48.927','2025-03-21 13:36:44.168','2025-03-21 13:36:44.171'),
('f7d36bd1-9c1c-4000-b3a4-bde690e8c1bc','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6',NULL,'2025-09-17 12:48:41.414',7668,'e6d4faef-484c-4ce7-992c-906e05fc083e','SUZAN EL MOUSSA(K)','491759091093','01759091093','Almanya','KÜNZELL','36093','WİLHELM ÖSTERİCH STRABE 8 ',0,2,110,'644680528','0','0',NULL,1125,0,NULL,'2025-09-17 12:57:37.847','2025-09-17 12:59:51.991','2025-09-17 12:59:51.990'),
('f7d5b080-0e6d-41d4-ada4-022be6e316f2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','833e117f-aca3-4f6d-a963-d029ef9f8ddd','2024-10-15 14:27:59.337',5219,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','FATMA GÜR','4915204511037','491523213351','Almanya','','25746','',1,1,100,'745382052','0','0',NULL,550,1,'','2024-10-15 14:28:43.670','2024-10-26 07:30:49.319',NULL),
('f7d9721d-e27b-40dc-a48f-5d1604c92366','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-09-24 10:52:51.075',5412,'e6d4faef-484c-4ce7-992c-906e05fc083e','YAKUP AKYOL','4917630530053','491727767813','Almanya','LÜBECK','23558','TÖPFERWEG 2B',2,3,110,'644741916','0','0',NULL,1700,0,'KIRMIZI ETİKET','2025-09-24 10:59:15.705','2025-10-20 07:18:19.736',NULL),
('f7ef839c-2795-4f15-80a8-414937600965','51b55e5b-7487-4d8a-923e-163f04d0b1d9','bdbe2cab-db44-453f-899e-74c537e1e204','2025-07-12 09:09:30.509',2612,'4126da30-ba9b-41b7-be29-865069aa484c','HARUN','6472647627466264',NULL,'Almanya',NULL,'46145','TONDENER STRABE 29 A',11,2,0,'412302460','0','0',NULL,500,1,'FIRIN','2025-07-12 09:11:06.222','2025-07-25 18:13:04.067',NULL),
('f7f2db15-90e1-4ab2-89b6-6a61a7161bbf','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c6a1c9e-fad3-44d2-8812-5ebe40baad05','2024-05-11 08:16:23.174',1181,'4126da30-ba9b-41b7-be29-865069aa484c','Zafer bey','491639578000','','Almanya','','32657','Braker MİT\'e 35 Lemgo Bielefeld',4,1,0,'412454305','0','0',NULL,850,1,'PEMBE ETİKETLİ','2024-05-11 08:24:02.602','2024-05-24 07:09:15.936',NULL),
('f8003060-1e71-4fe0-87c6-64270a8a2100','51b55e5b-7487-4d8a-923e-163f04d0b1d9','3d3e1579-5d80-4740-8a5e-cb784d739a01','2024-04-23 10:11:50.434',9695,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ESMA EROĞLU','4915208560567','','Almanya','GÜNZBURG','89312','FLİEDERWEG 3',3,2.5,100,'614859961','0','0',NULL,0,1,'','2024-04-23 10:14:07.841','2024-04-26 20:12:15.906',NULL),
('f8279968-06bb-4f3f-95e2-612d3d340d74','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-07 11:17:45.299',7822,'97395954-a607-42cd-986f-68a20e6e23be','AHMET GÖKÇEK ','31648076421','','Hollanda','ROTTERDAM','3066','MOURİTS STRAAT 25',17,7,0,'973510341','0','0',NULL,700,1,'BEYAZ ETİKETLİ','2024-10-07 11:32:36.732','2024-10-25 05:45:19.326',NULL),
('f82a6da6-d534-481f-99b5-f2618145eed1','585b4575-ecea-4671-89b2-199f0605ed62',NULL,'2025-10-15 08:00:41.187',3730,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','JESSİCA PAPST','016095629560','05388618969','Almanya',NULL,'65549','HOLZHEİMERSTRASSE 67\n65549 LİMBURG AN DER LAHN',0,2,110,'786156168','0','0',NULL,5087,0,NULL,'2025-10-15 08:03:32.499','2025-10-22 12:44:29.616',NULL),
('f8707ecf-1dbe-4a0a-87e0-a7980b1877bc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','a3cdb163-a33b-4842-89c0-a73eabc036c0','2024-03-18 07:11:16.557',5816,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','YILMAZ İNAÇ','436602545826','436603846067','Avusturya','LİNZ','4511','ALHAMİNG DİSTELWEG 14',0,4,120,'501901219','0','0',NULL,1600,1,'','2024-03-18 07:16:55.870','2024-03-30 21:35:31.163',NULL),
('f87bc653-3c5c-4043-891f-2ac7f87b388a','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2024-12-30 09:26:46.561',1064,'a42d8839-caef-4422-888f-cbfdf4188c5b','NADİR KURUKOL','4915788014296','4917631419046','Almanya',NULL,'70327','NÄGELESÄCKER STR. STUTTGART(LUGİNSLAND)',16,4.5,0,'428819984','0','0',NULL,0,0,'SARI ETİKETLİ','2024-12-30 09:28:17.353','2025-01-08 18:08:34.301',NULL),
('f8828112-c2c0-43e1-8300-a4fea7da05f8','394112c3-f977-4fc2-b430-775e79e472ca','c0caa75d-5140-4f30-af4c-9e9f3874a360','2025-02-13 15:15:34.478',2077,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','LOULOU FİRAS ','33782642365',NULL,'Fransa','NANCY ','54000',NULL,17,2,140,'982754836','0','0',NULL,2800,1,'KIRMIZI ETİKETLİ','2025-02-13 15:17:30.110','2025-02-28 12:03:49.205',NULL),
('f88a76d7-303d-42cd-8c6a-7f28ae3b408e','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','48d1afe3-6d19-44da-863e-7181c7b173cd','2025-04-24 08:31:44.191',5228,'3c7190b6-f6ee-4275-8958-d7af952132ab','MURAT TEKİN','4915223076449','4915223076449','Almanya','HAMBURG','22763','BAHRENFELDER KİRCHENWEG 6E 22763 HAMBURG ALMANYA',2,2,110,'371437952','0','0',NULL,950,1,'SARI ETİKETLİ','2025-04-24 08:33:05.596','2025-05-14 06:37:41.026',NULL),
('f89b4f3b-c0e7-417e-ad5b-c640c314a6a5','5c723cdc-e582-4b00-8271-838c085984c2','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-06 10:56:22.984',4181,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İBRAHİM BAĞCI SSH','4917656525814','4917620519550','Almanya',NULL,'68549','NEUSTADTER STR 2 68549 ILVESHEIM ALMANYA',15,2,105,'745983500','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-03-06 10:58:23.913','2025-03-17 14:54:13.276',NULL),
('f8a139f0-1f82-4b1a-8d72-56243db2d7b8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-08-14 08:52:11.144',6640,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','METE BOZDAĞ 1 ','33695911824','33650187030','Fransa',NULL,'68120','18 RUE DES VOSGES 68120 PFASTATT FRANCE',9,2,130,'745241298','0','0',NULL,0,0,'AÇIK MAVİ ETİKET','2025-08-14 09:07:42.214','2025-08-29 16:53:28.044',NULL),
('f8a35a67-4391-400d-b200-b2e5eb8c88d5','89428e9c-4d02-45c3-a044-0b2a5ac2465d','bdbe2cab-db44-453f-899e-74c537e1e204','2025-05-20 06:38:06.576',1777,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','AYŞE ŞEKER','4917663706491',NULL,'Almanya','SCHWERTE','58239','MARKİSCHESTR 23 / SCHWERTE',15,9.5,110,'976114868','5','5','Cok teşekkür ederiyoruz zamanında ve  şoförün de ustalikli becerisi sayesinde dar bir sokak olsada evimizin önüne teslim oldu ürünler. \nKolayliklar diliyoruz ✨️✨️✨️✨️✨️',2650,1,'yeşil renk','2025-05-20 06:50:10.052','2025-07-25 11:33:24.139',NULL),
('f8cb67fa-fe67-46a9-9038-d693e382afe9','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-01 09:30:25.011',6253,'47880255-08ee-4e99-940b-16038e07de55','HEVİ BARAN','41792302655','41764104956','İsviçre','ZWİNGEN','4222','SCHLOSS 29   4222 ZWİNGEN İSVİÇRE',0,2,140,'478893710','0','0',NULL,1400,0,'2.5 m3','2025-10-01 09:32:28.057','2025-10-27 08:05:11.335',NULL),
('f8f36d3c-b453-4ef2-9053-625e7ae9a535','1764a07b-eb47-4578-b6cd-f3c0d0e743be','cab6324f-e4eb-48af-b3a4-31980247e32c','2025-08-29 08:28:55.455',1541,'47880255-08ee-4e99-940b-16038e07de55','ÖMER EKŞİN','33781488787','33652423048','Fransa','REİCHSHOFFEN','67110','53 ROUTEDE STRASBOURG 67110 REİCHSOFFEN',0,5,130,'478391312','0','0',NULL,2200,1,'MOR ETİKET ','2025-08-29 08:30:44.763','2025-09-20 19:00:31.521',NULL),
('f8fc3b49-9b9c-4432-80be-0d9ce15dac6e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-27 12:43:19.029',10151,'c2d4ce84-536d-4816-837f-7abbf6a7e061','','0031641290838','','Hollanda','DORDRECHT','3311','WİJNSTRAAT 45',17,1,0,'248864808','0','0',NULL,0,0,'MOR ETİKETLİ','2024-09-27 12:45:05.065','2024-10-07 14:03:47.331',NULL),
('f916cbe2-16c9-422e-bd45-4fe8c62efdbd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-10-06 09:11:26.468',3627,'3b80982a-28cd-44f1-8d72-59c4daf5e636','ÖNDER KOCYİGİT','4915154648685',NULL,'Almanya',NULL,'40789','FALKENSTR. 1\n40789 MONHEİM\nDEUTSCHLAND',18,2,110,'380453463','0','0',NULL,0,0,'SARI ETİKET ','2025-10-06 09:12:56.027','2025-10-17 06:14:23.899',NULL),
('f94d7e44-ad9c-478b-82da-bff20e93e06f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','b624c770-5cbb-488e-8512-45ad975a729d','2024-12-20 12:41:48.540',8166,'73596a75-b658-4249-8c71-b0490654bc8b','BİLAL ACAR','905447402789',NULL,'Almanya',NULL,'22159','GÜNTER-PÜSTOW STRABE 15',3,1,0,'735143086','0','0',NULL,0,0,'TURUNCU ETİKETLİ','2024-12-20 12:43:35.972','2025-01-11 09:48:39.309',NULL),
('f97838bf-6f9a-497c-88e0-36e7f07964ff','51b55e5b-7487-4d8a-923e-163f04d0b1d9','9277c9d4-8691-44ae-98c7-5a99d95125fb','2024-07-24 10:04:44.240',7699,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','NAFİLE HANIM','33623912069','','Fransa','MORELLES','91630','39 CHEMIN DE PARİS',3,12,110,'976543269','0','0',NULL,1250,1,'PEMBE ETİKETLİ','2024-07-24 10:06:54.268','2024-09-14 18:52:26.605',NULL),
('f9930b26-2916-433c-84e9-7d26f5c38b59','c21cdd02-4af2-4b32-bc87-c70a576c3a99','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-30 10:50:54.129',6892,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','VOLKAN CELİK','436601893040','436609950405','Avusturya','FİSCHA','2441','BAHNSTRASSE 15 HAUS 1 2441 MİTTERNDORF AN DER FİSCHA AVUSTURYA',16,2.5,120,'515785688','0','0',NULL,600,1,'MAVİ ETİKETLİ','2025-06-30 12:40:37.060','2025-08-01 07:58:25.524',NULL),
('f997086a-fb73-43a8-899e-ff36b6cb5597','8fff5e14-418c-4377-bd83-3a3f81383507','0391eccf-fdab-4134-a6b2-71ed68186b55','2025-08-21 11:40:42.364',4820,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','EMEL ALATAŞ','4915906493452',NULL,'Almanya','MÖNCHENGLADBACH','41199','MARİENBADER STR 2',11,3.5,110,'43789661','0','0',NULL,495,1,'KIRMIZI ETİKET ','2025-08-21 11:56:35.330','2025-09-09 12:51:12.366',NULL),
('f99b50af-eb7f-4cab-b383-9c577efa25b1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f14d0641-587a-4959-a970-071f376a1eb3','2024-10-11 09:02:32.240',1967,'47880255-08ee-4e99-940b-16038e07de55','RESUL YILMAZ','32486702531','32484427086','Belçika','BELSELE','9111','CORBAUT STRAAT 4',18,1,100,'478816607','0','0',NULL,5350,1,'TURUNCU ETİKETLİ','2024-10-11 09:32:57.732','2024-10-25 13:20:24.186',NULL),
('f99d0c09-6369-4571-a1fa-cae7407d9134','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2c596345-3f37-4571-9d62-83b8b96993d4','2025-08-20 09:33:44.978',10251,'47880255-08ee-4e99-940b-16038e07de55','BİLGEN TATAR','3748376263636373',NULL,'Fransa',NULL,'95470','17 RUE DES AMEMMOMES 95470 FRANSA',4,2,130,'478901590','0','0',NULL,150,1,'SARI ETİKET','2025-08-20 09:34:17.767','2025-09-08 05:04:07.658',NULL),
('f99fe573-182b-4663-9ef2-0b30f4db8009','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-30 14:06:55.363',8261,'59868701-abe4-4705-a7e6-d91c2c69262e','AHMAD KADİ','491713800212','4915778776524','Almanya',NULL,'32120','BUCHENKAMP.1 \n32120 HİDDENHAUSEN',13,6,110,'598102662','0','0',NULL,1200,1,'AÇIK MAVİ ETİKETLİ','2025-07-30 14:08:15.941','2025-08-20 12:01:53.270',NULL),
('f9c61776-accb-469f-88e4-b551ad871fe8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','e10c5155-6fe5-4df2-8f96-eddaea94db05','2024-08-20 14:23:30.786',6470,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','LYDİE MAKALU','33772302875','','Fransa','','94450','residence la cheneraie limeel',1,5,110,'449780250','0','0',NULL,1800,1,'TURUNCU ETİKETLİ','2024-08-20 14:29:46.724','2024-09-04 07:29:55.477',NULL),
('f9d93c62-66a8-418a-abd8-01753a82e84d','394112c3-f977-4fc2-b430-775e79e472ca','137e1f83-d1e4-4e49-a611-79b146cc7098','2025-07-09 08:38:23.349',6713,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','SAVU ALİN ','40741058791',NULL,'Romanya',NULL,'117197',NULL,3,3.5,0,'98221051','5','5','All ok',1400,1,'KIRMIZI ETİKETLİ','2025-07-09 08:39:11.998','2025-07-18 22:04:41.762',NULL),
('f9dde0cb-7f13-495b-a653-2354ad04f07d','585b4575-ecea-4671-89b2-199f0605ed62',NULL,'2025-05-02 12:35:16.905',3790,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','HADZİC MİRZAD','41791238825','05388618969','İsviçre',NULL,'6330','KNONAUERSTRASSE 52D 6330 CHAM SCHWEIZ',0,3.5,140,'786729785','0','0',NULL,2090,0,NULL,'2025-05-02 12:37:19.167','2025-05-14 18:11:14.325','2025-05-14 18:11:14.328'),
('f9e67fd0-ab8e-4143-94a8-e48dd36700d0','f784b688-ba6b-4886-87dd-fe4cfbed85b4','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-03-05 08:26:39.731',7144,'dea91080-5383-4085-af2e-7eace2c64224','SÜLEYMAN MAKAS','491725459093','491725459093','Almanya',NULL,'89352','BAHNHOF STR 3  89352 ELLZE',21,2,110,'910560938','0','0',NULL,0,0,'MOR ETİKETLİ','2025-03-05 08:27:52.068','2025-03-15 08:58:06.593',NULL),
('fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e','89428e9c-4d02-45c3-a044-0b2a5ac2465d','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-06-24 10:49:41.155',2428,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','MUHAMMED EL BOUCHATTAOUI','33770299406',NULL,'Fransa','TOULOUSE','31100','11 RUE VINCENT VAN GOGH APPARTEMENT 15',2,3.5,130,'976235260','5','5','Livraison au rapide et suivie au top merci',1400,1,'YEŞİL ETİKETLİ','2025-06-24 11:00:28.723','2025-08-05 14:30:45.993',NULL),
('fa43edbe-bf66-4c07-ab59-51d6823553d1','3b8909c4-8a78-46c3-93e4-9259d59b50be','f99a300e-c809-4155-bc34-9490eaae72a3','2025-02-11 06:59:25.717',6714,'1b51c5f7-649a-424f-ba17-cc37d6298af9','İLHAN ERAYDIN','491785094918',NULL,'Almanya','MÜNCHEN','81249','STREİTBERG STR 90 81249 MÜNCHEN',18,4.5,0,'15151133','5','5','Süper hizli saglam',1070,1,NULL,'2025-02-11 07:05:26.203','2025-03-21 17:17:29.974',NULL),
('fa60442a-c5d9-443f-9c1e-41b04158daa0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-19 10:36:35.865',7212,'d7a5b03e-dc29-4fad-b4f7-81ce8f971136','CEMAL KÖSE','31686174189','','Hollanda','','2711','GRİEKENLANDLAAN 145',9,6.5,0,'750822079','0','0',NULL,0,0,'MOR ETİKETLİ','2024-08-19 11:34:25.883','2024-08-31 19:24:01.802',NULL),
('fa70b271-3bdb-47d3-9c07-aed6751f25bb','394112c3-f977-4fc2-b430-775e79e472ca','d123109e-9a26-4781-939a-87cda202f683','2024-11-10 18:32:44.380',9897,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','jusuf mehmedi','410782698878',NULL,'İsviçre',NULL,'5004','5004 aarau',5,2.5,140,'982844191','0','0',NULL,2000,1,'KIRMIZI ETİKETLİ','2024-11-10 18:34:48.016','2024-12-15 17:44:32.459',NULL),
('fa763b5d-87a5-4561-b94a-76c46bc6cab0','1764a07b-eb47-4578-b6cd-f3c0d0e743be','436a1d7c-14cd-401b-8132-3d9c26d9d327','2025-01-06 09:20:07.251',1020,'47880255-08ee-4e99-940b-16038e07de55','ALİCAN KABAK ','41796408561','41782152595','İsviçre','GLORE','1752','ROUTE DU BELVEDERE 4 1752 VİLLARS SVR GLORE İSVİÇRE',6,3.5,140,'478224735','0','0',NULL,1000,1,'TURUNCU ETİKETLİ','2025-01-06 09:23:02.904','2025-02-01 16:36:30.863',NULL),
('fa91f296-36f9-43f0-8480-dce4f2f7ed4b','eccfe611-9163-42aa-a1ff-e711af0248e6','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-08-23 10:23:36.944',8403,'22a1dbd6-475c-4d4b-bb13-f459e3029634','CAN ILKAY IBOV','4915737531059',NULL,'Almanya',NULL,'67067','EDVARD JOST STRABE 21  67067 LUDWİGSHAFEN AM RHRİN',21,2.5,110,'221225501','0','0',NULL,800,1,'TURUNCU ETİKETLİ','2025-08-23 10:25:27.617','2025-09-23 14:04:07.289',NULL),
('face1a09-2be5-4ea9-b295-ce5813e481fb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-27 17:04:49.789',7572,'98ea2dbd-82be-4bbe-b758-b7175c0f8659','ŞAHİN DOROTHE','330750840793',NULL,'Fransa',NULL,'33270',NULL,5,2,140,'98298396','0','0',NULL,2000,1,'BEYAZ ETİKETLİ','2025-06-27 17:06:10.384','2025-07-15 19:42:47.887',NULL),
('fae6865f-80a7-46a1-9f93-f722559d4617','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','66307a01-d585-4127-903b-18748421c29e','2025-04-02 09:18:59.047',8183,'4126da30-ba9b-41b7-be29-865069aa484c','POLAT BALKAYA','491781789912',NULL,'Almanya',NULL,'38524','BERGSTRABE 16',7,8,0,'412610139','0','0',NULL,880,1,'MAVİ ETİKETLİ','2025-04-02 09:22:25.513','2025-05-08 07:31:29.730',NULL),
('fb0dcc99-0e15-4960-919f-09d52748c91e','f784b688-ba6b-4886-87dd-fe4cfbed85b4','187e76a0-f3c3-4686-8b43-ae76882956a8','2025-09-17 14:22:10.445',10977,'dea91080-5383-4085-af2e-7eace2c64224','FURKAN YESARİ GÜVEN','4917656342150','4917670112054','Almanya',NULL,'74074','GUTENBERG STR.76 74074 HEİLBRONN		\n',31,3.5,110,'910995300','0','0',NULL,775,1,'TURUNCU ETİKET','2025-09-17 14:23:10.089','2025-10-15 08:13:18.159',NULL),
('fb2d850b-07cf-4a0d-b64b-54e95ff0d79f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','52c02271-6eae-4be1-a572-d97f124d470a','2024-06-14 09:14:24.343',4676,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','GÜLSÜM KOÇAK','33625877440','33695016273','Fransa','EGLETONS','19300','CITE DES PRAIRIES A12',0,1,110,'745632580','0','0',NULL,0,0,'','2024-06-14 09:18:16.331','2024-06-25 14:26:18.719',NULL),
('fb2fc179-a854-474a-abee-016abeacaafd','585b4575-ecea-4671-89b2-199f0605ed62','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-20 14:15:57.118',9719,'7868f0ab-d491-44f8-9f78-15fc6f286ffa','MUSTAFA AZAMİ','4917681126034',NULL,'Almanya',NULL,'30657','LERCHENSTİEG 9 , 30657 HANNOVER',5,2,110,'786398335','0','0',NULL,0,0,'PEMBE ETİKETLİ','2025-05-20 14:17:14.677','2025-06-06 17:37:23.725',NULL),
('fb6d94c6-dc73-470f-92ac-fd4950b9d25a','f784b688-ba6b-4886-87dd-fe4cfbed85b4','17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','2025-05-14 06:41:32.115',3135,'dea91080-5383-4085-af2e-7eace2c64224','BERKAN AĞIRMAN','491578706465','4917664681539','Almanya',NULL,'46117','BOTTROPER STRASSE 146\n46117 OBERHAUSEN',13,2,110,'910899167','0','0',NULL,350,1,'TURUNCU ETİKETLİ','2025-05-14 06:50:00.449','2025-06-05 16:38:45.486',NULL),
('fb70c94c-78cc-4a1f-9b09-616f804975bb','8fff5e14-418c-4377-bd83-3a3f81383507','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-15 13:36:16.714',1861,'ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','ÖZGÜR ÇEŞME','32489883387',NULL,'Belçika','SINTAMANDSBERG','9040','STAFBRUGGENSTRAAT 1A',5,2,120,'437540085','0','0',NULL,0,0,'YEŞİL ETİKET ','2025-10-15 13:38:35.858','2025-10-22 13:07:06.827',NULL),
('fbc4c4b7-9137-42ec-b6e9-fdea41ca69fc','05135cd5-2d33-4363-b51e-c9b83a94094d',NULL,'2025-08-15 11:17:14.872',5439,'e6d4faef-484c-4ce7-992c-906e05fc083e','AAAAAAAAAA','4545464646446444',NULL,'Almanya',NULL,'44444',NULL,0,2,110,'644555673','0','0',NULL,666,0,NULL,'2025-08-15 11:20:41.154','2025-08-15 11:24:45.026','2025-08-15 11:24:45.025'),
('fbc52807-2ea4-4332-b106-de7e103725f4','eccfe611-9163-42aa-a1ff-e711af0248e6','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','2025-05-13 07:06:44.964',10587,'22a1dbd6-475c-4d4b-bb13-f459e3029634','L.DOUİRİ','31616177298',NULL,'Hollanda',NULL,'1339','PİGMENTHOF 7 , 1339 HB ALMARE',5,2.5,120,'221997933','3','1','Your driver just throws the goods on the street and has zero social skills ',1625,1,'GRİ ETİKETLİ','2025-05-13 07:08:39.786','2025-06-13 17:11:04.979',NULL),
('fbf1995f-2086-4c7e-b569-f8b57a07eadb','c21cdd02-4af2-4b32-bc87-c70a576c3a99','9e06441c-1bec-4f47-847f-83bea94f8369','2025-08-27 16:50:35.499',8969,'515c4bf3-dd06-4075-ad27-6ad0e74d6d00','NURAY DURAN','436765022153','436765022152','Avusturya','INNSBRUCK TİROL','6020','GENERAL-ECCHER-STRASSE 14 6020 INNSBRUCK TİROL/ÖSTERREİCH AVUSTURYA\n',13,2.5,120,'515261200','0','0',NULL,1000,1,'MOR ETİKET ','2025-08-27 16:55:28.907','2025-09-16 17:49:01.186',NULL),
('fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','181a019f-f84f-4bec-9e2d-64e6f0c068eb','2025-03-20 11:11:17.898',7435,'8ab1a778-44bd-4629-8fc0-7fcc33425e9f','AMİRA GHRAB','4917631133245',NULL,'Almanya',NULL,'33824','RAVENSBERGER STRABE 18',8,4,110,'81723596','0','0',NULL,650,1,'MOR ETİKETLİ','2025-03-20 11:13:09.027','2025-04-08 15:37:20.028',NULL),
('fc0e2c81-da3d-4fbc-8c40-257556b597e4','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-10 08:38:47.257',5764,'47880255-08ee-4e99-940b-16038e07de55','NURHAN BEYRUL','491635011017','491630162225','Bulgaristan','VELİKO TIRNOVA','5000','ANGEL KARALİYCHEV 12 G PK:5000  VELİKO TIRNOVA BULGARİSTAN',0,2,0,'478205052','0','0',NULL,1200,0,'3.5 m3','2025-10-10 08:41:08.423','2025-10-27 08:02:29.059','2025-10-27 08:02:29.058'),
('fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','796d8b7b-662b-493a-8d3f-78c3ae052712',NULL,'2025-10-27 13:33:01.277',9570,'d8172c72-d29b-40c5-b0b2-0277129ff6b4','MAZLUM BOLAT','491602016185','491794588958','Almanya','STADFALLENDORF','35260','SEMMELWEİSW 6 35260 STADFALLENDORF HESSEN - ALMANYA',0,2,110,'817138322','0','0',NULL,1555,0,NULL,'2025-10-27 13:42:09.959','2025-10-27 13:42:09.959',NULL),
('fc31e466-d8a0-4227-8542-d08063fb7971','d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','6e170676-8e22-488f-a4ec-2e5cfb9db651','2025-07-17 14:04:12.674',8397,'59868701-abe4-4705-a7e6-d91c2c69262e','TALHA KARA','4917684715486','4917620485036','Almanya',NULL,'77933','TRAMPLERSTASSE 87/6, 77933 LAHR/SCHMARZWALD ALMANYA',16,9,110,'598384021','0','0',NULL,2525,1,'MOR ETİKET ','2025-07-17 14:07:43.894','2025-08-28 18:20:02.085',NULL),
('fc5c1bb8-c1d0-4065-b1a8-be81de217222','313cc2e2-5529-49ab-abe5-27b5d390bc5f','e9624207-f65d-451c-9ab0-5f510c811052','2025-07-24 08:57:31.720',6509,'6133a2db-79c4-4372-9338-505db46b1847','SWEETA QALANAWİ ','4917623595130','4917625035893','Almanya','HAMBURG','22089','RÜCKERSTRABE 3  22089  HAMBURG',9,2,110,'613393068','0','0',NULL,650,1,'YEŞİL ETİKETLİ','2025-07-24 09:01:48.528','2025-09-01 10:25:23.421',NULL),
('fc7f087a-ae03-4140-970a-58c79194cdc8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','ec518edc-d061-4e5c-8d56-8477e6213bda','2024-04-01 09:19:57.634',3969,'47880255-08ee-4e99-940b-16038e07de55','AHMET BAYDAR','31685036791','','Hollanda','DİEMEN','1111','PR. MARGRİET STRAAT 27',12,1,100,'478943291','0','0',NULL,4300,1,'Turuncu etiketli','2024-04-01 09:22:21.999','2024-05-02 19:56:42.327',NULL),
('fc887031-1390-40a7-844d-2f0bb0331e99','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 08:23:02.484',3709,'b734c482-3c00-4897-ad35-bc358cd02d56','SERDAR DÖNMEZ','','','Fransa','THONES','74230','43 RUE DU MONT CHARVİN',9,5,96,'734447528','0','0',NULL,0,0,'AÇIK MAVİ ETİKETLİ','2024-03-16 08:25:27.352','2024-03-27 11:10:13.393',NULL),
('fcb0b841-6635-4572-b614-c5ef3a33d371','e6cc7d42-de29-4029-bf0f-5ba2156e1e85',NULL,'2024-12-20 05:50:27.079',7875,'a42d8839-caef-4422-888f-cbfdf4188c5b','MUSTAFA MÜEZZİNOĞLU','32490219326','32490219325','Belçika',NULL,'26 2800','KREİTENBORGSTRAAT 26 2800 MECHELEN BELÇİKA',0,1,100,'428310085','0','0',NULL,0,0,'çok acil ürün alınmalı','2024-12-20 05:51:47.732','2025-02-05 11:36:59.740','2025-02-05 11:36:59.742'),
('fcd7666d-0415-4ff3-a449-800232806032','f784b688-ba6b-4886-87dd-fe4cfbed85b4','1ec41061-3001-4522-bd70-1daeeb3cba8f','2025-01-28 10:00:55.522',1857,'dea91080-5383-4085-af2e-7eace2c64224','SELCAN ALTINSOY','4917620431964','4915560607242','Almanya',NULL,'68789','LİNDERWEG 2 68789 ST.LEON-ROT		\n',24,2,110,'910479941','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-01-28 10:02:47.375','2025-02-15 11:10:56.856',NULL),
('fcdb759d-3864-480a-a425-d30f514cc0dd','1764a07b-eb47-4578-b6cd-f3c0d0e743be',NULL,'2025-10-24 08:06:48.883',6994,'47880255-08ee-4e99-940b-16038e07de55','HASAN DEMİRSAL','32487622359','32488533676','Belçika','VERVİERS','4800','RUDES CARRİERES 79 4800 VERVİERS BELÇİKA',0,2,120,'478273464','0','0',NULL,2000,0,'4m3','2025-10-24 08:08:49.767','2025-10-24 08:08:49.767',NULL),
('fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-08 18:26:08.683',4201,'47880255-08ee-4e99-940b-16038e07de55','AYŞE KONDAL','33782212899','','Fransa','','36000','11 rue saint vincent',26,11,110,'478971881','0','0',NULL,4000,1,'SARI ETİKETLİ','2024-05-08 18:28:17.595','2024-05-24 07:08:13.556',NULL),
('fcf0c01f-72e5-4298-b55c-15849b2fdb04','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6889f2af-6fdd-49e6-876f-ff0e206bbf32','2024-03-16 06:39:31.852',5462,'47880255-08ee-4e99-940b-16038e07de55','MUHAMMET ENES KILIÇ','33749069844','','Fransa','TOULUSE','31170','1 impasse de la palombiere',20,7,110,'478609228','0','0',NULL,1000,1,'SARI ETİKETLİ','2024-03-16 06:43:34.685','2024-04-01 07:53:00.910',NULL),
('fcf75500-baa7-41fe-a63b-d2654bfa45b4','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302',NULL,'2025-09-30 07:35:01.151',2599,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','ESRA GÜNER','33695083773',NULL,'Fransa','QUİMPER','29000','5 İMPASSE DU JASMİN 29000 QUIMPER',0,2.5,130,'53182437','0','0',NULL,750,0,NULL,'2025-09-30 07:37:18.214','2025-10-06 11:46:15.164',NULL),
('fd4a184e-d04a-45fa-af74-f7d45806dede','63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','578b6ae0-5a9d-4a77-8099-a017840800a0','2025-05-29 07:58:11.005',10903,'e6d4faef-484c-4ce7-992c-906e05fc083e','TUĞRA NUR DÜZGÜN','31634686585','31646621867','Hollanda','ALPHEN','2402','FESTERSTRAAT 73, 2402 VM ALPHEN AAN DEN RÜN',5,2.5,120,'644298759','0','0',NULL,1050,1,'(TURUNCU RENK)','2025-05-29 08:14:40.799','2025-07-23 06:18:10.676',NULL),
('fd54b0f7-c719-44a1-9058-d59b1b5982cf','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','7f9e914c-f7f8-47e1-b3b0-281aafbc8157','2024-12-23 10:27:09.486',1905,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','YASİN ARSLAN ','33664834021','33641723756','Fransa',NULL,'74700','271 RUE DU 8 MAİ',6,4,0,'517205467','5','5','👍',800,1,'MAVİ ETİKETLİ','2024-12-23 10:30:12.758','2025-01-20 11:23:44.542',NULL),
('fd58437e-911f-4917-866c-db10175210b3','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','e9856286-e4fb-4a20-b86d-a2d532d46b0a','2025-02-20 08:13:47.786',3246,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','ZEYNEP KORKMAZ','31636532119','31636532119','Hollanda',NULL,'7413','A.J. VİTRİNGSTAAT 63, 7413PB DEVENTER/HOLLANDA\n',9,6.5,120,'127659069','0','0',NULL,1000,1,'AÇIK MAVİ ETİKETLİ','2025-02-20 08:19:35.052','2025-03-08 13:57:34.185',NULL),
('fd6227ea-51d9-463a-bf38-1fd2110f95f6','d074816b-78fd-4378-91c0-3835eba28f44','64761ce4-d931-4769-87f7-0c76857d5ab9','2025-09-06 10:40:04.540',7524,'f6e1c44c-e51e-4aaa-81f1-8634fab235b3','ADEM  GENÇ','4917681229214','491772447174','Almanya','LUDWİGSHAFEN','67069','BUNSEN STRABE 21 67069  LUDWİGSHAFEN',20,3,110,'614553524','0','0',NULL,990,1,'KAHVE RENGİ ETİKETLİ','2025-09-06 11:02:03.278','2025-09-23 14:04:12.228',NULL),
('fd6cdf42-58f9-43ac-acce-9d75b76c6d29','5c723cdc-e582-4b00-8271-838c085984c2','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-09-08 07:23:54.318',2941,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','SEDAT ÇİFÇİ ','436603831520','436509938686','Avusturya',NULL,'8041','EDUARD KEIL GASSE 93/1 8041 GRAZ AUSTRIA ',12,4.5,140,'745538897','0','0',NULL,1600,1,'KIRMIZI ETİKET','2025-09-08 07:26:11.516','2025-10-15 08:25:10.587',NULL),
('fd795bb0-de9c-492b-b14b-d82674e0098e','313cc2e2-5529-49ab-abe5-27b5d390bc5f','bdbe2cab-db44-453f-899e-74c537e1e204','2025-06-23 14:44:43.926',8850,'6133a2db-79c4-4372-9338-505db46b1847','BAKACAK GİRAY','4915906385820','4917623277332','Almanya','NECKARSULM','74172','\nBUDAKESZİSTRASSE 24 \n74172 NECKARSULM ',27,2.5,110,'613814330','0','0',NULL,895,1,'YEŞİL ETİKETLİ','2025-06-23 16:20:04.887','2025-08-24 10:52:11.218',NULL),
('fd8aa3dc-cf2c-493b-92ea-1029149367fe','df0d8353-2caa-413c-9f14-b01af77df00b',NULL,'2025-10-02 07:10:57.375',1417,'4126da30-ba9b-41b7-be29-865069aa484c','ÇİÇEK MOBEL','111111111111','1111111111111111','Almanya',NULL,'1111111111',NULL,0,2,0,'412201294','0','0',NULL,0,0,NULL,'2025-10-02 07:12:07.597','2025-10-02 09:04:55.285','2025-10-02 09:04:55.284'),
('fd91d6e5-6042-45b8-8ffc-7e4151535f41','51b55e5b-7487-4d8a-923e-163f04d0b1d9','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','2024-07-24 09:59:33.712',5771,'976b33fa-4cd2-4029-8251-5f6f2b9cd77a','HASSAN BEY','4917680868263','','İsviçre','MÜNCHWİLEN','4333','BUSTEL STRASSE 2B',1,6,140,'976893568','0','0',NULL,1250,1,'AÇIK MAVİ ETİKETLİ ROMÖRKDE','2024-07-24 10:02:02.331','2024-09-07 07:22:44.091',NULL),
('fdbd5255-796f-4278-a5b0-0661f2660929','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','2024-09-11 13:13:01.723',8377,'4b494cd3-c9fc-4519-ba9e-b4261706ae49','YILDIZ DEMİR','436604046200','','Avusturya','GRAZ','','WOOGNER BRO STRASSE 63C',2,3.5,120,'449715358','0','0',NULL,1500,1,'PEMBE ETİKETLİ','2024-09-11 13:19:53.398','2024-09-24 20:20:45.786',NULL),
('fdc2bf0a-26c7-4fe3-8552-1c8056ee2608','3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-24 08:14:58.852',4034,'3c7190b6-f6ee-4275-8958-d7af952132ab','FATMA KAYA','436609855451','436609855451','Avusturya','HALLEİN','5400','BRENNERHOFSTRABE 3 D/1 5400 AVUSTURYA',17,5.5,140,'371579541','0','0',NULL,1900,1,'YEŞİL ETİKETLİ','2025-04-24 08:16:54.570','2025-05-23 14:06:51.532',NULL),
('fdd4c900-6ed6-4a26-8861-7c3e8266fd95','804a2f53-7a26-4e8e-a505-7fc107953b50',NULL,'2025-04-29 09:10:22.278',3875,'a42d8839-caef-4422-888f-cbfdf4188c5b','FATİH KAZAR','4917683383437',NULL,'Almanya',NULL,', 12529','SCHWALBENWEG 10, 12529 SCHÖNEFELDKOLTUK',0,2,110,'428506333','0','0',NULL,0,0,NULL,'2025-04-29 09:12:55.846','2025-04-29 09:14:13.652','2025-04-29 09:14:13.654'),
('fdd68378-14a3-446e-acd4-64b7634a5689','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','2024-12-24 13:33:34.445',6030,'c2d4ce84-536d-4816-837f-7abbf6a7e061','KORNİŞ ÇUVAL','4917683277906',NULL,'Almanya',NULL,'58097','ALTENHAGENER STR.30',8,2.5,0,'248173138','0','0',NULL,450,1,'PEMBE ETİKETLİ','2024-12-24 13:44:19.957','2025-01-07 10:35:32.702',NULL),
('fde38e03-9a98-45f7-8ebe-3ba96b9c8830','692d1bfe-eea6-418c-8311-271a2e255cf1','66307a01-d585-4127-903b-18748421c29e','2025-04-14 15:07:18.504',3480,'3b80982a-28cd-44f1-8d72-59c4daf5e636','YONCA KILIÇ','004306603838566',NULL,'Avusturya','PETZENKİRCHEN','3252','ERLAUDGASSE 2/3 3252 PETZENKİRCHEN ÖSTERREİCH',24,3,140,'380417164','0','0',NULL,820,1,'TURUNCU ETİKETLİ','2025-04-14 15:13:21.645','2025-05-02 17:12:37.404',NULL),
('fe00099c-d377-4de2-82f8-6e9c01ec3f07','e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0',NULL,'2025-01-16 12:37:54.926',3548,'cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','HASAN ALİ','49663737333434',NULL,'Almanya','KÖLN','50127','MÜNİH STRREET NO:16',0,2,110,'127923550','0','0',NULL,1200,0,NULL,'2025-01-16 12:40:03.106','2025-01-16 12:41:53.547','2025-01-16 12:41:53.550'),
('fe09e685-3ce7-450f-a49d-122806a0d51a','bad42655-8495-4cb1-a41d-68ec2bde3c99',NULL,'2025-09-04 10:21:30.708',10034,'d92bec02-a9d2-4e8e-88e6-6b64208e6b26','BAHATTİN BEY','905423036885',NULL,'Avusturya',NULL,'1010','ELİSABATHSTRASSE 4/5/16 1010 WİEN AVUSTURYA',0,2,120,'920167820','0','0',NULL,0,0,'12 M3 - ÜRÜN DETAYLARI REVİZE EDİLECEK','2025-09-04 10:25:10.293','2025-09-19 10:18:45.242','2025-09-19 10:18:45.241'),
('fe1bf79f-2efb-488d-8554-0ec73016bf8c','56e5168e-cbcf-408d-8798-5560be5c7235','e3500f94-7cbb-4330-8eca-c75ce50b7154','2025-10-04 18:26:26.147',2005,'7bb6a552-e940-4456-bfc3-50a13013996c','ZÜLAL KABA ','4915785422322',NULL,'Almanya','BERLİN ',' 12353',' HUGO-HEİMANN-STRASSE 33\n 12353 BERLİN',17,2,110,'765472156','0','0',NULL,300,0,'KIRMIZI ETİKET','2025-10-04 18:30:15.696','2025-10-20 07:18:00.494',NULL),
('fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5','31fcb6ec-2c6c-46d9-ab3b-a7347a37477e','8039cd90-69f4-4da8-b3fd-eb4bd967bace','2025-10-02 14:13:15.194',10964,'1c402ba0-2fcc-4b19-b28c-bd6071805ddd','GAMZE ÇOKENGİN','4915787850824',NULL,'Almanya','EBERSBACH','73061','SONNENHALDE 16, 73061 EBERSBACH \nALMANYA',2,2,110,'140681782','0','0',NULL,840,1,'BEYAZ ETİKET ','2025-10-02 14:16:00.279','2025-10-17 06:12:55.921',NULL),
('fe463485-2cc1-4a74-bdc7-66f943713679','1764a07b-eb47-4578-b6cd-f3c0d0e743be','98672fb9-339c-4dd4-895c-652e44b438ac','2025-10-16 09:03:11.932',2299,'47880255-08ee-4e99-940b-16038e07de55','YAŞAR YALMAN SSH','4917632998796','4917660894702','Almanya',NULL,'76185','HERRMAN LEİCHTLİN STRABE 32 KARLURUHE 76185 ALMANYA',22,2,105,'478168587','0','0',NULL,0,0,'GRİ ETİKET ','2025-10-16 09:08:14.084','2025-10-22 13:06:45.437',NULL),
('fe602c87-be95-4eec-b456-7556cb60d4a7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','5206e2ee-a645-4980-ae70-5a94e6fb2922','2025-06-23 10:25:19.420',3542,'3fccf827-5064-4ae4-aa49-04702eab73ec','AAAAAAAAAAA','33635402722',NULL,'Fransa',NULL,'87140','385 ROUTE DU MOULİN DE CHANNE ',7,9,130,'382253716','0','0',NULL,0,0,'SARI ETİKETLİ','2025-06-23 12:17:42.049','2025-07-14 06:05:05.687',NULL),
('fe6adfb9-14c6-4193-8c47-6fbe8f734d32','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-24 11:13:39.947',4414,'dea91080-5383-4085-af2e-7eace2c64224','ZEYNEP ŞURA MUTLU ','491771661158','4915203323020','Almanya','KÖSCHİNG','85092','MOZART STR 15',4,4,0,'910990360','5','3','Ürünlerinizden memnun kaldim kalitesi güzel.sadece tekli koltugun ayaklari gelmedi kargoyla gönderiyorlar.tavsiye ederim tesekkürler',735,1,'MOR ETİKETLİ','2024-09-24 11:20:11.189','2024-10-08 18:43:20.493',NULL),
('fe9bad3a-ed39-41a0-aefb-3b353269e29a','bb561a28-5dde-42e6-a2cb-dd7f6178002f','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','2025-08-27 12:52:18.467',6922,'3addc5c1-e82b-4a1a-b4af-1f66307a9108','İLKAY ÇİFTÇİ','49017661795288','49017640508000','Almanya','NİEDERSACHSEN ','49090','ROSTOCKER STRASSE 19\n49090 OSNABRÜCK \nNİEDERSACHSEN \nDEUTSCHLAND',11,6,110,'35130528','0','0',NULL,1400,1,'GRİ ETİKETLİ','2025-08-27 12:54:18.063','2025-09-15 06:12:34.941',NULL),
('fea683f3-14ee-46cf-99c5-7865dcd4834f','eccfe611-9163-42aa-a1ff-e711af0248e6','4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','2025-01-02 08:14:34.749',9226,'22a1dbd6-475c-4d4b-bb13-f459e3029634','ÜLKÜ ÖZTÜRK','33781747148',NULL,'Fransa',NULL,'67400','49 RUEDE LORME 67400 IIIKİRCH GRAFFENSTADEN FRANCE',11,2,130,'221943840','5','4','.',800,1,'PEMBE ETİKETLİ','2025-01-02 08:20:08.635','2025-01-10 10:19:21.795',NULL),
('fed099bd-765c-4045-9372-03dae428fedb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','6bda3b29-0b80-4c3d-be9a-90018628d0e3','2024-09-11 12:15:50.897',3161,'51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','RAMAZAN SEVİ','491795103491','491794727704','Almanya','LÜNEN','44534','AUGUSTİN STR 2A',3,7.5,0,'517558560','0','0',NULL,1800,1,'AÇIK MAVİ ETİKETLİ','2024-09-11 12:20:21.794','2024-11-21 06:56:32.172',NULL),
('fee1921f-e2a1-493a-95cc-3101675adfe8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','2024-05-04 10:15:12.803',8309,'47880255-08ee-4e99-940b-16038e07de55','HAKAN YAZICIOĞLU','33761054646','33619785904','Fransa','GİROMAGNY','90200','3 RUE DE LA TUİLERİE',6,4,110,'478681830','0','0',NULL,1400,1,'YEŞİL ETİKETLİ','2024-05-04 10:17:06.871','2024-05-21 18:45:12.078',NULL),
('ff039116-94c2-4c75-851c-9deaf4e01549','51b55e5b-7487-4d8a-923e-163f04d0b1d9','be093fb8-7446-49af-8917-367653a1e741','2024-09-30 10:14:41.698',5954,'a42d8839-caef-4422-888f-cbfdf4188c5b','ASLIHAN GÜÇLÜ ','491725413866','491722552789','Almanya','SCHMELZ','66839','RÖMERSTRASSE 47',15,2.5,100,'428499287','5','5','Aa',500,1,'YEŞİL ETİKETLİ','2024-09-30 10:41:04.357','2024-12-15 21:11:22.101',NULL),
('ff541470-3c77-4b65-bcd0-3fc253c0858c','d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','2025-09-21 08:29:23.154',6413,'5f3f13d2-795f-4eba-b7bd-61428d952ca2','MALİHA CETİN','4915566222005',NULL,'Almanya','HAMBURG','22549','MALİHA CETİN, ACHTERN BORN 13 22549 HAMBURG, DEUTSCHLAND \nTELEFONNUMMER: +49 155 66222005 😊',5,2,110,'531309772','0','0',NULL,875,1,'KIRMIZI ETİKET','2025-09-21 08:30:26.391','2025-10-07 06:17:28.409',NULL),
('ff95657a-16fe-4eda-9384-6d189d9a5bd8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','295b285c-580b-44a6-9a5b-a25a00a8150b','2024-08-10 15:27:55.265',10245,'5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','HALİL AYDOĞAN','31657734466','','Hollanda','STEENWİJK','8331','PAASWEİDE 18',10,4,100,'501869420','0','0',NULL,1400,1,'MAVİ ETİKETLİ','2024-08-10 15:30:08.757','2024-09-02 08:33:30.133',NULL),
('ff996f87-3846-4d01-9b30-2f9d65c79763','eccfe611-9163-42aa-a1ff-e711af0248e6','9656d9e4-a381-4143-957d-98a2f19361a5','2025-08-01 14:40:08.886',1324,'22a1dbd6-475c-4d4b-bb13-f459e3029634','İHSAN KUMUR','31681581501',NULL,'Hollanda',NULL,'2532','FRAEYLEMASTRAAT 13 2532 TX DEN HAAG ',2,2,120,'221825192','0','0',NULL,800,1,'MOR ETİKET','2025-08-01 14:41:53.996','2025-09-04 21:03:46.372',NULL),
('ff9e08fe-696f-4877-a50a-03ca709dfb92','794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','2025-07-10 08:08:04.201',3193,'d50fb551-10f1-4b7c-b65d-6eb4bef94704','MONİCA TODERAŞ','436609136123','436609030413','Avusturya','WİEN','110','SİMMERİNGER HAUPTSTRASSE 192A/1/14, 1110, WİEN, ÖSTERREİCH',19,2.5,120,'505597041','0','0',NULL,550,1,'KREM RENK ETİKETLİ','2025-07-10 08:10:20.453','2025-07-31 13:16:43.321',NULL),
('ff9f8958-5781-4a16-9eff-ea176baadba4','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','b19610d1-bb71-4c3a-8935-5a85e4c020f0','2025-01-27 13:23:24.022',10167,'eb3aeba1-a956-40c0-aace-5598e8b1c7ba','LEYLA TACİMOĞLU','33695288761','33651036902','Fransa',NULL,'94450','4 RUE DE CHAMPAGNE ',6,6.5,120,'319212544','0','0',NULL,2110,1,'AÇIK MAVİ ETİKETLİ','2025-01-27 13:36:09.680','2025-02-26 21:33:25.286',NULL),
('ffa71db9-462e-45b6-8298-ff1efd9c1940','3b8909c4-8a78-46c3-93e4-9259d59b50be','a85a3dda-e4c8-4693-bdde-b568f029378b','2025-02-17 08:09:47.390',9440,'1b51c5f7-649a-424f-ba17-cc37d6298af9','EROL ERDOĞAN','491742731905',NULL,'Almanya','ASPERG','71679','EİSENBAHNSTRASSE 10 71679 ASPERG',18,3.5,0,'151236689','0','0',NULL,0,0,'MAVİ ETİKETLİ','2025-02-17 08:12:27.994','2025-03-17 14:54:01.185',NULL),
('ffb40a61-0c49-4347-b03f-2459867ff4cb','51b55e5b-7487-4d8a-923e-163f04d0b1d9','8b91c8b5-7964-4aaa-a094-76edbabdef3b','2024-11-15 16:34:03.505',7642,'daf7fb45-7940-4f5b-8733-e2e2d6030da7','İLYAS ÖNSÜZ','33760151122','33651723010','Fransa','VALMONT','57730','16 RUE D\'ALTVİLLER',9,1,0,'745334668','0','0',NULL,0,0,'PEMBE ETİKETLİ','2024-11-15 16:36:00.360','2024-12-01 12:28:05.546',NULL),
('ffbb8f40-ae6c-4f70-9633-049e3b132e57','1764a07b-eb47-4578-b6cd-f3c0d0e743be','ebc1b100-cb77-4268-b975-a2a46cd2c876','2025-04-19 16:15:07.979',10768,'47880255-08ee-4e99-940b-16038e07de55','MELİSA DEMİRTAŞ','33781067727',NULL,'Fransa',NULL,'90400','9 RUE DU GENERAL LECLERC',8,2,130,'478757775','0','0',NULL,0,0,'MOR ETİKETLİ','2025-04-19 16:16:09.300','2025-05-25 19:11:17.052',NULL),
('ffe7cd27-4d52-41ee-b5e5-b17ff3b89095','51b55e5b-7487-4d8a-923e-163f04d0b1d9','7a97abb2-c57f-42c8-b607-9a0fc3069208','2025-02-18 15:54:20.456',3225,'1a1f8406-8725-4744-9eab-26d8b900d3c1','MUSTAFA KIVRAK','905548899130',NULL,'Danimarka',NULL,'8920','KORNPARKEN 16',0,2,0,'118176933','0','0',NULL,1600,1,'MOR ETİKETLİ','2025-02-18 15:56:22.456','2025-02-27 16:38:59.202',NULL);
/*!40000 ALTER TABLE `shipment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipmentdocument`
--

DROP TABLE IF EXISTS `shipmentdocument`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipmentdocument` (
  `id` varchar(191) NOT NULL,
  `shipmentId` varchar(191) NOT NULL,
  `path` varchar(191) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `shipmentdocument_path_key` (`path`),
  KEY `shipmentDocument_shipmentId_fkey` (`shipmentId`),
  CONSTRAINT `shipmentdocument_shipmentId_fkey` FOREIGN KEY (`shipmentId`) REFERENCES `shipment` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipmentdocument`
--

LOCK TABLES `shipmentdocument` WRITE;
/*!40000 ALTER TABLE `shipmentdocument` DISABLE KEYS */;
INSERT INTO `shipmentdocument` VALUES
('11530bd9-234f-47aa-a8b3-25a20b284700','ce6a533a-a695-4c7d-9d16-ee9de079d7bc','02369b29-d48b-408c-ac43-c52eb40a808f.pdf'),
('333db165-5062-4638-93df-20953ba396c4','5063dfa2-5328-4697-84aa-52c286384d28','d237dad6-efcc-40de-9a23-c8641e929363.pdf'),
('7ae8b7ff-d380-44f8-90b2-c8e34dfa5fcf','9d816e36-46d4-475f-ab4d-8dc4e121cb72','7507c09d-fe26-46b7-8b68-de26d41230ce.pdf'),
('88fdc671-9a79-4d14-8ba5-c8af5154c256','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a','973c9010-1cd5-40c7-a393-b73640456cc8.pdf');
/*!40000 ALTER TABLE `shipmentdocument` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipmentitem`
--

DROP TABLE IF EXISTS `shipmentitem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipmentitem` (
  `id` varchar(191) NOT NULL,
  `shipmentId` varchar(191) NOT NULL,
  `receiveAddressId` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `receiveDate` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `targetPart` int(11) NOT NULL DEFAULT 0,
  `targetPartVerified` datetime(3) DEFAULT NULL,
  `receivedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `shipmentItem_receiveAddressId_fkey` (`receiveAddressId`),
  KEY `shipmentItem_shipmentId_fkey` (`shipmentId`),
  CONSTRAINT `shipmentitem_receiveAddressId_fkey` FOREIGN KEY (`receiveAddressId`) REFERENCES `currentotheraddress` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `shipmentitem_shipmentId_fkey` FOREIGN KEY (`shipmentId`) REFERENCES `shipment` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipmentitem`
--

LOCK TABLES `shipmentitem` WRITE;
/*!40000 ALTER TABLE `shipmentitem` DISABLE KEYS */;
INSERT INTO `shipmentitem` VALUES
('0000e1f3-403c-4a50-abf8-32630570a116','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL,'C SEHPA','2025-05-23 21:41:19.000',1,NULL,NULL),
('00030f80-99a9-4f67-8d21-bdbff41e5d13','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL,'ZİGON SEHPA','2025-02-02 07:44:33.948',1,NULL,NULL),
('0005db85-41ab-4616-bf3c-3a7fe7d9315c','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL,'ORTA SEHPA','2025-01-02 08:18:52.457',2,NULL,NULL),
('0009aeec-e682-465c-b701-363a3ef377a6','60088545-2d2c-4c1d-8f5c-07351840a9a5',NULL,'Mobilya','2024-07-29 09:16:19.008',0,NULL,NULL),
('00211013-0535-4518-a5a9-4baaa292122e','f1dc4c15-b727-4694-84c2-391d5782dae4','cf90c370-208a-4021-aaff-f9220970bca9','masa ayağı','2025-09-29 16:08:24.000',2,NULL,'2025-10-03 09:26:59.254'),
('0027cba0-0b74-42fe-b82a-55806baf40c5','d4bc4878-9923-4ef3-b0a1-5cd730e1777a','cf90c370-208a-4021-aaff-f9220970bca9','masa','2025-08-11 21:00:00.000',3,NULL,'2025-08-11 12:54:56.037'),
('00309240-1237-48cf-8533-21b60a560393','0fd9ad4b-9c17-4380-957d-18193561c45c','b67290a3-f8d9-4292-b22e-e4e54d734fd7','köşe','2025-07-29 21:00:00.000',4,NULL,'2025-07-30 14:19:17.653'),
('0045cf50-baa2-4fa7-a3b7-47eb972ef774','0fef7900-6144-44c7-9378-415e663633c9',NULL,'Marmo açılır masa 90*220','2025-01-08 12:00:00.000',3,NULL,NULL),
('0052de50-8105-4a4a-bdcc-a55ca79dce47','6b308538-0db0-403f-a33f-bc50bf381bb6','59c49344-2230-4d00-9839-032154f423eb','8 adet sandalye ','2025-09-04 13:26:33.000',0,NULL,'2025-09-08 12:31:40.992'),
('0066c2e3-ba8f-4c63-a37e-2b8d8425a42b','19c26519-0688-4a4d-a323-ec65ddad8463','4fbb639d-63c8-459f-9820-d8a261260d94','6 adet sandalye','2025-09-08 11:12:48.000',3,NULL,'2025-09-15 09:53:41.698'),
('009366cb-c1e1-44e6-beed-700377a77e26','47b351a7-6171-418d-b138-7c197c50e909','fd87365f-791b-4129-a329-2bbc5296e508','Orta sehpa','2025-08-12 13:00:44.141',0,NULL,'2025-08-13 09:23:03.010'),
('00972f30-0555-457b-93aa-8acffb86ef96','71f0d0b2-3d17-43c7-bf48-7355e5d7675a','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-06-25 07:13:24.436',3,NULL,'2025-08-27 14:17:22.353'),
('009cf10e-8302-46d8-a79f-46e58ad814bd','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL,'SSH','2024-09-27 11:55:54.214',0,NULL,NULL),
('009d2ad6-5f92-49bd-8463-3fa964f7693f','32af2488-e641-4d93-9e64-e4ff7977ab48','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-08-11 00:15:32.000',3,'2025-09-18 15:07:48.215','2025-08-19 09:12:15.055'),
('009ddf47-bf8b-42ff-9126-9bdf09a89875','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL,'MERMER','2025-09-30 15:00:00.000',2,NULL,NULL),
('00c1fd23-178e-4add-8ff7-f9f4e9131927','3e7bc361-1239-4318-a168-479ffa7372b0',NULL,'SANDALYE','2025-06-01 21:28:15.000',3,NULL,NULL),
('00c4d4eb-e89c-4883-b434-2cd031184f1d','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL,'KOLTUK TAKIMI-YATAK','2025-02-06 11:59:23.072',1,NULL,NULL),
('00d33439-2cbf-47d7-9bad-43659e6a874b','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL,'Mobilya ','2024-10-09 13:29:18.354',0,NULL,NULL),
('00d82761-31c4-446b-a04b-97ce66aab4e6','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL,'Mobilya','2024-08-30 09:33:09.283',0,NULL,NULL),
('00dcbf70-c001-40af-9195-3caa85499670','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-05 02:06:20.000',3,NULL,'2025-09-11 11:15:27.754'),
('012ccc8f-38c1-4572-9fa6-9074afddb4b2','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL,'6 sandalye','2025-09-22 13:39:30.000',0,'2025-09-27 09:02:37.556','2025-10-07 13:45:12.287'),
('01445163-8215-4106-bdba-4d0bf73930fe','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL,'Mobilya','2024-08-14 12:05:09.694',0,NULL,NULL),
('014ebe19-c8ce-4288-a6be-75bb83ffcc5a','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL,'aksesuar','2025-05-21 09:02:00.000',4,NULL,NULL),
('0160bd7d-4252-4538-9caf-86b1b4ded292','c19abe66-cb76-4c21-ad00-4ba1ed3d223c',NULL,'Zigon Sehpa','2025-05-29 21:23:24.000',1,NULL,NULL),
('016dfb52-0431-472b-8ea9-e510a1937e2e','e7f656e7-35d0-4f99-bacd-ea6a85d14230','754dc58e-48a9-4cf6-bcec-82201990299e','KARYOLA','2025-08-25 02:09:05.000',4,NULL,'2025-08-26 15:35:18.056'),
('017dc762-8784-4f7c-9562-900eb99d37cc','e16f7651-2afd-45bc-9a35-39463a07d099',NULL,'Traverten masa','2025-06-30 21:00:00.000',0,NULL,NULL),
('019096b3-5c13-43b0-9be5-d87a00c3b660','ee442903-bcf3-41c3-8a85-9a99435f8b6b','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','FRANCO T SANDALYE ','2025-06-02 12:14:29.000',0,NULL,NULL),
('01a94a2e-0aac-4423-a8d4-df98bf7e514a','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'yemek odası','2025-05-30 05:59:34.067',0,NULL,NULL),
('01b198ce-2067-4df9-97cc-dd409b322675','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL,'KOLİ','2024-11-02 08:07:22.966',0,NULL,NULL),
('01be5e85-2bcb-4117-9ad4-5f2afa75468d','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'VİRAL KOLTUK TAKIMI ','2025-05-03 21:21:28.000',0,NULL,NULL),
('01db3b45-741b-40a3-890d-f412f526963b','58313a08-d2a0-4dce-97d3-e911857314d3',NULL,'90x190 Traverten masa','2025-01-23 21:00:00.000',3,NULL,NULL),
('01ef32a0-1284-4a83-aa87-7a3d88e6cae4','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PETRA MASA ','2025-05-05 21:43:30.000',0,NULL,NULL),
('01fe43e2-6249-4c6f-ab4d-3c9816ca6976','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL,'MOBİLYA ','2024-12-12 21:00:00.000',0,NULL,NULL),
('01ff323a-2bdf-41db-bd07-b6903d6c33a6','2a5af105-d0c8-46fd-ad7c-0aa1fac82094','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-08-16 18:07:04.000',5,NULL,'2025-09-02 09:10:13.489'),
('0205414b-5878-424b-a8f7-1bf9fc0d9072','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL,'Sandalye ','2025-04-13 21:00:00.000',3,'2025-04-14 09:16:55.252',NULL),
('021dae33-6ace-4f50-bf9b-1a91b9d7a47c','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL,'BALAT SANDALYE','2025-01-09 12:00:00.000',8,NULL,NULL),
('024c36ef-09c1-45c4-9cfb-22d425f69737','bb12bd3c-d87b-4ede-9827-8c115b6da789','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2025-02-07 09:59:26.139',0,NULL,NULL),
('025b9500-3972-468d-bbaf-e0261595a84d','d448143d-3fcc-4fc3-8d37-30d1af2dec9e','543cea99-2d75-4e63-a5d0-ad61071e5961','genç odası','2025-03-02 21:00:00.000',1,NULL,NULL),
('0263f7f0-6c1a-4beb-ab78-25d69142647c','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL,'MALDİV YATAK ODASI','2025-02-23 21:00:00.000',0,NULL,NULL),
('028c0bba-d7fb-4cd3-9892-3e3cf79cd778','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL,'Sydney sandalye ','2024-12-15 21:00:00.000',3,NULL,NULL),
('02950189-cf83-4369-b3bf-5f176d94bccb','795a7b9c-3044-492f-912f-d05f4ba21df6',NULL,'MALDİV YATAK ODASI','2025-02-27 21:00:00.000',0,NULL,NULL),
('029e3fa1-2d05-4396-aa2e-a65ebd235719','87929b1a-65a1-4766-84ad-495ee7ffcb70',NULL,'MOBİLYA','2024-07-02 08:15:22.342',0,NULL,NULL),
('02a9c28f-9612-4397-8742-1194ba41344a','f997086a-fb73-43a8-899e-ff36b6cb5597','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-21 15:00:00.000',0,NULL,'2025-08-25 10:42:03.614'),
('02ad9997-7b6a-48d1-8a8f-51b8d6be6016','383c0dfd-fe5e-4691-9b5f-187f66c80c04','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','köşe koltuk','2025-10-07 03:00:00.000',3,NULL,'2025-10-08 09:16:32.089'),
('02b555c2-2445-44f3-9074-77fced684cb3','c885ca27-2244-4162-b7af-4fe67daf7fd3','d00fcabb-1fa6-406e-975a-645a02949630','Nikola köşe koltuk 300×270','2025-09-21 18:00:00.000',0,NULL,'2025-09-30 11:45:01.746'),
('02bf90b2-22c1-4379-854a-b43ee79e1b86','ba93047e-2113-4d72-8a99-44f3c9fe2b01','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ssh','2025-05-15 21:00:00.000',1,NULL,NULL),
('02c1cca2-b7ec-44f3-90c7-3e935d2e255f','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL,'köşe takımı','2025-02-11 21:00:00.000',5,NULL,NULL),
('02c4d887-2e6c-4a21-9d40-d8ba2e9b6163','f10b88a4-5160-4b26-9eda-5026590612c9','5a1756f4-a90c-4bd5-a9ba-e740908af1ee','Pamela 2 Kitaplıklı tv ünitesi','2024-11-28 14:00:00.000',7,'2024-12-19 16:13:04.325',NULL),
('02ca57ac-1cf6-4307-b976-a8e1f174ee9a','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL,'MASA+KONSOL+ 2 ADET ORTA SEHPA','2025-04-16 08:58:00.436',0,NULL,NULL),
('02ed9c60-7e1a-4a84-acc5-24092c7b8a72','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL,'Orta sehpa 80*120','2025-01-07 11:00:39.000',1,NULL,NULL),
('0300de52-b929-49fc-a72c-ccdfd0b7a149','c301b3d6-0b7c-4330-bda9-99b0f091d356','c3f368ed-2b70-41bf-83ab-e823447db252','SANDALYE ','2025-01-09 10:23:14.400',3,NULL,NULL),
('0307b62d-0514-4a49-bd0e-5c7aa0f37bef','016b2dfe-69f8-45ec-bf7e-6ad705106bc6','6541bf5b-5f93-4dc2-b816-de76cac751ae','DOLAP','2025-09-07 15:00:00.000',7,NULL,'2025-09-09 14:20:47.565'),
('031c81a1-1596-403b-80d9-8d3b2e98940a','13870329-2aa7-4b40-89d5-b947358fe886',NULL,'3+3+1+1 KOLTUK','2025-09-23 06:00:00.000',0,NULL,'2025-09-25 15:32:44.976'),
('032c47f9-d4b7-4dfb-a22f-4a49cad6e438','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL,'MOBİLYA','2024-05-11 08:44:54.507',0,NULL,NULL),
('0340b9d6-4a45-46d6-8874-35243695e9d8','0fadbd30-6b39-4e10-8b6a-91aab0921641','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','ünite','2025-08-14 22:00:00.000',3,NULL,'2025-08-20 12:20:10.851'),
('0349c9da-6831-48b3-8a88-899c2d5fb3e6','8afa44a9-611f-49db-a99e-d5e01b5689f2','67c34dc2-4657-4323-8fc0-4ff05ed31067','tv ünitesi','2025-09-08 16:14:56.000',0,NULL,'2025-09-12 11:26:47.876'),
('0365be5a-cb94-4992-8e8d-cb784930b2e7','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL,'KOLTUK','2025-08-18 22:00:00.000',5,NULL,'2025-08-21 14:13:31.130'),
('0366e6dc-68ed-4639-a5f2-d365e9f3a510','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL,'yemek','2025-05-30 05:51:51.305',0,NULL,NULL),
('0367240f-e4aa-4d5b-a069-fbf9bd8627bf','bcc57c6c-154f-43e9-bfcc-5d4a7225b29a',NULL,'TUANA KÖŞE TAKIMI','2025-02-11 21:00:00.000',3,NULL,NULL),
('037e3664-780d-44c7-aea0-e347d4c6dde9','9aaeab80-cfa4-4210-b789-4d7ae0454982',NULL,'SEHPA','2024-04-27 08:27:40.849',0,NULL,NULL),
('03ad506f-f86b-4dbc-952f-52b01e2467fa','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL,'Mobilya','2024-06-05 09:15:25.680',0,NULL,NULL),
('03b4a2cb-abf2-4d84-85e7-366794ad4504','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL,'CASA KÖŞE KOLTUK + TEKLİ ','2025-09-10 12:00:00.000',0,NULL,'2025-09-10 10:46:26.879'),
('03bc45e5-f323-4e66-a20f-8f27132eeb63','05c3682c-97a8-485e-84ef-f349df760f4f',NULL,'BAZA ','2025-05-04 21:00:00.000',1,NULL,NULL),
('03ca7074-b3ba-47f8-82e1-c187f85fc01d','5d9fba6e-ed3a-4844-97a3-b9e244247031','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-16 11:00:34.130',6,NULL,NULL),
('03ccaaea-24a5-46c5-9888-909d85ae2d16','2980d03e-0382-4f21-a380-2dae95b9b72d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','berjer ','2025-05-29 21:00:00.000',2,NULL,NULL),
('03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL,'MOBİLYA','2024-03-15 14:17:54.475',0,NULL,NULL),
('03e6b41f-f2d8-44cd-8fde-3ed5e7f289e2','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL,'ÇUVAL','2024-03-30 09:14:37.256',0,NULL,NULL),
('03eec9f2-0d55-4dca-9dfe-05855411723f','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL,'BAMBİ BİOSALT KOMODİN SMART SOL','2025-10-08 01:46:29.000',1,NULL,'2025-10-22 12:03:51.995'),
('03f2628f-fe18-40ff-8a18-3ea577a85a6e','8f201baa-69fe-442b-9cab-fa1f47b7420b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TAKIMI VE BAZA SETİ (İLKNUR YILMAZ)','2025-05-14 09:09:16.751',6,NULL,NULL),
('03f3236c-f2ae-4e6e-afe1-dbad801907b2','7d8956ca-698f-462a-81a5-dcf35e87e4ee','6541bf5b-5f93-4dc2-b816-de76cac751ae','BANKO','2025-09-22 15:00:00.000',1,NULL,'2025-09-23 14:55:03.387'),
('03f37a37-bf58-4994-8ae3-0d9bab55ce29','8970c6df-ded4-4e10-a476-faa9d8e3a4df','37486a5b-3dc6-4298-9bfd-3291b8f42d46','kolyuk takımı ','2025-02-06 21:00:00.000',0,NULL,NULL),
('03f429da-4d99-4f35-ad4c-9889f0fb87ee','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','120x120 fırtına siyah masa','2025-09-09 15:00:00.000',2,NULL,'2025-09-12 08:19:39.885'),
('0414816f-7833-4e38-88f2-784ec28b63bf','00ed7c47-6897-4b03-a708-882316651c7e','b94604cf-4431-4d3a-bbbe-0fab66df0701','sandalye','2025-10-27 18:00:00.000',3,NULL,NULL),
('0437dd7d-aafa-4d57-aa20-17c1d42860e8','c83b1650-e8ef-42b8-bd59-85142002c440',NULL,'MOBİLYA','2025-08-13 21:00:00.000',0,NULL,NULL),
('043a68b3-cbde-4c54-b5a1-246e3bc84742','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL,'Traverten sehpa seti','2025-01-14 08:57:39.594',4,NULL,NULL),
('0442993e-4122-475b-ab0e-58dbd25de9c1','6d6f2808-c231-4334-856e-47064121ade2','3d6783ef-fea9-4164-b9f9-15509db76abe','koltuk','2025-09-23 21:00:00.000',4,NULL,'2025-09-09 13:33:49.731'),
('045e5985-a61b-4e4f-ac79-e1b3998c80b7','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2024-12-27 21:00:00.000',1,NULL,NULL),
('045fc82b-a285-423a-a6a0-3f8f1dbdc9d4','4ca3f816-65f3-42e3-9d35-51e86f0b5030','1dc7357b-468a-476c-b39d-81e187906258','sandalye ','2025-11-10 08:34:30.000',3,NULL,NULL),
('04709db7-1bf3-47bb-af82-bf9215362742','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL,'3 kutu sandalye','2025-05-22 12:50:21.455',3,'2025-06-20 13:57:07.207',NULL),
('04791454-cdb4-4c8a-bf80-d6f2c33e4300','02f21391-f1d5-4bee-b4d9-17f65a20feb7','f3c44bb2-9cba-4805-b874-1f5af9579fce','İnci Açılır masa, Tv Sehpası, Orta Sehpa','2025-08-18 05:00:00.000',0,NULL,'2025-09-02 08:50:18.146'),
('047bf09d-242b-472b-97f8-46901b73eea9','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'komodin+şifonyer+ayna','2025-10-09 21:45:35.870',0,NULL,'2025-10-10 14:26:13.149'),
('048e793d-c7d3-4002-b07f-d674aee9a12e','bd298d61-17ac-40db-8ec3-3741f3c4e017','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-07-03 22:52:51.000',2,NULL,NULL),
('048fc569-ecd0-444d-b2d3-4f1071fb8463','bbee5f58-f6e5-4525-b872-ef97ac4ab579','61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','masa','2025-10-07 20:52:58.356',3,NULL,'2025-10-13 09:36:54.395'),
('04a36510-63ca-4efa-a512-48c8c5100721','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL,'KOLTUK','2025-04-18 21:00:00.000',0,NULL,NULL),
('04a41e24-7197-4701-a8ce-c4a0dd073b19','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','fac30d79-ff5b-41a7-a0c4-ef8eab9b360c','SAFİR 4-3 KOLTUK','2025-09-15 15:00:00.000',0,NULL,'2025-09-19 11:49:55.086'),
('04dff17a-2b9a-4f35-a082-5684dfe5706f','3167a684-9120-4a08-a96f-a652ac70c76f',NULL,'Mobilya ','2024-10-09 12:55:17.217',0,NULL,NULL),
('04ee6bf7-acb7-4abd-bbee-f34e0d21164d','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL,'ÜÇ ADET YATAK SETİ','2025-05-14 21:00:00.000',12,NULL,NULL),
('04f625f7-445b-409f-b4ca-5314e2044c7f','d8406e1c-80d1-4795-aea9-119c8cad0252','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye siyah','2025-05-20 21:00:00.000',3,NULL,NULL),
('04f841ce-9ab3-4610-9d1d-bdd9d9518084','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL,'MASA','2025-03-11 21:00:00.000',0,NULL,NULL),
('04fb64d2-7678-40dd-8131-83cf0774a2fc','fc31e466-d8a0-4227-8542-d08063fb7971','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-08-05 07:04:46.000',7,NULL,'2025-08-05 14:29:57.372'),
('05008527-fd22-4ebd-921b-be4d8555bbb8','d79ec9de-a72a-47f5-a918-2b75ec194704','e7220662-73b8-46e4-9f5d-7e977cc23448','masa','2025-07-28 08:12:39.000',3,'2025-07-30 14:44:21.575','2025-07-29 09:26:56.336'),
('05070777-94b4-4611-bf2a-769cc697d97e','ce46c288-f229-4ec1-a778-6f45d324b302',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('05080db1-19d9-4b80-afe8-cefbbc63d170','3a352d28-b0b9-4b59-9821-a77910ca2fbb','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','konsol','2025-08-21 13:23:49.000',3,NULL,'2025-08-28 14:47:43.178'),
('0511ebb6-7f60-4bc5-a2d3-4d5b19269e5a','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455','53547128-7fcb-4279-a2ae-cd050bf436d4','Karyola','2025-10-13 02:11:02.485',3,NULL,'2025-10-15 10:09:55.526'),
('0511f6ab-efd5-44b5-884b-6c559b99549f','24b32008-080d-4cf2-b2e3-73b35877738d','bf2f9026-0036-4efc-bfb3-7790361e64fa','Sehpa ','2025-02-26 13:18:59.980',0,NULL,NULL),
('05250dd0-c37f-4c20-872c-06cdf609c03d','7cefa81c-deac-4617-8809-7002f9076b03',NULL,'Mobilya','2024-08-30 08:32:08.590',0,NULL,NULL),
('052ad905-3da0-483a-aae7-9d36b31da379','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL,'Mobilya','2024-04-24 08:08:28.701',0,NULL,NULL),
('055676b2-9727-4dc4-82c5-5161c9f0e9b1','090e53a7-9f47-40c2-990b-65dbc36b9e2c','b22273fb-b00f-4afc-b708-2437f60ec61e','7 Mt kumaş + 3 kırlent SSH','2025-10-07 15:00:00.000',0,NULL,'2025-10-14 14:48:15.462'),
('055c6f8b-9b1b-4daf-8b1c-5ee2ad6db7d4','8974646e-d2f4-461a-a229-980f5d4d3462',NULL,'Sandalye','2025-07-03 10:37:08.000',8,NULL,'2025-07-16 14:48:43.791'),
('056a9790-92fc-4518-aea0-4e028de531b0','7f859e4c-bba8-44f8-9564-dfb0b044e0f8','4ccea6fc-d526-479a-9e27-42643a5f294f','baza başlık','2025-07-31 07:00:00.000',0,NULL,'2025-07-31 08:19:40.515'),
('0574eb67-5a89-4fc2-915a-85bf218abd1d','291ba583-1dab-4923-9616-d33db1cf3f25',NULL,'3-3-1-1 koltuk takımı','2024-12-09 21:00:00.000',4,NULL,NULL),
('058ec720-a3ef-43eb-a600-dd04b3b98013','87a56817-1368-4494-92c1-074a6979a4b8',NULL,'masa sandalye ','2025-09-30 15:00:00.000',11,NULL,NULL),
('059d418f-09ca-4d30-b6ea-028323d66c5e','4e1208ff-8f5b-4346-a832-196d997bdb96','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-10-08 01:00:00.000',5,NULL,'2025-10-08 11:50:49.216'),
('05aa1c0d-05ce-4ba4-b8c5-3bfc961c77ff','46342cb8-9154-4a08-82ea-f958497b32c2',NULL,'c sehpa 3 adet','2025-09-05 07:20:31.000',3,NULL,'2025-09-15 13:13:23.687'),
('05af1df3-9a36-4be2-8bd1-773d59e1605a','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL,'MOBİLYA ','2025-03-25 21:00:00.000',0,NULL,NULL),
('05b67cbf-f74d-4a18-b5b8-574251f10d60','f4218149-4b1c-483c-81b6-8a80932a3219','b829afbc-e0f2-4e74-89d2-ac9ad77bb35c','SSH VİRJİN KÖŞE TAKIMI İÇİN 4 ADET AYAK 15 CM ALINACAK.','2025-01-21 21:00:00.000',4,NULL,NULL),
('05b97ce2-a737-45d6-a444-20708de6bbba','b87dfd8b-75ee-4a0e-bd25-1178a78774c6','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-08-19 08:08:52.000',6,NULL,'2025-08-19 14:16:51.712'),
('05c69f47-3c62-498d-97f8-bc1d7350f13c','999f9b3b-86d9-4db6-8455-c7f828dbacab','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye ','2025-05-08 08:05:00.000',0,NULL,NULL),
('05c9f573-84d5-4220-9894-da21bdbad976','bee81a54-df39-48a5-9fb3-63e75a6f2e1d','e757256d-c116-45a3-853c-453866ada02e','6 ADET SANDALYE','2025-10-14 21:05:07.641',0,NULL,'2025-10-22 11:25:10.053'),
('05cee696-49e5-42d8-9026-ef1ed9d66f0e','fe00099c-d377-4de2-82f8-6e9c01ec3f07',NULL,'YATAK ODASI','2025-01-19 21:39:25.000',0,NULL,NULL),
('05d4c5db-7f15-4790-9278-4411a57f7248','57ca2461-e718-4402-86f5-359b366200e6',NULL,'MOBİLYA','2024-03-23 07:26:43.252',0,NULL,NULL),
('05e7d8d7-4b08-4d26-aa64-e3a0bd2168c2','304a2496-cb37-4646-a094-9980a688ced5','d30ff40f-77ed-465b-82c8-b649f7ec3cc0','konsol bombeli yan- masa orta parçaları-rutuş boyası','2025-05-30 13:31:33.144',2,NULL,NULL),
('05ef3c64-c730-44c0-894c-1a748105fe1e','96fd2ec1-bc18-4e5c-aa54-b63b621f826c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 çap Traverten sehpalar','2025-08-28 21:21:39.000',2,NULL,'2025-08-28 07:07:29.763'),
('060148ce-0335-478e-89ca-1c4b342493d2','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL,'ORTA SEHPA','2025-06-26 21:19:52.000',1,NULL,NULL),
('0602416a-017d-4286-844a-6bc37caa79a8','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL,'Mobilya ','2024-10-28 13:18:01.705',0,NULL,NULL),
('06036ad4-83e0-4244-a783-5ad208e02a0b','a50d8db5-2bfe-4146-b10b-a41dcfc378a6','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-06-27 11:30:42.000',3,NULL,NULL),
('0614700e-3fb6-413b-85aa-f554ce2f1a0d','4dbf93f9-e436-46b7-8455-aa2f9617afb4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x20 dresuar','2025-02-28 12:04:13.000',2,NULL,NULL),
('0632e179-d700-4c40-afa6-ac6096beaffa','2630e226-f8e4-4780-bd53-00a42db1e018',NULL,'TV ÜNTESİ','2024-03-30 09:38:18.264',0,NULL,NULL),
('063b11a7-a58e-43d1-9f44-6bfe5d7d6042','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL,'Balat sandalye koyu ceviz ','2025-03-18 11:42:14.903',6,NULL,NULL),
('064e955b-72f7-4dfe-903d-af71b421e048','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL,'Mobilya ','2024-10-21 08:02:33.618',0,NULL,NULL),
('0655c66e-ad8e-4f89-af46-bcfa9a272b8b','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL,'(0533 380 1784) KOLTUK TAKIMI 3-3-1-1','2025-08-20 21:46:46.088',4,NULL,'2025-08-27 11:37:51.338'),
('065a4131-ff13-4bb8-8bf0-5263586379b6','ce35486e-7680-4c8d-aa21-e602d6ada6b1','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-05-07 21:00:00.000',3,NULL,NULL),
('06669ff4-2ae4-48c9-9194-ff50672e27e9','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07','8606d226-cc7c-4998-946f-cf7c29587a15','masa','2025-05-08 13:00:00.000',0,NULL,NULL),
('066e4e7c-c9e0-4cdf-848e-b887b4234fe7','0ea8d257-afae-4860-8574-29747c60c8c6',NULL,'YATAK','2025-03-27 08:03:11.318',1,NULL,NULL),
('0683aa5c-fafa-459b-928d-eae1729e635e','1b20804a-76a0-418e-b22d-40783c68915b',NULL,'KOLTUK ','2024-12-08 21:00:00.000',0,NULL,NULL),
('068e8e73-09d8-4dab-bbe6-229daa9fd663','aa2cf5a9-9070-43b4-b152-2dfe60634cc3','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','FALCON KANEPEYE OTURDUĞUNDA SOL  SIRT KISMI 2 ADET,','2024-12-19 21:00:00.000',2,NULL,NULL),
('069610fa-51d4-4a81-bd18-ed2e6a93f962','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL,'WANTED SEHPA ','2025-10-03 15:00:00.000',0,NULL,'2025-10-07 12:45:43.767'),
('06962ae8-10d4-4704-8716-7c7238c4de0d','b246d186-ebbb-4410-afe2-737f312e473e','edccc261-7680-46ca-9d31-022751d2518a','SANDALYE','2025-10-20 21:14:56.565',2,NULL,'2025-10-23 08:59:26.286'),
('069a8d78-f134-4e20-9ea0-85d75f0f25bb','db8cb965-bd59-4527-8579-8cb4852d50ad','4d4f64a5-4f0c-4a6e-b80a-560be37f0222','1 ADET TV ÜNİTESİ BİR ADET STAND','2025-10-07 07:56:58.000',0,NULL,'2025-10-07 08:30:27.565'),
('069f2e83-6248-4f1e-84fc-29bae52379f4','1918bd79-b749-47cc-b3ab-efae4ee6b144','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-06-02 21:25:07.000',6,NULL,NULL),
('06cfd546-43d2-48d8-af81-05265ddc6733','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Traverten ','2025-09-09 22:16:04.025',0,NULL,'2025-10-17 07:23:37.683'),
('06e319ba-26b5-4ce5-b9c0-d2e144aeabab','99f2313f-189c-456e-bcf0-d0e88ae7ffbf','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk Takımı','2024-12-05 13:00:00.000',4,NULL,NULL),
('06e3c58b-ddb9-437f-aa81-bab14410c601','5400fc28-c829-4ccc-a810-54ae598d5606',NULL,'Traverten masa  depoya gelecek ','2025-07-25 07:00:00.000',0,'2025-07-24 13:30:34.366','2025-07-25 13:12:14.859'),
('06ebe21d-4d22-4086-bd17-376358e62902','ed90a35b-8493-4c2b-9437-f0f3ba27c20f','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-03-16 21:00:00.000',1,NULL,NULL),
('06ecaa73-326f-4922-8428-6c87a0be1bc2','7c239237-a1fb-41c7-936d-912d80326901','b4b527e9-c851-458f-9238-9049a66f2c90','8 AD. SANDALYE','2025-07-11 08:03:41.000',4,NULL,NULL),
('06f6cb45-16ea-42df-b2f5-fa4e25818703','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL,'Halılar','2025-09-10 17:57:05.000',12,NULL,'2025-09-09 11:06:00.285'),
('06fc7ced-5d2f-415f-bbde-bd46d9f87f4c','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL,'FRİDA ÜÇLÜ KOLTUK 2 AD','2025-01-28 21:00:00.000',12,NULL,NULL),
('0713d7c0-9688-415b-8aab-9cdef4078ba3','6df4ddf2-1d8c-407a-836a-ac83506102f3','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Konsol','2025-06-16 21:13:05.349',0,NULL,NULL),
('07178c6e-4d40-4d5f-886c-720fb82dcfc8','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL,'kartela ve ölçü panosu VE AYAK','2025-02-13 07:27:26.815',3,'2025-02-27 06:56:56.088',NULL),
('071937e2-ebd0-43fb-b59b-78c49e4d3953','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL,'BAMBİ VISCOLORA YASTIK','2025-09-03 03:06:48.000',2,NULL,'2025-09-03 08:34:08.302'),
('074ea43f-46eb-4c8b-a2cc-11fd81b03760','af3c24bb-f60e-414f-9ee5-8ecc68adbfff','ea7f52d3-6796-416f-951d-c553df6295b0','KÖŞE KOLTUK','2025-03-07 21:00:00.000',3,NULL,NULL),
('0756d756-3ebb-46ec-bf88-18b98d2e8a63','38aec1a2-aa0a-4d63-9082-896aaa3694be','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','masa orta sehpa ','2025-09-10 13:39:04.396',0,'2025-09-23 08:24:00.226','2025-10-07 13:45:12.287'),
('07887ea5-a86a-4ebf-8976-e7c1641f50c9','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KAHVEMAKİNASI','2025-04-24 13:26:07.653',2,NULL,NULL),
('078e5a30-43f7-4f76-873a-4dcdd248380e','30753652-c249-4370-954e-0eb227ea17aa',NULL,'KÖŞE TAKIMI','2024-03-23 07:38:43.169',0,NULL,NULL),
('07a1f778-de68-4dd9-b9d9-2b1657caa71f','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL,'KANEPE','2024-04-27 08:23:08.683',0,NULL,NULL),
('07bb64ff-aec7-401e-a7a0-773145781f60','474a3a6a-6eed-40dd-b9a3-2ab629d2b662','3a7c0902-b3d7-4dac-94d9-f025250358d1','KÖŞE KOLTUK','2025-09-04 12:00:00.000',5,NULL,'2025-09-15 10:42:24.224'),
('07d8311a-40e2-4710-8c91-98b60be2e17e','98f2dea4-caf9-419a-931c-7d9d7c9b36ac','93d5fa22-3136-4d4a-b059-a13510667dad','efes köşe','2025-03-19 21:00:00.000',4,NULL,NULL),
('07da2870-e24f-466e-b1d2-42f3d97a5278','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL,'Yatak ','2025-02-26 13:16:04.304',0,NULL,NULL),
('07db21ff-c0e3-442a-bf22-b6f2f41656d2','3fba1e1a-d3f7-4a72-b88c-284f205185ce','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA TAKIMI','2025-05-29 09:10:26.715',2,NULL,NULL),
('0801ed40-5b92-4284-83cb-76d882539064','1879da27-b3bb-4922-be98-d1ddc5fe38a9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 koyu ceviz masa','2025-07-31 21:00:00.000',3,NULL,'2025-08-04 08:31:22.152'),
('0803fa20-5b74-42fc-8f96-ac10c2c5324a','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL,'3-2-2','2024-03-30 09:22:55.797',0,NULL,NULL),
('08042e48-f41f-42af-a51b-44a9a14cedf4','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL ORTA SEHPA','2025-08-28 02:13:06.000',1,NULL,'2025-09-08 12:00:07.860'),
('080cca92-65c6-455b-b12b-18f90f342599','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90*190 MİLAS MASA','2025-02-10 21:00:00.000',3,NULL,NULL),
('081140e6-a4e4-4c40-817a-e779fe364e99','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL,'YATAK','2024-09-27 11:25:41.610',0,NULL,NULL),
('0837f315-9787-4faa-af33-29b55e4b0f2a','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL,'MASA VE SEHPA AYAĞI','2025-05-05 21:42:00.000',3,NULL,NULL),
('084275d2-f3c9-41dc-a923-1d1ffde48e5b','fc887031-1390-40a7-844d-2f0bb0331e99',NULL,'YATAK ODASI','2024-03-16 08:24:24.715',0,NULL,NULL),
('0842c3b7-0bd0-41b5-b390-ec7ea1d07eb0','31a9f03a-9f24-417c-b0b7-5e374d34b126','679716f3-7799-4e9d-a984-9fe004b5689e','SEHPA','2025-09-29 04:40:34.626',0,NULL,'2025-10-14 14:37:45.426'),
('0847d18a-9a33-4e74-a203-827f1fed34a9','61630d35-0a19-4513-83ef-94b891cf12e5','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-04-24 07:43:40.632',8,NULL,NULL),
('0857bc82-8e40-4209-8aaf-1fc4fbcce6b5','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'zigon sehpa','2025-10-09 21:46:10.950',0,NULL,'2025-10-10 14:26:13.149'),
('085b8abe-140c-4e7a-a52b-57b804c24627','3932d875-21e8-45e1-a16c-797670968c92','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-08-27 00:00:00.000',0,NULL,'2025-09-03 11:07:09.386'),
('087c4197-e286-433e-86d3-969922843b35','0831e36a-bfec-49cb-862f-5d57cf563310',NULL,'SSH','2024-11-11 21:00:00.000',0,NULL,NULL),
('08832577-714d-471e-b006-0d3852d85ed5','ee875e8e-a522-46c6-9e27-e09a0edbc8e6','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA SEHPA','2025-08-27 06:00:00.000',4,NULL,'2025-08-29 13:53:43.575'),
('0886662d-3f5b-4da6-acc3-7da74bb71f94','3fba1e1a-d3f7-4a72-b88c-284f205185ce','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','KARYOLA','2025-05-29 09:10:56.999',7,NULL,NULL),
('08882e71-602e-4d88-8809-3db420ce48df','adf790b3-29b5-476e-ba13-8e482d9bc940','cf90c370-208a-4021-aaff-f9220970bca9','BLOK SEHPA','2025-06-16 06:25:40.551',1,NULL,NULL),
('089780c6-b58e-4ac0-92d2-370a4fcea327','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL,'Karyola','2025-07-30 21:00:00.000',5,NULL,'2025-07-31 08:50:11.278'),
('08af242e-dc62-496d-980d-0f589dcdea60','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL,'Koltuk sandalye ','2025-04-29 21:00:00.000',0,NULL,NULL),
('08bd7f4d-e194-4aac-a4e4-084be05bac9f','bedc8bfd-1431-4017-9109-bedbb2184827','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-15 00:26:28.000',3,NULL,'2025-10-16 08:05:08.389'),
('08ea2f95-43c9-46a7-a282-c3d4610764b8','3c4d5d4a-9ea9-4045-ac66-d16b3b30ec2c',NULL,'Koltuk Mobiya','2025-07-10 21:00:00.000',0,NULL,NULL),
('08f19940-4aad-46bc-bf72-01f66d155c84','21cea3d0-82cc-48c9-8e54-12f04fa0fc99',NULL,'Mobilya','2024-05-31 09:15:11.822',0,NULL,NULL),
('0903dcab-6439-4e40-b244-a20ae6942c65','0689343a-01c3-4235-b709-f5f67e87d641','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-19 13:48:45.000',6,NULL,'2025-08-14 12:01:08.590'),
('090862ad-b2db-4f65-8ab5-ccad7f6f4211','b10467dd-1ad4-4468-8e8e-6d6e751fff22','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 üçlü sehpa set','2025-06-27 14:01:43.000',2,NULL,NULL),
('090b9a06-aee0-4c02-b626-f3e2002f0fce','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL,'Mobilya','2025-08-11 21:00:00.000',0,NULL,NULL),
('091261be-4db0-410b-aa84-1ae691d88e78','00597150-64a3-4ed2-95da-544d8eb849d1','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Masa Üst','2025-01-30 13:00:00.000',1,NULL,NULL),
('091fc5f3-cafb-4a56-8101-89c4a22e01b6','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL,'SSH','2025-02-10 21:00:00.000',3,NULL,NULL),
('0920d750-0a86-4ee5-b7e2-7a1b2da4159f','391a1fd1-39d8-4cd4-837d-1a6143c744d8','f5a4f385-a84e-49b3-90e3-7b331b1cf80e','AKILLI KARYOLA','2025-08-14 21:00:00.000',0,NULL,NULL),
('09248b84-4f19-4b1b-aed0-2d5a199314cc','2c97cb3e-43a3-4446-a336-f97bc3f68c00','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2024-12-26 21:00:00.000',14,'2025-01-28 10:23:21.727',NULL),
('09266328-401c-433b-80c2-41dd9663742a','c30ef00f-b05c-4a82-a40c-4d69d5352e77','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Silver sandalye ','2025-09-18 12:01:30.000',1,NULL,'2025-09-19 14:42:35.003'),
('0946c018-5896-43db-97d4-34199264b7d9','4f563dbc-f003-405e-bdb8-828b7a66d357','91d1b62c-2c81-4987-b743-d77dba61cc05','koltuk 3+3+1','2025-09-10 05:32:31.000',0,NULL,'2025-09-22 17:08:51.481'),
('094f7f69-6d62-458b-a54b-5d8f9d6e9be0','d313ceae-a8f1-4f54-ba81-fe9e81fef554','e757256d-c116-45a3-853c-453866ada02e','MİRABELLA KONSOL MASA SANDALYELER TV -SEHPALAR','2025-09-11 08:09:56.000',0,NULL,'2025-09-15 10:45:55.315'),
('094fda01-ee08-4746-bfb8-5af4550b0416','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-07-29 10:33:06.720',3,'2025-09-01 10:28:06.377','2025-08-01 09:08:32.612'),
('09539d44-2328-4f3e-aead-ca2c08bff4dc','c88d3746-2810-43c1-8ec1-df087223feec',NULL,'DENİZ KOLTUK TAKIMI','2025-08-21 18:00:00.000',2,NULL,'2025-08-22 07:58:31.535'),
('0959e7bf-4a44-4a97-811e-75f64a118eae','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL,'160x200 yatak','2025-08-01 07:46:02.000',1,NULL,'2025-08-13 12:42:45.959'),
('0976117a-ad1d-4f63-9831-bac0228939d6','9389f67d-2767-4619-90da-cdf983bc767b','697dd7c1-3e5b-4f0d-bdaa-311ea7554024','Polo Sandalye','2025-08-08 06:00:29.000',3,NULL,'2025-08-08 14:15:53.129'),
('097f44c3-42c6-4ba6-a080-3a040c8d789f','fe00099c-d377-4de2-82f8-6e9c01ec3f07','4e8815b4-d0c2-43fc-9970-1419828c77bc','KOLTUK TAKIMI','2025-01-15 21:00:00.000',0,NULL,NULL),
('0992d733-abbb-4891-8268-04764b359116','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL,'KING PLATİN BAZA SET 120LIK ','2025-06-22 21:00:00.000',0,NULL,NULL),
('099d907a-78ad-45f7-9bbf-15b1407c1172','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL,'SSH','2025-04-10 21:00:00.000',0,NULL,NULL),
('09ab7c74-e4f1-4f23-9e8b-20d215d2afcd','f4fdc95f-d066-47f9-858c-34b39a3d3ebd','986ea798-92fc-489e-a2a1-14fdd3a746fc','2 ADET KANEPE','2025-10-05 08:59:46.000',0,NULL,'2025-10-11 09:16:27.614'),
('09c8cff9-2167-4239-96d7-6595b68b51e8','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL,'Mermer masa','2025-08-11 21:00:00.000',0,NULL,NULL),
('09cca124-aaa9-45ed-9274-c6c360b73342','0abef697-325b-4fde-a364-d1f3c1d2b3f9','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-24 18:51:45.000',1,NULL,'2025-10-13 09:40:13.311'),
('09db59c3-434c-44c0-b22d-c0005ae4ad6a','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL,'80x180 traverten masa ','2025-01-23 21:00:00.000',3,NULL,NULL),
('09dc037d-a191-4930-9334-d1263bbdc959','58e3e5d5-2e17-40da-96ac-0310bd71ed03',NULL,'GEZEGEN MASA','2025-10-17 16:30:00.000',3,NULL,'2025-10-23 12:29:32.071'),
('09ec3773-11e0-4cf3-8e95-4f78f73f4e5e','dc0e5911-5e20-4595-8d5a-e9803266613f','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-04-09 11:00:00.000',3,NULL,NULL),
('09ef7abe-b4ef-491c-951c-09430abea134','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL,'KOLTUK TAKIMI','2024-05-04 07:57:44.461',0,NULL,NULL),
('0a0f5666-0688-4a74-9fce-109b415ecdf2','38e09ff7-02c9-4d9c-8e18-67048459c54e',NULL,'Koltuk','2025-10-22 12:46:42.101',2,NULL,NULL),
('0a0fd393-4e83-4aac-88d0-f5285741c782','e284eca9-ac8c-444b-9259-006514765b59','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-09-18 13:44:17.000',0,NULL,'2025-09-22 14:01:08.120'),
('0a11d915-2e8f-42c2-b468-0ee6b5857269','97f210f7-77d7-4798-b689-12729f296667','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','SYDNEİ SANDALYE ','2025-10-20 15:00:00.000',4,NULL,'2025-10-17 11:28:29.837'),
('0a18da5e-abaa-4a82-b8ad-9c858425a606','c139f73d-4a85-4217-8011-d483b3fabd11',NULL,'MOBİLYA','2024-09-27 13:20:38.817',0,NULL,NULL),
('0a1f676e-5220-4240-a3a0-0e60bd6d378b','1a38a8c4-2aa6-4815-816b-49ef6b71901e','1be238d9-54e3-4094-8d60-66fd5abb87b5','AFYON TRAVERTEN','2025-10-09 15:00:00.000',1,NULL,'2025-10-10 10:16:21.642'),
('0a37d3e3-2d69-4e15-a710-09d4eae2258f','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL,'KOLİLER','2024-09-05 15:34:47.672',0,NULL,NULL),
('0a43887a-12ae-4e51-9586-f10e42c3bca6','a8888d05-159a-4d87-90a8-88a98dc908ae','c508b00d-a686-416e-ab4b-43fe49208cd0','2  ADET  BAZA BAŞLIK KARYOLA','2025-08-18 12:15:53.000',0,NULL,'2025-08-22 10:22:00.852'),
('0a4aa4de-bb28-46ac-bb64-98beb5311460','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','27542b9c-f586-4152-836b-5dedeaae0be2','MERMER DESEN MASA + İKİLİ SEHPA ','2025-07-28 15:30:55.000',0,NULL,'2025-08-06 12:12:41.546'),
('0a4d7445-7625-47e2-9f91-e881dc6494ce','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Köşe','2025-09-09 22:16:23.889',0,NULL,'2025-10-17 07:23:37.683'),
('0a7091a2-1be9-4a5a-a612-ddecb064d79c','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583','1be238d9-54e3-4094-8d60-66fd5abb87b5','traverten','2025-09-08 09:00:00.000',1,NULL,'2025-09-11 10:27:13.067'),
('0a72fe75-568b-40da-83ae-d78004c511a8','0d5fa9af-726d-48a9-a5d1-c407a279f76f','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Sehpa','2025-09-17 05:30:59.179',0,NULL,'2025-10-09 11:31:39.410'),
('0a8285d0-d3db-4298-8e41-62c5429f150a','ff039116-94c2-4c75-851c-9deaf4e01549',NULL,'Mobilya ','2024-09-30 10:14:41.698',0,NULL,NULL),
('0a851431-d5c7-4333-895c-c0ce142450a7','61630d35-0a19-4513-83ef-94b891cf12e5','3e78db22-08b5-4c8e-9d69-c184e551e40a','seramik masa','2025-04-23 21:00:00.000',3,NULL,NULL),
('0a94a330-c190-4d8f-bc87-1e36db747252','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + puflar','2025-06-27 13:00:00.000',2,NULL,NULL),
('0aab1b88-d692-45bb-916e-0ea02b2888ef','bca77d81-68cd-453a-baac-e90e9d898da0','375dfe5e-e7aa-4633-9eeb-04b116f2bdec','BERJER','2025-08-18 08:35:03.242',1,NULL,'2025-08-19 14:21:01.610'),
('0ab3c63b-a6e5-4df0-a96e-33e5a256da25','b0f8549b-c1c2-4996-bf7f-22c82846b134','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe takımı','2025-04-07 21:00:00.000',4,NULL,NULL),
('0ac02745-1f8b-4586-9467-0e3e924b4d26','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL,'Traverten masa kasası ','2025-06-25 21:00:00.000',1,NULL,NULL),
('0ac2a48d-48c9-41d2-91a2-b574a94542b0','9c3d7567-24b3-4c51-9c80-4065af9769a9','37d5103d-f240-43ec-856a-cacc76fb51da','4+2 Cupra dolap ','2025-08-11 06:59:49.835',0,NULL,'2025-08-11 12:37:44.657'),
('0ac53b26-8839-427a-9f47-8cb1675f5bea','a04ae8dd-1caf-4622-97e8-aa08c8974c93','f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','Orta sehpa','2025-09-01 03:44:14.000',0,NULL,'2025-09-03 13:14:54.135'),
('0ad83dd7-8433-4d6d-90e2-775f048b7855','dacd398a-1156-4c32-ba9e-e38cdcc1856c','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-29 01:00:00.000',0,NULL,'2025-08-29 08:06:05.152'),
('0ad93723-9533-486c-83ac-4a9287073b23','8ddba844-a989-499f-a6a5-be77dd52ea3a','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-09-10 14:00:00.000',3,NULL,'2025-10-14 14:26:17.540'),
('0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4','d9ce2f65-7034-4114-b66f-0c1076eb90bf','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-20 18:24:15.000',0,NULL,'2025-09-03 13:05:03.144'),
('0aecb923-20df-46e1-b50d-65f912c8cc73','58313a08-d2a0-4dce-97d3-e911857314d3','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-24 14:11:23.887',6,NULL,NULL),
('0b263696-c301-4e53-af19-9954fc5ad107','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL,'ssh','2025-07-31 21:00:00.000',2,NULL,'2025-08-07 16:12:28.859'),
('0b2aef55-3f13-481d-aea2-e04a6333fcb8','2b07945c-640f-49e9-a7a3-fdcc706090f9','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-25 19:25:31.000',2,NULL,'2025-10-10 07:26:20.084'),
('0b3e1c46-d496-4276-abe9-00c9d3922ad6','6e7511a6-da4e-49c4-b1e0-36335129a7eb','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','bench','2025-04-24 09:20:26.000',1,NULL,NULL),
('0b4b00f2-1292-456f-b21c-c5ff1da2d42f','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL,'KOLTUK TAKIMI','2024-04-23 10:17:21.437',0,NULL,NULL),
('0b5d01dd-a6f5-4588-804f-2d8e40f71f9c','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL,'Toner','2025-05-24 21:00:00.000',0,NULL,NULL),
('0b64224e-72c9-4a4a-bf83-c1f6476351a2','bf3734b5-7721-41e9-9cb0-212fc49e08df',NULL,'4 PALET 6M3','2024-03-12 10:19:54.849',0,NULL,NULL),
('0b7b294b-a03f-4eeb-a10a-b4d653fe53f5','a132cd43-3a78-405e-8d75-c0a8147b581f','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-04-09 11:00:00.000',3,NULL,NULL),
('0b843397-58bf-411e-9c45-d57a80cdcbbe','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL,'MOBİLYA','2024-05-23 07:19:35.823',0,NULL,NULL),
('0bafd109-abe8-42a8-b45f-d5053eae132b','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'GRANDBEDS ADDAX PLATİN 160*200 YATAK','2025-08-26 02:03:40.000',1,NULL,'2025-09-08 12:00:07.860'),
('0bb0742e-7cb0-41f9-9c79-ffced4e0a7d5','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL,'PARÇA','2025-09-15 21:00:00.000',2,NULL,NULL),
('0bb5d71a-48ab-403f-9eb4-a71c550b29ad','231cdd37-a6e7-4662-97a2-d7f8144e2edd','a59c832a-288a-45ad-9922-f8c1ebf24d41','Karyola ','2025-02-25 21:00:00.000',0,NULL,NULL),
('0bb931f8-128e-493c-ae94-68675d2e4db0','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL,'2 ADET 90X200 YATAK','2025-09-11 12:50:02.000',2,NULL,'2025-09-15 10:19:46.239'),
('0bbc5c7e-04d4-47a1-95a7-a4fb473803b3','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,' SANDALYE','2025-10-07 21:00:00.000',0,NULL,NULL),
('0bc24e77-b11a-40c8-a7ef-6a7f438e4054','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL,'Köse Takımı','2025-09-02 15:00:00.000',0,'2025-09-11 12:54:35.713','2025-09-03 13:42:48.735'),
('0bd0f775-33a0-4024-8aab-7bc8f7cc87e9','9e04acec-f940-4ce2-9a36-44b825987e05',NULL,'Yatak odası ','2025-03-07 12:34:55.023',0,NULL,NULL),
('0bd42145-fdd8-4793-a5cd-a2e404d37142','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL,'Star ve Lingo Genç Odası','2024-11-17 21:00:00.000',28,NULL,NULL),
('0bd6afc7-c317-4f22-9668-b45353a1d28e','63812a5c-02ef-4661-96d7-348a4af6ef8a','b2f38bcb-248d-4626-9f30-2fe34792a4a6','Koltuk','2025-07-16 21:00:00.000',0,NULL,'2025-07-21 09:22:13.784'),
('0bd94e8e-e975-41bb-aef7-f02e8226f92b','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-17 15:00:00.000',6,NULL,'2025-09-23 13:03:38.314'),
('0bf540a1-4e97-4b5e-bff2-523992ba0522','89c7af9b-6049-4f3e-9b7a-1672824189c6','e7220662-73b8-46e4-9f5d-7e977cc23448','masa ve orta sehpa','2025-08-22 01:00:00.000',4,'2025-09-01 10:57:12.467','2025-08-25 12:25:21.136'),
('0bfb61ae-69eb-47c8-af39-c469e7cbd3f7','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'DELUXE YATAK 120X200','2025-06-19 21:22:50.000',0,NULL,NULL),
('0c05a97a-db7c-44bd-92d4-cae9f277481f','d3e4434c-1317-4092-aed5-8cc884ab1ae7','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-09-16 20:11:53.000',3,NULL,'2025-10-10 14:11:02.803'),
('0c0d513a-893b-42d3-96b7-f5358bfa4450','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL,'FEYZA YATAK ','2025-03-30 21:48:31.000',0,NULL,NULL),
('0c0ef815-3671-40f7-abee-a0ed0e2bc413','7a71a4e0-3e90-4099-bd84-f11cdef53c31','b4b527e9-c851-458f-9238-9049a66f2c90','ASKI BORUSU VE SEHPA AYAĞI','2025-09-10 15:00:00.000',2,NULL,'2025-09-12 11:38:12.807'),
('0c36ae1b-e1eb-476a-8196-505500cdac6e','4aefeaca-07a5-46c4-8497-55b99b83d2f8','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','3 kutu sandalye','2025-03-21 11:32:41.030',3,'2025-03-25 17:33:56.956',NULL),
('0c429066-9622-4b80-b578-43839591add2','b5545ecb-25d9-4bc6-95bb-2740c6431904','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-08-06 11:00:00.000',3,NULL,NULL),
('0c4e75d5-e342-41c3-949e-5ca8657ec836','6d081276-ddf8-46f0-93cd-4f0c203eb705','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık 2 adet','2025-08-13 05:00:00.000',14,NULL,'2025-08-29 13:33:59.043'),
('0c6185c5-4d86-4de6-a4f2-365f095498a7','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-08-28 09:04:28.000',5,NULL,'2025-08-29 13:23:28.434'),
('0c67a3bd-069f-46d5-a047-024932eb97bb','826475dc-b2f5-46e9-8c2c-4ddeb82b942b','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','müşetirinin ürünleri','2025-08-12 08:53:39.697',9999,'2025-08-14 08:29:21.339','2025-08-14 08:28:57.686'),
('0c7de751-a7af-4359-ab7d-3f7f371e2f00','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31','bf2f9026-0036-4efc-bfb3-7790361e64fa','Sehpa ','2025-08-11 18:18:47.388',0,'2025-08-14 07:50:03.738','2025-08-14 07:49:23.151'),
('0c867a1e-6b53-453b-a01e-e0718e79528c','8561441c-71d3-4fdc-b62c-38b9d59e21bd','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-04-23 21:00:00.000',3,NULL,NULL),
('0c8e601e-d31e-4aa5-8a79-e4a4d4aae257','273c83bb-2405-453b-8f32-a6fd281b21a7','f1ae9a8b-2050-44ca-bc45-05de7735af91','TV ÜNİTESİ','2025-06-23 09:21:27.198',5,NULL,NULL),
('0c927438-769f-4fbd-a2cd-4c7de6bb54fd','826475dc-b2f5-46e9-8c2c-4ddeb82b942b','99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','Bazalı karyola ve puf','2025-08-13 09:47:09.993',999,'2025-08-14 08:29:22.788','2025-08-14 08:28:57.686'),
('0ca7b5c8-7608-49bc-9057-d56d835fbea5','2791c56f-7265-461d-b1bf-4a378276ed53',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('0cb99ceb-7431-49b8-95dd-e90ab6ef0a63','a8888d05-159a-4d87-90a8-88a98dc908ae','a1a8e2a2-521d-4158-827a-6a00009fe375','6 SANDALYE','2025-08-18 12:15:35.000',0,NULL,'2025-08-22 10:22:00.852'),
('0cc31d9c-27a2-40b8-9231-c0a0d77af806','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL,'DELUXE 90X190 BAZA SETİ 1 ADET ','2025-09-29 06:38:24.860',3,NULL,'2025-09-30 09:29:10.694'),
('0cc39437-8ee1-47ea-87c2-b9fe770c2259','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL,'MOBİLYA KOLTUK ','2025-04-06 21:00:00.000',0,NULL,NULL),
('0cd52e7f-c464-4bba-ad3b-5ff8d4a218df','ac7ab08c-6eaa-4002-9075-7a985dd13c18','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe-konsol-tv ünite','2024-12-04 21:00:00.000',7,NULL,NULL),
('0ce74bb1-5b22-4340-b7c2-3e486e77bf0a','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x190 Nevada masa','2025-03-06 21:00:00.000',3,NULL,NULL),
('0cec28fd-4d59-4786-8895-12736ccf55a1','5f57a0f7-857f-4662-b47b-242a72bd52b3','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','Sandalye','2025-07-02 21:00:00.000',4,NULL,NULL),
('0d069b83-aba7-488f-87c2-de268881778b','5f9f6345-4b94-4cd2-9416-610df7cd46da','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-09-26 04:00:00.000',2,NULL,'2025-10-02 10:01:54.942'),
('0d0b3b65-9271-42fb-9f7b-7024362d9f03','00597150-64a3-4ed2-95da-544d8eb849d1','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Sehpa Üst','2025-01-30 13:00:00.000',1,NULL,NULL),
('0d161dde-9057-490d-aa97-f0e28819ff37','cea81038-a341-47c6-8f8b-905346a6e5b0','7582128f-7119-48f4-b125-e6b8bfb84dc3','SANDALYE','2025-10-06 07:38:09.000',2,NULL,'2025-10-06 11:23:37.282'),
('0d1a3e09-3b1a-4b24-bfd8-967ad3171dee','eb029e46-e69e-4bea-b717-f1c575aa7ca7','8c33406d-1686-45a9-ad7a-de320c689537','MUTFAK KÖŞESİ','2025-09-17 04:02:47.192',2,NULL,'2025-10-03 13:01:22.096'),
('0d3a5595-1b06-4732-a954-1590654c804a','32f7a105-8ee5-4d45-907c-2d7f861d1ce3','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','100x200 set','2025-04-29 21:00:00.000',3,NULL,NULL),
('0d48730c-8663-4e88-9620-5a9ce6221fdd','400f01f9-93ac-402c-9545-879c310ade12',NULL,'CAM PALET','2024-05-04 09:59:01.244',0,NULL,NULL),
('0d69f338-8121-4b73-b0a1-b8987dddf93d','d6635bb2-75b0-48bc-bb9b-7e1161e20b03',NULL,'KOMPLE RULOLAR','2024-03-12 10:24:55.250',0,NULL,NULL),
('0d90ef6d-e963-4a99-bbbe-e4ca67429574','3bb4499e-7b18-422f-a19d-ece35be90286',NULL,'RK home','2025-06-25 15:49:29.188',0,NULL,NULL),
('0d93ec76-e105-4626-bfbc-1375be57ce07','f2e85c5a-0ab0-460f-8b3f-1dce4d598818','f8801f54-a08d-4e4f-a884-f9cf73dae007',' LATTE KARYOLA  ŞİFONYER  İKİ ADET KOMODİN','2025-08-22 08:15:43.000',0,NULL,'2025-08-22 16:20:40.271'),
('0dc117f7-5e70-4621-87f8-335baf3c4f19','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('0dc5e5d6-cace-4501-9a0d-ff1d1e995f89','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','masa','2025-08-19 08:00:00.000',3,NULL,'2025-08-21 12:36:53.862'),
('0dce8613-12ad-45a6-ae96-565770f25828','9bc7ed7a-88ba-4843-ab9e-94956f2066a3','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye ','2025-08-28 09:37:26.000',0,NULL,'2025-08-29 07:32:50.941'),
('0deeebaf-efdc-4c4d-8020-24722ff30282','dcbe7eee-e054-430d-b60c-71cef3ff6b80','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-21 11:35:07.000',0,NULL,'2025-08-22 12:41:50.201'),
('0dfa8c17-2a67-40e3-83b8-3d8d909e832b','a77006b0-079f-4321-bacd-fa817113e818',NULL,'MOBİLYA ','2024-12-29 21:00:00.000',0,NULL,NULL),
('0dfacf6a-8dcc-415a-9e14-a7dfd830c72d','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL,'SSH','2024-08-31 12:51:34.326',0,NULL,NULL),
('0e2be2b7-0932-4325-b574-46a1ab000238','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x180 cm traverten masa','2025-06-18 21:00:00.000',3,NULL,NULL),
('0e30b5a4-a5dd-4eff-b745-984f8f856f13','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL,'cam kapak+menteşe','2025-01-23 21:00:00.000',1,NULL,NULL),
('0e690a7a-d115-4659-895f-e812d7ef4391','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL,'TEKLİ ','2025-03-20 21:00:00.000',1,NULL,NULL),
('0e6c5167-015f-4f9a-a02d-531b8fe7af4e','f9930b26-2916-433c-84e9-7d26f5c38b59','940c6390-4082-4fe5-aeaa-06d180147a7b','masa sandalye','2025-07-22 22:00:00.000',9,NULL,'2025-07-23 10:18:38.806'),
('0e701d67-c6bb-4ce9-b32e-3d2255d064b5','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL,'KOLTUK TAKIMI','2024-04-23 10:15:35.047',0,NULL,NULL),
('0e70ccfe-0887-4aff-9656-0781d621c3b4','3caa13eb-3143-47f2-b11e-c9f3575e57b0','38a7333e-8a0f-4e45-957f-e11d538d2097','Masa ','2025-01-16 21:00:00.000',3,NULL,NULL),
('0e7b8360-16df-453f-8ed7-323ac1691841','82d17384-1e37-4136-b61d-8ad262906c8b',NULL,'TRAVERTEN','2025-03-07 21:00:00.000',1,NULL,NULL),
('0e92c59b-93d0-4308-91ce-3965bb186203','449509c8-dd74-4151-a2b8-9260734e7dac',NULL,'Mobilya','2024-05-31 08:52:48.067',0,NULL,NULL),
('0e98e045-892d-4ac8-948b-d28c498ee21b','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL,'2 C sehpa ','2025-09-17 07:26:55.381',0,NULL,'2025-09-18 12:29:52.971'),
('0ea49f4b-5c5b-433d-8eb4-379379e4da2b','be724a3e-9060-4b50-872b-a56ac4c3c92b','c6928307-fe5c-4de5-b14e-5dd7e33db94b','masa ve 6 adet sandalye','2025-07-31 12:07:28.000',999,NULL,'2025-08-04 08:20:31.646'),
('0eeaeeec-d499-4938-975f-3fc74fce159f','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Traverten masa ','2025-05-20 21:00:00.000',3,NULL,NULL),
('0f0e3177-ab60-40d0-8405-2f1a66594f0b','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL,'SSH','2024-10-11 13:01:50.437',0,NULL,NULL),
('0f23c0c9-bd53-4204-a005-d8f2b3211f59','0a137908-ceed-4a84-b0cb-945ff56ddcb8','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-05-22 21:00:00.000',2,NULL,NULL),
('0f3df944-0578-417f-8086-580114d92963','8b8f439c-2dbf-40f1-a946-d37ea9c4566f',NULL,'KOLTUK','2024-06-08 07:18:06.608',0,NULL,NULL),
('0f4f434e-64aa-4e76-ab76-a30f8676f7cd','8f38f94a-f9de-478d-9d69-21faf6e91db1',NULL,'Mobilya','2024-05-15 13:06:23.289',0,NULL,NULL),
('0f616d2b-ac09-4760-90c7-afc7c0de4d7c','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-22 14:00:05.000',2,NULL,'2025-10-27 13:39:04.728'),
('0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5','e9be7295-2626-4fb3-adb1-dcad8f37101f',NULL,'MOBİLYA','2024-03-16 08:44:42.448',0,NULL,NULL),
('0f6c900a-c5a8-4b91-8c57-3b604c41023d','5be6a019-e31c-4bdd-ac62-bd037d756e64','0f300a3b-b3d6-4b60-924b-aa70cd54141e','180 X 200 BAZA SETİ (AHMET CELEBCİ)','2025-03-04 09:05:44.641',4,NULL,NULL),
('0f72925b-09ee-4187-9456-1c900ac26550','f0a5289b-f034-4540-b03b-9510ca71ec7a','a59c832a-288a-45ad-9922-f8c1ebf24d41','başlık ','2024-12-28 20:03:57.626',1,NULL,NULL),
('0fad58f3-27a0-40f4-87e4-10112791f0ab','f75aea68-ca38-4530-9ad3-ae32f05071ef','61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','masa + orta sehpa','2025-10-19 20:58:02.000',7,NULL,'2025-10-20 11:55:28.451'),
('0fbc8a59-8a38-472e-bcd7-358dfbdaa902','32af2488-e641-4d93-9e64-e4ff7977ab48','aa32cc6f-e3e3-496f-a512-a5e1ea102c51','Köşe koltuk','2025-08-13 00:16:59.000',0,'2025-09-18 15:07:50.256','2025-08-19 09:12:15.055'),
('0fc25d41-fe66-4797-a304-92adc29b59c1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL,'NATURA KOLTUK TAKIMI','2025-09-11 22:12:09.000',0,NULL,'2025-09-26 15:10:00.573'),
('0fd11175-c1fe-48d1-bd10-12f4e3ba4cc7','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL,'Çıkış tarihimi bekliyor','2025-11-16 22:43:47.000',0,NULL,NULL),
('0fe6d0bb-346d-4029-b0c9-5d01dca21872','e637af8d-f91f-4227-b5af-f95f10dd7e2f','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe takımı','2025-01-14 21:00:00.000',5,NULL,NULL),
('0ff7b00e-abbf-4c9d-90d2-7b7dd8da240e','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL,'MOBİLYA','2024-07-20 10:27:49.063',0,NULL,NULL),
('0ff914c7-1691-4651-80b7-e820501b0c32','2bfb4ebc-a071-48f5-9c44-727046a13ab1','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','3 ADET YAN SEHPA ','2025-09-15 21:44:09.401',3,'2025-10-06 11:36:39.061','2025-09-17 07:28:57.521'),
('100083d4-abdd-400c-b4a8-7412d2aa4866','936577ed-02ef-44c5-9226-4d241235c1bf','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-10-03 09:33:04.000',6,'2025-10-09 13:56:51.125','2025-10-09 13:33:57.026'),
('1009cf72-9e4a-4916-a90a-4e3ad3f7d48e','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL,'EKOL LOTUS ZİGON SEHPA ÜST CAMI','2025-01-07 21:00:00.000',1,NULL,NULL),
('100d485d-7464-43dd-8090-f3ba1137ae7f','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL,'SSH','2025-05-20 21:00:00.000',0,NULL,NULL),
('100f6b1c-3292-4714-ab15-a9db8e3e078b','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'EWODA LENS ŞİFONYER BOY AYNASI','2025-02-18 21:27:28.000',1,NULL,NULL),
('1010ddb1-1035-482a-ae3e-4ccd13b4811e','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL,'SSH','2025-09-15 15:00:00.000',1,NULL,NULL),
('101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL,'SSH','2024-08-20 15:07:35.906',0,NULL,NULL),
('103d99db-810d-49e3-be09-42684c31766c','c39a4319-9662-48ba-9a56-fe67a5b7c830',NULL,'Masa  ve 1 paket','2024-12-25 21:00:00.000',2,NULL,NULL),
('10404fd7-5aa3-43b9-8d49-f3acc0f74fa7','a72800e1-54dc-4d60-b293-ca2184c62129',NULL,'Mobilya','2024-06-05 10:37:11.102',0,NULL,NULL),
('10487cb1-a480-4eb0-8c13-2e4f22918abd','769295fe-385b-4195-9bd0-58e04754d3ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x250 cm siyah meşe masa','2025-08-21 18:00:00.000',3,NULL,'2025-08-23 10:26:56.510'),
('105785a5-e450-4d29-8109-3b9bd15eec97','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL,'90x190 milas masa','2025-01-23 21:00:00.000',3,NULL,NULL),
('105baff3-99ad-4d7f-b4a5-116a7968849b','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('106bebb4-251d-43b7-a2ce-1f19122394a5','381be1c2-928b-42d0-a2f3-8a80afb39ed3','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye siyah','2025-03-05 21:00:00.000',6,NULL,NULL),
('10708bc5-868c-4cfb-9eb8-2d78a3b051c8','d07a41e2-b061-4a35-9e73-38a90d719daa',NULL,'MOBİLYA','2024-03-15 14:27:58.412',0,NULL,NULL),
('10713340-bec6-4848-aa12-a7c74e59c0cf','dee76d86-fa33-4f64-84d6-a8bb4fd71acc','0f300a3b-b3d6-4b60-924b-aa70cd54141e','ünite','2025-01-16 21:00:00.000',2,NULL,NULL),
('107fdebc-b61e-48d1-9c8f-84ffa2681dcd','32e2befd-32f1-4bb7-a60e-635dd9c600ef','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2024-11-11 21:00:00.000',4,NULL,NULL),
('1086f7ce-fb42-4a68-915f-6eef7c1c791b','5ad44ce7-8456-4857-b0ee-214d21edb110',NULL,'masa sandalye','2025-10-05 18:00:00.000',0,NULL,'2025-10-14 12:58:20.301'),
('1087586e-034f-4ec1-9828-d61ce37a1821','73a48364-e3d4-4fab-851c-d3a1f4617a64','44c404b3-a618-4af5-bdfb-ad381f049053','KÖŞE -2 ADET YAN SEHPA','2025-10-05 12:00:00.000',0,NULL,'2025-10-22 08:39:14.428'),
('1091def4-1b0b-468c-88e1-7bec1e66dc81','a529d4b1-7131-4e37-82ab-dd7986268aa3','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-27 21:00:00.000',5,'2025-05-08 06:56:15.929',NULL),
('109642dc-0833-423c-9fee-ee29a1e3c5a9','c7df4577-2554-4909-9abc-5a62fa7bafc7','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-23 22:12:10.000',3,NULL,'2025-10-03 12:20:25.317'),
('10a71c5c-3ee6-4ad7-acf6-abdad6ddb70e','bf55ba8d-4886-4535-bedc-892994749297','0ad4214d-7661-4597-8ec6-579510e6a02f','Sandalye','2025-08-28 16:27:18.000',0,NULL,'2025-09-02 08:30:05.734'),
('10ad24a8-579a-4070-b518-bffa0ba09e26','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'ünite+orta sehpa','2025-10-09 21:45:23.566',0,NULL,'2025-10-10 14:26:13.149'),
('10b7216f-e5f9-4de9-b36d-c05d44e9b3a3','ff996f87-3846-4d01-9b30-2f9d65c79763','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye ','2025-08-08 14:41:38.000',3,NULL,'2025-08-04 08:41:37.871'),
('10b7be91-04db-42e1-ad19-153945c5c51a','f3fb5afa-e27b-4671-8dc8-33032a54e4d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm traverten orta sehpa ','2025-09-17 20:13:58.000',2,NULL,'2025-09-19 14:33:52.597'),
('10c74187-d842-43db-b580-a7937f5edf5d','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL,'SEHPA','2025-04-14 15:12:48.512',1,NULL,NULL),
('10d4880d-aab8-4452-8088-45f0cec9ee21','a3da76d9-3e08-44c3-b712-87bc2e6f90e4','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-07-01 21:00:00.000',1,NULL,NULL),
('10d63ad9-5664-4514-9fb9-770393034f69','d14c8be1-206d-44a7-97dc-bb0f2ac15937',NULL,'MASA TV ÜNİTESİ','2024-03-16 06:44:47.165',0,NULL,NULL),
('10f0d294-ecb6-4233-955b-e212fb4511c0','ab6c5673-d6a0-4529-b932-e0c888851a0f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ceviz renk','2025-09-17 15:00:00.000',6,NULL,'2025-09-23 13:04:44.099'),
('1118c3e1-7c30-4ac9-ae0e-5dff68ee2213','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-07-29 19:26:49.891',3,NULL,'2025-07-30 11:38:57.254'),
('111ec340-48ae-456c-b501-40efe003e8c0','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3','da95f6ab-9177-49c8-b729-1fcee7ea77cb','6 SANDALYE','2025-01-23 21:18:16.000',3,'2025-01-24 23:23:17.564',NULL),
('11466b88-36e8-41c7-bbe2-bab9e9a3fbb6','6be99b5d-41a3-4b9e-a67f-f951b7f620ed',NULL,'Tv ünitesi','2024-05-10 12:10:53.531',0,NULL,NULL),
('1146c60f-37ae-4960-9ff1-39c79125711e','927e12ff-5564-4a31-a8d5-f4d5eaffc582','44c404b3-a618-4af5-bdfb-ad381f049053','KÖŞE+2 AD. BERJER','2025-07-30 07:41:23.000',11,NULL,'2025-09-15 10:19:46.239'),
('114999e6-a96d-47bc-8670-4aa3f8a10015','dc68d2f6-756e-4103-ad16-7f8a226f0a50','b2574014-48f1-4fa1-870b-8665380ad3e9','Hanedan koltuk takımı ','2024-11-19 21:00:00.000',5,NULL,NULL),
('115aa366-1d90-47fa-a4bd-cfd120425cc1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL,'Puf Sehpa','2025-02-17 13:00:55.000',5,NULL,NULL),
('11685268-d8ee-4474-adbb-41d1ceac04e0','2094040d-2cfd-4028-9115-e50a2e855156',NULL,'Mobilya','2024-09-09 08:35:51.122',0,NULL,NULL),
('11793050-5052-4f11-8d62-da08ff8bd229','ef665960-85ce-48ac-b924-d42b48473988',NULL,'Nevada ceviz masa ','2024-12-12 21:00:00.000',3,NULL,NULL),
('118a1c73-66eb-4870-b4a4-04f623a1ba0e','90958150-7001-4d34-b42d-731ec53aa3d6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten masa ','2025-10-09 18:00:00.000',3,NULL,'2025-10-14 09:17:45.355'),
('118c1332-f22b-4c10-ac2c-dd9b3410416a','7f9379fc-d4c1-4277-b25d-671a459d4658','aed2c9d2-a533-40d4-8470-bfa5d2d610fd','Karyola ','2025-05-30 21:00:00.000',4,NULL,NULL),
('11ae30b7-e1e5-456e-a579-411396fbed2c','83b6fa22-325d-4428-9f65-24d93d1dbfb4','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-04-25 09:15:21.494',6,NULL,NULL),
('11bb54b9-d46e-445d-a3df-c44fe0e83c43','3b29ef33-2d5d-4e29-b828-9833896d4a0d','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 sandalye','2025-07-24 16:00:00.000',4,NULL,'2025-07-25 13:20:26.100'),
('11cb00a0-e2da-4c53-b9c5-4e213558a211','82f7f211-f2f7-4707-aaf2-eb58043e049c','d8852582-d508-498a-b753-7d20cd810d34','Köşe koltuk','2025-02-05 13:00:00.000',2,NULL,NULL),
('11cd3c1b-ae0a-4c54-901d-09fdc4b973d1','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('11d9d1c3-aa53-4d51-a735-2be58bc6aeef','f1669928-edf4-48cd-9d17-1413b45ca355','38a7333e-8a0f-4e45-957f-e11d538d2097','masa','2025-07-03 21:00:00.000',0,NULL,NULL),
('11db7379-d6bc-4506-8aab-d802a15b39de','5e1f8bc1-fbc6-4a17-9981-db921860e228',NULL,'MASA ETRALVİNG 17.SK','2025-10-02 12:01:00.000',3,NULL,'2025-10-22 13:05:59.515'),
('11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b','777a9d0a-ed8a-4b87-a971-1803e6a68047','3d19e2da-7de7-453c-83fa-6edd8258f6eb','3-3-1-1 koltuk takımı','2025-07-16 21:00:00.000',999,NULL,'2025-07-17 14:04:03.894'),
('11fa5fa8-2f6f-48ab-8a5b-c1812ebe8c34','8f6807e5-5c09-4383-bd17-acc03cf88760','c59ab47a-e990-43f5-afe9-6170600dc642','traverten masa','2025-06-29 21:00:00.000',0,NULL,NULL),
('1212388b-af38-4c94-a2be-77d942c1cf78','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('1213fb34-61cd-42d2-a514-175d319ca5ce','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9','f1f75c8d-ef6f-4283-a84d-726689476f2d','ŞİFONYER AYNASI','2025-05-08 09:33:43.610',1,NULL,NULL),
('1219ae2a-bb83-4e56-868e-8398ae2fe1f8','7769da2f-9686-48c6-ae96-b03c5a2ae610','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-08-05 06:00:00.000',4,NULL,'2025-08-08 12:16:21.847'),
('1222a6b4-7912-4b99-b20a-21960de3045b','fcb0b841-6635-4572-b614-c5ef3a33d371','167543db-0d5e-4b47-a4bc-dcdf543920f5','arı mobilya b.karyola','2024-12-19 21:00:00.000',0,NULL,NULL),
('12470cb7-9c6d-4996-a8fe-651fcfada915','6aa00240-966f-486c-99d1-9d64e41babbd',NULL,'KOLTUK KASASI','2025-05-12 21:00:00.000',1,NULL,NULL),
('126dd53d-77d9-4431-9b96-782895f21d66','5400fc28-c829-4ccc-a810-54ae598d5606','fee7f346-332d-419c-9da4-5a7154085362','köşe','2025-07-24 09:00:00.000',4,'2025-07-24 13:30:38.766','2025-07-25 13:12:14.859'),
('128ee3b5-4128-473f-b460-9fad52390a53','f8f36d3c-b453-4ef2-9053-625e7ae9a535','4d3f433c-6ebf-4443-a8bd-319b61cbe400','koltuk takımı area 4+3+1+1','2025-08-28 10:00:00.000',4,NULL,'2025-09-01 08:53:43.110'),
('1295e4e3-5188-43f0-8021-ac4bfa726bd8','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL,'KOLTUK TAKIMI ','2025-07-08 21:00:00.000',2,NULL,NULL),
('129708ec-ae71-4363-b219-de04734f5e75','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL,'MOBİLYA ','2025-02-25 21:00:00.000',0,NULL,NULL),
('129ec430-4070-472b-9808-17eb9d44fff1','435240dd-12c3-416b-98d9-0b0a66ae658d','940c6390-4082-4fe5-aeaa-06d180147a7b','MASA SANDALYE ','2025-11-02 23:00:00.000',6,NULL,NULL),
('12a4b68e-a96e-444c-b55b-5688b36532fa','c30ef00f-b05c-4a82-a40c-4d69d5352e77','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Silver sandlaye ','2025-08-31 09:56:17.000',6,NULL,'2025-09-19 14:42:35.003'),
('12b37afa-91dd-4e2d-af06-ea0c3edaf49f','57d149b0-26bf-4d32-bd70-63fa29f50cd3','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-10-13 06:00:00.000',5,NULL,'2025-10-17 07:43:31.572'),
('12ef12fb-6e31-49d7-b5b3-abc20f2bd4f6','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL,'KING PLATİN BAZA SETİ 180X200','2025-05-19 21:00:00.000',0,NULL,NULL),
('12f36aab-da4d-4ab7-ba13-2b5814d357b5','c021f338-6016-4618-8575-dc3a9f3dca1f',NULL,'ÜÇLÜ KANEPE 2 ADET ','2025-01-12 21:00:00.000',3,NULL,NULL),
('13187572-3b08-4b7b-b6b8-ceb3cc69b5d3','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL,'masa sandalye','2025-09-29 08:00:00.000',6,NULL,'2025-10-08 13:53:13.433'),
('132e28a3-dec2-41f7-b997-f8c942e0437c','11b5e5b0-5008-4cd0-8348-2326293e7dcb',NULL,'YEMEK ODASI','2025-09-20 10:15:39.000',0,NULL,NULL),
('135906fa-fceb-45b1-a401-83de82461319','1be311ce-e06b-49b5-89b4-ca8a3ecea45f','52a4ba6b-a138-44a6-a361-b229db2520b6','VALENCİA MASA / 8 SANDALYE','2025-09-18 03:13:33.000',0,NULL,'2025-09-22 11:30:17.199'),
('135c284f-8acf-4424-8c84-150435648d16','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','sandalye ','2024-12-28 20:09:29.763',3,NULL,NULL),
('138edf36-d166-4335-8560-d9873886e31c','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE YATAK ODASI ','2025-09-07 09:00:00.000',0,NULL,'2025-10-09 10:46:38.669'),
('13af0393-e0eb-4441-ade3-4961e25769d1','c43d1a62-fa97-4d61-9dce-df2c792a2403',NULL,'koltuk tk sandalyeler ve sehpalar 7 m3','2024-11-07 21:00:00.000',16,NULL,NULL),
('13c66a58-d73d-433d-bf73-d5203d5b07b8','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL,'SSH','2025-02-26 21:00:00.000',0,NULL,NULL),
('13df3a21-76d6-4b0c-a169-76303e61ea4a','fe1bf79f-2efb-488d-8554-0ec73016bf8c',NULL,'4 SANDALYE SANDALYEYİ BEN TESLİM ETTİM ','2025-10-03 12:00:00.000',0,NULL,NULL),
('1401afea-d5b8-4731-99f5-12d9863e9962','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL,'BAMBİ REFORM THERAPY HVZ BAZA 180x200','2025-09-03 03:05:57.000',1,NULL,'2025-09-03 08:34:08.302'),
('1403890b-ce7b-4c03-ae31-2b9f3b40dd11','23c2fb27-3d69-40e0-9027-0877538a4b71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye beyaz ','2025-06-24 21:12:50.000',6,NULL,NULL),
('140facd2-f55a-4a12-95ae-07ab47a00128','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('14154f1c-2788-4f7f-b6f1-b56e0a99f973','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','27542b9c-f586-4152-836b-5dedeaae0be2','ÖZEL MASA + SEHPA ','2025-09-23 14:12:04.000',0,NULL,'2025-10-16 12:30:33.133'),
('14157eee-b51b-4f54-bfe5-295228432847','3ace9aac-a197-4e9b-9f08-d07c0b7f938b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x180 masa üst tabla (ssh)','2025-05-14 08:59:31.386',1,NULL,NULL),
('141eb86b-6a27-4ef2-9554-ac0a117fe5e1','b9465ae1-c895-4625-887f-bd31a9dc994f','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-08-05 14:00:00.000',2,'2025-08-27 08:15:39.480','2025-08-08 11:39:24.732'),
('1423feab-b10f-49d3-afa8-3310640bcebc','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL,'KOLİLER','2025-07-28 21:00:00.000',0,NULL,NULL),
('143d151b-b558-4cdd-aa6d-149292132a3b','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f','0b1fc5a5-59ac-4a0e-8f03-89af8774df96','DECO BRAVO SOHO KOLTUK TAKIMI 3+3+1','2024-11-20 21:00:00.000',3,NULL,NULL),
('144ba1fb-01a2-470c-8696-3c2576397b46','91baf8ac-c499-4118-bb77-3c280cca0a2f','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','PİER SANDALYE ','2025-08-05 00:43:14.757',0,NULL,'2025-10-14 10:33:41.247'),
('1459d7e7-6dec-45b7-bbb4-412603f2559c','3dc5e146-3fe8-432e-96b4-cb8472b9343c','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','3+2+1 koltuk takımı','2025-06-30 21:00:00.000',3,NULL,NULL),
('145acb30-1c39-4fcb-b4a1-ded11d8b7586','6e979cb9-141a-43d7-a38c-362246b8f5a8','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-30 20:53:36.000',7,NULL,'2025-09-19 07:22:21.254'),
('145fbc2d-f2aa-4de5-8885-821f4b79c3dc','5e876e3f-c0f8-4334-a426-ff4493e61c54','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-08-13 19:40:21.000',3,NULL,'2025-08-21 10:50:25.621'),
('14694410-5bbd-4c16-aaf3-3218e9c86c9d','72028383-f354-4335-af98-094bc771c86d',NULL,'MOBİLYA','2024-05-29 09:23:42.905',0,NULL,NULL),
('148a8646-0bfd-4fcc-ab65-0b45431fcc16','48ff80ab-53c7-4a25-ba1e-303a3d7073d1','3dad3bde-f663-478c-ab8f-fcc03ea465e3','YATAK','2025-08-19 14:24:15.228',5,NULL,'2025-08-21 14:13:31.131'),
('148d30cf-a978-4a1a-a180-523a4124c946','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL,'MOBİLYA','2025-02-17 21:00:00.000',0,NULL,NULL),
('1499adf0-273b-4001-aaf5-3741d7cad731','835e4364-d826-4aea-9a85-7df6a6777f74','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x160 Msm 11 baskılı masa','2025-09-18 15:00:00.000',3,NULL,'2025-09-19 14:39:18.285'),
('149f93af-0c33-4ba8-aac3-51f8a7e10611','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL,'BAMBİ BİOSALT 160\'LIK BAŞLIK','2025-10-08 01:44:49.000',1,NULL,'2025-10-22 12:03:51.996'),
('14a2a5fe-cc61-42ec-a329-3fede175e6a3','2ab9bb8f-58c4-4826-94a1-bf5b458b034e','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','3 kutu sandalye','2025-03-21 11:00:44.211',3,'2025-05-07 16:51:51.193',NULL),
('14ad5bdb-7df0-4df9-8328-3ee2c7a3e6ae','edd341ae-d463-4dbb-b4ec-e8899cdb8433','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk','2025-02-28 12:30:00.000',4,NULL,NULL),
('14c5439d-b326-4a6c-aab5-d692d92d235f','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL,'MUTFAK MASA TK','2025-10-22 07:49:03.840',0,NULL,'2025-10-23 09:58:54.669'),
('14f83618-60e8-4433-af6b-4d52cc697880','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL,'SSH+KOLTUK TAKIMI','2024-12-06 21:00:00.000',0,NULL,NULL),
('14fb0987-4091-41ac-acc5-918b7d5ce9a3','56569bbe-2460-4ca9-903c-508e769e4a29',NULL,'Albessa baza','2025-10-01 13:06:20.897',0,NULL,'2025-10-03 09:31:08.952'),
('150c9863-b37f-40fe-af3f-a5e800c4d9c0','82d80e65-06fc-4494-86fe-0aa63b37337e','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-29 12:00:00.000',3,NULL,'2025-08-29 09:22:36.813'),
('150cc542-c756-439f-8669-7c8ff8a7e4a4','88e3316c-4816-449f-a946-ceba121ee2bb',NULL,'SSH','2024-09-28 15:31:44.726',0,NULL,NULL),
('1510fb1c-ac60-443b-8470-17f2857b0558','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','koltuk takımı ve yatağı','2025-04-09 15:50:26.962',4,NULL,NULL),
('151b16b6-6420-4fd8-8cb8-814361edd1cb','def7f2ab-5847-442b-86e4-71e9c7cd2dcc','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Masa ve 2 sehpa','2025-08-18 21:00:00.000',3,'2025-09-03 08:45:40.557','2025-08-20 15:54:46.213'),
('151b19d9-92ed-4dd5-aef9-d976e3d09152','2791411b-f352-4706-ac7e-e1f3dcb20fa4','51da69a0-2362-4297-a67b-cc4c6cf29722','BOHEM KOLTUK TAKIMI ','2025-05-29 21:10:23.000',0,NULL,NULL),
('151c5a73-b234-4d81-a36d-d64f6372c980','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL,'Mobilya ','2024-09-10 12:27:59.244',0,NULL,NULL),
('153305cd-cd8b-4ae8-acad-0140d85e4d5d','7ed51e97-f73a-473a-bca0-1959c9e5c202',NULL,'PERLA SANDALYE  6 ADET ','2025-10-29 23:53:00.000',0,NULL,'2025-10-23 08:23:03.814'),
('153e48ad-3036-4b9d-b080-ca33f5500609','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL,'MOBİLYA','2024-07-02 08:13:19.789',0,NULL,NULL),
('154621b1-ffa6-4119-be67-ecb1d2de0d10','fd58437e-911f-4917-866c-db10175210b3',NULL,'sandalye','2025-02-20 08:37:19.134',3,NULL,NULL),
('1568016a-7136-4521-a615-ca7531c293bb','8a5420fd-ce6a-457f-b63e-64e4ffb57c77',NULL,'LOGİSTİGE BIRAKILDI','2025-03-09 21:00:00.000',0,NULL,NULL),
('1575d82c-3b40-4cd5-9eff-caa45101c1d2','643316ee-78c8-474d-b4d1-843fadca34cb','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-10-21 15:00:00.000',3,NULL,'2025-10-22 10:00:47.457'),
('15838be9-2a38-4e80-b613-df9538785c9f','635836b6-8a00-4f08-aa34-ecc10b10490c','288d11ec-0edb-4692-ad9d-f391ae6bf0fd','masa ve sehpa','2025-05-13 13:48:01.080',3,NULL,NULL),
('158455d3-2130-4d98-9534-cb36e6c15df9','f67e7508-1afa-4901-b396-faae504c1726',NULL,'Mobilya ','2024-10-09 08:22:09.153',0,NULL,NULL),
('15848870-75a0-4294-9752-8c0da1d7da4a','61dd2e23-34d6-44a9-9516-6e9c953b281e',NULL,'KOLTUK-SEHPA','2024-03-16 08:12:56.539',0,NULL,NULL),
('159c73ed-083b-4d67-98ca-6adcfc554962','b21c6f76-2185-4cbb-ae48-70494372e886',NULL,'Baza başlık','2025-09-18 14:39:15.870',0,NULL,'2025-10-08 15:10:59.742'),
('15b6e708-f3d2-4929-8327-d1fc263bd0e4','042f3c72-dff0-4f05-808d-d871ab750191','fe0a9e17-e52a-465c-af84-8dd1932db99a','Sandalye','2025-08-15 10:40:53.000',0,NULL,'2025-08-15 10:26:32.593'),
('15c24f0b-669e-4030-a60a-786363379a1f','6e70fec4-ae28-4ffb-9ee0-160b7b77935f','a83cef52-4388-4d39-b97b-ec517ec35be4','Köşe Koltuk','2025-02-06 12:00:00.000',4,NULL,NULL),
('15c51264-1610-44fe-b2b3-1798f688353e','e343cdb8-530a-4273-b51b-de80339b581f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye siyah','2025-06-16 21:15:02.000',4,NULL,NULL),
('15d74154-5fd4-4173-9e76-f45c4027e0c0','86489c05-a1b1-45e7-87e0-efdf57f77ac9','8b268fdf-cc88-488a-b15b-ed87aeb4e594','SSH PARÇALAR','2025-05-25 21:00:00.000',3,NULL,NULL),
('15ff9118-18a9-4a0a-a3cc-31c9c550751c','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL,'Koltuk takımı 3-3-1','2024-11-20 21:00:00.000',3,NULL,NULL),
('163cdf6f-a5e9-47e6-9ea0-4ea02a32d244','2f96bf63-9b6a-4629-9bf1-1f428f44e517','920e0362-203e-45cc-b64f-c87ea9ad1783','MARVEL KOLTUK TAKIMI','2025-01-29 10:00:00.000',3,NULL,NULL),
('165f39fe-fa82-4afa-96c9-52f09a4b6d7c','670e78fe-1680-439d-9f10-3a16b0fdf541','e89ec49b-2295-4385-a799-c96668143041','şifonyer','2025-01-03 09:12:20.971',1,'2025-01-21 19:54:11.976',NULL),
('167dd835-3a5c-47f0-9794-de787a35b01f','6dce8b90-0bb7-4578-ad31-082486aad8f2','e2aa2442-8a91-4124-99c5-e56e6058e5e9','GARDEROBE DİOR MASA','2025-08-28 02:03:54.000',1,NULL,'2025-09-08 12:00:07.860'),
('169583e5-aae1-401d-bbeb-1e1ae478298c','6b308538-0db0-403f-a33f-bc50bf381bb6','8065d17a-ef01-4080-8c14-b1a6045b147e','Adel Seramik Masa  220*110cm  fasülye orta sehpa  120*60 cm ','2025-08-28 22:34:00.000',0,NULL,'2025-09-08 12:31:40.992'),
('16bf292d-cc10-4c60-8e1b-eb5020fba975','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL,'Sandalye','2025-04-13 21:00:00.000',8,'2025-04-14 09:16:53.695',NULL),
('16ee37cc-f44c-4652-a3d9-37ff204f5538','967b9ee1-7adb-4c9b-9386-f8200b05df01',NULL,'KÖŞE TAKIMI','2024-05-04 08:01:46.536',0,NULL,NULL),
('1702a5be-de2b-450a-b7be-8667b16af22f','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL,'HALI','2024-12-05 16:12:56.240',0,NULL,NULL),
('17212552-5dca-489a-b6a0-803d13542c41','9944adb4-543d-4384-9dd3-6faf5055bb85','0f300a3b-b3d6-4b60-924b-aa70cd54141e','1 AD. SSNDALYE VE RUTUŞ BOYASI','2025-02-04 21:00:00.000',0,NULL,NULL),
('1732e8c2-bcae-4af1-9502-01cb2c0bb392','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL,'NOVİTA LİZBON BERJER','2024-11-25 15:07:49.281',1,NULL,NULL),
('173bf365-8e09-4aa5-90c7-1bdda2c188b1','b87e1d8e-8fc1-4a22-a789-515797619936','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-25 03:00:00.000',5,NULL,'2025-09-30 07:21:20.565'),
('173da7e9-9f08-4f80-bd79-f624a6af761d','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL,'Karyola','2025-06-19 09:00:00.000',9,NULL,NULL),
('174ddb1a-dcea-48ee-ba86-7abe9420ea67','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL,'Seramik sehpa','2025-07-17 07:46:53.004',1,NULL,'2025-07-21 13:03:43.264'),
('1754be32-bd97-48c0-9a32-09a8d9667b9c','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('17628264-1528-4825-a23d-e787296a2c4d','0d55a789-9635-407b-8c56-f61ca0500289','ea9d3df7-6893-4d14-8238-4ac854d79273','köşe ','2025-04-30 09:51:49.000',4,NULL,NULL),
('177294d8-4a20-4344-9332-bcb523376954','23c2fb27-3d69-40e0-9027-0877538a4b71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x130 cm beyaz milas orta sehpa','2025-06-24 21:12:28.000',2,NULL,NULL),
('177452de-a019-4a63-8749-61daa619034c','9f748f02-e185-45e0-9d24-ee921761490f',NULL,'PALET VE 2 YATAK','2024-05-10 06:31:50.429',0,NULL,NULL),
('177be132-8ef4-4489-bb59-2794e3f4e826','9fe64691-2031-49a6-a917-f5af8aa63a82','f4b725ec-de83-43a0-8adf-cd7f36f59b78','STOCKHOLM KOLTUK 3+3+1','2025-08-27 02:36:15.000',0,NULL,'2025-08-28 12:58:21.717'),
('1780edf3-a9ab-4ef2-8624-0eec8c4453c0','9fe64691-2031-49a6-a917-f5af8aa63a82','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM DOLAP KOMODİN ŞİFONYER','2025-08-18 09:00:00.000',0,NULL,'2025-08-28 12:58:21.717'),
('17868a47-2f8b-42c0-9e68-ed7885930bc4','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL,'2 ADET ORTA SEHPA','2025-05-21 21:55:14.000',4,NULL,NULL),
('17961e89-0ed4-4a9f-ae7e-3a944e1697e0','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL,'mermer masa','2025-08-05 21:00:00.000',1,NULL,'2025-08-06 11:38:33.340'),
('17a26aef-3edc-4baa-9cc1-e31a937771e1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL,'DENİZ 3+3+1+1','2024-11-29 14:00:00.000',4,'2025-01-21 19:54:41.311',NULL),
('17cdd73b-4c6e-416a-9b41-87687de7c838','77ae1565-c04e-4a61-91bb-c10a993fdc5b','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PİER AYNA ','2025-09-10 16:58:04.000',0,NULL,'2025-09-19 11:28:54.869'),
('17d876d0-c0da-44dd-b1ce-96a58d3ab218','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL,'PETRA ÜNİTE','2025-04-29 21:43:31.000',0,NULL,NULL),
('18014a19-7e61-4998-9ca3-020a7d8a9ac3','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL,'Traverten tv ünitesi ','2025-01-14 08:58:15.619',2,NULL,NULL),
('18182670-9b6a-4987-802a-7e1c83c732bc','bf6d827f-7ff6-4e1e-948c-99dab63704e4','45dcc859-be53-4cab-8472-2f27cf4ff8d4','Sandelye ','2025-10-17 11:35:34.000',3,NULL,'2025-10-20 07:38:21.631'),
('18266e4b-ba3b-4519-8abc-b90a2753c46a','eb029e46-e69e-4bea-b717-f1c575aa7ca7','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-17 04:02:20.844',7,NULL,'2025-10-03 13:01:22.096'),
('183add61-096d-44b5-b9fa-d47003d8af59','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL,'OFİS MOBİLYASI','2024-09-05 15:56:42.838',0,NULL,NULL),
('1841d5a2-cb6e-457a-aa34-68a1f7f98613','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL,'KÖŞE KOLTUK','2024-10-17 12:29:39.037',0,NULL,NULL),
('185d3efe-5e2b-4bde-a9de-128e8f0a33e6','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','da081c52-d810-473b-87d0-2d031d14f75c','1 AD. BRONZE ADA ŞİFONYER','2025-09-16 04:59:05.000',0,NULL,'2025-09-19 11:49:55.086'),
('1868aea0-f631-4deb-85f5-8aa25773bef0','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('186c3fe1-8981-42c5-824f-091f5394d4a8','a19d66bb-d207-4329-bba8-b2b0c50bd4f6','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa + sehpa','2025-08-28 12:00:35.000',4,NULL,'2025-09-01 11:47:42.500'),
('1884a3ce-0014-4e70-adcb-69bbeb0ff6f6','29aaa54d-b47b-4224-b91b-303cd6be157e','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN SEHPA','2025-04-17 15:20:42.758',1,NULL,NULL),
('1892069c-11f7-4d29-83b8-c0202a08220c','0d746c5c-f194-4ed9-b71a-bf56f53af841','b22273fb-b00f-4afc-b708-2437f60ec61e','TV ÜNİTESİ','2025-09-03 21:24:28.000',0,NULL,'2025-09-11 11:07:34.965'),
('1892621b-50fa-4162-bc39-c09c3947b266','d534081c-07c5-470c-bed4-f699f4319aa1',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('189abf96-e9a7-40c5-8f3b-f18d6182c1ae','83b46886-5368-4d6c-8779-63f4585588f3',NULL,'PALETLER','2024-12-27 21:00:00.000',0,NULL,NULL),
('189b9e28-3fea-4905-9c4f-022b3f29043d','994456e0-b759-4b05-827f-74c05ad02194','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe koltuk','2025-09-29 05:41:48.287',5,NULL,'2025-10-06 09:23:40.745'),
('18e000a5-38d8-4f59-8d75-1b355bc090f2','37d103ae-cd34-456d-bf73-1ddb563d8a20',NULL,'KOLİ','2025-10-21 15:00:00.000',12,NULL,NULL),
('18f619ca-618c-4101-9b2a-2b9e3114395a','2fb92d16-b307-4896-974c-b96cb9542bc6','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA SEHPA ','2025-08-17 16:15:16.000',4,NULL,'2025-10-02 12:14:38.963'),
('18ff6e80-17c4-4d04-8763-3c38edeb9f2e','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-20 15:00:00.000',3,NULL,'2025-08-25 12:18:56.189'),
('1916ae7f-80e5-4993-b31a-1869332c7d71','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL,'Yatak karyola','2025-02-13 15:32:05.855',0,NULL,NULL),
('193cede3-1284-463e-9fc9-0a293facf8ab','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL,'LUJO GENÇ ODASI','2025-02-23 21:00:00.000',0,NULL,NULL),
('193ecb2d-124e-4d60-bf94-e2e26992e689','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL,'PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL VE PAKKO EVDELÜX ALFA PİYON MODÜL','2025-09-09 15:00:00.000',4,NULL,'2025-09-10 12:16:15.889'),
('193f8529-9851-484d-b59f-72470c97132f','6de04c45-fcae-42a3-aebf-5b140d42d81f','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-04-24 07:46:39.246',5,NULL,NULL),
('194c43e5-97d7-4321-8a7e-7758ae0d89ed','63bcaab6-1f45-4304-b9b2-e21172f2f74b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 milas galaxy masa','2025-09-01 12:00:00.000',3,NULL,'2025-08-30 10:47:32.801'),
('19515d6a-9050-47c6-96a9-cd430edba1b6','687d4dda-737c-4d30-8593-e81992c2a693','b9e05997-457d-40a3-b169-c07dc8786763','BOHEM KÖŞE KOLTUK ','2025-09-09 12:00:00.000',0,NULL,'2025-09-26 08:23:39.535'),
('1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL,'Mobilya ','2025-05-25 21:00:00.000',17,NULL,NULL),
('1977a173-f6c0-45d1-ba5d-5729f658054a','87c55df7-f40e-45d7-a3d5-773c1c5084ea','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x180-220 açılır masa ','2025-07-24 21:00:00.000',3,NULL,'2025-07-24 14:06:04.065'),
('197b43de-1f57-4e3a-b18a-a54d1c950856','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL,'C SEHPA','2025-04-17 15:30:01.231',2,NULL,NULL),
('19c23553-d606-4be4-a362-65912f3179a8','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL,'Star köşe','2025-03-26 21:00:00.000',5,NULL,NULL),
('19c6a32c-4384-451a-aaa5-dfc264ab827b','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL,'Yemek Odası','2025-07-08 06:44:54.000',8,NULL,NULL),
('19d55e9b-f9d2-4d64-9532-05620ae130e8','ff996f87-3846-4d01-9b30-2f9d65c79763','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm traverten sehpa','2025-08-01 14:41:20.497',2,NULL,'2025-08-04 08:41:37.871'),
('19db5990-08cc-490d-a0ad-c3f074f46970','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL,'KOLİLER','2024-06-08 07:29:18.336',0,NULL,NULL),
('19dcf78c-7561-48e7-9cd9-87c2f1416672','06af560c-552f-4ff9-a194-96cfbb5bfe91','67c34dc2-4657-4323-8fc0-4ff05ed31067','masa -sandalye-konsol-ortasehpa','2025-04-13 21:52:15.000',999,NULL,NULL),
('19dfa4b0-04e4-4abe-b71f-85b70cbef06e','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL,'TRAVERTEN MASA','2024-12-27 13:38:37.335',3,NULL,NULL),
('19ee4ad6-2109-4cda-a637-9c7a0d40dfd7','3f82ae91-19cb-4663-bb33-377d660eea84',NULL,'KOLTUK','2024-05-10 06:23:05.686',0,NULL,NULL),
('19f8d788-357e-4bae-a0cc-714638359cc7','9103cb0e-e686-4e54-ab7a-664a063bc56c','bc1b9fd7-95d7-4d5b-a84e-684140acc414','virjin bazalı karyola-komidinler-şifonyer','2025-08-26 04:00:00.000',9999,NULL,'2025-09-10 11:09:33.915'),
('1a0092aa-0e7f-4ae1-a9af-04b09f018c3e','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL,'KÖŞE TAKIMI','2025-01-29 21:31:32.000',1,NULL,NULL),
('1a031080-df55-4ad4-b405-0eda0f569cfe','83bacbe4-57a3-4420-afeb-27d135cfb375','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-08-21 04:49:39.807',3,NULL,'2025-08-27 14:36:28.587'),
('1a05767f-a040-4f3b-bddc-0c66c707f27f','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'TV ALT BLOK','2025-10-10 10:48:47.632',0,NULL,NULL),
('1a0ccb48-0abc-46b0-b34e-fac7901a5459','084daa7f-3636-427c-9862-03f8214bc1f5',NULL,'KOLTUK TAKIMI','2024-05-29 09:38:27.072',0,NULL,NULL),
('1a33dee0-770c-42ca-b23f-f3750f630a74','7714cc95-f8de-4560-8240-8168befc09b9','d8852582-d508-498a-b753-7d20cd810d34','Koltuk','2024-11-22 06:00:00.000',5,NULL,NULL),
('1a5517be-4812-40af-afc6-9e5990a9748b','2b6577a2-c3ad-4aca-8b8b-446c848207f1','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-08-11 11:39:35.000',6,NULL,'2025-08-11 12:47:54.221'),
('1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be','2e84e42f-b241-4285-8be1-464db22053be','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-21 20:18:07.000',0,NULL,'2025-08-30 15:33:04.344'),
('1a6ff970-2960-4354-8940-33367fa81a4f','7d5531cd-fb21-4284-9145-817c08eee250','44c404b3-a618-4af5-bdfb-ad381f049053','koltuk takımı 3+3+1','2025-10-24 12:00:00.000',0,NULL,'2025-10-16 08:17:49.131'),
('1a865eff-de9e-4c81-8ad4-8c96ddfa18ff','2e7c73f7-d738-4447-86bd-2c43c4f79b02','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-07-24 13:00:37.000',4,NULL,'2025-07-24 07:57:00.869'),
('1a929455-0b70-45da-b39a-75cee0e92908','548ed737-ff1e-4d15-8e34-d66ac4314840','754dc58e-48a9-4cf6-bcec-82201990299e','karyola takımı','2025-07-16 13:00:37.000',4,NULL,'2025-07-17 08:04:39.952'),
('1a93f0e7-35b1-4d7d-8e2c-3a74dc8ac1d8','7ac45678-811d-4aea-b89d-0ec5dbedd607','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-17 09:00:00.000',5,NULL,'2025-10-14 14:31:43.006'),
('1a9c727e-5c65-4a99-b25e-b0d3ffdd2826','c3124b77-c71e-488a-b104-3d05e5b06ca6','bdf32869-5506-4208-95e2-820fe960d600','Köşe koltuk','2025-09-10 06:00:00.000',0,NULL,'2025-09-22 08:54:30.763'),
('1a9dfce0-e85f-42f7-8b4c-64b52dbced4e','af66e0b1-a72e-4c45-9e91-18e38e131f34','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-07-21 18:30:30.785',3,'2025-08-24 10:52:45.619','2025-07-22 14:07:43.657'),
('1ab745bc-cedc-4993-8852-79017b1ed8a3','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL,'KOLTUK TAKIMI SANDALYE','2024-03-30 09:47:18.786',0,NULL,NULL),
('1ad6d0d7-d80c-49ae-83a1-8f1779ed2429','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL,'KING PLATİN BAZA SET 180X200','2025-09-14 15:00:00.000',0,NULL,'2025-09-15 16:43:49.620'),
('1adddb6e-1797-44e9-a422-6da4f5bf8e9e','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL,'paris yatak odası takımı','2025-02-04 21:00:00.000',23,NULL,NULL),
('1adfa047-2b0e-42ef-824c-0c7a9252baaf','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL,'MOBİLYA','2024-07-02 11:58:30.176',0,NULL,NULL),
('1af1707e-6f50-4bfd-9d87-6154e16f9966','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'ZİGON SEHPA','2025-10-10 06:02:01.123',0,'2025-10-21 23:34:10.596','2025-10-15 09:06:41.527'),
('1afbd008-607f-4bd5-922a-2703eef2c0c3','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'genç odası','2025-05-30 05:59:26.966',0,NULL,NULL),
('1b220ec0-b64e-4a76-82f4-db2a427b2a50','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'TÜRKMEN DEFNE KOLTUK TAKIMI 3+3+1+1','2025-02-18 21:28:04.000',1,NULL,NULL),
('1b378fd6-fc53-481f-ab7b-e597cb46b15c','5f8e022a-f026-498f-bbc5-f04ab0863363','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','3 kutu sandalye','2025-07-01 12:57:20.800',3,NULL,NULL),
('1b4a45d4-b5b8-418a-a43f-9acc0a3895ff','4201089d-4123-423c-809e-645e609e8e0a',NULL,'MOBİLYA','2024-05-29 09:27:59.541',0,NULL,NULL),
('1b54b52d-74d2-4b3c-bd64-5cd7ddf73cec','cea81038-a341-47c6-8f8b-905346a6e5b0','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-24 07:37:15.771',3,NULL,'2025-10-06 11:23:37.282'),
('1b57ad51-327c-408f-87da-e1a22f3c872d','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL,'Koyu ceviz sehpa ','2024-12-25 13:41:10.582',2,NULL,NULL),
('1b72736d-38b2-4d16-8ad9-6c6e005c6913','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL,'PALET','2025-06-29 21:00:00.000',0,NULL,NULL),
('1b77dc1d-c5b1-4ecb-9f88-6aa896bd187f','b89cd91f-460c-462f-a284-8d6b2a01dd71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten tekli sehpa 45 cm','2025-02-26 10:49:59.000',2,NULL,NULL),
('1b8f328c-9952-41e3-aa69-f843fde86e4a','77ae1565-c04e-4a61-91bb-c10a993fdc5b','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE ORTA + YAN SEHPA ','2025-09-07 16:57:24.753',0,NULL,'2025-09-19 11:28:54.869'),
('1b975dd0-98b9-4adb-88bc-962d71cc7b22','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL,'MOBİLYA ','2025-03-11 21:00:00.000',0,NULL,NULL),
('1b9d02bb-27ab-47eb-bb6e-a6a04884328d','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL,'SSH SIRT MİNDERİ','2025-05-05 21:00:00.000',0,NULL,NULL),
('1bb5f42b-00cd-4103-97bd-b2cd24afaea0','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-06-27 12:54:36.000',5,NULL,NULL),
('1bc30bdc-dbe8-46e6-b9da-ced1339173a8','1e88a712-77d4-4c0d-9244-0239da63195b','da95f6ab-9177-49c8-b729-1fcee7ea77cb','MASA VE SEHPA AYAK','2025-02-03 21:01:26.000',3,'2025-02-05 22:19:31.296',NULL),
('1be34cec-f9da-4977-8cc5-2926d39d8ac5','936ebbaf-6f47-4069-b653-db28ba74c6b6','0f300a3b-b3d6-4b60-924b-aa70cd54141e','YEMEK ODASI-ÜNİTE- KOLTUK TK-3 SET-ZİGON-KOMİDİN-KENDİ MALZEMELERİ HALI VS','2025-01-08 21:00:00.000',0,NULL,NULL),
('1bea8751-eb0a-42d2-8f17-09d84a24d581','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL,'MİLANO MASA ÜSTÜ','2025-07-30 21:00:00.000',1,NULL,'2025-07-31 14:55:51.304'),
('1bf9575e-5b1a-4e14-ba69-6733f80eb41b','1943ad09-88d5-4276-8d90-1798cf356edb','7582128f-7119-48f4-b125-e6b8bfb84dc3','SANDALYE','2025-03-17 21:00:00.000',7,NULL,NULL),
('1c0e112e-2971-47d5-898d-1abeaee2f07c','01c7f991-854b-4e63-a448-14857c24f6f1',NULL,'VİRAL YATAK ODASI','2025-03-03 21:00:00.000',0,NULL,NULL),
('1c203751-30ea-407a-aee5-48cf233275cf','d7e6d100-83c7-4980-9636-2ea6521598da',NULL,'BROŞÜR SABUNLUK','2024-05-04 10:08:28.262',0,NULL,NULL),
('1c3805e9-6884-405d-bb40-3d257f12ef95','0689343a-01c3-4235-b709-f5f67e87d641','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-07-30 09:00:00.000',5,NULL,'2025-08-14 12:01:08.590'),
('1c425bef-2f47-4788-87c3-d0b92aa9cb40','c48a406d-f6cc-43e5-ab64-0494c3458163','7ef18eb6-fc54-4770-be95-51abea3c644d','Sandalye','2025-03-18 21:00:07.000',2,NULL,NULL),
('1c55b4e5-54ce-4848-a88a-545a632bcd68','175392bb-7213-43c6-b3da-6b01f5de3b51',NULL,'Mobilya','2024-08-19 15:32:51.646',0,NULL,NULL),
('1c781ad0-971b-440d-9ba5-b64cd40eced2','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL,'SSH','2024-05-29 08:39:55.134',0,NULL,NULL),
('1c793fb3-33f6-4c35-915b-01c9060252dd','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND ŞİFONYER SAĞ VE SOL KAPAĞI','2024-12-20 07:44:43.333',2,NULL,NULL),
('1ca8cf8a-cb77-4d12-8753-3efe7142a30a','35b607a9-05e1-4a39-8d5e-e9d252bd8443','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-09-22 23:00:41.000',2,NULL,'2025-09-24 14:33:04.375'),
('1cb85858-5f86-4be0-b9e7-c06f3f4a2a9e','6e979cb9-141a-43d7-a38c-362246b8f5a8','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa sehpa','2025-09-17 03:28:52.000',4,NULL,'2025-09-19 07:22:21.255'),
('1cc0aa13-016d-422e-af4e-742c14842a07','7a1c035d-4dfb-480e-bc9c-b1a62adfa157','940c6390-4082-4fe5-aeaa-06d180147a7b','SANDALYE','2025-10-07 10:00:00.000',3,NULL,'2025-10-13 12:49:43.302'),
('1cce6802-65dc-4d50-961f-a34e4211b9d0','c8832652-771d-469e-b661-4fd13d628789',NULL,'MOBİLYA','2024-12-27 21:00:00.000',0,NULL,NULL),
('1d002e0e-a36f-4d75-b950-633af2536065','6f819014-9aee-49bd-a372-9beb415e27cd','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-03-24 21:00:00.000',3,'2025-07-24 10:25:49.945',NULL),
('1d063093-76ef-408d-ac4e-9b14c6ea3828','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL,'KÖŞE KOLTUK ','2025-01-26 21:00:00.000',0,NULL,NULL),
('1d0eb855-07f2-4c64-93d6-62c6de7fce20','ba457943-412f-43ae-a291-8f5550a492f1',NULL,'DENİZ KOLTUK TAKIMI','2025-06-18 21:00:00.000',4,NULL,NULL),
('1d11c681-3983-42da-b02d-56cdbb17ad76','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL,'6 ADET SANDALYE / BEKASAN SANDALYE','2024-11-06 10:00:59.000',3,NULL,NULL),
('1d2ec7e2-f735-46a1-96be-3994af90aaac','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL,'Mobilya','2025-09-14 09:00:00.000',0,NULL,NULL),
('1d30feca-cb1e-4e27-9d40-887bbe1c1494','3f10ddd5-0494-4a63-8c1b-40acc9372609','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-07-24 10:55:42.976',6,NULL,'2025-07-24 14:01:44.263'),
('1d36a2fc-8ed5-421d-9fa1-7cf537842324','b3ae875f-7a87-471f-8393-3afab90f9796','a33a4b24-0961-4436-ae17-15a7d5334110','koltuk','2024-11-26 07:07:22.276',1,NULL,NULL),
('1d4ca092-dba9-43de-817d-e927b71167f3','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL,'DELUXE YATAK 160X200','2025-04-29 21:37:58.000',0,NULL,NULL),
('1d4d748c-8215-4966-9c01-ecb14e0334f4','af1de73f-c335-48ff-a271-54ebfe04fc91','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3pk ssh','2025-01-21 21:00:00.000',3,NULL,NULL),
('1d561668-0f20-4753-86b3-33f1b10746d3','3f10ddd5-0494-4a63-8c1b-40acc9372609','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Traverten masa ','2025-07-23 21:00:00.000',3,NULL,'2025-07-24 14:01:44.263'),
('1d5849c2-ba3d-4d85-bba1-ba70c209937d','bba121d9-edb3-4b4b-9645-cb61aea83210',NULL,'NEW RELAX BAZA SETİ 160LIK 1 TAKIM','2025-01-28 21:00:00.000',10,NULL,NULL),
('1d6ec1b3-cde4-421f-ac65-dbcde85085cb','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL,'YATAK','2024-08-31 12:34:26.430',0,NULL,NULL),
('1d79ff49-df16-4b4f-a525-50167665ac1d','a53ce358-8681-4bd7-86f3-ca3347ae0364','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Tv Ünite','2025-01-30 13:00:50.858',1,NULL,NULL),
('1d839b45-f769-4613-b6b1-61fee06b9ca8','d448143d-3fcc-4fc3-8d37-30d1af2dec9e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','Berjer','2025-03-20 21:50:07.000',1,NULL,NULL),
('1d9972b9-1383-4b2a-a7f9-2e2b0b5a33e4','f0c7a240-326d-492c-88a5-bd8e007daa69','4ee1e344-a27f-4e11-b6f0-254b520be2de','Seramik masa ve sehpa takımı','2025-09-25 22:00:00.000',3,NULL,'2025-09-26 11:18:19.730'),
('1dadf755-0787-4b4e-9cfc-25598d9205d0','dba83242-e0e5-4632-86da-4f274ac9d9bc','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Sehpa ','2025-01-17 19:36:25.577',2,NULL,NULL),
('1dca511b-afa3-445b-81b6-a7d2a5f0e746','bf953636-9909-460f-8244-8ec3b177251f',NULL,'Karyola+döşek+2 adet komodin','2025-04-07 21:00:00.000',10,'2025-05-07 16:52:08.511',NULL),
('1dcff831-1200-4173-a805-7e81be8a8855','59340ffb-ba9b-4386-a0a4-686fcf54115b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 çap sehpa','2025-09-08 00:04:53.000',2,NULL,'2025-09-12 08:18:11.636'),
('1dd1c08b-81d1-4c12-a18a-1171b04b0808','6d4039b6-c00e-459a-95f4-bdff009aedea','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-03-20 21:00:00.000',0,'2025-03-24 08:34:13.443',NULL),
('1dd39070-80ae-4ea2-b6be-b5e999d7884e','741ca2d5-ef09-4582-aa3d-7a8f747bfc42','d00fcabb-1fa6-406e-975a-645a02949630','YEMEK ODASI','2025-08-01 13:15:09.480',0,NULL,'2025-08-01 13:22:06.987'),
('1dda97ac-51c1-4b89-abe1-67ed131b4e9f','ee442903-bcf3-41c3-8a85-9a99435f8b6b','51da69a0-2362-4297-a67b-cc4c6cf29722','MERLİN KOLTUK TAKIMI','2025-05-25 12:14:51.000',0,NULL,NULL),
('1ddbaf80-79d3-41fa-a736-2a7931f1126f','69cd3737-18d9-4403-b086-38131b718d3b','e7220662-73b8-46e4-9f5d-7e977cc23448','masa-orta sehpa','2025-11-06 21:00:00.000',5,NULL,NULL),
('1de452a2-704c-42bf-9fbe-6706949cbd51','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL,'MOBİLYA','2024-11-28 21:00:00.000',0,NULL,NULL),
('1dee02e9-6cd5-4591-8aab-b2e2650429fe','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('1dff9484-7b74-4dd3-bde2-e304e871a006','f9c61776-accb-469f-88e4-b551ad871fe8',NULL,'Mobilya','2024-08-20 14:23:30.786',0,NULL,NULL),
('1e059cc6-2555-406d-9a8c-a563f150b28d','6dba3758-1465-4641-b00e-aa374ccc812b','940c6390-4082-4fe5-aeaa-06d180147a7b','SEHPA','2025-11-06 09:57:53.000',1,NULL,NULL),
('1e0e2292-bc2c-4448-980e-47ca8452bf33','3ace9aac-a197-4e9b-9f08-d07c0b7f938b','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye (ssh)','2025-05-13 21:00:00.000',6,NULL,NULL),
('1e130a8e-33e6-470c-b071-f5dc107736ab','34dc4506-d1e6-469c-93c4-450d31fe5fea','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-04-17 21:00:00.000',8,NULL,NULL),
('1e2311a0-6cac-4263-ad4b-df8b85b9fe7a','9b0fdc03-2303-4892-bf4d-0d91b19ec321','bd4e5a48-eea2-4ff2-9867-3f7c821bd4a1','tv ünütesi','2024-11-14 19:33:48.111',1,'2024-11-15 11:57:42.860',NULL),
('1e3387e0-d504-452c-a710-5a45b72c57f8','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL,'LENA MASA SANDALYE 3 PK','2025-01-29 08:03:29.195',0,NULL,NULL),
('1e41dfe5-a6e8-4899-a466-b4448b9503a2','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL,'başlık','2025-07-09 13:23:04.775',0,NULL,NULL),
('1e93bb05-0346-452a-9f28-69769dc6bc28','b06c319e-439b-4418-a1a2-2e22a78014a8',NULL,'DEMİR KAPILAR','2024-03-16 08:18:31.784',0,NULL,NULL),
('1ea964d7-2e9b-469f-bd3d-af7e4d9f0853','8afa44a9-611f-49db-a99e-d5e01b5689f2','986ea798-92fc-489e-a2a1-14fdd3a746fc','3+3+1 koltuk takımı','2025-09-09 06:00:00.000',0,NULL,'2025-09-12 11:26:47.876'),
('1ec9c565-abc8-40c0-af13-1fc7f53b4a71','ffbb8f40-ae6c-4f70-9633-049e3b132e57','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','6 ADET SANDALYE AYAĞI','2025-04-18 21:00:00.000',1,NULL,NULL),
('1ecc5768-b507-40f7-a0d2-f557b0a01e35','0afc84bf-0fec-469c-b4e4-09a7be452c9c','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe','2025-04-23 21:00:00.000',5,NULL,NULL),
('1ee10629-f1ed-4f00-b3e7-b0eabc56a71b','197eebba-bc46-492a-86c8-87638b86150d',NULL,'GENOVA KOLTUK TAKIMI','2025-02-17 21:00:00.000',4,NULL,NULL),
('1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539','e221f07b-ec1d-448a-801d-7d5296e3b735',NULL,'SERAMİK','2024-08-20 15:06:21.825',0,NULL,NULL),
('1ef8b91f-e8ea-475e-b299-b11ca4ae6186','ea220406-9a53-4462-8ddb-af10ce32ed5b','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA SEHPA','2025-07-21 13:00:00.000',5,NULL,'2025-07-21 12:37:03.971'),
('1efb8814-1560-4b9c-86ce-125d96c77b86','b03e4184-3ccd-452d-bdbf-3a4ddecfb868','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-06-16 21:18:42.774',3,'2025-08-05 12:59:25.236',NULL),
('1f226ba8-0087-4886-a39d-874a147a4378','e7b29836-18a7-4b80-a64c-61eeb5b079fe','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-07-20 21:00:00.000',3,NULL,'2025-07-22 11:43:05.380'),
('1f36ce1a-bab2-496c-b0c6-3376128b07f2','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL,'Traverten masa ','2025-02-12 21:00:00.000',1,'2025-02-27 06:56:54.978',NULL),
('1f388c89-3645-4f72-9cfb-ca1d6893010b','f0a5289b-f034-4540-b03b-9510ca71ec7a','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye','2024-12-28 20:03:05.317',3,NULL,NULL),
('1f47f4f7-d248-416a-a50f-29dc04cd5570','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL,'YATAK BAZA BAŞLIK','2024-03-23 07:18:54.524',0,NULL,NULL),
('1f5509c7-65f9-4d35-999a-3947d455485e','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871','ad75f318-fa1b-4b2b-8d80-f195a269eaa2','GOLF Berjer','2024-11-13 13:14:18.477',2,'2025-01-21 19:54:56.891',NULL),
('1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL,'SSH','2025-07-28 21:00:00.000',0,NULL,'2025-08-01 09:49:45.885'),
('1f88d51e-8d4e-4e6f-91be-d98044cd5087','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL,'Koltuk ','2025-05-11 21:00:00.000',0,NULL,NULL),
('1f8ed22c-646c-4405-8477-3cfc46f95401','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL,'Mobilya ','2024-10-24 08:57:17.969',4,NULL,NULL),
('1f9da85b-2a2a-408d-aa85-1cbd194ab93f','fc5c1bb8-c1d0-4065-b1a8-be81de217222','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye ','2025-07-24 09:01:36.820',3,'2025-09-01 10:25:22.280','2025-07-29 09:14:07.812'),
('1f9ee26d-ee30-4f8e-ba4f-8f1f3e46bd8e','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('1f9eee6f-5fa7-4185-91e2-eb9566d5d7f5','16715384-46fe-4d2a-88d8-8467cd5c6d5b','b4b527e9-c851-458f-9238-9049a66f2c90','TV ÜNİTESİ','2025-04-09 21:21:51.000',2,NULL,NULL),
('1f9f088c-b7f3-474f-8b52-75626504976e','1f667c31-0a45-4450-be98-281039258085',NULL,'Mobilya ','2024-10-24 09:35:46.166',0,NULL,NULL),
('1fa0d27f-c4dc-4c7f-b202-ba5d273805ee','6c005507-054f-4904-8f84-b0774ba70335',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('1fa4834f-6874-4d5a-80f2-1b8fe854abcb','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL,'2 adet masa ','2025-06-16 21:00:00.000',0,NULL,NULL),
('1fba091e-0fd2-499d-b5d6-6ee2a14e90ba','26dac25b-c3a4-48f3-a7c9-711fda2dbf20','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PİER KARYOLA + 2 KOMODİN ','2025-09-21 15:00:00.000',0,NULL,'2025-09-22 16:25:43.589'),
('1fd8e619-fda4-4a7c-b740-1071821a89a4','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a','b22273fb-b00f-4afc-b708-2437f60ec61e','kampanya köşe','2025-09-06 01:00:00.000',0,NULL,'2025-09-06 11:09:55.007'),
('1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1','a29f5d76-e07a-44c2-ae0c-d3be10092d5a','32145bc0-a96d-4e4b-8ffc-5207fa33019d','SANDALYESİ','2025-08-05 11:03:57.396',0,NULL,'2025-08-05 11:05:16.252'),
('1fe5a3c4-700c-4065-9fa2-a479e3a6c022','6325741c-0a89-4585-b7b0-b2afd9a2b77f','fd87365f-791b-4129-a329-2bbc5296e508','yemek masası','2025-06-05 21:00:00.000',0,NULL,NULL),
('1ff4ad35-e6a3-4c03-823f-a545fe383b9f','2b90a4bf-839a-4804-abdc-8987ed2eec85','f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','ayna','2025-09-11 04:02:00.000',0,NULL,'2025-09-11 11:01:09.850'),
('1fffa8ea-befc-4b74-98ce-8981bef002ea','ea1fd06d-6508-481d-96d9-862de4d05260',NULL,'Mobilya','2024-08-29 14:05:34.513',0,NULL,NULL),
('2022ec7e-3b20-4c57-99bb-9fd74367008e','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL,'BOHEM KOLTUK TK 3+3+1+1','2025-05-06 21:00:00.000',15,NULL,NULL),
('20258a0e-ffcd-40f0-ac30-ddc851f0dedb','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL,'KÖŞE TAKIMI','2025-08-21 18:00:00.000',0,NULL,NULL),
('2027d4e3-00a8-4050-97b9-4dcf16140122','a856c3b2-bd1c-47db-b02f-9127f2bb4d67','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-24 21:00:00.000',5,NULL,'2025-10-01 15:07:58.554'),
('2039ee35-f01e-4485-89fd-8576030c9477','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND ŞİFONYER ÜST TABLASI','2024-12-19 21:00:00.000',1,NULL,NULL),
('203c88d2-dc1c-4331-a546-9696fa664eba','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('20521e80-01b0-4ff5-b7df-f8e5e1b6d933','ead6dade-f350-443d-a16a-41863d612c7c',NULL,'KOLTUK TAKIMI','2024-03-30 09:29:54.590',0,NULL,NULL),
('20537384-b1b6-4420-8bec-9c3970109280','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','6 SANDALYE','2025-07-02 13:02:32.000',3,NULL,NULL),
('2062f856-d39a-46e8-8b06-8b267e9c1d32','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL,'Poşet','2024-08-17 11:09:59.137',0,NULL,NULL),
('20696390-b3e2-43c8-90b6-11b5dfa19690','40f4a8a2-0c08-45ca-b2a2-587b0f53b46f',NULL,'Travertin yemek masası ','2025-10-16 15:00:00.000',1,NULL,'2025-10-22 12:49:07.522'),
('209c7af2-fa23-4664-bca6-289740753354','be61ae08-268e-417d-9e86-940a675647f2','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','müşterinin kalan ürünleri','2025-09-07 15:00:00.000',0,NULL,'2025-09-09 08:52:42.083'),
('20a73c4e-790b-494f-b4a7-c61766021e4b','888c1a17-6ddc-4bc8-b1ab-b00d72942811','7706d8c9-a8e3-47b4-a873-3563fd58b344','1 ADET ÖZEL TASARIM KARYOLA','2025-10-06 12:00:00.000',10,NULL,'2025-10-09 08:47:31.115'),
('20aef7b6-2dd8-4316-8052-05ba29d6d6d3','f87bc653-3c5c-4043-891f-2ac7f87b388a','1e42b3b5-fb7c-4fd7-adfe-d6f396698005','yatak odası','2024-12-29 21:00:00.000',0,NULL,NULL),
('20caf6f2-000a-4437-a232-063502942439','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-06-18 21:42:21.000',6,NULL,NULL),
('20cecaac-3bc2-4fdd-b65c-a9a3cd17355e','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL,'PLATİN YATAK 180X200','2025-07-28 15:30:38.000',0,NULL,'2025-08-06 12:12:41.546'),
('20de256d-a63f-4ddc-9e1f-42653a455a81','bee81a54-df39-48a5-9fb3-63e75a6f2e1d','44c404b3-a618-4af5-bdfb-ad381f049053','ASHLEY 180 BAZALI KARYOLA','2025-10-14 21:04:44.152',0,NULL,'2025-10-22 11:25:10.053'),
('20df1553-f4f2-4fe1-971d-395f2623d3e2','45898089-0430-47fd-85a9-8108fa8d9a5e','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT BAR  SANDALYE SİYAH','2025-03-24 08:04:00.039',2,NULL,NULL),
('20e6d703-f38b-426f-9be6-8755c80d4f2b','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL,'TABELA','2025-08-06 21:00:00.000',0,NULL,NULL),
('20f24d72-3cfb-43b0-9073-f7bf755859fd','e8d23d8a-2637-4202-afea-6441ccee21d3','8606d226-cc7c-4998-946f-cf7c29587a15','yemek masası','2025-05-20 07:30:00.000',3,NULL,NULL),
('2119b19f-4e91-4e8c-bb33-a5039fa5d3d2','7e7dc595-616a-449b-82e5-63d04f63ca8f','3b6fa63c-5b6a-4502-998a-e848aaf7eee8','BONNY YEMEK ODASI','2025-03-14 22:53:44.000',0,NULL,NULL),
('211d8f56-4634-48c5-a67b-22e8e78dd20e','79c8efb8-c504-45ca-bec0-780372b87574',NULL,'ÇUVAL ','2025-01-14 21:00:00.000',0,NULL,NULL),
('211ec422-ff31-4a6d-8829-2e78be0611f7','613669b4-092d-41a5-971c-271dc4ad0bf1','c508b00d-a686-416e-ab4b-43fe49208cd0','BAZA BAŞLIK KOMİDİN ','2025-09-21 09:00:00.000',0,NULL,'2025-10-06 14:39:26.430'),
('2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL,'MOBİLYA','2024-05-11 08:49:14.649',0,NULL,NULL),
('212c72a4-86e1-4bd7-904c-39a78fc6c848','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL,'BALAT SANDALYE','2025-01-02 08:12:42.874',6,NULL,NULL),
('212dbaa7-c2c3-43c5-815b-138aed4d0833','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f','8b3fd660-7e02-4d1d-9bcd-406bdd25b872','Sandalye','2025-04-13 21:00:00.000',0,NULL,NULL),
('21367494-32c3-4002-be57-2904f816b438','0fd1883d-eec9-47b2-84ef-dcbefc9c3f77',NULL,'Cam ssh','2025-02-11 21:00:00.000',1,NULL,NULL),
('21434274-7eaf-4dfd-8965-01f28214476b','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL,'Beyaz milas masa 90x190','2025-03-05 21:00:00.000',3,NULL,NULL),
('21597819-379c-4b5b-9810-48af5d669d4b','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe -2 kanepe-orta sehpa','2024-11-26 21:00:00.000',7,NULL,NULL),
('215b7f43-1974-4003-9af2-0e2b300284d4','56c417cf-c265-4351-92f6-09fa93a1f112','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-08 23:00:00.000',5,NULL,'2025-10-10 07:26:49.642'),
('2173be11-c6d0-41b5-81d8-89c770354a7a','cb8ab28e-84c0-4246-b10d-ada59c224895','b762dc85-daa3-4f73-b637-11f8f17d6a55','ELİT KÖŞE TAKIMI ','2025-05-11 21:30:35.000',0,NULL,NULL),
('217455d9-4668-4753-ad89-562e50f0bc65','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL,'sandalye','2025-08-22 08:23:16.000',3,'2025-09-01 10:57:13.486','2025-08-25 12:25:21.136'),
('217bff5f-e91b-4d47-aadb-ba0d19e7ec77','566f5cfb-cca0-4c69-85df-9c8acc621458','2648ebea-6027-48a1-b672-7e6e6b86cd2e','180lik yatak rollpack','2024-12-25 21:27:17.000',1,NULL,NULL),
('21b92c18-fe01-4738-a64f-22357aa1711b','97182860-1f38-433b-b884-7944ccda1a30',NULL,'MOBİLYA ','2025-05-04 21:00:00.000',0,NULL,NULL),
('21ba80b1-b634-4254-a431-391707677bf9','f0fd560a-44c1-4908-9784-45a3c9fbd2f7','4250fc84-7698-46cc-a861-1e041d4225c2','sehpa 2 adet','2025-05-30 06:07:07.955',0,NULL,NULL),
('21eddb6f-56f8-423f-9b15-339f30ed9344','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye ','2025-05-05 21:30:56.000',3,NULL,NULL),
('21f74ee3-8163-4caf-be93-184351bbdc71','63c72f92-c955-4221-9d99-5fc007d4c399','77b510c8-b376-4b6d-abeb-fcce37608eea','köşe takımı','2025-05-21 21:00:00.000',6,NULL,NULL),
('21f98131-6f1a-474e-afcf-0edc5f8749a7','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL,'SSH','2024-09-27 12:27:41.895',0,NULL,NULL),
('220fed8f-f96e-4af5-867b-ac05d11bda6f','16a741e3-499a-4c78-b643-f7c20a086922','bc1b9fd7-95d7-4d5b-a84e-684140acc414','VİRAL YATAK-YEMEK-TV-ORTASEHPA (180BAZA)','2025-06-19 21:00:00.000',999,NULL,NULL),
('221d0dd5-c891-456f-9326-5cdcfbb33639','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL,'Traverten masa kasası ','2025-06-30 21:00:00.000',1,NULL,NULL),
('22232cf4-d16b-4672-a951-cd5eefba3067','4a38f569-617d-48cf-b0fc-27e25fd3884e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-09-17 23:10:13.230',6,NULL,'2025-09-23 13:02:33.283'),
('22399f1c-a89f-4887-a03f-c112be6c99b0','40e01302-537a-406a-a3c9-9234e4dbf8e8','940c6390-4082-4fe5-aeaa-06d180147a7b','Masa Sandalye Orta sehpa','2025-08-12 22:00:00.000',11,NULL,'2025-08-19 11:17:08.088'),
('224f9fd9-8c5a-475d-bfe9-432cb06174c6','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL,'ORTA SEHPA','2025-02-23 21:54:06.000',0,NULL,NULL),
('2279bce2-bb64-49a7-8db8-1a0aabfeab3b','2151f3d2-2bfc-48a0-9fa1-3f684dec08c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 çap Seramik sehpa ','2025-10-29 22:54:24.000',2,NULL,NULL),
('227c25aa-0bca-476d-a4de-9a7600d7bdfa','6ffa5c9a-93c5-400c-b777-8b753a8d744f','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA SEHPA','2025-09-17 22:00:00.000',4,NULL,'2025-10-06 09:50:02.538'),
('22841f8b-714b-4178-8f5a-2f7b2eae4ac6','bba01e5e-85bc-4c7c-b195-3960e7fc5c66','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-10-28 18:18:02.000',1,NULL,NULL),
('22aef3bc-344c-4c6f-9004-6b99133d5a1d','91d165b6-d978-4c8d-b44a-7b2fb9ad068b','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-02 11:51:53.098',1,NULL,NULL),
('22cdb203-e189-4693-adf6-5b2569edda9b','fdd68378-14a3-446e-acd4-64b7634a5689',NULL,'KORNİŞ ÇUVAL ','2024-12-23 21:00:00.000',0,NULL,NULL),
('22d6b390-884c-4182-b37f-1038e99d4e8b','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6','1be238d9-54e3-4094-8d60-66fd5abb87b5','AFYON TRAVERTEN','2025-09-10 21:00:00.000',1,NULL,'2025-09-23 12:28:36.258'),
('22dec2c6-2a18-400c-b218-7284acdd139e','e284eca9-ac8c-444b-9259-006514765b59','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-09-10 09:43:48.000',0,NULL,'2025-09-22 14:01:08.120'),
('22e32e79-22d8-4af0-a51c-9c3d863ce3ac','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL,'Mobilya ','2024-10-24 09:30:50.436',0,NULL,NULL),
('2307cead-bc16-4ee2-aff3-8245c44ff256','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL,'Star köşe','2025-05-18 21:00:00.000',0,NULL,NULL),
('2309966e-ccb0-4f46-b346-733ab15c3555','37513226-d4df-4cbc-b99c-f0566be6cb46','e7b3c110-e977-4676-a876-ebfe6bf0832f','Orta sehpa','2025-09-19 04:36:37.000',0,NULL,'2025-09-22 11:59:43.226'),
('2318c3b3-a656-4ca6-b48d-9732b15b2a6e','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL,'SSH','2025-09-30 21:00:00.000',0,NULL,NULL),
('232aef2f-2a0e-4051-91eb-86b776ee4800','b40d3c46-b787-4f86-a1cc-1ee534edd3cd',NULL,'c sehpa','2025-10-02 17:38:41.000',2,NULL,'2025-10-08 08:52:46.224'),
('23420b54-51eb-47d3-b1c2-ad839bf9938d','28b92b39-fb44-43d7-a392-add43e96df28',NULL,'160x200 yatak ','2025-09-30 16:44:11.247',0,NULL,'2025-10-09 14:08:25.981'),
('234275dd-7dff-4ff6-8ac9-fd664b7f6308','22239f89-5592-49c8-b2c4-dc804b06b788',NULL,'SSH','2024-09-28 15:45:46.010',0,NULL,NULL),
('23603e9a-f1df-45b7-910f-576bcfbf1bb0','12b5cb18-7b59-4361-9c5f-b40222dc7d16','d2e3291f-fade-46dd-ac59-68c18dfdd3c9','bazalı karyola','2025-10-02 21:00:00.000',0,NULL,'2025-10-04 11:48:27.837'),
('237271e4-97e7-405f-ae1a-c243dd0c3783','98638de6-50b2-480f-acc9-1f74364a7f92','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','140 çap mermer baskı masa','2025-06-24 21:00:00.000',2,NULL,NULL),
('23916ed8-c0d3-4f6d-b7d5-f8117e883299','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'Dresuar tv ünitesi orta sehpa','2025-08-22 17:08:54.551',0,NULL,NULL),
('23b28966-1342-4078-b532-f33a72d2de8e','e784e31f-ff92-404d-ba37-0dfbff43b309',NULL,'sehpalar','2025-10-31 03:01:58.000',0,NULL,'2025-10-20 11:53:09.965'),
('23f3477c-f11c-4298-947d-16df3b5cde8d','afe0ae69-06ca-44c7-8928-75ee9c95e9f3','aad315d0-10a7-4b01-bb33-59684e6f380f','köşe koltuk','2025-09-14 09:00:00.000',6,NULL,'2025-09-16 14:08:20.568'),
('2417e33b-aaab-4a2a-8654-3680addb8de4','3008395f-ad73-440c-95df-6a289efc5dab','bc1b9fd7-95d7-4d5b-a84e-684140acc414','yemek odası','2025-04-14 21:00:00.000',999,NULL,NULL),
('24263882-6d75-4bf8-bcdb-e0f7a3bc46ad','11b5e5b0-5008-4cd0-8348-2326293e7dcb',NULL,'YATAK ODASI','2025-09-20 10:18:07.000',0,NULL,NULL),
('243bf136-94ff-4e73-8eaf-8fc7da0321d5','3d40d0f6-e7bd-434d-934e-23f8c73df745','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-08 17:19:00.000',6,NULL,'2025-09-18 08:26:26.281'),
('2440cedd-7420-40bc-a7e1-396d5c9a8e14','bdb01abd-b400-4d77-9dc6-589a2150e1ce','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-07-11 14:00:45.000',4,NULL,NULL),
('2453f6bd-9e41-4af8-9f8d-4c11364b9084','8ddba844-a989-499f-a6a5-be77dd52ea3a','e59ddebd-c72a-499b-abcb-cdf62222894f','berjer','2025-10-09 22:29:23.386',1,NULL,'2025-10-14 14:26:17.540'),
('24781fe5-c8a9-48cf-a94a-3c61efb0a699','33559e2b-89eb-400e-bccc-223d68f8842e',NULL,'Yatak baza','2024-04-05 08:15:31.754',0,NULL,NULL),
('247be3b8-20f7-4122-8eb4-959e49c31735','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('24886f99-c4f1-4e3a-b8ea-1b00c2870261','e16c760d-d790-4586-b7cc-374c53cefd14','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-04-29 21:00:00.000',3,NULL,'2025-07-17 07:59:47.551'),
('2499a4db-dc20-496c-b47b-f4ad48cab92a','25d12410-c8e7-490e-98e0-9ef0a0d9272d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye siyah','2025-09-24 06:33:47.725',3,NULL,'2025-09-25 10:46:03.796'),
('249d1f3a-1f6d-4acc-ad1e-40e713130f9e','7ac45678-811d-4aea-b89d-0ec5dbedd607','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-10-09 20:51:22.000',5,NULL,'2025-10-14 14:31:43.006'),
('24b375d8-76fe-446e-b328-26e7a51cec10','3dc2cba9-0647-4ca4-9fa8-0d67554d850a','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-08-25 00:00:00.000',6,NULL,'2025-08-25 11:19:39.366'),
('24b450da-2925-4509-9593-7fa11ec78d72','a3c1d16e-1d65-47ab-9a96-281fee178cfd','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','3 ADET ZIGON SEHPA','2025-10-28 13:47:09.000',3,NULL,NULL),
('24b9c539-03c3-4e93-afd7-933754f75876','524f025c-b247-483b-ae98-d4e6c7b69249','1be238d9-54e3-4094-8d60-66fd5abb87b5','Traverten masa','2025-04-27 21:00:00.000',1,NULL,NULL),
('24bff90d-5056-493e-bf7f-2882436822d2','d5670c41-1af2-48f4-a947-753c331653a4',NULL,'DELUXE YATAK ','2025-09-23 23:40:17.000',0,NULL,'2025-09-24 10:45:09.386'),
('24d77c2f-8a3f-4581-9796-1d5d34ab98b6','90dbc8a8-5725-4f17-86ab-64186bd111a6','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','sandalye','2025-10-27 02:29:51.000',3,NULL,NULL),
('24dad420-59c6-4937-a755-19ffdcae75f6','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'YAN SEHPA','2025-10-10 10:48:33.899',0,NULL,NULL),
('24db27d5-0146-49dd-833b-d71f14ac985a','b87e1d8e-8fc1-4a22-a789-515797619936','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-24 18:37:45.000',1,NULL,'2025-09-30 07:21:20.565'),
('24e0b87c-b953-4c9a-b3d6-0e79a700836b','89246671-a5c1-446d-bc5e-be3c518b5d0e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','masa-sehpalar','2025-04-30 21:29:48.000',3,NULL,NULL),
('251889cf-22d1-44af-a286-b50fb8e8d1d1','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL,'MOBİLYA','2025-04-10 21:00:00.000',0,NULL,NULL),
('25231a29-a789-42b5-869b-e1744eadde15','0d5fa9af-726d-48a9-a5d1-c407a279f76f','26360aba-80e2-46ad-b172-f1052f9526f6','Berjer','2025-10-09 10:43:36.000',0,NULL,'2025-10-09 11:31:39.410'),
('252edcd6-b24f-4df4-819b-796b920ec4bb','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL,'MOBİLYA','2024-10-02 09:01:02.478',0,NULL,NULL),
('25311b3c-c4b0-4bae-ab6f-95cc825f6176','226e99fa-2222-409d-9c22-ab0639c760f9',NULL,'SANDALYE KUTUSU ','2024-07-20 11:00:08.544',0,NULL,NULL),
('2538536e-94b0-499f-8945-6d56f97c2bf1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL,'KÖŞE KOLTUK ','2025-05-04 21:00:00.000',5,NULL,NULL),
('253bc977-f851-4c87-a294-ed526cc3cb5c','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL,'Zigon Sehpa','2025-07-07 10:07:39.278',1,NULL,NULL),
('2547c819-405b-4d9a-a0a4-ad76db169d46','015e4711-850e-4dfd-8a7d-b891bbcf8752','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-04 01:00:00.000',5,NULL,'2025-09-16 13:04:17.322'),
('255659c7-74da-4912-b4ef-7bfff6e3c1fb','7d5531cd-fb21-4284-9145-817c08eee250','c6928307-fe5c-4de5-b14e-5dd7e33db94b','masa- 6 adet sandalye orta sehpa','2025-10-08 23:08:11.262',0,NULL,'2025-10-16 08:17:49.131'),
('255d2671-4617-4d64-9aff-ca078c1ef926','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'EVART E335 DEJAVU PORTMANTO AYAKKABILIK','2025-08-26 01:59:27.000',1,NULL,'2025-09-08 12:00:07.860'),
('256006bd-b235-4d94-b138-40c9fa05eaf1','9c3d7567-24b3-4c51-9c80-4065af9769a9','7b712532-9812-43fa-ab2d-594a6ef545fc','NİRVANA MASA VE 4 SANDALYE ','2025-08-04 21:00:00.000',0,NULL,'2025-08-11 12:37:44.657'),
('2561651b-3bcb-4dc3-84a6-4b72ac7430e2','a624a844-f729-4653-993f-bd28278f47e5',NULL,'MOBİLYA','2024-08-20 15:02:20.025',0,NULL,NULL),
('256d7da2-dd55-4a96-ad4d-cb03e9247467','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ THERMO CONTROL 160\'LIK BAŞLIK ANTRASİT','2025-10-03 12:45:28.000',1,NULL,'2025-10-03 11:30:00.509'),
('258f4a9c-81cd-472b-ac6c-2973d8c4745e','d1838829-7a23-4b22-8b75-127eb7ac1cd6',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('2595f24d-a640-4e24-9f79-2fb9e7f5696d','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye, bench','2025-05-09 11:21:00.523',4,NULL,NULL),
('25960cc2-fb91-4f42-9e90-011ad226f434','7792b079-15a5-4c2a-b33a-dea2dc61692b','1f3193af-e6ee-497d-a3d8-b192e0186308','Efes Köşe Koltuk','2025-08-20 08:00:00.000',0,NULL,'2025-08-25 14:00:17.635'),
('259a2afd-5891-4f23-8c79-b97916a49048','a1113ea5-513c-4c80-af01-bf6fc31ed2a9','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-08-21 00:09:08.000',2,NULL,'2025-08-28 08:51:12.636'),
('259a72a2-bf47-453f-a1f2-67b32a430a12','45898089-0430-47fd-85a9-8108fa8d9a5e','a2bc5ab3-8ee6-4a48-b4de-da8520104423','300*300 L KÖŞE KOLTUK','2025-03-23 21:00:00.000',4,NULL,NULL),
('25be168a-4585-492d-82aa-e07d73f7229c','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL,'DOĞA MODERN PARİS BERJER','2025-01-23 21:54:05.000',1,NULL,NULL),
('25f4965a-c481-4fff-bd08-ac93db0c7623','e284eca9-ac8c-444b-9259-006514765b59','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-28 10:00:00.000',0,NULL,'2025-09-22 14:01:08.120'),
('260811f3-a8b8-44d6-a76f-27315dca3f65','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL,'2 adet kartela','2025-08-12 09:10:24.832',1,'2025-08-14 08:29:23.696','2025-08-14 08:28:57.686'),
('26275b7f-ae50-4230-8071-e1002042a4c5','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL,'TRAVERTEN MASA','2025-01-16 21:00:00.000',1,'2025-01-24 23:23:05.869',NULL),
('262d75b9-7166-4af3-8ca3-d7ed1d290a3e','47743b4f-0f71-47f0-aabf-3e472b257714','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','TV Ünite','2025-02-17 12:00:12.000',1,NULL,NULL),
('2638267c-49c8-40a2-9cea-d01b15ec2ffa','48431447-596f-456f-9008-45bdd35c892a','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-25 12:00:00.000',4,NULL,'2025-09-30 07:16:06.830'),
('2652ccec-4069-4b11-b5b6-cbdf95122b6d','6e7511a6-da4e-49c4-b1e0-36335129a7eb','a800d383-0506-4ee2-9894-82c32f1109a9','mini köşe','2025-04-24 09:19:48.000',2,NULL,NULL),
('2659414c-d45d-4920-a302-a8db660bf2cc','88cc6a24-35a3-4b23-8747-59b47b080f1a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye galaxy bej','2025-07-24 10:59:05.434',3,NULL,'2025-07-25 12:42:38.195'),
('267142d9-637b-4672-82ec-1cf14654d578','3aef1178-e8a2-4762-a4d1-895ac16f415f','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-23 21:00:00.000',2,NULL,NULL),
('2694c763-03c7-478b-85c3-a639c728d0e7','da2f0aa5-ea25-4793-a24c-76f3940dd114','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','Köşe koltuk','2025-08-01 15:00:00.000',5,NULL,'2025-08-05 12:07:50.095'),
('26983e4d-fafe-4a1f-a87c-716366e4cf0f','bcf75901-1def-440f-8bcd-fcbe758d1224','da95f6ab-9177-49c8-b729-1fcee7ea77cb','ROMA SANDALYE','2025-01-19 21:50:22.000',2,'2025-01-24 23:23:08.146',NULL),
('2699bc08-3ab7-4b68-b746-fe59f26c7b2e','aacfdb28-66df-4a6f-8b8d-f575a38b002b','a6d8253d-e268-4425-94bf-663a1bf6289c','KÖŞE KOLTUK','2025-05-06 21:00:00.000',6,NULL,NULL),
('26a88534-d736-482b-a920-c717b09572b9','443b2d74-2924-44bf-be40-fea72295fd6c','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-09-03 05:00:00.000',3,NULL,'2025-09-04 13:33:54.857'),
('26cbf4fc-64c1-46ba-a987-bf7c2715b5e6','ae582db0-f6d5-465e-936e-071de92415c4',NULL,'180x200 yatak ','2025-05-21 21:00:00.000',0,NULL,NULL),
('26d9dcf8-f56a-4ec1-96d4-af3945d37fa2','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL,'ARES KOLTUK TAKIMI','2025-06-24 21:00:00.000',0,NULL,'2025-07-16 11:06:21.378'),
('26efefb1-0454-4e31-9029-81e2ef22d726','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-08-27 06:00:00.000',3,'2025-09-26 12:53:00.151','2025-08-27 08:28:39.472'),
('272262da-fcbb-404e-9836-883da7bce903','fbc52807-2ea4-4332-b106-de7e103725f4',NULL,'70x120 siyah meşe orta sehpa','2025-05-13 21:08:04.000',2,NULL,NULL),
('2728034d-4fca-460f-994b-48aa204fcba4','383c0dfd-fe5e-4691-9b5f-187f66c80c04','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık ','2025-08-19 17:10:41.000',4,NULL,'2025-10-08 09:16:32.089'),
('2729d92c-a5e4-4cea-97c1-7937df0f4cc7','ec083d8c-b8c3-4e4b-9b30-be29d90cad55','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 adet 160 lık baza seti','2025-03-12 21:00:00.000',8,NULL,NULL),
('272baab3-523f-4b56-ad75-0ec90f594ff8','c301d58c-ecdd-45ca-85ce-fb5d8517c3be','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','120 çap beyaz masa ','2025-06-18 21:17:38.000',2,NULL,NULL),
('272e69ec-f8ef-4c6c-843b-c82f048d0f1e','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL,'yatak','2025-07-09 13:23:09.811',0,NULL,NULL),
('2732dc29-daff-456a-bc88-453f947678dd','e83e8f5c-4cde-4c83-881d-94666956b508','67c34dc2-4657-4323-8fc0-4ff05ed31067','YATAK ODASI','2025-10-27 10:41:18.000',0,NULL,NULL),
('27521c3b-da87-4890-b3ba-9b928cf6d336','8ddba844-a989-499f-a6a5-be77dd52ea3a','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-07 20:13:59.000',3,NULL,'2025-10-14 14:26:17.540'),
('2758ecf1-d2f6-40d7-98ab-d6b498789fd9','a5a0d095-3374-44f2-a144-e0660e15a03a','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-07-21 18:18:07.000',4,'2025-09-01 10:25:28.389','2025-07-30 08:09:36.433'),
('2773edd5-8384-4da6-af17-81f71ef6b6b9','a7a425bb-cfdf-4d19-a194-e17082ccd37b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Tv ünitesi ','2025-08-31 13:34:19.000',2,NULL,'2025-09-08 14:48:55.935'),
('2777fe15-f59b-4ad7-ad0f-3b140f36580d','9e399534-04a6-4572-a7ec-3a630c910cdf','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-19 18:37:18.000',3,NULL,'2025-10-10 14:10:22.821'),
('27850efb-2a6d-4e5f-89d7-075bcaa37d7b','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL,'SSH','2024-06-14 09:14:24.343',0,NULL,NULL),
('278b14ca-f435-4dc6-be59-91b5fafa1288','3645be91-e47a-4a21-8c81-c49771ba3639','8f681d43-0f04-48bf-a190-abcd5fbd637d','MACHKA BAZALI KARYOLA 180X200','2025-06-11 21:05:26.000',0,NULL,NULL),
('27a7bc54-5d32-41d4-9dcf-f63732db8996','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL,'Köşe koltuk','2025-07-24 21:00:00.000',4,NULL,'2025-07-28 08:02:35.509'),
('27bda15a-7623-4220-ac03-054c6daa64e8','091754cf-7aa6-431a-8a90-b30fd8978287','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','PRADA SANDALYE ','2025-04-21 10:24:58.890',0,NULL,NULL),
('27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('27e2ce5a-dade-42bf-b4bd-0468323a08cf','cf1b6f71-e318-40c8-a965-e02e6fdabcb3','44c404b3-a618-4af5-bdfb-ad381f049053','KÖŞE TAKIMI VE BERJER','2025-06-16 21:33:01.000',7,NULL,NULL),
('27f50539-120a-4017-b647-afcae9da99f9','00597150-64a3-4ed2-95da-544d8eb849d1','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Konsol','2025-01-30 13:00:00.000',1,NULL,NULL),
('27facb9f-c283-4f68-9b00-3fc3dcffafe9','2960c047-80c3-41d4-a2b6-646498478977','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-07-13 21:00:00.000',1,NULL,'2025-07-17 07:42:44.366'),
('28057f32-5a03-4e03-8439-6fa92708fc37','3218de28-55a1-4ef9-97e9-ca2400fc4715','e89ec49b-2295-4385-a799-c96668143041','PUF','2025-01-31 14:30:00.000',1,NULL,NULL),
('28098e9e-be12-4964-bea1-34aa22b0cbc1','537f327a-f919-43fa-9be8-fa8d0af3cf00',NULL,'TESLİM TARİHİ BELLİ DEĞİL','2025-11-01 07:22:55.000',0,NULL,'2025-08-18 12:19:56.397'),
('280aa08f-620e-4d2d-a959-f7b298499b3d','54e0df3d-9714-48db-8da6-46af349072d3',NULL,'Mobilya ','2024-10-21 07:46:53.939',0,NULL,NULL),
('28161c23-3870-4fcd-a91e-97c4fb7a8fb8','28745864-aae9-4957-9346-b61332e96fff',NULL,'MOBİLYA','2024-03-30 08:49:27.289',0,NULL,NULL),
('28223dc4-584c-4860-a9ed-37d655d745d5','99c9a988-01a1-474c-b7f5-70e4528c16c4','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-07-11 14:00:04.835',6,NULL,'2025-07-16 15:31:11.779'),
('282bbf45-2136-4253-bc67-64c0148d8397','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL,'MOBİLYA ','2024-12-02 21:00:00.000',0,NULL,NULL),
('282c672e-d571-4ce6-b74f-e497f4350382','6f4a13be-78b8-4d33-9535-7be01091d06a','2704bded-07cd-4558-a268-9ca0c0357bd2','TABURE','2025-10-13 04:54:29.531',0,NULL,'2025-10-20 10:32:25.969'),
('2832d686-b584-4480-a3f1-7c4ec1b6f7ce','96c2c716-1238-46f7-a269-0431c07150af',NULL,'MOBİLYA ','2025-01-14 21:00:00.000',0,NULL,NULL),
('2833c015-c4a7-4e42-bcb0-6965d0bf9a2d','5fa14283-df86-4b3d-ad0f-9b686ba6117b','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-07-10 07:00:00.000',5,NULL,NULL),
('28530c93-39be-47cf-8de0-c4ad55187b91','73a48364-e3d4-4fab-851c-d3a1f4617a64','6cf48902-0efb-4fdd-97e3-79e7b0fd3a18','ORTA SEHPA 2Lİ','2025-10-09 00:42:46.000',0,NULL,'2025-10-22 08:39:14.428'),
('2881c493-0a0a-403e-bf7b-36c55e85e85c','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','159b005b-d0ea-42e0-9b75-02ac221aae27','konsol+masa+ayna','2024-12-11 21:00:00.000',0,NULL,NULL),
('28a006d0-78f4-4519-9b69-fe1363cd8176','57aaa2e5-1908-4468-bb27-3c3205ba5948','26126773-c58c-4826-9a54-b06d334d664a','BONNY KÖŞE KOLTUK + TEKLİ ','2025-07-06 09:00:00.000',0,NULL,'2025-07-28 14:02:59.084'),
('28c4ae17-77a0-4b80-85e3-0cdc8efdd131','d79ec9de-a72a-47f5-a918-2b75ec194704','0756facc-c8d4-4ce0-9ac1-e720e6668516','köşe koltuk','2025-07-28 08:12:34.000',3,'2025-07-30 14:44:22.715','2025-07-29 09:26:56.336'),
('28d025ca-eab1-46d1-98d4-ad06ea05cfe7','4aefeaca-07a5-46c4-8497-55b99b83d2f8','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa ','2025-03-21 11:00:00.000',3,'2025-03-25 17:33:58.180',NULL),
('28fbd6ee-0261-4092-ba41-590598774e35','f9dde0cb-7f13-495b-a653-2354ad04f07d','a7da51a7-9f4e-4344-8317-af0e4389d013','Koltuk 3-2-1 ','2025-05-04 21:00:00.000',0,NULL,NULL),
('290c06b6-dac4-4dfc-ae73-602e62cbcd10','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL,'PALET VE ISLAK MENDİL','2025-06-04 21:00:00.000',0,NULL,NULL),
('291604f3-3b27-4afe-8e6a-7541e8711e03','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL PUF','2025-08-28 02:11:38.000',2,NULL,'2025-09-08 12:00:07.860'),
('291a2ff2-a042-49df-a88f-5eeac8ddabcd','150442fb-cc98-4a3d-861f-26845907dbfa',NULL,'MOBİLYA','2024-06-08 06:45:42.134',0,NULL,NULL),
('2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84','e2f03dd5-01f8-4162-8079-906edf448e38',NULL,'Star köşe','2025-05-04 21:00:00.000',0,NULL,NULL),
('2946a725-0e7e-4997-a874-e09aba8e06d8','fcdb759d-3864-480a-a425-d30f514cc0dd','bc1b9fd7-95d7-4d5b-a84e-684140acc414','tv ünitesi konsol','2025-10-28 08:08:29.000',0,NULL,NULL),
('294da0f7-f109-45a0-a22a-da7700a3e549','692c748c-7c37-415c-b3d9-996281a0eba4',NULL,'ORTA SEHPA','2025-02-13 08:54:16.939',0,NULL,NULL),
('29554c39-59b7-484a-8dc7-434cbbe4f2f2','a4c0af65-f3e2-484c-99b8-617b31d3f22d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 orta sehpa','2025-04-24 21:37:49.000',2,NULL,NULL),
('299c4ab9-9afc-4b58-b64a-bcf571e966bb','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'EVART E337 DEJAVU PORTMANTO AYNALI','2025-08-26 02:00:11.000',1,NULL,'2025-09-08 12:00:07.860'),
('29a0aa55-a6bd-479c-b0bd-60d0d547e6c3','4f12f440-a116-4008-91df-70191ee2d9f1',NULL,'rota masa sandalye ','2025-01-20 13:26:50.622',0,NULL,NULL),
('29aa9d56-5356-45de-aaf2-7a6c4a5f2bc2','ebbd439c-6c40-425f-adfe-65a9d4bbd563','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-29 03:23:24.000',0,NULL,'2025-09-03 14:35:43.206'),
('29ace2be-5a79-4f6d-84ee-48b7d7981b11','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL,'MOBİLYA','2025-03-20 21:00:00.000',0,NULL,NULL),
('29c9b975-e3ed-4456-b514-4c8f57925000','38aec1a2-aa0a-4d63-9082-896aaa3694be','09d7f208-5120-4a6a-a456-7613eabd6424','döşek','2025-09-10 13:45:57.812',0,NULL,'2025-10-07 13:45:12.287'),
('29cc8746-fe8c-48c8-bc02-cdff22be5576','f32513e0-8eeb-4eff-b7e0-6c1734713bae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-07-31 21:00:00.000',0,NULL,'2025-08-07 08:46:45.267'),
('29f3f8ad-a5d1-428d-9716-27aa02ff0be2','29e07758-ee2d-462d-95cb-5effc249b279','40df0c0c-3f7b-4556-bd4a-50ad8d6c479a','Yatak ','2024-11-03 21:00:00.000',2,NULL,NULL),
('29faaf4b-90ea-4ca7-90cd-3532202e6c83','3645be91-e47a-4a21-8c81-c49771ba3639',NULL,'PLATİN YATAK 180X200','2025-06-19 21:05:42.000',0,NULL,NULL),
('2a0c69e9-2aa5-4e62-baa4-854f1483430f','ac9528e4-d408-4c6a-9cb5-664445eb6c37','01c95349-72b9-482c-8165-7af9590e15f4','6 sandalye ','2025-09-08 04:35:30.093',3,NULL,'2025-09-09 11:21:24.892'),
('2a15168b-dcc4-4e71-964c-d404c90020d3','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL,'MASA','2025-03-11 21:00:00.000',0,NULL,NULL),
('2a27075f-9e1e-4b69-ac54-3164ee2b92fc','ed98c31c-308d-4856-9efd-a92eb1603386',NULL,'KOLTUK TK','2025-02-19 21:00:00.000',0,NULL,NULL),
('2a2ce940-fad3-470b-9b75-98cbc1a796cf','f7d36bd1-9c1c-4000-b3a4-bde690e8c1bc',NULL,'bas','2025-09-17 12:51:58.374',0,NULL,NULL),
('2a32bcc8-978d-4eab-8101-71bb799c60a6','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL,'MOBİLYA','2025-03-11 21:00:00.000',0,NULL,NULL),
('2a3786a8-55e0-4d0c-8acf-eca115b5b68a','86d586d7-1a49-47d7-bf34-7486f84a12e5',NULL,'M97 ORTA SEHPA','2025-09-24 21:00:00.000',1,NULL,'2025-09-25 10:44:54.621'),
('2a4df356-6870-4e82-843d-6a6131e7e377','a92b5169-963a-4b74-9857-229dbed0d9e7','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı masa ayağı sehpa','2025-01-16 21:00:00.000',0,NULL,NULL),
('2a507ef9-decc-4447-92e0-1cd036ecc70f','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL,'ssh sandalye','2025-06-15 21:00:00.000',0,NULL,NULL),
('2a529661-568c-4dd3-8b4a-cd09bf85bae9','ee0c62fa-abac-44d0-915b-567df66647be','e7220662-73b8-46e4-9f5d-7e977cc23448','masa orta sehpa','2025-10-19 12:12:33.000',1,NULL,'2025-10-22 07:33:41.885'),
('2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb','223bf502-0a5c-4df0-bef2-463ec95dbb4e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz','2025-08-08 13:38:27.000',6,NULL,'2025-08-07 12:37:37.791'),
('2a6d5636-3ebb-42ef-bc3a-347b6aaccdee','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL,'BAMBİ MAGNASAND 180\'LİK BAŞLIK','2024-12-17 21:08:03.000',1,NULL,NULL),
('2a6df913-1df4-4e6e-bdd5-9d6f58ef881f','88f84531-ef49-42b4-ba11-ad770eba8aa1','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-09-04 17:32:00.000',6,NULL,'2025-09-16 07:47:55.235'),
('2a723830-d2b5-42fb-95ad-678895eae7cd','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'DOLAP','2025-10-08 15:40:32.434',0,NULL,NULL),
('2a7b0dd7-e92c-4d80-a1a0-61f0b6b1d33e','5c8a45fd-4f1c-4791-a236-1f8362adf868','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-07-16 09:00:00.000',3,NULL,'2025-07-25 13:20:17.588'),
('2a8a192b-439d-4f2d-8ebf-e8eea1f9247e','5242bea6-83a9-46c0-b42f-249dd7e9ef0a',NULL,'BAZA ÜST KONTRPLAK DOLAP ARKALIK KANALI PLASTİK KULP VE VİDA','2025-10-26 22:46:51.000',1,NULL,'2025-09-10 11:21:16.683'),
('2a9dc5cf-e36d-4418-b12b-38735a234501','4428b444-78f4-43f3-8d88-220442b30896',NULL,'BERLİN KÖŞE TAKIMI ','2025-09-01 00:00:00.000',0,NULL,'2025-09-11 12:53:37.864'),
('2a9e974b-aed6-4ac1-b9ec-1a2cb64ca83c','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 ADET KANEPE VE SEHPALAR','2024-12-20 21:00:00.000',4,NULL,NULL),
('2ab41284-325e-4735-a02e-0af4784fee90','fa70b271-3bdb-47d3-9c07-aed6751f25bb','24e1bbb4-1607-42b6-9b8d-b1e4572c1ea6','yatak odası ','2024-11-10 21:00:00.000',22,NULL,NULL),
('2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f','ef437620-5922-42f3-91ee-d44f1d84b757',NULL,'MONNA YEMEK ODASI','2025-01-28 21:00:00.000',9,NULL,NULL),
('2ae0945f-d21b-4c2c-8cb3-1cf6a08e3c5c','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL,'tv + sehpa demonte ','2025-01-20 13:30:29.406',0,NULL,NULL),
('2ae78cf8-53c6-4be4-bf8b-eeea900b63c8','bedc8bfd-1431-4017-9109-bedbb2184827','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-09-08 07:00:00.000',3,NULL,'2025-10-16 08:05:08.389'),
('2ae835d1-b59e-4847-94e9-a2ddd98d1c93','6b536f48-3034-48b2-9b97-92824679a502','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3-3-1 koltuk takımı ','2024-11-04 11:00:00.000',4,NULL,NULL),
('2b06d8c7-633e-4a98-bb51-6e3fea57b5d2','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL,'KOMODİN PANO + MALZEME KUTUSU SSH ','2025-08-05 21:00:00.000',0,NULL,'2025-08-06 13:19:05.646'),
('2b07e55b-c1c1-4589-9452-4dc53ede2f8e','1bb074a3-ddf3-432d-9ee8-e36060092ef8','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-12 16:02:29.000',6,NULL,'2025-09-02 10:35:01.832'),
('2b0acf8d-fc6d-4d67-9d78-65615d9ec378','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-07-31 08:29:13.438',3,'2025-09-18 15:07:41.008','2025-08-01 09:21:33.756'),
('2b12ef88-d5a2-43d8-bd90-8a845b274c87','0a8f1755-81d7-48cb-888e-f50eb6ea01e8','1e93df00-c436-426e-b76b-a6d843907edb','Köşe takımı','2025-03-23 21:00:00.000',6,NULL,NULL),
('2b3a0cfe-c787-418f-bf8b-5ce003d288ff','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL,'90x190 nevada ceviz masa ','2025-01-16 21:00:00.000',3,NULL,NULL),
('2b553000-b73f-464a-a5a4-5ac28c0473c1','45898089-0430-47fd-85a9-8108fa8d9a5e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','45 CM TEKLİ SEHPA','2025-03-24 08:03:27.159',2,NULL,NULL),
('2b5fa64e-2c3f-43be-9034-b86d4520cb36','5552132e-e408-47bc-ab37-19083b622454',NULL,'160+100+100 BAZA BAŞLIKLAR VE 2 ADET KOMİDİN','2025-10-24 01:26:26.000',9,NULL,'2025-10-24 15:12:45.438'),
('2b808c34-57cb-4328-bb87-ac4a47aaa430','eca42571-21cb-477f-8919-3105870047fa',NULL,'Sehpa Seti','2025-03-21 09:58:20.328',6,NULL,NULL),
('2b836e01-2f5e-4512-9cc2-9be25ec5b6b5','46528672-1c96-4785-80ba-77e3cec82ee8','4d3f433c-6ebf-4443-a8bd-319b61cbe400','PRAG KÖŞE','2025-04-08 21:00:00.000',4,NULL,NULL),
('2b95b149-0eea-4aa1-8465-0650e3c52636','396cb143-14ce-480a-8762-a43699b4d2d2',NULL,'yataklar ve sehpa','2025-06-23 18:15:26.000',5,NULL,'2025-07-31 13:24:20.946'),
('2bccb692-372c-403e-ac17-f092cc8d56e0','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL,'Koltuk takımı ','2025-02-25 21:00:00.000',0,NULL,NULL),
('2bd0a09e-a059-491a-8464-25f9d0457185','cca3c1d2-572a-449d-9408-3e4d072a2fa5','8bb05e8a-f1f6-46ce-a021-ac0443000481','köşe koltuk','2025-02-17 21:00:00.000',6,NULL,NULL),
('2bd41fb6-a948-4fbd-8c3b-c76f4f5f863f','26dc53f3-1a21-44ea-a0d6-f51c8996bf85','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 nevada ceviz masa ','2025-05-11 21:00:00.000',3,NULL,NULL),
('2bda1156-1214-4bc5-a111-951e80f8844e','22f306ed-6c48-4e15-a370-d8f8b96b6499','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','160X200 YATAK','2025-10-06 06:39:53.568',0,NULL,'2025-10-07 13:39:58.711'),
('2be304af-892c-437c-ad01-00360cd990ec','aee090b4-4bf2-4cde-89e9-1e2353dcb896','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-17 15:36:23.000',6,NULL,'2025-09-22 14:20:22.521'),
('2be75c1c-2258-4665-a33a-18e6a18fc678','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2PK SSH','2025-02-25 21:00:00.000',0,NULL,NULL),
('2c05cb84-f059-49a2-961f-cf222d5be8ef','6245482e-e4e9-4ec3-a033-d261753e3a36','218949c6-eafc-4354-9868-0fc9ca3b3675','2 adet sandalye','2025-05-07 21:13:45.000',1,NULL,NULL),
('2c0f1e2d-ad74-4964-9781-9eb791b16ea1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL,'SANDALYE','2025-04-29 21:37:35.000',8,NULL,NULL),
('2c19c1b7-bf7e-41a2-92f2-340a3624a547','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL,'SANDALYE','2024-12-17 15:25:36.535',0,NULL,NULL),
('2c1c23ab-0126-4156-8f58-8693f16e4bcb','58e3e5d5-2e17-40da-96ac-0310bd71ed03',NULL,'6 SANDALYE','2025-10-17 16:30:38.000',0,NULL,'2025-10-23 12:29:32.071'),
('2c277c44-2e96-4924-b190-204f7c59d3a6','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL,'TRAVERTEN MASA VE TRAVERTEN İKİLİ SEHPA','2025-01-16 21:00:00.000',1,'2025-01-24 23:23:12.314',NULL),
('2c356607-02da-4a51-85d3-eda95e852225','02f21391-f1d5-4bee-b4d9-17f65a20feb7','e46f75d9-f1dd-4753-8e6e-717c17942cfd','Halı  5 adet','2025-08-18 02:52:26.000',5,NULL,'2025-09-02 08:50:18.146'),
('2c3b7dd2-d5f4-4908-bc0c-804b3b628741','62738f81-bb34-4a26-b713-b7972c5a1fb5','fee7f346-332d-419c-9da4-5a7154085362','sandalye','2025-07-20 12:34:00.000',3,NULL,'2025-07-18 12:36:44.009'),
('2c3e9974-669a-4c11-9f6a-51823220641a','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL,'KOLİLER','2025-01-25 21:00:00.000',0,NULL,NULL),
('2c42d6f3-528d-4738-9714-38cf6e6c758a','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL,'ÇUVAL','2025-01-18 21:00:00.000',0,NULL,NULL),
('2c449f22-80f5-4bb6-98f7-8a2627cc9a75','5be6a019-e31c-4bdd-ac62-bd037d756e64','b4b527e9-c851-458f-9238-9049a66f2c90','6 KAPAKLI DOLAP','2025-02-23 21:00:00.000',1,NULL,NULL),
('2c694b03-719e-4436-94c7-b64621e4940a','bff7b018-9fd3-45fb-bd37-fd078042b359','cf90c370-208a-4021-aaff-f9220970bca9','MASA 3','2025-05-20 08:22:57.083',3,NULL,NULL),
('2c7bd75c-07da-4367-bd58-7d9231f1ccef','6ba9900e-286c-40c2-bd00-67d4e8a2212a','26126773-c58c-4826-9a54-b06d334d664a','BONNY KOLTUK 3+3+1','2025-07-21 15:34:51.000',0,NULL,NULL),
('2c84ba11-87d3-41f7-bcc4-d0fa2cf2eeec','1b611478-1dbd-4a35-9f49-606526e2fe1b','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','Konsol ','2025-03-09 21:00:00.000',0,'2025-03-12 08:21:13.696',NULL),
('2c86476e-8798-4d2d-b8c8-cefed9be8666','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL,'traverten masa sehpa','2025-08-21 21:00:49.000',1,NULL,'2025-08-27 10:44:06.546'),
('2c8ef13d-f9a7-4e40-be91-cb7c4602862c','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','ece116be-9c35-43c0-9794-25b0b1fa5efd','Köşe koltuk ','2025-09-28 05:40:14.000',5,NULL,'2025-10-08 13:58:07.137'),
('2ca13ff1-5c52-436e-936d-b826129b5799','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL,'TONER KOLİLER','2024-09-05 15:46:56.072',0,NULL,NULL),
('2ca96c7e-3caa-406a-be2c-51c79573e194','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('2cb51f38-bccc-4078-9a8f-1c5aceac1139','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL,'HAZEL KARYOLA ','2025-05-29 21:10:01.000',0,NULL,NULL),
('2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819','1965b9c6-c511-459f-8f4e-dddb4f23f943','4ccea6fc-d526-479a-9e27-42643a5f294f','baza','2025-09-17 14:48:17.000',0,NULL,'2025-09-17 13:26:28.634'),
('2cfa9764-8f00-4513-b782-16d127332b90','3fba1e1a-d3f7-4a72-b88c-284f205185ce','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-05-29 09:10:42.035',2,NULL,NULL),
('2d0a85df-04a6-444a-83dd-35a10216a654','dcf208dc-cd3f-4596-9430-d35849bbc2f6','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-08-20 06:00:00.000',1,NULL,'2025-08-27 11:37:51.338'),
('2d1e4467-9dfe-4631-b907-0d2dcfff2ac7','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL,'MOBİLYA','2024-09-18 21:04:48.419',0,NULL,NULL),
('2d31d975-945d-40e2-ac83-79cfc9b0b5f3','cf0a7126-8c37-496d-8b00-8c055624489a',NULL,'Mobilya','2024-05-15 13:28:41.135',0,NULL,NULL),
('2d521bb0-7371-425d-b9e5-25478a3ca5e8','ac090290-e782-4821-b1b3-5cacdab9c03c','81ed0ba8-3918-47d7-86eb-3ffd5cafb042','KOLTUK','2025-10-27 19:00:00.000',6,NULL,NULL),
('2d5f804c-2b06-43d0-bd12-bf140cf8e77e','bb12bd3c-d87b-4ede-9827-8c115b6da789','38a7333e-8a0f-4e45-957f-e11d538d2097','sehpa ','2025-02-07 09:59:08.527',0,NULL,NULL),
('2d647144-2349-4287-b285-9d67e49dad16','19b98edb-d0d6-4399-8b6c-60219add529d',NULL,'Sehpa üst tabla (SSH) depoya teslim edildi.','2025-09-22 12:00:00.000',0,NULL,'2025-09-22 18:00:20.808'),
('2d658946-ced3-434b-8d47-2c22df2eb95e','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL,'KOLTUK METAL AYAKLAR','2025-01-14 13:04:32.316',1,NULL,NULL),
('2d6cd8ff-fddf-499d-ad4d-717285b10f9e','e16c760d-d790-4586-b7cc-374c53cefd14','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-07-17 21:37:26.000',3,NULL,'2025-07-17 07:59:47.551'),
('2d6f3930-2db7-45ad-a3bd-8dcec84dc66f','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL,'KING PLATİN BAZA 100X200 2 TK','2025-08-05 14:33:19.000',0,NULL,'2025-08-06 12:16:36.230'),
('2d715c9d-be1d-4641-83a0-5f2fc0061517','2e594749-653d-418d-b1d8-5310f505a9c6','2fdf870f-fec1-4d26-8970-49a9139ddf32','Sandalye','2025-09-08 23:56:23.322',3,NULL,'2025-09-12 14:46:35.736'),
('2d762184-6c8f-449d-a5e2-ee9bc3dd36a6','6185b161-cfc2-4a8a-a2f2-c2e05c20c446','1412bb1e-d2f0-499e-b643-ad4afd43a12e','koltuk takımı 331','2025-10-08 09:00:00.000',3,NULL,'2025-10-13 09:39:05.630'),
('2d7e7bbd-fa6a-4d9a-8da7-90d378d12b89','558ade04-1baa-47ac-99df-233551c2e4c2','e2aa2442-8a91-4124-99c5-e56e6058e5e9','SSH GARDOREBE DİOR KONSOL ÜST TABLA VE KONSOL SAĞ AYNALI KAPAK','2025-10-15 14:59:27.000',2,NULL,NULL),
('2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL,'Mobilya','2025-08-19 09:00:00.000',0,NULL,NULL),
('2dde6fa9-86f5-4072-acf6-d126395be890','d7d56728-9768-4bf8-8387-7f8b0fc62a6f','7e8fb533-8664-49b3-a0e5-81b4c869785a','DELUXE KOLTUK','2025-01-19 10:00:00.000',2,NULL,NULL),
('2e033ee4-214a-47cd-9ec5-93c477abafb6','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA','2025-03-26 21:00:00.000',1,NULL,NULL),
('2e0a1462-53e2-4e2b-bef2-6301700a6b7e','ae9be805-ab66-4bf7-889f-22b5fd9c7351',NULL,'Mobilya','2024-05-31 13:02:37.299',0,NULL,NULL),
('2e0ecff2-b03e-4c77-8804-bb606172165d','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-13 14:45:59.000',3,NULL,NULL),
('2e0ffe53-8bcb-4f86-ad33-6c510068ede7','f0b553df-a781-4ccd-a273-f9c311927595',NULL,'SANDIK','2024-09-09 12:49:35.849',0,NULL,NULL),
('2e116f09-c1b8-49f7-994a-7ed5bfd8b502','2be6b904-2905-4e27-ab5f-58e66f9487ff','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2024-12-27 08:46:48.082',0,NULL,NULL),
('2e117d31-519d-4e6f-9f9e-226f62420115','2a7caf03-8581-4191-84b5-cab0632ebe96','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-07-17 21:00:00.000',0,NULL,NULL),
('2e2e32d1-cc1c-4c29-8671-60555cb57d3a','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c','8606d226-cc7c-4998-946f-cf7c29587a15','MASA','2025-05-21 08:00:00.000',3,NULL,NULL),
('2e6a3452-8e6e-4932-a4a5-aac15a29336c','82859b5d-2c9e-4a29-be96-14240c8a1e53','6bab619f-152f-4b59-9114-91519515b44a','YATAŞ','2025-06-16 08:28:05.979',1,NULL,NULL),
('2e72969e-16f4-4df8-800a-7af035413223','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL,'SSH','2024-06-14 09:20:29.879',0,NULL,NULL),
('2e7ad20c-d3f1-4bba-b44b-724cfa847fdd','08c394f5-81b6-4f94-b6e3-4d898cb44cae','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-04-24 07:53:51.692',3,NULL,NULL),
('2e7ef962-2f2f-42bc-b914-97f73b1ffeb1','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL,'PUF MODUL KASASI','2025-08-19 18:00:00.000',1,NULL,'2025-08-20 11:50:24.006'),
('2ea7f945-fdbd-4103-b8f5-8c2aeb402519','e00a4597-7f8a-4e0f-8cd9-480107421adb','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA ve masa','2025-04-09 21:31:17.000',1,NULL,NULL),
('2eae9c9c-f388-424c-8ff7-83973bc6ec96','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL,'SSH','2024-09-27 11:34:28.486',0,NULL,NULL),
('2edecaba-33e1-4db0-93ac-b909e6bae465','35563c2e-e808-44fd-8e6b-f1d59af96d33','26360aba-80e2-46ad-b172-f1052f9526f6','Karyola','2025-08-18 21:25:23.000',0,'2025-09-26 12:52:52.153','2025-08-25 09:07:03.963'),
('2ee29e0d-5d75-451c-93a9-a55038d6d101','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL,'2 KUTU SANDALYE 1 SEHPA','2025-01-28 21:00:00.000',4,NULL,NULL),
('2eec8f61-f0ba-4216-ba7a-88e2440d43d3','0d746c5c-f194-4ed9-b71a-bf56f53af841','fd87365f-791b-4129-a329-2bbc5296e508','SEHPA','2025-09-07 16:00:48.000',0,NULL,'2025-09-11 11:07:34.965'),
('2eee4732-1804-4c17-a865-bc66f2ed3520','c8ffd3f2-c426-4b6c-9439-664479653971','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Tv ünitesi sehpa masa','2025-07-07 10:34:45.000',4,NULL,NULL),
('2eeeec42-3306-4154-bcd5-56e769835168','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('2ef10f17-04cd-4b22-8b1b-2915e55684f2','269b4bca-6e23-4b7c-a9d2-e7abf0e79373','ea14abab-f7ab-4729-8410-25fc05b35196','koltuk','2025-10-16 03:00:00.000',1,NULL,'2025-10-10 07:26:02.674'),
('2f075d9a-535b-4847-9842-2536dd280fc7','e33482b3-d69f-4355-a934-88d95502f498',NULL,'DUVA LUCCA BERJER AYAĞI 2 ADET','2025-03-18 21:00:00.000',2,NULL,NULL),
('2f12110a-a955-462e-9cb6-712cc6e77202','313a72ed-6534-4a76-a704-0b5ce01d87db','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x120 cm traverten Stone sehpa','2025-09-24 03:31:31.216',1,NULL,'2025-09-26 11:13:25.866'),
('2f48d0ed-28f5-453d-8672-06427e42d843','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-04-23 21:00:00.000',5,NULL,NULL),
('2f648ea0-48c1-46b4-a5f2-0d0c23a5709c','0f733eb9-d262-417e-b01a-927f3219d47a',NULL,'Fold Masa','2025-10-15 09:00:00.000',3,NULL,'2025-10-16 14:42:47.457'),
('2f7618fe-770e-47b7-b995-adcc1e476b1a','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','200 cm konsol','2025-07-16 02:41:40.000',2,NULL,'2025-07-16 08:03:25.167'),
('2f7ffc63-a12c-4023-bcc3-e7043967b1bd','c7effd94-7a9b-48a7-aa10-5ff2f31371f4','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','SANDALYE','2025-05-26 17:30:09.017',3,NULL,NULL),
('2f8afc9e-696f-4b14-b212-d5f56e6fb5a3','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL,'Milas beyaz masa ','2025-01-09 12:00:00.000',3,NULL,NULL),
('2f97d486-98ea-4fac-a9e1-6d2acbd29fbd','8ab9b43a-c91d-4cac-9d3a-646d10808a99','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-02 05:28:37.176',1,NULL,'2025-10-03 09:18:59.833'),
('2fac5ba6-8918-4856-8dbc-1c79b1f9bf73','401ecd97-fb17-4288-b2ea-4445b8cdc4f1','17d8b9ed-3fa4-4418-a110-a9b7ebb274ef','CALİSTA MASA +ORTA SEHPA +YAN SEHPA+ AYNA ','2025-10-24 20:20:26.000',0,NULL,'2025-10-27 13:12:55.527'),
('2fb19f98-3e7f-4224-baf7-2836d72e91ba','361c79f6-d2f7-4391-a551-aeba4ac518de','83164ef4-809a-4565-8151-dea5ddbe27ec','KÖŞE TAKIMI','2025-07-22 06:00:44.000',0,NULL,'2025-07-28 07:48:39.536'),
('2fbebf8b-bf03-4aa8-a35a-9fc079f51881','da5cde0e-df59-488c-af62-13b113156c25','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-09-23 21:07:57.000',1,NULL,'2025-10-03 11:09:38.587'),
('2fc9411f-e4fb-4693-93ff-1c908445be13','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL,'VİTRA 120LİK BAZA SET ','2025-01-29 08:03:35.891',0,NULL,NULL),
('2fc953b5-6d78-4872-afc9-e2805e0cf3b0','7aa9750a-32ef-4501-a5aa-1bf0b29fba80',NULL,'160*200 yatak ','2025-02-13 08:10:23.629',0,NULL,NULL),
('2fddfc98-e36c-4823-9d4f-33b7509099cd','47c4a897-9b46-451e-81b9-3ed2ac6147c6','00d8fa15-202f-4635-af55-df5a498e7639','ALLEGRO MİLANO MASA ÜST TABLASI SSH ','2025-03-19 21:00:00.000',1,NULL,NULL),
('2fe519bb-8989-4e31-9bbf-7258948724d8','a04ae8dd-1caf-4622-97e8-aa08c8974c93','40dea42f-54e9-4d38-adfa-1fa968cd98a1','Koltuk takımı','2025-08-28 00:00:00.000',0,NULL,'2025-09-03 13:14:54.135'),
('2fe858c2-0dba-4eeb-ac43-17e48df137ca','1c4d1793-ac06-480e-9fec-1ed042f34347','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-29 03:00:00.000',0,NULL,'2025-08-30 15:36:49.392'),
('2fef74e1-3060-4a38-9cca-a2da9430da96','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL,'Traverten masa+sehpa','2025-08-07 15:00:00.000',1,'2025-09-18 15:07:49.233','2025-08-19 09:12:15.055'),
('3014e299-cf0b-48b7-8c7d-d69d3f855cf1','b40d3c46-b787-4f86-a1cc-1ee534edd3cd','a33a4b24-0961-4436-ae17-15a7d5334110','köşe','2025-10-02 06:00:00.000',6,NULL,'2025-10-08 08:52:46.224'),
('301c929a-118a-40da-840a-bd30cca73b0f','8551d3c1-420d-41bd-a461-00738dd54bda','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','75x130 Msm 01 baskılı Orta sehpa','2025-10-26 22:54:27.000',2,NULL,'2025-10-24 08:10:32.604'),
('304740fa-6d96-4ea0-a997-094361062796','2456bba8-8438-4070-98e2-c287835345fb','3059ed85-10e2-440b-b1a0-3d75684d8c35','Karyola set ','2025-04-14 08:46:56.925',6,NULL,NULL),
('304f53dc-99b2-47c1-8bf7-0087b7b477c1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL,'SSH','2025-04-18 21:00:00.000',0,NULL,NULL),
('30506096-717b-49d6-916d-e53b4af1ac5b','0abef697-325b-4fde-a364-d1f3c1d2b3f9','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-25 03:00:00.000',5,NULL,'2025-10-13 09:40:13.311'),
('3055fdb3-8070-475d-af52-fc426dbaaffb','0f7992ed-f0f4-4017-b947-5693cfd94285','a3610da8-8e0c-417c-8834-1223bca4fb34','3+3+1 koltuk takımı','2025-07-09 21:00:00.000',3,NULL,NULL),
('306f9627-2eb0-4359-b686-256ce3c09ae9','c301d58c-ecdd-45ca-85ce-fb5d8517c3be','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye','2025-06-18 21:17:18.000',10,NULL,NULL),
('3079f96b-1eb5-491d-aa5c-e7b256b84852','e82238d9-feaf-4797-93e9-673c49c7b01e','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-07-06 22:00:00.000',3,NULL,NULL),
('307b609b-7404-46c2-ba6a-cea1cd59da9e','d3e4434c-1317-4092-aed5-8cc884ab1ae7','e59ddebd-c72a-499b-abcb-cdf62222894f','KÖŞE KOLTUK','2025-09-06 22:00:00.000',3,NULL,'2025-10-10 14:11:02.803'),
('307d6f4e-5065-4492-a18f-04b925d71f98','a2926116-d6cb-4f23-857e-b99221b6f59e','84ae5cdf-69f8-4d9e-9e50-cc7f34c54066','sandalye','2025-08-24 23:00:50.000',3,NULL,'2025-08-28 07:01:46.394'),
('309be9c3-ebca-44d8-be99-f31ff6faaaa1','2bfb4ebc-a071-48f5-9c44-727046a13ab1','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','KOLTUK TAKIMI 3-3-1 ','2025-09-15 21:43:00.000',3,'2025-10-06 11:36:40.487','2025-09-17 07:28:57.521'),
('30c704c1-8589-442d-9b6e-d7f4eee7d4e3','7e7dc595-616a-449b-82e5-63d04f63ca8f','7814218e-af02-47df-a8d4-279441fc9da2','PREMIUM KOLTUK TK 3+3+1+1 ','2025-03-18 21:53:54.000',0,NULL,NULL),
('30cc08c3-1c49-4272-a534-8826f5e06885','cbc66089-3787-46c8-9770-6e95da20fddd',NULL,'KOLTUK ','2025-04-20 21:00:00.000',0,NULL,NULL),
('30d375fe-963d-4059-bed3-7e6e37ebd635','51eada14-8b0b-474d-993b-35b1df5b1fdc','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x210 traverten masa ','2025-07-03 21:00:00.000',3,NULL,NULL),
('30eed6bd-584c-4dcb-834c-7267b5ca173a','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL,'PALET','2024-12-12 21:00:00.000',0,NULL,NULL),
('30fc153c-c071-4fc6-8f4e-ccbd655b8b33','e784e31f-ff92-404d-ba37-0dfbff43b309',NULL,'kanepe, berjer, puf','2025-10-30 15:00:00.000',0,NULL,'2025-10-20 11:53:09.965'),
('30ffce34-638e-4afb-ac90-2f44edfa9b3d','304a2496-cb37-4646-a094-9980a688ced5','d30ff40f-77ed-465b-82c8-b649f7ec3cc0','sandalye papuçları','2025-06-19 08:04:46.095',1,NULL,NULL),
('310d0b22-749c-4142-8372-39c495364b11','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96','b2f38bcb-248d-4626-9f30-2fe34792a4a6','koltuk 3+3+1','2024-12-29 21:00:00.000',3,NULL,NULL),
('314fa812-1e42-49bc-9f1a-c855a0494377','bc037735-462f-4198-8d2d-23ba6a125e18',NULL,'MOBİLYA ','2025-01-01 21:00:00.000',0,NULL,NULL),
('31521179-cdcc-4e93-a74d-a95331f89735','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-08-22 01:37:44.000',6,NULL,'2025-08-26 12:42:10.664'),
('31550c22-c059-4382-820f-6d1760b04019','581b4f00-ddd5-472c-b485-0863440ffc50',NULL,'KOLTUK AYAĞI+ ZİGON SEHPA ','2025-02-24 21:00:00.000',2,NULL,NULL),
('315d6388-4562-4f75-a2fd-ea2074c8db65','4ca3f816-65f3-42e3-9d35-51e86f0b5030','e7220662-73b8-46e4-9f5d-7e977cc23448','masa','2025-11-09 21:00:00.000',3,NULL,NULL),
('3166ea3a-776c-48c3-91c8-684a49e8a243','e7f656e7-35d0-4f99-bacd-ea6a85d14230','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA SEHPA','2025-08-18 07:04:39.000',4,NULL,'2025-08-26 15:35:18.056'),
('31756259-76a0-4e0a-ad43-f10e0bb6f4ed','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL,'Ramazan bey','2025-09-17 08:35:09.233',0,NULL,NULL),
('318a9822-d75c-463c-be8d-2b325a9fdcfd','ad525e43-9190-4602-ac34-b389ec280f0a',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('318cde76-8ade-4948-8a1a-03f459b25500','5b091e48-c241-44ae-9f12-59295c693382','b151728c-b265-4eed-b5c1-cb53409fb775','SSH MASA AYAĞI','2025-08-26 08:00:00.000',2,NULL,'2025-08-26 15:35:34.120'),
('31900e3f-390a-457e-a430-7ea622f3b170','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL,'MOBİLYA','2024-05-29 09:57:37.605',0,NULL,NULL),
('31990719-44d6-4ddb-ab93-087248d2f93c','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a','c01a6bb5-a79f-4c6f-81ff-aea8a08bc0e1','SERAMİK MASA','2025-06-09 21:00:00.000',2,NULL,NULL),
('31a3ac1d-cf48-4b66-be88-7fd42f8e6acd','5552132e-e408-47bc-ab37-19083b622454',NULL,'160+100+100 YATAKLAR','2025-10-24 12:00:00.000',3,NULL,'2025-10-24 15:12:45.438'),
('31a46914-f0d0-42bc-9a57-838b3227c099','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2024-12-27 21:00:00.000',0,NULL,NULL),
('31ae1da0-0ec2-4d89-86f3-f97ab9fd9e36','02caa650-97c8-4705-a9bc-95c4f819c322',NULL,'Sandalye ','2025-05-08 09:04:46.000',4,NULL,NULL),
('31aeaee6-0983-4996-af4d-a37e42a0a6e6','888c1a17-6ddc-4bc8-b1ab-b00d72942811','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 TAKIM KOLTUK TAKIMI 3+3+1','2025-10-07 02:55:29.000',3,NULL,'2025-10-09 08:47:31.115'),
('31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd','f3fb5afa-e27b-4671-8dc8-33032a54e4d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-17 20:14:16.915',6,NULL,'2025-09-19 14:33:52.597'),
('31d86564-1634-4f25-8bb9-3f3c63bd4401','f28509f2-7a8d-45a7-9f70-448e074b8278','ed7d1750-5c3a-4305-a014-967b13e5dac9','MASA + 6 SANDALYE','2025-03-07 11:30:00.000',6,NULL,NULL),
('31ebb578-1bae-477d-b89f-f2d9614f22a8','942b967a-b7e1-48f8-9cb2-21dcf67db34e','bdf32869-5506-4208-95e2-820fe960d600','Kampanya puf','2025-08-13 12:00:37.000',0,NULL,'2025-08-15 14:29:01.603'),
('31efbfbc-2eef-474b-8cd0-b552d5c60b72','1bb074a3-ddf3-432d-9ee8-e36060092ef8','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-08-12 16:00:00.000',7,NULL,'2025-09-02 10:35:01.832'),
('31f154ec-bb7b-4da2-9fb5-0e78ce7d323b','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL,'KOLTUK TAKIMI','2024-04-23 10:20:32.943',0,NULL,NULL),
('3233f103-8c48-4a31-af23-0a9a1da3e7c4','f4925a41-5026-4e2b-a759-10c30274e086','763afea4-80d7-4980-bdda-79840ca9431f','Köşe koltuk','2025-08-12 07:00:00.000',0,'2025-09-18 15:07:45.086','2025-08-14 11:57:26.690'),
('3239bdef-e86a-44cc-82cb-b811ef7a5803','05e527f9-8a74-4f42-b673-b05994d5555d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80 ve 60 çap Traverten sehpa','2025-10-17 04:38:57.000',2,NULL,'2025-10-24 08:26:38.778'),
('3246b7af-93f1-4365-99f8-19cc8d72ab71','19e9a585-4bbd-4792-9b14-2af8605e433f','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-18 08:03:17.987',1,NULL,'2025-09-19 08:32:48.006'),
('324936f5-0640-4048-8641-e1550a228838','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','da081c52-d810-473b-87d0-2d031d14f75c','11 KAPAKLI BRONZE DOLAP','2025-09-16 04:58:51.000',0,NULL,'2025-09-19 11:49:55.086'),
('324e00ef-45d5-469e-89bf-811dd1160a35','6da14393-4c45-403b-a068-6c3e487296c7','a59c832a-288a-45ad-9922-f8c1ebf24d41','karyola ','2025-02-07 10:08:05.467',0,NULL,NULL),
('325d219b-c8fd-4d28-8c93-ebdf2ac1a0b3','5242bea6-83a9-46c0-b42f-249dd7e9ef0a','67c34dc2-4657-4323-8fc0-4ff05ed31067','DOLAP KAPAĞI-ÇEKMECE ÖNLERİ-RAYLAR','2025-08-18 22:47:17.000',0,NULL,'2025-09-10 11:21:16.683'),
('32611eab-fe9f-4168-b970-d430359cb03a','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','masa','2024-12-28 20:10:10.040',0,NULL,NULL),
('3262eeec-a561-4390-96bb-5b42347fb79f','304a2496-cb37-4646-a094-9980a688ced5','99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','dolap kapağı ve aplikler','2025-06-19 08:04:03.995',1,NULL,NULL),
('3268c72f-f164-49fe-b81b-8e7dba188814','635836b6-8a00-4f08-aa34-ecc10b10490c','4e8815b4-d0c2-43fc-9970-1419828c77bc','karyola takımı ve yatak','2025-05-13 21:50:39.000',5,NULL,NULL),
('3297f200-8a0f-4ca2-92d4-4f4920f4518b','89eb6491-3e20-44a2-80d5-2107251a822e','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM 6 KAPILI DOLAP ','2025-05-26 21:56:58.000',0,NULL,NULL),
('32a0f08e-82b4-4d3f-919e-5021b7c38cf0','f0a2b18e-c335-4984-8a55-31e2b94bbe44',NULL,'KOLTUK TAKIMI','2024-03-23 07:32:11.090',0,NULL,NULL),
('32b11ede-8890-497a-89a2-1672b3f73306','bbffe63d-9618-42a2-944f-0a4b76bb33ae',NULL,'YATAK BAZA BAŞLIK','2024-03-12 08:51:50.930',0,NULL,NULL),
('32bf5597-f8fa-4d97-9486-383228c7229f','46342cb8-9154-4a08-82ea-f958497b32c2','b2f38bcb-248d-4626-9f30-2fe34792a4a6','koltuk 3+3+1+1','2025-08-19 21:00:00.000',0,NULL,'2025-09-15 13:13:23.687'),
('32c3a303-b84c-41ee-a5cc-be771a19b1d1','32676e01-684e-4e88-b01e-02f858a6cf93','4fbb639d-63c8-459f-9820-d8a261260d94','4 adet sandalye 1 adet benç','2025-07-17 07:23:33.000',3,NULL,'2025-07-17 12:10:15.659'),
('32c9673d-ab89-44f1-a639-3cfa252bd8cc','3d40d0f6-e7bd-434d-934e-23f8c73df745','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-08-20 06:19:00.000',4,NULL,'2025-09-18 08:26:26.281'),
('32d1c391-0e5b-405f-9de8-09be33931280','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL,'MOBİLYA','2025-02-17 21:00:00.000',0,NULL,NULL),
('330c7e9f-37b4-4c76-be3d-cc5ead44c1b3','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL,'bazalı karyola+ ssh baza makası','2024-12-29 21:00:00.000',0,NULL,NULL),
('330e6f68-483a-4357-959c-dce6efe61d45','69d3c95a-372c-4578-8450-8194788ac842','a33a4b24-0961-4436-ae17-15a7d5334110','köşe','2025-06-29 21:00:00.000',5,NULL,NULL),
('33130430-eaf5-4f70-ad2d-3853f3838c0a','cefb457d-b590-4671-9309-7f0658b9b20e',NULL,'SSH KÖŞE PRÇ + SEHPA ','2025-05-06 21:00:00.000',0,NULL,NULL),
('33169806-6524-4d93-937a-ad7ed30d45b7','0e2dab47-10d3-49e3-9862-b25eac0ed739',NULL,'LIZBON KONSOL','2025-03-13 11:29:58.382',0,NULL,NULL),
('333b3000-8c9f-463c-be8e-d21ba57a8f50','a4c0af65-f3e2-484c-99b8-617b31d3f22d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Traverten masa ','2025-04-24 21:00:00.000',3,NULL,NULL),
('333ce140-8891-493e-86d7-a0823637ab0b','e3871616-22f9-4e6e-a66d-92c839f7de15','b22273fb-b00f-4afc-b708-2437f60ec61e','SSH BOYA','2025-09-21 15:00:00.000',0,NULL,'2025-09-25 08:04:42.388'),
('33404392-4c1c-4173-be7f-094c12291d2c','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL,'KOLTUK TAKIMI NOVANNİ 05333801784','2025-08-20 15:00:00.000',3,NULL,'2025-08-27 11:53:11.436'),
('33483979-937a-4973-b2d2-b22d22f5bb38','7d5531cd-fb21-4284-9145-817c08eee250','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','puflar','2025-10-08 23:09:17.621',0,NULL,'2025-10-16 08:17:49.131'),
('335647d7-7267-48c7-855a-609b33fe42db','8fc185cd-9441-4a92-b878-7da80b8d6502','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-10 12:15:29.000',6,NULL,NULL),
('335d49bc-ae8d-44e8-8d64-73df7dd93d77','142a82ad-defd-462a-a877-e872e40354a3','d8852582-d508-498a-b753-7d20cd810d34','SANDALYE','2025-06-24 15:00:03.269',3,NULL,NULL),
('336b127b-d219-49c7-8661-4258d8834fe9','0ea8d257-afae-4860-8574-29747c60c8c6','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-03-27 08:01:30.278',3,NULL,NULL),
('336ebf26-5fdf-43e6-8c1a-af40be244d84','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'6 sandalye','2025-08-22 17:07:28.781',0,NULL,NULL),
('337b85ec-7b64-4c15-a2cf-2a99fc9adf1a','1965b9c6-c511-459f-8f4e-dddb4f23f943','4ccea6fc-d526-479a-9e27-42643a5f294f','baza','2025-09-10 14:48:29.000',0,NULL,'2025-09-17 13:26:28.634'),
('33876c61-043c-41c0-be34-9359775c4e74','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL,'Traverten masa','2025-05-12 21:00:00.000',1,'2025-07-24 10:25:43.423',NULL),
('33cb1351-2b76-4ba7-b693-d1585dbb1338','888c1a17-6ddc-4bc8-b1ab-b00d72942811','7706d8c9-a8e3-47b4-a873-3563fd58b344','2 ADET KOMODİN','2025-10-07 02:54:31.000',2,NULL,'2025-10-09 08:47:31.115'),
('33dbb768-149e-400c-98f9-43ec0f49c85c','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','00f0d3f8-19e3-49de-9c57-a79bace86023','Prestige Yatak','2025-05-08 21:00:00.000',1,NULL,NULL),
('33e7c823-8a50-404c-964b-c302f6443c4d','571ee7d4-2abf-4a45-83e7-822277468f5d','3d32bf6b-0757-423d-ade3-bc6296974cd6','sandalye','2025-10-23 06:54:33.614',3,NULL,NULL),
('33fe2a4c-8ca3-4525-8c60-5c58c8ca73c4','73425516-263e-4f72-894c-4cfd33d6ee43',NULL,'SANDALYE','2025-10-12 18:00:00.000',0,NULL,NULL),
('340fa16f-d3f8-4424-983a-576ebd7c7862','1864d9b1-dcd3-4670-aa46-78f5576aa7cd',NULL,'MOBİLYA','2024-07-20 10:56:41.873',0,NULL,NULL),
('341315f1-fc40-40b8-b90b-8982a81a0feb','211e8ae7-95cf-4dc5-9e14-70ad976a2f56','cf90c370-208a-4021-aaff-f9220970bca9','Sehpa ayağı','2025-09-13 21:00:00.000',1,NULL,'2025-09-16 13:49:50.726'),
('343abbb0-3b83-4960-99bb-3b111e2a8797','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7','e46f75d9-f1dd-4753-8e6e-717c17942cfd','Petra Mini köşe','2025-09-19 06:00:00.000',3,NULL,'2025-10-02 13:06:27.698'),
('3444d780-425a-4b22-97b8-3d121d545fb0','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL,'3lü Koltuk ','2025-10-12 15:00:00.000',1,NULL,'2025-10-13 09:17:45.576'),
('344aaa06-6752-4614-be63-13e9875ccf3c','19c26519-0688-4a4d-a323-ec65ddad8463','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','180LİK YATAK','2025-09-11 00:01:14.941',1,NULL,'2025-09-15 09:53:41.698'),
('346c41d0-7f77-45cf-8572-ddf0fc62cce2','e3871411-a780-42a7-af06-7808ea097f15','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-23 15:00:00.000',4,NULL,'2025-09-30 07:28:59.526'),
('3471ace5-ec37-4230-b3f7-45e2c06b4427','9d816e36-46d4-475f-ab4d-8dc4e121cb72','7e44b405-41d5-4dca-ae1c-595516035a61','PELİN YATAK ODASI+ KONSOL','2025-02-10 13:00:16.000',0,NULL,NULL),
('349275ec-e320-40aa-a5b5-1c57b1cf65f0','936577ed-02ef-44c5-9226-4d241235c1bf','e7220662-73b8-46e4-9f5d-7e977cc23448','masa orta sehpa','2025-10-03 00:00:00.000',5,'2025-10-09 13:56:49.410','2025-10-09 13:33:57.026'),
('349ffa09-9e8e-4eaf-8f66-763e3dfa18ab','2bdc9d94-c171-475a-ae24-5adf3fadaea9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x210 cm nevada ceviz masa','2025-09-23 15:00:00.000',3,NULL,'2025-09-26 10:59:57.192'),
('34a4ab26-f53a-4295-9345-9762f27ce36a','2c93ce34-e03d-44d9-994a-7219e1c623b0','4fbb639d-63c8-459f-9820-d8a261260d94','SANDALYE 8 ADET','2025-08-28 04:18:38.000',4,NULL,'2025-09-02 09:03:40.428'),
('34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c','62c72b38-75cc-4808-b1d5-7296d0000146',NULL,'MOBİLYA','2024-06-08 07:26:17.180',0,NULL,NULL),
('34ddd883-283e-4768-b94b-c347224b0365','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL,'sehpa ve aksesuar ','2025-05-08 10:15:13.000',0,NULL,NULL),
('35078979-d045-4d1c-9196-16abbc7bb50d','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL,'MOBİLYA','2024-10-23 13:59:38.360',0,NULL,NULL),
('350bfbae-a0e2-41c9-a8fa-43c38d89f2f7','bfb3177d-b014-4d5f-96ed-429027d88083','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe ve 160 lık set','2024-12-23 21:00:00.000',7,NULL,NULL),
('35107d19-3a55-4de2-9393-cd2790b9c947','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b','fd87365f-791b-4129-a329-2bbc5296e508','MASA AYAĞI','2025-09-12 02:00:00.000',0,NULL,'2025-09-12 08:05:12.286'),
('35108694-a340-4204-a046-217b0f92915a','5fcfabaf-abfd-496b-84fd-6ef04452b85c','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','MASA TV ÜNİTE KOMİDİN ','2025-08-14 21:24:17.605',0,NULL,'2025-08-28 14:21:46.431'),
('351157cf-15d1-4ac1-ad90-0df56b569eab','3fba1e1a-d3f7-4a72-b88c-284f205185ce','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-05-28 21:00:00.000',4,NULL,NULL),
('3535d433-eb38-4879-84b4-dbf8410809cd','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'2 dolap','2025-08-22 17:08:41.221',0,NULL,NULL),
('354520ce-314f-464c-9c08-78907baa5076','e044efcc-ec9d-4901-8d6f-56f4f548947a',NULL,'3 kutu sandalye','2025-01-27 11:58:20.680',0,NULL,NULL),
('354bac1c-ec3d-48a4-af37-546517794e7d','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL,'BAZA BAŞLIK','2024-11-02 07:49:03.469',0,NULL,NULL),
('354cc431-6494-4803-abf9-6c2c326b7a22','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,'2 ADET ÜÇLÜ KOLTUK','2025-06-11 21:00:00.000',0,NULL,NULL),
('354f4bd6-093b-4fa1-b444-b083fcea7323','fb2fc179-a854-474a-abee-016abeacaafd',NULL,'3 kutu sandalyen mustafa ','2025-05-19 21:00:00.000',3,NULL,NULL),
('3557e21f-77ba-4476-8e3c-5d5bb432eae7','c551c482-a643-4cab-b50a-a3615f511791',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('355c276f-d00a-4957-99b9-d15a2d8a1967','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL,'KOLİ','2025-09-30 15:00:00.000',125,NULL,NULL),
('3570bcaa-ac5e-4b90-8759-34202e2c5a95','692c748c-7c37-415c-b3d9-996281a0eba4',NULL,'MASA SANDALYE','2025-02-13 08:54:13.393',0,NULL,NULL),
('35727e24-1c8c-45f2-b4a7-bc5944f5cb5a','fe9bad3a-ed39-41a0-aefb-3b353269e29a','61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','MASA ','2025-08-27 03:54:01.061',3,NULL,'2025-08-29 07:45:57.859'),
('357ff3ff-ec23-4db1-a7cb-15e0c80b4018','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL,'DEMİRLER','2025-03-23 21:00:00.000',0,NULL,NULL),
('35822066-f6a1-4175-834c-d91d818c9576','8fb47c44-2d49-4fed-9d20-275d1c3b846a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 ceviz orta sehpa','2025-08-29 03:53:28.694',2,NULL,'2025-08-30 10:57:49.006'),
('35957835-23bc-4617-8278-5233fc6ee18a','afe81c71-4f9c-44db-99e3-a9a478763539','5485c336-8437-4cb0-bae1-d55f2b1d2698','KARYOLA','2025-08-26 15:00:00.000',3,NULL,'2025-08-28 13:19:35.545'),
('359880a3-777e-425a-a9fb-c44790c1fdd7','d5f36194-fd5d-4924-9a3b-f9c7b729d368',NULL,'KOLTUK ','2025-02-09 21:00:00.000',0,NULL,NULL),
('359f4965-11f0-4a4d-be60-e985145d2573','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL,'BAMBİ MAGNASAND 180*200 YATAK','2024-12-17 21:00:00.000',1,NULL,NULL),
('35afc5fd-dcd3-4a9e-8f78-459b59050c7e','9665df81-a895-4779-ad78-e6fc3e7f28df','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-31 01:02:24.000',1,NULL,'2025-09-22 12:01:19.065'),
('35c4972e-cf76-4c25-83ec-77219621c69a','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('35c80989-4689-4b96-88e3-4723c62adf39','32af2488-e641-4d93-9e64-e4ff7977ab48','5fd406cc-8ac0-444f-9ac0-390a68b09f2e','Berjer','2025-08-08 00:15:55.135',1,NULL,'2025-08-19 09:12:15.055'),
('35d424dd-3525-4794-b87b-ac6540bba404','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'GRANDBEDS DELUXE 160*200 YATAK','2025-02-18 21:29:32.000',1,NULL,NULL),
('35df23c7-4cca-4641-b82b-bc6dfa711f1e','90e758b9-fc91-49ea-ab6c-5838a25327d1','37998928-93fa-4836-b160-317ec8eab2bf','MADRİD ÜÇLÜ','2025-07-30 21:00:00.000',2,NULL,'2025-07-31 13:08:33.963'),
('35eeff3b-e518-487c-a326-3bee90657fcc','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL,'KONFOR KOLTUK','2025-03-05 12:00:00.000',0,NULL,NULL),
('35f2a33e-b201-4279-b8cb-8deee264e5ac','26eebedd-d4ee-429f-bfe5-964620f33452','01c95349-72b9-482c-8165-7af9590e15f4','6 SANDALYE','2025-09-21 19:00:18.456',0,NULL,'2025-10-09 08:25:53.272'),
('360689a7-cd03-451f-9a81-5eca86ce2d53','56569bbe-2460-4ca9-903c-508e769e4a29','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-10-31 12:01:24.000',4,NULL,'2025-10-03 09:31:08.952'),
('362b235e-d786-4066-bf89-32d7106b3ab0','96fd2ec1-bc18-4e5c-aa54-b63b621f826c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-08-24 23:44:00.000',6,NULL,'2025-08-28 07:07:29.763'),
('362db1a1-2d91-4ad3-9064-53ee5a0289b5','bc9cdd42-f20d-47dd-a305-ef4f97580e2c',NULL,'Test','2024-10-07 18:07:51.320',0,'2024-10-24 12:48:25.987',NULL),
('36523e42-53d9-43b4-b49d-1e28e748f6d9','50bc90ae-fedc-49be-8709-4c99c7900a95','e7220662-73b8-46e4-9f5d-7e977cc23448','masa-orta sehpa','2025-11-09 15:00:00.000',5,NULL,NULL),
('3657288c-bdfc-4aa6-8bcb-d82645dbcad0','7c6c2dd1-52e2-4059-a97e-d340167fe009','c59ab47a-e990-43f5-afe9-6170600dc642','traverten palet','2025-06-19 09:24:15.873',0,NULL,NULL),
('365e39ee-f73c-4477-836f-a2b97cf0bbad','33cf2dd5-d360-43eb-8f3a-27e48526fd03','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa','2025-09-02 15:00:00.000',2,NULL,'2025-09-15 12:41:02.753'),
('3665a83d-24be-4c54-a88a-abc63e2fa2ec','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL,'Masa','2025-02-13 15:38:11.226',0,NULL,NULL),
('367f3a5e-bb59-4b08-ac77-fb45fbe38388','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL,'Modüler köşe','2025-09-04 18:00:00.000',0,'2025-09-07 09:44:59.474',NULL),
('368574ad-455b-429e-98df-eb01c78f0d8e','5e55f20c-e2ab-4965-a16e-95af4a5ed4da','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-07-16 09:00:00.000',6,NULL,'2025-08-07 13:38:16.629'),
('3686d41a-cbdd-4250-b290-6122476b8f7f','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL,'MESA','2025-08-13 21:00:00.000',0,NULL,NULL),
('3693a7fa-0a40-42ee-b86b-ce0f3a59c4a1','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'KUMRU DENGEMA 361 ZEN MASA BEYAZ MERMER-KROMAJ AYAK','2025-08-26 01:56:40.000',1,NULL,'2025-09-08 12:00:07.860'),
('36962bfe-f2be-4a19-89f1-05a5fec42d74','a149c299-f700-457c-ad04-aac7b10d4609','d2e3291f-fade-46dd-ac59-68c18dfdd3c9','orta sehpa ','2025-02-17 21:00:00.000',1,NULL,NULL),
('36b532ab-9729-418d-95fa-3d28b03d7faa','8886c04f-f904-4e77-a2f1-25b72bcd1e91','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-28 17:19:56.000',3,NULL,'2025-09-30 11:34:53.709'),
('36ced38f-51af-4146-9bd7-7f1d6c0f4201','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-05-11 21:00:00.000',6,NULL,NULL),
('36d2ccf2-df1a-405a-b3c7-cef507b73ba1','a97987c9-ee05-4a3f-94b1-9f85768072d8','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','160x200 set','2025-07-07 10:32:46.894',4,NULL,NULL),
('36dd80b4-449c-4041-8f6c-8ecd754e0237','adadaf60-4a49-481c-8c1e-bad7b1cfd588',NULL,'MOBİLYA ','2024-12-08 21:00:00.000',0,NULL,NULL),
('36e683d2-d1fa-498f-845e-343164664c82','b6bfea48-486d-4441-a306-788893764967',NULL,'Mobilya','2024-10-29 21:03:39.000',0,'2024-10-24 12:48:31.707',NULL),
('370a7590-6b28-4a62-8bc9-2de0a5c0a969','bf55ba8d-4886-4535-bedc-892994749297','8829a318-3e88-4aa8-8e64-06a4b8a1aefb','Köşe koltuk','2025-08-31 18:00:00.000',0,NULL,'2025-09-02 08:30:05.734'),
('372213fa-c2e3-4293-b83a-0a8cb1587967','3f9e45b1-4602-41af-96ef-65e5dc6414f2','d00fcabb-1fa6-406e-975a-645a02949630',' NİKOLA KÖŞE KOLTUK  170*420*270 CM ','2025-10-12 18:00:00.000',0,NULL,'2025-10-13 13:22:45.001'),
('372e1bc8-6cab-4d95-850a-8adaef911ece','2c5c126c-885b-423a-9e95-19a5f6a09a61','a3610da8-8e0c-417c-8834-1223bca4fb34','3+1+1 koltuk','2025-07-24 18:00:00.000',4,NULL,'2025-07-25 08:48:39.960'),
('3731979c-f00d-4cd6-8126-64312dfd37b0','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL,'yatak','2025-05-30 05:52:03.564',0,NULL,NULL),
('37344bde-d918-41e0-a71e-d46212dfd17f','8634d29b-6164-4e3e-a0b9-d50827c18702','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa + sehpa','2025-10-06 02:00:00.000',6,NULL,'2025-10-06 10:49:02.507'),
('3735c345-c4d0-40fc-afc7-359f15617a16','39388d94-97db-4210-9b52-61151393cf23','75384ade-94c9-4ce5-9273-2628441b4dff','efes köşe takımı','2025-01-10 21:00:00.000',6,NULL,NULL),
('3748b1cd-e92a-46d3-9822-bcd08e57fe11','0991bee4-87cb-4b77-85ae-0f81a11d33ba','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','YER MİNDERİ','2025-09-03 20:28:51.303',1,NULL,NULL),
('37640361-f136-4df4-b3b6-feaee27509fc','f7979b44-eac7-41b0-a981-1f2165181d24','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE TEKLİ + ORTA SEHPA + PUF ','2025-07-16 15:26:06.000',0,NULL,'2025-07-17 10:01:15.057'),
('376d58bd-0c2a-4ae6-b35a-b4c5a8512820','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL,'DELUXE YATAK 180LİK ','2025-09-24 17:59:05.063',0,NULL,'2025-10-01 13:30:30.419'),
('376f6b8d-92e3-4ec4-991a-cb710a079011','86762eef-fd62-4b28-b589-b418608643f9',NULL,'masa','2025-03-18 11:00:00.000',3,NULL,NULL),
('3771bea7-1ece-4fa1-b5c6-1e79ed5a221f','97162218-d772-45a9-81ad-57dead4ac1ff','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-10-31 01:00:00.000',4,NULL,NULL),
('378dc493-c6a4-4c83-98e1-1832a246c86e','cc203893-33b0-4595-9231-86901a0a9cf9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 koyu ceviz masa','2025-09-01 12:00:00.000',3,NULL,'2025-08-30 10:45:38.291'),
('379323a0-114c-452e-9499-778f51675cf1','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x200 koyu ceviz masa ','2025-10-24 12:00:00.000',3,NULL,'2025-10-24 08:09:48.837'),
('37a18a30-af93-43da-9f9b-111b9f281d48','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL,'TONER','2025-02-26 21:00:00.000',0,NULL,NULL),
('37a53d90-a8ab-438d-9932-9ac6888f952f','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL,'PUF','2025-05-21 08:18:00.000',1,NULL,NULL),
('37a97bfc-766a-4865-bc4c-1c02e1ff86e2','8974646e-d2f4-461a-a229-980f5d4d3462','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe koltuk','2025-07-01 10:37:21.762',6,NULL,'2025-07-16 14:48:43.791'),
('37bd2ed5-d318-464e-a715-446bcc4a4d10','22345714-b5fa-41b0-909c-acf5f1e9d725','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ceviz','2025-07-03 21:00:00.000',6,NULL,NULL),
('37c1f318-4f88-462a-894c-a48b5586a30a','24134964-1a25-4af7-9b32-d97d0a1be4aa','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','köşe koltuk','2025-03-27 21:00:00.000',4,NULL,NULL),
('37c3017a-3b7f-4780-ad61-3f55a357abcb','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL,'RAMS ORTA SEHPA ','2025-01-13 10:17:39.720',0,NULL,NULL),
('38109a6e-8ac6-46d9-8530-7fd5b3725869','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL,'MOBİLYA ','2024-11-24 21:00:00.000',0,NULL,NULL),
('38111575-7990-4cd3-8e28-5bd3d062443f','e5aec591-aa43-4db5-8228-1d08c0c983d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye galxy bej','2025-07-31 21:00:00.000',6,NULL,'2025-08-04 08:25:13.122'),
('381d724a-7939-414a-8b9e-996cb1553398','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL,'MOBİLYA ','2024-11-18 21:00:00.000',0,NULL,NULL),
('38249fb3-e3a3-4e48-a2c7-fb5905a0499e','9016d7f6-7477-4afe-9a6c-22410434be77',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('3828609d-527a-4927-98a6-1f8c5a67685f','83c15065-f7ee-4656-8aa9-c87a3e40a083',NULL,'1pk kumaş','2025-01-21 21:00:00.000',1,NULL,NULL),
('382f1f7d-825f-4f4a-9f87-598a8856a6ac','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL,'MOBİLYA','2024-05-04 07:47:09.690',0,NULL,NULL),
('3842edfb-94f9-4f7c-b110-2ea10ce622e7','ed33a630-2ac9-4148-a314-b2a44a100a96','afd23062-6aa0-4d23-90f5-fd76536bb033','köşe koltuk','2025-08-17 15:00:00.000',5,NULL,'2025-08-21 13:26:53.967'),
('384387cf-8c35-4d32-b59d-2400336e8b60','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL,'Masa sandalye','2025-10-01 15:00:00.000',0,NULL,NULL),
('384c6719-2d91-4530-8e9e-3ddd44fc84ef','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL,'MOBİLYA ','2024-11-24 21:00:00.000',0,NULL,NULL),
('385e75f8-3058-40ef-83bb-1e5b74b7d846','5f8e022a-f026-498f-bbc5-f04ab0863363','26360aba-80e2-46ad-b172-f1052f9526f6','Döşek','2025-07-04 12:28:49.603',1,NULL,NULL),
('3876592f-6f00-49eb-8113-5043eaf45b52','026148a6-1f09-460e-bbc5-d795abe9cde4',NULL,'müşteri teslim tarihini erteledi','2025-11-30 22:59:21.000',0,NULL,NULL),
('387c0dbb-aaca-4bdc-8257-0a8a920eca0c','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL,'90x190 Marmo masa ','2025-01-15 21:00:00.000',3,NULL,NULL),
('38bc7e3b-95ee-4744-9059-2f872050d26e','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL,'ÇUVAL','2025-07-07 21:00:00.000',0,NULL,NULL),
('38c9e885-9a1e-42c6-bd22-aeabea344a53','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL,'Mobilya ','2024-10-28 13:16:01.191',0,NULL,NULL),
('38d02296-46cb-405f-9d09-5974d7326df2','e784e31f-ff92-404d-ba37-0dfbff43b309',NULL,'karyola + yatak','2025-10-10 03:01:53.000',0,NULL,'2025-10-20 11:53:09.965'),
('38dae227-f2c9-475f-bf36-c9eafe154a88','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL,'Mobilya ','2024-10-21 07:42:32.286',0,NULL,NULL),
('38e0a984-4740-4aab-8d9c-e14e6fbca5d2','0abef697-325b-4fde-a364-d1f3c1d2b3f9','cf90c370-208a-4021-aaff-f9220970bca9','masa','2025-10-27 18:51:58.000',3,NULL,'2025-10-13 09:40:13.311'),
('38ea6d71-f51a-43ce-a3ea-967bdd9f527d','763269f0-c331-405d-955e-8f2aa8b9564e','9e34f6c5-486c-42cd-aeea-59c5c63f7766','köşe','2025-01-12 21:00:00.000',3,NULL,NULL),
('39198d63-cdc7-4c01-ae16-1bf161f9e818','48b57732-88ad-473d-a3a7-b8630725788e','94451294-fecf-4760-b1f6-7bcfb8ca1734','orta sehpa','2025-10-23 22:00:12.309',1,NULL,NULL),
('392002f0-0072-4e34-8b2c-a20b4626c4e6','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL,'MOBİLYA','2024-04-27 08:17:59.095',0,NULL,NULL),
('392e6688-b280-4b27-9b5a-97925f3d9c8b','4ac57e98-4d31-4029-af5c-63c778250adc',NULL,'MOBİLYA ','2024-12-01 21:00:00.000',0,NULL,NULL),
('392f085e-940a-4da0-833a-83d25e000858','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL,'KOMODİN ','2025-02-12 13:24:30.787',2,NULL,NULL),
('393a3e6b-f235-486c-87ca-8b44a4bf1559','dc6a520d-9bc9-41d3-90fd-f505b28363bf','0f300a3b-b3d6-4b60-924b-aa70cd54141e','SSH CAMLAR VE KONSOL AYNASI','2024-11-03 21:00:00.000',2,NULL,NULL),
('3943ece7-1eba-44a5-bbe0-8a7ab3b8fb5f','5289d63f-a7a4-464d-80ad-20c84233ff2b','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-10-14 21:30:41.000',3,NULL,'2025-10-20 08:57:52.048'),
('3944c9dd-e08b-41db-b450-28a81683aabd','6ba9900e-286c-40c2-bd00-67d4e8a2212a','3b6fa63c-5b6a-4502-998a-e848aaf7eee8','BONNY MASA SANDALYE ORTA SEHPA','2025-07-20 21:00:00.000',0,NULL,NULL),
('39478666-fad8-4b04-b7f5-a9bfd5e65c37','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL,'Natura sandalye ','2025-02-26 10:51:25.000',4,NULL,NULL),
('3952cb22-55e9-4578-a751-ee8895e55cf5','1943ad09-88d5-4276-8d90-1798cf356edb','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-03-18 10:43:08.953',3,NULL,NULL),
('3955479c-3ada-4444-9b91-1b60a8b0ffab','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL,'Traverten orta sehpa ve yemek masası','2025-10-02 09:00:00.000',1,NULL,'2025-10-03 08:51:01.349'),
('395fbbe9-753a-43cd-a397-22c019814296','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm orta sehpa ','2025-04-24 21:44:04.000',2,NULL,NULL),
('397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d','0884b3d4-5cc0-44eb-9508-2f4bc25839ac','d2e3291f-fade-46dd-ac59-68c18dfdd3c9','ünite ve konsol aynası','2025-02-17 21:08:25.000',1,NULL,NULL),
('397c6c0c-2b5f-44b0-8b19-823a5a63374e','9aebce2f-4ca4-4d19-b7e8-f47f6e15e1a0',NULL,'boya','2025-08-26 21:00:00.000',3,NULL,NULL),
('3987bcda-6531-4738-8815-187fd84bf71c','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL,'Mobilya','2024-08-26 11:47:58.121',0,NULL,NULL),
('3988ea20-dee7-4b87-8731-bedc6f18d112','00cb480a-305b-41e6-8cb5-337678c881bf','2e3f153d-057f-4d25-9484-2b239730eaf4','ORTA SEHPA,YAN SEHPA , TV ÜNİTESİ','2025-02-14 21:09:37.000',4,'2025-02-19 09:58:44.930',NULL),
('39981e5e-e36e-4c44-b5a0-d150be8ce263','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL,'SANDALYE','2024-11-04 21:50:51.000',2,NULL,NULL),
('39a2d7af-f64a-40e2-8bc2-27483789b401','c5474c30-8b56-4105-b623-902ebb690698',NULL,'KOLTUK TAKIMI','2025-07-09 12:40:35.992',0,NULL,NULL),
('39e13ebb-f956-45fe-b3a6-284deb267677','c85f0d3f-5c69-47d4-9b44-822058d763b2','b94604cf-4431-4d3a-bbbe-0fab66df0701','Sandalye','2025-08-29 01:47:37.601',3,NULL,'2025-08-30 09:32:59.910'),
('39e33ee0-0790-4b60-909a-d98610bc0a69','f285a0e0-bae2-40c4-9bd7-33ad4420a56b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','1 ad. yatak ve ssh küçük paketler','2025-01-08 21:00:00.000',4,NULL,NULL),
('39e3c574-5864-47ea-a675-a89e703a9be1','833e1960-d162-4228-ac7a-54bd28d48049','a59c832a-288a-45ad-9922-f8c1ebf24d41','Baza başlık yatak','2024-11-08 08:45:06.058',0,NULL,NULL),
('39e46e46-90b5-4ba0-a0dd-d262263fc640','c77c75ce-e3d2-47ae-8608-121fa3b3621d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x240 cm orlando masa','2025-08-22 15:00:00.000',2,NULL,'2025-08-26 12:42:14.594'),
('39e88a96-6243-4852-a38c-9846154a9d45','1080adba-e901-4380-93d1-e3ffaab7c355','05010251-884a-4da0-8f68-5c08a5874e36','BELLA KOLTUK TAKIMI ','2025-09-18 17:37:36.000',0,NULL,'2025-09-25 11:44:15.130'),
('3a08fb4b-5cc4-4e68-847f-00548d024407','0d55a789-9635-407b-8c56-f61ca0500289',NULL,'berjerler','2025-04-22 10:00:00.000',3,NULL,NULL),
('3a133e35-97e7-48eb-8cf2-15d2cfe04475','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL,'Mobilya','2024-08-29 12:05:04.397',0,NULL,NULL),
('3a3d0efb-40d8-40ad-b5ee-8ea665daa2ca','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL,'koltuk','2025-08-14 19:00:00.000',0,NULL,'2025-08-21 10:50:25.621'),
('3a8806d9-8f36-4702-b4a9-c0d54762186c','d993ce90-f47a-45f5-b714-cf612685b50d',NULL,'KOLTUK ','2025-02-05 21:00:00.000',0,NULL,NULL),
('3aa544a2-709f-4f49-aab4-6b667fe57a9b','9fd3dea4-8f19-4273-b4a8-c62b1771e97a','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3+3+1+1 koltuk takımı','2025-01-28 21:00:00.000',4,NULL,NULL),
('3ab2fd1d-32f0-4ec0-9f6b-d89427ef7bea','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL,'KOLTUK TAKIMI','2024-05-29 09:49:57.792',0,NULL,NULL),
('3aca7d6d-09cb-4903-812e-7535a083b09c','5b410819-0339-4c69-a500-825f92b681a3',NULL,'mobilya','2024-11-07 21:00:00.000',0,NULL,NULL),
('3ad5cc89-9af6-481f-a031-0d475e3ff3c6','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL,'Traverten sehpa 70/120','2025-01-12 08:00:46.212',2,NULL,NULL),
('3adbca04-ebb4-4d10-b7d0-613696f12fd4','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL,'YATAK BAZA','2024-11-02 08:10:45.699',0,NULL,NULL),
('3addd019-8343-4d32-a467-6e0f90498af4','4c0fdc4e-fba8-41b2-955c-295b479ea428','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-29 21:00:00.000',5,NULL,NULL),
('3aea33f3-e1e8-4f93-acfa-e05c9eae91cb','6a397517-cdaf-4836-a678-f168177b94a2',NULL,'MOBİLYA','2024-05-23 07:18:02.211',0,NULL,NULL),
('3b0e9841-c966-4b4f-b991-a5c0e86a8dde','7786397b-871f-47e3-8e4a-cb1bd837419f','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','SSH KRİSTAL ORTA SEHPA ÜST TABLA ','2024-12-01 21:00:00.000',1,NULL,NULL),
('3b54d3cd-52a7-4fd4-a4d0-94accfd2dbfb','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL,'Traverten masa kasası','2025-06-30 21:00:00.000',0,NULL,NULL),
('3b598604-d61a-4eaa-af26-59919c1f1d89','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('3b92a39e-82f3-477a-9384-ce2b85988711','67dfcee1-7fd7-4c4a-bd62-3036e85f4035','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-07-18 09:45:41.000',3,NULL,'2025-07-18 07:28:14.654'),
('3ba27633-a526-475c-9e24-fa446137f6ce','16a741e3-499a-4c78-b643-f7c20a086922','aca023e4-d25e-4ddd-bd68-90d5e29b4a3b','VİRAL KOLTUK TAKIMI','2025-06-19 21:41:02.000',3,NULL,NULL),
('3badfe11-f9f9-4b71-919e-3999791add02','4776d10a-2cab-47b6-b212-60c0ab466107',NULL,'sehpa','2025-04-17 09:11:39.000',4,NULL,NULL),
('3bc08a9b-6927-40c1-bcc0-c1c07c409f89','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x230 cm Traverten Masa ','2025-09-23 15:00:00.000',3,NULL,'2025-10-02 09:52:49.427'),
('3bc9ea92-6f4d-4a9c-bca3-f2b3b8676ad3','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL,'3lü Koltuk','2025-10-13 02:43:52.019',1,NULL,'2025-10-13 09:17:45.576'),
('3bd559dc-a368-4e53-946b-497ebc16d07f','4c0fdc4e-fba8-41b2-955c-295b479ea428','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-30 12:51:45.000',1,NULL,NULL),
('3bd671c9-374e-4431-93c3-1d44ad60103d','93cfee64-4853-4395-af0b-9caa4355f18f',NULL,'Koltuk takımı','2024-06-13 08:02:05.897',0,NULL,NULL),
('3bda7c8f-d10d-4b97-b22d-c5e0ee73bec0','5063dfa2-5328-4697-84aa-52c286384d28','0d64216c-fe9d-486b-b722-9710eba2c609','DENİZ KOLTUK','2025-02-10 13:00:00.000',4,NULL,NULL),
('3be6b7c2-9157-4cfe-ac52-cd140ce96b78','ad3de3cb-31f6-433a-9d51-1c613adb9f27',NULL,'Sandalye','2025-10-27 07:51:58.000',0,NULL,NULL),
('3c1c7892-5b0f-43f6-a6f0-8f933b1d36d9','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL,'KONFOR KOLTUK TAKIMI','2025-04-21 21:00:00.000',0,NULL,NULL),
('3c1cb08f-5b16-41b5-872a-3dbcbd15c877','ce5ca5c1-b954-48fc-bed5-a9638449c61d',NULL,'Koltuk ','2025-05-25 21:00:00.000',0,NULL,NULL),
('3c259a66-c790-405c-9ea1-ff6223397b52','28d77c29-5660-4bd1-beec-e4790f6ae7e8','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-08-15 12:12:03.003',1,NULL,'2025-08-15 12:54:44.773'),
('3c4d5f8e-e37b-41d5-a637-470c721812b7','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL,'KARTUŞ KOLİLER','2024-05-11 08:37:44.658',0,NULL,NULL),
('3c6c148b-48b9-42f5-a540-77250f81fc68','1fb32e39-501f-48b7-ba50-860c26209b78','d8852582-d508-498a-b753-7d20cd810d34','Koltuk','2024-11-07 11:00:00.000',5,NULL,NULL),
('3c7929e9-636a-403f-ba4c-04d76c585d38','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL,'KÖŞE TAKIMI','2024-03-30 08:59:42.143',0,NULL,NULL),
('3c799be3-cf4c-4ca1-9e86-e1a3e476c0da','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL,'sandalye','2025-05-15 21:00:00.000',4,'2025-08-05 13:05:06.869',NULL),
('3c867d68-85ff-4dfe-b09a-ec3dac40e2c1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'ödeme var','2025-10-27 12:28:44.000',0,NULL,NULL),
('3caeee29-8112-4bd0-85c6-d8fe04eb2b45','aae115aa-05f3-4d7c-b25f-3b266a2aa636','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2025-02-10 11:03:58.000',6,NULL,NULL),
('3cb4049f-f049-43eb-aed9-c5807606078d','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL,'SSH','2025-04-14 21:00:00.000',0,NULL,NULL),
('3cd9c83f-509e-4b69-a8a0-bb45f200c3d4','932af7f2-df9e-4032-b8ab-056455a1eb6f','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-18 12:14:00.000',3,NULL,'2025-08-22 11:29:07.269'),
('3d059bd7-f20e-40fc-85ae-9f5fd41c6087','6ee1e536-13dc-4a76-a70e-ab75c46f193b','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-10-02 19:39:27.000',2,NULL,'2025-09-03 08:11:36.797'),
('3d6f2769-d5b5-4e22-9625-2b3a9d28abaa','1f6f8681-0eb0-40ff-b660-5e573091098c','66fe0e79-2382-4817-9bdf-4379c5fcde00','Koltuk','2025-09-14 21:00:00.000',0,NULL,NULL),
('3d6f2aed-8c6f-41aa-a8a0-136eeef8c725','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL,'KOLTUK TAKIMI','2024-03-30 09:18:48.566',0,NULL,NULL),
('3d736ea3-973a-4d02-ac36-6a5148cceb76','c76998eb-67dd-4f0b-bee2-f2c6820bdcce','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-03-18 21:00:00.000',3,NULL,NULL),
('3d740bd3-88dc-482c-bec6-f4b0fae42557','dbf55493-8328-4ef5-b04e-34ca82fa458e','868310f2-36fa-474f-a446-379434c782e1','köşe koltuk 2 takım','2025-09-22 00:00:00.000',0,'2025-09-26 09:01:15.602','2025-09-24 08:42:18.402'),
('3d9dc8df-4878-4a07-9d09-865db592b020','35cd7f79-46ea-4b11-b481-f22dd082a5d0','a5a2020b-3a79-4455-9faf-a0a1ee3107f5','MASA','2024-12-29 21:00:00.000',2,NULL,NULL),
('3da17157-28be-4bae-8dcc-745d0e93e591','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL,'Mobilya ','2025-04-25 21:00:00.000',0,NULL,NULL),
('3da7ca23-1096-4e12-bda9-57170294f0b1','0fe32732-478d-4914-8b33-290a72aa934f',NULL,'Palet ','2025-04-17 21:00:00.000',0,NULL,NULL),
('3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL,'Mobilya','2024-08-31 11:55:21.081',0,NULL,NULL),
('3e02ce04-172b-4192-bb9f-c68025b0f1da','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL,'SİNEKLİK MAĞAZADAN ALINACAK','2025-10-09 15:42:15.474',1,NULL,'2025-10-17 07:43:31.572'),
('3e25f462-8e3b-4316-824a-96abe6ed469b','90958150-7001-4d34-b42d-731ec53aa3d6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-10-10 08:53:00.000',6,NULL,'2025-10-14 09:17:45.355'),
('3e3d6599-2fb2-4a2c-8536-95e2e40e39a8','4ab249eb-ffb9-4bfa-ab09-0071234e0617','0f300a3b-b3d6-4b60-924b-aa70cd54141e','SSH SANDLAYE ','2025-02-16 21:00:00.000',1,NULL,NULL),
('3e4aeb48-9271-448b-8fc6-4ac81de46fb3','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL,'Halı','2025-10-02 09:20:00.000',1,NULL,'2025-10-03 08:51:01.349'),
('3e4d9220-ce76-450d-a76c-9787b1f4433f','580415fe-7112-4432-89b1-efebbd154841','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa + sehpa','2025-10-01 19:00:00.000',6,NULL,'2025-10-06 09:49:11.309'),
('3e5289c7-c298-4871-a480-51d39580b95c','0f7b6d43-5763-4b5b-93f8-46153e09c05f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-09-22 23:07:57.000',6,NULL,'2025-09-26 11:16:14.844'),
('3e68a7e1-b64d-4ae8-830f-cb72c4eec04f','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'MASA ORTA SEHPA','2025-10-08 15:38:19.239',0,NULL,NULL),
('3e94adaf-47a4-41f4-aeaa-4ab8813c523b','321b5102-f51d-4d38-a21e-c4a2191ea4ac','530a4862-a7ee-431b-9915-be6cdc9904bc','köşe oturumu','2025-01-02 21:00:00.000',1,NULL,NULL),
('3e9ad985-6246-4d8d-9572-1013d4c7f16a','05e527f9-8a74-4f42-b673-b05994d5555d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye galaxy krem','2025-10-24 04:39:19.000',6,NULL,'2025-10-24 08:26:38.778'),
('3e9ecbc9-5b86-47a4-81b8-70e21caed934','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL,'MOBİLYA','2024-09-03 15:24:18.074',0,NULL,NULL),
('3ea0fc9a-f0a3-42d3-821f-f15859ccac41','5d3f012b-7248-479f-97ec-c01599311f5c','5f8d450a-340b-463c-a26d-f9bbade0a8c2','Milano Koltuk Takımı (3+1)','2025-02-25 11:00:49.000',2,NULL,NULL),
('3ec26908-d18e-42fc-bdca-909ed5ad501d','20ba0bfa-9720-4a4e-8dc3-12812663abec','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-05-04 21:00:00.000',3,'2025-05-30 13:57:17.786',NULL),
('3ecd4ca0-9443-4471-bfe6-11a270cc8e1d','9db12415-2152-439d-bb63-bebefc3c640c','bc1b9fd7-95d7-4d5b-a84e-684140acc414','viral yatak odası','2025-01-27 21:21:06.000',1,NULL,NULL),
('3ed59ca0-8227-4a39-8e31-9e1c6c9f80e4','48b57732-88ad-473d-a3a7-b8630725788e','94451294-fecf-4760-b1f6-7bcfb8ca1734','masa','2025-10-23 22:00:00.000',3,NULL,NULL),
('3ee1444b-056f-4630-b9fc-5943a56d716e','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','543cea99-2d75-4e63-a5d0-ad61071e5961','GENÇ ODASI','2025-01-20 21:09:43.000',1,NULL,NULL),
('3ee7efa6-3558-4b02-a610-7981c42e78e3','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL,'Mobilya ','2024-10-24 09:41:19.354',0,NULL,NULL),
('3eed9084-6b01-41fc-95ec-7c048c3eb076','9e65ae08-29b6-4cde-954a-39f0530ce16e','f8e7e421-d096-4d8d-99a4-e621c080ad89','Masa ','2025-08-11 18:21:22.388',0,NULL,'2025-08-13 13:47:59.318'),
('3eee5b92-2a7f-4edf-af88-5ad493656745','308ddadc-251a-4960-a99e-9154ac7e4c88','388ee551-1f3e-4099-9b89-135966096ae1','Koltuk','2025-10-08 02:00:13.000',4,NULL,'2025-10-14 08:19:09.778'),
('3ef7eae6-aa0b-4a73-8b59-e7ba1184c38f','2a0828de-87e8-4be2-ad06-d0db6af4ac25','c65e1c5e-1b33-4a54-9a21-f2efe54675d8','LATTE 180*200 BAZA BAŞLIK','2025-01-07 21:00:00.000',0,NULL,NULL),
('3f000338-aa03-4e13-a6cc-483da691dd4e','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL,'PETRA YATAK OD.','2025-01-28 21:00:00.000',0,NULL,NULL),
('3f20f646-f429-4f8b-b295-482908d0c0fe','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('3f3bf1d2-c329-4e73-b2a6-5aa55d893969','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL,'3-3-1-1 koltuk takımı 1 adet sehpa','2024-12-09 21:00:00.000',5,'2024-12-26 21:25:53.451',NULL),
('3f45b858-208a-4009-b717-75d6afa7fc00','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL,'Traverten masa ','2025-02-06 21:00:00.000',3,NULL,NULL),
('3f466b16-fac7-4cf8-b004-d0829d6b5061','bad05b30-4d32-46ea-a474-6a5a27c42d3c','4ccea6fc-d526-479a-9e27-42643a5f294f','baza başlık','2025-03-21 13:00:00.000',6,NULL,NULL),
('3f488f81-265c-4fbd-8cb4-4de35760bda3','1b163e3d-0d8a-4a00-b303-d452c744557b','1e93df00-c436-426e-b76b-a6d843907edb','iki adet kanepe kolu- iki adet koltuk kasası','2025-05-29 21:00:00.000',2,NULL,NULL),
('3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL,'MOBİLYA','2024-05-11 08:51:15.188',0,NULL,NULL),
('3f67e10a-92ba-4272-acb8-869d2db51af4','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL,'KONSOL','2024-11-22 21:00:00.000',0,NULL,NULL),
('3f69b18f-39f2-40f9-b6e6-91f66d88bf80','0ea8d257-afae-4860-8574-29747c60c8c6','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','KARYOLA','2025-03-27 08:00:10.438',3,NULL,NULL),
('3f6d175f-15bf-42d9-bb3f-05e5f1f30d07','eb029e46-e69e-4bea-b717-f1c575aa7ca7','9669c217-666c-4acc-a115-b560280110d5','2 KOMODİN','2025-09-22 00:57:23.000',2,NULL,'2025-10-03 13:01:22.096'),
('3f7d80b7-a6ee-4575-afc4-6503c3eaf696','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL,'yatak','2025-07-08 21:00:00.000',0,NULL,NULL),
('3f7fbdec-6f37-4535-bd01-3e553df49817','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL,'KING PLATIN YATAK 180X200','2025-03-30 21:54:23.000',0,NULL,NULL),
('3f9da6c4-f38e-4cbe-8228-dbd5aa3c016a','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL,'MASA AYAKLARI','2025-04-10 21:00:00.000',0,NULL,NULL),
('3fa1fb5a-3859-4c2d-91a2-c29548d18508','b52c4507-aa46-4c8c-844a-4ab37f665946','b044c797-8c15-4ef0-b74b-c71ffa32d77d','1 KONSOL ÜST + 1 KAPAK ','2025-10-22 07:41:49.712',0,NULL,NULL),
('3fbef21f-32ef-4868-925f-a3a2c46dae90','895e1a54-1679-4334-a0d8-1b1901c592a5','26126773-c58c-4826-9a54-b06d334d664a','BONNY KÖŞE TAKIMI ','2025-03-11 21:00:00.000',0,NULL,NULL),
('3fc759d9-3801-490b-bbad-23f2ff290b97','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL,'Köşe +masa (ayaklar kutuda)+2 kutu sandalye','2025-03-18 21:00:00.000',6,'2025-03-21 18:29:14.322',NULL),
('3fcc6ac6-e2ef-4638-8aab-e8717dabf94b','fbc4c4b7-9137-42ec-b6e9-fdea41ca69fc','48795997-487d-4854-b209-9dd433e1e30e','köşe','2025-08-18 21:00:00.000',0,NULL,NULL),
('3ffe199c-d990-49fa-8892-2e9910fe8713','08b07ff9-692e-4ca8-866e-27a96667e87f','9240f29e-03fc-4696-a562-a0fdc8d6283d','köşe koltuk','2025-06-27 12:00:41.000',8,NULL,NULL),
('40065c78-de90-4058-907e-6af9c5da2b57','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL,'Ürün ','2025-10-03 12:00:00.000',0,NULL,'2025-10-07 13:12:06.447'),
('40158b47-f950-4e8b-81b2-1badad2ece04','31a9f03a-9f24-417c-b0b7-5e374d34b126','679716f3-7799-4e9d-a984-9fe004b5689e','TRAVERTEN MASA','2025-09-29 04:40:57.822',0,NULL,'2025-10-14 14:37:45.426'),
('4021b8a3-2697-481d-910f-f6c53c47823e','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREN BAZA ALT SUNTALARI','2024-12-20 07:45:28.589',1,NULL,NULL),
('403e333a-cfa6-4367-b6fa-62cc56364211','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','ee094406-7b7d-4dff-bdda-d300b0b6d971','berjer','2024-12-16 21:02:29.000',0,NULL,NULL),
('404bb5c9-911f-4abe-ae27-d9f8c7b4f704','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL,'SSH DOLAP PARÇALARI ','2025-07-18 21:00:00.000',4,NULL,'2025-07-18 14:42:10.830'),
('405a8b4f-16a3-4308-a37d-4df866ba5a15','942b967a-b7e1-48f8-9cb2-21dcf67db34e','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-13 13:00:09.000',0,NULL,'2025-08-15 14:29:01.603'),
('405c5569-3390-43f1-95ee-f006ef560059','994c111c-e6b7-4e44-a12d-e02010c92c4a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-03-09 19:52:33.674',0,'2025-03-12 08:21:06.075',NULL),
('407cb3c6-0c94-4574-9a03-fe3dd44db743','51eada14-8b0b-474d-993b-35b1df5b1fdc','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90 çap sehpa ','2025-07-04 10:02:38.000',1,NULL,NULL),
('408c8a84-79b5-4f45-a05b-83e38b4edee4','e9d35722-4f61-4858-b63b-066b56b95e42','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye siyah','2025-03-25 12:00:00.000',6,NULL,NULL),
('40935ae0-66fe-4084-b520-3269027d793a','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL,'TABELA','2025-02-26 21:00:00.000',0,NULL,NULL),
('40a691f8-942a-4652-b0f7-9d467326f3e5','e5a2c381-5ee4-4701-8431-c115c8a67cff','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-07-21 13:00:00.000',3,NULL,'2025-07-21 07:34:56.254'),
('40c4dd8f-39f2-485c-9dca-60d32029c90d','47709c5a-15a6-491c-924f-a72a590fd417',NULL,'KOLTUK TAKIMI','2024-03-30 09:26:03.624',0,NULL,NULL),
('40cc1535-c3f8-45ce-9f1e-9d2626aba589','781f03ac-2015-438f-bba9-a8e09715b445','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-02-06 21:00:00.000',0,NULL,NULL),
('40d58b2c-a3e8-4cab-a242-12a641f6f94c','1be311ce-e06b-49b5-89b4-ca8a3ecea45f','37998928-93fa-4836-b160-317ec8eab2bf','MADRİD 3-3-1-1','2025-09-18 15:00:00.000',0,NULL,'2025-09-22 11:30:17.199'),
('40e81366-8e6b-4b7f-b487-b6d23057f5a5','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL,'SSH','2024-12-06 21:00:00.000',0,NULL,NULL),
('40ffdf4e-04c6-48e0-a01c-8341e2015d88','f31e552e-c834-40f4-b2b5-57faf61eb7a0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','18lik karyola-şifonyer-puf-2 ad. komidin','2025-01-06 21:00:00.000',11,NULL,NULL),
('410881ff-899f-4c26-9f89-1ef7d62c41b6','7c13036d-04f3-4695-8d5b-26b5832743c9',NULL,'asfs','2025-10-02 11:21:58.707',0,NULL,NULL),
('410d238f-8bdf-4cf3-81b7-a69f07022dc2','304a2496-cb37-4646-a094-9980a688ced5','0f300a3b-b3d6-4b60-924b-aa70cd54141e','mobilsitan sshlar','2025-05-29 21:00:00.000',999,NULL,NULL),
('41111b99-4330-4fbd-b14b-1061f0a8a390','b051fe92-2caf-48d1-986e-2c884be9900c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 orlando koyu ceviz açılır masa','2025-09-16 12:00:00.000',2,NULL,'2025-09-26 10:57:36.933'),
('41185e62-43c9-496b-8cfd-12c1ef56bede','21546945-039e-423a-a388-34ddf8d28654',NULL,'LOGİSTİC E BIRAKILDI','2025-03-09 21:00:00.000',0,NULL,NULL),
('4127ee40-0e2b-4246-87af-80c9d221472d','07db3804-178b-4b42-ba68-1b6cc6758010','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-07-25 09:00:00.000',4,NULL,'2025-07-25 08:55:25.297'),
('41292cab-d2f5-400b-8987-d9df04092129','97d3447f-3a32-459a-8bdd-d360b881a042',NULL,'SSH','2024-10-23 13:57:28.194',0,NULL,NULL),
('4133b64d-8906-4cf9-aeb9-479ffee87338','7ea76b05-b121-495a-8d2a-ccda072629c6',NULL,'masa sandalye','2025-10-05 18:00:00.000',0,NULL,'2025-10-10 10:58:26.862'),
('4140c031-d713-4eab-a9d3-c8f897ea7b76','5d656399-d4c2-49fa-a9e7-be2b15a2116d','e64032e2-f50f-4507-b33f-f21529e79144','Koltuk','2025-09-17 11:35:52.265',3,NULL,'2025-09-24 09:01:11.852'),
('41522b3e-6de8-4685-9902-9f8555a44573','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL,'PERDE SİZE BIRAKILDI','2025-09-17 22:16:05.559',1,NULL,'2025-10-03 12:20:25.317'),
('416e7e24-9084-4530-b3a2-2808d9f33e37','548ed737-ff1e-4d15-8e34-d66ac4314840','b151728c-b265-4eed-b5c1-cb53409fb775','koltuk takımı','2025-07-11 11:00:00.000',3,NULL,'2025-07-17 08:04:39.952'),
('417d5128-140e-4a55-b497-de9ff93db63e','08c394f5-81b6-4f94-b6e3-4d898cb44cae','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-23 21:00:00.000',3,NULL,NULL),
('418cc5f0-94c7-4e67-85d5-2726afa3452a','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-04-17 21:00:00.000',3,'2025-05-30 13:57:10.731',NULL),
('419b6207-21b8-4c7e-a4ce-a867b51a6884','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL,'DOLAP','2025-06-16 21:00:00.000',0,NULL,NULL),
('41a3c35f-a9b5-43f8-88ac-b622521c790d','125c6d79-f243-4cb8-a15a-74cffdb00247','0bddb84a-c9d8-4384-ab78-2f33b838a1b0','sandalye','2025-10-29 08:47:51.000',4,NULL,NULL),
('41a755a7-afba-440a-a117-478fbfdbfd19','b7371a5c-1964-498e-9777-29d5a4fb4e31','3d19e2da-7de7-453c-83fa-6edd8258f6eb','2 ADET KANEPE','2025-09-23 09:00:00.000',0,NULL,'2025-10-09 10:42:47.499'),
('41a8c40c-cb96-4cd8-b02a-dbe29db34034','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL,'Nevada ceviz masa 100*200 cm','2025-01-07 11:00:00.000',3,NULL,NULL),
('41a97f13-3141-42bc-acfc-50b87c2de9f2','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL,'ÜÇLÜ KOLTUK 2 ADET ','2025-01-12 21:00:00.000',3,NULL,NULL),
('41b1ee37-8bae-49a3-81d5-d1ef90f7853a','53342718-86b2-40d9-a013-7091e0df1800','4d3f433c-6ebf-4443-a8bd-319b61cbe400','yatak odası takımı + dolap','2025-10-15 21:00:00.000',0,NULL,'2025-10-16 11:52:43.868'),
('41c40e8f-1ab1-4425-902c-c73cbea0722f','526de5bb-5478-4ac9-aaab-26c962aa787b','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-23 21:24:12.656',2,NULL,'2025-10-27 13:41:33.392'),
('41c85bf8-1324-4e58-896d-344683df7110','a71c1b97-adb1-44f0-8622-8ebc242aee74','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 sandalye','2025-10-14 08:09:32.000',8,NULL,'2025-10-16 08:04:49.466'),
('41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0','3932d875-21e8-45e1-a16c-797670968c92','b22273fb-b00f-4afc-b708-2437f60ec61e','masa ve sehpa','2025-08-22 10:25:43.000',0,NULL,'2025-09-03 11:07:09.386'),
('41d63bdf-b3e0-4aa8-a76f-ffceee8b0290','235ede83-046c-43b3-a7f1-746b19237d67',NULL,'Nevada masa 90x190','2025-01-14 21:00:00.000',3,NULL,NULL),
('41e2f467-cdd3-4b4d-a446-e87ad786ff05','b67594be-f958-4225-900b-19c5f6be08ce',NULL,'CAM BALKON','2024-11-07 21:00:00.000',0,NULL,NULL),
('41f30597-2350-4eef-8ec9-350f4401412b','b89cd91f-460c-462f-a284-8d6b2a01dd71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten konsol ','2025-02-26 10:00:00.000',1,NULL,NULL),
('42207860-48dd-4778-ac1f-e702ac193305','476b3b22-cc52-456b-baca-94ab2554e38d',NULL,'SANDALYE','2024-11-19 21:00:00.000',0,NULL,NULL),
('4225c8eb-fb3b-4afa-8f43-d27725ded130','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL,'MOBİLYA','2024-10-23 08:50:41.681',0,NULL,NULL),
('42345ca6-ef3a-446c-b13f-224500a189ad','cf1b6f71-e318-40c8-a965-e02e6fdabcb3','67c34dc2-4657-4323-8fc0-4ff05ed31067','SANDALYE 6 ADET','2025-06-16 21:33:29.000',3,NULL,NULL),
('4234b206-7cb5-444c-aaca-5283e36bcc3b','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-31 03:26:24.000',0,NULL,'2025-09-03 13:04:52.589'),
('4248435a-86e0-4cf9-9c9e-c779eca78500','4197af5f-54c3-4efd-8f7b-cdb3412520ca','6fbd26ef-ff43-493a-8a76-88ea67ec932a','KONSOL, 2 KOMODİN, ŞİFONYER','2025-03-09 21:53:48.000',7,NULL,NULL),
('426884c2-84a9-4add-aa92-e432769e1f8e','5d656399-d4c2-49fa-a9e7-be2b15a2116d','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-09-22 11:36:11.000',2,NULL,'2025-09-24 09:01:11.852'),
('4269f867-0d44-45e3-ba30-724af57726ee','b9f93946-382b-435b-9bca-6293072351d1','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','koltuk takımı','2025-06-13 12:00:00.000',0,NULL,'2025-07-18 14:13:19.259'),
('426edf33-c45d-4446-b38c-af56172acc0a','82a52514-f885-46c9-bb75-54161940ec29',NULL,'Koltuk takımı.  3-2-1-1.  Sehpa ','2025-02-02 21:00:00.000',5,NULL,NULL),
('426ef9bb-a62f-449c-94ff-8db1393b2288','32a7763a-26ff-40ce-a7e9-6378f8554627','0f300a3b-b3d6-4b60-924b-aa70cd54141e','koltuk takımı-yatak-sehpa','2025-04-30 21:23:52.000',5,NULL,NULL),
('4274e220-3b3b-461f-be9e-e1b9c25dce47','52951d3a-938c-4ea9-baf5-8e4605f5a78f','0904fb9b-cc29-48d1-bf84-6c66cb08a9ad','KOLTUK TAKIMI','2025-10-28 15:00:00.000',3,NULL,'2025-10-23 07:34:11.130'),
('42781ec4-0202-4d59-947c-1921f95a4539','47743b4f-0f71-47f0-aabf-3e472b257714','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk','2025-02-17 13:00:00.000',4,NULL,NULL),
('42888d44-3ff9-4755-a225-81bce5a680f8','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL,'PLATİN YATAK 180X200 2 ADET ','2025-07-31 21:00:00.000',0,NULL,'2025-08-06 12:15:05.529'),
('429b3448-0e29-43d6-8ad9-a760a9c747f1','f7194f95-fa52-48ad-8c78-86a92187abde','c2045301-8c66-481e-bcdd-1f2d9d1c8e01',' SANDALYE','2025-09-04 13:23:16.035',3,NULL,'2025-09-08 14:47:54.304'),
('42b2ca3a-9313-4b97-901b-3859e34b21e1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL,'Mobilya ','2024-09-27 13:32:07.990',0,NULL,NULL),
('42b7553c-1533-4400-b356-4c6840431f4b','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','26360aba-80e2-46ad-b172-f1052f9526f6','Karyola','2025-07-29 10:33:24.358',0,'2025-09-01 10:28:05.487','2025-08-01 09:08:32.612'),
('42ca0061-b4cf-49b4-9c38-32898832854c','5f656441-40ec-47a2-a5a0-c7819b0df651','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-05-07 21:00:00.000',3,NULL,NULL),
('42d4331a-0080-4fca-8777-5a26c0e34df6','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL,'KOLTUK TAKIMI','2025-07-29 15:00:00.000',3,NULL,'2025-08-27 14:17:22.354'),
('42dacb31-b711-4374-9f4e-97576b6e7abb','32d8dcee-9361-46e5-a98f-6e606f4ea7ca','c7a9be0a-b228-44ec-8a6d-73fe37e4d736','2 ADET KANEPE','2025-05-14 08:16:02.919',2,NULL,NULL),
('42e47729-ba1b-4ea6-8a5e-28f3b1eef48d','04757da4-5689-4b28-8662-727fabf44027',NULL,'KOLİ','2024-08-07 14:34:32.717',0,NULL,NULL),
('42ef4d8b-8548-4e28-8dc4-0632930c5828','89f250d7-ea03-4dad-b40b-0dd01296a0ce','b22273fb-b00f-4afc-b708-2437f60ec61e','Tv ünitesi','2025-08-12 13:30:00.000',0,NULL,'2025-08-20 11:07:00.622'),
('42fd5395-333e-41d9-b425-bed94ac92dbf','7c6c2dd1-52e2-4059-a97e-d340167fe009','d2b86c82-d150-447c-80f6-636bbf5c4748','sandalye','2025-06-19 09:24:33.111',0,NULL,NULL),
('42fd5815-f64a-4d97-ba78-6eb7f4d93af7','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA','2025-06-25 13:02:21.840',2,NULL,NULL),
('42ffa572-f73b-4542-8194-e80be109ca1c','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL,'KÖŞE TAKIMI','2024-05-10 07:01:50.723',0,NULL,NULL),
('4301b768-4818-4e74-a6d0-12a33474f5c6','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d','1d2db52c-5f0a-428e-9cb7-7435ad5c00f6','YATAK ODASI TAKIMI L DOLAPLI','2025-10-07 06:00:00.000',999,NULL,'2025-10-20 13:28:20.709'),
('43024ca8-3408-4c20-962d-cdaf0ea11687','0991bee4-87cb-4b77-85ae-0f81a11d33ba','26216926-c73f-46d4-9ba1-0afb20844194','köşe koltuk','2025-08-09 21:00:00.000',6,NULL,'2025-08-15 12:37:01.194'),
('43174436-4764-40b9-92e4-4e79b7c0bd68','89bb7b3f-2e28-43eb-a568-761a34765b3e',NULL,'MOBİLYA','2025-03-24 21:00:00.000',0,NULL,NULL),
('4333409c-e607-4580-98aa-64ce9862909d','a3e67de0-2821-4964-8e1b-51116009f272','0f300a3b-b3d6-4b60-924b-aa70cd54141e','paris 3+3+1 ','2025-09-02 09:00:00.000',3,NULL,'2025-09-11 12:53:45.670'),
('433bcf46-852c-43bd-8da7-e9982ca1b956','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb','0f300a3b-b3d6-4b60-924b-aa70cd54141e','düğün paketi','2024-12-03 21:00:00.000',38,NULL,NULL),
('434c1112-5bc7-43ff-9776-83885a4ba310','b4df3c44-e272-4f15-83b1-063b9f953adc','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TAKIMI','2025-10-31 09:19:57.000',0,NULL,'2025-10-14 10:51:22.542'),
('434f2fa4-2957-4f35-86b4-5df68d237b53','5e70dde1-35e1-403e-bbeb-3153ccf77d80','cf90c370-208a-4021-aaff-f9220970bca9','Sehpa ayağı','2025-07-17 07:50:19.784',1,NULL,'2025-07-21 13:03:43.264'),
('436f444d-9e40-4563-833b-09997ab9483a','681a9409-dfea-4051-898e-57fa8d7d2fef','44c404b3-a618-4af5-bdfb-ad381f049053','4 ADET SANDALYE','2025-10-21 21:00:00.000',0,NULL,'2025-10-22 12:37:36.108'),
('437681da-5841-43b7-be0e-a63388bbbd07','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Koltuk ','2025-09-09 22:15:45.724',0,NULL,'2025-10-17 07:23:37.683'),
('4379a101-5d0c-4577-a568-55859726b74a','f7194f95-fa52-48ad-8c78-86a92187abde','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','MASA','2025-09-05 11:00:00.000',2,NULL,'2025-09-08 14:47:54.304'),
('439a468d-6cbc-43e8-aa94-cfa411e4fd3a','20ba0bfa-9720-4a4e-8dc3-12812663abec','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-05-05 08:33:16.348',4,'2025-05-30 13:57:18.716',NULL),
('43a5868e-b45f-4da5-81a1-837338bfc39c','ef978fdc-f16f-48d3-82b2-9c1f321e6548','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3+3+1 koltuk takımı','2025-02-11 21:00:00.000',3,NULL,NULL),
('43b8384d-aa9e-46af-869e-8c40c8c2e87e','763269f0-c331-405d-955e-8f2aa8b9564e','9e34f6c5-486c-42cd-aeea-59c5c63f7766','2 berjer ','2025-01-13 08:21:08.878',2,NULL,NULL),
('43b9cd0f-8b71-44cb-b2e3-0d773835bd14','0b1cc952-6f67-4baa-ba60-c50028dfbd88','0d64216c-fe9d-486b-b722-9710eba2c609','KOLTUK TAKIMI','2025-01-08 21:00:00.000',0,NULL,NULL),
('43e258f2-7cc3-4e63-be4e-0b2929334761','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN HALİKARNAS KİTAPLIK','2025-08-28 02:09:20.000',1,NULL,'2025-09-08 12:00:07.860'),
('43eb4ebc-39fe-4f7a-aacd-fbcec67995f5','fd4a184e-d04a-45fa-af74-f7d45806dede','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-05-29 08:10:28.933',3,NULL,NULL),
('43ec4421-df3a-48f8-ab7f-88587ceebc29','acb56e55-0830-4986-97da-b0788ca9b99b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','koltuk masa sandalye orta sehpa','2025-01-05 21:00:00.000',11,NULL,NULL),
('43ec6ce8-9ec2-4648-8e6a-93c885be50d4','375c4744-28e0-4fab-a9cf-b3b1451e7848','25a67c0f-50f5-46d5-a9a8-ac9f061e252a','KÖŞE TAKIMI','2025-10-21 18:00:00.000',0,NULL,'2025-10-23 08:08:19.582'),
('43f2900d-96f1-458b-9b9e-6777ac110ab0','54305dea-1aae-421b-a780-6ea6cb1e48be','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe ve orta sehpa','2024-12-30 21:00:00.000',5,NULL,NULL),
('43ff4e79-db72-41e0-ba63-8999dc250518','864782d3-b9d9-42bb-b370-cce193db468b','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-04-07 21:00:00.000',3,'2025-05-07 16:52:05.544',NULL),
('440f0df5-c4a0-4820-ae8b-616a711aff4d','0c43519c-5551-4f80-8c50-18c10c21048d','8c33406d-1686-45a9-ad7a-de320c689537','1','2025-10-08 21:46:17.000',1,NULL,'2025-10-10 07:29:47.656'),
('44136ca6-13ff-486e-8ec6-5e4b2087ec35','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL,'Traverten Sehpa ve Vazo 100 cm','2025-10-13 02:10:54.389',2,NULL,'2025-10-15 10:09:55.526'),
('44172f06-d7a5-4d73-b1be-11dd839fbad7','fc31e466-d8a0-4227-8542-d08063fb7971','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-07-18 09:00:00.000',3,NULL,'2025-08-05 14:29:57.372'),
('443751fc-e739-4620-b6a4-3b4b39d4da52','5545a525-a1f8-4628-a148-d06b89ed77d1',NULL,'MOBİLYA ','2024-12-10 21:00:00.000',0,NULL,NULL),
('443d1fa9-d29f-4aae-96b8-c6565b068779','52ea460d-e94a-410a-9cce-0b771b3e4cc8','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-08-17 19:59:44.000',5,NULL,'2025-09-24 11:01:54.688'),
('443e0969-7a02-4419-a72f-f4d9c48b7222','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL,'MOBİLYA','2024-11-07 21:00:00.000',0,NULL,NULL),
('44473b9b-ccf0-4acc-bdd8-c81f1d8d7bda','6ab64262-e10e-4c69-a128-c1c8101ef7ed','a3610da8-8e0c-417c-8834-1223bca4fb34','3+3+1 koltuk takımı','2025-07-03 21:00:00.000',4,NULL,'2025-07-17 09:43:54.470'),
('44622e7b-0fdd-427c-9a36-f04079e592e0','00597150-64a3-4ed2-95da-544d8eb849d1','7ef18eb6-fc54-4770-be95-51abea3c644d','Sandalye','2025-01-30 13:30:01.605',3,NULL,NULL),
('4468137a-37e6-4938-b390-5c8261b58e50','4f12f440-a116-4008-91df-70191ee2d9f1',NULL,'elit koltuk takımı','2025-01-19 21:00:00.000',0,NULL,NULL),
('448137c4-0ed8-4aba-90bd-b88619bd7a91','fd6cdf42-58f9-43ac-acce-9d75b76c6d29','bed73507-59f5-45a3-a19b-47793c024f51','DİOR ŞİFONYER + AYNA + PUF ','2025-09-24 19:27:01.000',0,NULL,'2025-10-02 12:01:25.866'),
('448d1ec3-338c-4b04-9018-fab26732c500','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-05-20 08:23:42.291',2,NULL,NULL),
('44975e64-62c2-4d64-82d9-b20bb78a4f8a','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL,'YATAK','2025-09-30 12:15:35.000',0,NULL,NULL),
('44b402b8-0ac1-4080-aa6a-541923b0847f','f0fd560a-44c1-4908-9784-45a3c9fbd2f7','94760a5d-681a-4a29-ab11-d22e307dd2f1','masa','2025-05-30 06:06:54.886',0,NULL,NULL),
('44e1fa3e-186d-4e5c-800b-0ed503636ed5','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL,'KONFOR PUF','2025-06-24 21:23:15.000',0,NULL,'2025-07-16 11:06:21.378'),
('44eb3a40-af64-4221-b013-eccbddfbef70','509ec2fa-23ec-4576-8840-d2ebdd3ca734','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-09 21:00:00.000',2,NULL,NULL),
('44f4434a-fe1d-497d-a075-b27d62c676b7','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN HALİKARNAS KÜÇÜK ÇALIŞMA MASASI','2025-08-28 02:10:08.000',1,NULL,'2025-09-08 12:00:07.860'),
('44fe0660-a6fd-46f2-b992-d99aa0539ddd','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA TAKIMI','2025-08-12 11:44:36.916',2,NULL,'2025-09-22 15:24:34.176'),
('450834d7-78a2-4ef2-8bf7-ea6da90710d6','68b0a915-121f-4d3c-b2e8-25b8e3e18525','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-06 12:00:00.000',0,NULL,'2025-08-14 14:48:53.595'),
('450e3cc2-5ef7-4167-b7c8-42e1eab92860','7ca0c26d-8bbc-4deb-a210-90620aca69ad','55934c55-9fe9-46ce-b8a4-cf7669e12b21','Sandalye','2025-08-01 12:44:48.240',6,NULL,'2025-08-11 13:09:15.979'),
('4515e824-2938-486c-92f5-4d2a3da646fc','c62221b7-0c98-4cdc-8719-46cbd126b5d6','23334f3a-b17e-4959-b33b-b748f5878d33','İCON CEVİZ YATAK ODASI','2025-05-04 21:00:00.000',0,NULL,NULL),
('4528d00a-d527-462a-82f4-148016c4f77e','537f327a-f919-43fa-9be8-fa8d0af3cf00','6cf48902-0efb-4fdd-97e3-79e7b0fd3a18','MASA VE ORTA SEHPA','2025-07-31 07:21:54.000',999,NULL,'2025-08-18 12:19:56.397'),
('45554c4a-4aeb-4b67-b09d-ee427b71d844','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL,'SSH','2024-07-02 12:00:23.780',0,NULL,NULL),
('45624052-e478-4c53-92ab-2b7ad134bf8b','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-14 06:00:00.000',0,NULL,'2025-08-21 11:01:14.155'),
('45711d8e-de1e-49bc-b9f8-a709a70c7fc4','89f250d7-ea03-4dad-b40b-0dd01296a0ce','8606d226-cc7c-4998-946f-cf7c29587a15','orta sehpa','2025-08-18 13:30:00.000',0,NULL,'2025-08-20 11:07:00.623'),
('45749935-27bb-4063-9e4a-59a9d1cdc880','1f3c011b-b082-4eaf-a3ea-8f8ab2934010','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-04-23 21:00:00.000',4,NULL,NULL),
('457dff53-59ea-40e0-bd36-d823bc862d01','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-03-06 21:00:00.000',0,NULL,NULL),
('45873f29-a1ab-4943-b302-bf3c4078b5cf','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL,'KOLİLER','2025-03-24 21:00:00.000',0,NULL,NULL),
('45c277bd-b0ab-4933-ac5a-f0fc24bf9e51','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL,'MOBİLYA','2024-11-02 08:00:31.246',0,NULL,NULL),
('45f16bc1-59db-4629-8d43-de6334e2fc13','a05e0bfa-eaae-4d7d-a151-404547093031','48eb2bc7-40b5-4ca1-b858-ef3228babff4','SANDALYE','2025-07-11 14:00:00.000',6,NULL,'2025-07-25 07:37:35.756'),
('463a7999-c922-4cfd-a8b6-01513cc2c423','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL,'KİNG PLATİN BAZA SET 160LIK ','2025-06-22 21:00:00.000',0,NULL,NULL),
('463d83bb-35b5-4752-b385-15883f2d24c0','c79902d9-089e-44e4-a536-9307c5bef39d','b6f3a82f-4f50-4678-b7ea-8d013b6b1646','NEVADA PUF','2025-10-01 04:47:11.000',1,NULL,'2025-10-08 13:55:12.006'),
('465d80fd-910d-4efd-b69a-ac5b10f5964b','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE ORTA SEHPA','2025-04-09 21:00:00.000',3,NULL,NULL),
('46713d18-2118-4e36-895b-ca71ee9f55d0','cea81038-a341-47c6-8f8b-905346a6e5b0','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-23 09:43:02.523',1,NULL,'2025-10-06 11:23:37.282'),
('4673c1c0-6cae-45f1-a92b-ad858aef1ba6','0ca39cb3-cb01-4190-946c-6ebea8eb1b68','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye galaxy krem ','2025-10-27 02:15:27.000',6,NULL,'2025-10-24 08:28:02.331'),
('4682f070-54f3-4dfb-9968-6d7ce01b22f0','7ca0c26d-8bbc-4deb-a210-90620aca69ad','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Masa seramik','2025-08-11 12:44:33.000',2,NULL,'2025-08-11 13:09:15.979'),
('46967417-5579-4330-96d2-b8546922819a','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL,'Mobilya ','2024-09-27 13:52:07.192',0,NULL,NULL),
('46a6276c-78bf-47de-98fa-547420c97e60','a9e92a4f-2e0c-410b-8783-a6088e15e8db','c07e37af-2b69-41ac-96d1-7100cc1a992a','MİLANO KARYOLA 180*200','2025-09-26 18:00:00.000',0,NULL,'2025-10-13 09:48:30.442'),
('46b78526-9a68-4bd6-a664-c8493567b110','480a346e-68e0-4b73-8032-240c8e47de53',NULL,'Kutu ','2025-01-15 21:00:00.000',0,NULL,NULL),
('46bbba6d-7306-4e50-94f8-b309b0edb518','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'koltuk 3+3+1+1','2025-10-09 09:00:00.000',4,NULL,'2025-10-10 14:26:13.149'),
('46cbcfc1-c51a-492f-8b61-a2472751488a','5e1f8bc1-fbc6-4a17-9981-db921860e228','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-10-02 07:42:04.990',5,NULL,'2025-10-22 13:05:59.516'),
('46cf4fd0-6caa-4168-bb24-3b124a8287bd','a363fe79-1948-4fe4-80de-2d172a039951',NULL,'Perde','2025-09-16 21:00:00.000',3,NULL,NULL),
('46d0563d-1067-44bc-9c0a-d69fee69b215','147e8615-279e-4297-866d-fbccbd1231af',NULL,'DELUXE YATAK 100X200','2025-08-04 15:24:11.000',0,NULL,'2025-08-06 12:15:50.130'),
('46d1512a-2bfb-476d-a224-9390f3e194f2','a451f68c-dd26-4757-af49-72fa26f23f80',NULL,'MOBİLYA','2024-10-03 12:48:05.496',0,NULL,NULL),
('46f087b2-104e-4783-9de5-ec1ae5a60517','d29f5e82-17ba-42d5-80af-3310cb7d3a5b',NULL,'Yatak baza başlık','2025-08-29 21:00:00.000',0,NULL,NULL),
('46fc3411-d64e-449f-ab52-edddebdc4c23','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'DELUXE YATAK 100X200','2025-06-19 21:22:56.000',0,NULL,NULL),
('470029a1-7c37-4412-be9f-8cae8a661f11','f1dc4c15-b727-4694-84c2-391d5782dae4','1be238d9-54e3-4094-8d60-66fd5abb87b5','mermer tabla','2025-09-29 16:08:14.000',1,NULL,'2025-10-03 09:26:59.254'),
('47019764-af76-445a-be8b-30f53c6195d6','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL,'MOBİLYA','2024-10-23 08:52:47.869',0,NULL,NULL),
('470e5bf8-985b-4b51-9441-9efa4da41c0c','a4b0544f-8781-4cb5-97b8-539cc674a28c','9d9f47dd-5826-4f65-b6fa-0d2528f2d2a8','3-3-1 koltuk takımı','2025-06-01 21:00:00.000',3,NULL,NULL),
('471a9a7c-b962-42f0-b21c-205afc04b527','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL,'KOLTUK','2025-06-18 21:00:00.000',0,NULL,NULL),
('47359dd1-b6c1-4658-86e5-5db37fe1aa0c','b3ad85de-ea3c-4f24-b3c9-4fd20e6a5496',NULL,'5 PALET 4M3','2024-03-12 10:23:15.855',0,NULL,NULL),
('4738e896-6b15-4ccf-8853-35517f47fbfe','7c6c2dd1-52e2-4059-a97e-d340167fe009','3b94945e-5e1d-490c-a332-cfe0cbb462a1','köşe koltuk','2025-06-19 09:23:53.463',0,NULL,NULL),
('4759096d-1c45-449b-bc2a-51e974822898','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL,'Natura sandalye ','2025-02-07 09:00:00.000',3,NULL,NULL),
('476b43b7-da3a-41aa-b89b-f5010f41f08f','a42a1c77-dffe-41cf-b2b2-08ccedab680b','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-10-05 20:00:00.000',5,NULL,'2025-10-08 11:57:27.676'),
('477f5d1d-406c-4147-a6bd-205816f5db0a','2473140a-52f5-4b86-a285-e3de923dde5c',NULL,'YATAK SETİ','2024-09-28 15:52:34.463',0,NULL,NULL),
('4782ffd5-6563-408e-b0cc-0b514ac522be','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL,'1','2025-10-16 12:00:00.000',0,NULL,NULL),
('478f6b54-88d9-46c0-9d8c-85f1f5bdfca6','f0b80554-e825-487a-9ec5-ec30be5eade8','bf2f9026-0036-4efc-bfb3-7790361e64fa','sehpa ','2024-11-14 19:39:52.524',1,NULL,NULL),
('47a05ef5-3932-411a-a9c2-2cd1bd57b99d','74637af9-7a7a-405b-a482-73059c1633c6','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-02-23 21:00:00.000',3,NULL,NULL),
('47e4ee8d-44c4-4351-9364-ad7d3f45a197','042f3c72-dff0-4f05-808d-d871ab750191','fd87365f-791b-4129-a329-2bbc5296e508','orta sehpa','2025-08-06 12:00:10.000',0,NULL,'2025-08-15 10:26:32.593'),
('47f3a1d5-0b4f-435a-b749-ec541d7ea229','5fe73200-216d-4572-a46e-fc6418650bf7',NULL,'POŞET','2025-06-04 21:00:00.000',0,NULL,NULL),
('48327c16-88a6-4dd5-9dc6-0d88b77a9baa','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL,'MASA ','2025-09-21 21:54:02.073',0,NULL,'2025-10-06 14:39:26.430'),
('4858773d-333a-4197-a946-bf62338fc789','37032355-b423-4a3a-bb38-ee78ac469313',NULL,'Masa sandalye','2025-02-12 21:00:00.000',0,'2025-04-26 16:16:51.990',NULL),
('485c676d-9cb1-400e-9d2c-e8f3c85d9402','458ed3b8-b224-474f-bf44-b16282a7b8f1','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-05-21 21:14:24.000',2,NULL,NULL),
('48662948-788b-4f09-b1a2-4177f97b1eb7','a856c3b2-bd1c-47db-b02f-9127f2bb4d67','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-29 11:13:44.000',3,NULL,'2025-10-01 15:07:58.554'),
('4869c334-4618-49fb-9d03-99d95654d12a','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PETRA YATAK ODASI','2025-05-05 21:00:00.000',0,NULL,NULL),
('48708534-ad53-4b6a-99ed-de38c6f08322','45898089-0430-47fd-85a9-8108fa8d9a5e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70*100 ORTA SEHPA','2025-03-24 08:02:43.278',2,NULL,NULL),
('4884cae4-94a5-47ee-83b6-52077e4376b5','0c5baaa9-88b0-464f-9b3b-8d21de6877b8','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-02-23 21:00:00.000',3,NULL,NULL),
('4886e0ff-5157-4282-8e44-13be4b4cbecb','808b4ef9-a87c-49a2-938f-85cb6e7e8004',NULL,'AA','2025-10-21 18:00:00.000',0,NULL,NULL),
('489fd382-992a-4062-80fa-06d0adc63c50','58d4a91c-acf5-448c-9848-3d5806828926',NULL,'SANDALYE','2025-07-01 21:00:00.000',0,NULL,NULL),
('48a52c80-382d-403a-8339-88f26052eec2','77ae1565-c04e-4a61-91bb-c10a993fdc5b','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS GOLD MASA SANDALYE ','2025-09-16 16:57:58.000',0,NULL,'2025-09-19 11:28:54.869'),
('48c3ddeb-e3ef-4f40-9c51-f70e95ba946e','b14ef2f2-ec6b-4e5a-835c-56bd2fed4d76','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-10-31 02:00:00.000',5,NULL,NULL),
('48d68e0d-db2f-4458-ba18-46fea7b3238b','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'ORTA SEHPA','2025-10-09 21:00:00.000',0,NULL,NULL),
('490c2bb4-adcc-46dd-b62c-c66daac6662f','d25fd827-385a-48f1-8993-4f48129b3530',NULL,'SSH','2024-04-07 20:29:48.907',0,NULL,NULL),
('4919b182-c4b4-43e0-bd9a-1b8ef82a5543','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL,'MOBİLYA','2024-05-10 06:44:11.719',0,NULL,NULL),
('494fd125-9e91-4803-a945-381b0444857c','569bba17-5ac8-4ea3-bd0b-b8896ac22b68',NULL,'Köşe takımı.  2 paket sandalye','2025-02-02 21:00:00.000',5,NULL,NULL),
('49577156-6988-4b1d-8a3b-01bcdb651052','de492754-6967-40e1-bf64-463ad84fdd39','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','başlık','2025-08-03 00:00:00.000',1,NULL,'2025-08-08 12:27:32.349'),
('497cac99-1969-4f4b-b126-72d742c06b8a','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL,'MERMER MASA','2025-09-12 09:00:00.000',1,'2025-09-11 12:54:39.624','2025-09-09 12:55:08.416'),
('497ff2e2-809f-4dc3-bf1f-c238b9402d8c','528a4efc-5102-4165-8106-60f8052866e1',NULL,'DUVA LUCCA BERJER AYAĞI 2 ADET','2025-03-20 21:00:00.000',2,NULL,NULL),
('499d0b9c-415e-4469-9571-09b4cb8f3559','3942cfd4-4dd6-486c-8571-aa8d22e10518','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA','2025-03-26 21:00:00.000',1,NULL,NULL),
('499d8a44-50f7-4dcc-9922-380deefb0ce0','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL,'YATAK VE ORTA SEHPA','2025-10-27 03:33:29.000',0,NULL,'2025-10-23 09:07:58.928'),
('49aee46b-57f5-46fb-849f-9ef568510414','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL,'Sehpa','2025-07-01 12:57:40.569',1,NULL,NULL),
('49b0262b-aeb4-40b0-bdcc-b5461a64c972','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL,'YATAK ODASI','2024-11-04 21:49:04.000',12,NULL,NULL),
('49b61c2b-d092-4b6d-8c1e-caee3f39aabf','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL,'70x120 traverten Orta sehpa ','2025-03-10 11:15:17.780',2,NULL,NULL),
('49c326ab-5b3b-49e7-a781-28760709b5be','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL,'kumaş koltuk','2025-08-04 21:00:00.000',0,NULL,'2025-08-05 11:14:44.896'),
('49d4d893-406d-46c5-a3df-d56f4e6677e8','5be6a019-e31c-4bdd-ac62-bd037d756e64','0f300a3b-b3d6-4b60-924b-aa70cd54141e','100*200 YATAK','2025-02-27 21:43:51.000',1,NULL,NULL),
('49feb8d9-0b19-4536-871b-47f188c33cc9','652b8f3e-d7dd-479b-aacc-14b9a45a626e','0909583f-9996-4535-b9b0-c4e939339a5d','KOLTUK TAKIMI','2025-02-10 21:00:00.000',2,NULL,NULL),
('4a37c431-7317-431b-8aa0-05bfbd0b8456','2bc13cda-c525-42a2-a315-a0390ae06337',NULL,'KOLTUK TAKIMI','2024-06-08 07:37:07.546',0,NULL,NULL),
('4a592bc4-f8db-45e9-83f7-6c3990c1cffd','942b967a-b7e1-48f8-9cb2-21dcf67db34e','b22273fb-b00f-4afc-b708-2437f60ec61e','Sandalye','2025-08-15 13:00:41.000',0,NULL,'2025-08-15 14:29:01.603'),
('4a5b7db2-dc5e-4f39-972a-37093584e9dc','5eb60d14-02a3-405b-84ef-2be197850002',NULL,'Baza başlık 4 adet 120-200','2025-01-09 21:00:00.000',12,NULL,NULL),
('4a5c62d6-a67d-4715-b664-2917d2d2adbc','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ESKALA LİNE İKİLİ ÇEKMECELİ BLOK DOLAP','2025-02-18 21:31:02.000',1,NULL,NULL),
('4a61ce4d-fdd5-4745-a2db-47455ed6b156','37513226-d4df-4cbc-b99c-f0566be6cb46','944eee11-6cc7-4db2-b182-cc22ca88a6ff','Koltuk takımı','2025-09-18 02:00:00.000',0,NULL,'2025-09-22 11:59:43.226'),
('4a6cd2a1-3ff4-474c-a65c-11e529000224','8f201baa-69fe-442b-9cab-fa1f47b7420b','67c34dc2-4657-4323-8fc0-4ff05ed31067','MALDİV YATAK ODASI DOLAP 8 KAPAKLI','2025-05-15 21:00:00.000',999,NULL,NULL),
('4a6dfde8-1755-4803-a0c7-3fa8ea5810cc','1eee00b6-90f3-4331-83c5-6bef65b0bf33','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','SANDALYE','2025-07-18 11:03:37.000',6,NULL,'2025-07-18 14:56:55.456'),
('4a769c6a-1636-4fa8-b52c-be5633d0794a','9e64600d-1c01-44ab-9728-6619d083385a','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-12 20:11:33.000',1,NULL,'2025-08-19 12:09:01.750'),
('4a772921-47f4-4705-9302-2ef88318322c','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL,'100 çap orta sehpa','2025-05-11 21:15:07.000',1,NULL,NULL),
('4a7ec8c7-f7d1-4726-a8d4-015b5e084963','fcd7666d-0415-4ff3-a449-800232806032','6329df03-a245-4a41-89ed-4616778a3d4f','MALDİV YATAK ODASI','2025-01-29 12:00:00.000',21,NULL,NULL),
('4a90547c-6b75-4ad7-a83c-cf7308b5af24','c8425d91-016d-4937-970a-ecc46c5126d7','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-04-08 09:00:00.000',6,NULL,NULL),
('4aa5ea47-6bd0-4d67-b370-60ef1d25e633','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL,'Koltuk takımı 3-3-1','2024-12-09 21:00:00.000',3,'2024-12-26 21:25:58.851',NULL),
('4abcae6f-afac-43a1-83d3-65715ac410f6','b4ba97ad-fbff-40b7-8bb6-420238f15b4c','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe ve sehpa','2025-02-11 21:00:00.000',4,NULL,NULL),
('4ac8027d-d5db-4a57-916c-23dd357c98aa','88f84531-ef49-42b4-ba11-ad770eba8aa1','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-03 17:31:39.000',11,NULL,'2025-09-16 07:47:55.235'),
('4acace4e-dc95-40a4-a3c0-fcde9af4aead','5e22a843-fca3-49b3-ab98-7ed84747a703','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','SSH 1 ADET MASA ÜST','2025-02-09 21:00:00.000',1,NULL,NULL),
('4adb1f2c-bfd9-4028-a225-f24a5b67490f','de85f240-06d7-4fff-b4e2-41ac785a6a29',NULL,'Traverten kasa','2025-10-22 18:00:00.000',1,NULL,NULL),
('4adf3775-6dda-444c-a2eb-3820e8f9d0d1','6815aa94-5a08-4d6c-8b41-dac4b7358a0b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','Köşe takımı ve kumaş','2025-05-26 21:00:00.000',3,NULL,NULL),
('4ae9c5f7-6cb9-4957-b510-4e19119dcafb','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-01-19 21:00:00.000',0,NULL,NULL),
('4aed1165-da71-460e-ad92-7bbd8bca0bad','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL,'Ssh','2024-05-08 18:35:15.476',0,NULL,NULL),
('4affbb1e-1f39-4f6d-95e5-ac1d9bcd8748','4854617d-8e10-44dc-9d64-e083a9bc9ee3','e59ddebd-c72a-499b-abcb-cdf62222894f','köşe koltuk','2025-08-04 07:00:00.000',3,NULL,'2025-08-05 12:55:04.518'),
('4b1abb15-71ec-495f-bbec-273a2dcb7220','3f18122e-004e-4381-bc37-c92c815065a9','26360aba-80e2-46ad-b172-f1052f9526f6','Karyola','2025-08-26 03:53:56.000',0,NULL,'2025-08-27 08:30:21.771'),
('4b228f58-062e-4acc-b87c-75477307aea3','df9c125a-f311-496d-96b6-2c41f3e5ed96',NULL,'ICON PLUS ZIGON SEHPA','2025-03-13 11:03:47.663',0,NULL,NULL),
('4b29ac47-ac7a-4668-999c-3fd1de904d7a','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-07-28 21:00:00.000',0,NULL,'2025-07-30 11:38:57.254'),
('4b3a859e-83c1-4340-aef6-72aa51fdae3e','148ecec2-cd7b-4ac3-88bc-9569bf15505e',NULL,'MOBİLYA','2024-03-23 07:53:30.122',0,NULL,NULL),
('4b4ceb1e-c1bc-4beb-83d6-ea5494956958','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL,'KARYOLA VE 2 KOMİDİN','2025-01-07 09:39:54.886',8,NULL,NULL),
('4b51564c-325d-4963-87a2-4ba35ab8b434','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL,'KING PLATİN BAZA 160X200 1 TK ','2025-08-04 21:00:00.000',0,NULL,'2025-08-06 12:16:36.230'),
('4b539733-41e8-4f8a-81e2-17e2b9e31c94','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL,'MOBİLYA','2024-08-07 14:14:08.376',0,NULL,NULL),
('4b64e005-5989-47b0-9c85-72fb337ea16b','0e34ca38-5c56-42c9-98cc-a90025b718c0','5836855a-2786-4563-b6df-022866b3cc0b','Baza başlık','2025-02-03 10:53:11.471',8,NULL,NULL),
('4b7d844c-2267-4af1-a242-7783f63d638a','146fc510-0538-4dac-90fe-d885bf1490c4','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-07-29 21:00:00.000',4,NULL,'2025-07-30 11:51:14.064'),
('4b80d339-56b7-49aa-a6cd-61fd58bdaed9','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL,'Seramik masa','2025-07-16 21:00:00.000',1,NULL,'2025-07-21 13:03:43.264'),
('4b89aa36-817d-48c3-9a42-4031483da485','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL,'Cuats sandalye ','2025-02-23 21:00:00.000',4,NULL,NULL),
('4b8db7d9-3ef4-4c05-b1ba-e427ad82676c','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0','a64d9016-ffd4-4952-b547-d9177972ba50','KÖŞE KOLTUK','2025-06-19 13:10:00.000',0,NULL,NULL),
('4bb6e32c-05e5-4b75-a1e5-32aa0e4ddc2c','33cf2dd5-d360-43eb-8f3a-27e48526fd03','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-09-15 04:00:42.000',3,NULL,'2025-09-15 12:41:02.753'),
('4bb8ca2c-be9e-4749-88d9-feef807e2707','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-22 13:59:40.000',2,NULL,'2025-10-27 13:39:04.728'),
('4bbe3bc9-725c-4c0c-a425-8320cbf215b7','d74a364e-c899-455c-8b3f-5a445fba432a',NULL,'Mobilya ','2024-10-21 13:22:52.591',0,NULL,NULL),
('4bd3461b-c38f-4c43-90a6-39aacd24cc83','3fe4384f-667e-4804-9bed-05209e202db9','80002933-91c7-4fef-85d0-eebac7edf53f','Koltuk Takımı','2025-02-27 08:00:00.000',3,NULL,NULL),
('4bf4c188-ebf9-429a-8ede-d43489efe0cb','b03e4184-3ccd-452d-bdbf-3a4ddecfb868','427bd939-f084-4fe2-bfc3-a1c352737138','Karyola','2025-06-16 21:00:00.000',0,'2025-08-05 12:59:26.147',NULL),
('4c0ca6e8-9805-4e5f-834e-d4cd8f62c746','5e8ddd62-748e-4719-9bad-9f588fc2c7d3','34a4a5f9-4481-4ed2-bdfc-bdfd411a65de','2 ADET BERJER','2025-10-14 15:00:20.000',2,NULL,'2025-10-20 07:20:34.269'),
('4c2679d1-8174-446f-b353-35431309f481','12b5cb18-7b59-4361-9c5f-b40222dc7d16','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','160 lık platin yatak','2025-10-01 09:19:36.388',0,NULL,'2025-10-04 11:48:27.837'),
('4c3a5678-79ac-4a99-82d2-9659115b69fd','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL,'KOLTUK MODÜLÜ','2024-11-28 21:00:00.000',0,NULL,NULL),
('4c4cf20b-abff-4c94-a2bc-14cac7fb53de','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL,'Sandalye','2025-02-28 21:00:00.000',2,'2025-04-26 16:16:55.621',NULL),
('4c57ec13-89d7-4df4-928a-17864a0c2939','45e284ed-6c80-498d-bd79-6d394761aa92','8beea2ff-4c7b-4d4b-9db2-803207650892','yatak 160*200','2025-04-10 21:00:00.000',0,NULL,NULL),
('4c5ba9e6-2914-4515-a9c4-be6dd42ef835','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL,'Mobilya','2024-08-26 13:35:50.246',0,NULL,NULL),
('4c77e727-6744-42ae-9efd-d1c1270fb5f5','48431447-596f-456f-9008-45bdd35c892a','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-25 03:44:41.000',1,NULL,'2025-09-30 07:16:06.830'),
('4c79aefb-5f90-4b5a-9a77-80665b3ab906','763269f0-c331-405d-955e-8f2aa8b9564e',NULL,'kumaş','2025-01-16 21:04:23.000',1,NULL,NULL),
('4c827ccc-5373-4bb5-b088-bc5d1ef4f91c','7ebc061e-668d-437b-b1f8-46651f8f4ce0','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-08-10 03:00:00.000',4,NULL,'2025-08-30 13:24:36.320'),
('4c88e864-195d-4fe4-a531-9df2aa8891b9','9c622fdf-272f-4650-ac75-c35e205b6022',NULL,'KOLTUK','2024-10-17 12:36:01.316',0,NULL,NULL),
('4c8d5858-b6e9-4d61-8150-28923e7ac277','d5e45bbc-32f3-498d-96c3-b034ee8c10cf','763afea4-80d7-4980-bdda-79840ca9431f','Köşe koltuk','2025-06-16 21:00:00.000',0,'2025-08-05 12:59:19.297',NULL),
('4c90744d-c7f4-4a92-a397-19633c6cd352','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-24 07:55:24.179',1,NULL,'2025-10-01 15:15:46.347'),
('4c9af956-747f-4f55-9533-cdcfab1e4fd2','c7effd94-7a9b-48a7-aa10-5ff2f31371f4','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','MASA','2025-05-25 22:00:00.000',1,NULL,NULL),
('4ca5522a-ad85-46e8-9cf4-2569cdfb7571','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL,'Mobilya','2024-08-01 08:23:22.788',0,NULL,NULL),
('4cb05ac7-22f1-4bea-ab3b-82d5aa2ff1c0','c0c3f9c9-66be-417f-8970-9ed698019421','940c6390-4082-4fe5-aeaa-06d180147a7b','MASA SANDALYE','2025-10-30 23:00:00.000',7,NULL,NULL),
('4cb853fb-ed75-4081-be82-d68d6aa556bb','c7da4efa-976f-41bb-a365-004594890133','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','KOLTUK TAKIMI','2025-06-30 10:00:00.000',5,NULL,NULL),
('4cbccb36-ce98-48a1-99e0-56eca97abdb8','ba93047e-2113-4d72-8a99-44f3c9fe2b01','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sehpa ssh','2025-05-16 07:04:48.937',2,NULL,NULL),
('4ced19c3-d724-4c04-81f5-38ec0a0161d6','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL,'MOBİLYA ','2024-12-19 21:00:00.000',0,NULL,NULL),
('4d03132d-9f2a-49b3-a739-b1888901750b','e929693b-b959-44d7-9fa1-907fe175f670',NULL,'ssh','2025-06-22 21:00:00.000',0,NULL,NULL),
('4d0794c2-98b6-441e-840f-79bdf1daf805','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL,'SSH','2025-03-09 21:00:00.000',0,NULL,NULL),
('4d09caa6-45de-4f3e-8599-b820c3a23785','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL,'MOBİLYA','2024-09-03 15:00:11.259',0,NULL,NULL),
('4d13499a-c323-4a76-85d1-a36c201137a8','0057de4c-fa8f-4061-a2b1-334d4c1637e1','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-13 14:00:22.000',0,NULL,'2025-08-13 11:26:16.366'),
('4d14c601-a3ac-47d6-83c9-24f76b7cd030','81d90712-62e3-438c-bb65-68ef2f0ed8e5',NULL,'MOBİLYA','2024-03-16 07:03:47.859',0,NULL,NULL),
('4d181a42-10e5-495a-b92e-ceb57447ac53','4fe827f7-044c-467f-84fa-f87c0fb696c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x220 mermer desen masa ','2025-05-29 21:00:00.000',3,NULL,NULL),
('4d1a8b16-6bdd-4cb8-bfa1-0a9b5843f8f5','a3c1d16e-1d65-47ab-9a96-281fee178cfd','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','KÖŞE KOLTUK ','2025-10-28 13:46:07.000',5,NULL,NULL),
('4d20dbf9-7ee4-4285-ae86-f7accb8d1a8a','a57bc9c8-fe89-4ea5-a536-9bb73d9abc0f','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3+3+1+1 koltuk ','2024-11-13 21:00:00.000',4,NULL,NULL),
('4d21a562-4444-42f3-8ddd-8d2f41fb562e','a19d66bb-d207-4329-bba8-b2b0c50bd4f6','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-08-28 12:00:00.000',3,NULL,'2025-09-01 11:47:42.500'),
('4d3cdd72-7918-4511-b26b-1c4ccf4148ec','afda17ee-6395-4bb0-bbe2-3e976e5044bc','d20217b5-30bb-4c0c-be9d-5b424ded8862','ORTA SEHPA','2025-05-08 14:26:33.820',1,NULL,NULL),
('4d63984a-5ff1-4253-abe8-286bd84e3528','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL,'4 tek kişilik set 1çift kişilik yatak','2025-09-16 08:22:38.000',0,NULL,'2025-10-16 11:53:00.321'),
('4d774313-0c57-42b4-b263-88ca731f6f72','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL,'2 kutu sandalye ','2025-10-01 12:00:00.000',0,NULL,'2025-10-02 14:29:08.312'),
('4da5ac02-2da4-493f-ad0f-88044a96633f','b21c6f76-2185-4cbb-ae48-70494372e886',NULL,'Koltuk azra','2025-09-19 02:03:43.750',0,NULL,'2025-10-08 15:10:59.742'),
('4dae2c46-63f9-42b5-9288-01744ed81ee5','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL,'1 Masa ve 2 adet Sehpa Üst Tablası ','2025-04-22 11:00:00.000',3,NULL,NULL),
('4dc5b11e-0281-4118-adc1-0905c0bc701b','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL,'ÇUVALLAR','2025-01-18 21:00:00.000',0,NULL,NULL),
('4dd2214a-d123-40a1-9fac-e86f897ef467','3f0da6fe-5c46-4444-a319-47ee65028a68','ee3a212c-1b68-420b-8664-4944fa4af703','Sandalye','2025-08-28 13:40:31.392',2,NULL,'2025-09-09 07:49:07.556'),
('4de2fe96-7a24-4d86-887d-dcd497fab7af','2d2e3588-712f-4c84-a6f5-a45bc45a416b',NULL,'MOBİLYA','2024-05-11 08:13:00.212',0,NULL,NULL),
('4e0db86d-11b2-41d2-bddf-34d3072b55cd','188a35d6-cefe-4fff-b723-12226d6d2796','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-10-16 18:00:00.000',4,NULL,'2025-10-23 12:01:33.902'),
('4e14ca81-6045-430a-9e2a-f633a8c06b61','1e0e887d-6244-4f8b-a7d0-710cf6802438','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-09-17 06:00:00.000',3,NULL,'2025-09-24 14:23:19.724'),
('4e1a9822-f454-4da6-ad99-64bdb4e1f845','4794626f-1ea7-475e-83ad-bdefd15b98b4','93f7c436-5884-4eed-87c2-2b3d00124c93','İCON KOLTUK TAKIMI ','2025-04-28 11:00:00.000',0,NULL,NULL),
('4e2c5239-19b6-4681-ba16-8b1043516644','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL,'TRAVERTEN','2025-08-06 21:00:00.000',0,NULL,NULL),
('4e2fd6bf-5f94-4ac0-9445-fed3d566f08f','0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-10-01 15:00:00.000',0,NULL,'2025-10-06 07:30:30.078'),
('4e4af127-4320-4f89-92fe-1163834e6b38','9106d25a-25ef-40fe-9a6e-a0b6c4d5ccbe',NULL,'Mobilya ','2024-09-24 10:32:50.944',0,NULL,NULL),
('4e657178-c2e2-44b1-b8d2-8753d5a94776','c9a45f03-14c0-495d-832e-276189a2a69b',NULL,'SSH CAM PARÇALARI ','2025-02-10 21:00:00.000',1,NULL,NULL),
('4e73a077-b984-4206-b6f1-c5162fb00167','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,'MUTFAK MASASI','2025-06-17 21:44:21.000',0,NULL,NULL),
('4e8fbb6c-dbca-46fd-ac66-4ab67a1ede2d','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL,'SSH MASA ÜST TABLASI ','2025-09-28 18:00:00.000',0,NULL,'2025-10-07 10:56:27.661'),
('4e9b1219-3006-400c-b048-bd8852cf7690','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL,'2 üclü ','2025-09-16 15:00:00.000',0,NULL,'2025-09-18 12:29:52.971'),
('4eae3816-b63a-4561-884d-1deed583c734','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'TÜRKMEN HEROS  BERJER','2025-02-18 21:30:13.000',1,NULL,NULL),
('4eb16edb-560f-4ea6-b0f6-c060e7f1614d','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2025-02-09 21:07:16.000',6,NULL,NULL),
('4eb9bdad-63ac-4040-895e-79400bb9085f','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL,'MOBİLYA','2024-09-27 14:28:16.642',0,NULL,NULL),
('4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL,'KÖŞE KOLTUK','2025-05-07 21:36:58.000',5,NULL,NULL),
('4ed838d2-71d3-4d84-a945-0e0075c5f9fc','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-07-06 22:00:00.000',3,NULL,NULL),
('4edf944f-7a80-479d-a999-67219fcb4040','0f40a488-b453-400e-a6e2-874e5a76c787','cf90c370-208a-4021-aaff-f9220970bca9','masa','2025-03-17 12:13:05.572',3,NULL,NULL),
('4ee86a27-5a1b-42af-9bfa-a003dfe53a34','b66f3ad7-e0cf-4e4e-852f-584b41ad42db','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TASKIMI-masa-sandalye','2025-01-21 21:00:00.000',11,NULL,NULL),
('4ef00d68-6112-4db2-8e3c-b639b689fc4a','32d385ed-3e8f-402f-80a2-9531544e451a','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-04-23 21:56:15.000',3,NULL,NULL),
('4f1322e1-f99f-471c-a1ad-eacb9b1a766c','38aec1a2-aa0a-4d63-9082-896aaa3694be','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','dolap','2025-09-10 13:39:36.942',0,'2025-09-23 08:24:02.327','2025-10-07 13:45:12.287'),
('4f368ea0-3216-4d5d-b412-e65605d1c4e8','b20579d8-be01-4cf4-a191-a8c8d52e9333','af378015-ddbc-42df-945d-d98710725e36','Köşe Takımı','2025-09-22 15:00:00.000',4,NULL,'2025-10-02 11:45:18.377'),
('4f47afc1-f513-4c2c-9163-77830c49042a','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL,'Mobilya ','2024-10-04 08:02:48.538',0,NULL,NULL),
('4f4d6062-861c-437c-a07e-84ed7315136a','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL,'MOBİLYA','2024-09-27 11:18:39.821',0,NULL,NULL),
('4f504ce1-6749-4512-ac63-b91e44735bce','d068aa1a-0211-46d1-8268-db89610a5ea5','e06c9f1f-1373-4067-93bb-a153d76e1c6f','kaybolan masa ayakları','2025-10-23 13:00:00.000',2,NULL,'2025-10-23 12:13:16.114'),
('4f65b611-3598-4b25-a13a-86ec5208990c','b2b78b1a-acb8-4599-be16-f4aa7cc745b8',NULL,'Natura sandalye ','2025-01-23 21:00:00.000',3,NULL,NULL),
('4f705fe3-98b7-4cad-b5b7-b4778d0004a4','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL,'Star köşe','2025-05-15 21:00:00.000',0,NULL,NULL),
('4f763765-223a-4b0a-a837-f4f5a6fd119e','ce4c8f08-9110-4882-8b15-e54368f68914',NULL,'Mobilya ','2024-09-19 12:30:50.335',0,NULL,NULL),
('4f7a399b-99eb-492f-9f15-315d8c3e5341','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL,'HALI','2024-10-02 09:04:39.081',0,NULL,NULL),
('4fa06d8e-e1ca-4450-a6f5-c672fc006767','c15ec73d-23f3-470b-88b9-b482c773905a','0f300a3b-b3d6-4b60-924b-aa70cd54141e','yatak odası-koltuk tk- sehpa','2025-02-24 21:00:00.000',1,NULL,NULL),
('4fafeaec-0a8e-43f2-b705-384793033ab9','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL,'MOBİLYA','2025-02-17 21:00:00.000',0,NULL,NULL),
('4fbca2c8-eff9-4cd9-93ea-b4599cec2502','994456e0-b759-4b05-827f-74c05ad02194','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Berjer','2025-09-21 20:40:44.792',1,NULL,'2025-10-06 09:23:40.745'),
('4fe1f522-463c-4be9-bfa7-8a0345fe9fe9','bd7eda5e-ac7f-480c-b763-07c7b440ee80','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x170 nevada koyu ceviz masa','2025-07-03 21:00:00.000',3,NULL,NULL),
('4fe7c3b6-ef6c-4a70-8bad-36a1448321c2','225eec2c-83ef-4f12-a430-b56f6429a736','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-05-07 21:00:00.000',3,'2025-05-13 08:20:43.509',NULL),
('4fee46a2-3558-4ad0-b22f-8e6a38950750','955fd2d1-deec-43d2-babf-7c48c40d74f0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','180x200 baza seti','2025-03-12 21:00:00.000',4,NULL,NULL),
('4ff9b75f-d4d9-4d74-a673-b51cc7783e4a','1c37ec40-77c6-4885-995d-696850992a10',NULL,'MOBİLYA','2024-09-09 13:04:25.653',0,NULL,NULL),
('4ff9c570-3b05-4434-984a-a2cc22b30e1a','3fe8ec1d-272b-4989-b3fb-4322708f7edf','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2024-12-26 21:00:00.000',6,NULL,NULL),
('501be04f-cb8a-4467-a453-3e4bd6f2b13f','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL,'KOLTUK ','2025-02-23 21:00:00.000',0,NULL,NULL),
('5020733c-470f-4fc7-b42f-9a099724b4a2','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL,'DOĞA MODERN PARİS KANEPE','2025-01-23 21:53:34.000',1,NULL,NULL),
('5020e987-e02c-4a22-9e93-59bf24e1df3a','bee81a54-df39-48a5-9fb3-63e75a6f2e1d','44c404b3-a618-4af5-bdfb-ad381f049053','VOYAGE 3+2 KANEPE','2025-10-14 09:00:00.000',0,NULL,'2025-10-22 11:25:10.053'),
('5022973c-b928-4561-ad5c-1a67c1816ac9','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN AURA ÇALIŞMA MASASI','2025-08-28 02:07:45.000',1,NULL,'2025-09-08 12:00:07.860'),
('5032b9d1-12b3-43c9-be24-f1af560c5e03','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL,'YATAK BAZA','2024-11-14 21:00:00.000',0,NULL,NULL),
('503ad8da-9a8d-4ce8-9358-85ef86ef590f','47f285e8-830a-42cf-a352-d8268aef8cdb','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','KÖŞE ','2025-09-29 12:00:00.000',0,NULL,'2025-10-06 09:31:20.596'),
('50443669-b15e-4cc6-9bdf-b91285138cc0','16715384-46fe-4d2a-88d8-8467cd5c6d5b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','ŞİFONYER-MASA SANDALYE-BAZA SETİ-SEHPALAR','2025-04-09 21:21:42.000',999,NULL,NULL),
('504660da-c27b-41a4-aa56-e6293172b9c3','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL,'Mobilya ','2024-09-11 13:48:50.343',0,NULL,NULL),
('5047f931-039a-4561-91e3-60195be101d4','dba83242-e0e5-4632-86da-4f274ac9d9bc','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3-1-1 koltuk','2025-01-16 21:00:00.000',3,NULL,NULL),
('50517437-8e4d-49e3-bf9b-a6221588b05f','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL,'MOBİLYA','2024-05-10 06:52:31.855',0,NULL,NULL),
('50577563-264a-47c3-ad7f-93a3a9e59474','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL,'MOBİLYA','2024-09-16 08:18:53.906',0,NULL,NULL),
('50748e2f-3de5-4f3f-88ae-d8093198e2a8','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','f6b088d3-e3bc-4d15-8fc9-2cdc074c6759','ETRO ORTA SEHPA + PUF ','2025-04-30 13:44:07.000',0,NULL,NULL),
('507b9bbe-ef2a-4a95-a25c-ea392d3d95e1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','a92f02e3-dfdb-4958-8a2b-38de1658176a','3+3+1+1 koltuk','2024-12-26 21:03:10.000',0,NULL,NULL),
('5089704a-e90b-41d3-a4fd-0f97ee26031a','e41e7781-1c17-4d37-b049-0a5e20034834',NULL,'6ı adet sandalye bir adet masa bir adet orta sehpa bir adet puf','2025-08-28 03:00:00.000',0,NULL,'2025-08-29 09:56:46.168'),
('509c0ac7-1856-4369-9d18-6ae5ef5d788d','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL,'FRİDA BERJER','2025-03-05 21:00:00.000',1,NULL,NULL),
('50aa7ed9-3453-47fd-8ba8-af21e662e147','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL,'puf ','2025-10-27 01:53:39.000',2,NULL,NULL),
('50bcdd33-0f58-4d41-83ad-b9e4db782251','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL,'SSH','2024-11-22 21:00:00.000',0,NULL,NULL),
('50c36b71-da18-4aef-bde0-b5494b1ade07','69d3f67b-d428-4309-b980-d4a463f6b69e','bf2f9026-0036-4efc-bfb3-7790361e64fa','SEHPA','2024-11-10 18:49:46.985',1,NULL,NULL),
('50cd18d1-456d-4a3a-9315-1c4d4ae815b9','ee47f1d8-1ad5-4907-acb2-e3edf9f48713','e32e5c88-cc45-488f-bdb9-a2a8c6503a6c','BONNY KÖŞE KOLTUK','2025-01-28 21:00:00.000',5,NULL,NULL),
('50e8ba0b-ae27-421d-b84d-a10fe99c5ac4','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL,'KOLTUK KASASI','2025-09-04 15:00:00.000',1,NULL,'2025-09-08 10:36:45.302'),
('510115d1-e038-41e5-900d-014ceefd89e8','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL,'MASA','2025-05-11 21:00:00.000',0,NULL,NULL),
('51130bdb-f938-4bc4-8f49-46c9b089489c','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL,'YATAK ODASI','2024-03-23 06:54:19.919',0,NULL,NULL),
('5114defd-dd85-45fa-a3af-522574ed305c','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL,'ÇEKYAT ','2025-01-26 21:00:00.000',0,NULL,NULL),
('511bd2e8-973f-42d3-ac90-03096f542b82','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963','21444842-12de-49d1-9480-1c8708a45353','berjer','2025-02-04 21:02:58.000',1,NULL,NULL),
('511dd59f-0532-4fbe-850c-9fb40dcb2a8c','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL,'Mobilya ','2024-09-10 12:38:09.135',0,NULL,NULL),
('5123f8ad-66b2-474b-a9f8-e1fba666f1a6','90462b6a-6fe2-4fba-8b01-1afd6272a71f','2648ebea-6027-48a1-b672-7e6e6b86cd2e','yatak','2025-10-27 01:52:24.000',3,NULL,NULL),
('51340b41-7e95-4f88-bc46-e5b389204545','fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','01d32275-21e7-434a-a0df-c2e2e4b92da2','KOLTUK TAKIMI 3+3+1+1','2025-10-28 15:00:00.000',4,NULL,NULL),
('514bc2cf-f411-477b-a6dc-a5ea8179a08e','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL,'KOLTUK TAKIMI','2024-05-04 10:15:12.803',0,NULL,NULL),
('514d2478-d2eb-4418-824a-9919e1b69fea','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'yatak odası','2025-05-30 05:59:16.836',0,NULL,NULL),
('5152e8e9-927e-405e-ad55-1fe2f6b40096','57aaa2e5-1908-4468-bb27-3c3205ba5948','27542b9c-f586-4152-836b-5dedeaae0be2','ORTA SEHPA ','2025-07-28 01:10:09.000',0,NULL,'2025-07-28 14:02:59.084'),
('516b7da8-60b0-423e-ad0b-ba7b65a9acd7','f3dbda61-0901-46aa-93b6-d65e972a472d','44c404b3-a618-4af5-bdfb-ad381f049053','frida köşe ','2025-09-09 15:54:47.000',5,NULL,'2025-09-09 11:06:00.285'),
('5192d2f1-dac6-4fd2-9366-a61b24bf47fb','6d081276-ddf8-46f0-93cd-4f0c203eb705','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa sehpa','2025-08-28 03:04:00.000',6,NULL,'2025-08-29 13:33:59.043'),
('5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede','ce4139db-5ecf-40b0-b163-b976a128b763',NULL,'Koltuk ','2025-05-22 21:00:00.000',0,NULL,NULL),
('51ab38e9-7405-48a7-b42b-51059955bc66','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL,'MOBİLYA','2024-09-09 12:47:28.095',0,NULL,NULL),
('51c75039-67d2-4fe3-b966-4a8e28aad039','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL,'MOBİLYA','2024-09-09 13:07:06.507',0,NULL,NULL),
('51d9a1e7-691b-4785-b89d-ef4906698195','910744ec-cad6-475e-ad64-324c153358ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm msm05 baskılı orta sehpa','2025-06-24 21:29:07.000',2,NULL,NULL),
('51f75fd6-c577-4a6d-93f9-fe517711b119','aa3f39f2-a374-4662-9b70-6a623142a920',NULL,'PETEK OVAL BERJER ','2025-09-04 12:54:10.000',0,NULL,'2025-08-30 13:54:12.264'),
('5201addd-e2f2-4f82-93e3-b6be743edbf7','bb12bd3c-d87b-4ede-9827-8c115b6da789','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-02-06 21:00:00.000',0,NULL,NULL),
('52094cbf-05ad-4ae9-9377-57061d8b0a6c','d79ec9de-a72a-47f5-a918-2b75ec194704','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-07-28 14:00:00.000',3,'2025-07-30 14:44:24.196','2025-07-29 09:26:56.336'),
('520b7195-189b-492f-9da1-ba698952b5ad','0a266acf-5707-4e27-8a72-fd079a3c1ee6','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-07-25 09:56:23.000',4,NULL,'2025-07-28 08:24:14.809'),
('520ff0cd-d192-4a76-96c4-75ad6f12451f','e83e8f5c-4cde-4c83-881d-94666956b508','44c404b3-a618-4af5-bdfb-ad381f049053','3+1 KOLTUK','2025-10-22 21:00:00.000',0,NULL,NULL),
('521f8731-8f18-4e3e-820f-edf48bc0b1bf','f483e682-c963-48b9-8959-a369cedd8ffc',NULL,'ZİGON SEHPA','2025-02-12 13:26:45.486',1,NULL,NULL),
('5255e75f-2972-4ac2-8063-49e650a876c7','2ab9bb8f-58c4-4826-94a1-bf5b458b034e','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-03-23 21:00:00.000',3,'2025-05-07 16:51:50.333',NULL),
('525a1f01-65a7-452a-a205-48074153f5d1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 sehpa','2025-06-18 21:18:25.000',2,NULL,NULL),
('525b5c37-829f-4a61-adec-1c61536019ea','910744ec-cad6-475e-ad64-324c153358ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Msm05 baskılı masa','2025-06-24 21:00:00.000',3,NULL,NULL),
('52738b5a-1f07-46d3-8ee3-d780d57c3457','dedf152d-bf4e-47e1-b412-9078997573d4',NULL,'60 çap ceviz ve traverten sehpalar ','2025-09-01 21:27:31.225',2,NULL,'2025-09-11 10:48:22.091'),
('52761b62-b6c3-4071-b8ca-91a2938d2743','4f91d654-f578-426a-8133-5299ed48d624',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('527ed217-6d76-4ec9-b760-807ad00b847a','f4277465-32cb-4557-9e68-bc0849767854',NULL,'SSH PARÇALARI','2025-09-05 12:00:00.000',0,NULL,'2025-09-01 12:44:50.617'),
('5282b87c-6b11-46ed-bf19-54c6f3afd111','147e8615-279e-4297-866d-fbccbd1231af',NULL,'DELUXE BAZA SETİ 120X200 ','2025-08-04 15:24:01.000',0,NULL,'2025-08-06 12:15:50.130'),
('528790b2-5c45-40f7-9e16-481e1a644ff1','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL,'MOBİLYA','2025-09-04 18:00:00.000',0,NULL,NULL),
('52ac507d-12c7-4898-9a40-6926b3472aea','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL,'Mobilya','2024-04-08 08:43:02.235',0,NULL,NULL),
('52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL,'köşe takımı','2025-05-13 13:47:31.499',7,NULL,NULL),
('52c1c51d-da24-4385-88da-ce34429dabb7','59f8293d-670d-46aa-baa2-c4a3a969aea2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ceviz ','2025-06-16 21:10:22.000',4,NULL,NULL),
('52dd3c5a-4e7b-470b-aca6-03bb538c76cf','c5ff309c-8bef-4c02-948a-d06e8823ca09','0ad4214d-7661-4597-8ec6-579510e6a02f','sandalye','2025-09-03 01:29:37.000',0,NULL,'2025-09-03 11:59:21.805'),
('52ff7790-3c03-4f61-b4e5-9502df5dc3d7','b10467dd-1ad4-4468-8e8e-6d6e751fff22','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-06-27 14:02:17.794',6,NULL,NULL),
('53025d92-f019-4f5d-9b69-68a3b09bb7bc','4f563dbc-f003-405e-bdb8-828b7a66d357','24bab3dc-471a-441f-86e9-9c582fb4953a','yatak odası','2025-09-10 05:32:44.000',0,NULL,'2025-09-22 17:08:51.481'),
('5317ac97-70e9-47b5-8215-375c06b6889e','c3d3518b-3207-4e42-8927-efa33c951310','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','SEHPA','2025-09-26 00:00:00.000',2,NULL,'2025-10-02 10:02:13.555'),
('532dcdc4-aacc-4c9a-9207-a316ea09350e','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('53346280-587d-47aa-9b0c-285594193bfc','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL,'70x120 cm orta sehpa ','2025-04-24 21:41:19.000',2,NULL,NULL),
('53356ef7-7c3b-4558-868b-c1552ff1d067','aa3f39f2-a374-4662-9b70-6a623142a920',NULL,'PETEK YARMALI KÖŞE ','2025-09-03 12:53:46.000',0,NULL,'2025-08-30 13:54:12.264'),
('5338996f-0387-40ed-ac42-1d89b6d6d1fe','a34f5acd-e7a0-4960-a2f6-754b4e35e40a','0c32079b-f912-41cc-9d0e-e1bd6235d204','PİER KOLTUK TAKIMI ','2025-09-03 09:00:00.000',0,NULL,'2025-09-08 07:50:27.560'),
('53464b3b-69a0-45cb-8346-b26d29c4ae86','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa','2025-05-09 11:20:49.291',3,NULL,NULL),
('534b92d0-013c-428d-99ac-08117a624aee','bbee5f58-f6e5-4525-b872-ef97ac4ab579','aad315d0-10a7-4b01-bb33-59684e6f380f','köşe','2025-10-07 06:00:00.000',5,NULL,'2025-10-13 09:36:54.395'),
('53511961-4401-400e-af74-34d0e714d59c','c95c986d-eb32-413d-a7af-cbc9b9db9e6b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe-yemek odası-sehpalar','2024-12-03 21:00:00.000',19,NULL,NULL),
('536180b1-1c3f-4444-a507-049eec9ae541','a4db2a81-e01e-459f-a5dc-0aa1254f8b05','8f681d43-0f04-48bf-a190-abcd5fbd637d','VİRAL BAZALI KARYOLA ','2025-08-11 10:13:03.000',0,NULL,'2025-08-22 15:46:36.123'),
('5362cad6-3ac7-4876-8ddc-d366e2335688','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL,'MOBİLYA ','2025-01-05 21:00:00.000',0,NULL,NULL),
('53924259-8949-4b83-8f78-011a92bfc95a','61c62b54-9519-46bc-a518-390b8b72c6dc','1ffd8555-8f75-4a29-93f1-98402d43a4c6','ORTA VE YAN SEHPA SONSUZLUK','2025-08-28 20:57:01.000',0,NULL,'2025-08-29 13:08:08.190'),
('539471d1-c2f8-4e53-ad1b-76427705641f','458ed3b8-b224-474f-bf44-b16282a7b8f1','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-05-19 21:00:00.000',3,NULL,NULL),
('5397f272-f4a1-44e9-8d2d-7ab3baa0cd2c','bceef6ba-e1ee-4daa-b926-518c0bbcce5d',NULL,'2 KOLTUK','2024-03-16 08:30:04.672',0,NULL,NULL),
('53a40750-ae01-4461-a12d-633dc7c9cfea','b87dfd8b-75ee-4a0e-bd25-1178a78774c6','b151728c-b265-4eed-b5c1-cb53409fb775','köşe','2025-07-31 13:30:00.000',4,NULL,'2025-08-19 14:16:51.712'),
('53a925c4-4122-4bbb-9c27-7938c548bc0b','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL,'MOBİLYA','2024-12-12 21:00:00.000',0,NULL,NULL),
('53ceca88-8b9c-46cd-b0d8-18b8ca55f1d5','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL,'Milas masa ','2024-12-12 21:00:00.000',2,NULL,NULL),
('53d2c160-9a7b-4a8b-a9df-5c5381aa2607','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL,'Mobilya ','2024-10-16 12:57:19.401',0,NULL,NULL),
('53eba6e6-9870-466d-85b5-c7b32bf33173','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL,'MOBİLYA ','2024-11-18 21:00:00.000',0,NULL,NULL),
('53ebe0c0-71e6-4d4a-9269-0b525fe0abc0','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('542181c6-dabf-4cbd-b756-74abe3440744','8f201baa-69fe-442b-9cab-fa1f47b7420b','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','MASA VE ORTA- SEHPA-DOLAP ','2025-05-14 09:04:50.766',999,NULL,NULL),
('542ded3e-3de4-4742-954c-bc3a0ca8d406','63bcaab6-1f45-4304-b9b2-e21172f2f74b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-09-01 03:01:38.000',6,NULL,'2025-08-30 10:47:32.801'),
('542ee35d-c24f-4975-8b8a-369163028c10','516dfaaa-e378-4999-b13f-ef0839711334','55934c55-9fe9-46ce-b8a4-cf7669e12b21','Mfour sandalye','2025-06-19 21:14:44.000',6,NULL,NULL),
('543dfe18-75e0-4198-9d24-c6d0458898e8','61c62b54-9519-46bc-a518-390b8b72c6dc','d00fcabb-1fa6-406e-975a-645a02949630','NİKOLA KÖŞE KOLTUK  195*450*350CM','2025-08-24 06:00:00.000',0,NULL,'2025-08-29 13:08:08.190'),
('54615f37-dc23-4fec-a058-63bc43066248','c5ff309c-8bef-4c02-948a-d06e8823ca09','b22273fb-b00f-4afc-b708-2437f60ec61e','masa ve sehpa','2025-08-22 03:00:00.000',0,NULL,'2025-09-03 11:59:21.805'),
('546ad3d0-25c2-43dd-9443-e48b8e5b6530','88d46ad5-3201-49c1-bafb-3c271a911158',NULL,'MOBİLYA ','2024-12-08 21:00:00.000',0,NULL,NULL),
('54707b39-45b5-4671-a451-066aaf860052','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL,'Traverten masa kasası ','2025-07-31 18:00:00.000',1,NULL,'2025-08-07 11:54:21.839'),
('5478abc5-9d64-4211-bae8-54bf5172ebc0','7a667252-ed58-40d2-8847-e86c3c8dd45d',NULL,'Mobilya ','2024-10-16 13:02:32.451',0,NULL,NULL),
('548cb07a-2554-4af5-b38c-48fe9b55e445','862e4bdc-2e76-4b0a-b6fc-8557101a2020','bc1b9fd7-95d7-4d5b-a84e-684140acc414','viral yatak odası dolap 8 kapaklı ve puf var','2025-06-25 21:00:00.000',999,NULL,NULL),
('54d3748f-dda6-479e-918a-23bd09a831ab','a71c1b97-adb1-44f0-8622-8ebc242aee74','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık','2025-09-15 08:09:12.026',4,NULL,'2025-10-16 08:04:49.466'),
('54d4752f-e7ac-4178-9490-9a68454369fd','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL,'Koltuk ','2025-07-17 21:00:00.000',0,NULL,'2025-07-18 12:16:36.213'),
('54d8cca4-55bb-4e17-bfbe-85fc6529db13','36d38390-5cfa-4e01-8327-52dbfc708657','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','masa üstü','2025-08-26 21:55:55.295',0,NULL,'2025-08-29 09:41:05.376'),
('54ecc723-511d-4e08-bb59-481cabdb46bd','2ed09389-6872-45ef-b60f-31ff8428b5fe','31d2d78e-770d-45bb-b045-c487ea65c7b0','Fasülye koltuk takımı ','2024-11-03 21:00:00.000',3,NULL,NULL),
('54f49f0e-3750-48ef-be0e-ae8f72989d98','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL,'KOLTUK','2024-09-18 21:23:35.153',0,NULL,NULL),
('54f76545-b44c-4fcf-8097-cd39f86917de','955c7c46-bc72-473b-9a0f-e11f625e9690','5e537499-0979-40ea-9a81-c72e5aa6ab77','180x200 bazalı karyola','2025-05-08 21:52:21.000',999,NULL,NULL),
('55155cc4-3303-4c8d-8138-cd049d9c0cad','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL,'MOBİLYA ','2024-12-23 21:00:00.000',0,NULL,NULL),
('5525a9f7-87da-4298-9caf-21e307bb8af9','40683a71-69a8-4dcd-8bfa-2e521bc73880','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2kutu 4 adet sandalye','2025-01-08 21:00:00.000',2,NULL,NULL),
('555b2841-46e8-45eb-9191-165bb36234f5','226d454f-504a-4c41-9f7c-2a37ac051991',NULL,'Mobilya ','2024-10-16 13:00:18.831',0,NULL,NULL),
('5567c05e-4eb3-4a67-8e84-862334c1e476','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','60 çap yuvarlak sehpa','2025-10-22 22:56:33.000',2,NULL,'2025-10-24 08:09:48.837'),
('558b4bc7-c19f-4722-8daa-e4526e281a9a','d90a2d63-8817-4556-b510-fd210ae23d81',NULL,'MOBİLYA','2024-03-14 15:26:28.465',0,NULL,NULL),
('5598c3c4-7b30-49fc-8997-d966fbd95fbc','3d40d0f6-e7bd-434d-934e-23f8c73df745','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-07-31 02:00:00.000',7,NULL,'2025-09-18 08:26:26.281'),
('5599957b-2f26-4cfe-8cb4-9c7b2aad482f','89eb6491-3e20-44a2-80d5-2107251a822e',NULL,'KING PLATIN BAZA SETİ ','2025-05-25 21:00:00.000',0,NULL,NULL),
('55ba31f7-49c7-468f-b2f6-79eb12fe2db4','05161621-4074-4395-a4ac-b594dfcce0f9',NULL,'MASA','2024-11-19 21:00:00.000',0,NULL,NULL),
('55bdd77a-dfa4-4c83-bd2b-4709d2c3ad56','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL,'MOBİLYA','2024-09-03 15:20:38.227',0,NULL,NULL),
('55c580f2-39b2-4b62-bcc9-c1c4c35132f8','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL,'YATAK BAZA','2024-10-02 09:21:58.413',0,NULL,NULL),
('55d57945-be77-4866-9a7a-1f1f873c24a2','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Traverten masa ','2025-07-15 15:00:00.000',3,NULL,'2025-07-16 08:03:25.167'),
('55dd5cbc-c309-4696-aa21-919f08012acb','aaf80057-65ea-4999-832a-29537bd6ba3e','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-04-23 21:00:00.000',3,NULL,NULL),
('55ec4035-40e3-4d77-bb32-a4802c6ae143','032b3134-3092-40b9-b2b2-be3390b4726e',NULL,'KOLTUK TAKIMI','2024-05-10 06:33:47.442',0,NULL,NULL),
('55edfe20-2d56-4019-90e2-b6a3b334c0c3','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL,'Sineklik ','2025-01-09 10:27:39.867',1,NULL,NULL),
('55f6b49c-3b1c-4cdc-83c8-9d8baff8ce03','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL,'MOBİLYA','2024-09-28 15:22:48.694',0,NULL,NULL),
('55f6bdcb-8600-4864-bb7e-b38027af88e9','bd7eda5e-ac7f-480c-b763-07c7b440ee80','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye koyu ceviz','2025-07-04 10:05:18.000',3,NULL,NULL),
('5603bee7-2924-427f-8ac2-cc504126f908','d9ce2f65-7034-4114-b66f-0c1076eb90bf','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-29 03:00:00.000',0,NULL,'2025-09-03 13:05:03.144'),
('560a030c-37ea-4206-a1a0-0cd801f6ef34','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3','0f300a3b-b3d6-4b60-924b-aa70cd54141e','DÜĞÜN PAKETİ','2025-02-23 21:00:00.000',1,NULL,NULL),
('5615ae9c-cc16-4fb7-83a7-8c7fa5679c81','0d464a57-d48d-4898-8ed5-05d911433d8e',NULL,'SSH','2024-06-08 07:50:10.915',0,NULL,NULL),
('561a564d-00de-4090-b3dc-dc3cb34c73c0','8cb3e6c1-dad7-49e4-8443-0c03ea610bf7',NULL,'KOLTUK TAKIMI','2024-05-04 10:05:12.160',0,NULL,NULL),
('561d9221-379f-4c95-8048-1cac9299f181','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL,'puf','2025-07-16 08:31:03.049',1,NULL,'2025-07-23 11:12:41.568'),
('5632f22c-493f-4a5e-afdf-13268c32b047','261b8c3d-2e8f-4348-9ae5-3be163c70130',NULL,'Koltuk ','2025-05-14 21:00:00.000',0,NULL,NULL),
('56444780-7901-46c9-a902-b20a8f5d4449','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','6a29d4d5-7923-4e32-847a-7b8f963ba237','Sehpa ve Masa üst tablası','2025-05-09 12:00:00.000',3,NULL,NULL),
('565f6966-f194-4d7c-8b20-64502045078d','b78bd5b9-8cff-4d83-880b-6b121f0affe1','4d3f433c-6ebf-4443-a8bd-319b61cbe400','masa ve 6 det sandalye-karyola-şifonyer puf-çamaşırlık-2 adet komidin','2025-09-21 08:22:29.000',0,NULL,'2025-10-16 11:53:00.321'),
('567568b0-7a28-4c3d-8e81-1b43d87b6ba4','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL,'sehpa','2025-03-20 13:05:00.000',2,NULL,NULL),
('568e7688-3b27-40f5-9c97-8b89432bd65e','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL,'MOBİLYA','2024-03-30 09:09:11.710',0,NULL,NULL),
('56ccf024-8de0-4c44-ad1e-db1438dbb90e','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL,'PIER SANDALYE ','2025-09-04 01:53:41.000',0,NULL,'2025-09-23 07:48:43.164'),
('56d181e7-071b-403e-bd82-0351e0863d0d','755e2ad9-81c1-4538-8d82-5b3d0b23767c','00d8fa15-202f-4635-af55-df5a498e7639','ALLEGRO MİLANO SANDALYE','2025-01-23 21:53:15.000',6,NULL,NULL),
('56ea7179-a602-4433-936e-330a27aa9423','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL,'KING PLATIN BAZA SETİ 160X200','2025-09-14 15:00:00.000',0,NULL,'2025-09-15 16:49:05.278'),
('56f86587-7355-4e49-9eb5-727edc1be570','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL,'Mobilya ','2024-10-14 14:07:43.830',0,NULL,NULL),
('57127d94-6fac-4e1c-ac7e-d9e37f789e3f','9a5b1798-a2b1-4df0-a151-463694364cd5','613af80c-91f0-46fc-a2e2-30762123b7bc','LİDYA CALVİN MASA','2025-09-18 17:50:37.000',1,NULL,'2025-09-24 08:19:17.069'),
('5713730e-9e2a-444e-8fe2-4b510ab6cee5','4794626f-1ea7-475e-83ad-bdefd15b98b4','bed73507-59f5-45a3-a19b-47793c024f51','TREND YEMEK MASASI ','2025-05-06 21:20:19.000',0,NULL,NULL),
('571f0044-97d4-451a-a63d-b045acd7a606','d7b0bb03-c914-41e5-8899-697339f7e562',NULL,'KOLTUK TAKIMI','2024-03-30 09:53:38.688',0,NULL,NULL),
('571f94e6-7fb3-48e1-a3cd-dd123cdbe09c','c7858430-6187-438e-9e7e-600528fb9aeb','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-07-31 21:00:00.000',0,'2025-09-04 09:38:56.907','2025-07-31 13:41:05.002'),
('5726ec24-a703-4e2f-a075-7e7300c7df74','88cc6a24-35a3-4b23-8747-59b47b080f1a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','40x40 traverten orta sehpa','2025-07-24 10:58:40.175',2,NULL,'2025-07-25 12:42:38.195'),
('5733786c-8679-43e7-8510-9eaefeb26e66','ef665960-85ce-48ac-b924-d42b48473988',NULL,'Balat sandalye ','2024-12-13 14:20:56.604',6,NULL,NULL),
('5733a61d-d85a-4e09-8a71-55587597caca','5f770c96-052e-4429-8137-dee2c4ed5bd9',NULL,'TATAK','2025-01-07 09:48:33.363',0,NULL,NULL),
('574519af-b90a-45b7-9c99-63bd11d5c2f6','6e979cb9-141a-43d7-a38c-362246b8f5a8','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 sandalye','2025-09-03 03:24:23.000',4,NULL,'2025-09-19 07:22:21.255'),
('574dfe37-d46d-47c7-8219-216fa7c208ab','f64732c3-76ae-4710-b1ac-fb3732ed150b','38a7333e-8a0f-4e45-957f-e11d538d2097','masa','2024-12-27 21:00:00.000',1,NULL,NULL),
('57604baf-e8cf-4035-aab3-ed4bab52522f','147e8615-279e-4297-866d-fbccbd1231af','b0c740d4-a7de-488f-b2c8-2a1f9f1f418e','HALİKARNAS GENÇ OD  DOLAP KOMODİN KARYOLA ','2025-07-28 15:23:22.000',0,NULL,'2025-08-06 12:15:50.130'),
('57640199-0b9f-48e0-b21b-62525f5d75f8','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN SİZDE','2025-09-04 12:00:00.000',1,NULL,'2025-09-11 11:15:27.754'),
('577ac94f-b889-4af9-8d01-96034f38a36e','b4df3c44-e272-4f15-83b1-063b9f953adc','44c404b3-a618-4af5-bdfb-ad381f049053','KONTROL !!!ORTA SEHPA PUF VE 3 ADET YAN SEHPA ','2025-10-13 09:19:37.437',0,NULL,'2025-10-14 10:51:22.542'),
('57b80d20-6d99-44a4-b36a-4bbe6310a3c5','52ea460d-e94a-410a-9cce-0b771b3e4cc8','754dc58e-48a9-4cf6-bcec-82201990299e','2 adet karyola + döşekleri','2025-09-23 05:00:34.000',8,NULL,'2025-09-24 11:01:54.688'),
('57c78c42-17b9-4ffd-b16c-f80f383635aa','091754cf-7aa6-431a-8a90-b30fd8978287','b78426e8-87ca-4d84-878b-11136d2e5719','SAGA KÖŞE TAKIMI ','2025-04-20 21:00:00.000',0,NULL,NULL),
('57c8b712-7ae0-4485-baeb-55a44610ba75','9e04acec-f940-4ce2-9a36-44b825987e05','bf2f9026-0036-4efc-bfb3-7790361e64fa','Sehpa ','2025-03-07 12:35:11.748',0,NULL,NULL),
('57d11f20-03a6-412e-bd79-62615f3c7867','3b29ef33-2d5d-4e29-b828-9833896d4a0d','e06c9f1f-1373-4067-93bb-a153d76e1c6f','Masa Sehpa','2025-09-04 05:11:00.000',6,NULL,'2025-07-25 13:20:26.100'),
('57d135c5-d90d-4ca0-8fcf-df33df4d6be0','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('57d426fa-fa0c-4bd9-b11b-11018599b28f','c79902d9-089e-44e4-a536-9307c5bef39d','b6f3a82f-4f50-4678-b7ea-8d013b6b1646','NEVADA SANDALYE','2025-10-01 04:46:43.000',3,NULL,'2025-10-08 13:55:12.006'),
('57dab073-4b3b-40f6-b274-8bed0e1e1e8e','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL,'Köşe koltuk','2025-06-30 21:00:00.000',0,NULL,NULL),
('57ef4979-842b-4b07-84ef-752e1f28ee7d','7e266893-f849-462e-9a81-e6336886fc16',NULL,'sehpalar ve bazalar','2025-09-15 00:46:34.000',6,NULL,'2025-09-30 16:03:26.921'),
('582920d8-061b-4cd8-a756-49a9a3248cb5','78463605-c329-4929-b567-24a3f88f4b7d','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','karyola','2025-05-27 21:39:51.000',7,NULL,NULL),
('584c7d21-1cda-4d31-ace0-5cdb4484dc36','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL,'BAMBİ LATEX MASTER YATAK 160X200 2 ADET','2025-09-16 14:28:53.958',2,NULL,'2025-10-10 08:56:17.702'),
('584f346b-83ac-4f0c-84d8-83f18760531b','f774fd73-b557-40e4-a1f0-2f9f1e99e70a','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-07-02 09:23:46.432',1,NULL,NULL),
('585b23e1-d8ef-41f5-b796-16b2dd04a045','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-28 07:00:00.000',0,NULL,'2025-09-03 13:04:52.589'),
('5863ff3a-c04d-4de1-9dee-bc92ece85d88','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-08-19 11:44:59.000',3,NULL,'2025-09-22 15:24:34.176'),
('586d8693-ffd8-45d6-9ff5-c2329cf59822','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-04-09 21:18:23.000',8,NULL,NULL),
('586f2da0-5073-49f3-ba96-db59027b2e38','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL,'Sehpa','2025-08-22 01:38:00.000',1,NULL,'2025-08-26 12:42:10.664'),
('587301bb-f6b8-4a3a-b86e-0eb042e85611','f5d87b20-c153-4013-ad66-04b26744dcaa',NULL,'SALINCAK','2025-07-15 21:00:00.000',0,NULL,'2025-07-17 09:44:14.459'),
('5879d280-4095-4ae4-84b6-a7f59f7425e2','6f6f3f97-26d1-4eb9-9f9c-527ec752389c','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN ','2025-04-24 11:38:07.286',1,NULL,NULL),
('587fc7bb-d234-4c16-8ef8-7a704c2be32a','02f21391-f1d5-4bee-b4d9-17f65a20feb7','697dd7c1-3e5b-4f0d-bdaa-311ea7554024','8 adet Polo Sandalye','2025-08-18 06:17:46.000',4,NULL,'2025-09-02 08:50:18.146'),
('58885293-5f9a-41d9-a0c0-1e5e1b47c8a5','69d3f67b-d428-4309-b980-d4a463f6b69e','a59c832a-288a-45ad-9922-f8c1ebf24d41','160*200 YATAK ','2024-11-10 18:50:16.814',1,NULL,NULL),
('588b3fc3-de25-4a76-ab64-66572872b773','9b2f2551-1d35-437d-8ac4-759e5572cc4b','3702a172-da98-4e48-8071-547c4f3e92e8','Natura sandalye ','2025-01-23 12:38:27.000',3,NULL,NULL),
('5897b2c7-e701-41b5-8a4e-cff8dcdba453','50ac71ad-f352-4f3f-9611-9447396e01a3',NULL,'aaaa','2025-10-14 15:00:00.000',0,NULL,NULL),
('589cc722-7c0d-40c7-a099-7e88c8ff12e4','2791411b-f352-4706-ac7e-e1f3dcb20fa4','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM YEMEK ODASI + ORTA SEHPA ','2025-05-26 11:09:33.373',0,NULL,NULL),
('58a96255-8ed4-4ea8-9672-6758dedc8bdb','313a72ed-6534-4a76-a704-0b5ce01d87db','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-24 03:31:54.169',6,NULL,'2025-09-26 11:13:25.866'),
('58ae4a76-4b13-4d24-b3f6-cf6235c8f02c','dedf152d-bf4e-47e1-b412-9078997573d4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz','2025-09-01 21:27:54.000',6,NULL,'2025-09-11 10:48:22.091'),
('58ba0ed3-8e1c-4fec-ba8c-4198834dd0e2','7d5531cd-fb21-4284-9145-817c08eee250',NULL,'aralık ilk hafta teslim','2025-10-24 11:27:13.802',0,NULL,NULL),
('58c0921d-4fa9-4aa9-b6dd-5b05cc098f70','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL,'Baza başlık ','2025-06-15 21:00:00.000',5,NULL,NULL),
('58cc4f4e-30fd-497f-a627-f4f590c24899','87c55df7-f40e-45d7-a3d5-773c1c5084ea','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-07-25 08:55:34.000',6,NULL,'2025-07-24 14:06:04.065'),
('58d45485-d927-4562-8ee5-9d7c152b66fe','fdd4c900-6ed6-4a26-8861-7c3e8266fd95',NULL,'yaylı yatak','2025-04-27 21:11:40.000',0,NULL,NULL),
('58d8f46d-6654-4ce9-9f45-6159cf5fa49a','091754cf-7aa6-431a-8a90-b30fd8978287','05010251-884a-4da0-8f68-5c08a5874e36','PALERMO ORTA SEHPA ','2025-04-21 10:25:26.158',0,NULL,NULL),
('58db4ec8-cb6f-4832-bcbd-1cd3594b201c','fa43edbe-bf66-4c07-ab59-51d6823553d1','348a4f46-0bf7-4740-9ba7-c22ef42d9afe','mermer masa ayağı','2025-02-11 07:02:26.098',2,NULL,NULL),
('58dd39fc-46c9-48f2-9cd2-07adef485fea','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL,'MOBİLYA','2024-07-20 10:21:55.187',0,NULL,NULL),
('58eb6d5c-4d1a-48bf-9795-37762dac8785','2d717ffb-678b-4e82-9f61-5357693131d8','26360aba-80e2-46ad-b172-f1052f9526f6','Döşek','2025-04-10 09:11:33.019',1,NULL,NULL),
('58ebcdbe-9281-4605-a44c-87684653f9f9','afda17ee-6395-4bb0-bbe2-3e976e5044bc','a6cdf491-a689-475b-986b-b3c2cc4eff72','250X300 KÖŞE KOLTUK','2025-05-07 21:00:00.000',5,NULL,NULL),
('58f9d367-338f-4f26-923c-11e9b56748d1','1eee00b6-90f3-4331-83c5-6bef65b0bf33','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-07-16 09:00:00.000',3,NULL,'2025-07-18 14:56:55.456'),
('58fe4c33-e268-41af-9163-4863a4d27452','9d26f3f5-1617-4627-a308-2aea49169455',NULL,'Mobilya ','2024-12-12 21:00:00.000',0,'2025-01-19 13:34:13.247',NULL),
('5901ecd9-86b3-4ddf-ac82-3fa15113d4ad','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL,'MOBİLYA','2024-10-02 09:13:02.218',0,NULL,NULL),
('59140aa8-4055-4445-9038-a7aff33546be','7debbec8-4b40-438d-b2a3-04d64fa74ec0','05010251-884a-4da0-8f68-5c08a5874e36','BELLA KOLTUK TAKIMI ','2025-10-22 07:52:03.239',0,NULL,NULL),
('59194091-7539-427e-b4e0-825b56ae3bd6','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-28 21:00:00.000',6,NULL,NULL),
('592134b5-6991-4cbc-9a32-38489cdfccaf','43b4cdba-f0e7-4de7-ae8c-4174a5d3537a','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-10-17 10:00:27.000',6,NULL,'2025-10-22 13:12:20.363'),
('59466ba9-2ada-4521-948e-2d8e3bf18415','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Köşe koltuk ','2024-11-03 21:00:00.000',3,NULL,NULL),
('594ffc6e-6d27-406e-ac1f-b5aaa13b72ec','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL,'DELUXE YATAK 180X200 ','2025-09-22 02:22:36.216',0,NULL,'2025-09-22 16:25:43.589'),
('596c3256-9a05-4364-812a-bcf3c1f57fee','a2d259a0-8a03-4763-951b-98fe714623ce',NULL,'MOBİLYA','2024-10-11 11:40:59.741',0,NULL,NULL),
('597a9de3-517b-438b-bc68-5db3df76109b','9380973c-fd42-4ef7-a6e3-5e7f392c02da','da95f6ab-9177-49c8-b729-1fcee7ea77cb','SANDALYE','2025-01-19 21:20:52.000',3,'2025-01-24 23:23:13.879',NULL),
('598c478c-2e52-414f-8119-1d47ef79bd55','03edbb2f-aa6f-42fb-8da2-233d6ea1d184','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 ADETSET VE 2 ADET KOMİDİN','2025-01-08 21:00:00.000',9,NULL,NULL),
('599860ac-efac-442f-a201-cf95773edb9e','e8a249a9-b090-42b5-ba99-445005f2b553',NULL,'YATAK SETİ','2024-05-29 08:48:00.969',0,NULL,NULL),
('59abcbf6-72f2-4d32-b4c6-de60ef28c0bb','a7a425bb-cfdf-4d19-a194-e17082ccd37b','18c345c7-6cce-4090-a60b-e335f75be36f','220x300 köşe koltuk','2025-08-31 13:34:50.000',5,NULL,'2025-09-08 14:48:55.935'),
('59b0092d-145d-40f5-a623-67f07fc4accc','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL,'SANDALYE','2025-04-11 14:00:00.000',3,NULL,NULL),
('59be4a33-464f-479e-aa6d-ad757827d4d8','1d98874a-3c1d-4a2e-ad9b-b943512896cd','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-01-09 10:35:29.708',0,NULL,NULL),
('59ca4293-1ff1-4c49-b573-55dba7f091ae','a3c1d16e-1d65-47ab-9a96-281fee178cfd','426e30ee-28ce-486d-9080-a0edc097cd6f','MASA VE ORTA SEHPA ','2025-10-28 15:00:00.000',4,NULL,NULL),
('59e053c4-2d84-4194-ad52-d407d6955155','91d165b6-d978-4c8d-b44a-7b2fb9ad068b','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-01 21:00:00.000',4,NULL,NULL),
('59e374c2-6e9d-43f0-a7b5-2e103296684e','a53c5b62-db3a-4293-b5f7-0e5ef514b45e','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-17 21:00:00.000',3,NULL,NULL),
('59e8ae39-aa12-4bea-b708-fd4e609303bb','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL,'KOLTUK','2024-12-16 21:00:00.000',0,NULL,NULL),
('5a0ec70f-bbf0-49cf-bd17-d8db1ec01ca3','78e0dc7d-612a-43d0-b71f-d2ff5178a06b',NULL,'ssh','2025-05-22 21:00:00.000',0,NULL,NULL),
('5a31d59d-2a39-48c6-a450-4b8e78dae401','516dfaaa-e378-4999-b13f-ef0839711334','53547128-7fcb-4279-a2ae-cd050bf436d4','Karyola','2025-06-02 10:14:36.518',3,NULL,NULL),
('5a40f64b-a362-449f-b074-5d84154e2855','235ede83-046c-43b3-a7f1-746b19237d67',NULL,'Orta sehpa','2025-01-15 13:20:41.907',2,NULL,NULL),
('5a47171c-3fff-4acb-b6b5-4670498a85a1','5aa78870-c5db-449e-aff0-2a524544eba3','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x160 marmo masa ','2025-05-28 21:00:00.000',2,NULL,NULL),
('5a4b614c-5b92-4fed-901d-9fc1751f0e14','f4bd20c1-e77e-468a-82a9-4daefeb2df5c','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-03-03 08:58:58.134',6,NULL,NULL),
('5a62441d-a36d-4f89-a525-f3dd862b2254','d5e45bbc-32f3-498d-96c3-b034ee8c10cf','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Sehpa','2025-06-16 21:04:41.025',1,'2025-08-05 12:59:20.248',NULL),
('5a6f882b-c04e-49c9-9a64-cc6e9f80965b','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL,'Mobilya ','2024-09-16 09:28:30.832',0,NULL,NULL),
('5a768734-74b4-44fa-8896-4be9106b7b5b','e8d23d8a-2637-4202-afea-6441ccee21d3','6a8c37c6-8513-4d55-b16e-12888afbcac8','köşe koltuk','2025-05-20 08:00:00.000',0,NULL,NULL),
('5a83c82e-35f0-4134-a941-293be92d775d','e8d23d8a-2637-4202-afea-6441ccee21d3','8606d226-cc7c-4998-946f-cf7c29587a15','orta sehpa üst tablası','2025-05-20 07:30:00.000',1,NULL,NULL),
('5a86c4f9-0df3-4b24-8d17-99cd94250ff2','3fc65322-0e5b-4725-b433-ff14b8fed4c8','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70 cm yuvarlak orta sehpa','2025-07-25 08:52:21.000',2,NULL,'2025-07-25 12:49:50.592'),
('5a89fae8-525a-4de4-8188-2f4d7c892e74','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b','2ee74fe2-85eb-4726-a614-5331f619f8c4','AKRA YATAK ODASI','2025-09-19 09:00:00.000',0,NULL,'2025-09-22 08:28:45.387'),
('5aa6dfc9-0298-4963-b30c-27c1590e17f7','558ade04-1baa-47ac-99df-233551c2e4c2',NULL,'SSH KUMRU NEFRO BİLGİSAYAR KOLTUĞU AYAĞI ','2025-10-03 03:00:00.000',1,NULL,'2025-10-03 11:30:36.980'),
('5aac8c34-51ea-4438-b73e-7d54bf02d518','39bb85ad-efc0-4fc2-9377-e76f06d914ca',NULL,'BAZA BAŞLIK YATAK','2025-10-13 12:00:00.000',0,NULL,'2025-10-14 14:09:42.445'),
('5ab06033-6474-40d0-adfb-4d7de8d9eb91','86e9c1bc-01b8-4214-96d5-1341c7ccec82',NULL,'MOBİLYA ','2025-01-12 21:00:00.000',0,NULL,NULL),
('5ab2416a-7bef-46c2-b80c-b65bde62a234','c242a231-cffe-4e5d-bd32-54cf78b29c25','8f681d43-0f04-48bf-a190-abcd5fbd637d','VİRAL 4 KAPILI DOLAP + ŞİFONYER + AYNA','2025-05-04 21:00:00.000',0,NULL,NULL),
('5abaed5f-da6d-4729-8667-542ec9faa994','ab5aecf3-3848-4bed-b17f-3f3ab2404c76','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-10-10 05:00:00.000',4,NULL,NULL),
('5ac3f2e5-1152-40f1-bda3-dec75902e4aa','5f770c96-052e-4429-8137-dee2c4ed5bd9',NULL,'YATAK ODASI','2025-01-08 21:48:12.000',0,NULL,NULL),
('5aca1c41-8cbc-4a31-9871-fc78682b8f7f','97aeede9-88c1-41c0-a1c0-b47031f0ee1e',NULL,'MOBİLYA','2024-03-15 14:31:23.669',0,NULL,NULL),
('5acaa9de-dec3-4088-9126-7d8862513d93','1879da27-b3bb-4922-be98-d1ddc5fe38a9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','60 çap yuvarlak sehpa','2025-08-01 08:59:14.000',2,NULL,'2025-08-04 08:31:22.153'),
('5acbde88-dafc-4c21-ac17-d9730a373cef','f0c7a240-326d-492c-88a5-bd8e007daa69','e46f75d9-f1dd-4753-8e6e-717c17942cfd','8 sandalye','2025-09-25 21:56:10.000',4,NULL,'2025-09-26 11:18:19.730'),
('5acec4d2-2742-4d75-9b53-079f8cb9e387','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL,'160 YATAK ','2025-08-18 08:06:14.702',1,NULL,'2025-08-20 13:51:28.775'),
('5aebc1d3-a23d-4e5a-a294-e71b1c0ce1e9','b4f193d3-ef4e-4341-9bd2-136dfaae75a5','687faa80-4d93-4ee8-8977-05fb50c6be5b','KÖŞE KOLTUK','2025-01-20 09:44:06.000',2,NULL,NULL),
('5aee2d3a-f16f-4f77-85cf-30dd201f904e','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL,'SSH KÖŞE PARÇASI ','2025-05-07 21:00:00.000',0,NULL,NULL),
('5b059fff-d93e-4d14-9124-dafac1695757','b87dfd8b-75ee-4a0e-bd25-1178a78774c6','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-07-21 13:00:51.000',2,NULL,'2025-08-19 14:16:51.712'),
('5b2204f6-3f44-4f80-b0ad-ab8671541c1f','52ea460d-e94a-410a-9cce-0b771b3e4cc8','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-08-10 19:59:45.000',6,NULL,'2025-09-24 11:01:54.688'),
('5b453805-1a54-4050-9ab8-c37c7500f0ae','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL,'KOLTUK TAKIMI','2024-12-04 21:00:00.000',0,NULL,NULL),
('5b4bf6ef-1cff-47f3-b8b9-c0a4af9ad9c1','ff996f87-3846-4d01-9b30-2f9d65c79763','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 açılır traverten masa','2025-07-31 21:00:00.000',3,NULL,'2025-08-04 08:41:37.871'),
('5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('5b5a787b-a5dd-465b-8ab0-883179af544d','b7c95c3f-abb7-49bb-a4a9-e9be8ea92fa2','37486a5b-3dc6-4298-9bfd-3291b8f42d46','köşe koltuk ','2025-02-06 21:00:00.000',0,NULL,NULL),
('5b74d54f-5e67-4524-a1ee-59011b82f249','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL,'PALET CAMBALKON','2025-04-29 21:00:00.000',0,NULL,NULL),
('5b791a1b-bd6e-4eab-a014-286a1c1d2fd3','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL,'Mobilya ','2024-10-21 07:50:57.676',0,'2024-11-21 06:56:22.158',NULL),
('5b795704-7a12-43c9-be8a-1886aa6ee9e0','778294cd-ffc6-4789-a055-1419d207d31f','ea9d3df7-6893-4d14-8238-4ac854d79273','1 modül SSH','2025-09-08 02:00:00.000',1,NULL,'2025-09-08 09:02:17.774'),
('5b81703c-cd5b-4b56-94d7-e111a745e9ae','9feff913-404e-4b4c-b57f-21740becbcff','3702a172-da98-4e48-8071-547c4f3e92e8','Natura sandalye ','2025-01-12 21:00:00.000',3,NULL,NULL),
('5b94f16d-f4d8-4466-bc90-5a88e45dee7e','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL,'KÖŞE KOLTUK','2025-07-02 11:00:00.000',5,NULL,NULL),
('5ba52abd-bd4f-4d1d-b36d-0b46860bd62b','755e2ad9-81c1-4538-8d82-5b3d0b23767c','00d8fa15-202f-4635-af55-df5a498e7639','ALLEGRO MİLANO MASA','2025-01-23 21:00:00.000',1,NULL,NULL),
('5bc7ab60-e1c2-443d-9a05-7c4a3a009f1f','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 160*200 BAZA','2025-10-03 00:16:57.000',1,NULL,'2025-10-03 11:29:25.915'),
('5bc7e533-c5ec-44b9-ad7e-bc4dd7427202','d006eab6-c320-4751-8fec-f85d79856933','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-07-23 21:00:00.000',1,NULL,'2025-07-25 07:29:17.549'),
('5bcbbc13-969b-49af-9691-435907b8a012','0c43519c-5551-4f80-8c50-18c10c21048d','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-09 06:00:00.000',5,NULL,'2025-10-10 07:29:47.656'),
('5bd101e2-5680-4bff-8ae1-8e2121e5666c','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','4d3f433c-6ebf-4443-a8bd-319b61cbe400','YATAK( DOLAPSIZ)-YEMEK-ÜNİTE-SEHPALAR','2025-01-20 21:00:00.000',42,NULL,NULL),
('5bd7aa2d-458f-46e9-a082-a599e9a49784','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL,'Mobilya ','2024-09-11 13:02:11.867',0,NULL,NULL),
('5bfd2b44-3068-4b7b-b490-2c69f8b986ee','b44944f3-7dd8-418b-84ab-1045b4554936','e2aa2442-8a91-4124-99c5-e56e6058e5e9','GARDOREBE TREND DOLAP ALT TABLASI,TREND ŞİFONYER ÇERCEVESİ,AYNA ARKASI VE TREND 4 NUMARALI PAKET','2024-11-06 21:00:00.000',4,NULL,NULL),
('5c0848ce-c79c-43de-adfc-f4532526d6bb','4197af5f-54c3-4efd-8f7b-cdb3412520ca','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','BAZALI KARYOLA','2025-03-09 21:53:23.000',6,NULL,NULL),
('5c0ee075-af95-49a6-8f8f-41b6f182aec6','00ed7c47-6897-4b03-a708-882316651c7e','1be238d9-54e3-4094-8d60-66fd5abb87b5','masa','2025-10-27 09:59:52.000',1,NULL,NULL),
('5c1630ab-9f31-4753-99de-1615c793dd9e','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','40bce34f-0efe-4b42-bb92-5db5b86da650','DORA MASA / 8 SANDALYE','2025-09-15 04:58:10.491',0,NULL,'2025-09-19 11:49:55.086'),
('5c21191d-62ae-48be-82f1-4e75dca1edcf','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL,'Star köşe','2025-05-25 21:00:00.000',4,NULL,NULL),
('5c219d1f-ef1d-4fa5-a04f-df525aa57cc8','36e13cd7-5444-4fd3-b0c0-95a15516c80a',NULL,'Mobilya','2024-05-31 12:11:57.962',0,NULL,NULL),
('5c25981f-2bdd-46eb-bd06-9a7ff6ee2869','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL,'RAMS YEMEK ODASI','2025-01-13 10:17:14.588',0,NULL,NULL),
('5c308574-a09b-4e29-a64a-51319a26b5d3','f7ef839c-2795-4f15-80a8-414937600965',NULL,'TAŞ FIRIN','2025-07-11 21:00:00.000',0,NULL,NULL),
('5c3f67bf-f878-4edb-843b-c0a59fc72ce2','0ea00d37-52d8-4f61-9891-dd8fcc0d358c','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-09-11 06:00:00.000',11,'2025-09-14 20:38:40.006','2025-09-12 08:04:39.332'),
('5c42fa66-1197-4462-860a-1846d76f1998','be9967c6-717c-4bdc-910a-34e5434a1c5b','64286c9b-2107-4454-8058-af5098413885','SEDEF KONSOL + AYNA','2025-03-25 09:00:00.000',0,NULL,NULL),
('5c487410-f906-4e14-a077-9f060026719e','90273c80-e292-4a76-8be5-a4c812e9f569',NULL,'Mobilya','2024-08-20 08:33:15.102',0,NULL,NULL),
('5c4d9368-f975-47d0-9818-aa9d64564578','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','a6d8253d-e268-4425-94bf-663a1bf6289c','KÖŞE KOLTUK ','2025-05-04 21:00:00.000',4,NULL,NULL),
('5c57ba4b-63d2-4267-82b7-2687078d3e3c','c3124b77-c71e-488a-b104-3d05e5b06ca6','fe0a9e17-e52a-465c-af84-8dd1932db99a','Sandalye ','2025-09-11 01:39:13.000',0,NULL,'2025-09-22 08:54:30.763'),
('5c640f3f-5ef6-4e00-9fd6-043769b51089','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL,'MOBİLYA','2024-03-30 09:02:11.632',0,NULL,NULL),
('5c678148-a528-4b8b-bd4a-390890b0c04d','98bda885-fe47-4716-8e4c-6ea1a95114e8','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA','2025-03-13 21:00:00.000',5,NULL,NULL),
('5c6d6c79-765d-40aa-a4a8-a3e725f44ec3','8ac11872-8b52-4d38-b53d-bc95257e76e8','7ef18eb6-fc54-4770-be95-51abea3c644d','SANDALYE','2025-06-24 12:30:00.000',2,NULL,NULL),
('5c759086-0cd7-497c-a83e-a2162d4b099c','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL,'Sandalye ','2025-06-09 21:00:00.000',0,NULL,NULL),
('5c990e83-628f-443e-afbe-ea1650122f59','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL,'MOBİLYA','2024-05-11 09:01:20.697',0,NULL,NULL),
('5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0','5fcfabaf-abfd-496b-84fd-6ef04452b85c','fee7f346-332d-419c-9da4-5a7154085362','KÖŞE','2025-08-28 06:00:00.000',0,NULL,'2025-08-28 14:21:46.431'),
('5cb082f0-4973-4f83-ba7d-550b088af234','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL,'Balat sandalye','2024-12-13 14:17:58.784',6,NULL,NULL),
('5cbb6c75-8a55-4d2a-bbcf-444624bb5962','ee0c62fa-abac-44d0-915b-567df66647be','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-10-24 01:36:59.000',3,NULL,'2025-10-22 07:33:41.886'),
('5cc511ac-d64a-4fef-86ed-1703c5e7eb90','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL,'DİKİŞ MAKİNASI','2025-03-07 21:00:00.000',0,NULL,NULL),
('5cced97c-42f9-4f09-9ce2-eab123493da6','516dfaaa-e378-4999-b13f-ef0839711334','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','MASA VE SEHPA','2025-06-01 21:00:00.000',3,NULL,NULL),
('5ccf3a3b-c07c-47a0-aa6e-3b97e69e152f','8970c6df-ded4-4e10-a476-faa9d8e3a4df','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2025-02-07 10:01:08.229',0,NULL,NULL),
('5cf141d8-cda3-41bd-8c52-4544a8958ff7','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL,'MOBİLYA','2025-01-19 15:02:05.981',0,NULL,NULL),
('5cfaac61-843e-48a3-bd83-f4bbe268d1ad','c9db2c84-8a43-43ee-8421-833b9835be84',NULL,'Aaa','2025-04-24 21:00:00.000',0,NULL,NULL),
('5d03f819-f7e6-4cdd-aa5d-ca38ac9f6b4c','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL,'SSH','2025-06-11 21:00:00.000',0,NULL,NULL),
('5d074556-ce95-4ffc-8684-279dc37597f0','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL,'Mobilya ','2024-10-21 11:47:48.764',0,NULL,NULL),
('5d0acf14-0e07-4b7e-b43b-0b7d4b572df5','37f59dff-6352-4082-a18f-d2696e483eff',NULL,'Koltuk takımı','2024-05-10 12:01:46.303',0,NULL,NULL),
('5d0f8b8c-a4d3-4dbf-a36b-74c0b807f0e1','33a66c99-d47d-4b2a-a8a1-74fa024a9e07',NULL,'puf ssh','2025-01-09 21:00:00.000',1,NULL,NULL),
('5d45d3b7-ec89-496e-9005-0f361e2b578a','3fc65322-0e5b-4725-b433-ff14b8fed4c8','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x130 açılır masa','2025-07-24 21:00:00.000',2,NULL,'2025-07-25 12:49:50.592'),
('5d643542-ec96-4ed9-a8e8-2e7aade7f468','b03e4184-3ccd-452d-bdbf-3a4ddecfb868','ff036b4f-68ec-45d5-828e-7a2c773c539e','6 adet sandalye','2025-06-16 21:18:50.773',3,'2025-08-05 12:59:27.027',NULL),
('5d66409e-1cf5-41df-82d4-6465db6f6598','0f896043-41f5-4e03-93cf-693eadfeb3c2','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-09-17 02:00:00.000',3,NULL,'2025-09-17 10:56:28.895'),
('5d6791c2-ae64-44e7-a3ba-960fb60b24f1','b9f93946-382b-435b-9bca-6293072351d1','b151728c-b265-4eed-b5c1-cb53409fb775','sehpa','2025-07-18 13:28:53.000',1,NULL,'2025-07-18 14:13:19.259'),
('5d68c437-9009-4a6b-8910-e785034e1ded','87226e30-fe1d-481b-8c10-e309459138ca',NULL,'KÖŞE TAKIMI','2025-08-21 18:00:00.000',0,NULL,NULL),
('5d6d56f2-d81e-47d5-835d-916b91abc6a0','833e1960-d162-4228-ac7a-54bd28d48049','a1316d1a-e97f-4ff6-b240-0038a3099c28','Karyola','2024-11-08 08:48:12.944',0,NULL,NULL),
('5d87ced9-ddb2-4a6e-a01b-2e80e5988136','65cd44ca-893b-4894-b062-6cfd32e95228','00f0d3f8-19e3-49de-9c57-a79bace86023','Sahra Baza Başlık Yatak Seti','2025-05-09 11:00:00.000',4,NULL,NULL),
('5d93f9db-58ed-48cd-adb5-3427b2b7061b','2022b96f-403f-4258-b521-3378c40a33b7',NULL,'Masa ayak,sehpa ayak,sehpa üst','2025-09-14 18:00:00.000',4,NULL,'2025-09-17 08:50:43.773'),
('5dc0d88b-7ff1-416a-932b-9af0149bafd3','3014fb42-2f2f-486f-8a00-c9ecf3f7497c','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye ','2025-05-09 11:33:46.000',0,NULL,NULL),
('5dcc9ef8-8356-40ee-8dea-7d614cc219e2','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL,'koltuk takımı3+3+1','2025-08-01 07:45:05.000',3,NULL,'2025-08-13 12:42:45.959'),
('5de22635-0d1e-4b61-97a3-08200d3fcff8','eca42571-21cb-477f-8919-3105870047fa',NULL,'Koltuk Takımı (3+3)','2025-03-20 21:00:00.000',2,NULL,NULL),
('5dec8c16-6526-4fff-8d9b-6d323552f188','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3','b4b527e9-c851-458f-9238-9049a66f2c90','TREND ORTA SEHPA','2025-02-27 21:50:35.000',2,NULL,NULL),
('5defa65b-c736-4108-94c5-e25a26e975c6','aaf80057-65ea-4999-832a-29537bd6ba3e','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-08 21:46:37.000',3,NULL,NULL),
('5df07c2a-6df6-4fd0-81d9-b11a963bba05','52951d3a-938c-4ea9-baf5-8e4605f5a78f','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-10-23 01:23:48.045',6,NULL,'2025-10-23 07:34:11.130'),
('5df23c8c-f647-451c-843a-f52228186ede','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL,'ürün','2025-10-02 12:00:00.000',23,NULL,NULL),
('5df6ebd9-9f42-42e8-b325-2e290291826a','3b6129d0-8adb-475b-a9bb-394ff6773ada','4ccea6fc-d526-479a-9e27-42643a5f294f','Baza başlık','2025-08-21 08:00:00.000',0,NULL,'2025-08-25 09:02:01.878'),
('5e048b22-34db-4d5f-9247-201f664d4e80','4197af5f-54c3-4efd-8f7b-cdb3412520ca','9840e720-2d04-4e9b-b4a0-4feba830c111','KÖŞE KOLTUK','2025-03-09 21:00:00.000',5,NULL,NULL),
('5e1b92c5-0a78-4535-ae47-a667ddc85987','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA SEHPA','2025-08-20 14:13:22.695',4,NULL,'2025-08-20 12:41:49.499'),
('5e372d49-2995-43b9-8175-cfd3bd1f09b8','30d56795-1b1e-4834-832e-beb8e2339c41','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + berjer','2025-10-20 18:00:00.000',6,NULL,'2025-10-22 09:01:24.537'),
('5e3f368c-1097-4fb3-8fd3-e25b4eaf54b0','7debbec8-4b40-438d-b2a3-04d64fa74ec0','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS YATAK ODASI ','2025-10-21 21:00:00.000',0,NULL,NULL),
('5e418100-d855-48c0-ac4b-19a956b8ef44','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL,'Koktuk','2025-08-31 12:00:00.000',0,NULL,NULL),
('5e4d8700-ecec-4c1f-b393-843da9941edc','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL,'MOBİLYA','2024-07-20 10:40:44.698',0,NULL,NULL),
('5e5de5b3-4040-4320-b4a4-779e58d5e8b9','4d829d78-94c2-4e78-a544-eebc09aa13b0','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-04-23 02:10:05.329',5,NULL,NULL),
('5e637c0e-5f72-4f0d-9645-8eb854cb25d3','0c0919ed-e869-4b33-a525-8e05358a4852',NULL,'AAAAA','2025-03-07 21:00:00.000',0,NULL,NULL),
('5e64592b-2456-4b97-ac5f-4841289e6177','d7a12701-09c4-4320-85a8-07d8731effaa',NULL,'SSH','2024-09-27 11:54:02.268',0,NULL,NULL),
('5e6bc612-6c7a-4f9c-8252-00151bafb04f','9e64600d-1c01-44ab-9728-6619d083385a','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-08-11 20:10:01.000',6,NULL,'2025-08-19 12:09:01.750'),
('5e9ac631-c11f-4693-b962-64e3d00d41d1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d','5017c952-a8be-4946-9fc6-e2ba9794cd7c','3+3+1+1 KOLTUK TAKIMI','2025-10-19 17:27:29.000',0,NULL,'2025-10-20 13:28:20.709'),
('5ea4b207-b05c-4931-bbd1-648b6933aae5','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL,'Mobilya ','2024-10-07 10:09:21.827',0,NULL,NULL),
('5eb53186-180d-4850-a598-783b17f41cbf','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-03-17 10:00:00.000',4,NULL,NULL),
('5eb95499-56e2-42e9-8465-c8430d78f2e1','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'DÖŞEK','2025-10-08 15:40:11.695',0,NULL,NULL),
('5eba22cf-1a50-447a-819c-d6f78b038912','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL,'RAMS KOLTUK TAKIMI','2025-01-13 10:17:19.280',0,NULL,NULL),
('5ebfa101-ef1c-4ce7-aa0e-254141f3a77a','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL,'yatak odası ','2025-05-13 08:43:32.522',0,NULL,NULL),
('5ecc2bd3-1fb1-4c1b-9901-f80f9be07662','7ebece0e-bf8d-4678-bf15-17e6bed10020','aca023e4-d25e-4ddd-bd68-90d5e29b4a3b','MASA VE 6 ADET SANDALYE','2025-10-13 02:01:01.108',0,NULL,'2025-10-14 11:56:04.640'),
('5ee00c1a-30c4-4631-928f-5c95f22101d5','44ab156f-e89c-4eaa-b7ab-1fed4206ce92','ea7f52d3-6796-416f-951d-c553df6295b0','KOLTUK','2025-04-13 21:00:00.000',3,NULL,NULL),
('5ee1b922-dab0-4710-a670-da444e74f05d','e75e8612-51c4-4522-8a7c-c324cd173d42',NULL,'sünger berjer','2025-10-07 18:00:00.000',2,NULL,'2025-10-14 07:21:23.572'),
('5eedf7e1-129e-4ada-8cbd-d63340cf856b','6d6f2808-c231-4334-856e-47064121ade2',NULL,'sandalye','2025-09-09 13:32:19.665',3,NULL,'2025-09-09 13:33:49.731'),
('5f0a69e3-cb40-4269-b9f0-b93f56f93d6a','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL,'6 PARÇA','2025-10-05 15:00:00.000',6,NULL,NULL),
('5f0b2b38-f06d-439a-9e18-ba111e0cd0ed','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-02 05:06:44.713',1,NULL,'2025-10-06 13:49:18.188'),
('5f118d4b-0713-4860-9914-6f2ebfe8faed','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','34ebf1df-a7f3-4a9f-a0f3-63e313fd93df','Tesla  mini Köşe koltuk','2025-05-09 13:00:00.000',0,NULL,NULL),
('5f1551a0-3002-4877-a790-948d5c6a3315','649029c3-dc44-4148-9d1c-afdd4ca73418',NULL,'36x52x104 koli','2025-10-05 18:00:00.000',4,NULL,NULL),
('5f1fdaa6-82fa-44d0-81f0-14be691b3ce9','846144fe-95bb-4d2a-83ea-4552d599f458','8c33406d-1686-45a9-ad7a-de320c689537','Malzeme kutusu','2025-10-15 01:26:30.482',1,NULL,'2025-10-17 07:31:32.821'),
('5f35db51-2991-408b-82a3-7e6b54acabab','59340ffb-ba9b-4386-a0a4-686fcf54115b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 mermer baskı masa','2025-09-08 09:00:00.000',3,NULL,'2025-09-12 08:18:11.636'),
('5f47858f-f0ff-4645-b9f1-095f73991990','1c22473f-9acf-4632-b67d-e2661b059739',NULL,'masa sehpa ve konsol(lder)','2025-05-22 12:22:45.248',1,NULL,NULL),
('5f4ceec0-776e-4837-9efd-09dc6a18f68f','098e3733-92d8-47a9-8dbf-5c340e142d3a','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-05-16 12:00:00.000',2,NULL,NULL),
('5f6b832f-9b3d-4451-8616-262b7ed123fc','96c4ce39-37cf-4514-b642-887eae14caa2',NULL,'Köşe Takımı','2025-08-31 21:00:00.000',0,NULL,NULL),
('5f6c50dd-12d4-4ac7-b977-3ff0181a723f','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL,'Köşe','2025-08-27 23:43:04.593',6,NULL,'2025-08-29 09:53:41.633'),
('5f740c2f-b4a8-4058-8f15-0c74025f8ecd','bf9be925-842f-4ee7-ad0e-8e73349c83f4','a64d9016-ffd4-4952-b547-d9177972ba50','Koltuk takımı+berjer+puf','2025-08-26 07:00:00.000',0,NULL,'2025-08-29 08:03:15.641'),
('5f80d731-28c3-4b2a-8876-8ca4df5e4bba','e9d88834-16a0-467d-ac78-572c246346c6',NULL,'SSH KANEPE SIRTI ','2025-05-04 21:00:00.000',1,NULL,NULL),
('5f82a1e9-e92f-4ba1-a761-b3cd889fe18b','32d385ed-3e8f-402f-80a2-9531544e451a','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-03-26 21:00:00.000',1,NULL,NULL),
('5f855801-dd4e-4ef8-9016-91337a075097','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL,'FAMİLY DELON  AYNALI SAATİ ','2025-09-19 03:47:55.000',1,NULL,'2025-09-24 08:19:17.069'),
('5f939d13-140e-4993-8240-7346b5193ca7','849dc3bf-f8cd-4d56-b754-d79724b3a46a','0f300a3b-b3d6-4b60-924b-aa70cd54141e','180lik baza ve yatak','2025-04-07 21:00:00.000',6,NULL,NULL),
('5fa653d7-dc76-4d81-960a-d297b9d1db18','a7a425bb-cfdf-4d19-a194-e17082ccd37b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye','2025-08-31 13:34:30.000',3,NULL,'2025-09-08 14:48:55.935'),
('5fa83bd5-c793-4df3-9fe4-54f56117638b','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL,'Mobilya','2024-11-01 10:39:20.234',0,NULL,NULL),
('5fad51cb-2466-474d-9661-9f8cff4bd601','be6b74bb-6b56-429f-8118-650dc26879d4','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-07-01 21:00:00.000',3,NULL,'2025-07-16 12:52:48.588'),
('5fb48abc-0e89-4676-848a-05c84bfb094a','3f18122e-004e-4381-bc37-c92c815065a9','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-09-01 15:00:00.000',3,NULL,'2025-08-27 08:30:21.771'),
('5fc2bb75-5b7d-4cf7-8d56-ae678bb70e94','45898089-0430-47fd-85a9-8108fa8d9a5e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','250 CM SİYAH TV ÜNİTESİ','2025-03-24 08:04:21.176',1,NULL,NULL),
('5fc3bc3a-6305-469a-be4c-a995c1f220f8','8327f88c-b625-4fa3-872e-273fef27e498','37486a5b-3dc6-4298-9bfd-3291b8f42d46','kanepe ','2025-02-13 21:00:00.000',0,'2025-02-26 14:30:06.522',NULL),
('5fe43bb2-ed62-43ea-988a-9dfd247b1ae1','a71c1b97-adb1-44f0-8622-8ebc242aee74','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-09-30 22:09:46.000',6,NULL,'2025-10-16 08:04:49.467'),
('600b10a2-65bd-4820-9711-3189a40e7575','f7d9721d-e27b-40dc-a48f-5d1604c92366','1be238d9-54e3-4094-8d60-66fd5abb87b5','traverten','2025-09-23 12:00:00.000',1,NULL,'2025-10-10 10:17:27.712'),
('600e57be-30d7-478e-8253-ba5d90fea720','911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7',NULL,'SSH','2024-08-20 14:58:13.810',0,NULL,NULL),
('601003c4-c08a-4b64-839d-d5ab37e7595b','b5e4c122-6b08-49f6-87aa-e17148ba18f4','8972e4c8-8f15-408c-a596-6783ce86ba09','KÖŞE TAKIMI','2025-05-06 21:00:00.000',7,NULL,NULL),
('60186ff8-7392-48f6-bc4d-fcd01f0921b9','35cd7f79-46ea-4b11-b481-f22dd082a5d0',NULL,'SANDALYE','2024-12-26 10:18:05.452',1,NULL,NULL),
('60265db6-b4a8-4ae7-8ba1-2177955c5b94','46aa945f-6044-4640-8ed8-99191e2890af','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-07-11 14:00:47.000',3,NULL,'2025-07-17 08:01:34.482'),
('6031e0df-a3d8-4007-a500-e8d9472ed2c6','b0da9512-5d73-41f1-bda6-6bec8b6a6191',NULL,'MOBİLYA ','2024-03-18 07:05:37.744',0,NULL,NULL),
('603bbb28-8202-40b6-a789-1531b9124485','dd9776e7-4b61-4272-8e40-984a52a0303d','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-06-16 10:00:00.000',2,NULL,NULL),
('6053785d-1d29-4e11-800e-efc4fb955f66','1e88a712-77d4-4c0d-9244-0239da63195b','da95f6ab-9177-49c8-b729-1fcee7ea77cb','SANDALYE','2025-01-30 21:29:51.000',3,'2025-02-05 22:19:33.175',NULL),
('6060763f-09fd-4b23-9d16-0641dc9c453d','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL,'ares bazalı karyola 2 adet komidin benç','2025-08-19 15:20:56.000',999,NULL,'2025-09-10 11:09:33.915'),
('606b177a-2516-4ee8-8a97-7fcc5be07957','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc','cf90c370-208a-4021-aaff-f9220970bca9','MASA, SEHPA,TV ÜNİTESİ VE TV DUVAR PANELİ','2025-03-09 21:44:26.000',8,NULL,NULL),
('606c066b-6c9f-4c5a-a289-3e2660cecc37','c19abe66-cb76-4c21-ad00-4ba1ed3d223c',NULL,'Koltuk Takımı (3+3+1)','2025-05-28 21:00:00.000',3,NULL,NULL),
('6079d522-d2f5-4873-a8b9-51883a72769f','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL,'MOBİLYA','2024-09-28 15:58:26.755',0,NULL,NULL),
('607b4c5f-810b-47b0-aac2-0f9c1bde53fb','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL,'DENİZ KOLTUK TAKIMI','2025-09-11 12:00:00.000',4,NULL,'2025-09-12 14:12:15.188'),
('60801cf3-04d1-44e6-9411-665acd2dc679','eaa4d38e-5254-4986-b220-3a01cc9187c9',NULL,'ŞAHİNLER KRİSTAL ORTA SEHPA','2024-11-07 21:00:00.000',1,NULL,NULL),
('609832c2-2dd2-4701-a14f-9db6c69653b0','3014fb42-2f2f-486f-8a00-c9ecf3f7497c','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-05-07 11:00:00.000',0,NULL,NULL),
('6098bfd6-9976-47f8-a799-df79295948c1','eb029e46-e69e-4bea-b717-f1c575aa7ca7','6fbd26ef-ff43-493a-8a76-88ea67ec932a','DOLAP','2025-09-23 21:54:47.000',11,NULL,'2025-10-03 13:01:22.097'),
('60b0be8d-f3a9-42ce-8a46-05043fe513c1','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL,'MOBİLYA','2024-11-22 21:00:00.000',0,NULL,NULL),
('60c43f35-00d8-42f3-bf85-b04a49183371','042f3c72-dff0-4f05-808d-d871ab750191','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-08-06 12:00:00.000',0,NULL,'2025-08-15 10:26:32.593'),
('60cada38-138f-443f-87cf-2250edc59661','90462b6a-6fe2-4fba-8b01-1afd6272a71f','3d32bf6b-0757-423d-ade3-bc6296974cd6','sandalye','2025-07-02 01:53:27.712',3,NULL,NULL),
('60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL,'MOBİLYA ','2025-02-23 21:00:00.000',0,NULL,NULL),
('60fb62a4-8365-4095-8f73-1e4ce71568c0','641b07ae-f1a1-4ba6-b157-d3d15b50b73d','e6f1bb68-cc5c-4347-9fd7-42ceead3468d','köşe','2025-09-11 09:00:00.000',0,NULL,'2025-09-12 16:11:07.368'),
('6105a5ad-ab0b-4b69-b796-281a85aa1c1e','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye','2025-05-08 10:14:54.000',0,NULL,NULL),
('6114a732-dc0c-474c-bbb4-76211cbefcb1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062','7a03ab6a-7f15-4dc4-965f-2746a5d6a508','KOLTUK','2025-04-03 21:00:00.000',4,NULL,NULL),
('6137887a-a955-44cc-9620-948985c68d05','1e88a712-77d4-4c0d-9244-0239da63195b','08f2ad52-245c-4512-9cbc-c54bdc15f354','MERMER VE SEHPA','2025-01-28 21:00:00.000',3,'2025-02-16 17:06:23.305',NULL),
('6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad','de492754-6967-40e1-bf64-463ad84fdd39',NULL,'KOLİLER','2025-09-19 16:25:21.000',0,NULL,NULL),
('61525b01-36fe-441b-b103-3aff2961a258','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a','bc1b9fd7-95d7-4d5b-a84e-684140acc414','YATK-YEMEK-TV-ORTA SEHPA (8ANDALYE)','2025-02-06 21:00:00.000',1,NULL,NULL),
('61545b5a-3d2e-426a-b1bf-172ecd0f8714','bd343457-fe23-4870-a5c8-17ec7d82c974',NULL,'KOLTUK-ÜNİTE','2024-03-16 08:27:42.799',0,NULL,NULL),
('61557b6b-0b26-45ed-a3c0-a245ea1dc158','f169361d-a98a-44cd-9be5-0d014e87b896',NULL,'Mobilya','2024-08-01 08:47:30.268',0,NULL,NULL),
('6162f09a-c875-44a3-a309-7f63d0880087','f31b21b9-c25b-489f-8da9-92e3adcac389','ece6a8b1-cec6-4b85-9127-42c6d179decb','ELİZA BER. SNDLY 6ADT,ZİGON SEHPA VE ORTA SEHPA','2025-10-14 14:09:43.000',8,NULL,'2025-10-23 08:11:58.040'),
('61693d6d-1ccb-4968-9461-6ef1bf43aac5','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL,'MOBİLYA ','2024-11-19 21:00:00.000',0,NULL,NULL),
('618e1331-42cc-4157-b66f-62404be9162b','dc5d2caf-3941-4bd5-a27f-492541390d57','1d3cdff2-164e-4068-84fb-d5fc8f812e04','Köşe Takımı','2025-10-08 15:00:00.000',4,NULL,'2025-10-10 16:46:48.306'),
('619014ca-c3c8-4d5c-ad4c-39716a19cbbb','46aa945f-6044-4640-8ed8-99191e2890af','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-07-11 14:00:00.000',2,NULL,'2025-07-17 08:01:34.482'),
('619b2df9-4cdd-4cf2-8195-e3b19d37df5e','00d70258-2f30-4c8b-8f72-089d4172bbd9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Eliza sandalye ','2025-09-09 21:13:38.000',3,NULL,'2025-09-12 08:15:39.843'),
('619eb068-59e2-46dc-bc94-81ec4819d1f3','c8ffd3f2-c426-4b6c-9439-664479653971','55934c55-9fe9-46ce-b8a4-cf7669e12b21','SANDALYE','2025-07-02 21:00:00.000',6,NULL,NULL),
('61a0cf92-dde6-4f9c-a186-0f7062c38a21','88e73e43-dac2-4ecf-ab5a-8fb52d544ece','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-08-26 23:16:56.000',6,NULL,'2025-08-27 14:40:44.739'),
('61a97467-1295-4761-858d-a807036a28f9','401ecd97-fb17-4288-b2ea-4445b8cdc4f1','23334f3a-b17e-4959-b33b-b748f5878d33','İCON SANDALYE ','2025-10-24 20:20:37.000',0,NULL,'2025-10-27 13:12:55.527'),
('61b448e5-30b2-4ba3-9887-bc5bbad3b9a3','0689343a-01c3-4235-b709-f5f67e87d641','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-08-30 08:49:07.000',9,NULL,'2025-08-14 12:01:08.590'),
('61b7551a-64bc-4a62-a71c-0cc717ddda9c','6ba9900e-286c-40c2-bd00-67d4e8a2212a',NULL,'PLATİN YATAK 180X200','2025-07-21 15:35:52.000',0,NULL,NULL),
('61e1acf5-6d78-4652-b300-18948d3cbbad','696b1572-cc50-4ca5-aa1f-d74d769842a4',NULL,'Halı','2025-08-25 21:00:00.000',0,NULL,NULL),
('61fdb129-41d2-45c8-bd04-6be51a9a4202','ff9f8958-5781-4a16-9eff-ea176baadba4','40bce34f-0efe-4b42-bb92-5db5b86da650','SANDALYE','2025-02-10 15:17:11.798',0,NULL,NULL),
('6209b244-b9f2-4a67-9557-164b1c37e032','d99ae93f-dd73-4f33-a6a3-1bd33e17655a','269264a4-15d7-4979-94e5-201703dfb5e9','2 tabaka mdf ','2025-09-10 04:28:13.031',2,NULL,'2025-10-17 07:23:37.683'),
('6226bd29-5d06-4891-9ca0-310e4356024f','0f36cd64-fd9d-4454-b14c-e388fa4a57d2','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa+8 Sandalye','2025-08-17 18:00:00.000',7,'2025-08-27 20:05:11.865','2025-08-19 11:16:07.462'),
('623e4cf7-1143-4781-9d8c-60190789f01a','944463e8-220a-4540-bab2-ef92cb495c59',NULL,'TAŞ VE KALEKİM','2025-04-25 21:00:00.000',0,NULL,NULL),
('624bc0cc-a8cf-48e8-ab3e-f18d96ce32fb','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL,'BAMBİ BİOSALT 160*200 YATAK ','2025-10-08 09:00:00.000',1,NULL,'2025-10-22 12:03:51.996'),
('6250b44c-f7fa-458b-9059-f4fe88176786','44ab156f-e89c-4eaa-b7ab-1fed4206ce92','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA','2025-04-30 21:06:23.000',5,NULL,NULL),
('625679d3-a5da-4163-9694-2783eb2a2db8','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL,'90x190 cm traverten masa ','2025-03-17 21:00:00.000',3,NULL,NULL),
('625aff0c-815c-4c92-ac3f-610621b3fe4f','92035bab-37fe-43c0-8f20-e718fcf5f1f2','0f300a3b-b3d6-4b60-924b-aa70cd54141e','masa','2025-01-28 21:00:00.000',3,NULL,NULL),
('6268f80d-2bd5-4e6c-8f85-038756d34e63','f1dc4c15-b727-4694-84c2-391d5782dae4','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-28 00:00:00.000',5,NULL,'2025-10-03 09:26:59.254'),
('626b4650-456c-4f9e-bd85-603b644fe1d8','8ddba844-a989-499f-a6a5-be77dd52ea3a','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-09-29 09:14:20.000',4,NULL,'2025-10-14 14:26:17.540'),
('626e7d76-e844-4c98-a946-f86b3d5e2881','5f1e05ef-a967-45d1-a984-4cd1f018c261','e847552a-e65b-4888-afca-9e1df09cf7b3','SYDNEİ SİYAH METAL SANDALYE','2025-03-24 08:09:40.211',3,NULL,NULL),
('627df4fc-79c7-4b5d-aa9a-72bc190d4156','d7dfcf55-ee39-4764-87f9-17c50166c245',NULL,'MOBİLYA','2024-08-20 14:56:20.877',0,NULL,NULL),
('628bab3f-b6bb-413a-b813-c97fce0cbbab','12f34352-3245-4b1c-af57-1762c30010cd',NULL,'TONER','2025-04-24 21:00:00.000',0,NULL,NULL),
('628d9615-d14d-4eba-9099-0780016f2dec','6786ccb2-517a-4991-b179-6d41d556a614',NULL,'masa + sehpa ','2025-08-01 08:41:55.000',0,NULL,'2025-08-12 13:06:53.867'),
('62a8ed11-5b75-4aa0-85e3-55f45545c40b','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b','5017c952-a8be-4946-9fc6-e2ba9794cd7c','koltuk takımı','2025-04-29 21:00:00.000',3,NULL,'2025-07-22 13:17:33.359'),
('62b3c82a-e86b-485b-b9e4-6dbc670ceecd','d313ceae-a8f1-4f54-ba81-fe9e81fef554','4d3f433c-6ebf-4443-a8bd-319b61cbe400','MONGE BAZA-2 KOMİDİN-ŞİFONYER-PUF- ÇAMAŞIRLIK','2025-08-16 21:00:00.000',9999,NULL,'2025-09-15 10:45:55.315'),
('62bb2a42-4002-4e2d-bac4-12fb90437329','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-06-10 21:00:00.000',0,'2025-07-24 10:26:01.286',NULL),
('62dcad6d-7e47-4849-924b-61c791d5a98e','398f925f-e9ff-4494-a4eb-d80689e256ac','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-03-20 21:21:07.000',4,NULL,NULL),
('62e236c0-7e89-47ff-bcce-e2adea2cd2dd','77ae1565-c04e-4a61-91bb-c10a993fdc5b','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS GOLD KARYOLA ŞİFONYER KOMODİN ','2025-09-16 16:57:37.000',0,NULL,'2025-09-19 11:28:54.869'),
('62e578d9-4130-45c8-aa72-f73c4ff49204','eb029e46-e69e-4bea-b717-f1c575aa7ca7','6fbd26ef-ff43-493a-8a76-88ea67ec932a','TV ÜNİTESİ','2025-09-23 21:54:57.000',2,NULL,'2025-10-03 13:01:22.097'),
('62f8f5e0-3dde-4a16-8b43-15d3805cff33','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa, sehpa','2025-08-16 18:00:00.000',4,NULL,'2025-08-29 13:23:28.434'),
('6302f68c-26c4-4a31-853e-80b9d1ba59ee','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL,'Mobilya','2024-09-02 14:11:26.767',0,NULL,NULL),
('63054e67-332e-4621-a667-d29655c84707','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL,'MOBİLYA','2024-09-09 12:52:46.503',0,NULL,NULL),
('630d42f4-c9b1-4b32-9b3d-39e20b4a7b35','5d6a4625-934e-46e6-87c9-560c887e2125',NULL,'PARİS KOLTUK TAKIMI','2025-04-14 11:00:00.000',4,NULL,NULL),
('63147202-2ef0-4eee-b5d2-5c980e242412','8974646e-d2f4-461a-a229-980f5d4d3462','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Masa','2025-07-13 21:00:00.000',2,NULL,'2025-07-16 14:48:43.791'),
('632338c1-7da6-421f-99e7-3499262dffe4','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','7b0336b5-a2db-464e-8deb-fe7d5232aeb4','KÖŞE KOLTUK','2025-09-25 20:38:57.000',4,NULL,'2025-10-02 12:28:45.575'),
('632d93a0-7487-4d3b-915f-23bcd33985a4','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'EWODA LENS ŞİFONYER AYNALI','2025-02-18 21:00:05.000',1,NULL,NULL),
('634dc64a-b9bb-45df-b331-ced53563559b','06af560c-552f-4ff9-a194-96cfbb5bfe91','cd4b8480-2dc3-4822-8638-03ba675da4ab','köşe takımı','2025-03-13 21:00:00.000',3,NULL,NULL),
('635711a9-ff02-49d9-9082-6c29292a043a','78463605-c329-4929-b567-24a3f88f4b7d',NULL,'sehpa takımı','2025-05-28 21:25:32.000',2,NULL,NULL),
('635c77a3-b73c-4f7c-b1a9-7bfbb9a84302','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL,'Mobilya ','2025-05-04 21:00:00.000',0,'2025-05-26 13:35:16.366',NULL),
('637ecf55-0f47-4302-8766-1e0faf2d9852','9389f67d-2767-4619-90da-cdf983bc767b','c4c635b2-5c83-4ac4-87ef-8f4a5d75f3d1','Star Köşe Koltuk','2025-08-08 06:00:00.000',4,NULL,'2025-08-08 14:15:53.129'),
('638172c9-793e-4ec5-9ad2-cf82bf06eca7','ada30e7c-1819-48d8-b086-9ceffe365e0b',NULL,'ORGANİZASYON MALZEMESİ','2025-10-16 12:00:00.000',8,NULL,NULL),
('63a8dcec-116e-41d9-beca-c025bb85bc21','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-06-19 21:00:00.000',1,NULL,NULL),
('63be6f7f-e08d-420b-b2d7-0017a5bd021a','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL,'YEMEK ODASI KOLTUK','2024-05-11 08:32:57.208',0,NULL,NULL),
('63e03482-af1b-4b30-9c93-56be1e53f6c5','3bb4499e-7b18-422f-a19d-ece35be90286',NULL,'Koltuk ','2025-06-25 16:05:39.155',0,NULL,NULL),
('63f52e46-9697-4d08-a5bf-28ba3fea6518','46b19e09-91c3-4a3b-99ec-5d708063cba6','3e78db22-08b5-4c8e-9d69-c184e551e40a','KERAMİK MASA +SEHPA','2025-07-04 13:00:40.000',4,NULL,NULL),
('640b66f6-160e-4841-a704-93345a8388a8','dcbe7eee-e054-430d-b60c-71cef3ff6b80','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-18 09:00:00.000',0,NULL,'2025-08-22 12:41:50.201'),
('640f51eb-2622-4aa2-ac0f-cc3d59a61df2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'KUMRU FİLELİ BİLGİSAYAR KOLTUĞU','2025-08-26 02:01:45.000',2,NULL,'2025-09-08 12:00:07.860'),
('642202df-ca75-465e-8036-f34da2dad54d','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL,'MOBİLYA ','2024-12-23 21:00:00.000',0,NULL,NULL),
('644ae786-180f-49bd-8931-b3b34eaa8f9c','771279e7-2a96-4a29-a936-3062722353d4',NULL,'FELİX TEKLİ ','2025-03-13 11:08:08.093',2,NULL,NULL),
('644cd00d-09cb-4fd8-b452-857ff80d55bf','6245482e-e4e9-4ec3-a033-d261753e3a36','0f300a3b-b3d6-4b60-924b-aa70cd54141e','masa üst parçaları','2025-04-17 21:12:53.000',2,NULL,NULL),
('64592fbb-c17a-4ef7-81fd-28e6bc8413a1','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL,'KOLTUK ','2025-02-11 21:00:00.000',0,NULL,NULL),
('6462971d-cc28-4d17-bc64-76be43b74356','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL,'traverten masa altı','2025-09-21 15:00:00.000',0,NULL,NULL),
('6465e1ab-9a54-436b-b6b6-782870563698','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9','83a6ec99-043f-45a1-9964-ae544a047455','Masa ve Sehpa','2024-12-12 12:00:50.000',4,'2024-12-19 16:12:50.779',NULL),
('646747fd-82ac-42f4-afc2-f8e1df40f0c5','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL,'orta sehpa','2024-12-23 09:27:15.224',2,NULL,NULL),
('646ed6b3-722f-4d60-9a63-564fc0e1d364','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL,'SSH MASA ÜST SEHPA AYAK + ZİGON ','2025-05-08 07:55:36.779',0,NULL,NULL),
('648b1063-2206-4845-a6a3-5b3089a2bafc','2d3bf117-ace6-4823-84ca-6f7db821df9b','53547128-7fcb-4279-a2ae-cd050bf436d4','Yatak','2025-07-16 21:00:00.000',3,NULL,'2025-08-13 14:12:38.839'),
('64bc0ffd-5e98-4448-9de1-3cd0a42c9a5b','3022afa3-ee21-4e5f-a3a7-5a20829729f8','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN ','2025-05-28 21:00:00.000',1,NULL,NULL),
('64c9c810-f67d-4661-a203-36c163462a28','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL,'DÖŞEK','2025-05-29 09:11:06.375',1,NULL,NULL),
('64d193ea-3b9c-4bcf-8123-2e3e1e9f99aa','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL,'KOLTUK','2024-05-10 06:59:48.344',0,NULL,NULL),
('64e3ab53-43e9-4065-b2d1-99c9cd2365cf','13d25c6c-54a0-4d99-bbbe-499e98654a1c','1ffe49f6-7175-4e8a-9386-7af89dbd8def','koltuk ','2025-07-15 21:00:00.000',4,NULL,'2025-07-23 11:12:41.568'),
('64e90639-a7e3-48b3-a6b7-5d04f87bdc30','57aaa2e5-1908-4468-bb27-3c3205ba5948','3b6fa63c-5b6a-4502-998a-e848aaf7eee8','BONNY YAN SEHPA ','2025-07-07 01:09:54.393',0,NULL,'2025-07-28 14:02:59.084'),
('64fb355c-cbbb-4864-b40c-c3412c86cb51','ba172bbc-5662-4e18-8ae6-5279c6042b03','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA ÜST TABLA','2025-08-25 15:00:00.000',1,NULL,'2025-08-27 08:27:11.031'),
('6503d97b-1348-469f-841f-5227a221f60c','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL,'Koltuk Takımı 3+3+1+1','2025-06-15 21:00:00.000',4,NULL,NULL),
('651813ec-1db0-4bd9-808a-90b2d23efacd','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9','11c7f1a4-0015-4417-8e43-638318209ba4','inci köşe koltuk','2024-12-11 11:00:00.000',4,'2024-12-19 16:12:53.332',NULL),
('65237011-5eb5-4b03-9971-4b707c212c08','2b4a9a44-3280-41b5-a65e-97b1f532481b','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-05-22 12:50:36.196',1,'2025-06-20 13:57:06.354',NULL),
('6527b162-b49b-4d52-9f03-2cf84fd6401f','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL,'SANDALYE','2024-03-30 06:58:09.979',0,NULL,NULL),
('652f8782-6554-4a1e-8ce4-2443e79b37fa','7dba6aad-c685-4d86-96a0-5bd7caa80a14','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-09-05 15:00:00.000',2,NULL,'2025-09-08 14:52:20.829'),
('6574c9d2-e75a-488d-85d7-f96203442cc9','71ea314b-7a45-4dd6-ac6a-722d8715f15e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','1660lık set','2025-01-14 21:00:00.000',4,NULL,NULL),
('6577ac74-e27b-455d-b1b6-383b13e93cb4','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3','0f300a3b-b3d6-4b60-924b-aa70cd54141e','PERDE','2025-02-27 21:51:16.000',1,NULL,NULL),
('657d3ef5-2860-42b7-aaa9-ed31823d3fa7','5fe39fcd-c517-4068-9edd-0a87a35acb0f','cf90c370-208a-4021-aaff-f9220970bca9','MASA ÜST TABLA(ALDINIZ)','2025-05-29 21:00:00.000',1,NULL,NULL),
('657d4dc3-7d07-4079-bde2-767c428bef64','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL,'MOBİLYA','2024-05-29 08:46:06.967',0,NULL,NULL),
('65813454-68c1-4594-8e4b-88515bb0ca51','041d4369-8e52-432c-a39c-693f970677e0','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz','2025-06-19 21:00:00.000',6,NULL,NULL),
('6588ed6d-edc3-4416-a491-7dd64da792c9','43b4cdba-f0e7-4de7-ae8c-4174a5d3537a','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-08-04 09:00:00.000',4,NULL,'2025-10-22 13:12:20.363'),
('659262c4-86c7-45fd-b73c-5e369a55f2c0','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'Traverten yemek masası','2025-08-22 17:07:52.992',0,NULL,NULL),
('659c5370-c4c7-43e5-86e2-1b6d291463aa','e9c3de84-44b0-416d-b57a-8549b5c187d0','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye beyaz','2025-02-28 12:09:17.000',6,NULL,NULL),
('65d184ed-1d0e-4276-b9f7-8b50ba501ace','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL,'FRİDA KOLTUK TAKIMI','2025-02-28 21:48:23.000',0,NULL,NULL),
('65fbcd7d-a680-46b9-89f7-75597cb1f190','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5','94451294-fecf-4760-b1f6-7bcfb8ca1734','masa','2025-09-23 13:00:00.000',3,NULL,'2025-10-02 14:15:55.240'),
('660a4e89-2eec-45b9-9977-7a81419e94a9','21e3be67-9336-48fe-9a70-3338aee8c4a9','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-08-11 10:00:00.000',3,NULL,'2025-08-15 12:54:04.918'),
('66111de3-4db5-4d79-9d26-01d8fabb833a','8626893e-4c0a-4e99-966b-8b12a8482815',NULL,'555','2024-12-16 21:00:00.000',0,NULL,NULL),
('661b31b6-5864-4d50-94ae-a24ef9908dbb','c96401de-d2bb-42c4-b232-62e5a3c21b42','3d19e2da-7de7-453c-83fa-6edd8258f6eb','köşe takımı ve berjer','2025-07-30 08:28:01.400',0,NULL,'2025-08-06 09:08:34.778'),
('661bf68c-7684-4ca2-b22b-42afa9f4e989','3218de28-55a1-4ef9-97e9-ca2400fc4715','533a7400-a525-402f-940b-7226491c34e0','RUGBY KÖŞE KOLTUK','2025-01-31 15:00:00.000',4,NULL,NULL),
('66332cd4-295b-49bc-83c0-d8a962432aeb','22d0b545-968c-4731-9428-8683cd6b2cc3',NULL,'Masa','2025-04-24 21:00:00.000',1,NULL,NULL),
('665094cd-94cc-4442-bbb3-4b6f02758361','77e78f51-be80-4b08-a516-e9fc28d5622f','8c6ecba8-6768-4127-80ba-c9c71d442689','BLACKLINE DOLAP ','2025-08-18 12:00:00.000',0,NULL,'2025-09-09 14:19:18.772'),
('669a028b-e136-4b22-940d-d0010d33782d','888c1a17-6ddc-4bc8-b1ab-b00d72942811','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET PUF','2025-10-07 02:56:00.000',1,NULL,'2025-10-09 08:47:31.115'),
('66ac3e8e-58c7-4a1e-bc6b-2d9b6a2a311a','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL,'KING PLATIN BAZA SETİ 180X200','2025-03-20 21:00:00.000',0,NULL,NULL),
('66e1ab99-3a78-4281-ad4a-dc9559acac64','da2f0aa5-ea25-4793-a24c-76f3940dd114','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','Malzeme kutusu','2025-08-02 04:49:44.952',1,NULL,'2025-08-05 12:07:50.095'),
('66f04f14-5079-4050-b288-99b7ac004505','c3d6a144-9f64-4576-9ddc-760d75c937fc','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x230 cm milas beyaz masa','2025-09-23 15:00:00.000',3,NULL,'2025-09-25 10:45:40.263'),
('66f2382c-0dc4-455e-9fc9-73dedc2c67aa','5a5d710b-b6aa-42ac-baf2-69abc2901c83','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-09-24 03:28:31.939',6,NULL,'2025-09-26 11:14:30.697'),
('66f8d34c-0c41-46f5-98bb-500adbb6f636','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'RİTİM YATAK ODASI (ŞİFONYERSİZ)','2025-06-26 21:00:00.000',0,NULL,NULL),
('66fb1f1f-5cda-45eb-abc6-d7e04b3ff904','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL,'SSH ','2025-03-24 21:00:00.000',0,NULL,NULL),
('67230d57-36ae-46e9-af72-e2352002aef6','aaf80057-65ea-4999-832a-29537bd6ba3e','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı, berjer, puf','2025-05-29 09:00:18.000',4,NULL,NULL),
('673590fe-abc4-4c10-b391-1185378421cb','b98bc4c0-d13e-4cca-ad93-173ed8365841','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-02-24 13:42:22.162',6,NULL,NULL),
('673c05e3-37ec-486d-98a9-9619fc852f3a','f47ed464-36d8-4dcc-aa21-62c1ac57a879',NULL,'perde ','2025-10-22 21:00:00.000',0,NULL,NULL),
('673dd833-1d2f-4fe8-b03c-a6405c807cfc','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL,'Masa','2025-05-21 21:00:00.000',0,'2025-07-24 10:25:40.666',NULL),
('6753c87e-8760-47c1-a5b7-e683dedab57d','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL,'Döşek','2025-05-12 06:32:26.583',1,'2025-06-20 13:56:25.030',NULL),
('676266f3-03e6-4ff9-92c5-07a1b81bc27d','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL,'Mobilya','2024-09-04 15:04:28.629',0,NULL,NULL),
('676dc697-7061-41a1-a8c3-abbff4eb9699','e3db4a37-eb88-4141-a1ac-f9dc8586b414','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe takımı ','2025-08-11 11:00:00.000',0,NULL,'2025-08-12 14:37:38.242'),
('677e3a06-ca47-4aec-a732-695c796dff2c','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL,'MOBİLYA ','2025-03-06 21:00:00.000',0,NULL,NULL),
('67938611-3348-4729-9ec5-9d223db4856a','c3d6a144-9f64-4576-9ddc-760d75c937fc','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-09-24 06:30:10.352',8,NULL,'2025-09-25 10:45:40.263'),
('67953d65-9e42-4bd4-ba82-9abc59b5e4a6','fd58437e-911f-4917-866c-db10175210b3','6aace7da-da92-4368-bc84-69b4e8a590ec','masa ve sehpa','2025-02-20 21:31:51.000',3,NULL,NULL),
('67cca5aa-023c-4a8e-975a-521491dc65cf','66271fb4-4976-4283-9334-d7a1a3905280',NULL,'BAZA + BAŞLIK','2025-01-12 21:00:00.000',0,NULL,NULL),
('67ccfa3d-f741-465a-883e-090e37617e92','a5be4396-bdd8-419f-b266-a5f1a1f8df07','f4b725ec-de83-43a0-8adf-cd7f36f59b78','TOFİ KÖŞE KOLTUK','2025-04-10 10:00:00.000',4,NULL,NULL),
('67ce58b7-ddfa-453b-aecf-6a4e6bc1179c','73760c06-ddf4-438a-b4ca-f709ffabe11c','ee094406-7b7d-4dff-bdda-d300b0b6d971','Koltuk kasasi','2025-01-20 21:04:11.000',1,NULL,NULL),
('67dba577-f387-4df9-95bd-9cd507ced642','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL,'MOBİLYA','2024-11-02 08:18:16.325',0,NULL,NULL),
('67ed4c83-26b0-4200-a1e5-df0f9961f0a0','746346ca-da04-465b-bff8-fc464fa93ece',NULL,'MOBİLYA','2024-10-23 08:42:53.864',0,NULL,NULL),
('68112cc1-ad84-4c05-8982-53d277841de8','1c14969a-f21e-4d10-ad0e-526d04fe3018','8972e4c8-8f15-408c-a596-6783ce86ba09','KÖŞE TAKIMI','2025-05-07 21:00:00.000',4,NULL,NULL),
('6818bb9a-7b67-4c84-b61d-688315d496d3','08b07ff9-692e-4ca8-866e-27a96667e87f','4238f59c-8531-452c-b9cf-d7563efaba46','masa ayağı','2025-06-27 12:00:00.000',2,NULL,NULL),
('68196a47-7977-4b73-9a24-2c24753a10b5','71f77e69-e535-4a68-a67d-b53c19b38276',NULL,'Masa Sandalye','2025-07-06 21:00:00.000',6,NULL,NULL),
('682e2f71-df2f-412f-a256-ded0d3475e02','69d7a07d-c199-439f-8e6c-e59065df2772','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','PRADA SANDALYE ','2025-05-08 21:50:14.000',0,NULL,NULL),
('68468cbe-741b-47ae-be43-0aae10030ee3','cc203893-33b0-4595-9231-86901a0a9cf9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 konik sehpa takım','2025-09-01 03:07:32.000',2,NULL,'2025-08-30 10:45:38.291'),
('684731e4-5508-435b-b127-c98ace592a5f','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL,'mermer masa üst tablası','2025-02-11 07:02:47.647',1,NULL,NULL),
('686241ae-bda0-46d6-810f-2b17e9e251cb','6e6afc45-76dd-42f4-bded-f2fada436aff','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-07-11 09:00:00.000',3,NULL,'2025-07-16 13:21:33.265'),
('68780edd-2f5d-4394-95ba-798a89376229','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL,'Mobilya ','2024-10-02 12:17:23.668',0,NULL,NULL),
('687ef888-f53d-4ec2-b170-8d3d356fa1e2','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KÖŞE ','2025-09-02 06:00:00.000',0,NULL,'2025-10-14 10:52:35.433'),
('6883e1aa-61cc-4415-a95f-c2a814c5b3ce','29897483-14ac-4404-8bba-38c2a76aa9a9','fbb54271-fdf3-4653-965d-bad75101818b','köşe koltuk','2025-10-16 10:00:00.000',0,NULL,'2025-10-24 10:34:07.511'),
('68a82262-4794-40bc-b3bc-eba8f7ad4a03','46debcfc-622e-49c2-bc0c-3ace3fa84661','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-09-16 06:00:00.000',2,NULL,'2025-09-17 08:59:47.064'),
('68ba006c-4563-4d70-85de-ae704607cc56','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL,'SSH (Sandalye ayağı, Masa kanadı, Puf)','2025-07-01 21:00:00.000',3,NULL,NULL),
('68cbf425-c8ce-4610-81f5-0a6734464045','16a741e3-499a-4c78-b643-f7c20a086922',NULL,'180X200 DELÜXE YATAK','2025-06-19 21:41:32.000',1,NULL,NULL),
('68df0ce3-ed22-4bd4-82ea-dbc9646fba18','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','45 çap sehpa üst ','2025-05-20 21:00:00.000',1,NULL,NULL),
('6918492a-0685-40ae-9b38-8845d6ba2ae9','50101273-0c1d-452c-b0ea-a3c2e64b8022','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','SANDALYE','2025-06-27 12:57:25.000',3,NULL,NULL),
('6920e5cb-d019-4a3c-ac52-1b22d89def39','2d3bf117-ace6-4823-84ca-6f7db821df9b','55934c55-9fe9-46ce-b8a4-cf7669e12b21','Sandalye','2025-08-12 11:09:57.000',0,NULL,'2025-08-13 14:12:38.839'),
('692498cf-64f2-4260-8e57-e8b680a64cdd','383fe013-af48-41d5-ad33-ad7c8b16446b','3f82bc1f-6085-4db4-8817-28534baf362d','Mimoza Yatak-baza-baslik ','2025-01-06 08:10:30.000',3,NULL,NULL),
('694114ed-30f4-444c-a5cd-2dac0759dde5','2cd4df69-3bf7-4556-b02d-248a7c9eed51','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA','2025-07-21 13:00:00.000',2,NULL,'2025-07-21 12:39:10.519'),
('695436ef-76db-49e8-9063-c84065a6ba8b','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'TV ALT BLOK','2025-10-10 06:01:20.183',0,'2025-10-21 23:34:12.406','2025-10-15 09:06:41.528'),
('69545533-7407-43ed-aa87-ace1a5f77648','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL,'LAROS KARYOLA - PUF ','2025-08-08 02:36:08.000',0,NULL,'2025-08-28 12:58:21.717'),
('695d73bf-f5ba-45fe-bc80-b162f60a1157','c7df4577-2554-4909-9abc-5a62fa7bafc7','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-17 22:12:29.591',3,NULL,'2025-10-03 12:20:25.317'),
('6971c3a9-6317-47dd-8a88-6da1fb0016df','4428b444-78f4-43f3-8d88-220442b30896','ffb61040-3584-4fa9-9eb9-a4001a595b84','TESLA LUXURY TV ALT ','2025-08-31 10:51:42.000',0,NULL,'2025-09-11 12:53:37.864'),
('698a160e-ce17-4ab9-aac9-25a17ead7521','38e09ff7-02c9-4d9c-8e18-67048459c54e','b4adfa72-57c6-47ae-9e2f-d4c89e7c1fc6','Yatak','2025-10-21 18:00:00.000',6,NULL,NULL),
('69acd97e-52c0-45ae-adf5-ee013e52776f','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL,'MOBİLYA ','2025-01-17 21:00:00.000',0,NULL,NULL),
('69ea6974-d387-4458-bf21-972299a4ce67','1106ac37-0c19-4da2-b605-9af60d1e2fd2','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-31 01:00:00.000',0,NULL,'2025-08-30 15:26:23.666'),
('6a0e9903-d145-4c98-a4ea-6bbc6d4c522b','b3402260-d451-4d00-8ed8-35b3af56080f',NULL,'YATAK BAZA','2024-05-04 07:43:12.910',0,NULL,NULL),
('6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2','7ebece0e-bf8d-4678-bf15-17e6bed10020','67c34dc2-4657-4323-8fc0-4ff05ed31067','YATAK ODASI','2025-10-13 02:00:47.696',0,NULL,'2025-10-14 11:56:04.640'),
('6a1b914c-b6da-4eac-99b1-dcdcecabd124','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-04-22 20:05:43.468',0,'2025-05-30 13:57:12.836',NULL),
('6a277ccc-f43d-4e06-951b-d9935d25dd50','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL,'yatak ','2025-02-13 21:17:21.000',0,NULL,NULL),
('6a2d762e-11cd-4fca-b32d-cdba41391e25','46528672-1c96-4785-80ba-77e3cec82ee8','67c34dc2-4657-4323-8fc0-4ff05ed31067','YATAK ODASI','2025-04-07 21:07:44.000',999,NULL,NULL),
('6a2ec622-2e09-4123-a527-4a4179b4fa14','32d8dcee-9361-46e5-a98f-6e606f4ea7ca','7582128f-7119-48f4-b125-e6b8bfb84dc3','SANDALYE','2025-05-14 08:11:39.458',3,NULL,NULL),
('6a308121-6cf9-4384-8446-08182bd669fd','00f85745-0785-4a7a-9691-f650a9d585f2',NULL,'Koltuk yatak odası','2024-04-05 08:52:13.017',0,NULL,NULL),
('6a343572-aa28-4029-9171-fbea51ab4941','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 çap traverten sehpq','2025-09-24 06:24:22.502',2,NULL,'2025-10-02 09:52:49.427'),
('6a34a80a-fe09-4ffa-8ad1-ed500b30a4d4','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL,'C SEHPA SEHPACI SUAT 05392774545','2025-08-21 06:55:34.785',1,NULL,'2025-08-27 11:53:11.436'),
('6a453e7d-9e69-4934-8c88-321d47be2c61','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL,'YATAK','2025-07-31 07:39:47.000',1,NULL,'2025-09-15 10:19:46.239'),
('6a466dd3-c773-40df-90d1-e90e73bc7735','56569bbe-2460-4ca9-903c-508e769e4a29','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa tv ünitesi konsol','2025-10-31 12:01:24.000',10,NULL,'2025-10-03 09:31:08.952'),
('6a46ee8d-73f0-48c2-83b2-91b6eb632698','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL,'MİLAS BEYAZ ORTA SEHPA','2025-01-02 08:12:27.066',2,NULL,NULL),
('6a523df9-aa6a-469e-b3e9-10f11eec769d','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('6a5ef3df-38d8-4c9d-a7b4-e6d5a931a37d','dba78f99-2bf7-4c3e-b975-fcada3864c38',NULL,'2 koli','2024-04-07 20:49:51.739',0,NULL,NULL),
('6a637fa3-9842-405e-a309-f0c0786f5d0c','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA ÜST TABLA','2025-05-26 21:00:00.000',1,NULL,NULL),
('6a86385f-0304-4a2e-a4ec-6fce1d768ce0','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL,'Taç yazılı koli','2025-01-23 21:00:00.000',0,NULL,NULL),
('6aadeef6-4393-4005-8da5-51ca4e422dfd','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL,'Mobilya ','2024-10-15 09:23:59.478',0,NULL,NULL),
('6ab69d31-d80a-42c2-9cbe-a5ac3f24afe4','01c7f991-854b-4e63-a448-14857c24f6f1',NULL,'RAMS ORTA + YAN SEHPA','2025-03-04 12:19:07.623',0,NULL,NULL),
('6ab8353e-0a04-49dc-8a2e-03d40377dcf8','071c9b00-dfd6-452e-a75b-c40b31f270dc','40dea42f-54e9-4d38-adfa-1fa968cd98a1',' Koltuk takımı 3+3','2025-10-15 04:00:00.000',0,NULL,'2025-10-16 12:59:42.265'),
('6ae0233f-f2c2-44bf-9706-7274e4c923e9','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL,'MOBİLYA ','2025-03-19 21:00:00.000',0,NULL,NULL),
('6aee7799-2e85-45ac-8d17-b03d8bb86a22','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL,'Köşe takımı','2024-04-07 21:09:40.948',0,NULL,NULL),
('6af11c78-d8b6-44e2-99d3-cd7f615e9176','f774fd73-b557-40e4-a1f0-2f9f1e99e70a','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-07-01 21:00:00.000',3,NULL,NULL),
('6b018a64-cfef-4075-90ae-0e3cfd1fcd4b','3391efb6-f905-452e-9046-16422800fd88',NULL,'Yemek Odası Takımı','2025-05-15 20:36:43.137',11,NULL,NULL),
('6b01f96d-6320-41d4-8c8c-5d73f62d279e','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-09-26 05:39:10.000',6,NULL,'2025-10-02 12:28:45.575'),
('6b15c83b-b714-4b1e-9181-451ecb2b94fb','0057de4c-fa8f-4061-a2b1-334d4c1637e1','fd87365f-791b-4129-a329-2bbc5296e508','Sandalye','2025-08-13 14:00:00.000',0,NULL,'2025-08-13 11:26:16.366'),
('6b28fb98-9a5a-4ad1-8f37-e98350541f99','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL,'MOBİLYA','2024-08-07 14:46:59.849',0,NULL,NULL),
('6b29fcf3-79cd-49b9-b2fa-ca1518066509','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL,'Yatak Odası ve Döşek','2025-07-08 06:44:36.000',25,NULL,NULL),
('6b3cbdaf-e161-43f0-88e5-ebaad2122e3c','3a352d28-b0b9-4b59-9821-a77910ca2fbb','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','orta sehpa','2025-08-21 13:24:25.000',1,NULL,'2025-08-28 14:47:43.178'),
('6b3ec6ec-83fe-49f8-8e89-a96f771229e0','8dc371e3-6c16-4776-bb6b-6285b5a674e1','0f300a3b-b3d6-4b60-924b-aa70cd54141e','iki kişilk baza seti 2m3','2024-11-06 21:00:00.000',4,NULL,NULL),
('6b40c652-4a63-49bb-8720-5b9279666fd8','d5d59451-1dce-44fd-b0d3-87c4b3965259','9d9f47dd-5826-4f65-b6fa-0d2528f2d2a8','3+2+1 koltuk takımı','2025-07-24 21:00:00.000',3,NULL,'2025-07-28 08:13:26.037'),
('6b450dd9-9ddb-4601-90aa-247f128692f8','fbc4c4b7-9137-42ec-b6e9-fdea41ca69fc','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','sandalye','2025-08-15 11:20:04.714',5,NULL,NULL),
('6b455790-a8b4-4d0a-a014-f3587ba053d1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL,'Koltuk','2025-06-19 11:59:37.986',0,NULL,NULL),
('6b64d1e9-ff42-44d9-84a9-30cf22738927','0b6d3d95-378b-4d48-9a2c-6a0e39674941','da95f6ab-9177-49c8-b729-1fcee7ea77cb','masa,ayak ve sandalye','2025-03-10 21:00:00.000',5,NULL,NULL),
('6b6cf630-a999-4879-9eec-3e89e6246af7','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye siyah','2025-09-10 00:07:26.000',2,NULL,'2025-09-12 08:19:39.885'),
('6b6e503a-8827-4609-9806-754b1916a709','66271fb4-4976-4283-9334-d7a1a3905280',NULL,'PETRA KONSOL ','2025-01-13 10:34:34.186',0,NULL,NULL),
('6b7249fa-3b92-44b6-a5b6-20ae76f8a01d','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL,'FRİDA ORTA SEHPA ','2025-08-11 06:38:57.000',0,NULL,'2025-08-25 14:21:16.668'),
('6b81ed22-c981-4a7c-9467-3ff418f2c899','b2a22a30-754d-42fb-a7e9-beef7ed2ae23','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','Sehpa ','2025-02-20 14:01:51.121',0,NULL,NULL),
('6b893fae-c5ae-430a-922a-8b76921e755b','eb7486ef-1def-475a-94cb-2a65d39933d5','fe0a9e17-e52a-465c-af84-8dd1932db99a','sandalye','2025-08-08 11:00:00.000',0,NULL,'2025-08-13 09:22:52.038'),
('6b9e51b9-7e9c-47cd-801b-8bba008d0224','82859b5d-2c9e-4a29-be96-14240c8a1e53','97b398f2-80b6-451a-9f85-a2ba41ea8f7f','KARYOLA','2025-06-15 21:00:00.000',4,NULL,NULL),
('6b9f8196-1385-4aaa-b181-33cb3a9d6e35','69d7a07d-c199-439f-8e6c-e59065df2772','bed73507-59f5-45a3-a19b-47793c024f51','TREND YEMEK MASASI','2025-05-06 21:50:04.000',0,NULL,NULL),
('6b9fe611-b43a-4e94-ade5-0b6226644b9c','8f6807e5-5c09-4383-bd17-acc03cf88760','262c07e3-85ed-4f5a-bc91-d8ad3fe8a75c','köşe koltuk berjer','2025-06-30 09:28:50.000',0,NULL,NULL),
('6baa9fe9-382e-444e-8d08-03d6a1a14ee7','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL,'köşe','2025-05-29 21:00:00.000',0,NULL,NULL),
('6bb3587c-46ce-4a7b-b153-d422b83670a2','62bf8206-794c-42ff-b904-4820a312f32b',NULL,'BAMBİ BLACKSAND 160x200 SET,BLACKSAND YASTIK 2 ADET VE SIVI GEÇİRMEZ PED ALEZ ÇF.KŞ.160*200','2025-10-23 18:00:00.000',6,NULL,'2025-10-27 12:33:45.046'),
('6bd7564e-6612-41e3-8625-b58f213b8d44','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 120*200 YATAK','2025-10-03 00:17:39.000',1,NULL,'2025-10-03 11:29:25.915'),
('6bd984a6-844f-480d-9049-81517f064e75','125c6d79-f243-4cb8-a15a-74cffdb00247','3e78db22-08b5-4c8e-9d69-c184e551e40a','masa sehpa','2025-10-23 21:00:00.000',6,NULL,NULL),
('6be11964-ff08-4fef-811c-ae5e608bc5ca','54227612-b8f2-4146-ac20-5622ca9f45c2','27542b9c-f586-4152-836b-5dedeaae0be2','ÖZEL ÜRETİM MASA ','2025-09-29 20:31:49.000',0,NULL,'2025-09-29 09:40:11.070'),
('6bea4bd6-3643-4e72-9e43-b577746ff7ff','55240a4d-a46b-43e7-90cb-b80fbb7defa8','67c34dc2-4657-4323-8fc0-4ff05ed31067','masa orta sehpa 4 sandalye+ benç','2025-10-09 21:00:00.000',0,NULL,NULL),
('6bf9e7f2-559d-4f42-8f6a-cb4cd129f9e9','2f2a65eb-44bb-4a5a-b907-73d6c6c49771','8972e4c8-8f15-408c-a596-6783ce86ba09','1 adet köşe modül','2025-05-14 21:00:00.000',1,NULL,NULL),
('6c0dd84a-6c98-40d4-b2e2-bf00e6f5c44e','042f3c72-dff0-4f05-808d-d871ab750191','4ccea6fc-d526-479a-9e27-42643a5f294f','baza','2025-08-08 13:00:35.000',0,NULL,'2025-08-15 10:26:32.593'),
('6c23f9f6-3497-47dd-84cc-1eb6d89bd740','4a5b9bbc-8625-4b70-95ee-60399f0043bf','c51283b4-beca-4a08-b0f5-c0eda8a91591','tesla köşe takımı','2025-05-04 21:20:43.000',0,NULL,NULL),
('6c35bb5f-22ea-4c08-8835-ff4e35dc983e','bf6d827f-7ff6-4e1e-948c-99dab63704e4','66fe0e79-2382-4817-9bdf-4379c5fcde00','Köşe koltuk','2025-10-16 15:00:00.000',7,NULL,'2025-10-20 07:38:21.632'),
('6c37c9bf-2092-4fce-bbd6-41f3729ab98c','b246d186-ebbb-4410-afe2-737f312e473e','b9700992-a79f-4552-b6d8-7849e204d7bd','KÖŞE TAKIMI','2025-10-20 09:00:00.000',3,NULL,'2025-10-23 08:59:26.286'),
('6c41692f-48c1-489b-ab41-f12954fafe5d','792dc306-a786-4b24-b735-ba05b7a72e0d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','SANDALYE','2024-11-14 21:43:09.000',3,NULL,NULL),
('6c43de3c-5454-4dc3-8fc2-6cd719969299','6fe06ae2-3155-4059-8f77-a92d8d23543a','2217d862-4505-4eb5-93d9-838e046913fc','SAHRA GENÇ ODASI','2025-03-24 09:21:28.846',0,NULL,NULL),
('6c4f7388-d12a-412e-818e-024f496f5fdd','332b1f22-620c-42bd-8d4b-e8acc54988be',NULL,'MOBİLYA','2024-03-14 15:23:06.444',0,NULL,NULL),
('6c535e07-ecd4-4bf9-84d1-0972d296ac4d','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL,'Mobilya ','2024-09-25 09:08:46.335',0,NULL,NULL),
('6c57b0a6-2b24-4537-92f2-a728f232a719','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL,'MOBİLYA','2024-10-02 09:15:42.041',0,NULL,NULL),
('6c7b7f95-a783-4780-93d4-d95611c52e44','c6fa0579-ce0b-4e00-9570-999b5950c155',NULL,'KOLTUK ','2025-03-16 21:00:00.000',0,NULL,NULL),
('6c7e248f-e036-4edc-a8fa-16b68ce11026','b659a388-1c45-405b-a478-fa4eb2398376',NULL,'MOBİLYA','2024-07-30 14:41:31.796',0,NULL,NULL),
('6c7f7eb0-0e54-462f-9045-071cf525c2ed','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL,'Mobilya','2024-08-29 15:30:29.191',0,NULL,NULL),
('6ca0cbb5-8b45-46fa-9e41-2771ad9644cf','0a266acf-5707-4e27-8a72-fd079a3c1ee6','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-07-23 21:00:00.000',5,NULL,'2025-07-28 08:24:14.809'),
('6cb8915b-a169-4dff-829a-4bf790dd05cb','3008395f-ad73-440c-95df-6a289efc5dab','bc1b9fd7-95d7-4d5b-a84e-684140acc414','3+3+1 koltuk takımı','2025-04-29 21:55:56.000',3,NULL,NULL),
('6cbcd521-31c8-4989-a580-2670a444c226','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN AURA 2 KAPILI ÇEKMECELİ DOLAP','2025-08-28 02:06:26.000',1,NULL,'2025-09-08 12:00:07.860'),
('6cc7f745-bdd3-46a3-b5f4-b7ab581a51ad','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'kotuk 3+3+1','2025-05-30 05:58:46.017',0,NULL,NULL),
('6cd309c7-358a-424c-b49f-8cea7dd36af2','f8cb67fa-fe67-46a9-9038-d693e382afe9','44c404b3-a618-4af5-bdfb-ad381f049053','ada şifonyer','2025-10-29 15:32:01.000',0,NULL,'2025-10-14 11:59:52.759'),
('6ce91342-6292-45b3-be85-1b55deed3ecb','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL,'2 Takım Koltuk Gelecek','2025-07-08 21:00:00.000',0,NULL,NULL),
('6cee1429-9935-4eae-be32-dc630b6d70e8','90a8f7ac-5c28-443a-9cbe-23f5c2942327',NULL,'Mobilya','2024-08-20 12:59:35.441',0,NULL,NULL),
('6cef5b53-f812-4e21-87b8-9c3bfdc6543c','c6a4b643-c681-400b-be0f-c368348b5bbd','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 sandalye','2025-07-25 12:24:50.006',3,NULL,'2025-07-29 14:05:12.382'),
('6cf15506-e6d2-496a-a50c-1bddeb987a1f','e81fdf76-b529-423f-8485-057fd816e54d','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','yemek odası','2025-06-18 21:01:36.000',0,NULL,NULL),
('6cf8f42f-8f6a-4650-ae73-36d6d6c9015c','73df0d9c-5733-4d04-8f77-6e191897e0ff','ff745fd6-7db9-40d3-ba94-c7183b5039f1','KOLTUK TAKIMI','2025-03-16 21:00:00.000',3,NULL,NULL),
('6d0390ef-65ce-4154-a607-d67e51938ed2','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL,'YAtAK','2024-12-29 21:00:00.000',0,NULL,NULL),
('6d2958d8-12ca-41bd-a12b-58082d5c955f','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL,'LİDYA SOHO DOLAP,LİDYA SOHO KÖŞE DOLAP,LİDYA SOHO İKİ KAPILI DOLAP,LİDYA SOHO TEK KAPILI DOLAP,GRANDBEDS DELUXE 160*200 YATAK,BEYLER 2TAY-6090-266 AYNALI TABLO 60*90','2025-09-10 03:00:00.000',6,NULL,'2025-09-24 08:19:17.069'),
('6d3c54e3-0b3c-4bf4-bdff-b28c7ce0ec03','c2076f78-1666-4ea9-9474-176fcb79c195','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-07-03 22:09:17.000',3,NULL,NULL),
('6d45660b-867c-48d4-bfff-e888d7d88b72','6185b161-cfc2-4a8a-a2f2-c2e05c20c446','cc1bf391-9830-410e-a63e-d8d559070d32','karyola başlık','2025-10-08 02:31:19.000',4,NULL,'2025-10-13 09:39:05.630'),
('6d60b0dc-2aeb-4000-9b2c-154dfd45b045','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KANEPE','2025-08-12 11:44:05.881',2,NULL,'2025-09-22 15:24:34.176'),
('6d6387c1-6c6d-4152-b1f6-64a868887602','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','f6b088d3-e3bc-4d15-8fc9-2cdc074c6759','ETRO KOLTUK TAKIMI ','2025-04-30 13:43:31.000',0,NULL,NULL),
('6d799456-04ef-4f63-84ef-f07b7154d34e','ccec7edf-babd-4962-8945-5f2cc49b04e9','f8e7e421-d096-4d8d-99a4-e621c080ad89','konsol ','2025-02-13 21:00:00.000',0,NULL,NULL),
('6d7b0b6c-ea00-4551-8f7d-3d248946ff1b','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL,'90*180 cm MASA','2025-01-09 13:00:00.000',3,NULL,NULL),
('6d84348e-f20d-4f2d-bd72-f886804e2a50','f7979b44-eac7-41b0-a981-1f2165181d24',NULL,'SERAMİK YEMEK MASASI ','2025-07-21 15:26:31.000',0,NULL,'2025-07-17 10:01:15.057'),
('6d91e76a-f3e3-4919-97c3-3c1c0d189689','c1240440-7bab-4c36-b81b-ce30804d132b','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Sehpa ','2025-01-20 12:42:50.410',0,NULL,NULL),
('6da50268-00e5-4c15-b11a-81b77c3b508d','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL,'MASA','2024-12-17 15:25:17.164',0,NULL,NULL),
('6dd5441b-271a-446f-944c-4ee5a3660fbb','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('6dd63c3c-43ca-49f0-9b2c-7b78a1c3be43','ae77010c-fd9b-4dda-9995-d94d5c8976bb','1e93df00-c436-426e-b76b-a6d843907edb','tofi köşe ','2025-07-01 21:00:00.000',4,NULL,'2025-08-05 06:53:04.333'),
('6dea2881-bc11-4637-b359-47042c58b112','d1449931-2ff8-4afa-9b0e-bdc3343cb106','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-09-05 04:00:00.000',0,NULL,'2025-09-06 09:58:37.220'),
('6dfbedc6-a895-4b7b-8eee-42c7facf37d8','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,'SANDALYE','2025-06-26 21:43:08.000',6,NULL,NULL),
('6e112730-220a-4c2b-82cf-28a80fa0549b','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL,'YATAK-BAZA-BAŞLIK','2025-08-20 21:00:00.000',0,NULL,NULL),
('6e4789ed-c3b6-42aa-92c7-9f9bf35ae289','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL,'Köşe koltuk','2025-04-25 21:00:00.000',3,NULL,NULL),
('6e47f78d-dd2c-4999-830a-aeb298618fd5','00ed7c47-6897-4b03-a708-882316651c7e','4a0bcddc-f75a-4ef1-bcb8-98d9697834f0','masa ayağı','2025-10-27 10:01:30.000',2,NULL,NULL),
('6e59bf3c-4674-48eb-95d4-e38eac38066b','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL,'Mobilya ','2024-10-04 12:25:56.265',0,NULL,NULL),
('6e7cb94f-e7b0-449c-8458-dffd274f8115','68290f88-32b3-4699-8927-09eb5cfc1ac6','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','5','2025-07-21 13:00:00.000',5,NULL,'2025-07-21 07:35:23.972'),
('6e8e0e30-4292-40ef-a083-ee4e395c32bc','4fecd93b-0230-4b8f-9c66-a61c426ac9bb','1be238d9-54e3-4094-8d60-66fd5abb87b5','traverten tozu','2025-08-28 18:00:00.000',1,NULL,'2025-08-29 11:58:12.282'),
('6ea8dfcb-31f2-4664-8ee7-faadf38806f7','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL,'MOBİLYA ','2024-12-17 21:00:00.000',0,NULL,NULL),
('6ec853bb-abac-4ef5-a04a-072663abe372','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL,'BAŞLIK + ORTA SEHPA + YAN SEHPA + 1 KANEPE','2025-05-07 21:00:00.000',0,NULL,NULL),
('6ec87888-8b87-4bf1-adae-d5b6742225d9','28b92b39-fb44-43d7-a392-add43e96df28','4d3f433c-6ebf-4443-a8bd-319b61cbe400','yatak odası takımı (komidin 1 ad.)','2025-09-30 06:00:00.000',0,NULL,'2025-10-09 14:08:25.981'),
('6ec8ebba-fdf6-42c8-aceb-e6a01c76790d','0842ca05-4fb7-45eb-8075-13043a47f7c2','b762dc85-daa3-4f73-b637-11f8f17d6a55','ELİT KÖŞE KOLTUK ','2025-06-12 21:00:00.000',0,NULL,NULL),
('6ece3da6-36dd-4090-9715-e7c90799e5fd','c242a231-cffe-4e5d-bd32-54cf78b29c25','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','PRADA SANDALYE ','2025-05-05 11:00:36.000',0,NULL,NULL),
('6edbe2b6-2493-4587-b9d0-320df9f7676b','c4ed3c28-c51b-4246-86d1-a36f0aff591d','3702a172-da98-4e48-8071-547c4f3e92e8','Cuats sandalye ','2025-02-14 11:12:26.000',6,NULL,NULL),
('6ee97c0f-b66b-4a52-8b77-b152adec9ba3','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL,'SİENA GENÇ ODASI','2025-02-28 21:48:19.000',0,NULL,NULL),
('6f008251-c003-4235-8950-f5ecedfd319a','c372b398-b1ae-40ad-b0e3-91301cb6ee99','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-05-23 14:30:17.000',3,NULL,NULL),
('6f2ec3a1-fc8f-415b-9328-08c608c3529f','235ede83-046c-43b3-a7f1-746b19237d67',NULL,'Balat sandalye ','2025-01-15 13:21:00.765',6,NULL,NULL),
('6f387dd8-0e1f-4464-b3b9-04f820af1d90','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-06-10 21:00:00.000',3,'2025-07-24 10:25:38.175',NULL),
('6f39adeb-44e4-441d-991b-695b96264861','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'YAN SEHPA','2025-10-10 06:01:46.441',0,'2025-10-21 23:34:11.568','2025-10-15 09:06:41.528'),
('6f3eb494-c4ca-431c-aab0-4a54b9aa3bf5','3a413ad6-1fa8-40a1-8617-788cf4219a4a','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA AYAĞI','2025-04-24 21:41:00.000',2,NULL,NULL),
('6f44b113-5917-40cb-9c98-9456f8c03518','183e4649-4c9e-491a-ab8a-0e24c8224108','7cde08b6-b128-40a0-b020-22a0c1ce096f','BOHEM KARYOLA ŞİFONYER KOMODİN ','2025-09-24 06:00:00.000',0,NULL,'2025-10-01 13:30:30.419'),
('6f4fc091-c0aa-4c30-9c42-a45f1be9d67f','6da14393-4c45-403b-a068-6c3e487296c7','37486a5b-3dc6-4298-9bfd-3291b8f42d46','berjer ','2025-02-07 10:07:55.197',0,NULL,NULL),
('6f5b3ef6-8ec8-4e13-9be4-abdee95611c4','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL,'KOLTUK','2025-02-19 21:00:00.000',0,NULL,NULL),
('6f5ccdbb-7eab-418a-9fee-e32424b2d0e2','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL,'MOBİLYA','2024-09-27 11:49:22.589',0,NULL,NULL),
('6f5edc89-0f5d-4bf7-8539-15ef3e153ae3','4eca9076-fb67-4509-9af7-f82fb79db731',NULL,'halı','2025-10-10 00:46:54.591',0,NULL,'2025-10-10 14:26:13.149'),
('6f71816a-38ff-4c19-a38c-baec6fa527f0','9665df81-a895-4779-ad78-e6fc3e7f28df','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-31 01:02:45.000',1,NULL,'2025-09-22 12:01:19.065'),
('6f7a6469-dc9b-4d75-903c-d0c86a5d5d92','02caa650-97c8-4705-a9bc-95c4f819c322',NULL,'Karyola','2025-05-08 09:00:39.000',5,NULL,NULL),
('6f883022-1eea-4faa-b6c6-489aa1c8866e','29e07758-ee2d-462d-95cb-5effc249b279','3353e266-6d8b-42cd-9658-4221761635bc','Yavrulu yatak','2024-11-04 08:56:40.464',0,NULL,NULL),
('6f8fd929-0228-4fd9-a182-83fe855d3f5c','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL,'Mobilya ','2024-09-19 11:19:54.856',0,NULL,NULL),
('6f95e85b-2907-4e26-bc1d-f6ba702124b5','f0b80554-e825-487a-9ec5-ec30be5eade8','f8e7e421-d096-4d8d-99a4-e621c080ad89','masa ','2024-11-14 19:39:32.750',1,NULL,NULL),
('6f9b7de7-7ff1-42d1-ac78-df7b662a94d8','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL,'MOBİLYA','2024-12-27 21:00:00.000',0,NULL,NULL),
('6fa65035-ff3a-4aac-b272-cc09a572866e','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e','543cea99-2d75-4e63-a5d0-ad61071e5961','BAZA ALT VE ÜST SUNTASI','2025-04-24 13:26:18.941',2,NULL,NULL),
('6facbe4f-6c71-450d-841e-ed1b4a628d10','c8ca048a-bc13-4ec3-9715-2f7645615c63','d30ff40f-77ed-465b-82c8-b649f7ec3cc0','TESLA LUXURY KONSOL VE AYNASI','2025-03-18 21:00:00.000',2,NULL,NULL),
('6fc078bc-5513-47c3-827c-b4f5fa1c9ecd','c6a4b643-c681-400b-be0f-c368348b5bbd','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa','2025-07-25 13:00:00.000',3,NULL,'2025-07-29 14:05:12.382'),
('6fc71087-3b34-4761-a094-a0f038c41be7','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6','a5a2020b-3a79-4455-9faf-a0a1ee3107f5','Konsol tv alt','2025-03-26 09:22:58.599',0,NULL,NULL),
('6fc8a59e-ad04-4aa3-b21d-1198d80f60fb','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('6fcb678a-738f-4546-a1ae-93c77a214ec3','6ba9900e-286c-40c2-bd00-67d4e8a2212a','a5554508-6f32-44fa-9dc6-9db8d8485541','LENA BAZALI KARYOLA ','2025-07-21 15:35:46.000',0,NULL,NULL),
('6fcc55d3-2339-4d12-b5e2-e156727c33f9','0686aefd-6bc5-4963-b256-37bb53456216',NULL,'Celmo','2025-09-18 09:00:00.000',0,NULL,NULL),
('6fcd8160-ca06-46ab-a691-51de5c394793','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','2217d862-4505-4eb5-93d9-838e046913fc','LOFTER GENÇ ODASI','2025-04-22 07:00:27.000',0,NULL,NULL),
('6fd1f0d4-0ef8-4666-9ea1-89547fd83616','b4df3c44-e272-4f15-83b1-063b9f953adc','44c404b3-a618-4af5-bdfb-ad381f049053','MASA 6 SANDALYE KONSOL','2025-10-13 09:19:17.831',0,NULL,'2025-10-14 10:51:22.543'),
('6fd22e55-d4d7-456b-8be2-88ba5d331996','a6b849e9-82a6-4209-bbf8-1190e6651471','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','4 SANDALYE','2025-09-15 23:47:07.000',2,NULL,'2025-09-22 09:14:48.368'),
('6ff86400-74db-4fb0-8f8d-7ebd7383bc24','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL,'MOBİLYA','2025-07-07 21:00:00.000',0,NULL,NULL),
('70025235-c3ff-4d6e-b849-3c76df68e036','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL,'YATAK','2024-09-18 21:02:30.479',0,NULL,NULL),
('70097ba5-4391-4d13-9ec0-c301acfc6de5','e3871411-a780-42a7-af06-7808ea097f15','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-24 06:40:12.367',1,NULL,'2025-09-30 07:28:59.526'),
('700df4c9-3ebc-4f9d-b86c-5154441b3df9','1b527261-0f20-432f-8edd-bf02ae683a47','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 kanepe ve orta sehpa','2024-11-17 21:00:00.000',3,NULL,NULL),
('7012b87f-b3b2-45ee-a901-be79ec1f67d9','5f1384e7-3101-476b-be1f-bb10a9abe0b3','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Beyaz milas masa','2025-10-24 12:00:00.000',3,NULL,'2025-10-24 08:11:50.392'),
('701521bd-cfaf-4a40-86a1-a1856b36a16f','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL,'KOLİLER','2025-06-29 21:00:00.000',0,NULL,NULL),
('701cca54-06dc-4415-a060-2c96cc94bf13','17d4a677-f522-4e31-85af-9b012f78f44d','1d2db52c-5f0a-428e-9cb7-7435ad5c00f6','MASA-6 ADET SANDALYE-TV ORTASEHPA','2025-10-23 21:00:00.000',0,NULL,NULL),
('701ce228-2b9f-4b05-af20-29473e77d765','449a0466-41c0-4cc0-8da6-376268e5bdfd','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-10-20 03:00:00.000',1,NULL,'2025-08-26 07:27:54.615'),
('70295e99-ecec-4498-943e-fb5826d388c5','142a82ad-defd-462a-a877-e872e40354a3','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK TAKIMI','2025-06-24 15:00:00.000',7,NULL,NULL),
('702c1aff-1a98-44f0-9dce-efad71572432','1080adba-e901-4380-93d1-e3ffaab7c355','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE YATAK ODASI','2025-09-29 06:00:00.000',0,NULL,'2025-09-25 11:44:15.130'),
('704fd720-5b2c-4da2-a7ac-312e961cba30','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL,'MOBİLYA','2024-07-20 10:37:40.593',0,NULL,NULL),
('706d5781-e475-41b5-9b0f-7279cf02af9e','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','ed12ef84-56bd-4976-b6be-70b358cb3914','PRADA ORTA SEHPA','2025-09-15 04:58:21.421',0,NULL,'2025-09-19 11:49:55.086'),
('70873466-f77e-4c55-81ef-21947837cbff','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL,'Mobilya ','2024-10-07 11:35:54.696',0,NULL,NULL),
('709a4a0a-91a8-46c2-873e-83b3fb46498b','8cf92937-e0c9-49c9-87aa-33b3c2fd4773','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER MASA','2025-04-17 15:16:42.983',1,NULL,NULL),
('70b22f70-f7d8-4a82-8167-176b06b7299f','f2e85c5a-0ab0-460f-8b3f-1dce4d598818','0d312bb8-4159-41d5-968d-5044bd3c525d','NOVA KOLTUK TAKIMI  4+3+1','2025-08-20 21:00:00.000',0,NULL,'2025-08-22 16:20:40.271'),
('70b6e5e2-d02c-4d31-a3df-05925da0b959','74721b66-738e-483a-a107-dcb77d21146a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-08-29 18:00:00.000',0,NULL,NULL),
('70bd6130-456a-467c-bdb8-a08ab705493d','0433f27d-703a-4a68-9cdb-58d86767559d',NULL,'70x120 traverten Orta sehpa ','2025-03-18 11:40:10.599',2,NULL,NULL),
('70c34137-1e24-4496-a1ad-0465a945d558','88f84531-ef49-42b4-ba11-ad770eba8aa1','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-08-24 00:00:00.000',3,NULL,'2025-09-16 07:47:55.235'),
('70d8e654-87be-403e-8b66-d1bc44df5670','e1708729-2a47-405a-bcc7-a59e67a2f89c','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-10-27 20:54:53.000',6,NULL,'2025-10-22 07:33:48.983'),
('70e53bb3-6b7f-4bd9-a258-785f8508d006','b38a7b03-e548-4549-88de-73bd00712e29',NULL,'köşe','2025-09-15 18:00:00.000',0,NULL,NULL),
('7112a1a0-5ac4-4840-8d70-c104d26855cb','712504b4-3082-4d55-b36d-6c65e190776a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-05-07 09:43:09.132',6,NULL,NULL),
('71186865-547c-4404-a1d3-c309f2152015','55e607ed-d51c-485a-8378-e7a48e23c319',NULL,'Koltuk','2025-10-10 09:00:00.000',0,NULL,'2025-10-11 12:16:14.855'),
('71452714-b180-4e00-b2a8-b6fefa0c5650','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL,'MOBİLYA ','2025-01-28 21:00:00.000',0,NULL,NULL),
('71481b47-e566-49d0-8ede-33e07961f2bc','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-15 11:00:00.000',0,NULL,'2025-08-19 14:13:29.293'),
('714823a9-06cb-43df-a342-d1728555129e','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL,'TOFİ KÖŞE KOLTUIK','2025-02-11 21:00:00.000',4,NULL,NULL),
('714e8b81-dd4e-4df1-a444-d3e5da0c60b4','aa5e5bf9-e64b-4731-8c85-62582faeb98e','b94604cf-4431-4d3a-bbbe-0fab66df0701','sandalye','2025-09-17 18:00:00.000',6,NULL,NULL),
('715005c5-c41a-4f93-a5d3-17adaaa7406f','1bb074a3-ddf3-432d-9ee8-e36060092ef8','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-09-29 16:02:01.000',1,NULL,'2025-09-02 10:35:01.832'),
('71739720-3bf4-4e85-a052-44d40ca1db0f','0aaad212-a936-42da-a38a-78f129b220bb','0f300a3b-b3d6-4b60-924b-aa70cd54141e','1 ADET KANEPE','2025-04-27 21:00:00.000',1,NULL,NULL),
('719c1517-1488-43e8-8631-14bcd14307be','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL,'Natura sandalye ','2025-03-11 21:15:34.000',3,NULL,NULL),
('719f1147-b9ed-45c5-99c0-b1467885c18b','548ed737-ff1e-4d15-8e34-d66ac4314840','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-07-16 13:00:39.000',4,NULL,'2025-07-17 08:04:39.952'),
('71b1f991-8cca-4d20-9909-8155787417b3','751e7cfe-45c9-4ff6-a9db-f5b7e29356ac','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-09-30 05:00:00.000',3,NULL,'2025-10-06 11:02:08.324'),
('71ba9c84-1ca2-4b89-9c5c-55fa5932cdde','62caace2-8a1f-47b5-b5ca-7b5356657263','b4b527e9-c851-458f-9238-9049a66f2c90','8 ADET SANDALYE AYAĞI (METAL)','2025-08-31 09:00:00.000',999,NULL,'2025-09-03 11:45:56.565'),
('71bad177-70b1-4415-8e8b-40e395def911','abd1fa1d-ef72-449a-84e2-496a5a892b63',NULL,'2','2025-06-13 21:00:00.000',0,NULL,NULL),
('71e27182-2847-4dcc-a9fa-a946af03e68a','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL,'MOBİLYA','2024-09-27 12:37:09.580',0,NULL,NULL),
('71ea246f-d48f-498e-8dd2-c5bf0cefe20b','e9c3de84-44b0-416d-b57a-8549b5c187d0','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','60x100 orta sehpa','2025-04-17 21:08:38.000',1,NULL,NULL),
('71f35f86-849a-4590-9b45-008b2e44e3bc','17c44301-4570-4224-802c-27bd566a17e6',NULL,'SSH AYAK','2025-06-19 12:00:00.000',0,NULL,NULL),
('7201b2ad-bcff-417b-a7c8-7f2da8c65235','aae115aa-05f3-4d7c-b25f-3b266a2aa636','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','SEHPA 70*140','2025-02-10 11:04:23.000',2,NULL,NULL),
('72142188-56e5-4fac-8fb4-f7d0f25058ff','042f3c72-dff0-4f05-808d-d871ab750191','bdf32869-5506-4208-95e2-820fe960d600','star köşe','2025-08-11 13:00:16.000',0,NULL,'2025-08-15 10:26:32.593'),
('721ec873-4d95-4408-83ba-db107635ba55','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('722f6cda-7965-496a-81b9-31511421c775','2e51945e-3da1-4c02-ae97-956500db2c2a','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-02-27 09:51:45.890',6,NULL,NULL),
('723a1ddc-811a-4899-bb4b-577c7b163262','8259588b-b757-4856-a390-2e9ec4c403c8',NULL,'MOBİLYA ','2024-12-15 21:00:00.000',0,NULL,NULL),
('724114ee-3193-467b-9b8c-c116b42b4a2a','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL,'YATAK','2025-09-22 17:28:37.084',1,NULL,'2025-10-20 13:28:20.709'),
('724d91b5-a9e8-41cf-8697-c13640363602','ff541470-3c77-4b65-bcd0-3fc253c0858c','679716f3-7799-4e9d-a984-9fe004b5689e','Sandalye','2025-09-20 23:30:14.851',0,NULL,'2025-09-22 15:02:58.906'),
('725b938f-4b76-4c51-af62-af86036ecfbf','fc31e466-d8a0-4227-8542-d08063fb7971','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-07-22 09:05:31.000',4,NULL,'2025-08-05 14:29:57.372'),
('7293e408-5350-4662-a08c-c196ced94e89','7d5531cd-fb21-4284-9145-817c08eee250','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','dolap ( area)','2025-10-08 23:08:36.865',0,NULL,'2025-10-16 08:17:49.131'),
('729e98d2-1698-4cb9-8392-81f5bff64146','df9c125a-f311-496d-96b6-2c41f3e5ed96',NULL,'BOHEM ART KÖŞE ','2025-03-12 21:00:00.000',0,NULL,NULL),
('72b133d5-cf9f-4ffc-91ba-95b1bc6c10b9','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL,'berjer kasası','2025-04-24 06:49:40.187',2,NULL,NULL),
('72dd70ee-d1c4-46e4-b852-cc3c53e8554f','e0c4f0d4-cef1-4622-8782-650f949049ae','0d64216c-fe9d-486b-b722-9710eba2c609','DENİZ KOLTUK','2025-02-14 14:00:00.000',3,NULL,NULL),
('72ef762d-fdc9-4544-903d-79a557b03bde','259921e5-33a8-46ab-8da6-91a44b26b420','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-08-05 21:00:00.000',0,NULL,'2025-08-29 08:04:30.840'),
('72fb829c-8230-4d8d-9137-c937d756af88','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL,'DUVA LUCCA KOLTUK TAKIMI 3+3+1+1','2025-02-25 21:00:00.000',4,NULL,NULL),
('72fb9c80-80d1-4a22-84a3-c154b5a3cce2','ae77010c-fd9b-4dda-9995-d94d5c8976bb','4fbb639d-63c8-459f-9820-d8a261260d94','6 adet sandalye','2025-07-23 08:20:17.000',3,NULL,'2025-08-05 06:53:04.333'),
('7304c520-b495-463a-b8c1-16e20f69c36c','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL,'giyinme odası','2025-08-09 15:00:00.000',999,NULL,'2025-08-25 07:03:53.541'),
('73070a82-3710-4964-a5e9-55737d39af81','02f21391-f1d5-4bee-b4d9-17f65a20feb7','021f4c90-f71f-452d-a14e-192a119e9aef','Libra Şifonyer','2025-08-18 22:31:37.156',0,NULL,'2025-09-02 08:50:18.146'),
('7311f1e0-e2be-43dc-9e40-f94a010e8939','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL,'Mobilya','2024-08-26 10:06:48.085',0,NULL,NULL),
('73256cf8-06a7-4cfa-9c09-c8d9868f54d7','4620449d-5bd3-49d6-816f-684d639a3e44',NULL,'MOBİLYA ','2025-01-05 21:00:00.000',0,NULL,NULL),
('733638b3-f981-4c38-8cdd-5eb1c0dd6243','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL,'TEKLİ','2024-12-05 16:12:44.260',0,NULL,NULL),
('733bff01-cf6d-4939-aa79-6311531918bd','340801e4-6036-4b2f-9cae-d51385895b71','b8bd90df-c7a1-4400-b5c5-350df5d8a4d5','KARYOLA','2025-10-21 09:00:00.000',5,NULL,'2025-10-24 08:21:11.538'),
('733d947b-4145-4080-8edd-87c33f93d60e','29ad9f78-9c53-4873-a500-c56a5fe3e826','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-10-06 02:00:00.000',5,NULL,'2025-10-08 11:57:47.200'),
('733f4ba6-58a1-4c6d-bfe2-a881599fe5fa','04fb8dfc-07be-4e81-a060-8a8a6f53ef14','98c5854e-8359-40bf-8d64-f3fb052b029d','KOLTUK ','2025-10-13 07:00:00.000',5,NULL,'2025-10-13 13:04:31.438'),
('73499d6d-d2d9-4c76-9e89-9c775fadaada','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL,'KOLTUK','2025-03-19 21:00:00.000',0,NULL,NULL),
('735a4cf4-d192-4bae-9d7b-24bd5111fa3f','82d80e65-06fc-4494-86fe-0aa63b37337e','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-08-27 23:21:33.000',3,NULL,'2025-08-29 09:22:36.813'),
('7360cf59-fdde-4259-88ae-e20574f2ab94','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL,'KOLİ','2024-03-30 09:17:35.709',0,NULL,NULL),
('73620971-43fb-4c83-8c1f-8672f6a63561','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL,'KOLTUK TAKIMI','2024-05-04 09:30:46.669',0,NULL,NULL),
('73669d80-682e-4907-9777-0f955189f4bc','f8707ecf-1dbe-4a0a-87e0-a7980b1877bc',NULL,'KÖŞE KOLTUK','2024-03-18 07:11:16.557',0,NULL,NULL),
('736a3843-e940-40e2-b010-ca2488879ddd','e34a405c-b206-4de1-aca3-4f8e33268107',NULL,'KING PLATİN YATAK 140','2025-03-04 12:27:30.152',0,NULL,NULL),
('7379fb2f-7c58-439b-a1f3-7d6e91d200f2','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL,'sandalye masami','2025-07-03 21:00:00.000',3,'2025-08-05 13:05:11.123',NULL),
('73964eba-dae5-4a78-aad6-4c8a854da2b0','5242bea6-83a9-46c0-b42f-249dd7e9ef0a',NULL,'KOLTUK TEMİZLİK SPREYİ','2025-10-26 22:49:03.000',0,NULL,'2025-09-10 11:21:16.683'),
('73bb3ff2-f6f1-44b0-849d-9baef250ea05','d5e45bbc-32f3-498d-96c3-b034ee8c10cf','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-06-16 21:04:28.912',3,'2025-08-05 12:59:21.178',NULL),
('73bc49cc-7184-4418-a48b-cdaeaee04127','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL,'SSH BAŞLIK VE RAF ','2025-05-06 21:00:00.000',0,NULL,NULL),
('73bfdb14-33f2-4c54-a1cd-4ce971013329','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL,'MOBİLYA','2024-12-27 21:00:00.000',0,NULL,NULL),
('73de3918-2f08-47da-b796-b97c2383ecec','5f1384e7-3101-476b-be1f-bb10a9abe0b3','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Beyaz TV ünitesi 240 cm','2025-10-22 23:00:51.000',2,NULL,'2025-10-24 08:11:50.392'),
('73f0ed30-ea86-4dfb-b0e9-bfb3d380810c','21e3be67-9336-48fe-9a70-3338aee8c4a9','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-11 10:38:18.000',3,NULL,'2025-08-15 12:54:04.918'),
('73f30d95-fa52-46a8-905d-f43787819577','32d385ed-3e8f-402f-80a2-9531544e451a','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-03-27 07:56:04.575',2,NULL,NULL),
('73f6eac7-ef02-457e-8f85-1a7627c5ea9d','862e4bdc-2e76-4b0a-b6fc-8557101a2020','bc1b9fd7-95d7-4d5b-a84e-684140acc414','2 adet askı borusu  ve başlıkları ssh','2025-06-26 07:40:56.602',1,NULL,NULL),
('741d72ad-ef49-4e12-9620-317e8249941a','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL,'MOBİLYA','2024-11-22 21:00:00.000',0,NULL,NULL),
('7420e731-9668-481e-99f8-c3ffadbe2321','3b2b9553-2254-427e-9970-41bddf8e65b0','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-09-17 03:00:00.000',3,NULL,'2025-09-29 07:20:20.821'),
('743afebe-6082-4419-89e7-020f67e440f0','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL,'Masa ','2024-12-26 21:00:00.000',0,NULL,NULL),
('743ccdda-3eee-4f87-8835-f0f9348b6b7e','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL,'Mobilya','2024-11-21 21:00:00.000',0,NULL,NULL),
('746b8541-3c06-48d2-910d-f711f2ff7472','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL,'masa','2025-06-16 21:00:00.000',1,NULL,NULL),
('749f88f7-2499-4bd0-b578-1cf55fd70948','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL,'SSH BAZA DEMİRİ + MAKASLARI ','2025-08-01 14:13:24.000',0,NULL,'2025-08-06 12:15:05.529'),
('74a24dca-42b5-4d40-9938-322fbaef5bcb','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL,'MOBİLYA','2025-02-26 21:00:00.000',0,NULL,NULL),
('74a88fdc-855b-48f5-8e6b-ab25edb45ad6','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL,'Yatak odası dkm de.    -.  Dresuar yatak çelik kapı bziim adreste','2024-12-19 21:00:00.000',0,NULL,NULL),
('74c3f7a9-c212-44f0-813c-a9066ac926fa','263a2887-35f1-4299-a777-21a594a634b6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Nevada kayın masa ','2025-07-15 21:00:00.000',3,NULL,'2025-07-16 08:00:56.477'),
('74ea88bb-c6c2-4f73-9c5c-f7a7d3f6bb0d','676d9d67-fd03-4351-b823-77157f0e87aa','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN','2025-09-09 15:00:00.000',1,NULL,NULL),
('74eb1177-dbbc-41ab-99b4-94c187603621','ef714645-7f38-4a84-8d4c-124593386b53',NULL,'TRAVERTEN MASA','2025-01-01 21:00:00.000',3,NULL,NULL),
('7513aabb-6614-4711-96f7-2d73eded59cd','6de04c45-fcae-42a3-aebf-5b140d42d81f','b151728c-b265-4eed-b5c1-cb53409fb775','kanepe','2025-04-23 21:00:00.000',2,NULL,NULL),
('751c7424-6653-4b97-859d-a1b3462e0b38','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL,'MOBİLYA','2025-05-22 21:00:00.000',0,NULL,NULL),
('75250fde-3038-4f4e-a5ff-558818ce04ca','0d746c5c-f194-4ed9-b71a-bf56f53af841','fd87365f-791b-4129-a329-2bbc5296e508','MASA','2025-09-07 16:00:00.000',0,NULL,'2025-09-11 11:07:34.965'),
('7539ec51-cdb8-4879-b280-a64290bb512f','183e4649-4c9e-491a-ab8a-0e24c8224108','7cde08b6-b128-40a0-b020-22a0c1ce096f','BOHEM KONSOL + 6 SANDALYE + ÜNİTE ALT ','2025-09-24 17:58:08.635',0,NULL,'2025-10-01 13:30:30.419'),
('753fc069-26da-4b82-8f04-4bd029663ac2','6e760be6-8248-4caa-8c44-7fd2be1fbd2a','81ed0ba8-3918-47d7-86eb-3ffd5cafb042','KOLTUK ','2025-11-06 23:00:00.000',5,NULL,NULL),
('7544d141-ad78-4111-8cf3-83517131e050','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','8400bdbb-9bf2-4a69-975f-987f52130381','Baza başlık ','2025-09-29 22:40:01.000',3,NULL,'2025-10-08 13:58:07.137'),
('755cace1-2435-4a91-965d-03000a37c693','563299ed-822d-490a-97cc-eb08990a8bdb',NULL,'MOBİLYA','2024-11-28 21:00:00.000',0,NULL,NULL),
('757ae95f-0fed-4fbe-abbd-2a061e3c64ca','fa91f296-36f9-43f0-8480-dce4f2f7ed4b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-08-23 04:25:11.552',6,NULL,'2025-08-25 12:15:20.527'),
('758108f7-d046-46e1-87ee-e7b73410ab42','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL,'SSH','2024-04-07 21:02:23.890',0,NULL,NULL),
('75966646-88d8-46f2-843a-dd1b1be9bed1','a68b37ad-6908-462f-8e58-d0079fd2d77d',NULL,'KANEPE','2024-06-14 09:22:03.491',0,NULL,NULL),
('759af5e0-97cd-4a85-95b3-47a047225657','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL,'PETRA MASA TAKIMI','2025-03-03 21:00:00.000',7,NULL,NULL),
('759ca728-44c4-44b4-b1c1-5a008f6f743e','6b7bf40f-8730-4f82-9851-ca74df5b5a7c','1be238d9-54e3-4094-8d60-66fd5abb87b5','AFYON TRAVERTEN ','2025-09-05 06:00:00.000',1,NULL,'2025-09-09 07:41:51.868'),
('75a1a1fd-c682-41a7-ae5e-306627043bc3','35563c2e-e808-44fd-8e6b-f1d59af96d33','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-08-18 21:24:30.000',5,'2025-09-26 12:52:53.330','2025-08-25 09:07:03.963'),
('75bddb7e-56a8-4d4e-b1ac-a38d8750b478','06b7693c-2369-4ec9-8e2d-cbc58d32c3c8','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye ','2025-10-27 05:12:51.000',3,NULL,'2025-10-24 08:17:37.213'),
('75e7d3fc-2c13-46f0-a46a-88b11bcb2401','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL,'MOBİLYA','2024-08-07 14:19:23.261',0,NULL,NULL),
('75edd126-ea16-4b60-87c7-d914b44daac1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL,'SSH','2024-12-23 21:00:00.000',0,NULL,NULL),
('75f25529-9277-4e91-a652-fd6f38803841','7e8785f1-7130-4936-8f4d-d44ffa1d9b07','1be238d9-54e3-4094-8d60-66fd5abb87b5','AFYON TRAVERTEN','2025-10-03 06:00:00.000',1,NULL,'2025-10-02 08:15:12.187'),
('75f5e095-617b-4b50-9412-9277a32469d2','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL,'MOBİLYA','2025-08-25 18:00:00.000',0,NULL,NULL),
('76087092-4086-4cd5-acc6-7f775e746dc2','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-23 18:00:00.000',6,NULL,'2025-10-01 15:15:46.347'),
('760f21e5-1c75-42b2-8444-f3a44aa66d10','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL,'Mobilya','2024-08-10 15:27:55.265',0,NULL,NULL),
('7615d0a2-cfd2-4c2b-955b-2f1fa4697aca','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL,'Mobilya ','2024-10-24 09:38:14.704',0,NULL,NULL),
('76174516-6ecb-4a7f-adb0-854020b4e986','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL,'DEKOR','2025-04-24 21:00:00.000',0,NULL,NULL),
('761bd71d-9016-4d96-bf1a-08ad73b6f468','2816d30a-252b-4b32-a00a-c62fbd6aa168','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm traverten orta sehpa ','2025-09-24 06:22:56.000',2,NULL,'2025-09-26 10:59:42.591'),
('764ab450-3216-4b55-bf26-f7163a6cf0bf','2a5af105-d0c8-46fd-ad7c-0aa1fac82094','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-08-28 03:00:00.000',3,NULL,'2025-09-02 09:10:13.489'),
('7657b93a-6861-440c-ac4e-1ea2919764f2','4895452e-4598-4194-8203-cf9f5506200a',NULL,'MOBİLYA ','2025-01-02 21:00:00.000',0,NULL,NULL),
('765a8b5f-e302-45d4-ade2-dc2092fa3779','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL,'TV  ÜNİTESİ','2024-08-31 13:08:18.108',0,NULL,NULL),
('766da20f-af1c-47a1-a9d1-61d9a22c827f','16d7b18b-4de1-4251-9407-87c514282aa9',NULL,'Masa +6 adet sandalye + orta sehpa','2025-03-19 21:00:00.000',9,'2025-05-30 13:56:41.808',NULL),
('7672c2eb-09af-4e1b-a31f-afac027ef11d','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL,'Koltuk','2025-05-22 21:00:00.000',0,'2025-05-26 13:35:30.493',NULL),
('767f6a12-5e00-41d1-992e-56b1d6a8b714','3caa13eb-3143-47f2-b11e-c9f3575e57b0','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-01-17 12:30:14.884',3,NULL,NULL),
('76950465-2d57-4238-80c7-51ba7b1cd7b9','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL,'Traverten masa+sehpa','2025-07-29 21:00:00.000',1,'2025-09-01 10:28:08.558','2025-08-01 09:08:32.612'),
('76a2428a-03ce-4963-840e-a672a1e50555','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL,'MOBİLYA','2025-03-07 21:00:00.000',0,NULL,NULL),
('76c6ae05-c99a-474b-bc3b-0972208c5f48','89f250d7-ea03-4dad-b40b-0dd01296a0ce','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','T sandalye','2025-08-12 13:00:00.000',0,NULL,'2025-08-20 11:07:00.623'),
('76c744b8-92cc-490a-9b47-df670d09d9d1','bb6dbf38-0841-4b1c-8e3d-c3593de38040',NULL,'KARYOLA','2025-06-16 08:31:13.187',5,NULL,NULL),
('76cdb3cc-7e22-4c7c-b33b-29892e31126e','c2076f78-1666-4ea9-9474-176fcb79c195','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-07-03 22:00:00.000',3,NULL,NULL),
('76dac387-c648-4ba3-a3ac-bf1674fb6f76','3384ef49-434c-4b51-b74f-5e9f4a178772','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA','2025-06-19 21:00:00.000',1,NULL,NULL),
('76fbefc2-a286-43f6-ad72-bfd2c3a8078d','d488fa09-b4c4-4a16-b3c7-6b5959ff762c','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-02-06 21:00:00.000',0,'2025-02-15 16:41:04.132',NULL),
('76fc0420-d453-4e15-aaa0-2fc45178a4a7','0ea8d257-afae-4860-8574-29747c60c8c6','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-04-02 21:00:00.000',4,NULL,NULL),
('76fe790b-1831-4586-9c29-cbb216e7c8ff','410bd7e1-97fe-4832-9494-5d11b92da461',NULL,'Traverten mermer kasası ','2025-07-10 21:00:00.000',1,NULL,NULL),
('772f9214-dac7-4754-9d2f-2d3b2818852f','0ea8d257-afae-4860-8574-29747c60c8c6','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-04-02 21:02:01.000',6,NULL,NULL),
('773a03db-e7d2-4d33-865e-511989e51e2e','dedf152d-bf4e-47e1-b412-9078997573d4',NULL,'90x190 cm traverten masa ','2025-09-02 06:00:00.000',3,NULL,'2025-09-11 10:48:22.091'),
('77622bd1-22d0-484e-a26f-ce2246532635','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ THERMO CONTROL 160*200 YATAK ANTRASİT','2025-10-03 12:45:47.000',1,NULL,'2025-10-03 11:30:00.509'),
('778350cd-5627-457e-9aa3-334a2ccc6781','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL,'Star köşe ','2025-04-30 21:00:00.000',6,NULL,NULL),
('778a1f21-7000-4e0b-bc4c-8e24c82eca0a','89f250d7-ea03-4dad-b40b-0dd01296a0ce','40dea42f-54e9-4d38-adfa-1fa968cd98a1','Elit koltuk takımı','2025-08-13 10:00:14.000',0,NULL,'2025-08-20 11:07:00.623'),
('778aa4d8-dcfd-43b4-bdca-be11229e204e','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL,'MİLAS MASA','2024-12-27 13:34:35.465',3,NULL,NULL),
('778ca123-6a9f-407a-b957-516b7aa6a94d','7e266893-f849-462e-9a81-e6336886fc16','6e484d9e-6141-4730-8ede-58b45593eadd','berjer 2 adet','2025-09-26 00:46:02.000',2,NULL,'2025-09-30 16:03:26.921'),
('77906293-aff1-4514-aaad-6544e11655a1','c85f0d3f-5c69-47d4-9b44-822058d763b2','1be238d9-54e3-4094-8d60-66fd5abb87b5','Traverten','2025-08-28 15:00:00.000',1,NULL,'2025-08-30 09:32:59.910'),
('779a6028-a955-4e90-ac62-796d1a85282a','ebbd439c-6c40-425f-adfe-65a9d4bbd563','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-28 03:24:15.558',0,NULL,'2025-09-03 14:35:43.206'),
('77ba132e-7c8f-4ec6-9299-238cc9b3b7e4','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL,'KİNG PLATİN BAZA SETİ 120X200 2 ADET','2025-06-19 21:00:00.000',0,NULL,NULL),
('77c075a1-c114-427c-b6fb-f1d092d89d6c','f4fdc95f-d066-47f9-858c-34b39a3d3ebd','4fbb639d-63c8-459f-9820-d8a261260d94','6 ADET SANDALYE','2025-09-29 08:59:02.000',0,NULL,'2025-10-11 09:16:27.614'),
('77cd884d-f138-4552-b446-4f7389e3ccfa','7faf0313-0350-4d8f-ae44-2086dabb4ea7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm traverten orta sehpa ','2025-10-17 07:37:02.000',2,NULL,'2025-10-17 11:31:53.402'),
('77d5f4ad-8065-46dc-b85b-91e145b84c8a','e5ffe400-c79b-4f45-8a39-1085e52959fd','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 siyah açılır masa ','2025-10-24 12:00:00.000',2,NULL,'2025-10-24 08:10:43.778'),
('77d90b18-2c5b-442b-9a5f-5746bacc8e4b','7aa9750a-32ef-4501-a5aa-1bf0b29fba80',NULL,'fzm yatak odası ','2025-02-12 21:00:00.000',0,NULL,NULL),
('77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL,'KOLİLER','2025-09-11 18:00:00.000',0,NULL,NULL),
('77ee5c9a-b4a2-4ff2-bf2f-c8dde20a4100','5f1e05ef-a967-45d1-a984-4cd1f018c261','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90*190 TRAVERTEN AÇILIR MASA','2025-03-23 21:00:00.000',3,NULL,NULL),
('77ef7941-3e4d-45e3-af8a-a47e8d0ff2bb','5c0601b9-5e96-482f-b47c-52f985b49aa6','8c6ecba8-6768-4127-80ba-c9c71d442689','SSH KOMODİN 2 AD','2025-10-14 18:00:00.000',0,NULL,'2025-10-15 11:20:30.015'),
('77ff902d-1907-4a5d-ae12-53e25cd118f1','ac733c82-d892-4d52-ad57-605808af235f','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KOLTUK AYAK PATİĞİ','2025-07-14 06:28:52.607',1,NULL,'2025-07-18 16:08:18.183'),
('78011c77-f958-4fc6-886f-f80a74dac952','46b19e09-91c3-4a3b-99ec-5d708063cba6','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','KÖŞE TAKIMI','2025-06-30 10:00:00.000',3,NULL,NULL),
('78093200-7588-4a38-bf16-e75f613ae247','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0','e7220662-73b8-46e4-9f5d-7e977cc23448','masa','2025-09-10 06:00:00.000',3,NULL,'2025-09-09 15:40:07.438'),
('782bb599-5381-4096-a028-8cd2c47f73f1','29897483-14ac-4404-8bba-38c2a76aa9a9',NULL,'Berjer','2025-10-23 11:17:33.000',1,NULL,NULL),
('7852e0fb-6de3-4daa-9882-f74fa24083a7','44afd7bc-3d03-422d-ab40-1ff34cc96cc0','26360aba-80e2-46ad-b172-f1052f9526f6','Karyola','2025-05-11 21:00:00.000',0,'2025-06-20 13:56:21.015',NULL),
('785eec5f-1aab-4a94-9af8-f7df02f4ebc1','b5545ecb-25d9-4bc6-95bb-2740c6431904',NULL,'HALI','2025-08-06 08:20:52.460',3,NULL,NULL),
('788053ef-44ef-4778-affb-5333e18bdfdb','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL,'KUTU ','2025-04-03 21:00:00.000',0,NULL,NULL),
('7884afbb-70fb-4cb7-a993-b67b9605608b','ed2477a7-3410-49d6-97b3-d4a65e4b5d22','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','FRANCO T SANDALYE ','2025-04-24 09:30:58.000',0,NULL,NULL),
('788a8b56-add3-49ff-b48f-4809da260c0e','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL,'MASA','2024-10-02 09:17:51.140',0,NULL,NULL),
('7892a090-b651-4c3d-9db5-17afabd37421','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL,'DELUXE YATAK 100X200 2 ADET ','2025-04-29 21:44:42.000',0,NULL,NULL),
('78b4e116-f5c7-4057-880a-bac3a92d60d6','ad0e6c08-bd08-47a2-9854-d784d07275f0','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-08-11 13:00:00.000',0,NULL,'2025-08-12 14:35:26.176'),
('78b92a41-f41a-4dfa-97b0-48b35908cf44','b51de0f1-3985-4283-b2eb-1cbb4a0743c9','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-09-11 15:00:00.000',6,'2025-09-14 20:38:44.724','2025-09-12 08:03:24.996'),
('78bc1f73-54ce-4835-834d-a9fdc8205009','db01aefa-720b-410d-8344-0672007b060d','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Sehpa','2025-08-19 05:45:13.511',0,'2025-09-18 15:08:11.388','2025-08-21 13:58:37.626'),
('78c00f0e-6309-4c72-aab8-b64114f8cb00','c8f99487-f21d-467c-9282-047182f5edbf',NULL,'SSH','2024-06-14 09:18:45.093',0,NULL,NULL),
('78c5f4f6-2307-4b72-8615-22388f9576b2','da9eb398-85ed-41cb-b123-6ca8278d250d','0f300a3b-b3d6-4b60-924b-aa70cd54141e','dolap ve ssh kutu','2025-02-25 21:00:00.000',4,NULL,NULL),
('78e96b5d-e785-4827-a870-bb88c819f8d6','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL,'BERJER+ SEHPALAR','2025-02-03 21:00:00.000',3,NULL,NULL),
('7900b99f-1d0a-41ad-b583-3931be125cdf','88cc6a24-35a3-4b23-8747-59b47b080f1a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x170 cm traverten masa ','2025-07-23 21:00:00.000',3,NULL,'2025-07-25 12:42:38.195'),
('7908530c-18a1-4a83-b5c2-fdea91117bbe','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL,'KOLTUK TAKIMI','2024-03-30 09:34:12.748',0,NULL,NULL),
('79349225-7b0a-4c66-808e-fac9569dba7b','9236b858-0a44-4581-b11d-b5a57a9522a0','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-18 07:19:17.414',1,NULL,'2025-09-18 15:01:57.584'),
('793801d4-f6c9-4e1a-9207-88bfb41fcbbc','eb029e46-e69e-4bea-b717-f1c575aa7ca7','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-17 04:03:05.999',3,NULL,'2025-10-03 13:01:22.097'),
('793ada31-608e-45e9-bf4e-447c23b093df','4f02bcd7-906b-4707-88c7-1785ae978dff',NULL,'MOBİLYA','2024-08-31 12:43:54.523',0,NULL,NULL),
('793ba0dc-e99b-4fa6-b21d-bf758c07d6bf','5d656399-d4c2-49fa-a9e7-be2b15a2116d','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-09-23 00:00:00.000',0,NULL,'2025-09-24 09:01:11.852'),
('79538137-7e32-42e5-ac0c-65c896b166aa','ab5c9dd3-1a09-47c4-8748-32885c12b8b2','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-03-27 07:53:58.239',2,NULL,NULL),
('795d2eda-013a-4fd7-b48b-148a85caef26','f068235e-a859-42b0-b6d1-68d5d67061a7','8829a318-3e88-4aa8-8e64-06a4b8a1aefb','köşe takımı','2025-07-17 11:00:00.000',0,NULL,'2025-07-22 11:26:55.463'),
('795d2f7a-ffa2-4492-98f6-4e205fe5de73','0f83b9ec-6ba6-4b67-812d-586619784634','4d3f433c-6ebf-4443-a8bd-319b61cbe400','masa - 6 adet sandalye','2025-09-05 03:45:17.000',0,NULL,'2025-09-08 09:06:33.604'),
('796f74f1-a123-4566-9122-ee642d251917','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b','e7220662-73b8-46e4-9f5d-7e977cc23448','masa ve orta sehpa','2025-08-28 22:00:00.000',5,'2025-09-01 10:57:15.826','2025-08-29 09:56:56.102'),
('796fef16-71d1-4946-b8ba-54f687adf598','e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127',NULL,'PAKET TAKIM','2024-03-18 08:52:21.299',0,NULL,NULL),
('79708cfe-984e-4420-b347-c10b9d4dc939','9a8fe83d-8c43-4179-8ed4-895265a42b51','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-10-27 17:18:03.000',2,NULL,'2025-10-14 08:37:59.654'),
('798dd250-3594-4da1-8def-ce51d07ef0ef','f7979b44-eac7-41b0-a981-1f2165181d24','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KÖŞE KOLTUK ','2025-07-15 21:00:00.000',0,NULL,'2025-07-17 10:01:15.057'),
('799578e0-81b2-4f3d-bdb4-0d1be54d3eb2','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL,'KOLİ','2025-09-30 18:00:00.000',1,NULL,NULL),
('79959af5-d58d-46f0-8817-b67d0c98e5f7','264eba0c-b5ea-449d-bd51-0689287b0593','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-05-05 21:00:00.000',3,'2025-06-20 13:58:41.539',NULL),
('799bc5d0-1455-4c7a-861e-3a5784065f51','ed90a35b-8493-4c2b-9437-f0f3ba27c20f','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','SANDALYE','2025-03-17 11:52:35.980',8,NULL,NULL),
('79a46d5c-c273-440d-b80c-397dceb69bd7','93386b76-7f5f-4ccd-845c-f624d343a1ea','09d7f208-5120-4a6a-a456-7613eabd6424','180x 200 ','2025-10-13 04:56:26.898',2,NULL,'2025-10-15 09:47:25.119'),
('79a59d43-7fea-4b06-9f5e-bdc9d6a89664','42a4ed0b-8222-43be-8854-f98e1ac39e41',NULL,'KÖŞE','2025-05-11 21:00:00.000',4,NULL,NULL),
('79ad6fda-b632-4017-881b-cf66bff0c375','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL,'TRAVERTEN  YEMEK MASASI 2 ORTA SEHPA 1 YEMEK MASA ÜSTÜ','2025-08-18 12:14:51.000',0,NULL,'2025-08-22 10:22:00.852'),
('79b83287-c40b-4c07-9e9a-53d30ce5cd5d','2559df4c-1140-401e-a44d-4bfdd5d05129',NULL,'Mobilya','2024-10-18 19:03:17.310',0,NULL,NULL),
('79b9962e-953b-4dd9-9a79-2e7c11645a2c','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','1148d4a9-1ed8-4d07-89ce-572176e72b5e','Aura Berjer','2025-05-09 10:00:00.000',1,NULL,NULL),
('79dda02d-fdbe-47ab-8814-5f865669b56f','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL,'mobilya','2025-07-07 21:00:00.000',0,NULL,NULL),
('79f2695b-370d-43a2-931b-972ba627ccf5','a36a070b-1cb8-45e1-8e89-ef4588485aec','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe takımı','2025-08-11 05:00:00.000',0,NULL,'2025-08-14 14:48:42.953'),
('79f2719b-57a0-476a-b983-2ccf3ddcadab','00597150-64a3-4ed2-95da-544d8eb849d1','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Masa Ayakları','2025-01-30 13:00:00.000',1,NULL,NULL),
('7a081169-1e01-44a4-9ec7-439661c10583','95a80c6f-f63c-41d5-917a-d2547b834cdd','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-07-16 13:05:59.000',3,NULL,'2025-07-16 12:52:53.211'),
('7a0fa0c0-e760-4227-836b-6ff41aaf28bd','6ab64262-e10e-4c69-a128-c1c8101ef7ed','b4b527e9-c851-458f-9238-9049a66f2c90','dolap masa sandalye','2025-07-09 08:05:36.000',999,NULL,'2025-07-17 09:43:54.470'),
('7a0fb46c-8489-4038-968f-f3816bfad167','78463605-c329-4929-b567-24a3f88f4b7d','7582128f-7119-48f4-b125-e6b8bfb84dc3','sandalye','2025-05-27 21:39:31.000',3,NULL,NULL),
('7a1383f5-b919-4384-8104-0058a54fc111','b4816c73-13ed-40e0-87cb-f3536c1d3140','5f260a62-f21e-45a8-9b8b-8bd8c1084273','orta sehpa','2025-10-05 07:50:27.871',0,NULL,'2025-10-08 08:19:58.908'),
('7a1d10c6-318c-4046-8b6a-010e311d53c3','8fe451fc-7a84-4cca-9cde-dff384de2c9a','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE ORTA SEHPA TAKIMI','2025-03-13 12:00:00.000',5,NULL,NULL),
('7a221082-1858-44f3-b094-3a693cf4ef01','f0caced4-3715-4549-a387-1a73db0a7166',NULL,'90*190 Milas beyaz masa','2024-12-09 21:00:00.000',3,NULL,NULL),
('7a300aa5-16cd-464e-a767-87e54338e3b5','580415fe-7112-4432-89b1-efebbd154841','0bddb84a-c9d8-4384-ab78-2f33b838a1b0','sandalye','2025-10-06 03:00:15.000',6,NULL,'2025-10-06 09:49:11.309'),
('7a3874a9-db61-4cfe-8c48-f341a8247a1c','8cf92937-e0c9-49c9-87aa-33b3c2fd4773','48795997-487d-4854-b209-9dd433e1e30e','KÖŞE KOLTUK VE BERJER','2025-04-16 21:00:00.000',4,NULL,NULL),
('7a3edb87-0b6e-4717-b4d7-94bb1c49be21','49b3f497-a340-40f9-9aeb-fcbaeae86b09','b151728c-b265-4eed-b5c1-cb53409fb775','koltuk','2025-05-02 09:00:00.000',3,NULL,NULL),
('7a64edfc-282a-4a58-9236-e54ae5c290b3','50aeff12-6812-447f-b3a6-0c51ad9fc878','906d7ec3-10b0-4073-8cf1-9957843f6132','tv ünütesi ','2025-02-07 10:05:25.989',0,NULL,NULL),
('7a6b53c1-2233-441b-b593-a4ba22ec3645','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-24 14:08:06.682',6,NULL,NULL),
('7a7bde44-ed92-480e-893f-02d0f840ef92','eee6549c-7110-48d4-b248-afbe45d679e0','1f3193af-e6ee-497d-a3d8-b192e0186308','Efes Köşe Koltuk','2025-08-19 14:00:00.000',0,NULL,'2025-08-21 12:33:21.371'),
('7a97860c-cf43-4a19-988d-d91cf377fd10','eb029e46-e69e-4bea-b717-f1c575aa7ca7','ab4fcc5b-2570-4c98-a874-bd3062dfeec3','KOLTUK TAKIMI 331','2025-09-25 04:01:33.000',3,NULL,'2025-10-03 13:01:22.097'),
('7a9963cd-0d66-4092-bf41-9c56574a2415','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL,'koltuk','2025-08-14 22:58:37.000',0,NULL,'2025-08-20 12:20:10.851'),
('7a998775-22a3-49a7-9475-b06b4e3056af','635836b6-8a00-4f08-aa34-ecc10b10490c','da95f6ab-9177-49c8-b729-1fcee7ea77cb','sandalye ve masa ayağı','2025-05-12 21:00:00.000',15,NULL,NULL),
('7aa660c9-3193-4cae-ac2e-82a288784e22','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL,'SSH','2024-05-10 06:49:07.919',0,NULL,NULL),
('7abac5ea-430a-4a29-8caf-3523ed6ac8af','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL,'MASA SANDALYE','2025-03-20 21:00:00.000',0,NULL,NULL),
('7abfcf71-6dec-4a36-866d-9fa7ec174baf','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL,'PARİS KÖŞE KOLTUK','2025-03-03 21:00:00.000',3,NULL,NULL),
('7ac04c84-54ce-46a6-9898-1b08419392f9','e9aed3da-2754-4ac0-8f89-1a36768fe9bc','d6dbe68f-439e-4f7d-a25b-a12833c003e0','KÖŞE KOLTUK','2025-09-02 06:00:00.000',5,NULL,'2025-09-04 14:44:57.248'),
('7acada5b-2716-45f6-ac98-44841652379e','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 siyah açılır masa','2025-04-17 21:00:00.000',3,NULL,NULL),
('7acb069a-c577-41e2-9204-1e273cb99920','4e495647-8999-4246-a35c-fd58b0c1ac75','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA','2025-04-16 21:00:00.000',1,NULL,NULL),
('7acd6dce-eb48-4bdb-a5db-f420848c1414','c1240440-7bab-4c36-b81b-ce30804d132b','906d7ec3-10b0-4073-8cf1-9957843f6132','TV ünütesi ','2025-01-17 19:35:05.026',1,NULL,NULL),
('7ae41d22-a75f-4cb4-b2be-be66cfd1c95e','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL,'MOBİLYA','2024-09-05 15:43:46.933',0,NULL,NULL),
('7aeed7d9-4ae5-4fd9-aa5c-7529961da994','36f25521-b01c-4589-be32-1479a5a1b79e',NULL,'Köşe takımı','2024-04-07 21:15:04.720',0,NULL,NULL),
('7af1d748-20f9-4891-ac99-90f3edcacec9','e33482b3-d69f-4355-a934-88d95502f498',NULL,'DUVA LUCCA ORTA AYAK 2 ADET','2025-03-18 21:48:44.000',2,NULL,NULL),
('7af3ae82-b2fc-46d3-aefd-cf6046c49f14','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'BAZA','2025-06-26 21:40:47.000',0,NULL,NULL),
('7afaa863-1632-4dab-9a18-d36f3b675d4c','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL,' GOLD KOLTUK  TAKIMI','2025-02-09 21:00:00.000',3,NULL,NULL),
('7afc8da4-5eda-4e4e-b6ca-e7b2aa75e00a','c7380dcb-b5b3-458a-9219-53fdb3531629','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + puf','2025-03-20 21:00:00.000',4,'2025-03-24 08:34:11.761',NULL),
('7b007afc-001f-46b1-8277-2ca432b6f3ae','43632aad-d9e3-4042-a98c-3de650df2487','e06c9f1f-1373-4067-93bb-a153d76e1c6f','Sandalye','2025-09-30 02:28:46.000',1,NULL,'2025-08-18 08:46:50.965'),
('7b0098d1-472c-4ce3-a8fc-9d64232e1369','fcdb759d-3864-480a-a425-d30f514cc0dd','44c404b3-a618-4af5-bdfb-ad381f049053','köşe takımı','2025-10-23 21:00:00.000',0,NULL,NULL),
('7b0efe36-9f05-41fc-93fa-6011fdba399c','2d717ffb-678b-4e82-9f61-5357693131d8',NULL,'Traverten masa','2025-04-10 08:59:23.121',1,NULL,NULL),
('7b2d4551-a99f-4fb6-8215-e7af3afe860e','7880358c-ba4e-4929-b5d9-4aed20c36174','388ee551-1f3e-4099-9b89-135966096ae1','Karyola, berjer','2025-08-12 12:00:00.000',9,NULL,'2025-08-19 07:24:54.628'),
('7b379856-328b-48a5-b13a-c96f1024ab32','15245f29-ed5d-405d-b5b2-37fae1f3e5f6','4d3f433c-6ebf-4443-a8bd-319b61cbe400','BAZA İÇ MALZEMELERİ MAKAS KUTUSU VE DOLAP DİKMELERİ','2025-04-15 21:00:00.000',4,NULL,NULL),
('7b386de8-638b-4ea3-aca5-44a896fdf880','269b4bca-6e23-4b7c-a9d2-e7abf0e79373','e7220662-73b8-46e4-9f5d-7e977cc23448','masa orta sehpa','2025-10-31 19:18:32.000',5,NULL,'2025-10-10 07:26:02.674'),
('7b46bf4a-5ce1-4ec9-a494-a8f2948495dc','a797dd9c-2824-4d7d-8bf3-c9f727ff603d','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','Yemek odası ','2024-11-03 21:00:00.000',5,NULL,NULL),
('7b4b0f31-e651-4a25-819d-b4e21db79d87','61867c22-c86f-44a9-a203-2b810c74f596',NULL,'KOLTUK ','2025-03-05 21:00:00.000',0,NULL,NULL),
('7b4ed6a5-61a8-4716-ac3d-984c92ff9cbb','b89cd91f-460c-462f-a284-8d6b2a01dd71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten tv ünite','2025-02-26 10:49:36.000',1,NULL,NULL),
('7b5051e7-035b-47a2-8be8-18b0ed228a6b','bb67462b-3d86-408b-993d-ee8fb3ab52e1','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-22 05:00:00.000',4,NULL,'2025-10-07 11:30:26.627'),
('7b68e44d-2397-492e-b71f-fe3fb99d892f','2d5afee9-087f-41e1-a999-dc4fe606e35c','4268acef-d121-4ea9-8c0b-53f8bd63c8b7','KOLTUK','2025-08-14 11:00:00.000',6,NULL,'2025-08-18 07:40:36.456'),
('7b6daf73-173c-42db-8fe4-eaa37f225574','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('7b72cf40-46aa-4f24-9023-5b711de6e336','1965b9c6-c511-459f-8f4e-dddb4f23f943','f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','ayna','2025-09-10 16:47:33.000',0,NULL,'2025-09-17 13:26:28.634'),
('7b80b57a-26bd-43ca-99b4-fb482a5dcc00','23c7b08f-63d2-4f18-9f68-f434d59760ab','7abbdd6b-3367-4f39-9f36-a6d3cdf65a0e','Koltuk','2025-02-04 21:00:00.000',6,'2025-02-05 22:19:55.025',NULL),
('7b886c3c-4fc5-4630-b9ae-d8fb7f7ab243','6e979cb9-141a-43d7-a38c-362246b8f5a8','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 sandalye','2025-08-24 20:54:12.000',3,NULL,'2025-09-19 07:22:21.255'),
('7b8fb2b2-4189-4069-ae75-d1c721d42b09','0f7b6d43-5763-4b5b-93f8-46153e09c05f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Traverten masa ','2025-09-17 12:00:00.000',3,NULL,'2025-09-26 11:16:14.844'),
('7ba47169-83ca-49a6-98fc-6ef1a1990eac','d46dc46d-e5f4-4787-aee1-803a6155fef5',NULL,'PAKET MOBİLYA','2024-03-23 07:01:46.908',0,NULL,NULL),
('7bb97173-116d-4058-8bc9-64fda10a5901','f696ebeb-b709-4b6c-aaab-43e32e65d88e','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe koltuk ve sehpa','2025-10-20 18:00:00.000',0,NULL,'2025-10-23 08:46:35.974'),
('7bbdae5f-e68a-4fe0-afa2-f1f09497e5cc','692c748c-7c37-415c-b3d9-996281a0eba4',NULL,'KOLTUK TAKIMI ','2025-02-12 21:00:00.000',0,NULL,NULL),
('7bd64728-38dd-4554-a901-c9cd5700a0c6','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-03-09 21:00:00.000',5,NULL,NULL),
('7bd9d8a5-0270-49e1-abbe-37ba6f8f9ac5','44de58ec-edda-43a3-a838-2ef9d452d2ff','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','yastık','2025-09-16 07:24:12.388',1,NULL,'2025-09-18 08:10:02.151'),
('7beecb9e-d558-4da6-bcdb-d35549b9c1ec','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('7c09f776-ffb6-47c8-8828-61389547804e','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL,'Yatak baza ','2024-11-06 21:00:00.000',0,NULL,NULL),
('7c1529b0-a1d9-42de-89db-04929ab6f8bb','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL,'Koltuk','2025-02-12 21:00:00.000',0,NULL,NULL),
('7c7686b8-8f65-4271-acac-1585b7485563','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL,'Ofis','2025-07-15 21:00:00.000',0,NULL,NULL),
('7c806225-7e85-418f-bc1f-06b62bb4fc85','36207ae6-947b-4a63-b98b-478d30a194b6',NULL,'SSH','2025-02-22 21:00:00.000',0,NULL,NULL),
('7c85f504-aeb0-4278-bdea-15616c0f4fb0','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL,'çuvallar','2025-03-20 21:00:00.000',0,NULL,NULL),
('7c879c2d-a94f-4062-b97b-4e5ff2e41519','cfdfe578-6182-4ffb-95fe-f9a3fee0728c','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-13 12:00:00.000',0,NULL,NULL),
('7ca3b25f-8c08-4c50-b102-4ea800c2c2fb','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-04-23 21:00:00.000',3,NULL,NULL),
('7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL,'KÖŞE TAKIMI','2025-09-07 15:00:00.000',0,'2025-09-10 12:45:54.353','2025-09-09 08:20:30.183'),
('7cb14de8-95ba-4b58-a436-4d9a3ee3c7d6','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-28 14:00:20.000',3,NULL,'2025-10-27 13:39:04.728'),
('7cbb49e7-8507-4950-b154-bbcd75b0a4cc','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL,'YEMEK MASASI','2025-03-05 21:00:00.000',3,NULL,NULL),
('7cc12a18-6858-4c55-a9a0-fa838ec5c974','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-03-07 12:36:16.176',0,NULL,NULL),
('7cd28b4a-73b1-4827-aaee-b29989b9d9b7','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL,'SSH','2024-06-08 07:46:47.823',0,NULL,NULL),
('7cf524b9-0e83-4963-bfc3-863110305d5f','932af7f2-df9e-4032-b8ab-056455a1eb6f','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık','2025-08-01 09:00:00.000',7,NULL,'2025-08-22 11:29:07.269'),
('7d07052e-d89f-4ebc-be55-2d8ac162c8cd','f99fe573-182b-4663-9ef2-0b30f4db8009','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-07-31 08:00:00.000',5,NULL,'2025-08-01 11:59:59.855'),
('7d12dfd4-551e-48fe-9a53-45d3a05e659d','d4eec699-15e8-4023-b611-78ceb15be51f',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('7d18820e-1b37-4637-86c6-9360841574c3','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL,'RAMS YATAK ODASI','2025-03-18 21:53:10.000',0,NULL,NULL),
('7d19eaba-df15-41dc-b313-422bc8ab516b','fcf75500-baa7-41fe-a63b-d2654bfa45b4','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','KÖŞE','2025-09-29 18:00:00.000',0,NULL,'2025-10-06 09:31:29.982'),
('7d1ad103-2c0c-43b7-84f5-4f8ac2e81660','499cda13-5036-44b3-a782-3aa5247b7b44',NULL,'Koltuk','2025-06-22 21:00:00.000',0,NULL,NULL),
('7d35f4ea-7482-4542-8fde-94664de7709a','9e64600d-1c01-44ab-9728-6619d083385a','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA SEHPA','2025-08-13 00:11:09.000',5,NULL,'2025-08-19 12:09:01.750'),
('7d462544-6e96-45df-8230-5dcbcd269f64','92ef11d7-249d-45f0-a76f-8b59e5a6399e','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','Sandalye','2025-03-04 09:55:35.727',4,NULL,NULL),
('7d4c646b-2f7c-4c82-80d6-942de18c5cc2','d3e4434c-1317-4092-aed5-8cc884ab1ae7','26216926-c73f-46d4-9ba1-0afb20844194','HEDİYE','2025-10-05 22:53:37.000',1,NULL,'2025-10-10 14:11:02.803'),
('7d58ca9e-82b3-4213-9fd2-9c4798ae4dc3','32d8dcee-9361-46e5-a98f-6e606f4ea7ca','c01a6bb5-a79f-4c6f-81ff-aea8a08bc0e1','SERAMİK ORTA SEHPA','2025-05-14 08:10:43.358',3,NULL,NULL),
('7d5afc4d-54d4-4d61-8ae8-ece35555da95','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL,'YATAK BAZA','2024-11-02 07:46:35.593',0,NULL,NULL),
('7d6a0094-9fa1-44da-b2cd-e402b63e9cf4','a2313433-a437-47d9-a63c-55c129ea96e2','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye özel renk','2025-03-25 21:00:00.000',6,NULL,NULL),
('7d75236b-0ffb-4e2a-9b72-d8f6af6680ca','16d48fda-c874-40e8-a9da-275d6658ea3f',NULL,'KÖŞE KOLTUK-BERJER','2024-03-12 09:32:05.440',0,NULL,NULL),
('7d9066b1-4307-4c24-8a92-38ec5adfbbcf','b4f193d3-ef4e-4341-9bd2-136dfaae75a5','adb86e9c-bc47-4a68-b7fb-8691e7d9ae53','ROLPED YATAK VE 2 TEKLİ BAZA','2025-01-20 10:00:51.000',7,NULL,NULL),
('7da317c0-1539-455b-9ba8-dd4cc07f965d','cb3c3900-b517-4430-a11a-2f2b7755d652','0f300a3b-b3d6-4b60-924b-aa70cd54141e','karyolasız yatak odası ve konsol','2025-04-21 21:00:00.000',999,NULL,NULL),
('7da72613-399d-4c67-b849-541a76131251','df9c125a-f311-496d-96b6-2c41f3e5ed96',NULL,'ICON PLUS ORTA SEHPA ','2025-03-13 11:03:41.083',0,NULL,NULL),
('7da7a3e7-9e53-4ff0-bff4-1820a535e13a','7faf0313-0350-4d8f-ae44-2086dabb4ea7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye galaxy krem ','2025-10-27 07:37:16.000',6,NULL,'2025-10-17 11:31:53.402'),
('7da90be8-bc5a-4edd-b9b1-cecfb9a48c3e','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN HALİKARNAS KOMODİN','2025-08-28 02:09:43.000',1,NULL,'2025-09-08 12:00:07.860'),
('7dad2fb3-b825-4f27-a68d-4543cd478c32','d586bc5d-72ab-46a5-8f07-a0f14d351b51','940c6390-4082-4fe5-aeaa-06d180147a7b','masa ','2025-07-08 22:00:00.000',2,NULL,NULL),
('7db89a30-9c15-4696-a11c-dcd45c5887b2','927e12ff-5564-4a31-a8d5-f4d5eaffc582','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','BAZALI KARYOLA','2025-07-19 21:00:00.000',999,NULL,'2025-09-15 10:19:46.239'),
('7db9549e-4f85-4b89-8419-21c1c77f04f2','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL,'Traverten kasa','2025-07-23 21:00:00.000',1,NULL,'2025-07-24 08:02:53.105'),
('7dbfac68-a166-481d-9984-d7ec9291dc46','340801e4-6036-4b2f-9cae-d51385895b71','059d89a4-8ba4-4e59-8631-0e54bfe60c77','MASA TAKIMI','2025-10-21 07:53:11.000',13,NULL,'2025-10-24 08:21:11.538'),
('7dcc2170-0fdb-4643-987a-624cc3fb4320','0ca39cb3-cb01-4190-946c-6ebea8eb1b68','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x160 msm 01 baskılı masa','2025-10-23 15:00:00.000',3,NULL,'2025-10-24 08:28:02.331'),
('7de47ad7-283e-4220-87dd-ec74ad29a390','63812a5c-02ef-4661-96d7-348a4af6ef8a','2648ebea-6027-48a1-b672-7e6e6b86cd2e','Baza başlık','2025-07-21 15:27:48.000',0,NULL,'2025-07-21 09:22:13.784'),
('7de585d5-e2cd-4677-8347-f0711cbf9d10','8886c04f-f904-4e77-a2f1-25b72bcd1e91','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-09-11 17:19:43.000',1,NULL,'2025-09-30 11:34:53.709'),
('7defd633-f7ab-424d-8029-028d1b045752','e301bfde-0e98-47a1-9771-598a50c6dac0',NULL,'Mobilya ve koltuk','2024-04-05 07:42:20.207',0,NULL,NULL),
('7dfebef4-94d9-4648-8095-fca79abe0bd8','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL,'SSH YATAK 160X200 ','2025-05-06 21:00:00.000',0,NULL,NULL),
('7e1652b5-c6dc-455b-97ae-15ff0b6a532d','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL,'ORTA SEHPA','2025-06-24 21:10:47.000',0,NULL,NULL),
('7e1a6d7e-d199-4b01-bdae-64fb59fdfbfb','65c0e929-3375-4985-8c4f-62681ad7745f',NULL,'Berjer','2024-04-07 21:18:48.122',0,NULL,NULL),
('7e33f411-a309-4843-b994-1bcb7d71f292','044a52d2-c11d-4386-8992-ff1211fd99c9','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-10-08 01:00:00.000',6,NULL,'2025-10-08 09:16:12.085'),
('7e3957db-7e8c-442f-a041-3490cef36986','2e714490-58ed-4864-b2bf-67a5cb20f5a4',NULL,'KOLTUK','2024-11-02 07:50:21.579',0,NULL,NULL),
('7e556896-a771-421b-94de-44bfbf0436f8','f75148df-6581-4c9c-b732-15039b1ebd7d','1d3cdff2-164e-4068-84fb-d5fc8f812e04','KÖŞE TAKIMI','2025-07-20 21:00:00.000',5,'2025-07-21 13:16:46.231','2025-07-21 10:08:46.436'),
('7e8643f3-2224-44f8-8380-7da5eea93721','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL,'MOBİLYA','2024-03-30 07:02:17.372',0,NULL,NULL),
('7e89be5b-8c27-4449-8aa1-7cad96813301','c72ffa02-90ea-47e9-8464-e38059961b11','b2f38bcb-248d-4626-9f30-2fe34792a4a6','koltuk3+3+1','2025-09-28 12:00:00.000',3,NULL,'2025-09-30 11:55:15.940'),
('7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c','ad3de3cb-31f6-433a-9d51-1c613adb9f27',NULL,'MONACO YEMEK ODASI','2025-10-23 12:00:00.000',0,NULL,'2025-10-15 11:47:44.281'),
('7e9077fd-3ffc-4968-8b44-b2d19585952a','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL,'YATAK BAZA','2024-11-02 08:09:17.723',0,NULL,NULL),
('7eb47dd9-a4d8-4d11-9f8d-b4c9ecdaa2be','771279e7-2a96-4a29-a936-3062722353d4',NULL,'PARİS KÖŞE TAKIMI','2025-03-12 21:00:00.000',3,NULL,NULL),
('7ec18512-8b20-4268-a918-a8660a2e1f98','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL,'MASA','2025-07-21 07:06:26.992',0,NULL,'2025-08-06 13:16:59.747'),
('7ed8f2b5-2d3c-4083-a93d-cddc92625cf3','582bd0ee-3bef-4bc8-9243-917189827f95',NULL,'Mobilya ','2024-09-24 11:02:38.893',0,NULL,NULL),
('7efa38de-b01f-4bdf-ac3a-5f0a214bf87f','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL,'UNUTULAN PİER PUF ','2025-09-25 05:40:43.418',0,NULL,'2025-10-03 15:15:16.944'),
('7f086af4-7f94-4b2a-8e93-97605ab16c61','ee55d774-0af3-44a4-a04d-c52632a73128',NULL,'Mobilya ','2024-10-21 07:55:16.655',0,NULL,NULL),
('7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN HALİKARNAS 2 KAPILI ASKILIKLI DOLAP','2025-08-28 02:08:57.000',1,NULL,'2025-09-08 12:00:07.860'),
('7f11042b-3945-4eb3-b37e-a822894de6f5','2e959f4e-0d79-4ec0-865b-ff5f684e63bf','67c34dc2-4657-4323-8fc0-4ff05ed31067','maldiv dolapsız yatak odası','2025-10-23 15:00:00.000',0,NULL,'2025-10-22 08:41:57.226'),
('7f189b87-2a91-465f-92fc-e3e25024c53d','c3afcfb5-df2f-44a8-901b-e521fd45aca2','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-07-16 21:00:00.000',3,'2025-08-05 13:01:03.499','2025-07-17 14:25:55.534'),
('7f24de6c-6cf3-451a-af7e-90bc8c30aebe','47b351a7-6171-418d-b138-7c197c50e909','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-12 12:00:00.000',0,NULL,'2025-08-13 09:23:03.010'),
('7f29d579-cecc-4d5f-a303-6c20027acdd0','67dfcee1-7fd7-4c4a-bd62-3036e85f4035','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-07-18 09:00:00.000',2,NULL,'2025-07-18 07:28:14.654'),
('7f36cce6-f7f1-4611-81da-27e098ff6a33','0f40a488-b453-400e-a6e2-874e5a76c787','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','sandalye','2025-03-20 21:26:41.000',3,NULL,NULL),
('7f4b7a21-dc50-4266-900e-ea705e2d3a34','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL,'ÇELİK BAZA','2025-09-04 22:12:22.000',0,NULL,'2025-09-26 15:10:00.573'),
('7f51fd09-8523-44f2-b700-a6818ee38b39','0fef7900-6144-44c7-9378-415e663633c9',NULL,'Orta sehpa ','2025-01-08 12:22:29.000',2,NULL,NULL),
('7f5d49b9-798b-4f31-9e95-4d6bd70554f1','f66bab09-5ba8-4aa0-8e7b-0bd18b10aea9',NULL,'Tezgah palet','2024-08-31 11:58:28.409',0,NULL,NULL),
('7f6a1eed-b929-4891-9958-a6e2765efe22','cca3c1d2-572a-449d-9408-3e4d072a2fa5','da95f6ab-9177-49c8-b729-1fcee7ea77cb','sandalye','2025-02-20 21:48:25.000',3,NULL,NULL),
('7f71f160-fffe-4495-9d1e-9da2695bfe55','571ee7d4-2abf-4a45-83e7-822277468f5d','2648ebea-6027-48a1-b672-7e6e6b86cd2e','160lik yatak','2025-10-24 06:55:20.000',1,NULL,NULL),
('7f7994e8-0c66-45a1-8846-76386ada2b59','c301b3d6-0b7c-4330-bda9-99b0f091d356','38a7333e-8a0f-4e45-957f-e11d538d2097','MASA ','2025-01-08 21:00:00.000',3,NULL,NULL),
('7f7e8df0-7a2f-47d0-8add-150b2200e309','280e9889-e4b3-48a6-9ac5-246bac1566c1','bc1b9fd7-95d7-4d5b-a84e-684140acc414','RAMS ORTA SEHPA VE YAN SEHPALARI','2025-09-01 03:45:00.000',3,NULL,'2025-09-10 11:21:31.666'),
('7f823e87-d09d-4cb4-ad0a-4393c51662c9','24e58e68-4ee3-40c0-8505-b017493468c7','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-24 15:00:00.000',4,NULL,'2025-10-01 15:10:40.730'),
('7f827719-d0a9-4910-9aef-532cd3731df7','91baf8ac-c499-4118-bb77-3c280cca0a2f','0c32079b-f912-41cc-9d0e-e1bd6235d204','PİER KOLTUK TAKIMI ','2025-09-21 09:00:00.000',0,NULL,'2025-10-14 10:33:41.247'),
('7f97c3ea-5c24-4aa9-98e1-55704b8771df','67f3e803-506e-4fab-b999-051b7a0368e2',NULL,'MOBİLYA','2025-01-04 21:00:00.000',0,NULL,NULL),
('7fa60ad1-fd9a-4550-964c-dbeaa07775b2','e29cd434-988f-45c9-8c62-49efd76090dd','fb339a39-487e-425d-800f-f101bed0db87','Masa','2025-03-25 06:00:00.000',3,'2025-05-05 11:34:37.877',NULL),
('7fa9f925-05cb-43ed-8606-82ede8806312','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('7fbc0cac-4c11-4144-b578-3223cd9dd90a','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL,'TOSCANA YATAK ODASI','2025-08-03 21:00:00.000',0,NULL,'2025-08-22 09:30:56.112'),
('7fc2bccf-14b4-441f-88c8-816117ad7eb3','7d5e9833-8a69-43a6-8c18-775c82287e7a','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','orta sehpa','2025-08-01 07:46:19.000',1,NULL,'2025-08-13 12:42:45.959'),
('7fce64f1-d9cf-4209-9183-021aff74eac4','3aef1178-e8a2-4762-a4d1-895ac16f415f','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-04-24 07:58:16.614',3,NULL,NULL),
('7fd89c62-53fd-45d9-8937-40ac63d8d0c1','273c83bb-2405-453b-8f32-a6fd281b21a7','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-06-23 09:21:01.925',1,NULL,NULL),
('7fdf89e0-868e-4dff-9a42-34a86d6e056a','93386b76-7f5f-4ccd-845c-f624d343a1ea','c508b00d-a686-416e-ab4b-43fe49208cd0','köşe ','2025-10-12 12:00:00.000',0,NULL,'2025-10-15 09:47:25.119'),
('7fee7544-b544-4623-b92a-7a80075349b3','e9c624cc-2fc1-4839-b08d-b9e1310a053d','44c404b3-a618-4af5-bdfb-ad381f049053','KÖŞE TAKIMI 5 MODÜL','2025-09-23 19:22:13.898',5,NULL,'2025-10-22 12:11:06.752'),
('7ff65271-3ce2-474b-9039-bb86bb4afd70','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL,'MOBİLYA','2024-09-27 11:31:41.099',0,NULL,NULL),
('7ffb0d70-74ce-430c-ad2b-f58b98fff449','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3','d8a9ef64-342a-47ae-ba43-7d9ce62e7444','MOON ORTA SEHPA','2025-01-21 21:18:38.000',1,'2025-01-24 23:23:19.333',NULL),
('8011623f-379c-4258-a4f6-ad6ee01c4e59','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL,'Koltuk ','2024-04-07 20:35:18.602',0,NULL,NULL),
('803574ae-1ef3-4704-8432-986beb633506','9a5b1798-a2b1-4df0-a151-463694364cd5','e2aa2442-8a91-4124-99c5-e56e6058e5e9','GARDEROBE PETRA 160\'LIK KARYOLA(BAZALI)','2025-09-07 19:03:26.000',1,NULL,'2025-09-24 08:19:17.069'),
('804f6a0b-38a1-4b7c-8e54-5fbd1d01b9e5','0b1cc952-6f67-4baa-ba60-c50028dfbd88','0d64216c-fe9d-486b-b722-9710eba2c609','YATAK ODASI ','2025-01-07 09:24:09.320',5,NULL,NULL),
('80510286-f99f-4ac7-8b5a-8391d6a48f0e','830e197e-1aa8-4f6a-9f71-58048c60d7b5','0f300a3b-b3d6-4b60-924b-aa70cd54141e','MASA SANDALYE','2025-02-11 21:00:00.000',5,NULL,NULL),
('805410cd-cbdf-427c-9ebd-bc4d866bd178','c7e797cf-e784-4ba3-bf54-33ba82cd024b','2b2215d7-4285-40b9-a454-d3b2d06850dc','orca sandalye','2025-01-28 09:54:27.616',6,NULL,NULL),
('8076bb41-df9d-4c3e-b002-8df21ddafb0a','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL,'Mobilya','2024-09-04 15:10:33.080',0,NULL,NULL),
('80807bba-285a-4a36-82ce-d97c3250e5df','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Mermer lider den alınacak ','2025-09-10 22:17:14.000',0,NULL,'2025-10-17 07:23:37.683'),
('808a4f1b-793f-4a15-808d-00c26a26c166','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','52a4ba6b-a138-44a6-a361-b229db2520b6','5 KAPILI YATAK ODASI','2025-04-24 07:25:52.546',0,NULL,NULL),
('80953bac-8441-464b-ae38-3bdc43f14985','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('8097e799-ad15-4df9-bffc-97a238b2b292','824b8b50-1127-4eb5-8137-c9c3822a54a2','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Masa ','2025-08-10 21:00:00.000',2,'2025-08-13 15:57:06.978','2025-08-11 11:09:20.266'),
('809c54bb-3c3a-4391-8520-158d7441cc0b','a735e5ae-993e-42ad-8bd7-5bfc541165aa','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','SSH TEK SANDALYE ','2025-10-02 15:00:00.000',0,NULL,'2025-10-03 15:15:16.944'),
('80a4668e-063d-487a-8901-998c7c8fa9fb','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-07-31 12:00:00.000',0,'2025-09-18 15:07:42.192','2025-08-01 09:21:33.756'),
('80a5ed18-dcb4-44be-9d9b-3585c93033c0','b3da5f6e-e62f-4f04-9a07-a71259befc0b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','160LIK VE 180 LİK SET','2025-02-04 21:00:00.000',8,NULL,NULL),
('80b1233b-a544-4cfa-b3c0-d621b23200b4','0f83b9ec-6ba6-4b67-812d-586619784634','44c404b3-a618-4af5-bdfb-ad381f049053','köşe-berjer-sehpalar','2025-09-02 12:00:00.000',0,NULL,'2025-09-08 09:06:33.604'),
('80b59b98-1b2d-4d14-b5eb-0824fc273750','383fe013-af48-41d5-ad33-ad7c8b16446b','a2bc5ab3-8ee6-4a48-b4de-da8520104423','Köşe koltuk ','2025-01-06 07:00:00.000',2,NULL,NULL),
('80d556fc-ff56-4376-b860-2fe31b4dd1b9','7b746611-d918-4f49-b5de-eb29d4fcdcb3','bc1b9fd7-95d7-4d5b-a84e-684140acc414','orta sehpa üst ve yan','2025-10-15 21:00:00.000',0,NULL,'2025-10-16 12:03:26.230'),
('80d80d9d-3e8d-4209-8ec1-3f8f434133f0','90dbc8a8-5725-4f17-86ab-64186bd111a6','4a0bcddc-f75a-4ef1-bcb8-98d9697834f0','MASA','2025-10-27 12:00:00.000',3,NULL,NULL),
('80d84738-4558-4872-bcee-0d4fada9081f','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','3d32bf6b-0757-423d-ade3-bc6296974cd6','6 sanalye','2024-12-25 21:59:18.000',3,NULL,NULL),
('8113e130-28c1-4dba-ba92-b25c7bc8cbd7','b78bd5b9-8cff-4d83-880b-6b121f0affe1','f1f75c8d-ef6f-4283-a84d-726689476f2d','monz ç.masası-kitaplık-şifonyer','2025-09-08 18:00:00.000',999,NULL,'2025-10-16 11:53:00.321'),
('811c4fc3-106d-4a51-b8c0-eaa09c5918da','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL,'90x200 traverten masa ','2025-01-23 21:00:00.000',3,NULL,NULL),
('8132d4f6-fb04-49dc-9449-05b8d519868b','d7c365df-3376-4073-9c58-c2c089ddf17d','21444842-12de-49d1-9480-1c8708a45353','köşe ','2025-05-22 21:00:00.000',4,NULL,NULL),
('813b1641-013d-426a-be6e-0171a7e33df6','7af47c44-93b1-42ec-813b-77c155a1b050',NULL,'Mobilya','2024-04-07 20:40:55.483',0,NULL,NULL),
('8157b818-4170-444e-80f6-034d8ed1efe0','7ebc061e-668d-437b-b1f8-46651f8f4ce0','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-28 17:33:41.000',3,NULL,'2025-08-30 13:24:36.320'),
('81610c29-0bfc-4279-b20f-0e7aaa372942','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL,'SANDALYE','2025-04-16 09:00:02.748',3,NULL,NULL),
('816c1e88-40bb-4ba2-8df2-ca3765e01793','23c2fb27-3d69-40e0-9027-0877538a4b71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Eliza sandalye beyaz ','2025-06-24 21:13:07.000',2,NULL,NULL),
('816e932e-b5c2-4bd0-af1a-72d4dd4f7919','58257b33-0630-4737-9729-852125dc7322','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe Koltuk','2025-08-10 21:00:00.000',5,'2025-08-11 15:00:13.737','2025-08-11 11:06:32.654'),
('8173a4b9-15fd-4a7c-89f4-c9f0540e10aa','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL,'YATAKLAR','2025-05-15 21:05:30.000',999,NULL,NULL),
('817cbced-cd60-4219-aadc-2cd460507032','d4a40805-981f-48c2-bf0a-a6128b40e638',NULL,'SSH ARA MODÜL 70CM','2025-10-22 21:00:00.000',0,NULL,NULL),
('81842e70-37f5-4b79-9c69-42e4b7405864','38c7e847-02cf-481b-b2ca-7299334fad05','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE-MASA-SANDALYE ORTA SEHPA-BERJER','2024-11-26 21:00:00.000',12,NULL,NULL),
('818cc8a8-dddf-4530-bc28-57dda4fdd6ca','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','1e42b3b5-fb7c-4fd7-adfe-d6f396698005','komidin+şifonyer+ayna+gardırop','2024-12-12 10:59:27.801',0,NULL,NULL),
('8199fa34-7302-41aa-ac5d-0e057503fe32','3f94ebca-ddaa-4014-83ed-71965cea96d3','3d19e2da-7de7-453c-83fa-6edd8258f6eb','hamilton koltuk ','2025-09-07 22:00:00.000',0,NULL,'2025-09-10 13:11:20.260'),
('81a18e38-40ea-4269-8f73-38e103211eac','50aeff12-6812-447f-b3a6-0c51ad9fc878','37486a5b-3dc6-4298-9bfd-3291b8f42d46','sehpa ','2025-02-07 10:05:41.843',0,NULL,NULL),
('81b00513-9ac4-4aef-8fee-fb279e70ca3e','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL,'Ofis Malzemesi','2025-09-15 15:00:00.000',8,NULL,NULL),
('81b6844f-9988-4a82-aa1c-b69b75b17ba7','bf953636-9909-460f-8244-8ec3b177251f',NULL,'Koltuk takımı','2025-04-08 12:31:26.403',4,'2025-05-07 16:52:09.283',NULL),
('81cf8302-05ed-437e-980c-e6831dbcc1a3','a50d8db5-2bfe-4146-b10b-a41dcfc378a6','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası','2025-05-07 21:00:00.000',2,NULL,NULL),
('81d0dc47-7670-4778-9132-e810a9a4d368','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'VİRAL YEMEK ODASI','2025-05-03 21:21:27.000',0,NULL,NULL),
('81ff8563-ab6e-4bad-a81d-a451ba94d6a6','da5cde0e-df59-488c-af62-13b113156c25','989e502d-630d-4495-9ba1-cdab9c19d53e','KÖŞE KOLTUK','2025-09-21 06:00:00.000',5,NULL,'2025-10-03 11:09:38.588'),
('8200af89-453e-434a-a4db-de08e8cfe818','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL,'Koltuk Takımı (3+2+1+1)','2025-05-12 21:00:00.000',4,NULL,NULL),
('82056d55-1803-4668-82d6-4700bbe5f656','f82a6da6-d534-481f-99b5-f2618145eed1','8b3fd660-7e02-4d1d-9bcd-406bdd25b872','Ayka chair ','2025-10-14 12:00:00.000',3,NULL,'2025-10-16 12:38:51.101'),
('8212cfcd-8545-4bc3-81a9-78667026bebc','4b0a63a8-b888-4398-b6a4-26f747429361',NULL,'PORTA SEHPA SETİ','2025-07-31 11:55:10.516',0,NULL,'2025-08-05 07:54:00.359'),
('8216e820-b867-4e26-94c7-3619c7c05e2a','4dbf93f9-e436-46b7-8455-aa2f9617afb4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80 cm Orta sehpa','2025-02-28 12:04:36.000',2,NULL,NULL),
('822012b8-3b7d-46ba-9997-29726e94fb5c','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL,'Köşe','2025-08-21 21:00:00.000',0,NULL,NULL),
('82218647-927a-470a-94a7-21964c18f9ae','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('82321952-2c8a-425f-ad1c-80144029e0cb','3aef1178-e8a2-4762-a4d1-895ac16f415f','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-04-24 07:58:03.423',3,NULL,NULL),
('824d6217-b971-4993-8029-722e4fdadc9a','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','sandalye','2025-08-03 15:00:00.000',3,NULL,'2025-08-08 12:27:38.643'),
('8254b4b3-ad87-4e73-8ace-4bb7bb3bf333','a7f2c8a1-4d37-45da-904c-4406f86faab9','6e484d9e-6141-4730-8ede-58b45593eadd','3+2+1 loft koltuk takımı ','2025-09-03 18:00:00.000',3,NULL,'2025-09-04 14:30:05.344'),
('8279654b-3e57-43ba-844c-f5985ec2ca90','24bfd523-6e80-4e24-89e9-93f7f88a6f2d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','KÖŞE KOLUK ','2025-07-08 21:00:00.000',0,NULL,NULL),
('82ac2d58-053d-41f5-a402-9275c56203f9','90462b6a-6fe2-4fba-8b01-1afd6272a71f','efc664a7-01b2-4e5b-8e7c-57637a241713','yatak odası','2025-07-02 01:52:11.399',0,NULL,NULL),
('82c2f7e6-7d17-4f07-ab88-13d96b343121','544de2ca-566d-4b42-80d3-8bdcf76c0ff0','ea7f52d3-6796-416f-951d-c553df6295b0','köşe koltuk','2025-09-25 09:00:00.000',5,NULL,'2025-09-29 09:19:37.275'),
('82c44317-84ac-4df9-8145-97abec99a444','34998387-c573-429b-a68a-d13a844cfc40',NULL,'SSH','2024-04-07 20:47:16.868',0,NULL,NULL),
('82e01382-fab8-4f18-9978-1c5fe23a400c','2bd83cbf-8c3f-4acb-90f5-5fa761fa0a32','adb86e9c-bc47-4a68-b7fb-8691e7d9ae53','YAYLI YATAK','2025-10-23 09:00:00.000',2,NULL,NULL),
('82e374dc-e5cf-41a1-b1fa-0fdb48c6e735','2c353236-af7a-4d2d-b79e-d8ecc6a5ae6e','af378015-ddbc-42df-945d-d98710725e36','Modüler Köşe','2025-08-26 11:00:00.000',6,'2025-09-05 05:41:45.782','2025-08-28 08:29:14.599'),
('82fc4a48-c8f4-4b24-bbc7-afa67ab79349','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL,'10 Adet sandalye','2025-04-29 07:22:36.649',10,NULL,NULL),
('82ff3bdc-91ea-4214-98c1-4dc85d6f9504','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL,'TRAVERTEN MASA 90/180 CM','2025-01-10 21:00:00.000',3,NULL,NULL),
('832915ac-d62f-48db-b00f-8e585de422bb','ea521ff8-eb9f-4152-a03a-e511216077ea','b044c797-8c15-4ef0-b74b-c71ffa32d77d','PANAMA KARYOLA 2 ADET BAZASIZ','2025-09-22 14:28:36.000',0,NULL,'2025-10-10 08:56:17.702'),
('83371e37-9c5d-4c8e-b554-692e05bd3d90','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL,'BAZA SETİ','2024-12-04 21:00:00.000',0,NULL,NULL),
('833a3da7-2e08-41e5-bb3c-06e3df596438','12e9e80a-5a59-4dbe-befb-126310a97b43','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 AD. BERJER VE AYAK KUTUSU','2025-02-03 21:00:00.000',3,NULL,NULL),
('838fa479-d6f3-4221-9bdb-56015e77ff50','ca108024-5dae-4885-b583-30c8f69c510c','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 PK BAŞLIK VEKULP','2025-04-21 21:00:00.000',2,NULL,NULL),
('83902671-5e3f-46e6-98da-fea889e40b25','eb029e46-e69e-4bea-b717-f1c575aa7ca7','9669c217-666c-4acc-a115-b560280110d5','KARYOLA','2025-09-22 00:57:02.000',5,NULL,'2025-10-03 13:01:22.097'),
('8394560a-abb6-45d4-a3bd-557f29c3f3bf','b2ecd293-305d-46fb-a245-c6b981cfac7e','98c5854e-8359-40bf-8d64-f3fb052b029d','koltuk ','2025-10-28 16:00:00.000',5,NULL,NULL),
('83a4a2ab-63b4-468e-9809-edf00bbd2679','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL,'Koltuk ','2025-05-01 21:00:00.000',0,NULL,NULL),
('83af9296-590a-4b0b-81a5-7cfaa2cf9c5c','049cec7b-ec44-4295-afa5-768b2786337d',NULL,'Mobilya','2024-09-04 14:53:32.424',0,NULL,NULL),
('83b60f78-3367-4358-9376-fd4dfc3de67e','9c818465-8168-4f07-aaba-0d59b1260716',NULL,'SANDALYE','2025-02-14 14:55:08.478',3,'2025-02-19 09:58:48.430',NULL),
('83b9571c-57fb-44d8-9d15-f074c343858c','664a5f59-18db-48f6-9aab-5a678554d75d',NULL,'KOLTUK TAKIMI','2024-03-12 09:29:10.289',0,NULL,NULL),
('83e59763-5e8a-4ca2-9fda-483f9927c759','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL,'Dresuar','2025-01-20 12:42:03.103',0,NULL,NULL),
('83e81175-cef2-4f5e-adbe-8ca02a747efd','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a','b4b527e9-c851-458f-9238-9049a66f2c90','masa-6 san.- konsol-tv-orta sehpa','2025-08-05 21:00:00.000',0,NULL,'2025-08-08 12:17:04.672'),
('83fa7429-792d-42a8-9ee5-5d78e3654c0f','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL,'KING PLATİN BAZA SET 140X200','2025-07-31 21:00:00.000',0,NULL,'2025-08-22 12:45:26.557'),
('841f7f01-a7cc-440b-859e-dea7f085dd74','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL,'MOBİLYA ','2024-12-19 21:00:00.000',0,NULL,NULL),
('8430af40-36c5-4b58-b933-e2ca938f7a86','7d6fb76f-77a1-487b-abf8-27a26b46c803','973b6aa0-41a2-4f8f-81d6-7a576c025021','köşe koltuk','2025-03-07 21:00:00.000',4,NULL,NULL),
('845879e8-205b-444b-9d29-1e0a6fa08784','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,' YEMEK MASASI','2025-06-12 21:42:47.000',0,NULL,NULL),
('845cd508-3836-4f7f-899b-bf28d0f90884','9103cb0e-e686-4e54-ab7a-664a063bc56c','44c404b3-a618-4af5-bdfb-ad381f049053','black line bazalı karyola 2 adet komidin','2025-08-17 15:19:56.000',999,NULL,'2025-09-10 11:09:33.915'),
('845e0c76-772c-4d2c-86c9-e8d641b329e7','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL,'Mobilya','2025-10-06 12:00:00.000',0,NULL,NULL),
('8460601e-2491-4cf6-a0f3-c6413c212c48','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 160*200 YATAK','2025-10-03 09:00:00.000',1,NULL,'2025-10-03 11:29:25.915'),
('8465c9cb-ffbe-4de2-aaad-a9d0c676a4d5','5aa78870-c5db-449e-aff0-2a524544eba3','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-05-28 21:10:28.000',4,NULL,NULL),
('84739b29-6a1a-4fa3-979e-e1e3baef179f','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL,'DELUXE BAZA SETİ 90X200 4 TAKIM ','2025-04-23 21:00:00.000',0,NULL,NULL),
('847447cb-cb81-4f9f-9f95-ff50b1304b30','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-19 04:00:00.000',0,NULL,'2025-08-25 10:42:27.443'),
('84789e73-810c-49d1-9a7a-77b08db534e8','9ed256bd-b366-4a81-80af-3c33747dd7f2',NULL,'depoda hazır','2024-10-24 13:16:54.100',7,NULL,NULL),
('84791194-3973-40cf-a14f-b0ba14808947','f774fd73-b557-40e4-a1f0-2f9f1e99e70a','7582128f-7119-48f4-b125-e6b8bfb84dc3','SANDALYE','2025-07-04 09:23:55.000',6,NULL,NULL),
('84872db6-122d-4597-b24b-28898f0b0d23','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 orta sehpa','2025-03-06 09:33:04.314',2,NULL,NULL),
('849056a2-595f-471f-a9d0-97a691231325','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 120*200 BAZA','2025-10-03 00:17:25.000',1,NULL,'2025-10-03 11:29:25.915'),
('84931d79-be4a-4fda-a683-426c1f8b5d7b','c3d3518b-3207-4e42-8927-efa33c951310','e59ddebd-c72a-499b-abcb-cdf62222894f','KÖŞE KOLTUK','2025-09-25 23:54:02.000',3,NULL,'2025-10-02 10:02:13.555'),
('84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN GİZE 3 KAPILI DOLAP','2025-08-28 02:05:00.000',1,NULL,'2025-09-08 12:00:07.860'),
('84a978c9-68bc-4af6-a5ab-3a6551bbc294','4e848e66-1956-4160-9b53-a1fab280f1f6','5046ae7d-9e56-4e62-ae01-c73636a962f1','özel üretim tv','2025-10-01 22:00:00.000',4,NULL,'2025-10-06 13:40:18.445'),
('84deaccf-5c15-4d59-9178-63fd4b3a3ff6','8277179b-dd64-4a72-b947-d8a5c906a9b0','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','TV ÜNİTE','2025-01-30 13:00:00.000',1,NULL,NULL),
('84e96d11-c558-4787-b50a-0c3bbea0023f','526de5bb-5478-4ac9-aaab-26c962aa787b','c7a9be0a-b228-44ec-8a6d-73fe37e4d736','2 ADET KANEPE','2025-10-29 06:00:00.000',2,NULL,'2025-10-27 13:41:33.392'),
('84f04da6-1c8b-4452-91ca-318b205d51e4','7debbec8-4b40-438d-b2a3-04d64fa74ec0','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS YEMEK ODASI','2025-10-22 07:51:55.367',0,NULL,NULL),
('8517180a-7a58-490a-850a-a80ebb332fa2','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL,'LAMBADER','2025-09-24 17:59:19.971',0,NULL,'2025-10-01 13:30:30.419'),
('851859a8-5f92-4ac4-8dd6-6c66446b8f8b','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL,'MOBİLYA','2024-05-23 07:20:45.271',0,NULL,NULL),
('852cb596-91b3-432f-8aee-ec6a804f3a01','a029bd37-9eca-4220-a768-df5b0d586118',NULL,'Mobilya','2024-11-06 21:00:00.000',0,NULL,NULL),
('85510702-b7c6-4c86-a63c-4795fb24cb65','8cf92937-e0c9-49c9-87aa-33b3c2fd4773','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-04-21 21:17:04.000',2,NULL,NULL),
('855d727d-98db-45fa-811c-d503dd78babd','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-02 13:00:38.000',4,NULL,NULL),
('855e46a4-ba64-4f07-8fbb-6964051588ec','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL,'SSH','2024-10-11 13:38:22.770',0,NULL,NULL),
('85771243-c1f1-412f-9aaa-86d33ba665c5','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL,'MOBİLYA','2025-04-25 21:00:00.000',0,NULL,NULL),
('85863f70-10fe-411d-ad43-60a5ba95b680','13aba735-b82d-4898-a98c-4167bb80085c',NULL,'KOLTUK','2024-09-18 21:21:21.930',0,NULL,NULL),
('858bf458-b499-4eea-bf79-f32ed1c24910','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL,'KOLTUK','2025-02-19 21:00:00.000',0,NULL,NULL),
('8590fd4d-4305-4d64-8517-1195110a383f','5a03448d-5de2-4154-86a6-c1af699ed137',NULL,'SSH','2024-09-27 12:48:32.097',0,'2024-12-13 15:37:32.868',NULL),
('859bbeae-88c6-499a-9379-f80004270427','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL,'MOBİLYA','2025-07-28 21:00:00.000',0,NULL,NULL),
('859ce399-c54b-4755-9400-79822660b5df','aae115aa-05f3-4d7c-b25f-3b266a2aa636','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','TRAVERTEN AÇILIR MASA 90/190','2025-02-10 11:00:00.000',3,NULL,NULL),
('85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5','c930eade-75ea-4464-a6c5-445be1fb2f29','83164ef4-809a-4565-8151-dea5ddbe27ec','KÖŞE KOLTUK','2025-06-17 10:00:00.000',0,NULL,NULL),
('85ba62c8-ab59-4fad-b44d-8afaa4a37f71','43b4cdba-f0e7-4de7-ae8c-4174a5d3537a','3e78db22-08b5-4c8e-9d69-c184e551e40a','seramik masa','2025-10-24 10:00:41.000',3,NULL,'2025-10-22 13:12:20.363'),
('85c15194-eff1-4483-93bb-42a19c646f6d','0884b3d4-5cc0-44eb-9508-2f4bc25839ac','0f300a3b-b3d6-4b60-924b-aa70cd54141e','DOLAP*BAZA VE YATAKLAR','2025-01-29 10:32:17.065',1,NULL,NULL),
('85db759a-5e10-49be-92ff-a951a588c1a1','863a4d29-ce12-4697-a15e-977449f015c7',NULL,'MOBİLYA ','2024-12-19 21:00:00.000',0,NULL,NULL),
('85dce3a8-9a2f-4902-a6e2-0f1045bf1c0d','4fe827f7-044c-467f-84fa-f87c0fb696c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm mermer desen orta sehpa ','2025-05-29 21:04:40.000',2,NULL,NULL),
('85de75ab-a905-42c9-bc61-799745d96971','f10b88a4-5160-4b26-9eda-5026590612c9','c4c635b2-5c83-4ac4-87ef-8f4a5d75f3d1','Star Köşe Koltuk ve Berjer ','2024-12-15 21:00:45.000',6,'2024-12-19 16:13:02.861',NULL),
('85ff7453-fb73-41cb-8885-c4edae102a71','2afcf460-a080-4273-8901-46e80d97fa18',NULL,'TABELA KUMAŞ','2024-06-08 07:43:14.307',0,NULL,NULL),
('8614dcb6-b609-46f6-bfbb-b234b2db29f8','92ef11d7-249d-45f0-a76f-8b59e5a6399e','1be238d9-54e3-4094-8d60-66fd5abb87b5','Traverten Masa ','2025-03-03 21:00:00.000',1,NULL,NULL),
('86208c93-5d4c-4ac9-9877-ea3dae242261','4a285e1c-8129-4c9c-85a3-06394604421e',NULL,'PAKET ÜRÜN','2024-03-30 08:57:16.034',0,NULL,NULL),
('8625abf2-719d-4d7f-b206-16948b318b8b','3810b138-eae3-49b3-94fb-6ece3e64ea2e',NULL,'Mobilya','2024-05-10 12:14:44.232',0,NULL,NULL),
('8626895a-fadc-48b2-8114-1f4670cf1280','61fc8ab4-3763-4ab8-98a5-4b8228ba92d0',NULL,'KÖŞE TAKIMI','2024-03-23 07:50:30.971',0,NULL,NULL),
('86442e2e-fd32-4692-ac0e-7247d231d3a1','9ed256bd-b366-4a81-80af-3c33747dd7f2','45751f9c-665a-48c9-8e4b-15fdeb993163','hazır massi','2024-10-24 13:17:03.963',4,NULL,NULL),
('865c29a7-ef0d-44fe-ba23-c38a1f1287e4','c6ce0690-d0de-43de-9f1a-45fc7344f810','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-04-17 21:00:00.000',6,NULL,NULL),
('8666b59a-6799-4590-8f8c-c2d52bf7aba0','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL,'MOBİLYA','2024-10-23 08:56:40.274',0,NULL,NULL),
('866f9922-8932-4f88-9ae8-4b3b087f0b0e','1b95f6b8-b318-4efe-90f5-5c3bca7a5637','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-04-16 21:00:00.000',5,NULL,NULL),
('8671fe0e-66f9-4cd3-92c1-b4cc827cf293','846144fe-95bb-4d2a-83ea-4552d599f458','8c33406d-1686-45a9-ad7a-de320c689537','Köşe koltuk','2025-10-14 15:00:00.000',5,NULL,'2025-10-17 07:31:32.821'),
('86839fae-db78-468b-ab03-dbec339ccf7a','bf69a70a-73ab-451f-bc43-7e834619f2e6','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE YAN SEHPA 2 AD ','2025-10-21 19:43:20.536',0,NULL,'2025-10-24 16:10:28.556'),
('869845cb-83bb-4465-bd39-430dcb105252','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL,'sandalye','2025-04-23 21:00:00.000',3,NULL,NULL),
('869ce9df-955c-40b9-9988-140f26d3b591','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666','3e78db22-08b5-4c8e-9d69-c184e551e40a','seramik masa','2025-04-23 21:00:00.000',3,NULL,NULL),
('86a60767-7224-490d-9d65-38533eedf53b','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-08-11 18:00:00.000',4,NULL,'2025-09-22 15:24:34.176'),
('86b60aaa-bb99-46c0-a4af-dcec737058c0','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL,'Köşe Koltuk','2025-02-28 21:00:00.000',4,'2025-03-21 20:08:08.183',NULL),
('86d2551a-e5a9-4481-a320-c328ca4c8004','c76c212f-c2f8-492d-9608-3c99a318c621',NULL,'Canshome','2025-08-28 21:00:00.000',0,NULL,'2025-09-01 09:56:30.371'),
('86d6c74a-fed6-4b24-a3e8-4af8a7cfed33','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL,'MASA','2025-04-29 21:37:59.000',3,NULL,NULL),
('86d992e2-310b-42d7-9b36-975cd39eb913','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL,'2 sandalye','2025-07-16 08:30:15.448',1,NULL,'2025-07-23 11:12:41.568'),
('86de9321-5059-496b-85e7-43b068bba29c','e343cdb8-530a-4273-b51b-de80339b581f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 cm siyah sehpa set','2025-06-16 21:15:16.000',2,NULL,NULL),
('86e5956d-750b-4aa3-8f00-53e2db7b9f65','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL,'Mobilya','2024-09-06 09:35:39.644',0,'2024-11-21 06:56:36.972',NULL),
('86ee035e-15bb-41c0-a091-2eb029703094','a3672ebb-5053-433e-a8e4-f57986e68156','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-05 09:00:00.000',5,NULL,'2025-09-06 10:04:30.698'),
('8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','b6781cc4-4ba5-457f-975e-ee2a01f09909','Masa orta sehpa ','2025-10-09 09:00:00.000',6,NULL,'2025-10-08 13:58:07.137'),
('87393f00-12fd-4b92-bd9e-3438b29214c6','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL,'HALI','2025-06-25 07:19:51.292',4,NULL,'2025-08-27 14:17:22.354'),
('87690a74-53f1-4679-9f7a-22c85ca0de64','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL,'DELUXE 180LİK YATAK 2 ADET ','2025-09-28 15:00:00.000',2,NULL,'2025-09-30 09:29:10.694'),
('87758232-82f4-41bc-a8c1-71f044bd69f4','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c','8ceb6cff-0a3c-4c86-ba04-fde8f431d6bb','TESLA KOLTUK 3+3+1+1','2025-07-07 21:00:00.000',0,NULL,NULL),
('8778c3f3-967c-4a24-9adb-37b4330b383a','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b','cf90c370-208a-4021-aaff-f9220970bca9','2 AD SEHPA','2025-05-26 21:02:30.000',4,NULL,NULL),
('877cee40-fb6b-423e-82cb-24d2a131b0e8','00597150-64a3-4ed2-95da-544d8eb849d1','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','TV Ünite','2025-01-30 13:00:00.000',1,NULL,NULL),
('877e4ae1-48a1-402e-9b28-5eef3571383d','16715384-46fe-4d2a-88d8-8467cd5c6d5b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','MERLİN KOLTUK TAKIMI','2025-04-10 21:22:52.000',4,NULL,NULL),
('8799dea4-056f-41a0-bbfa-090ec5d409f2','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL,'traverten masa','2025-04-29 21:00:00.000',1,'2025-05-08 09:31:47.795',NULL),
('87a6eed1-72e9-47a2-abf1-2f9ad0b45962','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL,'köşe ','2024-12-08 21:00:00.000',0,NULL,NULL),
('87b3f634-7cb9-4342-96bb-9a0c75c1ffe9','31898da9-acb0-4ff9-aff5-1305eceaf2d3','ea14abab-f7ab-4729-8410-25fc05b35196','koltuk','2025-10-01 06:00:00.000',0,'2025-10-07 08:19:02.987','2025-10-06 13:53:58.409'),
('87ba2893-55a3-43aa-aec6-94581c185ade','01608d35-8f91-4555-8ddb-ee881418d1b8','0f300a3b-b3d6-4b60-924b-aa70cd54141e','DÜĞÜN PAKETİ','2025-01-09 21:00:00.000',1,'2025-01-17 08:43:27.044',NULL),
('87d144ec-833f-4749-bc8a-7b5dc3b8b776','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL,'MASA','2025-05-21 21:54:15.000',3,NULL,NULL),
('87fb12aa-62c2-4fad-b01b-4807ecd8cb5a','936577ed-02ef-44c5-9226-4d241235c1bf','1dc7357b-468a-476c-b39d-81e187906258','kumaşlı ayna','2025-10-02 19:55:49.000',1,'2025-10-09 13:56:49.022','2025-10-09 13:33:57.026'),
('87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec','98bda885-fe47-4716-8e4c-6ea1a95114e8','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-03-14 11:22:15.104',6,NULL,NULL),
('8809d2f7-18c1-42c1-aed8-715d42bf5e65','3fe4384f-667e-4804-9bed-05209e202db9','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','MASA TAKIMI','2025-03-19 10:00:19.000',4,NULL,NULL),
('8816c8a1-31d5-4077-97b5-61ad012a0a56','681a9409-dfea-4051-898e-57fa8d7d2fef','99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','KARYOLA VE PUF KUMAŞLI PARÇALAR','2025-10-27 11:42:43.000',0,NULL,'2025-10-22 12:37:36.108'),
('88373dc6-277e-4d79-8537-6fc1534daf48','1372768c-0132-475f-bd20-c5373f0785ae','38a7333e-8a0f-4e45-957f-e11d538d2097','masa ','2024-12-28 20:09:05.739',2,NULL,NULL),
('883e6aaf-ccf4-4814-b2e4-afec5f99ad33','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL,'MOBİLYA ','2025-01-02 21:00:00.000',0,NULL,NULL),
('88611d6c-52ed-4192-8e9a-11fd1beb3641','fe463485-2cc1-4a74-bdc7-66f943713679','bc1b9fd7-95d7-4d5b-a84e-684140acc414','orta sehpa altı-üst ve  minifixler ','2025-10-15 18:00:00.000',0,NULL,'2025-10-16 12:03:06.989'),
('886e0e1a-c599-47ba-bacc-c329212cc55b','ceed7173-fe7b-438d-9195-fec804ca478e','1bbead06-fe85-47fa-bbf0-90a35456a83d','ASOS YATAK ODASI VE ÜNİTE KARYOLA 180LİK','2025-10-10 12:00:00.000',0,NULL,'2025-10-10 09:38:04.066'),
('8879b43d-a734-432b-9021-777b1ea513be','4776d10a-2cab-47b6-b212-60c0ab466107','fe02285e-9885-40cc-9da3-c9799ce80173','ayna','2025-04-17 09:12:08.000',1,NULL,NULL),
('887cdf3d-b4a4-4b5c-8d2a-c96f769b16af','2e7c73f7-d738-4447-86bd-2c43c4f79b02','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','sehpa','2025-07-21 13:00:02.000',3,NULL,'2025-07-24 07:57:00.869'),
('88a9c5d3-54c8-466d-99b5-bc55e66e9b6b','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL,'Traverten masa 90x190','2025-01-13 21:00:00.000',3,NULL,NULL),
('88bec1c0-e7a5-4328-b46f-29d37f4728f2','c1240440-7bab-4c36-b81b-ce30804d132b','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-01-16 21:00:00.000',4,NULL,NULL),
('88c87e67-b705-44f6-a1d3-32e6c3d6dfe9','8772de92-e350-425f-a8eb-0c7d440b804f',NULL,'MOBİLYA ','2024-12-23 21:00:00.000',0,NULL,NULL),
('88cff7fd-c50d-46c8-9ff6-19710133533e','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL,'DELUXE BAZA SET 90X190 ','2025-09-24 17:59:11.898',0,NULL,'2025-10-01 13:30:30.419'),
('88d580d8-995f-4f93-8898-28857c4a2389','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL,'Traverten Masa','2025-06-16 21:11:05.068',1,NULL,NULL),
('88d64f13-8f29-4701-af77-f681ddeb5724','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL,'Traverten masa+sehpa','2025-08-19 12:00:00.000',1,'2025-09-26 12:52:54.513','2025-08-25 09:07:03.963'),
('88d72258-1b0d-4a36-beeb-b6bccfe6650b','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye koyu ceviz','2025-03-06 21:33:18.000',6,NULL,NULL),
('88ec1b69-5cc3-47af-8aa3-9c3043171516','526aa02e-2975-431a-8cc4-16032700e014','44c404b3-a618-4af5-bdfb-ad381f049053','frida köşe 4 modüllü','2025-09-28 15:00:00.000',4,NULL,'2025-10-06 07:24:39.628'),
('88ed24fa-a5d6-4b3f-9fe0-f610ed723cf3','08318497-59bc-4444-82cf-f14fd0a31917',NULL,'Koltuk','2025-09-20 12:00:00.000',3,NULL,'2025-09-22 10:55:01.581'),
('88efd6f4-86cc-4f4e-9e39-520afe44f05f','3e7bc361-1239-4318-a168-479ffa7372b0',NULL,'KOLTUK TAKIMI','2025-05-27 21:00:00.000',0,NULL,NULL),
('88f7b708-0bad-4d29-a208-0fc793ad49ef','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL,'SSH','2025-05-22 21:00:00.000',0,NULL,NULL),
('89054cd3-6702-45df-aaed-cce37ad10d39','85a61e83-6a63-4ba3-be2f-7f76b267dcef','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','KÖŞE KOLTUK','2025-04-29 21:00:00.000',0,NULL,NULL),
('89083e34-7ffe-4b68-86f0-bb6ea143c832','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL,'BAMBİ ELARIN DOGAL UYKU PAKETI CK,BAMBİ MAGNASAND 160*200 YATAK,BAMBİ VANILLA BASLIK 160 CM R:BK-179 VANILLA VE BAMBİ VANILLA LOOP HVZ BAZA 160x200 R:BK-179 VANILLA','2025-09-24 12:00:00.000',4,NULL,'2025-09-24 09:54:51.404'),
('89227708-11c3-43ad-8689-12a0aeedc654','6de04c45-fcae-42a3-aebf-5b140d42d81f','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-04-24 07:47:13.131',6,NULL,NULL),
('89252f53-ec5b-4147-a609-055aae4459d1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL,'Mobilya ','2024-10-31 14:34:58.606',0,'2024-11-03 20:43:25.251',NULL),
('8927f16d-18c9-4c04-915b-2efa7b9707b4','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','MASA','2025-07-08 21:00:00.000',2,NULL,NULL),
('893ea818-a1bb-4e98-9cc9-c685a50870b1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL,'MOBİLYA','2024-11-22 21:00:00.000',0,NULL,NULL),
('8945c2c5-f724-4f65-90d9-21087c50ff7b','b10467dd-1ad4-4468-8e8e-6d6e751fff22','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x200 seramik masa','2025-06-26 21:00:00.000',3,NULL,NULL),
('894ffd66-b452-4c98-9e0d-be9365aad518','88e73e43-dac2-4ecf-ab5a-8fb52d544ece','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-07-31 04:00:00.000',3,NULL,'2025-08-27 14:40:44.739'),
('8966cba6-713b-4094-b1bc-e0e0d0f8334c','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL,'MOBİLYA ','2024-11-18 21:00:00.000',0,NULL,NULL),
('89834bf4-a4be-4296-8bac-db24c46d63fd','9db12415-2152-439d-bb63-bebefc3c640c','4fbb639d-63c8-459f-9820-d8a261260d94','8 adet sandalye','2025-01-27 21:27:53.000',4,NULL,NULL),
('898bffc9-631d-4f04-b4f5-ed3faa6efd68','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL,'kanepe 2 c sehpa','2025-01-05 21:00:00.000',3,NULL,NULL),
('899dcf64-71c3-423e-92a1-60d82839fc84','91e8883e-fdcc-426e-99c9-17707c173e50','15d79900-396c-42fd-a61a-25c2cd217cc8','maldiv koltuk takımı(3+3+1)','2025-01-07 21:00:00.000',3,NULL,NULL),
('89ab7724-cadd-41e0-96e0-8d4e9adbe732','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL,'Yatak odası ','2025-06-25 21:00:00.000',0,NULL,NULL),
('89b10d5c-c483-44ad-9784-dd0d3532446b','fc31e466-d8a0-4227-8542-d08063fb7971','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-07-25 14:05:03.000',6,NULL,'2025-08-05 14:29:57.372'),
('89c0955f-36cb-42a2-814a-51d922ff9309','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3+1 koltuk ','2025-02-06 21:00:00.000',0,NULL,NULL),
('89c403f0-0df0-4846-a60d-70005e465597','34e0270e-97b8-4007-bdff-03282449c33a',NULL,'MUTFAK DOLABI  1 PALET','2024-05-04 09:50:55.207',0,NULL,NULL),
('89dd67f2-7835-49d3-b564-a0c124d076f0','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL,'MOBİLYA','2025-02-26 21:00:00.000',0,NULL,NULL),
('89e7e729-3e1b-4b88-b0ed-4002bf4c8751','b7371a5c-1964-498e-9777-29d5a4fb4e31',NULL,'ARALIK AYI TESLİM','2025-12-01 04:27:32.000',0,NULL,'2025-10-09 10:42:47.499'),
('89fe3e03-76ff-4301-9cc1-97e41acbc489','da5cde0e-df59-488c-af62-13b113156c25','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-21 21:07:51.331',6,NULL,'2025-10-03 11:09:38.588'),
('8a112f94-c1ef-4860-86dc-23351280686f','f8a35a67-4391-400d-b200-b2e5eb8c88d5','a83cef52-4388-4d39-b97b-ec517ec35be4','KÖŞE KOLTUK TAKIMI','2025-05-20 12:00:00.000',6,NULL,NULL),
('8a2d498b-3504-4e53-a419-f2fb1cf04e4c','1bb074a3-ddf3-432d-9ee8-e36060092ef8','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-09-02 00:15:56.000',1,NULL,'2025-09-02 10:35:01.832'),
('8a2e1aac-28d1-4f92-929e-a34cea96fcff','4fcbc651-ced6-4837-a3cf-17f82d36dabe','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA + SEHPA','2025-08-18 12:00:00.000',5,NULL,'2025-08-19 12:00:24.875'),
('8a2e4be7-96b3-4966-9f0d-23dfb73b1901','9ed256bd-b366-4a81-80af-3c33747dd7f2',NULL,'hazır 3.','2024-10-24 13:17:14.703',0,NULL,NULL),
('8a3abc28-b3ed-4b35-9844-924b0d1f4c43','558ade04-1baa-47ac-99df-233551c2e4c2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','SSH ŞAHİNLER KRİSTAL ŞİFONYER AYNASI,KRİSTAL KARYOLA ÜST DEMİRİ,KARYOLA SUNTASI,TUTM SAPI VE PİSTONLARIN TAKILDIĞI DEMİR','2025-10-15 14:25:54.000',1,NULL,'2025-10-03 11:30:36.980'),
('8a40cc6c-da1e-46a3-a2f3-b881f682eafa','69cd3737-18d9-4403-b086-38131b718d3b','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-11-07 08:31:58.000',3,NULL,NULL),
('8a556e5c-d40f-4adc-88d5-0c6485ab9282','08903c44-0aec-492e-ae36-4f7ff8701446','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN ','2025-04-16 21:00:00.000',1,NULL,NULL),
('8a7fb8e7-170d-43fb-87a3-8fffb16bb71e','0689343a-01c3-4235-b709-f5f67e87d641','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-08-12 08:48:02.000',5,NULL,'2025-08-14 12:01:08.590'),
('8a9beb26-658b-4990-84a0-177e0cc073c2','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL,'BOHEM SET','2025-02-06 21:00:00.000',0,NULL,NULL),
('8aa519e0-8e87-4df3-9db0-e983a4dbb36b','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL YATAK ODASI TAKIMI BAZALI','2025-08-28 02:11:04.000',1,NULL,'2025-09-08 12:00:07.860'),
('8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56','4648df64-b4ca-47a7-8d76-63ab12d19ffc',NULL,'Mobilya ','2024-09-24 14:02:02.185',0,NULL,NULL),
('8ac0815d-6704-4e5d-a7d8-2b06b82e6d62','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL,'Dudi bebek','2025-09-18 19:54:57.089',0,NULL,'2025-09-22 17:08:51.481'),
('8ac95ed3-d833-478a-bb81-b1337612bde0','3539abdf-5c17-413b-8a00-89b58f218933',NULL,'MASA SANDALYE','2024-03-23 07:09:17.795',0,NULL,NULL),
('8add455f-cadf-462a-8446-b3feef2203eb','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL,'KÖŞE KOLTUK','2025-02-02 21:00:00.000',0,NULL,NULL),
('8ae18186-b64f-4b09-b81f-8095d536895f','0c1f42ec-e581-418c-a11b-418b92d2cc9e','feaae4e5-2ae1-4782-b3cf-25fb7e2707eb','Masa','2024-10-31 19:22:16.931',3,NULL,NULL),
('8aea0a6a-b827-4a64-9988-5732ac25090c','fd8aa3dc-cf2c-493b-92ea-1029149367fe',NULL,'Baza başlık ','2025-10-01 21:00:00.000',0,NULL,NULL),
('8af3ab72-3bbd-469c-9a3a-af8e2c3ea190','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'Köşe Takımı + Berjer','2025-10-01 03:00:00.000',8,'2025-10-21 23:34:13.518','2025-10-15 09:06:41.528'),
('8af7962b-964b-49b8-9f82-5314694a8258','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-10-29 02:59:58.000',4,NULL,'2025-10-22 09:00:38.305'),
('8b053eda-bba1-4f32-b6ec-244e823db5ac','43632aad-d9e3-4042-a98c-3de650df2487','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','Masa sehpa','2025-08-13 00:00:00.000',6,NULL,'2025-08-18 08:46:50.965'),
('8b0faffd-49d2-436c-acda-c8b006f7cc05','83523717-3c96-466b-bee7-e0dfa2259e82',NULL,'KING PLATIN BAZA SET 180X200','2025-02-11 21:00:00.000',4,NULL,NULL),
('8b16ecc6-bcbd-4d67-9bc7-fbfeea2940b1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062','077de487-dd17-40a4-be7f-19b6d1dfccfc','MASA','2025-04-09 21:15:56.000',2,NULL,NULL),
('8b29b229-fa23-49c2-a1cd-8a38b61dd226','7debbec8-4b40-438d-b2a3-04d64fa74ec0',NULL,'DELUXE YATAK 160X200','2025-10-30 07:52:13.000',0,NULL,NULL),
('8b4543e8-c3ef-483e-92b5-3623066138c6','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL,'Mobilya ','2024-10-02 12:21:06.239',0,NULL,NULL),
('8b4b20b2-a316-4448-9879-8c88eb75301a','e3176b45-a9ae-470a-9151-1ab0181ca82c','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE ','2025-03-08 10:02:01.116',3,NULL,NULL),
('8b5e9a20-db1a-4fcf-8fe9-eaab2507cebb','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL,'koltuk takımı 3+3+1','2025-03-11 08:25:56.380',4,NULL,NULL),
('8b903902-c3bc-4e33-ba59-0a5aa28db73c','7c6c2dd1-52e2-4059-a97e-d340167fe009','97b398f2-80b6-451a-9f85-a2ba41ea8f7f','karyola','2025-06-18 21:00:00.000',0,NULL,NULL),
('8b91c5e7-c071-4573-88e3-5264c5dc164a','9bc7ed7a-88ba-4843-ab9e-94956f2066a3','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-27 08:00:00.000',0,NULL,'2025-08-29 07:32:50.941'),
('8b9be79c-034c-4491-9980-ad94bae49b22','e02cad26-f190-42d8-831b-be16442b5e99',NULL,'Mobilya ','2024-09-16 07:21:24.696',0,NULL,NULL),
('8baea4cf-59e6-4595-a565-1754d9ca8bb7','effb3586-1055-4a6a-95db-95d0060cdeeb','36e82dc9-b163-4baa-9c0d-aca42aa818b7','köşe koltuk','2025-07-23 09:00:00.000',6,NULL,'2025-07-23 08:01:06.513'),
('8bbcabd7-b713-467c-b726-eb4a565c2d3d','4d829d78-94c2-4e78-a544-eebc09aa13b0','b151728c-b265-4eed-b5c1-cb53409fb775','berjer','2025-10-29 15:40:48.000',1,NULL,NULL),
('8bcd3bef-44f2-4815-a2ff-2c0ee1351324','55512975-1b08-4931-aa51-a204463134c2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','45 çap koyu Ceviz Sehpa','2025-02-19 07:54:06.499',100,NULL,NULL),
('8bdf2fd9-df04-4cf3-9e65-a87dd36dc1ab','2c93b982-af74-4681-a002-6a0883ae7377','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı','2025-06-11 21:00:00.000',0,NULL,NULL),
('8be2c2d6-a463-45ae-938a-90a949953910','e7f656e7-35d0-4f99-bacd-ea6a85d14230','b151728c-b265-4eed-b5c1-cb53409fb775','KÖŞE TAKIMI','2025-08-25 05:00:00.000',2,NULL,'2025-08-26 15:35:18.056'),
('8beca2df-7a47-4d0b-b3bb-89209ce0b5c5','2e84e42f-b241-4285-8be1-464db22053be','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-29 05:00:00.000',0,NULL,'2025-08-30 15:33:04.344'),
('8bff430b-7a96-4c68-8e7b-4099c51a0966','a7a425bb-cfdf-4d19-a194-e17082ccd37b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100 çap açılır marmo masa','2025-08-22 00:00:00.000',2,NULL,'2025-09-08 14:48:55.935'),
('8bff9e3a-f9c2-4823-b36c-e38dbf3ff3c8','33c1702e-09af-4ac6-992c-6abbb6899f2c','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-05-05 21:36:28.000',5,NULL,NULL),
('8c14a8a8-cbf6-4164-b5d9-66d11db192a6','f87bc653-3c5c-4043-891f-2ac7f87b388a','710495b2-769c-4898-a829-bdc3d55f5a67','köşe ','2024-12-30 21:27:56.000',0,NULL,NULL),
('8c1d061a-bf51-4cca-b610-45c125718335','7ed51e97-f73a-473a-bca0-1959c9e5c202','d00fcabb-1fa6-406e-975a-645a02949630','340*170 CM ÖLÇÜLERİNDE NİKOLA  L KOLTUK ','2025-10-13 12:00:00.000',0,NULL,'2025-10-23 08:23:03.814'),
('8c20d2c3-b3a4-41fc-a624-75080aeae334','aacfdb28-66df-4a6f-8b8d-f575a38b002b','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-05-08 21:04:55.000',3,NULL,NULL),
('8c2422b1-01c5-4a6d-9049-4906bf144020','cf4c67d0-26de-41bd-bd58-ca5a3375fb32',NULL,'KING PLATIN BAZA SETİ 180X200','2025-10-19 18:00:00.000',0,NULL,'2025-10-22 07:36:34.455'),
('8c381124-abe0-44ea-94a9-c379625d2023','fcd7666d-0415-4ff3-a449-800232806032','62fd202f-cdb0-47ed-839d-62ed1e68a513','YATAK ','2025-01-29 12:00:24.000',1,NULL,NULL),
('8c3a6528-ef31-4989-8531-7ec536f3c6ec','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL,'tekli','2024-12-09 15:14:02.020',0,NULL,NULL),
('8c3a9387-2db4-400b-95fa-11aef6c745f6','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL,'Mobilya','2024-08-10 15:30:19.995',0,NULL,NULL),
('8c693503-567e-4248-ac87-87cc19afee8a','bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51',NULL,'sandalye ','2024-11-14 19:37:52.134',3,NULL,NULL),
('8c6d3954-b4ff-4e4e-9adf-d9dfddf0789f','3a570254-b092-4922-92c1-beea8773ea63',NULL,'YATAK SETİ','2024-09-28 15:27:22.290',0,NULL,NULL),
('8c84c11f-8810-47ad-aa22-9fb50bc05d1a','cea81038-a341-47c6-8f8b-905346a6e5b0','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-22 18:00:00.000',4,NULL,'2025-10-06 11:23:37.282'),
('8c89c896-aa4c-4213-a9a4-e6b651c8ca67','a3c1d16e-1d65-47ab-9a96-281fee178cfd','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','6 ADET SANDALYE','2025-10-28 13:46:40.000',3,NULL,NULL),
('8c914f01-f6d0-4909-9906-64f504e70316','18ef4d21-d80d-45a3-9290-b7d6562f11b5','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe +puf','2025-08-21 02:00:00.000',0,NULL,'2025-08-26 09:15:27.139'),
('8c9180d9-d9c0-4e6f-9a20-abb4310975d2','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL,'KOLTUK ','2025-03-24 21:00:00.000',0,NULL,NULL),
('8c9b45b9-09dd-4bf8-9d3b-dba3a172f00b','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL,'ARTOO ÜÇLÜ KOLTUK','2025-03-26 21:00:00.000',1,NULL,NULL),
('8ca62177-fd4f-4b97-8db9-1855dac0207f','08723415-4b6f-4a95-a326-2405074a7498',NULL,'Park','2025-07-17 21:00:00.000',0,NULL,NULL),
('8cc650a8-67cc-4e6c-b514-6243b6970c09','e792b913-8e00-4617-bf8c-27fc2a7933e2','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe modül ssh','2025-03-03 21:00:00.000',1,NULL,NULL),
('8cc791df-a02d-4abc-a3b6-01b16d6a7ffc','00f4949d-f6aa-4775-913c-9c6fc75113bf','b78426e8-87ca-4d84-878b-11136d2e5719','ALYA KOLTUK TK 3+3+1 2TKM ','2025-09-23 15:00:00.000',0,NULL,'2025-09-29 09:40:21.723'),
('8ccdb1f8-160d-48df-824e-2c174e594970','90462b6a-6fe2-4fba-8b01-1afd6272a71f','b4c728e2-9757-4b03-a904-c0a57f6b0db5','baza 2 adet','2025-07-10 01:52:46.000',0,NULL,NULL),
('8ccf1da0-f5a6-43c4-a953-8d0167d86614','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL,'KOLTUK ','2025-04-27 21:00:00.000',0,NULL,NULL),
('8cd4a26c-7315-4593-a024-43b3649529c6','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'sandalye','2025-05-30 06:07:31.342',0,NULL,NULL),
('8ceabc6f-ce46-40c7-8fcc-4d00d4a393f1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL,'PIER YEMEK MASASI ','2025-09-04 01:53:30.000',0,NULL,'2025-09-23 07:48:43.164'),
('8cf1c134-2d55-438d-84fc-b33192eae93f','927e12ff-5564-4a31-a8d5-f4d5eaffc582','c6928307-fe5c-4de5-b14e-5dd7e33db94b','HARMONY YEMEK ODASI 8 SANDALYELİ','2025-07-31 07:40:00.000',999,NULL,'2025-09-15 10:19:46.239'),
('8cf4139e-7d57-4a28-9a02-b3da51835a61','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL,'c sehpa+puf','2025-09-19 05:34:11.000',0,NULL,'2025-09-22 17:08:51.481'),
('8cfe9d22-5427-43f8-8477-4b5c89b07842','54227612-b8f2-4146-ac20-5622ca9f45c2','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','T SANDALYE ','2025-09-29 20:32:08.000',0,NULL,'2025-09-29 09:40:11.070'),
('8d05832d-fc40-44ef-a024-a5cac327a362','d313ceae-a8f1-4f54-ba81-fe9e81fef554','986ea798-92fc-489e-a2a1-14fdd3a746fc','PİER 3+3+1 KOLTUK TK VE KUMAŞ','2025-09-10 08:09:28.000',3,NULL,'2025-09-15 10:45:55.315'),
('8d062431-1a4c-4054-b1a1-188c412c0dd2','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL,'Natura sandalye ','2024-12-10 12:29:24.484',3,NULL,NULL),
('8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL,'MOBİLYA','2024-10-11 09:33:04.069',0,NULL,NULL),
('8d348f39-aab0-4774-9035-903836bd3dac','4a38f569-617d-48cf-b0fc-27e25fd3884e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten masa ','2025-09-17 12:00:00.000',3,NULL,'2025-09-23 13:02:33.283'),
('8d35edd1-d68f-4751-990b-5502af59bfdf','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL,'SANDALYE','2025-07-25 07:06:39.000',3,NULL,'2025-08-06 13:16:59.747'),
('8d3d3650-c22e-43f0-9360-325f2df43f5c','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL,'DELÜXE BAZA SETİ 100X200','2025-01-28 21:00:00.000',3,NULL,NULL),
('8d3fa788-c77a-4035-9d01-ee54f43ff9d3','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL,'Mobilya','2024-07-24 09:53:14.935',0,NULL,NULL),
('8d585801-a119-4a76-8c31-8af2563e8b8c','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('8d63ddf2-2a6e-45d5-9ceb-635a8d8500ba','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL,'Vegas Sandalye','2025-05-12 21:43:07.000',3,NULL,NULL),
('8d699de2-21d8-46dd-9aa9-c9ce8e6508c6','9fe64691-2031-49a6-a917-f5af8aa63a82','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM KONSOL MASA SANDALYE','2025-08-19 02:35:39.000',0,NULL,'2025-08-28 12:58:21.717'),
('8d71467a-cada-42f2-a7b0-5507af419d94','7ac45678-811d-4aea-b89d-0ec5dbedd607','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-21 07:51:35.000',3,NULL,'2025-10-14 14:31:43.007'),
('8d77ac35-40ae-4d32-8c64-07f636272862','8f46653b-9700-4005-98b3-aae1d0eac6e1','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','TREND SANDALYE ','2025-09-25 05:39:21.000',0,NULL,'2025-09-26 14:03:38.978'),
('8d8d7e39-f8c2-4085-9ac6-93f2c29e0897','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL,'KING PLATİN BAZA BAŞLIK 160LIK ','2025-06-22 21:00:18.000',0,NULL,NULL),
('8d8e00ca-192c-4792-878b-4eb79812e542','f1dc4c15-b727-4694-84c2-391d5782dae4','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-28 16:08:05.000',1,NULL,'2025-10-03 09:26:59.254'),
('8d8f5e69-a32f-4bc3-91b6-8db313adc977','bf3e9a97-34cf-4695-a98a-6443fec6e1ad','14580cb3-7786-42f0-876a-bf93eb5ed8c1','3 adet 3 lu kanepe','2025-10-22 15:00:00.000',3,NULL,NULL),
('8d936761-2bc7-4386-9965-cc7665cb6779','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL,'dolap kapak','2025-04-24 06:49:50.776',1,NULL,NULL),
('8db511a4-512c-43a9-a77b-c2c5b692a613','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL,'YATAK BAZA','2024-11-11 21:00:00.000',0,NULL,NULL),
('8dc0b39c-684d-4b5b-a6e9-3bcaa00ce7ac','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'ORTA SEHPA','2025-10-10 06:01:54.861',0,'2025-10-21 23:34:14.759','2025-10-15 09:06:41.528'),
('8dc747cb-b372-42a7-a610-18e2ac9a01fe','d6c86bc4-621a-47c9-bff7-65a8004b9c59','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Köşe koltuk ','2025-03-08 21:00:00.000',0,'2025-03-12 08:20:52.292',NULL),
('8dd2c090-c3cb-4f5f-9b42-8f83f29410df','d4bc4878-9923-4ef3-b0a1-5cd730e1777a','b94604cf-4431-4d3a-bbbe-0fab66df0701','sandalye','2025-08-04 12:40:10.333',3,NULL,'2025-08-11 12:54:56.037'),
('8dde8102-083c-4c44-8219-82ffade775cc','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('8deacde5-3bb8-4300-9f05-ea02527065c5','076f6dac-8fe6-4bac-b210-2dda825192db',NULL,'4-3-1 koltuk takımı.   3 paket sandalye. Masa orta sehoa yatak baza','2025-03-05 21:00:00.000',16,NULL,NULL),
('8df7abbd-ed3f-42e9-ab14-f865fa00f9a1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL,'DÜĞÜN PAKETİ','2024-04-01 09:19:57.634',0,NULL,NULL),
('8e02a371-acd3-4f1e-9f76-1614cdddbfda','267f6081-c782-4fae-8e62-aa926bd63c79','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-08-07 13:00:00.000',2,'2025-08-18 13:08:34.594','2025-08-08 11:39:38.465'),
('8e0af130-fb4d-46ba-a038-bfa1e5b9d93f','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x120  traverten orta sehpa ','2025-07-04 10:08:27.000',2,NULL,NULL),
('8e2fd94c-00c3-4478-8b6b-5fb1929f61dd','d55fdc55-0652-4c3e-b972-a81ea4a847af','7ef18eb6-fc54-4770-be95-51abea3c644d','Sandalye','2025-02-17 13:00:00.000',6,NULL,NULL),
('8e317333-4917-4a57-b2a0-6592178a7d36','61f09758-c694-460b-870c-7202dd8cbfcc','7cee164b-481d-4cb6-9e7b-0bc4a72c20c9','KOLTUK','2025-01-28 21:00:00.000',3,'2025-02-05 22:20:24.887',NULL),
('8e39c973-c918-4ebc-bd24-9e7fc61de240','3a203b82-4de4-41c8-a1e5-3cd5ed8aa42d',NULL,'MOBİLYA','2024-03-15 14:13:51.867',0,NULL,NULL),
('8e4621f8-e2f6-4c06-a542-51aea08e56af','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3','8bb05e8a-f1f6-46ce-a021-ac0443000481','EFES KÖŞE TAKIMI','2025-01-20 07:00:00.000',4,'2025-01-24 23:23:20.663',NULL),
('8e61c899-09db-407c-9715-f3b856731f08','308ddadc-251a-4960-a99e-9154ac7e4c88','3f52810e-0163-424b-bafe-fe344a89966e','Masa','2025-09-28 12:00:00.000',5,NULL,'2025-10-14 08:19:09.778'),
('8e6246d2-0976-47a0-a7c6-8176e4065305','953f3501-da44-4096-afef-f255993a1b13','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-05 09:00:00.000',5,NULL,'2025-09-10 08:14:58.514'),
('8e90da7c-ed37-421e-b127-043653dff96c','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL,'70x110 traverten sehpa','2025-01-24 14:07:53.172',2,NULL,NULL),
('8e9264a7-ea7b-413f-be45-63b66a8c7b11','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL,'SİESTA KÖŞE TAKIMI','2025-01-20 09:59:00.000',6,NULL,NULL),
('8eaa55a4-b266-486a-8e75-6260e00887c1','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'DUVA ROMA KOLTUK TAKIMI 3+3+1+1','2025-08-30 09:00:00.000',1,NULL,'2025-09-08 12:00:07.860'),
('8eb817d8-4d04-4bef-b661-229b808c1d12','147e8615-279e-4297-866d-fbccbd1231af','e7186fba-e0f5-4e30-9ba7-04b4c86130a2','GOLF KOLTUK TAKIMI ','2025-07-02 21:00:00.000',0,NULL,'2025-08-06 12:15:50.130'),
('8ebfb5df-a3ab-40d3-a817-7f11ab1bf9d4','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL,'Şifonyer aynası ray takımı','2025-05-06 21:00:00.000',2,NULL,NULL),
('8ec304ac-bf41-40b1-83e5-e7da60bed6bb','603049b7-6bd8-4aed-a159-4c5f400607b7','4fbb639d-63c8-459f-9820-d8a261260d94','6 adet sandalye','2025-07-10 01:49:54.000',3,NULL,'2025-07-17 12:09:54.310'),
('8ec552f9-6d17-49a2-bd58-983becb1bdd6','7ebc061e-668d-437b-b1f8-46651f8f4ce0','d273ca27-8cac-409c-b505-e0ad66831552','DÖŞEK','2025-08-10 17:32:29.048',1,NULL,'2025-08-30 13:24:36.320'),
('8ec65c8d-3654-4122-b978-0e2729ab3484','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL,'1 ADET BOHEM MASA / ODDO LİFE','2024-11-06 10:00:00.000',5,NULL,NULL),
('8f17c546-32c4-4bce-b6c4-52cc5acb71b3','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe modül ssh','2025-08-07 11:30:44.000',1,NULL,'2025-08-21 12:36:53.863'),
('8f1b3fd1-9289-4cd5-ad84-508968f285df','603049b7-6bd8-4aed-a159-4c5f400607b7','44fae8f2-0263-4e71-93cc-b8909d92767e','köşe takımı ve 2 adet puf','2025-06-25 01:50:12.150',5,NULL,'2025-07-17 12:09:54.310'),
('8f27b03e-e6ee-4c3f-878c-5163d5a1ec81','62738f81-bb34-4a26-b713-b7972c5a1fb5','fee7f346-332d-419c-9da4-5a7154085362','köşe','2025-07-17 21:00:00.000',3,NULL,'2025-07-18 12:36:44.009'),
('8f339642-bf4b-403c-9289-3a16f3a3b2e9','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL,'sandalyeve yatak','2025-06-26 07:39:06.846',4,NULL,NULL),
('8f501b28-7e24-4062-b6f1-a5ff7b1353fc','6e6afc45-76dd-42f4-bded-f2fada436aff','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-07-16 13:00:50.000',3,NULL,'2025-07-16 13:21:33.265'),
('8f72b70b-7145-4d62-a9c5-ef581e128182','2b6577a2-c3ad-4aca-8b8b-446c848207f1','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm beyaz sehpa','2025-08-01 11:39:22.389',2,NULL,'2025-08-11 12:47:54.221'),
('8fc5f89e-11f8-4c78-89ff-58a50cef1eae','9db12415-2152-439d-bb63-bebefc3c640c','b4b527e9-c851-458f-9238-9049a66f2c90','masa-konsol-tv-ortasehpa','2025-01-29 21:00:00.000',8,NULL,NULL),
('8fc7023c-7fab-44ae-a533-006d835eddb6','3008395f-ad73-440c-95df-6a289efc5dab','67c34dc2-4657-4323-8fc0-4ff05ed31067','yatak odası','2025-05-08 21:56:17.000',999,NULL,NULL),
('8fdb1f9f-ce3b-4900-a3ad-0a817d4437e7','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL,'90x190 Traverten masa','2025-01-16 21:00:00.000',3,NULL,NULL),
('8fe29599-72ef-42ee-9679-c366178fc1f4','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL,'ORTA SEHPA','2025-06-16 08:36:59.929',0,NULL,NULL),
('8ff98b27-68cd-48ee-b052-74aac1b70886','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'PERDE','2025-10-08 15:44:31.589',0,NULL,NULL),
('8ffb2633-95e1-42c6-91cc-be4266d6e2da','2866225f-68db-4e77-83ab-5217fbdc2e85',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('8fffc38d-a174-4cb8-aacd-f14bb2d38bac','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL,'AAAAA','2025-03-07 21:00:00.000',0,NULL,NULL),
('90027eb5-a7ee-4012-a376-a73b2e0c56b0','e34a405c-b206-4de1-aca3-4f8e33268107',NULL,'FELİX KÖŞE TAKIMI','2025-03-03 21:00:00.000',0,NULL,NULL),
('9021f98a-5560-40bc-8478-4da85897fec7','1bb074a3-ddf3-432d-9ee8-e36060092ef8','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-01 18:02:57.000',6,NULL,'2025-09-02 10:35:01.832'),
('902aef44-bdc3-4e37-99aa-8a4094073651','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL,'mutfak masası + perde ','2025-10-08 02:31:13.000',3,NULL,'2025-10-13 09:39:05.630'),
('903069f9-ac21-4d89-b9a9-f79c90780780','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL,'MOBİLYA','2024-09-28 16:00:45.637',0,NULL,NULL),
('903702b3-6f90-4c5b-84bc-cee636b31ae3','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN GİZE KOMODİN','2025-08-28 02:05:33.000',1,NULL,'2025-09-08 12:00:07.860'),
('903795d1-74c0-4123-a09d-00392e52b276','994456e0-b759-4b05-827f-74c05ad02194','55934c55-9fe9-46ce-b8a4-cf7669e12b21','SANDALYE','2025-09-21 00:00:00.000',6,NULL,'2025-10-06 09:23:40.745'),
('904ba84e-2a4d-4a46-9ec4-7fcbbbdd4913','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL,'VODA KOLTUK TAKIMI','2025-03-03 21:00:00.000',3,NULL,NULL),
('904ccae0-124e-44d4-aea2-8615bcf196d5','36d04374-8820-448d-9e27-e2a098baa9f9',NULL,'MOBİLYA','2024-12-12 21:00:00.000',0,NULL,NULL),
('90531b95-eb66-4c07-9e68-b2c510b7b356','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL,'KOLTUK ','2025-03-11 21:00:00.000',0,NULL,NULL),
('9064014f-b213-4017-8a26-f5ee2179876f','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('907568bf-89b8-4c3c-a623-cbe063a6a673','25d12410-c8e7-490e-98e0-9ef0a0d9272d',NULL,'Kasım ayında teslimat','2025-11-01 08:25:10.000',1,NULL,NULL),
('9078f690-7464-41bd-aa0f-d35d75158aed','eb7486ef-1def-475a-94cb-2a65d39933d5','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-08-11 12:00:44.000',0,NULL,'2025-08-13 09:22:52.038'),
('90841100-26bb-4ce0-8b37-9712689c76c9','8ab9b43a-c91d-4cac-9d3a-646d10808a99','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-01 15:00:00.000',5,NULL,'2025-10-03 09:18:59.833'),
('90b38707-b6b2-4dd8-8fa2-ac99a8a3b95e','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL,'90*190 Traverten masa ','2024-12-10 12:27:56.309',3,NULL,NULL),
('90bdd797-29e0-469d-83fa-a093a91bd2bc','2bfb4ebc-a071-48f5-9c44-727046a13ab1','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET TV UNITESI ','2025-09-15 21:44:08.151',1,'2025-10-06 11:36:41.942','2025-09-17 07:28:57.521'),
('90be6683-192d-40f1-b3bd-fc6bba665fa2','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL,'BOHEM YEMEK OD.','2025-05-07 09:03:27.020',0,NULL,NULL),
('90cf749f-c053-4b41-a940-3f8735110a4e','9418fa6a-d578-4e34-8927-b28f347cbf40',NULL,'SSH PARÇASI','2025-02-23 21:00:00.000',1,NULL,NULL),
('90d1e78e-d8c2-4ff3-bfe3-1ae45c015b22','0fadbd30-6b39-4e10-8b6a-91aab0921641','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','orta sehpa','2025-08-14 22:57:55.000',0,NULL,'2025-08-20 12:20:10.851'),
('90f573db-bf35-4042-9450-88ca0e789403','7a1c035d-4dfb-480e-bc9c-b1a62adfa157','98c5854e-8359-40bf-8d64-f3fb052b029d','KOLTUK','2025-10-13 02:55:42.000',5,NULL,'2025-10-13 12:49:43.302'),
('91114ba0-49e3-45a4-8200-76051f282450','a0dca27d-4e30-4743-8f98-0a016e2624ec','8972e4c8-8f15-408c-a596-6783ce86ba09','Ayak papucu','2025-06-25 21:00:00.000',1,NULL,NULL),
('9114ad70-d53e-4d1f-89c7-30585d0a43de','cd21e329-02ee-479d-aa79-d66d804db51d',NULL,'MOBİLYA','2024-03-14 14:34:47.677',0,NULL,NULL),
('914c35b6-7134-4163-8911-cbacbed3fcb5','eb029e46-e69e-4bea-b717-f1c575aa7ca7','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','2 ADET KARYOLA','2025-09-16 06:00:00.000',4,NULL,'2025-10-03 13:01:22.097'),
('916fd678-d465-4976-acbd-ecbf61315197','db66575e-7eb2-4dcc-8fa6-1fe6496897e6',NULL,'KOLTUK TAKIMI','2024-03-18 08:47:07.651',0,NULL,NULL),
('919abdcd-92a3-4f54-8e52-871167a8810b','9665df81-a895-4779-ad78-e6fc3e7f28df','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-30 01:02:58.000',1,NULL,'2025-09-22 12:01:19.065'),
('919cfe4d-f9d6-40fb-a788-38170b409e4d','1f7b65a0-1a7c-4441-b49f-65934040cb94','b6781cc4-4ba5-457f-975e-ee2a01f09909','Masa ','2025-08-14 04:00:00.000',3,NULL,'2025-08-19 11:17:56.299'),
('91a053e6-4d43-473e-a6c4-c685892363c6','42fcea6f-25da-443c-8add-2a8f44573b78','44c404b3-a618-4af5-bdfb-ad381f049053','frida köşe +kumaş','2025-09-22 12:00:00.000',4,NULL,'2025-09-25 07:35:50.962'),
('91b1853c-0746-4c2d-89d6-c2fe0be8f025','9e04acec-f940-4ce2-9a36-44b825987e05','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-03-06 21:00:00.000',0,NULL,NULL),
('91bd5cab-6fcd-41cb-966e-9b9d6f32b15f','69e1fe5a-461e-4d68-bdbb-b22f7bc39bdf','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Msm01 baskılı masa','2025-10-24 12:00:00.000',3,NULL,'2025-10-24 08:11:07.046'),
('91c2b8db-b8bf-4f8b-839b-0f2531db54de','aa2cf5a9-9070-43b4-b152-2dfe60634cc3','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','FALCON BERJER ARKA SOL AYAK SİYAH RENK 1 ADET ','2024-12-19 21:10:58.000',1,NULL,NULL),
('91caf0f2-3247-41a8-bac8-85a7da9a1ea1','bf69a70a-73ab-451f-bc43-7e834619f2e6','8c6ecba8-6768-4127-80ba-c9c71d442689','FRİDA ORTA SEHPA + PUF ','2025-10-12 14:17:28.913',0,NULL,'2025-10-24 16:10:28.556'),
('91d10b70-a38a-4473-a688-7e33b18968e3','b4816c73-13ed-40e0-87cb-f3536c1d3140','5f260a62-f21e-45a8-9b8b-8bd8c1084273','köşe koltuk  ve berjer ','2025-10-04 09:00:00.000',0,NULL,'2025-10-08 08:19:58.908'),
('91ea3c10-8c22-491e-b87c-0ed70a1b566e','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-09 21:00:00.000',2,NULL,NULL),
('91eefa74-23bd-4d2f-b604-3135beb41a9e','96a8795c-0926-4c3d-9071-8628d0419669',NULL,'Sehpa üst,ayaklar','2025-09-14 15:00:00.000',3,NULL,'2025-09-15 11:51:27.180'),
('91fb1a96-2420-46ea-af10-b13095d4de25','e5d95e08-a8c0-4133-845e-d93395f55044',NULL,'KOLTUK TAKIMI','2024-10-11 13:40:10.916',0,NULL,NULL),
('9212dfa8-08b3-4e92-93bd-a594eaf017b6','aa3f39f2-a374-4662-9b70-6a623142a920','f6b088d3-e3bc-4d15-8fc9-2cdc074c6759','AQUA YEMEK ODASI KONSOL MASA 10 SANDALYE','2025-07-30 12:53:16.364',0,NULL,'2025-08-30 13:54:12.264'),
('9218bba1-6810-48e8-a437-5cb03537fefb','eb029e46-e69e-4bea-b717-f1c575aa7ca7','9669c217-666c-4acc-a115-b560280110d5','MASA','2025-09-21 21:55:26.000',2,NULL,'2025-10-03 13:01:22.097'),
('9238ecd1-3415-4c31-9775-89dd0b8f0e6f','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL,'ORGANİZASYON MALZEMESİ','2025-02-06 21:00:00.000',0,NULL,NULL),
('9241117c-53b5-42db-82a8-c617058ead5e','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE ORTA SEHPA','2025-05-26 21:00:00.000',1,NULL,NULL),
('9248be40-4180-48bc-9c4e-50a1e7dee4f1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae','26360aba-80e2-46ad-b172-f1052f9526f6','Karyola','2025-07-15 21:00:00.000',0,'2025-09-01 10:25:09.778','2025-07-17 09:28:12.669'),
('924e48ef-5b3c-415b-b550-ff097e5bc766','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ MAGNASAND 160\'LIK BAŞLIK','2025-10-03 00:00:00.000',1,NULL,'2025-10-03 11:30:00.509'),
('92523d7c-907b-4b9a-a402-b0faaa28d904','571ee7d4-2abf-4a45-83e7-822277468f5d','ee094406-7b7d-4dff-bdda-d300b0b6d971','koltuk 3+3','2025-10-22 18:00:00.000',2,NULL,NULL),
('927ceb65-f6d3-4068-b0ea-1412cfd0a754','792dc306-a786-4b24-b735-ba05b7a72e0d','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','YEMEK ODASI ','2024-11-14 21:00:00.000',8,NULL,NULL),
('9283d2d7-9cf2-48e1-a59b-c4fb7ce45934','361c79f6-d2f7-4391-a551-aeba4ac518de','f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','SEHPA','2025-07-21 06:00:19.000',4,NULL,'2025-07-28 07:48:39.536'),
('92a145d8-7167-461b-8674-419e94785674','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL,'MOBİLYA ','2024-12-01 21:00:00.000',0,NULL,NULL),
('92e02261-d3b3-42dc-8ac1-036450a8ff2e','b52c4507-aa46-4c8c-844a-4ab37f665946','b044c797-8c15-4ef0-b74b-c71ffa32d77d','1 MASA AYAK ','2025-10-21 21:00:00.000',0,NULL,NULL),
('92e74cc1-8870-45fa-ac8e-6a5609a5c837','9c0b1881-fd94-413c-b7b5-63b9d4d26501','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 milas beyaz orta sehpa','2025-03-19 08:30:02.000',2,NULL,NULL),
('92eefcaf-225d-4459-b297-1d8d499b03f7','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('92f102b1-d7fb-464d-93f4-22a19907a485','5d3f012b-7248-479f-97ec-c01599311f5c','51246f79-a4dc-4379-81c8-e874ed8759be','Regnum Tv Ünitesi','2025-02-21 07:00:00.000',3,NULL,NULL),
('92f4338e-023b-42d8-a569-19b0439633e2','c0cc8fc6-08f2-45a3-a974-7d378329a372','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','Köşe koltuk','2025-03-03 21:00:00.000',5,NULL,NULL),
('9342288f-d53a-4162-b6ba-b88ee7f6ffa7','72f1e393-e099-4538-86f0-2e59b27b9761','0f300a3b-b3d6-4b60-924b-aa70cd54141e','1 ADET SSH KANEPE','2025-01-08 21:00:00.000',1,NULL,NULL),
('93520bea-c117-4d0d-9465-ab822f8cafcf','8ddba844-a989-499f-a6a5-be77dd52ea3a','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-10-30 09:13:24.000',1,NULL,'2025-10-14 14:26:17.540'),
('9352c514-0fdd-48fa-b56e-282bbbd800a9','72595593-1c70-4451-8d5d-15322ee88f0f',NULL,'MOBİLYA','2024-05-10 06:29:13.751',0,NULL,NULL),
('935af86a-a819-46c9-a98a-5fafcca8b463','1080adba-e901-4380-93d1-e3ffaab7c355',NULL,'DELUXE YATAK ','2025-09-21 17:38:03.000',0,NULL,'2025-09-25 11:44:15.130'),
('93682f23-197e-416d-95a7-a04da3e2c257','9e65ae08-29b6-4cde-954a-39f0530ce16e','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Köşe koltuk ','2025-08-10 21:00:00.000',0,NULL,'2025-08-13 13:47:59.318'),
('93aa21e5-fa9e-47a0-aea0-166deeae3117','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL,'KÖŞE KOLTUK','2025-04-23 21:00:00.000',4,NULL,NULL),
('93afdce7-a081-40fc-8b48-e34cca1780b6','3d40d0f6-e7bd-434d-934e-23f8c73df745','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-09-16 05:58:38.578',1,NULL,'2025-09-18 08:26:26.281'),
('93bf5a0c-675a-480f-8279-33ede48fd263','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa','2025-09-02 05:00:00.000',3,NULL,'2025-09-03 13:31:25.742'),
('93c2bcb5-e4ca-453f-93ac-555fe7a16948','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL,'TONER','2025-02-06 21:00:00.000',0,NULL,NULL),
('93d194c6-8c22-469f-9141-d04ae150353e','bff7b018-9fd3-45fb-bd37-fd078042b359','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','SANDALYE','2025-04-30 07:32:34.529',4,NULL,NULL),
('93d1d37f-6e44-4ea6-b46e-463c513b5740','97df81d0-5a59-4e29-bb48-4768b4a079cd','0f300a3b-b3d6-4b60-924b-aa70cd54141e','yemek odası ünite ve sehpa','2024-12-30 21:00:00.000',14,NULL,NULL),
('940732e5-0ff2-4104-8730-71ae631a2346','0f7a8dca-9600-447a-a216-28087b5362ba',NULL,'SSH ','2025-01-30 21:00:00.000',0,NULL,NULL),
('940aa57e-21e8-4cea-ad18-82859c22f018','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL,'Star köşe','2025-05-22 21:00:00.000',0,NULL,NULL),
('940baea8-49f3-47be-a090-24a0e87edc79','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL,'C Sehpa','2025-05-13 09:11:55.999',1,NULL,NULL),
('9419dc7f-432b-401b-a4af-9a875d851a21','e4810702-1740-40c2-9d61-e9412939d07c','afd23062-6aa0-4d23-90f5-fd76536bb033','PUF ','2025-05-14 07:56:12.165',2,NULL,NULL),
('94241ada-8d18-456b-b4cd-1abce195d23d','64d8448e-d8f7-4534-941f-050bce796337','54695867-3acc-4cb4-bb9e-c67e92691a43','6 SANDALYE','2025-09-16 15:00:00.000',3,NULL,'2025-09-18 12:46:43.070'),
('94265c38-053f-43ac-95e5-6d1b08ae3c22','16c1502b-604e-4738-a2f1-13c522febb96',NULL,'KOLTUK ','2025-03-09 21:00:00.000',0,NULL,NULL),
('9437e5bc-0bc0-4924-adb6-d303a80c1c2a','9a46cc66-4f61-498a-861c-8abfaff03b4a','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-06 04:00:00.000',5,NULL,'2025-08-07 12:28:55.524'),
('943d063f-08bd-4675-85e3-b9d53ebf2480','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL,'MOBİLYA ','2024-12-17 21:00:00.000',0,NULL,NULL),
('94458a15-6cfa-4c1a-9757-61589c04b616','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','tv ünütesi','2024-12-28 20:08:50.204',0,NULL,NULL),
('94470f07-2500-47ea-83e7-2660e0c8d460','623aef24-2f33-4ceb-b49b-a0d41b424435','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','Konsol -ayna ','2024-11-24 21:00:00.000',3,NULL,NULL),
('945d8ccc-c45e-47fc-ba3b-1163cd4e1ef9','396cb143-14ce-480a-8762-a43699b4d2d2','fd4cb148-ef62-4367-96b8-3a23cb242f38','3+3+1 koltuk takımı','2025-06-22 18:00:00.000',4,NULL,'2025-07-31 13:24:20.946'),
('946088d6-5f79-474b-a7dc-acd8e48b3b24','eb7486ef-1def-475a-94cb-2a65d39933d5','fd87365f-791b-4129-a329-2bbc5296e508','orta sehpa ','2025-08-06 12:00:54.000',0,NULL,'2025-08-13 09:22:52.038'),
('9475fb01-96e7-43e2-98ce-8bd32bc925f5','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ESKALA LİNE KÖŞE BLOK DOLAP','2025-02-18 21:31:35.000',1,NULL,NULL),
('94835fc4-cdbf-43fd-9e53-57c279b2f8c2','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL,'DOLAP KAPAK ','2025-09-25 05:40:40.179',0,NULL,'2025-10-03 15:15:16.944'),
('9486e3cb-00fd-42aa-a1a2-44d5da68af36','0d746c5c-f194-4ed9-b71a-bf56f53af841','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','SANDALYE','2025-09-11 01:24:12.000',0,NULL,'2025-09-11 11:07:34.965'),
('949e4a7a-6c6c-49da-ae9a-0534ae51f65b','0d5fa9af-726d-48a9-a5d1-c407a279f76f','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-09-23 05:31:34.000',0,NULL,'2025-10-09 11:31:39.410'),
('94c4f556-9786-46f2-b2fd-19ec8d6e3641','78463605-c329-4929-b567-24a3f88f4b7d','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','köşe koltuk ','2025-05-25 21:00:00.000',5,NULL,NULL),
('94cfaea7-2f9d-4bfa-aded-631dec09e78a','558ade04-1baa-47ac-99df-233551c2e4c2','ec4b1d3a-a177-4e0c-a8eb-63202489d044','SSH DOĞA MODERN PARİS KANEPE ALT KASA SUNTASI','2025-10-03 14:21:34.000',1,NULL,'2025-10-03 11:30:36.980'),
('94d4fd15-f663-40b8-8ec9-f93a5cde757c','9a5b1798-a2b1-4df0-a151-463694364cd5','613af80c-91f0-46fc-a2e2-30762123b7bc','LİDYA SOHO 6 KAPAKLI DOLAP-PAKET 9/8 ','2025-09-19 02:44:35.000',1,NULL,'2025-09-24 08:19:17.069'),
('94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL,'Masa sandalye','2025-09-22 12:00:00.000',0,NULL,NULL),
('94df600c-14bc-4088-b6c5-be9e0b0223ee','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00','0f300a3b-b3d6-4b60-924b-aa70cd54141e','kÖşe takımı','2025-01-08 21:00:00.000',4,NULL,NULL),
('9500ce1c-a66b-487e-9839-088fab5075dd','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL,'MOBİLYA','2024-09-03 15:13:00.147',0,NULL,NULL),
('9504c24b-6a37-4522-83ad-b302a5d583a5','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'VİRAL YATAK ODASI','2025-05-02 21:00:00.000',0,NULL,NULL),
('9505974b-8c77-45d9-ab90-d648d60640dd','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL,'KING PLATİN BAZA SETİ 180X200','2025-01-28 21:00:00.000',4,NULL,NULL),
('950eb8aa-72e9-4405-9031-9182cf1b215e','821ce6fd-2cdb-4d44-be55-13bf12a05f4c','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','150x200 set','2025-07-30 21:00:00.000',4,NULL,'2025-07-31 11:49:39.824'),
('950edd95-6cf9-4fbe-b156-c4ec6d470b3b','7ca0c26d-8bbc-4deb-a210-90620aca69ad','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe','2025-08-10 21:00:00.000',5,NULL,'2025-08-11 13:09:15.979'),
('953ed9b4-8d37-4981-a491-9ed5406ea97d','398f925f-e9ff-4494-a4eb-d80689e256ac','cf90c370-208a-4021-aaff-f9220970bca9','Orta sehpa','2025-04-24 21:11:00.000',2,NULL,NULL),
('9547b618-8081-409b-9076-efd2957a9e1c','b2a22a30-754d-42fb-a7e9-beef7ed2ae23','d1ebab23-e578-4ff8-948b-e890ef3a7374','Koltuk takımı ','2025-02-19 21:00:00.000',0,NULL,NULL),
('95668b5a-1322-4bb3-9d03-da02daf206d6','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL,'RAMS YAN SEHPA ','2025-01-29 07:55:53.563',0,NULL,NULL),
('9568170e-e378-4da9-b37b-d9254993edbd','862e4bdc-2e76-4b0a-b6fc-8557101a2020','fc0500fd-31ef-44f7-bbb4-53ed18c6fb58','koltuk takımı','2025-06-26 07:40:31.130',3,NULL,NULL),
('958237a8-ec72-44d8-b7fe-5cff9027bc0b','2d3bf117-ace6-4823-84ca-6f7db821df9b','55934c55-9fe9-46ce-b8a4-cf7669e12b21','Sandalye','2025-07-23 07:56:49.000',6,NULL,'2025-08-13 14:12:38.839'),
('958e3421-c3fb-4426-8a47-54e90cedc4fa','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL,'MOBİLYA','2024-05-11 09:02:53.215',0,NULL,NULL),
('9596d992-b8de-4852-b452-7d44d239e6ba','24b32008-080d-4cf2-b2e3-73b35877738d',NULL,'Koltuk takımı ','2025-02-25 21:00:00.000',0,NULL,NULL),
('95ae858f-49b3-42b7-9b2f-78a022e0217b','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL,'yatak- yemek','2025-07-20 21:58:12.000',999,NULL,'2025-07-22 13:17:33.360'),
('95b23b47-344e-4706-bc50-f1bc5ed6c00c','9e399534-04a6-4572-a7ec-3a630c910cdf','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-10-05 07:50:45.834',4,NULL,'2025-10-10 14:10:22.821'),
('95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL,'KUTU','2025-08-29 21:00:00.000',104,NULL,NULL),
('95ce5cf2-ec3c-4eda-9744-acbeb74d1b7a','39b8366a-c9ba-4484-bb91-a877325d0b1c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm baskılı masa','2025-09-17 09:00:00.000',3,NULL,'2025-09-23 13:01:44.524'),
('9608c74b-ee00-4cb4-8b27-84c43649d0c7','19c26519-0688-4a4d-a323-ec65ddad8463',NULL,'muwa 2 adet kanepe','2025-09-07 00:00:00.000',2,NULL,'2025-09-15 09:53:41.698'),
('96449af3-c272-4a90-b77d-0790552dd455','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL,'MOBİLYA ','2024-12-08 21:00:00.000',0,NULL,NULL),
('968ee2de-a940-498e-9a22-f2f981b860b3','fa70b271-3bdb-47d3-9c07-aed6751f25bb','a59c832a-288a-45ad-9922-f8c1ebf24d41','160*200 yatak','2024-11-10 21:34:27.000',1,NULL,NULL),
('969a892d-9ae7-432a-bed2-24840d90f040','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL,'Köşe ','2025-07-27 21:00:00.000',0,NULL,'2025-07-28 08:02:40.356'),
('96b29df9-d4cb-43b6-888a-d226e592e88a','a39b0448-094c-4d23-ad55-d527d7d7c69d','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','köşe koltuk','2025-09-02 15:00:00.000',5,NULL,'2025-09-05 11:33:07.154'),
('96cdcb33-0f5e-4163-86a5-aee3b79a2394','51128593-b736-40db-b3d3-679310ee1e96',NULL,'KOLTUK TAKIMI','2024-06-08 07:22:20.182',0,NULL,NULL),
('96eec285-a16a-4ef8-91c2-f330c11ec1f8','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x240 cm traverten masa ','2025-04-24 21:00:00.000',3,NULL,NULL),
('970ce809-d746-4f6f-bd69-5842176b3981','0116ba48-a627-4970-bb8d-8e8fd4d8c4af','b6781cc4-4ba5-457f-975e-ee2a01f09909','Masa','2025-10-27 09:00:00.000',3,NULL,NULL),
('971a672e-a142-49a7-a3c1-09bd6fbaa824','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'EVART E336 DEJAVU PORTMANTO ASKILI','2025-08-26 01:59:53.000',1,NULL,'2025-09-08 12:00:07.860'),
('9722a553-1f9e-4d47-9697-a2ef95a51936','4fcf7206-6a08-4a73-833c-a5e8b873c885','21444842-12de-49d1-9480-1c8708a45353','köşe koltuk ','2024-12-06 21:00:00.000',0,NULL,NULL),
('97311471-26e5-4fcb-95c5-cb43846e3f07','bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51','d6ccb679-ec5a-4244-9196-0a164053f2ec','masa','2024-11-14 19:37:11.849',3,NULL,NULL),
('9774f983-7a2e-428e-a849-ec0cde1c3577','db01aefa-720b-410d-8344-0672007b060d','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-08-18 18:00:00.000',0,'2025-09-18 15:08:12.556','2025-08-21 13:58:37.626'),
('97822927-c1df-4d43-a654-b387762a0a87','aaf63331-ccff-4ade-8965-5318b9f59d6e',NULL,'YARIM TIR','2024-05-10 07:19:39.790',0,NULL,NULL),
('979b930a-f53e-4986-8714-bc7b10a23a95','0f40a488-b453-400e-a6e2-874e5a76c787','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','köşe koltuk','2025-03-17 21:00:00.000',4,NULL,NULL),
('97a1b036-0b82-4497-860d-2da51cafb6b1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL,'orta sehpa 2ad.','2025-05-07 21:58:47.000',2,NULL,'2025-07-22 13:17:33.360'),
('97a6e2d5-a920-4592-81a1-c1fbca835c74','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Sehpa','2025-07-29 19:27:02.707',0,NULL,'2025-07-30 11:38:57.254'),
('97aeb5fc-c54b-449b-90bb-f92b6371c714','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL,'MOBİLYA','2025-01-18 21:00:00.000',0,NULL,NULL),
('97afc9fd-6855-41a0-8fbf-b8fe33aa524f','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL,'DANTE MASA','2025-01-01 21:00:00.000',2,NULL,NULL),
('97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6','668dd554-9513-4da3-8f96-649ae0505732','e7220662-73b8-46e4-9f5d-7e977cc23448','masa-orta sehpa','2025-10-06 06:00:00.000',5,'2025-10-09 13:56:54.292','2025-10-09 13:38:38.393'),
('97b893f7-a127-4a4a-8bd0-80a41bea8e55','f9dde0cb-7f13-495b-a653-2354ad04f07d',NULL,'Karyola set ','2025-05-15 21:36:47.000',6,NULL,NULL),
('97bacb2a-1bb4-4976-84a8-04ac9dbcefe3','b7214302-d982-4460-ad8c-ebf440918b82',NULL,'Mobilya ','2024-09-20 07:08:05.124',0,NULL,NULL),
('97bfb755-45c2-471a-806d-4a5234680c68','62f77eb8-8c8f-460b-b294-ae8437220ece',NULL,'Traverten masa kasası ','2025-10-22 12:00:00.000',1,NULL,NULL),
('97cf290b-486e-4260-be59-cd584543918f','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5','f7a414a7-2c9e-474f-8c9d-438ec2b6ac75','orta sehpa','2025-08-15 11:30:08.000',0,NULL,'2025-08-19 14:13:29.293'),
('97e0c415-8243-4192-9049-d6302dfbee27','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL,'M97 MASA','2025-04-11 14:00:00.000',0,NULL,NULL),
('97e21a8f-39ea-4766-9d54-5e58992fcd85','5289d63f-a7a4-464d-80ad-20c84233ff2b','1be238d9-54e3-4094-8d60-66fd5abb87b5','AFYON TRAVERTEN','2025-10-09 21:29:01.454',1,NULL,'2025-10-20 08:57:52.048'),
('97e2aa48-61f5-4871-a432-6b4e926e3487','23c2fb27-3d69-40e0-9027-0877538a4b71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x180 cm milas beyaz masa','2025-06-24 21:00:00.000',3,NULL,NULL),
('97ed1835-e7ce-4f2f-9729-01e5df10301a','91baf8ac-c499-4118-bb77-3c280cca0a2f','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE DOLAP KOMODİN ŞİFONYER AYNA PUF ','2025-09-08 00:43:31.000',0,NULL,'2025-10-14 10:33:41.247'),
('97f30c95-1381-4341-ab94-c74b11d28be8','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL,'KÖŞE KOLTUK','2025-04-16 21:00:00.000',5,NULL,NULL),
('980127cc-cb0b-4694-b945-70457774323b','afda17ee-6395-4bb0-bbe2-3e976e5044bc','6529c390-f12c-433f-93eb-98f59330dac1','KARYOLA','2025-05-08 14:24:47.312',5,NULL,NULL),
('98028208-d659-4d91-856c-e073b5775825','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL,'LOFT GENÇ ODASI ','2025-02-23 21:00:00.000',0,NULL,NULL),
('980e9055-cfdb-4ddc-8971-f55eb0411264','a95b6f69-d856-411d-92e3-628c20975e08',NULL,'MOBİLYA','2024-09-05 15:30:29.557',0,NULL,NULL),
('98100d2d-7751-4a2b-bb57-54993e9529fd','2e959f4e-0d79-4ec0-865b-ff5f684e63bf',NULL,'160lık yatak','2025-10-24 02:29:31.000',0,NULL,'2025-10-22 08:41:57.226'),
('9811dbd3-4c24-47b3-8560-c8e0f8db7d41','8302f8df-382c-4f52-ab07-b0458d742a93','b151728c-b265-4eed-b5c1-cb53409fb775','Köşe takımı','2025-03-20 21:00:00.000',0,'2025-03-24 08:34:09.754',NULL),
('984f1373-fcdf-438b-b771-54cf2b74c91b','aec29545-1708-47a6-a33d-352a69ad4876',NULL,'masa ve sehpa','2025-01-28 07:19:16.283',6,NULL,NULL),
('9866a947-9974-4053-8415-4518842488fe','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL,'Mobilya','2024-09-06 09:04:00.742',0,NULL,NULL),
('98713122-22d9-4f83-b25f-bee68631b924','50101273-0c1d-452c-b0ea-a3c2e64b8022','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-06-25 12:56:07.564',2,NULL,NULL),
('98abb86e-99d9-4e04-8214-f690a2b9fad8','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL,'MERMER MASA','2025-03-24 21:00:00.000',0,NULL,NULL),
('98ac4819-2edd-4fea-bc96-44923470a1a3','6df4ddf2-1d8c-407a-836a-ac83506102f3','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Tv ünitesi','2025-06-16 21:13:17.111',0,NULL,NULL),
('98b0fc0f-1717-4b80-8567-acb020b29102','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1','0f300a3b-b3d6-4b60-924b-aa70cd54141e','düğün paketi+140x200 set','2024-12-17 21:00:00.000',49,NULL,NULL),
('98c45b5c-2d33-4eb7-9b28-ba75cbff2674','2663d683-5300-4689-84a8-995bb05d4342',NULL,'sandalye','2025-10-05 18:00:00.000',0,NULL,'2025-10-10 10:58:52.370'),
('98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4','2f2a9416-f846-4142-bbdc-6f31920db56f','8ceb6cff-0a3c-4c86-ba04-fde8f431d6bb','Köşe takımı-2 berjer','2025-01-01 21:00:00.000',6,NULL,NULL),
('98ed0c79-4eb0-4d2e-8016-7319028da995','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','T SANDALYE ','2025-10-05 14:12:13.000',0,NULL,'2025-10-16 12:30:33.133'),
('98fdfa28-34b5-4c8c-85d4-536b18c03e3b','89246671-a5c1-446d-bc5e-be3c518b5d0e','b4b527e9-c851-458f-9238-9049a66f2c90','ORTA SEHPA','2025-05-08 08:46:04.686',1,NULL,NULL),
('993b0ba7-688d-4747-bc27-d84b8f88b2a2','7d6fb76f-77a1-487b-abf8-27a26b46c803','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','sandalye','2025-03-08 10:10:08.012',3,NULL,NULL),
('9950fe74-2437-4188-83e7-37a1e09fa6f7','9c3d7567-24b3-4c51-9c80-4065af9769a9','82f2850e-d57d-4cff-b891-990a88a4a281','machka karyola ve  şifonyer','2025-08-08 11:40:00.000',0,NULL,'2025-08-11 12:37:44.657'),
('995dfcaf-53b8-4dad-ac21-6f4ba521c6d6','365ff697-3271-4de2-aa7d-b8bcf4ff9590','44c404b3-a618-4af5-bdfb-ad381f049053','köşe','2025-10-13 07:53:54.459',0,NULL,'2025-10-23 09:07:58.928'),
('99667d92-dbf0-44c9-b845-b66e678f2675','1965b9c6-c511-459f-8f4e-dddb4f23f943','fd87365f-791b-4129-a329-2bbc5296e508','masa ve sehpa','2025-09-10 16:46:46.000',0,NULL,'2025-09-17 13:26:28.634'),
('99673d53-ad4d-4fc2-ad49-3653b23e8491','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL,'aa','2025-09-01 12:00:00.000',0,NULL,NULL),
('996ed37d-c099-4569-a00e-f841c4fdaf73','ae77010c-fd9b-4dda-9995-d94d5c8976bb','44c404b3-a618-4af5-bdfb-ad381f049053','monna düğün paket sehpalar vs','2025-07-31 13:20:51.000',9999,NULL,'2025-08-05 06:53:04.333'),
('99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea','6786ccb2-517a-4991-b179-6d41d556a614','a59c832a-288a-45ad-9922-f8c1ebf24d41','baza başlık yatak','2025-07-31 21:00:00.000',0,NULL,'2025-08-12 13:06:53.867'),
('9993c1cf-ce00-41b9-b30a-a98be061c70b','a75c0466-9f5a-4f5b-89c0-9179e86aed34','a33a4b24-0961-4436-ae17-15a7d5334110','Berjer ','2025-08-27 12:00:00.000',2,NULL,'2025-08-29 09:53:41.633'),
('99941240-15d4-450e-9d66-caf7ace9903d','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-05-20 21:50:28.000',6,NULL,NULL),
('999628f4-6414-49b8-9330-8d7f7a351993','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL,'SANDALYE','2025-10-12 12:00:00.000',0,NULL,NULL),
('99bbb574-412c-40b7-82ef-2a54c6e3ec1a','fc5c1bb8-c1d0-4065-b1a8-be81de217222','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-07-23 21:00:00.000',3,'2025-09-01 10:25:23.419','2025-07-29 09:14:07.812'),
('99f3c807-c2fa-4316-8a01-93a1eeeac0f9','2d717ffb-678b-4e82-9f61-5357693131d8','427bd939-f084-4fe2-bfc3-a1c352737138','Karyola','2025-04-10 08:58:00.930',5,NULL,NULL),
('9a012a01-6709-4e0c-9806-61018f9e36fc','7ebc061e-668d-437b-b1f8-46651f8f4ce0','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-08-10 17:31:56.511',4,NULL,'2025-08-30 13:24:36.321'),
('9a0272fb-f864-42c8-89a2-8abe0cac90b2','30b6bd7d-f466-4e5d-98b7-9c04544e31a8','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-07-03 22:00:00.000',8,NULL,NULL),
('9a10006b-3d87-4f21-8a80-57aedb8f97b7','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL,'Mobilya ','2024-10-30 14:43:51.207',0,NULL,NULL),
('9a16eb49-26d3-4e07-a503-649c789c7f9b','688081c7-c067-4206-bac2-763e3648f709',NULL,'Koltuk ','2025-05-11 21:00:00.000',0,NULL,NULL),
('9a19deea-8c60-4c1c-923e-00c7ad1fc71c','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL,'CENGİZ WAGNER','2025-08-31 18:00:00.000',4,NULL,NULL),
('9a2158b1-4eb8-4741-9d0b-70a8ada04f34','13382df8-a786-4221-b2be-81ba3d674937',NULL,'koltuk','2025-06-24 21:00:00.000',4,NULL,NULL),
('9a29c89b-7a06-4e63-88ef-c40eed097432','0e367b6a-44c3-40e4-9097-1055385b6e27','b151728c-b265-4eed-b5c1-cb53409fb775','koltuk takımı','2025-10-08 05:00:00.000',5,NULL,NULL),
('9a4cddc0-2504-4aef-bd37-95e95a6bb8c8','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL,'MOBİLYA','2024-06-08 07:15:54.662',0,NULL,NULL),
('9a5869bd-1a85-42f0-871d-7b58033e4ff4','08b07ff9-692e-4ca8-866e-27a96667e87f','ea34c7f8-20c7-4afc-afb8-0c5a6c548fa4','seramik masa','2025-06-26 12:00:00.000',1,NULL,NULL),
('9a5c9f09-ecda-434f-8efc-112c1bc44fbc','b773320b-83f9-406c-8d3a-312ca17d7ff8','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','DİJİTAL BASKI MASA + SEHPA','2025-06-27 13:00:00.000',5,NULL,NULL),
('9a609c64-d5d7-47f6-a875-badc8cca1ff5','3b7689bf-7ebf-44e3-8355-6807100fe5de','3a7c0902-b3d7-4dac-94d9-f025250358d1','KÖŞE KOLTUK','2025-08-13 21:00:00.000',3,NULL,'2025-08-21 13:44:37.502'),
('9a67f257-16f5-41c1-aefd-0de283426e95','ebbd439c-6c40-425f-adfe-65a9d4bbd563','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-28 23:00:00.000',0,NULL,'2025-09-03 14:35:43.206'),
('9a6b1e5d-c0f1-41dc-840d-52aa575f82eb','25d12410-c8e7-490e-98e0-9ef0a0d9272d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x220 cm siyah milas masa','2025-09-23 15:00:00.000',3,NULL,'2025-09-25 10:46:03.796'),
('9a74cdae-acbf-459b-836a-29ba929835b2','fae6865f-80a7-46a1-9f93-f722559d4617',NULL,'KOLTUK ','2025-04-01 21:00:00.000',0,NULL,NULL),
('9a74deda-3652-44ca-8fa0-b3116126f14c','9d816e36-46d4-475f-ab4d-8dc4e121cb72','310512d8-e1fe-413a-b36c-59893ec30670','SWİSS KOLTUK','2025-02-07 12:00:00.000',0,NULL,NULL),
('9a855e3f-e255-4ab4-a73f-124103d32ad2','d71f7dec-d2d9-43db-b33d-4120e264d90b','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-09-12 06:00:00.000',4,NULL,'2025-09-12 14:46:50.646'),
('9a997c3e-f3b7-4fbf-8029-34548bccc5ac','27e6d149-a838-4bc0-a4d3-7fec20ae44c6','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-10-20 12:00:00.000',12,NULL,'2025-10-22 07:31:46.774'),
('9a9ccdd0-1e6e-4846-8069-0513cec9e7a8','00cb480a-305b-41e6-8cb5-337678c881bf','e6d4ec6a-8b32-475b-bdbd-69167a1ba105','KOLTUK TAKIMI','2025-02-12 21:00:00.000',6,'2025-02-19 09:58:43.478',NULL),
('9aa08cca-4e35-44d4-9e1c-6c316a75f032','1e9ad390-bf85-414e-98b1-b7175b25c837','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-10 18:00:00.000',3,NULL,'2025-08-18 14:53:28.723'),
('9ab6b9aa-9d46-425b-9821-7a56194072cb','35f1b0f1-bc4f-4e6f-8148-f2b91da14c77',NULL,'KAPILAR','2024-09-16 08:20:14.058',0,NULL,NULL),
('9ab6f775-923e-4e3e-9fee-9f6d20dc31b8','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL,'MOBİLYA','2024-11-28 21:00:00.000',0,NULL,NULL),
('9abed32a-1a8a-471f-8e0e-fa085f4225fe','4f563dbc-f003-405e-bdb8-828b7a66d357','2648ebea-6027-48a1-b672-7e6e6b86cd2e','180lik yatak','2025-09-11 05:33:50.000',0,NULL,'2025-09-22 17:08:51.481'),
('9aee98b9-e6a3-433d-9159-2b2d7b7abfef','fc0e2c81-da3d-4fbc-8c40-257556b597e4',NULL,'2 adet bazalı karyola ve yatakları (120lik ve 180 lik)','2025-10-09 21:00:00.000',0,NULL,'2025-10-14 07:45:11.689'),
('9affc7b1-09c4-4e84-b48b-d0c117c421b0','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL,'koltuk baza','2025-08-04 21:00:00.000',0,NULL,'2025-08-05 10:47:55.432'),
('9b00b208-4609-4266-bc02-d90f689a675d','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL,'şifonyer','2025-05-20 08:57:19.952',0,NULL,NULL),
('9b1dd344-e23e-43d0-a03c-7f3b62f2b24c','d78e9aef-d794-44e4-a9be-c55739db8e56',NULL,'MOBİLYA','2024-10-11 13:28:39.707',0,NULL,NULL),
('9b2370ef-7858-4a40-8441-be7d5aa90ef1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL,'ÇUVALLAR','2025-07-17 21:00:00.000',0,NULL,NULL),
('9b274431-45b4-4bea-9a3a-47a596873335','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL,'MOBİLYA ','2024-12-10 21:00:00.000',0,NULL,NULL),
('9b333ce6-5bc7-4a67-b8c1-e8283698a5e8','6f819014-9aee-49bd-a372-9beb415e27cd','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-03-25 17:27:33.396',2,'2025-07-24 10:25:48.895',NULL),
('9b4b6b13-3aa7-4711-906c-6d3c3ffa947c','da4845d7-4297-4d18-8c32-8b56a284257b','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-02-25 21:00:00.000',0,NULL,NULL),
('9b4d1c30-8bcb-494d-964b-89ee11fbb5ec','49b010c9-adaf-47a9-8d72-ec98e9a40479','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-09-09 06:00:00.000',0,NULL,'2025-09-10 14:31:16.213'),
('9b5b0412-ec2b-4e9a-928e-171a1ba921d1','8a01daee-3535-4440-8996-fc7c3e2f3de0',NULL,'YATAK-KOLTUK','2024-03-16 06:50:38.971',0,NULL,NULL),
('9b637b9c-c2ce-4522-a986-3c8fdfd10d6f','862e4bdc-2e76-4b0a-b6fc-8557101a2020','bc1b9fd7-95d7-4d5b-a84e-684140acc414','viral masa ve konsol','2025-06-26 07:36:22.810',999,NULL,NULL),
('9b790a64-be97-41ec-8330-fe02190f5b10','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL,'Koltuk Takımı 3+1','2025-07-01 21:00:00.000',3,NULL,NULL),
('9b8f9120-4d78-4290-af18-3760e08df1d1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL,'SSH','2024-12-27 21:00:00.000',0,NULL,NULL),
('9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02','f8cb67fa-fe67-46a9-9038-d693e382afe9','67c34dc2-4657-4323-8fc0-4ff05ed31067','14 kapaklı dolap','2025-10-13 03:00:00.000',0,NULL,'2025-10-14 11:59:52.759'),
('9b948fc9-34d4-413b-873a-889d552a3e54','fbf1995f-2086-4c7e-b569-f8b57a07eadb','940c6390-4082-4fe5-aeaa-06d180147a7b','MASA SANDALYE ORTA SEHPA','2025-09-05 10:00:00.000',10,NULL,'2025-09-09 15:41:28.390'),
('9b949ab4-e652-4783-bf62-9c9c1bfcb13e','955c7c46-bc72-473b-9a0f-e11f625e9690','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','180x200 yatak','2025-05-07 21:00:00.000',1,NULL,NULL),
('9ba4fbbf-2612-49b9-af34-b6b30652a24a','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL,'MOBİLYA','2024-09-28 15:29:40.505',0,NULL,NULL),
('9bb1caef-a37f-4f55-86cc-6aecc99853ff','75e0c108-e981-4c3f-9706-342da216ff28','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Cuats sandalye koyu ceviz ','2025-10-24 15:00:00.000',3,NULL,'2025-10-24 08:25:46.522'),
('9bb570a5-52bb-4bbc-a797-b2a052d8260c','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL,'Koltuk takımı','2024-05-10 11:59:44.526',0,NULL,NULL),
('9bbd96a6-b7d6-43df-a3fd-6a39a6afe5e3','bff7b018-9fd3-45fb-bd37-fd078042b359','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA ','2025-05-20 08:23:01.828',2,NULL,NULL),
('9bdb0d32-ef86-4a60-96fb-8c31daab68f8','7a71a4e0-3e90-4099-bd84-f11cdef53c31','a3610da8-8e0c-417c-8834-1223bca4fb34','BERJER AYAĞI 4 ADET','2025-09-11 03:06:39.073',1,NULL,'2025-09-12 11:38:12.807'),
('9bdb28e0-34f9-4183-9232-5dbb14529176','6189b41d-2a4c-42b9-b146-5fe82bdc676b','28ca5666-3c89-4dd3-8af0-508ec9c9962b','MASA VE ORTA SEHPA','2025-02-23 21:00:00.000',4,NULL,NULL),
('9bdf29e0-66ce-4558-9d38-95b5c9b769ec','babb1102-d4bb-4eaa-aadd-0d7c27ab01da','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-09-02 23:00:00.000',2,NULL,'2025-09-04 13:33:58.872'),
('9bfaa040-9f60-4f84-8302-c3b21d7b1749','83fe2028-17f9-4b82-a141-f935042a08dd',NULL,'KOLİLER','2024-10-30 13:56:35.445',0,NULL,NULL),
('9c0a403b-3774-44a7-a51a-e2417d862ff5','5045a79c-4874-4baf-b0cf-15d0d296389d','c6928307-fe5c-4de5-b14e-5dd7e33db94b','190cm masa ve 6 adet sandalye ','2025-07-31 02:14:21.000',999,NULL,'2025-08-25 07:03:53.541'),
('9c1d4ba6-1850-4e1a-8b43-78085f9d2415','e94e4dc6-f535-425e-af44-da8f01dfe89d',NULL,'KOLTUK-CAM DOLAP-PERDE','2024-03-16 08:22:11.879',0,NULL,NULL),
('9c3a47f9-66d8-43f2-9294-dd2550985e76','8c3b10ad-bfb3-4939-a407-5ebb29115ccb',NULL,'PERDE','2024-05-04 09:53:50.210',0,NULL,NULL),
('9c69684d-b820-4794-97d0-0096a00b04b0','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','ed12ef84-56bd-4976-b6be-70b358cb3914','PRADA MASA 6 SANDALYE','2025-05-11 21:26:20.000',0,NULL,NULL),
('9c71e41e-a34f-43b0-843d-b59684049b38','2001cb25-64fc-43dd-827f-15869eca039f',NULL,'yatak','2025-10-26 22:06:20.000',0,NULL,'2025-10-22 12:01:50.498'),
('9c776356-2e24-4ef2-8e40-54bae883ae2c','d55fdc55-0652-4c3e-b972-a81ea4a847af','a83cef52-4388-4d39-b97b-ec517ec35be4','Köşe koltuk','2025-02-06 12:00:00.000',4,NULL,NULL),
('9c87d055-322e-433b-9fd7-b8e890d8305b','a97987c9-ee05-4a3f-94b1-9f85768072d8','20fff216-b18d-4242-b3a4-2c73ffb2dd8f','prada koltuk takımı','2025-07-08 21:00:00.000',3,NULL,NULL),
('9c9ece2e-cdef-44ae-9960-980614fe02aa','50b32b06-83ec-4001-a220-a61d557cd0b9','44c404b3-a618-4af5-bdfb-ad381f049053','FRİDA KÖŞE (AYAKLARI KONTROL EDELİM)','2025-05-08 21:00:00.000',5,NULL,NULL),
('9c9ed202-3936-4137-8d05-f95328f6c3e6','c2f23e3e-f784-442b-86c5-a406b57dc08e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','SSH','2024-12-04 21:00:00.000',3,NULL,NULL),
('9cb40408-f83d-4f6f-a77b-88f50327d2d3','7213cf8b-e2b3-4fcd-b9d6-789a0803cc16','0bddb84a-c9d8-4384-ab78-2f33b838a1b0','sandalye','2025-10-29 00:11:33.000',3,NULL,'2025-10-22 09:13:08.894'),
('9cc1860d-055e-43c8-9aca-a2085133ca71','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('9cd7b594-8200-40fa-8b34-5ca5e58b9783','0f326b7b-35d4-442e-8ee4-8437b42beef5','0f300a3b-b3d6-4b60-924b-aa70cd54141e','sibu','2025-03-21 08:40:52.144',1,NULL,NULL),
('9cec7784-226a-4c4e-91ef-982823f6722f','3645be91-e47a-4a21-8c81-c49771ba3639','b78426e8-87ca-4d84-878b-11136d2e5719','SAGA KÖŞE TAKIMI','2025-06-11 21:00:00.000',0,NULL,NULL),
('9cf2d55b-f29f-463e-a172-17eeb3bc4556','8f201baa-69fe-442b-9cab-fa1f47b7420b','b4b527e9-c851-458f-9238-9049a66f2c90','SANDALYE','2025-05-15 21:05:08.000',3,NULL,NULL),
('9cf65b82-6fcf-4ad9-99a2-646a89c35ad1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL,'SEHPA','2024-12-17 15:25:26.993',0,NULL,NULL),
('9cf8adcd-9452-4ab6-b89c-c783d7e0f9a7','f0b80554-e825-487a-9ec5-ec30be5eade8','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3+3+1 koltuk ','2024-11-13 21:00:00.000',3,NULL,NULL),
('9d01daf1-bc0c-44c5-af16-9b7dbb9a3065','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KOLTUK TAKIMI 3+2+1+1','2025-09-07 03:00:00.000',0,NULL,'2025-10-16 12:30:33.133'),
('9d081d24-06c5-4cee-b0ab-52ddef98e867','088fba56-0e50-4ce7-864f-7f301956e881',NULL,'MOBİLYA ','2024-11-10 21:00:00.000',0,NULL,NULL),
('9d15ece0-9647-429d-b49f-1c791fc972a3','b90afa4b-4bfb-45de-b36a-051a3bf6a245','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-30 06:43:06.000',1,NULL,'2025-10-06 13:48:48.579'),
('9d2621f5-d1f9-491e-aa58-96286482a6f3','571ee7d4-2abf-4a45-83e7-822277468f5d','b4c728e2-9757-4b03-a904-c0a57f6b0db5','baza+başlık','2025-10-24 06:54:52.000',0,NULL,NULL),
('9d2d299f-b0bd-451a-a318-5c7d807cea4a','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','VODA SANDALYE ','2025-07-21 15:31:15.000',0,NULL,'2025-08-06 12:12:41.546'),
('9d62738e-2143-45e9-a295-ad7123e774d8','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9','1b00a07c-45ec-40c5-8cbc-2f4fafc15836','Sandalye (6 Adet)','2024-12-11 18:31:31.917',3,'2024-12-19 16:12:47.014',NULL),
('9d62bebe-af83-4e4a-9fb3-8a3ebe7c5907','6ec88ca1-f52a-40e6-9c14-f95cfc64427a',NULL,'BAMBİ BLACKSAND BASLIK 150 CM,BAMBİ BLACKSAND BAZA 150x200 VE BAMBİ BLACKSAND YATAK 150x200','2025-10-22 15:00:00.000',3,NULL,'2025-10-22 09:05:06.947'),
('9d661c6f-2567-4168-935a-9adb098cdcab','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL,'Köşe takımı','2024-06-13 08:08:23.296',0,NULL,NULL),
('9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef','cc203893-33b0-4595-9231-86901a0a9cf9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-09-01 03:07:51.000',6,NULL,'2025-08-30 10:45:38.291'),
('9d7979f3-a35a-4a64-97d1-4ba973786029','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL,'YATAK ','2024-11-24 21:00:00.000',0,NULL,NULL),
('9d7e593b-5023-4e2c-90b7-252a3cc3180a','c2738111-51d8-4195-8709-efd9bbe4d309',NULL,'KOLTUK TAKIMI','2024-05-04 10:12:36.377',0,NULL,NULL),
('9d935c6e-5911-403e-b53a-08f90bd2dad0','2575d832-a07d-426e-9b9e-deb29806d1d4','275bd1c2-793d-4e48-8b62-501b1389031a','3-3-1-1 koltuk takımı','2024-12-15 21:00:00.000',5,NULL,NULL),
('9d98103e-a4f8-46e6-8ecf-8bcb8c4eaf45','24134964-1a25-4af7-9b32-d97d0a1be4aa','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','sandalye','2025-03-26 07:51:14.634',0,NULL,NULL),
('9d9df441-0469-46e7-baad-366a3096e9a0','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL,'KOLTUK ','2025-02-20 21:00:00.000',0,NULL,NULL),
('9daab54f-5de6-4645-b176-395cd721a10f','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ THERMO CONTROL 160*200 BAZA ANTRASİT','2025-10-03 12:46:07.000',1,NULL,'2025-10-03 11:30:00.509'),
('9dad246b-72da-4bab-bec2-c2d038d9316f','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','DİJİTAL BASKI MASA + SEHPA','2025-06-27 13:00:00.000',5,NULL,NULL),
('9dbc2d72-5e19-44c7-86df-bd889dde4163','c36d986a-edbc-4585-a361-c03d6d1c6a23','269264a4-15d7-4979-94e5-201703dfb5e9','Şifonyer','2025-04-22 20:28:40.936',0,NULL,NULL),
('9dc96b19-247b-4a97-bb0e-de1393132cd9','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL,'MASA','2025-02-06 21:00:00.000',0,NULL,NULL),
('9dd1fff2-f6c5-4178-8893-9bca27b3a077','fcf0c01f-72e5-4298-b55c-15849b2fdb04',NULL,'YEMEK ODASI KANEPE BAZA','2024-03-16 06:39:33.883',0,NULL,NULL),
('9e058fdd-3a61-4ae7-b65f-865d643df084','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL,'VİRAL KOMODİN','2025-03-06 10:47:47.182',2,NULL,NULL),
('9e06cc57-c3d1-4cf2-9952-689339186aff','e3b1cbd7-aa49-4695-b628-c4b08d2b645d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı 3-3-1 ','2024-12-05 21:00:00.000',4,NULL,NULL),
('9e08c127-dbad-42d7-a9bf-569bebc6cd6a','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL,'MOBİLYA','2024-08-20 15:03:35.153',0,NULL,NULL),
('9e200495-c3a8-4497-8534-ed3e925ea480','c82a223e-bb39-4f90-9da3-ee3e7be1f915','6541bf5b-5f93-4dc2-b816-de76cac751ae','KOMODİN','2025-09-02 12:00:00.000',2,NULL,'2025-09-09 14:20:54.942'),
('9e480454-560f-4c0a-9dd2-f47ed3b8f8c5','b094bf7e-153f-4984-b737-f7bdece60165',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('9e4a49fb-9de6-411a-80d8-1cbb68b072b7','fd795bb0-de9c-492b-b14b-d82674e0098e','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-06-26 21:48:58.000',3,'2025-08-24 10:52:04.273',NULL),
('9e5026fe-8d17-45e7-be7e-1fd39ec1f746','00d70258-2f30-4c8b-8f72-089d4172bbd9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 nevada ceviz masa','2025-09-09 12:00:00.000',0,NULL,'2025-09-12 08:15:39.843'),
('9e55f6ba-9fbd-408f-8f31-c85b9997fd4b','7213cf8b-e2b3-4fcd-b9d6-789a0803cc16','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-10-21 12:00:00.000',3,NULL,'2025-10-22 09:13:08.894'),
('9e5bfcdb-8394-46db-8299-0b1d709a5608','39b8366a-c9ba-4484-bb91-a877325d0b1c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye ','2025-09-17 20:12:19.385',3,NULL,'2025-09-23 13:01:44.524'),
('9e5db7e5-162a-4425-9498-43b6da733ec0','6df88176-a01f-4232-a091-4e10895a39df',NULL,'MOBİLYA','2024-07-20 09:58:18.779',0,NULL,NULL),
('9e64e803-864a-49e5-97c3-c6b70116e171','6df4ddf2-1d8c-407a-836a-ac83506102f3','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Orta sehpa','2025-06-16 21:13:26.814',1,NULL,NULL),
('9e659204-13ca-4fc3-a047-37a3690f3940','bff7b018-9fd3-45fb-bd37-fd078042b359','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-05-19 21:42:31.000',3,NULL,NULL),
('9e72249a-03e0-4070-91b9-57ec46ace228','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL,'Mobilya','2024-09-04 14:59:13.726',0,NULL,NULL),
('9e799fd4-8e7b-4434-a919-bd8463baf426','8f46653b-9700-4005-98b3-aae1d0eac6e1','27542b9c-f586-4152-836b-5dedeaae0be2','ÖZEL MASA 165 CM ','2025-09-23 12:00:00.000',0,NULL,'2025-09-26 14:03:38.978'),
('9e7c8477-11a2-4674-9f46-871291ca4883','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL,'KÖŞE TAKIMI','2024-07-20 10:42:50.072',0,NULL,NULL),
('9e7f1842-f525-4011-9489-abe8fb26944d','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ZARARSIZLAR DEMET ZİGON SEHPA','2025-02-18 21:32:28.000',2,NULL,NULL),
('9e9d8510-86a5-49dc-924c-9ab30e855883','92ff5019-7ca9-4eef-a75a-ac187b9be39d','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-09-11 04:00:00.000',5,NULL,'2025-09-15 08:05:25.359'),
('9ea68f31-7756-4447-84dc-16ea42994b2c','c372b398-b1ae-40ad-b0e3-91301cb6ee99','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','yemek masası, sehpa','2025-05-07 21:00:00.000',5,NULL,NULL),
('9edacfd6-2410-4f77-8d5a-c2a9ad0ae4af','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL,'Tablo','2024-12-23 21:00:00.000',0,NULL,NULL),
('9edb0c9e-c517-46ac-b46f-908df1462d7c','6e979cb9-141a-43d7-a38c-362246b8f5a8','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık','2025-08-18 03:00:00.000',4,NULL,'2025-09-19 07:22:21.255'),
('9eeecdac-d023-4ee9-8639-dc9b22642c27','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','8c6ecba8-6768-4127-80ba-c9c71d442689','MONNA BAZALI KARYOLA ','2025-08-04 15:30:20.000',0,NULL,'2025-08-06 12:12:41.546'),
('9f080024-096b-45e3-9b43-059581313d8f','8fe451fc-7a84-4cca-9cde-dff384de2c9a','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-03-10 13:05:00.000',6,NULL,NULL),
('9f1f4a12-045f-486d-8d26-612451204bcf','91baf8ac-c499-4118-bb77-3c280cca0a2f','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PİER MASA + TV ALT ','2025-09-29 00:42:59.000',0,NULL,'2025-10-14 10:33:41.247'),
('9f253cf4-84f9-4919-a792-66640cc2f4c6','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL,'PORTO PUF','2025-03-25 13:29:15.488',1,NULL,NULL),
('9f336aba-6a26-47d1-a23b-9448c37dd4f9','e1708729-2a47-405a-bcc7-a59e67a2f89c','e7220662-73b8-46e4-9f5d-7e977cc23448','masa','2025-10-19 20:54:32.000',3,NULL,'2025-10-22 07:33:48.983'),
('9f37ed98-135e-45e0-b26e-3af7dded2b24','277bb0f0-75c4-4045-848c-72f8729d43a4','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-07-21 21:34:47.193',4,NULL,'2025-07-24 08:03:07.990'),
('9f399807-1a8f-4de9-95af-81306a52607d','fe00099c-d377-4de2-82f8-6e9c01ec3f07',NULL,'SEHPA','2025-01-16 12:39:50.530',0,NULL,NULL),
('9f3b4155-e6af-4ddd-bb9c-bf7cf379013d','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL,'Yatak','2025-08-22 12:00:00.000',0,NULL,NULL),
('9f400dae-8f10-4e69-a297-7b46f85782a2','e34a405c-b206-4de1-aca3-4f8e33268107',NULL,'HALI','2025-03-04 12:27:38.294',0,NULL,NULL),
('9f402231-48f4-4e54-b1bd-d47b91ae696f','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('9f5345e8-c934-4c59-9caa-7e2a4551c5c6','4a38f569-617d-48cf-b0fc-27e25fd3884e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 Traverten sehpa seti','2025-09-17 23:09:54.000',2,NULL,'2025-09-23 13:02:33.283'),
('9f77a296-ba6e-4bea-91f6-fdbd98a74c43','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL,'MOBİLYA','2025-02-14 21:00:00.000',0,NULL,NULL),
('9f8ab7ec-acec-4d59-837b-5cad962976a2','84050b65-b4a8-4360-a13e-ee8cc50aef3b','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-16 10:56:39.830',6,NULL,NULL),
('9f9f808a-df35-43e9-9547-e5a703a5fb49','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL,'FRİDA KÖŞE TAKIMI ','2025-08-10 12:00:00.000',0,NULL,'2025-08-25 14:21:16.668'),
('9fa21250-9753-4784-b45e-6a96c940a504','35b607a9-05e1-4a39-8d5e-e9d252bd8443','b151728c-b265-4eed-b5c1-cb53409fb775','kanepe','2025-09-22 23:00:00.000',4,NULL,'2025-09-24 14:33:04.375'),
('9fcd93a8-b630-4700-801e-4dd9330828e3','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL TV ÜNİTESİ ALT BLOK ŞÖMİNELİ','2025-08-28 02:14:43.000',1,NULL,'2025-09-08 12:00:07.860'),
('a01912f8-693e-42b8-a248-694a4ecac68c','31a9f03a-9f24-417c-b0b7-5e374d34b126','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','KÖŞE KOLTUK','2025-09-29 04:40:07.108',0,NULL,'2025-10-14 14:37:45.426'),
('a023935c-7a95-4486-9593-5c3f4f5725a2','acc18069-a61f-4cc1-b29c-0024e5408038',NULL,'KOLİLER','2024-12-16 21:00:00.000',0,NULL,NULL),
('a02fce88-6221-42f7-a25b-9eb6e866d720','711413e7-9565-452a-b808-a0700618dc85',NULL,'2 TK YATAK','2024-05-29 09:55:30.639',0,NULL,NULL),
('a039de33-a0b0-4710-a90b-a2a55d34c7e4','a4f61a34-65e2-4637-828a-46f7b5c23cb4','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + puf','2025-05-15 10:00:00.000',3,NULL,NULL),
('a0411d09-0161-4774-8dbf-3805a5aa9794','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN HALİKARNAS 2 KAPILI ÇEKMECELİ DOLAP','2025-08-28 02:08:39.000',1,NULL,'2025-09-08 12:00:07.860'),
('a04842eb-3d64-4437-879d-2eebcd3724f3','6832af34-4eaa-4b00-8c36-a811910e9201',NULL,'masa orta sehpa sandalye','2025-07-22 21:00:00.000',5,'2025-07-25 14:15:04.152','2025-07-25 12:46:49.555'),
('a061c475-401f-4f65-ae66-2bc9f4569248','335d66ef-091d-4af1-8b0b-38c2daa9e96d','93d5fa22-3136-4d4a-b059-a13510667dad','EFES KÖŞE KOLTUK(250*340','2024-12-16 21:00:00.000',0,NULL,NULL),
('a07bcb7a-9868-44db-9691-88f2fc3163bd','a1113ea5-513c-4c80-af01-bf6fc31ed2a9','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','SANDALYE','2025-08-11 00:10:39.663',3,NULL,'2025-08-28 08:51:12.636'),
('a08b37d8-2558-4e19-9c54-21a2b076a1c1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL,'masa ','2025-01-12 21:00:00.000',3,NULL,NULL),
('a08ca4c6-b9c1-4c8a-8069-9bcaf70515ce','9103cb0e-e686-4e54-ab7a-664a063bc56c','44c404b3-a618-4af5-bdfb-ad381f049053','KOLTUK TAKIMI','2025-08-28 20:00:22.000',999,NULL,'2025-09-10 11:09:33.915'),
('a08d6712-1d03-4cdf-9f9e-1098bdce8dc5','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL,'BERJER MASA','2025-06-19 21:00:00.000',0,NULL,NULL),
('a093806d-acc0-44ad-9bbb-8e86c9de22b2','7722797e-2c67-4213-8908-859d85e5ef36','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-09-17 03:00:00.000',6,NULL,'2025-09-30 11:32:23.535'),
('a0a4be0b-f2b9-429e-92f5-4a10e11028b5','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL,'Mobilya ','2024-12-12 21:00:00.000',0,NULL,NULL),
('a0a8efbb-bf35-485b-a305-77fd99103f68','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'ZİGON SEHPA','2025-10-10 10:48:30.349',0,NULL,NULL),
('a0bdaba1-0059-44ca-b369-a50cb7efc105','c7236957-4e70-458b-8d5d-c7a04c012262','67c34dc2-4657-4323-8fc0-4ff05ed31067','dolap alt tabla','2025-07-03 21:00:00.000',1,NULL,NULL),
('a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b','14395ac1-388d-436d-a633-eb7f1c0beb39',NULL,'SİNEKLİK','2024-05-04 10:07:17.851',0,NULL,NULL),
('a0f0e55e-c1ef-46be-886d-46957bc8deb1','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('a0f54067-e814-444a-ae72-77c30c33e12e','9a8fe83d-8c43-4179-8ed4-895265a42b51','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-10-12 17:17:47.000',1,NULL,'2025-10-14 08:37:59.654'),
('a104e1f6-3115-4249-a565-8212784bf207','e82238d9-feaf-4797-93e9-673c49c7b01e','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-07-06 22:00:40.000',2,NULL,NULL),
('a122ec06-073a-431c-8222-9c5ce64cf0cc','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL,'SSH','2024-06-08 07:00:43.945',0,NULL,NULL),
('a123770c-62b5-4b3b-b299-a8495740fccb','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL,'ssh 4parça','2025-10-03 03:21:25.481',4,NULL,NULL),
('a135c145-15f3-450a-819b-e82b427bc978','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL,'MOBİLYA ','2025-03-02 21:00:00.000',0,NULL,NULL),
('a1461e5b-9355-408c-b4cd-20852a5e26d7','b89cd91f-460c-462f-a284-8d6b2a01dd71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten masa ','2025-02-26 10:51:00.000',2,NULL,NULL),
('a1550d6b-1e80-4cc0-a360-0d4fe5fd207a','e015e4c5-099b-4cf1-ade2-891af283be78','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-02-25 21:00:00.000',4,NULL,NULL),
('a167e1eb-625a-4d2f-8619-d1980601cb14','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL,'SSH','2024-08-31 12:48:51.196',0,NULL,NULL),
('a169957d-27f6-4e28-9598-0c6fd0080bad','406ebbb4-13b5-4567-9950-1d118159195d',NULL,'MOBİLYA','2025-08-06 21:00:00.000',0,NULL,NULL),
('a1729ef8-68db-469a-aac3-924bcd87bbdd','f41591d6-a92e-4ea1-9c50-b10accb09a51','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-05-15 21:48:04.000',3,NULL,NULL),
('a1a870ec-e099-4836-8b0b-44c3b1c8bf3e','e7b29836-18a7-4b80-a64c-61eeb5b079fe','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-07-21 09:35:35.649',3,NULL,'2025-07-22 11:43:05.380'),
('a1b5bcba-4550-4a5b-91d4-912ad7be4749','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL,'YATAK BAZA','2024-08-07 14:27:11.255',0,NULL,NULL),
('a1cd1c1a-930b-4527-9f89-812389e0038c','c79902d9-089e-44e4-a536-9307c5bef39d','2fd50197-3dc1-4ac8-b138-29abaddca567','BODRUM SABİT MASA ','2025-09-04 15:00:00.000',2,NULL,'2025-10-08 13:55:12.007'),
('a1e1c242-70b0-44fc-93ae-eb14bfdef82c','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL,'Traverten','2025-09-01 18:00:00.000',0,NULL,NULL),
('a1fafb1c-77e1-426b-92b6-a2d3797b09a5','aacfdb28-66df-4a6f-8b8d-f575a38b002b','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA ','2025-05-09 06:55:01.173',2,NULL,NULL),
('a2181a61-c1f6-4ec0-9457-40fe06cb81b2','bb12bd3c-d87b-4ede-9827-8c115b6da789','38a7333e-8a0f-4e45-957f-e11d538d2097','masa ','2025-02-07 09:58:55.908',0,NULL,NULL),
('a21a956a-a1fa-49f8-b944-749b652df74d','70bbe7ca-c823-4871-aad0-31c437da2b3c','23334f3a-b17e-4959-b33b-b748f5878d33','ICON KONSOL + AYNA','2025-03-13 13:00:00.000',0,NULL,NULL),
('a229dc9d-0112-4892-aa8c-3d6eeb203d6b','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL,'160X200 DELUXE YATAK ','2025-09-07 19:55:47.881',0,NULL,'2025-10-09 10:46:38.669'),
('a24499c6-56d6-4763-8efc-1e1fb174ea29','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL,'RAMS TV ÜNİTESİ','2025-01-29 07:55:48.211',0,NULL,NULL),
('a29194f3-32bd-431e-8e88-ee7de37b7b46','f3fb5afa-e27b-4671-8dc8-33032a54e4d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten masa ','2025-09-17 09:00:00.000',3,NULL,'2025-09-19 14:33:52.597'),
('a29400c4-3879-4ada-aeb6-c99017d4e531','50101273-0c1d-452c-b0ea-a3c2e64b8022','3a7c0902-b3d7-4dac-94d9-f025250358d1','KÖŞE KOLTUK','2025-07-09 21:00:00.000',4,NULL,NULL),
('a2996a96-e222-4190-85da-afc912411ba4','7c6c2dd1-52e2-4059-a97e-d340167fe009','27906a3f-0457-4fcf-aaec-ef5d378ed41a','konsol','2025-06-19 09:24:07.047',0,NULL,NULL),
('a29c5d4e-5806-445a-b142-4d6423d465a6','e24a5a16-cb38-43a9-8612-8532bd457d6b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 siyah meşe masa','2025-05-28 21:00:00.000',3,NULL,NULL),
('a2ac6ecd-d628-499b-b74b-a3bf267f0117','fe6adfb9-14c6-4193-8c47-6fbe8f734d32',NULL,'Mobilya ','2024-09-24 11:13:39.947',0,NULL,NULL),
('a2d857b1-bcf6-46ee-9e87-dabcdac62719','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL,'Mobilya','2025-08-18 15:00:00.000',0,'2025-08-26 14:02:17.089','2025-08-20 15:38:17.174'),
('a2dfc3b6-cce0-47e5-81f5-3031cdcba285','566f5cfb-cca0-4c69-85df-9c8acc621458','1b0772ee-b516-4618-8207-cae37145619b','konsol+ayna+sandalye+masa+ünite','2024-12-22 21:23:46.000',13,NULL,NULL),
('a2f34510-a7f6-4abd-ac03-e7c577feca03','f4fdc95f-d066-47f9-858c-34b39a3d3ebd','67c34dc2-4657-4323-8fc0-4ff05ed31067','DOLAP VE BAZALI KARYOLA','2025-09-27 21:00:00.000',0,NULL,'2025-10-11 09:16:27.614'),
('a2f5c870-5a02-497b-a7ec-cc1c6033930a','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL,'KOLİLER','2025-03-24 21:00:00.000',0,NULL,NULL),
('a2fe1c58-2fa6-4ab3-9db3-e2746fb8e9ab','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL,'MOBİLYA','2024-04-27 08:25:24.949',0,NULL,NULL),
('a2ffbe1b-8448-4755-a6d4-cc3e0734db94','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL,'yatak 160x200','2025-08-12 09:00:32.383',0,'2025-08-14 08:29:24.498','2025-08-14 08:28:57.686'),
('a307363c-9911-4bec-ab96-f2419bd7e6fe','c3b1df03-16a7-42a0-95da-4e7553c79f24',NULL,'Mobilya ','2024-10-31 14:21:14.570',0,NULL,NULL),
('a31334ff-68ef-4e46-a9eb-fc4d6fb35fba','ecbcf4f8-56fe-4144-8ecf-f1bc0bfaf32a','be280b1b-66f4-4947-b0ec-d079205fc097','KÖŞE TAKIMI','2025-08-24 15:00:00.000',5,NULL,NULL),
('a320c384-09d8-4809-a0b1-0d8740a8df59','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL,'Traverten sehpa','2024-12-24 21:00:00.000',2,NULL,NULL),
('a322199e-9388-4cdc-a475-2497cf269eef','8865fcd1-2596-4520-a0ad-0e0afe35a700',NULL,'Mobilya','2024-04-24 08:17:10.434',0,NULL,NULL),
('a332a69a-5e15-4331-97b8-4dbbd334c8f6','f75148df-6581-4c9c-b732-15039b1ebd7d','7f99932b-8efd-4e4d-a230-70d3e335e99c','SANDALYE','2025-07-21 20:38:58.000',4,'2025-07-21 13:16:47.632','2025-07-21 10:08:46.436'),
('a33dbb59-89b3-44c1-bbb5-026af12ad486','ed90a35b-8493-4c2b-9437-f0f3ba27c20f','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-03-17 11:52:25.296',2,NULL,NULL),
('a33e65b2-520a-44d8-8fa8-a6f99b49bddc','2816d30a-252b-4b32-a00a-c62fbd6aa168','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x220 cm traverten masa','2025-09-23 15:00:00.000',3,NULL,'2025-09-26 10:59:42.591'),
('a3497272-7b57-49fc-a872-19dd147319a3','26021dc0-1339-4317-be03-053c91e39d17','44c404b3-a618-4af5-bdfb-ad381f049053','kumaş ve bir adet ayak','2025-10-19 09:00:00.000',0,NULL,'2025-10-24 16:16:00.954'),
('a34ddd24-f4f6-4725-847a-abf5fa275d11','aa97f652-a0d1-40c6-aced-340a7cbb5564','48eb2bc7-40b5-4ca1-b858-ef3228babff4','SANDALYE','2025-06-27 10:00:00.000',3,NULL,NULL),
('a34e86a8-520f-45c7-9873-449302cce2c8','90ca9af9-d39c-47ed-a9d5-76aa8cb5557f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x210 cm Traverten masa ','2025-10-23 18:00:00.000',3,NULL,'2025-10-24 08:18:44.056'),
('a3545233-7d60-4965-a14b-1b94e0e5edb9','3a352d28-b0b9-4b59-9821-a77910ca2fbb','282b8da3-aea7-415e-941c-487e8fa72a29','koltuk','2025-08-13 13:25:14.000',3,NULL,'2025-08-28 14:47:43.178'),
('a355d7a8-930d-4829-b2b0-1688db90a2ba','f82a6da6-d534-481f-99b5-f2618145eed1','269264a4-15d7-4979-94e5-201703dfb5e9','Masa ','2025-10-14 23:03:25.301',0,NULL,'2025-10-16 12:38:51.101'),
('a361978a-91c3-4886-8ed2-fa3da0ccd62c','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL,'KOLTUK TAKIMI','2024-04-23 10:23:29.447',0,NULL,NULL),
('a363a1f5-57d5-4dbe-90b7-854ff5427932','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL,'köşe modül-masa depoda','2025-04-22 21:00:00.000',8,NULL,NULL),
('a38571d1-22df-46b1-bb70-46d8dc6a5d8d','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL,'köşe','2025-08-31 09:00:00.000',0,NULL,NULL),
('a3a218ea-c02b-4cec-b478-b5babd3881d0','6f4a13be-78b8-4d33-9535-7be01091d06a','01c95349-72b9-482c-8165-7af9590e15f4','6 SANDALYE ','2025-10-13 01:47:15.379',0,NULL,'2025-10-20 10:32:25.969'),
('a3aecf30-a742-454b-89ec-e63250e0fce2','4e49b5ee-1be1-4c7d-bc8a-cb8cb8fa0197',NULL,'CAM','2025-03-19 21:00:00.000',0,NULL,NULL),
('a3b52076-ddc0-43e7-bdcd-781801f338bb','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı, berjer, puf','2025-05-08 21:00:00.000',4,NULL,NULL),
('a3bbc87a-f769-48ca-8f56-60b6a63ae632','6b7bf40f-8730-4f82-9851-ca74df5b5a7c','b94604cf-4431-4d3a-bbbe-0fab66df0701','3','2025-08-25 23:50:54.000',3,NULL,'2025-09-09 07:41:51.868'),
('a3bf1b4b-19f0-4547-abec-82eb48474c5f','142a82ad-defd-462a-a877-e872e40354a3','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','MASA TAKIMI','2025-06-24 13:30:27.662',6,NULL,NULL),
('a3c10ccb-9b91-412f-ae75-fe3fe1a6ab51','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL,'MİLAS SEHPA','2024-12-27 13:34:48.507',2,NULL,NULL),
('a3c7cedc-5869-462c-83ba-d69c3bd9dbdf','c885ca27-2244-4162-b7af-4fe67daf7fd3','0c671c63-4149-4f43-958f-cc3a3f624f9a','6 adet sandalye ','2025-09-29 05:33:43.000',0,NULL,'2025-09-30 11:45:01.746'),
('a3d20b6b-adad-4184-9827-5458c1315c2e','521af45a-6561-45db-adfb-641b8fafbc92',NULL,'MOBİLYA','2024-04-27 08:15:26.895',0,NULL,NULL),
('a3e70907-d0f9-4560-b67d-f0d58115e4eb','fbc52807-2ea4-4332-b106-de7e103725f4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-05-13 21:08:19.000',6,NULL,NULL),
('a3f658d0-43c5-4d1a-a346-44082f79ff25','5b569715-9b3f-4e71-8f65-5766da410613',NULL,'koltuk takımı 3+3+1','2024-12-03 14:00:56.000',0,NULL,NULL),
('a40ab67c-f6c6-4228-b875-7adeb6366544','52ea460d-e94a-410a-9cce-0b771b3e4cc8','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı + puf','2025-08-04 21:00:00.000',5,NULL,'2025-09-24 11:01:54.688'),
('a41c3207-b294-4021-bd05-38e77e201434','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL,'Dekorasyon','2025-05-13 21:00:00.000',0,NULL,NULL),
('a41cc165-9ba9-48b1-bec3-06ff1f0e0fa1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa','21444842-12de-49d1-9480-1c8708a45353','köşe ','2025-01-05 21:00:00.000',5,NULL,NULL),
('a42de1f0-259f-433b-bc71-eaa067da905a','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL,'NOVİTA FELİX KÖŞE TAKIMI ','2024-11-12 21:00:00.000',1,NULL,NULL),
('a446daf4-5d63-45bf-8b9a-016e1db9d769','25d12410-c8e7-490e-98e0-9ef0a0d9272d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60 çap siyah sehpalar','2025-09-24 06:33:30.666',2,NULL,'2025-09-25 10:46:03.796'),
('a446ee8f-4536-4399-8d47-bb110cf8b626','87c55df7-f40e-45d7-a3d5-773c1c5084ea','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','200 cm traverten tv ünite','2025-07-25 08:54:59.000',2,NULL,'2025-07-24 14:06:04.065'),
('a455ba66-b417-4781-a6f2-6fce1b8bab23','365ff697-3271-4de2-aa7d-b8bcf4ff9590','44c404b3-a618-4af5-bdfb-ad381f049053','YATAK ODASI -MASA- SANDALYE','2025-10-21 15:00:00.000',0,NULL,'2025-10-23 09:07:58.928'),
('a4591ede-c042-49b1-ad0a-502745a68343','e24a5a16-cb38-43a9-8612-8532bd457d6b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 siyah meşe orta sehpa ','2025-05-28 21:35:52.000',2,NULL,NULL),
('a45dfc88-22f7-4e59-99af-31e8399ea126','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-09-11 15:00:00.000',11,'2025-09-14 20:38:46.967','2025-09-12 08:02:45.348'),
('a45f357f-3659-4821-a38c-428e3a7f88b7','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL,'TONER','2025-07-07 21:00:00.000',0,NULL,NULL),
('a4795240-7137-43ca-a2b8-d82742643bf6','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('a47f492e-2cab-452c-b1d9-41fc02188b9d','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL,'MOBİLYA','2024-10-11 09:02:32.240',0,NULL,NULL),
('a47f4c39-cc27-467f-8e87-71ae0d932842','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-07-16 02:41:54.000',6,NULL,'2025-07-16 08:03:25.167'),
('a4870d06-fada-4025-945f-a673e1124445','d85df80f-4bcc-482f-949e-4393d27c0874',NULL,'MOBİLYA','2024-08-07 14:23:04.431',0,NULL,NULL),
('a48f4957-ffc5-4309-808e-9eba40503ea8','c242a231-cffe-4e5d-bd32-54cf78b29c25','27542b9c-f586-4152-836b-5dedeaae0be2','MERMER DESEN MASA + İKİLİ SEHPA ','2025-05-04 21:38:50.000',0,NULL,NULL),
('a4982347-c05a-4357-a3f6-ce95c38e366f','7787dcfa-bee7-4c10-b4b3-88982e49499d','01d32275-21e7-434a-a0df-c2e2e4b92da2','koltuk ','2025-09-09 21:00:00.000',0,NULL,'2025-09-10 13:01:23.626'),
('a49dfd9a-1c41-4f02-a06d-ab7a0e6db704','5e1f8bc1-fbc6-4a17-9981-db921860e228','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-10-27 07:42:16.000',2,NULL,'2025-10-22 13:05:59.516'),
('a49f1f06-4de2-48f2-9925-06fb7c6f0467','d7273e12-dd22-4fa8-9893-2696b1178656',NULL,'PALET VE KOLİ','2025-02-06 21:00:00.000',0,NULL,NULL),
('a4af041c-c6f2-4d99-b497-397df83390e4','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL,'PALET','2025-04-25 21:00:00.000',0,NULL,NULL),
('a4b67ff6-faf9-4a12-8e79-94df38007116','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','200 cm Tv ünitesi','2025-07-16 02:41:23.000',2,NULL,'2025-07-16 08:03:25.167'),
('a4ca10e4-d4df-4d73-9e89-3d09edabcda3','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL,'PUF','2025-06-19 21:37:31.000',0,NULL,NULL),
('a4d36541-f637-40f4-97b9-5e1b1dfbcc91','b78bd5b9-8cff-4d83-880b-6b121f0affe1','4d3f433c-6ebf-4443-a8bd-319b61cbe400','baza bırakılıp 6 kapaklı dolap alınacak','2025-10-16 03:01:51.148',0,NULL,'2025-10-16 11:53:00.321'),
('a4db0851-5bbf-4163-8c79-19646def0982','f7979b44-eac7-41b0-a981-1f2165181d24','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','FRANCO T SANDALYE 8 AD','2025-07-14 15:26:48.000',0,NULL,'2025-07-17 10:01:15.057'),
('a4dfd617-2e55-4758-839b-0a6e4677b231','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL,'MOBİLYA','2024-11-07 21:00:00.000',0,NULL,NULL),
('a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7','d69dff48-c846-4f9b-b0f8-fd1e65799ff6','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-10-17 09:00:00.000',6,NULL,'2025-10-17 11:27:16.087'),
('a4f032ea-28e4-4793-b185-1b233d1940ca','0e2dab47-10d3-49e3-9862-b25eac0ed739',NULL,'LIZBON YATAK OD ','2025-03-12 21:00:00.000',0,NULL,NULL),
('a4f356be-d4f4-498c-9119-e35100832eb1','72e3b2db-d663-4612-b75b-d12c95d1cb5f','a4d3724b-42e4-4fd5-af30-4d7870586bdf','koltuk takımı','2025-06-11 21:00:00.000',0,NULL,NULL),
('a4f80586-262d-4b64-b2a7-1534f42ebb03','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL,'MOBİLYA','2024-05-23 07:22:06.970',0,NULL,NULL),
('a4fbce4a-8063-462d-aef4-150b13a4ea25','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL,'MASA','2025-04-13 21:00:00.000',6,NULL,NULL),
('a502c7d4-eee1-4a99-9f38-aab0a3c5c4cb','603049b7-6bd8-4aed-a159-4c5f400607b7','b4b527e9-c851-458f-9238-9049a66f2c90','masa tv ','2025-07-31 01:48:54.000',4,NULL,'2025-07-17 12:09:54.310'),
('a5138376-298b-4e3b-9090-12b6bb8358ed','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL,'MOBİLYA','2025-07-07 21:00:00.000',0,NULL,NULL),
('a519c64d-516b-461d-9301-4c4b7157309b','39266e8b-9caf-4386-a36a-8133aa79e848','b2f38bcb-248d-4626-9f30-2fe34792a4a6','koltuk 3+3+1+1','2025-08-11 21:00:00.000',4,NULL,'2025-08-14 14:30:51.548'),
('a52513cc-f659-4369-b73d-77a47f20e288','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL,'MERMER MASA','2025-03-23 21:00:00.000',0,NULL,NULL),
('a52a8f1e-fcc3-47df-b282-9601c50b05d2','396cb143-14ce-480a-8762-a43699b4d2d2','543cea99-2d75-4e63-a5d0-ad61071e5961','side 3 kapaklı dolap','2025-06-25 18:15:32.000',999,NULL,'2025-07-31 13:24:20.946'),
('a536833d-42e6-4e44-bbb7-e5c1f349da79','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL,'AVİZE','2024-10-17 12:32:15.037',0,NULL,NULL),
('a545df6f-28a9-489d-b668-a448c88582d4','b09d6f55-3ecf-4da7-9a79-8f16282c4d71','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','DİJİTAL BASKI MASA + SEHPA','2025-06-27 13:00:00.000',5,NULL,NULL),
('a5506c59-0e9f-48a6-9b69-13a5163cf994','fed099bd-765c-4045-9372-03dae428fedb',NULL,'Mobilya ','2024-09-11 12:15:50.898',0,'2024-11-21 06:56:32.170',NULL),
('a56038e7-2267-4938-bfc2-ec55e9b729c7','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL,'Natura sandalye ','2025-01-08 11:00:20.000',2,NULL,NULL),
('a5626ae2-9a5a-4401-9095-a368c22814f1','0968d1cc-0ba0-445c-8f49-74a0f7b6c441',NULL,'Mobilya','2024-04-24 07:41:40.136',0,NULL,NULL),
('a577ba46-b93a-4b80-a80a-51dacd8e6d2a','f4fdc95f-d066-47f9-858c-34b39a3d3ebd','bc1b9fd7-95d7-4d5b-a84e-684140acc414','MASA','2025-09-30 08:57:57.000',0,NULL,'2025-10-11 09:16:27.614'),
('a58083af-7318-407b-8b4f-1165eecb73fa','5e1f8bc1-fbc6-4a17-9981-db921860e228','b94604cf-4431-4d3a-bbbe-0fab66df0701','Sandalye ','2025-10-22 00:44:55.091',8,NULL,'2025-10-22 13:05:59.516'),
('a58974d4-6673-4e6a-aefe-45d928cd20dd','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL,'FELİX KÖŞE ','2025-04-08 21:00:00.000',2,NULL,NULL),
('a58e6fad-d53b-47cb-963b-e0f1c65616ed','b60d9fb4-59a0-499b-a666-8d8e4d8f147a','0f300a3b-b3d6-4b60-924b-aa70cd54141e','koltuk -yemek odası-ortasehpa','2025-01-05 21:00:00.000',16,NULL,NULL),
('a5930c87-7c64-481e-8b65-e1185a1c5e54','0c849468-56f3-4970-8ded-610f5c6820b7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x160 mermer baskılı masa ','2025-02-26 10:00:00.000',3,NULL,NULL),
('a5a7d3b2-17a3-4f76-a55f-01181e93ce3d','037003ee-72aa-4ac0-80cf-0a8a21f4600f','0ad4214d-7661-4597-8ec6-579510e6a02f','sandalye','2025-07-31 09:00:00.000',0,NULL,'2025-07-31 09:01:18.224'),
('a5acb255-ac93-4787-ba1d-85dba2a83a25','1ae924c7-e6f6-4715-8c97-f693d6de2fda','85f1b4dd-1d0d-4bd9-be91-ea7a8c29083a','DENİZ 3+3+1+1','2024-11-29 14:00:00.000',4,'2025-01-21 19:54:49.988',NULL),
('a5ccb673-2961-4748-b867-0c0cedc7d251','69e1fe5a-461e-4d68-bdbb-b22f7bc39bdf','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm Msm01 baskılı orta sehpa','2025-10-26 22:58:49.000',2,NULL,'2025-10-24 08:11:07.046'),
('a5cdffba-1912-41c9-a08d-d35f47958738','6da14393-4c45-403b-a068-6c3e487296c7','37486a5b-3dc6-4298-9bfd-3291b8f42d46','puf ','2025-02-06 21:00:00.000',0,NULL,NULL),
('a5da465a-92e9-41c8-8e37-0c57b478a8fc','d1ca1ce3-2930-4977-a85f-79f092dca21f',NULL,'masa mermer','2025-10-07 15:00:00.000',0,NULL,'2025-10-15 11:52:33.898'),
('a5dbf4f9-afd6-4f1c-a387-07f0fc87d9bb','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'2 set döşek','2025-08-22 17:08:11.540',0,NULL,NULL),
('a5e235f7-2218-48fa-9e8a-1680678939f4','f0b80554-e825-487a-9ec5-ec30be5eade8','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2024-11-14 19:39:17.931',3,NULL,NULL),
('a5e8964a-d12d-4dc6-b88e-55ea9e1549f6','ee15ad4a-dd6f-4a80-9660-0314bf146e8d','3e78db22-08b5-4c8e-9d69-c184e551e40a','KERAMİK MASA + SEHPA','2025-06-27 13:00:00.000',4,NULL,NULL),
('a6125d9b-95f0-4cef-b0e2-bf8b88251a91','fdd4c900-6ed6-4a26-8861-7c3e8266fd95',NULL,'yemek odası','2025-04-27 21:11:27.000',0,NULL,NULL),
('a61afe94-7b8e-47a4-a6a6-a1d3739c3086','a4b0544f-8781-4cb5-97b8-539cc674a28c','23aee76e-0b86-489c-83f6-319fb90e8605','sandalye','2025-06-19 12:29:27.522',3,NULL,NULL),
('a6256e90-8be2-4755-a111-ad8137d9c5b3','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5','94451294-fecf-4760-b1f6-7bcfb8ca1734','orta sehpa','2025-09-23 23:54:27.389',3,NULL,'2025-10-02 14:15:55.240'),
('a66ef640-05ed-4854-a3f5-26de702474ff','e044efcc-ec9d-4901-8d6f-56f4f548947a',NULL,'tv ünitesi ','2025-01-27 11:58:28.529',0,NULL,NULL),
('a675c39e-487d-4b75-be23-b6356d0197d8','741ca2d5-ef09-4582-aa3d-7a8f747bfc42','230c96f3-010d-4e74-96ce-4429e7c0c06a','KÖŞE KOLTUK','2025-08-06 21:00:00.000',0,NULL,'2025-08-01 13:22:06.987'),
('a69f640a-80e0-40e7-836c-75a316391b0e','313ea73f-ae21-453f-98ea-2178061648bd',NULL,'PANEL','2024-05-04 09:55:35.178',0,NULL,NULL),
('a6a0e640-2e3f-4f6c-9ae6-023e45fdcd5e','c242a231-cffe-4e5d-bd32-54cf78b29c25','b78426e8-87ca-4d84-878b-11136d2e5719','PETEK KÖŞE TAKIMI ','2025-05-02 09:39:04.000',0,NULL,NULL),
('a6b04dd3-2487-49d4-ad42-d8c0995db2df','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL,'NATURA SANDALYE','2025-01-09 12:00:00.000',3,NULL,NULL),
('a6b43cce-9603-4922-8e0b-e00b9b4acc5c','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL,'Tv ünitesi ','2025-02-07 14:53:24.005',2,NULL,NULL),
('a6b7e463-b550-4e80-81cf-84b6fe9fd920','9ad30007-c146-4449-9cf9-5e061740cfa4','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + berjrer','2025-10-21 12:00:00.000',4,NULL,'2025-10-22 09:59:36.961'),
('a6c12d5f-9151-4818-a6da-99773bbe3f36','12438c42-fc27-4ae8-8cff-d96af3f07b68','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA TAKIMI','2025-03-03 07:49:14.000',5,'2025-03-09 13:38:58.228',NULL),
('a6c4d893-de43-4a6d-84b1-7a4499dec211','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL,'NOVİTA KIRLENT ','2025-01-07 21:17:02.000',3,NULL,NULL),
('a6c77233-c870-4a4b-ab0e-76861ad31465','d01b4f69-9644-4e00-b4be-407f21dbd835','4a9b58a0-ac06-46ed-809a-96513292a470','yan sehpa 2 adet+orta sehpa+puf','2024-11-06 21:00:00.000',0,NULL,NULL),
('a6e5bb34-4429-4d8f-abc9-2af5b4dd5176','ffa71db9-462e-45b6-8298-ff1efd9c1940','a89ca938-e6d6-4d3b-9814-2d8b647175c7','EFES KÖŞE KOLTUK TAKIMI','2025-02-16 21:00:00.000',5,NULL,NULL),
('a7008be9-b82f-4d28-83a7-2484066afbc5','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL,'Traverten masa ','2025-01-09 12:00:00.000',3,NULL,NULL),
('a705de61-d772-4a7d-92e2-87f1e616ec0a','c5ff309c-8bef-4c02-948a-d06e8823ca09','4ccea6fc-d526-479a-9e27-42643a5f294f','baza','2025-08-27 13:29:22.000',0,NULL,'2025-09-03 11:59:21.805'),
('a70d73cb-094f-44bb-ac0c-1d78220508f9','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL,'ALLEGRO MİLANO MASA ÜST TABLASI SSH ','2025-06-24 21:00:00.000',1,NULL,NULL),
('a71e29a0-9fac-4e05-b331-b3c24249dc5b','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-09-17 02:00:00.000',3,NULL,'2025-09-17 10:56:34.386'),
('a7202744-dd74-4e29-bc02-78baa3dbbb1e','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'SANDALYE','2025-06-26 21:40:06.000',4,NULL,NULL),
('a72196c5-e3e1-4c0e-bd65-122acd3d581c','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','1 adet halı','2025-08-31 09:04:38.000',0,NULL,'2025-08-12 08:08:24.267'),
('a7301044-68cb-4760-97a4-a179f6e13b28','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten masa ','2025-04-23 21:00:00.000',3,NULL,NULL),
('a769cd75-8095-4eeb-999c-d1a749589a77','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL,'MOBİLYA ','2025-02-09 21:00:00.000',0,NULL,NULL),
('a7738d79-0b07-40ac-b644-35e9d80b368e','32d8dcee-9361-46e5-a98f-6e606f4ea7ca','c01a6bb5-a79f-4c6f-81ff-aea8a08bc0e1','SERAMİK MASA','2025-05-13 21:00:00.000',3,NULL,NULL),
('a77e3c4e-16aa-42f7-80d0-00cc4b94f441','f4bd20c1-e77e-468a-82a9-4daefeb2df5c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Nevada Ceviz masa','2025-03-03 21:00:00.000',3,NULL,NULL),
('a78536c6-c5ec-4e6f-9f6a-e893d5c6bb4b','5f1e05ef-a967-45d1-a984-4cd1f018c261','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 CM TRAVERTEN İKİLİ SEHPA','2025-03-24 08:08:57.186',2,NULL,NULL),
('a78eafba-d112-44f3-a32b-fedce65f49ef','02301bb2-05b9-4f43-b8b5-5ced5c8740c7','27542b9c-f586-4152-836b-5dedeaae0be2','ÖZEL MASA ','2025-07-18 15:18:54.000',0,NULL,'2025-08-22 09:30:56.113'),
('a7adbd9e-6dc8-4e83-8103-f0614c771f77','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL,'331 koltuk takımı ','2025-06-24 21:00:00.000',0,NULL,NULL),
('a7c0e479-2722-40ba-bd18-c64a1b76d170','6f4a13be-78b8-4d33-9535-7be01091d06a','c508b00d-a686-416e-ab4b-43fe49208cd0','KÖŞE','2025-10-12 09:00:00.000',0,NULL,'2025-10-20 10:32:25.969'),
('a7d8e541-ac8e-49b2-b360-317f8114fc5d','beffebda-e20a-412c-9417-7ba252538d35','4ff312dd-65c7-44b0-9a19-b806f0f3dd52','Masa Sehpa ','2025-08-04 09:00:00.000',5,NULL,'2025-08-06 08:50:15.161'),
('a7f92057-6250-4045-97ed-482e9da4c648','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL,'MOBİLYA ','2024-11-18 21:00:00.000',0,NULL,NULL),
('a8240df2-bc04-464c-afdc-dd0bdbe1643d','aa3f39f2-a374-4662-9b70-6a623142a920','8f681d43-0f04-48bf-a190-abcd5fbd637d','PRAGMA L DOLAP + ADA + ŞİFONYER + PUF','2025-08-18 12:52:43.000',0,NULL,'2025-08-30 13:54:12.264'),
('a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a','2a010a66-59d6-493d-bd68-e8dcb1ced2a0','3702a172-da98-4e48-8071-547c4f3e92e8','SSH BALAT SANDALYE ','2025-04-21 21:00:00.000',8,NULL,NULL),
('a85e1c0c-90c3-44f3-bf2b-a12e5d9894a3','2001cb25-64fc-43dd-827f-15869eca039f','e757256d-c116-45a3-853c-453866ada02e','yatak odası takımı','2025-10-29 22:06:55.000',0,NULL,'2025-10-22 12:01:50.498'),
('a8602257-d25c-4483-b345-d3a8ec10d670','f0a5289b-f034-4540-b03b-9510ca71ec7a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','masa ','2024-12-28 20:03:11.611',3,NULL,NULL),
('a86a20c3-afe4-48c1-9b90-dedc8fd4448b','a529d4b1-7131-4e37-82ab-dd7986268aa3','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-04-28 14:01:30.787',6,'2025-05-08 06:56:17.464',NULL),
('a86e7071-e7ac-4bfb-b9af-1cf2f20150e2','70777159-ea94-424b-8d36-a3768ef41772',NULL,'KOLİ','2025-09-22 18:00:00.000',230,NULL,NULL),
('a87576e3-14e1-46a8-99c7-1d48360995f5','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL,'Mobilya','2024-08-30 13:36:18.527',0,NULL,NULL),
('a88e69fb-2933-49dd-93b6-3700d0ff1dd6','0fef7900-6144-44c7-9378-415e663633c9',NULL,'Konsol','2025-01-08 12:22:47.000',2,NULL,NULL),
('a893bf48-8aa9-4c2e-aac7-2d3d46f89794','63bcaab6-1f45-4304-b9b2-e21172f2f74b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80 ve 60 çap sehpa ','2025-09-01 03:01:57.000',2,NULL,'2025-08-30 10:47:32.801'),
('a894fd1a-53cc-4791-9c3c-b659b4d01ae9','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL,'Mobilya','2024-07-25 09:04:01.324',0,NULL,NULL),
('a89f5cb0-4036-440c-b388-8ef641d6f3b9','82c2a380-c89a-4beb-ba59-ed765263d701','4d3f433c-6ebf-4443-a8bd-319b61cbe400','konsol masa sandalye sehpalar ünite','2025-10-19 12:00:00.000',0,NULL,NULL),
('a8c5c790-fa90-42d3-9ce1-ba79c74bdc13','4776d10a-2cab-47b6-b212-60c0ab466107','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye','2025-04-17 09:11:06.000',0,NULL,NULL),
('a8ccb596-deb3-44d6-a3ec-e1faeccf7e9e','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','697dd7c1-3e5b-4f0d-bdaa-311ea7554024','Bohem Sandalye','2025-05-05 11:00:00.000',8,NULL,NULL),
('a9104ce8-c450-423e-a69f-f0555c8b6c7c','b5545ecb-25d9-4bc6-95bb-2740c6431904','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-08-31 08:20:43.000',1,NULL,NULL),
('a918ff1e-42da-4211-9742-133995470138','340801e4-6036-4b2f-9cae-d51385895b71','1d3cdff2-164e-4068-84fb-d5fc8f812e04','KÖŞE TAKIMI','2025-10-21 07:52:59.000',5,NULL,'2025-10-24 08:21:11.538'),
('a92153da-b9c6-4a2b-b06f-8a588d33ea09','31a99b88-a5a2-467c-9eb7-bab69bec01d2',NULL,'2 ADET ÜÇLÜ KOLTUK','2024-12-26 21:00:00.000',2,NULL,NULL),
('a9313571-e855-4653-bf10-1dd7085ab26a','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL,'1 adet sandalye ayağı ssh','2025-03-20 21:00:00.000',1,NULL,NULL),
('a93b9cf6-27d8-4821-806d-042dfb49c4e3','95a80c6f-f63c-41d5-917a-d2547b834cdd','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-06-25 13:05:36.452',1,NULL,'2025-07-16 12:52:53.211'),
('a93ec800-6f62-43c8-a2c8-9ae7e82352ff','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL,'SSH','2025-08-26 21:00:00.000',1,NULL,NULL),
('a94a556a-77a8-41f7-8103-f5eed51f9a91','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL,'balat sandalye','2025-02-18 12:00:00.000',5,NULL,NULL),
('a95b7647-1261-4cf3-9745-195f5db6c429','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL,'MASA VE ORTA SEHPA','2025-02-23 21:00:00.000',4,NULL,NULL),
('a95f79e2-41cc-4cd4-a9c2-b517bc5ed98b','c930eade-75ea-4464-a6c5-445be1fb2f29','8606d226-cc7c-4998-946f-cf7c29587a15','YEMEK MASASI','2025-06-26 21:42:15.000',0,NULL,NULL),
('a970a3f5-58bb-4e19-be39-2b2e53a6e56e','6f4a13be-78b8-4d33-9535-7be01091d06a','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','YEMEK MASASI','2025-10-13 01:47:34.955',0,NULL,'2025-10-20 10:32:25.969'),
('a9828fad-e20e-4e73-98f6-917c06f178f5','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL,'3-3-1','2024-03-23 07:13:29.037',0,NULL,NULL),
('a98d64d2-c7c4-4514-82cc-2d1b0cb95556','00597150-64a3-4ed2-95da-544d8eb849d1','d8852582-d508-498a-b753-7d20cd810d34','Koltuk+Sehpa','2024-12-30 06:30:00.000',6,NULL,NULL),
('a9c9e153-43b6-4a45-ab65-2b61b3662185','55512975-1b08-4931-aa51-a204463134c2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','45 çap Traverten sehpa','2025-02-18 21:00:00.000',100,NULL,NULL),
('a9cd2374-2640-40d5-8ea8-8b184e2b9871','537f327a-f919-43fa-9be8-fa8d0af3cf00','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TAKIMI ','2025-10-27 12:00:00.000',4,NULL,'2025-08-18 12:19:56.397'),
('a9ce9135-b72e-492d-a974-bd7c7ab64347','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye Siyah metal ','2025-07-04 10:08:45.000',3,NULL,NULL),
('a9d9045b-a128-4ab9-b2f2-89d537b5f2af','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL,'baza başlık karyola','2025-09-10 13:40:14.403',0,NULL,'2025-10-07 13:45:12.287'),
('a9e59bad-160c-4c51-b34b-7c71bb5efeb3','26eebedd-d4ee-429f-bfe5-964620f33452','c508b00d-a686-416e-ab4b-43fe49208cd0','KÖŞE+BENCH','2025-09-29 06:00:00.000',0,NULL,'2025-10-09 08:25:53.272'),
('aa0c60c5-d205-4711-92f4-64ebaf10b816','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c','f4b725ec-de83-43a0-8adf-cd7f36f59b78','KOLTUK KASASI 2 PARÇA ','2025-06-26 11:00:00.000',2,NULL,NULL),
('aa113c34-9fed-4b54-9803-35911009db78','79baeae2-c29e-4ea3-ae77-ef38917cdcf3',NULL,'KÖŞE KOLTUK','2025-07-28 21:00:00.000',0,NULL,'2025-07-31 12:11:30.373'),
('aa1492c5-5eab-48fa-bcfc-23c75ee232c8','fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','12 ADET SANDALYE','2025-10-28 13:35:29.000',6,NULL,NULL),
('aa186eb7-d2f9-49f3-a9a9-5bfeea5eacc7','c8cb8a48-a710-4ed9-befe-c11c81f0f7df',NULL,'SSH','2024-07-20 11:03:55.635',0,NULL,NULL),
('aa3ea036-908c-4f62-86d1-cf5981587ec1','90ca9af9-d39c-47ed-a9d5-76aa8cb5557f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye siyah','2025-10-27 05:17:35.000',4,NULL,'2025-10-24 08:18:44.056'),
('aa4d2b23-8dc1-458b-bad3-3f299804fc95','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL,'DENİZ KOLTUK','2025-03-24 21:00:00.000',2,NULL,NULL),
('aa4eed19-73c6-43a1-b6ec-33b163ede4a5','baae34a4-033d-4893-b696-b36e57c318f7',NULL,'MOBİLYA','2024-04-23 10:19:03.273',0,NULL,NULL),
('aa52ce79-9594-403f-a912-011d1f6e5822','d74fc593-2936-4bd5-8e08-8bb17c7c02cb',NULL,'VARİL','2025-03-13 21:00:00.000',0,NULL,NULL),
('aa66d5b0-933a-4e09-b2f7-e41da82ef43a','f0a5289b-f034-4540-b03b-9510ca71ec7a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','sehpa','2024-12-28 20:02:52.759',2,NULL,NULL),
('aa751653-d4a5-4ce5-9fce-237ba7555f9e','b98ee553-278c-457b-9e14-25f2810f7f82',NULL,'Sandalye ','2025-10-29 09:47:11.000',0,NULL,'2025-10-22 13:26:32.291'),
('aa76bb26-a6ba-4b2a-8254-e340f23c2fc1','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'GRANDBEDS VİTRA 120 LIK BAŞLIK','2025-08-26 02:03:28.000',3,NULL,'2025-09-08 12:00:07.860'),
('aa7913d9-4692-46ea-94b6-16deac482855','6e0be5a1-e68c-498b-aab1-17f032d29cb5','d8852582-d508-498a-b753-7d20cd810d34','Koltuk','2024-12-30 06:30:00.000',5,NULL,NULL),
('aa85d51a-54f8-4467-8437-b14d6b3635dd','044d9be3-0770-4d6a-af0c-8fd047dc7191','ee3a212c-1b68-420b-8664-4944fa4af703','Sandalye','2025-07-02 10:39:45.949',3,NULL,NULL),
('aa959203-7dfd-4a10-b721-54a4b074b507','558ade04-1baa-47ac-99df-233551c2e4c2',NULL,'SSH GARDEROBE DİOR MASA ALT KISIM YAN SELEN ','2025-10-15 14:24:34.000',1,NULL,'2025-10-03 11:30:36.980'),
('aaa8d3a6-48f2-4ac6-8cde-f805e401d89e','712504b4-3082-4d55-b36d-6c65e190776a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Traverten masa ','2025-05-06 21:00:00.000',3,NULL,NULL),
('aaaede6c-998a-4b2e-af14-68241c67cfbe','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL,'KÖŞE TAKIMI','2024-03-30 08:54:23.082',0,NULL,NULL),
('aaaf255b-d973-4737-94d9-7642e86777f3','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL,'MOBİLYA ','2024-12-22 21:00:00.000',0,NULL,NULL),
('aab886db-5418-4813-b226-87d8ffb449be','b89cd91f-460c-462f-a284-8d6b2a01dd71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten orta sehpa 70x110','2025-02-26 10:50:38.000',2,NULL,NULL),
('aac14300-6986-4534-a4f3-10fc8ae7728e','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL,'90lık modül ','2025-08-18 18:00:00.000',1,NULL,'2025-08-26 08:15:21.168'),
('aac7bb1a-b209-4bf1-a4b8-672a611be401','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL,' C SEHPA','2025-09-18 21:28:40.000',2,NULL,'2025-09-12 14:12:15.188'),
('aad5c1ff-942c-4e60-afcd-b7475a2421fb','fea683f3-14ee-46cf-99c5-7865dcd4834f','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE ','2025-01-02 08:19:16.146',4,NULL,NULL),
('aadf78aa-6852-48e3-9660-062042fc3ac3','96741763-bc18-47ed-be48-0c973149d4fb',NULL,'Koltuk ','2025-07-17 21:00:00.000',0,NULL,NULL),
('aae2318d-95da-452e-926b-e231bf06cabf','3f0da6fe-5c46-4444-a319-47ee65028a68','388ee551-1f3e-4099-9b89-135966096ae1','Karyola','2025-08-29 03:00:00.000',4,NULL,'2025-09-09 07:49:07.556'),
('aae43b1e-195b-44c7-b533-bb3fbd9c98e4','b7c95c3f-abb7-49bb-a4a9-e9be8ea92fa2','f8e7e421-d096-4d8d-99a4-e621c080ad89','konsol ','2025-02-07 09:57:09.784',0,NULL,NULL),
('aaf96c48-72ff-4932-adc1-18f1c88ade0e','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL,'CAM PALETİ','2025-03-20 21:00:00.000',0,NULL,NULL),
('ab056105-bc86-44d6-b356-9628f9cb9e2f','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL,'TESLİMAT BİLGİSİ VERLİECEK','2025-10-23 11:01:07.796',0,NULL,NULL),
('ab16c37e-6ebe-4e09-b119-440ce867c25c','57672219-300a-458c-9d17-3e58d19f71a2','058cdb78-383f-469f-b327-d62e280e56c5','koltuk takımı','2025-04-25 13:30:00.000',5,NULL,NULL),
('ab17d88e-ebaf-47c0-8475-f212320a77fa','932af7f2-df9e-4032-b8ab-056455a1eb6f','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','masa','2025-08-13 12:14:00.000',3,NULL,'2025-08-22 11:29:07.269'),
('ab1b2a39-1033-4ca2-9a3f-fda0a79bd8f8','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL,'MOBİLYA','2024-10-15 14:27:59.337',0,NULL,NULL),
('ab321622-fb0a-46b0-b51b-4c72aa09efcf','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('ab45478c-7fcb-46bc-aebe-fab160a476ef','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL,'Koltuk ','2025-04-10 21:00:00.000',0,NULL,NULL),
('ab498eec-0e7c-4e6e-aa9a-7694fd8f2610','476a35ac-9d9d-4d70-a965-370a980951c2',NULL,'MOBİLYA','2024-10-02 08:51:43.898',0,NULL,NULL),
('ab5b4f35-151d-4c91-bde5-2423bc506836','887d1301-8182-4254-93e6-73d1ecf6af40',NULL,'KOLTUK','2024-09-18 21:11:09.686',0,NULL,NULL),
('ab5e91a7-fe1d-4340-975e-9aae4b9d849b','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL,'SSH','2024-05-29 08:44:02.391',0,NULL,NULL),
('ab6d3108-30a8-4fcd-b5be-9a799e904968','7be6621d-9b68-40b3-a06b-e80341f0ae5d','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK DÖŞEK','2025-04-10 10:00:00.000',4,NULL,NULL),
('abaac750-d7d2-4865-88da-912d20c5be99','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL,'Toner','2025-01-23 21:00:00.000',0,NULL,NULL),
('abd1d92d-bf39-4c91-8d61-ddc273b6427f','a83ff746-6483-4a7a-b143-9f59ac9e331d','fd87365f-791b-4129-a329-2bbc5296e508','masa ','2025-05-07 08:00:00.000',0,NULL,NULL),
('abe0471f-0189-49bb-b101-e10173c0ac6f','aa5e5bf9-e64b-4731-8c85-62582faeb98e',NULL,'travertyen','2025-09-18 08:59:39.172',0,NULL,NULL),
('abe73355-a72c-47ba-944d-cb6a15758ade','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL,'SSH','2025-04-10 21:00:00.000',0,NULL,NULL),
('abe9db81-20e4-46fc-8891-d8e8f19e9355','a83ff746-6483-4a7a-b143-9f59ac9e331d','fe0a9e17-e52a-465c-af84-8dd1932db99a','sandalye','2025-05-08 10:05:05.000',0,NULL,NULL),
('ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL,'Mobilya ','2024-10-30 14:51:13.025',0,NULL,NULL),
('ac1a5fbd-8451-400c-95df-d777e477b50b','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL,'90X190 BAZA SET ','2025-10-21 21:00:00.000',0,NULL,'2025-10-23 09:58:54.669'),
('ac2b9be2-c0bb-4704-9314-44e3ed793e24','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL,'Masa sandalye','2025-08-12 21:00:00.000',0,NULL,NULL),
('ac2f272f-90f1-4d84-b5c2-1892af4e2892','259921e5-33a8-46ab-8da6-91a44b26b420','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-08-28 22:01:17.000',0,NULL,'2025-08-29 08:04:30.840'),
('ac31b261-797e-4d80-b750-2e487b9e012c','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye koyu ceviz ','2025-10-22 22:56:54.000',4,NULL,'2025-10-24 08:09:48.837'),
('ac631ac4-51fa-457a-a7f1-7cea3eaae19d','4d829d78-94c2-4e78-a544-eebc09aa13b0','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-10-29 15:40:13.000',3,NULL,NULL),
('ac73d19b-52b7-42a0-83e3-a4d8491f56b1','d8e81c58-d245-41e7-a030-04aad4fea77d','8c33406d-1686-45a9-ad7a-de320c689537','Kanepe','2025-09-14 12:00:00.000',4,NULL,'2025-09-18 12:54:55.450'),
('ac9c542d-e46f-415f-ba83-e9a5fd0736a4','19e9a585-4bbd-4792-9b14-2af8605e433f','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-17 15:00:00.000',5,NULL,'2025-09-19 08:32:48.006'),
('aca0a822-86a6-4946-95ce-feb7de5fb68e','6b308538-0db0-403f-a33f-bc50bf381bb6','d00fcabb-1fa6-406e-975a-645a02949630','Nikola Köşe Koltuk 350*340cm ölçülerinde ve berjer ','2025-08-19 21:00:00.000',0,NULL,'2025-09-08 12:31:40.992'),
('aca21297-1022-4505-a912-c540f09dcc5c','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL,'YATAK BAZA','2024-05-04 07:40:20.385',0,NULL,NULL),
('acb3b3f0-bcff-48e3-8a17-80796f897544','fdd4c900-6ed6-4a26-8861-7c3e8266fd95',NULL,'baza 2 adet','2025-04-27 21:11:46.000',0,NULL,NULL),
('acb5ef4b-4ddf-4d5d-a04b-89d840c64874','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL,'Mobilya ','2024-11-04 21:00:00.000',0,'2025-01-06 11:36:04.824',NULL),
('acbbe273-0580-410e-886a-d42fbd46404e','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Ayna ','2025-01-20 12:42:13.331',0,NULL,NULL),
('acbdd21f-746f-4630-82bb-eac5e391f704','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL,'Koltuk','2025-02-12 21:00:00.000',0,NULL,NULL),
('ace7ef1f-bb3d-4e4b-b44b-e8e0fc39c5c8','277bb0f0-75c4-4045-848c-72f8729d43a4','52732831-17b3-4399-9938-3746ee85c714','Köşe koltuk','2025-07-21 21:37:57.512',0,NULL,'2025-07-24 08:03:07.990'),
('acf4e1e8-26b1-4665-86d6-6ba473790be4','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL,'EVA KOLTUK','2025-03-05 21:00:00.000',2,NULL,NULL),
('acfd21b9-6dbf-4ded-9e6d-ff15545c15fa','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL,'3-3-1.  Koltuk takımı','2024-11-13 21:00:00.000',3,NULL,NULL),
('ad0413bc-5657-4c6d-8881-5531603a28a8','28d77c29-5660-4bd1-beec-e4790f6ae7e8','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-07-16 09:00:00.000',5,NULL,'2025-08-15 12:54:44.774'),
('ad0fccfe-fec2-49fc-a475-2e6c6c3ce2b0','ae582db0-f6d5-465e-936e-071de92415c4','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','dolap kapak + malzeme pk ','2025-05-22 11:13:05.731',0,NULL,NULL),
('ad1ae03e-7e70-410b-9063-096a689882fa','f75aea68-ca38-4530-9ad3-ae32f05071ef','128499ca-8a62-495a-b36a-15a8e63514ec','sandalye','2025-10-07 20:56:52.475',6,NULL,'2025-10-20 11:55:28.451'),
('ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL,'MOBİLYA','2024-10-17 12:43:19.099',0,'2024-10-29 11:11:31.923',NULL),
('ad2443f8-53d8-489a-843c-af0350c2b5fe','a4b0544f-8781-4cb5-97b8-539cc674a28c','d20217b5-30bb-4c0c-be9d-5b424ded8862','masa','2025-06-02 21:35:09.000',4,NULL,NULL),
('ad371c5c-c48d-483d-b10d-133894c2db78','7787dcfa-bee7-4c10-b4b3-88982e49499d',NULL,'sandalye','2025-09-13 12:57:13.000',0,NULL,'2025-09-10 13:01:23.626'),
('ad3d8fcc-b247-46fd-95f4-08480bea8dd6','ff541470-3c77-4b65-bcd0-3fc253c0858c','679716f3-7799-4e9d-a984-9fe004b5689e','MASA','2025-09-20 12:00:00.000',0,NULL,'2025-09-22 15:02:58.906'),
('ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e','7ebece0e-bf8d-4678-bf15-17e6bed10020','c26ea75d-effc-43cc-8445-65e7d3fbbac9','dolce 3+2+1+1 koltuk takımı','2025-09-21 18:00:00.000',0,NULL,'2025-10-14 11:56:04.640'),
('ad97a379-cef7-47ad-bc47-f47aad13ee11','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-11 10:51:53.000',6,NULL,'2025-09-23 12:28:36.258'),
('ad9c9931-e995-44c3-aad6-baf9d05cc8a6','826475dc-b2f5-46e9-8c2c-4ddeb82b942b','44c404b3-a618-4af5-bdfb-ad381f049053','şifonyer-komidin-masa-sandalye-ünite-konsol-sehpalar','2025-08-11 21:00:00.000',999,'2025-08-14 08:29:25.568','2025-08-14 08:28:57.686'),
('ada78d77-5143-4e72-858e-02eb9de8df81','ec53152b-eeec-406a-993a-23f92d510c91','67c34dc2-4657-4323-8fc0-4ff05ed31067','masa- 4 adet sandalye-benç- orta sehpa','2025-09-30 12:00:00.000',0,NULL,'2025-10-10 08:44:49.798'),
('adaf6062-cd20-4f54-97ae-815157ff18bb','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL,'MOBİLYA','2024-07-20 11:02:04.763',0,NULL,NULL),
('adb117df-07fe-463d-8c5c-78ac6b66268e','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL,'Masami','2025-06-17 09:34:57.443',0,NULL,NULL),
('adb2b048-17a7-438c-9f89-ff322dbc8eec','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL,'Deniz koltuk takımı ','2025-03-24 21:00:00.000',1,NULL,NULL),
('adba09c2-3268-49b9-b2e2-a2426fbdcc6f','b283ad69-8361-4491-9417-eb0b9d2e9b3a','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk','2025-04-26 05:00:00.000',4,NULL,NULL),
('adccace1-e116-47c9-8648-9df480e3519e','0fef7900-6144-44c7-9378-415e663633c9',NULL,'TV ünitesi ','2025-01-08 12:23:04.000',2,NULL,NULL),
('add0ce19-5e60-422c-9aab-9dd0f7dbee14','45d8def2-e582-418f-9223-cec939f8916c',NULL,'Mobilya','2025-03-10 21:00:00.000',0,NULL,NULL),
('adda5708-19e7-4a72-bd81-69d221efba7c','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('addb5c2f-4917-41fa-b1cd-a27dce7e3612','10862bf3-01dd-40a9-beaa-6ba3d5075238','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 traverten açılır masa','2025-04-24 21:00:00.000',3,NULL,NULL),
('ade60a0a-c34f-4d91-ab5d-457a76ceaa2f','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL,'1 ADET ORTA SEHPA / BEKASAN SANDALYE','2024-11-06 10:00:40.000',4,NULL,NULL),
('ade702d6-cdc0-4186-ba85-c931b77bcd17','277bb0f0-75c4-4045-848c-72f8729d43a4','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-07-21 21:34:23.798',3,NULL,'2025-07-24 08:03:07.990'),
('ae1008d7-d121-430f-a2b2-5b5a4a819668','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e','b4b527e9-c851-458f-9238-9049a66f2c90','KONSOL AYNASI','2025-04-23 21:00:00.000',1,NULL,NULL),
('ae1c70fe-f741-4af3-ad86-2eb42404673c','fbc4c4b7-9137-42ec-b6e9-fdea41ca69fc','9acd0009-2327-419f-9bbf-703ddea7276d','masa','2025-08-16 11:20:22.000',0,NULL,NULL),
('ae1c857a-94b3-411f-9eda-b4b89f2608d9','1af2876c-3389-4499-8232-9de4f494db77','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-14 11:30:35.000',3,NULL,NULL),
('ae22c95f-8f5a-44b8-98b4-9c9319923e2c','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL,'sandalye','2025-03-26 09:29:22.000',0,NULL,NULL),
('ae267513-3704-433b-b18f-6d6210d048fb','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','a502f4fa-4882-46a7-85b9-6e5b824a26a0','KÖŞE KOLTUK','2025-09-29 21:00:00.000',4,NULL,'2025-10-27 13:39:04.728'),
('ae2f16d8-65e8-4efb-b2a7-26877719b20a','16715384-46fe-4d2a-88d8-8467cd5c6d5b','67c34dc2-4657-4323-8fc0-4ff05ed31067','DOLAP ','2025-04-08 21:00:00.000',999,NULL,NULL),
('ae3735d9-934e-4a61-bcc1-80bb1afcd7fc','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL,'SOBA-PETEK','2025-02-02 21:00:00.000',0,NULL,NULL),
('ae48a731-1e1e-4791-81d2-4d8761a3651e','44ab156f-e89c-4eaa-b7ab-1fed4206ce92','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-04-13 21:06:42.000',3,NULL,NULL),
('ae4fb309-cc70-42c1-92ba-9c345faacd0d','fdd4c900-6ed6-4a26-8861-7c3e8266fd95',NULL,'yatak odası','2025-04-27 21:11:34.000',0,NULL,NULL),
('ae59a50e-901c-469e-b6b6-ec0de7b0b0fe','268c20d2-55c4-4e13-bdbd-8705781eda7b',NULL,'KOLTUK-YATAK-SANDALYE-MASA','2024-03-12 08:37:36.384',0,NULL,NULL),
('ae5a9e85-8de3-4d9a-843c-7199666778cb','9db12415-2152-439d-bb63-bebefc3c640c','1e93df00-c436-426e-b76b-a6d843907edb','köşe takımı ve berjer','2025-01-27 10:27:18.294',6,NULL,NULL),
('ae89ec40-3826-4229-b966-6415fc238b56','994c111c-e6b7-4e44-a12d-e02010c92c4a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Köşe koltuk+ Berjer ','2025-03-08 21:00:00.000',0,'2025-03-12 08:21:05.067',NULL),
('ae8b0589-4bee-4cda-9dbe-1fb3b25105e7','f8a35a67-4391-400d-b200-b2e5eb8c88d5','7ef18eb6-fc54-4770-be95-51abea3c644d','SANDALYE','2025-06-24 15:00:00.000',4,NULL,NULL),
('ae991996-4699-46b6-814d-8a6d951bcedc','8385b6e4-e1a2-43de-b257-e53a890a4c6b','b151728c-b265-4eed-b5c1-cb53409fb775','KÖŞE TAKIMI','2025-06-25 13:00:00.000',3,NULL,NULL),
('ae9a9400-7a4a-46dd-bdca-d8a0d71d424d','50aeff12-6812-447f-b3a6-0c51ad9fc878','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-02-06 21:00:00.000',0,NULL,NULL),
('ae9e9c82-84c2-42de-87ba-c07292fe079d','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-17 15:00:00.000',5,NULL,'2025-09-18 14:07:14.158'),
('aea18323-162d-4a93-9077-c2c03f8305d2','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7','53578ffb-8d37-4230-b442-29c3ab163434','Sandalye ','2025-10-08 22:40:58.000',4,NULL,'2025-10-08 13:58:07.137'),
('aea46c6f-d094-49c7-9663-2051def3cd74','dcbe7eee-e054-430d-b60c-71cef3ff6b80','fd87365f-791b-4129-a329-2bbc5296e508','Orta sehpa','2025-08-21 11:35:40.000',0,NULL,'2025-08-22 12:41:50.201'),
('aecafc00-84c7-44df-a04a-3bccbbec6f20','8cf92937-e0c9-49c9-87aa-33b3c2fd4773','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-04-20 21:17:28.000',3,NULL,NULL),
('aed0c1e4-00b7-4884-bc19-3d932afa6442','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL,'mutfak masası 4 sandalyeli','2025-09-09 08:26:11.117',0,NULL,'2025-10-16 11:53:00.321'),
('aed57dfb-3aa2-4f6a-849f-51424a18ca86','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL,'Star köşe','2025-09-10 09:00:00.000',6,NULL,'2025-09-11 10:49:09.653'),
('aee64134-9c4a-4a5e-a933-2ec271b9144b','64f79831-49d1-48f5-a6e6-698737009565','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-10-01 15:00:00.000',0,NULL,'2025-10-06 07:31:28.281'),
('aeeb9331-f250-4b35-89a5-471da85ec593','7722797e-2c67-4213-8908-859d85e5ef36','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-09-17 20:00:21.587',3,NULL,'2025-09-30 11:32:23.535'),
('af0bee61-a5fb-4e01-894b-284b9c08b649','93c365fd-397d-46ce-91b9-bdd586250f02',NULL,'KOLTUK','2024-09-18 21:19:17.298',0,NULL,NULL),
('af0d8b9d-a81c-4508-b89f-ebe7472ba885','e30052e8-31ee-42d9-b11e-50298f473091',NULL,'MOBİLYA','2024-10-17 12:40:12.300',0,NULL,NULL),
('af0ebe61-67f2-4d8a-98f4-d5372f0e2193','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL,'Sehpa ','2024-11-13 10:15:39.646',1,NULL,NULL),
('af1a3f38-e83c-49d2-a38d-c1fbc58d5223','2e594749-653d-418d-b1d8-5310f505a9c6','8c33406d-1686-45a9-ad7a-de320c689537','Köşe koltuk','2025-09-11 09:00:00.000',4,NULL,'2025-09-12 14:46:35.736'),
('af1f8906-d85a-461b-8d09-86c3fe895a09','e33482b3-d69f-4355-a934-88d95502f498',NULL,'DUVA LUCCA KANEPE AYAĞI 2 ADET','2025-03-18 21:48:04.000',2,NULL,NULL),
('af3cff3b-575f-45ca-b1a2-1535de311073','38aec1a2-aa0a-4d63-9082-896aaa3694be','fee7f346-332d-419c-9da4-5a7154085362','köşe','2025-09-10 00:00:00.000',0,'2025-09-23 08:23:56.312','2025-10-07 13:45:12.287'),
('af3e2c68-d1df-455e-a5d7-0f309e2961a9','04fb8dfc-07be-4e81-a060-8a8a6f53ef14','940c6390-4082-4fe5-aeaa-06d180147a7b','MASA SANDALYE SEHPA','2025-10-07 22:45:00.000',14,NULL,'2025-10-13 13:04:31.438'),
('af514340-77a4-4179-9482-f6fc84ee2bf9','ab41b8c0-66a4-4c51-ba67-322b1df9498b',NULL,'MOBİLYA','2024-03-18 07:24:00.748',0,NULL,NULL),
('af53dbaa-15c4-4117-8048-34fd042df2fb','7d8956ca-698f-462a-81a5-dcf35e87e4ee','6541bf5b-5f93-4dc2-b816-de76cac751ae','Masa','2025-09-23 02:38:27.429',2,NULL,'2025-09-23 14:55:03.387'),
('af5d5630-8fd3-45cf-a8b1-5cfa78eb6363','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb','b4b527e9-c851-458f-9238-9049a66f2c90','masa sandalye','2025-03-10 21:00:00.000',5,NULL,NULL),
('af69c5a3-87d3-4548-a650-720b69a4fc69','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL,'MOBİLYA ','2025-03-03 21:00:00.000',0,NULL,NULL),
('afb3cbae-61d4-403d-a04e-25f696176d48','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL,'ZİGON SEHPA','2025-04-13 21:00:00.000',2,NULL,NULL),
('afc7f97f-5b35-46dd-b4b3-504f99ecda3c','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL,'2 ADET BAZA BAŞLIK KARYOLA','2025-08-21 18:00:00.000',0,NULL,NULL),
('afcaa518-5fb0-4dee-937e-2ac1ba551c72','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL,'MOBİLYA','2024-08-31 12:54:14.164',0,NULL,NULL),
('afcbdaec-8a89-4777-b328-838a037ef29c','54427ae4-0cae-449c-86ba-ad49870f64d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60 çap Msm 25 baskılı sehpalar ','2025-09-17 21:58:35.000',2,NULL,'2025-09-26 10:57:22.593'),
('afcdd189-4513-4f98-ba10-d072597768c3','0c849468-56f3-4970-8ded-610f5c6820b7','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-02-26 10:38:27.000',4,NULL,NULL),
('afd23420-c1c3-4468-a9b1-5a8f4274d064','396cb143-14ce-480a-8762-a43699b4d2d2','67c34dc2-4657-4323-8fc0-4ff05ed31067','BOHEM KONSOL','2025-07-24 18:30:25.000',3,NULL,'2025-07-31 13:24:20.946'),
('afd7f71c-d1fc-484f-b72d-f986503df4f7','8cc8e2cc-149c-401c-9303-207ddf345d9d',NULL,'Mobilya','2024-05-31 09:53:46.703',0,NULL,NULL),
('afdf27e1-0689-4491-868f-ab5e614758ec','368245d4-9f2d-4657-8e21-783fb08ea560',NULL,'Mobilya','2024-07-26 13:37:50.094',0,NULL,NULL),
('affb2ea6-71a0-4d35-9267-d30788f4e193','4dbf93f9-e436-46b7-8455-aa2f9617afb4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x160 mermer baskı masa','2025-02-28 11:00:00.000',3,NULL,NULL),
('b001e9d1-a47a-4a58-a0a2-441bc4dfa691','fb70c94c-78cc-4a1f-9b09-616f804975bb','b22273fb-b00f-4afc-b708-2437f60ec61e','SSH ayak','2025-10-14 18:00:00.000',0,NULL,'2025-10-16 12:46:17.724'),
('b0060c9d-541b-414b-8746-14ca66ac0c3f','0d55a789-9635-407b-8c56-f61ca0500289','d9a7a9dc-5450-43a9-8c96-96aad8fe148b','sandalye','2025-04-24 10:54:46.000',8,NULL,NULL),
('b01735c9-3a93-4f17-a2c3-6ffc83733415','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL,'PALET POŞET','2024-07-02 07:47:42.521',0,NULL,NULL),
('b0184bb5-3770-4444-ba4d-467cb245d7c0','2bec7dc4-1e0b-41fd-a49a-0b5961518451','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x190 ekru krem masa','2025-10-27 21:00:00.000',3,NULL,NULL),
('b02788c1-0146-4977-9654-9a5bfdaa0079','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 orta sehpa','2025-07-16 02:41:10.000',2,NULL,'2025-07-16 08:03:25.167'),
('b0475ba5-7be0-4dbd-9322-91f52b8cda06','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL,'PALETLER','2024-10-23 09:00:51.021',0,NULL,NULL),
('b0651a4a-51ca-40bc-aacc-cfcebeb1c141','9a458821-6f05-4e00-b50d-eea5b3159cbd','1be238d9-54e3-4094-8d60-66fd5abb87b5','Afyon traverten','2025-09-14 18:00:00.000',1,NULL,NULL),
('b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9','b7407633-c428-448a-991c-9ae8a31e3782',NULL,'sandalye','2025-06-30 09:00:00.000',6,NULL,NULL),
('b07a55d1-cbb0-4473-8e2f-a91320826dbd','e97846ef-c7e2-47c2-8ed9-5683c56e0d11',NULL,'DENİZ KOLTUK TAKIMI','2025-10-16 18:00:00.000',0,NULL,'2025-10-15 12:05:18.654'),
('b07ae607-4e74-446a-afa8-eacbba5e3668','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'6 ADET SANDALYE','2025-10-10 06:02:19.365',0,'2025-10-21 23:34:16.142','2025-10-15 09:06:41.528'),
('b08f1011-0521-44ed-afa8-62b0f014b52e','398f925f-e9ff-4494-a4eb-d80689e256ac','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-03-14 21:00:00.000',3,NULL,NULL),
('b0a7ad0c-b46e-4dae-be4a-303537beeaf8','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL,'SANDALYE','2025-01-02 21:00:00.000',0,NULL,NULL),
('b0af75c0-f213-483c-af56-315ea49f16f4','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ŞAHİNLER KRİSTAL SANDALYE','2025-02-18 21:29:05.000',6,NULL,NULL),
('b0b9fe77-55c6-4043-8628-b0ea2c868cef','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-01 15:00:00.000',5,NULL,'2025-10-06 13:49:18.188'),
('b0ba6071-ff41-49c3-b032-050a49c2f294','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL,'MOBİLYA','2024-11-14 21:00:00.000',0,NULL,NULL),
('b119aac9-7601-45de-85ad-d1df9db63204','6bf15977-81c1-4276-bfef-d11adbf0e1ea','b151728c-b265-4eed-b5c1-cb53409fb775','2 adet kanepe','2025-05-13 14:15:00.000',0,NULL,NULL),
('b11a7688-4046-43cf-8820-625309aed56f','93d2ab3b-6a9a-4642-becf-a89234c7ee14','fee7f346-332d-419c-9da4-5a7154085362','köşe','2025-08-28 12:00:00.000',0,NULL,'2025-08-28 14:06:42.522'),
('b12d44a0-3b22-46ad-b0a6-4205c48cd9c2','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL,'DELUXE YATAK','2025-06-26 21:08:15.000',0,NULL,NULL),
('b131fb57-d712-4edc-91a4-3767a6ceb690','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL,'SEHPA ÜST ','2025-09-25 05:40:37.222',0,NULL,'2025-10-03 15:15:16.944'),
('b1412704-b0a3-458a-a5d4-ae0a217b9f18','110f0eb8-2914-4e85-b599-dc743891806b',NULL,'Mobilya ','2024-10-30 08:32:35.317',0,NULL,NULL),
('b1469323-bb39-4cdb-9a98-79772b8b5170','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL,' AURA  SCHLAFZIMMER','2025-02-06 21:00:00.000',2,NULL,NULL),
('b153c580-1fa3-4d05-aed9-d033117f4c17','b49349e7-c597-47d1-a275-ed6a18b0719e','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa Takımı','2025-09-11 18:00:00.000',8,'2025-09-14 20:38:42.132','2025-09-12 08:04:17.726'),
('b15c4368-e7d6-4e4e-b516-00f1365a9a74','4dbf93f9-e436-46b7-8455-aa2f9617afb4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x26 dresuar','2025-02-28 12:03:17.000',2,NULL,NULL),
('b15fee30-5c16-4f4f-9aec-4a574a38187e','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL,'DENİZ KOLTUK TAKIMI','2025-04-16 21:00:00.000',4,NULL,NULL),
('b16256b1-d6a2-448b-a170-4c574127a57b','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE YEMEK ODASI','2025-09-07 19:55:36.456',0,NULL,'2025-10-09 10:46:38.669'),
('b169de1e-8e76-43d6-8772-7570cfc9a15d','f063cb46-f6be-4212-a6d8-9be7624bb39d','bd4e5a48-eea2-4ff2-9867-3f7c821bd4a1','konsol ','2024-11-10 21:00:00.000',1,NULL,NULL),
('b16d43b1-d66b-4008-bf2d-25090caa2cd0','a644f2e3-654e-4729-bff3-0390037448f0','48eb2bc7-40b5-4ca1-b858-ef3228babff4','SANDALYE','2025-08-25 05:11:21.000',6,NULL,'2025-08-21 12:09:27.882'),
('b17974be-5d4b-4887-b183-c28314195558','0884b3d4-5cc0-44eb-9508-2f4bc25839ac','d2e3291f-fade-46dd-ac59-68c18dfdd3c9','YATAK ODASI- KONSOL','2025-01-28 21:00:00.000',1,NULL,NULL),
('b17fb740-73a4-4ba7-ae7f-29b65afc0763','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL,'MOBİLYA','2024-08-20 15:00:20.893',0,NULL,NULL),
('b18cd944-b2a8-47b0-becd-29fd21a432c1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL,'Yatak ','2024-12-26 21:00:00.000',3,NULL,NULL),
('b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a','31910f60-232b-44e2-8f56-f03979280a12',NULL,'SSH','2024-03-23 07:43:28.012',0,NULL,NULL),
('b1ad26aa-377c-4129-9ebd-37c5c14ba899','0433f27d-703a-4a68-9cdb-58d86767559d',NULL,'Balat sandalye koyu ceviz','2025-03-18 11:40:33.621',6,NULL,NULL),
('b1b4317e-ddca-49f3-b171-24c1b0186c6b','1af2876c-3389-4499-8232-9de4f494db77','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-04-24 11:00:00.000',4,NULL,NULL),
('b1baa9bf-71ab-446e-8c4f-f00d8bb3ba05','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL,'DENİZ ORTA SEHPA','2025-09-11 21:28:27.000',1,NULL,'2025-09-12 14:12:15.188'),
('b1c85abf-7d3a-462e-b9c5-1e1f7b7dc803','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c','b2574014-48f1-4fa1-870b-8665380ad3e9','Koltuk ','2024-11-13 21:00:00.000',3,NULL,NULL),
('b1cfee3f-4b3e-458d-b167-9e1d49c2621b','9a1e163d-879a-4faa-97dc-a573fdac190c','26126773-c58c-4826-9a54-b06d334d664a','BONNY KÖŞE KOLTUK ','2025-07-31 21:00:00.000',0,NULL,'2025-08-04 11:44:59.932'),
('b1cff223-7843-497c-84cc-9fe5a35bb323','54427ae4-0cae-449c-86ba-ad49870f64d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-09-17 21:59:01.000',6,NULL,'2025-09-26 10:57:22.593'),
('b1de0f4b-af17-44ae-b3be-bda2ccef868e','8dcb0124-79e0-4138-838e-c613554097e7',NULL,'traverten masa','2025-10-20 15:00:00.000',1,NULL,'2025-10-22 11:01:05.553'),
('b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2','5758b84a-ba06-4b26-888b-a1d46af4fac9','23334f3a-b17e-4959-b33b-b748f5878d33','İCON KONSOL MASA SANDALYE ','2025-05-15 21:00:00.000',0,NULL,NULL),
('b1e25181-d908-4fcb-b5f4-98f1985c7698','0abef697-325b-4fde-a364-d1f3c1d2b3f9','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','sandalye','2025-09-29 21:57:28.000',3,NULL,'2025-10-13 09:40:13.311'),
('b1e78900-6d6d-4a9b-b697-4622b372f80f','e9c3de84-44b0-416d-b57a-8549b5c187d0','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x180 milas beyaz masa','2025-04-17 21:00:00.000',3,NULL,NULL),
('b1f55789-9a5b-474c-8ac4-8b065d55b60b','895e1a54-1679-4334-a0d8-1b1901c592a5','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PETRA DOLAP','2025-03-13 12:22:02.138',0,NULL,NULL),
('b2136a6c-8d9e-47f5-a1a7-112a9000127a','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL,'Masa ','2025-03-07 12:36:29.257',0,NULL,NULL),
('b21c3084-fb5b-44d9-98af-afca01352020','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL,'MASA SANDALYE','2024-11-02 07:57:33.934',0,'2024-11-03 20:43:16.333',NULL),
('b21eaaf4-a9a7-4894-ad11-faa0bd06fd22','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL,'masa ve sehpa','2025-03-18 09:00:00.000',6,NULL,NULL),
('b223dc88-3efb-4856-8664-46283f8ac4d5','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL,'MOBİLYA','2024-12-13 12:38:25.517',0,NULL,NULL),
('b22617af-0267-4e38-bfad-26380a6b6670','2b07945c-640f-49e9-a7a3-fdcc706090f9','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-17 19:25:48.298',6,NULL,'2025-10-10 07:26:20.084'),
('b2344382-bf60-4678-b271-01032fee96b4','1e0e887d-6244-4f8b-a7d0-710cf6802438','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA','2025-09-17 22:56:15.356',5,NULL,'2025-09-24 14:23:19.724'),
('b23c09fe-3a88-4a0e-993f-e8cbb7ffde0f','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL,'SSH','2024-12-06 21:00:00.000',0,NULL,NULL),
('b23cf296-f843-4492-9697-0fd43d657771','3e323a55-ba70-413e-929d-bc1527816bbc',NULL,'Mobilya ','2024-10-15 13:09:52.786',0,NULL,NULL),
('b24ac076-2cd6-405e-ad7a-aeb921ff12e4','3cbb1188-1698-4b6e-bd28-06d238414388',NULL,'YARIM TIR','2024-05-29 09:00:57.181',0,NULL,NULL),
('b26bdffe-6074-44e4-aae7-a2a293013975','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL,'MOBİLYA','2025-09-05 18:00:00.000',0,NULL,NULL),
('b274def2-5938-4339-9718-1812b0cc9acb','94fef2de-86f8-489c-828b-0b9a5e9ec1b4','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa üst tabla','2025-10-13 00:00:00.000',1,NULL,'2025-10-15 09:00:59.684'),
('b28511d9-75df-4f6a-b1fb-ce18b7027a2a','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL,'BAZA SETİ ','2025-01-12 21:00:00.000',4,NULL,NULL),
('b287fae0-0a10-4042-b38e-e88e51ed9759','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL,'MONNA MASA AYAK BAĞLANTI PARÇALARI','2025-04-08 21:00:00.000',1,NULL,NULL),
('b28953a0-e299-48d8-9478-30ea8a1d9210','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a','c01a6bb5-a79f-4c6f-81ff-aea8a08bc0e1','SERAMİK SEHPA','2025-06-10 08:10:29.903',2,NULL,NULL),
('b28b3d5c-7e4b-44f0-812b-c88b274927d2','a2c26b12-b789-4b58-b623-97d44b486663','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-10 15:00:00.000',8,NULL,'2025-09-12 09:06:55.960'),
('b292a264-86fe-4aad-bb6f-c4dc0596d02b','79676ac8-69ac-464e-8e35-ce3119fd1f42','81ed0ba8-3918-47d7-86eb-3ffd5cafb042','KOLTUK','2025-10-27 19:00:00.000',5,NULL,NULL),
('b2b08b3a-7fa8-4d9e-87fa-3d14d9e48b46','afe0ae69-06ca-44c7-8928-75ee9c95e9f3','61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','orta sehpa','2025-09-15 00:02:25.374',3,NULL,'2025-09-16 14:08:20.569'),
('b2c78cf5-c58c-4553-bd14-49e83916894c','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL,'Brmino masaları ','2025-04-27 21:00:00.000',0,NULL,NULL),
('b2cc240f-bde3-400a-bbec-a61085853dd5','f3dbda61-0901-46aa-93b6-d65e972a472d','44c404b3-a618-4af5-bdfb-ad381f049053','Mobilya','2025-08-24 18:00:00.000',0,NULL,'2025-09-09 11:06:00.285'),
('b2cef0d0-bc16-4cd4-92af-b968a8d20228','17a3d3ea-9822-46c1-a225-976edf021056',NULL,'KOLTUK ','2025-03-18 21:00:00.000',0,NULL,NULL),
('b2d959b5-31fa-467a-8e1f-cefc0166a15f','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL,'BAZA BAŞLIK','2025-07-07 21:00:00.000',0,'2025-07-18 07:48:51.330',NULL),
('b2dfa15b-7762-4893-a468-af7207b408cd','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL,'Henna masa+ orta sehpa','2025-05-09 21:00:00.000',0,NULL,NULL),
('b2e0a7bb-3347-4afd-b0e1-536f1ce955aa','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','Tv Ünütesi ','2025-01-20 12:41:52.143',0,NULL,NULL),
('b2f8f32b-0237-432e-8bd0-32e1fb3aa55d','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL,'RAMS YATAK ODASI ','2025-01-12 21:00:00.000',32,NULL,NULL),
('b3167874-7104-4c4a-ae3f-5c62fa6ab683','bd527c1b-2a83-4e69-9c2d-979c479102b0',NULL,'MOBİLYA','2024-10-02 09:03:30.119',0,NULL,NULL),
('b31ae358-4cb7-4d8a-bac0-dff0a61dcd39','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL,'MOBİLYA ','2024-12-01 21:00:00.000',0,NULL,NULL),
('b3352d57-7c75-4049-975a-d578fdf73ca8','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL,'KÖŞE TAKIMI','2024-12-23 21:00:00.000',3,NULL,NULL),
('b33c0371-be03-4af2-8c49-7adc620602f6','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 SANDALYE','2025-08-20 12:00:10.515',4,NULL,'2025-08-20 12:41:49.500'),
('b348884e-6744-448d-b634-e8dca8d3c855','48b57732-88ad-473d-a3a7-b8630725788e','1e039b6c-e23a-4607-96af-dece50b09153','sandalye','2025-10-23 22:00:30.479',3,NULL,NULL),
('b350f175-c57b-4824-b72e-1fbba0e98703','bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51','a59c832a-288a-45ad-9922-f8c1ebf24d41','baza başlık yatak ','2024-11-14 19:37:26.802',5,NULL,NULL),
('b352a3c5-b9ec-4d3f-bf94-3477a4939ef8','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-08-29 05:18:52.000',3,'2025-09-01 10:57:16.787','2025-08-29 09:56:56.102'),
('b367aad0-f419-47d0-a902-3531114180e3','69d7a07d-c199-439f-8e6c-e59065df2772','f4b725ec-de83-43a0-8adf-cd7f36f59b78','TOFİ KÖŞE TAKIMI + ORTA SEHPA ','2025-04-24 11:00:00.000',0,NULL,NULL),
('b38439c3-7c7e-4298-a4cc-7ebfb427f502','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL,'4 adet  yatak','2025-08-06 15:27:10.405',4,NULL,'2025-09-10 11:09:33.915'),
('b39244ea-16b4-435c-9bb4-e2081e2736ed','adf790b3-29b5-476e-ba13-8e482d9bc940','3a7c0902-b3d7-4dac-94d9-f025250358d1','KÖŞE KOLTUK','2025-06-24 21:00:00.000',3,NULL,NULL),
('b3975f1f-7fd8-4aee-b297-9d023b31cc58','d2e58279-3f1f-4815-9d06-57edca6efd91','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-05-07 07:00:00.000',3,NULL,NULL),
('b397ad04-cf36-49de-98e6-e6b8a1432616','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL,'SSH','2024-04-27 08:20:29.613',0,NULL,NULL),
('b3a07109-bca7-4f19-b233-bd610e191f78','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL,'MOBİLYA','2024-12-12 21:00:00.000',0,NULL,NULL),
('b3ac181d-7b8d-4ae0-82dd-f3712a64dba6','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,'4 ADET BAZA','2025-06-12 21:42:32.000',0,NULL,NULL),
('b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7','9e399534-04a6-4572-a7ec-3a630c910cdf','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-10-29 22:37:46.000',1,NULL,'2025-10-10 14:10:22.822'),
('b3c3deda-6c3b-46c3-9621-7f4713fc16e3','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL,'SANDALYE','2024-09-09 12:59:53.439',0,NULL,NULL),
('b3d44065-58ae-4a75-9019-04854fbb411c','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL,'TONER','2025-06-25 10:56:52.881',0,NULL,NULL),
('b3f001df-2f2a-4776-a3b3-cdfa1a154531','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL,'MOBİLYA ','2025-01-05 21:00:00.000',0,NULL,NULL),
('b3f02c32-aa9c-4645-9a60-55ade9c2c6e2','68b0a915-121f-4d3c-b2e8-25b8e3e18525','fd87365f-791b-4129-a329-2bbc5296e508','orta sehpa','2025-08-06 12:00:00.000',0,NULL,'2025-08-14 14:48:53.595'),
('b3f430f0-e6a4-4b83-a659-8973f598dee5','b2b86e6d-e570-4c38-ac25-e910c71c1e2f','0f300a3b-b3d6-4b60-924b-aa70cd54141e','baza altı ve boya ssh','2025-02-03 21:00:00.000',1,NULL,NULL),
('b3fb10c2-6a6c-41fc-a7eb-4920e6e670be','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL,'KOLTUK','2024-05-10 06:46:25.024',0,NULL,NULL),
('b4035fe5-266c-42fa-8614-d1d476373fac','d1449931-2ff8-4afa-9b0e-bdc3343cb106','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-28 09:29:48.000',0,NULL,'2025-09-06 09:58:37.221'),
('b406e820-44f0-4685-8e93-c95709e1da71','adf0440c-3715-4603-a3a4-91b6f557e095',NULL,'Mobilya ','2025-06-09 21:00:00.000',0,NULL,NULL),
('b4183fd9-691f-4e50-aa3e-1185b3e78cff','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL,'Mobilya','2024-11-07 21:00:00.000',0,NULL,NULL),
('b4239ab1-b15f-42e7-a23b-ebae1af13fce','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL,'90lık başlık ','2025-05-04 21:00:00.000',1,NULL,NULL),
('b426d6f3-b133-4794-91a9-96e662c2e201','2e7c73f7-d738-4447-86bd-2c43c4f79b02','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-04-23 21:00:00.000',3,NULL,'2025-07-24 07:57:00.869'),
('b44449c8-5efa-4085-bd2d-0a3594587af9','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL,'Mutfak dolabı ','2025-04-14 21:00:00.000',0,NULL,NULL),
('b4526735-5641-4f8e-b544-78126f7e6078','d2d6e485-b5cd-40eb-aea4-a35691e6fe83','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3+3+1+1 koltuk takımı ','2025-03-10 21:00:00.000',4,NULL,NULL),
('b458ebf7-66fa-45cc-b0b9-12f05086077e','f39c59eb-6753-46e7-ad11-8f7fba3db577','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-05-27 22:00:00.000',1,NULL,NULL),
('b463387a-754c-4c53-ade6-f7e850173707','75fc25cd-5f64-489c-b87c-7c749bd09cb9','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Masa+6 Sabdalye','2025-08-09 21:00:00.000',5,'2025-08-12 05:50:17.692','2025-08-11 12:49:19.298'),
('b4914894-38ba-4b92-a3d4-567b3e8d166f','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL,'SUNSHİNE BAZA','2025-06-24 21:10:32.000',0,NULL,NULL),
('b49cb98c-d264-4e82-9dbe-f0420dad505a','d99ae93f-dd73-4f33-a6a3-1bd33e17655a','8b3fd660-7e02-4d1d-9bcd-406bdd25b872','Sandalye bar ','2025-09-10 22:16:30.000',0,NULL,'2025-10-17 07:23:37.683'),
('b4a6edb0-5f03-4460-a3ea-85083f1c61bd','a6138fa7-f1c8-4c89-8e27-5a51160e281b',NULL,'A','2025-08-17 21:00:00.000',0,NULL,NULL),
('b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL,'KOLTUK','2025-03-19 21:00:00.000',0,NULL,NULL),
('b4b0a716-b412-464e-9731-24f8bde6af44','becc1835-a791-4103-9eb4-4d14db8a91fb','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2024-11-24 21:00:00.000',4,NULL,NULL),
('b4b15055-f101-4d05-8ad1-045787380a20','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'KÖŞE','2025-10-08 15:43:48.349',0,NULL,NULL),
('b4b16030-d85d-4a3e-bd25-b628bb5efb5f','f0fd560a-44c1-4908-9784-45a3c9fbd2f7','c5020535-31d2-4aed-bc52-f363fba52624','koltuk 3','2025-06-01 21:06:27.000',0,NULL,NULL),
('b4b901d3-9cd2-4740-9982-7eb46cabc80e','aaa69afc-0eda-49b4-818d-8769ee88f336','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-05-15 10:00:00.000',3,NULL,NULL),
('b4d98069-3d83-4da4-8f40-7cf8dd0aa2a8','d3e4434c-1317-4092-aed5-8cc884ab1ae7','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-09-30 18:12:29.000',4,NULL,'2025-10-10 14:11:02.803'),
('b4e8b5be-8fa4-4819-8d9c-1aa6cbff844d','4e495647-8999-4246-a35c-fd58b0c1ac75','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-04-23 21:26:29.000',3,NULL,NULL),
('b4f5f7f7-67e7-4052-a423-6c6bcf2257a3','567de155-b820-4225-ac37-23f88ed0500c',NULL,'Mobilya','2024-09-04 15:00:35.911',0,NULL,NULL),
('b5003473-d452-4e5a-81ee-06981088781d','13c6ae04-64e7-4d5d-9d68-285118e320cf',NULL,'ŞAHİNLER KRİSTAL ORTA SEHPA','2024-11-06 21:00:00.000',1,NULL,NULL),
('b500f3e3-149c-4c27-a97e-11ac0175c96b','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL,'Mobilya ','2024-10-09 13:10:31.997',0,NULL,NULL),
('b52c782d-173c-4921-91e0-83bad837ccef','46aa945f-6044-4640-8ed8-99191e2890af','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-07-16 14:00:24.000',5,NULL,'2025-07-17 08:01:34.482'),
('b55078b6-f124-4390-9cba-abcd3237294b','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL,'MOBİLYA','2025-09-04 18:00:00.000',0,NULL,NULL),
('b55602e5-8dff-4702-941e-3ee46c8104e1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL,'KING PLATIN 180LIK BAZA SETİ','2025-02-11 21:00:00.000',4,NULL,NULL),
('b55de99d-cf71-46af-8f70-6898462975be','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL,'MDF','2024-08-20 14:53:25.101',0,NULL,NULL),
('b5601e46-e9fc-4d1c-8c4d-4e974d336768','a4db2a81-e01e-459f-a5dc-0aa1254f8b05','e7186fba-e0f5-4e30-9ba7-04b4c86130a2','POLO KOLTUK 3+3+1 ','2025-07-30 21:00:00.000',0,NULL,'2025-08-22 15:46:36.123'),
('b5604942-4711-4185-9f16-590acfefb52b','f99fe573-182b-4663-9ef2-0b30f4db8009','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık','2025-08-01 07:07:46.000',6,NULL,'2025-08-01 11:59:59.855'),
('b5639e6d-c9ce-444e-82df-307a0c24e183','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL,'AYNA','2024-05-04 07:55:50.231',0,NULL,NULL),
('b56e3648-bb0d-4df7-af12-ae3aab1fcca8','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','SANDALYE','2025-05-05 09:57:58.738',3,NULL,NULL),
('b574a061-f2e4-48ca-bb05-af8813fa6286','de492754-6967-40e1-bf64-463ad84fdd39','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','sandalye','2025-08-03 15:54:09.972',3,NULL,'2025-08-08 12:27:32.349'),
('b5756566-2b94-49c1-8c6a-3886ce361461','b465c878-5c55-4a06-a58b-bd7c57228652',NULL,'2 ADET SEHPA','2025-10-17 05:45:23.000',0,NULL,'2025-10-20 08:09:24.966'),
('b586b800-5234-4efe-8034-338d0734dfab','0e1add8c-7e20-424c-83f0-cdb80a06f744','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TAKIMI','2025-01-12 21:00:00.000',3,NULL,NULL),
('b58baa91-8050-4ea7-8247-48fa2eaf8321','2f1cee80-98e2-4491-8790-84b0795e2440',NULL,'MOBİLYA-ÇEYİZ','2025-02-19 21:00:00.000',0,NULL,NULL),
('b5a274b4-de4f-4c77-af06-f5ac09fb4852','45dc2083-2d17-4ec9-b0e0-1e9a0d5e38d9','b010af14-e02c-4cdf-8f51-3af09b1e6fc4','KÖŞE KOLTUK ','2025-10-27 21:00:00.000',6,NULL,NULL),
('b5a89fbe-951c-46bc-b6d6-4131d953a51b','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-09-17 09:00:00.000',2,NULL,'2025-10-02 12:28:45.575'),
('b5b0b7ac-87b6-4580-b7a9-4105fadd6d34','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','763afea4-80d7-4980-bdda-79840ca9431f','Köşe koltuk','2025-07-31 10:33:42.000',0,'2025-09-01 10:28:07.757','2025-08-01 09:08:32.612'),
('b5b719a7-df8b-4493-9ee0-fdc45362a040','dee2df14-4bb3-4032-b3d7-994566aa604d','c508b00d-a686-416e-ab4b-43fe49208cd0','KAM. KÖŞE','2025-10-28 09:00:00.000',0,NULL,NULL),
('b5d05803-9ab4-468c-ba3c-4a0e289f571c','dedf152d-bf4e-47e1-b412-9078997573d4','18c345c7-6cce-4090-a60b-e335f75be36f','300x270 köşe koltuk','2025-09-01 21:28:37.819',5,NULL,'2025-09-11 10:48:22.091'),
('b5d5b706-e95e-4c0b-a2e3-d43416e50bea','449a0466-41c0-4cc0-8da6-376268e5bdfd','cf90c370-208a-4021-aaff-f9220970bca9','MASA ÜST TABLA','2025-08-24 18:36:16.458',1,NULL,'2025-08-26 07:27:54.615'),
('b5dcd6f3-d8a5-4252-97a7-d791ba82e336','9e65ae08-29b6-4cde-954a-39f0530ce16e','a59c832a-288a-45ad-9922-f8c1ebf24d41','Başlık ','2025-08-11 18:21:08.676',0,NULL,'2025-08-13 13:47:59.318'),
('b5dffa27-66ca-41bc-b90d-205635c51d37','71f0d0b2-3d17-43c7-bf48-7355e5d7675a','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-08-19 07:13:41.000',3,NULL,'2025-08-27 14:17:22.354'),
('b5f6869c-be7c-4244-9bf9-704a745a8d2e','32a7763a-26ff-40ce-a7e9-6378f8554627','0f300a3b-b3d6-4b60-924b-aa70cd54141e','yemek odası','2025-04-30 21:24:24.000',999,NULL,NULL),
('b5f81ffd-0a34-49a9-8ff7-1cac1067fdb2','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL,'KÖŞE KOLTUK','2025-06-01 21:00:00.000',0,NULL,NULL),
('b6051284-5975-4633-84a9-2c666e0e1e39','6aebb14b-c093-4594-a175-4b9445b945d8','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','ssh parça','2025-09-08 15:00:00.000',1,NULL,'2025-09-15 17:29:03.520'),
('b628ce1b-6b78-4402-9d3f-96ac8321b505','888c1a17-6ddc-4bc8-b1ab-b00d72942811','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET TV UNITESI ','2025-10-07 02:54:40.000',3,NULL,'2025-10-09 08:47:31.115'),
('b6319fbc-ac5b-4323-8326-06724cade598','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL,'KOLTUK','2024-03-30 10:49:39.650',0,NULL,NULL),
('b63291e7-9a9c-4942-9e5c-792e1279180f','6185b161-cfc2-4a8a-a2f2-c2e05c20c446','b75647b8-16a5-4d6c-a25c-fea4c4f19c3b','dolap','2025-10-08 02:31:03.000',5,NULL,'2025-10-13 09:39:05.630'),
('b661c273-9450-4ec4-b1a0-0e9ebcab1df8','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL,'DELUXE YATAK 160X200','2025-06-19 21:21:57.000',0,NULL,NULL),
('b676bce5-ff84-4ff2-a75c-53d6c2d12ad0','adcb1693-42f3-4520-af12-e32f2e2ee2f5',NULL,'Masa sandalye koltuk sehpa','2025-08-20 21:00:00.000',13,NULL,NULL),
('b67fa3d3-0b05-469c-a42b-d477847d9d21','dec449a3-13d6-40c8-925a-d1283d5b0a59','d6dbe68f-439e-4f7d-a25b-a12833c003e0','Köşe koltuk','2025-07-31 12:00:00.000',5,NULL,'2025-08-05 14:44:23.495'),
('b6915aed-4e89-4306-9a9a-4de67394d422','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL,'KING PLATIN YATAK 120X200','2025-03-30 21:54:35.000',0,NULL,NULL),
('b692c464-2b7a-4151-b457-9482b72ce39c','7722797e-2c67-4213-8908-859d85e5ef36','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-17 20:00:52.771',1,NULL,'2025-09-30 11:32:23.535'),
('b6983269-7177-4886-861d-72648ff63282','46528672-1c96-4785-80ba-77e3cec82ee8','0f300a3b-b3d6-4b60-924b-aa70cd54141e','180X200 DELÜXE YATAK','2025-04-07 14:08:16.215',1,NULL,NULL),
('b698562e-f03d-45ef-b2ac-535d8edcf5c4','4428b444-78f4-43f3-8d88-220442b30896','7cde08b6-b128-40a0-b020-22a0c1ce096f','ODDOLUX MASA SANDALYE ','2025-08-31 10:51:11.000',0,NULL,'2025-09-11 12:53:37.864'),
('b6a3638a-59d1-4e0b-88ca-2018a76e1b9e','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL,'Armut koltuk koliler','2024-04-07 20:52:36.066',0,NULL,NULL),
('b6b84af2-002e-42d6-8888-913741571a16','9665df81-a895-4779-ad78-e6fc3e7f28df','daaee6a5-8e9b-49b1-884f-bf70d5038407','BAZA BAŞLIK','2025-09-30 01:02:09.000',1,NULL,'2025-09-22 12:01:19.065'),
('b6bcdb5c-cba8-4b50-81aa-7aa8e9eb573e','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL,'Köşe koltuk','2025-08-11 21:00:00.000',0,NULL,'2025-08-12 16:15:39.137'),
('b6be996e-7150-4e7a-bf91-a24e28aff6c7','0e2dab47-10d3-49e3-9862-b25eac0ed739',NULL,'LIZBON KOLTUK 3+3+1','2025-03-13 11:29:50.893',0,NULL,NULL),
('b6cc0670-fdd6-4ab2-a2e9-68048aa0caf8','ec271b27-08c7-495f-a5a4-d5814e3d12fd','d6dbe68f-439e-4f7d-a25b-a12833c003e0','1 PARÇA MODÜL','2025-10-09 21:00:00.000',0,NULL,'2025-10-13 09:30:06.616'),
('b6d04ed2-f29f-400a-ba86-37b36b0830b2','cb8ab28e-84c0-4246-b10d-ada59c224895','bed73507-59f5-45a3-a19b-47793c024f51','ALFA YATAK ODASI ','2025-05-14 21:00:00.000',0,NULL,NULL),
('b6d4096c-e878-4da1-981a-ba540b80e87d','78463605-c329-4929-b567-24a3f88f4b7d',NULL,'c sehpa ve puf mağazadan alınacak','2025-05-25 21:54:12.000',2,NULL,NULL),
('b6d84db2-2032-4e62-a65a-a88b6552bf46','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL,'CAPRİCE SANDALYE 1 ADET ','2025-04-10 11:17:39.000',1,NULL,NULL),
('b6dc1a64-c8c5-44f3-905f-7ce1e98dc6dd','75b514ad-164b-4680-8bcb-d21353d39504','4d3f433c-6ebf-4443-a8bd-319b61cbe400','2 ADET SSH','2025-10-05 15:00:00.000',2,NULL,'2025-10-15 08:31:07.810'),
('b6e835c0-7c27-47b9-91e0-ac2fbd0f5577','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-23 14:30:40.000',6,NULL,NULL),
('b7054ba8-258b-450d-b0bd-4a2c180dd4aa','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL,'SSH TEK BAZA ','2025-08-05 21:00:00.000',0,NULL,'2025-08-06 13:19:09.354'),
('b7289916-10ec-4fda-9aca-6352d7145509','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL,'KOLTUK','2024-11-02 08:19:34.689',0,NULL,NULL),
('b72c306e-bff6-4c10-b59c-9ae25eb8b201','fd4a184e-d04a-45fa-af74-f7d45806dede','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA','2025-06-19 21:00:00.000',1,NULL,NULL),
('b732088a-13df-4ef4-ad40-75866bda52af','db777003-5be8-4bbb-b769-243e7d332355',NULL,'2 adet sandalye ','2025-03-17 11:30:24.449',2,NULL,NULL),
('b73ab880-f311-4908-a4ff-7a2d1d67a990','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL,'BAMBİ FAKIR SPOT CLEANER PR 7020 BUHARLI TEMİZLEYİCİ','2025-09-03 03:06:31.000',1,NULL,'2025-09-03 08:34:08.302'),
('b754c285-0492-447c-9c5d-43237c2e442e','e74ec79a-3fe1-4dd7-9872-a4ff0f952163','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-01-08 21:00:00.000',4,NULL,NULL),
('b7555f8b-c7b3-47a1-9da3-7ab0e3ce38ef','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL,'c sehpa','2025-01-06 07:00:06.179',1,NULL,NULL),
('b7612cfc-aad3-4f87-904b-e50d3b29d0b0','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL,'RAMS MASA SANDALYE ','2025-01-29 07:55:41.059',0,NULL,NULL),
('b78519ec-4b79-400f-a709-a1f09256d30d','3bb4499e-7b18-422f-a19d-ece35be90286',NULL,'Mobilya ','2025-06-23 21:00:00.000',0,NULL,NULL),
('b79348bd-6b0f-4bf7-9a46-0e0654fa8fd2','ee442903-bcf3-41c3-8a85-9a99435f8b6b','8c6ecba8-6768-4127-80ba-c9c71d442689','FRİDA KOLTUK TAKIMI ','2025-06-09 12:00:00.000',0,NULL,NULL),
('b79c9c03-f101-41f5-a37a-01d796fa6d5b','54227612-b8f2-4146-ac20-5622ca9f45c2','b78426e8-87ca-4d84-878b-11136d2e5719','PETEK KÖŞE KOLTUK ','2025-09-16 09:00:00.000',0,NULL,'2025-09-29 09:40:11.070'),
('b79e14f7-bc81-4d2c-b54e-e10324f46985','5e876e3f-c0f8-4334-a426-ff4493e61c54','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-08-13 19:39:56.000',3,NULL,'2025-08-21 10:50:25.621'),
('b7bd6938-fe54-482e-95ed-40688cc63b4c','bf1f4b78-8b96-4650-9e12-82af1edcf06d','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-29 09:00:00.000',4,NULL,'2025-10-02 07:08:52.127'),
('b7d7e0ab-fb74-44e9-bda0-e6dfe17e1c77','0fb4d287-c84c-4138-a4bc-12c37b404970','f1ae9a8b-2050-44ca-bc45-05de7735af91','ünite blok cam kapak ve raf','2025-08-28 15:00:00.000',1,NULL,'2025-09-11 10:56:50.334'),
('b7df853c-c210-4f4b-bcc5-e0189a8ebe0b','36c2bf88-d916-406a-9c75-5831ceac476b',NULL,'MOBİLYA ','2024-12-17 21:00:00.000',0,NULL,NULL),
('b7f8578a-5d13-4fa2-9e0d-d1cb8e9d7c01','183e4649-4c9e-491a-ab8a-0e24c8224108','f4b725ec-de83-43a0-8adf-cd7f36f59b78','TOFİ KOLTUK TAKIMI 3+3+1 + ORTA SEHPA ','2025-09-24 17:58:35.129',0,NULL,'2025-10-01 13:30:30.419'),
('b7fbd54c-bcc0-4613-9901-d06327048472','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL,'MASAL YATAK ODASI','2025-09-02 12:00:00.000',0,NULL,'2025-09-26 15:10:00.573'),
('b7fd8ab3-d7da-4044-9725-c8468ff2d4a3','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-08-11 18:20:01.618',0,NULL,'2025-08-13 07:15:06.769'),
('b8089750-c1ff-4b2a-ae78-78b537c54a69','263a2887-35f1-4299-a777-21a594a634b6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','NATURA sandalye ','2025-07-16 08:39:00.000',3,NULL,'2025-07-16 08:00:56.477'),
('b80a687d-56a1-4f89-95ec-335dbcb599d3','855d2794-7066-4b47-b159-2cf8816867f4',NULL,'SSH','2024-10-17 11:56:19.362',0,NULL,NULL),
('b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3','def82a96-8956-42bc-885f-988dfa22f789',NULL,'MOBİLYA','2025-09-05 15:00:00.000',0,NULL,NULL),
('b849cdf0-72e7-4208-8cab-3c1221248605','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-09-25 19:49:00.061',1,NULL,'2025-10-02 12:28:45.575'),
('b85943c0-7fec-4710-b762-43156a31c6fa','e5574090-3955-4e09-af62-dd5eb9f6fce4','15d79900-396c-42fd-a61a-25c2cd217cc8','MALDİV KOLTUK TAKIMI 3+2+1','2025-01-28 21:00:00.000',3,NULL,NULL),
('b85e0d9c-5dfb-438d-b4bb-4da1f04550f5','68b0a915-121f-4d3c-b2e8-25b8e3e18525','fe0a9e17-e52a-465c-af84-8dd1932db99a','sandalye','2025-08-11 11:00:00.000',0,NULL,'2025-08-14 14:48:53.595'),
('b8685301-df5c-4563-ba32-b1155cff246b','9ce62bd7-3afd-4765-a2a2-99f4aea71849','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x170 cm traverten masa ','2025-04-24 21:00:00.000',3,NULL,NULL),
('b8721202-54f1-436d-bc84-f671bfc36fe4','b821f1cd-d990-4100-9455-a2c619562c1e',NULL,'Mobilya','2024-09-02 12:47:52.104',0,'2024-11-21 06:56:42.869',NULL),
('b873bb68-1139-423a-843b-cf65e9bad438','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL,'Dekor','2025-04-14 21:00:00.000',0,NULL,NULL),
('b87a79f5-ab3c-4949-ba48-30ce7638421b','6d081276-ddf8-46f0-93cd-4f0c203eb705','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 sandalye','2025-08-27 14:04:00.000',8,NULL,'2025-08-29 13:33:59.043'),
('b88f8bb2-487b-41ef-bef7-0aa4ee9abd45','08318497-59bc-4444-82cf-f14fd0a31917',NULL,'Yemek Odası','2025-09-21 00:19:43.626',8,NULL,'2025-09-22 10:55:01.581'),
('b8a20339-6657-4781-8f7a-5b991568ee89','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL,'TONER','2025-06-24 21:00:00.000',0,NULL,NULL),
('b8cb209c-3d60-466f-8346-01810d5816ec','c7df4577-2554-4909-9abc-5a62fa7bafc7','8b268fdf-cc88-488a-b15b-ed87aeb4e594','DOLAP','2025-09-23 22:14:12.000',11,NULL,'2025-10-03 12:20:25.317'),
('b8d78340-f04f-4e44-b2c1-2534da12f517','50065a32-533f-412d-badc-5149cb99bf62',NULL,'Sehpa','2025-06-19 21:00:00.000',1,'2025-08-23 14:04:40.811',NULL),
('b8e1bb70-3e44-48ea-8ac2-78178aef0fba','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL,'MOBİLYA','2024-11-02 08:12:46.898',0,NULL,NULL),
('b8e1c00e-2430-4417-9a2f-f583e3a37b18','b035d749-8b47-4cef-bb6f-fb97f2480a4a','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa+orta sehpa','2025-04-09 21:00:00.000',5,'2025-05-07 16:52:12.354',NULL),
('b8e84144-0db8-4892-9f43-56f021cdae8f','f4fdc95f-d066-47f9-858c-34b39a3d3ebd','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','SEHPA ve yatak','2025-09-29 08:59:35.000',0,NULL,'2025-10-11 09:16:27.614'),
('b8f4daca-0289-4a61-84eb-ddbde1849b43','2d717ffb-678b-4e82-9f61-5357693131d8','763afea4-80d7-4980-bdda-79840ca9431f','Köşe koltuk','2025-04-09 21:00:00.000',3,NULL,NULL),
('b9039b9b-ecf6-4419-a382-893676712c93','eea08890-ec66-4c80-b59d-441d24154725',NULL,'aa','2025-08-31 12:00:00.000',0,NULL,NULL),
('b90750dd-73f4-4067-b29c-e3c2b60c9fa9','c6094b6b-2487-4a38-ba3f-93750f2a9130','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-21 18:00:00.000',0,NULL,'2025-08-23 10:16:03.977'),
('b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL,'DEKOR MALZEMESİ','2025-02-17 21:00:00.000',0,NULL,NULL),
('b9223e92-3707-4fec-b48c-9196dfa86e52','2a9c7f69-97e7-4504-8e8e-9939d84f393a','b6781cc4-4ba5-457f-975e-ee2a01f09909','Bestenur özkaya SSH MASA TABLASI ','2025-10-02 12:00:00.000',1,NULL,'2025-10-06 11:13:08.475'),
('b92e31e4-c5b5-4f66-97df-588443afb00e','da4d99db-af56-4362-a1e7-d972dc6e8b1a','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-07-31 13:00:00.000',3,NULL,'2025-07-31 14:02:51.132'),
('b93a43a6-9fdc-465a-bdd5-9b3010d42974','2791411b-f352-4706-ac7e-e1f3dcb20fa4','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM YATAK ODASI  (KARYOLASIZ)','2025-05-25 21:00:00.000',0,NULL,NULL),
('b93c6331-52d1-4457-9c77-5af31d37b339','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL,'Köşe takımı 3 paket sandalye 1 orta sehpa ','2024-10-31 19:19:31.148',7,NULL,NULL),
('b94a7fe2-1d24-4836-a791-eb58ea037025','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL,'Traverten sehpa','2025-07-21 21:34:58.185',1,NULL,'2025-07-24 08:03:07.990'),
('b94c806b-5763-488c-87b2-52f7eaf89c15','fd6cdf42-58f9-43ac-acce-9d75b76c6d29','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE TEKLİ + PUF ','2025-09-07 19:26:35.259',0,NULL,'2025-10-02 12:01:25.866'),
('b95d584f-3939-4e43-8016-f4cdab736e9d','1d98874a-3c1d-4a2e-ad9b-b943512896cd','38a7333e-8a0f-4e45-957f-e11d538d2097','Masa ','2025-01-08 21:00:00.000',0,NULL,NULL),
('b960ab31-c1e3-421c-b7b3-012a7ab2d040','c301d58c-ecdd-45ca-85ce-fb5d8517c3be','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten masa ','2025-06-18 21:00:00.000',3,NULL,NULL),
('b96216ca-b026-4c3b-b8e0-ecb7a190fb52','06c582f1-63bd-4b65-a2a6-e51e33713b25',NULL,'KÖŞE TAKIMI','2024-03-18 08:50:30.775',0,NULL,NULL),
('b97e719d-af3a-4bd8-9b44-b4d9fa118bee','307b2e66-0c82-44f9-bcce-a3c2236f189f',NULL,'MOBİLYA ','2024-12-22 21:00:00.000',0,NULL,NULL),
('b988fde4-e371-4e31-a284-a3f361315160','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL,'KING PLATIN BAZA SETİ 160X200','2025-02-11 21:00:00.000',4,NULL,NULL),
('b9d10e45-08f3-4b6c-adf0-6b6da3ea6318','c930eade-75ea-4464-a6c5-445be1fb2f29','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','SANDALYE','2025-06-16 08:43:36.250',0,NULL,NULL),
('b9dc5ac8-4889-4662-9cde-61ca4efefe1c','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'KUMRU DENGEMA S80 LAILA SANDALYE','2025-08-26 01:57:05.000',4,NULL,'2025-09-08 12:00:07.860'),
('ba0c3ae6-ffe6-4d66-b8c1-36ba1218bdf3','63812a5c-02ef-4661-96d7-348a4af6ef8a','2648ebea-6027-48a1-b672-7e6e6b86cd2e','Yaylı yatak','2025-07-21 15:28:03.000',0,NULL,'2025-07-21 09:22:13.784'),
('ba1b4d1e-5020-4d16-9959-9afa0def8c5e','1372768c-0132-475f-bd20-c5373f0785ae','46e0d98a-c7cc-4fb9-a44b-673575d4c75d','konsol masa sehpa','2024-12-28 20:08:32.416',0,NULL,NULL),
('ba21539a-2c5a-4dda-b7c0-7de176351685','e2cd59c5-096c-4f6a-9181-6be527344ec8',NULL,'Köşe takımı ','2024-10-31 18:25:48.710',0,NULL,NULL),
('ba21f0ec-8f24-4b9e-9a8e-22b2194606be','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6','cf90c370-208a-4021-aaff-f9220970bca9','Ayak','2025-09-17 16:18:25.000',3,NULL,'2025-09-23 12:28:36.258'),
('ba35c585-5a41-49a0-931f-21e6c034471c','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL,'Koltuk Takımı (3+3+1+1)','2025-05-20 21:00:00.000',4,NULL,NULL),
('ba4d79b7-2f50-472d-b8a3-175425785005','887939c6-c572-4048-9ec2-13b2ba75c706',NULL,'Mobilya ','2024-09-16 09:44:28.601',0,NULL,NULL),
('ba4fb021-5e2d-482f-afab-70b81af37be7','042f3c72-dff0-4f05-808d-d871ab750191',NULL,'Yatak','2025-08-15 09:43:58.770',0,NULL,'2025-08-15 10:26:32.593'),
('ba5911fb-48f7-4812-9cf8-75c9a9e745fb','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL,'sandalye 2 adet','2025-04-23 21:00:00.000',1,NULL,NULL),
('ba600219-bd53-41ab-9277-b80560376633','9665df81-a895-4779-ad78-e6fc3e7f28df','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-08-26 01:00:00.000',5,NULL,'2025-09-22 12:01:19.066'),
('ba7408a0-5dee-4d14-bcd3-4796bd3d4c66','78b80c42-44c2-4ec1-827a-ef8e32bcec6c','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL VE PAKKO EVDELÜX ALFA ŞARJLI ARA MODÜL','2025-09-18 06:00:00.000',6,NULL,'2025-09-22 09:23:23.746'),
('ba8a3b40-6783-4783-9cb0-da727261a6d9','05e527f9-8a74-4f42-b673-b05994d5555d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten mdf masa ','2025-10-16 12:00:00.000',3,NULL,'2025-10-24 08:26:38.778'),
('baa0c4fa-32af-4807-b14b-e9e9f404f5a0','e3d501f7-bb6a-427a-b83e-dcb6d20860d4',NULL,'MOBİLYA','2024-03-23 07:37:20.415',0,NULL,NULL),
('baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL,'Mobilya','2024-04-07 20:44:02.810',0,NULL,NULL),
('baace365-1a71-416b-8d76-9200d2fa2407','7ebc061e-668d-437b-b1f8-46651f8f4ce0','e3c8caa5-3a96-4aa2-9932-9d25cca347cb','KARYOLA ','2025-08-10 17:33:22.475',5,NULL,'2025-08-30 13:24:36.321'),
('baad18cd-13f0-4d60-9d73-5210c1d6a589','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ MAGNASAND 160*200 BAZA','2025-10-03 12:44:58.000',1,NULL,'2025-10-03 11:30:00.509'),
('babc75f8-a544-42a0-b492-38859e331e41','18e20c12-0084-4178-a4a0-370a754f1563','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2024-12-26 21:00:00.000',8,NULL,NULL),
('bad94e15-0221-4841-abe9-40864fb6b65a','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL,'PARÇA','2025-09-05 18:00:00.000',0,NULL,NULL),
('badecae3-eda2-41b7-b1c4-0a0ea4e409cc','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL,'Sandalye ','2025-01-09 10:29:23.814',4,NULL,NULL),
('bae4c977-9759-44fc-bcaf-f9d3042c9468','1d9f810e-286d-4bae-8abd-224e036ce2c8','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE PUF ','2025-09-15 07:00:29.483',0,NULL,'2025-09-19 11:46:16.269'),
('baf388d4-d2ac-46ba-bea3-c55d74a75aca','2d717ffb-678b-4e82-9f61-5357693131d8',NULL,'Sandalye ','2025-04-10 08:59:55.552',3,NULL,NULL),
('bb395081-1e96-4f04-a805-718cc5ddc9fe','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-05-12 21:45:21.000',3,NULL,NULL),
('bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL,'Mobilya ','2024-10-09 07:31:06.315',0,NULL,NULL),
('bb888d28-6c88-45b3-99a6-a8c19e287f7e','1b95f6b8-b318-4efe-90f5-5c3bca7a5637','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye','2025-04-15 13:59:13.707',3,NULL,NULL),
('bb9a5b8a-5138-4f0b-ae57-88695cf68e25','b98ee553-278c-457b-9e14-25f2810f7f82','157f7330-b6f7-4343-b451-105e6b556b19','Koltuk','2025-10-20 15:00:00.000',6,NULL,'2025-10-22 13:26:32.291'),
('bb9f6535-af97-4e17-af79-099a643ce967','eee6549c-7110-48d4-b248-afbe45d679e0','e6163ff2-7604-4c90-a95f-079a04161dae','Verona Sandalye','2025-08-19 14:10:43.000',0,NULL,'2025-08-21 12:33:21.371'),
('bb9fb398-3da9-4e82-8bf7-3262f9fec5db','f4f40ee4-217b-42da-be20-ab73e6a72821','940c6390-4082-4fe5-aeaa-06d180147a7b','Masa sandalye','2025-07-03 22:00:00.000',11,NULL,NULL),
('bbaefe28-b9dc-4d61-857a-1ef4e89040b9','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE KOLTUK KASALARI ','2024-11-03 21:00:00.000',1,NULL,NULL),
('bbc20f00-196f-40b1-9f3a-f3929d7454df','668dd554-9513-4da3-8f96-649ae0505732','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-10-09 16:09:15.000',4,'2025-10-09 13:56:55.395','2025-10-09 13:38:38.393'),
('bbc47a20-1918-4efc-9dc8-5f48fead5ab9','3f18122e-004e-4381-bc37-c92c815065a9',NULL,'Döşek','2025-08-20 03:54:09.800',1,NULL,'2025-08-27 08:30:21.771'),
('bbc6d966-9d42-48e9-83e4-13afb85a7c33','1080adba-e901-4380-93d1-e3ffaab7c355','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS GOLD YEMEK ODASI','2025-09-16 17:37:20.970',0,NULL,'2025-09-25 11:44:15.130'),
('bbcffc00-0a8a-4665-a45a-12be5d52ac62','17d4a677-f522-4e31-85af-9b012f78f44d',NULL,'ZİGON SEHPA','2025-10-23 10:17:38.196',0,NULL,NULL),
('bbdbd9b2-b5a3-45b3-957d-f9a679c5ca70','82dc9888-ae2d-49d7-bb95-d6afb6ece526','0f300a3b-b3d6-4b60-924b-aa70cd54141e','SSH BERJER AYAĞI','2024-12-20 21:00:00.000',1,NULL,NULL),
('bbefaa04-c9ba-4097-8d7e-778a6764755e','a3c1d16e-1d65-47ab-9a96-281fee178cfd','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET SÜNGER YATAK ','2025-10-28 13:47:00.000',1,NULL,NULL),
('bbf09810-b890-4a13-968f-4412cec77c61','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad','0c32079b-f912-41cc-9d0e-e1bd6235d204','PİER ÜÇLÜ KANEPE 2 ADET ','2025-07-24 21:00:00.000',0,NULL,'2025-08-06 12:12:41.546'),
('bbf524c3-27fa-486f-bdf9-142bac6ace56','f63ff1b9-4bf8-4f20-b9ad-8c7466498584',NULL,'3-3-1','2024-03-16 08:40:51.428',0,NULL,NULL),
('bbfb2336-68c2-4a56-ad65-816c9fd52d3e','abe5ef68-f84c-446c-b39b-d13674dbab80','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','Sandalye','2025-09-14 15:00:00.000',1,NULL,'2025-10-14 15:04:32.192'),
('bbfd2ee8-8b41-4dad-9b78-8a62e2679cea','be6b74bb-6b56-429f-8118-650dc26879d4','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-07-16 10:06:21.000',3,NULL,'2025-07-16 12:52:48.589'),
('bc27f6fb-29e7-4868-a1a7-34e9df8d2c77','3977a5d5-74d4-4a83-924b-634b068065a2',NULL,'BAZA BAŞLIK','2025-06-29 21:00:00.000',0,NULL,NULL),
('bc611bdb-d2fb-42fb-b735-3524b3d6a4fd','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL,'YATAK BAZA','2024-05-29 09:21:29.550',0,NULL,NULL),
('bc7d9bfd-1d76-4ec3-ba08-f95ec93894de','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND DOLAP SAĞ KAPAĞI','2024-12-20 07:45:04.302',1,NULL,NULL),
('bc88e0d5-12ae-4e42-9f01-c2418ab068b7','fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','2 ADET ZİGON SEHPA','2025-10-28 13:40:19.000',2,NULL,NULL),
('bcba86c8-98cc-483c-835e-d6a21f8a45b4','4ee5ea12-f019-4745-8dc5-d1a4bfa3b2b9',NULL,'Koltul','2025-02-19 21:00:00.000',0,NULL,NULL),
('bcbbd32d-478e-47f4-97ba-0a391ba7a4db','a6b849e9-82a6-4209-bbf8-1190e6651471','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-09 11:00:00.000',5,NULL,'2025-09-22 09:14:48.368'),
('bce4c0a6-f06f-418a-8c1b-131c4f5ffc22','223bf502-0a5c-4df0-bef2-463ec95dbb4e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Traverten masa ','2025-08-07 21:00:00.000',3,NULL,'2025-08-07 12:37:37.791'),
('bce777a7-72c4-47a3-8d2b-777b264ad8fb','3e19392f-7b28-4ec5-bd54-c32058400252',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('bcfdaa86-6833-4592-8adc-dd341fde927c','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL,'VİRAL KARYOLA + 2 KOMODIN','2025-03-11 21:21:33.000',0,NULL,NULL),
('bd088382-ea59-4eef-9d88-602bb3f44bc6','2a615cd5-31fe-4786-897f-defeaeff6284',NULL,'sehpa seti','2025-08-31 15:12:51.000',2,NULL,'2025-09-06 15:39:41.760'),
('bd157753-3a74-47f7-b5f9-15e48e3e3a01','8b1f42c0-ccaa-4899-9782-c3ad13f853c3','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe ve yatak','2024-11-26 21:00:00.000',8,NULL,NULL),
('bd176b24-f129-40d4-8c33-6b35eded0fad','396cb143-14ce-480a-8762-a43699b4d2d2','b4b527e9-c851-458f-9238-9049a66f2c90','YATAK ODASI TAKIMI','2025-08-01 08:16:00.000',0,NULL,'2025-07-31 13:24:20.946'),
('bd19b448-d5df-4f2c-bacb-4f45d6ea0ce9','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa','2025-09-22 05:00:00.000',3,NULL,'2025-09-26 10:46:26.737'),
('bd1c7a9c-2cfd-4688-985d-3595ff25bc8f','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL,'180x200 yatak','2025-04-29 21:00:00.000',1,NULL,NULL),
('bd29119a-537e-44bb-96fd-8130d2d111e5','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL,'aksesuar ','2025-05-08 10:34:08.000',0,NULL,NULL),
('bd2a6d61-a2dc-49d3-a1f2-858d2724dbb7','35563c2e-e808-44fd-8e6b-f1d59af96d33','2ddb5e8a-7bcf-4697-802e-3dd8f2430d6a','Berjer','2025-08-17 21:25:12.202',0,'2025-09-26 12:52:55.802','2025-08-25 09:07:03.963'),
('bd3024d4-77ba-45bc-938e-d1bc61220b35','690f6517-eb93-442b-b224-2954ac3c5231','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2025-07-31 21:00:00.000',0,NULL,'2025-08-07 14:37:22.434'),
('bd3596c4-ba42-44fe-9a53-14cf56f1f7ce','d3e4434c-1317-4092-aed5-8cc884ab1ae7','c747818f-6519-46ff-8415-3abd46cd000e','KONSOL','2025-10-10 01:52:17.000',1,NULL,'2025-10-10 14:11:02.803'),
('bd3b78bb-f2aa-46a7-8e5c-68653633f60a','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL,'Mobilya ','2024-10-09 08:08:01.684',0,NULL,NULL),
('bd41d198-82e6-4c02-82e8-235f1305b40a','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL,'Balat sandalye ','2025-01-09 12:30:17.000',6,NULL,NULL),
('bd5cd96b-f90b-435c-9dd2-b569c97d608c','35cb8f31-e838-41db-b77a-66b99e847841','0f300a3b-b3d6-4b60-924b-aa70cd54141e','ssh','2025-02-23 21:00:00.000',3,NULL,NULL),
('bd677618-e7e5-44fa-a9cd-fbcd285461e8','528a4efc-5102-4165-8106-60f8052866e1',NULL,'DUVA LUCCA ORTA AYAK 2 ADET','2025-03-20 21:48:44.000',2,NULL,NULL),
('bd6cfe4a-bd47-4822-8402-62086ab48f7d','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL,'halı','2025-01-28 10:07:00.074',1,NULL,NULL),
('bd7ba9b5-8269-4522-b579-d69c949c4a64','9c826bc4-15c9-43a5-8ec8-92c216c54593','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe ve iki adet tek kişilk set','2025-04-23 21:00:00.000',9,NULL,NULL),
('bd7ec8be-4215-4dc6-b7a7-0bdad2bd0193','1be311ce-e06b-49b5-89b4-ca8a3ecea45f','52a4ba6b-a138-44a6-a361-b229db2520b6','VALENCİA ORTA SEHPA / YAN SEHPA','2025-09-18 03:14:02.000',0,NULL,'2025-09-22 11:30:17.199'),
('bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7','bf69a70a-73ab-451f-bc43-7e834619f2e6','b044c797-8c15-4ef0-b74b-c71ffa32d77d','MALDİV YEMEK ODASI ','2025-10-14 14:17:51.000',0,NULL,'2025-10-24 16:10:28.556'),
('bd97be19-c25e-4b62-a5ce-a4fa52c9903e','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL,'Hediye Zigon Sehpa (Küçük Kutu)','2025-05-20 10:23:13.964',1,NULL,NULL),
('bd9f1765-f44d-464e-abbf-bc23221a0925','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND ŞİFONYER ÇEKMECE ÖNÜ','2024-12-20 07:44:06.333',1,NULL,NULL),
('bdb0624a-95e1-45f3-a4f2-5d9bbe332e1b','e2917618-7147-4577-94d1-c21f2fc158c1',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('bdc0c5ca-f162-4477-b2c0-e1aff46c190f','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL SANDALYE','2025-08-28 02:12:39.000',6,NULL,'2025-09-08 12:00:07.860'),
('bdc159b0-60b0-40ff-9092-421620718ec5','46debcfc-622e-49c2-bc0c-3ace3fa84661','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 SANDALYE','2025-09-16 04:32:08.000',4,NULL,'2025-09-17 08:59:47.064'),
('bdc15b51-242d-450f-a47e-a75e07f475a4','9d816e36-46d4-475f-ab4d-8dc4e121cb72','62fd202f-cdb0-47ed-839d-62ed1e68a513','BAZA BAŞLIK+ YATAK','2025-02-07 10:20:02.000',0,NULL,NULL),
('bdca9e48-96b4-419d-bf21-16ca73c6de14','cde89988-42b8-4e80-ba9b-ea5aebd3b21d','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-24 14:13:25.595',6,NULL,NULL),
('bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL,'Mobilya ','2024-10-21 08:46:38.698',0,NULL,NULL),
('be0999be-dca7-41c5-91aa-83b2199e4caf','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL,'Armut kılıf','2025-05-24 21:00:00.000',0,NULL,NULL),
('be0f69f9-3219-4b06-a695-344846f78ead','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL,'Koltuk 3+1+1','2025-07-06 21:00:00.000',5,NULL,NULL),
('be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL,'Balat sandalye ','2025-02-07 09:00:00.000',6,NULL,NULL),
('be305b23-f28b-48dc-8c0b-c8aaccb68d10','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL,'MOBİLYA','2025-01-04 21:00:00.000',0,NULL,NULL),
('be3b1649-d565-4ca8-8fb2-e19d01836c0b','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b','3e78db22-08b5-4c8e-9d69-c184e551e40a','keramik masa','2025-10-29 03:00:32.000',3,NULL,'2025-10-22 09:00:38.305'),
('be51b0c4-11e0-441f-95e7-c83b21840f5f','3aa437d7-1b46-478b-9e81-baf5f2be1eb0','8b268fdf-cc88-488a-b15b-ed87aeb4e594','DOLAP KAPAĞI','2025-10-22 21:00:00.000',3,NULL,NULL),
('be58b061-d13b-4150-9b6b-40941540f77e','6c9799b7-d54a-4660-a5bf-0557b778d342','37486a5b-3dc6-4298-9bfd-3291b8f42d46','KOLTUK TAKIMI ','2025-07-08 21:00:00.000',0,NULL,NULL),
('be5c2cd1-c0fe-4540-abd0-4e5f8826610d','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL,'İKİ ADETVODA BERJER SALDA KOLTUK','2025-09-11 12:49:34.000',2,NULL,'2025-09-15 10:19:46.239'),
('be5f48d6-5c2f-457c-a730-eb86e26bbc49','c106b212-52f4-41f3-8f99-1ac006f2e5af','0f300a3b-b3d6-4b60-924b-aa70cd54141e','konsol aynası ssh','2025-01-28 21:00:00.000',1,NULL,NULL),
('be66decf-7f30-4b07-b179-31985aca45a6','2c93ce34-e03d-44d9-994a-7219e1c623b0','6cf48902-0efb-4fdd-97e3-79e7b0fd3a18','MASA 230 CM','2025-07-31 09:00:00.000',3,NULL,'2025-09-02 09:03:40.428'),
('be73bfce-7391-4246-a655-6a37a58937a0','ab2f1d14-a20a-43bf-b89f-55328f271e01','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-09-13 03:00:00.000',5,NULL,'2025-09-16 09:16:23.359'),
('be81a593-813e-42e0-964f-fcbe3778c917','06e56b2e-9b9b-4c5b-8022-4849479f4e4a','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-08-21 21:00:00.000',3,NULL,'2025-08-27 10:44:06.546'),
('be83833f-6e73-430c-8d22-7a462cee5fde','1d98874a-3c1d-4a2e-ad9b-b943512896cd','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Berjer ','2025-01-09 10:35:47.004',0,NULL,NULL),
('be88542f-e0b6-4861-aa2f-e410fce0ef7d','db777003-5be8-4bbb-b769-243e7d332355',NULL,'Mostar üçlü koltuk','2025-03-16 21:00:00.000',1,NULL,NULL),
('be99e41f-406c-4044-b60a-ad33dea43bd8','e31fb4e2-d701-4393-8a77-ea678eda57d0',NULL,'KOLTUK ','2024-11-19 21:00:00.000',0,NULL,NULL),
('be9c2c0d-546b-4955-8cae-7e59b8476d8a','96fd2ec1-bc18-4e5c-aa54-b63b621f826c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 açılır traverten masa','2025-07-31 06:00:00.000',3,NULL,'2025-08-28 07:07:29.763'),
('bea7bfd4-c724-4bd1-9622-cc671ef16009','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL,'MOBİLYA','2024-07-30 14:48:06.967',0,NULL,NULL),
('bec58cd8-502b-49ef-9b3d-96d1fa46d2f0','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL,'SSH','2024-09-27 12:25:33.882',0,NULL,NULL),
('becd21f2-9082-48b0-ac47-6711ce47c626','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA','2025-06-19 21:00:00.000',1,NULL,NULL),
('bedd9b20-bb73-4dc2-b799-5a1a172888ca','e8131f06-593c-49fc-9c77-c5965295a667','93d5fa22-3136-4d4a-b059-a13510667dad','EFES KÖŞE KOLTUK(250*340)','2024-12-16 21:00:00.000',0,NULL,NULL),
('bedfc7ad-a202-4cd7-b76e-9096cb5176d0','7111120f-fafa-47e7-88da-3e0454ed201a','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN AYAKLI CAM MASA','2025-04-16 21:00:00.000',1,NULL,NULL),
('bee352b0-739f-4e4e-92a3-3b8256a7e9e2','21e3be67-9336-48fe-9a70-3338aee8c4a9','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-08-11 09:38:01.000',3,NULL,'2025-08-15 12:54:04.918'),
('beef7e58-43a8-45af-a8d0-f733859c2592','0e979831-071a-44d0-92b5-b61f986da797',NULL,'SSH','2024-10-02 08:55:02.056',0,NULL,NULL),
('bf1660ef-4ae9-46c0-a691-5e04c6c2cc30','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND BAZA İÇ ORTA KAYIT','2024-12-20 07:45:39.421',1,NULL,NULL),
('bf1674fc-9f29-42e9-9663-93caf07e711f','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL,'traverten masa + sehpa seti','2025-04-15 21:00:00.000',1,'2025-04-18 07:32:29.998',NULL),
('bf1a5038-41f2-4421-8c5f-5546bf1e6c91','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL,'Milas masa 90*160','2025-01-08 07:00:22.000',3,NULL,NULL),
('bf29a690-2cc1-42b5-8c3c-53bcdc53ae9b','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL,'BAZA BAŞLIK','2025-10-08 15:43:04.819',0,NULL,NULL),
('bf2b943e-1619-48d0-af42-7235615e23cb','7e8785f1-7130-4936-8f4d-d44ffa1d9b07','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-11 19:57:43.000',6,NULL,'2025-10-02 08:15:12.187'),
('bf2fbd97-6d0f-4724-b25e-47e019854e49','1c5bab65-b13f-47a3-a069-66dac652ca30','b044c797-8c15-4ef0-b74b-c71ffa32d77d','MALDİV YATAK ODASI','2025-06-29 21:00:00.000',0,NULL,NULL),
('bf3c6d76-210c-4d83-8776-c792b4de5d83','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','2835bf76-fb31-48f4-b854-77c0b1334523','baza+başlık+3adet rollpack yatak','2024-12-23 21:00:44.000',0,NULL,NULL),
('bf45c546-7b61-4cb9-8ff6-a953f372662d','91baf8ac-c499-4118-bb77-3c280cca0a2f','8f681d43-0f04-48bf-a190-abcd5fbd637d','VİRAL KARYOLA BAZALI ','2025-09-09 00:43:54.000',0,NULL,'2025-10-14 10:33:41.247'),
('bf5036aa-f3df-41f1-a7f0-0d39bff58968','af4e1860-0998-4434-bd62-e28f7958cebe',NULL,'TV','2025-01-15 21:00:00.000',0,NULL,NULL),
('bf52ba29-5264-4730-8413-ac5285816226','c7236957-4e70-458b-8d5d-c7a04c012262','0f300a3b-b3d6-4b60-924b-aa70cd54141e','kanepe kasası','2025-07-04 07:57:09.729',1,NULL,NULL),
('bf53d9dd-4984-4f03-86c9-3a340e075511','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL,'KOLİLER','2024-09-05 15:49:31.317',0,NULL,NULL),
('bf560fb2-0b91-485a-bf70-cae59896df3f','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL,'Mobilya ','2024-10-07 11:11:07.330',0,NULL,NULL),
('bf778fd6-13c4-47e1-9120-ab8609b766a8','eb7486ef-1def-475a-94cb-2a65d39933d5','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-08-06 12:00:00.000',0,NULL,'2025-08-13 09:22:52.038'),
('bf8b314b-c9bf-495a-a5d4-e261174c043d','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL,'Traverten Masa','2025-10-12 06:00:00.000',2,NULL,'2025-10-15 10:09:55.526'),
('bf9a9a10-03c1-4c3d-ac2b-24d040e1f835','ca8bc896-5c58-4355-a8a8-a80a250e2558','15d79900-396c-42fd-a61a-25c2cd217cc8','RİGA KOLTUK TAKIMI 3 3 1 1 ','2024-12-03 21:00:00.000',4,NULL,NULL),
('bfacae57-61cf-45fe-85f9-15ca84750bed','866ff076-12a1-4d7b-8ebc-b64544beb08e','8f681d43-0f04-48bf-a190-abcd5fbd637d','SSH PUF ','2025-10-11 10:32:32.000',0,NULL,'2025-10-23 08:44:00.786'),
('bfba3c80-32b5-4b72-8dbc-a208cd17eeda','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL,'Balat sandalye ssh','2025-07-21 18:00:00.000',6,NULL,'2025-07-23 08:33:06.766'),
('bfd30aff-0009-4a72-9414-8ec03c18ff4d','0b1cc952-6f67-4baa-ba60-c50028dfbd88',NULL,'SEHPA','2025-01-07 09:23:51.941',0,NULL,NULL),
('bfde6081-8376-4df9-8f57-774c35ed9954','5e8ddd62-748e-4719-9bad-9f588fc2c7d3',NULL,'2 ADET 3LÜ KANEPE','2025-10-14 15:00:00.000',2,NULL,'2025-10-20 07:20:34.269'),
('bff50eb6-35f0-4d46-9229-c709335da145','690f6517-eb93-442b-b224-2954ac3c5231',NULL,'masa + sehpa ','2025-08-01 08:52:26.000',0,NULL,'2025-08-07 14:37:22.434'),
('c000faa6-6333-4c74-9601-233c813836c2','72aa64fd-4469-41aa-9db0-8095ab4bfdf0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köe koltuk','2024-11-26 21:00:00.000',5,NULL,NULL),
('c01d9e07-371b-45a7-a83f-217b42fc1fd5','b7777790-d6b3-4324-8c03-3534c7356952','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-14 16:48:02.000',3,NULL,'2025-09-18 11:28:30.215'),
('c01fb28b-ddac-45ad-9fd4-6dc177af77f8','35563c2e-e808-44fd-8e6b-f1d59af96d33','2ddb5e8a-7bcf-4697-802e-3dd8f2430d6a','Köşe koltuk','2025-08-17 21:24:48.684',0,'2025-09-26 12:52:57.151','2025-08-25 09:07:03.963'),
('c02a7a5d-c8b8-4c15-8213-f0898fe13e2c','3ad53d36-5814-4fb1-b916-51c2073c9b01',NULL,'Berjer','2025-09-24 21:00:00.000',0,NULL,NULL),
('c02ffcbf-98bf-4c9a-9545-ddfcb6da67da','82f2dc1e-58cf-4fd0-9936-e9927dc016f0','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','130 çap mermer baskı masa','2025-03-11 21:00:00.000',2,NULL,NULL),
('c03191b8-4886-46b6-b73c-6bb65be89b63','5f1e05ef-a967-45d1-a984-4cd1f018c261','e847552a-e65b-4888-afca-9e1df09cf7b3','SYDNEİ SİYAH METAL TABURE','2025-03-24 08:10:18.167',1,NULL,NULL),
('c032e8ce-824c-49f7-9369-fe87698e9814','4794626f-1ea7-475e-83ad-bdefd15b98b4','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','PRADA SANDALYE ','2025-05-04 21:20:44.000',0,NULL,NULL),
('c038b12a-54f8-4506-ab1d-bf0a0cc4dd8b','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'KUMRU NEFRO BİLGİSAYAR KOLTUĞU','2025-08-26 02:02:39.000',1,NULL,'2025-09-08 12:00:07.860'),
('c046d586-ea99-4794-a85a-a2c69dda4abe','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL,'sandalye','2025-04-24 09:20:43.000',1,NULL,NULL),
('c04dff2e-c0fd-4ad1-b4af-d38597d7c1a6','a3c1d16e-1d65-47ab-9a96-281fee178cfd','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET KARYOLA ','2025-10-28 13:46:26.000',6,NULL,NULL),
('c080623b-df50-459f-92a8-eb2eaff4030b','b78bd5b9-8cff-4d83-880b-6b121f0affe1','44c404b3-a618-4af5-bdfb-ad381f049053','frida köşe','2025-09-23 08:26:29.000',0,NULL,'2025-10-16 11:53:00.321'),
('c08c5699-9501-4ce8-81b0-c32d990db7f3','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL TV ÜNİTESİ ÜST BLOK','2025-08-28 02:14:24.000',1,NULL,'2025-09-08 12:00:07.860'),
('c09fe5b7-4d98-467a-933a-798490453b9c','50bc90ae-fedc-49be-8709-4c99c7900a95','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-11-10 05:38:03.000',3,NULL,NULL),
('c0b8ae62-d997-4cae-91fe-c5c498f7132e','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2024-12-28 20:08:20.580',0,NULL,NULL),
('c0bf7590-01fb-41dc-ab63-f58f5cbecb3c','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-04-24 21:44:22.000',8,NULL,NULL),
('c0d1db10-6433-4c30-82a1-b54f8d2a6e46','e24a5a16-cb38-43a9-8612-8532bd457d6b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye ','2025-05-28 21:36:12.000',3,NULL,NULL),
('c0d27879-28a1-4f95-a3fe-67eeaa327a18','69d3f67b-d428-4309-b980-d4a463f6b69e','bf2f9026-0036-4efc-bfb3-7790361e64fa','KİTAPLIK','2024-11-10 18:50:05.099',1,NULL,NULL),
('c0e7a980-5e04-43bd-8710-687708e2adc6','835863ce-70ff-4b53-b486-a32e6936cae4',NULL,'MOBİLYA','2025-07-11 21:00:00.000',0,NULL,NULL),
('c0fe0399-dd85-4397-854c-745020ab9c38','566f5cfb-cca0-4c69-85df-9c8acc621458','10d6f21d-bcc7-4ebd-bbf2-2a28a16e6cbe','bono köşe+berjer','2024-12-23 21:00:00.000',0,NULL,NULL),
('c11958bc-ee5a-4d0e-a4d6-af494908cea9','1d8366a7-8e61-4b91-ad70-62acf43daa32','0f300a3b-b3d6-4b60-924b-aa70cd54141e','120LİK VE 160 LIK SET','2024-11-21 21:00:00.000',8,NULL,NULL),
('c1238aee-b8bd-4458-9b8c-8681c543852b','c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-10-23 00:37:49.000',6,NULL,'2025-10-23 12:07:08.030'),
('c12f65fa-742a-4f75-bd9f-e44e0db841f7','aee090b4-4bf2-4cde-89e9-1e2353dcb896','26216926-c73f-46d4-9ba1-0afb20844194','HALI','2025-08-24 21:00:00.000',1,NULL,'2025-09-22 14:20:22.522'),
('c13492d6-3f5c-4259-a440-85041d298138','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd','1be238d9-54e3-4094-8d60-66fd5abb87b5','traverten masa','2025-08-05 15:00:00.000',1,NULL,'2025-08-07 11:38:30.791'),
('c1493a6a-47be-45c9-bb29-18fe60dc4113','0a266acf-5707-4e27-8a72-fd079a3c1ee6','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-07-24 09:52:14.581',2,NULL,'2025-07-28 08:24:14.809'),
('c15816c3-03b0-4d1b-91d5-8de278f35c62','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL,'Koltuk','2025-05-08 21:00:00.000',0,NULL,NULL),
('c18d1a6b-296a-4640-98e7-38a24909fdf4','2ed09389-6872-45ef-b60f-31ff8428b5fe','bf2f9026-0036-4efc-bfb3-7790361e64fa','Sehpa ','2024-11-03 21:07:15.282',1,NULL,NULL),
('c195a62e-5db3-43dc-8b1a-fdf97d29c5cc','a99855a1-4c2d-4b5a-b222-5fd61915169a','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA','2025-04-23 21:00:00.000',1,NULL,NULL),
('c19e66e6-a1bd-4661-913a-aea87aee7878','83bacbe4-57a3-4420-afeb-27d135cfb375','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','8 sandalye','2025-07-29 01:00:00.000',4,NULL,'2025-08-27 14:36:28.587'),
('c1a31a07-5113-4703-99ff-14d4a90ef1ba','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','841543d1-d155-4ea8-b2eb-da24e10b299c','Rams Yatak Odası Takımı','2025-04-25 13:00:00.000',0,NULL,NULL),
('c1b37a15-5b7e-474f-b45e-76788d003b76','d850bd2e-4975-4529-8b56-6564706b808f',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL,'Star köşe','2025-05-06 21:00:00.000',5,NULL,NULL),
('c1bfa9af-ef39-44a9-9789-3e9b58704cb8','a519280a-5153-4940-80b7-3e59e0747d85','973cdc52-6795-4930-aae5-75d562bdc607','Mermer Masa Takımı','2025-08-29 05:30:00.000',5,'2025-09-05 05:41:47.513','2025-09-03 07:57:42.853'),
('c1c9db37-7322-484f-822b-e475a8ffaf59','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL,'BOYALAR','2025-09-04 21:00:00.000',0,NULL,NULL),
('c1d25f90-d493-406d-a430-9b65b4f44c5e','d5670c41-1af2-48f4-a947-753c331653a4','52673772-7e1b-4ab3-a894-0c752533ec4e','ASOS GOLD YATAK ODASI ','2025-09-16 12:00:00.000',0,NULL,'2025-09-24 10:45:09.386'),
('c1d2730a-0c87-4127-8924-455688d3d934','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL,'TERMİN 8 KASIMDA TESLİM İSTİYOR.','2025-11-08 10:44:48.000',0,NULL,NULL),
('c1d864c6-97c2-457a-ba23-bab224e0f781','b98bc4c0-d13e-4cca-ad93-173ed8365841','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA TAKIMI','2025-02-23 21:00:00.000',5,NULL,NULL),
('c1d9e685-3827-4e27-bd48-754f9c260fa1','9d125453-ffdb-4ead-96a1-dad36ea9137f','53ae4048-1a4f-43a7-bffe-8e56ad98d8c7','koltuk','2025-09-23 10:00:00.000',5,NULL,'2025-09-25 10:39:09.921'),
('c1e8ae95-b005-4e76-a148-1dc517d1a512','2e51945e-3da1-4c02-ae97-956500db2c2a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 mermer desenli masa','2025-03-03 12:00:00.000',0,NULL,NULL),
('c1eae8f4-8187-4c64-aba9-aab18d9bbb27','1965b9c6-c511-459f-8f4e-dddb4f23f943','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-09-11 13:00:00.000',0,NULL,'2025-09-17 13:26:28.634'),
('c1f2b5e0-5126-4601-a7fb-9b003f6d59c6','aeac836e-0479-4329-a118-27c77a0ff22d',NULL,'3*3*1','2024-03-18 09:00:51.657',0,NULL,NULL),
('c1f7f307-9a20-4d05-ab65-6ed5137d6fb7','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL,'PUF','2025-01-09 21:00:00.000',0,NULL,NULL),
('c2097eeb-dbb1-47f0-8cca-48457994d308','95a80c6f-f63c-41d5-917a-d2547b834cdd','3a7c0902-b3d7-4dac-94d9-f025250358d1','KÖŞE KOLTUK','2025-07-01 21:00:00.000',4,NULL,'2025-07-16 12:52:53.211'),
('c210fbc4-5515-44a2-a4c3-49d3ba8be34d','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9','3e78db22-08b5-4c8e-9d69-c184e551e40a','seramik masa sehpa','2025-04-23 21:00:00.000',4,NULL,NULL),
('c2117654-a5f8-4afd-97d4-1653f53e4764','1ccb123e-55ae-441d-b623-a1914d69bafb',NULL,'BAMBİ BLACKSAND YATAK 140x190 VE ALEZ 2 ADET','2025-10-14 18:00:00.000',3,NULL,'2025-10-20 08:50:23.884'),
('c2295f21-9953-47bc-82a6-45def25fc2f2','4776d10a-2cab-47b6-b212-60c0ab466107','8829a318-3e88-4aa8-8e64-06a4b8a1aefb','berjer','2025-04-17 21:10:25.000',1,NULL,NULL),
('c22c54f7-1976-414b-9910-bd141ffe1913','4031214e-7ff4-4917-b027-c570d8c4e65f','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Masa','2025-06-15 21:00:00.000',3,'2025-08-05 12:58:58.708',NULL),
('c231de82-1158-487a-9949-2da564ad0152','00d70258-2f30-4c8b-8f72-089d4172bbd9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 ceviz fasulye sehpa ','2025-09-09 21:13:52.000',2,NULL,'2025-09-12 08:15:39.843'),
('c235570b-ba36-480e-b52e-0e61d9b2b427','1aff7295-6f61-4138-b273-b03f55942801','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-09-30 23:00:00.000',4,NULL,'2025-10-03 09:30:31.998'),
('c271b1b7-3bad-4233-a5e9-dd437e47d390','abb61da9-a682-4013-a7fd-554adc61e006',NULL,'2 palet','2025-06-13 21:00:00.000',0,NULL,NULL),
('c2733454-d8f3-40a8-a705-b4d31da5c848','1c4d1793-ac06-480e-9fec-1ed042f34347','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-21 13:53:48.917',0,NULL,'2025-08-30 15:36:49.392'),
('c27fa652-60a3-420f-84ea-e63942b65704','ef3b570a-0fb1-407c-87bb-aea336aed633','adb86e9c-bc47-4a68-b7fb-8691e7d9ae53','YAYLI YATAK ','2024-11-04 12:51:15.000',5,NULL,NULL),
('c2857335-03c3-4424-a83c-2997a4bec08c','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'ZARARSIZLAR DEMET ZİGON SEHPA','2025-08-26 12:37:31.000',1,NULL,'2025-09-08 12:00:07.860'),
('c2863bd2-f075-466a-9b3b-b9e7a14ba13c','0d5fa9af-726d-48a9-a5d1-c407a279f76f','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-09-16 15:00:00.000',0,NULL,'2025-10-09 11:31:39.410'),
('c29705d3-33f0-4fbb-ad6b-a8458c43b3d0','c96401de-d2bb-42c4-b232-62e5a3c21b42','4fbb639d-63c8-459f-9820-d8a261260d94','6 adet sandalye','2025-08-03 08:27:22.000',3,NULL,'2025-08-06 09:08:34.778'),
('c29e76a4-89ba-4143-8fad-01a2910620ee','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL,'Mobilya','2025-09-03 00:00:00.000',0,NULL,'2025-09-15 09:04:29.108'),
('c2a3eb30-4a97-42f8-8728-73449ef0f928','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Nevada ceviz koyu kahverengi masa','2025-05-05 21:00:00.000',3,NULL,NULL),
('c2a86095-314f-417e-838e-52f2b3b068fa','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL,'sandalyeler ve puf','2025-07-18 07:53:08.000',4,NULL,'2025-07-22 13:17:33.360'),
('c2ca9295-3327-4596-8115-dd1ef2d64d4f','792fcb83-3583-425f-8515-80f98a19c7f3',NULL,'Mobilya ','2024-10-30 14:22:18.664',0,NULL,NULL),
('c2ddad80-9393-4fee-af04-55166ef5c607','ea521ff8-eb9f-4152-a03a-e511216077ea','f6b088d3-e3bc-4d15-8fc9-2cdc074c6759','PALERMO KARYOLA BAZASIZ','2025-09-16 03:00:00.000',0,NULL,'2025-10-10 08:56:17.702'),
('c2e2b4b1-9353-45c3-b8f1-d7bc259efb70','833e1960-d162-4228-ac7a-54bd28d48049','d6ccb679-ec5a-4244-9196-0a164053f2ec','Masa ','2024-11-06 19:23:14.950',3,NULL,NULL),
('c2e59836-c823-41bf-b343-b3df9dfc91f8','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL,'Mobilya ','2024-10-30 08:11:42.710',0,NULL,NULL),
('c310b4eb-5090-4d7d-becc-c56ad3bedfc0','a24d30f0-9062-4981-a420-016c96165eab','e7220662-73b8-46e4-9f5d-7e977cc23448','masa-orta sehpa','2025-11-11 21:00:00.000',5,NULL,NULL),
('c31d214e-54b8-4bd2-9ef1-5341759d62d7','526de5bb-5478-4ac9-aaab-26c962aa787b','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-23 21:24:52.167',2,NULL,'2025-10-27 13:41:33.392'),
('c3213c48-19cc-46a9-8e33-43ae12cb3cc1','cb769911-52cc-47a5-acef-a1d0863d2253',NULL,'DUVAR PANELİ','2024-03-16 08:34:32.900',0,NULL,NULL),
('c321bcb4-e9ea-4666-adfa-15a8c704d731','3fba1e1a-d3f7-4a72-b88c-284f205185ce','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-05-29 09:10:11.531',3,NULL,NULL),
('c3322872-ddf3-4e40-b549-9fc0bcd0e3f2','1916783b-4f27-42eb-9741-6293c2d89316','bdf32869-5506-4208-95e2-820fe960d600','Köşe kampanya','2025-09-17 02:00:00.000',0,NULL,'2025-09-17 15:13:43.029'),
('c36c4fac-54ff-4834-a9e5-af345d3a3269','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL,'masa ve sandalye ','2025-07-18 14:00:00.000',7,'2025-07-21 10:03:48.011','2025-07-21 09:52:13.819'),
('c37afb63-e442-499b-a52e-405f6d0d0685','bb868109-aa10-4576-90c5-cea9bda06633',NULL,'KOLTUK ','2025-02-05 21:00:00.000',0,NULL,NULL),
('c389fd95-9357-4fac-a819-48a512bbe294','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL,'KOLTUK ','2025-04-20 21:00:00.000',0,NULL,NULL),
('c38b4e0b-a453-4b21-9976-65cd3cc4d509','5fcfabaf-abfd-496b-84fd-6ef04452b85c','c508b00d-a686-416e-ab4b-43fe49208cd0','KARYOLA','2025-08-14 21:24:09.630',0,NULL,'2025-08-28 14:21:46.431'),
('c39409f6-eabb-4d89-8cfa-a6402efc79a6','73e11a5e-8f1e-4939-880a-7a4290068064','04368f5a-ac36-49bd-8bbe-b6e08e7deb96','Köşe koltuk','2025-06-30 21:00:00.000',5,'2025-07-03 08:57:53.885',NULL),
('c399d22c-b15c-407e-a15d-e96e492fc756','bd9dba96-c9c5-4c61-b279-b74adace6799','bdf32869-5506-4208-95e2-820fe960d600','Köşe koltuk','2025-10-13 02:00:00.000',0,NULL,'2025-10-13 11:30:51.917'),
('c3a1b223-fcfa-4472-9d1b-78712c38d224','f88a76d7-303d-42cd-8c6a-7f28ae3b408e','3e78db22-08b5-4c8e-9d69-c184e551e40a','seramik masa','2025-04-23 21:00:00.000',2,NULL,NULL),
('c3a4e38c-f0bb-4e39-bc2d-0416972c9efe','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL,'MOBİLYA ','2025-03-12 21:00:00.000',0,NULL,NULL),
('c3ac41cc-e814-4fa6-aef1-11c9d37911f5','9236b858-0a44-4581-b11d-b5a57a9522a0','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-17 15:00:00.000',4,NULL,'2025-09-18 15:01:57.584'),
('c3b6b832-f48e-488a-a15b-cd5ae6f52d51','361c79f6-d2f7-4391-a551-aeba4ac518de','4ccea6fc-d526-479a-9e27-42643a5f294f','BAZA BAŞLIK','2025-07-22 12:30:12.000',0,NULL,'2025-07-28 07:48:39.536'),
('c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce','910744ec-cad6-475e-ad64-324c153358ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-06-24 21:29:27.000',6,NULL,NULL),
('c3d0ff20-91e1-44ac-afa5-c3dd3f70c550','2a615cd5-31fe-4786-897f-defeaeff6284','7963c6bf-ccbd-46ea-be88-bdb7893ba746','köşe','2025-08-14 03:00:00.000',0,NULL,'2025-09-06 15:39:41.760'),
('c3fe21d3-5610-4a96-9492-67597bbe83bc','4776d10a-2cab-47b6-b212-60c0ab466107','fd87365f-791b-4129-a329-2bbc5296e508','masa','2025-04-17 09:10:46.000',0,NULL,NULL),
('c3fef76a-45d3-4c79-867a-6d5761c9fc5b','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL,'KÖŞE KOTUK TAKIMI','2025-04-29 21:37:47.000',3,NULL,NULL),
('c4105652-6416-4c70-9a94-f74d002cd020','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','0f300a3b-b3d6-4b60-924b-aa70cd54141e','GENÇ ODASI','2025-01-20 14:11:14.608',1,NULL,NULL),
('c4194c78-4d66-480b-af6f-490c87805b3d','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL,'koltuk','2025-05-29 22:00:00.000',4,NULL,NULL),
('c41cb9b6-8a90-4d65-bacf-8d71c8df714a','683d27ef-d6a6-4b68-8486-43f1c42af547',NULL,'SSH','2024-03-16 07:07:17.521',0,NULL,NULL),
('c4364289-7d10-4f97-9732-485a10bd6c67','4f563dbc-f003-405e-bdb8-828b7a66d357','e5ad13db-e1ff-404b-a08a-717f26faf7a8','konsol+masa','2025-09-11 05:33:00.000',0,NULL,'2025-09-22 17:08:51.481'),
('c442462d-01c0-4b46-b4d7-c51ee072bc62','4fe827f7-044c-467f-84fa-f87c0fb696c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye ','2025-05-29 21:04:58.000',4,NULL,NULL),
('c44eb17a-ef18-468d-b7b6-43c97fccad36','f39c59eb-6753-46e7-ad11-8f7fba3db577','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-05-27 22:49:48.000',3,NULL,NULL),
('c45d0f8f-0a66-465e-bb56-1913286018e1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-06-27 15:00:00.000',6,NULL,NULL),
('c46208e2-2c19-421b-bced-7443bbea66ef','c76998eb-67dd-4f0b-bee2-f2c6820bdcce','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','3 kutu sandalye','2025-03-18 21:00:40.000',3,NULL,NULL),
('c480858d-901c-48e4-862f-33a7b0a7f33f','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL,'YATAK','2024-05-04 09:35:51.118',0,NULL,NULL),
('c4917d94-8c91-4f12-8ebf-b803c0150f37','44de58ec-edda-43a3-a838-2ef9d452d2ff','daaee6a5-8e9b-49b1-884f-bf70d5038407','baza başlık döşek','2025-09-16 04:00:00.000',4,NULL,'2025-09-18 08:10:02.151'),
('c4a6104b-9ac8-40bb-be84-dbf9edb2057c','f4b05c3f-913f-4997-a6b3-6f68dc88c63f','940c6390-4082-4fe5-aeaa-06d180147a7b','Sandalye','2025-10-27 16:00:00.000',3,NULL,NULL),
('c4e2b920-2753-46a8-80dc-96f38b4d715e','9504e4a5-303e-4819-a70c-cb5f6e9502ba','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe takımı ','2025-07-23 13:00:00.000',0,NULL,'2025-07-24 13:25:10.076'),
('c4eb687d-e46c-4f7c-993c-f7f7a9998576','e343cdb8-530a-4273-b51b-de80339b581f','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x240 cm beyaz milas masa','2025-06-16 21:00:00.000',3,NULL,NULL),
('c4f10c81-b322-4ff5-bb9c-85e7f0e16565','e9c624cc-2fc1-4839-b08d-b9e1310a053d','4fbb639d-63c8-459f-9820-d8a261260d94','6 ADET SANDALYE','2025-10-04 19:22:28.000',3,NULL,'2025-10-22 12:11:06.752'),
('c4f62775-21a5-4d48-bba8-0a66600ad101','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL,'Koltuk Takımı','2025-01-12 21:00:00.000',4,NULL,NULL),
('c5027968-9a23-442a-bebc-9b8745408960','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL,'YATAK ODASI ','2024-11-11 21:50:30.000',22,NULL,NULL),
('c512880f-476f-401f-801a-a1fa72ec0ad0','537f327a-f919-43fa-9be8-fa8d0af3cf00',NULL,'2 ADET 90X200 SET','2025-08-13 07:22:13.000',6,NULL,'2025-08-18 12:19:56.397'),
('c51cf533-511d-4f61-a94c-3e48074db45d','1710853d-7394-43e0-9868-1a68f0b61796',NULL,'Sehpa   masa.  Orta sehpa.  4 paket sandalye DEVAMI DEPODA ','2025-04-15 21:00:00.000',9,NULL,NULL),
('c527dd1d-63c2-443d-aaa4-dcf25c34e426','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL,'KONFOR KOLTUK TAKIMI','2025-06-19 21:00:00.000',0,NULL,NULL),
('c530f905-27f0-487c-bf56-8ae218e8420d','73a48364-e3d4-4fab-851c-d3a1f4617a64','67c34dc2-4657-4323-8fc0-4ff05ed31067','KOMİDİN -ŞİFONYER -PUF','2025-10-13 00:42:59.000',0,NULL,'2025-10-22 08:39:14.428'),
('c557db8e-813f-4118-a776-7fcaab745fff','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d','cd4b8480-2dc3-4822-8638-03ba675da4ab','köşe koltuk','2025-03-13 21:00:00.000',3,NULL,NULL),
('c563f86e-fe4d-44fb-b91a-72261e82a6fd','cea81038-a341-47c6-8f8b-905346a6e5b0','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-23 09:43:10.086',3,NULL,'2025-10-06 11:23:37.282'),
('c564475a-2d18-4b15-a65d-9a29abfe2528','c48a406d-f6cc-43e5-ab64-0494c3458163','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk','2025-02-28 12:30:00.000',4,NULL,NULL),
('c5686ee6-2537-4ca8-91b5-7a63652f7dcd','7faf0313-0350-4d8f-ae44-2086dabb4ea7','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 Traverten açılır masa','2025-10-16 15:00:00.000',3,NULL,'2025-10-17 11:31:53.402'),
('c57b0a67-4926-4770-8317-0fdee56c0abc','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL,'YATAK BAZA','2025-01-25 21:00:00.000',0,NULL,NULL),
('c5b843e4-34ac-4cd1-bbc6-a9173074a6f9','528a4efc-5102-4165-8106-60f8052866e1',NULL,'DUVA LUCCA KANEPE AYAĞI 2 ADET','2025-03-20 21:48:04.000',2,NULL,NULL),
('c5bf586e-b048-4ee7-b750-d82fc394b66b','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL,'Koltuk takımı','2024-05-08 18:28:30.168',0,NULL,NULL),
('c5d03b78-19c4-44f2-a673-725e07271521','5834e5ad-035b-4bd5-ba17-95504a0c5e1a',NULL,'Mobilya','2024-05-15 13:31:02.256',0,NULL,NULL),
('c5d61b93-7ced-4a71-93be-5a852d615a08','aae71aff-c951-458b-ba97-38d2072aa657',NULL,'Koltuk ','2025-07-10 21:00:00.000',0,NULL,NULL),
('c5d9a910-180c-4e61-8dda-bf42d4138a8d','89edfd24-71a4-4e25-8532-ca78ef0bdca4','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye siyah','2025-03-07 11:28:26.000',6,NULL,NULL),
('c5e0d83f-acd4-4d0f-9e00-9f237578b979','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37','38a7333e-8a0f-4e45-957f-e11d538d2097','Masa ','2025-01-09 10:29:07.647',0,NULL,NULL),
('c5eec9e1-ce09-40ae-90af-7f674d7ba949','1c22473f-9acf-4632-b67d-e2661b059739',NULL,'karyola takımı( lider )','2025-05-21 21:00:00.000',7,NULL,NULL),
('c5f93808-7714-4d25-b8b8-48ba03459bd2','0e34ca38-5c56-42c9-98cc-a90025b718c0',NULL,'3-3-1-1 koltuk takımı.  Masa.  Mobilya kutuları ','2025-02-02 21:00:00.000',19,NULL,NULL),
('c5fffe37-1a05-4e37-8dec-a1cdf4e419e1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL,'DELUXE YATAK 160X200','2025-05-14 21:30:31.000',0,NULL,NULL),
('c60203cf-3430-4f82-90d6-02084558ce46','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0','67c34dc2-4657-4323-8fc0-4ff05ed31067','yatak odası-yemek odası-tv-ortasehpa','2025-04-23 21:00:00.000',999,NULL,NULL),
('c6301c44-c02d-4e2b-b62a-f99249a918f6','5f770c96-052e-4429-8137-dee2c4ed5bd9','0d64216c-fe9d-486b-b722-9710eba2c609','KOLTUK TAKIMI','2025-01-06 21:00:00.000',0,NULL,NULL),
('c6529ce0-eb24-4ed6-8e4f-0aff33e82729','ae8696be-f69f-4953-8633-4f9337e8b482',NULL,'köşe koltuk','2025-10-23 21:00:00.000',6,NULL,'2025-10-27 08:23:48.821'),
('c671dc61-dbc8-400b-822b-b699e7404616','149850c7-89eb-4248-a529-b235c5710935',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('c678d974-fe17-41f7-8bb7-fbea7100a805','3008395f-ad73-440c-95df-6a289efc5dab',NULL,'yatak ve sehpalar','2025-04-29 21:56:42.000',3,NULL,NULL),
('c67def51-fe24-4885-9519-ba2b028c3f47','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','da081c52-d810-473b-87d0-2d031d14f75c','2 ADET ŞİFONYER+AYNA','2025-09-16 04:59:22.000',0,NULL,'2025-09-19 11:49:55.086'),
('c685ccef-58ed-4f1b-853f-88e58701a0f9','c1e90081-d7d5-4180-8f60-a63125cea8c2','8ceb6cff-0a3c-4c86-ba04-fde8f431d6bb','TESLA BERJER','2025-02-02 21:00:00.000',2,NULL,NULL),
('c6867ab4-5976-4f98-8c63-66591eb740c5','1372768c-0132-475f-bd20-c5373f0785ae','37486a5b-3dc6-4298-9bfd-3291b8f42d46','sehpa ','2024-12-28 20:09:44.646',3,NULL,NULL),
('c68da11e-578e-4c6c-8afa-d56edaa715f4','aaf80057-65ea-4999-832a-29537bd6ba3e','b151728c-b265-4eed-b5c1-cb53409fb775','sehpa','2025-05-29 09:00:52.000',2,NULL,NULL),
('c6978e84-285d-4839-8eb7-18796d2859ca','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL,'TV ünitesi üst tabla SSH','2025-01-06 21:00:00.000',1,NULL,NULL),
('c6988187-77d5-478d-81f6-fc7450164295','fe9bad3a-ed39-41a0-aefb-3b353269e29a','128499ca-8a62-495a-b36a-15a8e63514ec','SANDALYE','2025-08-27 03:53:52.374',8,NULL,'2025-08-29 07:45:57.859'),
('c6a97f96-8206-4a03-a204-465fc5bb6239','8ac11872-8b52-4d38-b53d-bc95257e76e8','25914ec2-fa0d-42c2-8f6e-ccf70bf266b2','BENCH','2025-06-17 13:00:55.042',1,NULL,NULL),
('c6ac3ab4-f108-43d7-b778-9dc81af095a9','769295fe-385b-4195-9bd0-58e04754d3ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-08-22 04:40:58.000',8,NULL,'2025-08-23 10:26:56.510'),
('c6beb907-545c-4c72-840a-c2ee864f59e0','5242bea6-83a9-46c0-b42f-249dd7e9ef0a','b4b527e9-c851-458f-9238-9049a66f2c90','SANDALYE AYAKLARI 6 ADET','2025-08-19 07:00:00.000',1,NULL,'2025-09-10 11:21:16.683'),
('c6d518ca-dd82-4758-b36d-2a2b91068364','8fb47c44-2d49-4fed-9d20-275d1c3b846a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','120 çap Dante ceviz masa','2025-08-28 15:00:00.000',2,NULL,'2025-08-30 10:57:49.006'),
('c6d965be-8394-4c92-b2e7-c0edeb71006b','a04ae8dd-1caf-4622-97e8-aa08c8974c93','b22273fb-b00f-4afc-b708-2437f60ec61e','Sandalye','2025-08-14 14:44:44.000',0,NULL,'2025-09-03 13:14:54.135'),
('c6df5a40-83e7-435b-ab59-3e39b8d977c2','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-08-18 17:50:34.535',4,'2025-09-26 12:53:01.964','2025-08-27 08:28:39.472'),
('c6e24aec-c8fe-404d-bc77-7c14e130d07d','33c1702e-09af-4ac6-992c-6abbb6899f2c','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA','2025-05-19 21:54:05.000',2,NULL,NULL),
('c6fb119a-d102-44f8-a309-82df366c405f','b4df3c44-e272-4f15-83b1-063b9f953adc','44c404b3-a618-4af5-bdfb-ad381f049053','3+3+1+1 KOLTUK TAKIMI','2025-10-12 18:00:00.000',0,NULL,'2025-10-14 10:51:22.543'),
('c701ed0d-e722-4e4d-a783-3461ca228a9d','dcbe7eee-e054-430d-b60c-71cef3ff6b80','b22273fb-b00f-4afc-b708-2437f60ec61e','Sandalye','2025-08-15 11:36:00.926',0,NULL,'2025-08-22 12:41:50.201'),
('c718bd33-40e6-413f-9c77-4b72f9839344','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL,'ÖZEL ÜRETİM MASA ','2025-10-03 09:00:00.000',0,NULL,'2025-10-07 08:30:27.565'),
('c71d8705-4675-43e1-be22-4ac642637a94','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL,'YEMEK MASASI','2025-10-10 06:02:08.917',0,'2025-10-21 23:34:17.138','2025-10-15 09:06:41.528'),
('c71f39fb-d5e3-408c-ba59-55a9dcf4158c','b5e77378-5244-46e2-a563-c188060aab93',NULL,'Koltuk takımı 3-3-1-1','2024-11-27 21:00:00.000',4,NULL,NULL),
('c71fdc71-df3e-48af-9323-d534b0931ff1','32a7763a-26ff-40ce-a7e9-6378f8554627','67c34dc2-4657-4323-8fc0-4ff05ed31067','giza yatak odası','2025-04-23 21:00:00.000',999,NULL,NULL),
('c75addbc-d2eb-41ec-9bc7-5809796551b9','4b0f77c0-836a-4892-a19c-c0032f863e4b',NULL,'KOLTUK TAKIMI','2024-03-16 08:36:46.290',0,NULL,NULL),
('c7711311-d9e2-44ab-9529-bf35ca0a141b','277bb0f0-75c4-4045-848c-72f8729d43a4','26360aba-80e2-46ad-b172-f1052f9526f6','Bazalı Karyola+döşek+2 adet komodin','2025-07-21 09:00:00.000',0,NULL,'2025-07-24 08:03:07.990'),
('c784a732-36c9-47dc-809e-6b6a917e74dc','383f84ab-67a9-43c3-89be-23dcca380e91',NULL,'Sandalye','2025-03-24 16:16:53.696',3,'2025-05-05 11:34:48.933',NULL),
('c7979bbe-1ff3-4855-893b-36449a251b68','31a99b88-a5a2-467c-9eb7-bab69bec01d2',NULL,'SEHPA','2024-12-27 09:11:00.111',1,NULL,NULL),
('c7982761-593f-4d04-a0fb-1a778013a0d9','e044efcc-ec9d-4901-8d6f-56f4f548947a',NULL,'masa ve orta sehpa','2025-01-27 11:58:09.317',0,NULL,NULL),
('c7b31d10-8a95-4f0b-95ae-8c63de27ad8e','50101273-0c1d-452c-b0ea-a3c2e64b8022','cf90c370-208a-4021-aaff-f9220970bca9','ORTA SEHPA','2025-06-25 12:57:06.280',2,NULL,NULL),
('c7cb6656-a7c5-4e04-911a-935fa91c3650','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL,'BAHTİYAR','2025-08-26 18:00:00.000',7,NULL,NULL),
('c7d91cf5-c5e4-4cdb-a668-57ec4b264e30','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL,'Mobilya','2024-07-24 10:04:44.240',0,NULL,NULL),
('c7ec2251-b2e5-4bd2-ab66-88acea94c958','044d9be3-0770-4d6a-af0c-8fd047dc7191','b542c88d-6b51-478b-a97b-c5bf03439771','Koltuk','2025-07-02 10:39:59.625',4,NULL,NULL),
('c7fce8c7-acfd-4c12-8db5-81618a4b211d','5e333a30-7986-4a32-be40-ecb91b558892',NULL,'MOBİLYA ','2024-12-24 21:00:00.000',0,NULL,NULL),
('c802c5a6-aa73-494b-ae3e-44bd484092c8','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0','b151728c-b265-4eed-b5c1-cb53409fb775','berjer','2025-08-28 21:00:30.000',1,NULL,'2025-08-29 13:23:28.434'),
('c803d63f-cc10-4b55-b618-c9da25c7c49b','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL,'SSH','2024-07-02 08:11:25.875',0,NULL,NULL),
('c8056095-e7a5-431a-b501-f612d05190af','383fe013-af48-41d5-ad33-ad7c8b16446b','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-01-08 07:00:19.000',6,NULL,NULL),
('c8088d35-b026-4177-866d-855c1ec4f847','ac733c82-d892-4d52-ad57-605808af235f','1be238d9-54e3-4094-8d60-66fd5abb87b5','traverten sehpa','2025-07-13 21:00:00.000',1,NULL,'2025-07-18 16:08:18.183'),
('c84d56f6-3232-4489-9c15-b7a6e87c3261','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-04-09 11:00:00.000',3,NULL,NULL),
('c86269db-8ff1-458d-8f73-ecc40c58cc09','1c4d1793-ac06-480e-9fec-1ed042f34347','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-21 13:53:37.766',0,NULL,'2025-08-30 15:36:49.392'),
('c8819594-7648-485f-8c3c-5627cd9da2d8','bb90725b-84e6-4211-8728-367d09c14525',NULL,'MOBİLYA','2025-02-17 21:00:00.000',0,NULL,NULL),
('c8865b3c-84ce-4533-969d-adad8a2a1636','8e1bcc6c-d49a-4ede-abe4-f49246a8b1ef','754dc58e-48a9-4cf6-bcec-82201990299e','YATAK TAKIMI','2025-08-22 08:12:02.000',7,NULL,'2025-08-26 07:43:37.975'),
('c891230b-a98b-467c-9f5a-6b1fd89f1dde','34efce18-6122-4639-ad74-6bf11623e4ef','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı','2025-06-11 21:00:00.000',0,NULL,NULL),
('c8a2a15e-4279-4904-a725-a9d44306abad','2754ec7f-f526-44d3-8178-29280a48b322',NULL,'Mobilya ','2024-10-24 09:47:04.126',0,'2024-10-24 14:29:25.230',NULL),
('c8af3e69-b8dd-427a-830b-128e95991556','888c1a17-6ddc-4bc8-b1ab-b00d72942811','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET ORTA SEHPA','2025-10-07 02:55:45.000',1,NULL,'2025-10-09 08:47:31.115'),
('c8c71d91-2b37-4436-9ed8-0951d1d5f455','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL,'Koli magnet','2024-04-08 08:49:50.309',0,NULL,NULL),
('c8e93936-44db-470d-9141-67698e90cbca','2eb5f10e-e566-4406-9074-57c0c21bd403','b4b527e9-c851-458f-9238-9049a66f2c90','trend masa+8 sandalye +orta sehoa ','2025-08-25 18:00:00.000',12,NULL,'2025-08-26 11:25:02.956'),
('c8ea2253-3c75-477c-8e01-4ed8b3e57524','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('c8f396d4-65a3-4c67-8ae4-e78fccdca407','c36d986a-edbc-4585-a361-c03d6d1c6a23','7856bd1b-ac4f-48c7-800c-41fd856e9a68','Masa 3 kutu orta sehpa 1 kutu ','2025-04-21 21:00:00.000',4,NULL,NULL),
('c8fb6c19-43e2-4ce7-b399-76de54ff6c64','304a2496-cb37-4646-a094-9980a688ced5','0f300a3b-b3d6-4b60-924b-aa70cd54141e','berjer-kasa-sibular','2025-06-19 21:32:03.000',2,NULL,NULL),
('c8fdc4b5-c5a2-450b-b132-21b8be8c8316','945602cc-25e3-4d66-bae2-b70fa6008882',NULL,'SSH','2025-04-08 21:00:00.000',0,NULL,NULL),
('c900d790-eeff-48b9-9f2b-48972c98ac32','566f5cfb-cca0-4c69-85df-9c8acc621458','1b0772ee-b516-4618-8207-cae37145619b','komidin+şifonyer+ayna+bazalı karyola+çamaşırlık+puf+benç','2024-12-22 21:25:31.000',17,NULL,NULL),
('c90aef9b-b83f-489b-afc9-92320b0dc24c','147e8615-279e-4297-866d-fbccbd1231af',NULL,'TIPO MUTFAK MASASI 4 SANDALYELİ ','2025-08-04 15:23:46.000',0,NULL,'2025-08-06 12:15:50.130'),
('c91b4e49-5dec-4e48-a700-0b3d54b1c284','1ad43916-6b71-4844-8c13-9ae4882c08fd',NULL,'MOBİLYA','2024-10-11 11:37:07.023',0,NULL,NULL),
('c91edd26-ca21-49cf-967a-8ae66440af23','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL,'KING PLATIN BAZA SETİ 180X200','2025-06-22 21:00:00.000',0,NULL,NULL),
('c930cb02-6682-41d1-b86b-f7fb4105a19f','2bf98fdf-48e1-48eb-89ed-995b2100ba96','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-10-21 12:00:00.000',3,NULL,'2025-10-22 10:00:16.631'),
('c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL,'Köşe','2025-02-13 15:29:11.274',0,NULL,NULL),
('c94eb154-aa18-4678-af4e-fd552ed1ec7f','4c2f86c9-653c-4859-ad05-f53200e7d5ba','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-01-08 08:00:32.000',6,NULL,NULL),
('c95052ea-b7b2-4b0e-a216-a7e7b2acd860','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL,'DELUXE 160LIK YATAK ','2025-08-11 10:13:09.000',0,NULL,'2025-08-22 15:46:36.123'),
('c963e491-0fcb-4cdd-b9dd-30206dae36ee','bbee5f58-f6e5-4525-b872-ef97ac4ab579','128499ca-8a62-495a-b36a-15a8e63514ec','sandalye','2025-10-07 20:53:11.043',6,NULL,'2025-10-13 09:36:54.395'),
('c97b4464-4efd-4872-9340-ffe44fb1a770','4976e309-54de-42bc-9a9b-1f542a9bd4d0','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-07-16 09:00:00.000',3,NULL,'2025-07-16 14:47:45.071'),
('c98f6188-56c5-4870-be97-be71cf95f62e','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL,'Mobilya ','2024-10-04 07:47:19.760',0,NULL,NULL),
('c994a04f-2197-4b30-bd79-9b5c322eba88','7c6c2dd1-52e2-4059-a97e-d340167fe009','262c07e3-85ed-4f5a-bc91-d8ad3fe8a75c','berjer 2 adet','2025-06-19 09:23:22.064',0,NULL,NULL),
('c996a4f6-ce8c-4372-9ffb-2f23eb0aec76','10d22b54-2959-49b7-ac9c-935cb90eaedc','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA','2025-03-26 21:00:00.000',1,NULL,NULL),
('c99ecd10-41cb-4fcf-9be0-136da2c21f27','2a5abbbf-2ecd-4ad5-887d-fd60d4f4f436','f41a7424-e873-4bf8-83b0-86a7af16e30d','2 adet Berjer ','2025-10-27 09:53:57.000',2,NULL,NULL),
('c9a9455b-6e5f-4cfe-b1a4-8364b733ad16','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'TÜRKMEN HEROS  KANEPE','2025-02-18 21:29:56.000',2,NULL,NULL),
('c9aaae09-abdf-47e1-b3a9-2b58eaa5c76a','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL,'90x190 cm Traverten masa','2025-03-09 21:00:00.000',3,NULL,NULL),
('c9afd200-5d14-4c16-816c-282d1b5697af','8e1bcc6c-d49a-4ede-abe4-f49246a8b1ef','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','KÖŞE TAKIMI','2025-08-21 21:00:00.000',4,NULL,'2025-08-26 07:43:37.975'),
('c9b410bf-c39f-4d56-97b6-272196df3cc6','aec29545-1708-47a6-a33d-352a69ad4876','4ccea6fc-d526-479a-9e27-42643a5f294f','baza set','2025-01-27 21:00:00.000',9,NULL,NULL),
('c9be6ff4-b867-49bf-9dad-f44d6eebbb47','fd795bb0-de9c-492b-b14b-d82674e0098e','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-06-22 21:00:00.000',3,'2025-08-24 10:52:10.001',NULL),
('c9d26b9c-8e7f-400b-b547-df60f08be463','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL,'yatak odası-masa sandalye-2 ad kanepe orta sehpa','2025-01-05 21:00:00.000',1,NULL,NULL),
('c9de31a4-107d-48f2-8a9b-aae80150da9b','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL,'BAMBİ LATEX MASTER YATAK 180X200 1 ADET ','2025-09-21 14:28:43.000',1,NULL,'2025-10-10 08:56:17.702'),
('c9e71ed2-2a41-427c-b47a-d4f02305c9e8','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL,'PLATİN YATAK 180X200','2025-01-13 10:17:24.267',0,NULL,NULL),
('ca0dab40-6a42-4d8a-9908-04e48a98d8cc','ee442903-bcf3-41c3-8a85-9a99435f8b6b','27542b9c-f586-4152-836b-5dedeaae0be2','MERMER DESEN MASA + SEHPA ','2025-06-10 12:14:04.000',0,NULL,NULL),
('ca1414bb-a7bd-4f71-a90c-07cd47e79a45','7edca54a-9671-41a7-883d-c2d819811110','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','FALCON KOLTUK TAKIMI 3+3+1+1','2024-11-05 21:00:00.000',4,NULL,NULL),
('ca15fc0a-c952-4d11-8373-2c36e573d1ae','c660ccad-df7b-45ce-a388-95120ceea510',NULL,'TABELA ','2024-11-21 21:00:00.000',0,NULL,NULL),
('ca1e32aa-cec8-4f14-93d0-2c97acad37ee','35b607a9-05e1-4a39-8d5e-e9d252bd8443','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-09-22 23:00:42.000',8,NULL,'2025-09-24 14:33:04.375'),
('ca1ee87f-8496-46ba-922c-185ea077b969','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL,'KOLİLER TONER','2025-04-25 21:00:00.000',0,NULL,NULL),
('ca2466d1-9a83-4f57-8f76-f5ddce302e04','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL,'PVC','2025-06-22 21:00:00.000',0,NULL,NULL),
('ca2ff828-d1c9-4075-8a8b-f7ba8d75f04d','34482f3d-44cb-4842-a5dc-1cad4ad4bef5',NULL,'MOBİLYA','2024-03-12 09:45:57.158',0,NULL,NULL),
('ca465cdc-1a1c-4dc9-8703-e249c099992f','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL,'YATAK BAZA BAŞLIK','2024-04-23 10:11:50.434',0,NULL,NULL),
('ca4b53fd-638e-41d1-a236-22653e553702','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL,'Sandık','2024-08-17 10:56:20.679',0,NULL,NULL),
('ca5bc843-3199-428b-a37c-746a6e34447b','10862bf3-01dd-40a9-beaa-6ba3d5075238','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-04-24 21:50:21.000',6,NULL,NULL),
('ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705','9e64600d-1c01-44ab-9728-6619d083385a','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-11 01:00:00.000',5,NULL,'2025-08-19 12:09:01.750'),
('ca6b86f1-83aa-471b-bde9-051d6998cb64','f2e85c5a-0ab0-460f-8b3f-1dce4d598818','4d4f64a5-4f0c-4a6e-b80a-560be37f0222','puf','2025-08-22 08:16:05.000',0,NULL,'2025-08-22 16:20:40.271'),
('ca6f8e10-2fc3-4758-88b3-5193a7471753','aa97f652-a0d1-40c6-aced-340a7cbb5564','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','SEHPA','2025-06-27 10:00:24.000',2,NULL,NULL),
('ca7ffbfc-f9b9-48bc-8115-521efee8b6ac','b384d0a2-c272-4375-a026-2cf2910078c9',NULL,'KOLTUK TAKIMI','2024-05-04 07:44:48.339',0,NULL,NULL),
('ca9035e1-80a3-45dc-92f0-bd7c607a8cf0','a75c0466-9f5a-4f5b-89c0-9179e86aed34','3d32bf6b-0757-423d-ade3-bc6296974cd6','Sandalye 8','2025-08-27 23:43:14.801',4,NULL,'2025-08-29 09:53:41.633'),
('ca9a64dc-5c9e-419e-83e6-dc5642b05495','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL,'KOLTUK TAKIMI','2024-03-30 09:50:43.641',0,NULL,NULL),
('caa392fc-03c5-421c-a7db-8ae0f3aa70cb','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL,'traverten masa ','2025-09-07 12:00:00.000',0,NULL,'2025-09-09 11:21:24.892'),
('cabd1847-46c3-4b5b-b6b7-f5e81a0e8756','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL,'Traverten masa','2025-07-20 21:00:00.000',1,'2025-09-01 10:25:29.308','2025-07-30 08:09:36.433'),
('cabd6bfc-ee9d-4ac2-b72b-1c75d12405cc','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL,'BERJER ','2025-02-05 21:00:00.000',0,NULL,NULL),
('cac592fe-4f73-47b3-b374-3028982419d4','5038002a-b4fa-4ffd-b9c8-c48aca58f88d','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','köşe Koltuk','2025-05-21 21:00:00.000',5,NULL,NULL),
('cacb1c7a-8595-43bb-b1ca-40b46c29dc4d','862c3997-124c-487c-86b2-4bc8c8575b1f','a83cef52-4388-4d39-b97b-ec517ec35be4','KÖŞE KOLTUK','2025-05-20 12:00:00.000',5,NULL,NULL),
('cad27d48-d66c-419b-82d8-6b69b7fb1590','44536842-36f0-437b-afe2-58a8df62b9df','98c5854e-8359-40bf-8d64-f3fb052b029d','KOLTUK','2025-10-12 19:00:00.000',4,NULL,'2025-10-13 13:04:23.635'),
('cae76a5c-9c58-4a28-b642-a8f3cffa00e0','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'KONFOR KOLTUK TAKIMI','2025-06-17 21:40:17.000',0,NULL,NULL),
('cb031967-3b3d-4215-88a7-f64c5744b388','a1113ea5-513c-4c80-af01-bf6fc31ed2a9','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-20 09:00:00.000',3,NULL,'2025-08-28 08:51:12.636'),
('cb0cd6d1-f8c9-4934-99ad-4768996b5e3d','ef65aa6a-6cbd-41fe-a37d-8d3deeea30ed',NULL,'Köşe ','2025-03-27 21:42:06.000',0,NULL,NULL),
('cb24f977-2bb3-4346-b90c-e4f6ee8b9032','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL,'Mobilya ','2024-09-24 10:37:22.116',0,NULL,NULL),
('cb427bf7-dee7-421c-9b78-ea0d4c15e34d','a3672ebb-5053-433e-a8e4-f57986e68156','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-05 02:44:49.000',1,NULL,'2025-09-06 10:04:30.698'),
('cb583771-c719-4749-b4eb-1ecbd639d119','7722797e-2c67-4213-8908-859d85e5ef36','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-17 20:01:00.071',3,NULL,'2025-09-30 11:32:23.535'),
('cb5cec25-5b62-4dad-a765-ec7410ef47d3','c928edbb-a731-4b55-bdfb-3f68dedd72df',NULL,'SSH','2024-07-20 11:06:25.003',0,NULL,NULL),
('cb620780-a9a0-4812-a480-2a4cbe6c4b05','c67fa905-f2ae-4d60-a3cb-8209edbe7b9c',NULL,'Mobilya','2025-10-20 12:00:00.000',0,NULL,NULL),
('cb7dcc1c-0a37-4356-938e-da743c917af2','5e55f20c-e2ab-4965-a16e-95af4a5ed4da','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-07-16 09:00:16.000',1,NULL,'2025-08-07 13:38:16.629'),
('cba350b5-b4f2-4a6e-8e82-72525ddf0c99','1f6f8681-0eb0-40ff-b660-5e573091098c',NULL,'Sandalye','2025-09-09 13:11:28.167',0,NULL,NULL),
('cbb10fa8-7723-439e-b62c-2d779a114dbd','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL,'BAMBİ REFORM THERAPY BASLIK 190 CM','2025-09-02 15:00:00.000',1,NULL,'2025-09-03 08:34:08.302'),
('cbb2ee4d-f3d4-434f-aeb9-9dbae6ed267f','1fb32e39-501f-48b7-ba50-860c26209b78','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','Mobilya','2024-11-07 11:00:00.000',3,NULL,NULL),
('cbbc1dd0-a9ec-458b-825e-304b818bc2c6','2d29dff2-ab81-4877-b223-c3503fe00f35',NULL,'Sandalye Ayağı (SSH)','2025-03-20 21:00:00.000',1,NULL,NULL),
('cbcb5140-359c-450c-9f33-8e0b01b62f63','fd58437e-911f-4917-866c-db10175210b3','16f6428f-c1d6-49c1-a4b9-7a73c6aa059b','koltuk','2025-02-19 21:00:00.000',4,NULL,NULL),
('cbef7bb3-505d-4317-b96f-79bb7c881fdc','18ef4d21-d80d-45a3-9290-b7d6562f11b5','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-26 02:00:30.000',0,NULL,'2025-08-26 09:15:27.139'),
('cbf68d77-8563-4d27-83fa-23f08cf671b7','bf9be925-842f-4ee7-ad0e-8e73349c83f4','bdf32869-5506-4208-95e2-820fe960d600','Sehpa ','2025-08-26 07:00:18.000',0,NULL,'2025-08-29 08:03:15.641'),
('cbf7e639-67ca-4872-ae7f-29e1b41a5cd0','b5c1db79-0154-4eeb-bcc8-d0daa11527b1',NULL,'3-3-1-1','2024-03-23 06:58:32.174',0,NULL,NULL),
('cbf92ce2-bacc-47f0-8a68-f0956669636e','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9','44c404b3-a618-4af5-bdfb-ad381f049053','DOLAP VE BAZA','2025-03-26 21:10:25.000',1,NULL,NULL),
('cc00a5a7-ab77-4008-93bd-cf02df47d4a3','f7d36bd1-9c1c-4000-b3a4-bde690e8c1bc','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-29 21:00:00.000',5,NULL,NULL),
('cc106216-d7b7-4181-b434-bfb55ef8591d','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL,'BAMBİ MAGNASAND 160*200 YATAK','2025-10-03 12:45:12.000',1,NULL,'2025-10-03 11:30:00.509'),
('cc11592a-cebe-4e7a-b826-8d145872569d','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL,'NATURA KÖŞE KOLTUK','2025-02-23 21:53:44.000',0,NULL,NULL),
('cc1b6537-f392-4c31-89c7-d964e5ece42c','526de5bb-5478-4ac9-aaab-26c962aa787b','b94604cf-4431-4d3a-bbbe-0fab66df0701','BAR SANDALYESİ','2025-09-23 21:25:19.216',2,NULL,'2025-10-27 13:41:33.392'),
('cc500972-1de0-4a6c-b6bf-789f51e9fc9a','c55504b4-7a7a-439e-8e37-908ee8343a67','47642923-9495-43d6-b53f-dde58ab3d113','Koltuk takımı ','2024-11-12 21:00:00.000',4,NULL,NULL),
('cc5ab5d7-2996-4596-acc7-a526b0c51d82','ef65aa6a-6cbd-41fe-a37d-8d3deeea30ed','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','Masa','2025-03-19 21:00:00.000',3,NULL,NULL),
('cc5b1253-5911-4a8d-a337-c4002b9a8b25','29aaa54d-b47b-4224-b91b-303cd6be157e','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-05-11 21:20:20.000',3,NULL,NULL),
('cc5bb1da-ef5f-4230-9665-417835fd707a','4a38f569-617d-48cf-b0fc-27e25fd3884e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Traverten tv ünitesi ','2025-09-17 23:09:38.000',2,NULL,'2025-09-23 13:02:33.283'),
('cc608bcd-34a3-4342-be6f-46734f0c9313','273c83bb-2405-453b-8f32-a6fd281b21a7','e4eb0112-f7c0-479f-984b-1bbcfe084020','KOLTUK TAKIMI','2025-06-30 12:00:00.000',4,NULL,NULL),
('cc6b5286-c3eb-44b8-8853-67815b2524ff','83bacbe4-57a3-4420-afeb-27d135cfb375','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa','2025-08-11 02:08:05.000',2,NULL,'2025-08-27 14:36:28.587'),
('cc6f3b66-bc19-498d-9509-1b342de6fdc9','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL,'Mobilya ','2024-09-18 10:18:56.928',0,NULL,NULL),
('cc773624-f550-4a8f-b0a7-eb010a2ac209','6220c77f-761e-462c-a359-ad8d9ba79902',NULL,'2 KANEPE','2024-05-29 08:50:19.403',0,NULL,NULL),
('cc7cbe1e-520d-412e-adc0-054062fac43b','5289d63f-a7a4-464d-80ad-20c84233ff2b','989e502d-630d-4495-9ba1-cdab9c19d53e','köşe koltuk','2025-10-09 09:00:00.000',4,NULL,'2025-10-20 08:57:52.048'),
('cc7dddf4-427f-4a79-9cec-d95529ff2c95','19c26519-0688-4a4d-a323-ec65ddad8463','99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','180lik bazalı karyola','2025-09-09 11:13:06.000',999,NULL,'2025-09-15 09:53:41.698'),
('cc81edcd-ad63-47e1-a989-8ed1f6097722','d27f2367-c652-4d86-b346-10e260811b9c','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-10-02 10:00:00.000',5,'2025-10-06 09:02:07.741','2025-10-02 10:11:51.567'),
('cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14','bb6dbf38-0841-4b1c-8e3d-c3593de38040','3b94945e-5e1d-490c-a332-cfe0cbb462a1','KÖŞE KOLTUK','2025-06-15 21:00:00.000',6,NULL,NULL),
('cc886e6e-44f1-40b8-ba47-5a6876af765c','47b351a7-6171-418d-b138-7c197c50e909','fe0a9e17-e52a-465c-af84-8dd1932db99a','Sandalye','2025-08-12 13:00:37.375',0,NULL,'2025-08-13 09:23:03.010'),
('cc9e4990-6f0a-4a2b-9332-771ed4bcf88b','45898089-0430-47fd-85a9-8108fa8d9a5e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90*190 CM MASA','2025-03-24 08:02:10.451',3,NULL,NULL),
('ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e','7769da2f-9686-48c6-ae96-b03c5a2ae610','754dc58e-48a9-4cf6-bcec-82201990299e','karyola + döşek + komidinler','2025-08-06 04:55:57.000',1,NULL,'2025-08-08 12:16:21.847'),
('ccf6ad89-14e9-457e-b20a-be66bf3dadf6','56059bd6-d32a-4603-91da-c059737a036d','0f300a3b-b3d6-4b60-924b-aa70cd54141e','180set-2ad.90 yatak-masa-sandalye','2025-01-14 21:00:00.000',11,NULL,NULL),
('cd005e98-fe25-409a-a9ff-536308cf8ab6','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL,'JOY KOLTUK TAKIMI','2025-05-23 21:00:00.000',0,NULL,NULL),
('cd01ade5-adb2-455a-8f90-b396a501cae7','0a266acf-5707-4e27-8a72-fd079a3c1ee6','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-07-24 09:52:02.644',3,NULL,'2025-07-28 08:24:14.809'),
('cd01b9d4-c1e3-4729-9470-51ea7ac1e235','df564c56-1964-45d7-946b-9c1121729fa8',NULL,'Mobilya','2025-02-12 21:00:00.000',0,NULL,NULL),
('cd17ebfa-c553-4d07-bd3e-071432e31a4d','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL,'Traverten masa kasası ','2025-07-23 21:00:00.000',1,NULL,'2025-07-24 08:02:38.833'),
('cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL,'MOBİLYA','2024-12-12 21:00:00.000',0,NULL,NULL),
('cd311409-561a-426b-9028-25c2a5b0458f','48599652-b40b-4605-9b8c-4be79cb180f3',NULL,'KOLTUK','2024-11-11 21:00:00.000',0,NULL,NULL),
('cd338320-b04d-4520-adba-f892a82d945a','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL,'Mobilya','2024-07-24 10:06:57.932',0,NULL,NULL),
('cd4c86e1-c40c-4cbd-9731-a30c5e8b3004','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL,'MOBİLYA ','2024-12-15 21:00:00.000',0,NULL,NULL),
('cd4f4870-63e4-4752-9707-a1bce76ca7e4','24b32008-080d-4cf2-b2e3-73b35877738d','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2025-02-26 13:18:48.386',0,NULL,NULL),
('cd701be1-7ee5-44c3-b2e7-2b7e15ffe056','322aeb29-42e3-4166-8669-1fa18b704bfc',NULL,'1 PALET 1 KOLİ','2024-03-23 07:47:27.291',0,NULL,NULL),
('cd8df407-b5df-41b3-9552-a349d4e71404','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-04-21 21:00:00.000',0,'2025-05-30 13:57:13.885',NULL),
('cd9220d6-7acb-425c-8114-79c4c4e650c8','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'DOĞA MODERN PARİS KANEPE','2025-08-28 02:10:51.000',3,NULL,'2025-09-08 12:00:07.860'),
('cdab8feb-4b24-4e8a-bc95-98fb1259890d','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb','b4b527e9-c851-458f-9238-9049a66f2c90','trend masa +6 sandalye ','2025-08-29 09:00:00.000',7,NULL,'2025-08-29 13:50:24.713'),
('cdccd2ca-ece0-44dd-b047-f15496470e46','833e1960-d162-4228-ac7a-54bd28d48049','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3-3-1 koltuk takımı ','2024-11-05 21:00:00.000',3,NULL,NULL),
('cde2b645-2cf4-4ca6-9d59-ef733217c501','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL,'Mobilya ','2024-10-07 11:17:45.299',0,NULL,NULL),
('cde4352b-468b-4eba-b9e5-49b1f33cf2d5','d6968286-4388-4d14-a075-b49d0ae8ae44','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-08-11 11:37:32.000',6,NULL,'2025-08-11 12:48:08.585'),
('cdfdd10a-5aff-42b9-befe-02fb27016fe2','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL,'Mobilya ','2024-10-09 13:32:53.515',0,NULL,NULL),
('ce0bc20e-e38f-429d-9313-f5c2e8c01178','a04ae8dd-1caf-4622-97e8-aa08c8974c93','fd87365f-791b-4129-a329-2bbc5296e508','Masa','2025-08-21 14:43:49.000',0,NULL,'2025-09-03 13:14:54.135'),
('ce29df58-4e14-4d97-a9a2-c908fd7145a6','ef3b570a-0fb1-407c-87bb-aea336aed633','687faa80-4d93-4ee8-8977-05fb50c6be5b','KÖŞE KOLTUK','2024-11-04 12:47:30.000',2,NULL,NULL),
('ce35ed4e-10dd-496c-a133-4314817d51d0','c96401de-d2bb-42c4-b232-62e5a3c21b42','c6928307-fe5c-4de5-b14e-5dd7e33db94b','harmony masa','2025-07-31 21:00:00.000',999,NULL,'2025-08-06 09:08:34.778'),
('ce3f831d-2675-4684-9557-6bae46763ee7','0fadbd30-6b39-4e10-8b6a-91aab0921641','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-08-14 22:57:02.000',3,NULL,'2025-08-20 12:20:10.851'),
('ce42e11e-4d43-4c6c-8883-9e3ebd875644','c7df4577-2554-4909-9abc-5a62fa7bafc7','e4eb0112-f7c0-479f-984b-1bbcfe084020','KOLTUK TAKIMI','2025-09-18 06:00:00.000',4,NULL,'2025-10-03 12:20:25.317'),
('ce43478a-bedd-4537-b06a-c1e76d9d50ff','a04f974c-9931-40d4-ae61-21f5044fce18',NULL,'KOLTUK ','2025-02-20 21:00:00.000',0,NULL,NULL),
('ce4976ba-e974-4470-8acc-c28f5a58a2e9','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL,'Halılar ','2025-10-11 00:27:54.102',0,NULL,NULL),
('ce4b2ed3-b703-4946-97df-6436dbd06171','7ed51e97-f73a-473a-bca0-1959c9e5c202',NULL,'ARTİS YEMEK MASASI','2025-10-29 23:53:00.000',0,NULL,'2025-10-23 08:23:03.814'),
('ce549e83-2baf-407b-8859-b4e281f0246e','c82f6276-7135-4de6-87f0-112f5bbfaf90',NULL,'MUTFAK MASA TK ','2025-10-21 21:00:00.000',0,NULL,'2025-10-23 09:57:55.908'),
('ce705bb9-2292-4b08-8e28-45289657fca2','36d38390-5cfa-4e01-8327-52dbfc708657','01c95349-72b9-482c-8165-7af9590e15f4','6 adet 3 kutu','2025-08-29 09:00:00.000',0,NULL,'2025-08-29 09:41:05.376'),
('ce8f4415-3b63-4fe8-a25c-9973f07651e6','3b24c44b-141a-498a-a365-b5111a55d868','3e78db22-08b5-4c8e-9d69-c184e551e40a','KERAMİK MASA + SEHPA','2025-07-11 14:00:00.000',5,NULL,NULL),
('cea9e943-e299-4576-b365-f684cc2e4d11','548ed737-ff1e-4d15-8e34-d66ac4314840','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-07-16 13:00:38.000',3,NULL,'2025-07-17 08:04:39.952'),
('ceaa236b-3a68-4533-ad29-229cec3a8f6f','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL,'Karyola','2025-07-01 21:00:00.000',5,NULL,NULL),
('cec6ac97-c18a-481b-8742-ea1b5998230b','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL,'Malta sandalye ','2024-12-10 21:00:00.000',6,NULL,NULL),
('cecb11ce-95d6-47e3-81f8-31029465757b','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL,'STAND','2025-07-07 21:00:00.000',0,NULL,NULL),
('cecc8463-45d0-47ec-979e-e51c1cede7c1','f7f2db15-90e1-4ab2-89b6-6a61a7161bbf',NULL,'PALET VE ÇELİK KAPI','2024-05-11 08:16:23.174',0,NULL,NULL),
('ced044e4-db8d-44d4-b9a8-3cd0b7852fa8','988b6ac4-89de-44d1-b2f2-021d95db2baf','8f681d43-0f04-48bf-a190-abcd5fbd637d','Viral Ada ssh','2025-09-01 18:00:00.000',0,NULL,NULL),
('cee76706-8686-4b5f-b415-fa5d54173ed1','f0a5289b-f034-4540-b03b-9510ca71ec7a','37486a5b-3dc6-4298-9bfd-3291b8f42d46','koltuk takımı ','2024-12-27 21:00:00.000',0,NULL,NULL),
('cf13fd34-bd50-4310-937b-eee4652efc14','fa763b5d-87a5-4561-b94a-76c46bc6cab0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','köşe takımı','2025-01-05 21:00:00.000',3,NULL,NULL),
('cf16ee0b-0882-4d38-9eca-1e0888101309','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-06-24 21:00:00.000',6,NULL,NULL),
('cf1a1e61-f899-49cc-8a16-f8af9c1879fb','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL,'MOBİLYA','2024-10-15 14:29:02.222',0,NULL,NULL),
('cf3bf9ba-92d0-47df-8c74-248b0e3c5f89','0f733eb9-d262-417e-b01a-927f3219d47a',NULL,'Sandalye','2025-10-16 02:26:08.217',3,NULL,'2025-10-16 14:42:47.457'),
('cf3cac0e-39dd-4100-a9ee-9ff081b7f99b','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL,'yatak odası ','2025-02-13 21:00:00.000',0,NULL,NULL),
('cf593fe8-a725-46d8-9aea-78d789c87856','70305ca6-1276-478d-974a-f8168b04c382',NULL,'TEKLİ + OTURUM FONDU + KIRLENT YÜZÜ','2025-03-05 21:00:00.000',2,NULL,NULL),
('cf5c6387-b585-4f33-a565-829b3e46fd0b','b9164589-534d-4d1e-a7e0-ad53801936ef','3d19e2da-7de7-453c-83fa-6edd8258f6eb','iki adet kanepe','2025-06-18 21:00:00.000',2,NULL,NULL),
('cf5e2f56-ede6-45c4-acb8-88a0bffb5f73','3a352d28-b0b9-4b59-9821-a77910ca2fbb','3dad3bde-f663-478c-ab8f-fcc03ea465e3','yatak','2025-08-13 13:32:23.000',0,NULL,'2025-08-28 14:47:43.178'),
('cf77e119-18df-44ea-b969-889f91fbe2d6','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL,'BANCH','2025-06-26 21:43:37.000',1,NULL,NULL),
('cf7f91ae-875d-40a7-aa62-343d55ae5df6','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL,'ÇUVAL','2024-07-20 10:54:43.948',0,NULL,NULL),
('cf923c2e-5afb-480c-b737-8b48ace679b6','bdb01abd-b400-4d77-9dc6-589a2150e1ce','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-06-27 12:00:00.000',5,NULL,NULL),
('cf9e313e-63a3-4829-8ac3-fa259b349ab7','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL,'Sehpa','2025-02-07 14:53:32.095',2,NULL,NULL),
('cfa5ab64-96ad-4300-8cf5-2a711f05fd37','be724a3e-9060-4b50-872b-a56ac4c3c92b','3d19e2da-7de7-453c-83fa-6edd8258f6eb','harmony köşe+berjer','2025-08-12 21:00:00.000',5,NULL,'2025-08-04 08:20:31.646'),
('cfb61950-fe5e-4848-865f-5a703096b7d6','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL,'SSH','2024-08-31 13:04:39.990',0,NULL,NULL),
('cfcd95ed-d5a9-4721-9a6a-423ce2278803','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 120\'LİK BAŞLIK','2025-10-03 00:17:12.000',1,NULL,'2025-10-03 11:29:25.915'),
('cfda16e3-3e94-4fc7-b414-e5be0c5bf581','1f693920-f2af-4070-9034-3b5ae439f603',NULL,'MOBİLYA','2024-09-18 21:06:55.458',0,NULL,NULL),
('d002bcc5-a422-4c14-8bcb-77615c5f9183','2bfb4ebc-a071-48f5-9c44-727046a13ab1','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','6 ADET SANDALYE ','2025-09-15 21:43:15.485',3,'2025-10-06 11:36:43.189','2025-09-17 07:28:57.521'),
('d0179e0b-1e47-4301-add1-8a61b9197115','bd298d61-17ac-40db-8ec3-3741f3c4e017','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa','2025-07-03 22:00:00.000',3,NULL,NULL),
('d024ac00-3c90-4d85-add5-6d95182d7f3e','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL,'Köşe ','2025-09-01 12:00:00.000',4,NULL,'2025-09-02 08:59:20.073'),
('d0382f9c-aaf0-441c-b336-44000b89634d','e34a405c-b206-4de1-aca3-4f8e33268107',NULL,'FELİX KANEPE','2025-03-04 12:27:25.059',0,NULL,NULL),
('d0512e6f-47bb-4d5b-9300-eec57f981f59','122e072e-9a04-4ece-a40c-c2aaa95b6630','0f300a3b-b3d6-4b60-924b-aa70cd54141e','5 parça ssh','2024-11-14 21:00:00.000',5,NULL,NULL),
('d078f442-8ecf-4d1c-ad6a-0ef68abc6fc7','df9c125a-f311-496d-96b6-2c41f3e5ed96',NULL,'ICON PLUS MASA SANDALYE','2025-03-13 11:03:33.015',0,NULL,NULL),
('d090324b-381d-4576-9558-a6a55f702152','a5a9372f-c23a-4cfd-971f-d494355aeac5','8c6ecba8-6768-4127-80ba-c9c71d442689','SANDALYE + TV ÜST RAF ','2025-08-11 21:00:00.000',0,NULL,'2025-08-12 13:20:19.314'),
('d0ab4125-494e-44f7-a732-9602289cdd76','042f3c72-dff0-4f05-808d-d871ab750191','fe0a9e17-e52a-465c-af84-8dd1932db99a','Sandalye','2025-08-15 09:43:45.198',0,NULL,'2025-08-15 10:26:32.593'),
('d0ad0298-a846-4ac8-b7ff-77d9ded3aa8b','fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','ORTA VE YAN SEHPA','2025-10-28 13:35:40.000',3,NULL,NULL),
('d0ade823-74de-4507-8f72-ff3352af4bbf','6fbc940d-f90d-4421-9557-c3c507ca66e1',NULL,'Mobilya ','2024-09-30 10:44:46.522',0,NULL,NULL),
('d0c01cd8-8089-48cb-8f1d-e521fc5f8acd','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL,'YATAK','2024-05-23 07:16:11.463',0,NULL,NULL),
('d0c58395-1ef4-4e35-9dbb-33c8a0ca36bd','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL,'TRAVERTİN MASA 300x100','2025-04-28 21:00:00.000',2,NULL,NULL),
('d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL,'KUTULAR','2025-05-22 21:00:00.000',0,NULL,NULL),
('d0df6416-9f60-4c76-a984-ebbbd159d034','d009c914-f7f6-4644-8a84-a30cb9311137',NULL,'KÖŞE ','2024-03-12 08:12:41.147',0,NULL,NULL),
('d0f1019a-0cb9-4fff-9f33-5af28e47634f','4c449693-e58b-4f1c-aa28-fae57056e377','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE SEHPA','2025-05-05 21:00:00.000',4,NULL,NULL),
('d0f4bba7-0b87-482c-9828-9f24f37e6ed6','313a72ed-6534-4a76-a704-0b5ce01d87db','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x200 traverten masa ','2025-09-23 12:00:00.000',3,NULL,'2025-09-26 11:13:25.867'),
('d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL,'MOBİLYA ','2024-12-23 21:00:00.000',0,NULL,NULL),
('d0f5d27e-51ff-470c-bc49-8beb1dcf3ff4','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92','38a7333e-8a0f-4e45-957f-e11d538d2097','Masa ','2025-08-10 21:00:00.000',0,NULL,'2025-08-13 07:15:06.769'),
('d0fab5e1-5f00-4678-bcb8-96afe15cb326','ab5c9dd3-1a09-47c4-8748-32885c12b8b2','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA','2025-03-26 21:00:00.000',1,NULL,NULL),
('d1102fc9-0c49-49b0-ab10-6900fbda3dbb','398f18a6-4116-4296-8890-4d154fc30789',NULL,'Mobilya ','2024-09-27 09:01:43.711',0,NULL,NULL),
('d120a3e0-a843-4dce-81dd-8d7145713884','afe0ae69-06ca-44c7-8928-75ee9c95e9f3','128499ca-8a62-495a-b36a-15a8e63514ec','sandalye','2025-09-15 00:00:04.984',6,NULL,'2025-09-16 14:08:20.569'),
('d128f7f7-dcbb-4f80-a8b5-2f4f29fa7159','aec29545-1708-47a6-a33d-352a69ad4876','1e9b9fbb-3031-49d7-a3ee-d77c9ffac9f2','tv ünitesi','2025-01-28 07:19:31.913',1,NULL,NULL),
('d12ce78c-a7c1-4937-be74-17b603729cee','08c394f5-81b6-4f94-b6e3-4d898cb44cae','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-04-24 07:51:14.901',5,NULL,NULL),
('d12e3c4e-7d14-4f36-a4a9-4e21c2b9d611','026148a6-1f09-460e-bbc5-d795abe9cde4','bc1b9fd7-95d7-4d5b-a84e-684140acc414','masa','2025-06-25 22:54:38.794',2,NULL,NULL),
('d1422107-1cbb-46aa-b421-a24342e51735','e5520c68-91f4-4a26-99dc-18b77f9d5c29',NULL,'MASA-SANDALYE','2024-03-16 06:56:31.896',0,NULL,NULL),
('d157292a-9b96-4a01-b210-9211e153e2de','5400fc28-c829-4ccc-a810-54ae598d5606','54695867-3acc-4cb4-bb9e-c67e92691a43','6 sandalye','2025-07-25 07:00:00.000',3,'2025-07-28 13:16:27.154','2025-07-25 13:12:14.859'),
('d15832fb-c5f0-46e6-b8ad-3b93fb8fc893','365ff697-3271-4de2-aa7d-b8bcf4ff9590','44c404b3-a618-4af5-bdfb-ad381f049053','Sandalye ','2025-10-21 17:11:53.730',0,NULL,'2025-10-23 09:07:58.928'),
('d15bfb2d-ea1c-4de5-8239-aa7ecce41541','e9aed3da-2754-4ac0-8f89-1a36768fe9bc','679716f3-7799-4e9d-a984-9fe004b5689e','SEHPA','2025-09-02 18:01:17.202',1,NULL,'2025-09-04 14:44:57.248'),
('d1606eb5-933c-4e61-b7ea-5f79b332691c','aaf80057-65ea-4999-832a-29537bd6ba3e','754dc58e-48a9-4cf6-bcec-82201990299e','KARYOLA DÖŞEK','2025-04-24 08:26:12.209',6,NULL,NULL),
('d1670072-4bb7-4501-b8b6-00a607e502a2','57d149b0-26bf-4d32-bd70-63fa29f50cd3','8c33406d-1686-45a9-ad7a-de320c689537','MALZEME KUTUSU','2025-10-12 15:42:04.000',1,NULL,'2025-10-17 07:43:31.572'),
('d16c32bd-befe-46f6-b24e-45b67ff18710','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL,'MOBİLYA','2024-10-17 11:42:36.772',0,NULL,NULL),
('d176a715-bd33-47f6-bcb7-f384e079f39a','c41ca8d6-668a-4f0d-a4a0-76810c2ba3f4',NULL,'MOBİLYA','2024-09-30 14:25:36.643',0,NULL,NULL),
('d1833d5a-ee89-4250-8013-2e537cc62ee3','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL,'TÜRKMEN PORTO KÖŞE TAKIMI (3,12 X 2,60 CM)','2025-08-12 15:00:00.000',1,NULL,'2025-08-20 11:28:49.952'),
('d18a2419-b732-4e92-af33-acb3eabdd832','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-04-24 08:46:46.695',6,NULL,NULL),
('d1a94bfe-d49f-44a6-af36-335cd07624bc','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL,'SANDALYE','2025-04-14 15:12:24.426',3,NULL,NULL),
('d1aedf1e-b5d5-4c6c-8c6b-7898e66abaa3','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4','84ae5cdf-69f8-4d9e-9e50-cc7f34c54066','SANDALYE','2025-09-19 05:00:00.000',3,NULL,'2025-09-22 11:36:37.417'),
('d1bf45f5-0074-4f90-aa36-647a6e5b5b53','a1891b3d-2115-4842-a527-66a78ad1317d','fb339a39-487e-425d-800f-f101bed0db87','Masa+sehpa','2025-03-25 06:00:00.000',4,'2025-05-07 16:51:45.641',NULL),
('d1c09ab5-7b1a-4956-bbe6-a055dad44720','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL,'YARIM TIR','2024-04-27 08:08:54.456',0,NULL,NULL),
('d1dd90f7-c3be-4cd5-8ecd-c3b298598a52','e55441b7-eaf6-4645-ac39-b0befcc429b1',NULL,'aaa','2025-10-14 12:00:00.000',0,NULL,NULL),
('d1fd3f4f-4bf3-47b0-a693-da45e125c822','280e9889-e4b3-48a6-9ac5-246bac1566c1','67c34dc2-4657-4323-8fc0-4ff05ed31067','BAZA AYAK UCU','2025-09-01 05:00:00.000',1,NULL,'2025-09-10 11:21:31.666'),
('d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a','8a3a5949-7a42-4ac9-a011-34fadde1265c',NULL,'KOLTUK-TV-SEHPA','2024-03-16 08:51:37.117',0,NULL,NULL),
('d201307c-b6d4-4cf8-9e1f-1896ba9922ab','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL,'Koltuk','2025-08-29 00:00:00.000',0,NULL,NULL),
('d2064495-0a60-45d7-905a-836aa4e7345f','6dba3758-1465-4641-b00e-aa374ccc812b','81ed0ba8-3918-47d7-86eb-3ffd5cafb042','KOLTUK','2025-11-05 23:00:00.000',4,NULL,NULL),
('d218cf1c-b46c-49c5-a96b-570ea5fc549b','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL,'Sandalye','2025-02-12 21:00:00.000',0,NULL,NULL),
('d22d7227-b6be-4a20-978b-11fabd469cb9','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL,'KARTON','2024-05-11 08:59:33.185',0,NULL,NULL),
('d2498eae-06de-4965-ad29-62155b9a8992','a53ce358-8681-4bd7-86f3-ca3347ae0364','d8852582-d508-498a-b753-7d20cd810d34','Koltuk','2024-12-30 06:30:00.000',5,NULL,NULL),
('d249af0f-08a7-4145-9b4b-f81577563c6c','8fb47c44-2d49-4fed-9d20-275d1c3b846a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-08-29 03:53:44.303',4,NULL,'2025-08-30 10:57:49.006'),
('d2526198-f8b9-4b23-8ffe-3e3a3ae8bd45','2bec7dc4-1e0b-41fd-a49a-0b5961518451','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 ekru krem sehpa','2025-10-28 08:36:31.000',2,NULL,NULL),
('d254b414-3d33-471a-977f-2859902f1d94','4935e2c6-1278-4f37-9267-8259ac87fafc','c508b00d-a686-416e-ab4b-43fe49208cd0','KÖŞE','2025-10-28 09:00:00.000',0,NULL,NULL),
('d288cffc-d6b7-4cab-b12e-a6c24eeb2902','e044efcc-ec9d-4901-8d6f-56f4f548947a',NULL,'baza başlık set ','2025-01-26 21:00:00.000',0,NULL,NULL),
('d2935a63-770b-4c40-a922-4ae6e53662ce','5fcfabaf-abfd-496b-84fd-6ef04452b85c','54695867-3acc-4cb4-bb9e-c67e92691a43','6 SADANDALYE','2025-08-14 21:23:54.842',0,NULL,'2025-08-28 14:21:46.431'),
('d29f1072-25b7-40a0-807f-3d4e2938cf5c','6786ccb2-517a-4991-b179-6d41d556a614','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2025-08-01 08:42:15.000',3,NULL,'2025-08-12 13:06:53.867'),
('d2a27438-077d-44ac-ac5a-141341739e32','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL,'DELUXE YATAK 160X200','2025-04-29 21:44:34.000',0,NULL,NULL),
('d2be0913-8bad-4bc5-b776-f2050b939197','69d3f67b-d428-4309-b980-d4a463f6b69e','37486a5b-3dc6-4298-9bfd-3291b8f42d46','3+3+1+1 YATAK ODASI ','2024-11-11 21:00:00.000',4,NULL,NULL),
('d2deeb01-cbb5-46b5-a5f5-023f8cc21549','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL,'BAMBİ MAGNASAND 180*200 BAZA','2024-12-17 21:07:47.000',1,NULL,NULL),
('d2f8d58d-42ad-4705-b1e8-a666af927fa3','aa3f39f2-a374-4662-9b70-6a623142a920','8f681d43-0f04-48bf-a190-abcd5fbd637d','VİRAL BAZALI KARYOLA + ADA + 2 KOMODİN ','2025-08-18 00:00:00.000',0,NULL,'2025-08-30 13:54:12.264'),
('d2ff9c8d-4639-441a-9d87-f69bec139d50','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL,'Koltuk Takımı (3+3+1)','2025-05-12 21:00:00.000',3,NULL,NULL),
('d30061b1-fef2-411a-8993-93b9bc215085','00c9f797-aeda-4640-80a8-f170a3df58f4','7582128f-7119-48f4-b125-e6b8bfb84dc3','SANDALYE','2025-05-21 21:52:26.000',8,NULL,NULL),
('d30eb7b1-5ae4-4750-9c25-1fb72d0f30b7','f8a35a67-4391-400d-b200-b2e5eb8c88d5','d8852582-d508-498a-b753-7d20cd810d34','Kanepe ','2025-07-11 13:30:55.000',1,NULL,NULL),
('d32b552c-b92e-4e30-9bd2-aacbb0b4e77b','3e6f544c-260c-4661-9a22-59d5cb509c0a','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','FRANCO T SANDALYE 6 AD. ','2025-04-24 10:00:00.000',3,NULL,NULL),
('d34d77bc-841b-497c-b8af-5ef75be17896','cf774409-1636-4858-87ca-49dc1380271d','8d4373a7-0436-4e7b-a49e-823a43e45dbf','Köşe koltuk','2025-08-22 11:00:00.000',0,NULL,'2025-08-22 12:34:43.566'),
('d3588236-8577-475c-a299-60919e6c93d6','76991b10-04f4-476a-b317-0315495b4a37','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-28 18:41:19.000',1,NULL,NULL),
('d361d18b-4b93-47bb-9f0e-b3ddf5f8102e','259921e5-33a8-46ab-8da6-91a44b26b420','fd87365f-791b-4129-a329-2bbc5296e508','orta sehpa','2025-08-05 21:00:12.000',0,NULL,'2025-08-29 08:04:30.840'),
('d364225f-466b-4bf4-be94-78a3b92ff966','4197af5f-54c3-4efd-8f7b-cdb3412520ca','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-03-09 21:54:56.000',3,NULL,NULL),
('d3692bbe-c68f-427e-b8f5-575726bb8e24','b006cc45-9807-4678-89ca-491086a75064','67c34dc2-4657-4323-8fc0-4ff05ed31067','masa-sandalye-ortasehpa üst-rutuşboyası','2025-07-03 21:00:00.000',999,NULL,NULL),
('d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL,'Sandalye ','2025-05-19 21:00:00.000',0,'2025-05-26 13:35:23.656',NULL),
('d394151c-87e2-4f5a-83e5-e75ef45c4ec0','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL,'DENİZ KOLTUK TAKIMI','2025-06-26 21:00:00.000',3,NULL,NULL),
('d39ed2f8-02e2-4066-8e4c-569b4799cf85','8f6807e5-5c09-4383-bd17-acc03cf88760','1e0336e7-e1d0-4cc6-a81e-add17532c1fd','sehpa','2025-06-19 09:29:06.705',0,NULL,NULL),
('d3b158c9-fe43-44e9-aafa-358c6c95c929','681a9409-dfea-4051-898e-57fa8d7d2fef','44c404b3-a618-4af5-bdfb-ad381f049053','KOMİDİN ÜST ORTA SEHPA  VE ÜNİTE ÖN','2025-10-22 11:42:07.067',0,NULL,'2025-10-22 12:37:36.108'),
('d3bb2bf1-aaaf-4646-9e16-f444a59bbe9c','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL,'Mobilya ','2024-11-01 07:50:55.536',0,'2024-11-03 20:43:20.148',NULL),
('d3c3d137-f31d-4357-958b-af365fcd9dce','fa43edbe-bf66-4c07-ab59-51d6823553d1','82336023-f687-412c-8605-bb4954790dc2','polo köşe koltuk takımı','2025-02-10 21:00:00.000',6,NULL,NULL),
('d3ca8205-b3cd-470b-b1bc-6965c6463c92','147e8615-279e-4297-866d-fbccbd1231af',NULL,'MILANO ORTA SEHPA ','2025-08-04 15:24:40.000',0,NULL,'2025-08-06 12:15:50.130'),
('d3cefc8b-69da-4840-90b9-b720a1f57e19','8ac11872-8b52-4d38-b53d-bc95257e76e8','d8852582-d508-498a-b753-7d20cd810d34','KÖŞE KOLTUK','2025-06-17 13:00:00.000',4,NULL,NULL),
('d3d4bfdd-72be-46ff-be79-662e22aba9f9','5045a79c-4874-4baf-b0cf-15d0d296389d','3d19e2da-7de7-453c-83fa-6edd8258f6eb','3+3+1 koltuk takımı','2025-08-01 02:13:45.000',3,NULL,'2025-08-25 07:03:53.541'),
('d3d5114d-4fd2-41d8-bd26-703a87e70d0e','85071203-536b-4dca-b6ab-eb378a6c9c05','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-05-11 21:00:00.000',4,NULL,NULL),
('d3ec7007-7937-41c6-9947-c751d7edafa2','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL,'YATAK ODASI TAKIMI (BAZALI),LİSA MASA,ŞİFONYER AYNASI 2 ADET,160*200 YATAK,KANEPE 2 ADET,ÇAMAŞIRLIK,KONSOL VE PARİS PUF','2025-10-15 00:00:00.000',10,NULL,'2025-10-23 08:11:58.040'),
('d3eee142-7025-4960-b54a-b014d61d72f5','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL,'PALET','2024-12-27 21:00:00.000',0,NULL,NULL),
('d3ef5328-8ba8-4ae9-833c-ba4184f61d1f','a70aa802-d5bc-4a2c-97c6-3ca3264dc327','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 sandalye ssh','2025-08-12 08:00:00.000',6,NULL,'2025-08-20 10:52:50.349'),
('d3f149e7-e1d1-45e1-9b49-d48d29c4a5ad','fe09e685-3ce7-450f-a49d-122806a0d51a',NULL,'YAŞAM ODASI','2025-09-18 21:00:00.000',0,NULL,NULL),
('d3f758ce-394b-4e77-b350-e149f43feb15','fdd4c900-6ed6-4a26-8861-7c3e8266fd95',NULL,'koltuk 3+3+1','2025-04-27 21:11:16.000',0,NULL,NULL),
('d3fd2829-d860-4db3-b7f1-3abcb5e87b3b','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL,'KING PLATİN BAZA SETİ 160X200','2025-05-19 21:24:37.000',0,NULL,NULL),
('d412170d-6416-4ea0-bbeb-61bc608e9100','e27a6e41-2b2f-403e-91f9-f5bd285a2d96',NULL,'KOLTUK TAKIMI','2024-03-18 08:49:05.601',0,NULL,NULL),
('d42ff6bb-7a1f-4711-9eb9-3593301b840b','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL,'KOLTUK TAKIMI','2024-03-30 06:46:24.480',0,NULL,NULL),
('d44dbc96-5757-49c3-a29c-45760bde9a9f','2d1546c2-bea6-40ad-a656-acdd6173cc27','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2025-07-31 21:00:00.000',3,NULL,'2025-08-11 13:31:31.230'),
('d457d99f-e3fa-4b05-88ff-7a942d587be9','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL,'SSH','2024-05-04 07:59:42.937',0,NULL,NULL),
('d473118b-3237-4c6e-ba96-695877573ec8','8236ee4d-7b00-4708-bd5f-e656d5a3b5e6',NULL,'Köşe takım','2025-09-12 18:00:00.000',0,NULL,NULL),
('d47d3ae7-7352-4137-a656-596680802fe5','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL,'OPAL SANDALYE (6)','2025-02-23 21:53:22.000',0,NULL,NULL),
('d480cabc-7c33-4fa1-b0ec-3268dd289dd4','c885ca27-2244-4162-b7af-4fe67daf7fd3','1ffd8555-8f75-4a29-93f1-98402d43a4c6','Karin Yemek masası 90*180','2025-09-26 05:33:00.000',0,NULL,'2025-09-30 11:45:01.746'),
('d48dec8a-c7d4-4ff4-afc6-cca047d2de32','c7da4efa-976f-41bb-a365-004594890133','754dc58e-48a9-4cf6-bcec-82201990299e','KARYOLALAR','2025-07-04 11:30:16.000',0,NULL,NULL),
('d4aaf1b1-4e37-4571-b354-b8933674055c','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL,'KONFOR KOLTUK TAKIMI','2025-09-18 15:00:00.000',0,NULL,'2025-09-18 13:46:52.491'),
('d4b48666-94f9-40d1-8fe1-059d7aa569f6','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL,'KOLTUK ','2025-01-30 21:00:00.000',0,NULL,NULL),
('d4f91387-af40-4672-a65c-7ea6e96f76b2','b78bd5b9-8cff-4d83-880b-6b121f0affe1','93fccdca-b215-44ed-85df-2c73472c0987','Parteon ve focus ç.masasışifonyer kitaplık ','2025-09-25 08:22:40.000',0,NULL,'2025-10-16 11:53:00.321'),
('d50b8642-d5c2-4775-8220-5d5eec095d94','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL,'SSH','2024-03-30 10:01:19.043',0,NULL,NULL),
('d51015b0-6be2-44b9-9d54-292a049a61f5','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL,'80x120 mermer desen sehpa','2025-08-25 01:19:28.000',1,NULL,'2025-08-26 12:42:14.594'),
('d51dfe2b-0b6e-41ff-9db1-89b8770b0e0e','10862bf3-01dd-40a9-beaa-6ba3d5075238','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x120 cm traverten orta sehpa ','2025-04-24 21:49:38.000',2,NULL,NULL),
('d5283ace-e684-4edc-9409-0a221cb6b652','8886c04f-f904-4e77-a2f1-25b72bcd1e91','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-09-11 03:00:00.000',5,NULL,'2025-09-30 11:34:53.710'),
('d52e0084-461f-4485-8b29-bc10063841de','250a38e7-1fe6-4161-8032-c64b33f1c604','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','BALAT SANDALYE (SSH)','2025-08-06 21:00:00.000',6,NULL,'2025-08-07 12:43:34.019'),
('d53aa3e1-bcc2-449a-a539-ff54b420b075','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL,'MOBİLYA','2024-05-10 06:38:58.690',0,NULL,NULL),
('d5484691-9e22-42bf-ac38-78871e043951','0a6c0b58-ffe6-490d-896b-e43d0294c257',NULL,'SSH','2024-08-31 12:41:01.708',0,NULL,NULL),
('d55d2e95-9872-4d09-82e1-d78ed10c9ec3','f483e682-c963-48b9-8959-a369cedd8ffc',NULL,'KÖŞE TAKIMI','2025-02-11 21:00:00.000',3,NULL,NULL),
('d56a63ef-24d2-484c-be18-78f97c6e8da4','9ad30007-c146-4449-9cf9-5e061740cfa4','754dc58e-48a9-4cf6-bcec-82201990299e','bazalı karyola','2025-10-27 00:05:19.000',3,NULL,'2025-10-22 09:59:36.961'),
('d590609a-3961-46d7-9ecc-7b15489a9e19','4475a939-a408-4d10-a256-61dc03f279da',NULL,'TV ÜNİTESİ ','2024-12-15 21:00:00.000',0,NULL,NULL),
('d5a0f2f3-bcb3-4fbc-afd8-35e9c6c818c3','2e84e42f-b241-4285-8be1-464db22053be','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-20 20:18:34.000',0,NULL,'2025-08-30 15:33:04.344'),
('d5a7698b-6388-43e0-8603-5c9b362cc6d2','02301bb2-05b9-4f43-b8b5-5ced5c8740c7','b78426e8-87ca-4d84-878b-11136d2e5719','KÖŞE + 1 TEKLİ ','2025-07-23 15:19:05.000',0,NULL,'2025-08-22 09:30:56.113'),
('d5b79eaa-ed95-4fd8-8a01-7d70f4851f92','adb2b821-db09-48e2-aa73-097ac1069722',NULL,'Mobilya','2025-06-13 21:00:00.000',0,NULL,NULL),
('d5c4de73-6296-47b5-9493-d4e95eb86ce9','adf790b3-29b5-476e-ba13-8e482d9bc940','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-06-16 06:25:25.583',3,NULL,NULL),
('d5c9edc9-e34d-4552-a68d-baa81019cc01','b4f193d3-ef4e-4341-9bd2-136dfaae75a5','341b91cf-1aad-4739-bd45-e472108bd1b4','HALI','2025-01-20 08:11:47.000',9,NULL,NULL),
('d5d781e5-8483-4488-90f9-d1e3088851b9','269b4bca-6e23-4b7c-a9d2-e7abf0e79373','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-10-31 19:18:39.000',3,NULL,'2025-10-10 07:26:02.674'),
('d5da8c36-4c87-49ed-bcf0-80fcab083afa','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL,'LENA YATAK OD. ','2025-09-30 12:13:53.000',0,NULL,NULL),
('d5efe2d6-e010-4287-9123-64530913fd5a','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL,'Mobilya ','2024-09-30 10:58:54.904',0,NULL,NULL),
('d5f69841-1156-436c-9f49-515d8de25a72','70679c39-169c-46b4-9b96-b3994b9aee84',NULL,'MOBİLLYA','2024-12-12 21:00:00.000',0,NULL,NULL),
('d5fa404d-79a5-4cee-80e5-d721647dd05f','0fadbd30-6b39-4e10-8b6a-91aab0921641','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-08-14 22:57:35.000',3,NULL,'2025-08-20 12:20:10.851'),
('d6021cbb-940e-47b8-ab42-41689446e9d8','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','b4b527e9-c851-458f-9238-9049a66f2c90','yatak-yemek-tv-orta','2025-08-07 08:16:30.000',9999,NULL,'2025-08-12 08:08:24.268'),
('d61e1a25-0e04-417e-ba49-aa6868ece882','bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e',NULL,'Ssh','2024-07-03 14:29:21.213',0,NULL,NULL),
('d627c533-b0cf-4788-b5ae-c6e60c825d52','74637af9-7a7a-405b-a482-73059c1633c6','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-02-24 12:52:04.312',6,NULL,NULL),
('d645cbb0-c670-4201-90d0-24c118165584','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'M35 MASA','2025-06-17 21:39:48.000',0,NULL,NULL),
('d6a7a759-a83e-40d0-a493-4d7567db1aba','d448143d-3fcc-4fc3-8d37-30d1af2dec9e','b4b527e9-c851-458f-9238-9049a66f2c90','yemek odası','2025-03-23 21:56:13.000',1,NULL,NULL),
('d6b091c1-330d-473e-86ae-6ededb40d96e','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('d6df3903-19cd-4a6e-9222-dc4fd8ba3e29','59340ffb-ba9b-4386-a0a4-686fcf54115b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Natura sandalye ','2025-09-08 00:04:36.000',3,NULL,'2025-09-12 08:18:11.636'),
('d6e1bcc8-0220-47f9-9e07-4a10ffa78bdd','c0c3f9c9-66be-417f-8970-9ed698019421','98c5854e-8359-40bf-8d64-f3fb052b029d','KOLTUK','2025-10-31 16:02:51.000',5,NULL,NULL),
('d735327b-ac4e-4761-98e6-d9e2e53b4b8f','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL,'RAMS KOLTUK TAKIMI ','2025-01-28 21:00:00.000',11,NULL,NULL),
('d736861d-0284-411d-97d2-14b3372d31b7','67b755d6-8527-41db-b18d-4497bd14d893',NULL,'Toner','2025-05-24 21:00:00.000',0,NULL,NULL),
('d74ca385-6368-4855-a36e-6dacd03115f2','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('d75cfb47-71c3-4e08-8733-4ee17725e2e5','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80-60 cm sehpalar ','2025-05-05 21:30:32.000',2,NULL,NULL),
('d77c1e4e-c306-49d5-a8dc-4ae4f2dfa986','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL,'3-3-1-1.  Koltuk takımı','2024-12-09 21:00:00.000',4,NULL,NULL),
('d790c4af-3dcd-4c2f-bac7-cd5516a41cfd','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x150-190 ekru krem açılır masa','2025-08-21 15:00:00.000',3,NULL,'2025-08-26 12:42:10.664'),
('d7a4e9f1-7636-4ee8-bc12-a2cb24189e91','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL,'Köşe takımı 1 adet berjer ','2025-02-02 21:00:00.000',0,NULL,NULL),
('d7a68585-2a23-4904-a221-7e2482da8969','88ac5034-c866-4cfd-9646-8c2316ae0024','28ca5666-3c89-4dd3-8af0-508ec9c9962b','Masa üst tabla ssh','2025-06-26 21:00:00.000',1,NULL,NULL),
('d7b1a371-32dd-4a13-a035-cf235f8967f5','dcf208dc-cd3f-4596-9430-d35849bbc2f6','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-09-07 21:48:03.000',2,NULL,'2025-08-27 11:37:51.338'),
('d7b20d4a-f51a-4294-af83-061ed3bd58ef','aa3f39f2-a374-4662-9b70-6a623142a920',NULL,'PLATİN YATAK 180X200 2 ADET ','2025-08-28 21:06:35.000',0,NULL,'2025-08-30 13:54:12.264'),
('d7ba1ed3-8fa2-4df3-9997-7f6419ace61f','56569bbe-2460-4ca9-903c-508e769e4a29','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','koltuk','2025-09-30 14:00:00.000',3,NULL,'2025-10-03 09:31:08.952'),
('d7c0bdca-3eb4-4f43-837c-c967d7025e76','8583f2b4-5e34-4b29-b37d-c779a2102d5c','784eb191-99d8-4460-bc51-899062354f51','SSH TEKLİ ','2025-06-18 21:00:00.000',0,NULL,NULL),
('d7c129a1-5024-443d-aecd-2d1f690185ad','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL,'SSH','2024-09-28 15:25:18.529',0,NULL,NULL),
('d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8','5c8a45fd-4f1c-4791-a236-1f8362adf868','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','SANDALYE','2025-07-25 13:25:26.000',6,NULL,'2025-07-25 13:20:17.589'),
('d809dcad-16de-4109-80cf-c313d807e1b1','c59d01dd-3504-4be3-8a37-b4203d620130','e46f75d9-f1dd-4753-8e6e-717c17942cfd','dolap kapağı ve sehpa üstü kendim getirdim','2025-06-15 21:00:00.000',2,NULL,NULL),
('d810a4fe-529a-401c-897d-31b505128e43','69fe4f9c-47cc-4216-8bca-b92bce12c165','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE TAKIMI 2,5 M3 GZÜEL VİDEO ÇEKMEMZ','2024-11-11 21:00:00.000',3,NULL,NULL),
('d8194e26-9b2d-4f28-bf31-062e577f118f','824b8b50-1127-4eb5-8137-c9c3822a54a2','55934c55-9fe9-46ce-b8a4-cf7669e12b21','Sandalye','2025-08-11 12:33:15.000',6,'2025-08-11 14:59:54.945','2025-08-11 11:09:20.266'),
('d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL,'KOLİLER','2024-06-08 07:24:15.366',0,NULL,NULL),
('d83c40d1-4df5-4c97-bc83-28837db95b2b','45658f08-1cac-40c6-b173-5814bf12543e',NULL,'Mobilya','2024-07-24 07:47:45.304',0,NULL,NULL),
('d84ba499-6aea-4ff0-b177-6f8576e1fcdb','24096b71-5b5e-4da8-9191-8e3168102053',NULL,'Mobilya','2024-08-30 08:35:31.654',0,NULL,NULL),
('d869275e-c52f-4b2e-ad61-45157dcc30a7','b446493b-1082-4321-a430-c914fa49afcf','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-06-22 21:00:00.000',0,'2025-08-05 12:59:58.811',NULL),
('d86cea20-f09e-42e9-b019-9f7c88420816','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE TEKLİ ','2025-10-03 22:44:47.000',0,NULL,'2025-10-14 10:52:35.433'),
('d87dcbf3-4bf4-4263-b602-cf7e56cd9efc','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48','0f300a3b-b3d6-4b60-924b-aa70cd54141e','konsol ve köşe ','2024-11-14 21:00:00.000',9,NULL,NULL),
('d8839108-c49a-4a9a-a2fc-69a3793fbcf7','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','66cb5fb6-f188-4045-af72-1ffd981f98df','BAĞDAT KARYOLA 2 KOMODİN','2025-09-15 04:57:56.025',0,NULL,'2025-09-19 11:49:55.086'),
('d885da0f-8b0f-4f3a-bd54-883347401bfc','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('d8896502-ee1b-4969-b484-104bc8965f47','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL,'Mobilya','2024-08-30 09:35:45.751',0,NULL,NULL),
('d8b997b4-f874-47ea-b9fd-067dee0368c2','effb34a0-0ad9-48cd-9191-3cdc75353428','940c6390-4082-4fe5-aeaa-06d180147a7b','SANDALYE MASA ','2025-10-20 13:00:00.000',7,NULL,'2025-10-22 07:32:23.249'),
('d8cc3511-84de-4ab9-9beb-0d40f6d341e9','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL,'SSH KOLTUK KASASI','2025-03-06 10:47:54.967',1,NULL,NULL),
('d8d6a18d-b459-4cf1-ad6f-62787d1c812a','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('d8e303a8-8046-475f-835c-016b3dbd77bc','a75c0466-9f5a-4f5b-89c0-9179e86aed34','139ab88e-943a-4deb-979f-3d6e5eabe362','Orta ve yan sehpa','2025-08-27 23:42:49.045',0,NULL,'2025-08-29 09:53:41.633'),
('d8efa1e7-e2f6-4295-85fc-37c0728c0b11','f2e85c5a-0ab0-460f-8b3f-1dce4d598818','97cde9d5-1d58-437b-98cf-d37a0dc31a71','160*200 nirvana yatak ','2025-08-22 08:16:17.000',0,NULL,'2025-08-22 16:20:40.271'),
('d8efab7a-9dd4-4bbf-add7-d829b0f7d070','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL,'Mobilya','2024-08-19 10:36:35.865',0,NULL,NULL),
('d900f244-58b1-48aa-aa17-83c60fa8fafc','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL,'BAMBİ REFORM THERAPY YATAK 180x200','2025-09-03 03:06:11.000',1,NULL,'2025-09-03 08:34:08.302'),
('d928a490-1460-4b4f-b44f-81af5866e394','2bec7dc4-1e0b-41fd-a49a-0b5961518451','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah','2025-10-24 08:36:51.000',6,NULL,NULL),
('d9290b00-a023-43ef-94b8-727109b74f6e','c86b331f-7141-49b9-b684-a2a68daaa635',NULL,'MOBİLYA','2024-11-22 21:00:00.000',0,NULL,NULL),
('d92cafde-c7c9-4ef1-8397-2d52a48d3964','5e70dde1-35e1-403e-bbeb-3153ccf77d80','cf90c370-208a-4021-aaff-f9220970bca9','Masa ayağı','2025-07-17 07:47:18.856',2,NULL,'2025-07-21 13:03:43.264'),
('d93690ea-b22e-45dc-99a2-0e07f17da633','d9ce2f65-7034-4114-b66f-0c1076eb90bf','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','Sandalye','2025-08-28 18:23:44.000',0,NULL,'2025-09-03 13:05:03.144'),
('d93f5d7a-7db9-43e3-8d9e-87cb0ef58425','26e7065e-7d7c-4b87-8fc9-8255ca593083','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa + sehpa','2025-09-30 05:00:00.000',5,NULL,'2025-10-06 11:01:43.779'),
('d94a498b-a4f2-481d-bbd3-eae08b47ab9e','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','Köşe koltuk ','2025-05-27 21:00:00.000',5,NULL,NULL),
('d9566919-c3d1-4b43-9f35-08efcf51aa33','8f201baa-69fe-442b-9cab-fa1f47b7420b','6cf48902-0efb-4fdd-97e3-79e7b0fd3a18','ORTA SEHPA','2025-05-15 21:06:16.000',2,NULL,NULL),
('d96280e8-5cd7-47ae-80aa-e7bc1634804d','9cd992a9-f3c9-4cb4-a22b-ac995a102670','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-25 15:00:00.000',6,NULL,'2025-09-26 11:11:44.102'),
('d99137dc-6f13-4775-bb48-143abf0f1149','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('d9935e91-5c26-4669-9a9a-83060292f497','2001cb25-64fc-43dd-827f-15869eca039f','44c404b3-a618-4af5-bdfb-ad381f049053','köşe takımı ve berjer','2025-10-13 09:00:00.000',5,NULL,'2025-10-22 12:01:50.498'),
('d996c4f8-5b23-4215-8745-02197703fd3a','964fcf95-183e-4624-afee-8e83b0ce2134','b151728c-b265-4eed-b5c1-cb53409fb775','Köşe Takımı + puf','2025-03-19 21:00:00.000',4,'2025-03-24 08:34:06.071',NULL),
('d9a12366-07e8-4d5c-897d-e9877a9ebe15','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x160 traverten masa ','2025-07-03 21:00:00.000',3,NULL,NULL),
('d9a1e971-aa20-40ed-a8c1-d1b718ae07dc','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0','1dc7357b-468a-476c-b39d-81e187906258','sandalye','2025-09-09 23:25:09.000',4,NULL,'2025-09-09 15:40:07.438'),
('d9a3f4fe-a4c6-4ce4-a82c-a62d40e773f8','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL,'Ssh','2025-07-25 21:00:00.000',0,NULL,NULL),
('d9b1c3ef-83ef-4aa4-a68d-db1d57a35912','c30ef00f-b05c-4a82-a40c-4d69d5352e77','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 siyah meşe masa','2025-08-27 21:00:00.000',3,NULL,'2025-09-19 14:42:35.003'),
('d9b67b57-dd9e-40a0-9cc1-3e7dbc1c3b30','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','0e083618-5a60-4c18-815f-0b3515f3794d','MERMER ÜST TABLA ','2025-06-25 13:01:31.916',1,NULL,NULL),
('d9c8afa6-f5f8-43d5-9ac6-960a71010d4d','e032e33f-200c-486b-ab1c-c92b86e89536','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2024-11-03 21:00:00.000',4,NULL,NULL),
('d9c96ce5-7311-4159-8c51-6a1a744d0c49','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL,'Mobilya','2024-11-07 21:00:00.000',0,NULL,NULL),
('d9d3dbe1-b477-4354-aabd-ea735c2e96f5','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL,'Koltuk ','2025-03-23 21:00:00.000',0,NULL,NULL),
('d9f1a5d2-c0f1-4933-85c0-7d67a8550e21','7e266893-f849-462e-9a81-e6336886fc16','a3610da8-8e0c-417c-8834-1223bca4fb34','kanepe 1 adet','2025-09-15 00:45:24.000',1,NULL,'2025-09-30 16:03:26.921'),
('d9f8d303-c2bd-4794-8f6f-028cc186a4ef','2fd537fd-8d71-4980-83ba-812e63488956','a59c832a-288a-45ad-9922-f8c1ebf24d41','Yatak komidin ','2024-11-05 12:47:57.235',3,NULL,NULL),
('da066782-1e4c-4ab0-8bc2-6aa2c6bda432','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL,'MOBİLYA','2024-09-27 13:07:39.376',0,NULL,NULL),
('da08e17b-9c2d-4115-923a-b9a31bac47a3','13382df8-a786-4221-b2be-81ba3d674937',NULL,'MASA','2025-07-08 11:29:09.339',0,NULL,NULL),
('da0fcca5-1a59-4418-a46f-294dbac77c7f','6245482e-e4e9-4ec3-a033-d261753e3a36','4d3f433c-6ebf-4443-a8bd-319b61cbe400','dolap parçaları','2025-04-15 21:00:00.000',3,NULL,NULL),
('da295a9b-a45c-4b30-875f-e960d7ce19ff','6dce8b90-0bb7-4578-ad31-082486aad8f2','e2aa2442-8a91-4124-99c5-e56e6058e5e9','GARDEROBE DİOR KONSOL','2025-08-28 02:04:37.000',1,NULL,'2025-09-08 12:00:07.860'),
('da2a6994-498e-4ee7-b19e-3acf02f6cb3a','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL,'NOVİTA FELİX KÖŞE TAKIMI (295*215)','2024-11-24 21:00:00.000',1,NULL,NULL),
('da3267da-eefd-4a53-9bee-0543bff46695','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL,'Balat sandalye ','2025-02-07 14:53:10.227',6,NULL,NULL),
('da45c512-a565-44f0-94fb-f2a9be01c44f','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','a3610da8-8e0c-417c-8834-1223bca4fb34','3+3+1 koltuk takımı','2025-07-24 21:00:00.000',4,NULL,'2025-08-12 08:08:24.268'),
('da71f37c-3d3d-4e2d-af5d-70af9d403edc','5dbeb578-3815-46c4-8be9-34c6782e8dab','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa sehpa','2025-09-17 19:00:00.000',5,NULL,'2025-09-19 07:24:36.321'),
('da725bab-47fe-4aea-b4e3-094195e16ad2','21405ba5-5cc3-4bdb-8ec3-3246a3630f70','b78426e8-87ca-4d84-878b-11136d2e5719','PETEK KÖŞE TAKIMI ','2025-10-08 18:00:00.000',0,NULL,NULL),
('da8440da-e3c4-4852-854d-19123cbe7e56','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL,'Mobilya','2025-05-01 21:00:00.000',0,NULL,NULL),
('da854db4-c9fe-4508-a673-92723239b20f','a182b824-b752-401d-b663-5d96552a9f49','45751f9c-665a-48c9-8e4b-15fdeb993163','Koltuk 3\'lü','2024-10-21 21:11:53.000',0,NULL,NULL),
('daa88a63-2ece-4786-a082-938c1a50dfc2','ce6a533a-a695-4c7d-9d16-ee9de079d7bc','0d64216c-fe9d-486b-b722-9710eba2c609','DENİZ KOLTUK','2025-02-10 14:00:00.000',4,NULL,NULL),
('dad4faba-2e0f-4c6e-bacb-b9b8701e6bae','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506','0f300a3b-b3d6-4b60-924b-aa70cd54141e','2 pk ssh','2025-01-14 21:00:00.000',2,NULL,NULL),
('dadc5d04-be0b-4da0-980b-6007bbb7021f','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL,'Boss Koltuk 3+3+1 ve Sehpa','2024-11-20 21:00:00.000',5,NULL,NULL),
('daf32ec4-3098-4d67-9b7d-722264422db6','b413a505-b0a4-4081-803d-a0776c7e84fc',NULL,'SSH','2024-03-30 10:17:50.404',0,NULL,NULL),
('daf63ffd-3987-41ae-bffe-177ce0861f23','aee090b4-4bf2-4cde-89e9-1e2353dcb896','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-09-22 00:36:42.000',6,NULL,'2025-09-22 14:20:22.522'),
('db058b15-c1fe-42e6-9e2d-cbaf9b5c9440','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL,'Mobilya ','2024-10-16 13:05:12.145',0,NULL,NULL),
('db12873e-9297-4d2b-bd62-26a173ac80ce','d99ae93f-dd73-4f33-a6a3-1bd33e17655a','8b3fd660-7e02-4d1d-9bcd-406bdd25b872','Sandalye ','2025-08-23 21:00:00.000',9,NULL,'2025-10-17 07:23:37.683'),
('db168800-ed6d-48c9-b76a-c2af6db6c582','bca69f0f-c971-4a0c-bf97-7f3178e5ccc5','bf2f9026-0036-4efc-bfb3-7790361e64fa','Sehpa ','2025-01-09 10:39:57.214',0,NULL,NULL),
('db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba','6d8023fb-7e68-4b37-8709-816c5519380e',NULL,'KOLİLER','2024-09-27 11:39:58.665',0,NULL,NULL),
('db1e0b9a-d829-49ba-8948-a90a863b6512','f7d9721d-e27b-40dc-a48f-5d1604c92366','b94604cf-4431-4d3a-bbbe-0fab66df0701','sandalye','2025-09-24 01:53:56.583',4,NULL,'2025-10-10 10:17:27.712'),
('db31505d-890a-49a3-ab5c-a703df1962b6','091754cf-7aa6-431a-8a90-b30fd8978287','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PETRA YEMEK MASASI ','2025-04-21 10:24:58.398',0,NULL,NULL),
('db333680-8c96-42d1-8a24-6c5ab1346079','a69f955e-df2b-44dd-8811-569ba620bc40',NULL,'Mobilya ','2024-10-30 08:29:22.932',0,NULL,NULL),
('db3b2126-0e8b-4d3b-85f6-d470edff075d','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45','a59c832a-288a-45ad-9922-f8c1ebf24d41','Baza ','2025-02-26 13:17:26.436',0,NULL,NULL),
('db48d2de-9b3c-4281-8b61-7cd066669b2d','c90194bc-97cc-4374-adc9-37c98a4f48c9','5c7eb155-68f1-4155-9120-45f67cc06218','KÖŞE KOLTUK','2025-10-27 01:16:59.000',5,NULL,'2025-10-27 13:15:54.364'),
('db4c20e9-8323-46d7-816a-d3fa20324893','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL,'CAMLAR','2025-05-22 21:00:00.000',0,NULL,NULL),
('db6038f5-6951-4cc2-bf80-1b165340ace8','05940da7-019d-4e63-b256-fc9fbba594ab','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-07-27 21:00:00.000',5,NULL,'2025-07-29 07:45:18.570'),
('db6bdbaa-a89f-4ef8-8ba3-88c9315a24f0','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','sehpa','2025-08-17 03:00:19.000',3,NULL,'2025-10-22 09:00:38.305'),
('db7058ef-de6e-444b-b25a-dfa474ba7bcf','04b906a6-7837-4515-810d-2b36aefb9873',NULL,'Mobilya ','2024-10-04 07:37:13.286',0,NULL,NULL),
('dbc13403-56ba-4ed1-99a1-ef2985435028','c1e90081-d7d5-4180-8f60-a63125cea8c2','6e46207d-9078-4d5b-a14c-ca7fa469d930','SİENA 3\'LÜ(MOONA ADINA ALINCAK)','2025-02-02 21:46:21.000',2,NULL,NULL),
('dbc7afbd-247d-4124-8935-6a9a1df416de','a6b849e9-82a6-4209-bbf8-1190e6651471','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-09-04 09:44:36.000',4,NULL,'2025-09-22 09:14:48.368'),
('dbe79bd8-007b-466a-bd69-a3871043b2cb','d6968286-4388-4d14-a075-b49d0ae8ae44','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm milas beyaz masa ','2025-07-31 18:00:00.000',3,NULL,'2025-08-11 12:48:08.585'),
('dbea80d6-6010-4ee7-a80a-da4b04f677ae','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-09-24 06:24:40.290',8,NULL,'2025-10-02 09:52:49.427'),
('dc192b30-06ba-4062-a95d-bdc29fd8c784','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL,'Sehpa','2025-02-10 21:12:29.000',0,NULL,NULL),
('dc390da6-4128-4077-b3a7-07f6a89a5beb','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL,'MOBİLYA ','2024-11-12 21:00:00.000',0,NULL,NULL),
('dc3f18e7-09f7-4f48-a550-413323aa1fa7','c1cea88c-608d-4453-b63a-81ba0b909940',NULL,'Mobilya ','2024-10-09 13:24:50.550',0,NULL,NULL),
('dc4dd227-7e65-4643-a55f-0cbabe1845f4','90462b6a-6fe2-4fba-8b01-1afd6272a71f','78e2dc85-b353-4fad-afc2-22edc5ab72b7','koltuk','2025-07-02 09:00:00.000',0,NULL,NULL),
('dc55ce2f-d7c2-48b3-aff6-8da9dbf95cc6','88cc6a24-35a3-4b23-8747-59b47b080f1a','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','60x120 traverten orta sehpa ','2025-07-24 10:58:22.973',2,NULL,'2025-07-25 12:42:38.195'),
('dc798597-99e0-4d8d-9de5-8d8eb74d7e70','e7849612-fcb8-4368-bba8-194c1abdf919',NULL,'Mobilya','2024-04-07 20:38:23.905',0,NULL,NULL),
('dc8e55e7-8dd8-4562-b3d3-152cbc87bf30','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45','e121af15-bf81-4305-8267-e08950e3c8b8','Yatak','2025-01-02 12:23:23.094',0,NULL,NULL),
('dc98b767-d53d-49c4-8e00-27331e2999f7','ef714645-7f38-4a84-8d4c-124593386b53','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE','2025-01-02 08:08:25.954',6,NULL,NULL),
('dc99663a-31d5-4a1c-9141-06a0f625f39e','c885ca27-2244-4162-b7af-4fe67daf7fd3','1ffd8555-8f75-4a29-93f1-98402d43a4c6','KARİN TV ÜNİTESİ 210 CM ','2025-09-26 05:08:00.000',0,NULL,'2025-09-30 11:45:01.746'),
('dc99d36f-8c33-4c53-ae84-d121c5f57f8a','d6eb46ce-2d21-4b14-9c4e-4e57a0f8a37e','1dc7357b-468a-476c-b39d-81e187906258','masa ayağı- sandalye','2025-10-31 15:00:00.000',4,NULL,NULL),
('dca3d44c-499a-4076-b2f1-56f7b0be9260','cd4de4f7-a394-47c7-89e2-dd9e57ec790d','e46f75d9-f1dd-4753-8e6e-717c17942cfd','Meyra Koltuk','2024-12-02 11:00:00.000',2,'2024-12-19 16:12:57.290',NULL),
('dcd84eae-7e44-4bb7-8097-c9ae9e3b532c','a05e0bfa-eaae-4d7d-a151-404547093031',NULL,'TRAVERTEN MASA + SEHPA','2025-07-19 14:38:24.000',1,NULL,'2025-07-25 07:37:35.756'),
('dcd864c7-ef37-45ba-880c-976ebda30365','7e266893-f849-462e-9a81-e6336886fc16','44c404b3-a618-4af5-bdfb-ad381f049053','köşe takımı','2025-09-08 15:00:00.000',5,NULL,'2025-09-30 16:03:26.921'),
('dce6d95e-9737-4ab8-a170-277f7cbd445a','7ebece0e-bf8d-4678-bf15-17e6bed10020','e757256d-c116-45a3-853c-453866ada02e','TV ÜNİTESİ','2025-09-23 11:29:28.487',0,NULL,'2025-10-14 11:56:04.640'),
('dcfb227c-7cb0-4907-b275-857ab6f52d86','2b6577a2-c3ad-4aca-8b8b-446c848207f1','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm milas masa','2025-07-31 18:00:00.000',3,NULL,'2025-08-11 12:47:54.221'),
('dcfba104-f23e-437a-8a27-fd4802b38b82','79b8f307-f370-445c-a869-4986e76c6399','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-07-22 09:00:00.000',4,NULL,'2025-07-22 14:02:44.983'),
('dd0b9e6a-8793-43f0-a937-05a303bc8f45','69ac6a84-035b-4ab3-b3f0-63c8136753f8',NULL,'KUTU TONER','2025-10-06 21:00:00.000',0,NULL,NULL),
('dd119eb4-d1fe-4633-a5cf-5dc72cfaad2c','d5fa2f57-3177-401e-aa8a-f8944dc6a64f',NULL,'MOBİLYA','2024-08-07 14:16:21.848',0,NULL,NULL),
('dd1cd3de-f760-4608-b546-c1d5ff28b9df','a2926116-d6cb-4f23-857e-b99221b6f59e','7cb392b7-b69b-4873-a75e-6c275508e9bb','bohem masa ve sehpa','2025-08-21 23:00:00.000',6,NULL,'2025-08-28 07:01:46.394'),
('dd26fff6-657c-4c20-8268-d0a466a207b9','26321c61-8ef9-4498-b666-82a04622843a',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('dd2ab40f-13ae-47ba-b1c8-ba73ba248b05','bee81a54-df39-48a5-9fb3-63e75a6f2e1d',NULL,'180X200 YATAK','2025-10-26 21:04:58.000',0,NULL,'2025-10-22 11:25:10.053'),
('dd2cca48-6895-4e89-a0cf-e5c29b1a349a','67f5e4dc-108b-4d6d-98e1-a173056bbadd',NULL,'BAZA SETİ','2024-03-16 08:49:28.248',0,NULL,NULL),
('dd4309a7-7fa7-4e88-b0b3-60c73d890d06','d495dc82-5d1b-46f4-a06b-4a1ad44cbbc6',NULL,'köşe koltuk','2025-10-27 15:00:00.000',0,NULL,'2025-10-23 10:46:03.687'),
('dd4f52de-9725-4567-b85b-00e3f3b1a92d','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Sehpa','2025-09-16 17:14:54.000',1,NULL,'2025-10-17 07:23:37.683'),
('dd610824-86db-4c6a-b135-c31ab1618fac','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL,'MOCHA KOLTUK TAKIMI','2025-04-15 21:00:00.000',0,NULL,NULL),
('dd674d12-6366-44f2-9aab-4044248c2020','a856c3b2-bd1c-47db-b02f-9127f2bb4d67','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-17 11:13:37.000',2,NULL,'2025-10-01 15:07:58.554'),
('dd6da58d-be55-4ff4-9b53-edf440ca2084','89eb6491-3e20-44a2-80d5-2107251a822e',NULL,'NOVA İKİLİ ORTA SEHPA','2025-05-25 21:57:13.000',0,NULL,NULL),
('dd6fdf61-e650-45bb-980e-83d576bfac38','4053ad5c-7690-4d86-bb5d-264f6025895b',NULL,'Mobilya','2024-03-21 11:20:10.323',0,NULL,NULL),
('dd8fae0b-e8d9-477c-8204-5d1b7cf83f03','006b20ec-9123-4bbc-9826-67622acc03ba','bc1b9fd7-95d7-4d5b-a84e-684140acc414','Ssh masa parçaları','2025-03-24 21:00:00.000',2,NULL,NULL),
('dda0b7bc-55fb-4b7f-ae16-27ef12800819','8d2106dc-0692-4d32-a05c-11091d0b412b','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-06-13 12:00:00.000',3,NULL,NULL),
('dda90efc-8994-493f-aa04-04ea47eb90d7','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL,'Baza başlık yatak','2024-11-13 21:00:00.000',3,NULL,NULL),
('ddb86a37-09df-4311-b797-4bd39c094b3e','e784e31f-ff92-404d-ba37-0dfbff43b309',NULL,'sandalye','2025-10-31 03:01:48.000',0,NULL,'2025-10-20 11:53:09.965'),
('ddd56674-a4c4-44e3-94b8-0441ec7a9fad','f6d4c8cd-bc6e-4af1-9285-67ed28f49565','3702a172-da98-4e48-8071-547c4f3e92e8','Balat sandalye ','2025-01-24 14:18:54.253',4,NULL,NULL),
('ddd6d9e2-d73d-4211-9d8f-9563302c1f30','db3bb2fe-b7ce-413d-8d13-9d22d875adbf','d8852582-d508-498a-b753-7d20cd810d34','Köşe koltuk','2025-02-17 13:00:00.000',6,NULL,NULL),
('dde50bf6-1fed-4426-9d6e-ef17ca7f8b03','a3e67de0-2821-4964-8e1b-51116009f272',NULL,'yatak +kumsaati zigon','2025-08-25 23:17:42.394',3,NULL,'2025-09-11 12:53:45.670'),
('ddf610d0-9aea-487f-b0f3-3e66ddc80ad7','702ebb26-b834-4081-a58c-2279f0d9af03',NULL,'BAZA BAŞLIK','2024-05-04 10:10:45.508',0,NULL,NULL),
('ddfe7d66-74b7-4072-ba98-b8104a9db616','3645be91-e47a-4a21-8c81-c49771ba3639','27542b9c-f586-4152-836b-5dedeaae0be2','MERMER DESEN MASA ','2025-06-15 21:04:00.000',0,NULL,NULL),
('de1f00a6-1eab-4c60-8290-f52139448250','4197af5f-54c3-4efd-8f7b-cdb3412520ca','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-03-09 21:55:50.000',6,NULL,NULL),
('de2dad64-06a0-420f-a811-e87b3a9ed343','13c3c792-77da-4c87-b857-707f973cc267','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 Sehpa seti','2025-02-26 10:00:00.000',2,NULL,NULL),
('de366958-69a9-44da-b517-79cc4ca191e1','8277179b-dd64-4a72-b947-d8a5c906a9b0','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','MASA ÜST','2025-01-30 13:00:00.000',1,NULL,NULL),
('de3d1881-c5ca-4244-a03d-15cbe8813eef','dc416865-0c74-4fdd-89bf-5ec5f8499eb4','a2297702-45ba-4ef5-b02f-d3ac3dcc495b','140 lık baza başlık','2024-12-12 21:45:07.000',0,NULL,NULL),
('de440f55-a69c-4eb1-b8c9-629c405b795d','0e3cd4c9-294c-4ded-8194-bf22e23bc5a0','98c5854e-8359-40bf-8d64-f3fb052b029d','BAZA BASLIK YATAK ','2025-10-16 16:00:00.000',7,NULL,'2025-10-20 07:17:59.464'),
('de4ad7a3-83c4-4f92-b28e-159332b39346','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL,'100*240 MİLAS MASA','2025-01-09 12:00:00.000',4,NULL,NULL),
('de51c756-e550-4e76-bf53-8a55d85b9133','4611b81d-e164-42c5-9c5a-9ccc4855f384','940c6390-4082-4fe5-aeaa-06d180147a7b','Sandalye','2025-07-29 22:00:00.000',3,NULL,'2025-08-04 08:22:16.445'),
('de5b9e9e-def0-4a43-8da4-04266bcc83f7','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','KÖŞE KOLTUK','2025-08-20 09:00:00.000',7,NULL,'2025-08-20 12:41:49.500'),
('de610e6e-8746-48a1-bc9b-9545c82200ab','b051fe92-2caf-48d1-986e-2c884be9900c','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Eliza sandalye koyu ceviz ','2025-09-16 21:55:32.000',3,NULL,'2025-09-26 10:57:36.933'),
('de840b58-ac49-4556-890a-ac7cc6e88b28','d1449931-2ff8-4afa-9b0e-bdc3343cb106','0ad4214d-7661-4597-8ec6-579510e6a02f','Sandalye','2025-08-31 13:30:05.000',0,NULL,'2025-09-06 09:58:37.221'),
('de8a2a10-9ee2-444a-a28e-efaf3ff1c953','2b07945c-640f-49e9-a7a3-fdcc706090f9','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-10-09 03:00:00.000',4,NULL,'2025-10-10 07:26:20.084'),
('de8ca6df-7037-455d-85c0-daeb5205da31','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL,'LENA TV ALT ','2025-09-30 12:13:54.000',0,NULL,NULL),
('de96d6e9-4c52-4152-a1e9-a093b5886b34','45898089-0430-47fd-85a9-8108fa8d9a5e','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT SANDALYE SİYAH','2025-03-24 08:03:39.585',8,NULL,NULL),
('dea8283a-585b-4d51-ae9e-b8f48f67d9a4','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL,'MOBİLYA','2024-06-08 07:03:44.677',0,NULL,NULL),
('debb0974-fef6-4719-b38d-dc84a3d5b117','633d745b-6334-4fbc-906f-28ed4e0c5168','0f300a3b-b3d6-4b60-924b-aa70cd54141e','yemek odası+köşe ','2024-12-12 21:00:00.000',11,NULL,NULL),
('dec1c588-b8ed-4782-988d-22421211d62a','6ab64262-e10e-4c69-a128-c1c8101ef7ed','a3610da8-8e0c-417c-8834-1223bca4fb34','Kanepe ayak kutusu ','2025-07-14 16:05:46.086',1,NULL,'2025-07-17 09:43:54.470'),
('dec622de-dd52-4ef6-9c0e-3952b26d5137','24b32008-080d-4cf2-b2e3-73b35877738d',NULL,'Masa ','2025-02-26 13:18:42.170',0,NULL,NULL),
('ded23734-c508-4194-a2ec-4f8b8510665c','b87e1d8e-8fc1-4a22-a789-515797619936','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-23 18:37:56.702',2,NULL,'2025-09-30 07:21:20.565'),
('dee29ffa-4412-42a5-8890-fec581f571eb','d2d77708-f738-416d-a601-6a86aa678898','dbe00779-7476-4da8-b164-e8f1ae296549','sehpa','2025-02-17 10:30:41.565',1,NULL,NULL),
('dee59efc-ebcd-4207-82a1-2a09c5707ee3','52951d3a-938c-4ea9-baf5-8e4605f5a78f','4a0bcddc-f75a-4ef1-bcb8-98d9697834f0','MASA','2025-10-28 01:24:08.000',3,NULL,'2025-10-23 07:34:11.130'),
('df06d54c-c84d-4501-87a4-6fd5f96e68d6','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL,'70*110 CM SEHPA','2025-01-09 13:13:02.063',2,NULL,NULL),
('df1a52f5-28c8-4b9e-8632-783b5739e63e','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL,'KOLİ','2025-08-10 21:00:00.000',162,NULL,'2025-08-11 08:51:43.516'),
('df1b54b0-5079-4ed1-ab6e-71b44edd62c9','bbe6dafe-0c06-4dae-86a5-c71abc373150','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa','2025-10-17 14:00:00.000',3,NULL,'2025-10-23 12:05:24.073'),
('df315e40-f7b8-4524-810a-6c390c475673','203b6560-2fe1-4637-804e-b6b6df86b59f',NULL,'3-3-1-1','2024-03-23 06:47:07.050',0,NULL,NULL),
('df3b19de-7db5-480e-801a-a689b8d2eda0','bf69a70a-73ab-451f-bc43-7e834619f2e6','8c6ecba8-6768-4127-80ba-c9c71d442689','FRİDA KÖŞE KOLTUK ','2025-10-12 03:00:00.000',0,NULL,'2025-10-24 16:10:28.556'),
('df476668-960e-4ca2-9fb7-82b6c48ec5bd','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-08-10 21:00:00.000',0,'2025-08-14 07:49:13.627','2025-08-14 07:49:23.151'),
('df4ae67d-ca3e-4cdd-b49d-c5f3efda583f','fd795bb0-de9c-492b-b14b-d82674e0098e','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Sehpa','2025-06-23 14:48:46.524',0,'2025-08-24 10:52:11.216',NULL),
('df67e72f-ee1a-43ca-8c93-6ee51977a7ea','f64732c3-76ae-4710-b1ac-fb3732ed150b','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye','2024-12-28 20:05:49.058',4,NULL,NULL),
('df6feab3-1b39-46d1-811e-3dcd375e9ebd','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL,'KOLTUK ','2025-02-23 21:00:00.000',0,NULL,NULL),
('df70c0a9-acf4-4b2e-bfa3-1f813e25503d','c77c75ce-e3d2-47ae-8608-121fa3b3621d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ceviz','2025-08-23 01:19:14.000',8,NULL,'2025-08-26 12:42:14.594'),
('df713518-2930-40b6-8d4d-ddc4bcddbec8','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL,'Mobilya','2024-08-30 08:56:34.687',0,NULL,NULL),
('df8f2fad-cf54-4954-a619-fe7d05b72e27','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'GRANDBEDS DELUXE 120*200 BAZA','2025-08-26 02:02:54.000',3,NULL,'2025-09-08 12:00:07.860'),
('df91a359-89b3-4c85-bfaf-b73d9805732b','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL,'MOBİLYA','2024-09-03 14:57:12.981',0,NULL,NULL),
('df96f137-ec2e-4a27-b5f9-d4177b6ebb5f','23362a6b-e084-465f-a474-3935662b512b',NULL,'sineklik ','2025-02-06 21:00:00.000',0,NULL,NULL),
('dfd7a962-bf2a-4456-aeb6-fbc5711ef1a5','af66e0b1-a72e-4c45-9e91-18e38e131f34','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-07-20 21:00:00.000',3,'2025-08-24 10:52:46.569','2025-07-22 14:07:43.657'),
('dfeaff4d-8e4b-4c6a-9e10-cafa0da2b0e0','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-18 05:54:00.401',1,NULL,'2025-09-18 14:07:14.158'),
('e000a722-b26c-4d4d-be3b-21152639dfc1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL,'Mobilya','2025-09-23 18:00:00.000',7,NULL,'2025-09-24 10:38:12.733'),
('e0251f39-fdfb-4a10-8cd6-82c7fe45e07f','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL,'MOZART 3-3-1','2025-06-18 21:00:00.000',4,NULL,NULL),
('e027c393-a1fe-4d6f-b265-19223be40e91','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL,'TRAVERTEN SEHPA','2024-12-27 13:38:48.042',2,NULL,NULL),
('e0431245-c2c2-477c-a418-a601b6fbebb8','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'BEYLER 1IPA-100-G PİYANO AYNA GÜMÜŞ','2025-08-26 02:01:38.000',1,NULL,'2025-09-08 12:00:07.860'),
('e0478821-943b-4eac-98b7-c417fdf27e29','994456e0-b759-4b05-827f-74c05ad02194','679716f3-7799-4e9d-a984-9fe004b5689e','Seramik masa ve sehpa','2025-09-21 17:39:53.653',4,NULL,'2025-10-06 09:23:40.745'),
('e05413f2-5977-46d0-9d34-bb6b98ce2e4f','a2010327-e9ab-4331-9de9-8dfb1da2f54d','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + puf','2025-10-20 12:00:00.000',3,NULL,'2025-10-22 09:01:04.700'),
('e0543c7a-5972-4240-aa38-f23558126c19','af1902d4-2938-44ae-80c0-795a83518ffd',NULL,'140X200 KING PLATİN BAZA SET ','2025-08-21 18:00:00.000',0,NULL,'2025-08-22 09:31:50.537'),
('e055b714-743d-4f7b-8aab-ecb792c3533d','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL,'KOLTUK TAKIMI','2025-01-20 21:08:56.000',4,NULL,NULL),
('e05e901e-453f-417c-bd4c-e857b8bd2fdc','fdbd5255-796f-4278-a5b0-0661f2660929',NULL,'Mobilya ','2024-09-11 13:13:01.723',0,NULL,NULL),
('e08d6319-1822-4277-942d-9932d60b996e','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL,'MOBİLYA','2024-07-30 14:37:55.050',0,NULL,NULL),
('e08db3bc-8461-43b9-8cdb-1d1e291a64ec','2a5abbbf-2ecd-4ad5-887d-fd60d4f4f436','66fe0e79-2382-4817-9bdf-4379c5fcde00','Köşe takımı','2025-10-27 12:00:00.000',8,NULL,NULL),
('e0996bbd-f025-42a8-985d-bdce3ee5ba6f','5be6a019-e31c-4bdd-ac62-bd037d756e64','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3+3+1 KOLTUK TAKIMI','2025-02-24 08:43:34.448',1,NULL,NULL),
('e09a3626-bc71-4669-9faf-3f66c10fab18','9a8fe83d-8c43-4179-8ed4-895265a42b51','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK ','2025-10-13 03:00:00.000',5,NULL,'2025-10-14 08:37:59.654'),
('e0a099ee-13a7-4e80-b77d-55f860dc2f1d','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL,'BERJER','2025-02-06 21:00:00.000',0,NULL,NULL),
('e0c27b90-eb33-4e8a-8ef3-679c60cf0ffa','249874ad-8b13-436d-be45-fc0a2c651a43',NULL,'orta sehpa ikili','2025-03-12 21:00:00.000',2,NULL,NULL),
('e0c79669-21b8-48a9-8bfe-2f9b19cb872b','526de5bb-5478-4ac9-aaab-26c962aa787b','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-09-23 21:25:02.284',3,NULL,'2025-10-27 13:41:33.392'),
('e0cc17a2-4392-42a5-a637-de0f1c60c459','7ca0c26d-8bbc-4deb-a210-90620aca69ad','53547128-7fcb-4279-a2ae-cd050bf436d4','Karyola + yatak','2025-08-11 12:45:09.000',3,NULL,'2025-08-11 13:09:15.979'),
('e0dbbf5d-76ca-46d1-aada-413e8b306150','13870329-2aa7-4b40-89d5-b947358fe886','b4b527e9-c851-458f-9238-9049a66f2c90','atilla polat puf ve 2 adet amortisör','2025-09-25 01:19:32.593',0,NULL,'2025-09-25 15:32:44.976'),
('e0eed069-9c6f-4afa-b129-e61b1b32cce0','0884b3d4-5cc0-44eb-9508-2f4bc25839ac','bc1b9fd7-95d7-4d5b-a84e-684140acc414','orta sehpa ','2025-02-17 21:07:58.000',2,NULL,NULL),
('e110e2a5-8fc4-41d8-85e2-8eeeedf6f348','2354f542-69c3-4efa-816d-63f11bc99126','26216926-c73f-46d4-9ba1-0afb20844194','SSH MODÜL','2025-08-13 08:00:00.000',2,NULL,'2025-08-19 13:39:14.561'),
('e1170d04-f8eb-407c-ad59-267ac93c8240','32676e01-684e-4e88-b01e-02f858a6cf93','44fae8f2-0263-4e71-93cc-b8909d92767e','köşe takımı','2025-07-15 21:00:00.000',3,NULL,'2025-07-17 12:10:15.659'),
('e11d7cdf-9eae-4899-adac-07c70c9e6aaa','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL,'kendi ürünleri halı vs','2025-08-15 02:15:04.000',0,NULL,'2025-08-25 07:03:53.541'),
('e14c3817-4a53-4e54-8afc-0d865c5d7417','ef1198dc-03c9-4c56-80d9-0d4fe298cc66','0f300a3b-b3d6-4b60-924b-aa70cd54141e','SSH CAM','2024-11-26 21:00:00.000',2,NULL,NULL),
('e15eeaa1-59a2-4349-99c9-58ebc248336f','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d','2fdf870f-fec1-4d26-8970-49a9139ddf32','Sandalye oturumu','2025-08-01 21:00:00.000',6,NULL,'2025-08-14 07:52:31.845'),
('e1601d35-cc40-41a5-8e8e-8005a1281654','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3','83e4a4e2-73d7-4372-a216-5235b6860755','genç odası','2024-12-12 11:01:38.940',0,NULL,NULL),
('e163d910-3bea-4675-a310-ead7083f02b8','e3943ece-5f39-454b-89e6-213b14b5658f',NULL,'Mobilya ','2024-10-04 12:30:34.499',0,NULL,NULL),
('e1668dad-8f77-4f4b-ac6a-4169c3dcef69','826475dc-b2f5-46e9-8c2c-4ddeb82b942b','44c404b3-a618-4af5-bdfb-ad381f049053','3+3+1+1 koltuk takımı','2025-08-12 08:52:15.483',0,'2025-08-14 08:29:26.548','2025-08-14 08:28:57.686'),
('e1757ecd-2d0b-4547-ad0b-bd5e6f7094e2','a34f5acd-e7a0-4960-a2f6-754b4e35e40a','0c9eabf1-c070-40e4-9355-fcedfeb0dafc','VODA SANDALYE ','2025-08-05 21:05:40.310',0,NULL,'2025-09-08 07:50:27.560'),
('e178636b-b1d9-4260-aa1b-879946fa7f5d','4428b444-78f4-43f3-8d88-220442b30896','8c6ecba8-6768-4127-80ba-c9c71d442689','ASHLEY YATAK OD. (KOMODİNSİZ) ','2025-08-31 10:52:12.000',0,NULL,'2025-09-11 12:53:37.864'),
('e187dd68-c11f-4f0e-86e6-8f4e32053270','f365b152-062c-430e-aaeb-30628ef9b06d',NULL,'VİRAL KARYOLA + 2 KOMODİN','2025-03-25 11:00:00.000',0,NULL,NULL),
('e18dd217-d468-4cce-bb3c-ef35afcb8de1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL,'traverten masa','2025-07-18 20:00:00.000',1,NULL,'2025-07-24 08:03:30.566'),
('e19ff5c0-c85c-4ece-a9d0-cb1eeeb4c292','0d5fa9af-726d-48a9-a5d1-c407a279f76f','26360aba-80e2-46ad-b172-f1052f9526f6','Köşe koltuk','2025-10-09 07:42:51.000',0,NULL,'2025-10-09 11:31:39.410'),
('e1a67057-fc22-48a3-bb93-d93ddb94cf07','00f4949d-f6aa-4775-913c-9c6fc75113bf','f4b725ec-de83-43a0-8adf-cd7f36f59b78','TOFİ BERJER ','2025-09-24 05:36:32.881',0,NULL,'2025-09-29 09:40:21.723'),
('e1b3ad5f-d394-4b3f-969d-622465857d95','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN GİZE ÇALIŞMA MASASI','2025-08-28 02:05:55.000',1,NULL,'2025-09-08 12:00:07.860'),
('e1ca0884-0a56-41e9-892e-c3a62280a2ba','26dc53f3-1a21-44ea-a0d6-f51c8996bf85','e847552a-e65b-4888-afca-9e1df09cf7b3','Natura sandalye ','2025-04-25 09:17:55.293',3,NULL,NULL),
('e1e33996-1f56-4589-8cb3-6163af9d398d','82859b5d-2c9e-4a29-be96-14240c8a1e53','a1fa7c3d-9a83-4a70-b7d7-9ddd9952898c','KÖŞE KOLTUK','2025-06-16 08:27:41.459',3,NULL,NULL),
('e1ea146e-dd39-4b5a-b0e2-af130a4ab837','c90194bc-97cc-4374-adc9-37c98a4f48c9','b94604cf-4431-4d3a-bbbe-0fab66df0701','sandalye','2025-10-22 12:00:00.000',3,NULL,'2025-10-27 13:15:54.364'),
('e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL,'Mobilya ','2024-11-05 21:00:00.000',0,NULL,NULL),
('e21ff554-3cc5-400e-a57d-15fa271de157','263a2887-35f1-4299-a777-21a594a634b6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Nevada kayın Konsol 200 cm','2025-07-16 08:38:38.000',2,NULL,'2025-07-16 08:00:56.477'),
('e2277705-d959-463d-9858-1ca3b6dfc8fd','78463605-c329-4929-b567-24a3f88f4b7d',NULL,'masa','2025-05-28 21:25:18.000',3,NULL,NULL),
('e2279222-d071-4645-9dbf-0666c6bded58','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL,'90x190 nevada ceviz  masa','2025-01-15 21:00:00.000',3,NULL,NULL),
('e23e4add-7d4c-47c2-a3ba-56b4ac718b92','4c0fdc4e-fba8-41b2-955c-295b479ea428',NULL,'bas','2025-09-17 12:51:58.374',0,NULL,NULL),
('e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81','cb8ab28e-84c0-4246-b10d-ada59c224895','27542b9c-f586-4152-836b-5dedeaae0be2','YEMEK MASASI  + SEHPA ','2025-05-12 08:31:01.472',0,NULL,NULL),
('e26651ab-2b70-4ad1-bfc1-a9fefd99fad9','a4c0af65-f3e2-484c-99b8-617b31d3f22d','e847552a-e65b-4888-afca-9e1df09cf7b3','Balat sandalye ','2025-04-24 21:38:08.000',6,NULL,NULL),
('e266a085-e2d7-4f94-9512-fea47de5ac85','2fb92d16-b307-4896-974c-b96cb9542bc6','48eb2bc7-40b5-4ca1-b858-ef3228babff4','SANDALYE','2025-09-24 16:15:43.000',3,NULL,'2025-10-02 12:14:38.963'),
('e27d44d8-bed3-424f-8cb6-c8ea504df175','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL,'SANDALYE','2025-08-21 18:00:00.000',0,NULL,NULL),
('e29bbf5d-be6e-45b6-b98a-af3ed7d8be19','3f18122e-004e-4381-bc37-c92c815065a9',NULL,'Termin','2025-09-05 03:52:33.000',0,NULL,'2025-08-27 08:30:21.771'),
('e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL,'Mobilya','2024-05-08 18:26:08.683',0,NULL,NULL),
('e2c96f59-d7d0-4a7e-957d-cc8dd004bf39','c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA','2025-10-17 06:37:30.000',2,NULL,'2025-10-23 12:07:08.030'),
('e2d5a5ed-1130-4ac5-91c5-60afa0aa0b15','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-10-23 12:00:00.000',3,NULL,'2025-10-22 09:00:38.305'),
('e2de9cd4-e8e6-48b8-aa91-52920db0471a','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL,'Mobilya ','2024-09-24 10:48:32.388',0,NULL,NULL),
('e2e1bcbe-65c1-4fa4-a6a0-8770dcb1cb67','99c9a988-01a1-474c-b7f5-70e4528c16c4','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-07-16 14:00:00.000',2,NULL,'2025-07-16 15:31:11.779'),
('e2e834cd-564b-4ece-a60f-7684b4514f3f','fc1e36c3-9e4c-4d34-8e54-55bae93e96a9','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','2 ADET MASA','2025-10-28 13:35:13.000',8,NULL,NULL),
('e2f7afec-2053-4563-b82e-d7330ed835e8','e516d6c1-f3be-4e04-acd3-657ef1da8682','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe takımı','2025-08-11 10:00:00.000',0,NULL,'2025-08-12 14:36:47.496'),
('e31f714c-14b3-46df-a325-7cbfccab37bf','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL,'Mobilya ','2024-10-21 11:42:44.061',0,NULL,NULL),
('e3274e26-e81b-4a5a-bc90-d5199ceb2caa','b465c878-5c55-4a06-a58b-bd7c57228652',NULL,'DENİZ KOLTUK TAKIMI','2025-10-16 15:00:00.000',0,NULL,'2025-10-20 08:09:24.966'),
('e35b3fa1-a894-4ca6-acd1-0e3e4568c63d','5d656399-d4c2-49fa-a9e7-be2b15a2116d','9ab60f04-e386-4003-8dd0-9e8a49f073b0','Sehpa','2025-09-23 11:35:44.000',0,NULL,'2025-09-24 09:01:11.852'),
('e3606b49-005c-4991-8685-15a34953c46f','9c3d7567-24b3-4c51-9c80-4065af9769a9','9a44c828-0bec-4c45-9caa-55ebd4a724f6',' ruby köşe koltuk  200*300cm  ölçülerinde  ve berjer','2025-08-05 11:41:12.102',0,NULL,'2025-08-11 12:37:44.657'),
('e3994b63-49b6-43c0-a134-5e71d143bab7','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE VE KANEPE MALZEME KUTUSU','2025-08-12 11:43:56.353',1,NULL,'2025-09-22 15:24:34.176'),
('e39aa7eb-4894-4857-a5ab-216ca03e5423','10862bf3-01dd-40a9-beaa-6ba3d5075238','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','200 cm traverten tv ünitesi ','2025-04-24 21:50:00.000',2,NULL,NULL),
('e3ad38ad-67b7-48ef-acdc-c2e13831e843','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL,'KOLTUK-SANDALYE','2024-03-30 09:57:33.165',0,NULL,NULL),
('e3afa191-d929-4bdd-a3ad-86c1540b7c54','7ed51e97-f73a-473a-bca0-1959c9e5c202',NULL,'DALLAS KARYOLA  180*200 CM ÖLÇÜLERİNDE','2025-10-29 23:54:00.000',0,NULL,'2025-10-23 08:23:03.814'),
('e3b7941f-082c-4f6d-a58d-adc627a25a42','bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51','37486a5b-3dc6-4298-9bfd-3291b8f42d46','köşe koltuk ','2024-11-13 21:00:00.000',3,NULL,NULL),
('e3bf303e-a53b-492e-b877-e5f3df36d63c','833e1960-d162-4228-ac7a-54bd28d48049','c3f368ed-2b70-41bf-83ab-e823447db252','Sandalye ','2024-11-06 19:23:27.072',3,NULL,NULL),
('e3d66a78-847e-4f74-898a-eb776d784d39','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL,'Pars sofa yazılı Kumaş size bırakıldı','2025-09-30 02:34:27.314',0,NULL,'2025-10-03 13:01:22.097'),
('e3de85d3-eec0-4038-99df-48935e9c3c8e','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL,'Mobilya ','2024-10-07 11:44:12.440',0,NULL,NULL),
('e3fc96bb-68d9-4c85-8fd8-f3e18829deb0','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL,'masa ','2025-08-01 08:40:42.000',2,NULL,'2025-08-11 13:31:31.230'),
('e401ce6d-1f41-4077-903f-4deb32a0813e','792dc306-a786-4b24-b735-ba05b7a72e0d','d1ebab23-e578-4ff8-948b-e890ef3a7374','3+3+1+1 KOLTUK ','2024-11-14 21:43:23.000',4,NULL,NULL),
('e4174e33-46ef-4741-a875-241d3d31e381','3b7689bf-7ebf-44e3-8355-6807100fe5de','b94604cf-4431-4d3a-bbbe-0fab66df0701','SANDALYE','2025-08-14 10:37:19.770',4,NULL,'2025-08-21 13:44:37.502'),
('e41a0db0-621b-48e7-b4d7-e8ba04bfc986','795a7b9c-3044-492f-912f-d05f4ba21df6',NULL,'YATAK','2025-02-28 15:47:31.246',1,NULL,NULL),
('e41c2f64-f695-4f9f-a2c8-28d17571c06b','361c79f6-d2f7-4391-a551-aeba4ac518de','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','SANDALYE','2025-07-25 06:00:00.000',2,NULL,'2025-07-28 07:48:39.536'),
('e46d4680-4bdc-4c9d-ad0d-2ba7ee909c19','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL,'KOLTUK','2025-02-22 21:00:00.000',0,NULL,NULL),
('e4ac663b-0089-49de-bec8-f0e4c8fde7a4','4c9e628d-c4ff-4606-88fd-789fb9c3affc','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-09-23 08:00:00.000',3,'2025-09-29 14:49:04.760','2025-09-24 14:32:47.282'),
('e4adc812-005f-4266-b04a-bf35603b42f7','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL,'TONER','2025-06-24 21:00:00.000',0,NULL,NULL),
('e4b0c3bf-b6ca-4dbd-b07b-7b76a9789f43','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-06-24 21:24:58.000',1,NULL,NULL),
('e4b1fe83-46ab-47f4-be8d-e8b68b8d576e','a856c3b2-bd1c-47db-b02f-9127f2bb4d67','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-09-17 11:13:21.000',3,NULL,'2025-10-01 15:07:58.554'),
('e4b70282-c781-4544-9aea-b8f1b71be956','5f1384e7-3101-476b-be1f-bb10a9abe0b3','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye galaxy krem ','2025-10-22 23:01:05.000',6,NULL,'2025-10-24 08:11:50.392'),
('e4b9eaac-f42c-4f15-afb4-d739f5a6a7a7','0b9e594a-9050-45a0-a4fd-c58ac204bb9d','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-12 11:44:23.316',3,NULL,'2025-09-22 15:24:34.176'),
('e4bcf108-420b-4086-8851-146bc29ae338','9c818465-8168-4f07-aaba-0d59b1260716',NULL,'MASA','2025-02-13 21:00:00.000',3,'2025-02-19 09:58:47.251',NULL),
('e4dc3d63-61cc-43d1-a994-57b58fd78884','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL,'sandalye','2025-05-20 07:01:00.000',6,NULL,NULL),
('e4e5c9d4-f930-4232-bacb-b15fb27b6642','6ee1e536-13dc-4a76-a70e-ab75c46f193b','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','konsol','2025-10-31 19:39:29.000',0,NULL,'2025-09-03 08:11:36.797'),
('e4ea4323-3b5e-49e3-9d61-fbb71b718557','1ec0ce5d-771e-4436-84c6-caea3a7da2de','da95f6ab-9177-49c8-b729-1fcee7ea77cb','sehpa ayağı','2025-03-23 21:00:00.000',3,NULL,NULL),
('e4fd1b67-c7cb-446d-8aec-24a4ed1ff2b3','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL,'BAZA PARÇALARI','2025-05-07 21:00:00.000',0,NULL,NULL),
('e4ff4eb7-5a34-4463-8d23-5359e7834ea4','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','61e91ad4-2b87-40b0-b5f5-3fddc4c21b63','DOLAP','2025-10-28 14:00:54.000',15,NULL,'2025-10-27 13:39:04.728'),
('e51262e7-d967-4d4c-89ce-5959d794fa71','d2d77708-f738-416d-a601-6a86aa678898','da95f6ab-9177-49c8-b729-1fcee7ea77cb','sandalye ve masa ayağı','2025-02-17 10:31:16.732',5,NULL,NULL),
('e5137001-c514-4561-be61-64e08396d4dd','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'EWODA LENS KOMODİN','2025-02-18 21:00:00.000',2,NULL,NULL),
('e514b349-2bbc-4311-94ea-10df3f123320','e3176b45-a9ae-470a-9151-1ab0181ca82c','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-03-07 21:00:00.000',2,NULL,NULL),
('e5351842-f251-412a-b144-4f748b1a9359','f75aea68-ca38-4530-9ad3-ae32f05071ef','aad315d0-10a7-4b01-bb33-59684e6f380f','köşe','2025-10-07 06:00:00.000',4,NULL,'2025-10-20 11:55:28.451'),
('e54055a2-3c9c-4738-a808-7a4a31877ef1','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL,'Mobilya ','2024-10-14 13:32:35.711',0,NULL,NULL),
('e54150ef-c37e-434a-b822-2ec057a11543','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e','26126773-c58c-4826-9a54-b06d334d664a','BONNY KÖŞE KOLTUK ','2025-12-14 19:55:40.000',0,NULL,'2025-10-09 10:46:38.669'),
('e56002ca-42e5-4146-a60a-bac313c2c278','5638b80a-4caa-4fda-9164-868d6f925066','b044c797-8c15-4ef0-b74b-c71ffa32d77d','BOHEM DOLAP KAPAKLARI SSH ','2025-08-22 06:00:00.000',0,NULL,'2025-09-03 09:55:44.971'),
('e5744a8f-a411-482b-988b-77b918d76707','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'YEMEK MASASI','2025-10-10 10:48:51.215',0,NULL,NULL),
('e5840bf2-5934-4da2-936a-d53ee5123083','01c7f991-854b-4e63-a448-14857c24f6f1',NULL,'RAMS YEMEK ODASI','2025-03-04 12:19:06.977',0,NULL,NULL),
('e58965e8-e21e-47e6-9515-daba1a7d67d7','56c417cf-c265-4351-92f6-09fa93a1f112','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-10-08 23:56:11.000',1,NULL,'2025-10-10 07:26:49.642'),
('e5ac949a-a99b-4b9f-9a4f-4f727fccb27a','1be311ce-e06b-49b5-89b4-ca8a3ecea45f','52a4ba6b-a138-44a6-a361-b229db2520b6','İCON DOLAP / KARYOLA / 2 KOMODİN','2025-09-18 03:14:18.000',0,NULL,'2025-09-22 11:30:17.199'),
('e5ba1e90-2454-46f7-911f-600c755c7d88','58c71bd8-91b7-498b-b4e1-100313e74a0d',NULL,'KÖŞE KOLTUK','2025-09-12 18:00:00.000',3,NULL,NULL),
('e5c9836a-2651-42c7-a4c9-79cc66a12250','95a80c6f-f63c-41d5-917a-d2547b834cdd','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-06-25 13:05:46.732',2,NULL,'2025-07-16 12:52:53.211'),
('e5d51f05-c16e-4b7a-89e1-c0a1d7b98700','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL,'Mobilya','2024-07-24 09:59:33.712',0,NULL,NULL),
('e5e0de6c-9ea8-40df-aea8-52579953728c','791e33b7-8896-46f8-95f8-717ff7671574',NULL,'SERAMİK','2024-10-23 08:58:54.444',0,NULL,NULL),
('e5ec1382-ead6-4ece-a830-c08623df48ce','bf1f4b78-8b96-4650-9e12-82af1edcf06d','1aa8e5b3-018e-4ba4-a73a-b49112e9aedc','karyola','2025-09-30 00:47:49.000',5,NULL,'2025-10-02 07:08:52.127'),
('e6152419-c566-437d-9332-a9c204bd2574','46342cb8-9154-4a08-82ea-f958497b32c2','4250fc84-7698-46cc-a861-1e041d4225c2','orta sehpa','2025-08-20 07:19:43.000',0,NULL,'2025-09-15 13:13:23.687'),
('e61598fe-7aa1-415b-a90b-24911081c3c7','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL,'yatak ','2024-12-28 20:01:21.742',0,NULL,NULL),
('e619eb30-ffe1-4f0f-8b5e-957c09a8c7f1','a916a88f-8a03-4757-aca9-0c0d2c64a51b','fe0a9e17-e52a-465c-af84-8dd1932db99a','Sandalye ssh','2025-10-21 15:00:00.000',0,NULL,'2025-10-23 12:56:49.560'),
('e622181e-7708-44a9-8b12-3952b738674c','a97d7c55-7024-4e97-872e-5931f2242e1e',NULL,'YATAK TAKIMI','2024-03-12 08:30:08.248',0,NULL,NULL),
('e6377146-fb65-4f17-bc88-b4fb6a8017d6','9a74f51a-7e75-4db9-acdc-874ddf9e54c5','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-09 21:00:00.000',2,NULL,NULL),
('e63dc043-cf3b-4a9e-a753-ddddeb890713','424fa171-c6b9-4f3b-9ce6-69d66ca733d1','98c5854e-8359-40bf-8d64-f3fb052b029d','KOLTUK','2025-11-02 23:00:00.000',5,NULL,NULL),
('e651dfd2-8ff7-4e44-beb8-c9d204f8bcaf','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5','7b2afa47-d4af-48bd-b374-d3b6fd445e25','sandalye','2025-09-23 23:55:02.616',2,NULL,'2025-10-02 14:15:55.240'),
('e65249b7-09e7-4653-bd04-1233b551b8c8','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('e654d04a-78f6-4d76-ae95-c3bef1625ad8','56934bb2-8807-472a-9265-23392c22511f',NULL,'SSH','2024-11-07 21:00:00.000',0,NULL,NULL),
('e6705ae4-c86e-41f9-94cd-841708902923','1965b9c6-c511-459f-8f4e-dddb4f23f943','4ccea6fc-d526-479a-9e27-42643a5f294f','baza','2025-09-17 16:47:47.000',0,NULL,'2025-09-17 13:26:28.634'),
('e67674ec-4f16-41f6-832d-4bdbc7afcc39','f8fc3b49-9b9c-4432-80be-0d9ce15dac6e',NULL,'MOBİLYA','2024-09-27 12:43:19.029',0,NULL,NULL),
('e67a7dee-52ea-4fa1-b8b6-ffe08ce0750f','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','SANDALYE','2025-06-16 08:36:48.963',0,NULL,NULL),
('e67b1845-0be2-4837-a37f-becbd1706d34','4776d10a-2cab-47b6-b212-60c0ab466107','a64d9016-ffd4-4952-b547-d9177972ba50','koltuk','2025-04-17 13:00:00.000',3,NULL,NULL),
('e67ec257-3ad4-441f-9d70-6ad4dffbd30d','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL,'MOBİLYA ','2024-11-20 21:00:00.000',0,NULL,NULL),
('e685dec0-77f5-4777-a591-8b659322473d','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL,'SSH','2024-10-23 14:05:44.878',0,NULL,NULL),
('e6926bc5-329d-4d61-83dd-48f9c965a5e5','b44944f3-7dd8-418b-84ab-1045b4554936',NULL,'Sehpa','2024-11-07 13:54:12.069',1,NULL,NULL),
('e693d720-cbad-4070-bee6-aee0a70d5855','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL,'SSH','2024-04-23 10:14:13.756',0,NULL,NULL),
('e6b15fcf-d8d2-44ee-b679-b6020a3b2f11','d1cfa6cc-2247-4475-be75-54d2bdd21d0c','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-21 15:00:00.000',0,NULL,'2025-08-25 10:42:13.785'),
('e6b2195b-f5ef-42c2-8ba4-0de51fa35962','670e78fe-1680-439d-9f10-3a16b0fdf541','85f1b4dd-1d0d-4bd9-be91-ea7a8c29083a','deniz','2025-01-03 13:00:00.000',3,'2025-01-21 19:54:16.104',NULL),
('e6b643b2-ddca-48ec-b553-690e29e71879','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL,'Mobilya ','2024-09-16 07:07:20.775',0,NULL,NULL),
('e6b76b99-49cf-45cf-8b07-4059aa89b6fd','c454e08f-938d-43b3-ab45-998625e47a0f','8606d226-cc7c-4998-946f-cf7c29587a15','yemek masası','2025-06-01 21:00:00.000',0,NULL,NULL),
('e6bd1de7-4fa9-4266-9d39-44742f59713a','e696a6b1-2d51-48d4-90a7-0be073bf8666','0f300a3b-b3d6-4b60-924b-aa70cd54141e','baza seti','2025-03-30 21:00:00.000',4,NULL,NULL),
('e6bddda4-b1df-4be7-bbd5-63cc4b197736','b2b859ce-5c1c-47e6-b995-d5f7cd993878',NULL,'Mobilya','2024-04-24 07:56:03.216',0,NULL,NULL),
('e6cd7c35-daff-4ce2-a38e-7b089abac876','1e9ad390-bf85-414e-98b1-b7175b25c837','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA TAKIMI','2025-08-11 09:14:32.561',3,NULL,'2025-08-18 14:53:28.723'),
('e6d585c4-5882-4c57-becf-3e10261357b1','6dce8b90-0bb7-4578-ad31-082486aad8f2','e1e7bcb0-d9ed-4239-be24-06dc156f5ea0','ŞAHİNLER KRİSTAL ŞİFONYER AYNALI','2025-08-28 02:12:16.000',1,NULL,'2025-09-08 12:00:07.860'),
('e6dbec74-0616-4752-8816-29db541e12d1','a5641d1e-87fc-41c1-a35d-67b9939f56aa','a64d9016-ffd4-4952-b547-d9177972ba50','köşe koltuk','2025-03-20 13:10:56.981',4,NULL,NULL),
('e6eccb7a-4478-421c-8b7d-80495f16c580','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL,'ssh','2025-08-26 18:00:00.000',0,NULL,NULL),
('e6f73d54-f93a-41d1-bbef-8930d53eb399','32ce6385-317d-48fc-9fc4-c553326c562b','0f300a3b-b3d6-4b60-924b-aa70cd54141e','KÖŞE VE 3 KUTU SANDALYE ','2024-11-18 21:00:00.000',7,NULL,NULL),
('e706dede-b606-4bf8-9ec5-e68410b7eb1d','bba121d9-edb3-4b4b-9645-cb61aea83210',NULL,'FEYZA BAZA SETİ 90LIK 2 TAKIM','2025-01-29 08:08:16.635',0,NULL,NULL),
('e7155058-aeb3-41e3-8a79-a84c6f8d6a0f','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3','059d89a4-8ba4-4e59-8631-0e54bfe60c77','Seramik Masa+6 Sandalye','2025-08-17 21:00:00.000',8,'2025-08-27 20:05:14.347','2025-08-19 11:16:31.287'),
('e72937d6-5274-40bb-a570-ab73ccdc0bff','2bfb4ebc-a071-48f5-9c44-727046a13ab1','b94a4297-e5b1-4dcc-8d4a-5e4e1bbed84c','1 ADET MASA ','2025-09-15 21:43:23.364',2,'2025-10-06 11:36:29.331','2025-09-17 07:28:57.521'),
('e75297e5-0267-402b-895f-18aecdbdb5a2','af651e1f-8b6a-416b-b346-d687c280a32b',NULL,'SSH','2025-10-13 21:00:00.000',0,NULL,NULL),
('e7538f04-f912-47b8-ab97-d997276c691d','564fedca-e233-4201-9160-9d65dc5da199',NULL,'Traverten masa kasası ','2025-06-25 21:00:00.000',1,NULL,NULL),
('e7553442-db41-4472-bfca-747cb08b879c','9ed256bd-b366-4a81-80af-3c33747dd7f2',NULL,'sonra gelcek','2024-10-24 21:18:25.000',8,NULL,NULL),
('e7812ff6-8432-435d-ad8c-50f9beb9f193','5a4136d4-a877-40b8-8119-6f26b2fc6d0d',NULL,'KOLTUK ','2024-12-12 21:00:00.000',0,NULL,NULL),
('e787b002-b91a-4f0b-a507-be225c591706','f4436630-2c1a-44d9-a503-1ec5a674d42b','a59c832a-288a-45ad-9922-f8c1ebf24d41','baza başlık ','2024-12-27 21:00:00.000',0,NULL,NULL),
('e7970481-a437-4f3d-aa64-f80785cabcb6','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL,'traverten masa +sehpa','2025-08-05 18:00:00.000',1,NULL,'2025-08-06 11:38:41.702'),
('e7a43420-3f0b-41ce-8b00-bf43531de8d1','11b5e5b0-5008-4cd0-8348-2326293e7dcb',NULL,'KOLTUK TAKIMI','2025-09-19 21:00:00.000',0,NULL,NULL),
('e7aed6c5-43e3-463a-97aa-f3b033f573c9','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL,'BAMBİ JOVELYN Ç.KŞ. NEVRESİM TKM. SOMON','2024-12-17 21:08:16.000',1,NULL,NULL),
('e7da391d-1eb9-43de-ba5e-3274421bf28a','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL,'MERMER','2025-09-16 15:00:00.000',1,NULL,'2025-09-17 09:17:57.751'),
('e7e92bc5-2421-49bc-a1ac-6d23368af393','477173c8-79ff-4a6d-999c-82792b9cd70a',NULL,'6 ADET SANDALYE','2025-10-10 10:48:57.849',0,NULL,NULL),
('e7f31a78-648d-4a5e-9111-1bf7db38dd79','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL,'MOBİLYA','2024-04-01 09:17:10.167',0,NULL,NULL),
('e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL,'MOBİLYA','2024-12-19 21:00:00.000',0,NULL,NULL),
('e7fecc3e-c40e-4f6c-ad90-02decc79e30f','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','yatak','2025-07-30 08:17:28.000',1,NULL,'2025-08-12 08:08:24.268'),
('e8024068-53f6-4221-b217-9d62a4cdb318','c454e08f-938d-43b3-ab45-998625e47a0f','4ccea6fc-d526-479a-9e27-42643a5f294f','baza başlık','2025-05-27 09:15:00.000',0,NULL,NULL),
('e80600aa-d0c4-4d74-ad08-b6ee527cccfe','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL,'AKILLI SEHPA ','2025-09-30 05:37:06.000',0,NULL,'2025-09-29 09:40:21.723'),
('e81b386a-c37b-44ff-a477-096eef9af917','6ee1e536-13dc-4a76-a70e-ab75c46f193b','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa sehpa','2025-10-31 19:39:27.000',0,NULL,'2025-09-03 08:11:36.797'),
('e821bf6f-ce55-4036-a505-910ce2b84e01','61865f3a-d280-4338-ba54-fe634b230fbd','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-11 07:00:00.000',3,NULL,'2025-08-15 13:16:25.315'),
('e8294ec7-2a5a-4a8c-80e6-f50682fbc147','b4928a65-9e4d-47ad-b0bf-11fde9288de9','cf90c370-208a-4021-aaff-f9220970bca9','MASA ÜST TABLA','2025-04-24 21:00:00.000',1,NULL,NULL),
('e8302a51-2bb4-4124-bff3-50276f045168','cca3c1d2-572a-449d-9408-3e4d072a2fa5','fc242b58-580f-40bb-ae53-9dc56568c9dc','masa ve sehpa ','2025-02-20 21:46:54.000',5,NULL,NULL),
('e830aa5f-63b9-42a5-9f64-be3d447ed226','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL,'koltuk 4+3+1+puf','2025-05-29 21:00:00.000',0,NULL,NULL),
('e84654c8-e309-4ec3-aa52-1952869a8173','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL,'SANDALYE','2025-01-13 21:00:00.000',6,NULL,NULL),
('e8493aca-04ff-44bd-b1de-df49c239b8f2','26cf631a-f5d6-48f2-bd12-a1732b406f1a','86aaa208-3075-4940-8ca8-4a4f8d61f79d','sercan mircali','2025-04-24 21:00:00.000',10,NULL,NULL),
('e86f2f3d-8f0b-4894-8c39-9063af830231','6da14393-4c45-403b-a068-6c3e487296c7','f8e7e421-d096-4d8d-99a4-e621c080ad89','dolap ','2025-02-07 10:08:25.317',0,NULL,NULL),
('e891b961-f9b8-41f5-b49e-f492048bd8c9','6fe06ae2-3155-4059-8f77-a92d8d23543a','2217d862-4505-4eb5-93d9-838e046913fc','İNCİ GENÇ ODASI','2025-03-24 09:21:56.790',0,NULL,NULL),
('e89e7d75-4967-4c63-9f73-981469e531af','4598b25d-5bcc-42b3-8fc2-57baa395b0d3',NULL,'Mobilya','2024-05-15 13:57:51.655',0,NULL,NULL),
('e8b1acb9-b5a9-427d-bfb7-a350a1724a71','ef3b570a-0fb1-407c-87bb-aea336aed633','8ff87285-3b46-4f4a-ae2d-029e916f5fef','3.3.1.1 KOLTUK','2024-11-04 12:45:31.000',5,NULL,NULL),
('e8b58cc1-698b-4364-ae95-f00b90174c08','9103cb0e-e686-4e54-ab7a-664a063bc56c','1bbead06-fe85-47fa-bbf0-90a35456a83d','asos 180 baza 2 komidin şifonyer ayna puf','2025-08-06 15:26:12.505',333,NULL,'2025-09-10 11:09:33.915'),
('e8d65a48-3624-46d8-b4ea-9b1d1dbeb273','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL,'ssh','2025-04-14 21:00:00.000',1,NULL,NULL),
('e8dc151e-1148-4a48-ac2a-d4fb2c761969','5b569715-9b3f-4e71-8f65-5766da410613','1b0772ee-b516-4618-8207-cae37145619b','komidin,şifonyer, ayna, dolap','2024-11-25 21:00:00.000',13,NULL,NULL),
('e8e041d5-7390-45f3-b4cc-314402912762','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL,'PERDE','2024-05-10 06:27:25.401',0,NULL,NULL),
('e910f08d-506e-4aa3-9c64-2f41a0272e86','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL,'KÖŞE KOLTUK','2024-06-08 07:44:44.780',0,NULL,NULL),
('e945c68f-2934-46f3-87b9-fdd1b2658111','23c2fb27-3d69-40e0-9027-0877538a4b71','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Beyaz masa ayak','2025-06-24 21:13:25.000',2,NULL,NULL),
('e9511c57-a306-4e1e-8a16-bbe40431ae5c','72d228c3-4890-476a-b92a-a7a953a0be97',NULL,'Mobilya ','2024-10-24 09:45:13.468',0,NULL,NULL),
('e95ebe6e-cfa7-4eee-b276-6f464674325e','932af7f2-df9e-4032-b8ab-056455a1eb6f','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','köşe koltuk','2025-08-31 12:13:41.000',1,NULL,'2025-08-22 11:29:07.269'),
('e9626be5-ddcd-40d5-865d-7018bc1ef9df','9c99f254-2612-4029-ac15-ffb095b93de3',NULL,'Mobilya- eşya ','2024-09-24 12:38:48.785',0,NULL,NULL),
('e96fa072-6bcf-447c-8148-0204de6b7594','7e7dc595-616a-449b-82e5-63d04f63ca8f','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PETRA DOLAP ','2025-03-30 21:53:13.000',0,NULL,NULL),
('e97539d8-0d26-42a2-bfcf-9866d5bd205b','c242a231-cffe-4e5d-bd32-54cf78b29c25','b044c797-8c15-4ef0-b74b-c71ffa32d77d','MALDİV KARYOLA + 2 KOMODİN','2025-05-04 21:37:58.000',0,NULL,NULL),
('e9887adc-3703-4570-a6d2-5ffbf9337c59','aa2cf5a9-9070-43b4-b152-2dfe60634cc3','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','3’LÜ KANEPE KASASI SİYAH RENK 1 ADET','2024-12-19 21:07:04.000',1,NULL,NULL),
('e98a8dba-7836-4c3e-99ff-5d8e5dd92672','6e7511a6-da4e-49c4-b1e0-36335129a7eb','a64d9016-ffd4-4952-b547-d9177972ba50','köşe','2025-04-24 09:00:00.000',4,NULL,NULL),
('e98bfea4-ba12-4820-8a08-d9e21bb5df92','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5','4ee1e344-a27f-4e11-b6f0-254b520be2de','Masa üst tabla','2025-08-25 14:00:00.000',1,NULL,'2025-08-20 12:23:10.207'),
('e99230ad-efaa-4c1c-b5b4-a16b35f81bcc','3645be91-e47a-4a21-8c81-c49771ba3639',NULL,'MERMER DESEN SEHPA ','2025-06-19 21:04:00.000',0,NULL,NULL),
('e9a1f912-3164-4801-8ff9-6ae0ec7c5310','c6e5fe36-4cb2-4837-b35f-93523014a3bd','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye koyu ceviz ','2025-09-25 18:00:00.000',6,NULL,'2025-10-08 15:04:39.042'),
('e9a2dbd0-228e-4a5f-a419-efe3b306e5f7','8551d3c1-420d-41bd-a461-00738dd54bda','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x200 Msm 01 baskılı masa','2025-10-24 12:00:00.000',3,NULL,'2025-10-24 08:10:32.604'),
('e9ad1ccd-2cba-442d-99f3-fbe2ebf084bc','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'100X100 PUF','2025-06-26 21:40:38.000',0,NULL,NULL),
('e9c704c2-110c-4300-bbeb-984901945bae','6ee1e536-13dc-4a76-a70e-ab75c46f193b','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','koltuk takımı','2025-08-25 22:00:00.000',4,NULL,'2025-09-03 08:11:36.797'),
('e9c9f5aa-6590-4069-abfa-cfff80831cb3','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871','b7b1c470-cea9-44d3-b506-17bec6369761','WOOD Üçlü Koltuk','2024-11-12 21:00:00.000',2,'2025-01-21 19:54:58.158',NULL),
('e9cfe084-d511-4680-95ca-42dea2b2e54b','a29f5d76-e07a-44c2-ae0c-d3be10092d5a','93e61440-af32-48f4-a126-44570fed0fb6','KOLTUK','2025-08-10 21:00:00.000',0,NULL,'2025-08-05 11:05:16.252'),
('e9dbfd33-c34f-4a2e-aff6-18956dfc778b','1e0e887d-6244-4f8b-a7d0-710cf6802438','ef92b6e2-cf97-42ad-9c65-e889ce4583fa','SANDALYE','2025-09-17 22:56:27.439',4,NULL,'2025-09-24 14:23:19.724'),
('e9f178bf-a805-4676-ada9-89a3aa16ee4b','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL,'SSH','2024-04-07 20:59:58.943',0,NULL,NULL),
('e9f3cff3-6522-4588-8488-7b4fe7443b69','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL,'ZİGON SEHPA','2025-06-24 21:23:28.000',0,NULL,'2025-07-16 11:06:21.378'),
('ea0b2e83-7dc0-488e-af62-ab874d6b0913','b7371a5c-1964-498e-9777-29d5a4fb4e31','44fae8f2-0263-4e71-93cc-b8909d92767e','1 ADET BERJER','2025-09-24 01:26:47.154',0,NULL,'2025-10-09 10:42:47.499'),
('ea1db62a-4e03-46e1-a474-0586e3474309','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL,'YATAK ODASI','2024-05-11 08:30:48.768',0,NULL,NULL),
('ea334a01-514b-4dbd-9960-a3963f52b611','63fb504d-4814-482e-9dca-ed3716a960e5','0f300a3b-b3d6-4b60-924b-aa70cd54141e','3+3+1+1 KOLTUK TAKIMI','2025-02-03 21:00:00.000',4,NULL,NULL),
('ea57755c-d088-418b-aa98-11cf1f4f1327','0d40e91f-6390-4121-9303-5976e9f6f226',NULL,'BAHTİYAR MASA','2025-01-27 21:00:00.000',0,NULL,NULL),
('ea6ce2a5-fd42-4bc9-978d-b3714213845f','de4f6039-e43d-4b0d-8dd2-09c55847c5d4','d8852582-d508-498a-b753-7d20cd810d34','Köşe Koltuk','2025-04-26 05:00:00.000',4,NULL,NULL),
('ea83d36c-37b4-49a1-9436-e643e2ee9844','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL,'Berjer ','2025-10-13 02:44:02.826',1,NULL,'2025-10-13 09:17:45.576'),
('ea8986de-3ed1-4479-87c4-cb7fd27123c1','87c55df7-f40e-45d7-a3d5-773c1c5084ea','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 sehpa set','2025-07-25 08:55:17.000',2,NULL,'2025-07-24 14:06:04.065'),
('ea9dabd1-827a-4f9e-9b28-301e5af3a89a','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL,'MASA TABLA + AYNA + TEK SANDALYE + KIRLENT','2025-03-05 21:00:00.000',3,NULL,NULL),
('eaa020c1-8c09-4fad-b3db-b90617d5827e','f442c18d-3b28-447e-b106-1af2fe511995','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA','2025-06-22 21:00:00.000',1,NULL,NULL),
('eac72926-5db5-430c-b199-22331da6b459','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ESKALA LİNE İKİLİ PANTOLONLUKLU BLOK DOLAPP','2025-02-18 21:31:20.000',2,NULL,NULL),
('eacf83f4-fea2-4f32-9183-83f8ccc424a8','5242bea6-83a9-46c0-b42f-249dd7e9ef0a',NULL,'ortasehpa üst masavia','2025-10-27 05:51:43.000',1,NULL,'2025-09-10 11:21:16.683'),
('eae44c12-6eeb-4042-97c1-e6abf8051619','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2025-01-08 21:00:00.000',0,NULL,NULL),
('eaf79fa6-fb83-4bd2-8b30-12eb31ce55fe','02ac49e1-502e-4bc4-b041-65c1b38fb8c7','585d2a5c-0e9a-403b-bc40-9b69be00e78c','Tv ünitesi ','2025-01-01 21:00:00.000',1,NULL,NULL),
('eb329603-e121-4099-9308-964edd5b6713','2d3bf117-ace6-4823-84ca-6f7db821df9b','be23ccb1-2e50-4eb2-a3f3-5059a25cf100','Masa ve sehpa','2025-07-28 07:56:36.000',4,NULL,'2025-08-13 14:12:38.839'),
('eb3b09f7-b691-4ca2-bb18-c272e087b51f','4197af5f-54c3-4efd-8f7b-cdb3412520ca','9acd0009-2327-419f-9bbf-703ddea7276d','ŞİFONYER AYNASI','2025-03-09 21:55:30.000',1,NULL,NULL),
('eb485a7d-ef4a-4b90-80b8-e4b407bce1f2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','ssh+komidin','2025-07-22 21:00:00.000',1,NULL,'2025-07-23 11:16:23.802'),
('eb595077-3d3b-4838-8e5a-3aa9e1497c48','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL,'Tv ünitesi ','2024-12-17 21:00:00.000',1,NULL,NULL),
('eb72fbac-991c-4275-8fee-d2dc4841a5f1','a644f2e3-654e-4729-bff3-0390037448f0','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA','2025-07-21 10:00:00.000',3,NULL,'2025-08-21 12:09:27.882'),
('eb7d84af-1ebb-4c55-84cb-08cc927b773c','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-07-20 21:00:00.000',3,'2025-08-24 10:52:33.763','2025-07-22 14:07:29.724'),
('eb86c349-9505-40b5-b06a-f0b02ee95dd7','690f6517-eb93-442b-b224-2954ac3c5231','c3f368ed-2b70-41bf-83ab-e823447db252','sandalye ','2025-08-01 08:52:12.000',0,NULL,'2025-08-07 14:37:22.434'),
('eb8d4344-e18d-4390-80cf-728c7ac06212','6127835e-b380-4636-8fc5-dc785fc26f6a',NULL,'KOLTUK TAKIMI','2024-03-16 08:32:38.022',0,NULL,NULL),
('ebaff3b5-cd83-4700-8ecd-abc457e20f38','fa91f296-36f9-43f0-8480-dce4f2f7ed4b','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','140 çap traverten masa ','2025-08-22 15:00:00.000',2,NULL,'2025-08-25 12:15:20.528'),
('ebb978cd-58c7-4bbd-8316-d3317348da3c','bca77d81-68cd-453a-baac-e90e9d898da0','aad315d0-10a7-4b01-bb33-59684e6f380f','KÖŞE','2025-08-17 21:00:00.000',5,NULL,'2025-08-19 14:21:01.610'),
('ebc1b0d0-823d-4fc9-ab24-32381b1b2506','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL,'ORTA SEHPA','2025-06-17 21:40:34.000',0,NULL,NULL),
('ebdb7f34-2e3b-4ec3-9e73-84254aca4e09','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL,'MOBİLYA','2024-09-28 15:49:16.278',0,NULL,NULL),
('ebe29e2e-61a4-442f-9309-76e0af12c3c1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL,'MOBİLYA','2025-07-07 21:00:00.000',0,NULL,NULL),
('ec048287-78e2-41ed-9182-4554beb97192','fd6cdf42-58f9-43ac-acce-9d75b76c6d29','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KÖŞE KOLTUK','2025-09-07 09:00:00.000',0,NULL,'2025-10-02 12:01:25.866'),
('ec07c178-2173-4880-986b-3c0707f84e91','8e9de283-057d-4b23-a2a9-ce528f93257d','1be238d9-54e3-4094-8d60-66fd5abb87b5','Mermer üst tabla','2025-09-01 23:13:19.163',1,NULL,'2025-09-11 10:25:37.386'),
('ec15369a-d405-4e36-84e6-106dfcf78af1','273c83bb-2405-453b-8f32-a6fd281b21a7','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-06-24 21:21:11.000',2,NULL,NULL),
('ec1acc08-4857-4cc5-a6b8-e2ff799a9b1f','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL,'TRAVERTEN','2025-08-29 18:00:00.000',0,NULL,NULL),
('ec1dd010-46a6-4bf1-b8da-05f4c672e2af','3d40d0f6-e7bd-434d-934e-23f8c73df745','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-09-16 06:20:08.000',6,NULL,'2025-09-18 08:26:26.281'),
('ec368b6d-2af5-4b61-bc86-98e5f6ec4ed8','80cc77d6-2140-493c-a7df-e75aa5104691','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe takımı','2025-08-11 14:00:00.000',0,NULL,'2025-08-11 11:19:31.615'),
('ec4d4945-f64b-4a46-a100-92d57c703e18','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455','55934c55-9fe9-46ce-b8a4-cf7669e12b21','6 adet sandalye','2025-10-13 02:11:15.358',3,NULL,'2025-10-15 10:09:55.526'),
('ec52a31d-c17f-41c6-9e4b-ece376aa03b2','68b0a915-121f-4d3c-b2e8-25b8e3e18525','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe','2025-08-11 13:00:30.000',0,NULL,'2025-08-14 14:48:53.595'),
('ec9eb2fd-2be5-4696-b311-7f2af1b50b6e','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL,'sandayle koltuk','2025-10-02 09:00:00.000',0,NULL,NULL),
('ecc8a619-473d-44b7-bc3f-58005b885517','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77','8c33406d-1686-45a9-ad7a-de320c689537','Köşe koltuk','2025-09-10 18:00:00.000',4,NULL,'2025-09-15 08:01:25.840'),
('ece4ba5e-e243-49ff-970a-1ff0579ad2f3','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','3b6fa63c-5b6a-4502-998a-e848aaf7eee8','BONNY TV ÜNİTESİ ','2025-09-07 14:12:18.671',0,NULL,'2025-10-16 12:30:33.133'),
('ece7deff-9b91-4dbb-b51f-0ec52d0d40c8','02caa650-97c8-4705-a9bc-95c4f819c322','51da9ac2-c7a9-4617-9567-24508d9972a9','Koltuk','2025-05-07 09:15:00.000',6,NULL,NULL),
('ecec0728-d902-4dfa-9f70-a982ced12ed7','6df4ddf2-1d8c-407a-836a-ac83506102f3','ff036b4f-68ec-45d5-828e-7a2c773c539e','6 adet sandalye','2025-06-16 21:12:40.802',3,NULL,NULL),
('ecfd19f7-f61e-44f5-9922-bb5a7fbe1005','2151f3d2-2bfc-48a0-9fa1-3f684dec08c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Sydnei sandalye ','2025-10-29 22:54:51.000',4,NULL,NULL),
('ed05a300-3f7e-44c4-b954-a6eab482e5d7','c06f587f-6e80-42ec-8b11-2be622f719d0','4dd1b930-8fb1-4b8f-bcf3-3ac9e525b530','Köşe koltuk ','2024-11-12 21:00:00.000',3,'2024-11-15 11:57:48.261',NULL),
('ed05e585-d956-4c40-843b-068d97923e80','d2d77708-f738-416d-a601-6a86aa678898','08f2ad52-245c-4512-9cbc-c54bdc15f354','masa','2025-02-17 10:32:31.815',1,NULL,NULL),
('ed078daa-30e2-4187-8a4e-f23be3ede906','335d66ef-091d-4af1-8b0b-38c2daa9e96d','e32e5c88-cc45-488f-bdb9-a2a8c6503a6c','BONNY BERJER','2024-12-17 15:12:24.813',1,NULL,NULL),
('ed097511-c426-4ff2-b940-1f98b2a1f4f6','b465c878-5c55-4a06-a58b-bd7c57228652',NULL,'DENİZ YEMEK ODASI+ TV ÜNİTESİ','2025-10-17 05:45:10.000',0,NULL,'2025-10-20 08:09:24.966'),
('ed134a02-1a23-450f-b473-72a8e8cd94a9','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL,'BONNY KÖŞE TAKIMI','2025-03-12 21:00:00.000',0,NULL,NULL),
('ed1855d3-2d98-4083-a304-8244bd80e6a8','8aae14a6-2700-4220-893c-6329618c4b17',NULL,'Lego köşe','2025-04-21 21:00:00.000',5,NULL,NULL),
('ed189cd0-6bcf-4b5e-809b-d7b64ffa79ab','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL,'baza','2025-07-09 13:23:03.782',0,NULL,NULL),
('ed32e0e2-0518-41d3-99f8-2b923271439a','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa','2025-07-29 06:00:00.000',3,NULL,'2025-07-29 14:08:39.254'),
('ed49121d-e843-4670-a011-d85f0304b09c','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14','cf90c370-208a-4021-aaff-f9220970bca9','MASA AYAĞI','2025-06-25 13:01:51.288',2,NULL,NULL),
('ed660ffe-c741-4eb1-b890-c5a2f52b1f9b','6ffa5c9a-93c5-400c-b777-8b753a8d744f','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 SANDALYE','2025-09-26 05:35:11.000',3,NULL,'2025-10-06 09:50:02.538'),
('ed8ad12c-5bf8-4a68-89de-08a487f605cc','3a413ad6-1fa8-40a1-8617-788cf4219a4a','1be238d9-54e3-4094-8d60-66fd5abb87b5','MERMER MASA VE SEHPA','2025-04-16 21:00:00.000',1,NULL,NULL),
('ed9c894e-c70c-4612-9f50-d24ca23310a5','361c79f6-d2f7-4391-a551-aeba4ac518de','a3b5852f-f1e9-466c-80b5-e9f7fc612e06','MASA','2025-07-28 13:00:37.000',0,NULL,'2025-07-28 07:48:39.536'),
('eda2bfa9-32de-4996-9c79-f610f66e73c8','83b6fa22-325d-4428-9f65-24d93d1dbfb4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 mermer baskılı masa ','2025-05-04 21:00:00.000',3,NULL,NULL),
('edbe04eb-c7b4-48d9-a408-e4287108a690','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL,'DOLAP KAPAK + ÜNİTE ÜST + SEHPA ÜST ','2025-03-05 21:00:00.000',3,NULL,NULL),
('edc08d79-62ec-4e16-9aa0-527b372f7ec8','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL,'MOBİLYA','2024-10-23 08:54:49.127',0,NULL,NULL),
('edc484d1-e2ee-46d0-8ca4-5adc2c03d85f','28d77c29-5660-4bd1-beec-e4790f6ae7e8','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-08-13 10:10:49.000',5,NULL,'2025-08-15 12:54:44.774'),
('edc61a8d-2486-46ee-b1b6-c00ca7fda7f9','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'EKOL LOTUS 4+1 YAVRULU ORTA SEHPA GOLD','2025-02-18 21:28:37.000',1,NULL,NULL),
('edcfcac5-104f-43f7-9e71-b88aa530c026','866ff076-12a1-4d7b-8ebc-b64544beb08e','b78426e8-87ca-4d84-878b-11136d2e5719','SSH TEKLİ ','2025-10-08 21:00:00.000',0,NULL,'2025-10-23 08:44:00.786'),
('ede4fca4-c8fb-442c-a858-733466a9618f','519c4dcc-e8d4-4545-8bfe-61ee397d5447',NULL,'KUTU TONER ','2025-10-06 21:00:00.000',0,NULL,NULL),
('ede9284e-0f42-4aa6-a16a-754961f9be43','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL,'Mobilya ','2024-09-19 12:17:02.641',0,NULL,NULL),
('ede92e6e-229b-4f97-ae44-56e07777e1e2','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL,'koltuk 3+3+1','2025-01-19 21:00:00.000',0,NULL,NULL),
('edef2f29-fe9b-4fa0-8465-53614e2f2468','026148a6-1f09-460e-bbc5-d795abe9cde4','44c404b3-a618-4af5-bdfb-ad381f049053','Köşe-sandalye berjer','2025-06-26 12:00:00.000',0,NULL,NULL),
('edf5fe8e-ff89-4839-a672-95317938fa52','a70aa802-d5bc-4a2c-97c6-3ca3264dc327','e06c9f1f-1373-4067-93bb-a153d76e1c6f','masa yarım tabla ssh','2025-08-12 10:50:49.000',1,NULL,'2025-08-20 10:52:50.349'),
('ee1b6660-5174-4eef-96fc-0e0db658df4d','4d829d78-94c2-4e78-a544-eebc09aa13b0','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-22 15:00:00.000',3,NULL,NULL),
('ee1d8657-8b0f-401a-9ab8-400b6456fe99','bedc8bfd-1431-4017-9109-bedbb2184827','e06c9f1f-1373-4067-93bb-a153d76e1c6f','MASA SEHPA','2025-09-28 17:25:51.000',3,NULL,'2025-10-16 08:05:08.389'),
('ee23c916-9310-454b-b8c5-72ca9657e320','a182b824-b752-401d-b663-5d96552a9f49',NULL,'Yatak Odası','2024-10-29 21:12:04.000',0,NULL,NULL),
('ee297813-f7cb-430a-9796-e455917fea81','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL,'BAŞLIK','2025-01-18 21:00:00.000',0,NULL,NULL),
('ee2ce720-7c0d-4884-9e68-080047f920df','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN AURA 2 KAPILI ASKILI DOLAP','2025-08-28 02:06:40.000',1,NULL,'2025-09-08 12:00:07.860'),
('ee2cf480-090b-45bf-9383-709e6e5470a6','9c0b1881-fd94-413c-b7b5-63b9d4d26501','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 Milas beyaz masa','2025-03-19 08:00:00.000',3,NULL,NULL),
('ee2e4219-5bae-46fd-b0a9-5ee5cc96dc1e','6e760be6-8248-4caa-8c44-7fd2be1fbd2a','940c6390-4082-4fe5-aeaa-06d180147a7b','SANDALYE ','2025-11-07 10:10:47.000',3,NULL,NULL),
('ee4dacd7-fe2f-409e-b014-e7adbfefa118','152de64e-7685-4980-ac8b-8970beb190fd',NULL,'ARES KOLTUK TAKIMI','2025-06-11 21:00:00.000',0,NULL,NULL),
('ee4fa9d5-c840-4b56-915f-a8eff865c451','b7777790-d6b3-4324-8c03-3534c7356952','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-09-04 03:00:00.000',4,NULL,'2025-09-18 11:28:30.215'),
('ee5b3100-b151-4127-ab59-479d31aad576','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL,'SSH','2024-11-14 21:00:00.000',0,NULL,NULL),
('ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3','4b0a63a8-b888-4398-b6a4-26f747429361','8ceb6cff-0a3c-4c86-ba04-fde8f431d6bb','TESLA KÖŞE + 2 ADET BERJER','2025-07-30 21:00:00.000',0,NULL,'2025-08-05 07:54:00.359'),
('ee623458-4a98-41d0-a385-199504c6175f','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e','fd87365f-791b-4129-a329-2bbc5296e508','masa ve sehpa','2025-03-20 11:00:00.000',5,NULL,NULL),
('ee6e5286-733a-4fa7-969f-76ebf4e3e61b','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL,'Mobilya','2024-08-29 12:39:53.831',0,NULL,NULL),
('ee6fb030-92cf-478c-a63e-a4a35c648758','9df2d9a2-447d-43e4-ba38-1e784040acf7','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-18 15:00:00.000',0,NULL,'2025-08-25 10:41:53.913'),
('ee745f45-50d0-4658-bb53-a03142b7675c','172f35f0-b688-47ce-a09e-605aeab33ec9','1e93df00-c436-426e-b76b-a6d843907edb','SIRT MEKANİZMASI','2025-09-09 21:00:00.000',0,NULL,'2025-09-12 11:15:24.764'),
('ee746bfd-05a6-49f4-9eca-b7da110692d7','90462b6a-6fe2-4fba-8b01-1afd6272a71f','efc664a7-01b2-4e5b-8e7c-57637a241713','yemek odası','2025-07-02 01:51:53.783',0,NULL,NULL),
('ee8cd8e3-7e2a-4977-96e0-ba9ce4de4915','7ed7929e-101c-4ff9-a280-ee1b1b4fa958',NULL,'mobilya','2025-08-31 21:00:00.000',0,NULL,NULL),
('ee9427cd-f686-462b-908f-bafd53b0dc81','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL,'MOBİLYA','2024-09-28 16:04:40.019',0,NULL,NULL),
('ee9fb715-b428-43a4-bbcb-69a220329347','7af2880d-3a81-482d-afb4-351d64968ae8','3e78db22-08b5-4c8e-9d69-c184e551e40a','masa + sehpa','2025-08-05 10:00:00.000',4,NULL,'2025-08-05 12:13:02.859'),
('eebe5042-de81-4afa-b4a6-4517e07ad579','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','adc35987-f00b-4bb6-8f3d-59588972832a','3-3-1 KOLTUK','2025-04-24 21:00:00.000',6,NULL,NULL),
('eef2cd1d-ddfa-45d5-9a8d-4a424c439b99','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'GRANDBEDS DELUXE 120*200 YATAK','2025-08-26 02:03:15.000',3,NULL,'2025-09-08 12:00:07.860'),
('ef01ae16-c169-4e19-9b74-47dd619d784e','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL,'Milas masa 90*150 cm','2025-01-08 07:00:00.000',3,NULL,NULL),
('ef0789c3-230c-45b9-8414-11958c24d45e','13382df8-a786-4221-b2be-81ba3d674937',NULL,'SANDALYE','2025-07-08 11:28:42.844',0,NULL,NULL),
('ef0f1181-3c3f-4dc6-8245-bb89aec09c30','3c78b7fc-a182-4269-8da4-db683ff8cada','b82a864c-ddb8-415b-aca2-76d8b8ab4ed9','köşe takımı','2025-04-29 21:00:00.000',3,NULL,NULL),
('ef2c0471-c7d7-40d8-ac98-3d2bf3a67976','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-03-10 13:00:07.000',3,NULL,NULL),
('ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838','22f306ed-6c48-4e15-a370-d8f8b96b6499','d2e3291f-fade-46dd-ac59-68c18dfdd3c9','LENA BAZALI KARYOLA','2025-10-05 18:00:00.000',0,NULL,'2025-10-07 13:39:58.711'),
('ef3d6208-3719-4ba5-b64e-42a9d07fc978','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL,'YATAK BAZA','2025-04-18 21:00:00.000',0,NULL,NULL),
('ef48e289-c687-4471-9ec3-801128f5816d','a644f2e3-654e-4729-bff3-0390037448f0','b151728c-b265-4eed-b5c1-cb53409fb775','KÖŞE','2025-08-21 05:11:22.000',4,NULL,'2025-08-21 12:09:27.882'),
('ef493929-9eb1-416a-84e5-6de254a218f3','fbc52807-2ea4-4332-b106-de7e103725f4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x200 cm siyah meşe masa','2025-05-13 21:00:00.000',2,NULL,NULL),
('ef5e4ede-5933-4544-8a89-60396c7bb969','5d1aaf32-9c7f-40a5-9b1d-76519643d12e','c7a9be0a-b228-44ec-8a6d-73fe37e4d736','2 ADET BERJER','2025-10-24 13:59:28.000',2,NULL,'2025-10-27 13:39:04.728'),
('ef603b58-9644-4d43-9c77-58a606dadcf8','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL,'Masa 3 paket sandalye','2024-10-31 21:52:42.374',6,NULL,NULL),
('ef7dd452-447d-4d98-9daf-20a74a8187db','eb029e46-e69e-4bea-b717-f1c575aa7ca7','6fbd26ef-ff43-493a-8a76-88ea67ec932a','ORTA SEHPA','2025-09-23 21:55:13.000',3,NULL,'2025-10-03 13:01:22.097'),
('ef7e241b-dfb7-4cd5-82ae-97d400e3f824','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL,'KOLİLER','2025-02-22 21:00:00.000',0,NULL,NULL),
('ef85da24-f92a-4f65-9362-ce855f8567e0','5f8e022a-f026-498f-bbc5-f04ab0863363','427bd939-f084-4fe2-bfc3-a1c352737138','Karyola','2025-07-02 12:57:46.000',0,NULL,NULL),
('ef877586-eecb-4c6f-a5bb-bea716e4c29d','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL,'KOLTUK','2025-09-30 15:00:00.000',4,NULL,NULL),
('ef950bcd-c030-42d5-bca8-173f8ff8e8f2','0b7aac01-be82-49d8-9ad7-25b1ae673022','ef694a0b-21c8-4329-9d42-e99c0c3a5923','Masa','2025-03-24 21:00:00.000',3,'2025-07-24 10:25:52.735',NULL),
('efb12d78-a6d9-4ac9-acee-1e0a5f965fbb','7c239237-a1fb-41c7-936d-912d80326901',NULL,'KÖŞE TAKIMI ','2025-07-09 21:00:00.000',4,NULL,NULL),
('efbe186b-71f3-42d2-8da0-71f73ee0e288','c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a','3d95342b-a64e-4ddc-8a1d-a7394bbd2ce8','2 ADET KANEPE','2025-09-28 19:00:00.000',2,NULL,'2025-10-23 12:07:08.030'),
('eff0cbc1-de41-4da3-a56b-fd58a866d436','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL,'80x180 masa üst tabla','2025-07-22 16:02:04.431',1,NULL,'2025-07-23 08:33:06.767'),
('f030c64a-7820-48c5-8487-3cff01452f6e','b98ee553-278c-457b-9e14-25f2810f7f82','269264a4-15d7-4979-94e5-201703dfb5e9','Tv ünitesi ','2025-10-30 06:50:35.000',6,NULL,'2025-10-22 13:26:32.291'),
('f0485a78-951c-4f89-bddf-b2003f0bf783','b21c6f76-2185-4cbb-ae48-70494372e886',NULL,'Sandalye','2025-09-18 03:00:00.000',0,NULL,'2025-10-08 15:10:59.742'),
('f04e4162-5716-460f-adcd-e188bf0eff7d','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL,'MOBİLYA','2024-12-06 21:00:00.000',0,NULL,NULL),
('f04f6528-15bb-496b-ae5f-864c115ea203','125c6d79-f243-4cb8-a15a-74cffdb00247','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı + puf','2025-10-31 08:47:32.000',4,NULL,NULL),
('f07d6b34-76bc-4d85-968f-15fbcddc6ee4','6dce8b90-0bb7-4578-ad31-082486aad8f2','796b5ae1-0f16-455e-a83a-20f60699147d','SEVEN AURA KİTAPLIK','2025-08-28 02:08:11.000',1,NULL,'2025-09-08 12:00:07.860'),
('f07edaf3-4ca5-419f-b3b3-4879db77fade','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('f0938bac-d786-4f9e-9ea3-f5f0f10d7670','c30ef00f-b05c-4a82-a40c-4d69d5352e77','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','70x100 siyah meşe orta sehpa','2025-08-28 09:55:51.482',2,NULL,'2025-09-19 14:42:35.003'),
('f095d43a-8f6c-44f7-aaab-aade7799f4fb','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL,'PREMİUM U KÖŞE KOLTUK','2025-03-26 21:00:00.000',7,NULL,NULL),
('f0a43129-5f51-488f-bd5f-ebd20137e40e','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('f0c15cb7-88df-4d6d-9d57-a7aa3a6df37f','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL,'TRAVERTEN SEHPA','2025-08-31 12:17:00.000',1,NULL,'2025-08-22 11:29:07.269'),
('f0c2df6e-cc70-47df-9954-4a2f43a9ef6f','0433f27d-703a-4a68-9cdb-58d86767559d',NULL,'90x190 Traverten Masa ','2025-03-17 21:00:00.000',3,NULL,NULL),
('f0ccee55-ac9f-4706-9ef6-eab6558d6a64','769295fe-385b-4195-9bd0-58e04754d3ad','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','80x60x45 siyah meşe sehpa takım','2025-08-22 04:40:27.000',2,NULL,'2025-08-23 10:26:56.510'),
('f0d0f679-0435-47ac-98c0-ecc939f711dd','9d816e36-46d4-475f-ab4d-8dc4e121cb72','d9ffcd70-76ba-4b2c-8984-6491f8ae2cf4','MOON MASA+ SANDALYELER','2025-02-12 13:30:31.000',0,NULL,NULL),
('f0e43964-75b3-4eaa-8941-9cb4fed72d4c','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e','bc1b9fd7-95d7-4d5b-a84e-684140acc414','BAZA ÜST DEMİRİ-MAKASLAR- AYAKLAR','2025-04-06 21:00:00.000',3,NULL,NULL),
('f0f6c985-c9ed-4a87-aab9-1e54ef14fc3e','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL,'ORTA SEHPA','2025-07-21 07:06:35.159',0,NULL,'2025-08-06 13:16:59.747'),
('f104dcdf-0960-4a69-9dd5-baf21874bf92','1879da27-b3bb-4922-be98-d1ddc5fe38a9','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye ','2025-08-01 08:59:41.000',4,NULL,'2025-08-04 08:31:22.153'),
('f11542a3-dfa8-4149-83aa-1d327ed7b1cb','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL,'ZARARSIZLAR DEMET ZİGON SEHPA','2024-11-25 15:08:15.120',1,NULL,NULL),
('f11fa07a-9aee-45ee-9bf1-964d6f5ae88f','e4810702-1740-40c2-9d61-e9412939d07c','afd23062-6aa0-4d23-90f5-fd76536bb033','KÖŞE KOLTUK','2025-05-13 21:00:00.000',4,NULL,NULL),
('f12eb7a4-6e0c-4b68-8911-72ebe340d603','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa','26360aba-80e2-46ad-b172-f1052f9526f6','Döşek','2025-07-29 10:33:34.496',1,'2025-09-01 10:28:09.508','2025-08-01 09:08:32.612'),
('f134a126-2407-4b60-9673-09787c6564ab','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL,'Mobilya ','2024-09-12 11:23:41.381',0,'2024-11-21 06:56:27.862',NULL),
('f1417c30-b22f-4fcd-b376-5e24722581bc','bca77d81-68cd-453a-baac-e90e9d898da0',NULL,'PERDE','2025-08-18 08:35:47.023',1,NULL,'2025-08-19 14:21:01.610'),
('f14e3da6-f664-465d-b755-b867421c5d40','3fe4384f-667e-4804-9bed-05209e202db9','7ef18eb6-fc54-4770-be95-51abea3c644d','Sandalye','2025-05-27 21:00:11.000',6,NULL,NULL),
('f16367d4-608c-4f9b-839e-44f160c07ff2','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL,'MOBİLYA','2024-09-27 12:45:09.292',0,NULL,NULL),
('f172365f-f290-4f0f-866a-e7d90edf8d5e','aa2cf5a9-9070-43b4-b152-2dfe60634cc3','3e32eb4c-0a64-44b5-8dfb-42bee349a3e0','FALCON BERJER KASASI SİYAH RENK 2 ADET','2024-12-19 21:06:31.000',2,NULL,NULL),
('f19d17e8-3693-4608-ae1e-de8ed9283ccd','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL,'BAMBİ BİOSALT 160*200 BAZA','2025-10-08 01:44:22.000',1,NULL,'2025-10-22 12:03:51.996'),
('f1aaaa95-2d25-4f45-b026-0107ca13ac62','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL,'Mobilya','2024-07-26 13:31:23.023',0,NULL,NULL),
('f1c7839f-b9c9-451e-bf29-65e73f6adff3','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL,'koltuk kılıfı ','2025-01-16 21:00:00.000',1,NULL,NULL),
('f1d0b634-e6e0-4b6a-a561-feb245a87cb1','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL,'MOBİLYA','2024-03-18 08:41:19.267',0,NULL,NULL),
('f1ec09ff-2f23-4580-a513-8f5e77d85a76','d6348c7e-4b86-444e-859f-29dce263d04b',NULL,'Palet','2024-04-07 20:55:42.338',0,NULL,NULL),
('f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4','308ddadc-251a-4960-a99e-9154ac7e4c88','ee3a212c-1b68-420b-8664-4944fa4af703','Sandalye','2025-09-29 00:22:57.039',6,NULL,'2025-10-14 08:19:09.778'),
('f2026b48-8180-47f7-9044-d94056905698','a34f337a-4aa3-4909-9386-aba561d8a6a0','e59ddebd-c72a-499b-abcb-cdf62222894f','KÖŞE KOLTUK','2025-09-22 08:00:00.000',6,NULL,'2025-10-01 09:43:26.996'),
('f2159b2b-020d-40ff-ae20-f912043ddb26','54f6e131-a6a8-449c-94bf-fd5f1f3719a5','940c6390-4082-4fe5-aeaa-06d180147a7b','SANDALYE','2025-09-25 19:00:00.000',4,NULL,'2025-09-23 13:07:03.087'),
('f218b4f3-6cc0-45e1-be6b-82fc464fdf64','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL,'PETRA YEMEK ODASI','2025-01-12 21:00:00.000',10,NULL,NULL),
('f24b8347-6579-4a66-abf4-66e820067aea','a6738f2f-6b68-43b0-af19-0baf0d11e818','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-08-19 09:00:00.000',3,NULL,'2025-08-25 08:19:48.375'),
('f26bc367-a8ff-4fab-b230-aa56b8cdf135','c8fa1083-9353-41f0-b64e-ae362fb9dad3','e2aa2442-8a91-4124-99c5-e56e6058e5e9','TREND BAZA İÇ SAĞ VE SOL YAN ALINACAK','2024-12-20 07:46:02.557',2,NULL,NULL),
('f273c7ae-7ed3-47e7-80ab-2c1b1496b08c','0f326b7b-35d4-442e-8ee4-8437b42beef5',NULL,'iki adet sandalye ayağı','2025-03-20 21:00:00.000',1,NULL,NULL),
('f28873c5-2e62-4fdb-ada4-793997143e52','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL,'Köşe takımı','2025-02-19 21:00:00.000',3,NULL,NULL),
('f29b2f13-b4b2-45f4-825d-1744cb87029d','a71c1b97-adb1-44f0-8622-8ebc242aee74','26216926-c73f-46d4-9ba1-0afb20844194','traverten masa sehpa','2025-09-14 21:00:00.000',1,NULL,'2025-10-16 08:04:49.467'),
('f2b86101-231b-44f6-8b23-da9325756faf','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0','8606d226-cc7c-4998-946f-cf7c29587a15','YEMEK MASASI','2025-06-19 21:36:39.000',0,NULL,NULL),
('f2c9c596-b3a2-4d94-b5ce-ba5e069264d0','8a185dc3-3990-4ba8-b87e-5f39ac4b1643','8b45ec0a-f4d2-4c21-be65-4ac7c57404b9','Yatak','2025-10-10 02:22:56.998',1,NULL,'2025-10-23 12:23:10.179'),
('f2dac157-3ba7-4b89-bc4a-f2611f23ad49','e007fd33-7715-4011-8189-99fce010ccdf',NULL,'YATAK ODASI-ZİGON SEHPA ','2024-03-16 08:07:35.781',0,NULL,NULL),
('f2e4d8de-fef4-4eaf-9df5-a9679e2d6715','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL,'PALET','2025-02-26 21:00:00.000',0,NULL,NULL),
('f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL,'KOLTUK ','2025-04-03 21:00:00.000',0,NULL,NULL),
('f2f23bcb-ff07-4d90-8d67-e4076cc3147d','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL,'TRAVERTEN MASA','2025-05-12 21:00:00.000',0,NULL,NULL),
('f2f62ff7-9190-473e-9736-be51c4ff5bd9','76973b07-223c-4e19-93b2-e2f735cd609b','26360aba-80e2-46ad-b172-f1052f9526f6','Baza üstü','2025-06-15 21:00:00.000',1,'2025-08-05 12:59:05.747',NULL),
('f2fcb1d4-582c-4733-a9cf-5fbb98d7f185','6f4a13be-78b8-4d33-9535-7be01091d06a','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','ORTA SEHPA','2025-10-13 01:47:51.659',0,NULL,'2025-10-20 10:32:25.969'),
('f306c88d-a372-49d5-8c36-fb790846352a','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693','8972e4c8-8f15-408c-a596-6783ce86ba09','BERJER AYAK PAPUCU 8AD','2025-09-07 18:00:00.000',1,NULL,'2025-09-12 11:42:31.965'),
('f317178a-0ae3-404c-81c0-6950974197f0','8970c6df-ded4-4e10-a476-faa9d8e3a4df','bf2f9026-0036-4efc-bfb3-7790361e64fa','sehpa ','2025-02-07 10:00:52.615',0,NULL,NULL),
('f328d9c1-938e-4419-9d6f-682c3982e0d3','76991b10-04f4-476a-b317-0315495b4a37','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-10-28 03:00:00.000',5,NULL,NULL),
('f33084f4-58e6-45a0-be45-7d25936f1aa8','5bdfe11c-5151-4ee3-bc79-c1e58f3bc770',NULL,'SİNEKLİK ','2025-01-01 21:00:00.000',0,NULL,NULL),
('f33b1ee8-3c07-40eb-af52-f06451c11031','6f4a13be-78b8-4d33-9535-7be01091d06a','c508b00d-a686-416e-ab4b-43fe49208cd0','BAZA BAŞLIK ','2025-10-13 01:47:04.172',0,NULL,'2025-10-20 10:32:25.969'),
('f33be6c8-e5a5-43e7-a5f8-33603ac2233f','8dd05e34-9561-4afb-8daf-fd24f92ac628','ff036b4f-68ec-45d5-828e-7a2c773c539e','Sandalye','2025-08-17 18:00:00.000',1,'2025-09-26 12:52:48.551','2025-08-19 14:32:07.862'),
('f3414f51-92da-4967-b108-6baad5cdd798','4a8a3d2f-092a-4deb-84f4-be3d926123a2','4d3f433c-6ebf-4443-a8bd-319b61cbe400','TOKYO YATAK ODASI','2025-08-17 21:00:00.000',0,NULL,'2025-08-20 13:51:28.775'),
('f3448104-44bd-4193-a741-f1b06602f4c2','5a5d710b-b6aa-42ac-baf2-69abc2901c83','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm traverten masa ','2025-09-23 12:00:00.000',3,NULL,'2025-09-26 11:14:30.697'),
('f344b901-c084-423c-89c8-8a64c147c83a','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL,'Traverten Masa','2025-07-01 12:55:11.629',1,NULL,NULL),
('f34c39ba-861a-4be8-9d1f-5e84896b1732','f5ff5ecc-8494-400b-acf9-c8906860204a',NULL,'İSTANBULDAN ALINANLAR','2024-10-02 09:19:40.680',0,NULL,NULL),
('f351758e-15af-4dfc-b646-4c3a5ace9c3c','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ŞAHİNLER KRİSTAL MASA(SABİT)','2025-02-18 21:28:50.000',1,NULL,NULL),
('f351ee3d-e4b2-4153-9162-59ad1cfacfb3','2fd537fd-8d71-4980-83ba-812e63488956','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2024-11-03 21:00:00.000',7,NULL,NULL),
('f36f3d25-a315-4a57-bee6-dbb93d2e26b8','383f84ab-67a9-43c3-89be-23dcca380e91',NULL,'Masa','2025-03-23 21:00:00.000',3,'2025-05-05 11:34:47.951',NULL),
('f3770a84-cf0f-40b7-84f8-b3f6344b2110','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL,'KOLTUK','2025-06-26 21:00:00.000',0,NULL,NULL),
('f386f408-2b34-4c6a-8fb6-3bde5207d1c1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL,'MOBİLYA','2024-05-10 06:57:06.219',0,NULL,NULL),
('f38f268d-7a32-4f0d-a462-8692167d1d01','1d68877d-7e86-47a0-8436-b6e2ee888f3d','3c36ce4d-d86c-4180-9045-afb7bf10f4c3','köşe takımı','2025-07-22 21:00:00.000',999,NULL,'2025-07-23 11:09:47.683'),
('f3909b2b-cc14-43fa-b752-696dc15ac199','9609be73-cca2-458a-aba2-d4fc54168866','a800d383-0506-4ee2-9894-82c32f1109a9','köşe','2025-04-24 08:00:00.000',5,NULL,NULL),
('f395fe5b-aa87-4cd3-bf35-762e8b234161','7cc7cbc1-b825-489b-99ca-2352be2803ea','0d64216c-fe9d-486b-b722-9710eba2c609','SEHPALAR','2025-03-19 13:00:45.000',3,NULL,NULL),
('f39631a7-bbd0-4f7e-973c-e78bd025ae4d','f466e52e-3646-44f8-a493-620d6580aea9',NULL,'MOBİLYA','2024-07-20 10:23:56.448',0,NULL,NULL),
('f3d50b35-2f52-4ebf-8cc0-0cc77835375a','89eb6491-3e20-44a2-80d5-2107251a822e',NULL,'KRİSTAL YEMEK MASASI','2025-05-25 21:57:24.000',0,NULL,NULL),
('f3d9453b-0679-4d52-bd61-c38e6f80c2a6','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5','5e7234db-e65e-4b54-a5a1-a7e04e82c8dd','ORTA SEHPA YAN SEHPA','2025-04-24 07:26:08.131',0,NULL,NULL),
('f3e0000e-4898-4d80-af42-141e9f4c9316','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL,'160x200 yatak','2025-08-01 02:15:33.000',1,NULL,'2025-08-25 07:03:53.541'),
('f3e25748-9512-4873-82f0-47edea247be7','02252192-88b5-496d-97b8-647d4bed1035','b6781cc4-4ba5-457f-975e-ee2a01f09909','Masa','2025-09-01 09:00:00.000',3,'2025-09-09 08:46:51.382',NULL),
('f3ebb409-4979-488f-a599-11a32dd90b22','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL,'traverten masa sehpa','2025-05-12 21:00:00.000',0,NULL,NULL),
('f4018e81-dfe5-4f02-8ac8-0d56afe9c0c6','c4ed3c28-c51b-4246-86d1-a36f0aff591d','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x180 cm siyah meşe masa','2025-02-14 11:00:00.000',3,NULL,NULL),
('f40a0d73-cdd0-4306-be92-7a5aa4952f45','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL,'YATAK','2024-12-05 16:12:48.839',0,NULL,NULL),
('f41c25b3-8843-49e2-9164-0da21fda4fb1','a363fe79-1948-4fe4-80de-2d172a039951',NULL,'Mermer','2025-09-17 08:29:27.977',0,NULL,NULL),
('f41e6fd4-208c-48d4-8be1-b31343cf7a1a','b10467dd-1ad4-4468-8e8e-6d6e751fff22','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','65 cm çap sehpa','2025-06-27 14:02:04.171',2,NULL,NULL),
('f41fba11-4226-4871-b39c-2a66e0915079','643316ee-78c8-474d-b4d1-843fadca34cb','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','sehpa','2025-10-27 03:07:01.000',2,NULL,'2025-10-22 10:00:47.457'),
('f422a47e-9cdd-4fc1-aba9-00af56f758ff','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL,'Hanedan yataklı','2024-12-30 21:00:00.000',4,NULL,NULL),
('f449fb69-70f5-4f97-8883-00b38025bca8','4dbf93f9-e436-46b7-8455-aa2f9617afb4','3702a172-da98-4e48-8071-547c4f3e92e8','Natura sandalye natural renk','2025-02-28 12:04:58.000',3,NULL,NULL),
('f45571a9-812c-4870-9a5d-3dc263fdeb52','06b7693c-2369-4ec9-8e2d-cbc58d32c3c8','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','100x210 traverten masa ','2025-10-23 18:00:00.000',3,NULL,'2025-10-24 08:17:37.213'),
('f4824372-5bf5-402e-88a0-74bc50efeac1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-03-08 10:57:33.679',4,NULL,NULL),
('f4a408eb-d7e1-4793-bda7-c7df155a6ca7','f7a8a9e2-a809-489e-aa1a-ca2638acc3a9','b151728c-b265-4eed-b5c1-cb53409fb775','koltuk','2025-03-20 21:00:00.000',0,NULL,NULL),
('f4b1796a-8b5c-4dbd-bda9-77443172ac8f','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL,'TV ÜNİTESİ','2025-01-04 21:00:00.000',0,NULL,NULL),
('f4bf8c4c-4867-449c-8abd-6995be691baf','bca77d81-68cd-453a-baac-e90e9d898da0','3c9d505e-31ff-4617-83d0-78974bff3f65','SANDALYE','2025-08-18 08:34:53.291',3,NULL,'2025-08-19 14:21:01.611'),
('f4ecc80a-4079-40f2-a73b-76de718c1c5e','91983c05-77bb-427d-b258-13e5f5aca93a',NULL,'MOBİLYA','2025-06-04 21:00:00.000',0,NULL,NULL),
('f4f18af6-44b4-4cc2-bf41-cb9ac30bd2ea','877feceb-dcee-4240-b3d0-2096978d9783','c296dd87-a651-4b49-8415-45fff87f755a','sandalye 4 adet','2024-12-02 21:32:43.000',4,NULL,NULL),
('f4fea4c5-b879-4cb4-a43b-6716692a56f0','cf1b6f71-e318-40c8-a965-e02e6fdabcb3','4d3f433c-6ebf-4443-a8bd-319b61cbe400','ÜNİTE VE ORTA SEHPA','2025-05-27 21:00:00.000',999,NULL,NULL),
('f50b7578-5740-4ccb-887c-2f5ee3a55269','f31b5648-bfa8-453b-a0cc-3f15b30f8046','67c34dc2-4657-4323-8fc0-4ff05ed31067','maldiv yatak odası ','2025-08-25 15:00:00.000',17,NULL,'2025-08-26 15:01:12.448'),
('f5140c17-97dc-4f54-b434-d37948e92b84','b40d3c46-b787-4f86-a1cc-1ee534edd3cd',NULL,'ödeme var','2025-10-27 06:54:44.000',0,NULL,NULL),
('f5145f41-7f97-497e-9d6c-3c1ccf4e324f','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'ESKALA LİNE İKİLİ RAFLI BLOK DOLAP','2025-02-18 21:30:35.000',2,NULL,NULL),
('f5158f15-6373-4fcd-aeb6-1fe6b9c0961d','c3b52580-dbc3-4db6-a1dc-f05f4c2cdf78',NULL,'PAKET ','2025-03-06 21:00:00.000',0,NULL,NULL),
('f51a80ea-b69b-4ce2-b38f-f9920bc3b5b6','c242a231-cffe-4e5d-bd32-54cf78b29c25','ae4c0d5f-eb47-4f49-b972-f544a74e8f2d','PIER PUF ','2025-05-04 21:39:26.000',0,NULL,NULL),
('f52b306c-3f53-46f5-8bed-8c43d5e71dd8','273c83bb-2405-453b-8f32-a6fd281b21a7','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE ','2025-06-23 09:23:17.705',4,NULL,NULL),
('f54ed30a-dd95-4143-9b02-ef07b59c72dd','3a352d28-b0b9-4b59-9821-a77910ca2fbb','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','masa ','2025-08-21 13:00:00.000',3,NULL,'2025-08-28 14:47:43.178'),
('f550b581-aef2-457f-bbad-307433755791','3f18122e-004e-4381-bc37-c92c815065a9','dd4ba09c-a6d7-4946-bd59-0baf3fd71cc8','Sandalye','2025-08-20 03:51:54.498',3,NULL,'2025-08-27 08:30:21.771'),
('f55c5245-134d-4787-be20-3bdc65b4da95','f7a8a9e2-a809-489e-aa1a-ca2638acc3a9','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','sankd','2025-03-24 21:53:11.000',0,NULL,NULL),
('f5680032-1fe3-4ad6-a948-925ccde94367','afe0ae69-06ca-44c7-8928-75ee9c95e9f3','61b42a7a-d8aa-4a2a-ab86-6e057ea58c77','masa','2025-09-14 23:59:58.464',3,NULL,'2025-09-16 14:08:20.569'),
('f57ee80c-97f6-4020-9622-6597a0ebe80a','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871','e89ec49b-2295-4385-a799-c96668143041','Zigon sehpa+c sehpa','2024-11-13 13:15:09.666',2,'2025-01-21 19:54:59.360',NULL),
('f58e6b9f-d5af-48a2-952b-687f4ff843c8','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL,'MOBİLYA ','2024-12-26 21:00:00.000',0,NULL,NULL),
('f597d107-44bf-4b60-8613-7fa2af665356','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL,'BLACKLINE SİFONYER AYNA PUF ','2025-08-31 06:43:58.000',0,NULL,'2025-09-09 14:19:18.772'),
('f59aba8d-2f5e-4816-b322-ff557edd32f8','6832af34-4eaa-4b00-8c36-a811910e9201',NULL,'Masami 0505 008 3144','2025-07-23 08:11:47.286',0,'2025-07-25 14:15:04.233','2025-07-25 12:46:49.555'),
('f5a238d0-24d2-4881-bd26-6ef90af90fff','eac20332-3b72-49af-9e16-57159be774ea','bdf32869-5506-4208-95e2-820fe960d600','Kampanya köşe','2025-08-19 10:00:00.000',0,NULL,'2025-08-19 08:54:11.143'),
('f5c772b1-e3ce-47e0-849d-c0b9b36c5c02','f41591d6-a92e-4ea1-9c50-b10accb09a51','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','masa','2025-04-23 21:00:00.000',2,NULL,NULL),
('f5d940e7-9b63-45ab-ad43-351571fea934','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL,'ORTA SEHPA ','2025-04-16 21:00:00.000',2,NULL,NULL),
('f5fbba45-31ba-45f1-8947-4cb66498f8a7','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL,'Marmo sehpa ','2025-01-16 11:00:17.650',2,NULL,NULL),
('f607b148-c0d4-4e1b-acec-1387e98b77c7','5e55f20c-e2ab-4965-a16e-95af4a5ed4da','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','SANDALYE','2025-08-08 06:22:33.000',3,NULL,'2025-08-07 13:38:16.629'),
('f609ca05-b6ae-4dcf-ba26-864d6a39966b','46858fce-23b4-4734-be3f-9ef1f6cd02e6','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x160 cm siyah meşe masa','2025-05-13 21:00:00.000',0,NULL,NULL),
('f60ce713-82e0-4ae5-8581-23dfee274c12','2151f3d2-2bfc-48a0-9fa1-3f684dec08c4','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Seramik masa ','2025-10-29 15:00:00.000',3,NULL,NULL),
('f615f536-3859-4a7f-a170-aec38565cbf5','3a352d28-b0b9-4b59-9821-a77910ca2fbb','c2045301-8c66-481e-bcdd-1f2d9d1c8e01','sandalye','2025-08-21 13:24:39.000',3,NULL,'2025-08-28 14:47:43.178'),
('f63639f3-aa59-4a10-98a8-8b3cc509b6f9','3391efb6-f905-452e-9046-16422800fd88',NULL,'Koltuk Takımı (3+3+1)','2025-05-14 21:00:00.000',3,NULL,NULL),
('f64d8576-5c28-4bc8-bb1f-11a8e0471a92','bff7b018-9fd3-45fb-bd37-fd078042b359','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-04-24 21:00:00.000',4,NULL,NULL),
('f6534c5f-f6d6-4e0b-b8df-9db7fa49aa22','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b','bdf32869-5506-4208-95e2-820fe960d600','Cam sehpa ','2025-08-28 06:25:53.000',0,NULL,'2025-09-03 13:04:52.589'),
('f65bc971-0655-4e60-a4f2-19d36f14946d','7cc7cbc1-b825-489b-99ca-2352be2803ea','0d64216c-fe9d-486b-b722-9710eba2c609','DENİZ KOLTUK TAKIMI','2025-03-19 13:00:00.000',4,NULL,NULL),
('f662a07d-7080-4052-82f6-92a4f52f815a','d448143d-3fcc-4fc3-8d37-30d1af2dec9e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','koltuk takımı ve genç odası yatakları','2025-03-03 07:56:14.413',1,NULL,NULL),
('f662a61a-0008-45dd-b84c-cb13bd97b9aa','89246671-a5c1-446d-bc5e-be3c518b5d0e','0f300a3b-b3d6-4b60-924b-aa70cd54141e','sandalyeler-şifonyer pufu ve aynası ','2025-04-23 21:00:00.000',999,NULL,NULL),
('f6885427-480b-4660-b34b-c410a6dc850f','c454e08f-938d-43b3-ab45-998625e47a0f','8606d226-cc7c-4998-946f-cf7c29587a15','orta sehpa','2025-06-01 21:20:00.000',0,NULL,NULL),
('f68d0980-0e5a-43f8-a0a9-37a8fd050188','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL,'TAŞ PALETLER','2025-03-23 21:00:00.000',0,NULL,NULL),
('f68f848d-9773-4521-8431-b7efe576a9ea','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL,'Baza başlık ','2025-03-04 21:00:00.000',0,NULL,NULL),
('f6b8eca2-a50e-4578-8855-7d3404eba60b','f82a6da6-d534-481f-99b5-f2618145eed1',NULL,'Koltuk','2025-10-27 12:44:19.000',0,NULL,NULL),
('f6d35da2-4b3d-47c5-b4fd-3e3ef4395c7b','af3c24bb-f60e-414f-9ee5-8ecc68adbfff','cf90c370-208a-4021-aaff-f9220970bca9','MASA VE ORTA SEHPA TAKIMI','2025-03-11 10:52:59.000',4,NULL,NULL),
('f6f75423-2071-4441-a510-7a2860e937e4','941a927a-9750-49c2-86d8-69862080c82e',NULL,'KOLTUK-YATAK ODASI','2024-03-16 07:26:11.232',0,NULL,NULL),
('f6fbaf1f-3549-423b-93be-c9c9f9a68dcf','54427ae4-0cae-449c-86ba-ad49870f64d2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','90x190 cm Msm 25 baskılı masa','2025-09-17 12:00:00.000',3,NULL,'2025-09-26 10:57:22.593'),
('f702dc4e-af8e-41dd-8ba7-0b404624d574','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL,'YATAK BAZA','2025-01-10 21:00:00.000',0,NULL,NULL),
('f71120f0-3dab-49a4-9919-47f817fb8a68','29175f89-ad14-442c-b1fb-71c9053ba227',NULL,'Mobilya','2024-05-15 13:52:42.549',0,NULL,NULL),
('f71f64d5-9aed-4de9-b9c3-e1093fe9daa3','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL,'Berjer','2025-09-10 22:16:43.000',0,NULL,'2025-10-17 07:23:37.683'),
('f71f6a2d-7b5e-43bf-859b-c13088cb4e11','b7777790-d6b3-4324-8c03-3534c7356952','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN SEHPA','2025-09-04 16:48:16.788',1,NULL,'2025-09-18 11:28:30.215'),
('f736ebb0-2344-4b12-b853-5ab586355287','5d4df7c0-7f38-4095-847c-3996a99d1a51','940c6390-4082-4fe5-aeaa-06d180147a7b','masa sandalye','2025-09-30 14:00:00.000',9,NULL,'2025-09-26 11:08:47.473'),
('f748035b-c6c0-4661-888d-794e658c1cf6','12438c42-fc27-4ae8-8cff-d96af3f07b68','2fdf870f-fec1-4d26-8970-49a9139ddf32','SANDALYE','2025-02-23 21:00:00.000',6,'2025-03-09 13:39:03.395',NULL),
('f74c2051-67d0-4745-92d4-11fa5c0564c6','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL,'Posetlerden kalan kutu ','2025-01-15 21:00:00.000',0,NULL,NULL),
('f74d165d-70a6-4c78-950c-451bd03b5925','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL,'MOBİLYA','2024-10-02 08:58:49.403',0,NULL,NULL),
('f7560079-fc40-4418-913b-3d445e2cf4a4','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL,'SSH','2024-03-30 07:19:52.485',0,NULL,NULL),
('f7562aa6-13f8-4815-97b5-117f4d1f1729','9b0fdc03-2303-4892-bf4d-0d91b19ec321','47642923-9495-43d6-b53f-dde58ab3d113','3+3 koltuk','2024-11-13 21:00:00.000',2,'2024-12-14 08:30:09.262',NULL),
('f7591348-7d95-45d1-8a05-cc0376cdc4d0','9103cb0e-e686-4e54-ab7a-664a063bc56c','5e537499-0979-40ea-9a81-c72e5aa6ab77','dubai şifonyer','2025-08-28 15:22:17.000',333,NULL,'2025-09-10 11:09:33.915'),
('f7806aed-7891-40a2-a934-51885653847d','88a13537-ee7e-4373-9a6b-9ad389c583a7','b22273fb-b00f-4afc-b708-2437f60ec61e','Sandalye patiği + rutus boyası ssh','2025-10-07 18:00:00.000',0,NULL,'2025-10-14 07:21:06.426'),
('f788aa10-a028-4c0c-a2e9-596045cabb3c','78b69f29-3789-4968-b725-c04339316224','0f300a3b-b3d6-4b60-924b-aa70cd54141e','sprey boya','2025-07-22 21:00:00.000',1,NULL,'2025-07-25 11:29:13.650'),
('f7b7d96f-ed14-446a-9420-7f44bcbbed32','877feceb-dcee-4240-b3d0-2096978d9783','ee094406-7b7d-4dff-bdda-d300b0b6d971','koltuk 3+1+1','2024-12-02 21:00:00.000',3,NULL,NULL),
('f7c2aa49-f28b-4d98-9cd4-72731d30e9c5','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL,'TV ÜNİTESİ','2024-05-04 07:49:04.366',0,NULL,NULL),
('f7c345ec-fb13-49ec-a83d-d89fa6a2ceaf','33c1702e-09af-4ac6-992c-6abbb6899f2c','2702ff7a-8b09-4349-9f5b-38ac6a8d1b7a','SANDALYE','2025-05-04 21:00:00.000',3,NULL,NULL),
('f7d75b9e-91a3-4e2f-bea6-42d2a60d7d13','b562fd3b-e30e-4218-a985-6517692ba823',NULL,'MOBİLYA','2024-03-18 07:26:14.600',0,NULL,NULL),
('f7dc1792-8ed7-4b88-b7d0-c13a7e4ca6d6','d01b4f69-9644-4e00-b4be-407f21dbd835','21444842-12de-49d1-9480-1c8708a45353','köşe koltuk','2024-11-06 21:30:40.000',0,NULL,NULL),
('f7dce569-186c-4b40-9e32-d553c0d68d00','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL,'KÖŞE KOLTUK','2025-07-24 21:00:00.000',0,NULL,'2025-08-06 13:16:59.747'),
('f7fec661-6f5f-45d8-8d10-18c1dad72513','d7c365df-3376-4073-9c58-c2c089ddf17d','4a9b58a0-ac06-46ed-809a-96513292a470','ortas+2yan sehpa+puf','2025-05-22 21:02:25.000',5,NULL,NULL),
('f8042fc5-0122-45dd-abb3-ff92fa197c28','d2d77708-f738-416d-a601-6a86aa678898','7abbdd6b-3367-4f39-9f36-a6d3cdf65a0e','köşe ve berjel','2025-02-16 21:00:00.000',6,NULL,NULL),
('f811b922-d2ae-41ac-ab53-1d8212179217','ca7f278f-ad79-4c38-a185-b73739ed8248',NULL,'PİMAPEN','2024-05-04 09:57:11.908',0,NULL,NULL),
('f81b6e31-6832-4eb6-87b1-0c2abc96ab92','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL,'BAMBİ MAGNASAND 160\'LIK BAŞLIK','2025-10-03 00:16:42.000',1,NULL,'2025-10-03 11:29:25.915'),
('f830310d-5e03-43df-88ca-0cb960574619','c15ec73d-23f3-470b-88b9-b482c773905a','d30ff40f-77ed-465b-82c8-b649f7ec3cc0','yemek odası','2025-02-25 08:19:04.652',1,NULL,NULL),
('f842eaaf-94f0-44f1-9cc7-68d39b982516','c372b398-b1ae-40ad-b0e3-91301cb6ee99','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-05-23 14:30:35.000',3,NULL,NULL),
('f843a15a-76ad-45c1-94e1-ae04cab8ae50','5063dfa2-5328-4697-84aa-52c286384d28','c3b6a2b8-8f01-4af6-ae30-2e340aff917c','MT95 ORTA SEHPA','2025-02-10 13:30:34.000',1,NULL,NULL),
('f848ce93-1e13-4869-9697-77af297f746c','2eac751e-9abb-4289-a78f-365093ac6e16',NULL,'PALET','2024-07-20 10:01:21.965',0,NULL,NULL),
('f8845648-6347-4e46-b7f2-eb261e05cd91','d054b4a7-35f3-468e-a1b3-28d2ebd815c0','1d59a38a-d24e-4fe3-997f-c76596d0c801','SMART 1-1 BERJER','2025-09-15 04:57:43.599',0,NULL,'2025-09-19 11:49:55.086'),
('f88c3e53-b711-4bcb-aa3d-9543580054cd','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL,'Karışık ','2025-06-02 21:00:00.000',0,NULL,NULL),
('f8c7ffcb-2cbf-4062-8bb7-970e7b285da3','fe9bad3a-ed39-41a0-aefb-3b353269e29a','aad315d0-10a7-4b01-bb33-59684e6f380f','KÖŞE KOLTUK','2025-08-26 12:00:00.000',4,NULL,'2025-08-29 07:45:57.860'),
('f8d35c51-b98a-46d7-8ff1-a2e47719eeca','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL,'SSH SEHPA KIRLENT ','2025-06-22 21:00:00.000',0,NULL,NULL),
('f8d90cf2-88ac-48fb-8de3-6ec17d4df359','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL,'rams ünite rams orta sehpa ','2025-08-28 15:00:00.000',3,NULL,'2025-09-03 11:35:22.999'),
('f8da3047-bd3e-4abb-838b-cb388b449675','c44ad438-ca7d-42db-860f-ada68ed38828',NULL,'köşe','2024-03-12 05:02:28.572',0,NULL,NULL),
('f8ddc78c-709f-4f1e-9554-f833b1d4ab67','bca69f0f-c971-4a0c-bf97-7f3178e5ccc5','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk ','2025-01-08 21:00:00.000',0,NULL,NULL),
('f8dffc2f-656d-4485-a0a1-ced4b9cedd31','895e1a54-1679-4334-a0d8-1b1901c592a5','26126773-c58c-4826-9a54-b06d334d664a','BONNY TEKLİ ','2025-03-11 21:19:51.000',0,NULL,NULL),
('f8e899ed-a330-44f0-9263-2af1e0da52d0','31a9f03a-9f24-417c-b0b7-5e374d34b126','53547128-7fcb-4279-a2ae-cd050bf436d4','YATAK DÖŞEK','2025-09-28 18:00:00.000',0,NULL,'2025-10-14 14:37:45.426'),
('f8e958dd-34b6-42e9-a343-6f420c122893','3932d875-21e8-45e1-a16c-797670968c92','fe0a9e17-e52a-465c-af84-8dd1932db99a','sandalye','2025-08-27 10:26:00.000',3,NULL,'2025-09-03 11:07:09.386'),
('f90ed9c8-2d53-4ae0-ac71-fd862484505d','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c','f4b725ec-de83-43a0-8adf-cd7f36f59b78','SSH KOLTUK KASASI ','2025-05-31 21:00:00.000',0,NULL,NULL),
('f912307c-b419-4d9c-add4-84739c9e0ea5','98c40a46-22d8-4470-84a1-302a19073f0d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','Koltuk takımı ','2024-11-05 21:00:00.000',3,NULL,NULL),
('f9185f83-ec03-46ab-a8d4-4d2449603dac','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL,'koltuk ayagı ssh','2025-01-09 21:00:00.000',1,NULL,NULL),
('f921520a-8901-4753-8918-7cdef5980f3b','1965b9c6-c511-459f-8f4e-dddb4f23f943','0ad4214d-7661-4597-8ec6-579510e6a02f','sandalye','2025-09-11 16:40:06.000',0,NULL,'2025-09-17 13:26:28.634'),
('f95ab67d-ded1-4d5d-b1b1-992f9b0fb749','d6382e4c-39a7-4f1e-a322-945d02f853e0','0f300a3b-b3d6-4b60-924b-aa70cd54141e','kumaş','2025-01-21 21:00:00.000',1,NULL,NULL),
('f95bdefb-9393-4e36-a67f-177a26978136','23003647-c65c-45ed-a37a-c8d8db575ea2',NULL,'Ürün','2025-10-03 15:00:00.000',1,NULL,'2025-10-10 10:12:57.131'),
('f95c2298-a038-46f7-b507-fbf48a2c0808','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL,'SSH PARÇALAR','2025-08-08 18:00:00.000',3,NULL,'2025-08-15 13:41:20.426'),
('f977c922-fb1f-40e8-98e2-ddd7e1448255','6be6b415-9978-41fa-b920-1eb149c147e3','906d7ec3-10b0-4073-8cf1-9957843f6132','tv ünitesi','2025-02-09 21:00:00.000',0,'2025-02-13 20:58:18.437',NULL),
('f97f0bf1-8bfc-4b90-9dfa-5e72d28ea479','401ecd97-fb17-4288-b2ea-4445b8cdc4f1','17d8b9ed-3fa4-4418-a110-a9b7ebb274ef','CALİSTA TV ALT ','2025-10-24 09:00:00.000',0,NULL,'2025-10-27 13:12:55.527'),
('f9861f37-efe2-4e3a-930c-f694c4e10c6f','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d','e757256d-c116-45a3-853c-453866ada02e','MASA-6 SANDALYE-KONSOL-TV- ORTA SEHPA','2025-09-22 17:28:10.024',0,NULL,'2025-10-20 13:28:20.709'),
('f98de84a-b05e-4f78-aaa2-8b6679e65fa9','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL,'Mobilya','2024-06-13 10:00:23.654',0,NULL,NULL),
('f990d766-c4f4-4a39-9787-2739ff6edf53','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL,'BAMBİ ELARIN DOGAL UYKU PAKETI CK','2025-10-08 01:44:03.000',1,NULL,'2025-10-22 12:03:51.996'),
('f99c8b1d-3c5b-4297-b1a6-3cf221af487c','a8888d05-159a-4d87-90a8-88a98dc908ae','09d7f208-5120-4a6a-a456-7613eabd6424','2 SET DÖŞEK ','2025-08-18 12:16:27.000',0,NULL,'2025-08-22 10:22:00.852'),
('f99d004b-43c8-4725-81eb-8647e7871abd','dc416865-0c74-4fdd-89bf-5ec5f8499eb4','2648ebea-6027-48a1-b672-7e6e6b86cd2e','rollpack yatak 140 lık','2024-12-12 21:00:00.000',1,NULL,NULL),
('f9c33ca7-6673-4f4a-bb59-3ebf236a9842','9a5b1798-a2b1-4df0-a151-463694364cd5','ece6a8b1-cec6-4b85-9127-42c6d179decb','ELİZA DİAMOND SANDALYE','2025-09-18 20:56:59.000',6,NULL,'2025-09-24 08:19:17.069'),
('f9e43273-b7fb-4f2a-a82e-67f60793eff9','06e21650-25ae-4be2-b1dd-31866d6e20f9','26126773-c58c-4826-9a54-b06d334d664a','BONNY KÖŞE TAKIMI','2025-03-26 10:00:00.000',0,NULL,NULL),
('f9e5aa36-ee37-4651-8167-ac131f8c07fb','88f68865-5f11-4a8f-8f8d-1e298ec5ff03','b78426e8-87ca-4d84-878b-11136d2e5719','SAGA KÖŞE TAKIMI ','2025-03-16 21:00:00.000',0,NULL,NULL),
('fa1b43bd-5ac8-4622-adbd-464a8c925f9d','458258c9-fe44-4947-9731-45517b0b0dba','fcafaabf-58b2-4617-8332-d190bbe04361','SANDALYE 6 ADET ','2025-06-30 21:00:00.000',0,NULL,NULL),
('fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b','7d5e9833-8a69-43a6-8c18-775c82287e7a','99db2a30-a2d1-446a-97c5-0cf5c7b3a74f','yatak odası(puf dahil)-yemek odası','2025-08-03 21:00:00.000',999,NULL,'2025-08-13 12:42:45.959'),
('fa386a83-3d1a-4d92-b1ac-072561c781fa','f8a35a67-4391-400d-b200-b2e5eb8c88d5','8cd76f51-c090-4ea7-b13d-65bd119d8d6c','TV ÜNİTE','2025-07-11 12:00:00.000',3,NULL,NULL),
('fa67de56-43a3-49a9-94f2-09d5fa9ec349','4f563dbc-f003-405e-bdb8-828b7a66d357','3d32bf6b-0757-423d-ade3-bc6296974cd6','Sandalye','2025-09-18 04:24:36.000',3,NULL,'2025-09-22 17:08:51.481'),
('fa745738-6bf0-4e0e-9ca9-ef93214c1f2a','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL,'PALET','2024-06-08 06:52:44.274',0,NULL,NULL),
('fa793f1d-2bd7-4a65-b1bc-3d0e571c562e','b98bc4c0-d13e-4cca-ad93-173ed8365841','28ca5666-3c89-4dd3-8af0-508ec9c9962b','TV ÜNİTESİ','2025-02-24 13:42:57.891',1,NULL,NULL),
('fa806a1c-a3a2-4576-9af2-cff69901ad3e','29897483-14ac-4404-8bba-38c2a76aa9a9',NULL,'sehpa ve halı','2025-10-26 22:02:25.000',3,NULL,'2025-10-24 10:34:07.511'),
('fa85cbb9-8618-47d9-917f-ac3054f0583b','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL,'MOBİLYA','2024-08-31 12:59:49.760',0,NULL,NULL),
('fa880f52-10c6-402e-90f6-afd9e9dff9eb','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL,'EWODA LENS 160\'LIK KARYOLA (BAZALI)','2025-02-18 21:27:50.000',1,NULL,NULL),
('fa893fcd-0aa2-4b0d-8cfb-f1438b36cac6','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA','2025-06-27 12:00:00.000',3,NULL,NULL),
('fac0c3c7-d870-4897-a631-62a0ad9bbcfb','77ae1565-c04e-4a61-91bb-c10a993fdc5b','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KÖŞE TAKIMI ','2025-09-07 06:00:00.000',0,NULL,'2025-09-19 11:28:54.869'),
('fae6909c-01c0-4f09-ac49-1ff3954779b4','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL,'3-1-1 koltuk 1 orta sehpa 1 saat 1 ünite','2024-12-03 21:00:00.000',6,NULL,NULL),
('fae8e85d-bfcc-42fd-add3-4d47c7612f8f','b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8','fd87365f-791b-4129-a329-2bbc5296e508','Masa üstü SSH','2025-10-09 06:00:00.000',0,NULL,'2025-10-13 11:16:41.231'),
('faebcca0-46de-45fa-9329-665a09e1afc7','ed15bdd7-b954-4a77-83a4-3809681dbb05','33a14305-ae7d-4fa9-aa1a-b5ab4e053718','MASA + SEHPA','2025-07-16 13:00:00.000',5,NULL,'2025-07-17 07:55:32.345'),
('faeed55b-96a4-4881-b45b-9ca34af87762','b90afa4b-4bfb-45de-b36a-051a3bf6a245','8c33406d-1686-45a9-ad7a-de320c689537','köşe koltuk','2025-09-29 15:00:00.000',4,NULL,'2025-10-06 13:48:48.580'),
('faff9b88-031d-4976-826a-41e2bf254311','9ab1e698-3e9c-4902-81a7-1cc2cb0af3ff',NULL,'MOBİLYA','2024-03-14 15:19:47.699',0,NULL,NULL),
('fb1c9630-98f0-4c26-89d8-37346f67a1eb','77ae1565-c04e-4a61-91bb-c10a993fdc5b','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE BERJER ','2025-09-07 16:57:08.592',0,NULL,'2025-09-19 11:28:54.869'),
('fb2833ed-b33f-4336-b2e5-bb576edd765a','c8b96623-e586-496c-849d-fbff1ec7f11d','c0bb9681-661c-415c-b5d9-c19ef69a3471','3+3+1+1 koltuk takımk ','2025-02-17 21:00:00.000',0,NULL,NULL),
('fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL,'DENİZ AYNALI KONSOL','2025-06-24 21:23:02.000',0,NULL,'2025-07-16 11:06:21.378'),
('fb315394-4cb2-4ee4-9b83-42589f739871','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('fb3572ea-a313-4cf8-a5cb-b7056e79114f','83dcfa57-e33d-46e2-b78c-ed99b59bfc16','b151728c-b265-4eed-b5c1-cb53409fb775','köşe takımı','2025-04-09 21:00:00.000',3,NULL,NULL),
('fb366cd4-897a-4e3e-8964-29b80d563ca4','6df4ddf2-1d8c-407a-836a-ac83506102f3','763afea4-80d7-4980-bdda-79840ca9431f','Köşe koltuk','2025-06-16 21:00:00.000',0,NULL,NULL),
('fb58f438-30e4-4e01-af6e-6378e27a11fe','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL,'Mobilya','2024-08-26 12:07:15.956',0,'2024-11-21 06:56:50.225',NULL),
('fb752cd1-ddbb-458c-8371-2851b143968a','f9d93c62-66a8-418a-abd8-01753a82e84d','37486a5b-3dc6-4298-9bfd-3291b8f42d46','KOLTUK TAKIMI ','2025-07-08 21:00:00.000',0,NULL,NULL),
('fb7f5404-7747-4ee9-8237-cc5fb56ccdfb','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL,'KOLTUK ','2025-03-19 21:00:00.000',0,NULL,NULL),
('fb9b5fa4-a2fc-4d6a-96d9-e247c36e725c','17a07c46-d669-4812-a1e6-7296886311ab','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','KÖŞE KOLTUK','2025-09-17 07:00:00.000',4,NULL,'2025-09-17 10:56:53.542'),
('fbc3ad5b-35bb-4508-8b32-91a16a619b88','89f250d7-ea03-4dad-b40b-0dd01296a0ce','8606d226-cc7c-4998-946f-cf7c29587a15','Masa','2025-08-18 09:17:40.000',0,NULL,'2025-08-20 11:07:00.623'),
('fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc','5e292f87-77b6-4b9a-bc20-8032bd3242f2','44eda159-93f6-4740-a6d1-e80dd4fa6bfa','6 sandalye','2025-07-21 11:02:16.000',6,NULL,'2025-07-24 08:03:30.566'),
('fbe21725-aa89-4d56-9467-9cb01a9ccd14','142a82ad-defd-462a-a877-e872e40354a3',NULL,'YATAK BAZA SETİ','2025-06-24 10:45:22.084',6,NULL,NULL),
('fbffb9d5-c273-47e9-93ff-d898c5730075','00c9f797-aeda-4640-80a8-f170a3df58f4','99ba0e84-8bfb-4024-bbd1-9bc042a421d1','KÖŞE KOLTUK','2025-05-21 21:00:00.000',6,NULL,NULL),
('fbfff131-b02f-41a5-967f-a0528f7275f4','1d9f810e-286d-4bae-8abd-224e036ce2c8','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE KÖŞE KOLTUK ','2025-09-14 18:00:00.000',0,NULL,'2025-09-19 11:46:16.270'),
('fc33e6e7-779b-41c9-8d72-c26a1d995b78','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL,'Baza başlık ','2025-04-27 21:00:00.000',0,NULL,NULL),
('fc4843d8-7733-4186-b9c5-fb1602e2ec64','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL,'perde','2025-09-22 13:45:47.000',0,NULL,'2025-10-07 13:45:12.287'),
('fc62f08c-a4dc-4f3a-b1bc-a39834539515','4d25f6fc-edd0-4a96-9bb2-91c21a66472a','940c6390-4082-4fe5-aeaa-06d180147a7b','masa sandalye orta sehpa','2025-09-05 10:00:00.000',11,NULL,'2025-09-10 13:45:22.769'),
('fc6979fc-a14e-4764-a9c1-5e69d11573cb','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0','6a29d4d5-7923-4e32-847a-7b8f963ba237','1 Masa ve 2 Sehpa Ayağı','2025-05-01 07:00:00.000',3,NULL,NULL),
('fc853fcb-c51c-4c07-b20a-ac57fdd1a81e','02f21391-f1d5-4bee-b4d9-17f65a20feb7','e46f75d9-f1dd-4753-8e6e-717c17942cfd','Petra Üçlü Koltuk 2 Adet, 1 puf','2025-08-18 05:00:00.000',0,NULL,'2025-09-02 08:50:18.146'),
('fc8642c2-233d-40f6-9c73-4a49c73a1dab','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL,'SSH','2024-07-30 14:17:34.718',0,NULL,NULL),
('fc8faca6-fdc1-4e86-afea-1df42ea048fe','ef714645-7f38-4a84-8d4c-124593386b53','3702a172-da98-4e48-8071-547c4f3e92e8','BALAT BAR SANDALYE','2025-01-02 08:08:43.032',3,NULL,NULL),
('fc9baf44-fed5-4b50-be95-b9964e750a79','6d081276-ddf8-46f0-93cd-4f0c203eb705','5aa809cb-10b3-4e6d-b9d6-4f15d8a7b1a7','köşe koltuk','2025-08-27 17:03:00.000',4,NULL,'2025-08-29 13:33:59.043'),
('fcadc5d5-7c85-42a8-a0fe-4cd8e640291d','2001cb25-64fc-43dd-827f-15869eca039f','bc1b9fd7-95d7-4d5b-a84e-684140acc414','masa -6 sandalye-ortasehpa','2025-10-29 22:05:44.000',0,NULL,'2025-10-22 12:01:50.498'),
('fcaf053b-d516-402f-b15f-d6744a9851a0','aec29545-1708-47a6-a33d-352a69ad4876','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye','2025-01-28 09:14:05.103',3,NULL,NULL),
('fcb6bf61-126e-4607-bf5e-9fc3c22c1a65','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL,'MOBİLYA ','2024-11-10 21:00:00.000',0,NULL,NULL),
('fcc0d1fb-e7c2-481d-8e13-58a0debd1ee0','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL,'MİLAS BEYAZ MASA','2025-01-01 21:00:00.000',3,NULL,NULL),
('fcc16d1b-5b2d-45d3-b15b-a50d45fac779','02301bb2-05b9-4f43-b8b5-5ced5c8740c7','8f681d43-0f04-48bf-a190-abcd5fbd637d','RAMS KONSOL + 8 SANDALYE ','2025-07-21 15:18:35.000',0,NULL,'2025-08-22 09:30:56.113'),
('fcd5b9e3-a767-489e-81ee-c8f7b3fbb1cf','a6738f2f-6b68-43b0-af19-0baf0d11e818','cf90c370-208a-4021-aaff-f9220970bca9','SEHPA','2025-09-01 01:41:13.000',1,NULL,'2025-08-25 08:19:48.375'),
('fcd67c6a-44c1-42d0-bb18-f0aad3734594','b1a52e0a-42f8-41be-85f8-f4189669ece7','09d7f208-5120-4a6a-a456-7613eabd6424','döşek 2 baza ','2025-09-30 09:00:00.000',0,NULL,'2025-10-07 11:28:48.379'),
('fcdb68c7-3f48-4ca6-807f-23c014d6a46c','c454e08f-938d-43b3-ab45-998625e47a0f','7a2a3d4e-f8d4-48e3-b3c8-92db172e97b2','sandalye','2025-05-27 09:17:00.000',0,NULL,NULL),
('fcf2d3c6-3f79-42fd-a564-dc62e7679d3d','3753ec0d-793c-43d2-920b-d39827ee0154',NULL,'POŞET ','2024-12-23 21:00:00.000',5,NULL,NULL),
('fcf94972-9dfe-4f45-a809-b56685f0c411','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA','2025-03-07 21:00:00.000',1,NULL,NULL),
('fd191047-7aad-4990-b1f5-4e635ebb9b6a','f7d36bd1-9c1c-4000-b3a4-bde690e8c1bc','8c33406d-1686-45a9-ad7a-de320c689537','malzeme kutusu','2025-09-30 12:51:45.000',1,NULL,NULL),
('fd1e8997-53e4-4033-a92d-13fa88acbade','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL,'BEYLER 2TAY-DR-320 AYNALI TABLO 3\'LÜ 80*80','2025-08-26 02:00:28.000',1,NULL,'2025-09-08 12:00:07.860'),
('fd3a44e7-97a6-4a95-8999-ea918e44e1de','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL,'NEVRESİM TAKIMI','2025-01-13 21:00:00.000',2,NULL,NULL),
('fd5239f9-2c7d-4b5f-8eec-c01af9d7de05','e10bc182-1962-4aff-b973-093a04c71419',NULL,'MOBİLYA','2024-11-11 21:00:00.000',0,NULL,NULL),
('fd565af1-de3d-4ec4-a771-b7c0b8a28e6e','afda17ee-6395-4bb0-bbe2-3e976e5044bc','7599d274-6992-40d7-b766-7b0e19fec8bb','NEWBED YATAK RULO','2025-05-08 14:25:47.751',1,NULL,NULL),
('fd627de9-a7ba-4edd-81d9-c79c6a66cc2c','edc25440-29b7-4bf7-9e12-91c088a94762','8b268fdf-cc88-488a-b15b-ed87aeb4e594','YATAK ODASI','2025-03-13 21:00:00.000',22,'2025-05-22 11:17:55.834',NULL),
('fd631dfe-2e15-4544-a24c-e5e50c960d7e','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL,'MOBİLYA','2024-10-23 15:10:57.478',0,NULL,NULL),
('fd815e63-b567-45f7-a40f-07ef81c2b7ea','59f8293d-670d-46aa-baa2-c4a3a969aea2','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','120 çap dante ceviz masa ','2025-06-16 21:00:00.000',2,NULL,NULL),
('fdf057bd-458c-4a9d-a013-560eb90dde7f','bf55ba8d-4886-4535-bedc-892994749297','fd87365f-791b-4129-a329-2bbc5296e508','Masa ve orta sehpa','2025-08-28 16:26:47.000',0,NULL,'2025-09-02 08:30:05.734'),
('fdf16f88-69c1-48dc-8781-5ef64e6edbfa','e8639de3-a760-433a-8023-37feb4abcf62',NULL,'KING PLATIN BAZA SETİ 140X200','2025-02-11 21:00:00.000',4,NULL,NULL),
('fe0dfc58-5578-4ca2-bf70-da7b36ac4e89','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL,'KOLTUK TAKIMI','2024-03-30 06:51:51.042',0,NULL,NULL),
('fe135024-cf0f-4cb0-a63a-adcd1e3b9c29','e3a57d2d-4adf-4846-9fa6-c92de9e727ae',NULL,'MOBİLYA','2024-09-28 16:06:46.474',0,NULL,NULL),
('fe15fb75-251d-4801-a8ca-caa3d5567cda','2fb92d16-b307-4896-974c-b96cb9542bc6','b151728c-b265-4eed-b5c1-cb53409fb775','KÖŞE TAKIMI + PUF','2025-09-25 03:00:00.000',2,NULL,'2025-10-02 12:14:38.963'),
('fe224014-80c7-4bb7-96f9-7343154c847f','3c99fa74-861a-4491-a1d0-f58a8971a7b2','38a7333e-8a0f-4e45-957f-e11d538d2097','Masa ','2024-11-12 21:00:00.000',4,NULL,NULL),
('fe32e52e-e41e-4849-a30d-cfd7abd60e35','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL,'ÇUVAL','2025-01-18 21:00:00.000',0,NULL,NULL),
('fe3f4d98-65f5-4176-87f1-868fa0810252','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL,'Mobilya','2024-07-03 14:32:29.995',0,NULL,NULL),
('fe4e104d-d113-4a98-bb0f-d5b0a3408cb4','2b07945c-640f-49e9-a7a3-fdcc706090f9','cf90c370-208a-4021-aaff-f9220970bca9','MASA ','2025-09-25 19:24:37.000',2,NULL,'2025-10-10 07:26:20.084'),
('fe542976-fc97-4189-a192-853285ba7bc6','537f327a-f919-43fa-9be8-fa8d0af3cf00','218949c6-eafc-4354-9868-0fc9ca3b3675','6 ADET  SANDALYE','2025-07-30 07:22:38.948',3,NULL,'2025-08-18 12:19:56.397'),
('fe92661a-da50-4c92-b7a4-f473829f47fe','5b516169-2e1d-421d-a411-a20956666225',NULL,'MOBİLYA','2024-12-16 21:00:00.000',0,NULL,NULL),
('fea9db7a-edb9-4a21-8dcd-5d30d009e820','8a185dc3-3990-4ba8-b87e-5f39ac4b1643','50565934-d787-4253-9c21-6aa3e640ae2a','Karyola ve halı','2025-10-09 12:00:00.000',6,NULL,'2025-10-23 12:23:10.179'),
('feb5ac99-94b7-4077-ad29-decda6b8d898','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL,'MOBİLYA','2024-10-15 14:27:11.364',0,NULL,NULL),
('feb77c04-d085-4688-a308-1871c3ac6713','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL,'Kutu','2025-09-16 15:00:00.000',4,NULL,NULL),
('fecc08df-5fbe-4e90-b90e-71dc695eccb2','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3','8c6ecba8-6768-4127-80ba-c9c71d442689','VOYAGE YAN SEHPA ','2025-09-07 14:11:49.247',0,NULL,'2025-10-16 12:30:33.133'),
('fecc5d14-5d99-4fe7-9369-94ddbd3d42ec','05621906-10fc-483c-89a6-f51e344e576b',NULL,'Mobilya ','2024-10-30 14:47:00.812',0,NULL,NULL),
('fed28e47-8397-440d-8404-a285a8bdefbd','a8888d05-159a-4d87-90a8-88a98dc908ae','5ac0ac47-a3e4-4fa0-9a22-e69ed143fbac','DRESUAR TV ÜNİTE ORTA SEHPA','2025-08-18 12:17:31.000',0,NULL,'2025-08-22 10:22:00.852'),
('fee5153c-cd7e-4aaf-bc13-5d18ca69895d','bba01e5e-85bc-4c7c-b195-3960e7fc5c66','8c33406d-1686-45a9-ad7a-de320c689537','KÖŞE KOLTUK','2025-10-28 03:00:00.000',4,NULL,NULL),
('fee6d28e-ec96-4152-8bd2-97598ebbd691','9e399534-04a6-4572-a7ec-3a630c910cdf','63154ed3-bb98-4fbc-84bc-504d1b4d4b37','MASA','2025-09-25 02:00:00.000',3,NULL,'2025-10-10 14:10:22.822'),
('fef5bf4d-01ee-4073-99a2-5cff1b560073','2a5af105-d0c8-46fd-ad7c-0aa1fac82094','48eb2bc7-40b5-4ca1-b858-ef3228babff4','sandalye','2025-09-02 01:00:03.000',4,NULL,'2025-09-02 09:10:13.489'),
('fef9a398-214b-419d-a788-92a9b71e4615','14059478-ba08-4b58-99fe-dca8a607799f','1be238d9-54e3-4094-8d60-66fd5abb87b5','TRAVERTEN MASA VE SEHPA','2025-04-16 21:00:00.000',1,NULL,NULL),
('ff08ddda-9817-458d-ae19-df09ec034099','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL,'KANEPE','2025-02-06 21:00:00.000',0,NULL,NULL),
('ff17f3bf-0b11-47b8-9bf9-410ace402e2d','e5ffe400-c79b-4f45-8a39-1085e52959fd','ba94a781-077a-49a3-ace1-ff1f8e8eacb1','Balat sandalye siyah ','2025-10-22 23:03:02.000',6,NULL,'2025-10-24 08:10:43.778'),
('ff190dbb-143b-4c29-bab6-8f312e4deb63','967d15a7-2096-45bd-bc90-7a65319402f4',NULL,'YATAK BAZA','2024-06-08 06:54:56.956',0,NULL,NULL),
('ff372732-deea-41b0-b130-7636de548bef','5638b80a-4caa-4fda-9164-868d6f925066',NULL,'MASA KAYITI ','2025-08-22 05:38:34.943',0,NULL,'2025-09-03 09:55:44.971'),
('ff41de74-17ff-4bad-989d-6f378ab50997','edee589c-8584-4bae-8e91-900078074c09','8b3fd660-7e02-4d1d-9bcd-406bdd25b872','Sandalye ','2025-08-11 21:00:00.000',3,NULL,'2025-08-12 14:02:25.091'),
('ff5ae9da-b42e-4f83-b529-51fbfbe9ea38','f068235e-a859-42b0-b6d1-68d5d67061a7','bdf32869-5506-4208-95e2-820fe960d600','köşe takımı','2025-07-18 13:45:07.000',0,NULL,'2025-07-22 11:26:55.464'),
('ff5b1597-758b-485a-b299-4127569206b1','d2d00177-2e69-4d99-bbf2-01bd2986666a',NULL,'Mobilya ','2024-09-10 12:18:50.965',0,NULL,NULL),
('ff6b529f-2317-4ce6-8b12-193a117a8ed8','29897483-14ac-4404-8bba-38c2a76aa9a9','8b45ec0a-f4d2-4c21-be65-4ac7c57404b9','döşek','2025-10-13 13:21:00.343',1,NULL,'2025-10-24 10:34:07.511'),
('ff722e98-0fc4-4e7a-aa12-76012685646b','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4','bdf32869-5506-4208-95e2-820fe960d600','kampanya köşe takımı','2025-07-23 13:00:00.000',0,NULL,'2025-07-24 13:27:29.037'),
('ff7a7a58-3e7d-46f0-851e-7a15e0f7a061','e9c624cc-2fc1-4839-b08d-b9e1310a053d','1e93df00-c436-426e-b76b-a6d843907edb','MASA VE ORTA SEHPA','2025-10-14 19:22:49.000',0,NULL,'2025-10-22 12:11:06.752'),
('ffad1b86-20c5-4d98-8921-4101b61ab763','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d','cf90c370-208a-4021-aaff-f9220970bca9','MASA','2025-05-19 21:58:32.000',3,NULL,NULL),
('fff846e6-362b-483f-ba3a-df216849c545','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL,'Yemek Odası Takımı','2025-08-28 15:00:00.000',11,NULL,'2025-08-29 12:27:02.212'),
('fffaa018-d494-4d94-9cb1-dcd410cc934d','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL,'RANA MASA ','2025-09-24 17:58:32.613',0,NULL,'2025-10-01 13:30:30.419');
/*!40000 ALTER TABLE `shipmentitem` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipmentpart`
--

DROP TABLE IF EXISTS `shipmentpart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shipmentpart` (
  `id` varchar(191) NOT NULL,
  `shipmentItemId` varchar(191) NOT NULL,
  `length` double NOT NULL,
  `width` double NOT NULL,
  `height` double NOT NULL,
  `weight` double NOT NULL,
  `loadVehicle` datetime(3) DEFAULT NULL,
  `delivered` datetime(3) DEFAULT NULL,
  `barcode` varchar(191) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `shipmentpart_barcode_key` (`barcode`),
  KEY `shipmentPart_shipmentItemId_fkey` (`shipmentItemId`),
  CONSTRAINT `shipmentpart_shipmentItemId_fkey` FOREIGN KEY (`shipmentItemId`) REFERENCES `shipmentitem` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipmentpart`
--

LOCK TABLES `shipmentpart` WRITE;
/*!40000 ALTER TABLE `shipmentpart` DISABLE KEYS */;
INSERT INTO `shipmentpart` VALUES
('00001a6c-95e7-4519-92f1-9723e12bf990','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-6'),
('000107fc-a28a-466a-8343-a62fe7a5d393','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.167','2024-12-01 12:28:22.116','24886445-1-16'),
('00015ea5-1bc7-45e1-b77f-a361b0d075b6','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',63,80,10,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-36-4'),
('00058525-8693-459d-814a-b8d77142dbc0','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-1'),
('0005c1e0-f3ca-4cae-8a1e-3965ed3a8733','eb7d84af-1ebb-4c55-84cb-08cc927b773c',94,102,8,0,'2025-07-29 12:58:47.399','2025-08-07 14:06:05.144','613499620-1-3'),
('0006955a-3016-4321-9a74-7845486c82cd','8b0faffd-49d2-436c-acda-c8b006f7cc05',0,0,0,0,'2025-02-23 12:39:25.741','2025-03-04 20:47:52.542','745687103-1-2'),
('000749ee-1517-47a7-9e02-a733b5f35a42','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.647','2025-01-06 20:09:27.226','221350993-1-1'),
('00081b66-c786-4200-bf34-c9254ca2d153','3fc759d9-3801-490b-bbad-23f2ff290b97',183,91,8,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-3'),
('000a0b2a-2c53-4ead-8217-755d06aefad5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.545','412107970-1-2'),
('000c5945-38e8-46d8-9cff-04f148d2aeb1','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-57'),
('000c6f5f-ef61-4461-83a0-7c5039562c19','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:24.249','248135683-1-158'),
('001174e3-29c7-426e-853f-ed11d70adf67','7defd633-f7ab-424d-8029-028d1b045752',230,26,60,0,NULL,NULL,'501119446-1-9'),
('0012b513-d9a9-43cc-8c17-51ebe99d5153','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-1'),
('001887ca-526e-4eed-9d8c-b10863e10d10','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-3'),
('001a17bf-6891-457b-af7a-62d9cfb2c283','27f50539-120a-4017-b647-afcae9da99f9',45,52,53,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-3-3'),
('001d4be1-799f-4e6f-bef1-535d1a35d93b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-81'),
('00221eb8-45fd-4483-9943-876cf15ff4f2','fa793f1d-2bd7-4a65-b1bc-3d0e571c562e',38,38,182,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-3-1'),
('00232fbe-d06f-4494-bbe9-da80847a74a6','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',85,60,70,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-1'),
('00240722-18c2-4203-89cd-8019d5b7d81d','f6fbaf1f-3549-423b-93be-c9c9f9a68dcf',51,51,77,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-3-1'),
('0026cf54-0104-4074-90f4-43f2140d4c43','e89e7d75-4967-4c63-9f73-981469e531af',235,64,4,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.434','319835776-1-1'),
('0028338e-c694-424d-9580-912f04a9d3d8','a29400c4-3879-4ada-aeb6-c99017d4e531',78,101,75,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-3-3'),
('002e5778-e011-4446-b971-d6d3491b5806','f7591348-7d95-45d1-8a05-cc0376cdc4d0',41,21,10,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-8-3'),
('002e8085-02a1-41a9-95f1-58c9e505ff63','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-19'),
('002e843a-14c7-41fc-8852-aa0677854696','9d9df441-0469-46e7-baad-366a3096e9a0',77,37,5,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-5'),
('003416ae-a011-4e17-922c-b94e02446fb9','f71120f0-3dab-49a4-9919-47f817fb8a68',206,104,7,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-1'),
('003443d9-024e-468d-b780-54ad9e50d35f','42fd5815-f64a-4d97-ba78-6eb7f4d93af7',124,69,9,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-2-1'),
('0034f5c0-ffa8-4c30-b59c-dc70e3dd7100','f4824372-5bf5-402e-88a0-74bc50efeac1',61,65,86,0,'2025-03-27 08:02:46.623','2025-04-08 15:37:36.306','644206771-2-1'),
('00368db3-5d28-4563-a774-f1fd6fb6bef7','e3de85d3-eec0-4038-99df-48935e9c3c8e',170,90,60,0,'2024-10-11 16:09:22.260','2024-10-22 13:51:40.147','976898541-1-1'),
('003774f0-c189-42c8-859a-5a7f0a8fdf1a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-1-43'),
('0037ea46-0e55-402f-a44e-c1dbaf893da7','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-40'),
('00390e39-3218-4b2f-b2f2-7ff6aa50be32','ed1855d3-2d98-4083-a304-8244bd80e6a8',114,100,73,0,'2025-04-28 07:40:47.424','2025-05-05 09:10:30.650','8176511-1-1'),
('003bbcaf-df9a-4666-9c1b-98ec7e04ba7d','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-17'),
('003e4514-2be2-46d8-96b1-a2991a6945ad','bd7ec8be-4215-4dc6-b7a7-0bdad2bd0193',88,2,221,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-3-1'),
('003e54de-6da9-4808-87ac-fe5f44e4af14','8c3a9387-2db4-400b-95fa-11aef6c745f6',145,48,8,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.892','501766543-1-1'),
('00425545-5c86-474f-b347-40ea95c63b70','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-57'),
('0042670c-637b-4cd9-81e5-8ee7eaa8f73b','8d63ddf2-2a6e-45d5-9ceb-635a8d8500ba',53,100,73,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-1'),
('00426ae4-90b4-4323-b4e6-aeb5557d7b9b','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-1'),
('0043814e-24e1-408e-8e31-103281ac0d49','c038b12a-54f8-4506-ab1d-bf0a0cc4dd8b',130,11,215,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-25-1'),
('0047be98-7713-4ac2-b63a-6d90ff2bfeed','ea8986de-3ed1-4479-87c4-cb7fd27123c1',52,52,96,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-4-1'),
('004cd748-cf61-4e01-95e1-ffc8d5e40bec','7b0efe36-9f05-41fc-93fa-6011fdba399c',42,173,107,0,NULL,NULL,'613868869-2-1'),
('00506191-d4c9-47a3-a4a8-f4aee37f754e','94265c38-053f-43ac-95e5-6d1b08ae3c22',92,100,10,0,'2025-03-27 15:05:06.419','2025-04-08 15:35:11.106','517887763-1-8'),
('00525955-3619-4dc4-960b-3ac0adf7d509','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',210,100,200,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.871','126938963-1-1'),
('00527c2d-a058-484b-bc63-c5fe055bb970','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:24.803','248135683-1-19'),
('0052d5ff-9032-460e-acfa-f15686087732','23603e9a-f1df-45b7-910f-576bcfbf1bb0',0,0,0,0,NULL,NULL,'478981977-1-1'),
('0054ee80-92db-46db-a9c6-cd1230fbfa56','ee1d8657-8b0f-401a-9ab8-400b6456fe99',8,95,175,0,'2025-10-22 13:06:41.295',NULL,'598719647-3-1'),
('005659b7-13cc-4483-9139-58c1a13fdcc3','c2ca9295-3327-4596-8115-dd1ef2d64d4f',170,40,27,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-4'),
('00605bd9-f419-4368-b174-f1df40c0b4db','ea0b2e83-7dc0-488e-af62-ab874d6b0913',80,70,75,0,NULL,NULL,'478545195-3-1'),
('0060848d-6201-4d38-b1d2-ba4bf360d7a5','a87576e3-14e1-46a8-99c7-1d48360995f5',114,65,30,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-1'),
('0063dac8-845e-48d9-8e6d-6d3b7619d083','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-152'),
('0064c6ac-c980-478f-a9f2-4904af7f2e1f','a8240df2-bc04-464c-afdc-dd0bdbe1643d',63,218,11,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-1'),
('006b3abb-a75c-4ceb-a9df-4cd479e56ae1','71452714-b180-4e00-b2a8-b6fefa0c5650',77,44,44,0,'2025-02-09 09:51:58.172','2025-02-15 05:22:04.063','268145141-1-6'),
('006c16ab-52bf-43d4-92cc-28c0d32eb496','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-2'),
('006d15c1-fb1b-4d77-8fa4-a22a51137be3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:25.450','248135683-1-143'),
('006d254b-abf3-466f-b10e-1fa2fb98f7b6','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-18'),
('006f139c-8444-4711-b4c4-356dafd49ce1','1d11c681-3983-42da-b02d-56cdbb17ad76',75,102,57,0,'2024-11-08 17:37:56.781','2024-11-21 12:40:09.302','748663171-1-1'),
('006f147d-7446-459b-9c08-74558a3fb815','b78519ec-4b79-400f-a709-a1f09256d30d',58,219,6,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-27'),
('006f58d1-2ed9-4ac9-be08-960569616a44','368574ad-455b-429e-98df-eb01c78f0d8e',85,85,6,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-1'),
('00708d6d-65ab-45f4-bed9-a39d4fb17b09','8e0af130-fb4d-46ba-a038-bfa1e5b9d93f',120,76,7,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-1-1'),
('0078036e-58f5-4442-a313-2437c87f822f','80b59b98-1b2d-4d14-b5eb-0824fc273750',221,70,93,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-2-1'),
('0079a43f-4850-489a-905f-b497686bd266','ecec0728-d902-4dfa-9f70-a982ced12ed7',81,56,101,0,NULL,NULL,'613362697-5-1'),
('007a213f-caeb-423f-b9b0-591f3ea60207','08af242e-dc62-496d-980d-0f589dcdea60',47,67,97,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-8'),
('007a91c3-a5e9-46cf-ad94-6c348fb8afc8','e8dc151e-1148-4a48-ac2a-d4fb2c761969',220,60,8,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-1'),
('007d23f1-8fdc-40c2-b0e6-514132cfbe9f','346c41d0-7f77-45cf-8572-ddf0fc62cce2',99,91,60,0,'2025-10-08 17:44:04.955','2025-10-20 06:32:03.725','644301613-1-1'),
('007fd397-ff47-4ada-bb15-0f54bbf8d56a','c678d974-fe17-41f7-8bb7-fbea7100a805',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-4-2'),
('00801fbd-754b-4aef-b2a0-c2b3986443e1','db6038f5-6951-4cc2-bf80-1b165340ace8',93,95,80,0,'2025-07-29 12:58:40.468','2025-08-08 08:47:32.675','644644115-1-1'),
('0080e7d6-9cda-42e0-af92-05c9cc6c780d','b2cc240f-bde3-400a-bbec-a61085853dd5',50,7,213,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.692','478867058-3-1'),
('00824a1f-7524-4276-98a7-3e0490ab8ef3','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-2'),
('00840c3f-037c-4c6b-beb5-7a257e5047f4','1fffa8ea-befc-4b74-98ce-8981bef002ea',103,15,18,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-2'),
('0087a8f0-6397-46c9-8d81-c163abbf2b15','e3ad38ad-67b7-48ef-acdc-c2e13831e843',197,49,64,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.986','44926965-1-10'),
('008ae3b8-5f1a-4422-8460-0415cdaef07a','0c4e75d5-e342-41c3-949e-5ca8657ec836',77,29,200,0,'2025-09-02 14:48:39.153','2025-09-10 17:05:41.390','598226174-1-1'),
('008fb81b-5752-49f0-9257-ad854facdc94','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',170,95,65,0,'2024-08-07 15:02:59.361','2024-08-15 10:31:04.498','976577497-1-1'),
('0092c364-0cc2-4735-9eb1-8ef2889b6f1e','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-1'),
('00938285-e537-4eb4-8a2c-3cfdb9320926','10d63ad9-5664-4514-9fb9-770393034f69',75,75,75,0,'2024-03-16 14:33:52.022','2024-04-01 07:52:54.988','478741910-1-1'),
('009dd922-f1f3-4d66-ac6b-07630e3812d0','f3414f51-92da-4967-b108-6baad5cdd798',49,49,52,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-1'),
('00a1b24e-13a2-4211-ad1f-26e349ee0442','4301b768-4818-4e74-a6d0-12a33474f5c6',44,62,14,0,'2025-10-25 08:59:16.418',NULL,'478450171-1-1'),
('00a3b17f-c5bd-456b-8582-8377b0e9ebc0','d090324b-381d-4576-9558-a6a55f702152',92,63,9,0,'2025-08-14 08:21:31.391','2025-08-25 07:11:25.135','745824761-1-1'),
('00a6756b-e137-4d1f-bd3c-f21541997e9e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.639','2025-07-26 08:29:57.891','412218985-1-25'),
('00a7e439-185f-4e1a-a967-86a139a51e05','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-7'),
('00ac0544-dd5f-4201-b734-8c1984f946b9','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-11'),
('00ae951f-0055-490d-b02e-03d7d1fc2b0f','a5626ae2-9a5a-4401-9095-a368c22814f1',240,100,70,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-1'),
('00aee4ad-7445-4813-b3a7-5611ece2b313','014ebe19-c8ce-4288-a6be-75bb83ffcc5a',35,35,35,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.608','437791709-1-1'),
('00b43efa-bbfa-49c6-aef3-e01ddc5955f7','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-1'),
('00b48a9a-ca6b-4b1c-9182-032b157602b3','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.016','2025-09-18 07:01:44.409','412990147-1-14'),
('00b71614-bfb8-4f35-b636-2af2eec646cc','27a7bc54-5d32-41d4-9dcf-f63732db8996',100,98,70,0,'2025-07-29 12:58:51.566','2025-08-06 17:56:14.801','817630523-1-4'),
('00ba6ebe-94ff-4851-8996-279920343989','e3ad38ad-67b7-48ef-acdc-c2e13831e843',240,80,95,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.986','44926965-1-2'),
('00bc9d40-a1e7-481c-b0c0-7ba25f8dbd5e','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-6'),
('00bd1a6a-126b-4ba9-8666-25e4dad5df15','7539ec51-cdb8-4879-b280-a64290bb512f',64,90,6,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-1'),
('00c0ed42-c3cb-4ec1-83ec-157f23029de2','d8cc3511-84de-4ab9-9beb-0d40f6d341e9',0,0,0,0,'2025-03-24 16:01:42.948','2025-04-05 17:48:17.433','745968655-3-1'),
('00c18702-9df4-45cc-aa3d-77d1879dca79','1146c60f-37ae-4960-9ff1-39c79125711e',72,101,65,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-1'),
('00c501b8-da6d-4d03-b353-8e16efb19b37','845cd508-3836-4f7f-899b-bf28d0f90884',35,41,215,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-1'),
('00c53c67-27b5-4b3e-8f9c-112b460fb78b','490c2bb4-adcc-46dd-b62c-c66daac6662f',0,0,0,0,'2024-04-08 08:57:32.780','2024-04-30 22:31:16.671','412679110-1-1'),
('00c6cb5a-52f7-4b1e-90a1-20e068db0392','c1e8ae95-b005-4e76-a148-1dc517d1a512',51,51,76,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-2-1'),
('00c751c2-3461-446e-9d23-ae1841d6cd14','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-1'),
('00c7f344-1d8d-450a-bb64-cbafab2db788','fff846e6-362b-483f-ba3a-df216849c545',47,15,70,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-10'),
('00c9da67-177e-4be8-a33e-ebbdf5489320','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.462','2025-02-03 10:51:51.607','74520622-1-27'),
('00cae66f-d70e-4e92-884c-3d9186f54060','d2f8d58d-42ad-4705-b1e8-a666af927fa3',180,4,199,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-1'),
('00d06f10-2f10-4de6-a48f-a831d219fc3d','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.763','223631242-1-37'),
('00d09579-8a79-4d1e-88ad-69230388e77e','b153c580-1fa3-4d05-aed9-d033117f4c17',51,51,77,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-1'),
('00d751d0-739a-4159-b803-167d9201bea6','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',91,102,57,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-1'),
('00d9c01b-f7cd-4936-bf1b-2e28f89efed8','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-4'),
('00dbb88d-8894-40c5-b63f-40c348f032a1','c71fdc71-df3e-48af-9323-d534b0931ff1',11,11,69,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-3-1'),
('00e26deb-c083-436a-9792-a4de5a8c3fb5','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.128','2025-02-01 10:51:15.248','478449275-1-17'),
('00e4d530-6b95-4b26-855f-148ecbf9227f','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-15'),
('00e7eef3-541a-45b8-8667-2b2162e31c08','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-36'),
('00e9e05d-dcc9-4702-804b-bec7912d38f5','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',62,117,7,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-1'),
('00eac2d6-59e3-4657-a6ff-68844673cb15','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-33'),
('00eace53-c071-42b6-8c71-6fd5f7c475b3','24781fe5-c8a9-48cf-a94a-3c61efb0a699',43,15,15,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-1'),
('00efd885-147b-4ad4-9ac2-cc4914cd0fed','0992d733-abbb-4891-8268-04764b359116',137,130,17,0,'2025-06-27 17:12:05.163','2025-07-16 07:46:09.842','745249081-1-1'),
('00f07934-627c-472b-b541-626239a22180','f8e899ed-a330-44f0-9263-2af1e0da52d0',32,100,205,0,'2025-10-20 07:18:12.638',NULL,'531606130-4-1'),
('00f56edd-8e14-408a-9509-28e2845231ea','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-13'),
('00f58487-c9c6-4d37-81ae-22dc90e8200d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.294','223444495-1-69'),
('00f5c8e1-cc4f-41d8-b482-27d54e69ad34','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-50'),
('00f744d6-6555-4209-8876-e7d9e927b7d7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.545','412107970-1-77'),
('00f9552f-b4bf-43b0-b509-4aa13c6e1a30','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-13'),
('00fa3ffb-063b-4453-80ae-99170282692d','8dd2c090-c3cb-4f5f-9b42-8f83f29410df',73,54,100,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-2-1'),
('00fc8b67-5923-4bed-8a7d-d63ec7000e26','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-1'),
('0104dc17-80d0-4408-88c1-c7319085ffb4','6060763f-09fd-4b23-9d16-0641dc9c453d',70,87,4,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-1'),
('0105131b-217b-4770-9e4c-678aa7b713aa','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-11'),
('01070563-561d-4d0f-a569-933c1417bcd6','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',64,114,42,0,'2025-09-16 16:29:04.381','2025-10-04 13:57:40.402','478906000-1-1'),
('010d2ab9-0169-4be1-a0ee-31de99b5706e','83902671-5e3f-46e6-98da-fea889e40b25',46,46,63,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.351','644985861-8-1'),
('010f6b40-dd2b-4333-9b51-3773fed6463e','f095d43a-8f6c-44f7-aaab-aade7799f4fb',163,59,93,0,'2025-04-11 13:41:38.816','2025-04-25 09:52:26.884','910163146-1-2'),
('01112ea9-470b-4233-adfe-085558a9dd10','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.199','223867751-1-1'),
('0113e531-0466-4778-9032-f4a2bdf6c035','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-1'),
('01156eb8-60b3-4a75-bb64-2ba2d066aebe','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-2'),
('01172c22-316c-41b8-9c80-35a752a0b510','943d063f-08bd-4675-85e3-b9d53ebf2480',265,80,95,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-3'),
('01184b08-b5fb-456c-90e7-1b4cbb5cefd7','7defd633-f7ab-424d-8029-028d1b045752',205,10,35,0,NULL,NULL,'501119446-1-28'),
('01191cea-42a6-4b96-bc1e-7d8554d21a18','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.442','570899680-1-86'),
('01196905-9406-49ac-8189-c514406cd42c','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-38'),
('011972ef-326f-4482-bd39-b372096bb19e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-11'),
('011a087e-922f-4b15-937e-02005669ffe3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-98'),
('011fe6c5-b04e-400b-8684-0b087d35468a','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-47'),
('0120f7f7-be32-489f-a81b-ed63c7da5f8c','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-9'),
('01223777-7e15-4dfe-8f64-af9b95e3ea7e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-234'),
('0124d33a-fb2e-4fb5-9fbc-0e451b6f6a12','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-1'),
('0125b945-cf5d-4dc0-9846-b73c3f215bc6','5c487410-f906-4e14-a077-9f060026719e',250,92,60,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.267','703183067-1-1'),
('012f610a-05d7-4d84-933c-ecca5643ebc4','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.885','2025-02-08 15:04:54.362','412586892-1-64'),
('013270d9-6b74-45b9-8255-1754153f5094','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-1'),
('01333d85-c4a9-4b02-8077-85e3a6660748','c41cb9b6-8a90-4d65-bacf-8d71c8df714a',0,0,0,0,'2024-03-16 14:34:12.031','2024-03-29 17:57:22.177','47835620-1-2'),
('0133a253-b0d8-4d29-9eb9-d964bf8299e1','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.604','412970240-1-17'),
('0133c776-4e98-4e9a-aea4-9a168dfe889f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.055','223441694-1-46'),
('013643b7-c40a-47ae-98eb-e7c413829b4a','46cbcfc1-c51a-492f-8b61-a2472751488a',95,87,80,0,NULL,NULL,'644495739-2-1'),
('0136c19f-c6c5-4167-a7ac-f440babf643c','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-1'),
('013783a2-5245-45df-8216-d5277febd2c6','03ad506f-f86b-4dbc-952f-52b01e2467fa',90,200,30,0,'2024-07-30 14:58:35.620','2024-08-07 08:41:51.551','126200859-1-1'),
('013821ab-73f3-404c-bff1-748bd3bed6c0','866f9922-8932-4f88-9ae8-4b3b087f0b0e',75,80,42,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-1-2'),
('0138ade2-27f6-436e-8113-0fb99f3a3978','7420e731-9668-481e-99f8-c3ffadbe2321',7,104,203,0,'2025-10-22 13:06:48.332',NULL,'613252288-1-3'),
('013a8b08-4033-4dca-9afc-df133a5c402d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.055','223441694-1-147'),
('013b41ea-92e2-41db-913d-dc0d1f9fc453','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.056','223441694-1-37'),
('013c5d1c-d96a-40be-941e-0188930e5485','8ffb2633-95e1-42c6-91cc-be4266d6e2da',103,43,41,0,NULL,NULL,'449787716-1-2'),
('0146ffe1-1387-4795-a2c6-cd5099140d7d','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-5'),
('0149f581-f82b-4324-95c5-8fa1b0a82ce5','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.111','2024-05-29 11:17:24.597','449292416-1-1'),
('014a5260-aba8-490d-a4cd-37a3b4914cdc','9504c24b-6a37-4522-83ad-b302a5d583a5',44,82,23,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-1'),
('014a63c6-6743-4451-bb65-2b18bae41e6a','6cf8f42f-8f6a-4650-ae73-36d6d6c9015c',95,230,80,0,'2025-04-11 13:41:30.801','2025-04-25 21:36:15.191','644732617-1-2'),
('014f6bef-7f74-4155-adff-ca5ab48508cc','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-16'),
('014f9897-7fa4-4ab9-9693-af7ec1d7007d','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.333','2024-11-19 17:22:10.642','858854212-1-1'),
('014fca04-ca02-4542-93a9-7aa11dd707a8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.294','223444495-1-187'),
('015168a0-db39-45e8-952c-a2bb008d71b4','0a94a330-c190-4d8f-bc87-1e36db747252',207,99,70,0,'2025-07-19 07:51:58.811','2025-07-30 08:02:01.464','371408514-1-2'),
('015667c3-a710-44dc-8e0b-73307e24687c','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-1'),
('01576263-d04d-4e7c-8fb3-5516eed15b33','2a9e974b-aed6-4ac1-b9ec-1a2cb64ca83c',0,0,0,0,'2025-01-06 13:08:26.305','2025-01-08 18:08:26.831','478705604-1-3'),
('01586f7e-7397-4aec-a0ba-787e94ab5004','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.294','223444495-1-137'),
('0159ab2a-4007-48e9-9637-377e07204b97','2ab41284-325e-4735-a02e-0af4784fee90',59,10,93,0,'2024-11-21 10:29:03.971','2024-12-15 17:44:32.458','982844191-1-6'),
('015a0daf-0312-4834-ba77-bbbe7c711199','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.765','248692077-1-42'),
('015e1462-86a2-4ac4-9255-7d4ebbdf435a','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.329','478498501-1-4'),
('015f5fa7-1b02-45e6-bdba-38eab60d0fb5','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.639','2025-07-26 08:29:57.891','412218985-1-36'),
('0161663c-1add-4bad-9ca5-2cd76264a215','d457d99f-e3fa-4b05-88ff-7a942d587be9',0,0,0,0,'2024-05-08 18:43:18.555','2024-05-21 18:46:06.354','745483178-1-1'),
('0161b7b6-4fec-4bb2-b8e4-7e6c867d908e','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.061','2024-11-09 11:12:20.375','248259363-1-3'),
('01620d77-b665-420c-9966-7060fb6b3df8','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-1'),
('01622af1-c1b0-4b85-ae72-12ba99a37fa2','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-10'),
('01642815-cf23-4188-8313-959de4f04811','6ec87888-8b87-4bf1-adae-d5b6742225d9',160,200,4,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-19'),
('0165ee01-bd25-46d4-a5b2-32daa86467ff','3da17157-28be-4bae-8dcc-745d0e93e591',105,123,65,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-17'),
('016897ed-cb79-4b1c-bbfc-28bfe5964f20','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',111,82,56,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-1'),
('0168d4cc-a425-4377-bff7-bfe920340b48','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-80'),
('0169cddd-e22d-42b3-8e49-3295429e142b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-2'),
('016d8b18-9be6-4d5d-ab6a-eafad2d5f1f7','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-1'),
('016d9ee5-deb6-4312-a048-9acd3f77e214','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-20'),
('016f30d2-64e8-48f0-8534-a2a375ae08ef','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-1'),
('016f5632-b8b6-4945-be8d-360b6f9456df','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',75,80,80,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-5'),
('016fa14f-1076-4d27-a933-0714406ac37a','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-1'),
('017020cf-7f39-4510-a966-584c6d76abcf','bf2fbd97-6d0f-4724-b25e-47e019854e49',79,214,2,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.806','745212688-2-1'),
('01722e37-9458-43e5-813c-04497a5a00c8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-20'),
('0176992e-506e-4a54-98a6-a41e1b31d5a6','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-1'),
('017743a2-2e2f-49b7-8cb8-330d2ab493c2','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-1'),
('017a1c98-39f5-4929-80dd-976bdc628ac9','e8b58cc1-698b-4364-ae95-f00b90174c08',135,192,10,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-1'),
('017c0b22-ae1b-4c7d-9e9a-d15eddf30a1a','8879b43d-a734-432b-9021-777b1ea513be',76,182,6,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-2-1'),
('01803439-e41e-4c4d-a8c2-7ce1b62628c1','35eeff3b-e518-487c-a326-3bee90657fcc',0,0,0,0,'2025-03-08 13:46:26.880','2025-03-15 08:58:06.593','910560938-1-1'),
('0182addb-0367-4f1e-94e4-358ff5f3271f','743ccdda-3eee-4f87-8835-f0f9348b6b7e',80,75,75,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.916','501874784-1-4'),
('01859b5a-0b72-4408-8058-b553530250fd','ab6d3108-30a8-4fcd-b5be-9a799e904968',96,204,28,0,'2025-04-28 07:40:40.288','2025-05-06 11:26:00.016','598454821-1-4'),
('01899403-c51a-4590-aa75-d608f6f16a47','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-1'),
('0189f221-bfb8-41e8-9c4b-0fae6e650bd3','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.052','2025-10-16 08:43:48.733','412467921-1-20'),
('018bc965-25ef-46e2-be35-fa2b771fb70f','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-68'),
('018cba8b-8cdf-418f-b45f-2cca5d0929bf','5cfaac61-843e-48a3-bd83-f4bbe268d1ad',0,0,0,0,'2025-04-28 07:40:23.330','2025-05-10 20:12:34.676','465782662-1-1'),
('018dfc26-b51b-4434-92e2-7f1dd428a35a','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-12'),
('0193e23e-7ff5-48f2-8d54-4955b467f067','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.747','2025-01-17 11:00:45.958','478631020-1-25'),
('01953229-1247-426c-9ade-af635773bf64','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',33,18,210,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.546','614707427-1-6'),
('0198026e-9719-477a-aa44-01864dea6be5','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-1'),
('019c5b65-e58e-4828-a73c-6168d2dbfc4a','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',0,0,0,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-6'),
('019cd3ba-7915-43f7-bc84-f94752fad749','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-2'),
('01a25440-82b4-4fca-b520-f66e2fdadb28','9bb1caef-a37f-4f55-86cc-6aecc99853ff',102,57,85,0,NULL,NULL,'221607575-1-2'),
('01a28d7e-dede-4b2e-aa4b-329df35218e8','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,7,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.850','750717756-1-21'),
('01a9cbcf-c60f-4a31-974e-4095019b485f','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-21'),
('01ab07b2-539c-40b7-a69c-6f7322acbd51','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.536','2025-02-27 06:36:39.867','412346704-1-30'),
('01ab281c-6d77-4e10-b182-6d3aeaceb0f9','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-37'),
('01ad6fe9-746f-4734-8f16-81404648d062','c900d790-eeff-48b9-9f2b-48972c98ac32',43,27,220,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-1'),
('01af2647-618a-4a9b-b2f4-9d82d37a3067','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:51.708','248284003-1-156'),
('01b582e3-8e6c-49f8-affd-58faee986d15','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-17'),
('01b89397-1048-487f-bb6e-bcdf9db683eb','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-5'),
('01ba8552-fd29-4331-aa28-4e887d72de8e','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-1'),
('01bbe54d-f526-46b6-a756-1d0f9a785141','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-13'),
('01bcd09a-cb4b-4117-8808-555b72715953','676dc697-7061-41a1-a8c3-abbff4eb9699',98,200,69,0,'2025-09-11 06:33:57.374','2025-09-17 16:03:34.523','437232562-1-5'),
('01bce067-d958-47dd-9580-261ae22aff0d','27a7bc54-5d32-41d4-9dcf-f63732db8996',178,73,100,0,'2025-07-29 12:58:51.566','2025-08-06 17:56:14.801','817630523-1-1'),
('01c21c93-ac02-4292-b9df-87aab83aed42','0dc5e5d6-cace-4501-9a0d-ff1d1e995f89',44,43,79,0,'2025-08-27 19:40:01.500','2025-09-06 07:19:02.562','598961911-1-1'),
('01c293ae-810d-49f4-abf1-06f4f1abe567','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-1-163'),
('01c74a74-39d8-4643-9852-98623bb77ec7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:26.176','248135683-1-222'),
('01c81dbd-70fb-4106-aa4a-cfb7c6da9e9d','beef7e58-43a8-45af-a8d0-f733859c2592',0,0,0,0,'2024-10-02 09:27:09.259','2024-10-08 09:24:47.606','745170376-1-2'),
('01c8982c-d29e-442d-96df-c27b653e0c47','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.985','2024-03-29 17:58:10.537','655111652-1-20'),
('01c9aa3a-da16-4062-b64e-32f264014cf4','6f44b113-5917-40cb-9c98-9456f8c03518',90,7,204,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-1'),
('01ccad49-264f-4095-af06-275b440a2b5e','140facd2-f55a-4a12-95ae-07ab47a00128',68,5,230,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-6'),
('01ccd2f8-62d6-4d71-ba9f-32567f3d36a6','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.908','916836796-1-1'),
('01d4fa3f-0075-46f6-b85d-7d623080abc8','39e13ebb-f956-45fe-b3a6-284deb267677',54,73,101,0,'2025-09-01 11:06:21.881','2025-09-10 17:04:31.773','644513470-1-1'),
('01d521fe-d393-474f-86cb-1a4f3bc90f84','6d7b0b6c-ea00-4551-8f7d-3d248946ff1b',51,50,76,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-1-1'),
('01d666c9-28dc-4e30-945e-dd9193f99143','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-1'),
('01d98cd7-0a2a-46bb-a3c6-498c20afd6fb','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-1'),
('01da3d57-abbc-4a94-9315-f9e25bf92d65','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-11'),
('01da58bb-1429-4729-b164-cdd42e63d1a1','43b8384d-aa9e-46af-869e-8c40c8c2e87e',105,80,70,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-2-1'),
('01de959e-0530-4e0a-81a7-2cb10079c0f0','546ad3d0-25c2-43dd-9443-e48b8e5b6530',60,9,182,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-65'),
('01e04a84-e179-496c-b750-c2a7abe6f1c5','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-57'),
('01e2fac1-5efa-461e-88e5-6460d20675b5','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:53.638','248284003-1-82'),
('01e53b37-683c-4bff-8414-637640834753','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-19'),
('01e699d7-0ab3-465d-abb4-fd7a7e2a1574','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-82'),
('01ea1edd-01f1-4f21-8ef7-b49a2d25725f','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-36'),
('01ead1dc-e857-4c17-9454-4443fee1f21c','fe15fb75-251d-4801-a8ca-caa3d5567cda',97,148,70,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-3-2'),
('01ed05d7-927c-4c5f-b949-cbb0cd59be9a','1c3805e9-6884-405d-bb40-3d257f12ef95',163,93,6,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-2-1'),
('01f0237f-1470-4005-ae4f-52ea6a989ddd','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-5'),
('01f162d8-507b-44c0-aad1-486b7157b426','76087092-4086-4cd5-acc6-7f775e746dc2',100,115,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-1'),
('01f31182-9b4f-4f16-9eb0-be9f37d45091','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-3'),
('01f3b16b-fc1f-46e2-9899-64be74b25b87','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',78,65,70,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-1'),
('01f56798-9430-481b-85ad-e75a874f2805','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-3'),
('01fd2446-ee79-4961-9654-2d9397136eda','546ad3d0-25c2-43dd-9443-e48b8e5b6530',45,57,13,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-16'),
('01ffa433-e66a-4b70-8575-513fc11d64a9','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-1'),
('0200aa35-61a6-460c-9966-537c8d624bf3','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-67'),
('020479d6-8c02-4aa6-ac55-2180a510cf6f','c90aef9b-b83f-489b-afc9-92320b0dc24c',35,35,50,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-5-1'),
('02055497-a508-44ec-b984-36ec46d60fbf','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-40'),
('0206c650-7f83-4002-a03e-f1b2de84457e','159c73ed-083b-4d67-98ca-6adcfc554962',28,205,125,0,'2025-10-09 05:39:55.568',NULL,'046517356-1-1'),
('02070c0c-4827-4fd6-ab09-af95abcd8dfa','42b7553c-1533-4400-b356-4c6840431f4b',116,37,240,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-2-1'),
('0207fd73-c879-4be2-9d8e-423927382d50','410d238f-8bdf-4cf3-81b7-a69f07022dc2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-4-1'),
('0207fd93-d796-40eb-aa97-4bb83380a332','69acd97e-52c0-45ae-adf5-ee013e52776f',28,28,41,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-7'),
('02081f63-9dce-451e-af7c-ad84701f5277','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-33'),
('020858d5-8b71-479a-a73a-bafb8ddef485','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-6-1'),
('0209655e-3ba4-4f09-b72e-651590d070f1','7a0fb46c-8489-4038-968f-f3816bfad167',96,72,59,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-3-1'),
('02098443-6b26-45ef-824f-b631ceda2ac1','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.897','734957360-1-1'),
('0211504a-f8ec-49f6-bc17-aeee601bba23','6a308121-6cf9-4384-8446-08182bd669fd',70,46,16,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-14'),
('021306ec-c2f5-495f-ae0c-e7448a8034b3','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-37'),
('02131545-52f4-4749-9318-9abdbd3f7773','d5fa404d-79a5-4cee-80e5-d721647dd05f',57,76,102,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-5-1'),
('021621f5-4e0b-4476-8e15-f846474f9aeb','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-86'),
('02179e80-0e25-4862-8af5-071435f49664','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',90,70,225,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-4'),
('021ce156-ebc1-4d1c-affe-2a02e2d89e7c','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-7'),
('0222584b-cdf6-4e36-98a6-72d0268808b5','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-13'),
('022277b6-0f22-448d-8d9b-c2b99e5f0f26','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-2'),
('0222a575-7c98-4904-9d5b-30367b4af5da','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',14,12,82,0,'2025-01-26 10:54:21.564','2025-02-10 14:16:27.212','428341956-1-4'),
('022514b8-1ca1-409b-bf5a-beac8b043da1','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',123,164,9,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-15'),
('0226718a-7f4f-4f16-9918-cbadf96e5bac','32bf5597-f8fa-4d97-9486-383228c7229f',100,235,80,0,'2025-09-16 16:29:42.463','2025-09-30 06:16:14.755','428107185-2-1'),
('0228caa0-aadb-4365-b762-fb49779bb0cc','83e59763-5e8a-4ca2-9fda-483f9927c759',43,86,146,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-2-1'),
('022a7f23-bc6d-4baa-ba2f-c93b327bee94','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-1'),
('022afc7d-4530-4814-840a-44852840a8db','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-79'),
('022b3d6c-4462-4631-9c5c-1a2f64ece270','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-2'),
('022d8891-a5b8-455c-9fba-2311e39e4854','9a2158b1-4eb8-4741-9d0b-70a8ada04f34',98,20,8,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-1-4'),
('02328e34-3e92-4e5a-8912-c7651234e043','f0485a78-951c-4f89-bddf-b2003f0bf783',57,41,48,0,'2025-10-09 05:39:55.569',NULL,'046517356-3-1'),
('0235a4d3-53f5-4948-89fc-9af13af2f52b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-3'),
('023673dc-ead4-4cab-9690-4e9b3dbd7277','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-1'),
('0236efe8-86b9-47b4-bd84-f32a81d847e8','e7f31a78-648d-4a5e-9111-1bf7db38dd79',160,60,13,0,'2024-04-27 08:45:42.752','2024-05-07 15:42:22.459','501216728-1-1'),
('02378558-88e7-49bd-a2d2-41bc8d817490','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',178,63,4,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-3'),
('023787aa-652b-4f47-821e-6e5a0868699e','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.460','734579794-1-1'),
('0239c6b7-50f8-4f26-a6da-549cba6fe56d','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-78'),
('023a1f33-0b6e-4ecb-8115-6ef189d25cca','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,4,0,NULL,NULL,'478893710-2-9'),
('023a9061-8796-45ab-88b5-ad20c4e98964','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.815','745645972-1-3'),
('023bcd07-8fd9-4986-b3c3-56bb6e6659c1','0837f315-9787-4faa-af33-29b55e4b0f2a',51,51,78,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-1-3'),
('02414452-0191-41ee-aac1-1278f8de52d9','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-4'),
('0243d1bd-4a07-45e2-a2e5-b1f0bee0cf14','571f94e6-7fb3-48e1-a3cd-dd123cdbe09c',7,98,190,0,'2025-08-14 08:21:25.981','2025-08-25 07:11:49.870','613378961-1-3'),
('02448d79-e444-447c-8978-fb415f3ca979','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-84'),
('0247001b-da48-4d19-94ae-035c1a7b8e54','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-73'),
('0247014a-aaaa-4cbc-aa73-b93a86124eb3','d002bcc5-a422-4c14-8bcb-77615c5f9183',101,52,76,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-4-1'),
('02487c2a-dae5-4a6d-b233-af4c6222311b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-51'),
('0248a369-6422-4905-8cb0-596c2333e7a2','855d727d-98db-45fa-811c-d503dd78babd',52,65,81,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-1-3'),
('024b2e46-fe8a-420e-a3b0-b86c34c225c2','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-6-1'),
('024cdeb1-5a03-413e-bf26-9de40deefd6e','555b2841-46e8-45eb-9191-165bb36234f5',240,70,90,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-1'),
('024ede61-b697-4aaf-b201-9dd292e1d954','46d1512a-2bfb-476d-a224-9390f3e194f2',166,31,12,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-1'),
('024fef82-0f7c-47bf-b3eb-18f4746ccccd','859ce399-c54b-4755-9400-79822660b5df',51,50,76,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-3-1'),
('0250d76c-e872-4383-a588-7050f24d0e20','1dda97ac-51c1-4b89-abe1-67ed131b4e9f',87,60,223,0,NULL,NULL,'745883224-2-1'),
('02545d93-9b93-4e03-b0da-b1caea7fab83','4528d00a-d527-462a-82f4-148016c4f77e',55,8,115,0,NULL,NULL,'478892203-2-1'),
('0255bf37-3c91-4ac8-93f1-9d0f3c926744','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.765','248692077-1-51'),
('0258e1ee-4eec-4a44-a035-f609e66f1815','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-15'),
('025b668f-4417-4e70-b9d7-5a0dd21fbb69','fff846e6-362b-483f-ba3a-df216849c545',53,71,96,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-1'),
('025c896f-6a89-4737-80b3-d812c2d64b3a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-63'),
('02604a1c-2626-4080-bd83-0f8164748ac5','6b81ed22-c981-4a7c-9467-3ff418f2c899',90,90,36,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-1-1'),
('026158ef-465d-4dc1-b9ed-7808e5b82d70','aa4d2b23-8dc1-458b-bad3-3f299804fc95',85,100,245,0,'2025-04-21 06:13:15.634','2025-05-02 17:10:58.407','910884465-1-1'),
('026351ca-3dc2-47e5-b59c-26436b3853b8','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-1'),
('026487a0-9ad8-4a63-824c-e18238e972c6','6cee1429-9935-4eae-be32-dc630b6d70e8',100,78,70,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-1'),
('02648d91-560b-44a0-a5a6-d6e64ac976ac','06e319ba-26b5-4ce5-b9c0-d2e144aeabab',245,95,65,0,'2024-12-13 14:49:16.355','2024-12-22 12:45:33.978','976942444-1-3'),
('026d6a0e-4875-4b13-a849-7873fec31f95','db333680-8c96-42d1-8a24-6c5ab1346079',23,23,17,0,'2024-11-12 16:16:13.047','2024-11-20 16:19:02.417','910891585-1-5'),
('026e3cdf-dc1a-4284-add1-18e9c34614da','c1f7f307-9a20-4d05-ab65-6ed5137d6fb7',40,40,46,0,'2025-02-23 12:39:17.318','2025-03-05 14:40:53.436','42877136-1-1'),
('026e42b2-651f-4960-82c7-11d46bae85ce','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.808','41270066-1-28'),
('026fcac1-674b-480a-8157-f30faa6a6dfc','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.140','081789192-1-5'),
('0276f686-d514-495d-9433-c1f39fae235f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-56'),
('02774ea6-424a-43d2-9dc9-75f6fa7321c0','3da7ca23-1096-4e12-bda9-57170294f0b1',120,260,52,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.512','412977009-1-2'),
('0277d884-f969-46ae-acf1-e4d66066137f','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.460','734579794-1-2'),
('02819109-de53-446f-9c0a-c4c4aceeee2a','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',91,102,57,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-4'),
('0283ddde-7118-4c3c-b8c5-b14c1868c604','743ccdda-3eee-4f87-8835-f0f9348b6b7e',110,56,82,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.916','501874784-1-6'),
('0284a5df-cabd-492b-a956-8ab1b71e405f','05070777-94b4-4611-bf2a-769cc697d97e',0,0,0,0,'2025-05-23 14:05:53.230','2025-06-03 18:26:54.661','657147391-1-1'),
('0284acb4-5d51-48f8-8968-c2a94c68893f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-99'),
('02852790-53ed-4ec5-985f-26ea82ab1e78','f9861f37-efe2-4e3a-930c-f694c4e10c6f',98,177,13,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-1'),
('0286d45c-b66a-4a53-b599-ebec916cab7d','8f1b3fd1-9289-4cd5-ad84-508968f285df',103,194,85,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-2-1'),
('02877b09-19e6-44ad-b247-18a38f5c0f53','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-43'),
('028a9c2e-9ba5-45c1-bad7-f09ee48f2346','9a5c9f09-ecda-434f-8efc-112c1bc44fbc',0,0,0,0,'2025-07-08 11:31:05.659','2025-07-25 18:05:09.590','371440688-1-5'),
('028adfb4-86ab-42c3-844d-97d10ae72f68','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-2'),
('028bbb5d-586a-4204-ae52-87d089f40bfc','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-2'),
('028c3c4a-60fc-43f3-a5fc-63cac21d7ebb','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',96,52,9,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-2'),
('028f667b-1c14-468b-b7a6-cc41e500425f','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-2'),
('028f73c5-459d-4dd1-b6a0-e395b7139092','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',83,52,27,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-6'),
('0293847c-164a-479b-9af5-dd0e36c1ced7','7acada5b-2716-45f6-ac98-44841652379e',51,51,77,0,'2025-05-09 18:44:07.565','2025-05-20 16:27:39.653','221294149-1-2'),
('029829ec-3f77-41dd-ad14-38d99f278f9c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-205'),
('02995e64-2d26-48e8-883a-d4e454f91a29','6a308121-6cf9-4384-8446-08182bd669fd',264,61,11,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-21'),
('029b1368-8909-411a-9286-51c6b3e50254','081140e6-a4e4-4c40-817a-e779fe364e99',0,0,0,0,'2024-09-27 14:06:37.992','2024-10-05 11:44:48.002','745744183-1-3'),
('029c9c5c-627b-4118-a31f-a8cf9f911987','2d6cd8ff-fddf-499d-ad4d-717285b10f9e',143,85,15,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-2-1'),
('02a05176-bcfb-4e3d-8397-3164fe98452f','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-1'),
('02a22715-95d1-4772-8948-89f9d40654bf','9547b618-8081-409b-9076-efd2957a9e1c',80,80,66,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-2-1'),
('02a286e8-b1a5-4070-95d0-a14deac446ef','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-1'),
('02a455da-1e61-408f-902e-177619a04975','1d063093-76ef-408d-ac4e-9b14c6ea3828',100,100,60,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-1-1'),
('02a55778-12d5-4f62-986e-cbb03a214752','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.229','221254389-1-6'),
('02a745e2-9e6e-49a8-b6bd-a0e038313062','5abaed5f-da6d-4729-8667-542ec9faa994',100,70,115,0,'2025-10-25 08:59:12.926',NULL,'371985580-1-1'),
('02aee637-1440-423d-a2e8-d957ffb45867','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-10'),
('02b58acc-9e58-47df-a0a7-1664c97e3306','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-1-215'),
('02b5cc9f-6d39-4b8f-bb19-d6109078db82','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-73'),
('02b71781-219b-42fb-a73d-2fdc079e7a16','d090324b-381d-4576-9558-a6a55f702152',93,55,100,0,'2025-08-14 08:21:31.391','2025-08-25 07:11:25.135','745824761-1-4'),
('02b7676f-d6e4-49a9-9fc6-1e344c0d5f63','c01d9e07-371b-45a7-a83f-217b42fc1fd5',72,100,54,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.265','644593040-1-1'),
('02b7732b-94f9-45b8-9112-d83a70db71d9','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',24,153,7,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-1'),
('02b7820b-336a-4168-b9ff-4e55b12e1955','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-48'),
('02b94155-8a6a-46fd-9d35-fa4ded8d8215','86b60aaa-bb99-46c0-a4af-dcec737058c0',105,70,120,0,'2025-03-06 10:32:08.547','2025-03-14 11:07:09.096','613374971-1-1'),
('02b966df-b464-446b-8fb3-05d03548cbd9','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-49'),
('02ba0fb6-be8c-4526-9582-64c6b78e5c99','33130430-eaf5-4f70-ad2d-3853f3838c0a',0,0,0,0,'2025-05-28 19:09:09.353','2025-06-05 12:35:16.516','745967323-1-2'),
('02ba2395-898d-45c1-b8ff-620a7e71db6c','9b637b9c-c2ce-4522-a986-3c8fdfd10d6f',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-5-1'),
('02c28b0d-d2ae-48e4-b1db-f8bdbc436bf1','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-1'),
('02c65be5-94f0-4a5a-81d2-315e6c0b183a','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-49'),
('02c65f7f-26b0-4680-ae69-f54ab2850313','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',62,11,260,0,'2025-03-13 12:21:31.497','2025-03-22 07:37:28.261','982726615-1-1'),
('02c6d852-183a-4b4a-a12f-5187f376b566','d9935e91-5c26-4669-9a9a-83060292f497',100,123,67,0,NULL,NULL,'478702481-3-1'),
('02c6e342-073d-4c2a-b88a-f95b87b88a8f','7b68e44d-2397-492e-b71f-fe3fb99d892f',121,96,75,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-2'),
('02cec227-909a-4fa5-9b95-7397c2f5a3bf','bbf524c3-27fa-486f-bdf9-142bac6ace56',230,100,65,0,'2024-03-16 14:34:23.702','2024-03-25 10:42:32.899','976751266-1-1'),
('02d027b7-cf61-485a-9c18-0f2942571db3','3233f103-8c48-4a31-af23-0a9a1da3e7c4',65,100,135,0,'2025-08-27 19:40:24.697','2025-09-03 19:37:47.968','613661947-1-1'),
('02d2f4d3-64b2-4365-8592-c33ba8db5464','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.885','2025-07-03 11:20:19.125','64415501-1-4'),
('02d44f9e-f8a0-481d-a8a1-77623bb98e5f','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',18,20,102,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-1'),
('02d5daf2-17f7-4ce2-bdca-d0b29c5707a7','9c9ece2e-cdef-44ae-9960-980614fe02aa',65,124,124,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.774','478243785-1-3'),
('02d8fe89-13f1-44c8-bc0c-4526faa7e918','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',185,50,10,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-1'),
('02db6426-b6ac-4509-bda0-09ab42a07cc2','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-68'),
('02dc6ea7-118d-4f09-8b8b-c753eedf4758','82ac2d58-053d-41f5-a402-9275c56203f9',63,254,11,0,NULL,NULL,'428172853-4-1'),
('02dedb6e-0f57-4626-ad0e-60457b7896d3','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-5'),
('02e049db-abd6-4acb-a509-9e4b3592c5dc','0cc39437-8ee1-47ea-87c2-b9fe770c2259',102,79,165,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-4'),
('02e510e9-507d-4746-89fc-b12c4f50b111','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-3'),
('02e741ed-4dd2-4e83-aa08-e60cc6d05883','7f827719-d0a9-4910-9aef-532cd3731df7',18,49,72,0,NULL,NULL,'745995046-2-4'),
('02e7ee75-2920-4da3-9339-16c768c85132','87690a74-53f1-4679-9f7a-22c85ca0de64',180,200,30,0,'2025-10-08 17:43:22.019','2025-10-15 08:13:05.462','745816946-2-1'),
('02ec5f7b-e857-4992-aeab-eb66006df7c5','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',167,67,8,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-3'),
('02ec8d5c-bce0-43ad-984a-475c6ccec420','5c42fa66-1197-4462-860a-1846d76f1998',0,0,0,0,'2025-03-27 15:06:14.921','2025-04-05 13:45:31.240','745789797-1-1'),
('02ee1bd3-0ff6-44fe-bbf6-4f31602bd70b','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-28'),
('02ef7328-af8e-4ccd-aa53-b8b05b9d4dbd','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:54.827','248284003-1-69'),
('02efa99a-ca54-4cc0-83ea-484138000401','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-1'),
('02f10592-b7d0-4c40-9eb8-4eb3cfdf0491','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-1'),
('02f5cc79-b041-4775-8cb5-933d01821d8f','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-28'),
('02f5e35e-544b-4f1c-be4c-a3cd763caead','760f21e5-1c75-42b2-8444-f3a44aa66d10',243,100,72,0,'2024-08-21 14:53:13.136','2024-09-02 08:33:30.133','501869420-1-1'),
('02f6393a-afb6-4d71-8d02-b80bf8a2eca4','a5506c59-0e9f-48a6-9b69-13a5163cf994',98,160,18,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-1'),
('02f8f726-6d38-4dff-b699-63df102360c5','a71e29a0-9fac-4e05-b331-b3c24249dc5b',97,177,65,0,'2025-09-24 11:01:47.721','2025-10-07 06:18:03.066','371495147-1-1'),
('02f924ad-afea-48f8-a9e6-09a3fe35e5b1','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-7'),
('02fa739a-dc0b-42c6-81af-0fc39e350af0','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-1'),
('02fedeec-94c9-45f2-b9ab-23cd65dec5a0','ae267513-3704-433b-b18f-6d6210d048fb',106,100,80,0,NULL,NULL,'644104537-4-1'),
('02ff32ca-287f-4e3c-97eb-80486bc36201','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-161'),
('02ff7c84-aabc-44e6-90ce-dea7bd883a76','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-1'),
('03040f92-f5b0-41ac-bfc7-fce56de60713','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-19'),
('0305ce8e-7d87-49ff-9155-0af829b08b40','97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6',51,51,77,0,NULL,NULL,'50552381-1-2'),
('0307c980-6ca8-41ca-b609-9b7bd4215a9d','cc5b1253-5911-4a8d-a337-c4002b9a8b25',51,51,77,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-3-3'),
('0308de20-8600-447e-b462-5f2b0b6cad97','ab45478c-7fcb-46bc-aebe-fab160a476ef',93,58,24,0,'2025-04-28 07:40:29.965','2025-05-08 07:31:19.557','248359668-1-1'),
('0309e713-92e8-4ae7-8d56-1ac97292af8d','4d21a562-4444-42f3-8ddd-8d2f41fb562e',95,70,173,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-2-1'),
('030efeff-21bb-4491-b0d0-38421e30aa61','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-71'),
('030f05f7-59f1-4d6b-8a12-5278dac1e10c','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',101,56,82,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-14'),
('03116bbf-51c2-45cc-a376-2994dc16c9f9','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-46'),
('03153fb6-8cf7-4e5e-8c74-fbf1f391af3c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-147'),
('0315beab-c7a9-4e14-9cd1-c56c6e61eddf','e97539d8-0d26-42a2-bfcf-9866d5bd205b',34,8,216,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-1'),
('031b3b43-c45a-4548-b680-db93c86b80e1','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-2-4'),
('031bac74-97ef-4bc2-8550-c2896aeddd96','5c0848ce-c79c-43de-adfc-f4532526d6bb',225,45,30,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-2-1'),
('031dc84d-df31-44ac-893d-0f1217d628a7','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-42'),
('031f2212-ce34-4bb0-8700-c55117cb1439','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-11'),
('0320f6b9-8cb4-4978-ba09-fbbec6a8e559','e31f714c-14b3-46df-a325-7cbfccab37bf',90,38,34,0,'2024-10-25 11:54:23.067','2024-10-31 07:50:35.355','44998008-1-5'),
('0323cb13-9c55-44f1-bab5-ea5191f4510b','e1e33996-1f56-4589-8cb3-6163af9d398d',70,95,95,0,'2025-06-21 04:33:47.207','2025-06-30 08:56:30.724','695394738-3-3'),
('0326bd39-33c0-4392-b6f5-ea1b6f0704db','72fb829c-8230-4d8d-9137-c937d756af88',0,0,0,0,'2025-02-27 16:45:25.397','2025-03-13 09:28:37.647','614680407-1-4'),
('03297b11-7089-4d1f-a025-964bdc412de3','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.194','248143023-1-10'),
('032ad4c1-c397-4948-820d-93cb24816227','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-14'),
('032c8981-76cd-465a-a7b5-b703f2532c5c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-78'),
('032d76ee-8454-438a-8828-95a693a78c61','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-1'),
('032dc309-1ce4-4a69-a6b7-35109c96e0f2','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-52'),
('03305447-f1d4-4599-a9cc-5e65c94479b3','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-80'),
('03333ab8-e45c-4872-899d-0e459e6203ef','b7fbd54c-bcc0-4613-9901-d06327048472',40,5,201,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-4'),
('03345507-bcb7-4254-aec0-f16c2160f5f6','8ec304ac-bf41-40b1-83e5-e7da60bed6bb',76,101,52,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-1-3'),
('0337f241-de04-4e7b-9b09-42886219703a','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-3'),
('0338a576-8ab2-42bb-8c3e-988c2c7647c0','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.895','2025-01-29 14:44:49.972','248135683-2-67'),
('033a7ae4-1971-485f-a8ff-d8e2c7068e0d','a56038e7-2267-4938-bfc2-ec55e9b729c7',54,96,75,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-1-3'),
('033bb11c-0d36-4606-9674-3ac2edbd8672','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:27.005','248135683-1-198'),
('03418805-fbbd-4385-b91e-6e2b844714c1','10ad24a8-579a-4070-b518-bffa0ba09e26',12,6,210,0,NULL,NULL,'428905379-3-1'),
('034591a7-dc2c-41a1-8443-3fe9da0b951f','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-1'),
('03460b80-52d2-4ec2-83ae-038e048329cf','a769cd75-8095-4eeb-999c-d1a749589a77',256,60,16,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-2'),
('0347c4ac-779f-4ec9-8c51-3d7ac7cc5d58','543dfe18-75e0-4198-9d24-c6d0458898e8',65,72,98,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-1'),
('03498e1f-b4dc-4a2f-a9a1-d8c8ff011f6d','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-4'),
('034a62a3-f32a-4b93-a070-0252141bd3c1','17d876d0-c0da-44dd-b1ce-96a58d3ab218',45,28,10,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-2-2'),
('034afee7-e737-4761-a4c3-1143d7041b26','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.985','2024-03-29 17:58:10.537','655111652-1-30'),
('034cbc78-ceaa-44bd-b318-7a7f35140915','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-245'),
('034ffb5c-1fee-4ffb-aee5-94e2520d9320','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-1'),
('03514ac3-89f4-4ab1-aa87-5c808108eb01','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.065',NULL,'51557557-1-1'),
('0354f11c-57c9-4354-9cc6-e9925dc61eba','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-2'),
('0358080f-0c31-470a-9658-269d60b931af','b9223e92-3707-4fec-b48c-9196dfa86e52',0,0,0,0,'2025-10-08 14:43:47.935','2025-10-17 20:57:02.711','896998229-1-1'),
('03585e3a-f9b4-4d6c-9e90-8664d7ea5fcb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-113'),
('0359b6a6-e293-4820-8606-0360c23ade57','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',94,204,30,0,'2024-09-03 15:28:32.987','2024-09-14 18:52:26.604','976543269-1-1'),
('035a2a61-b990-40b7-9a16-e501b40bffdb','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',125,100,70,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-1'),
('035c6cbb-6ef9-4421-b74c-d0118cab9107','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-106'),
('035e4399-b0a1-409d-a184-e81e30bf3fee','9475fb01-96e7-43e2-98ce-8bd32bc925f5',0,0,0,0,NULL,NULL,'614941926-7-1'),
('03626b2a-ef3b-42b3-8f73-d5c5c602f363','92f4338e-023b-42d8-a569-19b0439633e2',68,95,87,0,'2025-03-08 13:46:08.990','2025-03-18 18:33:04.535','644130393-1-5'),
('03648633-7e53-4838-9e8f-6755db06b8ed','1a9dfce0-e85f-42f7-8b4c-64b52dbced4e',55,66,100,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-1-1'),
('03681081-1e81-4164-8398-1cd90fb063c4','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.895','2025-01-29 14:45:10.999','248135683-2-74'),
('036b4022-0fc7-483d-a0f5-398433c0284a','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-1'),
('036c2728-f74b-4e64-bb0b-76ca265fbb06','803574ae-1ef3-4704-8432-986beb633506',50,30,210,0,NULL,NULL,'614364554-4-1'),
('036e6189-bf7c-475d-a1ec-9f77c31b4083','845cd508-3836-4f7f-899b-bf28d0f90884',68,18,136,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-2'),
('036f3fca-ad3f-4085-91fc-e9e2ce096840','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-228'),
('03712385-ce2c-4b7c-a190-abc5d83ef52f','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-81'),
('0376780c-0bdb-4fa8-86d0-f066a0c36f91','2652ccec-4069-4b11-b5b6-cbdf95122b6d',75,62,181,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-2-1'),
('037e630c-e111-4f08-bb72-ab12c2fada8d','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',90,60,25,0,'2024-03-30 07:11:57.219','2024-04-02 16:08:31.693','982501931-1-1'),
('03803a90-54b8-4808-83b0-a829908df260','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',105,32,50,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-2'),
('0384cc97-6fbd-42d3-865d-f38bb2ec2a60','304740fa-6d96-4ea0-a997-094361062796',26,36,206,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-4'),
('0389ab5b-e2d8-4aaf-b4e4-57782b7eaae2','0ac02745-1f8b-4586-9467-0e3e924b4d26',0,0,0,0,'2025-07-08 11:31:26.868','2025-07-21 10:22:45.359','657635062-1-1'),
('0389c46e-62af-4314-88a7-7c0e5fe85414','0bd42145-fdd8-4793-a5cd-a2e404d37142',70,210,5,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-8'),
('038c4c91-5d77-4026-851f-b7709f8eccff','e31f714c-14b3-46df-a325-7cbfccab37bf',80,80,70,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-3'),
('038d8c62-2ddd-4cc6-ab96-1405f4a1bbe8','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-2'),
('038f2177-eb2a-4a18-91bb-4fec7d011895','51130bdb-f938-4bc4-8f49-46c9b089489c',235,95,60,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-1'),
('03935f5e-4a1b-4ea3-a43a-6a6cb366bca7','158455d3-2130-4d98-9534-cb36e6c15df9',68,67,37,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-9'),
('0393b5fc-62de-4712-b9cd-16f23866ac1f','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-26'),
('0394df68-356b-4eeb-9d84-fedd763d6440','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.881','248535027-1-1'),
('03971908-a90f-43e2-b8b0-aeb186b5d601','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-1'),
('039952c1-74dd-47e3-beac-d1f1e8deda14','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:27.631','248135683-1-148'),
('03a27d9b-3e60-4e11-a70b-4ca4fc5b3d7f','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-14'),
('03a3a1f6-b051-4c51-99c2-44967ce597dd','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.313','745832267-1-8'),
('03a764f8-3fe3-42ce-9039-3261542473f8','c98f6188-56c5-4870-be97-be71cf95f62e',30,35,10,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-49'),
('03a9263c-6841-453c-bba7-301910556c15','14ad5bdb-7df0-4df9-8328-3ee2c7a3e6ae',0,0,0,0,'2025-03-13 12:21:19.442','2025-03-24 16:02:29.861','97684781-1-3'),
('03aa45b4-f9b8-4548-a7c2-5f89378884ad','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-2-1'),
('03aca03a-211d-4c10-845a-8c96b89ba02e','919abdcd-92a3-4f54-8e52-871167a8810b',75,54,31,0,NULL,NULL,'598944852-3-1'),
('03aee90b-beab-4042-b6ce-df83dd53ea78','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-74'),
('03b47076-f523-4006-bec8-ff66878ea95a','d3cefc8b-69da-4840-90b9-b720a1f57e19',128,94,66,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-3-1'),
('03b52c7b-cbfc-44d0-990d-6a5745d1f3e1','7b68e44d-2397-492e-b71f-fe3fb99d892f',110,72,110,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-4'),
('03b60d13-1868-47ea-9e2c-d280099603fb','173bf365-8e09-4aa5-90c7-1bdda2c188b1',98,98,67,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.858','644637792-1-1'),
('03bb7a8a-8519-4791-a663-87e628b66e8a','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-3'),
('03bc9962-cd95-48f0-9824-e0504a14bcba','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-69'),
('03c0bbce-91d0-46b2-886e-be7b0f0bb134','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',8,37,50,0,NULL,NULL,'338991013-1-1'),
('03c41def-39c1-43c3-9669-c025cd858317','e89e7d75-4967-4c63-9f73-981469e531af',120,60,6,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-2'),
('03cb2c29-e3e2-4c9b-b2bc-84433eefb12d','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-50'),
('03d392fc-8a81-4674-a2ff-13a86d1f88f0','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-5'),
('03d3adbb-1009-4064-9791-46a2c66a71cf','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-3'),
('03d58fb6-928e-4bc5-9a97-6761fd009777','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-70'),
('03d73838-7d6e-4e82-bb4d-457dbbcaa87c','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-2'),
('03da663f-7175-46f9-8afd-6b47b3269948','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-2'),
('03db9702-8ac0-4132-bc4c-31af59bf4449','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-6-2'),
('03de493c-5f3b-48b9-ae8f-1b94b923d413','370a7590-6b28-4a62-8bc9-2de0a5c0a969',100,80,70,0,'2025-09-16 16:29:13.363','2025-10-04 13:36:32.357','437712381-2-4'),
('03e2c3a2-688a-43bd-94cc-73ff8fa893a3','d024ac00-3c90-4d85-add5-6d95182d7f3e',100,100,60,0,'2025-09-12 17:16:39.504','2025-09-25 14:04:59.283','817160215-1-2'),
('03e6dfa1-8ba9-4d90-aa42-a850d1abc896','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-6-3'),
('03e92a80-ad0f-4b49-8799-bdfeb741ddaf','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-2'),
('03eb0fff-5f5b-4b2a-b52b-9ad2cf3e6146','1f388c89-3645-4f72-9cfb-ca1d6893010b',103,56,80,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-2-1'),
('03edeed6-54f0-4b30-a2a8-1e1d5fbf978a','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-89'),
('03f9d03b-3a6f-4933-8551-ff4d7ce3d548','f4bf8c4c-4867-449c-8abd-6995be691baf',102,56,82,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-4-1'),
('03fc8ace-383e-4604-9ae7-0172eabe2d64','9affc7b1-09c4-4e84-b48b-d0c117c421b0',0,0,0,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.901','412280381-1-54'),
('040bb278-7268-4943-be6e-f74be26b1ce4','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-23'),
('040bdc00-88f5-43df-918d-dc12533037d3','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',54,83,10,0,NULL,NULL,'531240111-1-18'),
('040cbc7a-aa45-4817-817f-ac8e8875c85c','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-5'),
('040eac02-4c69-4c80-8a5a-f5f89ad051d6','c563f86e-fe4d-44fb-b91a-72261e82a6fd',106,7,228,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-5-5'),
('040faa6d-4ea0-4576-90a1-72ea9fd51aee','e821bf6f-ce55-4036-a505-910ce2b84e01',98,97,65,0,'2025-08-21 07:15:03.733','2025-09-03 05:42:06.991','598614826-1-1'),
('041037f8-4c5e-4c4c-94ba-2e111e5de55e','4f504ce1-6749-4512-ac63-b91e44735bce',0,0,0,0,NULL,NULL,'598772340-1-1'),
('0413f82b-c0a3-47a1-9c49-4ffd756c1002','57d11f20-03a6-412e-bd79-62615f3c7867',65,22,6,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-2'),
('0414aa71-09c2-470e-9d96-738a0eaa5a4f','8add455f-cadf-462a-8446-b3feef2203eb',0,0,0,0,'2025-02-03 18:18:36.497','2025-02-14 15:00:10.497','73555265-1-5'),
('0415a141-c381-471b-811f-9e757757ca9c','009ddf47-bf8b-42ff-9126-9bdf09a89875',0,0,0,0,'2025-10-02 03:45:42.166','2025-10-15 20:05:03.312','663743560-1-1'),
('04168b76-1259-421b-aca6-29d435f9c05d','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-37'),
('041836be-b2ea-46a9-8291-a9d4f873ce9e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:28.281','248135683-1-53'),
('041837ba-bda4-4a5f-aa7e-abd54fe54b01','a307363c-9911-4bec-ab96-f2419bd7e6fe',86,64,65,0,NULL,NULL,'9823833-1-4'),
('04192f58-0657-4e2f-8585-06e8244fec8c','ca4b53fd-638e-41d1-a236-22653e553702',215,65,110,0,'2024-08-21 14:53:28.675','2024-08-30 15:04:37.640','429340012-1-1'),
('041bdeca-2475-4506-ba93-8b5c33911c03','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-3'),
('041d965b-bef7-4ad3-bd7b-f50075ad648d','e1ca0884-0a56-41e9-892e-c3a62280a2ba',53,76,96,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-2-1'),
('041e311c-b98a-4120-b536-dcc7e6b965ee','7b8fb2b2-4189-4069-ae75-d1c721d42b09',7,97,198,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.040','221900850-2-1'),
('0420d5aa-fbdc-4e89-bdc5-6dfba6ed15a1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-78'),
('0421d817-115d-415f-b42f-0ec2435efeaa','a502c7d4-eee1-4a99-9f38-aab0a3c5c4cb',46,46,74,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-3-1'),
('0422561c-ae9f-477c-8798-5efac39e72da','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.569',NULL,'046517356-3-2'),
('042640b1-4e10-4584-a933-ddcb1498f616','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:29.397','248135683-1-203'),
('0427184e-1d8f-4caf-a25f-cb7bed84a405','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-72'),
('042766f4-2073-473a-a587-f48476b9daab','7cb14de8-95ba-4b58-a436-4d9a3ee3c7d6',72,54,103,0,NULL,NULL,'644104537-3-1'),
('042f5feb-ef37-4786-9c7a-a4e3a2fcc3d4','105baff3-99ad-4d7f-b4a5-116a7968849b',0,0,0,0,'2024-12-18 09:31:19.411','2025-01-10 16:33:18.465','248849829-1-5'),
('0433428a-bd9f-4839-839e-852b6f59f06e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-83'),
('0433944b-5790-467a-aaab-6f8f965284a8','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.906','2024-10-08 07:16:04.690','478955837-1-1'),
('043686d5-0233-439d-b201-97efca043ebb','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-17'),
('0438ae5e-1a5b-4f20-ab13-48e8deb80218','b94a7fe2-1d24-4836-a791-eb58ea037025',128,47,91,0,NULL,NULL,'613592756-5-1'),
('043c8319-0cf8-4e3f-b8e4-bb71e8987c9d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.056','223441694-1-67'),
('043e3b33-78e8-4538-a5d9-357b3f4162ea','0a851431-d5c7-4333-895c-c0ce142450a7',56,117,3,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-2-1'),
('0445530f-5e86-4e62-a20b-5dcefae087df','ade60a0a-c34f-4d91-ab5d-457a76ceaa2f',31,31,31,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-3-2'),
('04456d3e-d3d2-4f57-b86d-578262f56227','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.657','478901590-1-8'),
('0445fdc6-fbcd-4b91-a9bd-e22677c46a9f','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-13'),
('0449036d-9a41-40fc-a41e-a411d77a3559','f5a238d0-24d2-4881-bd26-6ef90af90fff',28,25,13,0,'2025-08-22 20:28:45.608','2025-09-02 06:43:20.130','43714618-1-4'),
('0449e8f7-233c-47f3-837e-3741e3bf7903','04dff17a-2b9a-4f35-a082-5684dfe5706f',43,77,8,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-1'),
('044a101a-ac86-4640-b80d-f43f39d6422b','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-41'),
('044bdfc6-55ed-44a2-84c0-a5bf3177873b','b1c85abf-7d3a-462e-b9c5-1e1f7b7dc803',90,19,12,0,'2024-11-21 10:29:02.614','2024-12-15 20:07:20.068','112787965-1-2'),
('044db2be-95d2-43e4-836f-e45dc9ddb7b4','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-7'),
('044e7458-904b-4bee-bee6-1f50f83e2a9f','c1d25f90-d493-406d-a430-9b65b4f44c5e',61,133,11,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-1'),
('044e99ed-3b11-4c21-b0f3-db2441265d11','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-44'),
('044fe67c-7351-4e4e-8985-6e7213f1170d','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',94,204,30,0,'2024-09-03 15:28:32.987','2024-09-14 18:52:26.604','976543269-1-2'),
('04516e6b-3442-49b7-a672-b6b494bbd76c','9504c24b-6a37-4522-83ad-b302a5d583a5',45,15,71,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-2'),
('0453663c-fa2a-4dfb-b8e5-700f04b24647','8eb817d8-4d04-4bef-b661-229b808c1d12',80,70,80,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-4-1'),
('045525e6-c620-44ec-835c-96abda77b60f','0a72fe75-568b-40da-83ae-d78004c511a8',58,85,55,0,'2025-10-20 07:18:14.789',NULL,'61340935-1-1'),
('045769b7-6a3e-43bc-ae47-f71604a79c66','62a8ed11-5b75-4aa0-85e3-55f45545c40b',95,65,222,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-1-1'),
('045ca28e-f1a6-4790-98d5-024cdb3dccac','9114ad70-d53e-4d1f-89c7-30585d0a43de',123,110,4,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.590','146630568-1-1'),
('0460f1c2-446e-4cf5-894e-928a9807e933','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-5'),
('0469ed56-7590-41ed-987d-d3369c79160b','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-58'),
('046d68a4-2b17-4210-9328-37f58965e37a','eae44c12-6eeb-4042-97c1-e6abf8051619',245,97,60,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-3-2'),
('046dbba9-b5ba-4048-a4b9-55f7ac8cd778','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-125'),
('046e6a98-86ef-4d92-b270-fb083288c4ad','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-1'),
('046ebf2f-23a2-4d25-aa4c-7a57cb140ba3','507b9bbe-ef2a-4a95-a25c-ea392d3d95e1',240,70,100,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-3-1'),
('046f7dbd-952e-4bad-be9b-5843521c6b9f','886e0e1a-c599-47ba-bacc-c329212cc55b',3,69,86,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-11'),
('046fbd3b-4e98-4d9b-bc9c-f419e9277fd6','8c914f01-f6d0-4909-9906-64f504e70316',100,206,69,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-1-1'),
('047073f4-e83d-4e40-9c16-951e9428680e','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-2'),
('04779f18-29b3-46ac-9e19-9d3f3dc5ec0a','dc390da6-4128-4077-b3a7-07f6a89a5beb',75,55,84,0,'2024-12-01 06:47:57.092','2024-12-12 07:41:25.689','501488750-1-9'),
('04797a8d-0ac0-4f63-b71c-94219aa7d6f7','df67e72f-ee1a-43ca-8c93-6ee51977a7ea',103,56,80,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-2-4'),
('047c959a-38df-4e65-b978-1310668e6f8a','6fcd8160-ca06-46ab-a691-51de5c394793',34,16,106,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-1'),
('047f22b3-3061-4d6f-be80-0c7a26820023','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-16'),
('048610f5-eca5-47a8-8011-b273ab77835c','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-11'),
('048b578e-3ce2-4bf3-b0e7-6e5772b562e0','9aa08cca-4e35-44d4-9e1c-6c316a75f032',0,0,0,0,'2025-09-02 14:48:51.471','2025-09-12 06:56:06.375','644424764-1-1'),
('048f83b3-7307-4692-9fa1-5c61bb83b55f','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-2'),
('049005a7-cd3c-4690-88a4-a5a0cbab5a22','35f2a33e-b201-4279-b8cb-8deee264e5ac',82,109,55,0,'2025-10-14 09:22:22.488','2025-10-25 09:00:18.615','011804405-1-2'),
('049051d7-4d53-4e4b-ac7d-dc64052a868e','90d1e78e-d8c2-4ff3-bfe3-1ae45c015b22',86,86,11,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-3-1'),
('04917a1e-1128-4326-ac3a-1a4bc2c8fce9','2d31d975-945d-40e2-ac83-79cfc9b0b5f3',200,95,65,0,'2024-05-17 09:42:53.805','2024-05-28 16:23:04.287','449279198-1-1'),
('0494797c-e6bb-4bfc-a035-ecaa67f62abc','55f6b49c-3b1c-4cdc-83c8-9d8baff8ce03',0,0,0,0,'2024-09-28 16:27:29.260','2024-10-08 07:57:43.398','745656343-1-1'),
('04979129-3c26-466e-ab7e-3d3d7dc6a44c','cae76a5c-9c58-4a28-b642-a8f3cffa00e0',96,14,19,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-4-1'),
('0498f61a-6929-4eac-b130-4e459e651b01','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',83,110,56,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-1'),
('049c7159-b8f0-4d3e-8282-eb054dab2048','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-82'),
('04a5037d-bd78-4e3b-8f26-15d0cc4429ec','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-12'),
('04a87ff3-ea1f-4764-bc63-74c142069c33','75a1a1fd-c682-41a7-ae5e-306627043bc3',56,66,102,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-2-1'),
('04addc3f-3c98-4027-a49c-38cebfa44ce0','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.056','223441694-1-36'),
('04b135b4-2137-4aea-b617-cffe6624b217','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-35'),
('04b15c90-7164-4416-899b-f00b1edbd3eb','d2f8d58d-42ad-4705-b1e8-a666af927fa3',25,234,68,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-2'),
('04b70685-316b-473e-ad33-97aaad2a2b5a','54d3748f-dda6-479e-918a-23bd09a831ab',40,15,205,0,'2025-10-22 13:06:44.054',NULL,'598894090-2-1'),
('04b9d5a8-9664-4a48-802f-6b5f3c617b92','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-2'),
('04bb1578-bb5b-46d1-a328-f5abb08e4cef','ff722e98-0fc4-4e7a-aa12-76012685646b',40,22,15,0,'2025-07-29 12:58:29.427','2025-08-08 15:21:01.746','437609907-1-4'),
('04c44392-03f6-4984-9a2e-99481afe1b52','f5158f15-6373-4fcd-aeb6-1fe6b9c0961d',27,55,64,0,NULL,NULL,'655216482-1-2'),
('04c4bfc8-c0e2-44c9-8ada-ed6b484ad88c','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',260,69,12,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-1'),
('04c858d5-e0bd-4ada-bd6b-cb8205b136e2','a8240df2-bc04-464c-afdc-dd0bdbe1643d',63,218,11,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-2'),
('04c8f5b5-af41-4eec-9a61-7af68ed0be35','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-111'),
('04cb3ad3-e616-40f0-851e-cd19dd9a6a39','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-7'),
('04d29256-880e-47b3-a66a-fc5b50485d85','4b29ac47-ac7a-4668-999c-3fd1de904d7a',51,51,77,0,NULL,NULL,'613745862-2-1'),
('04d2cc25-97ca-4a39-9022-32c5e389ef85','59e8ae39-aa12-4bea-b708-fd4e609303bb',0,0,0,0,'2024-12-18 09:31:03.909','2025-01-11 14:08:23.006','248538815-1-2'),
('04d32892-24d8-470f-bd71-2166532c519e','0009aeec-e682-465c-b701-363a3ef377a6',240,100,64,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-1'),
('04d7022f-683f-421e-8edb-ae5e7ae27aa9','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-1'),
('04d857f8-87f6-4144-a139-22db95645ba5','bbc6d966-9d42-48e9-83e4-13afb85a7c33',9,6,144,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-1'),
('04d8cb42-9efc-43e9-986f-dd02aa505ff9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:30.072','248135683-1-34'),
('04db3063-fc49-419c-9db9-5eef94182f7f','fffaa018-d494-4d94-9cb1-dcd410cc934d',100,18,180,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-7-1'),
('04dcb1ec-50d8-4407-a26c-7d2defe1b021','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-1'),
('04e2fc64-7835-48b1-8200-218c4f884bba','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-179'),
('04e31719-02b3-4abd-a2fd-48f56631a682','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',100,200,28,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-1'),
('04e38caa-bdf0-47ba-97c9-cc156adec501','b7612cfc-aad3-4f87-904b-e50d3b29d0b0',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-3-1'),
('04e4819a-fec7-4189-bacf-1aaa069ea202','b11a7688-4046-43cf-8820-625309aed56f',30,20,15,0,'2025-09-02 14:48:30.710','2025-09-10 07:23:42.948','011255060-1-3'),
('04ef7fc9-2020-460f-a297-4acf56e13aac','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.816','223853931-1-50'),
('04f0899e-1fac-488a-a266-ffdb54f23141','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-1'),
('04fd7dc3-a8dc-4bbb-9ca7-e532c1f363a8','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-4'),
('04fd899a-ba68-4223-a00c-39d42e5dcf53','6302f68c-26c4-4a31-853e-80b9d1ba59ee',90,26,9,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-1'),
('04fe3af2-6636-4a4a-b82e-db7a46980db3','e54150ef-c37e-434a-b822-2ec057a11543',118,120,60,0,NULL,NULL,'745189997-4-5'),
('04fe7fe0-e597-47d8-a3cd-a285cccd16d7','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-1'),
('0501ad36-bd69-4663-8604-45ed9a877e94','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-14'),
('0501c91a-a52f-496c-ae98-70cbec1f6655','b85943c0-7fec-4710-b762-43156a31c6fa',230,70,95,0,'2025-02-18 16:37:11.893','2025-02-27 06:36:28.733','501452801-1-3'),
('0502bf3f-f749-40a5-9b53-d5d973d04470','e1757ecd-2d0b-4547-ad0b-bd5e6f7094e2',83,57,110,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-2-1'),
('0502f9b7-da35-4d27-83d6-61d113496e30','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-4'),
('0503ab00-6d57-4f0a-b12d-f2262d59edee','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-8'),
('05067401-78b2-4f1f-9418-ef33ef8c527c','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',85,19,57,0,NULL,NULL,'644104537-5-1'),
('050be2bc-a447-4214-9fdd-fc2ee10e3887','03ad506f-f86b-4dbc-952f-52b01e2467fa',104,32,9,0,'2024-07-30 14:58:35.620','2024-08-07 08:41:51.551','126200859-1-2'),
('050cd7bd-1470-4a23-92f5-b21456ca07b3','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-8'),
('0510c250-4cc8-4c6f-9089-4f2c36f623f5','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.052','74529534-1-1'),
('0517a7b9-842a-4422-82d0-ecddf120f341','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-1'),
('05186a47-65c7-4dca-bc69-70849238f575','443d1fa9-d29f-4aae-96b8-c6565b068779',165,95,15,0,'2025-09-26 12:39:33.141','2025-10-09 15:52:37.871','371120278-1-1'),
('051bbc38-653e-47d6-b0b9-0f8d40f90046','4bf4c188-ebf9-429a-8ede-d43489efe0cb',201,91,23,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-6'),
('051cae1a-7bd3-4d95-95dd-82ac144dc820','dc192b30-06ba-4062-a95d-bdc29fd8c784',132,68,6,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.286','319212544-3-1'),
('05201b72-a30e-4176-baab-e8a4f88b88a0','2a723830-d2b5-42fb-95ad-678895eae7cd',50,240,4,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-13'),
('0525b5dc-9abb-4dab-9ba1-2b4084fb7e69','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-10'),
('05275463-c58d-4138-aaad-0bc9069b7940','fb9b5fa4-a2fc-4d6a-96d9-e247c36e725c',97,97,72,0,'2025-09-18 15:48:57.470','2025-09-30 06:45:08.498','598493196-1-2'),
('05294871-a7f5-43ac-b419-d92b60158265','673c05e3-37ec-486d-98a9-9619fc852f3a',0,0,0,0,NULL,NULL,'412830561-1-1'),
('0529c382-4c31-41b3-9990-c0b9586186ee','0dc117f7-5e70-4621-87f8-335baf3c4f19',52,13,92,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-9'),
('052a0bb1-c94a-4b35-b9c3-016c32f40836','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-5'),
('052a180f-8950-49cb-8da7-ae52b0f28388','b4d98069-3d83-4da4-8f40-7cf8dd0aa2a8',32,90,205,0,NULL,NULL,'598697614-4-1'),
('052b3393-26c8-4010-a976-59853f898013','b16256b1-d6a2-448b-a170-4c574127a57b',60,5,212,0,NULL,NULL,'745189997-3-1'),
('052d034a-2ad3-4779-bae7-f8ab9cadaef4','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.527','745197344-1-1'),
('052fc2df-51dc-46e7-99a6-11e38cbb3029','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',150,60,10,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-4'),
('0530d6a7-900d-41b3-9794-b7733451be44','0c8e601e-d31e-4aa5-8a79-e4a4d4aae257',17,5,120,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-1-1'),
('0534013b-fc2e-4081-abe5-30bf2323e50e','96b29df9-d4cb-43b6-888a-d226e592e88a',110,96,55,0,'2025-09-06 07:20:41.171','2025-09-12 22:09:37.741','5312778-1-1'),
('05341fbb-875f-4370-8b3b-8500ca7972c5','5f6b832f-9b3d-4451-8616-262b7ed123fc',0,0,0,0,NULL,NULL,'412184975-1-2'),
('0534852a-a8ba-4bf6-9818-85e8bd188738','2728034d-4fca-460f-994b-48aa204fcba4',200,30,100,0,'2025-10-20 07:17:57.977',NULL,'59878032-2-3'),
('0535663f-fa11-4c3c-8ba5-ab4a41c05545','35957835-23bc-4617-8278-5233fc6ee18a',86,201,28,0,'2025-09-01 11:05:47.839','2025-09-08 06:39:11.825','351888584-1-2'),
('0535faf3-c476-4637-be80-8be7c8484c2d','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-26'),
('05389411-513a-4e04-8dd8-b779e68263ae','0886662d-3f5b-4da6-acc3-7da74bb71f94',45,30,200,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-1'),
('0538a12c-0833-47e0-92ea-7b7a7ddd2f57','1b975dd0-98b9-4adb-88bc-962d71cc7b22',20,8,150,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-15'),
('05391a6f-9bdd-4cc5-a5fe-71aa0a3588ac','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-152'),
('053b97d2-279b-49f7-b53d-18d0426832b3','5863ff3a-c04d-4de1-9dee-bc92ece85d88',73,100,54,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-2-1'),
('054051e1-72e7-4665-ba2d-bda360b40615','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-19'),
('0540c3b4-51ce-4b9f-a8f7-7e793dc28ccc','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-47'),
('0540d851-bb1f-4a13-b636-3ffbe6fe6d42','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-2'),
('0540e120-cd24-4740-9ee2-0f040a6081fb','67230d57-36ae-46e9-af72-e2352002aef6',47,47,45,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-3-6'),
('05439967-732e-4b22-b0f1-8e2d3fef3253','546ad3d0-25c2-43dd-9443-e48b8e5b6530',38,31,6,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-29'),
('0543f736-766a-4882-8cd9-e6f2841fbf75','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-2'),
('05445e1a-e246-46e5-9125-c725466cfb9f','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,400,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-16'),
('054513d4-7db1-4f63-b61f-75a86c591301','019096b3-5c13-43b0-9be5-d87a00c3b660',57,81,107,0,NULL,NULL,'745883224-1-1'),
('05473d7e-634d-4211-b37c-600d7176d6f5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-132'),
('05490910-1b56-48ea-8935-48e55eac1c33','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',90,102,70,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-1'),
('054c0971-afdd-46e2-a11f-ef5acda9e770','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-102'),
('054cefb0-58d7-43ae-8fbf-31b20ad0e5f1','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.895','2025-01-29 14:45:11.713','248135683-2-4'),
('054d3a7f-1fa2-4d69-a426-f976ef212119','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-19'),
('0552770e-f706-4549-b5c7-2953e5d3f0b6','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-5'),
('05535ef6-b145-4bd1-99f0-4469ab10b521','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:55.816','248284003-1-164'),
('0554f7b4-bdb8-417f-9f55-924477e631c1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.545','412107970-1-51'),
('05551305-79ca-4116-9260-2e3f08f82871','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-4'),
('055594f9-c4da-469a-a2b7-ebb29f9564aa','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-1'),
('05586990-632a-40e2-8c48-56e97f14d3b2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-101'),
('0559256f-e931-44bb-9af0-047a1fb2fb5f','c5d03b78-19c4-44f2-a673-725e07271521',145,170,80,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-14'),
('055a4495-c959-4bad-b453-5f87b385f124','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.567','2024-04-12 17:26:52.448','268188607-1-11'),
('055bc809-5203-4fca-a6af-f4173cb5c650','9114ad70-d53e-4d1f-89c7-30585d0a43de',61,40,3,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.590','146630568-1-2'),
('05614667-53e4-472f-9f45-4840dc1e1925','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-9'),
('056184ff-0837-47b5-87d1-82a1e30d4c11','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-1'),
('0562a4e1-2a85-44bf-865c-1b2a709563d0','a322199e-9388-4cdc-a475-2497cf269eef',54,13,85,0,NULL,NULL,'501589922-1-7'),
('05635c7e-5ea5-4b2a-ba70-78cc076af9a5','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',83,14,142,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.782','449582137-1-1'),
('0565fa84-f7cd-4452-a649-c6e21799833b','55bdd77a-dfa4-4c83-bd2b-4709d2c3ad56',0,0,0,0,'2024-09-03 15:28:30.945','2024-09-14 19:01:44.723','982666330-1-2'),
('056769b0-ddc8-4857-92d1-5fcb4267ee16','803574ae-1ef3-4704-8432-986beb633506',51,20,209,0,NULL,NULL,'614364554-4-2'),
('05688b54-312c-4d6d-8d4d-1176a3bdf119','3246b7af-93f1-4365-99f8-19cc8d72ab71',13,28,30,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-1-1'),
('0569deb7-21a4-4b85-8e40-20f30429b771','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',91,236,20,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-5'),
('056dd03f-b688-4c73-9496-e99b86291a72','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-4'),
('056e1d0d-528d-4172-b3f5-d196788e08ed','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-6'),
('05726302-446f-43ae-8fd9-2dd0ffee5756','67230d57-36ae-46e9-af72-e2352002aef6',75,100,85,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-3-3'),
('0575eef9-a319-44aa-9f78-7b95dde8dc33','e8b58cc1-698b-4364-ae95-f00b90174c08',180,200,4,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-2'),
('0578f66b-45e9-4c84-a6b9-ef60bdbbc992','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',190,70,95,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-2'),
('0579f3c2-03f6-4d5e-9de7-620e79073b0e','1892621b-50fa-4162-bc39-c09c3947b266',220,58,136,0,'2025-05-28 19:09:00.564','2025-06-06 17:36:41.339','657734229-1-1'),
('057a2290-0e22-41dc-99b6-d6f9e2f588ac','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',91,102,57,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-5'),
('057cbd8e-7c16-4a7d-ab33-d2def9f37bb9','af3e2c68-d1df-455e-a5d7-0f309e2961a9',51,51,77,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-1'),
('057cce22-2b9a-49ca-8d53-9cfed1dc6c0d','463a7999-c922-4cfd-a8b6-01513cc2c423',79,201,25,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-1-1'),
('057f9e36-7318-4276-9318-593035a96d2f','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-9'),
('05810533-5b2b-4888-aff7-7300b8ffc935','497ff2e2-809f-4dc3-bf1f-c238b9402d8c',0,0,0,0,NULL,NULL,'614496263-1-1'),
('0581d2e6-656a-490f-9b46-e67f55e9740e','db333680-8c96-42d1-8a24-6c5ab1346079',230,70,100,0,'2024-11-12 16:16:13.047','2024-11-20 16:19:02.417','910891585-1-1'),
('05821bc8-5b00-45f1-a6bf-3eea9f71fc11','df8f2fad-cf54-4954-a619-fe7d05b72e27',47,4,210,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-30-1'),
('058833c1-f4ae-4710-91ec-273432146776','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.061','2024-11-09 11:12:20.375','248259363-1-2'),
('058a2fd3-7c91-42f9-8b8d-b61e29e92aa1','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-25'),
('058ceb13-b717-40dd-939d-d287cc6f18cb','dc99663a-31d5-4a1c-9141-06a0f625f39e',52,37,215,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-4-1'),
('0593bf37-34a3-4c0f-82e8-f2dcdc31c6ac','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',75,85,90,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-1'),
('05945429-3b26-480d-923d-2e61cfe80236','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-4'),
('05950373-48ca-46b5-8442-96ef1b3c4846','c2e2b4b1-9353-45c3-b8f1-d7bc259efb70',82,45,42,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-3-1'),
('05950bbc-09e4-4dae-bb07-4a3086428356','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.993','223385669-1-14'),
('05952691-3fa6-43e8-8a1e-b1894b05ac0e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-12'),
('059aca33-cc25-4f17-8518-d511f1e0abcf','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',46,10,143,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.546','614707427-1-7'),
('059b5b2b-64bc-4a6d-aebf-fa032fd2e75e','733bff01-cf6d-4939-aa79-6311531918bd',16,37,270,0,NULL,NULL,'808690841-1-1'),
('059ba230-ffcf-4a55-852f-a3ae6a089e6a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-83'),
('05a33000-2f4a-4ccc-a16f-49ea6239d64b','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-5'),
('05a4cc12-b4f6-4653-80d1-7c2386b32eb6','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-7'),
('05a4d3cd-c983-4a84-93c8-cdc1210b50dc','115aa366-1d90-47fa-a4bd-cfd120425cc1',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.965','976568852-1-3'),
('05a7f013-1a52-4cab-89e1-f49468693a25','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-39'),
('05adfb37-ab40-4ae1-b856-18d2efb5c679','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-18'),
('05b08e20-0dbf-4a82-944e-0d0e5bc6e6d4','73bc49cc-7184-4418-a48b-cdaeaee04127',0,0,0,0,'2025-06-11 13:14:30.709','2025-06-20 13:05:25.864','745658808-1-1'),
('05b0924c-59dc-46d2-b65b-e6c9fb325f0e','471a9a7c-b962-42f0-b21c-205afc04b527',145,109,80,0,'2025-07-12 09:19:07.368','2025-07-17 14:41:44.640','41286775-1-1'),
('05b148ff-c75e-41e5-908f-dcd95eadc6a1','24781fe5-c8a9-48cf-a94a-3c61efb0a699',170,130,17,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-2'),
('05b254ec-40a9-4063-939d-37afd3374f91','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-10'),
('05b439c0-c9f4-45bb-a54f-ac55d0aad6ca','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-1'),
('05b5323a-b8d0-49b2-9cfb-487a2c05561b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-67'),
('05bce4af-2a97-4eca-96d7-f5bd05e946b5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-33'),
('05c1a053-a983-491b-bdea-ecc9aa568bc7','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-1'),
('05c637e8-a500-4246-b047-6e0e13e3fffd','c27fa652-60a3-420f-84ea-e63942b65704',90,127,7,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-3-1'),
('05caa357-a8af-4e5f-9a7d-b1e096f0feef','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-10'),
('05cbdd7d-359f-4db3-ad8c-8a895ba2bc92','129708ec-ae71-4363-b219-de04734f5e75',400,53,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-14'),
('05cd5296-1065-496d-a168-77fe6d434f28','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.900','2025-09-12 22:09:47.090','412139250-1-8'),
('05cf6ef6-ce7d-4425-ac3f-820febf3c529','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-39'),
('05d08a5c-bc64-4766-83c9-bdf7cd1ac362','4affbb1e-1f39-4f6d-95e5-ac1d9bcd8748',90,190,95,0,'2025-08-22 20:28:50.022','2025-09-01 15:17:19.745','598758154-1-1'),
('05d0976c-4150-4a0d-9ddc-a3a44e57d3d6','82ac2d58-053d-41f5-a402-9275c56203f9',220,59,6,0,NULL,NULL,'428172853-4-2'),
('05d1d90e-0c1c-4d82-8b57-b6d87f9d0323','1a929455-0b70-45da-b39a-75cee0e92908',186,40,40,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-1'),
('05d3793c-154b-4ea9-9cbd-163f2adbbfe4','c41cb9b6-8a90-4d65-bacf-8d71c8df714a',0,0,0,0,'2024-03-16 14:34:12.031','2024-03-29 17:57:22.178','47835620-1-1'),
('05d570e7-ef0e-4def-b071-b8eb9f440760','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-41'),
('05d5a770-9d13-4c4d-9ba4-34e8fd0ab125','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-13'),
('05d6acf5-f4f1-42ba-bef6-cbe927a99cc0','995dfcaf-53b8-4dad-ac21-6f4ba521c6d6',100,118,67,0,'2025-10-25 08:59:25.499',NULL,'478544570-2-1'),
('05d9bbe6-1217-41e2-860a-cca67f49259c','b397ad04-cf36-49de-98e6-e6b8a1432616',0,0,0,0,'2024-04-27 08:45:31.204','2024-05-08 21:07:30.507','478572714-1-2'),
('05da03e3-7d3b-432a-8227-507dbf8c3b74','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',105,110,73,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-1'),
('05dc6031-7c52-4ce2-bf99-895ee4a8e8d2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-151'),
('05dd43d4-5762-4533-baf0-acbed7dc4a06','0c8e601e-d31e-4aa5-8a79-e4a4d4aae257',31,45,91,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-1-2'),
('05dd7312-e32b-48ef-8f8f-9e7e6b64443e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.545','412107970-1-153'),
('05deae19-f4db-40ea-ae82-65b858ce99fe','0655c66e-ad8e-4f89-af46-bcfa9a272b8b',80,75,70,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-1-2'),
('05def254-b337-4c94-8861-fd0b58e757dd','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-3'),
('05df8eb3-ed98-4232-a78c-25c4ec9b28b7','83e81175-cef2-4f5e-adbe-8ca02a747efd',91,201,5,0,'2025-08-21 07:15:18.949','2025-09-03 19:36:14.947','478687899-1-13'),
('05e2109d-b784-492a-969a-be6161d04a30','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.518','2025-02-15 16:08:58.969','20390821-1-27'),
('05e39387-8a5d-44a4-9cd0-3d5c54c90136','609832c2-2dd2-4701-a14f-9db6c69653b0',40,40,43,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-2-1'),
('05e466b7-63e8-403e-90b2-b645cdf0fc3f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:56.266','248284003-1-198'),
('05e8a1a5-450e-436f-a2cd-6ec25670b7b4','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.020','478677950-1-23'),
('05e95531-6ad0-4dc7-8bdc-f029cf97a375','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:30.648','248135683-1-64'),
('05ea0f04-e020-413c-b4d7-c3ca7d8e3c6d','ddd56674-a4c4-44e3-94b8-0441ec7a9fad',60,57,85,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.325','221164226-2-2'),
('05ec108f-88b1-4db8-9c23-da1a21c3d5f2','7201b2ad-bcff-417b-a7c8-7f2da8c65235',83,6,153,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-2-1'),
('05f1a85c-7ff8-4365-b4cd-8befb9126a27','03ad506f-f86b-4dbc-952f-52b01e2467fa',97,95,75,0,'2024-07-30 14:58:35.620','2024-08-07 08:41:51.551','126200859-1-3'),
('05f1f9c4-b6fb-4079-b69f-4c801935425c','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-6'),
('05f2f1b9-ab20-4b55-a19f-f60ef9c73487','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.826','598876994-1-1'),
('05f4c8b0-ada3-49a4-97bc-a1096525fb42','a4591ede-c042-49b1-ad0a-502745a68343',52,51,44,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-2-1'),
('05f63694-0734-4ceb-af75-a761c25a38c4','795d2eda-013a-4fd7-b48b-148a85caef26',120,100,75,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-1'),
('05f645c5-c341-428d-a40f-f22b8de5b9ad','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-5'),
('05fa8600-5012-4f19-90ed-32ba5127cde0','f88c3e53-b711-4bcb-aa3d-9543580054cd',68,197,4,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-11'),
('0600024f-002b-4655-ad8d-99f2ede5963a','2eee4732-1804-4c17-a865-bc66f2ed3520',71,36,36,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-3'),
('06001a54-96f4-4074-ad8c-098b4470e1d1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.545','412107970-1-69'),
('0601564b-86fa-4319-8fed-74f98f3d2934','78c5f4f6-2307-4b72-8615-22388f9576b2',0,0,0,0,'2025-03-24 16:01:43.923','2025-04-05 17:48:11.560','478325717-1-1'),
('06054fa4-a787-4201-841e-4f8d9e436c05','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-8'),
('060a0a03-dc26-4805-aea6-6ba76398943d','cc1b6537-f392-4c31-89c7-d964e5ece42c',100,72,54,0,NULL,NULL,'644563405-4-1'),
('060a9d0e-270e-4ae5-aa9e-6dd4bf662ea0','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-3'),
('060b76c8-786b-4d2f-a2d8-97fe3ad2e2ef','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-5'),
('0612f037-69f8-456a-a1fd-946ed3384e54','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-12'),
('0613aa73-5949-408b-8506-abb4532a6a61','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',177,199,3,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-1'),
('0615cda5-b498-4fcb-a4fa-0a533ed0f6c4','63e03482-af1b-4b30-9c93-56be1e53f6c5',85,70,83,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-3-1'),
('06185ba8-b53a-4d1b-af1a-932b751eb9e4','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-1'),
('0619f92e-a0fe-4986-8bbb-522ab53333d6','87b3f634-7cb9-4342-96bb-9a0c75c1ffe9',98,98,80,0,'2025-10-20 07:18:09.468',NULL,'505332275-1-3'),
('061a4c5e-1dbe-4050-842b-95a1549b8405','0bd42145-fdd8-4793-a5cd-a2e404d37142',130,44,10,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-2'),
('061b19b6-2ee4-4829-9705-c259b0d1df1a','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-26'),
('061b6256-77bb-4d4d-bb73-c43a4c78e5a9','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-127'),
('0620c9fc-d0c1-4fb6-b70f-e1174a25a362','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-64'),
('0626e001-af7d-4761-9dbf-b0fe08ee2550','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-30'),
('06271bad-d5e7-4e02-b492-2bf07939728e','15838be9-2a38-4e80-b613-df9538785c9f',48,97,45,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-4'),
('06294129-f79d-42c2-b17f-4f956f360777','f0e43964-75b3-4eaa-8941-9cb4fed72d4c',0,0,0,0,'2025-04-11 13:41:47.605','2025-04-23 17:45:52.850','478919360-1-3'),
('062b6413-feb5-4dd1-93b6-10a314b7cfdd','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.333','2024-07-16 05:12:00.271','248450889-1-1'),
('062d5a6d-9ad9-40cf-bbf1-1841b8a17b69','59abcbf6-72f2-4d32-b4c6-de60ef28c0bb',100,100,60,0,'2025-09-10 10:50:44.282','2025-09-18 12:59:57.981','221191139-2-1'),
('062ec155-5389-483d-b419-2fdb66577501','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',47,42,47,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-3'),
('062fd92b-0f97-4c1a-84be-30d47243dad2','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.929','2025-08-27 19:35:01.417','531988506-2-5'),
('062fee54-40ac-4ade-921b-a9940cb149b1','9774f983-7a2e-428e-a849-ec0cde1c3577',102,192,8,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-2-3'),
('06313bae-ce76-4486-bc64-cbc9cb6ae629','e54055a2-3c9c-4738-a808-7a4a31877ef1',102,73,53,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-1'),
('0632b26b-3e70-48e4-a251-4387b2268bab','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.204','982754836-1-13'),
('0634d57d-0be3-4cc3-899b-5ba66b91c030','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.229','2025-05-10 20:13:13.995','223963997-1-14'),
('06355743-aea2-4cef-a0cd-7063887bc9ee','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',82,80,30,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-11'),
('0635df5a-1c4f-40c5-84ae-0b3773550d16','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,90,9,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.908','916836796-1-2'),
('063a56c1-1f06-49e8-aefd-3ecbb283b7ea','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.276','223379282-1-3'),
('063e1dbd-a80f-4bd4-9e56-842b772df203','71186865-547c-4404-a1d3-c309f2152015',75,55,100,0,'2025-10-14 06:22:07.545','2025-10-22 07:00:39.223','412722649-1-2'),
('0640ecff-203f-45ce-9cfd-de981fa012ba','384c6719-2d91-4530-8e9e-3ddd44fc84ef',215,70,90,0,'2024-12-07 09:32:05.761','2024-12-20 14:35:02.738','248421874-1-2'),
('064379d8-bc27-4f48-b64d-e125e46dbbda','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-39'),
('06438df7-b0f8-410e-b0e4-f8c03c82f382','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-72'),
('06450872-86e5-471e-9bb5-005ba87fe0dd','a01912f8-693e-42b8-a248-694a4ecac68c',89,100,65,0,'2025-10-20 07:18:12.637',NULL,'531606130-3-1'),
('0646d2de-943b-492f-8e62-c8320d6b5d1b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-99'),
('06493e20-d40d-441a-aa16-6b9e520226f5','04dff17a-2b9a-4f35-a082-5684dfe5706f',220,90,75,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-2'),
('064a2802-7e3e-4a6e-a088-37d718802d2c','a41cc165-9ba9-48b1-bec3-06ff1f0e0fa1',156,95,70,0,'2025-01-26 10:54:44.964','2025-02-07 11:19:08.733','428519862-1-1'),
('064fcbc0-938e-4ce7-8e53-606ad5f53ed3','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-11'),
('065920d2-bc6b-4da7-ae07-edf46c2f3a70','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-33'),
('065a7956-5cba-4c01-a04e-a9cf62cf3a6d','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-1'),
('065b034e-097a-47a3-b837-b3ecfa70264e','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',124,173,11,0,'2025-01-26 10:54:21.564','2025-02-10 14:16:27.212','428341956-1-6'),
('065c3985-64b6-44b1-8650-57b5cde759a9','a29194f3-32bd-431e-8e88-ee7de37b7b46',6,97,198,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-3-1'),
('065d0695-e448-4d28-a3c2-323bd7170fe3','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',82,65,91,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-3'),
('066089de-158a-4429-a033-ed379ca6242c','3987bcda-6531-4738-8815-187fd84bf71c',90,70,66,0,'2024-09-10 10:47:13.056','2024-09-16 17:09:39.158','75056602-1-1'),
('06625ad2-42ef-4d4a-8ee2-d1dbd9bdbd3d','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-24'),
('0665f5dc-1889-40b7-a8e3-26d2de34b852','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-3'),
('066a6753-6fc9-4e93-8c82-6014e885d332','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-24'),
('066c0a87-a706-4da3-88d5-8c5c9349e970','158455d3-2130-4d98-9534-cb36e6c15df9',140,100,75,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-4'),
('066c8447-4430-4d0c-854f-93f44386d20c','04709db7-1bf3-47bb-af82-bf9215362742',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-1-1'),
('066ec492-6dd6-4b31-9b84-206862d50672','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-3'),
('0670ec22-954f-4cd9-8d1f-55f7563e2539','220fed8f-f96e-4af5-867b-ac05d11bda6f',41,17,90,0,'2025-06-26 10:29:57.108','2025-07-03 11:20:07.766','478507488-1-17'),
('0671bea0-74e0-4c33-aade-0737847c4955','4869c334-4618-49fb-9d03-99d95654d12a',56,13,82,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-19'),
('067702a7-1d82-4002-8fb9-72a764683e52','9bb570a5-52bb-4bbc-a797-b2a052d8260c',0,0,0,0,'2024-06-10 13:50:55.810','2024-06-10 13:50:54.112','3198601-1-5'),
('0677882d-b1c6-4d2d-9c09-ff834e2b1466','a307363c-9911-4bec-ab96-f2419bd7e6fe',123,125,5,0,NULL,NULL,'9823833-1-8'),
('067cb80b-2737-4ba5-9f01-6d71cb2885b3','7e1a6d7e-d199-4b01-bdae-64fb59fdfbfb',0,0,0,0,'2024-04-08 08:57:54.793','2024-04-24 09:14:45.745','31515833-1-1'),
('067efd8b-6da4-4591-8436-9180b0cb477d','565f6966-f194-4d7c-8b20-64502045078d',33,2,163,0,NULL,NULL,'478350685-2-1'),
('0682b945-5d59-4069-a36e-5b3a3f652fcb','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-3'),
('06857ef4-8de6-48bb-a939-962fd9c48177','886e0e1a-c599-47ba-bacc-c329212cc55b',11,58,258,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-26'),
('0687633d-3a53-46d2-9ec4-e6bc90989e77','845879e8-205b-444b-9d29-1e0a6fa08784',39,22,23,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-4-1'),
('068b1db7-dd16-4f2e-8648-6e135190e422','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-133'),
('068b4eb3-d783-4df0-a551-b2f1cfe59bc5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.056','223441694-1-39'),
('068be900-a517-4984-bc69-01652a47d89f','702c1aff-1a98-44f0-9dce-efad71572432',17,49,73,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-12'),
('068c3826-3a74-499a-9d99-67b869843824','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-3'),
('069389db-911a-45f6-87b8-0f2e0fb855f4','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.859','2025-07-24 18:00:53.295','223444495-1-120'),
('069756a6-8e25-439f-bbf3-9b0942c0fb51','46967417-5579-4330-96d2-b8546922819a',100,156,13,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-1'),
('0699e2b7-faf0-425d-aac6-2ecde7844262','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-116'),
('069a0c7b-db9d-43f3-9278-1bbe06a225ee','9950fe74-2437-4188-83e7-37a1e09fa6f7',38,210,30,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-1'),
('069a4269-93b3-4ab0-84a2-931833cea163','294da0f7-f109-45a0-a22a-da7700a3e549',0,0,0,0,'2025-02-13 20:43:36.179','2025-02-25 17:03:34.985','74594372-1-1'),
('069c53df-aea5-42ba-afe1-86821d7e5b51','7cd28b4a-73b1-4827-aaee-b29989b9d9b7',0,0,0,0,'2024-06-08 08:00:28.405','2024-06-20 20:15:30.824','74594122-1-4'),
('069d04b9-05fd-4041-9fa0-b4523c543832','43024ca8-3408-4c20-962d-cdaf0ea11687',96,86,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-5'),
('06a0bc73-6f0c-4f8b-a121-957b017e6960','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.900','2024-10-08 20:17:54.299','478479612-1-34'),
('06a11a1c-d5a0-4ad5-a866-e8a917ecf6b7','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-11'),
('06a2017a-9f1d-4be0-8870-40a08bd11cfd','2f48d0ed-28f5-453d-8672-06427e42d843',162,92,15,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-2-1'),
('06a3734c-4e5c-4e92-b3bb-d98cc0e4dd9d','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-2-19'),
('06a45e87-83b2-4c2e-b111-d5d14bb85c2d','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-1'),
('06a5f4d3-a954-4342-96b5-e1fabbb3d08f','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-23'),
('06ac3a3d-b40e-4f8f-9cb8-a19e3336593f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:31.333','248135683-1-248'),
('06acee5d-fbf1-4ec3-b26a-0b1fe32fd55b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-150'),
('06ad2178-11a5-48d1-8492-b454b76df734','4a772921-47f4-4705-9302-2ef88318322c',0,0,0,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-2-1'),
('06aee7cc-291a-481c-9d8e-c904aa3edd45','ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e',101,200,65,0,NULL,NULL,'47816855-3-1'),
('06b06970-2c11-4570-a01b-69ad1df5c700','edc484d1-e2ee-46d0-8ca4-5adc2c03d85f',38,38,47,0,NULL,NULL,'598891928-3-4'),
('06b4901e-4db1-4201-b496-fa867b65ad4a','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',85,59,41,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-1'),
('06b4e081-c190-4c75-a8a5-d0d0f94ec954','88ec1b69-5cc3-47af-8aa3-9c3043171516',24,52,103,0,'2025-10-14 09:22:23.462','2025-10-25 09:00:24.655','478589258-1-2'),
('06b78b43-5a09-44d2-9bfc-b1d5832ee498','b85e0d9c-5dfb-438d-b4bb-4da1f04550f5',57,82,108,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-3-1'),
('06b828b6-085f-4de0-9616-eef4b3eafc91','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',100,100,75,0,NULL,NULL,'695864567-1-5'),
('06c09d9f-ea38-42d8-b56c-3ba577113b1d','4869c334-4618-49fb-9d03-99d95654d12a',46,11,135,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-24'),
('06c6c725-8313-45e6-9b13-b2b3aa72b70f','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-8'),
('06c942cb-d60c-4943-8c09-8a1503092ba3','c563f86e-fe4d-44fb-b91a-72261e82a6fd',51,51,77,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-5-2'),
('06cbb636-df46-4e91-b4b6-94f7b66c746a','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-29'),
('06cd1c9f-83ca-4ea1-8400-4c391503ac0e','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',40,40,50,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-3'),
('06cd9987-981e-4452-aecc-f9936e95da70','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-67'),
('06d17807-9ed3-4ee7-9462-7f859d4ba91a','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-6'),
('06d40843-0045-4218-870e-7c064819a555','0009aeec-e682-465c-b701-363a3ef377a6',162,47,9,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-2'),
('06d5cb23-58c6-4849-8d64-1788d7a4aeeb','4b80d339-56b7-49aa-a6cd-61fd58bdaed9',63,63,75,0,'2025-08-07 16:52:56.179','2025-08-19 19:34:10.946','644658399-3-1'),
('06d75018-747e-49b1-83a3-5fcd1e78af17','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-3'),
('06d79ae4-7a90-47cb-8dd9-eb0a2b232509','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-63'),
('06d9ca50-2d61-49ed-9077-8d46247f0edd','4fee46a2-3558-4ad0-b22f-8e6a38950750',0,0,0,0,'2025-03-27 15:06:22.210','2025-04-04 17:24:33.515','478650682-1-2'),
('06daff2d-2158-44e5-a348-b7cc935d62dd','6af11c78-d8b6-44e2-99d3-cd7f615e9176',153,95,80,0,'2025-07-19 07:52:03.441','2025-07-29 13:55:03.111','644377360-2-1'),
('06dcdf53-8add-4689-9c64-9f807f1dc2ab','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-69'),
('06e0ca2f-c1ea-486c-9fbc-10ca3bd7180e','6b7249fa-3b92-44b6-a5b6-20ae76f8a01d',43,45,20,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-1-1'),
('06e15773-6b71-47d5-b2da-c6dda0b2caba','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-4'),
('06e77a23-a810-4e40-aed8-056537556d19','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.900','2024-07-18 07:32:21.067','412586204-1-1'),
('06e7f605-6c72-46cb-ad2b-3d397ede1896','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-63'),
('06e98501-23f8-4839-846b-cc26a9ff556d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:57.615','248284003-1-153'),
('06eac76c-f2b5-40e7-8184-d06b4d08e511','f7b7d96f-ed14-446a-9420-7f44bcbbed32',100,80,65,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-2-1'),
('06ec90a3-d22a-4edd-9dbb-ce0dda11439a','0e70ccfe-0887-4aff-9656-0781d621c3b4',44,44,77,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.057','982843761-1-1'),
('06ef297d-8055-432c-89c1-e91b34c4b776','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.555','2025-08-27 05:39:11.569','221748184-1-6'),
('06f1974c-6fd1-44ca-b7af-7686d916b6cb','e6bddda4-b1df-4be7-bbd5-63cc4b197736',91,59,11,0,NULL,NULL,'42857810-1-1'),
('06f5cb30-51e6-44e6-b398-40dbb46dfe35','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-4'),
('06f6fea5-7912-46b4-8638-dd2f395f696d','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-9'),
('06f74f7a-986d-4a15-a1d8-0f66dc8cc6d8','7a998775-22a3-49a7-9475-b06b4e3056af',56,110,82,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-4-11'),
('06f8ff95-2724-45b0-b9d9-9a5f032e00a4','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-8'),
('06fdd3de-e10c-4aba-a344-e74d4d92c687','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-7'),
('06fdefeb-613f-43b4-a90b-3b5f6fa2c51f','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-32'),
('0700cec6-32db-4a11-83f6-417d194b5868','8fc7023c-7fab-44ae-a533-006d835eddb6',64,82,4,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-1'),
('0702481b-f3e7-4761-b72b-9f30493458f7','c6e24aec-c8fe-404d-bc77-7c14e130d07d',51,53,41,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-3-1'),
('070ac44f-1c6c-4dba-adc9-1f639585325b','c7fce8c7-acfd-4c12-8db5-81618a4b211d',201,48,8,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-6'),
('070cac92-3b48-48fe-8bcc-e103940390a5','565f6966-f194-4d7c-8b20-64502045078d',74,54,28,0,NULL,NULL,'478350685-2-2'),
('070ce166-bc90-4241-9fb9-8e2386c7feec','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-198'),
('07120674-4b37-4a3d-9d8b-c5df7be896c2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-88'),
('0712f2d3-d2c4-4a86-893c-30b5971fbe85','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-2'),
('0713b5da-acd3-4486-a7fd-90e52568f399','efbe186b-71f3-42d2-8da0-71f73ee0e288',70,90,65,0,NULL,NULL,'59884902-3-1'),
('07156d17-4bec-45d0-a181-7dd265249715','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.906','2024-10-08 07:16:04.690','478955837-1-2'),
('071591d0-44c2-4935-a937-101a71ef19ab','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',46,102,8,0,'2025-03-13 12:21:31.497','2025-03-22 07:37:28.261','982726615-1-2'),
('0715ff5f-734b-4adf-b2a8-a60ffeecf053','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',113,66,94,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-3'),
('07184971-aa6b-44ab-885b-84d20c798970','55d57945-be77-4866-9a7a-1f1f873c24a2',51,51,77,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-2-1'),
('071925a8-90af-47d7-a3ed-e3b4866e229d','22399f1c-a89f-4887-a03f-c112be6c99b0',51,51,77,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-2'),
('071a032b-e641-48eb-80c3-78a96b8187be','6ae0233f-f2c2-44bf-9706-7274e4c923e9',45,45,75,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-3'),
('071a9dd4-fd80-4955-9706-88651de62c5d','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-5'),
('071b2b5c-d678-4ea6-8116-0a52bd1bd2bf','ca4b53fd-638e-41d1-a236-22653e553702',210,115,33,0,'2024-08-21 14:53:28.675','2024-08-30 15:04:37.640','429340012-1-2'),
('071c5612-c21a-4da8-a900-0599e02cea39','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',74,53,101,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-3'),
('071fbe89-76d2-4841-be1b-a6d58f04a03e','a2f34510-a7f6-4abd-ac03-e7c577feca03',44,5,208,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-1'),
('0720c3b8-33a2-4ceb-9d1c-40a3eff10534','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',33,38,11,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-2'),
('0721d262-6b64-4fcf-a297-40788264281e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-111'),
('0723b1e1-93aa-41dd-97b6-6d7bccc0e41b','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-2-1'),
('07249225-12c7-4876-974d-48c881180ab6','7fbc0cac-4c11-4144-b578-3223cd9dd90a',19,6,66,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.824','745485271-1-20'),
('072857f4-8708-4925-8ad5-73f3696808d4','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-41'),
('072885b8-19e7-459b-97ec-4cd57f3b550a','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-12'),
('07316bd3-2053-40e2-9a0d-727b9309dd36','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',39,21,215,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-2'),
('0732da4e-a037-4697-924e-698fbabab6ba','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-1'),
('073346eb-6157-4504-b153-c26b627bf2f9','150c9863-b37f-40fe-af3f-a5e800c4d9c0',76,51,51,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.120','644550858-1-2'),
('0737e21b-25d7-4f2d-ad46-ad430828c445','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-17'),
('073a1717-654a-45d1-8698-6f3113f6b4f6','72fb829c-8230-4d8d-9137-c937d756af88',0,0,0,0,'2025-02-27 16:45:25.397','2025-03-13 09:28:37.647','614680407-1-1'),
('073a3527-af71-4622-a735-f35652a9308d','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-3'),
('073b0e0d-171c-4765-a9aa-0a9126a962e8','b5b0b7ac-87b6-4580-b7a9-4105fadd6d34',100,100,70,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-4-2'),
('073cc49b-005a-4017-acb8-9616d607528b','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',120,200,30,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-3'),
('073cfd77-8c85-4e0d-be6e-ad6c1a4ba192','fd1e8997-53e4-4033-a92d-13fa88acbade',60,13,105,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-37-2'),
('073d15fe-8c90-4292-a08b-ac6a58ff7fae','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.587','2024-10-29 11:09:56.721','248103321-1-9'),
('0740a2f7-560a-4da5-af0f-c2d33da7e1cb','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.688','2025-06-06 17:36:20.960','221997933-2-6'),
('0744b3f5-e298-456d-8ef3-2a62a8638183','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.045','371365041-1-1'),
('0744ba2f-8a1d-41fa-8d6b-0df95ce83b04','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-60'),
('0745486e-9f1d-42c7-a9ff-91177b902b88','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-37'),
('074693d1-7bdd-422e-b120-634967420cbe','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',40,38,38,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-36-27'),
('0747a58e-8be7-4d15-b424-8302e92f888e','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',52,47,13,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-59'),
('0749108b-bff3-427d-963c-f629ace84164','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-69'),
('07497be4-5234-4e59-b091-d480ffbbcdd7','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.900','2024-07-18 07:32:21.067','412586204-1-2'),
('0749ae1f-6cc1-497a-83ac-1ee41e34b6bf','808a4f1b-793f-4a15-808d-00c26a26c166',48,7,228,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-1'),
('074f66d0-b746-4f71-9b06-94972d8158e8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-69'),
('07508ee9-36e0-49f6-81d8-25f072fe7e82','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-51'),
('0751b8ed-bf76-48ae-9e01-e706457af319','094fda01-ee08-4746-bfb8-5af4550b0416',56,82,101,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-1-1'),
('075399ef-7539-4236-984c-d673a3f5b64c','450e3cc2-5ef7-4167-b7c8-42e1eab92860',53,76,102,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-1-1'),
('0755befd-f5d4-47b6-b680-0937109857a0','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-64'),
('0755ea00-a138-4f46-9536-65baf72f2cad','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-105'),
('0756c4b4-d36f-4bbd-a91d-56ae1432ba14','5eedf7e1-129e-4ada-8cbd-d63340cf856b',0,0,0,0,NULL,NULL,'959475359-2-4'),
('0758c8f1-01d4-40a7-81b9-e74feb05e862','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-44'),
('075d6181-ca77-4ee0-a531-6f0aba53da18','0365be5a-cb94-4992-8e8d-cb784930b2e7',100,125,80,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-4'),
('075e247f-797b-4223-84d2-3006faf6ff4b','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-1'),
('075e7189-814f-4c3e-bffe-0b880a764964','626b4650-456c-4f9e-bd85-603b644fe1d8',86,205,33,0,NULL,NULL,'598967733-4-1'),
('076233df-a0e6-4744-9680-94f155debe10','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-9'),
('0768820d-c6c6-4036-8e2d-c8d2bb3e42fa','9a609c64-d5d7-47f6-a875-badc8cca1ff5',100,65,211,0,'2025-08-22 20:28:35.968','2025-09-03 06:12:11.936','644796083-1-3'),
('0768d89b-23e2-4c8b-bcfb-75ed5c2ebe97','3ee7efa6-3558-4b02-a610-7981c42e78e3',240,97,70,0,'2024-12-01 06:47:55.166','2024-12-12 07:41:31.232','614352-1-2'),
('076c8c9f-e1d9-4a8a-81b5-b59862bf1bc8','625679d3-a5da-4163-9694-2783eb2a2db8',51,51,76,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.552','221257971-2-2'),
('076e389b-9c88-4111-945c-eef27fbdbbae','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-6'),
('0772bff3-803f-4214-b056-8ace8240ec49','221d0dd5-c891-456f-9326-5cdcfbb33639',59,116,147,0,'2025-07-12 09:20:04.560','2025-07-28 07:57:34.248','657832584-1-1'),
('07739d6d-7057-4169-8eda-8da528728da4','e0a099ee-13a7-4e80-b77d-55f860dc2f1d',0,0,0,0,'2025-02-09 09:51:13.031','2025-02-20 09:14:10.976','830905881-1-2'),
('0775baa5-de6b-42ff-9b24-0453ebb57adc','d0f1019a-0cb9-4fff-9f33-5af28e47634f',45,77,120,0,'2025-05-09 18:44:17.177','2025-05-19 20:26:37.031','644113100-1-3'),
('0776bbf0-83dc-4637-b16e-dd5fde5b623d','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-1'),
('077730fc-8f23-4d42-bd7c-b2a2b8ae0ee1','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-78'),
('07776d49-d14c-4ece-8890-25a506350520','c2e59836-c823-41bf-b343-b3df9dfc91f8',70,48,9,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-12'),
('0779a672-f7c8-4b67-88ee-081778ee5b24','4248435a-86e0-4cf9-9c9e-c779eca78500',48,35,24,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-1'),
('078423e8-3cfa-444d-87f0-3f9a1019ede7','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-3-5'),
('07855dc3-b341-48f9-8a6d-d2be6518e259','86e5956d-750b-4aa3-8f00-53e2db7b9f65',60,50,10,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.127','517110811-1-1'),
('078a7b9b-7d21-4586-9d9b-2ec9501bd7d6','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',105,38,15,0,'2024-08-21 14:53:14.205','2024-08-31 19:24:01.801','750822079-1-1'),
('078cc062-03ef-4b74-8416-d52ee83a63bc','a1cd1c1a-930b-4527-9f89-812389e0038c',7,44,125,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-3-1'),
('078ee29b-e08a-44ef-a3aa-4342058533f2','5ccf3a3b-c07c-47a0-aa6e-3b97e69e152f',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-2-1'),
('079080e4-b838-49dd-b333-582b2596dc0a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-164'),
('0791d019-cdab-49f4-90a1-798c003449b7','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-2'),
('079304c7-70d9-4e78-b0b7-3377322854aa','a08ca4c6-b9c1-4c8a-8069-9bcaf70515ce',85,75,75,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-4-1'),
('0794136a-13eb-48fc-adb2-377fba85ca82','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-16'),
('0795e564-558c-4bd4-af01-661797795cb9','9c9ece2e-cdef-44ae-9960-980614fe02aa',65,95,102,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.774','478243785-1-1'),
('0798aa55-e59e-44c3-be8f-7a92c1d4526b','1efb8814-1560-4b9c-86ce-125d96c77b86',50,50,79,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.752','613847250-1-1'),
('0799aa4d-4e2d-43d1-ad75-2fcb256e4494','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:11:00.145','248284003-1-90'),
('0799b2e3-5ced-4468-8a86-a1e402acf18e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-73'),
('079a3eb1-74c6-432f-9cef-2d70471e8219','6c43de3c-5454-4dc3-8fc2-6cd719969299',65,14,44,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-1'),
('079cbdce-6a06-45ea-ad51-6360ef908dd4','4a90547c-6b75-4ad7-a83c-cf7308b5af24',232,37,141,0,NULL,NULL,'598138099-1-6'),
('079f7fe8-69f4-4379-a4b0-ae1f3e8e1c68','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-7'),
('07a2a459-8bc4-473d-af55-38f52e2da427','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-35'),
('07a50870-2435-4878-8e9d-a151969bb954','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.982','2025-03-23 16:16:02.037','745266700-1-15'),
('07a622a7-4991-4a49-9cfa-14adf21c4882','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-239'),
('07a647bb-6c53-4288-9787-16ec8d63d6cb','e654d04a-78f6-4d76-ae95-c3bef1625ad8',0,0,0,0,'2024-11-08 18:02:53.802','2024-11-15 16:10:54.110','107593305-1-3'),
('07a7ae36-6240-48da-a06e-1e416d68ceca','4a769c6a-1636-4fa8-b52c-be5633d0794a',77,57,101,0,'2025-09-06 04:20:14.068','2025-09-16 17:47:08.284','598280715-1-1'),
('07aa0540-60c7-4683-adc9-4de77a0b8378','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-5'),
('07aab5ea-9a90-4252-aa60-a882858891ee','57dab073-4b3b-40f6-b274-8bed0e1e1e8e',0,0,0,0,NULL,NULL,'613137842-3-1'),
('07ac6d24-4c3c-4c09-b5dd-6c9b12722ed6','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-2'),
('07ae0362-f10a-4eba-a5b6-4f33a3811409','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-18'),
('07aff188-38b1-45cd-9ffd-451270e563c4','03ad506f-f86b-4dbc-952f-52b01e2467fa',170,47,64,0,'2024-07-30 14:58:35.620','2024-08-07 08:41:51.551','126200859-1-4'),
('07b43dca-88a8-4897-9963-08d58ef7492f','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-1'),
('07b66476-8946-401f-81be-175d9d0bb965','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-5'),
('07b9cf7b-de05-4e44-8024-92f620ffd48e','bee352b0-739f-4e4e-92a3-3b8256a7e9e2',16,16,193,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-3-1'),
('07bb18bf-e32b-4279-9bee-57faf167cff4','f6d35da2-4b3d-47c5-b4fd-3e3ef4395c7b',51,51,90,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-3-3'),
('07bc6a2c-b8a3-4ae5-ab4c-72b984bd48d4','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.555','2025-03-01 17:30:01.493','046487702-1-67'),
('07bcbe83-e4b3-4c9b-840b-370476ee3946','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-3'),
('07bf4dd2-7a78-4244-bc62-921ef84ef40c','585b23e1-d8ef-41f5-b796-16b2dd04a045',99,195,65,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-2-1'),
('07c00f90-59c6-4c2a-86ec-27d1a7f5af30','78b92a41-f41a-4dfa-97b0-48b35908cf44',6,96,178,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-3'),
('07c6712d-da41-403e-a7a5-8fe108762b9e','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.742','2025-09-08 05:17:35.964','478835180-1-11'),
('07c8da53-f180-45f4-92b2-5bea0d275ced','57d426fa-fa0c-4bd9-b11b-11018599b28f',85,57,63,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-2-2'),
('07cfa09e-ed71-4831-a48a-bb81bdba4182','542181c6-dabf-4cbd-b756-74abe3440744',47,7,215,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-1'),
('07d1658f-258e-48dd-a91d-33ee7d183dc1','c784a732-36c9-47dc-809e-6b6a917e74dc',57,81,105,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-1-1'),
('07d2f72c-e712-46d6-aa68-3d0a3e556b69','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',54,220,15,0,'2025-09-16 16:29:04.381','2025-10-04 13:57:40.402','478906000-1-2'),
('07d8afdf-c1a9-4924-9da5-a994440a7f4a','e3de85d3-eec0-4038-99df-48935e9c3c8e',220,70,90,0,'2024-10-11 16:09:22.260','2024-10-22 13:51:40.148','976898541-1-2'),
('07dbe61e-8d33-4b3a-a5eb-229bd7de8b62','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-29'),
('07dc1a93-6853-4c25-9c46-5cde3c099126','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-6'),
('07dfb060-6d17-4eaa-9a35-a6119975d5dd','064e955b-72f7-4dfe-903d-af71b421e048',56,36,26,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-1'),
('07e09b41-192d-43b5-a596-9eda6b1a0926','89b10d5c-c483-44ad-9784-dd0d3532446b',38,38,41,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-1'),
('07e407b6-451a-494f-8ee5-0e4249eb71d4','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-2'),
('07e4a8c6-eaa1-4e06-84a2-1c60bca37f8b','808a4f1b-793f-4a15-808d-00c26a26c166',59,11,176,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-2'),
('07e5949a-9317-44af-a217-32f1d1ec993d','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-25'),
('07e76ad9-6e49-431e-aa4f-f0217a8ec094','df713518-2930-40b6-8d4d-ddc4bcddbec8',100,52,82,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-1'),
('07e974a2-c928-4ae6-80e5-700d5921f1f9','f0485a78-951c-4f89-bddf-b2003f0bf783',47,42,58,0,'2025-10-09 05:39:55.569',NULL,'046517356-3-3'),
('07e9b2d3-8d2f-46ef-bdae-498bb8709161','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',51,13,57,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-5'),
('07ed9748-4003-4df0-9ff4-88d7cafc4c58','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-4'),
('07f11e29-ea64-48bf-bc11-cb528af68408','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.236','745357299-1-7'),
('07f182c1-a87d-4534-8a30-5b3d29e0ffde','eb8d4344-e18d-4390-80cf-728c7ac06212',0,0,0,0,'2024-03-16 14:34:18.928','2024-03-26 16:09:00.985','734391005-1-1'),
('07f1ab4c-c341-4d3f-80bf-d054f504b16f','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',56,14,84,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-2'),
('07f3b04e-7394-4041-9414-6465a6497da8','ada78d77-5143-4e72-858e-02eb9de8df81',60,68,96,0,'2025-10-14 09:22:06.514','2025-10-22 07:00:44.506','478346989-1-3'),
('07f427d3-0591-4928-8e49-d5d29e4b7949','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.500','449890150-1-1'),
('07f43e7f-462b-4572-9c91-379c0522b2b0','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-6'),
('07f466d6-9466-4be8-86e6-45f8d9976859','0009aeec-e682-465c-b701-363a3ef377a6',31,126,8,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-3'),
('07f52c51-78c0-45a0-a565-aa0417e3f049','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.462','2025-02-03 10:51:51.607','74520622-1-13'),
('07f62325-d1de-42ef-92b8-95fe3df84760','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-1'),
('07f73b10-eed7-46c5-9de2-d32b26c29a46','7a9963cd-0d66-4092-bf41-9c56574a2415',185,95,75,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-2-1'),
('07f9d049-8b8e-4bf5-9a80-86278fc3be8a','a769cd75-8095-4eeb-999c-d1a749589a77',110,56,72,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-6'),
('08000685-132c-44c2-be80-048097aa6457','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-55'),
('08060e67-3c3b-469a-90f7-0f3d64578538','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-85'),
('080f44e1-d456-4bb6-859d-f9e3b4ccef80','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-2'),
('0811fa5f-2279-4fb3-9a94-f3385865919e','e54055a2-3c9c-4738-a808-7a4a31877ef1',60,100,18,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-2'),
('0811fd44-c4f9-43a3-b182-7bedc47550f2','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-1'),
('081219b9-3c12-4c7c-b2bd-6840c6557771','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-30'),
('0812396a-1280-4289-b9f8-65beeca902f8','8fc7023c-7fab-44ae-a533-006d835eddb6',11,10,67,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-2'),
('08132a1c-994d-48cb-aa3b-c26b7a2b8fe4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:31.843','248135683-1-115'),
('08163fc1-233a-4414-a62c-68446a80068a','c1d25f90-d493-406d-a430-9b65b4f44c5e',44,4,208,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-2'),
('0818fc46-667e-488b-a813-7faba50df429','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',56,85,100,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-8'),
('0819509c-8f30-4d94-a474-c37a582dcd33','ec1dd010-46a6-4bf1-b8da-05f4c672e2af',65,80,50,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-5-1'),
('0819760b-638a-43f6-9b16-9193010f5121','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-20'),
('081b27dd-1080-4c9d-9d15-4e7c47f70973','c01d9e07-371b-45a7-a83f-217b42fc1fd5',72,100,54,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.265','644593040-1-2'),
('081ff6ad-e0e3-4d9f-9b99-9a75cd8ab54e','1d561668-0f20-4753-86b3-33f1b10746d3',51,51,77,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-2-1'),
('08273daf-91ed-485d-9215-a88fe005258b','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-2'),
('0827558a-dd3c-4d59-b063-252448cca279','e1601d35-cc40-41a5-8e8e-8005a1281654',204,25,4,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-1'),
('0828e435-6705-4822-90d7-1bd3bfc96fc4','d83c40d1-4df5-4c97-bc83-28837db95b2b',35,57,8,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-3'),
('0828f531-8521-4b76-9aeb-737b451fe2c4','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-19'),
('082e8239-6dd6-47e1-8e58-3ddadabd3d2c','c000faa6-6333-4c74-9601-233c813836c2',0,0,0,0,'2024-12-01 06:48:09.220','2024-12-10 12:35:58.728','478284503-1-4'),
('082ee3f1-4d49-4dd8-8e19-26bd05e927f9','845879e8-205b-444b-9d29-1e0a6fa08784',65,10,11,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-4-2'),
('08341ead-765e-4157-b201-614628c32caf','c564475a-2d18-4b15-a65d-9a29abfe2528',0,0,0,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-2-1'),
('08356017-c082-4b58-a8a2-05a1adec96a8','3e4d9220-ce76-450d-a76c-9787b1f4433f',162,94,8,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-1'),
('083a6f7c-a39c-432b-b531-998c3e77baab','d3c3d137-f31d-4357-958b-af365fcd9dce',100,68,90,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-1'),
('08404a66-608a-42a5-a2e7-58c36fb41242','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.765','248692077-1-35'),
('0842cf73-86c2-48f4-bcd8-616acebb3e78','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-1'),
('084451ab-ebd6-4b1f-9811-98c1b6ec2dd7','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-85'),
('08460cf2-86df-483b-a573-8f709a943794','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-1'),
('084721c9-0df4-4681-ba32-6d415ccb5cfa','8199fa34-7302-41aa-ac5d-0e057503fe32',15,75,68,0,'2025-10-06 07:10:14.815','2025-10-15 08:25:23.453','478749881-1-3'),
('084c6010-a7f2-46d5-bce6-4af7ead206e2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-152'),
('084f0779-e0dc-4c98-ac2d-1c90800f2fcd','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.133','2025-01-11 14:10:59.095','248284003-1-110'),
('085566f5-cb6b-460b-a574-73937b5d5ec1','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',58,6,88,0,'2025-03-13 12:21:31.497','2025-03-22 07:37:28.261','982726615-1-3'),
('0859e2e9-9c35-44f6-a1e5-a8d239854b01','05b67cbf-f74d-4a18-b5b8-574251f10d60',0,0,0,0,NULL,NULL,'614726230-1-1'),
('0859e375-5136-46da-bbe0-6d0c86c6eb56','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-2'),
('085dd289-2d84-4ff1-a7a1-9842919dc187','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-33'),
('086112f1-8c70-4d4b-83d5-930a79d9dbbd','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-124'),
('0862b3aa-04c1-4535-b834-12c3d7daab10','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',200,84,31,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-1'),
('08630091-d5c8-4b4e-8c35-c3796cf7ac0a','b94c806b-5763-488c-87b2-52f7eaf89c15',85,75,70,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-2-1'),
('086569f7-2f15-4b88-b75c-99cf6fd7c17a','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',75,51,17,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-36'),
('08677b4d-bbfd-4c75-8a7f-d593e9fa4194','c527dd1d-63c2-443d-aaa4-dcf25c34e426',94,75,70,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-1'),
('0867a501-4e90-4760-bf43-a97d92cc392c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-16'),
('086b65c3-1c10-4157-8720-c51211fcad61','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',155,240,6,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-2'),
('086dcf0a-99f5-4e5e-a08b-2671d60615f1','39e13ebb-f956-45fe-b3a6-284deb267677',54,73,101,0,'2025-09-01 11:06:21.881','2025-09-10 17:04:31.773','644513470-1-2'),
('08705d0a-f333-4ecf-a5ce-9405d1c3d4a7','80d84738-4558-4872-bcee-0d4fada9081f',53,71,100,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-5-3'),
('08713f9d-2f1e-48bd-be76-a6dc9083489d','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-86'),
('0873d5b0-f6be-48e0-a91b-8a011c027edc','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-2'),
('087449c9-1c7f-49f0-bf29-8894b50b0452','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-19'),
('0875752b-f62e-4793-8550-cc1878ad9729','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',262,58,10,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-2-1'),
('087ab02a-44a5-4a95-ba3e-7cfdb878483d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-250'),
('087ef5ea-e441-46f5-bf02-07cbc6a8f315','808a4f1b-793f-4a15-808d-00c26a26c166',48,6,228,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-3'),
('08804c5e-5139-4ea9-89e7-2ce3f8e38262','ea83d36c-37b4-49a1-9436-e643e2ee9844',65,85,70,0,'2025-10-14 09:22:03.828','2025-10-22 07:00:55.246','910129924-3-1'),
('0881fc91-c0bc-4bd2-8338-1443c7403d4f','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',30,40,13,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-1'),
('08826089-5865-4118-b74a-b44258057075','e2277705-d959-463d-9858-1ca3b6dfc8fd',105,202,7,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-6-1'),
('0883b6ad-b7d9-48eb-bd96-b63e99241368','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.292','221190454-2-1'),
('08862a18-1647-4900-a248-880699c3a9a1','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',51,22,10,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-2'),
('0887852a-bda8-4fa3-9d10-f52e43da0d37','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-2'),
('08893924-ea1d-4fcc-badc-7559228ec400','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-69'),
('08899950-0a88-4421-a64e-35644f50c618','f3d9453b-0679-4d52-bd61-c38e6f80c2a6',49,53,60,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-4-1'),
('0889eefe-9be3-4039-8cae-aa311ffe4233','5aac8c34-51ea-4438-b73e-7d54bf02d518',40,25,78,0,'2025-10-25 08:59:03.114',NULL,'455160997-1-5'),
('088bdd0e-2a7e-4322-819b-07afbb2b3453','e95ebe6e-cfa7-4eee-b276-6f464674325e',84,110,70,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-4-1'),
('088c64ce-bb04-4309-854d-a5b7858dd766','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-2'),
('088f8024-1f24-49f5-b09b-9a9d0ccd46b9','1868aea0-f631-4deb-85f5-8aa25773bef0',205,52,35,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-5'),
('088fd0ad-559e-4039-808f-512caba26b9e','2f7ffc63-a12c-4023-bcc3-e7043967b1bd',56,83,101,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.709','675902808-1-1'),
('08931812-cc18-4866-8e79-9dff99d747d7','503ad8da-9a8d-4ce8-9358-85ef86ef590f',92,100,70,0,'2025-10-20 07:17:55.583',NULL,'531380104-1-4'),
('089380c6-58f4-4d21-aa57-c1d08b103ad9','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-3'),
('0893c41f-f4ef-4c2f-9eb2-1a2d10eb299b','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-24'),
('08950c26-d2ba-4538-b778-aca0ecffd71a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-29'),
('0896dc05-e1fe-4ca3-975f-c3cc02e81057','779a6028-a955-4e90-ac62-796d1a85282a',81,57,109,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-2-1'),
('0898653a-193b-424f-b477-b0ea26dd9df1','886e0e1a-c599-47ba-bacc-c329212cc55b',13,62,135,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-6'),
('08997dcb-c713-4822-9ecb-cff3e8664de6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-18'),
('0899ffd7-758b-44da-9bbd-259bee01613c','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-9'),
('08a01cd6-af19-4bdf-af61-1f5001f5629f','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-2'),
('08a10cf9-14d9-4c05-aff4-50475437cfd5','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-2'),
('08a66984-0e6e-4268-90e0-bae5942ba1e3','426ef9bb-a62f-449c-94ff-8db1393b2288',80,65,96,0,'2025-05-14 17:03:49.399','2025-05-24 17:54:56.887','478342417-1-4'),
('08a697e4-ae7a-4b12-a6e0-6e2aea70caec','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-3'),
('08a6aba1-5647-4729-822f-2a916fa76d14','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-3'),
('08a81985-2d38-42e4-acf2-b2441b41ed55','e54055a2-3c9c-4738-a808-7a4a31877ef1',180,60,10,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-3'),
('08aa7fe2-9532-466d-9b2a-3da98d4191aa','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-208'),
('08aac06d-2ea6-4863-aa47-aae89e81c816','2b3a0cfe-c787-418f-bf8b-5ce003d288ff',75,57,103,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-1-1'),
('08ad98e0-c14a-42cd-87de-ab5faed43e8f','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-51'),
('08ae482b-c2c5-4ed1-8e9f-8a3fb76e79e7','7b379856-328b-48a5-b13a-c96f1024ab32',0,0,0,0,'2025-04-21 06:13:27.195','2025-04-30 07:24:50.248','478548963-1-4'),
('08b2d5eb-0bbe-4ebe-bdcb-bfd68bd24d7e','bbc20f00-196f-40b1-9f3a-f3929d7454df',57,82,102,0,NULL,NULL,'50552381-2-2'),
('08b364be-f556-412b-9a0e-9d19089dffda','55dd5cbc-c309-4696-aa21-919f08012acb',93,182,7,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-1-1'),
('08b5479f-66ff-42e3-be69-a102c2832b92','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-46'),
('08b611c4-8c2f-4d24-b6c7-a8401c38e8a4','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-72'),
('08b643c9-b862-471b-8380-9b96e6e7c756','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-1'),
('08b831b6-8c40-487c-b457-d3bcf57985b4','5b059fff-d93e-4d14-9124-dafac1695757',50,50,73,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-3-1'),
('08b8a121-667b-48ef-b242-6f8080075890','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-9'),
('08b9d0fe-c271-4d91-b6d4-0ca3d804faa9','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-11'),
('08b9ef91-7f0c-4412-b2c7-b77b98b4ffbe','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-13'),
('08bb93d9-575f-4e82-90f7-6ab4144fa15d','6cee1429-9935-4eae-be32-dc630b6d70e8',75,54,54,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-2'),
('08bbfd63-4889-4826-8017-6423d64450ed','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-102'),
('08bc05d3-3d77-4dba-a353-67f6801220a2','78093200-7588-4a38-bf16-e75f613ae247',51,51,77,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.035','505850944-1-3'),
('08bdc151-5eef-41a6-8058-8c9b0d3858a8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-244'),
('08be876f-b634-4adf-823b-27735450254b','22399f1c-a89f-4887-a03f-c112be6c99b0',51,51,77,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-4'),
('08c1e9da-d68f-44b9-bf09-30a88d712e04','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-1'),
('08c40827-0a74-4513-8cd0-3c336787862a','047bf09d-242b-472b-97f8-46901b73eea9',9,49,130,0,NULL,NULL,'428905379-1-1'),
('08c559fe-9d57-4685-9386-66d3b7cf391c','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-11'),
('08c7ae00-9e83-4286-8998-5b26eac0988d','ae267513-3704-433b-b18f-6d6210d048fb',100,80,210,0,NULL,NULL,'644104537-4-2'),
('08c93b34-12cf-4f8f-8e95-1a2316b8ced0','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-6'),
('08cac497-18f2-46d3-b456-0dc50cae4461','38109a6e-8ac6-46d9-8530-7fd5b3725869',230,75,95,0,'2024-12-13 14:49:13.085','2024-12-24 12:30:25.814','1936694-1-1'),
('08d4987c-a92d-4a5a-a4ed-f504052afb21','7f5d49b9-798b-4f31-9e95-4d6bd70554f1',100,120,200,0,NULL,NULL,'412922678-1-4'),
('08d746dd-17a4-4d0b-b304-935eec872b87','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.881','248535027-1-2'),
('08d80d46-82e6-4996-bba9-b81d4e87dd1a','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-1'),
('08d8415c-ad02-4541-9eef-209bbdae931b','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-7'),
('08d9ed30-c4c4-41dc-954a-a5e33566c15f','a94a556a-77a8-41f7-8103-f5eed51f9a91',57,60,85,0,'2025-02-23 12:39:03.931','2025-03-08 13:57:38.797','221966080-1-3'),
('08dc5002-5bc5-4595-b7fd-166edd6584e3','618e1331-42cc-4157-b66f-62404be9162b',105,105,69,0,'2025-10-14 09:22:04.937','2025-10-22 07:00:50.606','808922349-1-1'),
('08dda137-5dba-4356-8163-e187c7b3bd24','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-9'),
('08de378e-4aab-455d-a9e1-241b91c5c264','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',70,80,96,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-1'),
('08e57683-e60f-4efa-9dde-967ae48e8a8c','d090324b-381d-4576-9558-a6a55f702152',92,63,9,0,'2025-08-14 08:21:31.391','2025-08-25 07:11:25.135','745824761-1-2'),
('08e9cdb1-93ab-4cb7-9ccb-f919b12a8fc6','aab886db-5418-4813-b226-87d8ffb449be',6,76,124,0,'2025-03-08 13:46:03.536','2025-03-20 18:08:01.972','221396383-6-1'),
('08eefbe5-e9bc-4548-8a60-bf01b3f57d10','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',67,68,37,0,'2024-10-02 09:26:32.554','2024-10-10 16:31:34.970','428736949-1-1'),
('08efc4fc-bdc2-4a8c-a476-5b4aa4bcad8b','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-2'),
('08f01148-fd75-4fae-86aa-ce08332b24c2','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-89'),
('08f1b553-dc24-4424-85fb-621047d6f255','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-8'),
('08fa3773-1646-42e1-ae65-4455cabac0ec','85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5',103,74,104,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-1-1'),
('08fb1a08-0da5-41d6-a66f-9bcee661cade','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-203'),
('08fb7e1e-242d-4a87-81de-a5170feef3f8','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.957','745717474-2-10'),
('08fe3ab3-d3f9-4ca7-82c9-5e4f2b6336bd','4d13499a-c323-4a76-85d1-a36c201137a8',57,84,60,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-1-2'),
('09015a85-c4a7-46d8-8cd3-1d64d42fe4dc','b4914894-38ba-4b92-a3d4-567b3e8d166f',68,103,6,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-2-1'),
('090319b0-c7f0-412b-a5c2-50df3b708fa9','cc7dddf4-427f-4a79-9cec-d95529ff2c95',65,11,10,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-6'),
('09044e6a-5f3a-4672-a04b-01603c1ccebb','0009aeec-e682-465c-b701-363a3ef377a6',80,23,9,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-4'),
('0910c9e0-2490-4c99-b96e-80c4018baadc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-165'),
('0911a33c-2eac-46cb-aaed-bbda79fafa11','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-1'),
('091239e5-ce4f-4d45-9dc4-81f2f76a014f','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.052','74529534-1-14'),
('09135e52-4de8-4347-8d5a-ba1145962cdf','b2cc240f-bde3-400a-bbec-a61085853dd5',32,40,15,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.692','478867058-3-2'),
('09140105-257c-4990-951d-b6a1b174d8d3','471a9a7c-b962-42f0-b21c-205afc04b527',160,100,80,0,'2025-07-12 09:19:07.368','2025-07-17 14:41:44.640','41286775-1-4'),
('09177fa0-53f4-4e14-a97a-eb60df65f077','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-78'),
('09181bef-a9d5-45d6-943a-f27c698600c6','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.907','2025-10-05 12:15:06.056','223441694-1-211'),
('092010b3-7597-4923-b4ea-17d8c1a5a25e','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-1'),
('09240e15-0438-43f4-a344-526014363ae6','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-7'),
('092586d2-d5e3-45b7-ae37-ab09760d3bb3','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',19,43,117,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-36-21'),
('09276b13-d136-46f4-b618-ccdfffc1799d','1841d5a2-cb6e-457a-aa34-68a1f7f98613',0,0,0,0,'2024-10-17 13:41:07.517','2024-10-23 13:04:35.248','923419994-1-1'),
('09295bd3-a926-436d-b8ca-014c26220ae7','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-25'),
('092d4b40-a61a-4177-9a20-e6688700aaa0','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-2'),
('092dd619-54e4-48e3-8fe6-715932d630cc','6098bfd6-9976-47f8-a799-df79295948c1',8,63,268,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-1'),
('09303278-3eea-4075-bc3e-d2619f795620','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-182'),
('09376abd-5075-4223-84fb-8793cd2d4a30','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-16'),
('093d31b9-3f26-4057-bf8a-6eb1448a6791','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.895','2025-01-29 14:45:12.502','248135683-2-54'),
('093da6a9-7039-443f-82ac-925885fa4b4e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-138'),
('093f6ece-79f4-4dc0-871a-3fadd65567ff','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-1'),
('09406f98-ff6d-48a0-95fa-ac6e0d11b491','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-3'),
('0941081a-f201-4111-a5f1-560690c7d106','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-1'),
('0942a238-073c-4f9c-be2e-401f84f5c635','83e81175-cef2-4f5e-adbe-8ca02a747efd',46,46,44,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-3'),
('0943f901-99ad-45af-8924-9df3ce3f7434','25231a29-a789-42b5-869b-e1744eadde15',70,70,60,0,'2025-10-20 07:18:14.789',NULL,'61340935-2-1'),
('09440377-c91a-4c05-86f7-be64926a89ea','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-5'),
('09491aeb-c677-45cb-9b8e-54dd52f05ee1','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',95,139,30,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-8'),
('0949abd8-5391-4600-812d-78eb85a25066','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-7'),
('09511035-4930-49de-b558-a2f723fedfa6','6d799456-04ef-4f63-84ef-f07b7154d34e',41,27,10,0,'2025-02-15 13:31:42.966','2025-02-27 16:42:30.316','982585914-1-2'),
('0954f977-22fc-49d8-8b3f-47f800edd2a0','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-12'),
('09561fcb-7787-4600-8b4c-badc0624e2eb','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.705','2025-09-23 14:04:07.289','221225501-1-5'),
('095638a5-20c2-4296-9e57-97eba34ef0b1','f0a43129-5f51-488f-bd5f-ebd20137e40e',0,0,0,0,'2024-11-12 16:15:37.508','2024-11-23 19:56:09.399','745940979-1-2'),
('0958ff31-1b8d-4083-9d11-c683568ee0d8','0eeaeeec-d499-4938-975f-3fc74fce159f',51,51,76,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-1-1'),
('095b479a-1827-492e-bf89-f89a037d5050','3b92a39e-82f3-477a-9384-ce2b85988711',77,56,101,0,'2025-07-19 07:52:14.501','2025-07-28 12:02:39.073','598211009-1-1'),
('095bdf7c-20d3-4a50-aea3-dd2a68af6abf','5d074556-ce95-4ffc-8684-279dc37597f0',48,26,9,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-4'),
('095d709e-f8d9-49c5-be7f-d800e40ca550','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.451','2025-07-15 19:43:15.075','437222135-1-4'),
('096068ed-946c-4d98-8750-552719e581c1','69acd97e-52c0-45ae-adf5-ee013e52776f',47,84,74,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-2'),
('09621998-7630-45d6-a188-2224eb55feda','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.648','2025-01-06 20:09:27.226','221350993-1-3'),
('09632d49-df93-4d11-9cff-ceab396aad91','919cfe4d-f9d6-40fb-a788-38170b409e4d',51,51,77,0,'2025-08-27 19:40:04.127','2025-09-05 08:51:08.802','896847151-1-1'),
('09635693-2037-4adf-971c-832f1b48850b','6cf15506-e6d2-496a-a50c-1bddeb987a1f',81,56,48,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-3'),
('09643cb9-a60d-47bf-8cb2-659c9765dda5','7012b87f-b3b2-45ee-a901-be79ec1f67d9',51,51,77,0,NULL,NULL,'221407742-1-1'),
('09651b76-0dfc-4c32-bc72-b11f6f37d3d1','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-1'),
('096afb30-0851-403a-bf32-5d6e89c8811a','3aca7d6d-09cb-4903-812e-7535a083b09c',200,160,3,0,'2024-11-08 17:37:44.277','2024-11-22 21:22:11.473','616254479-1-4'),
('096d4342-18e1-4ac4-a757-c78f1608c8e3','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-3-6'),
('096fe651-71bd-4132-a53e-69582393c45a','aca0a822-86a6-4946-95ce-feb7de5fb68e',130,126,65,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-1'),
('097095fa-33a8-4c13-9986-81d816a24116','9c9ece2e-cdef-44ae-9960-980614fe02aa',102,124,65,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.775','478243785-1-5'),
('0970c007-f716-4bb3-b0f7-ffe26f72e731','1a9c727e-5c65-4a99-b25e-b0d3ffdd2826',32,24,12,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-1-1'),
('0973c401-f348-4caf-9bc4-ce1e785012f3','e910f08d-506e-4aa3-9c64-2f41a0272e86',0,0,0,0,'2024-06-08 08:00:29.777','2024-06-20 20:15:25.554','745606440-1-1'),
('0974e3f9-5c7b-452d-94e1-4189dce03029','82ff3bdc-91ea-4214-98c1-4dc85d6f9504',0,0,0,0,'2025-01-20 11:21:20.024','2025-01-31 12:16:13.312','221946527-1-1'),
('09765b6e-4123-43bf-8620-0f3653290082','6c7b7f95-a783-4780-93d4-d95611c52e44',57,57,87,0,NULL,NULL,'338387774-1-2'),
('097a028d-c0a9-404e-8b02-eb759324b240','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-11'),
('097cc9e7-bc87-4e15-a6ab-5e2a4d42d151','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-2'),
('097dcd36-0952-4126-8904-2891722b3515','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-2-2'),
('097dd161-4f61-4411-8002-3bf5a9cd1ed4','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-6'),
('097e12cb-09ac-4711-a003-8671440f43b0','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',220,100,65,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-39'),
('097f9925-c612-4ac2-9c9a-f23cdff5541e','2bd0a09e-a059-491a-8464-25f9d0457185',130,120,70,0,NULL,NULL,'127991361-1-1'),
('0980aef0-97d8-4bab-9991-5923c45bf36a','f68f848d-9773-4521-8431-b7efe576a9ea',90,28,201,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-2'),
('0987b23d-45ab-48f3-a851-08091388d740','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-10'),
('0988199d-5e63-47e9-99b0-ff7c3875ea8d','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.516','478861689-2-7'),
('0988c523-627b-4213-bb88-a60571051c74','73669d80-682e-4907-9777-0f955189f4bc',120,100,65,0,'2024-03-18 07:30:48.607','2024-03-22 07:34:46.866','501901219-1-1'),
('098a2ec3-133a-462b-970f-e32f404a668e','2c694b03-719e-4436-94c7-b64621e4940a',51,51,76,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-1-1'),
('098ae0c6-6554-470c-a5d0-7fd9e74b6dd5','bf9a9a10-03c1-4c3d-ac2b-24d040e1f835',240,100,70,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-5-1'),
('098e57a4-9eb2-4fea-a944-733ca5d612cb','c0b8ae62-d997-4cae-91fe-c5c498f7132e',240,91,60,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-7-3'),
('098f1c0d-90d3-43e0-82e1-9ee0ea22b2d5','f3448104-44bd-4193-a741-f1b06602f4c2',51,51,77,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-2-1'),
('098f4008-9826-460a-9546-f6e5184b530f','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.765','248692077-1-48'),
('098f5bca-e86c-4a9d-be2e-e5734e1227cb','e0eed069-9c6f-4afa-b129-e61b1b32cce0',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-5-1'),
('09926e87-0970-4f4f-b6e4-df1b7a7b082c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-54'),
('099279af-28d5-4a81-a29a-5389b5aa5e47','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:32.379','248135683-1-38'),
('0994b51c-a6c8-4c18-8397-8d3963688b4c','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',76,62,2,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-56'),
('09978604-a5ca-4c2a-9726-ff5bbc0c7097','4a90547c-6b75-4ad7-a83c-cf7308b5af24',90,29,198,0,NULL,NULL,'598138099-1-1'),
('0997f3b8-829f-4517-99a2-a8d6cebfe301','64e3ab53-43e9-4065-b2d1-99c9cd2365cf',120,70,100,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.471','428182749-2-1'),
('0998b444-c583-4d3b-8d7f-40ea660863f4','546ad3d0-25c2-43dd-9443-e48b8e5b6530',120,8,131,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-15'),
('0999a64e-30a1-4392-81fc-231936c57105','5d643542-ec96-4ed9-a8e8-2e7aade7f468',82,56,101,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-3-1'),
('099ad3ae-cfc2-4078-b61b-06d6185bd3d6','c5fffe37-1a05-4e37-8dec-a1cdf4e419e1',160,200,30,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.566','745761149-3-1'),
('099cc539-f6f0-4c51-ae7b-806b3681b154','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-3'),
('099e97d1-90e9-429e-a17a-66178e40a28b','8625abf2-719d-4d7f-b206-16948b318b8b',0,0,0,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-34'),
('09a17c8f-f674-4286-90c3-ecc24895b475','304740fa-6d96-4ea0-a997-094361062796',26,36,206,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-5'),
('09a4ad2e-30d2-4061-aced-76eb9e648732','074ea43f-46eb-4c8b-a2cc-11fd81b03760',65,93,198,0,'2025-03-27 08:02:46.623','2025-04-08 15:37:36.306','644206771-1-1'),
('09a5ccb7-2174-4231-81f9-da945181be19','47019764-af76-445a-be8b-30f53c6195d6',0,0,0,0,'2024-10-23 14:11:51.627','2024-11-04 08:40:42.087','478941206-1-4'),
('09a96bdc-d387-4785-b259-71c4a98296cc','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-5'),
('09ab99cd-9833-44e9-ad7c-2dbefa85e15e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-54'),
('09ae8534-e24a-41ab-be9e-c0acf4ad4e9d','e7f31a78-648d-4a5e-9111-1bf7db38dd79',120,24,5,0,'2024-04-27 08:45:42.752','2024-05-07 15:42:22.459','501216728-1-2'),
('09b2ed75-37ae-4541-82b4-eb66a002ff0d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-21'),
('09b328d4-41c1-4ef1-8159-550d0299936e','9248be40-4180-48bc-9c4e-50a1e7dee4f1',250,147,16,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-2'),
('09b3814b-a686-4214-bf1a-60e858bd9f23','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-7'),
('09b3b0c0-baad-4ade-8b14-c96d7fedccb4','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-6'),
('09b4358a-cd89-492b-9943-c53fc83af1fc','2453f6bd-9e41-4af8-9f8d-4c11364b9084',27,17,17,0,NULL,NULL,'598967733-2-1'),
('09b7fb8a-c8c6-4353-b373-09a3d6a0b0d5','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-3'),
('09b97cb0-d2cf-4549-a082-a59e2493e70b','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-25'),
('09ba465d-ecca-4ad6-8d6a-28002dc16900','b2c78cf5-c58c-4553-bd14-49e83916894c',53,46,8,0,'2025-04-30 14:29:10.929','2025-05-13 09:05:26.083','412284149-1-14'),
('09bb6e71-0e15-4e9f-8e81-484b2fd60e08','a122ec06-073a-431c-8222-9c5ce64cf0cc',0,0,0,0,'2024-06-08 07:59:59.587','2024-06-22 11:11:03.823','478262226-1-1'),
('09bcc9ac-c82d-4bfb-b248-dc7017ec8703','e787b002-b91a-4f0b-a507-be225c591706',29,84,202,0,'2025-02-20 12:14:55.664','2025-03-04 15:38:32.599','982558117-2-1'),
('09c153da-f22b-4a37-bdab-61178cd79fda','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.336',NULL,'22330381-1-14'),
('09c59e02-8360-415d-b29a-860269e8f73f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-134'),
('09c5b96e-0826-4604-83c1-6c51c9e54704','12b37afa-91dd-4e2d-af06-ea0c3edaf49f',100,100,70,0,'2025-10-22 13:07:10.126',NULL,'644312365-1-1'),
('09c5c0eb-bb58-41d8-a7fb-083a5eabea3b','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-3'),
('09c73eaa-8d64-4872-8d49-e4cf0c09b2ed','f88c3e53-b711-4bcb-aa3d-9543580054cd',40,200,4,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-22'),
('09c74434-88f4-438a-a99b-10b2525033f9','b90750dd-73f4-4067-b29c-e3c2b60c9fa9',0,0,0,0,'2025-08-25 12:32:28.392','2025-09-20 07:01:22.780','437452475-1-2'),
('09ca5431-18e7-4574-b0e2-bb8818cb2a14','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-167'),
('09ccdf1f-7bb8-4bca-8f55-3b9e8800583f','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-13'),
('09cf66d7-8b28-4979-845a-8e4e51f4b35f','3da17157-28be-4bae-8dcc-745d0e93e591',65,105,121,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-8'),
('09d360b6-708f-470a-88f7-0f066a47c330','ae1c857a-94b3-411f-9eda-b4b89f2608d9',53,77,102,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-1-2'),
('09d7ffb9-02c2-40dd-a7ae-bcf3ab5df78c','89834bf4-a4be-4296-8bac-db24c46d63fd',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-2-1'),
('09d8759a-f9df-4d1d-a69d-36da5acc4205','01ff323a-2bdf-41db-bd07-b6903d6c33a6',94,183,7,0,NULL,NULL,'371117320-1-1'),
('09d99840-db4d-4407-8f28-73ec293ccc93','5fa83bd5-c793-4df3-9fe4-54f56117638b',240,97,80,0,'2024-11-02 08:42:14.214','2024-11-12 16:17:30.024','750145910-1-3'),
('09dd53e6-37f5-428c-9aef-453fd4ba1bca','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.161','2024-11-19 17:22:04.280','223744518-1-13'),
('09de4e47-2dc7-4004-8d07-3a5f25d8f7a8','a7008be9-b82f-4d28-83a7-2484066afbc5',51,50,76,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-1-1'),
('09e404e6-7dec-4378-a118-fd0dd861df31','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-25'),
('09e5d8fd-b16b-468b-bc9c-a09b7af514d2','fbfff131-b02f-41a5-967f-a0528f7275f4',50,100,70,0,NULL,NULL,'745197948-2-4'),
('09e71463-b535-485c-8b83-b0faa0e4b2c2','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',98,122,75,0,NULL,NULL,'504809900-2-1'),
('09eaedc5-52c6-454e-9b76-f89d1f185c5b','b15fee30-5c16-4f4f-9aec-4a574a38187e',93,235,85,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-2-1'),
('09ebbcf0-8d14-42e3-8ba7-bebfa665f3e0','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-4'),
('09ecb722-c820-46e7-9f00-94b19eaef7d1','25960cc2-fb91-4f42-9e90-011ad226f434',73,95,65,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-4'),
('09f3430d-3de2-41ef-a53f-089061697eec','c7fce8c7-acfd-4c12-8db5-81618a4b211d',82,11,15,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-17'),
('09f8e09a-a6ca-44b5-aa2d-679e48166ed2','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-10'),
('09f97409-592c-49c2-b240-cdc4f61009ef','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-12'),
('09fdf577-20e5-44fc-8175-2633019bf3bc','81d0dc47-7670-4778-9132-e810a9a4d368',80,206,2,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-1'),
('09ffbdd5-7506-43f5-a309-7cbcf0f04de9','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-51'),
('0a01d3c8-2ca5-41b0-b50c-436cbbfda437','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-4'),
('0a01e7a3-333e-41f0-b54a-4a3dc625b8da','0009aeec-e682-465c-b701-363a3ef377a6',165,12,46,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-5'),
('0a020788-5d54-4f1b-a25b-5062ff4c70aa','c98f6188-56c5-4870-be97-be71cf95f62e',254,12,9,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-39'),
('0a0288ce-dad2-4f6f-b139-5bba0799c345','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-79'),
('0a04a951-d232-4dae-bc7b-55952b882288','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',82,82,96,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-5'),
('0a06d892-b61e-4952-88b4-fda65e8ec2cc','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-76'),
('0a0ac832-f3be-4c24-95b2-d23739ab8a51','9114ad70-d53e-4d1f-89c7-30585d0a43de',180,47,46,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.590','146630568-1-3'),
('0a0bd5f2-f7fe-4385-9161-d57d1e54e58b','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.038','2025-07-24 06:26:53.165','248883377-1-5'),
('0a0cf2d4-0ab0-4c3c-919c-1e1142f22dfe','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-58'),
('0a0cf513-aee7-43c8-9c66-cbccc836eed9','66ac3e8e-58c7-4a1e-bc6b-2d9b6a2a311a',181,201,32,0,'2025-04-15 16:01:26.830','2025-04-26 17:56:30.038','745770556-1-2'),
('0a0dde89-27e1-4ad4-8eba-93dcf3ae42ec','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-17'),
('0a10319f-f921-49d1-a257-ac1593239859','bc611bdb-d2fb-42fb-b735-3524b3d6a4fd',0,0,0,0,'2024-05-29 10:12:23.457','2024-06-11 14:04:39.029','412903351-1-3'),
('0a105c9b-21f5-421a-bd99-12c5c8a0298d','18f619ca-618c-4101-9b2a-2b9e3114395a',81,48,50,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-1-1'),
('0a112ee5-2400-4344-9ca5-ec2c9c7481e6','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-2'),
('0a14e368-872f-4b22-acb4-39012fbf7b58','e54055a2-3c9c-4738-a808-7a4a31877ef1',86,16,49,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-4'),
('0a191d7d-cc3d-456c-a39c-5fc54ab159a5','bee352b0-739f-4e4e-92a3-3b8256a7e9e2',16,15,152,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-3-2'),
('0a193ad0-61d2-4acc-b534-ffe3d701e8d4','b0475ba5-7be0-4dbd-9322-91f52b8cda06',0,0,0,0,'2024-10-23 14:11:40.001','2024-10-30 18:09:35.878','248764146-1-3'),
('0a1a5178-2722-40f3-8668-ded062feccae','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-32'),
('0a1a64cd-0041-4806-a7ef-1eedc3ac806c','58885293-5f9a-41d9-a0c0-1e5e1b47c8a5',27,160,200,0,NULL,NULL,'982759064-2-1'),
('0a1bb53f-8446-4259-8f02-3e36de9afed0','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-9'),
('0a1f56a2-bafc-4e84-aa78-48af7331fbb0','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.569',NULL,'046517356-3-4'),
('0a1ff91c-270f-4b56-9d6b-4dae7096fc4d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:34.362','248135683-1-139'),
('0a2418aa-8bb0-4dfe-bb86-12c9f11eda34','e1170d04-f8eb-407c-ad59-267ac93c8240',102,215,85,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-2-1'),
('0a250af0-f0fb-4cdf-b06a-45060d628818','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.468','735500422-1-8'),
('0a2d5521-1b3d-4d34-8c46-32fe5f734af6','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.276','223379282-1-11'),
('0a2fa828-2a58-42d2-9a01-8cd4a04f9bfc','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-2'),
('0a31d527-e2db-4ba4-a15e-0cbe559aee3a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-123'),
('0a31e71d-e1e8-4369-a45f-75ade176f32d','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-2'),
('0a347e01-545a-4060-ba2a-22339c126549','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-7'),
('0a37e068-1a7e-466c-bff8-151b55bdc338','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-83'),
('0a381d27-8c54-4ba8-a93f-53028288adcd','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-74'),
('0a382cb4-8ac3-49ef-b083-cffb7aca64e8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-90'),
('0a38ca8e-0449-466a-af4b-b56fff64c288','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',13,62,134,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-1'),
('0a3e2558-43da-435f-b896-a584e7158558','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.053','2025-07-25 06:56:26.352','735792949-1-2'),
('0a42c73c-9f1c-4e87-a278-93734402517a','90d1e78e-d8c2-4ff3-bfe3-1ae45c015b22',51,52,70,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-3-2'),
('0a44bdcd-8352-43af-a718-738dd9eb4aac','642202df-ca75-465e-8036-f34da2dad54d',64,9,104,0,'2025-02-03 18:19:33.518','2025-02-15 16:08:58.969','20390821-1-16'),
('0a49f74a-17f2-4322-89b6-79554e53d50c','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-1'),
('0a4abedd-0f0b-4c4e-a869-efc78040f7b7','4333409c-e607-4580-98aa-64ce9862909d',97,70,226,0,'2025-09-18 15:48:52.001','2025-09-30 18:47:48.887','478616973-1-2'),
('0a53f3a9-dd25-4e66-b50f-5d65d18f2510','3a133e35-97e7-48eb-8cf2-15d2cfe04475',230,65,97,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-1'),
('0a540f46-6ea7-4235-bd26-1c605b08580d','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-10'),
('0a57da53-ecfe-43ad-9872-010cbdea4031','b8089750-c1ff-4b2a-ae78-78b537c54a69',57,83,101,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-2-2'),
('0a5a2e8d-366b-42a0-a51b-2bcac1e7220c','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-2'),
('0a5a78df-5ba0-4c25-bdb2-32c109bd5a3e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-80'),
('0a5b5cb4-0261-4473-8733-b68807221c95','34ddd883-283e-4768-b94b-c347224b0365',35,35,35,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-2-1'),
('0a5cc38f-68b3-4074-bb31-3807abe9200b','e89e7d75-4967-4c63-9f73-981469e531af',235,67,5,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-3'),
('0a6108e6-de7b-43fe-89ba-9d67f6b9e40b','642202df-ca75-465e-8036-f34da2dad54d',54,56,228,0,'2025-02-03 18:19:33.518','2025-02-15 16:08:58.969','20390821-1-19'),
('0a62d4f1-28fd-4043-848f-9a1d07356244','5089704a-e90b-41d3-a4fd-0f97ee26031a',44,60,100,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-11'),
('0a662759-3597-4d99-91b3-478930291747','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.765','248692077-1-53'),
('0a6ac4df-cb74-4c13-9e76-1e0154b6f2c6','09db59c3-434c-44c0-b22d-c0005ae4ad6a',186,96,6,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-1-1'),
('0a6db6bc-dfba-4814-b418-8045e9bcf34f','ca9a64dc-5c9e-419e-83e6-dc5642b05495',245,95,70,0,'2024-03-31 17:55:10.379','2024-04-12 07:17:01.209','982310142-1-2'),
('0a6f0965-bad3-471f-98ff-254b2b434bbb','6ff86400-74db-4fb0-8f8d-7ebd7383bc24',0,0,0,0,'2025-07-08 11:31:03.623','2025-07-25 18:05:15.056','735929791-1-4'),
('0a70e15b-3707-4ecb-9028-b64683b87862','57ef4979-842b-4b07-84ef-752e1f28ee7d',28,102,200,0,'2025-10-02 06:45:34.041','2025-10-15 08:20:24.218','478339664-1-4'),
('0a718c31-350b-4ed8-8685-bcc527485be9','b153c580-1fa3-4d05-aed9-d033117f4c17',8,106,210,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-3'),
('0a72ec0f-3419-4e6e-a843-8e4dbef89e46','632338c1-7da6-421f-99e7-3499262dffe4',80,70,75,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-1-2'),
('0a791182-abc3-4a1a-b004-04ba578fce15','04709db7-1bf3-47bb-af82-bf9215362742',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-1-2'),
('0a7ad261-2225-4ba4-a4d3-9d757d086a91','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',100,19,6,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-3'),
('0a7f7fbd-2dea-40df-b947-4cba792772b9','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-119'),
('0a8096b9-b0d8-4311-aa03-1c5eb098f27c','38dae227-f2c9-475f-bf36-c9eafe154a88',104,70,70,0,'2024-10-23 14:11:52.661','2024-11-04 08:40:37.608','910926193-1-5'),
('0a82c2a8-fbc0-44f1-a1d6-b727e16d9c42','2fddfc98-e36c-4823-9d4f-33b7509099cd',0,0,0,0,'2025-04-11 13:41:23.485','2025-04-28 11:58:33.902','614868518-1-1'),
('0a82d264-a322-43fd-b512-45eccec3172d','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.855','412252425-1-4'),
('0a8a39bb-a99f-44d0-afda-990fd400fc44','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',81,102,5,0,'2025-03-13 12:21:31.497','2025-03-22 07:37:28.261','982726615-1-4'),
('0a8b99fe-babb-4129-aaa1-51197f9ea2dd','d9a1e971-aa20-40ed-a8c1-d1b718ae07dc',65,63,87,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.035','505850944-2-1'),
('0a8c0151-3b5b-47f6-bff9-a24a98cf4b5c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.951','223734808-1-75'),
('0a90473e-2693-439e-8fe9-70474e8b51a5','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-56'),
('0a9169a5-016a-4ee9-9758-39a62be840c5','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-14'),
('0a99f6ac-1387-4351-9ded-9f7b129cb6f8','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-5'),
('0a9a23a0-7e08-45ad-82df-77b114e2de58','803574ae-1ef3-4704-8432-986beb633506',63,7,14,0,NULL,NULL,'614364554-4-3'),
('0a9ad98f-bf14-4031-9631-2a109103516c','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.261','2024-07-16 05:12:05.213','248418017-1-3'),
('0a9e1925-55c3-4a63-99a2-4794fb6e47e8','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-4'),
('0a9e37fa-e28a-4e33-ad9c-0237a5bb2cbd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.900','2024-07-18 07:32:21.067','412586204-1-3'),
('0a9fff88-2376-4f7d-ad66-14669dcbf500','f6885427-480b-4660-b34b-c410a6dc850f',49,49,44,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-3-1'),
('0aa18660-17aa-49e6-9476-9b7de431353d','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-13'),
('0aa2c715-13d9-4224-a88d-9345c20b624c','e9dbfd33-c34f-4a2e-aff6-18956dfc778b',50,50,95,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-3-2'),
('0aa33056-0d4f-43e3-b8a6-b35083ebab16','9affc7b1-09c4-4e84-b48b-d0c117c421b0',50,50,80,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.901','412280381-1-49'),
('0aa386d4-0d06-47d9-afcb-4384d74cf571','ce3f831d-2675-4684-9557-6bae46763ee7',51,51,77,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-4-1'),
('0aa92ee4-f5c2-4cf2-9a13-66c8bb040501','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-12'),
('0aaa75bd-a04a-4e25-a368-a137856a8eca','c6d965be-8394-4c92-b2e7-c0edeb71006b',82,57,109,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-3-1'),
('0aad5841-aae3-4d08-a656-8f9708f4dcc8','05b97ce2-a737-45d6-a444-20708de6bbba',66,51,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-5'),
('0ab1017c-8ef7-4cdd-955a-8231fce854cb','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.204','982754836-1-8'),
('0ab2c57d-5659-4ec5-9c68-9dc8fe84aab2','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-4'),
('0ab6ecb1-c49e-4a48-89d3-f5d58430de62','642202df-ca75-465e-8036-f34da2dad54d',21,58,98,0,'2025-02-03 18:19:33.518','2025-02-15 16:08:58.969','20390821-1-2'),
('0abdc407-8c26-47fc-a8af-0f2735551b8b','0992d733-abbb-4891-8268-04764b359116',61,201,28,0,'2025-06-27 17:12:05.163','2025-07-16 07:46:09.842','745249081-1-3'),
('0abde78c-8993-497d-be95-beecc5253548','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-165'),
('0ac066d4-a782-4411-adc0-5d69cc8677c0','35108694-a340-4204-a046-217b0f92915a',72,73,73,0,'2025-09-12 17:16:55.616','2025-09-24 14:32:31.465','011195834-1-1'),
('0ac81b4b-7c8d-4369-b940-5cf6955d629b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-51'),
('0ac9028f-9bb9-4648-8c86-ca41b8c48fc5','c7fce8c7-acfd-4c12-8db5-81618a4b211d',241,54,10,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-7'),
('0acb28d2-88a3-4dbf-b092-13e767c7d2dc','546ad3d0-25c2-43dd-9443-e48b8e5b6530',23,94,9,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-18'),
('0acb73c5-19e4-47ff-90f4-09332980ca6a','66111de3-4db5-4d79-9d26-01d8fabb833a',100,82,57,0,NULL,NULL,'02713231-1-7'),
('0acd87eb-9dc0-4cac-91a4-7b098ba3ca34','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-24'),
('0acd986e-7e39-48e9-ab98-5a419a6ad856','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-4'),
('0acf8428-0e32-4d24-8b01-6ea3c8885abb','3da17157-28be-4bae-8dcc-745d0e93e591',43,81,11,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-27'),
('0ad01ab3-7994-4aaf-9e4f-06586019047a','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-8'),
('0ad29ef7-d372-4808-a683-be923eb9f3a0','f9e43273-b7fb-4f2a-a82e-67f60793eff9',95,63,121,0,'2025-04-11 13:41:43.125','2025-04-24 15:02:05.019','745767667-1-3'),
('0ad4e428-5c53-4d06-84a8-7c9aed16c224','1510fb1c-ac60-443b-8470-17f2857b0558',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-1-1'),
('0ad64e13-0ebe-4030-9aad-1916630531e1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:34.951','248135683-1-124'),
('0ad7bbb6-b9f8-46c6-900a-fb98d1e99e66','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.929','2025-05-13 09:05:26.083','412284149-1-22'),
('0ad7e266-3696-4816-ac8f-e1b00574105f','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',146,50,25,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-2'),
('0adc5a8d-af0d-4476-954a-7f8a1355c826','b80a687d-56a1-4f89-95ec-335dbcb599d3',0,0,0,0,'2024-10-17 13:41:10.385','2024-10-22 13:52:03.553','97677559-1-2'),
('0adec58a-3509-4574-b63f-64a65a4de751','b458ebf7-66fa-45cc-b0b9-12f05086077e',51,51,76,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-1-1'),
('0ae0b6bf-2d5c-405f-b9c3-e6a00681f18e','ceaa236b-3a68-4533-ad29-229cec3a8f6f',107,19,209,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-3-3'),
('0ae274d1-45af-4347-a4b7-fc2cd4d10921','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-39'),
('0ae6019b-97e9-4aa2-9a8f-38258ceaf6d0','cde2b645-2cf4-4ca6-9d59-ef733217c501',160,50,60,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.325','973510341-1-1'),
('0ae75755-b3fa-465f-abc8-c4e016af51ca','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-7'),
('0ae946cc-f971-458a-ab1a-500398d49093','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-10'),
('0aeaaac9-f942-4cf6-a998-664ff4072784','0602416a-017d-4286-844a-6bc37caa79a8',83,57,101,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-1'),
('0aec6de6-b0fd-45f6-bb26-bbe19743ea06','bd7ba9b5-8269-4522-b579-d69c949c4a64',82,70,127,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-9'),
('0aec6e07-5352-43a0-9f00-a2f9e18c7dae','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-95'),
('0aeda4d7-1406-44e9-b6bd-053cadb849f5','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:15.308','248135683-2-42'),
('0af00977-ba89-4db4-b820-7709a264fb66','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-4'),
('0af10a0d-d732-4850-bbb4-b308e270d61c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-79'),
('0af15a36-e007-47f4-bb8e-8b64a36b326d','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',60,50,8,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-1'),
('0af291c4-a9df-4fe2-b286-ac9c6952b086','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-16'),
('0af2b867-336c-43d2-b4e5-9cb8e2f57f0d','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-4'),
('0af3153d-aa2d-42ce-9737-3efc4ebe87c0','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-16'),
('0af5f02d-3d5b-4ae0-a81f-1c7af566b0db','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-60'),
('0af77901-be6c-44da-868c-81e057d7af8c','db7058ef-de6e-444b-b25a-dfa474ba7bcf',100,57,28,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-1'),
('0af9017c-0cd3-48ee-bd7c-8db030cb82ef','2d762184-6c8f-449d-a5e2-ee9bc3dd36a6',70,205,85,0,'2025-10-22 13:06:42.032',NULL,'776312220-1-3'),
('0af973de-1364-44d7-aa4a-ccccd55185c9','0c4e75d5-e342-41c3-949e-5ca8657ec836',30,30,145,0,'2025-09-02 14:48:39.153','2025-09-10 17:05:41.390','598226174-1-2'),
('0af9fd23-bdd1-4587-93a1-099a1bdcfdaf','167dd835-3a5c-47f0-9794-de787a35b01f',235,93,75,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-3-1'),
('0afb3610-f8ff-4dbb-809d-3666a13f11d7','a4fbce4a-8063-462d-aef4-150b13a4ea25',96,195,5,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-1'),
('0afbbed2-dbbe-4a54-8642-d03a3982933c','eae44c12-6eeb-4042-97c1-e6abf8051619',245,97,60,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-3-1'),
('0afe0f95-ad4b-4885-ad72-b7acc4bece93','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',41,22,18,0,NULL,NULL,'428437129-1-2'),
('0aff9772-1bc1-4f92-8b2c-62e8081b8783','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.809','478150977-1-1'),
('0b008a48-0b6c-4535-88a6-8b1e3ff98d57','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-26'),
('0b01eb84-de2f-45e9-b6b5-4960a37520c4','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.816','223853931-1-33'),
('0b0413b7-08e3-4d86-82de-fc3d82ed841e','df713518-2930-40b6-8d4d-ddc4bcddbec8',100,52,82,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-2'),
('0b0a100c-4a34-4a84-9adf-72aa55ad6498','a9e59bad-160c-4c51-b34b-7c71bb5efeb3',97,97,70,0,'2025-10-14 09:22:22.488','2025-10-25 09:00:18.615','011804405-2-1'),
('0b0babca-786c-47e5-9f1c-ba10b4adf81b','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.881','248535027-1-3'),
('0b0c1656-9d86-423c-b1cf-d9893fccd53d','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.958','745717474-2-15'),
('0b0f78d3-284a-435b-880b-3e4a41b6c971','cf7f91ae-875d-40a7-aa62-343d55ae5df6',0,0,0,0,'2024-07-20 16:33:51.062','2024-07-25 21:24:32.800','412603598-1-3'),
('0b13d2c6-3d09-49b5-943a-4ced43390a13','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-2'),
('0b14d264-c87e-4257-9a4d-2f1506c41506','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-209'),
('0b15900f-6c78-4f23-a97b-8207a53a3f73','b2cc240f-bde3-400a-bbec-a61085853dd5',19,46,43,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.692','478867058-3-3'),
('0b187e21-a9ca-46e4-8656-42bfbc98b0f7','e54055a2-3c9c-4738-a808-7a4a31877ef1',190,48,6,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-5'),
('0b20da11-91bf-49f1-b54b-45ae8686cfce','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.808','41270066-1-1'),
('0b224378-560c-4bc6-b056-95160207cb0f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-2'),
('0b23622b-8187-4bdb-9491-94f7d1322f50','2c3b7dd2-d5f4-4908-bc0c-804b3b628741',150,184,20,0,NULL,NULL,'011894235-1-8'),
('0b30d2bc-298d-4199-b36d-a59bb11d83c3','a52a8f1e-fcc3-47df-b282-9601c50b05d2',188,6,60,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-3-1'),
('0b340bb1-c69d-44ea-868b-6d076f191b5a','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-29'),
('0b369164-e982-47b8-a2ed-24f3c32bf54c','08f19940-4aad-46bc-bf72-01f66d155c84',205,90,2,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-1'),
('0b36d37e-edf0-4d12-a0aa-914500d6d2ea','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',68,52,14,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-3'),
('0b38b096-e362-44b6-aaf2-9ba599e889e7','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-6'),
('0b3a9ee3-2701-47b8-9532-000acc97835a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-102'),
('0b442f90-9632-4f8d-94ab-771710e8e02c','c685ccef-58ed-4f1b-853f-88e58701a0f9',80,73,80,0,'2025-02-09 09:51:37.801','2025-02-18 09:36:07.880','319918133-1-2'),
('0b4bb75e-8942-40ab-9a7c-4f7029c5e2b1','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-47'),
('0b52b053-3fca-4ac7-a38e-8cecb2250ff9','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-6'),
('0b54fadf-605d-4d7f-81a7-ff52b7ff339e','3da17157-28be-4bae-8dcc-745d0e93e591',44,213,10,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-36'),
('0b5530d7-705a-496b-b2ee-78e4a1025b27','fb58f438-30e4-4e01-af6e-6378e27a11fe',210,32,20,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-1'),
('0b5e3cfb-f3b9-4662-a295-52d4c09c30fa','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-96'),
('0b623dad-a86e-43d6-a1d0-949ae3bfce45','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',200,90,28,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-1'),
('0b636ebf-c9b1-49a8-b99d-6fec2898ded9','0dc117f7-5e70-4621-87f8-335baf3c4f19',24,8,205,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-4'),
('0b648e95-e076-4fd1-a669-cc597a736b93','ef877586-eecb-4c6f-a5bb-bea716e4c29d',75,110,135,0,'2025-10-02 11:20:33.093','2025-10-14 09:36:00.702','412989879-1-4'),
('0b64f9bd-dab8-444d-b208-67b9655fe781','597a9de3-517b-438b-bc68-5db3df76109b',65,66,86,0,'2025-01-26 10:54:39.096','2025-02-07 11:19:27.865','127927013-2-3'),
('0b656b88-d695-4c79-ac09-9572d4245c20','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-11'),
('0b6892ac-f4c9-4d3b-a243-2aebc673a4b1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:37.836','248135683-1-150'),
('0b690b05-fff5-41ba-81e0-c6807081c17f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-134'),
('0b6ca770-bc6b-45a4-9766-94e554cf2cc3','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-13'),
('0b6fa42b-826f-4312-aca2-71b61e5b8773','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.505','221639055-1-3'),
('0b751b3d-a97a-481a-970b-9d916bc8dd79','a769cd75-8095-4eeb-999c-d1a749589a77',205,42,95,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-25'),
('0b78b2d9-2bd3-4778-b69a-22b03749d912','fa1b43bd-5ac8-4622-adbd-464a8c925f9d',50,50,94,0,NULL,NULL,'7455365-1-3'),
('0b793461-0333-4ef4-b575-309e5975f10a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.744','223422825-1-147'),
('0b7d13f3-5485-4836-9b7d-55d7cf7c2bc5','58f9d367-338f-4f26-923c-11e9b56748d1',45,45,78,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-2-1'),
('0b820969-3864-4957-ba21-c766f3831b31','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-1'),
('0b83f896-101d-4885-8e8b-5990778dce5f','7311f1e0-e2be-43dc-9e40-f94a010e8939',203,31,8,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-1'),
('0b878ec3-fb69-4c1d-b878-b0cfcdb5f3b9','7ba47169-83ca-49a6-98fc-6ef1a1990eac',260,160,2,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.522','982630175-1-1'),
('0b88c6ef-bb17-4cc7-90ee-6aa5a9c18a46','b5601e46-e9fc-4d1c-8c4d-4e974d336768',85,102,237,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-2-1'),
('0b8c7a42-047a-47e2-a749-f419527f9f93','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-59'),
('0b8d5ef7-cd6f-4cfa-8c41-beec838501c9','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-7'),
('0b90ccae-e62c-45fa-a441-5063b9c597ee','00c1fd23-178e-4add-8ff7-f9f4e9131927',53,100,74,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-1-2'),
('0b915708-55a5-4140-94a9-39e69991148b','05250dd0-c37f-4c20-872c-06cdf609c03d',235,70,92,0,'2024-08-31 13:26:30.884','2024-09-09 15:17:41.175','982545187-1-1'),
('0b937e98-a44f-4676-ae9c-20bc88144d7d','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-3'),
('0b96f872-644d-4feb-af1a-4eb72c32fd18','b08f1011-0521-44ed-afa8-62b0f014b52e',51,51,77,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-3-1'),
('0b9818f7-aca1-4583-8d51-e9d94cb50f7f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:35.903','248135683-1-20'),
('0b988f30-4da5-45f5-bb1c-848311ee889d','5ab2416a-7bef-46c2-b80c-b65bde62a234',44,146,10,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-1'),
('0b98b6c3-ce82-4a28-a0c8-2beceb447cfd','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,80,6,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-3'),
('0b9da059-6b73-4484-9dc9-e3a3e62c0177','fac0c3c7-d870-4897-a631-62a0ad9bbcfb',101,124,65,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-5-1'),
('0ba06b6a-5f3c-4e3e-8edf-2c2bec674a13','3d740bd3-88dc-482c-bec6-f4b0fae42557',110,195,70,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-2'),
('0ba73b7b-8e29-4119-a480-1e63b8964656','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',71,100,98,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-5'),
('0ba8f3ee-1136-420b-9052-67ab4bdcb436','c2e59836-c823-41bf-b343-b3df9dfc91f8',67,95,90,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-14'),
('0ba94265-1abb-4917-8374-b91a6606f3f0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-3'),
('0bae79ee-700d-470b-beee-e2bf7667cc3d','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-12'),
('0bae7b2c-14f1-495c-9f6c-11d8edd97d07','08af242e-dc62-496d-980d-0f589dcdea60',57,93,230,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-2'),
('0bb27882-0096-430a-b92c-c81adbe60799','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-159'),
('0bb396d6-4537-4179-8a81-2c01f5f279d5','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.468','735500422-1-15'),
('0bb5e1d2-8ab0-4dac-b3b2-1589643d6436','6b9f8196-1385-4aaa-b181-33cb3a9d6e35',45,45,74,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-2-1'),
('0bb91eec-4037-4562-b974-9af818f7051a','047bf09d-242b-472b-97f8-46901b73eea9',9,50,63,0,NULL,NULL,'428905379-1-2'),
('0bb9a0f5-0610-4dfe-91a2-d81383a749d6','d84ba499-6aea-4ff0-b177-6f8576e1fcdb',90,90,68,0,'2024-08-31 13:26:36.284','2024-09-09 08:43:26.643','982868918-1-1'),
('0bba3add-4248-4f39-ac9d-c02e40098a81','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-23'),
('0bbb14a7-23fc-4848-9817-eb6ae7c9c83c','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-46'),
('0bc04fd9-7fb6-4d2d-b173-1d6fe8affd82','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.229','221254389-1-4'),
('0bc1a556-f4fb-42e5-8b8f-2cab04a06d37','01b198ce-2067-4df9-97cc-dd409b322675',0,0,0,0,'2024-11-02 08:42:25.804','2024-11-11 19:55:51.322','22315159-1-1'),
('0bcc3a91-00f5-40f0-bf82-c7d25a9373a6','193f8529-9851-484d-b59f-72470c97132f',44,43,110,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.274','371672954-1-5'),
('0bd4959a-2816-4445-a40b-edb664a9b917','48708534-ad53-4b6a-99ed-de38c6f08322',51,51,65,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-4-1'),
('0bd4a646-6280-4bf2-81a0-fb92bb3adeba','c71fdc71-df3e-48af-9323-d534b0931ff1',80,211,5,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-3-2'),
('0bdaab05-bea2-4cf7-a229-3e7817905a2b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-4'),
('0bdae5b4-6dc9-4345-91e5-94cc417df677','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-17'),
('0bdb4905-fa51-4e0c-8f0b-f07fc2156649','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-220'),
('0bdc8d80-a1ce-4c84-a418-bef74438395c','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',93,97,47,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-5'),
('0bdf4c4e-b78c-432f-bace-8160e2f62250','3535d433-eb38-4879-84b4-dbf8410809cd',58,10,44,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-15'),
('0be021c3-8b10-440d-9220-217ad7a20243','29c9b975-e3ed-4456-b514-4c8f57925000',0,0,0,0,NULL,NULL,'011548428-3-1'),
('0be37238-19ef-4c69-884b-19161fc67df6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-237'),
('0be3c968-5318-4016-870f-68cf35c33498','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-40'),
('0be5e31b-c462-4945-8d68-6bd63087cf6a','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',45,45,75,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.704','437591433-1-2'),
('0be7e0ef-8b00-44fe-8569-de8ca394d501','2e116f09-c1b8-49f7-994a-7ed5bfd8b502',65,63,85,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-1-4'),
('0beacc91-d3ed-4e81-81ef-ade061c94a61','6a308121-6cf9-4384-8446-08182bd669fd',90,58,12,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-11'),
('0bed137f-5426-47bf-bc3a-62c825aaafe0','625aff0c-815c-4c92-ac3f-610621b3fe4f',0,0,0,0,'2025-02-09 09:51:19.039','2025-02-19 18:37:44.613','478118994-1-3'),
('0bf69c04-f5a5-4c58-81d9-b7af1315f556','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',155,79,56,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-1'),
('0bf718f2-5533-4ee3-b94a-cb52d475e3c9','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-15'),
('0bf95dcd-94af-46b2-8905-608ea102ad87','82ac2d58-053d-41f5-a402-9275c56203f9',213,57,6,0,NULL,NULL,'428172853-4-3'),
('0bfb6f4e-0358-48ee-8e29-695b94649e99','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-197'),
('0bfe644b-d671-45cd-b09d-5aa2dd42d71e','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-22'),
('0c028ac4-4fb0-4992-b382-1d1536079bf9','0f3df944-0578-417f-8086-580114d92963',0,0,0,0,'2024-06-08 08:00:04.367','2024-06-21 16:18:39.742','248746135-1-1'),
('0c045de2-0ca5-4d90-9b35-db113dc5ea98','e1a67057-fc22-48a3-bb93-d93ddb94cf07',75,96,83,0,'2025-10-09 08:39:59.394',NULL,'745759881-2-1'),
('0c07f964-db47-4f60-a72b-94a304444c5a','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-8'),
('0c0d47a1-8b25-4434-aa1b-d8c3b6b76f0c','b4183fd9-691f-4e50-aa3e-1185b3e78cff',50,60,20,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-5'),
('0c0e6fd7-568d-45b3-94ed-d6791c14b54d','4d181a42-10e5-495a-b92e-ceb57447ac53',51,51,76,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-1-1'),
('0c0f05bd-cf98-4db4-9afb-36bb24d5330c','83b60f78-3367-4358-9376-fd4dfc3de67e',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-1-1'),
('0c11c019-8eec-4d39-931b-ab6e09901652','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-6'),
('0c126314-6247-4b51-b853-bc302196b32c','6c43de3c-5454-4dc3-8fc2-6cd719969299',19,44,54,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-2'),
('0c12b3ec-1513-4ede-8985-4f71d0a23b81','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-5'),
('0c177db1-aa93-4492-86b3-99c7fb7c1b33','253bc977-f851-4c87-a294-ed526cc3cb5c',74,54,65,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-1-1'),
('0c186a95-537a-40e1-be83-0cdecd97ebce','9504c24b-6a37-4522-83ad-b302a5d583a5',44,11,145,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-3'),
('0c19a60b-87ee-4a4b-a034-eaf65de42852','e8dc151e-1148-4a48-ac2a-d4fb2c761969',260,62,10,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-2'),
('0c1e15a3-2238-455b-95c2-9de2a5f6dbc2','8b053eda-bba1-4f32-b6ec-244e823db5ac',39,39,45,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-3'),
('0c1e4d39-0090-478e-b549-4d944236fce0','bf560fb2-0b91-485a-bf70-cae59896df3f',107,69,15,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-1'),
('0c1f6c2d-288b-4696-a72b-d09d06545c39','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',158,200,5,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-17'),
('0c2133ab-801e-44ad-b29c-c07a41b63498','7a1383f5-b919-4384-8104-0058a54fc111',40,100,30,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-1-1'),
('0c216f96-c822-477e-b9c4-5752a55795f7','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-1'),
('0c21a866-8ac0-4b8b-98e3-582ebc136885','135906fa-fceb-45b1-a401-83de82461319',56,100,80,0,'2025-09-26 12:39:13.889','2025-10-09 09:24:47.313','319585140-1-10'),
('0c235d83-9cf5-4cd7-94e6-5476b6040261','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-45'),
('0c23b6bb-fd1b-447c-a7c9-1f10c017cd04','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-3'),
('0c2480ed-95b7-4e8e-986d-dce6eea27c07','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',103,77,68,0,NULL,NULL,'808855328-1-4'),
('0c25ba5a-3cda-4ac1-ab9e-a75089b9a7e1','2dde6fa9-86f5-4072-acf6-d126395be890',37,102,13,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-6'),
('0c260b98-f6c1-438d-b9e5-d66187877049','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-1'),
('0c27f040-0df9-420c-9c72-dd50f909051b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-1'),
('0c28722e-c8ab-4174-933f-9022309e8586','68780edd-2f5d-4394-95ba-798a89376229',104,120,9,0,'2024-10-11 16:09:02.511','2024-10-24 15:20:54.859','428226833-1-1'),
('0c29303f-5211-4f2b-b522-3bcc539fa8a0','a519c64d-516b-461d-9301-4c4b7157309b',100,235,85,0,'2025-08-21 07:15:21.101','2025-09-04 06:17:02.024','428659303-1-2'),
('0c2a55fa-3398-4e78-9ccd-f1b78c300cb0','028c0bba-d7fb-4cd3-9892-3e3cf79cd778',102,52,77,0,'2025-01-20 11:21:34.362','2025-01-28 15:19:41.507','22134117-1-2'),
('0c2c0af7-28f5-4fe4-b10b-d8803a1ce186','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',90,190,21,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-1'),
('0c2d931a-969c-4d2d-9026-b08929503ff3','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',41,17,91,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-5'),
('0c2e3d2f-1076-441a-92c9-62888ffc0256','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-3'),
('0c3076dd-b92a-400e-818d-7e7a1a550fe2','9504c24b-6a37-4522-83ad-b302a5d583a5',24,43,216,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-4'),
('0c331149-9c72-41b6-8c49-d9debeb46c1c','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.447','2025-07-01 09:00:53.543','248630618-1-5'),
('0c38a878-2757-41ea-9223-d1b4c8787480','53025d92-f019-4f5d-9b69-68a3b09bb7bc',80,80,4,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-1'),
('0c38db55-9a7d-4344-9fd4-9f64faedf22f','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',55,86,11,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-36-13'),
('0c3f1643-e00a-4bb0-8cbc-f5514f7391bf','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-12'),
('0c3f955c-93b8-4cd4-8a0f-804c5731fc42','4aa5ea47-6bd0-4d67-b370-60ef1d25e633',95,20,12,0,'2024-12-23 12:00:28.663','2025-01-08 20:29:07.045','449665773-1-4'),
('0c3fb81d-f724-4e1f-b436-6aabb3e309fe','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-32'),
('0c42d3af-bcc3-419e-ba49-73e66821d472','0dc117f7-5e70-4621-87f8-335baf3c4f19',10,107,116,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-6'),
('0c42eadd-b2bf-4475-936b-c69a0105e2b1','cc7dddf4-427f-4a79-9cec-d95529ff2c95',30,22,14,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-3'),
('0c44854b-d370-4886-b239-8e8760d64948','702c1aff-1a98-44f0-9dce-efad71572432',50,72,8,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-17'),
('0c4a8035-12fd-42ec-9d85-1d9004bb265b','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-1'),
('0c4b5c4d-5f06-4bdd-8fab-46bc398a550a','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-7'),
('0c4b7a51-20c2-46a6-b24a-1f6545b9c478','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',71,24,202,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-7'),
('0c4ea5af-cd1d-4dba-87c6-5927e016ef24','090b9a06-aee0-4c02-b626-f3e2002f0fce',57,43,11,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.850','750717756-1-2'),
('0c50100e-f422-4234-8a07-20215b105c80','0ab3c63b-a6e5-4df0-a96e-33e5a256da25',93,68,149,0,'2025-04-11 13:41:20.090','2025-04-28 11:58:30.436','478403794-1-3'),
('0c519985-c0f8-4546-88ff-88a1201531c7','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-21'),
('0c528fad-0d53-42c8-ab14-3d827bb67873','96449af3-c272-4a90-b77d-0790552dd455',85,44,43,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-7'),
('0c5397c6-ce55-416f-9ba2-c6cc8f293c4d','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.329','478498501-1-2'),
('0c54b987-30a7-4e7f-b1bf-b206c95cb854','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.713',NULL,'41288739-1-12'),
('0c56075b-7292-4b52-9a78-fb345923ed1a','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-16'),
('0c580bb9-0029-4a46-ab3c-f18206ae8863','49b0262b-aeb4-40b0-bdcc-b5461a64c972',57,3,177,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.532','465237157-2-15'),
('0c5d81bb-583e-4dd8-9768-387a88c1b98f','03ad506f-f86b-4dbc-952f-52b01e2467fa',85,24,8,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-5'),
('0c63c28d-d89d-43e5-8cb2-d3c3fb02f0f4','a769cd75-8095-4eeb-999c-d1a749589a77',95,68,105,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-19'),
('0c64bfd7-8c76-47df-b147-b3ed7ee6da92','03ad506f-f86b-4dbc-952f-52b01e2467fa',183,39,42,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-6'),
('0c66611e-b548-40b6-91b1-1b1894e14e74','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',170,7,7,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-4'),
('0c6a7b20-bd60-4330-8dd6-1a33f1f8c73b','c1d9e685-3827-4e27-bd48-754f9c260fa1',65,94,162,0,'2025-10-06 07:08:43.135','2025-10-13 06:40:04.416','675965194-1-2'),
('0c6b11c8-22d2-4783-9afa-5f11b01def7b','aae2318d-95da-452e-926b-e231bf06cabf',105,18,211,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-2-1'),
('0c6f1c12-e3c7-431b-8587-36e1eb4c83ef','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-52'),
('0c7121c7-3fc0-4747-b482-3e97f3f6af4c','2bd0a09e-a059-491a-8464-25f9d0457185',100,70,75,0,NULL,NULL,'127991361-1-2'),
('0c790be2-19f6-4756-8b0f-705778d863ca','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-11'),
('0c794ad7-8004-469a-b8f5-0ced1190e89a','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-6'),
('0c7a1a19-ca67-4375-ad11-80d7fd01dc31','9d935c6e-5911-403e-b53a-08f90bd2dad0',65,95,230,0,NULL,NULL,'449224087-1-4'),
('0c7ae7d4-266f-4d24-ae6e-8a64613a8e15','e86f2f3d-8f0b-4894-8c39-9063af830231',224,59,12,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-1'),
('0c7ebdf9-effb-421f-a56a-5d377ab5c8d2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:36.350','248135683-1-49'),
('0c7f4165-d5ec-454a-aa21-174e073b7bcd','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:13.756','248135683-2-95'),
('0c85a40d-9b1e-4251-92e2-0394e658c9bd','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-98'),
('0c898941-c358-4f23-989f-970cc5fffb09','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.990','478644410-1-6'),
('0c8a8358-3c83-4946-9b1a-06cb948db9bf','714823a9-06cb-43df-a342-d1728555129e',0,0,0,0,'2025-02-27 16:45:41.170','2025-03-10 16:34:29.348','745311878-1-2'),
('0c8c85eb-399f-410c-ad59-2507497f3891','69acd97e-52c0-45ae-adf5-ee013e52776f',90,200,28,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-19'),
('0c8c8867-d1cb-4149-ba20-cff4c7fef618','55c580f2-39b2-4b62-bcc9-c1c4c35132f8',0,0,0,0,'2024-10-02 09:26:40.080','2024-10-09 11:10:56.705','745283309-1-3'),
('0c8ea7f6-786d-4101-ab17-0589cc3275a6','fffaa018-d494-4d94-9cb1-dcd410cc934d',41,83,6,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-7-2'),
('0c8f67a5-a07b-4f01-ae8a-9f28cf09549b','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',210,42,5,0,'2025-07-26 07:40:15.482','2025-08-05 14:06:23.753','478423651-2-1'),
('0c978e63-8200-4de4-9d01-350620b1df20','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-3'),
('0c991c53-75a7-4749-86ef-3eae802e823b','b7fbd54c-bcc0-4613-9901-d06327048472',18,31,167,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-11'),
('0c9dc763-12fb-4348-905f-e491f6d42dd2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-35'),
('0c9f44a6-0d8a-4fc5-99e8-dfbf5c0acbae','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,16,0,NULL,NULL,'501168544-1-12'),
('0ca2dc5f-23f1-41e3-8600-f0a41a867c0e','ee8cd8e3-7e2a-4977-96e0-ba9ce4de4915',0,0,0,0,NULL,NULL,'478554846-1-1'),
('0ca58a96-77fa-41dd-abec-d090d449fbc7','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-7'),
('0ca67f0a-a222-48a1-a628-9d72772dac61','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-5'),
('0ca90482-4928-4439-9ed6-9f7ab09c3c80','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.657','478901590-1-16'),
('0caa77d9-5353-4a7d-992f-03640231d9d8','9b4b6b13-3aa7-4711-906c-6d3c3ffa947c',95,230,65,0,'2025-03-11 18:06:00.588','2025-03-18 22:20:43.950','982999114-1-2'),
('0caadc3f-8d84-4aef-8066-72d86c89273c','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-9'),
('0cae35ee-e78b-43e9-9502-71654e9ed4b3','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.276','223379282-1-26'),
('0caf8b67-223d-4980-8a70-ecbc6c04e7b0','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-124'),
('0cb2a0d6-8803-4420-a39c-66a1f135e16a','e8d65a48-3624-46d8-b4ea-9b1d1dbeb273',34,58,72,0,'2025-06-14 12:48:20.194','2025-06-26 08:18:40.097','910778068-1-1'),
('0cb7d2f3-d488-46a0-a873-8ac3915ef3e3','05af1df3-9a36-4be2-8bd1-773d59e1605a',40,40,8,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-3'),
('0cbe1752-41b5-474b-8ef5-4e91f2b3fe78','78b92a41-f41a-4dfa-97b0-48b35908cf44',57,76,101,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-6'),
('0cc1ad0c-7bf2-4831-9e56-0eef4c7ffbff','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-26'),
('0cc28650-306b-4b62-9815-b1b940a93708','5aac8c34-51ea-4438-b73e-7d54bf02d518',66,66,86,0,'2025-10-25 08:59:03.114',NULL,'455160997-1-1'),
('0cc36c0e-e042-45fd-a485-860d516187b9','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-58'),
('0cc43972-22e4-446e-8dda-05ac1c4023b8','ace7ef1f-bb3d-4e4b-b44b-e8e0fc39c5c8',98,80,65,0,NULL,NULL,'613592756-3-1'),
('0cc44673-3244-48d4-9dd7-975c61870d1e','090b9a06-aee0-4c02-b626-f3e2002f0fce',16,16,159,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.850','750717756-1-24'),
('0cc54172-56d4-4872-b0f6-dc635daef856','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-2-5'),
('0cc71d6a-41bb-4462-873a-2d96647aa35d','cde2b645-2cf4-4ca6-9d59-ef733217c501',260,90,70,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.325','973510341-1-2'),
('0cc8a107-07b7-4b47-a23e-5beb6ea34652','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-14'),
('0cc93e6c-22e8-40f0-87f8-ef045ba0d177','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-7'),
('0ccb8bd7-0a6e-4ab5-a14d-be4299e1f20f','b6d4096c-e878-4da1-981a-ba540b80e87d',35,35,42,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-5-2'),
('0cce1e51-f268-4ccf-ae37-171c523d2075','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-5'),
('0cd01913-fe6a-4640-8c37-b93ca13f2b44','e7f31a78-648d-4a5e-9111-1bf7db38dd79',68,75,14,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-3'),
('0cd1de3f-b5ed-48cf-9461-2f9bace375c1','586d8693-ffd8-45d6-9ff5-c2329cf59822',84,100,55,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-1-1'),
('0cd38ade-952a-4a70-bba3-496343f61b8d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-52'),
('0cd418da-616c-4da9-ba0c-005160aebaad','943d063f-08bd-4675-85e3-b9d53ebf2480',77,80,54,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-6'),
('0cd57f5f-4ed4-484b-a105-a610faab186c','b93c6331-52d1-4457-9c77-5af31d37b339',56,182,92,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-2-2'),
('0cd590e7-ee3f-4f84-ae4d-68960b8dd456','f68d0980-0e5a-43f8-a0a9-37a8fd050188',0,0,0,0,'2025-03-24 16:01:48.403','2025-04-05 10:58:03.788','248475044-1-1'),
('0cdbd936-bd11-4db8-9aaf-ad98435ab85f','57604baf-e8cf-4035-aab3-ed4bab52522f',122,232,6,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-1'),
('0cde34cb-291f-4a97-be62-7ea1088d524e','7892a090-b651-4c3d-9db5-17afabd37421',95,200,30,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-8-1'),
('0cdf6e8d-ca34-4bd4-8923-f65e200d80ad','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-4'),
('0ce3506a-8ca2-4b96-bf73-df551c61c9fa','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-1'),
('0ce6fad4-0b9c-4957-a7ca-fb98905a6009','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-28'),
('0ce73034-8efd-4f44-a19e-a96c1899128c','2ae0945f-d21b-4c2c-8cb3-1cf6a08e3c5c',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-1-2'),
('0ce7dd0b-fee7-4687-9b5e-6e33a53833a7','5362cad6-3ac7-4876-8ddc-d366e2335688',112,54,48,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-8'),
('0ce81821-b16a-430e-994f-72c860cd3bc2','c1c9db37-7322-484f-822b-e475a8ffaf59',0,0,0,0,'2025-09-06 07:20:26.523','2025-09-15 06:12:43.178','412299499-1-3'),
('0ce9d66b-72a6-4060-87a8-be313fdacc45','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-55'),
('0cea25a9-bc6e-4ecb-867f-354d3eac782d','57604baf-e8cf-4035-aab3-ed4bab52522f',47,212,6,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-2'),
('0cebe31b-49e5-4b76-98bf-9175929cdda7','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-2'),
('0ceda2c7-bbde-40ac-a1b5-5fe8cc3e1236','ed097511-c426-4ff2-b940-1f98b2a1f4f6',73,53,101,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-2'),
('0cf00577-9423-4e4e-a672-17d34c441eb0','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-2'),
('0cf6d059-3574-4e68-9687-7d89b4c43c68','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',235,67,95,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-5'),
('0cf770d5-8a47-4b43-90f0-f8366f679e43','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-26'),
('0cfa030e-73eb-43cb-8972-8520d7f86661','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-75'),
('0cfbc3b0-2c2b-400c-b14c-55946ebbff98','8cf1c134-2d55-438d-84fc-b33192eae93f',55,71,101,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-1'),
('0d026b1d-c843-459d-b958-f7bdc439a2a3','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',215,47,10,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-2'),
('0d02a88f-a326-44e4-9d7f-9519fb472cad','9866a947-9974-4053-8415-4518842488fe',225,57,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-1'),
('0d0309e4-04c6-4d96-a266-d887c71ec656','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-99'),
('0d068746-acc1-41d7-b4c8-f2829de5158b','ab321622-fb0a-46b0-b51b-4c72aa09efcf',65,15,12,0,'2024-12-01 06:48:00.757','2024-12-12 07:41:13.909','501622058-1-1'),
('0d0cae39-5586-490f-9ae1-a0782c696bb1','42ffa572-f73b-4542-8194-e80be109ca1c',0,0,0,0,'2024-05-10 18:49:36.557','2024-05-29 18:58:20.404','315959949-1-1'),
('0d1043fc-135f-485b-bb1c-639d20f58b40','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-18'),
('0d153bf1-4542-4baf-9c9e-fc0f055b7bba','0cc39437-8ee1-47ea-87c2-b9fe770c2259',38,10,50,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-13'),
('0d213d96-7ee1-4e75-bcf9-f90dbc760953','463a7999-c922-4cfd-a8b6-01513cc2c423',79,201,25,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-1-2'),
('0d24cf81-90aa-4225-9018-674ca6c4951f','7db89a30-9c15-4696-a11c-dcd45c5887b2',16,66,6,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-4-1'),
('0d24d402-53fd-4486-a8c9-6f00b9d0f6ae','3f45b858-208a-4009-b717-75d6afa7fc00',96,196,6,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-1-1'),
('0d24e57b-c793-434d-9446-754dff908805','f33084f4-58e6-45a0-be45-7d25936f1aa8',40,220,22,0,NULL,NULL,'982858048-1-1'),
('0d2719b8-f83a-4981-9c70-f145487b02c8','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-4'),
('0d28253e-1695-403e-8d39-9c8e3bf405cc','a135c145-15f3-450a-819b-e82b427bc978',73,50,19,0,'2025-03-06 10:32:01.717','2025-03-16 11:52:20.006','904863225-1-19'),
('0d2ae187-7996-42db-a005-cf0995e9c347','c2097eeb-dbb1-47f0-8cca-48457994d308',102,117,70,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-3-1'),
('0d2c5489-cb64-428c-9253-28436c00e86b','a4795240-7137-43ca-a2b8-d82742643bf6',83,101,55,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-1'),
('0d30b577-32bf-4932-b1cb-50ae7ee36a95','33cb1351-2b76-4ba7-b693-d1585dbb1338',60,40,105,0,'2025-10-20 07:18:02.414',NULL,'817682643-3-1'),
('0d31a823-d02e-4b50-8d95-6d24482f60d9','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-50'),
('0d337a42-b27d-40fc-b355-d16620909a27','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-15'),
('0d34f84f-cb0f-4d86-abad-30a4f4d7c657','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-4'),
('0d364da1-0424-4606-a997-a2a27cbc409f','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-32'),
('0d3668bb-9ee0-4c6e-876d-87f028563796','5152e8e9-927e-405e-ad55-1fe2f6b40096',45,45,50,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-2-2'),
('0d39bffd-5254-4294-ae8f-d8387b7730c3','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-2'),
('0d3b68b3-28c6-407d-9bfd-dc556b2479a1','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-2'),
('0d3be95f-8702-4a2e-a8ac-aaf919f1cba3','47a05ef5-3932-411a-a9c2-2cd1bd57b99d',86,6,196,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-1-1'),
('0d3d82ae-0e6d-4c39-8030-c84021ffe22d','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',0,0,0,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-5'),
('0d3e1a92-e6bc-4733-82d1-8fd5cf135561','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-11'),
('0d3eb467-04f3-4d64-9ccb-655b49f559a8','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-3'),
('0d40311b-06ec-4ba6-88ce-28a9f6ce54ce','3aca7d6d-09cb-4903-812e-7535a083b09c',176,123,15,0,'2024-11-08 17:37:44.277','2024-11-22 21:22:11.473','616254479-1-15'),
('0d40b484-4320-4846-b12d-be4ce04ae3f7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-9'),
('0d45d79c-1ac8-4f7f-a0d1-856b734c061c','c389fd95-9357-4fac-a819-48a512bbe294',95,95,65,0,'2025-04-30 14:29:17.993','2025-05-12 09:07:52.132','817830150-1-3'),
('0d4b62a4-86b2-42e2-9bf2-2a360feefb83','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-22'),
('0d4d6e06-37e1-43ac-84e6-877ff53ed98c','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.618','735318305-1-5'),
('0d50a274-233a-4ffc-a9be-492f9670d970','af69c5a3-87d3-4548-a650-720b69a4fc69',77,83,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.819','614143415-1-28'),
('0d51a6fa-a789-43a7-82c7-4944c233f342','14694410-5bbd-4c16-aaf3-3218e9c86c9d',0,0,0,0,'2024-05-29 10:12:13.202','2024-06-11 14:04:50.980','449445608-1-3'),
('0d52e878-9b65-4276-b566-aa4937d8d1a9','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-5'),
('0d555d6c-9242-4d62-b6ab-632475f1e5e8','0009aeec-e682-465c-b701-363a3ef377a6',70,80,80,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-6'),
('0d58e2ce-fcd6-4cdf-bdaa-b7b73fcd0936','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-3'),
('0d58e43e-df67-47ee-b96a-2be3e60a3ae7','a1b5bcba-4550-4a5b-91d4-912ad7be4749',0,0,0,0,'2024-08-07 15:02:55.747','2024-08-15 13:56:04.655','745799900-1-5'),
('0d5c63f4-f9ab-4cc5-a176-63f464ef783e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-45'),
('0d5e53bc-3944-4e2c-8b7c-66f80004a8f2','d457d99f-e3fa-4b05-88ff-7a942d587be9',0,0,0,0,'2024-05-08 18:43:18.555','2024-05-21 18:46:06.354','745483178-1-2'),
('0d6101cd-4e98-473f-92a8-dc37d01c08ba','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-10'),
('0d617202-b757-4ff5-a9fd-ab1df3f3a3be','8ffb2633-95e1-42c6-91cc-be4266d6e2da',43,41,85,0,NULL,NULL,'449787716-1-3'),
('0d64dc48-0132-45b0-b478-91adb6893098','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-11'),
('0d6566c1-cace-4ffc-b182-6cfa90bc2e6d','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-1'),
('0d65abda-14a7-42b4-847d-16dd790e0ee1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-201'),
('0d6a4c33-b91b-441b-9bd8-79a511026a84','f58e6b9f-d5af-48a2-952b-687f4ff843c8',17,74,74,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-3'),
('0d6c5b64-cf1c-40c5-9f22-c22ccbe2f88a','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-5'),
('0d6c83d4-6d4e-48ef-8abf-6e29e9fdb52b','634dc64a-b9bb-45df-b331-ced53563559b',67,179,94,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-2-1'),
('0d6ebb86-e3e4-4801-9871-70991d6e3f84','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-68'),
('0d6f129a-c605-4ee5-9d73-610a564ad5ea','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-156'),
('0d6f6f8b-50b7-4775-8485-352b3ac2ceb6','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-57'),
('0d705d14-ccf1-4bba-a5a5-a266e0cefda3','95b23b47-344e-4706-bc50-f1bc5ed6c00c',0,0,0,0,NULL,NULL,'598604443-2-2'),
('0d713708-cf25-4a20-9f1d-d37f4857596d','c9e71ed2-2a41-427c-b47a-d4f02305c9e8',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-5-1'),
('0d72e788-1a3d-4131-b0b1-7e8b8be2c036','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-83'),
('0d750d54-31a5-42e9-956a-1ab7e9d9c810','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-27'),
('0d76670a-ee51-434d-9e45-42cd8317b985','858bf458-b499-4eea-bf79-f32ed1c24910',0,0,0,0,'2025-02-20 12:15:08.923','2025-03-01 14:06:52.749','31929392-1-4'),
('0d774735-e204-44c4-9fc3-0a1f4b318017','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-12'),
('0d7c30df-c275-4d07-a018-26e9ea789ee0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:01.227','248284003-1-71'),
('0d7cb376-8d58-43b0-b4d4-ea9a2d2cada6','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',61,55,20,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-2'),
('0d7dfaa1-027f-4df2-9954-d2ac064f7386','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:02.645','248284003-1-96'),
('0d80b62d-2828-44c1-95cd-e5ab43a21675','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-19'),
('0d81bd76-daeb-447e-a2cd-2760effcd2a7','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',45,67,12,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-19'),
('0d850724-3eaa-479e-a684-7b9be1e7cb08','7c7686b8-8f65-4271-acac-1585b7485563',118,39,37,0,'2025-07-29 12:57:25.959','2025-08-12 06:14:45.105','412395222-1-7'),
('0d856271-42aa-43ab-a9fa-4d98bc54b3dd','d0ab4125-494e-44f7-a732-9602289cdd76',57,82,108,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-7-1'),
('0d85934d-0cca-4323-86e2-81a86c380a32','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',215,16,9,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-6'),
('0d892c3c-a709-4959-a178-d2fdd77c5735','8d05832d-fc40-44ef-a024-a5cac327a362',80,100,208,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.404','478906000-3-2'),
('0d8aa912-c405-47e3-bffc-09134970f4ab','2a9dc5cf-e36d-4418-b12b-38735a234501',95,66,163,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-1-2'),
('0d8adeee-d103-4fee-8816-94cc16a41753','793ba0dc-e99b-4fa6-b21d-bf758c07d6bf',96,172,7,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-3-1'),
('0d8b7eb6-a460-49e6-b5be-ac2d360e3894','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-1'),
('0d8bce22-ce87-40f4-bacb-63f42b56b8ae','cf16ee0b-0882-4d38-9eca-1e0888101309',95,95,80,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-1'),
('0d8d3217-4137-4b6a-8106-2efd41a946d9','b698562e-f03d-45ef-b2ac-535d8edcf5c4',16,16,74,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-3-1'),
('0d910987-50a7-4a6d-b5d4-e74eb6a4aea6','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-134'),
('0d911fd8-92d2-4032-b1f5-19f69d58dc89','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.276','223379282-1-38'),
('0d913bfb-af85-419f-907e-361aa3523ae9','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-8'),
('0d91a3e9-7f31-44d5-8e34-5df9e02011fa','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:02.098','248284003-1-130'),
('0d921559-a886-4350-9ced-daaea16279dc','118a1c73-66eb-4870-b4a4-04f623a1ba0e',51,51,77,0,NULL,NULL,'221897229-1-1'),
('0d938664-5b0c-446b-a569-f4947e2c83ef','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.881','248535027-1-4'),
('0d93c903-8800-42cc-800e-93f992644553','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-1'),
('0d95b389-9305-4243-9853-b977079b0d4f','cf5e2f56-ede6-45c4-acb8-88a0bffb5f73',55,50,48,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-4-1'),
('0d96a0fd-f573-4ed5-9b58-59ce18232035','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.816','223853931-1-120'),
('0d974f44-573d-44bd-964a-a6ccc0f077eb','6ae0233f-f2c2-44bf-9706-7274e4c923e9',121,212,6,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-9'),
('0d9a2d67-33ba-4038-a6f8-af7443e11267','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-5'),
('0da502f8-23db-4156-b44b-799c61016fdc','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-9'),
('0da5d28b-5843-4aca-9c00-54fc2959cd61','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-42'),
('0da5f6e9-6ff3-48cb-9bd9-5caf348b277b','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.329','478498501-1-6'),
('0da68a01-96c5-4731-bd60-9b29a13fa899','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:16.085','248135683-2-24'),
('0da8eaf3-b9b9-45c9-a42d-da0b99112867','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-215'),
('0dad0f0c-5faf-489b-bc58-391e8ec06ea8','b8cb209c-3d60-466f-8346-01810d5816ec',57,14,260,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-1'),
('0dafad9c-6adf-4b91-8829-44d8f9a38c08','46d1512a-2bfb-476d-a224-9390f3e194f2',200,180,30,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-2'),
('0db11cc2-2018-4ddb-ab48-d5430f564583','f4fea4c5-b879-4cb4-a43b-6716692a56f0',102,102,6,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-3-1'),
('0db3162c-4299-4d96-9ecb-90312608ff86','0009aeec-e682-465c-b701-363a3ef377a6',130,9,37,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-7'),
('0db3f7eb-2f30-4894-986b-50991f362c58','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-3'),
('0db4a7b0-5514-4970-b826-ef1fe435aa19','0bd6afc7-c317-4f22-9668-b45353a1d28e',240,100,85,0,'2025-07-26 07:40:26.442','2025-08-04 06:40:09.550','428761245-1-1'),
('0db59565-7868-4225-94dc-5c91ca267b0b','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-1'),
('0db5b500-d7b4-462a-a0c6-869bd97ea201','c8a2a15e-4279-4904-a725-a9d44306abad',154,27,27,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.450','412441586-1-14'),
('0db87069-50ac-4cc5-856e-ffe019aea7d0','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-3'),
('0db9e377-3fe3-424e-ab94-08bec6182648','5b81703c-cd5b-4b56-94d7-e111a745e9ae',105,75,58,0,'2025-01-26 10:54:20.545','2025-02-10 14:16:33.210','221240151-1-2'),
('0dbb80ca-5889-4c02-b5d5-fba3a41c1b3f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:36.865','248135683-1-238'),
('0dbbe76e-0cc9-4b7a-9171-2373f67603a1','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,6,0,NULL,NULL,'478893710-2-15'),
('0dc28157-1085-4273-9515-eaa58fd428ca','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-29'),
('0dc2b028-574f-40d1-9289-8a73f15663f6','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',58,88,15,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-7'),
('0dc366a1-13f9-4101-832c-e024cebff0cc','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.369','2024-05-30 20:04:38.351','449234624-1-3'),
('0dc56969-2870-483d-ad60-9dd43e526166','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-38'),
('0dc5f23c-9532-43d7-a6d5-01e5ea40767e','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.909','478949141-1-2'),
('0dc6ff00-5a83-4106-a3e3-846525f07b91','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-9'),
('0dc82afb-8907-4375-acb3-db58b18dced7','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',213,44,5,0,NULL,NULL,'501168544-1-8'),
('0dc98c2e-e921-4967-b86f-18cf7290aaa7','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.565','221339460-1-5'),
('0dc9fc28-13ad-4577-a332-1381bb77695b','0655c66e-ad8e-4f89-af46-bcfa9a272b8b',80,75,70,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-1-1'),
('0dca3685-3f8d-4951-9696-308dded0eef4','c4364289-7d10-4f97-9732-485a10bd6c67',55,12,222,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-6-1'),
('0dca9730-6fb1-4977-9c30-44a9fb7edb2f','c9de31a4-107d-48f2-8a9b-aae80150da9b',180,200,30,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.052','745946644-4-1'),
('0dcafeaf-10dc-42cd-9926-c8197945013a','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-4'),
('0dcaff6a-eafe-4c9f-a450-d012cf38f1e6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-97'),
('0dcbf9e7-2b32-4f85-b578-ebef34e46819','dc390da6-4128-4077-b3a7-07f6a89a5beb',75,100,70,0,'2024-12-01 06:47:57.092','2024-12-12 07:41:25.689','501488750-1-5'),
('0dcc5520-aee1-4911-8602-bec581d618f4','ee623458-4a98-41d0-a385-199504c6175f',51,51,77,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-1'),
('0dcd3796-69d9-4a57-b1f8-33ede9c6b5c8','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.480','2025-10-15 20:04:54.627','41246036-1-120'),
('0dcfc1b6-d06e-4b8d-a52e-70ecacfeab86','43ff4e79-db72-41e0-ba63-8999dc250518',51,51,77,0,'2025-04-15 16:01:30.380','2025-04-26 17:56:11.033','613420026-1-1'),
('0dd0b52d-b5bc-4b02-b917-f2a80dce7f1b','c6a97f96-8206-4a03-a204-465fc5bb6239',155,70,70,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-2-1'),
('0dd15ded-5c24-4ddd-bbc2-b8ca92e7d138','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-9'),
('0dd4649e-7d56-4b79-a30e-9378306fc5cf','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-6'),
('0dd471e2-8ca1-438a-8bfc-fe824fa332f6','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.557','2025-01-10 16:33:08.226','73574376-1-1'),
('0dd7451e-bf86-4b59-9246-cf73863e8100','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-41'),
('0dd87475-0004-4e3c-a0e6-c71e7c4ef8b3','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-3'),
('0dd90211-93bc-411c-b798-d8be36768f03','5089704a-e90b-41d3-a4fd-0f97ee26031a',51,51,77,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-2'),
('0dd985c9-c152-449b-b845-785c32533bab','7311f1e0-e2be-43dc-9e40-f94a010e8939',255,112,7,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-2'),
('0dda16a8-2871-4db2-a5ea-63f710ec1a01','979b930a-f53e-4986-8714-bc7b10a23a95',95,70,95,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-3-1'),
('0ddb3235-113b-4320-9185-7c0ab94f5907','42b2ca3a-9313-4b97-901b-3859e34b21e1',81,75,75,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-1'),
('0de03dae-803f-4188-a35d-6c68c331c6dc','ec048287-78e2-41ed-9182-4554beb97192',123,123,68,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-3-1'),
('0de13632-ad4a-4c65-8343-49db1d9be81f','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-30'),
('0de209a8-8ed1-4c6d-a9fa-19b3c3c10d6c','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-7'),
('0de81281-1395-4d8b-aa6b-9a0fd7c9baeb','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.994','223385669-1-7'),
('0defa180-87bc-4405-8d9f-63552b783736','6098bfd6-9976-47f8-a799-df79295948c1',62,8,225,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-2'),
('0df17cb9-a375-4661-93fe-ad7d4879aa25','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-127'),
('0df50272-586c-4405-9f37-051224ed2963','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-5'),
('0df54115-7780-41fc-97ce-ed7f1a596690','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.994','223385669-1-18'),
('0df6e5e4-6133-4f23-8e8f-aca88b6e5abb','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-27'),
('0dfa0a1d-ba75-493c-881a-ed268adebcc5','6302f68c-26c4-4a31-853e-80b9d1ba59ee',93,68,14,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-2'),
('0dfb7d88-cc47-4eaf-a904-d69940616373','a2d857b1-bcf6-46ee-9e87-dabcdac62719',78,50,67,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-7'),
('0dfbf6e2-f207-4598-ab80-72f0474091b7','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-41'),
('0e011882-05fa-4b4d-80be-1309452d9153','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-248'),
('0e0419e7-c09a-49a3-847b-a27914ea4f44','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-87'),
('0e05170a-12c6-48f3-9648-26347975e042','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:39.614','248135683-1-98'),
('0e06f0c2-03aa-4da0-8184-7a698a6b1760','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',243,95,68,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-6'),
('0e083f54-eb1c-4255-bda2-4d483c2d2ca8','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-12'),
('0e0abdcd-8e0f-4c5e-a19c-4dc2376cd57e','6ab8353e-0a04-49dc-8a2e-03d40377dcf8',50,40,40,0,'2025-10-22 13:07:12.749',NULL,'437227214-1-3'),
('0e0b688b-fca6-489f-9ba4-a694f66cb0d9','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.250','2024-05-21 18:45:12.078','478681830-1-1'),
('0e0cd60f-c921-415a-ae62-f82d2d82fe26','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-200'),
('0e0d605b-0bce-4674-918a-fb2027f2776e','05af1df3-9a36-4be2-8bd1-773d59e1605a',57,80,120,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-9'),
('0e0e63c8-c951-44a0-a63e-bd3476983dca','5c21191d-62ae-48be-82f1-4e75dca1edcf',0,0,0,0,'2025-06-11 13:14:31.977','2025-06-20 08:45:23.213','817239122-1-1'),
('0e0fda6f-0b01-4af3-9b81-838dc6f4976d','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.204','982754836-1-19'),
('0e16798b-69c1-4d73-804e-52827d352386','9e659204-13ca-4fc3-a047-37a3690f3940',51,51,76,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-4-2'),
('0e16fbf3-4685-4d09-85d9-2a58d7fb67a9','28fbd6ee-0261-4092-ba41-590598774e35',90,70,80,0,NULL,NULL,'786729785-1-1'),
('0e1946a5-ae44-4c35-8dcb-e65404b9947f','90531b95-eb66-4c07-9e68-b2c510b7b356',88,110,120,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-5'),
('0e1e8e9e-04c2-40d3-9b18-7447f4aece8c','2062f856-d39a-46e8-8b06-8b267e9c1d32',130,110,174,0,'2024-08-21 14:53:21.375','2024-08-31 16:53:22.846','448774640-1-1'),
('0e2028f5-3e1c-434d-a50c-b50ee2745697','dd2cca48-6895-4e89-a0cf-e5c29b1a349a',0,0,0,0,'2024-03-16 14:34:26.862','2024-03-23 06:42:26.411','745524390-1-3'),
('0e20818e-da14-4a09-bed7-e7d47d938a7c','34a4ab26-f53a-4295-9345-9762f27ce36a',77,53,102,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.886','478659791-1-2'),
('0e2157be-fd4d-4502-ba9c-f2ab9505497f','940aa57e-21e8-4cea-ad18-82859c22f018',65,93,93,0,'2025-06-11 13:14:38.729','2025-06-18 07:15:26.935','817121694-1-4'),
('0e21b8b6-6e2f-49de-8a97-3252a8545911','9eeecdac-d023-4ee9-8639-dc9b22642c27',178,202,3,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-1'),
('0e254580-1d4d-4e1e-9321-b1db30b0336c','e89e7d75-4967-4c63-9f73-981469e531af',200,81,10,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-4'),
('0e27a288-e520-4572-8cd5-17914e54d125','29aa9d56-5356-45de-aaf2-7a6c4a5f2bc2',52,75,92,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-1-1'),
('0e27f913-3cfd-458a-895f-f510c6fc651c','3bda7c8f-d10d-4b97-b22d-c5e0ee73bec0',240,85,96,0,'2025-02-20 12:15:03.287','2025-03-03 12:37:37.230','910599740-1-1'),
('0e2d25db-a9f8-46df-aa88-71434d8368b6','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',220,100,65,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-40'),
('0e32c8d3-cbc4-4214-b57c-6dc770a1324a','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',91,56,13,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-61'),
('0e35b7c0-d819-42f0-a8ce-4ed65263412b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.900','2024-07-18 07:32:21.067','412586204-1-4'),
('0e360081-a666-42c8-b65b-9a2f12a8a2e8','a769cd75-8095-4eeb-999c-d1a749589a77',110,68,15,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-16'),
('0e3644d7-1172-464e-92f5-fd6d4ac9bef3','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-7'),
('0e37e43f-c674-47fb-877c-3ed2dc796fc9','20a73c4e-790b-494f-b4a7-c61766021e4b',38,15,38,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-6'),
('0e37ecf6-c958-4a1b-8a6e-c22025ce5afa','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:40.246','248135683-1-76'),
('0e3ba0e3-0927-4608-bec6-449c3767b394','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-37'),
('0e3bb381-2971-4c67-acfa-b4ee63f7dc9f','0ac2a48d-48c9-41d2-91a2-b574a94542b0',85,211,2,0,'2025-08-14 10:05:38.308','2025-08-28 18:20:16.504','765729280-1-1'),
('0e3c900e-65c6-4abe-97e4-b88b910b8703','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.052','74529534-1-2'),
('0e3d4642-997b-4814-9049-e882479bdac3','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-95'),
('0e47374c-3928-4f1e-aa4e-f9634e13960b','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:16.841','248135683-2-98'),
('0e49d67d-ba85-4501-9088-2efe0d1a8818','f5158f15-6373-4fcd-aeb6-1fe6b9c0961d',36,48,53,0,NULL,NULL,'655216482-1-1'),
('0e4e4882-32f0-4037-9ca5-dc8e05dba56f','75966646-88d8-46f2-843a-dd1b1be9bed1',0,0,0,0,NULL,NULL,'478912846-1-1'),
('0e4ff74d-4035-4edf-a83f-b917b5aa544b','0ca7b5c8-7608-49bc-9057-d56d835fbea5',205,35,6,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-14'),
('0e50d121-b8e2-4844-a885-87be56107b71','bd176b24-f129-40d4-8c33-6b35eded0fad',63,11,4,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-9'),
('0e51e9d7-3bfd-4e1f-a2f8-e64d9e13b753','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-219'),
('0e559572-198e-45e0-9ea7-c538877ae584','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-80'),
('0e569050-e1c5-4630-b8e1-55ae9aeb324b','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.385','248425122-1-1'),
('0e584668-e852-4735-860f-c144120a09ba','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-87'),
('0e5946b9-3a23-4034-b77a-849f0ca88095','c8ea2253-3c75-477c-8e01-4ed8b3e57524',0,0,0,0,'2024-12-23 12:00:05.262','2025-01-11 09:47:11.464','73597674-1-2'),
('0e61084d-bb16-49a2-bc23-17a9a89fce50','b2cef0d0-bc16-4cd4-92af-b968a8d20228',126,80,126,0,'2025-03-24 16:01:58.767','2025-04-02 16:10:24.878','248648996-1-3'),
('0e6176a5-31de-4a98-8749-055b31dea1ad','54615f37-dc23-4fec-a058-63bc43066248',87,87,9,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-2-1'),
('0e63e5e9-a87a-4454-bf13-b56f9b7e8bbc','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-9'),
('0e6467da-e301-4569-b8ae-fb91f0a32400','7bd64728-38dd-4554-a901-c9cd5700a0c6',124,93,64,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-2-1'),
('0e64846d-ca9d-435e-b71a-91f75bfebeed','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,71,65,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-1'),
('0e6518dd-81c0-457f-b6cf-d4c9d5bc4c0a','b9dc5ac8-4889-4662-9cde-61ca4efefe1c',44,6,210,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-23-2'),
('0e68905f-658c-402d-af7a-7fde638fb95e','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-46'),
('0e69aead-0d79-4bfa-9ff9-374769d6d65a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-188'),
('0e6d1363-e7b9-4c9b-911b-0b7d0c8ffdf6','055676b2-9727-4dc4-82c5-5161c9f0e9b1',0,0,0,0,'2025-10-22 13:06:47.194',NULL,'437809521-1-1'),
('0e6efe86-234a-49f6-b710-0572719317d4','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-6'),
('0e70e3d3-5e5b-4b48-a050-48c4c36116a9','7c09f776-ffb6-47c8-8828-61389547804e',113,47,65,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-2'),
('0e729ba2-9571-403f-83e6-73db1e2233b3','0263f7f0-6c1a-4beb-ab78-25d69142647c',44,6,90,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-1'),
('0e733bb0-2c6a-4fc5-a3b9-3a019acfc5e9','41a8c40c-cb96-4cd8-b02a-dbe29db34034',51,51,77,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-2-1'),
('0e79e941-aa2f-43ad-b988-dea72a098394','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-11'),
('0e7a8c85-3620-4a80-98dd-be958fb4c128','69545533-7407-43ed-aa87-ace1a5f77648',41,41,76,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-1'),
('0e7af857-1254-427e-94b6-53a2ae39943e','d83c40d1-4df5-4c97-bc83-28837db95b2b',61,99,9,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-5'),
('0e80d597-96e9-4959-ad8d-ba7b8a89a546','9dd1fff2-f6c5-4178-8893-9bca27b3a077',200,200,80,0,'2024-03-16 14:33:49.305','2024-04-01 07:53:00.909','478609228-1-1'),
('0e81442e-58d8-4131-9005-c99d4613ffe8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:17.525','248135683-2-35'),
('0e82c896-426e-465f-9df3-e730d074019e','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-5'),
('0e82fae8-a777-41d8-8eda-7fc15f422de4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-180'),
('0e83d0f9-7088-46e4-9ba4-d58e55a16f54','8cd4a26c-7315-4593-a024-43b3649529c6',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-7-1'),
('0e8562ba-6abb-45f6-b48b-b0de5c194ad9','081140e6-a4e4-4c40-817a-e779fe364e99',0,0,0,0,'2024-09-27 14:06:37.992','2024-10-05 11:44:48.002','745744183-1-2'),
('0e858907-8330-4161-80b2-4e8807712625','993b0ba7-688d-4747-bc27-d84b8f88b2a2',63,68,93,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-2-2'),
('0e86a19c-a9de-49f8-8cf3-6078d8c78e77','9866a947-9974-4053-8415-4518842488fe',195,92,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-2'),
('0e8b3b5a-f7a6-4796-8b21-08b967229d2a','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-55'),
('0e8c5518-7ae7-4099-81a1-a08ad348131e','85db759a-5e10-49be-92ff-a951a588c1a1',98,80,80,0,'2024-12-23 12:00:07.905','2025-01-09 16:52:13.614','126908301-1-11'),
('0e8c7d81-5ebd-4119-ab4b-f62e212ef4b1','6302f68c-26c4-4a31-853e-80b9d1ba59ee',60,25,20,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-3'),
('0e8e8c6d-8dae-43b6-933a-6f12d2ea8aa1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-80'),
('0e90761b-479e-4b65-8744-e7c1f3697f3f','5632f22c-493f-4a5e-afdf-13268c32b047',5,5,150,0,NULL,NULL,'528640995-1-11'),
('0e9164fb-8abf-4995-a949-f3931efc2af7','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',165,40,42,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-6'),
('0e921a1c-227a-4556-b387-cf101e863582','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:03.878','248284003-1-144'),
('0e9244a7-87d8-40cc-b6f7-efbc469065e3','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-3'),
('0e92c004-5809-4f5d-b4a6-da966dce0632','392f085e-940a-4da0-833a-83d25e000858',0,0,0,0,'2025-02-27 16:45:44.001','2025-03-10 13:01:45.189','745935889-1-1'),
('0e930610-e8a7-4f7f-868e-01a2e603937a','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',104,12,127,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-6'),
('0e939831-1c86-4d2e-9cec-98d23d398756','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-9'),
('0e952209-2b52-4a11-a9f1-aeaa298b4e1f','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',237,136,10,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-3'),
('0e9a4ca1-78fb-4a3e-b9a3-8b0def11b4f7','448137c4-0ed8-4aba-90bd-b88619bd7a91',23,62,41,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-1-3'),
('0e9d004b-cfc9-4e8e-aa52-1e3e06fb7581','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-3'),
('0e9da371-0715-41b5-a3c2-bc5fdcb7d299','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-4'),
('0e9e15fa-a580-418a-82a7-ed01cb84ef94','c1a31a07-5113-4703-99ff-14d4a90ef1ba',28,16,210,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-1'),
('0e9e8f95-27c7-4475-bc21-1522a53c25a2','5e6bc612-6c7a-4f9c-8252-00151bafb04f',48,29,202,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-1'),
('0e9ea0b0-9d4b-4ed0-87e5-e9c9211c04b8','b988fde4-e371-4e31-a284-a3f361315160',0,0,0,0,'2025-02-23 12:39:07.886','2025-03-06 15:54:32.345','745140498-1-4'),
('0ea45b99-6c38-4cbf-923a-561a5f78160a','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',232,64,6,0,NULL,NULL,'428413605-1-1'),
('0ea7609a-3a81-4fda-94a8-c17e30e21084','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.053','2025-07-25 06:56:26.352','735792949-1-5'),
('0ea8b79f-886f-47a0-a3a1-eae8b6ba8b25','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-18'),
('0eac4763-0e51-4208-b8b5-2438137f5aa3','1bc30bdc-dbe8-46e6-b9da-ced1339173a8',80,57,57,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-1-1'),
('0eadd1fb-07fa-4641-a2f1-b0be569ea589','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-121'),
('0eaf1df4-30e5-4ee4-b894-0bb8561beb30','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-12'),
('0eb3aeca-9b8b-4c39-a17d-603fa17f5e31','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-3'),
('0eb5043c-19fa-4b6e-81c6-6439ee83f22e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-126'),
('0eb504b3-5b2d-47a6-a405-8de96c07e4a5','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-2'),
('0eb6bf41-60af-4ee2-85c1-3f928ebd78ee','bdc15b51-242d-450f-a47e-a75e07f475a4',100,197,26,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-1'),
('0eb740ce-d8e9-4ed7-bd85-49f7094d41e1','b78519ec-4b79-400f-a709-a1f09256d30d',24,170,15,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-20'),
('0ebc49bb-1a37-429a-b22c-7fb64804f36e','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',4,58,218,0,'2025-07-26 07:40:15.482','2025-08-05 14:06:23.753','478423651-2-2'),
('0ebc8851-01ae-4ffc-90ab-5d449f975a4d','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,50,8,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-4'),
('0ebd8e3c-1321-462e-9d74-a80ba93284ff','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-56'),
('0ec228d9-1f74-43a8-9847-bfce0f998b8c','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-3'),
('0ec523a9-4e5d-4779-8d8a-d0e9a28e2eda','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-6'),
('0ec67293-b0c1-4764-be21-d3b38f3dc8dc','c0d27879-28a1-4f95-a3fe-67eeaa327a18',37,41,6,0,NULL,NULL,'982759064-3-1'),
('0ec869bf-98ce-4a36-a37c-f29e0ac99af0','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.809','478150977-1-2'),
('0ed1b6c4-9f5b-47ca-a17f-c62a05db82bf','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-4'),
('0ed201b3-48a2-499a-b5b5-56fdcfa31596','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-13'),
('0ed4b6ed-441f-4c90-a50c-f91b6d5c3bd3','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.236','745357299-1-5'),
('0ed4c601-6657-48cd-bbb0-3fb55ae4aad2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-72'),
('0ed5259e-d244-4fa7-943a-6a5ebc216e07','38109a6e-8ac6-46d9-8530-7fd5b3725869',230,75,95,0,'2024-12-13 14:49:13.085','2024-12-24 12:30:25.814','1936694-1-2'),
('0ed56800-62e1-40c2-a62a-83fd83e25244','788a8b56-add3-49ff-b48f-4809da260c0e',0,0,0,0,'2024-10-02 09:26:42.921','2024-10-09 11:10:47.116','126377805-1-1'),
('0ed82aa7-3649-4004-abd4-8e96dcd111fa','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-198'),
('0eda8738-d305-4741-a343-78b7e981a6e5','31ebb578-1bae-477d-b89f-f2d9614f22a8',100,85,208,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.296','437578664-1-1'),
('0edbc481-6266-49e2-8df1-3f61ff3f82d9','f8da3047-bd3e-4abb-838b-cb388b449675',100,100,100,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-6'),
('0edc3ed3-1b9e-4b89-8fe8-8461023a6815','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-11'),
('0edd16ad-30f5-4371-b61d-cfaec95ddb89','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-2'),
('0edea6e8-f5a0-49db-8029-0dbaae241b96','4869c334-4618-49fb-9d03-99d95654d12a',84,207,1,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-13'),
('0ee1d0df-f3d9-457d-bdd1-e09d416d17ef','f6d35da2-4b3d-47c5-b4fd-3e3ef4395c7b',95,61,9,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-3-4'),
('0ee31a8f-2831-4c5a-9d38-eabfda033435','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-4-4'),
('0ee4e02c-a529-491f-a0db-023e64b374ca','1702a5be-de2b-450a-b7be-8667b16af22f',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-1-1'),
('0ee5e417-5c58-4435-af53-a9a46374f36f','c98f6188-56c5-4870-be97-be71cf95f62e',200,160,32,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-47'),
('0eede7e5-a586-414b-b0cd-45d03d6fe194','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-19'),
('0eedfc6b-281b-4ac1-9b21-71f5161f57b0','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-2'),
('0ef343a5-d375-4251-aa25-4bbbef2f3f73','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-1'),
('0f011f7b-ef98-4d21-b217-619c022f49b1','b55de99d-cf71-46af-8f70-6898462975be',0,0,0,0,'2024-08-21 14:53:32.845','2024-08-30 08:02:38.177','289392695-1-1'),
('0f03d001-1f8b-4cc4-8321-037fd8b59dd4','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.016','976983661-1-1'),
('0f05562c-6a7e-4d06-9c84-28e705ebb65c','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-11'),
('0f07c44a-e1df-47b0-9fd1-a22925ffc4cf','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-14'),
('0f0844bf-877a-4077-9a1e-d7725f94d874','dc390da6-4128-4077-b3a7-07f6a89a5beb',98,8,66,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-12'),
('0f099187-7006-42cf-a925-908f7a74d74f','a1a870ec-e099-4836-8b0b-44c3b1c8bf3e',52,100,82,0,NULL,NULL,'613362955-2-1'),
('0f0a811b-4d8b-4043-abf9-9578b17e72e6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-211'),
('0f0b6b3e-cd79-45da-a2c5-719971c09ba9','626e7d76-e844-4c98-a946-f86b3d5e2881',74,48,101,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-1-1'),
('0f0df527-cccb-43b5-833d-782902c0f52c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-92'),
('0f0ed0a7-7b1f-4a3d-8547-eb24d457de3d','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-1'),
('0f0eea1b-a1d7-47ae-97cb-6aed8c463a07','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-6'),
('0f103781-30cc-47bd-8a46-080c9c604696','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.816','223853931-1-91'),
('0f11da21-9aa9-4a1e-8d76-ee66917eb700','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-146'),
('0f1399a1-de7f-481c-a604-34fc61d78d28','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-4'),
('0f151a9b-c18e-48ab-9477-bbe6c2504383','86e5956d-750b-4aa3-8f00-53e2db7b9f65',60,60,14,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-2'),
('0f17340e-90e3-45c0-90e0-a3b5a850c075','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.986','2024-05-08 21:07:25.066','745180441-1-12'),
('0f176eaa-90d7-4d4b-92dc-15acdb90eb8a','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-2'),
('0f17a6f8-594d-4591-9c31-518373be2fe3','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.038','2025-07-24 06:26:53.165','248883377-1-24'),
('0f1b7b70-96bf-42b5-9473-a9e6d145a4bd','e2de9cd4-e8e6-48b8-aa91-52920db0471a',93,66,97,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-1'),
('0f1bc2d7-9c81-4fd7-a8ce-baa450d22a0a','36ced38f-51af-4146-9bd7-7f1d6c0f4201',80,93,87,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-1'),
('0f1cac36-60b3-47d2-920b-2a2b5a632159','8157b818-4170-444e-80f6-034d8ed1efe0',61,76,58,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-2-1'),
('0f1ccc6d-0a47-4709-8aba-69ad091bfa67','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',87,53,99,0,NULL,NULL,'478739679-3-1'),
('0f1f13a2-c542-4bc9-a3f5-c63690391b91','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-6'),
('0f1f37c0-fe8d-4d98-b397-6872ccd18522','a1b5bcba-4550-4a5b-91d4-912ad7be4749',0,0,0,0,'2024-08-07 15:02:55.747','2024-08-15 13:56:04.655','745799900-1-3'),
('0f25bf8e-bc9b-42c9-a088-d9ce49aef78b','f88c3e53-b711-4bcb-aa3d-9543580054cd',91,196,4,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-12'),
('0f29701c-eb8d-470c-8a5d-2d2ed57a658c','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-4'),
('0f2a52b2-e0b2-4a1b-8db2-e857827585b7','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-50'),
('0f307588-a8d6-4d37-bc01-3f8d880745a0','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-2'),
('0f32cd62-b309-4d7f-bf9f-771bf2e25288','546ad3d0-25c2-43dd-9443-e48b8e5b6530',310,17,17,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-43'),
('0f33a3d8-6378-4b28-abd7-94b0e2ee4aaa','cac592fe-4f73-47b3-b374-3028982419d4',91,83,75,0,'2025-05-28 19:09:19.363','2025-06-04 07:24:33.130','644507096-1-1'),
('0f3ae1da-4a77-4b8a-b546-3f0502131ea5','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-6'),
('0f3b80e0-d854-45ec-9e95-2f38077a342e','9cc1860d-055e-43c8-9aca-a2085133ca71',110,42,75,0,'2024-11-25 08:29:14.494','2024-12-03 10:00:03.182','338678802-1-4'),
('0f3bd861-0408-425e-bfcc-62b0d7e35f65','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-30'),
('0f3c287f-9fe4-4534-86e5-1c8a1d6c6596','177be132-8ef4-4489-bb59-2794e3f4e826',80,125,100,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-1-2'),
('0f3c7aa2-5399-4b4b-abab-19b2959567b4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:40.860','248135683-1-78'),
('0f3e1ec8-624f-433b-ad32-bbba311ec397','ce8f4415-3b63-4fe8-a25c-9973f07651e6',42,42,42,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-2'),
('0f4044de-5c26-4482-b788-19d922bde160','5b791a1b-bd6e-4eab-a014-286a1c1d2fd3',103,75,70,0,'2024-10-23 15:14:13.314','2024-11-06 15:48:43.182','517495121-1-3'),
('0f411a94-800a-47aa-942c-72423396819d','507b9bbe-ef2a-4a95-a25c-ea392d3d95e1',95,85,75,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-3-2'),
('0f4269f4-6b4b-46db-ac2a-5f6ba4c824fc','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-4'),
('0f42a23c-25c4-4814-8d69-ceba20073ef8','a89f5cb0-4036-440c-b388-8ef641d6f3b9',12,110,50,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-7'),
('0f43d243-de65-46a5-8ee6-e53f4a6adcbc','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-16'),
('0f46fd0e-6e4d-494f-b465-3ad4de3affb2','8eb817d8-4d04-4bef-b661-229b808c1d12',235,104,82,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-4-2'),
('0f490ed6-fdd2-4b73-b601-2a98124f2868','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',123,26,11,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-7'),
('0f4de0d7-11e4-45f1-bdf7-a0f28866ed26','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-64'),
('0f4ea1c7-f317-430b-aeed-a8dbf3e5b7dc','577ac94f-b889-4af9-8d01-96034f38a36e',43,56,45,0,NULL,NULL,'478739679-2-7'),
('0f522568-ff3d-408e-831d-efe67f64111b','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-40'),
('0f5952f3-136f-487c-8623-1c42ef392c9f','1d063093-76ef-408d-ac4e-9b14c6ea3828',60,116,100,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-1-2'),
('0f5ab06a-8651-43f6-a0a5-8530d7949d7e','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-9'),
('0f5d3616-fc16-4571-a77a-fbc37d6fe2b4','3665a83d-24be-4c54-a88a-abc63e2fa2ec',50,50,76,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-4-2'),
('0f5df4fa-e89a-48bd-bd51-0fb3963b14e5','048fc569-ecd0-444d-b2d3-4f1071fb8463',97,7,197,0,NULL,NULL,'351183541-1-1'),
('0f607f87-bf91-4dd4-9fe9-41e1312828a9','24b375d8-76fe-446e-b328-26e7a51cec10',80,100,100,0,'2025-08-27 19:40:22.423','2025-09-03 19:37:53.203','644880161-1-4'),
('0f63466e-78df-47a8-963a-5ad26d6955d7','9edacfd6-2410-4f77-8d5a-c2a9ad0ae4af',26,77,117,0,'2024-12-28 21:42:21.102','2025-01-07 10:35:46.500','248209461-1-1'),
('0f6602bc-eb19-44a3-93a3-a3e21a7ed275','d2498eae-06de-4965-ad29-62155b9a8992',244,95,75,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.146','976126416-2-1'),
('0f6c1337-6310-407b-b9f5-13045f4b8a5b','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-39'),
('0f72d971-7987-458d-b2ae-3ea3f8fb74af','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.635','412678735-1-7'),
('0f7685fb-e2d1-495a-927c-aa4e8691e816','419b6207-21b8-4c7e-a4ce-a867b51a6884',0,0,0,0,'2025-07-02 12:43:43.352','2025-07-18 09:32:16.366','248799636-1-1'),
('0f77caa6-48a9-4336-8fd8-e938e2bc953e','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-40'),
('0f7b288e-3119-4095-b01f-adde8343d4d9','c98f6188-56c5-4870-be97-be71cf95f62e',80,80,70,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-43'),
('0f81a249-eb61-4953-872c-7f6977561d6c','6e59bf3c-4674-48eb-95d4-e38eac38066b',232,72,98,0,'2024-10-23 14:11:53.676','2024-11-04 08:40:33.502','501786631-1-1'),
('0f83e51f-b5cb-4202-81e2-7460938b1822','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-1'),
('0f85d59e-962f-4f37-a455-e927323168a7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:41.472','248135683-1-51'),
('0f86e62e-17fc-451b-b6e8-659be6e2756b','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-14'),
('0f87ce98-7764-4011-8d9e-007b8a655882','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-7'),
('0f89fb13-06ea-4e7c-8889-1fa69878564a','4edf944f-7a80-479d-a999-67219fcb4040',51,51,77,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-1-1'),
('0f8ca698-06fb-420e-b4ef-a5f4f5b00258','82ac2d58-053d-41f5-a402-9275c56203f9',69,82,4,0,NULL,NULL,'428172853-4-4'),
('0f8ec5b1-ff7d-4985-a095-3deef9a6fc46','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-20'),
('0f8faae9-eb4f-4688-8bac-9646583a479e','c29e76a4-89ba-4143-8fad-01a2910620ee',75,75,60,0,'2025-09-16 13:29:06.383','2025-10-04 13:57:34.400','750496630-1-7'),
('0f92e712-ffaf-4e20-879c-78423b68963e','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,12,0,'2024-07-02 08:19:59.900','2024-07-18 07:32:21.067','412586204-1-5'),
('0f93f620-8b09-473e-8e89-b2e7f3718aef','ea334a01-514b-4dbd-9960-a3963f52b611',0,0,0,0,'2025-02-09 09:51:30.901','2025-02-18 17:24:17.678','478188178-1-3'),
('0f941428-5057-4edf-9dff-325b36d01f09','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:18.571','248135683-2-9'),
('0f9bc05e-22c5-43ef-b9bc-f6f9afcb6fa3','0009aeec-e682-465c-b701-363a3ef377a6',42,21,16,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-8'),
('0f9c4cad-0df0-42bc-8754-c1df7ed2f7ab','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-18'),
('0f9c8d47-ac97-49b7-9f48-657b796aab6b','5aac8c34-51ea-4438-b73e-7d54bf02d518',66,66,86,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-2'),
('0f9cc6ce-de54-4cbb-a453-e79f3ef0d7b1','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-16'),
('0f9ea0c2-dd45-4f7e-8405-a7f1baefb8d7','7b379856-328b-48a5-b13a-c96f1024ab32',0,0,0,0,'2025-04-21 06:13:27.195','2025-04-30 07:24:50.248','478548963-1-2'),
('0fa61186-efa2-4f11-9bba-2d570d030677','cc773624-f550-4a8f-b0a7-eb010a2ac209',0,0,0,0,'2024-05-29 08:53:01.496','2024-06-10 13:50:20.363','745553590-1-2'),
('0fa6b838-b040-4877-ab5d-c548db85a4a8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-51'),
('0fa7a0f7-bcae-430c-94fc-159596238df6','5d074556-ce95-4ffc-8684-279dc37597f0',102,145,7,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-8'),
('0fa85ffb-e186-42ac-87b9-a4eecd56e656','19ee4ad6-2109-4cda-a637-9c7a0d40dfd7',0,0,0,0,'2024-05-10 18:50:19.017','2024-06-04 14:25:51.961','745964132-1-1'),
('0faa6777-a4aa-4465-8144-cc32bbddf644','06962ae8-10d4-4704-8716-7c7238c4de0d',76,102,58,0,NULL,NULL,'808696925-1-1'),
('0fae14b0-e142-4edb-b084-a4fb604518c7','1868aea0-f631-4deb-85f5-8aa25773bef0',177,250,10,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-4'),
('0fb205bf-9b69-41ff-8416-9da14a689260','a3f658d0-43c5-4d1a-a346-44082f79ff25',100,220,65,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.544','428178028-1-1'),
('0fb2d51a-9581-48b4-8675-a770cf6f23ab','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:19.977','248135683-2-26'),
('0fb4bb7e-c05e-46fd-895e-b601dcee2490','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-1'),
('0fb6ede9-288f-46ab-841d-7b05abafa582','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-2'),
('0fb80194-102a-469e-88a4-b01930520590','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',110,57,82,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-1'),
('0fb81131-3b1f-42dc-98e4-77d4244b4f96','3eee5b92-2a7f-4edf-af88-5ad493656745',70,86,170,0,'2025-10-25 08:58:56.097',NULL,'486741087-1-1'),
('0fb8cb61-9380-4e86-a710-5fc8fdb420b0','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-2'),
('0fbcc2da-03e2-4115-af91-198f20f046f7','81a18e38-40ea-4269-8f73-38e103211eac',49,56,50,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-2-1'),
('0fc1ba5c-7cc3-4254-9c19-de40c5e0ba01','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-18'),
('0fc2a072-1c7e-4fbf-b360-c937934f7a31','9a2158b1-4eb8-4741-9d0b-70a8ada04f34',68,168,95,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-1-2'),
('0fc34e6c-8a31-4e69-9d27-decc403da6b1','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-8'),
('0fc4b43b-20db-47ab-90f2-ac6716315a43','36b532ab-9729-418d-95fa-3d28b03d7faa',54,73,101,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-1-3'),
('0fc50f4d-ae65-4b0b-82d6-c74f774dada0','69acd97e-52c0-45ae-adf5-ee013e52776f',41,61,31,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-20'),
('0fc67b48-7a61-41af-8c52-ff3078e9d8eb','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-4'),
('0fc6e61e-889b-4ad4-8d4b-595cbcb1e01a','09dc037d-a191-4930-9334-d1263bbdc959',0,0,0,0,NULL,NULL,'959626673-1-1'),
('0fc733ad-8e00-4b9a-8129-17d731ecf8f9','f351ee3d-e4b2-4153-9162-59ad1cfacfb3',65,90,80,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-2-1'),
('0fcb8fa5-e714-4d42-9981-9d6e7af567fa','50443669-b15e-4cc6-9bdf-b91285138cc0',80,201,22,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-1'),
('0fd278bb-b0d9-4a5b-b33a-3be685e675ab','463a7999-c922-4cfd-a8b6-01513cc2c423',160,201,31,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-1-3'),
('0fd2a60b-644e-4e2e-800d-8e258dbdb816','bf9a9a10-03c1-4c3d-ac2b-24d040e1f835',100,85,75,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-5-2'),
('0fdcd3fe-2445-417b-bf82-c42b910bbc03','0c867a1e-6b53-453b-a01e-e0718e79528c',0,0,0,0,'2025-04-25 16:57:14.837','2025-05-01 09:52:31.774','644576493-1-3'),
('0fdd0534-bd7c-472f-8d80-b4c5544525d2','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',55,93,12,0,NULL,NULL,'011548428-4-1'),
('0fe35b5b-193c-42d8-8b4f-828813ca7cfe','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-6'),
('0fe4d12f-53dd-4419-9f35-4d286b310e59','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',0,0,0,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-4'),
('0fe85f13-7805-4897-bd79-ac597c10292c','05af1df3-9a36-4be2-8bd1-773d59e1605a',78,34,20,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-1'),
('0fee4f5e-7601-4f1b-88ce-dfe04f1d3ab7','126dd53d-77d9-4431-9b96-782895f21d66',25,35,8,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-2-1'),
('0ff29f62-27b9-4beb-92e0-c89a270653ae','7f5d49b9-798b-4f31-9e95-4d6bd70554f1',130,110,170,0,NULL,NULL,'412922678-1-3'),
('0ff2fa78-4b85-4f0b-8668-f20bd93f6ed7','41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0',51,51,77,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-2-1'),
('0ff337fb-db37-478f-9df0-c8c67a30d77c','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-2-1'),
('0ff456b1-00d3-46a2-928e-20d50009e0c5','c0fe0399-dd85-4397-854c-745020ab9c38',94,120,60,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-4-1'),
('0ff89836-3e5f-4def-ba1b-4a1409cba03e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:42.902','248135683-1-32'),
('0ffb368d-7808-4293-99d2-f7abba5b0b44','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.329','478498501-1-5'),
('0ffb37a6-ef9b-40bd-9464-a4fa1f3c3557','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.994','223385669-1-12'),
('0fff0129-141f-4f2d-bc6d-c580978c51ea','6302f68c-26c4-4a31-853e-80b9d1ba59ee',15,15,15,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-4'),
('1001e88f-c63f-45ec-a694-ca0bd04d525d','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',50,66,57,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-8'),
('10058788-62fd-4e41-a74f-52ff456f29e4','1fd8e619-fda4-4a7c-b740-1071821a89a4',94,65,208,0,'2025-09-18 15:48:37.361','2025-10-02 06:11:54.487','437158505-1-4'),
('1005fa75-b940-4dac-8265-d77be5b7a58f','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-17'),
('10078620-b8d6-429d-ba38-51f5042695fa','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-7'),
('100b2a65-1ada-4a20-832c-9dac81f7760c','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',120,15,4,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-1'),
('100b7bde-abac-4ab4-b884-994e244887df','41f30597-2350-4eef-8ec9-350f4401412b',53,95,210,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.972','221396383-3-1'),
('100d9ec7-5ced-4ec5-974e-7eed5d9e7581','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-14'),
('10158b9b-35bc-4d4f-a3fd-961c393cfd27','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-40'),
('1015b14b-d240-4c20-8bd6-c54dcc5273a3','b16256b1-d6a2-448b-a170-4c574127a57b',48,10,215,0,NULL,NULL,'745189997-3-2'),
('10173f8a-5c11-437f-a84d-193ce0bee8f3','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-5'),
('10181fb8-7cc9-4f39-97e9-3f5c41b0d2bd','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-47'),
('1018afca-71cd-417d-bffd-b87616226c9e','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-17'),
('101ee316-509c-4ead-8179-811ffd30a9ab','8614dcb6-b609-46f6-bfbb-b234b2db29f8',0,0,0,0,'2025-03-08 13:46:16.569','2025-03-17 14:54:20.815','644971564-2-1'),
('101f120c-4c21-446c-96f6-740afbc1b5de','4ac8027d-d5db-4a57-916c-23dd357c98aa',52,30,30,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-3'),
('101fec20-431e-4cfd-8836-c80f7bdf17dc','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-9'),
('10233f93-c2a4-4c13-b24a-5605a8086d8b','9a2158b1-4eb8-4741-9d0b-70a8ada04f34',94,70,93,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-1-3'),
('1023b532-3887-4475-b012-524a7dc6712e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-2'),
('10243a1d-09ff-4d66-a695-0a81bd7e098c','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.809','478150977-1-3'),
('10245d7e-b729-4f72-8418-064c8148b5d2','8966cba6-713b-4094-b1bc-e0e0d0f8334c',50,50,82,0,'2024-11-21 10:29:10.266','2024-12-14 14:37:46.208','126561228-1-6'),
('1025b797-41fd-48cd-8fcc-815a413c9e62','ddd56674-a4c4-44e3-94b8-0441ec7a9fad',60,57,85,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.325','221164226-2-3'),
('1028372b-72d6-498f-a234-75b121c5c109','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-223'),
('10296064-11eb-494c-81c4-638daaf12d63','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.900','2024-10-08 20:17:54.299','478479612-1-12'),
('102a249c-1b56-4e1a-96b0-6db358ede47e','0bb931f8-128e-493c-ae94-68675d2e4db0',90,200,25,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-1-1'),
('10306b3a-b2bb-40d4-81a8-56b38f5c4229','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-1'),
('103560f2-bb9f-4f66-9576-5feca365fe81','8cf1c134-2d55-438d-84fc-b33192eae93f',55,71,101,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-2'),
('103729c4-310b-4a04-b50f-8ecadde01d76','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',26,51,15,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-1'),
('1037697c-eff9-4c02-937e-4d841116dc5f','09dc037d-a191-4930-9334-d1263bbdc959',0,0,0,0,NULL,NULL,'959626673-1-2'),
('1039cb25-3d12-4636-afd1-02f41147f5b5','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-25'),
('103e6ed1-8224-4c11-afc8-36d5ce348317','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-12'),
('103f7dcd-bb2b-4a6c-b8b2-2ffa85463bbf','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-12'),
('1046c8cc-ad87-4a48-a633-4e03c380238b','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.679','2025-10-17 06:13:07.090','221801165-1-6'),
('1048088c-5f27-4b86-bdca-404861292702','766da20f-af1c-47a1-a9d1-61d9a22c827f',125,77,13,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.877','613809111-1-7'),
('104b798d-484e-40ca-b946-c542ab5246e8','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',59,220,10,0,'2025-05-28 19:09:16.593','2025-06-04 07:25:10.370','517447554-1-1'),
('104cb9ed-1c53-44d8-a751-5d11394fa3c9','e1601d35-cc40-41a5-8e8e-8005a1281654',41,22,18,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-2'),
('104e607b-33db-4293-943f-15cdf9b394f6','69545533-7407-43ed-aa87-ace1a5f77648',82,90,4,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-2'),
('10541158-080a-4a4c-8fb4-87f5f33ba7c5','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,83,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.023','8087036-1-4'),
('105707ac-2e95-4e6b-a73e-d7bc018cc162','b7f8578a-5d13-4fa2-9e0d-d1cb8e9d7c01',42,68,125,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-6-1'),
('10573c42-2d11-486d-a680-be4deb6c8ffb','8216e820-b867-4e26-94c7-3619c7c05e2a',43,43,47,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.914','221624652-2-1'),
('1057ac5c-d74f-4146-95ec-1ac8d9423676','0fbc8a59-8a38-472e-bcd7-358dfbdaa902',85,100,100,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-2-1'),
('105883e9-dae4-46fa-a33d-3fde6f6e6c2f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-27'),
('106061b0-2800-49b9-a759-06f14221e982','6f883022-1eea-4faa-b6c6-489aa1c8866e',25,18,10,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.331','455614339-2-9'),
('106173a7-2bba-47bd-80dc-27273907ca76','a56038e7-2267-4938-bfc2-ec55e9b729c7',54,96,75,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-1-2'),
('1063b40c-fc09-4c47-b8ac-a6131752cecf','6a46ee8d-73f0-48c2-83b2-91b6eb632698',105,57,6,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-2-2'),
('1063ee00-8d5e-4523-acc1-e2beed32af22','7a1d10c6-318c-4046-8b6a-010e311d53c3',96,186,6,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-1-1'),
('106743b4-0d56-42c1-8874-9461debd3853','6be11964-ff08-4fef-811c-ae5e608bc5ca',43,43,78,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-1-1'),
('1069025b-b290-4b77-b1e5-594ae8fc477f','764ab450-3216-4b55-bf26-f7163a6cf0bf',98,100,70,0,NULL,NULL,'371117320-2-1'),
('106cc656-bc52-45df-a5b6-732102958c6c','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-36'),
('106eb621-f703-4b1d-8f25-e9a9c64768d6','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-96'),
('106f74a1-dfb5-4825-a9c1-1b9b943728b3','0009aeec-e682-465c-b701-363a3ef377a6',49,43,10,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-9'),
('106fa3ce-887b-4225-8a90-bbf11287c396','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',140,63,9,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-35-7'),
('1071cb48-364b-4457-a6a9-4cf3d8b1498a','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',65,112,97,0,NULL,NULL,'695864567-1-3'),
('1072e565-1f17-45a5-80ea-25fdbc276647','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-115'),
('1074960c-f2e3-484f-b69a-5e3440e040fd','78bc1f73-54ce-4835-834d-a9fdc8205009',40,40,45,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-1-1'),
('10778fd6-2c54-4b55-9740-1169997a6c04','630d42f4-c9b1-4b32-9b3d-39e20b4a7b35',97,76,233,0,'2025-04-30 14:28:58.969','2025-05-14 06:37:48.850','745173444-1-2'),
('10796edb-a561-4c7a-80b1-7ab61c6d8e3d','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',85,104,53,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-4'),
('1079f21b-be15-407a-8af3-e14f6fbb4b91','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-101'),
('107b131d-0b10-438e-9cb8-d3f61bcf4a7f','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-21'),
('107b6576-2145-43a9-b310-3ae5f0493f89','20258a0e-ffcd-40f0-ac30-ddc851f0dedb',106,106,70,0,'2025-08-25 12:31:57.181','2025-08-30 18:25:16.939','27829651-1-4'),
('107e7cf6-93d3-41d4-9ef7-8216b75d8b62','9866a947-9974-4053-8415-4518842488fe',225,57,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-3'),
('10809ea7-c264-461d-97e8-b3c252a91716','4da5ac02-2da4-493f-ad0f-88044a96633f',65,80,70,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-5'),
('10819501-f7b7-4bf2-8556-056b5c7b03a6','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-5'),
('10863517-6abb-43f6-becc-139a6d7674c4','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-1'),
('108c1352-8077-402e-bff6-5d4993c5c834','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-21'),
('108eb532-1a20-485c-911f-7841ea9c75c8','749f88f7-2499-4bd0-b578-1cf55fd70948',66,11,10,0,'2025-08-21 07:14:58.361','2025-09-01 16:56:57.990','745294810-2-2'),
('10924364-a035-4cd7-9bc8-b533888aa3bb','291a2ff2-a042-49df-a88f-5eeac8ddabcd',56,100,80,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-2'),
('1092a1fc-53fd-4ff2-91c7-b6b853452a0c','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:07.806','248284003-1-148'),
('1094d536-c7c3-4c2a-b72d-28d7619bf896','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-2'),
('10960d6f-4058-49ce-9883-a93c31bd80db','80953bac-8441-464b-ae38-3bdc43f14985',0,0,0,0,'2024-12-18 09:31:18.009','2025-01-10 16:33:22.776','745283034-1-3'),
('109626bd-6cb4-4f79-b289-895567bcb237','6cf15506-e6d2-496a-a50c-1bddeb987a1f',232,63,64,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-2'),
('109a126b-0e71-4d20-ae3b-d638f1bbfa77','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-12'),
('109b038a-0f4b-4587-a5ec-b1cab755618f','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-12'),
('109f3952-c838-426c-b0e1-1025ac838032','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.229','2025-05-10 20:13:13.995','223963997-1-74'),
('10a27046-f028-4468-8810-9eae487e5def','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-3'),
('10a69d76-57a4-4402-a484-afa16fde4be8','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-15'),
('10a742f3-0364-43bd-af59-63e9972347c4','586d8693-ffd8-45d6-9ff5-c2329cf59822',84,100,55,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-1-2'),
('10a7660e-e766-4e63-9238-5d04bbe566de','9114ad70-d53e-4d1f-89c7-30585d0a43de',230,75,95,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.590','146630568-1-4'),
('10a97ca2-f3bf-4567-920a-21cf692f262d','a89f5cb0-4036-440c-b388-8ef641d6f3b9',26,72,83,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-8'),
('10ab08ad-a9b6-496d-96e8-50e6ec93d675','99bbb574-412c-40b7-82ef-2a54c6e3ec1a',51,51,77,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.732','613393068-2-1'),
('10abadab-aaff-4352-8658-22142eeff239','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-6'),
('10b32fe3-b407-450e-b6a5-108948121fdc','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-21'),
('10b49fb1-09ef-4730-8dcb-896374addbb9','b6d04ed2-f29f-400a-ba86-37b36b0830b2',61,210,5,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-1'),
('10b583c9-a641-4a86-9edf-760798bf6029','2318c3b3-a656-4ca6-b48d-9732b15b2a6e',0,0,0,0,'2025-10-02 06:45:34.797','2025-10-15 08:20:29.969','75052392-1-1'),
('10b5c35d-07e2-4b62-b714-c9060bd365e8','ac31b261-797e-4d80-b750-2e487b9e012c',75,58,102,0,NULL,NULL,'221383692-3-1'),
('10b7540c-d50e-4952-b46a-801a5dd77bf5','637ecf55-0f47-4302-8766-1e0faf2d9852',86,92,65,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-2-5'),
('10ba13ab-6380-4071-b8d6-6b314ea8adc2','6cee1429-9935-4eae-be32-dc630b6d70e8',190,105,7,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-4'),
('10ba4d89-0618-41be-8acf-6cb00b9d6467','f9861f37-efe2-4e3a-930c-f694c4e10c6f',88,88,5,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-2'),
('10bb3326-d06e-468f-9c72-a13baff82f84','869ce9df-955c-40b9-9988-140f26d3b591',106,213,7,0,'2025-05-09 18:44:03.273','2025-05-20 16:56:07.118','371394707-1-1'),
('10bcd14d-4b30-4ed2-9154-5bd35282519c','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-6'),
('10bce1aa-e98b-48e4-bd19-3766b156e1dd','08832577-714d-471e-b006-0d3852d85ed5',44,48,44,0,'2025-09-01 11:06:05.922','2025-09-09 12:50:22.144','598172413-1-3'),
('10bf6b3b-d847-40dd-bcb5-50d925b968c0','405c5569-3390-43f1-95ee-f006ef560059',76,51,75,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-5'),
('10c29f63-a59d-4a6c-8931-828fa871a0bb','d77c1e4e-c306-49d5-a8dc-4ae4f2dfa986',85,79,80,0,'2025-01-11 15:20:10.779','2025-01-19 14:52:20.190','449558519-1-1'),
('10c38dee-6397-4376-acd4-d02212ae24ba','733d947b-4145-4080-8edd-87c33f93d60e',95,124,60,0,'2025-10-20 07:18:07.350',NULL,'59856960-1-3'),
('10c47adc-6be7-4100-a762-58a369a4b7c3','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-6'),
('10c59fe0-6fcf-41ba-860e-d956bf025502','211ec422-ff31-4a6d-8829-2e78be0611f7',55,100,200,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-1-1'),
('10c7eaf8-3e7d-4b35-a487-b3c7e0616874','0ad93723-9533-486c-83ac-4a9287073b23',70,94,115,0,NULL,NULL,'598967733-1-1'),
('10ceafb1-a684-4a48-859e-843f3ef906e8','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-2-3'),
('10d03210-794a-40e7-9d79-ccfdaf1422b2','1dff9484-7b74-4dd3-bde2-e304e871a006',235,68,95,0,'2024-08-20 19:22:24.329','2024-09-04 07:29:55.477','449780250-1-1'),
('10d1b7be-418a-4aea-99e3-87f02881cd2e','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-27'),
('10d771cd-c81e-4441-b89a-99c4751acd81','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-3'),
('10d98d3b-2648-419a-bed5-96fe3e203e57','8e9264a7-ea7b-413f-be45-63b66a8c7b11',85,85,80,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-1'),
('10dcd784-1d40-4487-95aa-d64148fa361e','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-2'),
('10e11c03-ae76-4e2c-b242-06981b5d7d21','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.229','2025-05-10 20:13:13.995','223963997-1-35'),
('10e172d7-7d5b-45cc-9eb4-ac3d10013639','9a5c9f09-ecda-434f-8efc-112c1bc44fbc',0,0,0,0,'2025-07-08 11:31:05.659','2025-07-25 18:05:09.591','371440688-1-1'),
('10e9a2eb-3f2d-40c2-8400-5ead333c714b','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',75,60,80,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-2'),
('10e9c9ef-8e90-4499-92ce-25f02eb5c546','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-3'),
('10ea629e-e866-4f7b-9545-07e66a46d32d','9866a947-9974-4053-8415-4518842488fe',215,85,2,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-4'),
('10eb4804-146d-4bb9-b205-adc6a820532f','5b81703c-cd5b-4b56-94d7-e111a745e9ae',105,75,58,0,'2025-01-26 10:54:20.546','2025-02-10 14:16:33.210','221240151-1-1'),
('10ec9f09-f2f6-4011-a4b1-84eeee3933ac','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-1'),
('10eeab0a-941f-457f-afd2-e23bf20d8915','86d6c74a-fed6-4b24-a3e8-4af8a7cfed33',106,213,7,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-3-1'),
('10f03fb4-f599-4f11-8058-517b0d9072cc','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,72,80,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-7'),
('10f1b401-d88d-4f97-9986-e3e71ea4debe','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:06.847','248284003-1-179'),
('10f21033-aabc-4ac9-803e-bee1de954844','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',37,37,210,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-3'),
('10f5c1bb-9cbe-4c68-a261-333892980231','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-131'),
('10fa2122-230e-40e2-bfcc-02ad16a97f54','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-176'),
('10fa36b6-9fec-4465-b392-6819b0101c4f','6fcd8160-ca06-46ab-a691-51de5c394793',54,12,89,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-2'),
('10fee909-bf9c-4a57-a12f-a9c1cc5ac4ba','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-83'),
('110009d3-79e8-486b-b4e6-083c989b276d','325d219b-c8fd-4d28-8c93-ebdf2ac1a0b3',1,1,1,0,NULL,NULL,'47876680-2-1'),
('1102acb6-4ebc-4cae-bd14-41aa3b9e98e5','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-26'),
('1102f395-b454-4b0a-8d7b-e80f2878601d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-130'),
('11045fa0-2124-4368-9b37-d336b907e1a2','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-8'),
('1105fc66-85ab-4144-acd5-1542d74691ba','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-2'),
('1108a563-3fa7-4c14-9586-87ccc4da43ad','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-108'),
('1109a354-7e7f-4e8f-9af4-e532cd4dc366','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.494','221949733-1-1'),
('111030a7-a9ef-4464-a93e-8a407e8bef15','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-116'),
('11179656-ba00-4dce-9aab-39dd08272734','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-24'),
('111885cf-fda0-4e77-be0c-9fdd0376bffc','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',65,80,90,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-4'),
('111d392d-6da0-4cdf-b800-42de264c0c34','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-125'),
('111e0d54-96be-4377-98ac-95d2962911f8','79f2719b-57a0-476a-b983-2ccf3ddcadab',88,46,15,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-5-1'),
('111f2b1b-f0a3-45bb-833c-35f337faf758','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-32'),
('1124d6a6-fe31-4648-81bb-dbb6b63788ac','aae2318d-95da-452e-926b-e231bf06cabf',91,28,198,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-2-2'),
('112645a7-3a95-43e9-9d3d-c05568585546','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-14'),
('112acb9b-5a1d-4382-aa88-71c3be8f1251','3166ea3a-776c-48c3-91c8-684a49e8a243',202,98,7,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-2-1'),
('112b96f0-0f82-47e5-b915-ad77a0843b79','9bbd96a6-b7d6-43df-a3fd-6a39a6afe5e3',53,51,41,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-3-1'),
('112c9c49-ed85-4509-a695-34497a665245','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-43'),
('112f6cbc-f65e-4d2e-ae67-acf0d4931e9d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-157'),
('11339312-8441-45e0-8adc-a1c09f2647b4','1f9eee6f-5fa7-4185-91e2-eb9566d5d7f5',201,41,14,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-1-1'),
('1133ac5d-a500-4e8a-b5b8-2eabb45e31d8','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-21'),
('11349810-1698-40da-95a4-2f37bb4301ea','0bbc5c7e-04d4-47a1-95a7-a4fb473803b3',42,67,71,0,'2025-10-09 08:39:52.750',NULL,'011940661-1-3'),
('113818cf-458d-42b5-bd52-c11dfd71fbfb','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-26'),
('113b0f82-55f5-41f8-a5f7-5e634d0b9527','feb77c04-d085-4688-a308-1871c3ac6713',0,0,0,0,'2025-09-18 15:48:36.291','2025-10-02 06:11:59.159','412955343-1-3'),
('113c5b0e-7f1c-4618-b077-c50a6670f81f','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-7'),
('113da999-7ad2-46f7-a472-58f4c060d599','04f841ce-9ab3-4610-9d1d-bdd9d9518084',0,0,0,0,'2025-03-13 12:21:24.843','2025-03-23 16:15:52.675','268615271-1-4'),
('113e96e0-6ca2-4351-b6c7-14ea2fededbc','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-22'),
('114045db-2972-4952-bdd5-0743592be0c5','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.450','412441586-1-4'),
('11404d4a-9eba-4a73-9f44-9360799aa4e0','b463387a-754c-4c53-ade6-f7e850173707',57,76,102,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-6'),
('11406d1c-de4c-41cf-979f-342ec57f94e3','8db511a4-512c-43a9-a77b-c2c5b692a613',0,0,0,0,'2024-11-12 16:15:52.038','2024-11-22 21:23:24.062','745661183-1-4'),
('1144127d-38a2-4d86-8661-d9184d040a6f','8ec65c8d-3654-4122-b978-0e2729ab3484',95,5,185,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.302','748663171-2-1'),
('11445a93-f7ad-42cc-a5d3-1bebeb701944','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-2'),
('114cebdd-3eb1-484c-b1b6-eaf5fd57feaa','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-79'),
('114e1da2-ba3d-4c0c-b19c-4f700115c02a','ea6ce2a5-fd42-4bc9-978d-b3714213845f',65,156,93,0,'2025-05-09 18:43:55.905','2025-05-21 08:16:34.944','976430102-1-1'),
('114fe72e-e42a-4560-8594-321da79c70a5','72fb829c-8230-4d8d-9137-c937d756af88',0,0,0,0,'2025-02-27 16:45:25.397','2025-03-13 09:28:37.647','614680407-1-2'),
('114ffb51-d0f0-437c-b353-ffbab69e098a','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-2'),
('11505a29-8f14-4370-bc7b-b96cfb0c1d92','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:20.851','248135683-2-71'),
('1153d650-6fad-4ef3-959e-bfa2e0706f30','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',7,198,156,0,'2025-01-26 10:54:21.565','2025-02-10 14:16:27.212','428341956-1-7'),
('1156cbc5-c890-42a8-ada7-ec0ad4c3a73c','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.341','644890175-2-1'),
('11575664-9fdf-4e62-9761-576d2b36f76b','42345ca6-ef3a-446c-b13f-224500a189ad',60,68,96,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-2-1'),
('115b7df9-917d-4bd1-9a85-9b44f2173e00','e05e901e-453f-417c-bd4c-e857b8bd2fdc',233,90,80,0,'2024-09-19 18:27:49.283','2024-09-24 20:20:45.786','449715358-1-3'),
('115fa4be-a182-4318-82ef-4e8dbd60edb8','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-71'),
('1160f3f4-374e-43d4-be51-e4d22a242649','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-22'),
('11610daa-b05f-4861-af91-e9360e7b5bd3','145acb30-1c39-4fcb-b4a1-ded11d8b7586',96,96,80,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-1'),
('1165cf2e-0222-40ae-a052-4180f4202481','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-111'),
('1167a6f9-3ae5-4183-ad15-39086fd3e194','3bda7c8f-d10d-4b97-b22d-c5e0ee73bec0',80,100,70,0,'2025-02-20 12:15:03.287','2025-03-03 12:37:37.230','910599740-1-2'),
('11692180-0328-4c75-bc35-604b77515c37','886e0e1a-c599-47ba-bacc-c329212cc55b',13,129,35,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-13'),
('11696dfe-8b68-48fb-af0b-17e84db19066','b698562e-f03d-45ef-b2ac-535d8edcf5c4',75,49,49,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-3-2'),
('117137dd-9dc1-4d39-9799-50112415a399','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-7'),
('1172ef2e-3c81-40e7-b1a6-5f567ed8c843','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-3'),
('117392e0-1a65-41f7-8a27-8df6ad93ec63','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.897','734957360-1-2'),
('1174e251-31bd-4c08-a529-669fa265a948','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.897','735793543-1-5'),
('1177030a-ea10-4c22-a291-2b903abb5753','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.986','2024-05-08 21:07:25.066','745180441-1-14'),
('1177aa47-d88b-4b71-8fb8-11a8b3c67ccc','c2e59836-c823-41bf-b343-b3df9dfc91f8',60,223,95,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-16'),
('11792408-8b21-43aa-93b1-38890315df1b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-188'),
('117a4d1d-c796-450d-b179-ba811d3e41bd','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-33'),
('117b4b6b-63dc-454f-b3dd-e735a4d705f2','e9626be5-ddcd-40d5-865d-7018bc1ef9df',36,5,17,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-1'),
('117b63c8-722a-4495-9d75-0c0ab8fa28f9','6a343572-aa28-4029-9171-fbea51ab4941',51,51,77,0,NULL,NULL,'221963489-2-1'),
('117c97b2-9f70-404c-877b-f70cfaa3c551','078e5a30-43f7-4f76-873a-4dcdd248380e',205,80,95,0,'2024-05-08 18:43:22.003','2024-05-21 18:45:46.060','50119540-1-1'),
('117d94c1-42f3-46b6-85ef-c973c96f52ae','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:05.146','248284003-1-114'),
('117dbc6d-42d9-47f8-b86a-75d2bcabb2d9','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-6'),
('117e243a-3688-4e44-89ab-aa57c5a4779e','0c4e75d5-e342-41c3-949e-5ca8657ec836',200,45,28,0,'2025-09-02 14:48:39.153','2025-09-10 17:05:41.390','598226174-1-3'),
('117e4ff5-32c9-4ec5-86e4-df2b53dcd9a7','5b791a1b-bd6e-4eab-a014-286a1c1d2fd3',70,230,90,0,'2024-10-23 15:14:13.314','2024-11-06 15:48:43.182','517495121-1-1'),
('117f5eca-a16c-4888-b389-70dce483c0c5','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-1'),
('11807278-cff3-4048-83f0-da6408bd6607','bf3c6d76-210c-4d83-8776-c792b4de5d83',33,33,170,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-1'),
('1184bc6b-f1a1-43b5-af1a-2791e74730ec','5e5de5b3-4040-4320-b4a4-779e58d5e8b9',50,50,45,0,NULL,NULL,'371903427-1-1'),
('1185785a-a133-4163-bcd1-9e28f374ec18','e2f7afec-2053-4563-b82e-d7330ed835e8',30,26,15,0,'2025-08-21 07:15:05.662','2025-09-03 05:42:42.939','437835103-1-4'),
('1185ab7e-0f9d-40b9-bd23-d064146f858d','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-17'),
('1187af41-0c7f-4fe3-917a-180231cb6a1e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-98'),
('11889f83-4b0a-4128-8b8f-d2ebfec35571','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-64'),
('118937ea-9b03-4757-bd55-09a17a41ea48','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:06.406','248284003-1-116'),
('11893bf0-e2ef-46b3-acc7-441b41566692','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-24'),
('118c195f-ac5f-4fb0-a932-f2117732ce7e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:09.968','248284003-1-105'),
('118c68f9-e5ee-4b49-ab28-1fe759fcbaec','1d4d748c-8215-4966-9c01-ecb14e0334f4',0,0,0,0,'2025-02-15 13:31:37.842','2025-02-28 17:30:36.364','478885043-1-2'),
('118e629c-6692-4c02-b258-dd81c16176c8','858bf458-b499-4eea-bf79-f32ed1c24910',0,0,0,0,'2025-02-20 12:15:08.924','2025-03-01 14:06:52.749','31929392-1-2'),
('11906726-280c-4362-9c04-0b05d4ea86e7','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-4'),
('1190bd39-90d6-4e72-995d-5b0dca47292a','6a2d762e-11cd-4fca-b32d-cdba41391e25',67,44,17,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-1'),
('119365f9-f45e-4fa8-82cb-fa4b5416baca','54615f37-dc23-4fec-a058-63bc43066248',96,169,7,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-2-2'),
('1193b07a-ca14-44d7-8ddc-07a4c4789d96','b23cf296-f843-4492-9697-0fd43d657771',210,42,4,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.983','858200454-1-1'),
('1194c5fe-8d2c-408d-90f3-7515f1edb12f','0263f7f0-6c1a-4beb-ab78-25d69142647c',65,11,10,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-2'),
('119559d4-cd5b-4475-8de7-df3e2e293fb0','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-1'),
('11976911-9e94-424e-a37a-b934a8d641c2','3842edfb-94f9-4f7c-b110-2ea10ce622e7',95,181,65,0,'2025-09-02 14:48:28.592','2025-09-10 07:23:35.121','644758410-1-5'),
('1199f572-8f14-4f98-9ef3-c0754ceec02a','c4364289-7d10-4f97-9732-485a10bd6c67',202,10,96,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-6-2'),
('119c53b9-e961-44c7-b7c9-3c99f2e63cae','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',71,24,202,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-8'),
('119c6332-0ea5-4c17-8f8c-1d1995d4f4f0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-177'),
('119c7c89-84d4-4068-92cc-2ea3ca9b25b3','19c6a32c-4384-451a-aaa5-dfc264ab827b',55,18,96,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.340','517895646-1-1'),
('11a06004-bdd8-41cd-82e0-ae1bd4ea123d','695436ef-76db-49e8-9063-c84065a6ba8b',48,35,223,0,'2025-10-20 04:18:21.633',NULL,'312422305-2-1'),
('11a1c4e8-fdd7-4426-8feb-daecbaa4cece','418cc5f0-94c7-4e67-85d5-2726afa3452a',51,51,76,0,'2025-04-25 16:57:22.774','2025-04-30 14:30:39.804','613976667-1-3'),
('11a41d33-0a59-497b-9561-56b686ccfdc6','28a006d0-78f4-4519-9b69-fe1363cd8176',65,80,95,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.224','745869069-1-1'),
('11a6bc77-fb4e-4a64-87bd-d3549e01a345','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-5'),
('11a82dee-8a23-42a6-8ca7-6a5be49527fa','d7b20d4a-f51a-4294-af83-061ed3bd58ef',180,200,33,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-6-1'),
('11ae8f05-0e2a-46ee-b1be-949a9a96712f','3e4d9220-ce76-450d-a76c-9787b1f4433f',144,73,8,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-2'),
('11af8e96-fbc9-41ac-8a55-96872fe88616','cad27d48-d66c-419b-82d8-6b69b7fb1590',95,100,70,0,NULL,NULL,'515967328-1-3'),
('11afed1e-d9f1-4347-b6f4-68f1fc63fadb','3535d433-eb38-4879-84b4-dbf8410809cd',55,42,23,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-13'),
('11b091b4-bac3-4698-96cc-ae8c2f737724','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-1'),
('11b672fc-1d51-4b71-b2e2-64333b7c71dd','601003c4-c08a-4b64-839d-d5ab37e7595b',75,110,110,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-6'),
('11b6df2b-e48e-429f-9dcb-51d65f919e9f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:43.512','248135683-1-187'),
('11bf7986-5a60-4238-9da4-d61443845eed','0a8285d0-d3db-4298-8e41-62c5429f150a',210,51,7,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-1'),
('11c0b49e-548e-41e4-b85b-fe11c28ec389','ec4d4945-f64b-4a46-a100-92d57c703e18',97,55,107,0,NULL,NULL,'531481098-4-1'),
('11c6c86c-12e0-483d-b6a7-71c30057947b','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.165','248883377-1-2'),
('11c71d3b-7694-4702-86fb-3769a46477ec','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-49'),
('11c97c6b-1c4f-42d9-bec2-d17d968112e2','ed097511-c426-4ff2-b940-1f98b2a1f4f6',53,225,26,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-9'),
('11c9ee3a-4a2c-4cef-af82-cc22a0e10ce6','9d7979f3-a35a-4a64-97d1-4ba973786029',38,20,30,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.005','100655378-1-4'),
('11caf7c3-99d3-470a-8963-285a6743a1bc','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',100,200,28,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-2'),
('11cafb79-91c9-4a0a-b597-7c5a1b966562','b3f02c32-aa9c-4645-9a60-55ade9c2c6e2',76,128,8,0,'2025-08-15 15:03:00.925','2025-08-21 16:37:01.898','437427529-2-1'),
('11ced02a-e560-4ab2-9708-80bfc273e17b','3aca7d6d-09cb-4903-812e-7535a083b09c',170,33,32,0,'2024-11-08 17:37:44.277','2024-11-22 21:22:11.473','616254479-1-8'),
('11cf4f28-20c0-4d9e-a38a-49044ac1eae2','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:12.718','248284003-1-178'),
('11d2db7c-c471-444b-970b-66f6c2b61db7','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-1'),
('11d4bf7d-c714-4bc4-9612-b7df30a69454','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',91,68,60,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-2'),
('11d4ce44-6021-4d0d-b15e-7414f5b26c12','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.837','2025-09-17 16:04:00.284','412746738-1-132'),
('11d773a0-98f8-4f6e-a840-f15a16b3c819','94470f07-2500-47ea-83e7-2660e0c8d460',235,55,63,0,'2024-12-07 09:32:25.879','2024-12-18 16:36:57.903','982432822-1-3'),
('11d85bed-2391-409a-8d75-063f99c11fab','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-8'),
('11de4727-0e07-47c2-bd48-ed6a097db847','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-6'),
('11de5de0-5565-4155-9d15-aeaa0c74fdd5','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-132'),
('11e55173-a446-49b9-99fd-96e6d35bd166','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-71'),
('11e6cc3c-6562-427c-a0a5-09eab7784f24','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-12'),
('11e7546f-e24f-4c7c-b479-36867877cd65','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-33'),
('11e79db8-426e-4522-810c-f99cb41be4d7','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-60'),
('11ec3bf9-e73c-4884-80d5-c6dd1c98d1f6','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',67,93,97,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-4'),
('11ecaa4a-f7d7-4926-9639-b3fe880c0d9f','8cf1c134-2d55-438d-84fc-b33192eae93f',55,71,101,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-3'),
('11f403d6-72f8-49fa-bca0-f8ff2c43be04','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-41'),
('11f50b18-1747-4a63-a0bd-bff33501f44c','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-30'),
('11f58872-51f0-490d-b8fe-a767fc736182','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-7'),
('11fa2c5d-7460-424f-8bee-9db1c55bcc06','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-30'),
('11fb2dcc-2c39-42e4-9cdd-9ad12852ef87','2638267c-49c8-40a2-9cea-d01b15ec2ffa',97,97,65,0,'2025-10-08 17:44:08.105','2025-10-20 06:32:16.904','644113252-1-1'),
('11fe5762-bd85-4fb5-ab9d-3de4abc0d2fb','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',47,23,38,0,'2025-01-06 13:08:14.395','2025-01-10 09:45:03.347','910903191-1-14'),
('11ffc5cc-5363-4a83-a04a-811311bf689d','8279654b-3e57-43ba-844c-f5985ec2ca90',152,92,65,0,'2025-07-12 09:19:08.718','2025-07-17 19:16:14.064','982893962-1-4'),
('120092cb-ed2c-4c9c-b197-7bc3d80710ac','62f8f5e0-3dde-4a16-8b43-15d3805cff33',55,55,79,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-2-1'),
('120204e0-850b-49cd-91c4-0c6a1a1134a5','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-5'),
('120239a8-fe7e-405f-b51b-e992b91a9130','520b7195-189b-492f-9da1-ba698952b5ad',73,53,101,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-1-2'),
('120577c9-de8c-4d1d-8fcf-37191ca33d23','5fad51cb-2466-474d-9661-9f8cff4bd601',51,51,77,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-1-1'),
('1207d593-386b-45d8-a27d-1b91933d0c0a','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.143','2025-09-04 21:03:37.660','531245816-1-6'),
('12086a58-07fe-4b11-854a-f0de427d2bb4','76fbefc2-a286-43f6-ad72-bfd2c3a8078d',85,75,70,0,'2025-02-15 13:31:47.546','2025-02-26 13:43:22.913','982573889-1-4'),
('120a0ced-3f13-4792-a379-9cb85cac8cd0','227c25aa-0bca-476d-a4de-9a7600d7bdfa',50,50,45,0,'2025-10-20 07:18:10.105',NULL,'59874048-1-1'),
('120ccf91-6c1d-49b7-b6a4-fa46b221a14d','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-9'),
('120dfac1-d4d7-423f-8ac2-52ab87e75377','091fc5f3-cafb-4a56-8101-89c4a22e01b6',0,0,0,0,'2025-02-23 12:38:58.756','2025-03-08 13:58:12.078','517291063-1-1'),
('120e7cd7-053a-4c0b-b155-3194a20ca119','5eedf7e1-129e-4ada-8cbd-d63340cf856b',0,0,0,0,NULL,NULL,'959475359-2-3'),
('12155326-92c3-4a01-9e18-8e7bd3d83fc6','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.600','248292815-1-9'),
('12171ce9-2dd2-48d5-8353-eea8550c09c1','e97539d8-0d26-42a2-bfcf-9866d5bd205b',79,215,2,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-2'),
('121c785d-b461-4fea-b416-dd4d85a03c95','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-4'),
('121d6762-31d5-4d25-bf90-8cd34cbfa7dc','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.569',NULL,'046517356-3-5'),
('121e0b08-bcc6-4b88-a6dc-229a242155e9','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-1'),
('121e92da-2a0e-4ae8-9428-61eb78c23772','bd088382-ea59-4eef-9d88-602bb3f44bc6',51,51,6,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.126','428653750-1-3'),
('12200507-4a05-4860-8bdd-656b6c4b1b6d','2fe858c2-0dba-4eeb-ac43-17e48df137ca',96,66,208,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-1-2'),
('12232a0c-a3ee-4d9b-b534-80c789036ff9','ebaff3b5-cd83-4700-8ecd-abc457e20f38',145,145,10,0,'2025-09-12 17:17:04.706','2025-09-23 14:04:07.289','221225501-2-1'),
('122ce6ce-0f85-4837-bd1b-fb0b6f5b852a','5acbde88-dafc-4c21-ac17-d9730a373cef',76,53,100,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-2-5'),
('122dfe5e-f872-458c-b16b-cb16d79b912f','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-16'),
('1231fb2c-d0b1-4014-9234-2e725f75f4a8','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-3'),
('1233d8a2-0368-4136-a04e-00bef9a92f35','8f17c546-32c4-4bce-b6c4-52cc5acb71b3',0,0,0,0,'2025-08-27 19:40:01.501','2025-09-06 07:19:02.562','598961911-2-1'),
('12342c95-bb96-488e-8653-b28b86b2a7ab','c5e0d83f-acd4-4d0f-9e00-9f237578b979',76,46,46,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-2-1'),
('1238621e-4606-4d6c-9b2f-ccd51a5f6518','84a978c9-68bc-4af6-a5ab-3a6551bbc294',92,37,56,0,'2025-10-08 17:44:02.656','2025-10-20 06:31:57.755','371876767-1-3'),
('123a9deb-8dbe-4446-b235-34684861072b','0ac53b26-8839-427a-9f47-8cb1675f5bea',82,46,82,0,'2025-09-06 07:20:43.651','2025-09-12 22:09:27.950','43783689-1-1'),
('123b121d-2b02-42a5-8393-c6e3ec3205b3','546ad3d0-25c2-43dd-9443-e48b8e5b6530',210,16,16,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-45'),
('123c3255-e9fc-4bb4-827d-845f89091d9e','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.342','644890175-2-2'),
('123d0ed1-6c81-4fea-af9d-2c43df35029f','808a4f1b-793f-4a15-808d-00c26a26c166',63,50,77,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-4'),
('123f47dd-b55e-413b-b9cd-9f08245ccfff','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-3'),
('12446344-5bcd-43f9-a8ed-b5da63e4f124','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-5'),
('12497b90-5183-42cc-9271-688cba0223aa','b1b4317e-ddca-49f3-b171-24c1b0186c6b',42,43,75,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-2-1'),
('1249fcf9-f5d9-46b0-ae4d-3ee400e702d2','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.627','41246036-1-43'),
('124ca838-14ed-42b8-98bb-dd1c7c13ab5e','fc853fcb-c51c-4c07-b20a-ac57fdd1a81e',70,98,123,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-5-1'),
('124cf81a-5bac-4586-afce-37446f9bd3b1','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-4'),
('124d4436-2f13-4ef4-9eb1-7e898dfd4055','c27fa652-60a3-420f-84ea-e63942b65704',191,28,91,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-3-2'),
('124de0de-92ca-4fd2-aa90-123d14ca4b26','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-84'),
('124f93de-eb89-416c-9bcd-8a472d09a818','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-98'),
('124fc3a8-9827-4544-9467-438c2c074bd2','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-15'),
('12513f59-a683-4f79-ad00-fd5b6da9b801','4234b206-7cb5-444c-aaca-5283e36bcc3b',57,82,109,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-1-3'),
('125428ec-9d55-4072-82e9-a81f309ab014','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-7'),
('12573a80-4ef7-4e0d-a8f6-c2022da99108','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-1'),
('125aeca2-3aec-4c56-b6e5-3665199324a4','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-9'),
('125d1817-2cf4-4325-865d-2e527ab3e588','682e2f71-df2f-412f-a256-ded0d3475e02',57,82,105,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-1-3'),
('12624985-9883-493b-af3d-24408a5d6347','031c81a1-1596-403b-80d9-8d3b2e98940a',98,70,245,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-1-1'),
('1262eeb8-9d03-4463-86e3-e31c7856daa9','af69c5a3-87d3-4548-a650-720b69a4fc69',60,46,14,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.819','614143415-1-18'),
('1264e090-c81c-41b6-adf5-fc768684c935','503ad8da-9a8d-4ce8-9358-85ef86ef590f',70,100,70,0,'2025-10-20 07:17:55.584',NULL,'531380104-1-2'),
('12672424-d7dd-4525-87ef-888749101c7a','f2b86101-231b-44f6-8b23-da9325756faf',98,197,8,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-5-1'),
('1268c27e-f894-4c31-b68e-4a2ca19ea901','e1601d35-cc40-41a5-8e8e-8005a1281654',198,52,6,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-3'),
('12691226-6090-4b6e-8d77-44fbb163fb3b','4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869',65,99,117,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-1-1'),
('12696d40-baf1-4382-8edf-b74248f8f2e3','1bb5f42b-00cd-4103-97bd-b2cd24afaea0',77,137,10,0,'2025-07-19 07:51:58.812','2025-07-30 08:02:01.464','371408514-2-1'),
('126ae598-9777-4a4e-a02e-859e0271074e','9e72249a-03e0-4070-91b9-57ec46ace228',100,70,90,0,'2024-09-06 12:28:23.889','2024-09-12 10:54:20.815','455460659-1-1'),
('126af16b-614e-41d0-91cf-95405435d292','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-93'),
('126dd9f4-50c4-43e4-8b44-e1f3bad589c2','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-1'),
('12717fc6-ec3d-4632-a6ae-24fdb2b52ef8','a7301044-68cb-4760-97a4-a179f6e13b28',50,52,77,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-1-1'),
('1271da96-d2e1-4da6-8613-0c3db4dcc46a','fcf2d3c6-3f79-42fd-a564-dc62e7679d3d',41,57,40,0,'2025-01-04 10:47:46.499','2025-01-08 10:30:55.332','248539327-1-5'),
('1273f9d5-d6df-4112-b7c7-178e42737929','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-14'),
('1274272e-e442-477e-ab2b-1500c4462874','a6b04dd3-2487-49d4-ad42-d8c0995db2df',53,77,96,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-2-1'),
('12747670-001d-4768-b05b-2fbccf99f2cb','94241ada-8d18-456b-b4cd-1abce195d23d',56,72,107,0,'2025-09-18 15:48:30.584','2025-10-02 13:31:44.360','011131883-1-3'),
('12755315-131c-4a69-91f9-e242aa0e7196','c39409f6-eabb-4d89-8cfa-a6402efc79a6',70,147,100,0,'2025-07-17 09:33:45.878','2025-07-22 17:22:09.793','531737045-1-2'),
('1277a298-3869-4957-9009-b36c3c416019','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-13'),
('1277a329-e9d6-4ab2-b09a-440f52b9a722','bea7bfd4-c724-4bd1-9622-cc671ef16009',0,0,0,0,'2024-07-30 14:58:36.700','2024-08-05 20:20:51.622','412330197-1-2'),
('127d4f9b-4a36-441f-9ff6-3af4975832a1','4301b768-4818-4e74-a6d0-12a33474f5c6',44,62,14,0,'2025-10-25 08:59:16.418',NULL,'478450171-1-2'),
('127d9ac8-23dc-4664-8fca-5de304fc29eb','db1e0b9a-d829-49ba-8948-a90a863b6512',54,73,101,0,'2025-10-20 07:18:19.736',NULL,'644741916-2-1'),
('1281f6c9-f635-4b2b-a997-b0c307b55e1b','7908530c-18a1-4a83-b5c2-fdea91117bbe',84,74,90,0,'2024-03-31 17:55:03.268','2024-04-15 11:37:34.889','449178440-1-3'),
('1282ee47-c98c-4adf-ba48-d51754f4fe78','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.229','2025-05-10 20:13:13.995','223963997-1-73'),
('12882287-6aea-415d-ab00-c641eebd9cb5','5a40f64b-a362-449f-b074-5d84154e2855',60,30,40,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-2-1'),
('128b2bbd-6a73-4e1b-948b-a3d74e5f03c9','f449fb69-70f5-4f97-8883-00b38025bca8',57,75,104,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-5-1'),
('128cfd5a-831b-483d-84a5-a8325076364d','1d2ec7e2-f735-46a1-96be-3994af90aaac',57,83,100,0,'2025-09-16 16:29:23.562','2025-10-03 06:54:42.114','750363306-1-6'),
('128d6f44-0564-441f-a3c3-aa37a9d8ed84','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-41'),
('128e5107-b7e5-4d69-9098-25de186017e2','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-15'),
('128e6c50-2000-4bf7-91a8-5a9670f8e836','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-40'),
('128f36b7-fe7c-4aab-aeec-2baf961ef674','9950fe74-2437-4188-83e7-37a1e09fa6f7',160,199,4,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-2'),
('1292f5cf-f005-4244-af42-8dfee365fbed','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-6'),
('12942f60-9412-4d83-affc-ef5ba2d507ce','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',141,188,8,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-2'),
('1294cf65-d990-48eb-b6c5-91dfa3896746','c3a1b223-fcfa-4472-9d1b-78712c38d224',53,53,77,0,'2025-04-30 14:29:00.349','2025-05-14 06:37:41.026','371437952-1-3'),
('12979c0b-06ea-4917-a24a-ec2af9fdda37','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-5'),
('1298ce07-493f-407d-b631-d01b2e9b64f6','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',23,66,130,0,'2025-01-26 10:54:21.565','2025-02-10 14:16:27.212','428341956-1-3'),
('129a85fe-939e-47fc-85ee-211d34ff38fa','8625abf2-719d-4d7f-b206-16948b318b8b',205,50,9,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-1'),
('129a95a4-84db-4bbd-81bd-e8a703aa5829','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-23'),
('129d7809-b2d3-414f-8f08-883c9596e58a','ff41de74-17ff-4bad-989d-6f378ab50997',32,32,29,0,'2025-08-14 08:21:26.946','2025-08-25 07:11:44.074','786895232-1-3'),
('129e9788-4d29-45ed-8766-36563773a9fc','e98a8dba-7836-4c3e-99ff-5d8e5dd92672',175,98,70,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.714','437250812-4-1'),
('129fa4ee-e152-4f91-8237-8e4115a50233','4a5b7db2-dc5e-4f39-972a-37093584e9dc',120,27,200,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-1'),
('12a048e7-3651-4519-8cb7-ecabc650eaf0','0a11d915-2e8f-42c2-b468-0ee6b5857269',75,57,102,0,NULL,NULL,'221919629-1-4'),
('12a1e33f-e953-410c-a126-9be5f73596fc','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.939','2025-07-26 21:25:24.117','598250504-1-4'),
('12a25018-bb86-4a76-bd1d-ddd57935829d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-64'),
('12a28fd6-bd5c-44e2-8677-ccd144c37a03','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',67,48,21,0,NULL,NULL,'428413605-1-2'),
('12a29e29-8400-4de4-b071-b10276d79948','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-4'),
('12a2d8bb-ff41-4b38-b29c-4f2752fe530b','94c4f556-9786-46f2-b2fd-19ec8d6e3641',42,73,113,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-4-1'),
('12a3fb48-731b-4664-928f-268bc9253f06','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-171'),
('12a51a0b-2571-4924-a0ba-a45f1e21fdde','2eeeec42-3306-4154-bcd5-56e769835168',95,6,174,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.996','22133183-1-7'),
('12a64d10-5fec-4f8b-a493-bec4771eb1a2','d176a715-bd33-47f6-bcb7-f384e079f39a',70,49,33,0,NULL,NULL,'501724603-1-4'),
('12a80452-c998-4b85-9d04-0acbfdbb7c91','6f8fd929-0228-4fd9-a182-83fe855d3f5c',198,158,13,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.511','962908456-1-1'),
('12ab9c05-ea6d-4fa1-8782-17bcb3f2448b','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-21'),
('12ac282b-ca33-4986-a6ec-8f9ba45b0706','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',60,46,56,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-28'),
('12ae6d24-f084-4a4b-a620-4d309fde164a','919abdcd-92a3-4f54-8e52-871167a8810b',93,7,180,0,NULL,NULL,'598944852-3-5'),
('12b1e769-3cbe-4d4c-9100-3cb2232242ae','949e4a7a-6c6c-49da-ae9a-0534ae51f65b',57,82,101,0,'2025-10-20 07:18:14.789',NULL,'61340935-3-1'),
('12b53077-0ad1-4570-a40a-024bb03d5bfa','3aca7d6d-09cb-4903-812e-7535a083b09c',85,65,66,0,'2024-11-08 17:37:44.277','2024-11-22 21:22:11.473','616254479-1-3'),
('12b57b9c-d730-49f5-be76-93858f8a4863','92f4338e-023b-42d8-a569-19b0439633e2',68,95,87,0,'2025-03-08 13:46:08.990','2025-03-18 18:33:04.535','644130393-1-4'),
('12b8701f-a02b-4261-bd9a-0dffa44b7d9f','7e3957db-7e8c-442f-a041-3490cef36986',0,0,0,0,NULL,NULL,'750919384-1-3'),
('12b8ddf3-ac85-43fd-a7d3-2e7efdf36d35','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.901','412280381-1-16'),
('12bdbd3b-089a-4abb-9bd7-aa4e99208d0d','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-11'),
('12be4912-211a-4c1b-bea6-16fbbc126cf4','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-64'),
('12c20294-9f5b-479d-bddc-b31b95940409','0d90ef6d-e963-4a99-bbbe-e4ca67429574',52,10,218,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.982','750125400-2-9'),
('12c302d4-672b-4599-8a75-ef61dd70f127','f7562aa6-13f8-4815-97b5-117f4d1f1729',235,70,95,0,'2024-11-25 08:27:49.578','2024-12-13 19:00:51.189','982271871-2-1'),
('12c30433-2001-44df-8fcc-ae3d5d740455','29cc8746-fe8c-48c8-bc02-cdff22be5576',93,67,81,0,'2025-08-07 16:52:26.586','2025-08-21 21:29:39.744','982484679-1-3'),
('12c5fd7c-e3b4-44bc-93dd-5da296c78259','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',28,74,57,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-1'),
('12c7a010-2d42-4229-9a1b-4c57eaede8d5','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-17'),
('12cf004b-e852-43ee-bc3b-834e8acc81e2','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-7'),
('12cf68ee-269b-4162-937a-6e01ca35328f','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-8'),
('12d00db6-a2de-4730-b536-1a27a414cfbe','1219ae2a-bb83-4e56-868e-8398ae2fe1f8',30,15,15,0,'2025-08-27 19:39:59.902','2025-09-06 07:19:18.863','371413703-1-1'),
('12d0ae77-e304-49e5-bff7-37f68de741b1','f4fea4c5-b879-4cb4-a43b-6716692a56f0',39,36,197,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-3-2'),
('12d48e79-e1e8-44af-9ca0-664dffc8fd7c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-93'),
('12d4a3ac-d275-42bd-8c83-67727e3c5d89','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.450','412441586-1-6'),
('12d4d20a-bf7e-4c9f-aa6e-c7b4d14cf6f4','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',265,62,10,0,NULL,NULL,'428413605-1-3'),
('12d4e7fd-c168-43b5-9106-f9506a575b12','5bcbbc13-969b-49af-9691-435907b8a012',117,100,80,0,'2025-10-14 09:22:09.057','2025-10-23 06:20:07.502','644257752-2-4'),
('12d66bfa-17dc-4e19-b0c3-ab5ad30ef0e8','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-54'),
('12d6e6c1-0159-49a7-a997-6ffff061ab27','3657288c-bdfc-4aa6-8bcb-d82645dbcad0',250,57,126,0,'2025-06-21 04:33:44.095','2025-07-02 06:17:10.669','695249199-1-1'),
('12d7fe31-e68f-4cd0-b56a-580bc8225f0d','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-15'),
('12d9410f-06e2-4c8a-b095-9137021d146d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-14'),
('12d94f80-a716-479d-9575-095384b0c9b4','44473b9b-ccf0-4acc-bdd8-c81f1d8d7bda',78,70,85,0,'2025-07-26 07:40:15.482','2025-08-05 14:06:23.753','478423651-1-1'),
('12dc08b3-09c2-4865-89c6-e46543688fc5','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-4-6'),
('12dc0cf7-dcce-47c3-88c7-2bcf5cad8c8c','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-2'),
('12de572d-d84a-4093-abc9-3e1ad77f550f','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-10'),
('12df7ea7-e283-49cb-b5d7-5e04918a3965','5c990e83-628f-443e-afbe-ea1650122f59',70,40,43,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-1'),
('12e2097b-b405-464e-9d25-164856750ae1','20537384-b1b6-4420-8bec-9c3970109280',60,59,89,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-1-1'),
('12e28b11-fffa-4d33-8eb0-c73dd1fcb5a0','886e0e1a-c599-47ba-bacc-c329212cc55b',42,61,28,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-2'),
('12e37074-3ed2-4aeb-9b56-e81a1b58e474','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-31'),
('12e50205-2339-41c0-9d40-31e8c9edd75c','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-59'),
('12ea1019-15a0-415f-9b7f-972b74a378e6','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-79'),
('12ed57af-4924-4502-8334-623c1093948b','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-1'),
('12ef007b-5286-49ab-81a6-983e427bf2f6','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.022','2025-02-19 18:37:27.994','223385669-1-2'),
('12efcfaa-1aa7-4668-8b8c-e2f4e0eb1e5b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-225'),
('12fa9559-07cf-4929-aa69-2c3d1490a2cd','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-10'),
('12faf164-1a1a-4d9a-9f1f-57c9153840b1','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-5'),
('12fc1d58-ea26-4162-990f-d29ef81dec27','07178c6e-4d40-4d5f-886c-720fb82dcfc8',0,0,0,0,'2025-02-23 12:39:22.317','2025-03-05 14:40:13.059','127343940-1-2'),
('13001ebf-8b17-45ba-bf40-3e3c0ff732c8','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.693','2024-10-30 18:09:49.991','745976194-1-6'),
('1303dbb7-a2ce-449d-a218-f81d03ce7c99','eb7d84af-1ebb-4c55-84cb-08cc927b773c',57,35,78,0,'2025-07-29 12:58:47.399','2025-08-07 14:06:05.144','613499620-1-1'),
('13040f48-39e1-43e8-8fdf-73662bfb554f','b9d10e45-08f3-4b6c-adf0-6b6da3ea6318',81,56,110,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-3-1'),
('1307a0c3-a7fb-4fef-8eb8-0fc64751b4c2','702c1aff-1a98-44f0-9dce-efad71572432',50,74,11,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-19'),
('13086482-35ab-4cb1-97c5-fc7a09b31077','fbe21725-aa89-4d56-9467-9cb01a9ccd14',207,30,92,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-4'),
('130c8690-5cc1-4689-8a27-830a6c4fe4cf','8b903902-c3bc-4e33-ba59-0a5aa28db73c',96,13,206,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-4-1'),
('130cae41-6302-4fc1-9245-81f7b3772bdd','f5a238d0-24d2-4881-bd26-6ef90af90fff',100,100,70,0,'2025-08-22 20:28:45.609','2025-09-02 06:43:20.130','43714618-1-3'),
('130ebaa6-8489-4331-8c61-867186332cd7','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-1'),
('130ef218-d321-4890-ac86-8a1761b3a2d4','f90ed9c8-2d53-4ae0-ac71-fd862484505d',1,1,1,0,'2025-07-08 11:31:17.986','2025-07-24 06:27:03.815','745898734-1-1'),
('130eff85-c958-4de9-8438-5aba2ef3d999','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',50,144,6,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-8'),
('13112aa8-775e-491d-9549-8a0ed4db9bad','bf2fbd97-6d0f-4724-b25e-47e019854e49',49,211,9,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.806','745212688-2-2'),
('1313c340-c159-4ad5-a78b-053f3033d346','0009aeec-e682-465c-b701-363a3ef377a6',240,100,64,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-10'),
('13158a2e-565c-4257-858e-eed77cab4924','de2dad64-06a0-420f-a811-e87b3a9ed343',0,0,0,0,'2025-03-13 12:21:35.453','2025-03-22 07:37:13.222','221158425-1-2'),
('13162434-d1a2-40ef-994d-c4b2f2db5682','93aa21e5-fa9e-47a0-aea0-166deeae3117',115,113,75,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-3-1'),
('1317b720-5472-413b-a5cf-24e56c9ae16e','b16256b1-d6a2-448b-a170-4c574127a57b',91,55,100,0,NULL,NULL,'745189997-3-3'),
('13184d45-157a-4cff-a058-7a5f0034b126','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-101'),
('131d1430-f0d2-463b-9e8b-986fbab25f75','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.305','2024-04-01 07:53:00.909','478609228-1-2'),
('131d25b7-7f6e-43ab-961b-0e6a63c6fd7f','b95d584f-3939-4e43-8016-f4cdab736e9d',76,50,50,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-2-1'),
('131e1f86-a2c4-419e-b0e3-6452ba5e7483','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-74'),
('131eba5b-13e1-4feb-9bf4-b51af2aee5f3','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-4'),
('131f73eb-28c7-4d6d-8ac9-e0963a9e6449','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-4'),
('1323d109-e6b7-49c9-8688-0fe5099a1879','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-5'),
('132706dd-0702-425f-b7cf-73542b2d5262','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-219'),
('13271e98-41f3-4316-b52a-0715ab308abf','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-17'),
('132865f1-dd56-41cb-bfcb-e60de26e4243','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-4'),
('13294c85-7659-4192-a392-240440ed7322','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-68'),
('132be1ed-913c-4a95-bf3a-848ff3e87bac','abe73355-a72c-47ba-944d-cb6a15758ade',0,0,0,0,'2025-04-11 13:41:45.997','2025-04-24 06:04:58.667','904803845-1-2'),
('132d1ab8-5bc6-4cde-a81b-0f549dd811b2','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-3'),
('132d1c50-cb8c-4dbf-a10d-e09828e13dcc','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-3'),
('132e5d51-bae9-4bb8-8ec5-07e74a02e471','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',159,199,4,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-1'),
('13396592-3378-43b3-bcb7-cf53e352bf5e','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.569','745508995-1-2'),
('133a36c9-2ea3-4dd8-8eb7-09f9d06ac65a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-27'),
('133b95b9-9f4f-4f38-8d1e-78b1eb0ff1c3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.245','223823107-1-214'),
('133bc8cf-0623-41fe-9c33-bed5cb8b3a3d','f6885427-480b-4660-b34b-c410a6dc850f',39,39,49,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-3-2'),
('133c205a-49d2-44f0-8ec3-daa2862fdb21','be0999be-dca7-41c5-91aa-83b2199e4caf',0,0,0,0,'2025-05-25 10:54:21.442','2025-06-03 20:09:13.749','412795154-1-1'),
('133c2b32-ed09-409b-8ebb-6df90a507bda','ce8f4415-3b63-4fe8-a25c-9973f07651e6',55,55,76,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-4'),
('133eee37-4ecb-4b29-91fd-d3502c7aa240','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',27,49,65,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.797','428602278-1-1'),
('133f0da0-7bd4-42f3-9419-bed5bf9d9f47','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-32'),
('133f989d-a494-45a2-8551-3d70552eec4d','2547c819-405b-4d9a-a0a4-ad76db169d46',80,95,93,0,'2025-09-18 15:49:10.658','2025-09-27 10:27:57.874','598148104-1-1'),
('133fde98-8732-4f4e-b756-312959a2fd72','90531b95-eb66-4c07-9e68-b2c510b7b356',110,120,88,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-1'),
('1345a9b5-66d7-47c4-b0fe-37d922c49790','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-17'),
('134971b7-4a5b-41e1-91bd-7b563abaa48c','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-3'),
('1349a996-af70-4ea3-9d52-49c2a173463d','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-2-6'),
('134d36fd-a10e-4038-93f5-4d7e6d871f8a','b6b84af2-002e-42d6-8888-913741571a16',205,90,15,0,NULL,NULL,'598944852-4-1'),
('134ed7ea-0d4a-4099-97ab-c2d88ba18e1d','0bd42145-fdd8-4793-a5cd-a2e404d37142',92,60,15,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-26'),
('1351c7f2-e9a0-425f-af76-be9660f973dd','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-4'),
('13528d69-34f4-474f-b2c2-c1ce2b7924a7','de3d1881-c5ca-4244-a03d-15cbe8813eef',79,25,200,0,'2024-12-23 12:00:49.563','2025-01-04 10:37:10.815','428990953-1-1'),
('13531edc-b9fe-4d3c-ab47-12e398ec6867','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',30,20,30,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-1'),
('13539cf0-e26e-4e24-887b-c334a15239e0','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:44.230','248135683-1-183'),
('1355948d-afa9-40a1-a58b-da59a7cd6b34','5114defd-dd85-45fa-a3af-522574ed305c',120,180,45,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-6'),
('13579169-347f-43a6-ae79-e8f3e4ad1529','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.344','478623446-1-4'),
('13582140-1bd2-464f-a536-caf8ddc60f2c','c718bd33-40e6-413f-9c77-4b72f9839344',123,61,4,0,'2025-10-08 14:44:20.307','2025-10-20 06:33:02.574','765484490-2-3'),
('13599b93-3aa3-4dd5-acf6-b8827d00af01','1bb5f42b-00cd-4103-97bd-b2cd24afaea0',112,42,43,0,'2025-07-19 07:51:58.812','2025-07-30 08:02:01.464','371408514-2-2'),
('135ea29a-2040-456f-b4c5-361690d0879d','841f7f01-a7cc-440b-859e-dea7f085dd74',52,57,41,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-16'),
('13614eef-0fec-451e-b31e-4feab7eb67be','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-88'),
('1365f172-0331-4bf2-836a-709d11b980d9','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-114'),
('136609e0-d0a4-458a-b955-6d7225978778','e891b961-f9b8-41f5-b49e-f492048bd8c9',47,9,187,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-8-1'),
('13667acb-38e0-4baa-a300-95019ed043be','9d7979f3-a35a-4a64-97d1-4ba973786029',260,59,13,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.005','100655378-1-20'),
('1367365f-ede8-4e97-b886-ce3084bd21a5','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-67'),
('136a47e7-2429-4ce8-b785-91b2631d0060','dd610824-86db-4c6a-b135-c31ab1618fac',100,80,230,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-3-1'),
('136abffc-1385-4851-8309-ccd7f2f25568','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-6'),
('136cb527-da50-41f5-8eb0-bc51ef128ebb','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-3'),
('136db8fe-d4e8-48c6-9524-20549bfd2cac','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-33'),
('136f7e16-a0c5-4caa-baae-181e816549f1','7311f1e0-e2be-43dc-9e40-f94a010e8939',80,60,9,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-3'),
('13710ac9-3ccf-4913-943b-e1e72e040e6e','e9626be5-ddcd-40d5-865d-7018bc1ef9df',120,90,50,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-2'),
('13712ab5-10b3-4843-aaa8-ad7be4403ae6','5338996f-0387-40ed-ac42-1d89b6d6d1fe',236,110,80,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-1-1'),
('137289fc-10db-459e-af92-91c65347356f','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-19'),
('13733983-90c6-46f5-9c12-776b90db59ad','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-12'),
('137408d0-200f-4d16-ad9a-cbdd742a242c','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:21.668','248135683-2-19'),
('1374ad10-7d70-4cd5-ac00-2f68c131e0d1','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',65,100,115,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-2-1'),
('1377c74f-7538-4b33-9e80-7293838772f9','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.016','2024-09-26 15:55:21.569','74532550-1-9'),
('1377fe7a-e2cc-401c-8546-59361649af2e','e54055a2-3c9c-4738-a808-7a4a31877ef1',93,91,6,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-6'),
('1381b336-5f03-455a-950f-5eaf930ec962','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-37'),
('13861314-039e-4959-9b21-e91b37f03f54','fb58f438-30e4-4e01-af6e-6378e27a11fe',85,82,48,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-2'),
('138b92f5-28e6-4319-936c-76c8ae547241','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-10'),
('138c5ab6-c2e4-40ec-899f-e37e0af90390','3da7ca23-1096-4e12-bda9-57170294f0b1',250,204,43,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.512','412977009-1-3'),
('138dac8b-9ba3-458f-a673-3d5472634452','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-2-8'),
('138ec25a-ea2a-493e-a732-887a81c4dea7','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-124'),
('13927b7b-7f8f-43ab-817a-b85170e4c548','8778c3f3-967c-4a24-9adb-37b4330b383a',123,68,8,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-2-2'),
('1393bee9-286c-473d-8f2a-22eb7d3c376d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-16'),
('1394b317-b27b-4f6f-84d6-d8ce28815784','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-123'),
('13950fab-88a2-4635-80d7-7f476b6fed79','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-5'),
('139534b7-bfb5-41db-aff3-1690e8512014','df315e40-f7b8-4524-810a-6c390c475673',245,95,75,0,'2024-03-23 08:36:11.360','2024-04-03 18:54:49.659','6148124-1-1'),
('1396a9ef-2e55-47ee-981e-319a353ad8be','700df4c9-3ebc-4f9d-b86c-5154441b3df9',85,85,50,0,'2024-12-01 06:48:18.232','2024-12-09 14:21:02.895','478380707-1-1'),
('139b8789-e865-4536-b2c2-2a21d2ff1afb','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.744','221341784-1-5'),
('13a19c28-bb1b-45ab-89e1-6ed61731e7a8','82056d55-1803-4668-82d6-4700bbe5f656',57,85,105,0,NULL,NULL,'786156168-1-3'),
('13a35b63-81bb-42c7-93d9-c8c0bac5441f','a5dbf4f9-afd6-4f1c-a387-07f0fc87d9bb',25,180,200,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-5-2'),
('13a98e8d-6c30-4f83-be6a-332121f9ae1e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-102'),
('13a9c0e5-0155-4efd-a4e0-0b89e2e8c659','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.229','2025-05-10 20:13:13.995','223963997-1-51'),
('13aacb4f-6241-430c-9376-9d0dc0450aae','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-6'),
('13ad80d9-58db-4935-b617-13a793aac8c1','04f625f7-445b-409f-b4ca-5314e2044c7f',56,83,100,0,'2025-05-23 14:05:22.410','2025-06-06 17:34:35.937','221897784-1-3'),
('13aed4c9-280a-42ed-a14a-cc751aaeb638','282bbf45-2136-4253-bc67-64c0148d8397',230,90,60,0,'2024-12-18 09:31:14.767','2025-01-11 14:08:00.762','93566108-1-1'),
('13b0d412-d837-498e-a5f8-80f60df996cf','ce3f831d-2675-4684-9557-6bae46763ee7',51,51,77,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-4-2'),
('13b1282c-38ca-4f6e-b1f4-bf642038e028','2881c493-0a0a-403e-bf7b-36c55e85e85c',45,48,50,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-1'),
('13b42606-68b0-4471-bea9-44f70268e6c9','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-45'),
('13b45dc1-81dd-4488-8607-522fb60ae80d','d15832fb-c5f0-46e6-b8ad-3b93fb8fc893',90,56,100,0,'2025-10-25 08:59:25.500',NULL,'478544570-4-2'),
('13b66ade-6ada-44d5-bcca-8dadff9113b8','0009aeec-e682-465c-b701-363a3ef377a6',30,72,8,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-11'),
('13b8aa7a-71c4-427f-bc9b-8015a0c7b80e','333b3000-8c9f-463c-be8e-d21ba57a8f50',51,51,77,0,'2025-04-28 07:40:36.260','2025-05-07 06:08:01.237','221867394-2-2'),
('13bc5935-300d-4a50-8755-c4cba96cb98a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-46'),
('13bd98b2-b60a-4656-b37a-96559f98e0f3','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.165','248883377-1-11'),
('13bf9a8c-e994-464b-a6b2-784a9ed195e2','1087586e-034f-4ec1-9828-d61ce37a1821',80,80,90,0,NULL,NULL,'478153975-1-1'),
('13c02847-c1ce-4651-9862-1c5a3047cfb5','ed097511-c426-4ff2-b940-1f98b2a1f4f6',54,13,222,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-13'),
('13c4859f-3d1d-4310-aa7f-1dfae5eda89a','6465e1ab-9a54-436b-b6b6-782870563698',41,75,76,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-1-1'),
('13c55232-d16f-4d06-8982-3d0ba7866985','6af11c78-d8b6-44e2-99d3-cd7f615e9176',94,80,94,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-2-2'),
('13c78e41-9525-48a5-9039-77509a859db6','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-6'),
('13c8822e-1c2f-4e64-9e70-fbda0fc0b138','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-5'),
('13cb2866-433e-4ad2-affd-7cc1dd2fdce2','324e00ef-45d5-469e-89bf-811dd1160a35',180,26,200,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-1-1'),
('13cb6c3b-6d38-4cef-beaf-189fd13379f7','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-6'),
('13cca0c5-0879-4cae-994a-1aa9a89cbbbc','d83c40d1-4df5-4c97-bc83-28837db95b2b',57,93,12,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-6'),
('13ce100b-9452-4081-95cd-5bf5df6b0c0d','e651dfd2-8ff7-4e44-beb8-c9d204f8bcaf',82,57,101,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-3-2'),
('13cfb676-7246-4657-8a5e-403cda3448e7','11db7379-d6bc-4506-8aab-d802a15b39de',108,7,216,0,NULL,NULL,'644495739-1-1'),
('13d01f06-ba15-4783-94d8-1028e9073d6d','b7f8578a-5d13-4fa2-9e0d-d1cb8e9d7c01',92,75,230,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-6-2'),
('13d0450a-577b-4127-aef2-966be0cb39b4','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.503','2024-05-21 18:46:13.113','734627626-1-1'),
('13d1a14a-5765-44ad-8ac1-586b40dfe0fe','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-22'),
('13d462be-f7e3-4c27-93ec-4fb2b831d554','6a2d762e-11cd-4fca-b32d-cdba41391e25',260,9,59,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-2'),
('13d4c758-f0ad-4a70-8225-cd6912f4a62e','8132d4f6-fb04-49dc-9449-05b8d519868b',116,116,65,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.161','428704278-1-1'),
('13d7e27a-fe31-4443-91ef-21fe081fdf1c','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-12'),
('13d9d45a-3db6-40e3-a52b-f0e25b774fa5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-68'),
('13dd7c48-eab1-470a-93c5-5199fd7d72d0','f4bf8c4c-4867-449c-8abd-6995be691baf',102,56,82,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-4-2'),
('13dec61d-8088-4a92-b67e-a50e5c5c1200','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-6'),
('13e08e3e-0ce4-48b7-942c-d2e34d33455b','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-13'),
('13e0ccf9-c943-434c-93bf-365f0c4e59b8','bd176b24-f129-40d4-8c33-6b35eded0fad',158,198,3,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-18'),
('13e2d83e-1a10-4694-9558-ac729ba23996','98ed0c79-4eb0-4d2e-8016-7319028da995',58,83,110,0,NULL,NULL,'745505506-2-1'),
('13e725af-a2ee-4a90-99ff-2051594fade1','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.631','982858369-1-7'),
('13eaeb9a-f04e-4172-b9bc-a119749b4073','6a453e7d-9e69-4934-8c88-321d47be2c61',160,200,33,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-3-1'),
('13eb6bc2-638f-4153-a008-45dd0e7ea68a','301c929a-118a-40da-840a-bd30cca73b0f',77,128,7,0,NULL,NULL,'221817193-1-2'),
('13efb1b5-4fcb-44ca-b0aa-2a1e68900a5d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:44.905','248135683-1-140'),
('13f26bce-8c75-49bb-b1ef-d52cba425181','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-31'),
('13f36cf9-ae44-4d83-8d4e-13a2663d0fcc','93aa21e5-fa9e-47a0-aea0-166deeae3117',100,85,75,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-3-2'),
('13f5af0d-1e7a-4bd1-8730-8940209d993b','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,30,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-7'),
('13f60a29-28f3-43b0-a70b-6c338b0aef3e','67953d65-9e42-4bd4-ba82-9abc59b5e4a6',75,75,76,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-2-1'),
('13f6e3ab-2b01-4490-ba89-05f23aa57cc5','28fbd6ee-0261-4092-ba41-590598774e35',75,85,215,0,NULL,NULL,'786729785-1-2'),
('13f7206b-6a3c-4338-b393-6f1ad1cf3ee3','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-48'),
('13f8bb40-9fa0-4984-858a-dd5a318637e4','6d0390ef-65ce-4154-a607-d67e51938ed2',31,21,21,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-26'),
('13f916ec-516e-4977-b879-b6c265708a9c','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',200,160,3,0,NULL,NULL,'428413605-1-4'),
('13f9b2b1-7e0a-4c56-bf52-029545415818','1a33dee0-770c-42ca-b23f-f3750f630a74',60,95,197,0,'2024-11-25 08:29:12.551','2024-12-03 10:00:08.315','976779460-1-2'),
('13fac751-d083-478b-af49-d7026b547f91','e9626be5-ddcd-40d5-865d-7018bc1ef9df',55,40,43,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-3'),
('13fb9cf6-9f28-4fa4-ab8d-ec36cdc79d2b','d47d3ae7-7352-4137-a656-596680802fe5',82,100,56,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-5-1'),
('13ff8c9a-27c9-4db4-9b27-2173150ba225','6d2958d8-12ca-41bd-a12b-58082d5c955f',30,200,160,0,NULL,NULL,'614364554-3-1'),
('1403f926-4de5-450b-8d9e-f480ad057764','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,7,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.850','750717756-1-15'),
('14048871-772e-4a32-999b-91ac95e090e1','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-16'),
('1405e317-eeff-4cb6-bd46-2ddf3d08cabb','4bb6e32c-05e5-4b75-a1e5-32aa0e4ddc2c',56,76,102,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-2-3'),
('14070070-6ec9-4d2a-894f-43d7bc918aba','ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-2-4'),
('140ac74d-3a6e-47ea-b5c1-538a1c756010','3987bcda-6531-4738-8815-187fd84bf71c',57,37,29,0,'2024-09-10 10:47:13.056','2024-09-16 17:09:39.158','75056602-1-2'),
('140c243b-8eaa-4015-898b-a3146600d3e5','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-27'),
('140db14f-9d3b-4453-8213-75604147869c','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-8'),
('140fd592-02eb-46aa-9e39-b6f107f12778','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-3'),
('1412a5d4-8d75-4338-81e7-46c8077491c5','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',68,60,96,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-1'),
('1414caec-4ce8-40db-90c3-ac58ba04b304','778350cd-5627-457e-9aa3-334a2ccc6781',95,65,90,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-4'),
('1415ef50-d750-43e1-8416-fc4ba3f4ae39','b78519ec-4b79-400f-a709-a1f09256d30d',45,4,213,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-23'),
('14163ede-2208-49fd-9754-9f8835f53878','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-37'),
('1416c2f1-8586-44fa-b080-e955ddaecf3c','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.503','2024-05-21 18:46:13.113','734627626-1-2'),
('14172e70-c851-42e2-b8ac-2920856a738b','0756d756-3ebb-46ec-bf88-18b98d2e8a63',52,36,70,0,NULL,NULL,'011548428-2-1'),
('141770c4-f0ae-490e-b05b-761e2d2eb6dc','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-1'),
('141aa92c-2022-4ab4-8461-f7c9fec94cb4','7900b99f-1d0a-41ad-b583-3931be125cdf',96,6,177,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-3-3'),
('141bade4-f6b5-4693-82ee-e279d40d6174','50443669-b15e-4cc6-9bdf-b91285138cc0',88,51,17,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-2'),
('141f376e-ed78-4bae-b836-04fd7bbcb10f','66111de3-4db5-4d79-9d26-01d8fabb833a',67,111,111,0,NULL,NULL,'02713231-1-2'),
('141ff097-f97a-465d-8730-b204c78d2e44','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-8'),
('14205f04-e503-48c6-a33f-14d8f97ccc61','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-2'),
('1420a3a7-4b6b-4d0e-b525-df0c5e234f20','f4fea4c5-b879-4cb4-a43b-6716692a56f0',106,44,12,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-3'),
('1422fb2b-8375-496a-a48e-03656bbf9408','6fcd8160-ca06-46ab-a691-51de5c394793',43,22,55,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-3'),
('1426dd10-4494-418e-93e4-a992123d03ea','fc4843d8-7733-4186-b9c5-fb1602e2ec64',0,0,0,0,NULL,NULL,'011548428-7-2'),
('14287787-0217-431c-9fe0-001fe741ab25','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-1'),
('1429251b-67ad-4a27-994e-adacd829a9c4','7311f1e0-e2be-43dc-9e40-f94a010e8939',70,40,47,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-4'),
('142a83c6-9bf5-44cd-a279-205715b1950c','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-18'),
('142ac4e4-fd85-4e98-b710-bd61893cde97','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:45.553','248135683-1-111'),
('142f759e-f2e1-41c5-ac81-c6207802b497','542181c6-dabf-4cbd-b756-74abe3440744',47,7,215,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-2'),
('14302343-a4ff-4ae0-8db7-dd8beeb5cb4f','1c425bef-2f47-4788-87c3-d0b92aa9cb40',63,75,100,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-1-2'),
('1430fc11-46df-43ec-874b-c5665814bddf','0b843397-58bf-411e-9c45-d57a80cdcbbe',0,0,0,0,'2024-05-23 07:27:18.746','2024-05-29 11:21:56.854','449401217-1-1'),
('1431dc38-5b3c-458e-b876-bcdaa09e51d5','cb24f977-2bb3-4346-b90c-e4f6ee8b9032',120,90,100,0,'2024-09-28 16:27:38.376','2024-10-08 07:57:35.037','428360379-1-1'),
('1432bcb4-e4a0-4889-b319-2f1974ed91cb','4759096d-1c45-449b-bc2a-51e974822898',75,57,103,0,'2025-02-23 12:38:54.317','2025-03-09 12:10:11.419','221924148-1-3'),
('14377a45-2b3a-4c8e-bb03-1c8cf1af84b1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-57'),
('143881a1-410c-4d65-940a-63e06317e37e','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-3'),
('143cfd65-60a9-4fdd-a60d-2ea85ab8b094','0365be5a-cb94-4992-8e8d-cb784930b2e7',100,125,80,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-5'),
('1441170a-4d93-4613-9c8b-3ee4769c9f2e','443d1fa9-d29f-4aae-96b8-c6565b068779',43,43,76,0,'2025-09-26 12:39:33.141','2025-10-09 15:52:37.871','371120278-1-2'),
('14432523-b1e3-4b5c-9818-dfc13341648d','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-1'),
('14439a09-6dac-4360-bffc-48382f928c7e','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',121,141,10,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-4'),
('14450a53-a1f2-4b28-8b13-e48336718897','d83c40d1-4df5-4c97-bc83-28837db95b2b',48,60,14,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-7'),
('1445316a-4c1c-4e37-a510-a226ca8c192a','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-29'),
('144852c7-4e26-42b5-a925-5311207ad741','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-9'),
('1448da92-e3b2-4d4e-85f5-759a87f57773','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.305','2024-04-01 07:53:00.909','478609228-1-3'),
('144a7259-31a9-47e3-b29d-0f8f16592346','66111de3-4db5-4d79-9d26-01d8fabb833a',112,80,67,0,NULL,NULL,'02713231-1-3'),
('144aea6c-1e0c-48a4-a5f5-09d16b3dd202','173da7e9-9f08-4f80-bd79-f624a6af761d',59,48,63,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-2'),
('144d76b4-a2f8-4a64-a2b8-02d4a2beeb74','291a2ff2-a042-49df-a88f-5eeac8ddabcd',80,63,21,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-3'),
('145121d2-2767-4210-9b95-4cc3a9a5185c','d75cfb47-71c3-4e08-8733-4ee17725e2e5',51,51,100,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-3-1'),
('145368e6-15f3-4675-bb26-f4bd33a1a7aa','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-7'),
('145bfd05-253f-4eba-befb-ef1ef7c0a9c3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-67'),
('145e67b9-42f4-4c1f-b3f5-f2211c462f89','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-23'),
('1460e1f6-637d-43b6-8b2a-e4813b4ee61f','ff190dbb-143b-4c29-bab6-8f312e4deb63',0,0,0,0,'2024-06-08 07:59:58.647','2024-06-22 11:11:09.219','478642368-1-1'),
('1462f031-bdd5-4ab2-a535-1a1c7b688dc7','9866a947-9974-4053-8415-4518842488fe',225,57,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-5'),
('146b51db-0ff3-46b4-8296-77f554abce29','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.577','2025-02-14 10:41:28.342','221859569-2-2'),
('146f62e4-dd07-47c7-8d0e-5e609e78622d','89b10d5c-c483-44ad-9784-dd0d3532446b',38,38,41,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-2'),
('1470ea51-d67f-46f2-8040-0706de675ae2','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-99'),
('1471078c-f705-4c0d-b604-868b7e92ba89','384387cf-8c35-4d32-b59d-2400336e8b60',23,43,80,0,'2025-10-02 08:20:45.726','2025-10-20 06:33:16.734','150685221-1-7'),
('14724dca-f9d2-4749-b6ba-e054981b06cd','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.578','2025-02-14 10:41:28.342','221859569-2-6'),
('1473a2ef-9985-4b13-b5b0-ff9db394984d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-56'),
('147707c4-a73b-4753-93e7-c388c8942772','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-7'),
('147757e9-f403-49d3-b0c7-88cb26b0da2d','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.569','745508995-1-4'),
('147883f1-2476-44b0-9e15-3ffb49bf4dbf','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-6'),
('147a833e-719d-4d7c-9090-56ba0dbdc279','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-3'),
('147ca371-7b24-4039-8757-bb780014d947','70025235-c3ff-4d6e-b849-3c76df68e036',0,0,0,0,'2024-09-19 18:27:43.471','2024-09-25 12:59:16.338','745132796-1-2'),
('147e2a48-2fd6-4c2e-aa5d-b0074b866dac','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-21'),
('147f62d8-bb39-4580-996c-f22ad83ffa4d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-72'),
('148010e4-bdde-43fd-a100-28becabb9417','6dea2881-bc11-4637-b359-47042c58b112',75,205,100,0,'2025-09-10 10:50:13.670','2025-09-16 17:47:38.333','437545074-1-3'),
('148019dd-3504-416c-aeff-4540042d7ea5','a2d857b1-bcf6-46ee-9e87-dabcdac62719',50,61,100,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-8'),
('1483ba4b-5ea7-459d-b74f-44e07622027c','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-5'),
('14848703-da3b-4d93-8575-9fcf743211bb','e09a3626-bc71-4669-9faf-3f66c10fab18',100,70,139,0,NULL,NULL,'644390236-3-1'),
('1485c6be-7549-48d4-a6ea-a6fa55ac703a','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',54,220,15,0,'2025-09-16 16:29:04.381','2025-10-04 13:57:40.402','478906000-1-3'),
('1487fe92-560d-4b75-b6c1-dbbed9b10def','7e556896-a771-421b-94de-44bfbf0436f8',109,68,88,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.482','80873489-1-1'),
('1489defd-a113-46de-83b4-5268dcfe4b5a','280aa08f-620e-4d2d-a959-f7b298499b3d',238,100,75,0,'2024-10-25 11:54:28.142','2024-10-31 07:50:27.640','910163142-1-1'),
('148bbe94-a50d-4538-8065-3a2bfd360da6','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',43,60,10,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-2'),
('148d8939-6b06-4a3c-b6e1-f9921b75eca5','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-4'),
('148e4378-7b79-4cc3-bac0-720054f90475','3987bcda-6531-4738-8815-187fd84bf71c',90,80,70,0,'2024-09-10 10:47:13.056','2024-09-16 17:09:39.158','75056602-1-3'),
('1493b2d6-defd-4d21-b629-596c6b8470d2','94d4fd15-f663-40b8-8ec9-f93a5cde757c',274,67,7,0,NULL,NULL,'614364554-5-1'),
('14990b74-2621-448d-885e-409f61e50484','d83c40d1-4df5-4c97-bc83-28837db95b2b',260,50,4,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-8'),
('14a05b47-7002-45b7-be82-a18a0d709574','e31f714c-14b3-46df-a325-7cbfccab37bf',80,80,70,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-4'),
('14a072dc-6ee6-40bc-897b-50498e37fbe2','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-12'),
('14a414c6-b63f-4894-9d48-f67eb33773bf','1f8ed22c-646c-4405-8477-3cfc46f95401',0,0,0,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-6'),
('14a45796-3261-4abd-8ca3-f63d40d28aa7','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-3'),
('14a938f3-c8b6-4ca3-9bf5-95aab5934880','48a52c80-382d-403a-8339-88f26052eec2',51,65,40,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-3-1'),
('14a9f88e-1bc7-458a-a2f6-196d407f0c4c','31ebb578-1bae-477d-b89f-f2d9614f22a8',105,105,51,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-1-2'),
('14ab6e67-b4b1-45c7-9380-705899be5bc7','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-22'),
('14abfed3-dd9f-40ff-a5a6-5d1f19bafd92','0009aeec-e682-465c-b701-363a3ef377a6',60,70,6,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-12'),
('14ad9d3b-d558-4ae4-bbe2-5e8eaa0b56d3','03ad506f-f86b-4dbc-952f-52b01e2467fa',185,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-9'),
('14ae3df9-2736-4ee3-bf30-eac035251a3a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-160'),
('14aeac1b-7440-4415-9c19-cdab58f08ef1','372e1bc8-6cab-4d95-850a-8adaef911ece',61,72,80,0,'2025-08-14 07:05:52.297','2025-09-01 11:08:22.515','478417862-1-4'),
('14b1f05f-96d7-4a24-a1a9-c13241228653','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-16'),
('14b39fd0-95ce-4cee-b2f4-45b2403f0d32','0992d733-abbb-4891-8268-04764b359116',61,201,28,0,'2025-06-27 17:12:05.163','2025-07-16 07:46:09.842','745249081-1-2'),
('14b488fc-1fdd-4842-997d-13f4796c452f','f88c3e53-b711-4bcb-aa3d-9543580054cd',97,173,4,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-13'),
('14b596f1-ec02-4ec7-8ddd-94342e7ffe9f','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-12'),
('14b680e6-e9e2-4b83-a983-e1360849036d','661b31b6-5864-4d50-94ae-a24ef9908dbb',95,125,75,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-1'),
('14bcecb7-98c5-4aa9-b08c-f948ec9e3d45','7ac04c84-54ce-46a6-9898-1b08419392f9',92,73,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-6'),
('14bdc6fc-f10d-4d27-bd30-6f81d9dd4b60','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-7'),
('14c1f2fa-d0bb-4af1-b85c-caa4122be64a','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-8'),
('14c24956-5ef5-4741-8cb2-9218298e7560','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-74'),
('14c3a6d1-4475-4f0e-a7ce-40ff5b1f6753','5598c3c4-7b30-49fc-8997-d966fbd95fbc',235,36,45,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-3-1'),
('14c533f1-4445-41e3-a030-a38f97095268','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-5'),
('14c6438a-9f41-4bae-95ba-82ee229cdab1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-239'),
('14c7ce67-daf8-45cf-a8cd-2ecce28a1749','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.090','248211803-1-7'),
('14c9b6a6-ac16-4f91-8a7b-07a733244c5e','778aa4d8-dcfd-43b4-bdca-be11229e204e',51,50,76,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-2-1'),
('14cb8e27-fd65-4004-b716-88322818db0d','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-29'),
('14cd3441-2fae-49c5-933f-ae346a4fae14','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-29'),
('14d1ca9b-913e-40de-a83c-78dd843609b8','68196a47-7977-4b73-9a24-2c24753a10b5',54,75,100,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-5'),
('14d434f1-5547-4b87-b9c6-267489571113','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-2'),
('14d53d16-636d-47a4-89f1-45ec574d6b23','46d1512a-2bfb-476d-a224-9390f3e194f2',36,18,7,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-3'),
('14d70f82-424e-41d7-bb4c-8d536ea04a73','4884cae4-94a5-47ee-83b6-52077e4376b5',0,0,0,0,'2025-03-08 13:46:13.183','2025-03-18 18:32:44.433','644567515-1-2'),
('14d9d472-ebde-4672-bd58-04b11a4008fd','ac2b9be2-c0bb-4704-9314-44e3ed793e24',72,37,125,0,'2025-08-14 10:05:27.420','2025-08-27 19:34:52.034','334873891-1-2'),
('14e24495-eb8c-460a-84ec-06cfef302b6e','5ea4b207-b05c-4931-bbd1-648b6933aae5',222,100,65,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-29'),
('14e28360-4243-4ab2-a428-c2910477343a','c080623b-df50-459f-92a8-eb2eaff4030b',60,100,120,0,NULL,NULL,'478350685-6-1'),
('14e2fd82-0163-41e0-8be0-4be1b7ceab0f','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-4'),
('14e7f2ef-60c4-4de4-aeee-afd67422dfd4','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-13'),
('14e9d7b3-91d1-416d-a22c-5356e82da38c','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',238,100,63,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.496','982490890-1-3'),
('14ebc8f5-9586-4ad4-83b6-f9a73a15a5a9','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-94'),
('14ed9072-b56c-4b54-8c7d-1ef570e4a4ce','2e7ad20c-d3f1-4bba-b44b-724cfa847fdd',76,53,102,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-1-1'),
('14f147c6-0b06-41aa-8392-330fcec5b11a','8c3a9387-2db4-400b-95fa-11aef6c745f6',217,26,14,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.892','501766543-1-2'),
('14f3c529-d193-4cc8-9c6d-0d245383263f','57dab073-4b3b-40f6-b274-8bed0e1e1e8e',0,0,0,0,NULL,NULL,'613137842-3-2'),
('14f45ac8-a520-497b-9b99-4ac3b6b2ee0f','99673d53-ad4d-4fc2-ad49-3653b23e8491',75,92,227,0,'2025-09-02 14:49:02.291','2025-09-12 19:46:40.785','786252388-1-1'),
('14f64482-327b-4172-a806-eddbc8809b1a','a355d7a8-930d-4829-b2b0-1688db90a2ba',50,50,80,0,NULL,NULL,'786156168-2-1'),
('14f6ac16-0047-4415-a246-717b0d088491','1841d5a2-cb6e-457a-aa34-68a1f7f98613',0,0,0,0,'2024-10-17 13:41:07.517','2024-10-23 13:04:35.248','923419994-1-2'),
('14f6b437-3f04-4a23-9122-2414b081dc48','c389fd95-9357-4fac-a819-48a512bbe294',33,26,24,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-1'),
('14f8176c-b0de-4df8-91ea-9abdb9e43aac','115aa366-1d90-47fa-a4bd-cfd120425cc1',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.965','976568852-1-5'),
('14fcad3b-6bdb-4234-a805-965955f0ab50','f7fec661-6f5f-45d8-8d10-18c1dad72513',54,51,58,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.161','428704278-2-3'),
('1502ba2a-43d5-43f8-9b59-3ba917a3a5b9','148a8646-0bfd-4fcc-ab65-0b45431fcc16',145,214,10,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-2-1'),
('1508dd5a-c1b6-43bf-b875-25a59f49eeea','bb9a5b8a-5138-4f0b-ae57-88695cf68e25',63,70,87,0,NULL,NULL,'786811264-2-3'),
('150c2161-5285-4d56-a940-c98cc60adb64','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-3'),
('150ca302-38ff-43f7-9295-a1ce3b352f47','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',8,34,210,0,NULL,NULL,'47816855-2-10'),
('150e967f-15dd-43af-b399-532b42644b6f','6d0390ef-65ce-4154-a607-d67e51938ed2',92,8,205,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-23'),
('1511d7c7-5403-4ab1-8705-b8e30d03ccf9','62e578d9-4130-45c8-aa72-f73c4ff49204',40,58,227,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-5-1'),
('15140e10-8d65-4da0-95e1-6f69722a7b52','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',35,102,210,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-4'),
('151425e6-a6f5-4bea-af6b-66a46eecce5a','37640361-f136-4df4-b3b6-feaee27509fc',47,47,20,0,NULL,NULL,'745249761-1-1'),
('1514ad87-0547-4cd6-93cf-820fe0728c9d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-81'),
('151822ef-ffd2-49a8-889d-4119b318df99','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.763','223631242-1-21'),
('151ab9e9-fe28-4a66-a18b-846842966e5d','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.978','2024-05-08 21:07:19.873','126889614-1-1'),
('151f0e97-5def-4cf9-bf78-2fe3c0a85a19','6ae0233f-f2c2-44bf-9706-7274e4c923e9',255,50,40,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-7'),
('1522e22c-7a33-4bfd-88ef-1b8b12583fa8','984f1373-fcdf-438b-b771-54cf2b74c91b',70,35,78,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.429','437969799-1-1'),
('15234c69-ea4a-424b-8663-f22b339af89d','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-47'),
('15265bab-986f-42a9-bd13-e52f9f1e20f1','dc4dd227-7e65-4643-a55f-0cbabe1845f4',230,93,65,0,NULL,NULL,'428172853-6-1'),
('15277319-e2e4-450a-b947-47d0f11e04bd','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-3'),
('152b3116-511a-4f36-bf38-76f0aea2dbe7','cb583771-c719-4749-b4eb-1ecbd639d119',72,53,101,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-4-1'),
('152ef786-37ef-4a0a-92cd-bcbe95302350','2a4df356-6870-4e82-843d-6a6131e7e377',70,85,77,0,'2025-01-20 11:21:22.852','2025-01-30 09:59:58.590','98238273-1-3'),
('1533ec57-1a39-4a4f-a010-dd4abcd44d5c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.546','412107970-1-148'),
('153631ad-6b30-48e3-bb96-ecdfaaac4f55','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-3'),
('1539df8c-61b1-453d-9a99-6a6da7bc0d07','82056d55-1803-4668-82d6-4700bbe5f656',57,85,105,0,NULL,NULL,'786156168-1-1'),
('153bc05d-5fdb-47e4-b4ab-b5933d7c97c2','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',112,57,83,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-2'),
('153c3b20-7f82-4502-9c0d-27d339f7dd04','89c0955f-36cb-42a2-814a-51d922ff9309',268,66,95,0,'2025-02-15 13:31:46.337','2025-02-26 08:36:44.285','982475389-1-1'),
('1544b2e6-d696-4f06-86b0-34e0231e76b2','2694c763-03c7-478b-85c3-a639c728d0e7',95,65,95,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-1-1'),
('15471d34-5eb8-4190-87e1-7c7247a41609','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',46,9,202,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-2-2'),
('154783a0-a795-4108-b777-225de4aef0e5','773a03db-e7d2-4d33-865e-511989e51e2e',95,197,7,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-3-3'),
('15499bfc-a3ad-4f1c-a8f5-cb00ae5fa258','215b7f43-1974-4003-9af2-0e2b300284d4',97,97,70,0,'2025-10-25 08:59:10.092',NULL,'644522996-1-2'),
('154a7091-a246-4677-a107-90a4698515df','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-2'),
('154d2308-448a-42c4-b5d7-403b3089ece6','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.286','2024-08-07 08:41:42.091','248211803-1-8'),
('155156ed-1bcd-431a-b494-0e5833403353','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-91'),
('155487d2-0f85-489b-99a8-acb6968d8798','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-3'),
('15576950-97fd-456d-bff4-b7144ec57351','10b7be91-04db-42e1-ad19-153945c5c51a',6,76,125,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-1-1'),
('155d06e3-3c02-45c3-bebc-0700780bb83a','a545df6f-28a9-489d-b668-a448c88582d4',43,43,84,0,'2025-07-02 12:43:37.906','2025-07-21 08:00:51.719','371261673-1-3'),
('155d0d36-7134-4fe9-86bb-75cb094198fa','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-1'),
('155d4368-dcc4-421b-bd53-9c5182451808','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:47:46.317','248135683-1-39'),
('155dc3df-759b-40c4-ac3d-e0aafecd2628','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-22'),
('155dfe62-a91c-4e90-8043-9ee1f505d597','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-35'),
('155e0bf8-babe-4946-9627-73749caf9b06','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',42,20,80,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.546','614707427-1-10'),
('1560350f-8c5c-4405-895b-e1041201860c','b4b15055-f101-4d05-8ad1-045787380a20',97,75,161,0,'2025-10-09 08:39:52.751',NULL,'011940661-6-1'),
('156162ce-e535-493e-9a64-50504727e179','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-14'),
('1561dde7-500e-4e63-91d5-4190ed3c06a7','ab16c37e-6ebe-4e09-b119-440ce867c25c',75,105,120,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-3'),
('1562e27a-e84d-4800-8878-ee28725e43ea','0009aeec-e682-465c-b701-363a3ef377a6',30,21,40,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-13'),
('15639044-1660-46a6-8ea0-33edfe8a481d','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-19'),
('1567ab71-c0c5-41a6-bb3b-3623d1f36b81','f3414f51-92da-4967-b108-6baad5cdd798',100,72,20,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-2'),
('156c17ec-a376-44cb-a713-6c70faa344cb','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-48'),
('156ef5b5-752d-4749-a3e1-cfe25569529e','fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f',53,16,57,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-4-1'),
('156f0cf8-30ae-464e-8790-f038ec03e3ac','8d71467a-cada-42f2-a7b0-5507af419d94',76,56,102,0,NULL,NULL,'59898054-3-3'),
('1573226b-58e5-46c1-93f3-07b1c6f4d0a8','a4fbce4a-8063-462d-aef4-150b13a4ea25',96,195,5,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-2'),
('15774b84-0540-4679-88b5-f089ad8016ed','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.097','449394658-1-4'),
('157e30c7-8986-4d73-9dd8-04f224edb879','04a41e24-7197-4701-a8ce-c4a0dd073b19',99,125,65,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.468','319645924-1-1'),
('1580c6ab-113b-463f-aad4-6a9857865a20','c5027968-9a23-442a-bebc-9b8745408960',67,270,12,0,NULL,NULL,'982759064-4-13'),
('158134c8-3def-447b-9c38-6df7df4c1266','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-4'),
('158457dc-d40c-461c-9602-9c3cd478c30b','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-5'),
('1585b711-d37a-4cba-8dc8-1f3daedcf1d0','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-21'),
('1587dd0f-8fd5-43fc-84b2-e2c7c6310f09','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-27'),
('158f8fe5-23e1-4d8a-b157-40299e0df699','e8b58cc1-698b-4364-ae95-f00b90174c08',10,20,151,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-3'),
('159137a7-d44a-40b8-9bd4-2e1202c3a170','089780c6-b58e-4ac0-92d2-370a4fcea327',201,42,80,0,'2025-08-21 07:15:15.580','2025-09-03 07:07:54.141','803828322-1-3'),
('159be7cf-3820-44ac-a662-8c7171a4edb0','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-30'),
('159f35a4-7fdc-48a9-80b3-944c6d6cab3e','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',0,0,0,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-5'),
('159f4910-140c-4435-bfb6-3f87ecc7f236','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-15'),
('15a2beaa-cb32-45e6-beee-8786cdbf2914','46bbba6d-7306-4e50-94f8-b309b0edb518',70,80,75,0,NULL,NULL,'428905379-5-1'),
('15a39976-7ad6-41db-8e24-c4f2e9346daa','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-123'),
('15a40d30-f051-4928-968a-2ca506c8c3b0','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-2'),
('15a739d1-9e4b-4875-9695-1d5221257d19','77ef7941-3e4d-45e3-af8a-a47e8d0ff2bb',0,0,0,0,'2025-10-22 13:06:57.241',NULL,'745942521-1-1'),
('15aa7803-b839-4a36-b2a8-12161143aa15','32a0f08e-82b4-4d3f-919e-5021b7c38cf0',100,18,15,0,'2024-03-23 08:36:15.949','2024-04-02 16:11:13.712','449768376-1-1'),
('15ac6b9f-e280-4b86-a4f3-480674cccc56','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.485','412384414-1-10'),
('15ad8e71-8cbc-42d5-9d51-93ec36f0bb36','4133b64d-8906-4cf9-aeb9-479ffee87338',105,53,58,0,NULL,NULL,'695734625-1-8'),
('15af3108-328c-4655-91c7-ad696d389202','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-5'),
('15b370bc-9c99-46a9-aa5c-f20b2c4762b2','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-1'),
('15b8dad0-c5f1-4d2f-aa21-33b36bfc9707','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.284','412746738-1-114'),
('15bd49fa-1390-401c-a32e-946b1c02e179','c29705d3-33f0-4fbb-ad6b-a8458c43b3d0',110,57,82,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-2-1'),
('15c00457-1f18-40b9-aa52-4da3bb0e28c2','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-1'),
('15c0d7f9-1ac3-4744-9904-707088902d63','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-3'),
('15c21df0-574a-4bf2-89ba-1308b415907e','fe3f4d98-65f5-4176-87f1-868fa0810252',0,0,0,0,'2024-07-03 14:35:41.881','2024-07-16 05:11:26.830','449680755-1-1'),
('15c2d845-c4ae-46b6-aad5-1c0181773933','e6f73d54-f93a-41d1-bbef-8930d53eb399',160,100,67,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-6'),
('15c82db6-726d-4b9a-b7bc-4bce6fa47958','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-53'),
('15cbcc76-00a3-4368-8aaa-1456827ec497','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-5'),
('15cd2fe3-c9ce-48a4-9649-ab7828fcc378','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-2'),
('15d136c8-b304-4c84-832e-d37708925604','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',85,60,30,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-1'),
('15d47acb-e684-492f-acea-43e4468ee718','ed097511-c426-4ff2-b940-1f98b2a1f4f6',8,43,92,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-8'),
('15d4a146-7d10-4d21-94c5-7afce51c57ec','b6d04ed2-f29f-400a-ba86-37b36b0830b2',10,32,175,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-2'),
('15d4d94e-66f2-4c74-ac06-3bb7a2bf19d3','79b9962e-953b-4dd9-9a79-2e7c11645a2c',88,73,75,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-4-1'),
('15d4e3c9-3bfe-4957-a035-5630b6dbaf81','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',85,80,80,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-5'),
('15d81bca-81c6-4429-9d03-bb827673c63a','2ab41284-325e-4735-a02e-0af4784fee90',56,10,85,0,'2024-11-21 10:29:03.971','2024-12-15 17:44:32.458','982844191-1-16'),
('15d8cef0-d0c1-4057-89ce-908db210c9ec','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-7'),
('15db82c3-e51b-4f95-b6d5-7ecc990b7a63','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-64'),
('15dd10f2-6832-47f2-9a9f-80caa2b26774','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-86'),
('15e1b7d2-cebb-453b-b15f-79b40e75b553','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:05.291','248135683-1-56'),
('15e36a39-328d-4ac2-8fc7-6e631940995a','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-9'),
('15e7a138-5fe3-464a-8dbe-5d58cbb05f7e','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.385','2025-09-20 19:00:18.891','221594735-3-2'),
('15e88a24-4630-4b58-8fe8-bf63fab02a5b','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-4'),
('15ef641a-feef-4adf-8665-72d52f8a2b2b','a446ee8f-4536-4399-8d47-bb110cf8b626',40,40,45,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-3-1'),
('15ef8649-9662-411b-97eb-a32878e75101','8f501b28-7e24-4062-b6f1-a5ff7b1353fc',56,76,102,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-2-1'),
('15f2eb44-19f5-4057-94ab-f4ab1becc3e8','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-97'),
('15f43e06-baf2-4162-8c30-dfbcc14a76fc','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-3'),
('15f5e513-18db-4e8e-9755-b24db5f86b71','08af242e-dc62-496d-980d-0f589dcdea60',65,75,20,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-15'),
('15fc1714-3fc7-4f81-bcb1-82d697bde41c','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.261','2024-07-16 05:12:05.213','248418017-1-13'),
('15fc8081-fe9f-4c1f-93c2-109c9cea7b0b','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.305','2024-04-01 07:53:00.909','478609228-1-4'),
('15fce087-1b05-452f-bc1d-01fc5846c27b','9d661c6f-2567-4168-935a-9adb098cdcab',250,70,96,0,'2024-07-02 08:19:59.016','2024-07-18 07:32:30.957','614474485-1-1'),
('15fe1e33-47e6-48ee-a3c1-4a6f5beb11b7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-95'),
('15ff641c-8c5e-4b57-bb64-273766f6e8d2','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-145'),
('16009ded-8cc3-4511-88e4-af1e7492bd34','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.555','2025-08-27 05:39:11.569','221748184-1-3'),
('1600fea8-8325-4cfb-99f8-340d5460b8dc','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,16,0,NULL,NULL,'501168544-1-11'),
('160345e8-88a3-4b6c-8767-60101cecb7b0','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',74,85,83,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-1'),
('16048c2e-7cb6-4831-83bb-7ded2da33a3f','c98f6188-56c5-4870-be97-be71cf95f62e',133,10,172,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-26'),
('160936e4-6bc7-4ee6-93de-92e0f9a773a3','eb329603-e121-4099-9308-964edd5b6713',96,183,7,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-1'),
('160bf965-9c74-4511-af80-971f40e09d17','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-16'),
('16104d23-82fd-4f3b-b5ff-d38fd0ab8183','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-81'),
('1610de2e-dbf3-4f80-b645-8f7ee6338a9d','8b0faffd-49d2-436c-acda-c8b006f7cc05',0,0,0,0,'2025-02-23 12:39:25.741','2025-03-04 20:47:52.542','745687103-1-3'),
('161243bd-ca2a-40f8-8059-aec190ccd74a','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-3'),
('1615a776-fa2f-48ac-ac0f-dfbdc67701d3','65fbcd7d-a680-46b9-89f7-75597cb1f190',81,92,10,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-1-1'),
('16160160-fa89-4d2f-8fae-87fa90c61eb4','f0f6c985-c9ed-4a87-aab9-1e54ef14fc3e',46,105,65,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-3-1'),
('1616c828-6d4d-467a-96e3-95902173f5f0','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-19'),
('1617d638-c654-432a-8a21-868cff64b990','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',141,31,200,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-3'),
('1618467b-c1b0-4466-8c82-64e1cd9cf3d9','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-27'),
('1618864e-7b1a-4348-b719-0c48b03a2456','534b92d0-013c-428d-99ac-08117a624aee',93,92,65,0,NULL,NULL,'351183541-2-5'),
('16191133-2c2b-4cce-9a34-19640d75afde','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-3'),
('161e0d32-d6ce-43d0-9f6c-c883ea2be8c6','54d4752f-e7ac-4178-9490-9a68454369fd',65,90,70,0,'2025-07-19 07:52:02.271','2025-07-29 13:55:08.002','982426968-1-3'),
('161e28ae-2c4b-4258-b09c-bc677969f9f6','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-10'),
('161e70ee-9037-4f50-ac9e-c5f521953c3f','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-4'),
('161f72d0-cbf2-4f0f-a520-6bbc12db8359','97f30c95-1381-4341-ab94-c74b11d28be8',92,95,80,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-2-1'),
('162678b4-161e-4081-9f7d-70d86e73fe7d','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-3'),
('16297af9-65dd-40e2-b52c-aaa00c1455bb','7ba47169-83ca-49a6-98fc-6ef1a1990eac',260,60,13,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.522','982630175-1-2'),
('162d605b-800e-44d7-89af-9b7e493a0a05','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-26'),
('16308912-0a0e-472e-b896-d9506b0d619c','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-3'),
('16338d13-510f-45f4-8b37-d46a22f5c8e5','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-3'),
('16375bd6-a755-4632-9ff6-6ffe2fc8a91b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.584','412871738-1-8'),
('163a5f70-8d5c-4fdd-b729-6935cfe945b2','584f346b-83ac-4f0c-84d8-83f18760531b',52,105,210,0,'2025-07-19 07:52:03.441','2025-07-29 13:55:03.111','644377360-1-1'),
('163d61ce-4642-4832-a8ed-6411397a7c0e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-164'),
('163fabec-5b90-4bcc-abbd-6da6a81e6c24','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-89'),
('1641afc0-9f17-4cf1-a43f-c3d00b105563','733f4ba6-58a1-4c6d-bfe2-a881599fe5fa',96,100,70,0,'2025-10-22 13:06:46.078',NULL,'515377519-1-3'),
('16442ab7-061d-476c-ae84-3b557fe28129','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-9'),
('1644fd97-8a20-4e6a-b7b5-a9bbbd4385a7','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-1'),
('1647a1fd-b2ff-42cd-b999-d3f74d66474d','a5626ae2-9a5a-4401-9095-a368c22814f1',220,59,5,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-2'),
('164a04be-c759-408e-b91a-bb8dbf871fa8','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.102','478593603-1-16'),
('164a26a8-8184-4951-a66d-de43c0beb680','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:11.797','248284003-1-55'),
('164a88eb-0b8b-46ef-9ba2-cce5b1b1ed2c','3d6f2aed-8c6f-41aa-a8a0-136eeef8c725',95,20,87,0,'2024-03-31 17:55:02.046','2024-04-17 10:15:56.135','982629756-1-3'),
('164d4302-ae69-42c4-9ad5-9e8ce7325211','00d82761-31c4-446b-a04b-97ce66aab4e6',235,95,65,0,'2024-08-31 13:26:35.084','2024-09-09 15:17:32.717','982918194-1-1'),
('164eff39-c310-4044-a0ba-c7d005914c73','69acd97e-52c0-45ae-adf5-ee013e52776f',95,116,17,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-4'),
('16505e25-d7ad-4330-9685-4f46ba03bba0','14154f1c-2788-4f7f-b6f1-b56e0a99f973',43,44,94,0,NULL,NULL,'745505506-1-4'),
('1650d5bd-d2bf-4113-9152-7f95ab64dd98','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',2,89,207,0,NULL,NULL,'47816855-2-18'),
('16549d5e-4012-4e2e-83b4-cfa3d16d7ad1','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-4'),
('16564dd6-9dec-4553-b537-58591be41e73','29cc8746-fe8c-48c8-bc02-cdff22be5576',93,65,235,0,'2025-08-07 16:52:26.586','2025-08-21 21:29:39.744','982484679-1-2'),
('165ba3a9-6fda-4aa0-8ec6-29851a9973e9','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-3'),
('16612aa5-56ca-43b0-81e4-fea7775df6c2','6f8fd929-0228-4fd9-a182-83fe855d3f5c',69,80,80,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.511','962908456-1-2'),
('1665218f-054b-410a-bbe4-7b3837b55d5b','5f1551a0-3002-4877-a790-948d5c6a3315',0,0,0,0,'2025-10-22 13:06:59.842',NULL,'223575392-1-3'),
('1666bfb9-7d89-4218-acae-7e50af498c97','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.808','41270066-1-18'),
('1667236e-417d-4c16-ae3e-584dd6551d31','9f9f808a-df35-43e9-9547-e5a703a5fb49',100,125,65,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-6'),
('16674685-60b4-4e28-bd20-cd0e74b50436','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-43'),
('166aa427-a38e-4a72-9b84-0c2b8b6cce8e','eb3b09f7-b691-4ca2-bb18-c272e087b51f',90,87,12,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-6-1'),
('166b5828-dd3b-4b72-bca3-72548279170f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:11.225','248284003-1-115'),
('166f1a7f-ad2d-4bea-a981-ffc93c255288','3988ea20-dee7-4b87-8731-bedc6f18d112',53,52,56,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-1-1'),
('16709ae9-f28b-4c3b-885e-39c29d35c65a','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',80,75,65,0,'2024-03-30 07:11:57.221','2024-04-02 16:08:31.693','982501931-1-2'),
('1672fa14-d1fe-466b-8d20-5e1dfab8db19','866f9922-8932-4f88-9ae8-4b3b087f0b0e',96,196,6,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-1-3'),
('1672fb98-815f-4559-9404-a28e0a7a22a5','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',45,12,141,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-2-3'),
('16748650-9de2-44e7-ad71-571001522dcf','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-3'),
('16753a65-c4fc-40b7-8708-4c0d90bffa6b','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',82,55,100,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.662','248853188-1-1'),
('1677c68f-ac1e-47aa-8cec-1794264b929e','f3414f51-92da-4967-b108-6baad5cdd798',51,151,27,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-3'),
('167a03a8-fc77-42d3-9a7e-33ad14382b65','534b92d0-013c-428d-99ac-08117a624aee',93,95,65,0,NULL,NULL,'351183541-2-4'),
('16802df0-3639-4dab-a5b9-2527dd6b569c','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-19'),
('16810d99-0277-4fc2-8e97-621eafc3c5f8','e7f31a78-648d-4a5e-9111-1bf7db38dd79',60,41,43,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-4'),
('16830ba3-e3e0-42f9-b7dc-96c66cd84874','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:06.036','248135683-1-58'),
('16841b76-9f65-40cb-98b0-7a8715451110','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-22'),
('16844e5f-b31b-4ba8-9a13-848135cfa964','1f88d51e-8d4e-4e6f-91be-d98044cd5087',95,65,226,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-1-2'),
('168d29a6-da11-4a5c-8c3c-731f38407b58','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-6'),
('168ff210-e638-4458-b8a9-adc4efb7777f','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-4'),
('1690d51f-e235-40f7-af6a-ead1bb8b0376','6a2d762e-11cd-4fca-b32d-cdba41391e25',214,59,6,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-3'),
('16928a74-d1e8-478d-9a61-80bb96f788a3','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-8'),
('169ac926-05c7-412a-8fa8-6e5fb77ceecb','19c6a32c-4384-451a-aaa5-dfc264ab827b',24,207,48,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.340','517895646-1-2'),
('169bacbe-1b9d-455a-ad7c-07831dd67d2b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-89'),
('169d5a60-d9ef-40b9-abcb-200fd28bcad4','2c19c1b7-bf7e-41a2-92f2-340a3624a547',52,100,71,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-1-1'),
('169f3a8d-2bd2-4ef2-82e9-277ee05a8bfa','0009aeec-e682-465c-b701-363a3ef377a6',46,16,65,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-14'),
('16a84612-4af6-4193-8f8d-1f3372a9795d','c98f6188-56c5-4870-be97-be71cf95f62e',80,205,5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-24'),
('16ad65c2-27de-4a9d-9920-bfb3b06fb3ca','9e72249a-03e0-4070-91b9-57ec46ace228',190,93,83,0,'2024-09-06 12:28:23.889','2024-09-12 10:54:20.815','455460659-1-2'),
('16ae06b2-a13b-4d02-8c5c-4d7b48257075','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',53,76,20,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-1'),
('16ae72eb-50bd-47a3-b75a-d5dc8ce95f33','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-45'),
('16b26905-73ea-4470-a81b-1000c89c3de3','d9c96ce5-7311-4159-8c51-6a1a744d0c49',230,60,55,0,'2024-11-25 08:28:48.880','2024-12-05 16:17:13.323','501760253-1-2'),
('16b5da84-030e-43a9-9cf1-c3baee64d53f','6ce91342-6292-45b3-be85-1b55deed3ecb',75,100,70,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-3-5'),
('16b92c74-115a-47af-9002-7be3fc9c2008','69acd97e-52c0-45ae-adf5-ee013e52776f',99,14,199,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-32'),
('16bcbd66-53a1-4de1-bb33-8d077e47fc38','3da17157-28be-4bae-8dcc-745d0e93e591',67,176,14,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-37'),
('16c07d4d-c980-43b4-9d4e-191330a79b6c','4c57ec13-89d7-4df4-928a-17864a0c2939',160,200,28,0,NULL,NULL,'982751417-1-1'),
('16c41475-9fcf-4133-8a4f-09101d21fa7b','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-8'),
('16c59864-3bb3-45d7-b2f1-d895acd7fbbd','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.321','223249369-1-93'),
('16c5bfb0-a69a-4244-973d-4fdb7b2719dc','3da17157-28be-4bae-8dcc-745d0e93e591',82,82,6,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-24'),
('16cca5f3-11e1-4d8a-a964-6f30c3e7621c','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',32,20,300,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-3'),
('16ce4b18-493a-4adf-9590-99ac43314f63','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-38'),
('16cfa732-46b8-4ec5-87c5-c328bd4ea7fb','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-3'),
('16d09bd7-f07e-4a28-9c4b-05554b33cf13','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-83'),
('16d295fb-a355-45a3-99c8-985bd7e8bf30','351157cf-15d1-4ac1-ad90-0df56b569eab',81,92,157,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-4-1'),
('16d32fb9-b356-467d-bc01-d9ed0b9e0c8e','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-3'),
('16d51c96-10a3-4832-8fd8-e8de0896a4a3','b6dc1a64-c8c5-44f3-905f-7ce1e98dc6dd',0,0,0,0,'2025-10-20 07:17:53.582','2025-10-27 09:24:33.569','478885112-1-2'),
('16d99616-f94d-4c0d-8b34-36043f2345a4','d2f8d58d-42ad-4705-b1e8-a666af927fa3',36,24,100,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-3'),
('16db8a98-64ad-45bc-91e0-aa2e94931a39','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-15'),
('16dc2360-db56-4c1e-b015-4c3af777c7a2','426ef9bb-a62f-449c-94ff-8db1393b2288',160,33,200,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-1-1'),
('16dd86ea-86fc-4131-adde-e3db25e38d0b','546ad3d0-25c2-43dd-9443-e48b8e5b6530',90,21,180,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-36'),
('16de7c62-0ffa-4a70-ab67-77ce6fb1b304','2173be11-c6d0-41b5-81d8-89c770354a7a',95,75,243,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-1-1'),
('16e0f140-2b46-4e74-bafe-1f9eae103cc0','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.340','2025-08-02 17:36:11.137','598668612-2-6'),
('16e1ddf9-a35c-4d91-9e95-9a11bd585e25','72dd70ee-d1c4-46e4-b852-cc3c53e8554f',100,85,230,0,'2025-02-23 12:39:11.932','2025-03-06 10:33:36.756','910225013-1-2'),
('16e39c32-6c44-461a-92fd-c78bfc4d72b3','70873466-f77e-4c55-81ef-21947837cbff',180,90,70,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-1'),
('16e63d48-778b-4e64-aa11-8ade03032d82','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-6'),
('16e8c18d-c290-427e-b354-8434008355cf','7f11042b-3945-4eb3-b37e-a822894de6f5',143,46,13,0,NULL,NULL,'478777575-1-8'),
('16e92108-66db-4b18-9be9-0c7932076c43','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-27'),
('16e961ac-5745-4836-9e80-87a8872f3e1a','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-181'),
('16eac9e9-31a7-47fd-a25d-120324f53c45','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',180,95,10,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-2'),
('16ec5b69-d223-4d22-982f-55bcc56a06d4','a29c5d4e-5806-445a-b142-4d6423d465a6',51,51,77,0,'2025-06-27 17:12:18.861','2025-07-08 11:48:36.117','221368256-1-1'),
('16ed58af-3078-4449-b36d-08ccdbd2ec33','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-15'),
('16ef490c-7227-4396-bd15-27d458098b79','17d876d0-c0da-44dd-b1ce-96a58d3ab218',45,41,194,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-2-1'),
('16f1516d-96c6-4aec-9795-b004bb8ddf6b','6cee1429-9935-4eae-be32-dc630b6d70e8',200,100,28,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-5'),
('16f31681-9352-40ca-8ea7-4cd88d45057f','59e8ae39-aa12-4bea-b708-fd4e609303bb',0,0,0,0,'2024-12-18 09:31:03.909','2025-01-11 14:08:23.007','248538815-1-3'),
('16f494ee-eabc-46bc-8579-2ff77f79be0d','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-16'),
('16f503c8-84b9-4ee3-b720-47a6191d698d','d83c40d1-4df5-4c97-bc83-28837db95b2b',234,51,3,0,'2024-07-30 14:58:39.144','2024-08-05 19:56:58.909','916836796-1-9'),
('16f562a4-52e8-4ed5-b89e-2600de589e59','32a0f08e-82b4-4d3f-919e-5021b7c38cf0',110,70,50,0,'2024-03-23 08:36:15.949','2024-04-02 16:11:13.712','449768376-1-2'),
('16f9a472-d174-475c-8675-6cebbe4e237e','0a8285d0-d3db-4298-8e41-62c5429f150a',196,15,3,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-2'),
('16fbbf6e-16b6-4c4b-b6e7-425aa0fed2c6','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-8'),
('16fd0682-5ed8-4dea-83fa-b2179c9a493a','0bf540a1-4e97-4b5e-bff2-523992ba0522',168,95,6,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.062','505948491-1-1'),
('16ffe8ae-b578-4ab7-ba2e-642315c886bd','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.705','2025-09-23 14:04:07.289','221225501-1-3'),
('17027cbc-987d-482c-a243-675736f1c9aa','f9861f37-efe2-4e3a-930c-f694c4e10c6f',57,43,227,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-3'),
('17048fcc-69bf-4b4c-a00b-ddb8d037a61c','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-7'),
('17088281-8b66-4807-a585-1c3f81f4c559','b2cef0d0-bc16-4cd4-92af-b968a8d20228',90,100,223,0,'2025-03-24 16:01:58.767','2025-04-02 16:10:24.878','248648996-1-1'),
('170b4099-9f30-4707-8f06-0e57de54497c','2b5fa64e-2c3f-43be-9034-b86d4520cb36',77,26,200,0,'2025-10-25 08:59:21.120',NULL,'478485864-1-1'),
('170b640f-927d-4d47-8d6b-a09aed1b1d1e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-27'),
('170be0f2-0d19-43ec-8e2c-7ea5cf6e4e6c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:06.679','248135683-1-108'),
('170d14d3-9fc5-4602-9b35-0da5fb5e764c','9b8f9120-4d78-4290-af18-3760e08df1d1',0,0,0,0,'2024-12-28 21:42:22.301','2025-01-07 10:35:42.341','478892004-1-1'),
('170d3a5c-a550-4f85-96bc-86e07a0374b6','5598c3c4-7b30-49fc-8997-d966fbd95fbc',0,0,0,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-3-2'),
('170e4eec-c55b-414d-a720-1d300fb5251a','df3b19de-7db5-480e-801a-a689b8d2eda0',40,27,80,0,'2025-10-25 08:58:58.836',NULL,'74521183-4-1'),
('171101a8-3c3a-4769-9e45-3d7d2051f6ab','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-23'),
('1711af29-38ce-4456-9ec3-7a4ee48dc5bc','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-16'),
('17120699-d21f-4064-af9e-77e7332a5a28','7cb14de8-95ba-4b58-a436-4d9a3ee3c7d6',72,54,103,0,NULL,NULL,'644104537-3-2'),
('171426c3-422e-4666-abed-da693be6091a','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-24'),
('1717a586-a5fd-4e92-b290-44ce4742d5d3','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-16'),
('1717ac34-11bb-4898-bab7-ebc0ac7f2a09','af53dbaa-15c4-4117-8048-34fd042df2fb',54,12,86,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-2-4'),
('171a281a-92f9-42cd-adbc-b2e44f4a29b2','676266f3-03e6-4ff9-92c5-07a1b81bc27d',75,86,70,0,'2024-09-06 12:28:19.143','2024-09-12 10:54:33.263','45586545-1-1'),
('171c7faa-c101-4b65-bfb4-fc161547c423','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:22.464','248135683-2-30'),
('17218c98-9367-4ae8-8084-825732ab0c60','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.468','735500422-1-7'),
('1724b4a2-ca6a-4050-862a-caecb76ac89b','3aca7d6d-09cb-4903-812e-7535a083b09c',215,59,6,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-22'),
('17255f91-e554-47b0-8e8e-cf9cb3389ee7','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-1'),
('1728b283-809f-440d-a3a4-dcbac2be58c5','511dd59f-0532-4fbe-850c-9fb40dcb2a8c',98,57,20,0,'2024-09-19 18:27:21.673','2024-09-28 07:10:38.860','982118676-1-2'),
('172a4ae4-812a-4a38-a910-719bd2755820','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',140,100,75,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-1'),
('172b6f5c-e150-46bb-9cdf-0f1825d3a128','bf2fbd97-6d0f-4724-b25e-47e019854e49',63,82,5,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.806','745212688-2-3'),
('17318876-3cfc-4c04-84a1-4c211008e60f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-99'),
('17346871-bc65-441d-8aa9-f8cefba726a9','d0c01cd8-8089-48cb-8f1d-e521fc5f8acd',0,0,0,0,'2024-05-23 07:27:21.845','2024-05-29 19:00:18.557','745303298-1-1'),
('17352812-6ee2-424e-8d62-4224afc8b7a1','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-5'),
('173788ff-9b83-447f-998b-56805b0e0177','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-3'),
('17385bf2-69f8-42a9-89c4-7d68644a80a8','d5b79eaa-ed95-4fd8-8a01-7d70f4851f92',0,0,0,0,'2025-06-14 12:48:23.167','2025-06-24 13:42:26.627','412838128-1-1'),
('173be66a-0c94-4a0f-a164-9e62120ed701','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-33'),
('173d057b-3c15-4345-8373-d1b180671915','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',200,103,3,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-9'),
('173d4301-d6b2-405b-8e24-1f1bb5201e6a','e178636b-b1d9-4260-aa1b-879946fa7f5d',65,6,220,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.152','745177264-4-1'),
('174144cc-1bac-4488-83b5-c6a395469b29','0946c018-5896-43db-97d4-34199264b7d9',25,70,80,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-1-1'),
('17415fb3-c59b-4b86-98b5-5ec445aa57de','c5d03b78-19c4-44f2-a673-725e07271521',65,66,91,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-6'),
('1741eea2-7724-43dd-a381-43db033e9b83','382f1f7d-825f-4f4a-9f87-598a8856a6ac',0,0,0,0,'2024-05-08 18:43:12.410','2024-05-23 08:25:18.039','745439695-1-2'),
('1744012a-6d0d-4ded-a10f-0fcc2faf68d9','7c806225-7e85-418f-bc1f-06b62bb4fc85',0,0,0,0,'2025-02-23 12:39:26.996','2025-03-04 20:47:46.448','428131786-1-1'),
('1748f790-619e-410d-9069-fe9cf64cb754','9866a947-9974-4053-8415-4518842488fe',220,44,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.197','126371651-1-6'),
('17491b13-abcb-4d9c-8538-2dafd2676b65','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',102,70,90,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-2'),
('17494882-34d7-4c93-ae09-b82574a40729','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',21,7,210,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-72'),
('174a242f-0b90-463f-b7af-a38f8904fb32','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-48'),
('174eb6c3-84d0-462b-9c95-37385db57e68','ac2b9be2-c0bb-4704-9314-44e3ed793e24',46,44,282,0,'2025-08-14 10:05:27.420','2025-08-27 19:34:52.034','334873891-1-4'),
('1755edce-810d-4324-8c80-42352090dd98','5e1b92c5-0a78-4535-ae47-a667ddc85987',58,57,80,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-1-1'),
('175a6e7e-d883-44d5-a1b2-0e4726182a86','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-70'),
('175d1d1f-d91c-4978-81e0-0eff3c59532a','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-10'),
('175efed0-7820-4b8d-9b55-903f41835dcb','bf2fbd97-6d0f-4724-b25e-47e019854e49',86,2,206,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.806','745212688-2-4'),
('175f33b4-d08c-4c8a-b599-cbd55f0dc325','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-7'),
('176097f1-c6fd-4b5d-bb89-d99416d917fc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-203'),
('1765c5ee-12df-4182-98e4-866c9b6bc4d9','646ed6b3-722f-4d60-9a63-564fc0e1d364',0,0,0,0,'2025-05-09 18:43:38.267','2025-05-22 15:23:16.748','745865715-2-2'),
('176651b4-a86d-449f-a178-558cac01b9fe','53924259-8949-4b83-8f78-011a92bfc95a',115,115,7,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-1-2'),
('176b7b5d-88fc-4c27-991e-64dff2a40cd6','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',85,52,104,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-1'),
('176caeeb-468c-4c42-914e-64dd2ada3e3a','9cf65b82-6fcf-4ad9-99a2-646a89c35ad1',150,75,47,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-3-1'),
('176d9901-7533-4e13-8343-c27d5d0d7581','9283d2d7-9cf2-48e1-a59b-c4fb7ce45934',40,30,30,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-2-1'),
('1774ac24-c798-4c2a-91ab-fcdc71ca8f91','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-10'),
('17775e4b-276f-4021-a8b2-9aa4cfb59ddb','d5283ace-e684-4edc-9409-0a221cb6b652',100,100,70,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-3-1'),
('17778cbc-887d-4702-86dd-958473e2aeae','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-17'),
('1777d553-929e-4195-8c43-4e1746051b8e','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-5'),
('17796e55-8c5e-4641-b8bc-1bd78d223d37','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-2'),
('177ad862-49e6-4419-a1e3-cfe4fad62d02','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-3'),
('177ba477-d55f-4f63-b0d5-d1d456c38645','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-1'),
('177c145b-86bf-41a6-b988-902b742715d1','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.468','735500422-1-9'),
('17850189-a4c3-459c-b335-3c1aea5e5276','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-42'),
('178743b8-928a-4fdf-9505-39d079edfe25','a5626ae2-9a5a-4401-9095-a368c22814f1',178,95,14,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-3'),
('1788af93-f323-4f3a-996c-a286ce227c04','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-161'),
('1788ccdb-7a96-4dda-970f-af5f984f9b4e','4248435a-86e0-4cf9-9c9e-c779eca78500',48,56,74,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-2'),
('178ccd51-f84f-4fd1-bb2d-5c8256bab4d6','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-7'),
('178cd821-44de-4c91-a4f4-195ece6daa5c','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-78'),
('178ea7fd-95fc-4a59-9d2c-d12d74e25917','ba5911fb-48f7-4812-9cf8-75c9a9e745fb',0,0,0,0,'2025-04-25 16:57:06.397','2025-05-02 06:59:08.326','428459785-1-3'),
('1791b1fe-c3c6-4906-bec2-403bafbd0c5b','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-27'),
('1793bab0-d655-4ba0-9650-7cb21919ee4b','22d6b390-884c-4182-b37f-1038e99d4e8b',13,101,212,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-1-1'),
('179a5c08-db36-4279-b888-668ae1fdc97e','ed097511-c426-4ff2-b940-1f98b2a1f4f6',53,225,26,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-10'),
('179a6278-fc02-48a5-9906-722488eeacba','9f9f808a-df35-43e9-9547-e5a703a5fb49',120,122,66,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-1'),
('179abc56-55ab-4870-bbde-f01a8a835a01','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-1'),
('179d6f07-68ea-4d72-86a2-d476d116e6be','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-3'),
('179efc73-0cd7-49a2-a35d-5624ccfc606b','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-6'),
('17a02f08-698b-4a50-9c88-57f81d9b6f4e','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-4'),
('17a190cc-b19d-4cf2-a116-1338019945d5','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-2'),
('17a3256f-ad4b-472c-b4b9-c625433dbfce','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:13.208','248284003-1-2'),
('17a37618-d0d5-40f5-8afe-5fec768f3745','426edf33-c45d-4446-b38c-af56172acc0a',91,57,86,0,'2025-02-13 20:43:33.268','2025-02-25 17:03:41.023','449448008-1-1'),
('17a54e14-bd94-48e7-92f9-2985cd3cb720','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.059','2024-10-10 11:34:57.840','478117771-1-1'),
('17a586eb-5adf-4ed3-a117-9397511b85dc','e8dc151e-1148-4a48-ac2a-d4fb2c761969',146,50,14,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-3'),
('17a5c055-9a7b-4001-bc0d-d9a395fb6c11','7311f1e0-e2be-43dc-9e40-f94a010e8939',122,57,8,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-5'),
('17a5cb75-5e18-4ee3-b62f-a3dded45f012','7beecb9e-d558-4da6-bcdb-d35549b9c1ec',0,0,0,0,'2024-12-07 09:32:30.833','2024-12-17 19:51:51.056','735233033-1-2'),
('17a68084-9c2a-4351-92e6-9bfb6dccb32f','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',170,100,10,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-1'),
('17af195a-544f-479c-a989-33d5e9d4f31c','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-41'),
('17afe9b7-63bd-47d7-b95c-f367ef0b6ea4','b754c285-0492-447c-9c5d-43237c2e442e',80,85,80,0,'2025-01-11 15:20:21.030','2025-01-19 14:51:43.991','982817887-2-1'),
('17b03ab3-c953-442f-a83d-e401e46c30eb','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-2'),
('17b121ca-64c9-44ab-8c39-622d9a739e88','0052de50-8105-4a4a-bdcc-a55ca79dce47',77,55,101,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-1-4'),
('17b21190-a5c2-4997-8c90-86c9300df857','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:07.389','248135683-1-179'),
('17b72d03-efb1-4cc2-9ccb-6d4c35cad1e6','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.016','2025-09-18 07:01:44.409','412990147-1-10'),
('17bf058a-251b-45c7-84b4-fdb2f78b56c5','e41c2f64-f695-4f9f-a2c8-28d17571c06b',56,81,110,0,'2025-07-29 12:58:22.159','2025-08-11 12:32:33.741','437584936-4-1'),
('17bfa472-6271-47b8-b2c4-d4469e8a82aa','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-31'),
('17c04e47-eeb7-425a-ac35-b6b8beaf5059','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-8'),
('17c438db-ef3f-40b3-8140-4c1fdc570d01','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-11'),
('17c5051a-7829-492d-a948-e2fff3d75429','53025d92-f019-4f5d-9b69-68a3b09bb7bc',14,173,5,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-2'),
('17c5456d-4dd0-4e98-b4d7-06ed9d6a0f56','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-8'),
('17c93ab1-a8a5-4414-bfe3-eaaf406a24ff','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-30'),
('17cedf17-0b56-46e0-87c3-11630bf477a2','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-5'),
('17cfd1ad-88eb-434c-87c8-7402957b6803','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-8'),
('17d42ef1-4e1a-412e-9e58-c035f2dad38f','3166ea3a-776c-48c3-91c8-684a49e8a243',50,45,50,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-2-2'),
('17d80f6c-be56-41b4-b4e1-e8cb81a5f5ae','7e9077fd-3ffc-4968-8b44-b2d19585952a',0,0,0,0,'2024-11-02 08:42:27.980','2024-11-11 19:55:44.992','745778561-1-3'),
('17d899df-02d3-47d8-9911-3f148d4c7cd2','217455d9-4668-4753-ad89-562e50f0bc65',101,56,82,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.063','505948491-2-2'),
('17d96485-f207-4a32-8d1e-7c1a58328e7f','f0485a78-951c-4f89-bddf-b2003f0bf783',40,59,48,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-7'),
('17dae10d-0f92-4f65-8908-afb156d1e8c6','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-107'),
('17de14d6-307f-47cf-a6d4-f8642899cda7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-15'),
('17e60c23-1d21-43ed-a50a-b5f9e6d595f5','c02a7a5d-c8b8-4c15-8213-f0898fe13e2c',220,95,70,0,NULL,NULL,'745151910-1-3'),
('17e77c39-cc04-462f-91eb-1a7ffb6ee583','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:17.278','248284003-1-54'),
('17e8294d-8afd-4228-940c-9903e1401217','da45c512-a565-44f0-94fb-f2a9be01c44f',97,38,17,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-3-1'),
('17ea7710-4d2f-4dd5-8f4b-4b1214a964f7','642202df-ca75-465e-8036-f34da2dad54d',35,7,177,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-17'),
('17eb53b1-bc05-4d0d-a2dc-648b2c75e6b9','822012b8-3b7d-46ba-9997-29726e94fb5c',90,72,210,0,'2025-08-22 20:28:34.659','2025-09-03 12:46:56.985','278498481-1-1'),
('17edb264-06fc-448f-bc2e-2d222f6b8d65','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-3'),
('17f20580-39c3-44d0-9d7c-67c67b5de446','8c9b45b9-09dd-4bf8-9d3b-dba3a172f00b',69,100,230,0,'2025-04-15 16:02:03.211','2025-04-24 15:01:37.127','910251573-1-1'),
('17f3bfb7-65ca-4b35-b564-6b0e131c8cb2','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-138'),
('17f61623-93d1-4e06-811b-1ff254e165b9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:08.246','248135683-1-127'),
('17f6340c-84b3-4197-ab33-712f444c06d9','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-7'),
('17f6fbcf-c1bd-4c73-a18f-6f8c9670f7f1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-151'),
('17f75212-1ef0-427a-8820-b4c5541aa835','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-11'),
('17f7d913-67d5-4e76-900d-7cede1d36754','85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5',74,103,104,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-1-2'),
('17f889ac-f469-4ce7-9622-eef579760b3d','b18cd944-b2a8-47b0-becd-29fd21a432c1',185,90,26,0,'2025-01-04 10:47:34.348','2025-01-12 13:23:00.339','982614868-1-1'),
('17f9a86f-191e-4cc4-89b1-3197755cbbfd','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-16'),
('17fced17-2c3f-4f6c-8d7d-5426098432d6','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-16'),
('17ff704e-c3b4-4bf9-b4e8-a385bb0db5b4','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',235,75,100,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-3'),
('1800f45f-de5c-4462-802b-102275913ee6','38ea6d71-f51a-43ce-a3ea-967bdd9f527d',140,77,95,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-1-1'),
('1805fc60-2135-4fd2-abe7-ee3875ea703e','86e5956d-750b-4aa3-8f00-53e2db7b9f65',84,54,100,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-3'),
('18073d2c-2bc2-4550-b564-8272cd3a4811','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-65'),
('18097a49-8f62-4990-9823-a9845a88b0c1','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-2'),
('180d7114-94b5-4985-b3b9-836dd71e448b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',190,105,65,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.797','428602278-1-2'),
('180fa678-9f47-4e52-9c6c-be304b843eef','dc390da6-4128-4077-b3a7-07f6a89a5beb',100,100,70,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-7'),
('180fb708-2fb1-47ca-b92c-95c0e7d6a11e','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-3'),
('181039af-8ba1-4db9-b3e1-b34cd7e9e9e4','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-4'),
('181082ec-e578-4be5-a5cb-92d9aca16b90','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:31.112','248135683-1-59'),
('1811336d-9081-4b90-92c9-b6ce221ba4b8','e7f31a78-648d-4a5e-9111-1bf7db38dd79',52,82,77,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-5'),
('18120ca2-317c-4f4f-9267-66dc292ebcb2','0009aeec-e682-465c-b701-363a3ef377a6',61,45,17,0,'2024-08-20 19:22:25.324','2024-09-03 15:32:53.771','655307091-1-15'),
('1816cae4-9273-48a2-9a26-2c3fa7271d01','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.734','41256945-1-9'),
('18174826-b499-4f47-9ede-b4fc04e90c52','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.958','745717474-2-9'),
('181b1606-92fc-4277-8950-1cfb5a19b6fb','af53dbaa-15c4-4117-8048-34fd042df2fb',54,14,85,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-2-5'),
('181b3c73-578c-4133-a5c2-67616fe8d3d8','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-13'),
('181bf71b-ef1b-48e2-a2dc-8771389026ba','2be304af-892c-437c-ad01-00360cd990ec',44,44,75,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-1'),
('181bfa59-1713-46a2-bec9-25af814307da','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-27'),
('18212f43-d869-4387-91ee-434c9274a6c7','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-2-1'),
('1828871a-00a3-40f9-a46d-88aaf25b4476','8d77ac35-40ae-4d32-8c64-07f636272862',76,100,53,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-1-3'),
('182b38b0-2685-4f55-955d-4bad4466ebd6','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-15'),
('182b6ce0-d995-4836-82a3-34d7cd864b68','307b609b-7404-46c2-ba6a-cea1cd59da9e',110,110,95,0,NULL,NULL,'598697614-2-1'),
('182b9873-ac56-42d5-a820-39d342a1aab9','7cbb49e7-8507-4950-b154-bbcd75b0a4cc',0,0,0,0,'2025-03-27 08:02:51.403','2025-04-08 15:37:12.797','745580296-1-2'),
('182c6fca-71e2-47e2-a73d-e1b53931f2ba','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-8'),
('183552c0-51d9-4456-87b9-17020a5f14cd','902aef44-bdc3-4e37-99aa-8a4094073651',80,20,130,0,'2025-10-22 13:06:42.033',NULL,'776312220-3-1'),
('18364f28-da00-4b19-8757-5e51bec3278f','6f7a6469-dc9b-4d75-903c-d0c86a5d5d92',40,40,230,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-2-1'),
('183689b4-09dd-4b7c-a910-9bd14a278b92','faebcca0-46de-45fa-9329-665a09e1afc7',54,55,45,0,'2025-07-19 07:52:15.651','2025-07-28 12:02:34.929','371944289-1-5'),
('1839437a-b76c-494e-ba00-25396f01ebbb','0263f7f0-6c1a-4beb-ab78-25d69142647c',67,45,13,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-3'),
('1841f7e4-fca6-4c18-bdc1-cc59a4a47dcd','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-51'),
('18449834-5d03-46fa-9d15-087e1ad8ea26','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',80,80,8,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-7'),
('1848c8f9-9a20-4bba-baa9-cf5aa77d6c6c','6ab8353e-0a04-49dc-8a2e-03d40377dcf8',80,207,95,0,'2025-10-22 13:07:12.749',NULL,'437227214-1-2'),
('1849365f-cb7d-4cae-b0ef-ccaad507fb6c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-56'),
('184b07f1-2e18-4e13-b040-de48df323037','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-39'),
('184b80a8-2489-4537-a9b2-886e87acba40','2ae0945f-d21b-4c2c-8cb3-1cf6a08e3c5c',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-1-4'),
('184ce31c-ab5a-4c4e-b199-65119e58f67c','ca2466d1-9a83-4f57-8f76-f5ddce302e04',382,127,10,0,'2025-06-27 17:12:11.182','2025-07-14 06:05:05.686','382253716-1-1'),
('184d5aad-2f44-4010-8d38-e6c3ac60f6cd','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-38'),
('184e122a-704f-4ea3-97dc-5796053a243b','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-14'),
('184f1dac-320b-4b9a-82b8-9aa176f22ab0','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-9'),
('184fc075-5d1d-4b06-8d49-bb7480ad8a64','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-129'),
('18507aa7-1063-4b45-af65-c539a32592d0','de2dad64-06a0-420f-a811-e87b3a9ed343',0,0,0,0,'2025-03-13 12:21:35.453','2025-03-22 07:37:13.222','221158425-1-1'),
('1852e84a-13bf-4a5f-a833-b4681147d1c8','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-121'),
('1854bc22-c0b7-4d71-86b6-2dce97bb2ac0','05008527-fd22-4ebd-921b-be4d8555bbb8',190,96,6,0,'2025-08-14 10:05:31.015','2025-08-27 19:39:28.223','505987989-1-1'),
('18557aea-78b3-4c30-b349-6024930988fe','852cb596-91b3-432f-8aee-ec6a804f3a01',43,48,72,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-3'),
('185d47d0-eae8-44a0-89b3-e70d4f33435f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-63'),
('18605860-6574-41db-8755-49654014704c','5dcc9ef8-8356-40ee-8dea-7d614cc219e2',230,103,78,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-2-1'),
('1861ab4e-2e5f-4d7d-aec0-f96cb77d3c09','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',105,75,130,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-1'),
('1863f322-4da3-4ebb-9186-2ad08ef71a98','324936f5-0640-4048-8641-e1550a228838',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-1'),
('1864da35-23d0-450f-b79b-73fd670cbf47','68196a47-7977-4b73-9a24-2c24753a10b5',54,75,100,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-4'),
('186776eb-4482-4cec-8789-b0e8a1e00350','7afaa863-1632-4dab-9a18-d36f3b675d4c',100,250,80,0,'2025-03-06 10:32:12.498','2025-03-13 15:28:39.032','081982015-1-2'),
('186e3543-f0f6-4f10-88d1-89f2bc9664be','883e6aaf-ccf4-4814-b2e4-afec5f99ad33',95,85,240,0,'2025-01-06 13:08:10.045','2025-01-10 16:34:01.975','910407767-1-3'),
('1870f9bb-8703-4299-ab46-4285591c5a5b','f3ebb409-4979-488f-a599-11a32dd90b22',0,0,0,0,'2025-05-14 17:03:45.705','2025-05-26 06:42:53.855','371836215-1-1'),
('187572e2-a18c-491f-8a25-760244a0ef53','44622e7b-0fdd-427c-9a36-f04079e592e0',62,58,58,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-4-3'),
('187893ef-9791-4fa1-9c22-665b7320a21a','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-14'),
('187aac7b-83ba-42ef-a56a-065f3413e27c','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-3'),
('187d6e42-1e89-4aaa-8c2b-96bb064874ab','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-5'),
('18807e5e-d29a-4bde-85eb-8fa30c45c1a2','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',205,92,32,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-1'),
('188186a1-f3b6-4444-9b9c-84aed4978e10','9866a947-9974-4053-8415-4518842488fe',225,57,6,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-7'),
('188269d2-1688-4cec-85b1-9405ce1e6b95','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-4'),
('188274c2-0233-4c92-9b1b-9b1e3e5ad245','75a1a1fd-c682-41a7-ae5e-306627043bc3',56,66,102,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-2-2'),
('18830e71-2300-4158-810c-74d4f8cdfc53','450e3cc2-5ef7-4167-b7c8-42e1eab92860',53,76,102,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-1-2'),
('188501d8-eee3-405a-bc54-7b433c4f2a05','e163d910-3bea-4675-a310-ead7083f02b8',60,12,41,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-1'),
('1887c6cf-cbef-4352-b073-485fe6cd8047','1fa4834f-6874-4d5a-80f2-1b8fe854abcb',96,231,7,0,'2025-07-12 09:20:25.398','2025-07-24 06:22:57.917','817918521-1-3'),
('1888e30c-3e43-4a54-8eec-c719b441a4d8','504660da-c27b-41a4-aa56-e6293172b9c3',51,38,37,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-1'),
('1889fef7-80ca-4f04-9de4-db0e4d49ae6d','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.900','2024-10-08 20:17:54.299','478479612-1-32'),
('188d36c1-2a4f-4164-9676-5517d83aa2f8','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-21'),
('188e118a-02d2-4311-b0b3-614a57c3f7b2','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.922','2025-03-12 17:47:54.769','248915549-1-5'),
('188f8d61-4424-481a-b7c8-7b25fae68d05','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-19'),
('18915d6e-26d4-4948-99c5-578eda716383','ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-2-2'),
('18933c49-5e48-42c6-9ef4-18f79461c487','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-11'),
('18978dc0-8ac1-4ac3-8636-2219608e228a','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-1'),
('18a00923-2630-4055-9e4e-5182c494c7f0','429b3448-0e29-43d6-8ad9-a760a9c747f1',57,76,101,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.990','675885408-1-1'),
('18a17488-9be1-4f95-84ac-f3cb4d8f1f12','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-13'),
('18a19fba-80f7-4e93-bdc6-8e96837ff918','5a83c82e-35f0-4134-a941-293be92d775d',70,121,7,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-4-1'),
('18a202d8-094c-4ab5-8f93-c739c2207f0e','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',57,11,166,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-2'),
('18a292e7-613b-4290-a8d4-4e751872fdd2','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-10'),
('18a5b07a-98d5-404d-9baf-16691854d3db','f4824372-5bf5-402e-88a0-74bc50efeac1',61,65,86,0,'2025-03-27 08:02:46.623','2025-04-08 15:37:36.306','644206771-2-2'),
('18a73fc6-d92e-46dc-bca9-0b2f689cd5d7','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-6-2'),
('18a95d4b-3578-4b7f-aeb5-bdb9cbf7ba30','77ee5c9a-b4a2-4ff2-bf2f-c8dde20a4100',96,15,158,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-2-1'),
('18aa7f34-5b46-4655-ba2d-6dedd711d800','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-6'),
('18aebb6e-fda1-40dc-9584-085150a848fa','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-43'),
('18b10fb5-54fc-4d97-a9f4-e565ccec5d5b','5ea4b207-b05c-4931-bbd1-648b6933aae5',64,46,20,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-1'),
('18b193b6-c9c8-4e2b-8d2f-9bba32295291','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-28'),
('18b954c1-d721-44c4-af66-2aba5c4f1ea3','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-22'),
('18bce420-8daa-41e0-aca9-af490a43fdac','fb2833ed-b33f-4336-b2e5-bb576edd765a',0,0,0,0,'2025-02-20 12:15:00.167','2025-03-04 15:38:06.963','982342488-1-5'),
('18bf4e14-a764-4a2c-839f-2f9ba17c7dd9','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-2'),
('18bfebf8-dd43-4cff-8a6a-786fc236ab7e','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.296','2024-09-13 16:38:19.762','41283002-1-1'),
('18c10993-4472-4bc7-8f95-77acfcc7706c','1c0e112e-2971-47d5-898d-1abeaee2f07c',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-1-1'),
('18c12f2e-2248-4c52-8e4f-a45f7f2a6a3d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-73'),
('18c347d5-1aad-4f4b-96af-f75ee74f7028','3535d433-eb38-4879-84b4-dbf8410809cd',210,56,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-16'),
('18cdfc66-5784-4672-ae26-f3087139924a','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-18'),
('18d27134-fa25-4c67-8efe-24ad0160aac5','fff846e6-362b-483f-ba3a-df216849c545',60,60,47,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-9'),
('18d4cf01-95f0-4760-a291-f849ee6ab47a','3aca7d6d-09cb-4903-812e-7535a083b09c',224,61,5,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-16'),
('18d853c1-c43b-45f9-8228-6476f00cd98a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-118'),
('18e048e4-3674-4128-839a-96608e260ef8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-48'),
('18e1433a-4863-4ac0-a942-765533bac012','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',14,47,8,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-2'),
('18e46160-48aa-4f09-95b2-82cf21c27ff4','47359dd1-b6c1-4658-86e5-5db37fe1aa0c',400,100,100,0,'2024-03-14 13:50:32.995','2024-03-22 10:14:21.101','412996718-1-1'),
('18e46537-17b5-4616-aa7c-f331aa5c1564','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-15'),
('18e516b7-3c66-45c7-b4ec-6b72e80390f3','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',81,23,201,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-11'),
('18e5479b-8f48-45d6-8209-db2d819de291','0365be5a-cb94-4992-8e8d-cb784930b2e7',85,50,15,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-9'),
('18e7d4dd-0e3f-4c50-bedb-9df04cf400d8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-75'),
('18ec8dad-03d9-4b87-a9a2-aaf52462359e','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,71,65,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-4'),
('18ec8f73-95a0-4513-8287-fe496c806d16','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',207,77,6,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.063','428138926-1-10'),
('18f05074-19d3-4739-b770-e03c3dd23a70','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-55'),
('18f13168-f8a1-440f-a0e2-e6198b1e3ea0','c080623b-df50-459f-92a8-eb2eaff4030b',90,75,70,0,NULL,NULL,'478350685-6-2'),
('18f4555e-cadf-4197-bcca-7abc2b932f20','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.373','4127825-1-1'),
('18f7682f-ebdb-4a75-ba86-f69d54b9f437','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-1'),
('18f7d8c8-2668-44cc-99e8-d452abbc80e3','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-35'),
('18f83af8-c669-46ab-ac32-4ef3bc4450c7','dc55ce2f-d7c2-48b3-aff6-8da9dbf95cc6',58,45,30,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-4-1'),
('18fb1b87-7b7d-4c13-a20a-d8c2c3eb29b9','cd8df407-b5df-41b3-9552-a349d4e71404',92,181,7,0,'2025-04-28 07:40:24.988','2025-05-10 20:12:30.472','613431273-2-1'),
('18fb2e16-de69-4c16-a0cc-cec856a4dd84','42b7553c-1533-4400-b356-4c6840431f4b',240,37,43,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-2-2'),
('18fd0174-6ac4-44ee-be92-163fe067ed62','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-165'),
('18fda421-d287-4ff0-96f2-e31513823718','6920e5cb-d019-4a3c-ac52-1b22d89def39',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-2-1'),
('19007064-bd3e-4e15-9584-317784c9c1dc','6ec87888-8b87-4bf1-adae-d5b6742225d9',46,32,214,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-3'),
('1900e6ab-0b26-4055-b4b6-db895ace2df8','6bf9e7f2-559d-4f42-8f6a-cb4cd129f9e9',110,110,75,0,'2025-05-16 16:33:12.047','2025-05-26 06:37:52.206','478205168-1-1'),
('1901247c-e490-466e-a2e2-289df947e05f','5282b87c-6b11-46ed-bf19-54c6f3afd111',113,125,10,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-2-1'),
('1905217b-d749-4baf-a8f3-812edf359cdb','637ecf55-0f47-4302-8766-1e0faf2d9852',142,92,65,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-2-1'),
('19086ef6-a24a-4b31-944f-88746b0856d5','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-4'),
('19092591-df6b-45d6-9062-31e8fc04ea56','91caf0f2-3247-41a8-bac8-85a7da9a1ea1',65,104,9,0,'2025-10-25 08:58:58.836',NULL,'74521183-2-1'),
('190952a7-7acb-4421-9f84-610ca26ae53d','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.016','2025-09-18 07:01:44.409','412990147-1-6'),
('1909b0fe-8225-4408-ad7a-62b774749541','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-4'),
('190a7c93-d12d-471c-bb6a-642cf33dfe7c','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-4'),
('1910194d-30f4-4315-a767-9c48d03adf9e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-107'),
('19108356-1c9d-4b42-9aea-5b5cfb2e9b62','2309966e-ccb0-4f46-b346-733ab15c3555',40,80,124,0,'2025-09-26 12:39:37.122','2025-10-10 21:29:51.184','437649696-1-1'),
('191469e8-af3f-4519-94a5-2b7879e6d03d','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',87,53,99,0,NULL,NULL,'478739679-3-2'),
('19189cae-39c8-418c-8bc0-8fefc8db28d5','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-87'),
('1919cbdf-5a26-44b5-abd7-8ab63f644fdc','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-6'),
('191cb3e0-42e3-4094-86b2-4a1f2c53dc26','bf45c546-7b61-4cb9-8ff6-a953f372662d',26,15,211,0,NULL,NULL,'745995046-5-1'),
('1921c7cb-e626-4c23-87e0-0273ee45c02c','6ff86400-74db-4fb0-8f8d-7ebd7383bc24',0,0,0,0,'2025-07-08 11:31:03.623','2025-07-25 18:05:15.056','735929791-1-1'),
('19231c99-f52f-4786-8ce2-7eec98b3f1c2','cd01ade5-adb2-455a-8f90-b396a501cae7',51,51,77,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-4-1'),
('1925c6ca-4890-4f74-ac66-99dc5319f9ab','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-33'),
('1925f452-feaa-4323-86e7-35908d1a0615','1cc0aa13-016d-422e-af4e-742c14842a07',83,57,102,0,'2025-10-22 13:07:00.774',NULL,'515829047-1-1'),
('1926148f-2686-4ff9-8bc6-118893754975','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-34'),
('192bd794-423b-4be6-b705-18c04b74255d','7311f1e0-e2be-43dc-9e40-f94a010e8939',24,28,16,0,'2024-09-06 12:28:25.210','2024-09-12 10:53:49.267','289168915-1-6'),
('192e3d66-f2ec-4ca1-8df4-3fe56f498a63','afd7f71c-d1fc-484f-b72d-f986503df4f7',56,100,80,0,NULL,NULL,'703266692-1-11'),
('19347113-34ad-4632-93f6-e3e0ede23103','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-38'),
('19359487-d519-4ffd-8ec7-5486607ba976','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-6'),
('1935ca21-bb53-4693-b6a7-539484288b55','a2f34510-a7f6-4abd-ac03-e7c577feca03',9,79,206,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-2'),
('19382c6f-726f-4149-8587-24fdacde0666','405a8b4f-16a3-4308-a37d-4df866ba5a15',51,51,77,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-2-2'),
('19393722-e3b8-445f-90c6-71b4d1a1979b','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-18'),
('193b3a8f-cc7a-434b-b05d-871aa01d4d0a','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-9'),
('193c2ffe-ba5f-4a68-a1ae-119b0b568d4f','7c09f776-ffb6-47c8-8828-61389547804e',56,71,96,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-12'),
('19411298-2379-4163-ab04-6bbb7a043f6d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-135'),
('19416e95-038e-4479-a636-6a26ed7f9dbb','3aca7d6d-09cb-4903-812e-7535a083b09c',78,40,40,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-10'),
('19482d2f-b880-4366-a5ca-dc7c1f841737','e89e7d75-4967-4c63-9f73-981469e531af',190,9,9,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-5'),
('1948aaa0-3e3c-4106-ab2f-5a1d1c2be1a2','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',85,53,50,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-2'),
('194e1972-b986-4868-9491-08caa4c24655','a769cd75-8095-4eeb-999c-d1a749589a77',95,232,64,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-22'),
('195f1253-7fce-4b6e-b3ae-670c1e448a44','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-1'),
('195f357b-b293-4098-9ba4-0437c3dfad27','80b1233b-a544-4cfa-b3c0-d621b23200b4',70,60,100,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-2'),
('195fde70-37ee-4ed7-9080-51ee699bbc0e','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-1'),
('19618e6a-9667-4479-ac02-d5398f2b660a','cea9e943-e299-4576-b365-f684cc2e4d11',56,76,102,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.167','371514006-4-1'),
('19627f29-b49e-4a84-b390-98f8fe8594da','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-9'),
('19659781-b819-4d17-94d1-f8efff008bf8','6b7249fa-3b92-44b6-a5b6-20ae76f8a01d',48,48,52,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-1-2'),
('1965cbf9-f9be-41fd-bb48-7dc960036a64','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-5'),
('19666751-34da-4868-93d3-5d2a62e3f577','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-3'),
('1968796f-8bfc-47ed-a121-4ebc663606a7','e6f73d54-f93a-41d1-bbef-8930d53eb399',100,100,67,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-5'),
('1969a8b4-a3a4-4319-a399-081863b25653','c97b4464-4efd-4872-9340-ffe44fb1a770',96,185,7,0,'2025-07-19 07:52:09.001','2025-07-28 18:39:59.643','598220619-1-1'),
('1969f4ad-4cbf-427d-874c-20f0b01901e9','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-7'),
('196aec71-ade9-4bd6-8c1d-4e5029388dea','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.809','478150977-1-21'),
('196c0ea2-e2bf-49ec-ae97-2d05f8cae9ca','f8d90cf2-88ac-48fb-8de3-6ec17d4df359',44,46,60,0,'2025-09-10 10:50:37.829','2025-09-17 17:51:26.601','478223658-1-3'),
('1970a57f-b396-41c8-b7bd-ff1e553d0656','852cb596-91b3-432f-8aee-ec6a804f3a01',34,100,17,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-9'),
('19716bbb-584c-41d4-9e25-6a32e0204c40','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.385','478957028-3-1'),
('197607a9-5799-4f00-aa4f-25dcace921da','09ef7abe-b4ef-491c-951c-09430abea134',0,0,0,0,'2024-05-08 18:43:23.581','2024-05-21 18:45:40.660','478685156-1-2'),
('19785b1e-1b3f-4b42-83e1-ef8ef4f9f20e','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-5'),
('197db6d4-7b55-4a00-a20d-9acd724e13c7','c1bfa9af-ef39-44a9-9789-3e9b58704cb8',9,130,120,0,'2025-09-11 06:34:27.965','2025-09-19 12:34:35.875','808886614-1-1'),
('197dcfd5-efda-4e76-bdd1-ff06eb850a98','5f1fdaa6-82fa-44d0-81f0-14be691b3ce9',30,23,12,0,'2025-10-22 13:06:42.959',NULL,'644589662-1-1'),
('19824951-2a10-43f5-8e07-49cf821416fd','e72937d6-5274-40bb-a570-ab73ccdc0bff',16,97,175,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-5-1'),
('198a9d2f-cca6-4b8f-8354-3b21d5466f18','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-5'),
('198ca1eb-6191-4d5f-b35b-6057d64c61c8','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-76'),
('198fee17-40e7-4466-a8c0-6147190c38be','c321bcb4-e9ea-4666-adfa-15a8c704d731',60,65,90,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-6-1'),
('19a40f23-4642-47b0-894e-613075e7828c','5e418100-d855-48c0-ac4b-19a956b8ef44',70,55,15,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-8'),
('19a7aad6-3736-4e37-a61c-af9e7154aa1f','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-53'),
('19a925bb-197b-4d2d-be9a-639c36cdc63b','b6b84af2-002e-42d6-8888-913741571a16',11,39,207,0,NULL,NULL,'598944852-4-2'),
('19add82e-93a8-4b28-a1c1-94ecbaf13de2','24886f99-c4f1-4e3a-b8ea-1b00c2870261',115,65,115,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-1-1'),
('19aec574-9e16-463b-97ca-c2ef8602f746','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-9'),
('19b0151c-5d64-4f57-88d5-23957ca39611','f842eaaf-94f0-44f1-9cc7-68d39b982516',56,76,103,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-3-3'),
('19b2b42c-54cf-4d85-86bf-3e09d5a2cf76','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-26'),
('19b5bf7a-1204-489d-a596-96dc21f3c5c5','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-31'),
('19bf86f6-8a68-47bc-85a4-133609bd5721','f7562aa6-13f8-4815-97b5-117f4d1f1729',235,70,95,0,'2024-11-25 08:27:49.578','2024-12-13 19:00:51.189','982271871-2-2'),
('19bfc897-d014-4c0f-878a-7ad4d3d0474e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-148'),
('19c4dc7b-28a9-49c1-a795-fc57f2ce0c04','c1c9db37-7322-484f-822b-e475a8ffaf59',0,0,0,0,'2025-09-06 07:20:26.523','2025-09-15 06:12:43.178','412299499-1-2'),
('19c63a0c-b11b-481e-bdf3-ac13ed6da2c6','1d9972b9-1383-4b2a-a7f9-2e2b0b5a33e4',104,8,140,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-1-3'),
('19cd07cd-d825-403b-9ffa-096572e9f22a','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-25'),
('19cde85d-2e13-44f7-96f0-c0f47ff714d0','324936f5-0640-4048-8641-e1550a228838',57,225,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-2'),
('19ce080d-fc01-4152-b320-9302eaf2cb7d','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-3'),
('19d4839f-69d9-4634-9c6e-05ca0fd687de','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.296','2024-09-13 16:38:19.762','41283002-1-2'),
('19d53072-d33c-45f3-9bbe-bb98c18ffb42','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-4'),
('19d76888-d9f8-495c-9493-fadb3fd3e48c','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-17'),
('19d77bbd-2987-409c-8821-06d73bd8231c','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-24'),
('19d828cc-000d-43cf-98e3-350e7cedb3e6','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-4'),
('19d87fc9-b3a4-4cc0-9b29-c793c1772761','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-83'),
('19d886e5-4b39-4af2-a67e-f79cbfef7797','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-34'),
('19d8aef4-2d7e-499e-847c-6f8647f5264d','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',48,44,65,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-29'),
('19ded5bf-2ba4-4299-931b-bec24539f180','b52c782d-173c-4921-91e0-83bad837ccef',43,43,78,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-3-3'),
('19df9223-e530-4c87-b551-4cf800b05bb8','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-9'),
('19e0c018-08c3-4ad5-b63c-2f0ba3eb05e1','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.395','2025-01-10 09:45:03.348','910903191-1-10'),
('19e38557-25de-40bf-ab50-f1158f12213d','3262eeec-a561-4390-96bb-5b42347fb79f',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-3-1'),
('19e3f952-d848-4d55-a140-46cd0d236bb0','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-8'),
('19e54d51-cd8a-438e-aa86-5e4583f95b41','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,12,0,NULL,NULL,'501168544-1-15'),
('19ea8910-ef0c-4fe6-8729-a4450bc1c8ab','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-17'),
('19ec1375-4762-4e29-b28e-e1c92dd5aa30','1916ae7f-80e5-4993-b31a-1869332c7d71',192,53,37,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.192','786849282-3-5'),
('19ecd947-20c7-4ddf-b08a-b8c83f856fe1','796fef16-71d1-4946-b8ba-54f687adf598',95,16,13,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-2'),
('19ee86a2-41a1-4c4d-92d3-4fbc6a1c4c8e','135c284f-8acf-4424-8c84-150435648d16',57,112,81,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-2'),
('19f367e9-55bd-4cf3-ba42-df4cf0ad51a0','3952cb22-55e9-4578-a751-ee8895e55cf5',51,51,77,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-2-1'),
('19f3f748-93c2-4ec6-8d31-502ad6a5a133','e891b961-f9b8-41f5-b49e-f492048bd8c9',21,11,208,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-8-2'),
('19f3fab2-65d7-4794-b32f-eca6c325644b','86e5956d-750b-4aa3-8f00-53e2db7b9f65',84,54,100,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-4'),
('19f4f0ef-89ec-49c1-998e-f6497c7c94b2','4bd3461b-c38f-4c43-90a6-39aacd24cc83',60,90,300,0,NULL,NULL,'976462703-1-1'),
('19fef27e-75da-4098-85bc-95fb3682d50f','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-6'),
('19ff27ad-4afe-4f7b-b886-3bb16b872c18','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.276','223379282-1-22'),
('1a000bdc-d3c4-4c3b-99ba-089ed94f826b','6ca0cbb5-8b45-46fa-9e41-2771ad9644cf',65,132,93,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-2-1'),
('1a05fcb5-7e6b-4c71-a371-40bae884d872','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-60'),
('1a0915a7-c6e7-468c-aa47-27c0877237cf','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-11'),
('1a0a7a03-d0c1-465c-8a71-88ceea0110eb','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-123'),
('1a0ca2d3-9a80-49f5-929f-733554aff6e6','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-3'),
('1a0dfd91-07ea-4702-820f-984872ef2551','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-21'),
('1a105446-d321-4664-997b-3515a9ff241e','5599957b-2f26-4cfe-8cb4-9c7b2aad482f',92,28,20,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-2-1'),
('1a14b7da-c9e6-4f70-854d-0372e84975c6','b23cf296-f843-4492-9697-0fd43d657771',240,56,12,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.983','858200454-1-2'),
('1a177835-b215-4830-b4af-bc4b3d3b251a','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-6'),
('1a18f68b-1808-48c1-9917-9789a364cdfe','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-115'),
('1a19d4c6-0309-4851-a235-0eee10756f8a','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.204','982754836-1-16'),
('1a1b04ff-2bec-49b6-a4ca-336cd94c0624','1091def4-1b0b-468c-88e1-7bec1e66dc81',100,75,105,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-1-1'),
('1a1e036a-fef8-467d-ad12-562c49ad647c','8d062431-1a4c-4054-b1a1-188c412c0dd2',56,106,78,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.218','221511033-1-1'),
('1a208cdf-1fb3-486d-8680-925c13906cc4','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-3'),
('1a24189d-565a-41f3-8e0d-e32017e25d63','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-1'),
('1a258337-2548-4249-aae4-2e3f6507fb18','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-39'),
('1a286293-9e91-4e10-8c5e-7194cc28e59a','969a892d-9ae7-432a-bed2-24840d90f040',96,114,70,0,'2025-07-29 12:58:50.480','2025-08-06 17:56:19.273','817395462-1-4'),
('1a2b2431-a9ce-4bd5-b73e-c9955ad9dd62','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.627','41246036-1-88'),
('1a2b38ee-4d14-4ddf-b4bf-d3aaa9b62796','08f19940-4aad-46bc-bf72-01f66d155c84',66,16,7,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-2'),
('1a2bafdf-8da3-4337-8644-e063b1da6caf','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.284','412746738-1-107'),
('1a2c67c5-32f9-4cb9-bf5f-0bd9ba51d330','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-61'),
('1a2f21e2-eb50-4895-8937-364a089f8a5f','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.418','2024-05-21 18:46:29.545','734970518-1-1'),
('1a38745c-3049-4c11-a73a-da4e598aadfc','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-93'),
('1a38a795-5fed-4be8-8369-9273aaa23e29','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-101'),
('1a3fbeaf-ed4b-4d3c-8f97-ea8e3be79e7a','6e4789ed-c3b6-42aa-92c7-9f9bf35ae289',75,145,95,0,'2025-04-28 07:40:21.339','2025-05-10 20:12:39.533','644542202-1-3'),
('1a400017-6764-4622-b084-0f2a8a5733f8','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-18'),
('1a44e69e-dd53-4ebf-a56c-b6879c0857db','20f24d72-3cfb-43b0-9073-f7bf755859fd',98,198,7,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-2-3'),
('1a44e6d0-6705-402a-b30c-70bda580bb65','38c9e885-9a1e-42c6-bd22-aeabea344a53',230,100,70,0,'2024-11-08 17:37:52.939','2024-11-21 12:40:21.415','750486427-1-2'),
('1a47144d-4d55-4c55-bf78-83292768a7a4','88ec1b69-5cc3-47af-8aa3-9c3043171516',100,122,65,0,'2025-10-14 09:22:23.462','2025-10-25 09:00:24.655','478589258-1-4'),
('1a48ce64-3cf6-4b2f-92a2-1e57db4e3092','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-2'),
('1a49dec1-2ee0-444e-abf3-89bcc4129adf','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-10'),
('1a4c05e3-9cdf-4522-8784-06d54925798f','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-9'),
('1a4f0588-6171-44f1-af70-34a3b6c9a4cf','71452714-b180-4e00-b2a8-b6fefa0c5650',80,80,6,0,'2025-02-09 09:51:58.172','2025-02-15 05:22:04.063','268145141-1-5'),
('1a4fa877-e4f9-4932-ae41-9a3b24a501c4','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-65'),
('1a50fffe-0f19-4802-9ca3-b05cb22964c4','148a8646-0bfd-4fcc-ab65-0b45431fcc16',44,15,184,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-2'),
('1a5136a0-69e8-4391-a5b7-074c598c530a','1146c60f-37ae-4960-9ff1-39c79125711e',87,73,76,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-2'),
('1a522e48-146a-4c76-ba7f-988c1d279a87','e67a7dee-52ea-4fa1-b8b6-ffe08ce0750f',52,59,97,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-4-1'),
('1a543940-7ccf-43db-8452-f85869a79ebe','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',68,102,110,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-3'),
('1a55f79f-0b18-490f-b3ba-1b6934af118b','b52c782d-173c-4921-91e0-83bad837ccef',38,38,83,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.753','371998665-3-4'),
('1a5656c1-30d8-46bb-b61e-3ccf5c42d854','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-28'),
('1a591afa-9863-428d-9b63-b65e8653bafc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.627','41246036-1-38'),
('1a60d231-c777-45e3-9514-b701f23689c2','8d8f5e69-a32f-4bc3-91b6-8db313adc977',103,75,245,0,NULL,NULL,'504960523-1-3'),
('1a638ec5-8d2b-4ed8-a97e-65794d33702f','bd7ba9b5-8269-4522-b579-d69c949c4a64',100,26,196,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-3'),
('1a65a8f8-c891-4d1b-be8e-50b2fc05979d','272baab3-523f-4b56-ad75-0ec90f594ff8',51,51,77,0,'2025-06-27 17:12:21.049','2025-07-08 11:33:41.794','221646640-1-1'),
('1a66ea10-1e63-48c3-b589-bba97b43644b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-89'),
('1a688848-60e9-4044-b77c-4c9977e54a17','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-2-8'),
('1a69415f-c63b-42b3-a187-836502807fc0','7672c2eb-09af-4e1b-a31f-afac027ef11d',98,118,85,0,'2025-05-24 17:55:34.026','2025-06-03 09:41:18.079','019113818-1-4'),
('1a69a083-c437-4315-b0ab-22f6f7054652','565f6966-f194-4d7c-8b20-64502045078d',15,7,66,0,NULL,NULL,'478350685-2-3'),
('1a6b30e4-2a97-4b73-88b5-0e61c8c0b5fc','c0b8ae62-d997-4cae-91fe-c5c498f7132e',65,85,80,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-7-2'),
('1a6b510a-7123-4114-b19b-339650833ca6','9021f98a-5560-40bc-8478-4da85897fec7',78,65,10,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-5-6'),
('1a6c657f-b7cc-4f56-a910-619bb25463c4','4e0db86d-11b2-41d2-bddf-34d3072b55cd',107,93,80,0,NULL,NULL,'644637221-1-3'),
('1a72e172-012b-497a-8126-b7fc29747b7e','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-5'),
('1a72e422-95f5-4550-bff4-d5f071ab703a','9114ad70-d53e-4d1f-89c7-30585d0a43de',53,39,22,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-5'),
('1a76b545-0afb-4495-9b33-b57ffcca57c6','b5f6869c-be7c-4244-9bf9-704a745a8d2e',12,56,72,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-1'),
('1a78b15a-2ace-47a6-a4aa-9b8b362d5924','ff41de74-17ff-4bad-989d-6f378ab50997',57,85,106,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.074','786895232-1-8'),
('1a7fb993-f348-496b-8c92-7810aabef01c','a519c64d-516b-461d-9301-4c4b7157309b',100,80,65,0,'2025-08-21 07:15:21.101','2025-09-04 06:17:02.024','428659303-1-3'),
('1a802a6a-27e0-4a60-9a83-e114be30f168','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-81'),
('1a823fdc-1fb8-4333-8447-881972fb7273','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.054','2025-07-25 06:56:26.352','735792949-1-1'),
('1a82b212-f97a-4a3f-a2dd-cb43023a9308','c8fb6c19-43e2-4ce7-b399-76de54ff6c64',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.768','478185886-5-1'),
('1a86d1f1-2fef-4fee-af9f-a6a61520542e','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',190,100,10,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-3'),
('1a881fcd-9239-4798-ae51-c457d96f422a','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-33'),
('1a88b830-dbf8-455d-bf74-70491f75f1dd','f3909b2b-cc14-43fa-b752-696dc15ac199',95,75,160,0,'2025-05-16 16:33:33.977','2025-05-21 18:42:26.744','43758285-1-2'),
('1a88fa8d-0bcb-4993-8784-df23ec98be91','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',55,13,83,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-3'),
('1a8dc00c-1987-4eea-8ed5-660e1623045a','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-19'),
('1a8f352e-6ae3-42e2-aaba-583556e2a606','78b4e116-f5c7-4057-880a-bac3a92d60d6',100,159,85,0,'2025-08-14 08:21:51.796','2025-08-19 19:34:38.051','437713339-1-4'),
('1a943658-6738-436b-be95-5ef53f117b0d','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-17'),
('1a949280-a4ed-470b-abfd-c16bc28f2fed','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-3'),
('1a95a523-1ec3-452a-b8d4-78e88fb35107','76fc0420-d453-4e15-aaa0-2fc45178a4a7',94,65,150,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-4-1'),
('1a969b79-0f59-4176-9e45-5528a7cda539','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-5'),
('1a997f5b-0715-4cb8-adf5-629fc181c110','ade60a0a-c34f-4d91-ab5d-457a76ceaa2f',80,121,12,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-3-3'),
('1a99ab44-6f88-4c22-87cd-051f0acaecf5','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-46'),
('1a9b4043-eb65-4dcc-8087-7b0e7aeb2521','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',105,100,67,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-2'),
('1a9b4519-37fc-4870-bbf0-4344ec860c29','f0485a78-951c-4f89-bddf-b2003f0bf783',6,202,92,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-8'),
('1a9cba11-2958-4e0e-88e5-4be98ef7825a','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',72,107,37,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-2'),
('1a9d89f5-95be-47a5-9223-4ae80c2af030','ba8a3b40-6783-4783-9cb0-da727261a6d9',97,200,7,0,'2025-10-25 08:59:22.001',NULL,'221811614-3-1'),
('1a9e5857-aabe-4fcd-b291-f9c27bfb0996','c1b37a15-5b7e-474f-b45e-76788d003b76',107,57,82,0,'2024-11-08 17:37:30.696','2024-11-26 08:03:46.532','231429780-1-1'),
('1a9f7cac-46b7-4d04-b7f0-bc643f238559','4d3cdd72-7918-4511-b26b-1c4ccf4148ec',0,0,0,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-1-1'),
('1aa1949e-066d-4b11-890e-24d46aa944bd','39e3c574-5864-47ea-a675-a89e703a9be1',200,160,26,0,'2024-11-08 17:37:39.631','2024-11-23 08:31:57.523','982292057-1-1'),
('1aa537f7-1598-4127-a45d-b5cc76554b3f','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-121'),
('1aa7b8ea-dba1-459f-ae49-af4b429f00d7','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-16'),
('1aa9f4a9-a43e-4fe9-ae9b-15a60d5748d9','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.143','2025-09-04 21:03:37.660','531245816-1-2'),
('1aab1191-8f7d-44a6-b931-5f0295b33bb1','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-12'),
('1aac96b3-bbb1-430d-9aec-a5be07936501','aee64134-9c4a-4a5e-a933-2ec271b9144b',57,92,82,0,'2025-10-22 13:06:53.604',NULL,'613721320-1-1'),
('1aad5689-cbf0-449a-b72e-b4afd4a8c847','105baff3-99ad-4d7f-b4a5-116a7968849b',0,0,0,0,'2024-12-18 09:31:19.411','2025-01-10 16:33:18.465','248849829-1-1'),
('1aad874e-19fa-4738-8c8f-dc73636a8a6f','a769cd75-8095-4eeb-999c-d1a749589a77',110,60,22,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-5'),
('1ab0d245-2b91-4e93-9242-d4c7ce1937eb','18182670-9b6a-4987-802a-7e1c83c732bc',54,76,101,0,NULL,NULL,'504809900-1-1'),
('1ab6cbbf-e1bb-4a1e-b666-6794ca929fe2','702c1aff-1a98-44f0-9dce-efad71572432',49,71,18,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-13'),
('1ab8a051-c629-4f23-b3e5-d6f145a863c0','efbe186b-71f3-42d2-8da0-71f73ee0e288',90,90,65,0,NULL,NULL,'59884902-3-2'),
('1ab925af-3454-4d28-a2fd-1e1fd3a881f2','3aca7d6d-09cb-4903-812e-7535a083b09c',214,61,12,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-20'),
('1ab9c64c-e833-42bb-9cc5-9b7cbc96a86a','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-17'),
('1ac1f313-1993-4707-ab02-15f5a8663c04','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',127,167,70,0,'2025-10-06 01:10:20.159','2025-10-16 08:43:25.814','248240825-1-1'),
('1ac3a103-2463-4e49-98d2-0ecff0a867d3','0263f7f0-6c1a-4beb-ab78-25d69142647c',219,8,19,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-4'),
('1ac88522-188e-4229-bf2e-07de0d1558c5','f88c3e53-b711-4bcb-aa3d-9543580054cd',33,95,122,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-27'),
('1ac8bb8b-cd76-4649-84c4-c3043c8d20bc','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-19'),
('1ace5831-5562-4147-bbe0-7f4c4c16d01d','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.587','2024-10-29 11:09:56.721','248103321-1-2'),
('1ad3b194-e662-4e65-ac27-5cf189d57aa0','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-6'),
('1ad47739-5369-495d-8fb9-edc5db1445fa','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-5'),
('1ad48611-acda-42b7-9c5b-24d2277c4a8d','d4f91387-af40-4672-a65c-7ea6e96f76b2',65,6,138,0,NULL,NULL,'478350685-7-1'),
('1ad4b0de-7e20-45e6-85f3-7c71482a7d0a','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',41,56,10,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-5'),
('1ad7844c-d51b-47e2-b4da-5a5e43158079','a6a0e640-2e3f-4f6c-9ae6-023e45fdcd5e',148,100,78,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-5-1'),
('1ad85bd8-7662-4f42-a42e-82e7fbf4bead','6503d97b-1348-469f-841f-5227a221f60c',70,80,100,0,'2025-07-08 11:31:30.466','2025-07-21 10:22:28.740','517205085-1-3'),
('1ada25ff-417e-4fc9-aa9f-7c13d2631588','07178c6e-4d40-4d5f-886c-720fb82dcfc8',0,0,0,0,'2025-02-23 12:39:22.317','2025-03-05 14:40:13.059','127343940-1-1'),
('1ade1f61-ed02-4b9d-8a32-f1f7714cd1f4','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-76'),
('1ade3454-5561-4bff-8880-a53bbcef0c8e','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-5'),
('1ae1a95d-5b57-4938-9728-8f68e73a5eee','aed0c1e4-00b7-4884-bc19-3d932afa6442',104,104,7,0,NULL,NULL,'478350685-5-1'),
('1ae28723-ddb0-4b33-b2ad-6ee1fc87ed6a','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-7'),
('1ae2b2c1-64c1-47da-9c0b-1b0c04d6fb9b','7defd633-f7ab-424d-8029-028d1b045752',98,17,36,0,NULL,NULL,'501119446-1-25'),
('1ae3aa30-67d1-41e7-991e-2a0857346c0a','17cdd73b-4c6e-416a-9b41-87687de7c838',7,84,84,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-1-1'),
('1ae5e0a3-a5a9-42be-8829-666975f97c74','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-188'),
('1aea165c-3775-4db4-8725-6e43a78d58d5','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.016','2025-09-18 07:01:44.409','412990147-1-11'),
('1aef60df-2370-4061-a688-581f3dcd4f00','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-1'),
('1af1e4f8-6a07-4eea-9710-b4b4f15bd549','f33b1ee8-3c07-40eb-af52-f06451c11031',38,22,215,0,'2025-10-22 13:07:10.734',NULL,'011766113-6-3'),
('1af299af-5fb4-446a-9fde-8b461d0c2017','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',102,100,70,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-5'),
('1af30366-23af-4ae5-8c3f-2b88ea87b9c7','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-25'),
('1af7065b-6ff8-4686-bb84-6f07f48f7da8','1b378fd6-fc53-481f-ab7b-e597cb46b15c',104,57,85,0,NULL,NULL,'613137842-1-1'),
('1afa805b-72fa-44d1-9930-3b69c651b938','41a8c40c-cb96-4cd8-b02a-dbe29db34034',103,6,206,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-2-2'),
('1b019669-8246-483a-a789-1729205c4535','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-9'),
('1b04a75f-9de8-4c6d-8b74-73edfd17e86b','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-24'),
('1b0f882d-0eaa-4c50-8522-47b9bd445090','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-6'),
('1b14122e-a62e-45ba-8ac4-6502c0e94f9f','e3606b49-005c-4991-8685-15a34953c46f',250,41,30,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-4-1'),
('1b144763-9338-476d-a35f-0e21615c2aed','8b4543e8-c3ef-483e-92b5-3623066138c6',110,100,72,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-1'),
('1b150d64-5aa5-45dd-ba3a-69fc603760c8','b78519ec-4b79-400f-a709-a1f09256d30d',67,57,50,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-9'),
('1b177f26-ce87-4985-bcc7-309eeea2a98a','e7f31a78-648d-4a5e-9111-1bf7db38dd79',75,72,25,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-6'),
('1b1834b9-2372-4efd-b90b-b29187ae62dc','46cbcfc1-c51a-492f-8b61-a2472751488a',92,80,110,0,NULL,NULL,'644495739-2-2'),
('1b1a67ec-f71a-433c-97a2-28d7b8ec4c75','174ddb1a-dcea-48ee-ba86-7abe9420ea67',100,70,7,0,'2025-08-07 16:52:56.179','2025-08-19 19:34:10.946','644658399-1-1'),
('1b200f0e-392a-4223-bea3-69bfdfe9ef81','7bb97173-116d-4058-8bc9-64fda10a5901',110,110,65,0,NULL,NULL,'531575051-1-3'),
('1b203763-53e2-4142-a05f-2b265e3cb5d0','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',62,210,7,0,NULL,NULL,'531240111-1-3'),
('1b20b0a8-3752-4f3f-841b-8651d0072eb1','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.375','750728735-1-8'),
('1b212860-3125-4d98-a38c-93ca8107852a','d4f91387-af40-4672-a65c-7ea6e96f76b2',7,84,52,0,NULL,NULL,'478350685-7-2'),
('1b21536d-37bd-43f8-ad51-2614492fd5df','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.958','745717474-2-6'),
('1b218160-93a6-47a8-88ec-f4589b893450','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',79,73,105,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-4'),
('1b24bf62-6d33-4a87-aaad-3fefc7fbf898','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-20'),
('1b27e4a6-4375-453f-9c8a-0b86aa2529dc','4269f867-0d44-45e3-ba30-724af57726ee',65,95,230,0,'2025-07-19 07:52:10.251','2025-07-28 18:39:55.403','371820680-1-1'),
('1b29f2c7-0887-4115-b157-77c6b83c1834','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-4'),
('1b2af361-f59f-428e-87e6-8e1c7d991ea3','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-26'),
('1b2b6f58-da3f-4e94-a1de-6593979fdfdf','1f9da85b-2a2a-408d-aa85-1cbd194ab93f',82,56,100,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.732','613393068-1-1'),
('1b3229af-3542-44e8-891a-563f4191214b','d6b091c1-330d-473e-86ae-6ededb40d96e',0,0,0,0,'2024-12-23 11:59:58.153','2025-01-11 09:48:43.702','735258843-1-2'),
('1b367f90-a5d9-41e2-9a51-11aa1352fda1','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-6'),
('1b372f70-42cd-40f7-993e-1842e4148105','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-18'),
('1b37541a-2a9a-4a38-b58b-ae33c0d52530','05d4c5db-7f15-4790-9278-4411a57f7248',245,90,68,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-1'),
('1b389f17-4dc0-410f-b532-ff93b2d64692','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-3'),
('1b3a197c-fa43-4d0e-9596-10368dc70d78','c000faa6-6333-4c74-9601-233c813836c2',0,0,0,0,'2024-12-01 06:48:09.220','2024-12-10 12:35:58.728','478284503-1-1'),
('1b3bbaea-2115-42a7-b150-94c1e9feeff8','719f1147-b9ed-45c5-99c0-b1467885c18b',82,142,7,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.166','371514006-3-5'),
('1b3f5730-ee00-426f-a187-8408ae7fb70b','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-54'),
('1b40a238-e47c-41a6-84a5-8e7701312e91','841f7f01-a7cc-440b-859e-dea7f085dd74',79,107,56,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-19'),
('1b44034c-ffa9-4fa9-9599-27bf58f10310','3a133e35-97e7-48eb-8cf2-15d2cfe04475',180,40,30,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-2'),
('1b44e7da-0245-4d2e-aaa9-246dd7ae4dc5','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.212','412574307-1-4'),
('1b453d01-9a9e-424a-a8e3-cc4d8fb20799','439a468d-6cbc-43e8-aa94-cfa411e4fd3a',57,82,105,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-2-1'),
('1b4cab7e-0e44-47c2-89b6-1523cef238f6','a94a556a-77a8-41f7-8103-f5eed51f9a91',57,60,85,0,'2025-02-23 12:39:03.931','2025-03-08 13:57:38.797','221966080-1-4'),
('1b4cd023-4d6a-428a-9030-c903f0a0e9eb','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-10'),
('1b4cd132-65e7-4dd6-b399-85936b99d74b','4bf4c188-ebf9-429a-8ede-d43489efe0cb',240,104,17,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-1'),
('1b51b3d8-cece-40c5-91b6-7767401af764','c718bd33-40e6-413f-9c77-4b72f9839344',270,114,8,0,'2025-10-08 14:44:20.307','2025-10-20 06:33:02.574','765484490-2-2'),
('1b526a31-fbf2-442c-8ffe-5b11dc217ca6','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-2'),
('1b527fce-894f-49cb-8062-e5adae1efe2e','f52b306c-3f53-46f5-8bed-8c43d5e71dd8',60,60,90,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.647','644377995-5-1'),
('1b52b760-0509-47a1-a4e3-114fc0eb6f4d','f3414f51-92da-4967-b108-6baad5cdd798',95,89,5,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-4'),
('1b52e780-b7c7-4595-8dbf-ee1741cd575b','7ba47169-83ca-49a6-98fc-6ef1a1990eac',200,160,3,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.523','982630175-1-3'),
('1b5b02fb-e2f5-4311-a009-99b738b9fdaf','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-26'),
('1b5c027d-50e4-497f-be73-8d50f8d93d6b','a135c145-15f3-450a-819b-e82b427bc978',45,5,220,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-12'),
('1b5db992-d71d-474c-a172-db7b8521d47d','af53dbaa-15c4-4117-8048-34fd042df2fb',53,82,14,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-2-3'),
('1b5e561e-27b7-4828-a73d-1155fe6065f1','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-6'),
('1b5f84fa-6525-461a-9958-916584a51fd6','af69c5a3-87d3-4548-a650-720b69a4fc69',95,230,70,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.819','614143415-1-4'),
('1b6101cb-6a83-4a49-9af5-4cb6f3939e11','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-170'),
('1b61d112-7d9c-4d6b-bfd3-96544ababab2','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-10'),
('1b631c83-b9b4-4385-bf9c-8a437bf1424d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-136'),
('1b6af49a-3e5f-4586-b4cc-1aa92ee60431','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.558','2025-01-06 07:00:46.251','735565748-1-3'),
('1b6daa6e-6a48-49a9-8aa1-0beb873b53a6','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-5'),
('1b73057f-6b9c-4924-9545-886e2f1d8a55','d8b997b4-f874-47ea-b9fd-067dee0368c2',107,228,7,0,NULL,NULL,'515128101-1-3'),
('1b757168-c223-4375-8070-2c36d03ca423','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-93'),
('1b786692-0e1f-428d-a10a-04ff9cb40542','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-106'),
('1b790c94-3e1d-4643-82b4-7a14e6cf30a1','d2f8d58d-42ad-4705-b1e8-a666af927fa3',97,11,100,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-4'),
('1b799eb1-ab71-46ee-b03d-8231640429a0','407cb3c6-0c94-4574-9a03-fe3dd44db743',93,93,51,0,'2025-07-12 09:20:09.548','2025-07-26 10:05:02.451','221598709-2-1'),
('1b7c269e-f777-4a16-ac99-be06f7caa2f4','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-28'),
('1b7ddc29-cb2b-4742-8533-226b5cab0e94','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-10'),
('1b7ed54f-4065-45b6-bc82-0f1421cf0fd3','9bdb28e0-34f9-4183-9232-5dbb14529176',0,0,0,0,'2025-02-27 16:45:16.849','2025-03-14 11:07:30.043','644823609-1-1'),
('1b802273-66ef-4660-91e0-147f3ad44653','043a68b3-cbde-4c54-b5a1-246e3bc84742',83,87,7,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-1-1'),
('1b83ffa0-8c57-472c-b1b6-c79875f3c755','0009aeec-e682-465c-b701-363a3ef377a6',132,125,12,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-16'),
('1b847e81-0a74-413c-94e6-3dae348f8043','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',92,100,5,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-24'),
('1b8b2630-0a79-4f37-b5a0-31eae181d56d','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-1'),
('1b8c774c-1220-4ca4-8802-05e53a7b2c68','b698562e-f03d-45ef-b2ac-535d8edcf5c4',58,71,100,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-3-3'),
('1b8e499f-249f-462a-a546-ddc65e128181','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-2'),
('1b8f6f81-4c6b-4ba5-b197-b3010865b8cf','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:14.856','248284003-1-58'),
('1b93fde8-2dc3-4826-9a88-63717f3a197b','cb427bf7-dee7-421c-9b78-ea0d4c15e34d',35,26,13,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-2-1'),
('1b9d331d-7006-4f40-92ac-ed3247fcc0ec','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-3'),
('1ba2f017-cc3c-4791-ba31-20694414a579','2ea7f945-fdbd-4103-b8f5-8c2aeb402519',130,132,10,0,'2025-04-15 16:01:18.799','2025-04-28 11:59:03.141','644334455-1-1'),
('1ba73d6b-8c3d-478f-8a00-7a77e8fd4167','3da17157-28be-4bae-8dcc-745d0e93e591',78,4,205,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-34'),
('1ba9c064-8ec5-4ce1-a39d-0ca63ec5dca1','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.476','2024-04-01 07:52:44.957','478339779-1-11'),
('1bab2f77-4d08-4c33-b6ca-d855e3365dfa','91bd5cab-6fcd-41cb-966e-9b9d6f32b15f',51,51,77,0,NULL,NULL,'221196305-1-1'),
('1baef124-996e-4f1b-825e-7deef07a040e','979b930a-f53e-4986-8714-bc7b10a23a95',160,95,67,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-3-2'),
('1bb04f11-8ef4-4f57-a83f-cb1990b83c37','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-12'),
('1bb8319d-4d19-4e82-a8eb-7d7069a137f7','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-61'),
('1bb94a43-a441-46bd-9d5e-1e9da68af58a','e65249b7-09e7-4653-bd04-1233b551b8c8',100,65,95,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.175','319316615-1-4'),
('1bbdf161-3a71-442d-aee6-a97d06eef8e6','9a609c64-d5d7-47f6-a875-badc8cca1ff5',100,130,65,0,'2025-08-22 20:28:35.968','2025-09-03 06:12:11.936','644796083-1-2'),
('1bbe8164-3b29-49f4-a83a-3a74767ab20b','f88c3e53-b711-4bcb-aa3d-9543580054cd',23,29,204,0,'2025-06-11 13:14:29.501','2025-06-22 09:26:27.305','107623614-1-4'),
('1bc1a60d-4fb9-445f-8f9c-f41ed28657cd','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-5'),
('1bca3eb6-b70e-44d1-9751-0cc7680a3bea','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',52,6,210,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-4'),
('1bcc4084-811d-4cc2-8553-befcd74168d9','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-162'),
('1bcd5208-9133-4bdb-bc20-f80a9388d7a1','dc55ce2f-d7c2-48b3-aff6-8da9dbf95cc6',76,6,128,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-4-2'),
('1bd32760-e3ff-48aa-916c-e7767e5ffd9b','457dff53-59ea-40e0-bd36-d823bc862d01',75,70,80,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-1-1'),
('1bd43a43-bf9f-4bf1-b1a7-54c76c469415','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-58'),
('1bd94d2a-7036-4161-9cd3-ca89257e589f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-38'),
('1bdc5825-3e69-4fab-be19-d88b3ca80d1b','e86f2f3d-8f0b-4894-8c39-9063af830231',57,225,9,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-2'),
('1bdd6e5b-d95c-409a-9da3-9bea76e63244','056a9790-92fc-4518-aea0-4e028de531b0',210,97,15,0,'2025-08-07 16:52:37.616','2025-08-21 08:12:52.703','437313362-1-2'),
('1be10500-4bb6-4e27-846e-640e8522caa3','e54150ef-c37e-434a-b822-2ec057a11543',97,92,60,0,NULL,NULL,'745189997-4-1'),
('1be181d0-1cdb-420c-a570-58ee004d1baa','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.284','412746738-1-86'),
('1be47f6e-4829-4e6f-a2ea-a2e5e37de88f','490c2bb4-adcc-46dd-b62c-c66daac6662f',0,0,0,0,'2024-04-08 08:57:32.780','2024-04-30 22:31:16.671','412679110-1-2'),
('1be54b19-3b7a-4a85-b22c-cae17f5abf73','047bf09d-242b-472b-97f8-46901b73eea9',46,71,2,0,NULL,NULL,'428905379-1-3'),
('1be6dd02-289a-4277-ab83-fd6ca8cf5fbb','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.277','223379282-1-1'),
('1beb0c22-cb6e-44ae-aa90-6babe534ba63','5032b9d1-12b3-43c9-be24-f1af560c5e03',0,0,0,0,'2024-11-15 17:06:26.237','2024-12-01 12:27:55.685','745445888-1-4'),
('1bee0b54-e968-481e-b5cb-e08abd4eac37','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,70,5,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-10'),
('1beef943-83b3-4b9d-b653-d90de5431811','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-5'),
('1bf290ab-395d-4ac5-a0c0-c8ee8466e4db','2eee4732-1804-4c17-a865-bc66f2ed3520',43,43,23,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-7'),
('1bf7d135-97ea-4968-951b-420db7fbf840','fb2833ed-b33f-4336-b2e5-bb576edd765a',0,0,0,0,'2025-02-20 12:15:00.167','2025-03-04 15:38:06.963','982342488-1-3'),
('1bfedb58-3ec2-41ec-9f2d-35e4a647236f','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-1-4'),
('1c042374-e81c-4891-b997-c6c92a92f33e','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-3'),
('1c046b98-d101-464c-93e7-a17359d581f1','7c7686b8-8f65-4271-acac-1585b7485563',108,84,73,0,'2025-07-29 12:57:25.959','2025-08-12 06:14:45.105','412395222-1-12'),
('1c0906f7-5af2-479c-ba1f-ee42eb7a89ee','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',82,93,63,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-5'),
('1c0a1b5d-277e-4713-9133-52da028b4638','91c2b8db-b8bf-4f8b-839b-0f2531db54de',0,0,0,0,'2025-02-03 18:19:56.067','2025-02-11 09:34:09.386','614339204-2-1'),
('1c0b28dd-02e4-4b20-9915-ce6d74d3d928','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-1'),
('1c0cbb9f-83ee-4305-8bf6-277950733368','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-26'),
('1c0f5c3c-3d36-4a20-bb6e-36b6e0684991','c46208e2-2c19-421b-bced-7443bbea66ef',40,40,46,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-2-1'),
('1c105002-fbc1-47ec-a8c5-4b9f79d76f02','3c7929e9-636a-403f-ba4c-04d76c585d38',0,0,0,0,'2024-03-31 17:55:11.600','2024-04-12 07:16:54.576','478263896-1-3'),
('1c143e58-3078-45a3-9f21-56e7e05f3364','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-166'),
('1c14d13d-4dda-470f-aabf-b286b09cc713','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-16'),
('1c15c2af-2ea6-4dfd-b533-789cf607ad85','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-178'),
('1c16b4d5-e80e-4aae-814c-12b50a892d8c','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-2'),
('1c21f928-550a-4e5f-ae54-862b959d05af','845cd508-3836-4f7f-899b-bf28d0f90884',51,17,70,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-3'),
('1c24418a-92de-4459-9546-db1e86e1211e','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-7'),
('1c26ca05-e8f5-4a03-bad9-0ab0f691c949','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-23'),
('1c287197-c824-4d94-9409-66ff11f94755','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-107'),
('1c2a3199-f88f-48b4-b90d-a4e8dd546a94','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-135'),
('1c2f99ca-2e37-4a65-a865-7d103020fc21','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.746','22162472-2-2'),
('1c37dd68-ff09-48f3-8ca2-a2b6711fba89','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-3'),
('1c3a61d2-8459-4cd7-9631-c8a52f2c304a','256d7da2-dd55-4a96-ad4d-cb03e9247467',26,160,200,0,'2025-10-08 17:43:50.389','2025-10-17 20:57:20.132','614901187-1-1'),
('1c3c14ce-2e28-4994-9bb5-c7d10b4bbf2b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-8'),
('1c3e8802-d8cd-4505-a7f9-e292889640da','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-11'),
('1c41117a-12bb-4e76-8eae-4f1b08f07cd9','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.585',NULL,'412400536-1-7'),
('1c4146b7-210a-4144-a4b4-773066695e01','a40ab67c-f6c6-4228-b875-7adeb6366544',100,28,87,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-4-1'),
('1c415df6-4779-48c2-8e75-16f67fe81860','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-25'),
('1c43ed30-943d-4b16-896c-75cdf47b079c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,2,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-9'),
('1c440396-de73-4960-be3d-4dc5f460aa04','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-5'),
('1c469037-9dee-4526-bf80-994172831abe','75edd126-ea16-4b60-87c7-d914b44daac1',153,22,17,0,'2025-02-13 20:43:40.237','2025-02-25 17:03:24.823','428103279-2-1'),
('1c46d044-a126-4eff-a574-eaba4085f318','5598c3c4-7b30-49fc-8997-d966fbd95fbc',37,108,238,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-3-3'),
('1c4d4654-70ff-4815-be10-013802fe784b','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-9'),
('1c501208-ef32-44dc-b0bb-75c1d1aa5591','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-9'),
('1c532a18-44e1-4980-8ae8-d0bf04dee970','bd7ba9b5-8269-4522-b579-d69c949c4a64',101,201,28,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-6'),
('1c56a141-50d5-4dee-960a-bbb4c1145e1b','808a4f1b-793f-4a15-808d-00c26a26c166',90,222,2,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-5'),
('1c5bf2fd-3271-4ab3-8b37-8063c501f2b6','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-1'),
('1c5d22fe-73ba-463d-9e35-7f433fcbc9e5','aa7913d9-4692-46ea-94b6-16deac482855',90,75,28,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-5'),
('1c5e2078-3bdc-4dd5-8fee-eb26a37676ec','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-2'),
('1c612a24-47f2-49fb-af74-a2099e3a04dd','9d7979f3-a35a-4a64-97d1-4ba973786029',66,11,10,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.005','100655378-1-9'),
('1c62ace6-d26e-47af-9dd8-99346648977e','e89e7d75-4967-4c63-9f73-981469e531af',240,56,61,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-6'),
('1c62d64f-4c0e-446f-9207-a6d18a96cf41','9021f98a-5560-40bc-8478-4da85897fec7',40,40,43,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-5-1'),
('1c66f30e-a5d7-4fda-bbdd-fd30652ac5f6','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-126'),
('1c66fd3c-c4cb-4ae9-93ed-cd69e3b283db','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-4'),
('1c6972b2-e1a4-4ba7-a880-0b3a9530ccb9','0e92c59b-93d0-4308-91ce-3965bb186203',57,73,227,0,NULL,NULL,'428180919-1-3'),
('1c6cf449-9b1b-4658-9f4c-c06614107d69','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-3'),
('1c6f25d2-fe5b-406f-a5fd-695bca24902b','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-1'),
('1c70bc63-5b10-4b59-97d1-115a323e3b55','6588ed6d-edc3-4416-a491-7dd64da792c9',94,183,75,0,NULL,NULL,'371215833-2-1'),
('1c735135-7e59-41fe-8467-b95b90bbc7dd','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-11'),
('1c759d15-2148-432e-a678-66d555ffb57e','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-3'),
('1c7710d0-0a22-4238-91f7-185575ffa83a','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-99'),
('1c79aba9-415e-449c-a362-d8ccf1250bae','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.815','745645972-1-7'),
('1c7c6976-4cf5-4154-a11f-39c8237c6136','48327c16-88a6-4dd5-9dc6-0d88b77a9baa',43,43,78,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-2-2'),
('1c7e2867-b44d-4b6c-9c74-305437c3fe73','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-9'),
('1c7f10ac-230e-4a8b-a383-4c6a8dbe8e8c','fbc3ad5b-35bb-4508-8b32-91a16a619b88',90,16,161,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-5-3'),
('1c7f5d73-bc32-4a86-b5be-4d1e21c2f21e','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-34'),
('1c7f9e13-5351-48d5-a7e0-4f6dd5d32ef2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:31.989','248135683-1-246'),
('1c81ee70-5005-4573-972d-a8dc08c9e42e','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.876','412378459-1-18'),
('1c825eb4-9d0e-4671-aed7-f701e3ddcf99','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-220'),
('1c841044-183d-473c-babe-b0b09d51af37','3268c72f-f164-49fe-b81b-8e7dba188814',35,35,190,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-2-1'),
('1c879db9-6c00-4eca-8502-8a0c7c2e9aef','49b0262b-aeb4-40b0-bdcc-b5461a64c972',69,9,253,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.532','465237157-2-13'),
('1c8dad2d-ff36-449d-9a65-1dea6a187b16','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-16'),
('1c907219-2ba3-4a2f-9fb4-2d4036aa7ee2','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',38,46,202,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-7'),
('1c95c49e-34f0-43d3-9eff-1664eaf88c85','d1a94bfe-d49f-44a6-af36-335cd07624bc',83,101,57,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.404','380417164-3-1'),
('1c971d1d-cb49-48f8-aa79-dde9dd40a4c0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-85'),
('1c98cf51-afdf-46af-a36c-b3e136da9620','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-8'),
('1c98f529-08bc-42f9-910d-9b58ac3d8703','5567c05e-4eb3-4a67-8e84-862334c1e476',52,52,84,0,NULL,NULL,'221383692-2-1'),
('1ca244a8-cdf9-4fe5-9250-ace045189bc2','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-5-1'),
('1ca33047-d55d-41ff-aa11-bed37a59e9cf','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-2'),
('1caa6a8b-3a17-4194-bdfc-94960bf4860c','e89e7d75-4967-4c63-9f73-981469e531af',98,63,12,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-7'),
('1caaf14e-093b-4f26-bb65-6471d8d98354','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-7'),
('1cabe03e-1d46-4c23-9bd2-12bd7d2883ae','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-4'),
('1cadfae2-1605-4c53-b15c-05574d06046a','2832d686-b584-4480-a3f1-7c4ec1b6f7ce',64,57,23,0,NULL,NULL,'910904581-1-2'),
('1cb0f93c-384b-42fd-b8ef-fe6cd7c0351a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-48'),
('1cb684db-c7ad-459e-af59-4df3d59de0a1','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-3'),
('1cb74d72-aa44-4b07-b5c9-2b9730452853','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-4'),
('1cb85373-82a5-4a96-b043-b039f8e492d9','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-2'),
('1cb95083-e66a-4ee8-9ad2-d04102e8b13f','c98f6188-56c5-4870-be97-be71cf95f62e',73,82,10,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-17'),
('1cbbd0a8-5371-499b-8448-8f3669db9df7','2b3a0cfe-c787-418f-bf8b-5ce003d288ff',75,57,103,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-1-2'),
('1cbc34e6-bdad-4eda-a97a-ab84cb1edeb7','c1a31a07-5113-4703-99ff-14d4a90ef1ba',70,219,5,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-2'),
('1cbcbd1a-6609-4c45-9f53-b7814aa46760','12b37afa-91dd-4e2d-af06-ea0c3edaf49f',100,118,70,0,'2025-10-22 13:07:10.126',NULL,'644312365-1-2'),
('1cbe84b4-2c94-43de-ada4-05ab31097c6c','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-37'),
('1cbec83e-94f0-4b2f-bb80-781dd39e34d4','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-17'),
('1cbf22bd-b17a-40ca-9512-6b97fffeb687','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-2'),
('1cc0d3e7-9c49-4315-9c61-76fc1c9df636','a455ba66-b417-4781-a6f2-6fce1b8bab23',37,37,207,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-1'),
('1cc1dd64-fbb8-452d-b72b-ccfbcf89dc53','73669d80-682e-4907-9777-0f955189f4bc',20,50,10,0,'2024-03-18 07:30:48.607','2024-03-22 07:34:46.866','501901219-1-2'),
('1cc4d6e4-6ea6-438d-9921-0ec982845466','9950fe74-2437-4188-83e7-37a1e09fa6f7',50,15,82,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-3'),
('1cc55b3b-f4b9-47c0-a85c-9d162fade9ee','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-3'),
('1ccbc22d-c5af-421c-8dae-76f911769eaa','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',42,78,20,0,NULL,NULL,'478350685-3-1'),
('1cce7cba-7cd3-44f5-889f-77fc61b41429','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-73'),
('1ccf3927-b4ba-4601-8120-41f1ccc19bc8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-34'),
('1cd31bf8-0deb-4d75-b033-8eb760cdca73','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-10'),
('1cd38a25-004c-4775-80ad-718ef15e4ca0','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-3'),
('1cd558bd-56f9-45e1-824e-c1a55280ef99','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-37'),
('1cdbbcff-c165-4322-ae3a-da26b7a1f687','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-3'),
('1cdda910-b527-4589-bfed-c564374c3f9a','0cec28fd-4d59-4786-8895-12736ccf55a1',60,61,90,0,'2025-07-17 09:36:44.598','2025-07-24 09:43:16.475','644682734-1-4'),
('1cde86e5-4b8a-4eae-a31e-7debaafa33f3','ba4d79b7-2f50-472d-b8a3-175425785005',95,75,65,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-1'),
('1ce05ef0-8b47-4ade-8029-adfe7b37f1ab','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',53,75,27,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.535','614766744-1-5'),
('1ce1a9a8-2014-458c-b144-2d090cee6590','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-48'),
('1ce7e845-0401-42af-9cc9-fe3a4b1100e1','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-109'),
('1ce95aab-9ca9-4a5e-8a2b-00d253a360ff','2d715c9d-be1d-4641-83a0-5f2fc0061517',52,76,101,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-1-1'),
('1cec99d7-5e1d-47fd-8f10-4bb280d8e2c6','0ff914c7-1691-4651-80b7-e820501b0c32',44,56,11,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-1-3'),
('1cf34a86-1eb1-48a0-b99d-778f1c874e42','6f7a6469-dc9b-4d75-903c-d0c86a5d5d92',100,200,23,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-2-4'),
('1cf41137-3c28-4857-8190-de004ea993ef','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-105'),
('1cf56f95-7e70-4ba7-9a8c-4a525af18e9b','a355d7a8-930d-4829-b2b0-1688db90a2ba',50,50,80,0,NULL,NULL,'786156168-2-2'),
('1cf6f5d7-60cf-47a2-8f27-19b811016206','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.147','2024-04-03 08:28:16.531','248902824-1-1'),
('1cfa803d-e513-41af-bdb7-44401e51969c','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-4'),
('1cfc142b-f4ff-4331-a7b7-8616638cffb3','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-43'),
('1cfdb3f3-fbc0-4717-b538-cc854c48fda5','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-1'),
('1cffbcc5-879d-46ca-97f7-442e22edd195','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-4-7'),
('1d01f6ac-0f0c-4583-8c1a-2937ae3b3e33','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-180'),
('1d075201-96c3-4d3c-87e6-f6bafad34ea0','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-55'),
('1d08690e-ea12-41fc-9dbb-5553f8d584ba','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-2'),
('1d0a8d86-01f5-421e-a1c7-f5e9f2ff0231','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.295','223444495-1-89'),
('1d1486e6-33f7-47b9-923a-eb4ebe2d773b','16ee37cc-f44c-4652-a3d9-37ff204f5538',0,0,0,0,'2024-05-08 18:43:19.572','2024-05-21 18:45:56.505','231455458-1-5'),
('1d14d6c5-17cc-40d6-a332-9cd06edbca79','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-2-2'),
('1d19e302-2dab-40a5-b8be-e4e59e8bde0d','8e61c899-09db-407c-9715-f3b856731f08',86,86,7,0,'2025-10-25 08:58:56.097',NULL,'486741087-2-1'),
('1d1cab8e-0d09-40a8-959f-54f6870ef5c7','88611d6c-52ed-4192-8e9a-11fd1beb3641',0,0,0,0,'2025-10-22 13:06:45.437',NULL,'478168587-1-1'),
('1d1f6715-00ae-4377-a03a-98a1778032c4','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.296','2024-09-13 16:38:19.762','41283002-1-3'),
('1d209da2-38fa-41f5-a499-5429ef034b50','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.494','221949733-1-4'),
('1d213c53-e5e3-45d1-91b0-b33f998bb7a1','866f9922-8932-4f88-9ae8-4b3b087f0b0e',75,80,42,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-1-1'),
('1d239286-0270-4d6b-933c-1aadb7d04067','efb12d78-a6d9-4ac9-acee-1e0a5f965fbb',94,69,159,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-2-1'),
('1d2411ac-e91a-49c3-ad59-5591129c467f','b8685301-df5c-4563-ba32-b1155cff246b',51,51,77,0,'2025-04-30 14:29:02.569','2025-05-14 06:37:16.241','221947357-2-3'),
('1d26c2f7-63d3-4b8c-a2d9-32a067d66c37','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-202'),
('1d29ca45-dde0-4467-b196-95d1be504a20','81ff8563-ab6e-4bad-a81d-a451ba94d6a6',107,90,68,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-2-1'),
('1d2c4daf-a11f-4891-8929-a37de7cf7573','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-113'),
('1d2fa04f-9837-439f-84e8-23d63a7116d4','571f94e6-7fb3-48e1-a3cd-dd123cdbe09c',56,43,83,0,'2025-08-14 08:21:25.981','2025-08-25 07:11:49.870','613378961-1-2'),
('1d33a112-4155-4df0-8160-73e9c117d2c0','b6b84af2-002e-42d6-8888-913741571a16',35,210,101,0,NULL,NULL,'598944852-4-3'),
('1d36020a-26a8-44e0-9a9c-46b1fd05a4f5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-77'),
('1d38fd75-25f2-4717-9fb9-61388b2a5a57','0c05a97a-db7c-44bd-92d4-cae9f277481f',25,43,50,0,NULL,NULL,'598697614-1-1'),
('1d39340f-38af-40a5-9889-6f6465f880d4','96449af3-c272-4a90-b77d-0790552dd455',42,65,65,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-11'),
('1d3b256f-a8c6-49c3-8f37-0a0323c06180','dcd864c7-ef37-45ba-880c-976ebda30365',100,123,60,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-4-1'),
('1d3d8691-3662-4c66-bdc4-9e8a128d42bb','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:15.957','248284003-1-1'),
('1d3f5368-3da8-42d4-b02d-446384e84c02','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',95,139,30,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-9'),
('1d43f629-76d9-4495-93f3-b6386844fe89','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-47'),
('1d445ddf-5504-4841-a83c-3a81a6d02e15','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',70,48,15,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.683','614725757-1-6'),
('1d4512b5-5831-4cd8-b63a-9bef93737a1a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-213'),
('1d45901d-b6c0-4b38-a104-252496b1d370','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-156'),
('1d45d2c8-40f7-4a93-9cd7-f145aea4313e','3988ea20-dee7-4b87-8731-bedc6f18d112',168,69,7,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-1-2'),
('1d493f0a-fe33-4729-bf73-23b2783f6d2b','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-9'),
('1d4c8136-e6da-4f2c-8859-aa3c106751cc','6e59bf3c-4674-48eb-95d4-e38eac38066b',60,12,41,0,'2024-10-23 14:11:53.676','2024-11-04 08:40:33.502','501786631-1-4'),
('1d4ee995-162e-4cdd-af53-9396347c972f','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-34'),
('1d505552-6cb2-4175-a2fa-9de927a26245','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:23.483','248135683-2-50'),
('1d50a2b4-1238-4a18-adc0-e71e227b0da6','8ac95ed3-d833-478a-bb81-b1337612bde0',140,6,80,0,'2024-03-23 08:36:18.109','2024-04-03 08:28:41.117','982562609-1-1'),
('1d520f76-0b0e-4b23-93f1-c4493496b6a0','f59aba8d-2f5e-4816-b322-ff557edd32f8',93,169,15,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-2-5'),
('1d5340ef-e2c0-4524-94f1-cb7c83c49a3b','b79e14f7-bc81-4d2c-b54e-e10324f46985',51,51,77,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-3-1'),
('1d538984-427a-4497-98fc-25b6be7b4fec','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-1'),
('1d5ad37a-748a-4976-a514-3da216155064','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.722','478833375-1-7'),
('1d5c418e-727c-4c65-8524-2bdb2ef7a6f6','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-203'),
('1d632d14-08bd-4f7e-8e6d-a9b1ea592ca6','4301b768-4818-4e74-a6d0-12a33474f5c6',74,74,3,0,'2025-10-25 08:59:16.418',NULL,'478450171-1-3'),
('1d687a89-eb3b-4769-b2e4-c4ef22ed654b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-79'),
('1d68a6f2-78d4-4847-a5e0-da0d7c7bbefc','9b637b9c-c2ce-4522-a986-3c8fdfd10d6f',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-5-2'),
('1d68fbc3-c4dd-4011-960e-f16cb123c6b0','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-2'),
('1d691380-0522-4ef8-9b28-2e73e322d78f','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-28'),
('1d6bec22-49d7-412f-89a0-c71d4d2c8fd1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-81'),
('1d70ca6b-acdd-4e80-a202-8e254c8c2bdf','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.385','412315808-1-93'),
('1d7549bd-fab1-426f-992b-6ac647205857','f88c3e53-b711-4bcb-aa3d-9543580054cd',41,200,4,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-19'),
('1d7b39b5-aadc-4e14-888b-9eeb425d63a8','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-61'),
('1d7ba584-b844-499d-b117-a68d7471ac1f','38d02296-46cb-405f-9d09-5974d7326df2',0,0,0,0,NULL,NULL,'371258376-3-1'),
('1d7cdd95-6dba-44c9-b022-6481a9fe40b2','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-5'),
('1d7db3ca-01ca-4f55-aec1-a8b383ae09cf','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.742','2024-10-08 09:25:04.325','745699153-1-3'),
('1d809094-708a-47a2-a495-a9e5ff5f72a7','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-4'),
('1d80b63e-93af-4952-be96-7cdf9e271452','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-4'),
('1d812ae1-f7c8-4376-8838-485c690c96b5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-33'),
('1d82d8d8-4fc7-4bb4-bbe2-a7843d3988ee','980127cc-cb0b-4694-b945-70457774323b',215,88,20,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-3-1'),
('1d8304df-3c81-413e-a984-536b4c0a74f9','c080623b-df50-459f-92a8-eb2eaff4030b',70,100,55,0,NULL,NULL,'478350685-6-3'),
('1d8406b6-6f4e-42d3-83de-8f16a298fff5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-230'),
('1d8417cb-81fe-4f72-8f41-23d1bd29fe48','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-12'),
('1d8498fc-be4d-4dbd-8223-9df0bc9300cd','f7591348-7d95-45d1-8a05-cc0376cdc4d0',71,29,8,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-8-4'),
('1d85089e-e901-4d6b-bde0-60aed053a1bd','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-5-2'),
('1d85ebad-a925-43ae-b6ab-fa601965e52c','03b4a2cb-abf2-4d84-85e7-366794ad4504',94,94,85,0,'2025-09-16 16:29:11.874','2025-10-04 13:57:19.734','7454878-1-3'),
('1d8bd9c7-8be3-409e-b1ce-26bb28de3a53','dda0b7bc-55fb-4b7f-ae16-27ef12800819',65,120,115,0,'2025-07-02 12:43:47.546','2025-07-18 05:16:04.066','371186967-1-2'),
('1d8f9b3b-e3a1-4f24-8d98-87cc8932d15e','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-4'),
('1d90645d-56f4-4c01-9fc7-28e19331030d','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-7'),
('1d91d0e6-a7d0-4409-9999-2edcec72ed4f','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-14'),
('1d9205e3-115c-4ff7-96eb-d2c0ef7a7ab9','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',65,96,80,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-7'),
('1d940dc8-7406-46fc-9942-9e5b3723e10e','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-2-2'),
('1d974e81-9e8d-4c4e-9620-e58e40d26a93','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-9'),
('1d9961ff-5599-458f-b6c4-30aec0df3f73','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-4'),
('1d9a0313-a211-4441-ac9b-b48509072b39','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-144'),
('1d9ea688-0432-4331-99b6-d33dc3393547','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',160,200,30,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.684','614725757-1-7'),
('1da3a475-5b48-437c-9825-953eafa82366','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-10'),
('1da43ce9-42b8-465f-8866-627fb830a351','cc886e6e-44f1-40b8-ba47-5a6876af765c',56,83,108,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-3-1'),
('1da589e7-ef46-4e1f-bdf3-54674482186a','95ce5cf2-ec3c-4eda-9744-acbeb74d1b7a',7,97,198,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-1-1'),
('1da613d9-7599-4626-842c-0b084037844d','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',57,12,95,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-3'),
('1da7b0aa-ef4f-4704-b310-7efce4438868','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-14'),
('1daaca9b-b543-4cd4-a3cb-a42cd254da69','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-46'),
('1dab6a45-f23e-4dc9-8cb9-c46872248b5b','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-60'),
('1dabe005-9246-4640-bf67-f23fafad6f9a','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',85,18,22,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-3'),
('1dabf0d3-dafa-4e8f-bf41-255c2b0f8e81','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-59'),
('1dac40ae-493b-4178-a153-68ba306e0706','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',100,29,43,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-3'),
('1dac8b76-f7f7-450d-aa84-a4e4ffe361c3','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-8'),
('1dacdca3-ded8-41ab-a557-50c7df782775','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.503','2024-05-21 18:46:13.113','734627626-1-3'),
('1dacde35-b551-4fbb-9007-c3c9cda4e2c7','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-1'),
('1dade670-1c40-4ece-8ce9-a94141e4539f','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-2'),
('1daded1c-970f-4efb-8585-29d3d17f80e9','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-5'),
('1daeacc6-be38-48a6-b844-16b8bc4240cc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:16.836','248284003-1-125'),
('1daedfea-d8f1-4617-87d3-f1ef40e38e91','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-11'),
('1dafa769-0b9d-4ed7-b5fe-3c9527791f99','1f9ee26d-ee30-4f8e-ba4f-8f1f3e46bd8e',0,0,0,0,'2024-11-12 16:16:00.770','2024-11-22 21:22:31.805','248904478-1-1'),
('1db005fd-f3d9-4219-9269-fd7bcfd1979d','ab16c37e-6ebe-4e09-b119-440ce867c25c',75,105,120,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-5'),
('1db53665-c0aa-4c30-903c-c454b4ac2bea','5c487410-f906-4e14-a077-9f060026719e',227,39,27,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.267','703183067-1-2'),
('1db5932c-691c-420d-a3ba-32149b48c981','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:18.325','248284003-1-24'),
('1db923c4-a9f1-403b-9778-3171099c39ca','e8b58cc1-698b-4364-ae95-f00b90174c08',6,89,203,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-4'),
('1db9a0a3-7e84-4488-a8ca-f6cba03361b8','a4f356be-d4f4-498c-9119-e35100832eb1',80,80,65,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.015','982314530-1-6'),
('1dba304d-7cc6-4639-8769-ef2805952baa','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-9'),
('1dbba2f6-0ece-4666-8247-efa6c8e3cef5','cde2b645-2cf4-4ca6-9d59-ef733217c501',130,60,55,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.325','973510341-1-3'),
('1dbe9438-a673-4a8f-b154-768b6c1381db','f95ab67d-ded1-4d5d-b1b1-992f9b0fb749',0,0,0,0,'2025-02-15 13:31:51.949','2025-02-24 17:29:14.404','47838085-1-1'),
('1dc09440-1dfa-47d1-a697-8d053ee26cf9','855d727d-98db-45fa-811c-d503dd78babd',52,65,81,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-1-1'),
('1dc3e1ad-ae0c-4de3-91a9-88864cfd9bb9','2027d4e3-00a8-4050-97b9-4dcf16140122',38,30,10,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-6'),
('1dc9302c-f2c1-454f-9dac-33d6ffecaef7','c71fdc71-df3e-48af-9323-d534b0931ff1',43,8,80,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-3-3'),
('1dcb5bb8-51c6-4be3-9a4c-5bf04018c7a2','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.909','478949141-1-7'),
('1dcee650-ecbb-4139-a6c8-4a790f325c20','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-2'),
('1dd1f5b5-8049-48af-a580-bce383b9694a','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-35'),
('1dd73e29-f9d3-4cb6-bf71-d20182b5d881','8ca62177-fd4f-4b97-8db9-1855dac0207f',90,70,42,0,'2025-07-19 07:52:32.811','2025-07-26 08:30:20.850','248549362-1-3'),
('1dd7e4f3-b689-48ce-9753-1a05e8425eb8','d1606eb5-933c-4e61-b7ea-5f79b332691c',40,110,230,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-1'),
('1ddad65f-e048-4b59-b9d4-6bb29ca58b84','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-6-26'),
('1ddf703d-cf5a-4228-bfb6-9e5e3548e0ed','833a3da7-2e08-41e5-bb3c-06e3df596438',0,0,0,0,'2025-02-13 20:43:53.415','2025-02-24 17:24:29.598','478560084-1-2'),
('1ddfd3f5-0ff6-4d09-ac82-59a866fcd624','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-116'),
('1de2551f-c804-488b-a73e-24b01a7ad9fb','494fd125-9e91-4803-a945-381b0444857c',95,70,156,0,NULL,NULL,'449983232-1-1'),
('1de3619d-781f-4a17-9f07-c608439d985d','53025d92-f019-4f5d-9b69-68a3b09bb7bc',7,17,151,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-3'),
('1de4ede3-c98e-4c54-a792-5404d6d70a3c','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-8'),
('1de60444-acdd-4568-a6d3-5c9564830e2f','ab16c37e-6ebe-4e09-b119-440ce867c25c',90,75,100,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-6'),
('1de692bf-fa21-4b44-a55a-94eeb7e657e0','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-2'),
('1de8434c-25fc-4767-87d9-1d5ecd49d3a7','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-5'),
('1dea8650-56ca-4b0a-b11a-0bc8e629a75a','5e9ac631-c11f-4693-b962-64e3d00d41d1',97,65,225,0,'2025-10-25 08:59:16.419',NULL,'478450171-2-1'),
('1debfe60-ac00-4c76-815d-455428e6a81c','71452714-b180-4e00-b2a8-b6fefa0c5650',96,57,82,0,'2025-02-09 09:51:58.172','2025-02-15 05:22:04.063','268145141-1-2'),
('1dec57aa-6fd5-4216-84e7-0acaaa5b7f7a','19d55e9b-f9d2-4d64-9532-05620ae130e8',122,78,7,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-2-2'),
('1dee554f-1fad-4d45-86aa-3e0309c10394','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-6-3'),
('1df7a92d-d987-4a10-b698-0043dbc2cbc6','8c914f01-f6d0-4909-9906-64f504e70316',65,133,31,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-1-2'),
('1df8a055-3f9a-4d9d-846e-0617f63ea64c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-53'),
('1dfb2af5-d160-4db3-b9a5-761dcbbecb65','7c09f776-ffb6-47c8-8828-61389547804e',208,97,30,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-11'),
('1e0059ba-dc6c-4ab6-ad41-c81b58eb2677','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-9'),
('1e01c92c-8c07-4f58-9293-eff12a211b6b','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-2'),
('1e0368a0-0a37-4694-8826-7f3ce87c7d9e','57127d94-6fac-4e1c-ac7e-d9e37f789e3f',97,8,207,0,NULL,NULL,'614364554-1-4'),
('1e05c73e-f8c5-4f38-89e0-232e4fc049c5','e86f2f3d-8f0b-4894-8c39-9063af830231',52,217,7,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-3'),
('1e07ab30-56f4-42e1-9452-e3010b9e53e8','2538536e-94b0-499f-8945-6d56f97c2bf1',95,185,76,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-2-1'),
('1e084613-64cd-442c-ba39-ead9f1c11739','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-1'),
('1e08c4f9-4714-460d-9c0f-e6b70df8733b','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',7,72,92,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-18'),
('1e09bc12-11e0-43c3-86e3-8b2b7db6406d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-19'),
('1e0a0ad5-6733-4410-9615-0f72e2264a0e','27facb9f-c283-4f68-9b00-3fc3dcffafe9',0,0,0,0,'2025-07-19 07:52:19.114','2025-07-26 21:25:19.278','644100790-1-1'),
('1e0beb7e-ce89-48e1-9c58-54c07d6e3a8d','803574ae-1ef3-4704-8432-986beb633506',77,2,206,0,NULL,NULL,'614364554-4-4'),
('1e0c83b6-c601-4dab-b9bf-2f3b48d6a493','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-25'),
('1e0eb2cd-7c52-4409-96cf-844d4f322efc','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',240,94,68,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-6'),
('1e0f57b6-9fc1-4567-86b0-40d440a54502','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',80,80,75,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-6'),
('1e0facc3-0af0-4ef2-bdcd-90a8c6b05a54','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-4'),
('1e11d94d-33e6-480d-8ff5-c6c393e814c3','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-3'),
('1e126d23-1044-46c2-ada8-73834b98d32b','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-3'),
('1e159898-3240-4ee2-871f-909a63ebfd4b','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:24.387','248135683-2-101'),
('1e1bdf1a-904f-4256-a4e8-2d30e3075ce8','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-6'),
('1e1c9fc7-b946-414e-96ed-61b0c14d9984','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',40,45,25,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-4'),
('1e1dc7a2-8fb3-4986-aaf7-d1fda1feb173','44172f06-d7a5-4d73-b1be-11dd839fbad7',102,55,76,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-2-1'),
('1e1f5f0d-438e-4997-860a-bf22e670594b','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-37'),
('1e205505-c0b2-4f33-9871-83d27f0560cb','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-41'),
('1e20ffa2-20eb-4274-82f7-d075503b559c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-227'),
('1e25e4ac-236f-4ab9-9352-daa887d61f5e','a87576e3-14e1-46a8-99c7-1d48360995f5',73,44,43,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-2'),
('1e272db6-c823-4430-8b75-f89e9687ded6','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-11'),
('1e2779a4-4b1b-4ad6-9964-c8098949d49a','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-6'),
('1e2b112c-4db9-4341-bf8d-7852f3a7e90a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-96'),
('1e2d28d0-51a4-4944-90fe-ad03eae0d23c','940732e5-0ff2-4104-8730-71ae631a2346',100,57,26,0,'2025-03-24 16:02:12.814','2025-04-01 09:23:21.072','338691111-1-1'),
('1e2db2c8-8c81-4531-8257-5953db4e55c4','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-13'),
('1e2f2119-1325-4ded-9226-ad58d9ecc1ff','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-6'),
('1e320d6e-6125-4a33-a479-330a7114b61c','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-9'),
('1e341a45-bddc-478b-8120-2777218f3fd1','638172c9-793e-4ec5-9ad2-cf82bf06eca7',11,43,110,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-6'),
('1e35c4fa-e0d1-4d37-bb93-d84533732e9c','7a221082-1858-44f3-b094-3a693cf4ef01',51,51,76,0,'2024-12-28 21:42:15.499','2025-01-07 19:30:37.794','221883606-1-2'),
('1e379600-b5e9-42f8-bff7-b189422a48fc','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-12'),
('1e3982ab-08b1-4486-907f-cd45fc8e0f5e','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',125,105,30,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-1'),
('1e3ad5b8-3856-4156-8003-3b4a053adc2d','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-1'),
('1e3b0504-368a-4f17-9e98-3df9d8096e38','afcbdaec-8a89-4777-b328-838a037ef29c',87,87,7,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-1-1'),
('1e3b0839-e967-4965-b44c-777483dd14c9','1ad6d0d7-d80c-49ae-83a1-8f1779ed2429',180,200,32,0,'2025-09-18 15:48:50.868','2025-09-30 18:47:57.405','745374253-1-2'),
('1e3c2067-c562-4962-a5c1-298a0d943b05','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',80,16,56,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-5'),
('1e3c7436-d3eb-4bb6-b707-19747b88e42a','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-11'),
('1e3e4df4-f3bf-4e1b-98dd-e7017e188237','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-33'),
('1e409f79-2542-4773-bbd9-6774a2e07851','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-18'),
('1e45aded-a4fa-432c-bf8d-b9a3b094b5de','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-7'),
('1e46a482-74c6-48f1-a25b-499f1265019e','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-77'),
('1e46e11b-3220-40a8-b68d-f34f5f783ccf','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-77'),
('1e4719e2-108c-436e-a93b-a2a6a52352e4','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-2'),
('1e4aff6d-358b-4cdf-a983-a99332474d86','ef2c0471-c7d7-40d8-ac98-3d2bf3a67976',53,76,100,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-3-1'),
('1e54c1a0-5ab5-452e-a4ad-48c600099efe','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-9'),
('1e5626bd-b5f0-4bf4-973a-44e20767ec64','349ffa09-9e8e-4eaf-8f66-763e3dfa18ab',51,51,77,0,'2025-10-02 06:45:32.405','2025-10-15 08:20:18.471','221591105-1-1'),
('1e5640dc-ad93-4021-b0e6-75f691c2bb85','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.488','2025-03-14 11:07:34.682','248243194-1-94'),
('1e5689d4-1294-4557-aea5-d1c988214503','18ff6e80-17c4-4d04-8763-3c38edeb9f2e',95,98,65,0,'2025-08-27 19:40:02.797','2025-09-06 07:18:57.693','598548833-1-1'),
('1e576ddb-bb3f-44c5-a50a-2d28723d69d2','82ac2d58-053d-41f5-a402-9275c56203f9',69,82,4,0,NULL,NULL,'428172853-4-5'),
('1e58d359-4c70-47b5-b116-306e0fc31d27','7ba47169-83ca-49a6-98fc-6ef1a1990eac',105,105,8,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.523','982630175-1-4'),
('1e58e6df-6552-4795-a504-a469a70a6334','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-2-20'),
('1e5a2fe8-a197-430e-a1a5-8baef76b2ffd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-118'),
('1e5b360c-18b6-4c8b-a19f-ffd4d024a68c','dad4faba-2e0f-4c6e-bacb-b9b8701e6bae',0,0,0,0,'2025-01-20 11:21:21.904','2025-01-31 12:16:05.012','478930985-1-2'),
('1e5baec9-8468-4277-8f68-d0f0930bb6df','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-12'),
('1e60cc41-8930-477e-a797-2292c91b35a3','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-5'),
('1e60fc98-ae3a-4af6-9076-ebe207e999be','0d161dde-9057-490d-aa97-f0e28819ff37',72,58,95,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-1-1'),
('1e61def5-2fe7-4526-914f-6936f808a449','d3d5114d-4fd2-41d8-bd26-703a87e70d0e',93,117,64,0,'2025-05-16 16:33:29.348','2025-05-23 14:06:55.651','644145142-1-2'),
('1e6282d0-3954-41d8-9664-8fc25c76e8fc','c7fce8c7-acfd-4c12-8db5-81618a4b211d',35,205,6,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-9'),
('1e65ff9a-af36-4d3a-bca1-24180efeb55c','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',97,65,73,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-2'),
('1e6956b9-e222-46ce-ad8d-84fae50bc12d','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-7'),
('1e6b55ba-5af2-45a8-8650-59f3ff0b347c','cde2b645-2cf4-4ca6-9d59-ef733217c501',303,18,5,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.325','973510341-1-4'),
('1e6c91d0-37a0-4f4e-a0fe-72d87bd397d3','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-8'),
('1e6d358b-4c6a-498b-b09b-21a7f9817acb','6cf15506-e6d2-496a-a50c-1bddeb987a1f',107,51,76,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-8'),
('1e70f3e3-72fd-4f7e-8c48-c7367f8db2a1','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-51'),
('1e71e4f9-38fb-42dc-ad89-e623ee14f46e','20e6d703-f38b-426f-9be6-8755c80d4f2b',0,0,0,0,'2025-08-07 16:53:17.210','2025-08-19 06:46:45.909','412548356-1-2'),
('1e758f5e-1232-45e6-ace9-11c44a391980','e67a7dee-52ea-4fa1-b8b6-ffe08ce0750f',52,59,97,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-4-2'),
('1e7815fd-e121-4499-bed8-c760318c3a7c','177452de-a019-4a63-8749-61daa619034c',0,0,0,0,'2024-05-10 18:50:11.428','2024-06-04 14:25:01.922','126922033-1-3'),
('1e786d0f-2d43-4383-bbf1-14178e6a2a3c','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-4'),
('1e78a1fe-b675-4b79-85f6-a57e21189534','8ca62177-fd4f-4b97-8db9-1855dac0207f',275,275,27,0,'2025-07-19 07:52:32.811','2025-07-26 08:30:20.850','248549362-1-4'),
('1e7b9feb-3f72-4a15-ad1d-c07b277013ce','9b4d1c30-8bcb-494d-964b-89ee11fbb5ec',97,198,6,0,'2025-09-12 17:17:01.866','2025-09-24 06:51:09.697','437319119-1-3'),
('1e7cf39a-a16d-4fbe-8a6e-9c3a1782aef7','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.052','2025-10-16 08:43:48.733','412467921-1-10'),
('1e7ec9fa-4844-4b43-a4b8-dfff2a33664a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:20.235','248284003-1-47'),
('1e7eeab1-90f7-4c39-b472-9867d00727b6','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-26'),
('1e7ff0e7-28ce-4f53-854a-5d70b91f9bec','b7612cfc-aad3-4f87-904b-e50d3b29d0b0',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-3-2'),
('1e831a3f-a220-44ea-b485-bed5ee66d4a0','e54055a2-3c9c-4738-a808-7a4a31877ef1',64,86,13,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-7'),
('1e85d252-b2b1-48ba-b5fa-7c034223b2c6','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-13'),
('1e8732f5-11db-44dd-b82a-456e0407a125','a2996a96-e222-4190-85da-afc912411ba4',48,6,208,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-5-1'),
('1e8b8421-5435-4f63-83a0-0a4c0ecbf920','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-30'),
('1e8b8477-fcb3-4277-af0b-bebc84e7f613','eebe5042-de81-4afa-b4a6-4517e07ad579',115,17,34,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-1'),
('1e8d280c-d2c7-4752-af71-e3d03993332a','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-64'),
('1e9343ff-ca05-4185-9ba4-40688f92ca61','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-66'),
('1e936c87-02cc-4b03-b3c0-c7e68a7b612f','525b5c37-829f-4a61-adec-1c61536019ea',96,6,198,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-2-3'),
('1e953388-c3d1-4aae-ac7c-c9ba9af59196','76087092-4086-4cd5-acc6-7f775e746dc2',98,120,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-2'),
('1e963995-592c-401f-b96a-851c3843bc17','1fffa8ea-befc-4b74-98ce-8981bef002ea',82,82,63,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-4'),
('1e96858e-d010-4e3a-a865-c05f94bf5111','66fb1f1f-5cda-45eb-abc6-d7e04b3ff904',1,1,1,0,'2025-03-27 15:05:45.141','2025-04-05 20:39:06.079','465194627-1-1'),
('1e971d41-aba1-40b2-8504-0a7a2afa52f4','6fcd8160-ca06-46ab-a691-51de5c394793',45,22,55,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-4'),
('1e9746c5-b49f-4409-ba84-804d596dcd4d','5a89fae8-525a-4de4-8188-2f4d7c892e74',53,86,28,0,'2025-10-02 06:45:38.842','2025-10-16 15:46:11.312','959168443-1-5'),
('1e9814fd-b56f-4e84-b5be-b6f2ff0946c7','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-119'),
('1e99a158-ed4b-4ee8-bef2-74ec80cfbe48','ae2f16d8-65e8-4efb-b2a7-26877719b20a',59,214,4,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-1'),
('1e99b25f-97ff-4197-9f13-57e44b49a909','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-4'),
('1e9cf69c-7ebc-4bf7-bb7b-846223595b67','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-85'),
('1e9ddd7f-0654-4597-8625-97e502175856','9bb570a5-52bb-4bbc-a797-b2a052d8260c',0,0,0,0,'2024-06-10 13:50:55.810','2024-06-10 13:50:54.112','3198601-1-4'),
('1e9e07d2-0dce-4edf-94f6-22b9a8a93fef','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',17,205,32,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-2'),
('1e9e07f6-d9b3-4e47-a235-4be9743690e5','2dde6fa9-86f5-4072-acf6-d126395be890',37,102,13,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-5'),
('1ea1c9e4-6bbb-40ce-971a-80b3a5582c1c','6918492a-0685-40ae-9b38-8845d6ba2ae9',72,72,103,0,'2025-07-19 07:52:27.551','2025-07-26 14:17:14.136','644389756-1-1'),
('1ea3ad0b-006b-4bf5-800e-afec60e116d2','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-40'),
('1ea5e2a4-cc49-42af-9886-305d0e6c9032','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-2-24'),
('1ea6c80a-75ae-41cf-941d-4e5959eaddae','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-7'),
('1ea964d6-bcae-40ea-b889-4ec2e847a499','ca465cdc-1a1c-4dc9-8703-e249c099992f',0,0,0,0,'2024-04-23 10:31:48.539','2024-04-26 20:12:15.906','614859961-1-1'),
('1eab0897-6c6c-4add-9206-cfcb6caac151','5e6bc612-6c7a-4f9c-8252-00151bafb04f',48,29,202,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-2'),
('1eaeabc8-7b1c-4b93-8b25-476d3c659f90','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-1'),
('1eb89645-343d-40e7-97e9-04c4710e29a9','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.591','248133427-1-29'),
('1ebb5394-e3fc-4700-bd6b-0802caa28ec7','e0cc17a2-4392-42a5-a637-de0f1c60c459',93,29,204,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-6'),
('1ebdb00e-ce9d-49b9-8fd1-63041ce781d4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:32.765','248135683-1-6'),
('1ebfcf9b-17f7-4bd7-8e1c-ff747427e5e7','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-14'),
('1ec27eef-63a2-4820-981d-63e95c40b36f','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-26'),
('1ecfc34f-e93a-45ff-a937-d257a6ea71f2','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-2'),
('1ed0b031-6ae1-479e-84cd-656810e1ba8d','7dbfac68-a166-481d-9984-d7ec9291dc46',72,77,74,0,NULL,NULL,'808690841-2-3'),
('1ed14230-a332-4216-b90c-0ca6d383140e','b44449c8-5efa-4085-bd2d-0a3594587af9',93,208,1,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-12'),
('1ed1d2b7-7499-41ae-9f36-d117ff28f0d3','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-35'),
('1ed261cb-065c-4324-8a23-f61088643b96','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',60,54,50,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-1'),
('1ed2dcab-f48c-4637-a7d0-5d072f3465f4','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:22.096','248284003-1-143'),
('1ed5f60f-43d0-4a1a-8877-9f24dc38cc19','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.631','982858369-1-3'),
('1ed9c721-25d9-4a59-8d8e-ff7ff8a85854','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.056','223441694-1-78'),
('1eda40c2-c2e1-491f-aebf-48be3feecb46','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-10'),
('1edc2146-d56c-4b12-a792-0a8690579910','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',103,28,202,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-4'),
('1edee0d1-e5a7-46eb-a280-ba3e2c2e71d6','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-8'),
('1ee231a0-45aa-40e1-8965-8a0fdf3417e6','9e7c8477-11a2-4674-9f46-871291ca4883',0,0,0,0,'2024-07-20 16:33:52.007','2024-07-25 21:24:27.039','412366586-1-1'),
('1ee69c8c-a2a4-445b-8bc8-069d4b8b589c','35107d19-3a55-4de2-9393-cd2790b9c947',51,51,77,0,'2025-09-18 15:48:42.059','2025-10-02 06:11:24.117','437527391-1-2'),
('1eeda0d4-267e-4f21-8835-76ffa08890eb','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.165','248883377-1-29'),
('1eee1bb6-a892-4bc8-b380-837ab0eb9141','ff08ddda-9817-458d-ae19-df09ec034099',0,0,0,0,'2025-02-09 09:51:10.181','2025-02-20 11:56:02.221','203497868-1-1'),
('1ef3c05a-9551-4413-b93a-17d7986230cf','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-9'),
('1ef52800-4923-4037-bc9f-7be741f214f5','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-8'),
('1ef53809-dfab-4356-9770-a6eb6fe94648','4bf4c188-ebf9-429a-8ede-d43489efe0cb',36,36,241,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-2'),
('1ef815ce-db42-472b-9d4b-34d01be83441','858bf458-b499-4eea-bf79-f32ed1c24910',0,0,0,0,'2025-02-20 12:15:08.924','2025-03-01 14:06:52.749','31929392-1-5'),
('1efdfe4e-d028-4022-9719-bccf37326af9','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-19'),
('1f00d0f5-cb3a-4f2c-b2d1-381e28175e3d','c37afb63-e442-499b-a52e-405f6d0d0685',90,40,28,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-2'),
('1f0157c9-d412-48d2-bafd-e02333a82d1d','28c4ae17-77a0-4b80-85e3-0cdc8efdd131',195,90,70,0,'2025-08-14 10:05:31.015','2025-08-27 19:39:28.223','505987989-3-1'),
('1f024a04-df88-4210-9385-00e7521021dd','7ba47169-83ca-49a6-98fc-6ef1a1990eac',223,63,10,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.523','982630175-1-5'),
('1f036b12-ea97-4472-bc3a-1e3d7a19b82f','bf5036aa-f3df-41f1-a7f0-0d39bff58968',187,47,59,0,'2025-01-26 10:54:40.566','2025-02-07 11:19:22.861','248269890-1-1'),
('1f040260-b416-4321-a33f-1e4253a73e7f','57d11f20-03a6-412e-bd79-62615f3c7867',86,33,9,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-3'),
('1f053cfb-6e8d-4e60-b4ee-961a202a0414','24781fe5-c8a9-48cf-a94a-3c61efb0a699',200,80,30,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-3'),
('1f05d92e-5a00-45d7-81a8-c2d6126d8847','8ccf1da0-f5a6-43c4-a953-8d0167d86614',75,118,108,0,'2025-04-30 14:29:07.522','2025-05-13 09:05:57.394','923436295-1-4'),
('1f114203-efed-4787-bc40-9897f0b0c0f3','7defd633-f7ab-424d-8029-028d1b045752',59,90,18,0,NULL,NULL,'501119446-1-20'),
('1f1624e4-f2f0-4835-9cdd-c9b9480f7380','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-249'),
('1f178e9b-f42f-4e1c-ab8e-ad984d22c4f0','673dd833-1d2f-4fe8-b03c-a6405c807cfc',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-3-1'),
('1f195dab-f00e-4eb3-84ec-bef982a34df4','7defd633-f7ab-424d-8029-028d1b045752',210,95,2,0,NULL,NULL,'501119446-1-33'),
('1f19c645-ffcb-46eb-ad81-2401993a0710','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-52'),
('1f21db1f-3729-4410-8e89-7e258376d771','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-26'),
('1f25970c-f76c-45ce-bf43-cff48d8de09a','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-57'),
('1f27188e-7797-4bb4-a993-7b09b0213ff5','de5b9e9e-def0-4a43-8da4-04266bcc83f7',96,100,75,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-1'),
('1f28d2bb-4666-4fad-9868-43669dd0241d','f71120f0-3dab-49a4-9919-47f817fb8a68',56,14,87,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-3'),
('1f28e150-014e-4628-be7e-81fba87aabae','cee76706-8686-4b5f-b415-fa5d54173ed1',65,85,75,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-5-1'),
('1f29501f-a680-4e92-bef0-96728e73ff55','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-20'),
('1f2a35c0-4ae2-42ae-8014-d4681595f127','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-79'),
('1f2a982a-7812-4281-be5a-223ab5749474','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-53'),
('1f2c4150-7e6a-4ed0-bf0f-595e7b0e0e07','220fed8f-f96e-4af5-867b-ac05d11bda6f',12,60,87,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.766','478507488-1-6'),
('1f2e6a86-f40b-41e6-b3d2-0dd25b8e7a5e','7f827719-d0a9-4910-9aef-532cd3731df7',16,49,94,0,NULL,NULL,'745995046-2-8'),
('1f2ec9c4-b967-4e9f-b9a1-3539d3ca881d','9866a947-9974-4053-8415-4518842488fe',86,28,57,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-8'),
('1f30e906-0683-4022-99f8-d8e41ef1c1eb','27e2ce5a-dade-42bf-b4bd-0468323a08cf',65,125,120,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.086','478524376-1-1'),
('1f3108b1-b4b3-42f0-93a7-3f3ca33d38ab','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-55'),
('1f319a7a-6067-4f0a-afba-a38bd2e2a0c1','0ce74bb1-5b22-4340-b7c2-3e486e77bf0a',109,197,7,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-1-1'),
('1f35c358-d760-4fac-9442-5d173ca9ad3d','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.682','248243194-1-50'),
('1f36d6a6-b519-41da-a0f6-bfbb3aa1d5a7','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',33,163,3,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-2'),
('1f3a6f65-e040-4e90-8230-65c3025975fc','c5d03b78-19c4-44f2-a673-725e07271521',80,76,40,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-1'),
('1f3ab30a-af5c-425b-8a61-5768859a2ae2','405c5569-3390-43f1-95ee-f006ef560059',65,95,70,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-2'),
('1f3fad50-d928-4c56-8554-1742172535bb','b426d6f3-b133-4794-91a9-96e662c2e201',97,153,8,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.303','371194748-3-1'),
('1f42fc57-5d23-4a0a-9c81-ade0be1a0647','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-4'),
('1f44fdb4-14a1-4cdb-9421-baaea44e130a','2b0acf8d-fc6d-4d67-9d78-65615d9ec378',61,85,90,0,'2025-08-22 20:28:39.971','2025-09-03 06:11:50.443','613528305-1-2'),
('1f461237-642a-499a-9f15-e6accf4e688f','96449af3-c272-4a90-b77d-0790552dd455',155,27,27,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-5'),
('1f46ae81-a10c-47c5-ad5a-1c0422171acb','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-1'),
('1f4b4f5e-a4ed-4347-83d2-081f1e39de56','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-4'),
('1f4cefe3-1d1d-4128-94c2-8ad4cce08525','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-3'),
('1f4d6dd7-78c9-4f09-9737-6d0cccc845d5','808a4f1b-793f-4a15-808d-00c26a26c166',216,85,7,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-6'),
('1f55e32f-8f25-48ef-923c-9d5f033c9571','c080623b-df50-459f-92a8-eb2eaff4030b',70,40,30,0,NULL,NULL,'478350685-6-4'),
('1f60d718-5903-4c52-be9a-1e0081c3d261','fa806a1c-a3a2-4576-9af2-cff69901ad3e',0,0,0,0,NULL,NULL,'140421350-2-2'),
('1f64940b-7254-4daf-a26d-f67e68e8dc18','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-4'),
('1f651a2d-bbc7-4dec-98db-ca8b15fc33ef','9114ad70-d53e-4d1f-89c7-30585d0a43de',93,73,73,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-6'),
('1f6a7458-f3a4-47db-85a4-d8253ea38018','1d36a2fc-8ed5-421d-9fa1-7cf537842324',95,75,230,0,'2024-12-07 09:32:09.173','2024-12-19 14:54:10.502','428857511-1-1'),
('1f6f1acd-cbf5-4833-af94-931e2de7a892','fd3a44e7-97a6-4a95-8999-ea918e44e1de',60,54,27,0,'2025-02-23 12:39:21.090','2025-03-05 14:40:18.879','910426934-1-1'),
('1f71d434-34a2-4164-814f-e3b32f97f212','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-11'),
('1f7527c4-dbea-4e83-87a2-188962ccf853','8966cba6-713b-4094-b1bc-e0e0d0f8334c',183,95,9,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-7'),
('1f7795c3-7601-4bc0-8f34-a66f914b662a','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.437','2025-10-05 12:15:55.032','808146332-1-8'),
('1f7c836e-c64d-4aa6-8390-c1c3fd3db4ea','6a308121-6cf9-4384-8446-08182bd669fd',211,64,9,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-16'),
('1f7dab71-5afc-451f-b328-31942ddb29f4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-71'),
('1f7e47f6-5e42-492a-81b6-20311ae1128d','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-21'),
('1f7f5dfd-bc1b-4c87-857e-9b68fff93acb','258f4a9c-81cd-472b-ac6c-2973d8c4745e',63,6,184,0,NULL,NULL,'455122963-1-1'),
('1f847315-d01a-40d8-857d-25f6ef5c2b35','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',62,94,18,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-14'),
('1f87f66a-2ae2-4cf6-b448-fc99685520ad','601003c4-c08a-4b64-839d-d5ab37e7595b',96,75,105,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-5'),
('1f887b65-2c4f-4936-aab4-a90dce51238c','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.476','2024-04-01 07:52:44.957','478339779-1-22'),
('1f8b0121-0670-4028-b5f5-676c464b7e4f','336b127b-d219-49c7-8661-4258d8834fe9',97,165,5,0,'2025-04-21 06:13:38.052','2025-04-28 11:59:44.002','64451300-2-1'),
('1f8b48a5-eabf-43f1-bf97-808a1e91c9d6','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',210,7,47,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-6'),
('1f8d11e9-0d8a-405f-b377-b7c0819c1357','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-162'),
('1f8db4a5-5429-406a-a263-a64fd9aa27e4','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-139'),
('1f8e8fb9-2296-4b74-a462-0cc39fac23cc','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',85,95,80,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-1'),
('1f9515ec-5aee-409e-a4a2-496aa892e418','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.385','478957028-3-2'),
('1f95ea28-0a50-4c35-96b4-c61c915b9a0d','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',50,16,121,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-11'),
('1f96bdbf-1236-46bb-83a8-be1b0449c550','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-4'),
('1f97baaf-3bd9-4f27-840d-c2c0a54ed596','baad18cd-13f0-4d60-9d73-5210c1d6a589',30,83,200,0,'2025-10-08 17:43:50.390','2025-10-17 20:57:20.132','614901187-5-1'),
('1f99f10a-6347-4fd4-a046-c4b74f826537','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-12'),
('1f9e01aa-f8fe-487a-9279-2757fd72ca0c','695d73bf-f5ba-45fe-bc80-b162f60a1157',73,54,100,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-3-1'),
('1fa0042f-8a0a-4b20-b144-cdacf43bc171','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.978','2024-05-08 21:07:19.873','126889614-1-2'),
('1fa39e6a-ae4a-4b4f-9932-238a3edfee6b','83b60f78-3367-4358-9376-fd4dfc3de67e',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-1-2'),
('1fa3da91-5d76-48a5-898c-837864f47637','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-5'),
('1fa44846-56d7-4e97-a7f2-c09ad99bdd47','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-215'),
('1fa551ec-5111-4629-ae4e-48fcf7438483','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-13'),
('1fa5c51f-3231-4c07-ab08-fdc6b17d9e45','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:33.464','248135683-1-180'),
('1fa71c78-9a6f-4248-8a40-df3a64f43497','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-5'),
('1faac928-6830-40cf-9b4c-af4fddd10f0e','a08d6712-1d03-4cdf-9f9e-1098bdce8dc5',0,0,0,0,'2025-06-21 04:33:48.944','2025-06-29 20:24:30.376','231250162-1-2'),
('1fab4004-afad-4255-a062-e4645b4f053a','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',49,63,15,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-13'),
('1fac5eda-f205-4c91-a485-b58c096a8402','82ac2d58-053d-41f5-a402-9275c56203f9',45,26,72,0,NULL,NULL,'428172853-4-6'),
('1fb05701-a348-4e93-88dd-5460d3385375','220fed8f-f96e-4af5-867b-ac05d11bda6f',69,28,235,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.766','478507488-1-31'),
('1fb0ceb1-6ee4-41f0-afa5-7ba09092f44e','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.236','745357299-1-1'),
('1fb0f382-a911-4017-b85d-3b767b4d0669','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-4'),
('1fb19b96-6ed1-43b6-9b92-60c34a2746ea','95ce5cf2-ec3c-4eda-9744-acbeb74d1b7a',51,51,77,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-1-2'),
('1fb32f94-d79b-4df2-aeb1-b7ee0b266b0d','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.165','248883377-1-21'),
('1fb4dc90-55eb-46a5-9fd9-8777b5006114','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-24'),
('1fb62ac6-eae7-4aa9-a131-31dc9aaaa3e5','642202df-ca75-465e-8036-f34da2dad54d',81,75,90,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-7'),
('1fb6d5c1-b2e2-4265-ad34-4b1a59bb1bae','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',85,40,7,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-5'),
('1fb7a628-bb17-4f0d-9832-3696bd0e795b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-213'),
('1fb7eb18-77f7-4108-bb90-a8191b84c752','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-76'),
('1fb9b98a-e94b-4a3f-9128-b43f19e7c78f','26d9dcf8-f56a-4ec1-96d4-af3945d37fa2',97,240,75,0,'2025-07-17 09:33:47.357','2025-07-22 17:22:00.525','910772127-1-5'),
('1fbe3e29-fcb9-4ff6-a504-d118b6c3be29','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-6'),
('1fbf3e91-7b9c-41b7-9627-74ef1a027a57','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-112'),
('1fbfc305-441e-4365-a12a-4c0fee54f1d3','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',36,36,211,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-2'),
('1fc08c64-057e-4667-8687-bd0aaf8b5f66','7b886c3c-4fc5-4630-b9ae-d8fb7f7ab243',103,55,76,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-4-1'),
('1fc172ef-95d1-45c2-9318-760482a81f4b','024c36ef-09c1-45c4-9cfb-22d425f69737',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.051','982840804-1-1'),
('1fc350fa-164b-476f-a3c3-9ffc9512a2c4','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',105,105,65,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-3'),
('1fc46ea2-38b6-40a0-82b0-d17a8f76a2d9','ea334a01-514b-4dbd-9960-a3963f52b611',0,0,0,0,'2025-02-09 09:51:30.901','2025-02-18 17:24:17.678','478188178-1-1'),
('1fc6bf58-9221-45ed-8358-e18675abf7fb','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-10'),
('1fc73016-d25d-4065-9d56-72b53be516aa','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',11,11,67,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-20'),
('1fcdcba2-d3be-4c55-b9c7-d0fef6dbaebc','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-31'),
('1fcf5d29-7f96-49c1-9a5e-e1116d7d5288','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',209,57,7,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-9'),
('1fd20d7d-d27a-40d1-88cd-025319e2fa6f','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-10'),
('1fd29262-535c-49a3-a2be-dd3c4f4df19f','b153c580-1fa3-4d05-aed9-d033117f4c17',51,51,77,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-2'),
('1fd8466f-a9d3-434d-9f60-4d79257aa01b','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-1'),
('1fd87769-b84e-4c87-acc1-390cba620d47','4301b768-4818-4e74-a6d0-12a33474f5c6',160,200,3,0,'2025-10-25 08:59:16.418',NULL,'478450171-1-4'),
('1fd94bbb-9e7d-421c-8db1-c49c05980a5f','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-8'),
('1fd9b846-ce1b-45ec-9736-d108fc047040','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-5'),
('1fdaac8b-9569-4d51-861e-1e5ec006ae0d','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-80'),
('1fdc02af-c4c7-43ed-a777-0f24fc1de1ce','ed49121d-e843-4670-a011-d85f0304b09c',51,51,77,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-5-1'),
('1fdc0f10-66e2-4e82-9d57-343b47ed83aa','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-157'),
('1fde4851-1622-4ea9-a418-9e4ed6499779','a8ccb596-deb3-44d6-a3ec-e1faeccf7e9e',53,72,100,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-5-1'),
('1fe247f1-fc90-464c-9b9a-bb4a86176e72','37344bde-d918-41e0-a71e-d46212dfd17f',7,105,223,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-6'),
('1fe579a9-84e8-487c-95ab-42ee6e9de23b','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-6'),
('1fe761ab-9457-4548-9076-7f769fb77506','5eb53186-180d-4850-a598-783b17f41cbf',95,60,195,0,'2025-03-27 08:03:09.215','2025-04-05 22:11:15.005','976843037-1-4'),
('1fe876a0-c72e-47c0-b1de-156ae78b70bc','0c6185c5-4d86-4de6-a4f2-365f095498a7',77,56,103,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-1-1'),
('1fe89e92-22e8-4dd4-a2c4-77468c99169c','a5acb255-ac93-4787-ba1d-85dba2a83a25',240,70,100,0,'2024-12-23 12:00:19.041','2025-01-09 13:53:41.050','73427297-1-2'),
('1fec5f2b-1329-48e4-abf7-85ea8023fa57','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',127,45,9,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-10'),
('1fec8eb9-e102-4010-8fe4-07362860e919','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-159'),
('1fed04e5-ea48-4285-95b9-15b33fbed54d','91fb1a96-2420-46ea-af10-b13095d4de25',0,0,0,0,'2024-10-11 16:08:59.506','2024-10-24 19:13:00.054','501339138-1-1'),
('1fed8bed-8414-49cd-99cc-4a308c31b519','fb58f438-30e4-4e01-af6e-6378e27a11fe',80,70,6,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-3'),
('1fee2d91-6f6d-4c41-a879-4a0f680a0c5b','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-13'),
('1ff2901f-e1ed-4a1d-89d8-7d337b57c6bc','a769cd75-8095-4eeb-999c-d1a749589a77',46,50,187,0,'2025-02-23 12:39:15.926','2025-03-06 10:33:10.121','248739379-1-14'),
('1ff2d421-4154-498c-a165-489d7ce5e8cc','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-19'),
('1ff39b50-821f-4b0d-8ff4-b193929a4cf7','97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6',51,51,77,0,NULL,NULL,'50552381-1-1'),
('1ff53fe1-1788-4e24-8090-6aafa4633bb4','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-2'),
('1ffb099e-cc02-489e-b139-f2693e968286','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-4'),
('1ffccc0b-6ef1-4c1d-8496-9d6248b7d553','ecc8a619-473d-44b7-bc3f-58005b885517',98,99,70,0,'2025-09-30 07:39:35.702','2025-10-03 06:54:27.923','644783664-1-3'),
('1ffd1f4b-6db7-4764-803d-d512c7287d60','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-1'),
('1ffe25b6-0fac-4181-9917-661d7d550663','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-5'),
('1ffec69c-c554-4368-b599-c8cd33ebb53e','f58e6b9f-d5af-48a2-952b-687f4ff843c8',37,30,20,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-1'),
('200008bb-7da1-457b-a021-6f3b99816fc4','d83c40d1-4df5-4c97-bc83-28837db95b2b',260,50,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-11'),
('2004635a-582e-480e-bfc4-aac51cc04ec1','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-41'),
('20068ff5-13b3-47c9-916e-b645468c46c9','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',180,200,3,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-6'),
('2008f25c-133f-41da-acad-670e0420f240','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-7'),
('200c1c3a-2ec5-475a-9472-c8b1a4f3eecc','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-7'),
('200df437-d07b-45c1-ac47-75d9c50d5918','d002bcc5-a422-4c14-8bcb-77615c5f9183',101,52,76,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-4-2'),
('2012f24e-a27f-4ded-ad4b-a0efd14c18d7','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-7'),
('2013051f-c74b-4658-89bd-79d5fa46db42','4133b64d-8906-4cf9-aeb9-479ffee87338',97,53,58,0,NULL,NULL,'695734625-1-6'),
('2015196b-aba5-4a85-a938-032493a24b72','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-4'),
('2018402d-3422-4063-a5d5-e1e57faceec4','e7f31a78-648d-4a5e-9111-1bf7db38dd79',255,55,12,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-7'),
('2018ba53-4294-4e9f-a2a1-d5b9e130ce79','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-56'),
('2018d3b6-bc2a-4869-8d0f-91355bdf7fda','376f6b8d-92e3-4ec4-991a-cb710a079011',90,42,77,0,'2025-03-27 08:03:10.862','2025-04-05 13:45:44.467','437791163-1-3'),
('201a2d6a-b87e-45f1-afb7-7ac8ab23fc9a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-172'),
('201a9b94-9ed5-4605-87b1-69063aefaf44','2c84ba11-87d3-41f7-bcc4-d0fa2cf2eeec',84,53,25,0,'2025-03-24 16:01:53.864','2025-04-04 09:29:40.653','982464994-1-3'),
('201cebcb-38c1-4d69-8d14-050ee23b4243','4248435a-86e0-4cf9-9c9e-c779eca78500',47,65,17,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-3'),
('20226c7d-d15e-43a2-ae6e-ebd54e4d9530','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-15'),
('2023a656-0e5d-446d-8367-5c21d5b36b84','7ed8f2b5-2d3c-4083-a93d-cddc92625cf3',75,105,92,0,'2024-09-28 16:26:51.725','2024-10-11 11:28:25.410','449823745-1-1'),
('202508d8-c2ce-45d9-b9dc-b65035ed7b10','fc853fcb-c51c-4c07-b20a-ac57fdd1a81e',123,98,70,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-5-2'),
('202631a1-19fc-4894-91d1-d655b017ecc0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-35'),
('202c22f9-d5a5-46e5-b4ac-5f1acaad0c37','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-20'),
('202e2736-6f56-4ef5-8d4a-2c77e7204bdf','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-12'),
('202e952d-2ae0-4800-9d18-51aa309d90f1','a1b5bcba-4550-4a5b-91d4-912ad7be4749',0,0,0,0,'2024-08-07 15:02:55.747','2024-08-15 13:56:04.655','745799900-1-4'),
('20303715-7b62-4664-a2c7-4cdbee7e2a20','20a73c4e-790b-494f-b4a7-c61766021e4b',38,15,38,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-7'),
('20310ddb-48f4-4bb7-aa0e-78767efa4a11','bcbbd32d-478e-47f4-97ba-0a391ba7a4db',9,74,127,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-2-1'),
('2031cc19-99ea-4f35-8705-a77f24079689','220fed8f-f96e-4af5-867b-ac05d11bda6f',103,10,185,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.766','478507488-1-28'),
('20321248-bcd4-47fd-9137-12a270af1c1b','2773edd5-8384-4da6-af17-81f71ef6b6b9',45,36,170,0,'2025-09-10 10:50:44.282','2025-09-18 12:59:57.981','221191139-1-1'),
('2038bd3c-95be-44b7-9d4e-b01efb33bda9','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-3'),
('203c75f5-3186-4e32-a1eb-de602f5eb27f','cc7cbe1e-520d-412e-adc0-054062fac43b',65,104,104,0,'2025-10-25 08:59:13.605',NULL,'644769101-3-1'),
('203eb31a-6341-47fc-a326-66f2161f0718','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-5'),
('20427a10-76c0-441a-84e0-025bfc95c474','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-38'),
('20446913-3f03-497f-932e-206a4b077fb6','0ea49f4b-5c5b-433d-8eb4-379379e4da2b',0,0,0,0,NULL,NULL,'478778771-1-4'),
('20455de7-adfb-4698-ac21-a31a42c1bfd4','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-11'),
('2048c297-dc7a-4711-b9d1-4ff1d9b234f7','dc4dd227-7e65-4643-a55f-0cbabe1845f4',230,93,65,0,NULL,NULL,'428172853-6-2'),
('204aa331-c112-4c98-8a97-6299a5551393','8625abf2-719d-4d7f-b206-16948b318b8b',85,85,90,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-2'),
('204d794d-7153-4c0a-afa2-d8e6a144e3d0','94c4f556-9786-46f2-b2fd-19ec8d6e3641',92,77,158,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-4-2'),
('204e615a-96fc-499c-a059-ea1af20e1038','c9be6ff4-b867-49bf-9dad-f44d6eebbb47',78,50,50,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-2-1'),
('204ef9da-5e88-460f-827c-371dc7c39b85','606b177a-2516-4ee8-8a97-7fcc5be07957',45,30,38,0,'2025-03-27 08:02:55.282','2025-04-08 15:36:58.886','644877146-1-7'),
('20557a04-0d54-4e01-8968-c1236e3697a2','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-2'),
('2056eeb8-f04d-4d9a-bf24-e0b7c45008ad','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.002','735525138-1-9'),
('20570c08-74ad-4486-8b84-6e31ffd61fd6','1f9ee26d-ee30-4f8e-ba4f-8f1f3e46bd8e',0,0,0,0,'2024-11-12 16:16:00.770','2024-11-22 21:22:31.805','248904478-1-2'),
('205b7a12-dc64-4693-9aa7-34a51ad7be58','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-2-1'),
('20610aeb-5d1c-4402-a603-58d0fecbed86','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:19.535','248284003-1-30'),
('2063b83d-406c-46d5-8d90-8bf61aa58248','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-3'),
('2064fc51-55c7-44b9-847e-5977e55d75d5','9021f98a-5560-40bc-8478-4da85897fec7',40,40,43,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-5-2'),
('2066268e-20b3-4482-bf60-7a709efcf683','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-2-2'),
('206645c9-1606-46cb-8e27-48779d225689','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-3'),
('20684e27-94ce-4eed-8bb2-14b4bb60d8e1','b5dffa27-66ca-41bc-b90d-205635c51d37',56,72,100,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-4-2'),
('206be31d-613e-4e3f-a7a4-d794bcac4ef1','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-3'),
('20705f9f-c7a4-4d03-a5cd-322de50b9237','b698562e-f03d-45ef-b2ac-535d8edcf5c4',95,186,7,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-3-4'),
('2071db1b-48ce-427a-8364-a420ae033c0d','70295e99-ecec-4498-943e-fb5826d388c5',102,106,63,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-1'),
('2071ffae-ced2-425c-a0e5-860435b21fe5','50748e2f-3de5-4f3f-88ae-d8093198e2a8',80,100,90,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-4-1'),
('20729182-57a1-4b4c-a8a2-9896acd0f885','405a8b4f-16a3-4308-a37d-4df866ba5a15',96,196,6,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-2-3'),
('2072d67e-d018-4327-915a-892f85d589b0','958237a8-ec72-44d8-b7fe-5cff9027bc0b',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-3-3'),
('20787e9e-c2c1-4eb3-8e35-f3921b269c46','dce6d95e-9737-4ab8-a170-277f7cbd445a',56,44,27,0,NULL,NULL,'47816855-4-1'),
('207a3877-72b9-4372-a2c1-d5691b0f4dce','74eb1177-dbbc-41ab-99b4-94c187603621',96,196,6,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.746','22162472-1-1'),
('2081f144-5d5e-4903-a191-01dd9df71400','f2026b48-8180-47f7-9044-d94056905698',98,73,140,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-2'),
('20839485-8b01-4be0-9d86-01901118b899','f8d35c51-b98a-46d7-8ff1-a2e47719eeca',0,0,0,0,'2025-07-12 09:20:44.468','2025-07-21 17:00:49.929','745433427-1-1'),
('2083f1db-2391-46d3-b9ed-aadc61c3ae76','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:23.087','248284003-1-94'),
('208856d3-3895-4c03-9b76-da29e157936f','83371e37-9c5d-4c8e-b554-692e05bd3d90',0,0,0,0,'2024-12-07 09:32:27.530','2024-12-18 14:57:34.121','745671718-1-1'),
('208a629e-513e-4daa-9d55-3afe34f8d8b1','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:26.037','248135683-2-97'),
('208bdf85-b9d7-4e65-87d8-726566cbe686','9504c24b-6a37-4522-83ad-b302a5d583a5',46,38,38,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-5'),
('2098dccd-6630-4f5c-b9f1-5c5361d44759','138edf36-d166-4335-8560-d9873886e31c',51,7,137,0,NULL,NULL,'745189997-1-1'),
('209b2cc4-c8e4-4294-94f7-3b9eb32f24bb','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-20'),
('209dc412-f310-45ab-8882-1786227b7af6','05af1df3-9a36-4be2-8bd1-773d59e1605a',50,15,205,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-16'),
('209df5bc-6d2b-4ffa-a7db-e54cc6dd936e','5a31d59d-2a39-48c6-a450-4b8e78dae401',45,35,210,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-1'),
('209e8844-78f5-42fc-ae12-171bdc4cfb95','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-154'),
('20a31388-67fc-4503-b9f7-c4287d5345d8','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-1'),
('20a663a3-89cf-4cfc-a4ee-27f9d3aa6c1b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-131'),
('20a6a56a-25d9-4718-8d45-2d8d5c0809f8','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-13'),
('20a87922-0990-473d-957a-95e3ce0230ae','0a8285d0-d3db-4298-8e41-62c5429f150a',50,44,44,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-3'),
('20a8cb23-f5ae-4392-bfe5-15dc7f791120','e75297e5-0267-402b-895f-18aecdbdb5a2',0,0,0,0,NULL,NULL,'75091779-1-1'),
('20ad6755-04c6-42d7-b639-371240876f41','7beecb9e-d558-4da6-bcdb-d35549b9c1ec',0,0,0,0,'2024-12-07 09:32:30.833','2024-12-17 19:51:51.056','735233033-1-1'),
('20ae7860-58d8-4f81-80e2-9771f3f6b340','85de75ab-a905-42c9-bc61-799745d96971',115,93,65,0,NULL,NULL,'338991013-2-4'),
('20b18804-0d6f-477f-9d79-01f7777b6505','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',225,93,83,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-2'),
('20b36ec4-6e9c-4928-822c-ca2df2e2121d','b5f6869c-be7c-4244-9bf9-704a745a8d2e',56,77,101,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-9'),
('20b44a18-51fa-49d1-bc7e-1abb4f5ff344','6250b44c-f7fa-458b-9059-f4fe88176786',97,206,5,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-2-5'),
('20b5ed64-75af-40ca-a48a-fc776662faf3','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-17'),
('20bb6111-d09d-43b2-8433-5644aef93d81','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:34.137','248135683-1-227'),
('20c0ed34-6a18-478e-8338-524aa71d27c1','fb3572ea-a313-4cf8-a5cb-b7056e79114f',98,183,70,0,'2025-04-15 16:02:05.143','2025-04-24 15:01:32.170','371860514-1-3'),
('20c201e0-8896-460f-9d21-a27e917c05c4','ac31b261-797e-4d80-b750-2e487b9e012c',75,58,102,0,NULL,NULL,'221383692-3-2'),
('20c220e2-88d9-41f0-a2be-d0c81ea973dc','aaaf255b-d973-4737-94d9-7642e86777f3',57,44,20,0,'2025-01-11 15:20:17.289','2025-01-19 14:51:56.907','517205467-1-1'),
('20c241cb-e161-4855-ad7c-2947ae45a0bd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.028','22391500-1-11'),
('20c529db-200b-4273-969f-67a2f06a5c0a','d157292a-9b96-4a01-b210-9211e153e2de',82,55,102,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-3-2'),
('20c9526d-be56-4ab7-b40e-07c91917af75','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-123'),
('20c9e1e2-e89b-4376-8738-1cd90480a7a5','894ffd66-b452-4c98-9e0d-be9365aad518',165,92,16,0,'2025-09-02 14:48:34.082','2025-09-10 07:24:12.131','371180149-2-1'),
('20ca5dc0-979c-4df5-a54a-dd409e496f1d','00972f30-0555-457b-93aa-8acffb86ef96',96,197,7,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.158','644711459-1-1'),
('20d552c1-49e3-48c7-bce4-315386065781','816c1e88-40bb-4ba2-8df2-ca3765e01793',56,82,100,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-3-1'),
('20d80bfe-cbe5-471a-8955-979f66425638','877e4ae1-48a1-402e-9b28-5eef3571383d',35,90,13,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-3-3'),
('20d8f296-f409-4253-a76d-d294c74b7507','df6feab3-1b39-46d1-811e-3dcd375e9ebd',231,75,97,0,'2025-03-06 10:32:09.908','2025-03-13 19:03:08.684','455207811-1-1'),
('20dbcc77-fc84-4ac4-b822-523e1a22f655','9affc7b1-09c4-4e84-b48b-d0c117c421b0',80,95,90,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.901','412280381-1-10'),
('20dc0aab-e503-4329-bd6d-7828a5b9e3ce','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:26.971','248135683-2-63'),
('20dc105f-0685-4438-8152-e958ab016350','c557db8e-813f-4118-a776-7fcaab745fff',0,0,0,0,'2025-03-27 08:02:53.352','2025-04-08 15:37:07.395','47855592-1-4'),
('20dea4a8-0a14-4e3c-b3dd-75e31ceb7b0e','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',105,75,130,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-2'),
('20df022b-9437-41d8-8abd-f4f4e60ab8a1','7fbc0cac-4c11-4144-b578-3223cd9dd90a',62,5,230,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.825','745485271-1-24'),
('20df3054-fd5a-4b65-b7b2-e79934bbb40b','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-10'),
('20e42eb6-e53c-4e41-b896-8d5df1c98e83','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-71'),
('20e7fad6-b6f3-457f-b7f7-b32d953eb4fe','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-22'),
('20e801f3-a475-4565-b3d8-15615cfc1378','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.910','478949141-1-6'),
('20e9e608-0def-479d-8ada-09006df91c42','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:27.736','248135683-2-56'),
('20ea924e-af79-4c1f-8678-0575247da6d5','af69c5a3-87d3-4548-a650-720b69a4fc69',58,6,211,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.819','614143415-1-47'),
('20ec4d56-4035-4b38-8683-9a1f3f6bfcf4','9866a947-9974-4053-8415-4518842488fe',200,12,8,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-9'),
('20ef24ba-5e90-4d97-8f01-4dff1a13f6ea','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.713',NULL,'41288739-1-9'),
('20f09db5-5448-4588-99dc-53a30e1f7d9c','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',68,205,5,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-12'),
('20f15fba-26af-45e1-a744-5447feee3581','bf3c6d76-210c-4d83-8776-c792b4de5d83',127,16,165,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-2'),
('20f23140-0c4e-4744-80db-137018386400','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-54'),
('20f26f88-ef0f-4b82-be03-859daec6605c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-74'),
('20f8cee6-87eb-41f0-bb30-7226f03ef43b','fb2833ed-b33f-4336-b2e5-bb576edd765a',0,0,0,0,'2025-02-20 12:15:00.168','2025-03-04 15:38:06.963','982342488-1-4'),
('20fbf4ea-705e-439c-b505-8c5d97d55200','3d740bd3-88dc-482c-bec6-f4b0fae42557',76,116,55,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-1'),
('20fc8183-4907-4b55-8a99-9176fa594c5c','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-1'),
('20fdb7bd-2710-40af-ac15-b32231eb9f32','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-4'),
('20fde1f2-f073-4d0d-91e0-40e484c64cf7','00d33439-2cbf-47d7-9bad-43659e6a874b',154,95,70,0,'2024-10-23 14:11:48.201','2024-10-31 12:13:55.505','501256266-1-3'),
('20fe4072-caf5-42a6-9243-9381d246d75d','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-5'),
('2103a900-99e8-4f3a-8784-7ca94b235058','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-70'),
('210b5778-62a5-49d7-bb9e-0b04b6595923','7908530c-18a1-4a83-b5c2-fdea91117bbe',95,50,15,0,'2024-03-31 17:55:03.268','2024-04-15 11:37:34.889','449178440-1-6'),
('210c1f76-f79b-4c26-a61a-fee79f5125f9','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',150,220,18,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-1'),
('210e848f-03fd-4328-9da5-ed8fd0f18339','56ea7179-a602-4433-936e-330a27aa9423',126,171,17,0,'2025-09-26 12:39:06.062','2025-10-07 14:12:37.914','745464679-1-4'),
('21123956-2934-4e86-80e0-0be51299ef8e','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-4'),
('211b2264-ac44-4945-9531-657c07d1ba44','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-3'),
('211b5e38-376f-47ae-b351-7894a3387ae8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:34.873','248135683-1-48'),
('211e07e6-6cb3-4c9f-8967-353a60ae9846','49aee46b-57f5-46fb-849f-9ef568510414',0,0,0,0,NULL,NULL,'613137842-2-1'),
('211fd17c-3d22-463f-b3df-2c759317a412','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-14'),
('21200577-a04f-47c0-8d5a-bda227b11ede','6aadeef6-4393-4005-8da5-51ca4e422dfd',200,100,8,0,'2024-10-17 11:51:15.416','2024-10-26 07:31:35.106','45559266-1-1'),
('2123bbb0-3669-4c69-a642-765d060f4a2f','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-18'),
('2123c34e-8bb9-4224-952f-ef347393001d','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-8'),
('2128c662-6f7b-4b6a-8f46-c79e1c38a57f','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-60'),
('212b27db-09cf-4cb8-a641-c118d641ef80','e891b961-f9b8-41f5-b49e-f492048bd8c9',55,12,93,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-3'),
('212e18d6-34ab-4d02-9e5e-1b103c9f49fa','e654d04a-78f6-4d76-ae95-c3bef1625ad8',0,0,0,0,'2024-11-08 18:02:53.802','2024-11-15 16:10:54.110','107593305-1-2'),
('212fc757-f93a-4cbc-8049-26d154b3c217','c29e76a4-89ba-4143-8fad-01a2910620ee',41,31,31,0,'2025-09-16 13:29:06.383','2025-10-04 13:57:34.400','750496630-1-3'),
('213006e5-0d39-4024-b511-fa5cb8078ff2','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-15'),
('2131321b-6dc9-40c3-af7f-1323a679313c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:35.528','248135683-1-166'),
('21318d13-e7a3-4245-b2c8-37b69c089c82','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-77'),
('21331889-d3ca-4df1-b3a1-569b83a08729','71739720-3bf4-4e85-a052-44d40ca1db0f',0,0,0,0,'2025-04-30 14:29:27.263','2025-05-10 20:13:32.865','478662278-1-4'),
('2133d945-ee1c-4859-959e-5811e857c351','ca2466d1-9a83-4f57-8f76-f5ddce302e04',281,22,5,0,'2025-06-27 17:12:11.182','2025-07-14 06:05:05.686','382253716-1-20'),
('2134deb5-de71-4364-99ed-7a9eadda623f','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-4'),
('21356e99-7c19-4308-a01a-7722e5c960da','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-27'),
('2138f943-6435-4343-ba09-e6ee72d7a025','55155cc4-3303-4c8d-8138-cd049d9c0cad',56,35,42,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-1'),
('213a3cb7-7923-4960-9f34-2c3e94729f60','4f368ea0-3216-4d5d-b412-e65605d1c4e8',103,173,65,0,'2025-10-06 07:10:10.171','2025-10-15 08:24:46.846','808396862-1-2'),
('213d6e0c-f638-40c9-adfc-a40498a7d304','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-1'),
('213f4a13-ef94-497e-b9fa-c1863743dff4','94d4fd15-f663-40b8-8ec9-f93a5cde757c',64,6,223,0,NULL,NULL,'614364554-5-2'),
('2140f358-86d8-43e7-9439-03a732b18211','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-4'),
('214240b1-53b9-434a-a638-a417591d3c07','5c1630ab-9f31-4753-99de-1615c793dd9e',82,109,56,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-4-1'),
('21427310-5bf0-4663-86b2-f6ab5c1ffa3c','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-27'),
('21437612-8c56-4ec9-87a5-57a4b12c6f48','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-214'),
('2147da18-121f-4344-a266-15e45f1b829b','5879d280-4095-4ae4-84b6-a7f59f7425e2',213,14,102,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-2-1'),
('21481c9e-b065-42d6-92b9-65f64e5a8886','0b7b294b-a03f-4eeb-a10a-b4d653fe53f5',85,65,144,0,'2025-04-30 14:29:29.173','2025-05-10 20:13:29.165','598405313-1-2'),
('214b4402-bf65-4ec2-8680-98bfbe6c85dc','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.380','2025-07-03 11:20:02.277','223379282-1-33'),
('214f798e-1696-4a19-bffc-0ec995467027','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-196'),
('2152029f-7543-4d53-bded-2a2a8a79e1fe','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-16'),
('2152b21c-a7f7-4867-a9b2-49df40a9e193','bbfb2336-68c2-4a56-ad65-816c9fd52d3e',0,0,0,0,NULL,NULL,'644537401-1-1'),
('2152ee70-e622-4e29-9233-2b9ec253bebc','81b6844f-9988-4a82-aa1c-b69b75b17ba7',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-2-4'),
('2155c78f-35bf-40d5-ac9f-a8aab7f26219','02a9c28f-9612-4397-8742-1194ba41344a',80,160,100,0,'2025-09-01 11:06:08.314','2025-09-09 12:51:12.366','43789661-1-2'),
('2157b890-86a5-461c-b7ae-23afba7c64c9','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-11'),
('215b3280-6fbc-4466-83a2-adeb3ed47b7c','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-13'),
('216016eb-337c-4b57-bc06-e11c388588ff','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-13'),
('2160f382-1af5-43d4-84d1-bf0965282069','0009aeec-e682-465c-b701-363a3ef377a6',195,16,16,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-18'),
('21627c49-b7be-4052-a0f4-f1121a6bfdae','26d9dcf8-f56a-4ec1-96d4-af3945d37fa2',92,33,17,0,'2025-07-17 09:33:47.357','2025-07-22 17:22:00.525','910772127-1-1'),
('21637020-a64b-4c49-8a9a-91d0f0e9d006','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-58'),
('21647ff2-1df2-49e5-a3f2-6fcc8c81699c','904ccae0-124e-44d4-aea2-8615bcf196d5',0,0,0,0,'2024-12-13 14:49:23.227','2024-12-21 10:34:20.583','735905073-1-3'),
('216bb27f-f01f-4592-87d5-d2d1ec20d8dc','d2f8d58d-42ad-4705-b1e8-a666af927fa3',21,43,81,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-5'),
('216f71b5-5805-4a35-b419-be9f6f3371e1','ed1855d3-2d98-4083-a304-8244bd80e6a8',86,100,73,0,'2025-04-28 07:40:47.424','2025-05-05 09:10:30.650','8176511-1-5'),
('2171644f-6aa0-4004-9e76-5828b5484e71','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-38'),
('2172ebf0-7a36-4b6f-8872-09b9f307d39e','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-17'),
('217638ca-239d-4aa2-9acb-c9a8846c8802','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-3'),
('21782f85-410a-4f24-9559-a4d2376c72a1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',230,95,80,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-14'),
('21833679-a566-4355-8850-7cc9e7ad84c5','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-26'),
('2185433f-2c44-4c8c-bce0-96e9fe0d9be1','158455d3-2130-4d98-9534-cb36e6c15df9',70,90,80,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-2'),
('21871bca-8b1b-4f6a-aa24-390dfbf55066','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-46'),
('218d1808-c5bd-401e-b858-3a0508590427','f8e899ed-a330-44f0-9263-2af1e0da52d0',32,100,205,0,'2025-10-20 07:18:12.638',NULL,'531606130-4-2'),
('218e280c-1188-4ba9-85db-a4857bd98ed2','6a2d762e-11cd-4fca-b32d-cdba41391e25',205,106,16,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-4'),
('218f409a-c6ad-4dbc-842c-ad2ef3cfb715','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-2'),
('218f6226-5982-4436-8d99-649409f7a6fd','ca2466d1-9a83-4f57-8f76-f5ddce302e04',124,206,7,0,'2025-06-27 17:12:11.182','2025-07-14 06:05:05.686','382253716-1-16'),
('219135cf-c461-4dee-ba76-59ddf146226e','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.333','2024-07-16 05:12:00.271','248450889-1-2'),
('21a011d8-e351-4718-bf95-5945489d9abc','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-1'),
('21a0b6cb-7fd8-4927-b678-064bb14e6ecd','b78519ec-4b79-400f-a709-a1f09256d30d',15,8,219,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-6'),
('21a0e7c3-a9ad-4516-9ec0-392c909f7e89','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-63'),
('21a29151-ed87-4cfa-964c-2f60abadf83b','76c6ae05-c99a-474b-bc3b-0972208c5f48',85,57,110,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-3-1'),
('21a37fea-9012-49a2-83e8-c02eab8261a5','8fc7023c-7fab-44ae-a533-006d835eddb6',45,39,39,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-3'),
('21a3d8a6-a736-417d-89ec-016c8b28be26','fc9baf44-fed5-4b50-be95-b9964e750a79',100,142,70,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-4-1'),
('21a8f520-5bde-4900-9eed-619de23c6034','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-3'),
('21ab6fed-dce4-4ffd-a92f-bd1f567df4ae','bb9f6535-af97-4e17-af79-099a643ce967',52,85,104,0,'2025-08-22 20:28:42.931','2025-09-03 06:11:37.803','338829299-2-2'),
('21ae49e8-1d0a-49e5-b11a-7d571b0e29a0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-109'),
('21af4094-fe58-430f-b538-a90ef3e361ef','c527dd1d-63c2-443d-aaa4-dcf25c34e426',20,30,30,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-6'),
('21af44c9-2032-4c2e-9e61-0ea9285de1b7','267142d9-637b-4672-82ec-1cf14654d578',70,221,98,0,'2025-05-09 18:44:14.646','2025-05-20 06:23:59.224','371429381-1-1'),
('21b02486-866d-4cf1-86be-4a4c6e2f0e3a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-154'),
('21b08fbd-7bcc-4292-b6f4-703f8072ab10','67230d57-36ae-46e9-af72-e2352002aef6',75,100,112,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-3-2'),
('21b555aa-2d5e-4d5b-b154-30d22f4e0340','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-6'),
('21b6bf07-0234-4b4b-9e5d-7bc8f51efc04','f71f6a2d-7b5e-43bf-859b-c13088cb4e11',43,100,129,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.266','644593040-3-1'),
('21b87b5c-7e5a-45dc-99f2-dd51a1848878','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-49'),
('21ba5138-ef67-4fc5-9d5d-70dfa9fb0171','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-6'),
('21bacd7b-6de9-4f5e-bea3-e7bd0a37d15e','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.585',NULL,'412400536-1-3'),
('21be3e68-0e24-48a7-983e-c9c9110ad7dc','634dc64a-b9bb-45df-b331-ced53563559b',20,30,21,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-2-2'),
('21bf461d-0d84-492d-a81f-376d22a4090d','d361d18b-4b93-47bb-9f0e-b3ddf5f8102e',87,87,9,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.293','437895842-3-1'),
('21c12fe9-fdc9-4f47-846b-b7a6accda7ce','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-20'),
('21c296cb-9edd-45fa-8311-a565fbba0142','ab5e91a7-fe1d-4340-975e-9aae4b9d849b',0,0,0,0,'2024-05-29 08:53:15.191','2024-06-10 13:50:06.134','478733683-1-1'),
('21c71ef3-1e74-4df4-bac4-5214175e5dbe','504660da-c27b-41a4-aa56-e6293172b9c3',230,70,93,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-2'),
('21c8902c-862e-41a7-99cc-ed553cab5176','d22d7227-b6be-4a20-978b-11fabd469cb9',85,200,100,0,'2024-05-17 09:42:09.160','2024-05-28 16:23:12.626','126274786-1-1'),
('21c9342f-8488-49b8-9b74-38d7f05320cb','a61afe94-7b8e-47a4-a6a6-a1d3739c3086',65,65,85,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-2-2'),
('21cce5bf-6c02-408a-8830-9ba5ee12ac08','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-81'),
('21cde91c-134e-4499-a7e1-fda23b651775','17628264-1528-4825-a23d-e787296a2c4d',128,65,126,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-1'),
('21ced4d8-dace-4a36-8bf0-fbf0312181eb','ee9fb715-b428-43a4-bbcb-69a220329347',77,127,7,0,'2025-09-06 07:20:45.019','2025-09-12 22:09:23.092','371304914-1-4'),
('21d2b474-1fc7-4730-b36a-a91880f82c92','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',57,50,50,0,'2024-10-02 09:26:32.554','2024-10-10 16:31:34.970','428736949-1-2'),
('21d50f47-c894-4891-9238-b7ce7c70fc88','8b9be79c-034c-4491-9980-ad94bae49b22',80,70,70,0,NULL,NULL,'501873907-1-1'),
('21d6e47a-1890-4a5f-9ac8-cdb02a3a4bf8','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-26'),
('21d80831-ceb6-4dad-a2de-2ec90a75f63d','4133b64d-8906-4cf9-aeb9-479ffee87338',51,51,77,0,NULL,NULL,'695734625-1-2'),
('21de0fbb-e1b2-4ce1-ad05-cbb32f06090b','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.517','2025-04-25 19:39:28.225','64434778-1-1'),
('21e09d43-9144-4b96-8ade-3477b067d307','1e41dfe5-a6e8-4899-a466-b4448b9503a2',181,137,9,0,'2025-07-12 09:20:16.837','2025-07-25 10:49:18.047','412383870-1-1'),
('21e10785-489a-401e-b52a-7a27194a576c','92f102b1-d7fb-464d-93f4-22a19907a485',49,208,8,0,'2025-03-13 12:21:26.278','2025-03-23 16:15:49.033','338426911-2-1'),
('21e445fa-0507-4014-b8b6-f94ad2e9ff58','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-17'),
('21ea4185-73c7-4467-925b-06eaf5d02de5','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',66,32,52,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-3'),
('21eb776b-4cd3-4e8d-bdf7-4944d7aada54','fcdb68c7-3f48-4ca6-807f-23c014d6a46c',56,82,110,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-4-1'),
('21eb9f4b-d499-49a5-ab2a-b8a530210a31','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-44'),
('21ec0d46-1213-4276-bf1d-5b049dd836e2','c71d8705-4675-43e1-be22-4ac642637a94',32,58,80,0,'2025-10-20 04:18:21.633',NULL,'312422305-7-3'),
('21efb380-041d-41f7-969b-d7268ead533c','808a4f1b-793f-4a15-808d-00c26a26c166',158,3,198,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-7'),
('21f45252-8074-4aaa-a4d9-ecea5619a41c','bb9a5b8a-5138-4f0b-ae57-88695cf68e25',63,70,87,0,NULL,NULL,'786811264-2-2'),
('21f5ab6d-f833-4501-ba70-d39255f4a096','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-5'),
('21f619e5-284e-45b4-a0a0-3764e683d12f','f7dce569-186c-4b40-9e32-d553c0d68d00',75,103,188,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-4-1'),
('21f7f3a5-ad0c-4c9d-9c80-04a9ead38375','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:36.504','248135683-1-67'),
('21f8bae5-7de5-4967-bab2-47ed5f8a38dd','90027eb5-a7ee-4012-a376-a73b2e0c56b0',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-2-1'),
('21fc6c34-140d-4fc5-afc4-1d65b12a9cf3','7fbc0cac-4c11-4144-b578-3223cd9dd90a',50,16,87,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.825','745485271-1-7'),
('22006262-cf05-4966-abdc-a230925bd258','527ed217-6d76-4ec9-b760-807ad00b847a',0,0,0,0,'2025-10-02 11:20:41.358','2025-10-16 16:43:50.652','910482480-1-3'),
('2201d23f-59d6-45a9-bd29-c438e0e14e7c','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-138'),
('22072d7c-59fa-40f7-8bd6-3d18b10a386d','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-13'),
('2207cab5-c893-48b8-be41-f56fe2417df2','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-3-1'),
('220976d1-25fb-48c5-8dd9-a9ae6bd74e5b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-10'),
('220c8c98-f275-4f78-82b7-14da39bf0244','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',13,52,90,0,NULL,NULL,'47816855-2-16'),
('220cecc4-0b8c-4ad6-820c-0ebfa28e0159','4738e896-6b15-4ccf-8853-35517f47fbfe',116,125,39,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-3-1'),
('220e51a4-e725-4914-a8b8-83ae9ead6be1','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',68,60,96,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-2'),
('220f6606-6f8d-44c1-b251-b62744aa5721','88ed24fa-a5d6-4b3f-9fe0-f610ed723cf3',95,70,248,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.469','517255345-1-1'),
('2210778c-b6d0-4d59-bffb-bbd2fc7c38c9','1841d5a2-cb6e-457a-aa34-68a1f7f98613',0,0,0,0,'2024-10-17 13:41:07.517','2024-10-23 13:04:35.248','923419994-1-3'),
('22108e5b-3ef3-4fc2-a63b-186e689abfd2','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-139'),
('2211449e-0ce3-4491-80f7-aaa15308adf0','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-4'),
('2215176f-aa9b-4c37-86d8-a6fc3861109d','3b54d3cd-52a7-4fd4-a4d0-94accfd2dbfb',41,125,220,0,'2025-07-12 09:20:08.141','2025-07-26 16:11:52.722','657258901-1-1'),
('22160e12-7d7a-489c-bf96-09d300e20e6c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.493','046487702-1-2'),
('22171e67-1a5f-4ed7-bc18-bf7e64080758','6b29fcf3-79cd-49b9-b2fa-ca1518066509',48,10,145,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-1'),
('221b7ea7-9f96-47a2-bbe9-c3f23080783d','b78519ec-4b79-400f-a709-a1f09256d30d',50,50,5,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-3-34'),
('221d5491-53e3-4e92-97a4-b77181747531','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-2-3'),
('2220a6e3-7247-4222-b455-8e4f1eda50be','aa7913d9-4692-46ea-94b6-16deac482855',0,0,0,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-8'),
('2220db9d-279e-4294-ad9c-b25b6a4ee47a','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-40'),
('22210541-3b42-4b8f-9b30-750f8c17695e','dfd7a962-bf2a-4456-aeb6-fbc5711ef1a5',52,52,80,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-2-1'),
('2223bbf4-3152-431b-a778-c1ef68540a98','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-4'),
('2225af8f-fcd9-4f8b-8c4d-890f601918ff','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-71'),
('22260c52-68a3-4122-a542-d387ca47f827','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-4'),
('222891f7-fce3-43e7-ab2e-87fb4d7e6dff','630d42f4-c9b1-4b32-9b3d-39e20b4a7b35',97,76,233,0,'2025-04-30 14:28:58.969','2025-05-14 06:37:48.850','745173444-1-1'),
('2228dc4e-ff3f-4830-bf3f-c5d11463bd57','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-67'),
('2229cd4f-aaa7-4fab-907b-cb0e216f7929','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-117'),
('222c3e74-cce5-49f1-89e3-c4c35a258fa2','77ba132e-7c8f-4ec6-9299-238cc9b3b7e4',139,129,17,0,'2025-06-27 17:12:12.393','2025-07-10 07:16:37.956','745952430-1-1'),
('222cee25-4683-4b10-af38-0509abc9020d','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-19'),
('222cfff9-432e-4544-9baf-c9882632da91','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-19'),
('2230a9a2-86af-449b-804a-8b2f4cca9563','852cb596-91b3-432f-8aee-ec6a804f3a01',70,125,6,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-11'),
('2230b509-368b-4f24-8652-f9d9d0e216e6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-175'),
('22325420-ad69-4b09-a94e-1ed2beef04ed','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-4'),
('2233c58c-a068-4c44-ba55-b5a8f2d8a040','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-25'),
('2236c8b9-80d5-41d8-9991-99459e0e6115','f9861f37-efe2-4e3a-930c-f694c4e10c6f',42,108,63,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-4'),
('2239ee85-857f-499b-87cf-c1696a2a2510','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',77,60,13,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.628','614659832-36-1'),
('223d2bf9-d9f7-44ec-97a0-b9553b3f3bd4','58d8f46d-6654-4ce9-9f45-6159cf5fa49a',75,75,12,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-3-1'),
('223f2139-a239-4135-947c-70a8803b3d30','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-1'),
('2241102c-875e-4ba3-905a-1a007891484c','dcd864c7-ef37-45ba-880c-976ebda30365',123,123,65,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-4-2'),
('224215f8-6aaf-422d-84a6-d568ccbc0338','1510fb1c-ac60-443b-8470-17f2857b0558',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-1-2'),
('224278ef-a8e4-4142-a5ba-01a7ddff8f83','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-3'),
('22438169-36ae-4679-9444-4755bece9888','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-38'),
('224382e7-8222-45f0-88c0-3348cdd50a3a','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-3'),
('2244c790-239b-46f2-8542-7d4a59d79ef2','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-7'),
('22463c90-97d9-420d-8835-59dbc776394f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:21.426','248284003-1-162'),
('2246e315-aa57-4b73-9dbe-5970ebd5aad1','3535d433-eb38-4879-84b4-dbf8410809cd',210,45,6,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-24'),
('224a55a7-4efb-4056-a256-19723862f5cf','7884afbb-70fb-4cb7-a993-b67b9605608b',110,57,82,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-7-1'),
('224a9162-a594-4cef-a49f-f158abfa3617','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-53'),
('224adb35-dd29-4e76-a04b-be20eb51d1e6','46d1512a-2bfb-476d-a224-9390f3e194f2',32,22,12,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-4'),
('224ae85e-510f-47e5-9736-09b2b6dff639','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-6'),
('224c8095-407d-475f-b9a3-20b40831636f','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',0,0,0,0,'2024-03-30 07:11:57.221','2024-04-02 16:08:31.694','982501931-1-6'),
('224ded92-feeb-494a-bdb5-e575d6c0e478','224f9fd9-8c5a-475d-bfe9-432cb06174c6',80,47,82,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-2-1'),
('224ea3a4-accf-470f-8076-bb7cc3baf44d','38d02296-46cb-405f-9d09-5974d7326df2',0,0,0,0,NULL,NULL,'371258376-3-3'),
('224f1acc-d8e6-406f-a577-61e80ee60fbe','53a40750-ae01-4461-a12d-633dc7c9cfea',128,129,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-2-1'),
('22511742-2808-4f61-a20f-6c8afde7fb30','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-52'),
('22512e67-5a29-4242-ab3c-88c0f2f1e4d2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:37.546','248135683-1-81'),
('22519417-555c-4a5c-8a97-27c1723b7b3c','0263f7f0-6c1a-4beb-ab78-25d69142647c',45,5,65,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-5'),
('2251c76e-c66d-4173-89a5-45ced9d4b8a4','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-7'),
('2253badc-f5a0-43e1-ae43-9cc402b6d7f1','f28873c5-2e62-4fdb-ada4-793997143e52',65,187,92,0,'2025-02-23 12:39:09.198','2025-03-06 14:25:32.996','449974141-1-1'),
('2254c238-de82-4ea1-b3d9-1ae6c1c85df9','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.855','412252425-1-7'),
('225e4ff4-cc3e-4990-9c90-d44c8ec7d895','c8a2a15e-4279-4904-a725-a9d44306abad',75,66,63,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-2'),
('2260ba1f-753a-49fa-9254-da21e113a4f5','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-30'),
('2261684e-7e86-4fc2-b9a0-48d0350e8602','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',91,91,60,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-3'),
('22639334-6fd3-4d7c-a3b8-d32f6898cb54','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-22'),
('2264c2e0-87c9-4953-8bf3-b4ec2923ecfd','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-23'),
('22664f15-e261-4984-b549-443a78291909','c01fb28b-ddac-45ad-9fd4-6dc177af77f8',92,60,252,0,'2025-09-02 14:48:42.201','2025-09-10 17:06:01.025','613108463-5-1'),
('226836f0-45e5-4b63-ade5-653a27a6d2a0','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-3'),
('2269746c-06ef-44c3-904c-1958d30220d4','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-15'),
('22698e8b-d2d5-4000-875e-8d13d9964377','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-202'),
('226a14a9-c77a-4f2b-bde8-fd2790064ac1','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-10'),
('226c0918-24c0-4514-8b79-6853e4e2a80a','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-5'),
('226c1703-bcd9-4e17-8ef3-51b8f4e11ed3','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-8'),
('226c19e0-5c29-4eed-942e-07a537357c6a','e685dec0-77f5-4777-a591-8b659322473d',0,0,0,0,'2024-10-23 14:11:49.290','2024-11-04 08:40:50.986','745519015-1-3'),
('226c61e0-97e1-4ff4-a2dc-cb5efc4616a6','682e2f71-df2f-412f-a256-ded0d3475e02',57,82,105,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-1-2'),
('22700cb8-5732-4ea9-b84f-d0d115da732d','afd7f71c-d1fc-484f-b72d-f986503df4f7',92,92,65,0,NULL,NULL,'703266692-1-7'),
('2271015b-85a8-46e0-85f6-3f7b37b04eed','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-161'),
('22736b6d-b2a8-4358-9424-61ff797d10a6','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-18'),
('2273caaa-e703-43d7-aae6-2f868c22619f','a6b04dd3-2487-49d4-ad42-d8c0995db2df',53,77,96,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-2-3'),
('227485fe-44f0-4507-a9c7-b84074952fda','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-3'),
('22763f48-a4e6-43d9-bb41-e97147dd114d','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',63,47,9,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-8'),
('22769d90-bad9-4cc0-9295-69563eed74fb','e8b58cc1-698b-4364-ae95-f00b90174c08',22,43,64,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-5'),
('2278eac1-007c-4363-b12d-dee41da53dce','a08ca4c6-b9c1-4c8a-8069-9bcaf70515ce',102,245,65,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-4-2'),
('227bbc7b-91e9-45ad-90b2-7fd90215ff4e','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-10'),
('227f6542-443f-467c-9696-e5cf054d1da6','fa893fcd-0aa2-4b0d-8cfb-f1438b36cac6',0,0,0,0,'2025-07-02 12:43:56.180','2025-07-16 16:50:59.613','371655670-1-3'),
('227f7d4d-1e24-4f7b-b6f6-15665e7a4cb8','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-84'),
('22806e3c-fcbd-4eae-a079-7edfad668ca9','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.433','2487154-1-25'),
('22807692-0b52-4126-962a-0222fc4ff601','76c744b8-92cc-490a-9b47-df670d09d9d1',0,0,0,0,NULL,NULL,'695274055-1-1'),
('22823e0d-18fa-47e0-84ba-7daa8e4a88f1','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-37'),
('228248cf-9b7c-4667-8485-acfb5cfff7bc','17628264-1528-4825-a23d-e787296a2c4d',39,40,44,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-5'),
('22838331-2792-4dff-873e-bb3f0df2df0c','88bec1c0-e7a5-4328-b46f-29d37f4728f2',240,95,67,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.068','982973548-3-2'),
('2284a93f-b6eb-4b1d-878e-5434812296c7','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-6'),
('2287ffa4-e0b8-4f08-b8d2-2e072499891f','8a2e1aac-28d1-4f92-929e-a34cea96fcff',43,43,75,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-2'),
('2290386b-93ca-4b99-8655-b499be691cb4','dbc7afbd-247d-4124-8935-6a9a1df416de',103,96,75,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-3-1'),
('22905c06-304f-4b52-a0d8-97cefc689305','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-44'),
('2294ad3b-b6ed-4a81-bc5f-1d947fffcff7','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-12'),
('2296a499-945c-4e45-b0b0-e04a881ff170','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-3'),
('2298cd88-f22c-4a2e-bd7e-616b49e9b011','ef7dd452-447d-4d98-9daf-20a74a8187db',35,57,24,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-12-1'),
('229c8095-b35d-4c53-a8c6-6423fcecac90','33404392-4c1c-4173-be7f-094c12291d2c',80,75,70,0,'2025-09-01 11:06:28.489','2025-09-12 19:45:58.707','644763473-1-1'),
('229e4012-70b6-494b-8c87-1a2d2800b38f','0ca7b5c8-7608-49bc-9057-d56d835fbea5',82,57,100,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-21'),
('22a077a8-5ce0-4120-87a3-beec92471ac0','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:28.896','248135683-2-79'),
('22a143ae-3e88-4c0a-a879-dd9a86fc9058','f8042fc5-0122-45dd-abb3-ff92fa197c28',80,93,98,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-1'),
('22a2557a-8aa0-41f2-b321-c757300f4afc','6a308121-6cf9-4384-8446-08182bd669fd',95,95,9,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-4'),
('22a316c7-5de2-4a08-bb0d-2ac33f93d8d2','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.550','2025-03-08 13:57:44.556','221554711-1-2'),
('22a46789-1e49-4eb0-999f-7d0e5ff9fc06','1dd1c08b-81d1-4c12-a18a-1171b04b0808',69,97,208,0,'2025-03-27 15:05:42.380','2025-04-05 20:39:29.869','37197237-1-1'),
('22a7a14c-febb-42b5-8792-8ae2afff3b3e','8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7',76,127,7,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-3-1'),
('22abe9c5-1e4b-4bc0-9882-5bdeeb43e700','23603e9a-f1df-45b7-910f-576bcfbf1bb0',0,0,0,0,NULL,NULL,'478981977-1-2'),
('22aeaa95-d58d-439b-8bd4-f4a300fe4cd8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-140'),
('22afb2a9-1001-4d43-ab71-d42251d32e43','9affc7b1-09c4-4e84-b48b-d0c117c421b0',55,55,47,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.901','412280381-1-51'),
('22b16716-3c1b-42db-a24e-dd0fabe29872','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-2'),
('22b56bed-6ddb-4f84-ac1a-5580907d3a05','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-1'),
('22b59c70-f710-49ea-8266-efdcf12934c1','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-11'),
('22b62a59-4bb6-4fdb-8748-e179355727a2','904ba84e-2a4d-4a46-9ec4-7fcbbbdd4913',0,0,0,0,'2025-03-06 10:32:00.597','2025-03-16 15:00:17.707','745987581-1-2'),
('22b813e8-98df-4fd1-a6ac-5046f90706f5','7f11042b-3945-4eb3-b37e-a822894de6f5',70,46,17,0,NULL,NULL,'478777575-1-1'),
('22ba0b12-e4a1-40d4-ae44-5c7181b0783f','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.061','2024-11-09 11:12:20.375','248259363-1-8'),
('22bb28b9-bc88-4c7c-a6c0-2a74bf437295','abe9db81-20e4-46fc-8891-d8e8f19e9355',57,87,110,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.737','437917777-2-2'),
('22bebd42-d404-4b6f-bf2b-0dc1676bdbfd','5598c3c4-7b30-49fc-8997-d966fbd95fbc',202,27,43,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-3-4'),
('22bfc86f-c5d3-4f33-be54-2f6a2a4cb0cc','b44449c8-5efa-4085-bd2d-0a3594587af9',35,161,81,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-2'),
('22c1e1c0-410f-4dfc-adbf-a3587607dea5','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.039','221900850-1-4'),
('22c27ea9-bd85-4e4c-8a60-f193910f737e','a4795240-7137-43ca-a2b8-d82742643bf6',83,101,55,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-6'),
('22c43a43-7951-4cce-819f-f8f4223d28ed','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',270,60,11,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.983','61428079-1-7'),
('22c71f95-9aa2-4175-a849-0ff17e3c7358','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',54,222,27,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-8'),
('22c7e5ae-a93c-407f-9197-1a6f8e54de79','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-1'),
('22cd3dfe-44e9-4edb-b517-9406933def02','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-4'),
('22d90bf2-827a-4f63-b84b-6a96a38f7a05','822012b8-3b7d-46ba-9997-29726e94fb5c',90,93,77,0,'2025-08-22 20:28:34.659','2025-09-03 12:46:56.985','278498481-1-3'),
('22d9349d-506b-48f7-ab1c-49ed75e6a2c2','36d2ccf2-df1a-405a-b3c7-cef507b73ba1',198,32,160,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-1-1'),
('22d95bd6-00a8-41e6-af87-dc57b3b8f571','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-1'),
('22dbc36c-087a-457d-8014-eca6df5ba592','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-148'),
('22dc5af0-d87a-4aca-bc7a-12752e123ac8','8c6d3954-b4ff-4e4e-9adf-d9dfddf0789f',0,0,0,0,'2024-09-28 16:27:22.068','2024-10-09 08:37:14.648','478807426-1-3'),
('22ddd59a-9a3a-4df9-952f-7f3dcbaa1380','7900b99f-1d0a-41ad-b583-3931be125cdf',51,51,77,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-3-1'),
('22e44926-3d73-4fcc-9528-7aeb413e49dc','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.443','570899680-1-105'),
('22e46806-05c0-4bf7-b7a7-d871ce9c6028','a9828fad-e20e-4e73-98f6-917c06f178f5',95,17,15,0,'2024-03-30 10:54:55.588','2024-04-04 12:48:48.669','982189682-1-1'),
('22e50c35-14e1-465b-bcdf-07f51d810ebf','01be5e85-2bcb-4117-9ad4-5f2afa75468d',101,120,80,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-1'),
('22e6946c-c29c-41f8-a09c-5be1653f3e40','6c43de3c-5454-4dc3-8fc2-6cd719969299',65,9,123,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-3'),
('22ebd060-0fd8-4a47-b1b1-f5f40b50f5e8','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.900','2024-10-08 20:17:54.299','478479612-1-33'),
('22ec36a1-375a-4a1a-9ee1-9ad33d7ae29e','4869c334-4618-49fb-9d03-99d95654d12a',52,48,69,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-12'),
('22edb701-e118-4be6-ab16-d1bd97c925c7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-73'),
('22ef16e1-3300-49c7-ad0b-515ca7ab0d12','6ae0233f-f2c2-44bf-9706-7274e4c923e9',92,95,82,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-17'),
('22f5429b-26e4-4e25-aa4b-38d8c5661260','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-19'),
('22f9848d-1142-43b4-baeb-98445bbb274f','3fc759d9-3801-490b-bbad-23f2ff290b97',65,56,100,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-6'),
('22fc64e2-2e2a-4e58-b674-66319de8f12a','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',75,36,30,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-7'),
('22fecfae-0745-4487-bdda-13c4be669fc3','0300de52-b929-49fc-a72c-ccdfd0b7a149',65,85,63,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-1-1'),
('22fefb40-f707-4bc9-b3f7-65cf829acff8','d3b158c9-fe43-44e9-aafa-358c6c95c929',0,0,0,0,NULL,NULL,'478237582-3-1'),
('22ff247b-f894-47b4-a34a-f5e507bd28b4','7d58ca9e-82b3-4213-9fd2-9c4798ae4dc3',52,20,44,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-3-1'),
('22ff85ab-7ef1-4b75-8a38-cf0d74b36b4d','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.637','478281907-1-8'),
('2302df1b-06fd-4660-897f-c291d9c54c7c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',238,110,37,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-15'),
('2308aa8c-3aa7-49ae-b9a6-28436cc2dd86','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-17'),
('230ac95c-fe96-4eaf-87ea-1fdb0651d610','afd7f71c-d1fc-484f-b72d-f986503df4f7',56,100,80,0,NULL,NULL,'703266692-1-12'),
('230e6299-3fe7-4ca3-a298-d96cb70f676a','0e92c59b-93d0-4308-91ce-3965bb186203',100,56,81,0,NULL,NULL,'428180919-1-17'),
('230f716d-7f8b-41ec-ba97-3a0daaedbba7','9ea68f31-7756-4447-84dc-16ea42994b2c',43,42,79,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-2-1'),
('230fca83-a525-4978-8425-4492541b6eea','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-44'),
('2310e1f0-0ee7-4dc6-8f2a-d9a31538c44b','ae9e9c82-84c2-42de-87ba-c07292fe079d',100,70,65,0,'2025-09-18 15:48:45.317','2025-10-02 06:11:13.650','644834421-1-1'),
('23170833-2fb2-4434-986f-93225d94b66b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-13'),
('231739c2-2f03-40d2-b883-84e225e5b07b','e1ea146e-dd39-4b5a-b0e2-af130a4ab837',55,73,102,0,NULL,NULL,'644726352-2-1'),
('231853f9-4ba5-4430-b763-85de67fc68c8','7c7686b8-8f65-4271-acac-1585b7485563',92,51,48,0,'2025-07-29 12:57:25.959','2025-08-12 06:14:45.105','412395222-1-5'),
('231a6485-d895-433d-8c4b-044a322135cd','6302f68c-26c4-4a31-853e-80b9d1ba59ee',90,26,9,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-5'),
('231c773b-e438-4f3b-bc7e-c790ecbfe115','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-43'),
('231d2c0d-4dee-4b1f-9cf4-ddedf82bfcd2','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-36'),
('2320b794-7d4c-48b5-89e8-b23e8e90b86f','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-19'),
('23218379-feac-4c34-b5d5-0178352b4517','71ba9c84-1ca2-4b89-9c5c-55fa5932cdde',0,0,0,0,'2025-09-12 17:16:57.326','2025-09-24 06:51:22.785','478774501-1-1'),
('2328606b-ef9a-4087-9aa6-a600936bf8dc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:23.568','248284003-1-149'),
('232c132d-3e20-416e-b631-acac92e2889c','3ec26908-d18e-42fc-bdca-909ed5ad501d',51,51,78,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-1-2'),
('232f6857-2f90-428f-b7d4-a35ea3a4d2ae','d810a4fe-529a-401c-897d-31b505128e43',0,0,0,0,'2024-11-15 17:06:28.456','2024-11-27 15:33:01.817','478355116-1-1'),
('23301bd0-8e5b-4537-84f3-d0d46c327b14','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',170,15,5,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-11'),
('2332b19a-47df-4e63-9292-8debb4470c01','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-4'),
('23356943-f41d-45bf-8a50-f22945527fb6','82c44317-84ac-4df9-8145-97abec99a444',0,0,0,0,'2024-04-08 08:57:37.142','2024-04-30 22:31:35.539','478702716-1-1'),
('233741f1-a9df-4278-8bc5-948648e76df8','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-23'),
('2337f645-7f2c-4b5d-8ad9-c24b70594689','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-74'),
('233c629e-bb74-4c47-8d13-78d600d4d08f','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-22'),
('233d82e8-7bc0-48ee-a869-f0b92c96baa7','be73bfce-7391-4246-a655-6a37a58937a0',50,45,163,0,'2025-09-26 12:39:03.284','2025-10-07 14:12:25.524','976369139-1-1'),
('233fedab-05f5-4294-8716-7f7706dbdb5e','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',27,110,208,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-6'),
('2341a89f-f63f-41b4-8808-ba740fcff341','7b886c3c-4fc5-4630-b9ae-d8fb7f7ab243',103,55,76,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-4-2'),
('2342dfa4-9ce6-4237-aaf7-c17e624ed5f0','add0ce19-5e60-422c-9aab-9dd0f7dbee14',0,0,0,0,NULL,NULL,'268264114-1-1'),
('2347b2d3-ff12-43cd-abc1-4e075e593baf','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-17'),
('234d5027-13cf-44d7-971d-840492a914e4','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.808','41270066-1-4'),
('234e6820-f9cd-496a-a530-5fea9cc71004','c5d03b78-19c4-44f2-a673-725e07271521',105,100,80,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-8'),
('234f5166-08ba-4628-9f57-6e5655830ae4','ed097511-c426-4ff2-b940-1f98b2a1f4f6',53,12,222,0,'2025-10-22 13:06:56.699',NULL,'910152598-3-12'),
('235613e8-06fa-4ec9-9df4-bbe51b448ebe','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.900','2024-10-08 20:17:54.299','478479612-1-3'),
('2357a60f-f796-44b0-9de3-966537e875b7','2022ec7e-3b20-4c57-99bb-9fd74367008e',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-1-1'),
('23588ba1-4025-431a-8e2e-866abefdb0d9','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',82,59,10,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-6'),
('2358edfb-536f-4d7c-956a-321e46c7af34','1868aea0-f631-4deb-85f5-8aa25773bef0',205,52,35,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-3'),
('235a27e5-9d0d-440d-9c89-d70854af4769','ca4b53fd-638e-41d1-a236-22653e553702',213,100,111,0,'2024-08-21 14:53:28.675','2024-08-30 15:04:37.640','429340012-1-3'),
('235efb59-f395-428d-9767-f11b3bdaec7d','2d647144-2349-4287-b285-9d67e49dad16',0,0,0,0,'2025-09-24 11:00:57.301','2025-10-02 11:12:11.388','338842710-1-1'),
('235f99ee-6d9e-4fff-8f9f-c3b3f2aac9e7','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-22'),
('2360751e-431e-49c1-8992-1f7411cbeb03','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-5'),
('2364ee9c-2e94-4969-b134-a0361a044be0','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-2'),
('236584b2-be64-4966-91e7-e4145e6acdfa','ac73d19b-52b7-42a0-83e3-a4d8491f56b1',98,157,65,0,'2025-10-08 17:44:13.127','2025-10-20 06:32:30.113','644717952-1-1'),
('2365a3e7-b881-4d6d-8bbd-a15f87d31305','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-20'),
('236c5fe7-9dba-4d5c-9582-dd4b7e5ce4fe','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-38'),
('236db8b8-86a5-4483-a88a-6361f112b716','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-77'),
('236f5f03-770e-4021-8bbd-074887888dd5','db48d2de-9b3c-4281-8b61-7cd066669b2d',104,82,77,0,NULL,NULL,'644726352-1-4'),
('237115ed-d048-4e43-abb3-2ecfe518e4a6','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-2'),
('2373d46f-5288-4f87-b9a5-cd43cef927f5','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-4'),
('2376a69b-fcaa-4790-a68a-0a21ea8e77c0','83fa7429-792d-42a8-9ee5-5d78e3654c0f',73,30,200,0,'2025-08-22 20:28:37.271','2025-09-03 06:12:05.456','745734415-1-3'),
('2376af3c-885f-4613-910a-23311f5de0f7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-49'),
('23780203-49d6-4fd7-b53c-086052b15eb6','f88c3e53-b711-4bcb-aa3d-9543580054cd',89,201,29,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-3'),
('2378b5dd-1c9a-4476-9ec6-84450d274059','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-32'),
('237a2635-e933-4fc4-85db-1940f961f0c7','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',140,100,75,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-3'),
('238052da-6754-4561-ada7-6b2c0c08c602','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-5'),
('238815f0-d8b8-4da9-b1d0-de6dd8ce41ee','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-13'),
('2388cb15-9e31-4ce0-96d5-bd686bc8dfdb','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',206,35,6,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-7'),
('238b8d52-ba1b-4b83-b72e-3969bbc69bb9','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-74'),
('238c9c17-2063-4727-b699-0d3a6895e829','73f30d95-fa52-46a8-905d-f43787819577',51,51,76,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-3-1'),
('238e1091-b76e-4d18-b07b-2c2fc0f8fe7a','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',38,30,21,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-4'),
('238e6b85-33bb-4101-b33a-4fc04e59478d','f7560079-fc40-4418-913b-3d445e2cf4a4',0,0,0,0,'2024-03-30 10:54:54.623','2024-04-04 12:48:56.092','745957068-1-1'),
('238eb9d2-2449-4b60-b2e2-dd1e5a7e2b32','96449af3-c272-4a90-b77d-0790552dd455',54,78,103,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-3'),
('238ec66b-d05a-4ef0-8ac9-244eb2219362','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-26'),
('238f7d8a-0c6f-434a-88f2-89138dbef019','c235570b-ba36-480e-b52e-0e61d9b2b427',116,116,65,0,'2025-10-08 17:43:38.512','2025-10-17 06:14:44.870','371365427-1-2'),
('23911a8c-212c-4a68-bd69-eb17b6bd37b8','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-33'),
('2392c74b-8e4a-46e2-a995-9357d9309230','4d63984a-5ff1-4253-abe8-286bd84e3528',102,128,15,0,NULL,NULL,'478350685-1-1'),
('23967656-ade4-45e5-9698-7125a5eca9c2','f351ee3d-e4b2-4153-9162-59ad1cfacfb3',91,200,65,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-2-2'),
('23979065-50e8-4076-86ba-ed2c04f9a963','09db59c3-434c-44c0-b22d-c0005ae4ad6a',51,51,76,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-1-2'),
('239b2170-cbd2-4525-83bc-f59eb38daf0d','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.688','2025-06-06 17:36:20.960','221997933-2-5'),
('239b3be9-d32c-4637-86b8-9d7554a0f43a','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.342','2025-01-09 16:51:50.694','745422037-1-2'),
('239c797c-3ead-4a76-acc3-960d3c756bed','626e7d76-e844-4c98-a946-f86b3d5e2881',74,48,101,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-1-2'),
('239d5c22-986d-4694-9b16-295287ea43ee','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',46,195,6,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-2'),
('239db0cf-f8ba-4e3c-8179-467aa880ac3e','c900d790-eeff-48b9-9f2b-48972c98ac32',7,15,66,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-2'),
('23a5609c-b0af-4b43-9c2a-ee0eee4ec43e','c930cb02-6682-41d1-b86b-f7fb4105a19f',66,89,210,0,NULL,NULL,'371245433-1-2'),
('23a6c8b4-e71c-4b27-810a-689d30a22aa7','847447cb-cb81-4f9f-9f95-ff50b1304b30',80,100,70,0,'2025-09-11 06:33:55.955','2025-09-17 16:03:29.946','437397407-1-3'),
('23a722ca-f4a2-4216-ba53-bcace2f9afd4','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-3'),
('23a7a0d1-64ef-495f-8615-5685f9463308','5a0ec70f-bbf0-49cf-bd17-d8db1ec01ca3',0,0,0,0,NULL,NULL,'412903881-1-1'),
('23a8b7e0-8509-4cc3-bfe4-cb5369279f21','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-1'),
('23ad4b9a-a0b7-4c18-8f4a-d00d90434f06','00dcbf70-c001-40af-9195-3caa85499670',53,72,100,0,'2025-09-16 16:29:37.463','2025-09-30 06:16:22.258','644422105-1-2'),
('23ae1dd9-a775-4fe8-9097-3a5bc2ff207e','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-129'),
('23ae1e89-d684-4eef-9b50-6ed1db91c82f','f88c3e53-b711-4bcb-aa3d-9543580054cd',127,168,4,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-24'),
('23aeaf4a-4223-42b0-b186-394b301bb4e5','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-3'),
('23b22607-c5e8-4262-9cf7-2f03d0145ae0','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-4'),
('23b6b7bf-762a-4fa5-a6df-b1e68306132f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:37.907','248135683-2-92'),
('23b6ed1b-4359-43dc-9473-e9265cd4db1a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-120'),
('23bb9246-c336-482a-bb73-521ae772e529','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-212'),
('23c1bec5-89c9-4c73-a1e1-f711cafec44c','20cecaac-3bc2-4fdd-b65c-a9a3cd17355e',180,202,33,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-2-1'),
('23c71336-fdfe-43bc-a8e7-2b057e6b49f0','42b2ca3a-9313-4b97-901b-3859e34b21e1',56,100,81,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-2'),
('23cb272c-6b5b-4dec-8f80-8892d293cab4','e8302a51-2bb4-4124-bff3-50276f045168',8,75,162,0,NULL,NULL,'127991361-3-2'),
('23d5ff56-ad6f-4e55-aaed-0360fae8b278','128ee3b5-4128-473f-b460-9fad52390a53',223,100,70,0,'2025-09-11 06:34:40.847','2025-09-20 19:00:31.521','478391312-1-3'),
('23d7b4f4-7599-4bb4-b4a0-09f2dd2c1a2e','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.362','412586892-1-32'),
('23db17c9-00a2-4918-98dd-75d9263daaf8','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',75,70,100,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-2'),
('23dc9908-4410-4e66-a2ea-0372a6acbe01','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-8'),
('23df3a00-46e5-46a1-becd-a1cb4874d8cd','af69c5a3-87d3-4548-a650-720b69a4fc69',47,8,211,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.819','614143415-1-45'),
('23df4cae-e060-44e0-b225-4703b678f66f','1ef8b91f-e8ea-475e-b299-b11ca4ae6186',164,93,15,0,'2025-07-29 12:58:31.228','2025-08-08 14:07:53.363','371887346-1-5'),
('23e80033-aca0-4262-9fed-925638fc12a9','53025d92-f019-4f5d-9b69-68a3b09bb7bc',18,190,7,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-4'),
('23e88328-ed3b-4b4e-a0cc-28ebe955db02','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-3'),
('23ec6b6b-ad13-4502-b7f3-f47f32dd673e','eb329603-e121-4099-9308-964edd5b6713',70,125,8,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-2'),
('23ed2b94-c353-45f6-8921-b6fe68e1dad0','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-8'),
('23ee235b-53d0-42b5-830a-9c16341c72fe','1010ddb1-1035-482a-ae3e-4ccd13b4811e',1,1,1,0,'2025-09-16 16:29:29.512','2025-10-03 06:54:19.293','478978353-1-1'),
('23ee6a27-4869-4c80-95ba-553be305e3f2','a08ca4c6-b9c1-4c8a-8069-9bcaf70515ce',102,245,65,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-4-3'),
('23ee80e3-0f8e-463b-8e2b-7b02f48261d9','159c73ed-083b-4d67-98ca-6adcfc554962',30,30,103,0,'2025-10-09 05:39:55.568',NULL,'046517356-1-2'),
('23efb504-6751-43ce-8f3e-907fe0b1f684','10d63ad9-5664-4514-9fb9-770393034f69',75,75,75,0,'2024-03-16 14:33:52.022','2024-04-01 07:52:54.988','478741910-1-2'),
('23f0cc54-da24-471c-b276-7ae3c346ecbd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-89'),
('23f118e8-fc51-4789-b601-6b8c09c84a4c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-9'),
('23f38815-09ec-4597-b5c7-8079bbc21b64','609832c2-2dd2-4701-a14f-9db6c69653b0',188,96,6,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-2-2'),
('23f41d3b-dce3-4dea-a035-012286e0d98b','37a97bfc-766a-4865-bc4c-1c02e1ff86e2',85,102,70,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-2-1'),
('23f737e0-ad75-44ca-8795-8a9784034611','dc390da6-4128-4077-b3a7-07f6a89a5beb',75,55,84,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-8'),
('23f7b4fb-8837-485e-9218-1146d7062eb9','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-9'),
('23f9b4b0-e118-49cb-ab05-a342262b2532','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',25,19,260,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-4'),
('23fa38bd-8f36-4422-9719-1ccc84bd7be0','9fa21250-9753-4784-b45e-6a96c940a504',70,124,104,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-2-1'),
('23fb4f9d-1676-4d0f-ada7-51c60bd52fe0','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-8'),
('23fc2a67-604b-4dae-96bd-aa734843215c','4e9b1219-3006-400c-b048-bd8852cf7690',93,70,240,0,'2025-10-08 17:43:55.637','2025-10-17 20:57:44.720','750355737-2-2'),
('23fc4666-a115-4137-bd82-7a000c7edd7b','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-5'),
('23fd3fef-4e83-4d5e-abfb-1e9474f77f4e','bce4c0a6-f06f-418a-8c1b-131c4f5ffc22',51,51,77,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-2-1'),
('24048b00-0de7-4942-8eb9-12dc7263a2a9','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-46'),
('24064c86-0977-4c74-9726-0fd3b7df407c','c51cf533-511d-4f61-a94c-3e48074db45d',69,81,127,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-5'),
('240a65da-de09-476b-a156-91387afbd454','5bc7ab60-e1c2-443d-9a05-7c4a3a009f1f',20,125,130,0,NULL,NULL,'614204771-1-1'),
('240bbf27-a7ea-4fd8-869a-dc4201f52596','145acb30-1c39-4fcb-b4a1-ded11d8b7586',95,70,103,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-2'),
('240ff6a4-4186-4b55-b60a-4aaae9c56eeb','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.144','2025-09-04 21:03:37.661','531245816-1-5'),
('241207bf-959a-4c30-a8d3-d9d2779523b5','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',15,2,177,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-5'),
('24155c37-e5dc-455c-b9ff-c5a9dc1daedf','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-3'),
('24163278-7731-412a-bb07-8ff21aa0ea8a','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-2-7'),
('2418528b-cf4b-44a7-a45e-94dbb6078277','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.585',NULL,'412400536-1-6'),
('2418c345-9732-4e9c-87fc-ff47e2fb0c54','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',108,108,70,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-3'),
('241b693e-482e-4bcd-a652-fd522783a7ca','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-1'),
('241bb9a4-4ed3-4a1e-9335-9059896af284','4bb6e32c-05e5-4b75-a1e5-32aa0e4ddc2c',56,76,102,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-2-1'),
('241c1c65-58ad-4a75-97da-34fdb0cd2a3a','53356ef7-7c3b-4558-868b-c1552ff1d067',97,70,255,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-2-1'),
('241f38a4-4afc-4ac8-b2be-f054687bfbee','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-2'),
('2422374b-0bc5-4874-89ad-883309f6a17f','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',75,100,60,0,'2025-09-01 11:06:25.188','2025-09-10 17:04:36.702','428693052-1-1'),
('2423d1c1-958c-4b26-8ab8-e6571fc7ddff','bedd9b20-bb73-4dc2-b799-5a1a172888ca',70,120,100,0,'2025-01-11 15:20:27.109','2025-01-17 11:00:29.595','501588943-1-3'),
('2429068f-95e8-4a8e-90e3-cefca1701bb5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-137'),
('242941b6-2b8f-429d-b7c9-9b1e340d2886','e4b9eaac-f42c-4f15-afb4-d739f5a6a7a7',96,187,6,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.631','644243216-6-1'),
('2429bcdb-b764-411c-b87b-bdbc57059621','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-7'),
('242c2498-d8c7-42ef-ab10-3cedac8a9c91','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-1'),
('242f9935-57ad-45e0-9260-963d97f1f500','b5f6869c-be7c-4244-9bf9-704a745a8d2e',9,68,77,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-2'),
('2430661b-d293-41f6-bfea-69bd846b0034','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-6'),
('243235a7-795a-4cd9-9ffe-2726dce3b4e3','7cf524b9-0e83-4963-bfc3-863110305d5f',144,16,210,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-2-1'),
('243286f0-0840-4554-892c-ce12e2a342c1','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.352','248614196-1-1'),
('24348451-b65d-4199-a4fd-5c5b0acc3cc9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-28'),
('2437b196-6ef8-4496-abc0-ce7badbeeb43','950eb8aa-72e9-4405-9031-9182cf1b215e',76,28,203,0,'2025-08-07 16:52:35.986','2025-08-21 08:12:57.335','478525280-1-2'),
('24387438-6fba-4904-a149-845badf09dc5','bf2fbd97-6d0f-4724-b25e-47e019854e49',45,17,67,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-5'),
('243adaf4-532a-4860-9008-61dffccd00af','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-7'),
('243bd4a5-3b2b-4bcf-b36d-91ca6e41047a','9a855e3f-e255-4ab4-a73f-124103d32ad2',91,53,10,0,'2025-09-12 17:17:00.463','2025-09-24 06:51:13.936','976593604-1-1'),
('2441aeab-5717-431d-aa2b-91517c76762d','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-71'),
('2442124e-ec73-4304-8bdd-c682e801af6a','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.830','2024-05-08 21:07:51.838','248771792-1-8'),
('2442d767-c550-4808-afda-fca097d988ca','a455ba66-b417-4781-a6f2-6fce1b8bab23',71,17,48,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-2'),
('2443bc54-e01f-4aec-b862-b0fcf77ac954','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-48'),
('2446d40d-bdee-480b-8a0e-379348b048b5','d34d77bc-841b-497c-b8af-5ef75be17896',103,191,75,0,'2025-08-22 20:28:41.457','2025-09-03 06:11:44.287','43755091-1-2'),
('244aaf99-61a8-4997-94c9-2c498d0eb566','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-2'),
('244e5974-f618-46dc-813e-1a0ca1630d4e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-13'),
('245567fd-2fbc-4c84-9b0a-ef344e5c03ee','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,5,224,0,NULL,NULL,'644104537-5-2'),
('2456dc19-83df-42a4-8f17-0715262e4841','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:38.688','248135683-2-21'),
('245cbf81-16c7-4f9c-898c-15c52cd19803','53464b3b-69a0-45cb-8346-b26d29c4ae86',98,187,7,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-2-1'),
('246088f1-44c7-4a0d-a81f-a3404938a57d','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-73'),
('2462a485-5d5e-46ac-afb2-b1dc6e238089','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-6'),
('246450af-0284-4ce1-bbc1-172519b8bcdc','aaaf255b-d973-4737-94d9-7642e86777f3',240,75,95,0,'2025-01-11 15:20:17.289','2025-01-19 14:51:56.907','517205467-1-4'),
('24678145-46f5-431e-bcbc-6378f026729d','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-10'),
('246c701f-6e23-480e-b249-1596649ba45d','7fdf89e0-868e-4dff-9a42-34a86d6e056a',46,65,49,0,NULL,NULL,'01169597-2-1'),
('246de93b-b2e8-41d8-9de7-58e07388864c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:38.139','248135683-1-188'),
('246f6bff-bb5a-4156-a265-0845974510b3','dc390da6-4128-4077-b3a7-07f6a89a5beb',45,40,40,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-11'),
('246f9af8-1ce5-4d91-afbd-d2edf1bb0585','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.845','2024-05-21 18:45:33.371','734936220-1-1'),
('247052a9-3f33-47c4-926e-90d55585d6db','67dba577-f387-4df9-95bd-9cd507ced642',0,0,0,0,'2024-11-02 08:42:46.458','2024-11-09 11:12:25.458','745127322-1-3'),
('24775195-9a4a-4e58-a99d-8d71968ba625','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-5'),
('247dc09b-8e49-47d2-983c-6f91b12395bc','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-3'),
('247ebeec-7a29-405e-9d05-24aa3ce14ec2','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-4'),
('24829c36-60ef-4806-92db-31b44a5c8409','2be304af-892c-437c-ad01-00360cd990ec',100,188,10,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-2'),
('2484cd97-2fb8-4607-8f26-2ce4c91a8168','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-43'),
('248756d1-51c4-40e0-b0ef-f83bc89f769c','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-3'),
('24898cb9-bfe7-43b8-81a5-271771f0d645','1841d5a2-cb6e-457a-aa34-68a1f7f98613',0,0,0,0,'2024-10-17 13:41:07.517','2024-10-23 13:04:35.248','923419994-1-4'),
('24899a2b-f075-421f-ae43-bedfc85b617d','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-28'),
('248d08fa-86df-44ac-916a-4c9bbe886d76','625679d3-a5da-4163-9694-2783eb2a2db8',196,96,6,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.552','221257971-2-3'),
('248d9ec7-65ca-4ae3-8725-8393f7f1092a','9b1dd344-e23e-43d0-a03c-7f3b62f2b24c',0,0,0,0,'2024-10-11 16:09:17.348','2024-10-23 13:04:02.940','745924426-1-1'),
('248f6b7f-6958-4694-90b9-c5ee4a353912','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-17'),
('24931fcd-0dac-4047-9032-b201ce8f5170','a08d6712-1d03-4cdf-9f9e-1098bdce8dc5',0,0,0,0,'2025-06-21 04:33:48.944','2025-06-29 20:24:30.376','231250162-1-1'),
('2493f434-1f6f-4c35-a3d0-2d132193ba22','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',51,51,77,0,NULL,NULL,'808384982-1-5'),
('24951e10-d417-496c-a8f4-cd4c5b02faf3','f5158f15-6373-4fcd-aeb6-1fe6b9c0961d',56,20,110,0,NULL,NULL,'655216482-1-4'),
('24953387-a655-4d38-9eca-f28872d0bdd3','b67fa3d3-0b05-469c-a42b-d477847d9d21',92,60,87,0,'2025-09-12 14:16:54.075','2025-09-24 14:32:37.478','531893295-1-5'),
('24978ea3-987d-4f59-807a-a1bb7dfba9b2','6226bd29-5d06-4891-9ca0-310e4356024f',108,228,10,0,'2025-08-27 19:39:55.728','2025-09-06 07:19:31.533','808830873-1-7'),
('24980ab0-8cfc-4c77-aa1e-e76be6202d0d','fd1e8997-53e4-4033-a92d-13fa88acbade',6,56,211,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-37-1'),
('249fc9b9-0656-472f-962d-58d5b8873d12','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-19'),
('24a35c18-b6fd-4d9c-aea4-c7e1590055fd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-71'),
('24a8280c-a8b1-45e8-8bc7-c3909156f3ff','e89e7d75-4967-4c63-9f73-981469e531af',55,102,97,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-8'),
('24a9c0d4-7de3-4ca6-a21e-badb2b9fc884','733bff01-cf6d-4939-aa79-6311531918bd',27,78,198,0,NULL,NULL,'808690841-1-2'),
('24acadbc-19ee-42f7-959d-f53a7783e94b','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-18'),
('24b0b297-5e99-439f-ae5b-e16f79264691','6302f68c-26c4-4a31-853e-80b9d1ba59ee',45,45,50,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.193','655571326-1-6'),
('24b17a96-bb4d-4300-8336-eea01fecb7a8','4d63984a-5ff1-4253-abe8-286bd84e3528',100,133,15,0,NULL,NULL,'478350685-1-2'),
('24b74f82-9363-48a9-bf15-4ab91cfa529c','7b886c3c-4fc5-4630-b9ae-d8fb7f7ab243',103,55,76,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.569','598320188-4-3'),
('24b798d1-56a3-4d2f-b396-1dc96d6fb788','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-13'),
('24bb3519-acb5-43aa-83ae-b2e9aebd1a39','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',92,182,11,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.897','107869996-1-3'),
('24bdc666-60c7-400e-a8bc-e9eba1c358f2','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-63'),
('24cb20df-2f89-4946-96bd-986c9b48550a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-4'),
('24cb91c5-8b60-45aa-8621-0b8f8c667932','36b532ab-9729-418d-95fa-3d28b03d7faa',54,73,101,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-1-2'),
('24d02b89-dac0-407a-ab97-0b276d3b9730','70097ba5-4391-4d13-9ec0-c301acfc6de5',36,20,8,0,'2025-10-08 17:44:04.955','2025-10-20 06:32:03.725','644301613-2-1'),
('24d0e405-75f3-49d0-adcd-5e0b9ec36398','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-5'),
('24d2919a-db12-40ca-b862-40b0d76e6495','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-4'),
('24d2e454-9e00-402d-a98c-b27e124c4a3c','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-3'),
('24d37424-00b9-47e2-8a1a-3c66c7192d7d','fcf2d3c6-3f79-42fd-a564-dc62e7679d3d',41,57,40,0,'2025-01-04 10:47:46.499','2025-01-08 10:30:55.332','248539327-1-4'),
('24d42c19-f743-4b31-94f8-adddea0d1800','19f8d788-357e-4bae-a0cc-714638359cc7',31,18,206,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-1'),
('24d922a7-af31-4a24-8d97-d5a6be823e64','e97539d8-0d26-42a2-bfcf-9866d5bd205b',105,193,15,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-3'),
('24dc3dd6-4372-44f2-819c-6a3ae4917f0d','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-75'),
('24dd17d3-c164-4e40-9e03-14416dc1f67b','9547b618-8081-409b-9076-efd2957a9e1c',80,80,66,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-2-2'),
('24dd66ea-eb9d-4b91-baf1-1a98268313ff','05af1df3-9a36-4be2-8bd1-773d59e1605a',85,96,13,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-7'),
('24de582a-41da-480a-8ce6-77836c9f8880','194c43e5-97d7-4321-8a7e-7758ae0d89ed',51,51,77,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-1-1'),
('24e077c2-ac5e-4259-9c86-b1542ee0a878','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-11'),
('24e22ade-482a-42a1-8964-c26aa301c29e','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.922','2025-03-12 17:47:54.769','248915549-1-12'),
('24e2b3bb-a99a-4da3-a9a3-8d8efea42d79','3239bdef-e86a-44cc-82cb-b811ef7a5803',98,51,51,0,'2025-10-25 08:59:22.000',NULL,'221811614-1-1'),
('24e486bf-84fc-4818-b6af-2a15510c8458','d12ce78c-a7c1-4937-be74-17b603729cee',95,43,42,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-3-1'),
('24ebd5c6-1d20-48ca-ade7-6e789a5f64b1','97a6e2d5-a920-4592-81a1-c1fbca835c74',80,125,7,0,NULL,NULL,'613745862-3-1'),
('24ecbbef-905a-451d-9273-56cae3e556d4','49b0262b-aeb4-40b0-bdcc-b5461a64c972',123,9,45,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.532','465237157-2-5'),
('24ed89e2-21ae-43a1-8fe1-a431961c2a28','c4f10c81-b322-4ff5-bb9c-85e7f0e16565',76,53,101,0,NULL,NULL,'478514572-2-1'),
('24ef4d2d-846b-4990-8e47-41e0a625fc0e','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-7'),
('24f2963b-31df-4ff5-baec-cb18c1dd6c98','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.617','2024-10-05 18:18:15.507','027527659-1-1'),
('24f3ff60-98f3-4537-8606-07b1c1c05d56','bbc20f00-196f-40b1-9f3a-f3929d7454df',57,82,102,0,NULL,NULL,'50552381-2-3'),
('24f6d1e0-9fdd-49d5-b2e9-a27dde0f794d','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',97,65,73,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-1'),
('24f6f62a-db24-401a-9f62-a138d33b2de0','d83c40d1-4df5-4c97-bc83-28837db95b2b',57,93,12,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-12'),
('24f7903b-f47b-4f12-a525-5ca9573dbf15','c1d25f90-d493-406d-a430-9b65b4f44c5e',6,58,214,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-3'),
('24f8cccd-0dcb-4ec5-81bb-33954c126a36','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-112'),
('2501044b-1591-4f85-bb28-8beb01080060','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-12'),
('25011733-f8d5-448e-9239-e392df127a53','3f6d175f-15bf-42d9-bb3f-05e5f1f30d07',30,32,18,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-3-1'),
('25015ee0-e325-4cbd-9cdf-ede3eacd2373','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-3'),
('2502b3a7-b685-4a18-b621-9ed116ae1aa5','9114ad70-d53e-4d1f-89c7-30585d0a43de',66,106,5,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-7'),
('2504460a-0442-4145-a681-60ebc1003988','0ca7b5c8-7608-49bc-9057-d56d835fbea5',34,5,165,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-13'),
('250acfe9-3591-40f4-a30f-65d8c0b47a48','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-1'),
('25155d85-93b9-4908-a569-ab3d24c64a82','f3e0000e-4898-4d80-af42-141e9f4c9316',32,160,200,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-1'),
('2515d3dd-8ca4-4b79-abf4-f72d18701522','52c1c51d-da24-4385-88da-ce34429dabb7',61,57,82,0,'2025-06-21 04:33:56.315','2025-06-29 15:02:31.408','221758948-1-4'),
('251643d2-60fe-475c-9244-faeb75fe3767','95b23b47-344e-4706-bc50-f1bc5ed6c00c',0,0,0,0,NULL,NULL,'598604443-2-1'),
('251b4c9b-8bac-4124-bf6c-719c9ac0e852','c8088d35-b026-4177-866d-855c1ec4f847',0,0,0,0,'2025-07-19 07:52:25.651','2025-07-26 14:17:19.757','644564440-2-1'),
('251c8733-05a3-4a9e-8243-c8c2ef053ded','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-1'),
('25211750-1341-441c-9fee-5d4906b89d74','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.682','248243194-1-98'),
('2528df23-175c-48a8-91de-26ef74842eba','0e2be2b7-0932-4325-b574-46a1ab000238',51,51,77,0,'2025-06-27 17:12:22.343','2025-07-08 11:33:35.340','221686736-1-1'),
('2529915d-eccf-48c5-b69e-edc1b24c363c','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',234,70,95,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-8'),
('252a2ec7-b052-4ace-9ab5-42a1e61b991f','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',227,44,7,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-12'),
('252aa005-be05-48f0-b7c0-57aadb64becd','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-44'),
('252b3083-9a20-468b-9624-98b0e3e55cdd','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-12'),
('252ba5b4-e37b-4276-bdc1-f0935882fbfd','9d7979f3-a35a-4a64-97d1-4ba973786029',86,218,2,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-19'),
('252cc3e5-d567-4936-a358-bd5da54702bb','e0cc17a2-4392-42a5-a637-de0f1c60c459',36,21,227,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-4'),
('25301779-77c3-4e02-a90f-ab8444a6af75','e54055a2-3c9c-4738-a808-7a4a31877ef1',170,50,50,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-8'),
('2532a84f-fd9b-4962-8e5a-5d4840d721b5','f3414f51-92da-4967-b108-6baad5cdd798',159,199,4,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-5'),
('2532c3d2-4ccc-4816-b380-e74b9b000f52','aed57dfb-3aa2-4f6a-849f-51424a18ca86',102,96,65,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-1'),
('2535af77-97e5-4112-a055-598a8e614b63','8c6d3954-b4ff-4e4e-9adf-d9dfddf0789f',0,0,0,0,'2024-09-28 16:27:22.068','2024-10-09 08:37:14.648','478807426-1-1'),
('253615ba-3fd0-459c-b891-b6f5d7d64768','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.971','2025-06-07 14:08:05.782','745318139-1-1'),
('2536d8c8-d5bc-4fa7-a237-d2801c517e10','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-6'),
('253a3050-686c-4fe1-b42c-0364b399f8a1','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-12'),
('253be5a4-29d3-4fae-99e2-3d5d28c05de8','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',55,232,6,0,NULL,NULL,'011548428-4-2'),
('254159b1-ad5b-4e9b-87fe-4cb4bceaca93','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-10'),
('254705c6-206e-4b46-b68a-878f126caea9','aadf78aa-6852-48e3-9660-062042fc3ac3',110,90,65,0,'2025-07-19 07:51:56.592','2025-07-30 08:02:13.959','127221315-1-2'),
('25484acb-e458-4889-9cd2-1aaa7a77fcf8','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-11'),
('2548c08e-788e-40f5-ac3b-0561896ddfda','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-6'),
('2548f920-3df9-4793-99af-b445c91921a2','badecae3-eda2-41b7-b1c4-0a0ea4e409cc',52,101,72,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-1-1'),
('254d0352-b913-49c5-8355-25a6cf238ab8','5032b9d1-12b3-43c9-be24-f1af560c5e03',0,0,0,0,'2024-11-15 17:06:26.238','2024-12-01 12:27:55.685','745445888-1-3'),
('254f2391-e015-4333-95c3-6971633b69e6','1c781ad0-971b-440d-9ba5-b64cd40eced2',0,0,0,0,'2024-05-29 08:53:22.768','2024-06-10 13:49:48.872','47889024-1-3'),
('2551b46b-9835-4dcd-b406-d445e2b14b2f','c29e76a4-89ba-4143-8fad-01a2910620ee',42,99,101,0,'2025-09-16 13:29:06.383','2025-10-04 13:57:34.400','750496630-1-20'),
('2551f8cd-588b-4629-818d-f7ba5063d7be','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-11'),
('25520d92-1a08-4b50-815e-a4aab6a3ca9e','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-2'),
('25530949-e1d5-47bb-a73b-3f07ee739d60','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.380','221485829-2-1'),
('25535015-f189-414a-8583-741216dea7ae','e0543c7a-5972-4240-aa38-f23558126c19',0,0,0,0,'2025-09-11 06:34:34.943','2025-09-20 19:00:06.128','745545386-1-2'),
('255a0630-efe3-4382-acb8-74077e99968a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-13'),
('255e08cc-ebf3-4d26-bb09-6c421aa5d2e2','fae6909c-01c0-4f09-ac49-1ff3954779b4',110,90,18,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-1'),
('255e1aaa-bb46-4950-94f6-87dbadb50a38','6fd22e55-d4d7-456b-8be2-88ba5d331996',56,76,103,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.133','598410676-1-2'),
('25609309-be15-4405-9fe4-2926d70deab0','d590609a-3961-46d7-9ecc-7b15489a9e19',40,50,215,0,'2025-01-26 10:54:18.286','2025-02-10 14:16:44.580','319276460-1-1'),
('256115d1-f436-4010-bf9a-875f8b05aa27','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',198,45,23,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-2'),
('2561d51e-c458-4d57-948b-80efda854ab9','5f6b832f-9b3d-4451-8616-262b7ed123fc',0,0,0,0,NULL,NULL,'412184975-1-3'),
('25652e8a-d954-4265-904e-3ec87d803fa8','3987bcda-6531-4738-8815-187fd84bf71c',102,82,56,0,'2024-09-10 10:47:13.056','2024-09-16 17:09:39.158','75056602-1-4'),
('25658e38-dcb6-407e-84cd-5d30d9ca3429','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:24.773','248284003-1-36'),
('25662733-7fa2-4b46-b6c7-d97f82b72909','e2277705-d959-463d-9858-1ca3b6dfc8fd',31,51,75,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-6-2'),
('256659bb-0192-4a18-9902-e15d67457f70','e8b58cc1-698b-4364-ae95-f00b90174c08',46,20,68,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-6'),
('2566ca5b-1c1c-41ca-9e8a-ad890be88c20','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-58'),
('2567493d-bde9-4b3a-84c6-6277bca80b41','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-70'),
('2567c94c-d964-45c1-93ef-bca87c4833e4','778ca123-6a9f-407a-b957-516b7aa6a94d',80,80,85,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-2-1'),
('256a7aa3-3639-4bc2-a06a-ab340566c992','8216e820-b867-4e26-94c7-3619c7c05e2a',88,87,7,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.914','221624652-2-2'),
('256b83d8-9d2e-4bd4-8af0-e1a5230f1809','8076bb41-df9d-4c3e-b002-8df21ddafb0a',185,42,43,0,'2024-09-06 12:28:00.234','2024-09-13 16:38:28.325','449281517-1-1'),
('256f0357-33c9-46c0-abd1-37fd3dd15b62','841f7f01-a7cc-440b-859e-dea7f085dd74',52,57,41,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-15'),
('25734014-1ebf-4e44-b889-d9c085040c7b','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-12'),
('257438ef-b6ed-4eff-b253-9e9bf2486443','addb5c2f-4917-41fa-b1cd-a27dce7e3612',96,160,12,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-1-1'),
('25744eb9-a2d9-48a6-b243-9f8ea5238bf3','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',20,57,137,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-66'),
('2574b7c7-9a5c-4603-8dbc-6232d475d14b','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',26,29,18,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-1'),
('257bd416-a579-46d7-b37f-d53b2e93267e','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-3'),
('257c6ed2-77ac-47a9-aa55-8dbec5a32863','fc62f08c-a4dc-4f3a-b1bc-a39834539515',51,51,77,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-11'),
('2580c0ed-05cc-4aa0-b70f-9575529664d5','ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705',90,73,70,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-4-1'),
('258129de-20dc-4b57-b243-c820c90eaa5a','c389fd95-9357-4fac-a819-48a512bbe294',93,74,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-8'),
('25837443-7082-417f-90a2-dcf637aaec28','0cc39437-8ee1-47ea-87c2-b9fe770c2259',50,55,133,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-8'),
('25869dfd-a916-4ac0-9fad-1d57cdd5e57e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-93'),
('2589dd61-5c17-424c-aa43-390e2331c9d5','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-6'),
('258d4284-e786-47c2-912f-f599fb49fd98','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-99'),
('2592d5c2-3e9c-45b8-b6cb-abf7471ae585','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-3'),
('25935864-b331-4555-8a51-7d1ad650ea62','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-2'),
('2598962a-ed32-43da-9d9a-70a6642febdc','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-90'),
('2598b597-36dc-4626-adaa-07df0c98602d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-61'),
('259eebfe-d33f-4cff-8e12-c57dc3231d73','009ddf47-bf8b-42ff-9126-9bdf09a89875',0,0,0,0,'2025-10-02 03:45:42.166','2025-10-15 20:05:03.312','663743560-1-2'),
('259f3afe-8da0-4c37-93b3-bb2094ddfae8','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-1'),
('259ff7a5-d401-4580-ad04-b261532aa2ac','31ae1da0-0ec2-4d89-86f3-f97ab9fd9e36',59,62,89,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-1-1'),
('25a586b7-a252-4b94-8acc-b34715bbfa81','c02a7a5d-c8b8-4c15-8213-f0898fe13e2c',82,75,75,0,NULL,NULL,'745151910-1-1'),
('25a8dc2e-4708-4393-8ec2-c3cdb8700ac9','93d194c6-8c22-469f-9141-d04ae150353e',82,57,110,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-2-1'),
('25aa7d13-3b5f-464d-a598-dddfff4133f8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-29'),
('25ac16a6-2013-43e2-b1d1-830df83746b9','527ed217-6d76-4ec9-b760-807ad00b847a',0,0,0,0,'2025-10-02 11:20:41.358','2025-10-16 16:43:50.653','910482480-1-4'),
('25ad8797-dd37-4fdf-81d5-0f9d5d169821','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-29'),
('25af31f8-21e9-432c-b518-fb9c98c5a284','173bf365-8e09-4aa5-90c7-1bdda2c188b1',73,100,67,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.858','644637792-1-2'),
('25af7743-3ca0-40c3-a103-ef0aff2d9c3c','565f6966-f194-4d7c-8b20-64502045078d',160,200,4,0,NULL,NULL,'478350685-2-4'),
('25b18fab-aa6e-4efd-9d05-7be6fbb296b7','92a145d8-7167-461b-8674-419e94785674',100,65,80,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-3'),
('25b3a040-54f9-455b-8db7-b2580320e5a6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.337',NULL,'22330381-1-13'),
('25b597ee-32e3-45b8-868f-339ed4d90c75','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-3'),
('25b90503-387d-4fff-8d8d-5f7b54916c04','56f86587-7355-4e49-9eb5-727edc1be570',24,40,40,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-1'),
('25be5aab-1c23-411c-ba65-24bf14cfbdff','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-14'),
('25bf871e-ddda-4543-b039-e8c3324d5038','695d73bf-f5ba-45fe-bc80-b162f60a1157',73,54,100,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-3-2'),
('25c1606c-3e04-4af9-8b08-f80089503a2e','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-41'),
('25c2356d-a5db-4989-b14e-c1598dc3a8cb','0009aeec-e682-465c-b701-363a3ef377a6',75,85,18,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-19'),
('25c57374-f7f1-44dd-9689-3e9c44cedde5','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-5'),
('25c8be85-565c-42cd-943a-ff304f032cef','945d8ccc-c45e-47fc-ba3b-1163cd4e1ef9',37,17,96,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-2-1'),
('25ca024e-54f7-4e8b-93f3-72a7888afec8','d2f8d58d-42ad-4705-b1e8-a666af927fa3',97,11,100,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-6'),
('25caa39f-a0bd-4c2d-bffe-a155829f73a7','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-18'),
('25cbf402-fb8c-4e51-b07d-31ad14a32eae','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-9'),
('25cdc346-2e5b-4dac-bc9d-f2dfcabb0d5d','6cf8f42f-8f6a-4650-ae73-36d6d6c9015c',95,230,80,0,'2025-04-11 13:41:30.801','2025-04-25 21:36:15.192','644732617-1-3'),
('25d0a785-ab6a-4fdc-a395-22b5f2bcda8c','980127cc-cb0b-4694-b945-70457774323b',88,200,28,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-3-2'),
('25d0ac83-6b8b-43df-9461-eac85b7c4340','ca9035e1-80a3-45dc-92f0-bd7c607a8cf0',54,101,73,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-3-1'),
('25d1e0e8-ecab-4fed-9074-363f2d83688f','5acbde88-dafc-4c21-ac17-d9730a373cef',76,53,100,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-2-4'),
('25d24a6f-c925-4fcf-aa39-0864fc9883a1','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.377','745175736-1-1'),
('25d34049-00e2-4a2a-9bd6-b12e0799e78e','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-1'),
('25d9063f-b2a8-400d-814f-3fbe5ecfed46','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-203'),
('25df455f-1adf-4367-ae74-d51cda951e9e','a5acb255-ac93-4787-ba1d-85dba2a83a25',100,75,65,0,'2024-12-23 12:00:19.041','2025-01-09 13:53:41.050','73427297-1-3'),
('25df76b8-48f8-4238-9d00-ada5fc3f72d8','49b0262b-aeb4-40b0-bdcc-b5461a64c972',89,8,45,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-8'),
('25dfe540-6b1a-4d84-8e09-70616600b63d','733f4ba6-58a1-4c6d-bfe2-a881599fe5fa',96,100,70,0,'2025-10-22 13:06:46.078',NULL,'515377519-1-4'),
('25e0b11f-342a-4b1d-b4bb-294bf8e940e1','c4105652-6416-4c70-9a94-f74d002cd020',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-3-1'),
('25e38456-56e3-4625-ad03-0ee6e961612a','159c73ed-083b-4d67-98ca-6adcfc554962',28,205,94,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-3'),
('25e3edfe-0137-4d1a-96fd-d15979c9806b','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-12'),
('25e5f749-9248-4d57-be37-3bbe006d54ee','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-109'),
('25e69dee-6649-42b0-82e9-b84a51b41a97','64d193ea-3b9c-4bcf-8123-2e3e1e9f99aa',0,0,0,0,'2024-05-10 18:49:30.182','2024-05-29 11:17:10.734','315903894-1-1'),
('25e8a0f7-23bc-4041-a776-c301b7e18602','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-32'),
('25f005b4-8b60-42c7-9a5e-45c7e80c668d','6fc078bc-5513-47c3-827c-b4f5fa1c9ecd',106,206,8,0,'2025-08-07 16:52:30.676','2025-08-21 21:29:19.691','598665171-2-1'),
('25f1a822-8723-491b-bc04-e67d7c33a46e','105baff3-99ad-4d7f-b4a5-116a7968849b',0,0,0,0,'2024-12-18 09:31:19.411','2025-01-10 16:33:18.465','248849829-1-4'),
('25f4e39c-aa31-4432-ace1-4c53e04ffdbb','c3a1b223-fcfa-4472-9d1b-78712c38d224',53,53,77,0,'2025-04-30 14:29:00.349','2025-05-14 06:37:41.026','371437952-1-2'),
('25f57859-f336-4a68-a4af-0373e304b4e6','9affc7b1-09c4-4e84-b48b-d0c117c421b0',136,101,19,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-27'),
('25fa2e89-3849-4d20-96c2-96efae3fe446','b2c78cf5-c58c-4553-bd14-49e83916894c',105,221,11,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-26'),
('25ff5b05-892a-49eb-b547-5e6a6da130c2','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-12'),
('26003a38-6356-47b7-90d3-41d2959389c6','0009aeec-e682-465c-b701-363a3ef377a6',166,18,95,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-20'),
('2601b3e9-2a46-411f-823d-3260566b348c','b3975f1f-7fd8-4aee-b297-9d023b31cc58',51,51,78,0,'2025-05-16 16:33:36.525','2025-05-21 18:42:11.094','437940825-1-2'),
('260224be-3f30-4e41-812c-b1d9bf121291','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-13'),
('2602ce0d-24e2-41d1-b5b1-7bc12573adc9','60265db6-b4a8-4ae7-8ba1-2177955c5b94',55,76,103,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-1-1'),
('260632d4-c5d9-4880-a224-210514b9dfee','940aa57e-21e8-4cea-ad18-82859c22f018',93,72,65,0,'2025-06-11 13:14:38.729','2025-06-18 07:15:26.935','817121694-1-2'),
('26074bf3-25c2-490f-a1da-751071cc9e04','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-102'),
('26078bc5-ecf9-4505-a5da-267fedecbcb7','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-8'),
('2607a156-55cd-4bd9-85c7-15b12fbb7ddb','2f8afc9e-696f-4b14-b212-d5f56e6fb5a3',51,50,76,0,'2025-02-03 18:18:41.577','2025-02-14 10:41:28.341','221859569-1-1'),
('2607c96f-9bf6-44fa-9fad-103f1fa7b141','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-19'),
('26097ff1-b129-4c0f-9879-60f8b370e212','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.615','2025-02-24 17:24:36.114','98222656-1-2'),
('260e8d4d-8194-47fb-95b2-cb2bba90c349','6aadeef6-4393-4005-8da5-51ca4e422dfd',53,85,74,0,'2024-10-17 11:51:15.416','2024-10-26 07:31:35.106','45559266-1-2'),
('260fff6f-9325-4a11-9627-fe4aafcaa851','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',190,128,5,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-16'),
('26187214-dd10-4468-87e0-ff9f8b60aa13','9b00b208-4609-4266-bc02-d90f689a675d',0,0,0,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-5-1'),
('261ac43f-0cb6-47b4-aa57-c2fa55ef0424','d412170d-6416-4ea0-bbeb-61bc608e9100',0,0,0,0,NULL,NULL,'449226674-1-1'),
('261b6fe9-f507-45dc-8a05-f85db26bca49','324936f5-0640-4048-8641-e1550a228838',57,225,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-3'),
('261c0437-0019-4fdf-88d6-819ce8b2d96b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-161'),
('261f902c-d992-4cc2-bfef-62ddca01eb2b','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-1'),
('26207243-d1ca-490a-8981-014642896943','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',78,88,92,0,NULL,NULL,'695864567-1-6'),
('26234e97-d497-4f51-960a-bd8e06429c5f','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-4'),
('26253831-724f-48fc-baab-16773669a3d4','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-40'),
('26256575-c868-4e22-b9b3-d5c20cf5e30a','df315e40-f7b8-4524-810a-6c390c475673',80,80,70,0,'2024-03-23 08:36:11.360','2024-04-03 18:54:49.659','6148124-1-2'),
('2626ac98-cb7a-4f9d-8892-46dc08983104','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-19'),
('26286c31-3930-46d6-9ed2-43ed6f29339c','cc7cbe1e-520d-412e-adc0-054062fac43b',89,106,65,0,'2025-10-25 08:59:13.605',NULL,'644769101-3-2'),
('2628d330-ad06-46f0-984b-6a8016146f9a','08af242e-dc62-496d-980d-0f589dcdea60',47,67,97,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-6'),
('262b5732-111d-4dc7-8891-f9d5f80fec95','03ad506f-f86b-4dbc-952f-52b01e2467fa',150,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-13'),
('262c669e-7e81-402d-b6e1-c30dd7702954','a7d8e541-ac8e-49b2-b360-317f8114fc5d',92,14,165,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-6'),
('2632fa61-f7df-4940-970d-230e5c46b2ed','c5d61b93-7ced-4a71-93be-5a852d615a08',96,230,70,0,'2025-07-12 09:20:05.657','2025-07-28 07:57:27.593','412102597-1-1'),
('263a553e-deaa-4b2d-a079-dd33999b6807','085b8abe-140c-4e7a-a52b-57b804c24627',98,105,80,0,'2025-09-06 07:20:23.872','2025-09-16 06:34:01.481','437812245-1-1'),
('26411b78-7409-4f8d-8738-c109242cf58d','1977a173-f6c0-45d1-ba5d-5729f658054a',51,51,77,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.934','221850151-1-1'),
('2644fb3b-e935-488c-8564-03029a476637','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-5'),
('26465a95-38f1-40d1-abf1-603b62d34012','35957835-23bc-4617-8278-5233fc6ee18a',143,173,10,0,'2025-09-01 11:05:47.839','2025-09-08 06:39:11.825','351888584-1-3'),
('264cbdf0-a0c7-4b76-a007-92892bd8146b','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-91'),
('264de63c-92ba-4c5e-8162-4715714117f9','6302f68c-26c4-4a31-853e-80b9d1ba59ee',60,25,20,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-7'),
('264f6dda-a16a-4a38-9a28-e525b89f116c','02b555c2-2445-44f3-9074-77fced684cb3',125,125,65,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-1-1'),
('2650ef70-aede-47de-9775-3439bfe3612c','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-5'),
('2654f415-2bad-4432-afe2-c3378dc27d1b','6cee1429-9935-4eae-be32-dc630b6d70e8',230,48,57,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-6'),
('2657eaff-33ab-4ec4-a73b-205e3f0004f3','c2a3eb30-4a97-42f8-8728-73449ef0f928',51,51,78,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-2-1'),
('26588fad-499f-4763-bcb2-15b06158ec5a','0e92c59b-93d0-4308-91ce-3965bb186203',206,90,2,0,NULL,NULL,'428180919-1-14'),
('26590ff4-e51a-4b3d-a008-a6f760844983','8ccf1da0-f5a6-43c4-a953-8d0167d86614',94,83,50,0,'2025-04-30 14:29:07.522','2025-05-13 09:05:57.394','923436295-1-1'),
('265badff-862e-4b49-b2d1-a59c54b58535','f4f18af6-44b4-4cc2-bf41-cb9ac30bd2ea',56,80,100,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.445','428390036-1-1'),
('265c8384-eac8-4aa0-8763-c8e4e3bd69d0','1dee02e9-6cd5-4591-8aab-b2e2650429fe',69,20,45,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-52'),
('265ea058-83f6-4f8f-ab44-845a0b90a68f','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.016','2025-09-18 07:01:44.409','412990147-1-25'),
('2663992c-fe53-4cf5-b6bd-c2ec5a2b4a81','e95ebe6e-cfa7-4eee-b276-6f464674325e',110,110,70,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-4-2'),
('266442ab-246d-4877-ace3-1b273f13960b','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-58'),
('266498f9-46df-41d7-81b9-770a9e4dcdf1','0e92c59b-93d0-4308-91ce-3965bb186203',50,105,9,0,NULL,NULL,'428180919-1-6'),
('266655a9-5317-4d59-bd02-27bace3793bc','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-4'),
('2667dd29-c029-4849-a08e-715003eeb2ce','d22d7227-b6be-4a20-978b-11fabd469cb9',110,110,75,0,'2024-05-17 09:42:09.160','2024-05-28 16:23:12.626','126274786-1-2'),
('266a1d09-9b50-4c65-9588-578fd24a1f0f','7ba47169-83ca-49a6-98fc-6ef1a1990eac',94,97,7,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.523','982630175-1-6'),
('266d3bd5-31c5-43b2-be36-10957ea2c112','778ca123-6a9f-407a-b957-516b7aa6a94d',80,80,85,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-2-2'),
('266d8336-ca03-4e43-952f-39573907a29d','1459d7e7-6dec-45b7-bbb4-412603f2559c',227,96,85,0,'2025-07-08 11:31:08.900','2025-07-25 18:04:56.369','478363734-1-1'),
('266e36cd-14d0-4438-a621-f8d52b2fb92a','e86f2f3d-8f0b-4894-8c39-9063af830231',40,7,217,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-4'),
('266f04c9-46e4-4662-84ff-2da57adf5507','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-113'),
('266ff38a-c4e5-4dbf-9423-ff15d8677e81','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-11'),
('26711b68-477b-462b-9d04-02a22b209fb6','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',119,95,6,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-5'),
('26742e51-91a3-43b9-b17e-a22dd09d84d8','9504c24b-6a37-4522-83ad-b302a5d583a5',83,82,6,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-6'),
('2675327a-99f0-4e4e-8def-14a557c33c78','d0c58395-1ef4-4e35-9dbb-33c8a0ca36bd',88,93,57,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.432','531549696-2-2'),
('267738a8-c353-4a6f-ae70-a4cc1d248baf','a455ba66-b417-4781-a6f2-6fce1b8bab23',52,11,72,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-3'),
('267b8387-a1d8-4f53-907a-c068fdd31a1c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.186','163961995-1-100'),
('267bedcf-74ab-452c-919d-1c919564675c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',60,80,5,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.041','655919587-1-20'),
('267c030b-f6dc-4097-98f6-956c5e714527','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-6'),
('267c29fa-05ae-42e0-b392-fdaa85e96dae','feb77c04-d085-4688-a308-1871c3ac6713',0,0,0,0,'2025-09-18 15:48:36.291','2025-10-02 06:11:59.159','412955343-1-2'),
('267cb8b5-b9b3-4eab-a5bf-3496532ae828','c2e59836-c823-41bf-b343-b3df9dfc91f8',262,63,95,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-17'),
('267cbd49-4164-4c90-bc1e-d508e64f2e11','577ac94f-b889-4af9-8d01-96034f38a36e',44,20,44,0,NULL,NULL,'478739679-2-1'),
('267d00ae-fd0c-452a-b9e7-2d993109fa2d','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-4'),
('267fcd59-901f-4376-92fd-e80c940a86ff','15848870-75a0-4294-9752-8c0da1d7da4a',60,60,30,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-1'),
('2680f6f6-f8bf-4708-a832-c260885eac37','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-13'),
('2681e5a3-4658-462f-9f48-71803f08a1c9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-57'),
('268206f6-34ee-446f-afa3-297597eaa634','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-5'),
('2686b2be-9f7b-4435-8f74-dc0c7599ebc8','e2de9cd4-e8e6-48b8-aa91-52920db0471a',112,82,57,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-2'),
('268b3056-1bd5-442f-b0b1-f039c26b314c','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',90,95,146,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-5'),
('268b5a55-1c6a-453d-8e12-43a38c7b10c2','7defd633-f7ab-424d-8029-028d1b045752',208,44,4,0,NULL,NULL,'501119446-1-23'),
('268bf503-6696-4fc6-a536-4d20128b399b','ef48e289-c687-4471-9ec3-801128f5816d',98,102,70,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-3-1'),
('268e5934-9978-4a42-9c12-1d6526b794b8','2c19c1b7-bf7e-41a2-92f2-340a3624a547',52,100,71,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-1-2'),
('268eead8-213c-4ef5-97c4-71e2105904c5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-126'),
('2691a316-16b9-4daa-a40e-4100a676f739','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-1'),
('2693b574-5e29-4d00-b9ea-46c8aab0f759','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-1'),
('26977cd3-75d1-4fa8-9d34-c48abf7f7096','fa1b43bd-5ac8-4622-adbd-464a8c925f9d',50,50,94,0,NULL,NULL,'7455365-1-2'),
('269aea26-138d-4124-b061-f530dd3dc439','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-16'),
('269c41aa-0330-4747-91ba-d9aa35ea9c83','138edf36-d166-4335-8560-d9873886e31c',66,86,10,0,NULL,NULL,'745189997-1-2'),
('269cb43e-5465-4e2d-a9cf-1562ee95d7c5','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-10'),
('269f296d-65f0-4ed0-a9b9-cf1247b4066b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-171'),
('26a2d04c-1843-49ac-8019-3f6c82b017f1','4ae9c5f7-6cb9-4957-b510-4e19119dcafb',101,76,53,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-1-1'),
('26a32f75-0a8c-43b8-956d-9032bd0f924a','ff190dbb-143b-4c29-bab6-8f312e4deb63',0,0,0,0,'2024-06-08 07:59:58.647','2024-06-22 11:11:09.219','478642368-1-2'),
('26a4f010-6e89-45b1-9312-79e2963ba47c','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-18'),
('26a6e897-3877-4c7a-bca6-658d0b3313be','d4b48666-94f9-40d1-8fe1-059d7aa569f6',73,68,65,0,'2025-02-09 09:51:56.373','2025-02-15 10:17:42.131','633870078-1-4'),
('26ac5148-1772-455e-acc6-34400118a8a5','588b3fc3-de25-4a76-ab64-66572872b773',51,51,76,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-2-3'),
('26b8a650-7ba5-497a-843e-d8b5e1de8167','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-17'),
('26ba2381-a260-4b47-9ffc-97859165d76a','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',210,35,40,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-3'),
('26ba590f-0e66-4b47-9c28-c26013a57f4a','e46d4680-4bdc-4c9d-ad0d-2ba7ee909c19',0,0,0,0,'2025-02-23 12:39:10.498','2025-03-06 10:33:42.242','08159662-1-1'),
('26ba7c48-fa07-4f50-89d8-5e70127ef8fe','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-10'),
('26bbabba-3a85-49a8-9973-61051bcf6b43','b2e0a7bb-3347-4afd-b0e1-536f1ce955aa',233,42,59,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-4-1'),
('26bd1bad-2b0e-4c8f-b4fa-ca6fe5eeb062','0dce8613-12ad-45a6-ae96-565770f25828',76,53,102,0,'2025-09-18 15:49:12.390','2025-09-27 08:39:30.839','437574361-1-4'),
('26bdf3dd-f755-4ad0-b169-a7ce05fef9d3','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-50'),
('26c0b57d-45c0-4eee-a445-1aca35e09d59','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.766','248692077-1-55'),
('26c0e3f0-1d0f-4a53-9f53-de13418deb47','1091def4-1b0b-468c-88e1-7bec1e66dc81',98,75,77,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-1-2'),
('26c19a01-4339-4501-ac7e-dcb152e07bb5','4a5b7db2-dc5e-4f39-972a-37093584e9dc',106,123,8,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-4'),
('26c1eaf4-c199-4b89-8f91-06a6eb478595','3d740bd3-88dc-482c-bec6-f4b0fae42557',116,108,65,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-3'),
('26c222ab-047f-4276-a93c-95004585abd9','118a1c73-66eb-4870-b4a4-04f623a1ba0e',51,51,77,0,NULL,NULL,'221897229-1-2'),
('26c2e927-e380-427c-878c-e853a08b8897','7311f1e0-e2be-43dc-9e40-f94a010e8939',80,55,20,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-7'),
('26c451f7-c217-43de-ae10-a971e73fd2a0','9affc7b1-09c4-4e84-b48b-d0c117c421b0',82,110,56,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.901','412280381-1-47'),
('26c656a1-3db6-4e09-aafc-6e0b1901f39b','e3ad38ad-67b7-48ef-acdc-c2e13831e843',57,83,111,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-5'),
('26c74110-400a-42a4-b6ca-d9f2846c7b5a','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-4'),
('26c8e28f-feca-4642-b924-dac8d34e13d5','f0485a78-951c-4f89-bddf-b2003f0bf783',46,27,69,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-9'),
('26ca107a-aac2-4326-a0af-e7578b1c418f','b2cef0d0-bc16-4cd4-92af-b968a8d20228',90,165,85,0,'2025-03-24 16:01:58.767','2025-04-02 16:10:24.878','248648996-1-2'),
('26caca81-6cc5-4596-a5d7-87b52aad946f','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-33'),
('26cbca1b-bcce-4969-b728-28bbb2e8515f','d83c40d1-4df5-4c97-bc83-28837db95b2b',202,98,8,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-13'),
('26ccf854-6aef-4e83-8dc9-5de96a0a81e3','32bf5597-f8fa-4d97-9486-383228c7229f',100,235,80,0,'2025-09-16 16:29:42.463','2025-09-30 06:16:14.755','428107185-2-2'),
('26cda313-4854-449b-83bf-185c36eae753','9affc7b1-09c4-4e84-b48b-d0c117c421b0',85,98,80,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.901','412280381-1-7'),
('26cf3445-90b3-455f-beb5-fb1003df7c01','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.517','2025-04-25 19:39:28.225','64434778-1-5'),
('26d5153b-9bd7-4607-b1a9-94e831e303c7','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-10'),
('26d7d427-63d8-4c0a-b34e-ae82b59815d0','e178636b-b1d9-4260-aa1b-879946fa7f5d',65,4,220,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.152','745177264-4-2'),
('26d833a8-5d69-41c3-a412-c4a68973059b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.868','2025-05-01 09:51:59.246','223823107-1-10'),
('26dad4d5-fcbe-4216-800f-6f0e5d97d1c7','5713730e-9e2a-444e-8fe2-4b510ab6cee5',45,45,74,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-2-2'),
('26dbedf5-5d37-4766-998a-b1bef1ffdd98','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-13'),
('26e101f3-72b8-4833-8502-0b3befcdaf0e','0bd42145-fdd8-4793-a5cd-a2e404d37142',205,50,10,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-10'),
('26e1388b-a93f-410e-83ef-d440d95a348f','19515d6a-9050-47c6-96a9-cd430edba1b6',30,25,12,0,'2025-10-06 07:10:09.041','2025-10-15 08:24:39.146','745906720-1-5'),
('26e7e9c3-1b74-4961-8475-bf668fc79995','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-33'),
('26ea5f50-9013-48f2-a72f-e205f5cff7c8','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-11'),
('26ea998c-41d1-4be3-b177-858b6ee51daf','e7538f04-f912-47b8-ab97-d997276c691d',0,0,0,0,'2025-07-08 11:31:28.128','2025-07-21 10:22:40.970','657192716-1-1'),
('26eb6ba0-db12-4c24-9e59-6a435b11b75b','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.185','221616369-1-6'),
('26ec3a0d-24e5-4b4e-9fad-5cdff7e6515c','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-7'),
('26ece4c5-6cdc-4087-86df-17355ec98290','5b94f16d-f4d8-4466-bc90-5a88e45dee7e',93,52,9,0,'2025-07-12 09:20:18.079','2025-07-25 10:49:11.537','976747802-1-3'),
('26ef10b1-16c2-4e51-91a3-2e2dbd839a80','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-113'),
('26f01ae0-4ba8-4da7-8230-69a7c82f311e','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-2'),
('26f20294-b2bc-4df9-9d38-df63710cccc2','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-9'),
('26f43cba-b414-4793-9032-f55c98b44d96','0b7b294b-a03f-4eeb-a10a-b4d653fe53f5',65,88,88,0,'2025-04-30 14:29:29.173','2025-05-10 20:13:29.165','598405313-1-3'),
('26f6542c-0d5a-426c-8318-22316f650016','50e8ba0b-ae27-421d-b84d-a10fe99c5ac4',1,1,1,0,'2025-09-26 12:39:08.791','2025-10-09 09:25:01.482','910375036-1-1'),
('26f9ee28-e7cc-42ec-8254-56acd3d2bd92','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-7'),
('26faaf11-cb7f-4640-95c8-8f8ae5e6eb15','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.893','2025-04-23 08:12:49.635','248186638-1-30'),
('26fde917-5738-4336-bd2f-840e661fab61','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-67'),
('26fe0c7f-e745-46bb-b091-3c9f5f5bcb32','ef01ae16-c169-4e19-9b74-47dd619d784e',51,51,77,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-2-1'),
('2701bb33-2254-4cf7-8596-4fadf181b43b','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-8'),
('2702a0e2-c3d0-4442-9c64-5de58035e333','c527dd1d-63c2-443d-aaa4-dcf25c34e426',100,230,67,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-2'),
('27067487-19cf-4194-a223-649b15d94002','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',160,200,4,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.684','614725757-1-8'),
('2706ba26-c94f-49f8-8992-aab99edf28f7','ee1b6660-5174-4eef-96fc-0e0db658df4d',224,98,70,0,NULL,NULL,'371903427-4-2'),
('27072436-ce3e-4a48-90be-b529a7f99a50','9114ad70-d53e-4d1f-89c7-30585d0a43de',45,50,15,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-8'),
('2708db98-6651-4da1-8efa-b76d30aeb6e6','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-1'),
('270ab0ce-6bbe-4421-b6ad-d46f761a3b14','51130bdb-f938-4bc4-8f49-46c9b089489c',90,70,25,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-2'),
('270b3d54-c596-4357-bc20-838d91c61890','ed8ad12c-5bf8-4a68-89de-08a487f605cc',55,210,116,0,'2025-05-23 14:05:07.259','2025-06-07 08:55:09.675','644106987-2-1'),
('270b84da-b09e-4874-8bf1-270119b74fbf','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-18'),
('270d4667-01c2-44b5-9ee1-ab90dbe99487','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-2'),
('2710f983-493c-4507-b505-dc6d90debcca','67ce58b7-ddfa-453b-aecf-6a4e6bc1179c',94,7,233,0,'2025-01-22 09:07:22.471','2025-01-29 13:30:49.205','428930069-1-1'),
('27110d33-0bca-489d-935b-200d82abcf11','1916ae7f-80e5-4993-b31a-1869332c7d71',102,230,18,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.192','786849282-3-3'),
('27120c88-384d-4275-bbd1-2c017bf97520','05e7d8d7-4b08-4d26-aa64-e3a0bd2168c2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-1-1'),
('2712ccdb-c0d9-4255-a3ac-ff7d97cdbf53','3f488f81-265c-4fbd-8cb4-4de35760bda3',0,0,0,0,'2025-06-11 13:14:28.419','2025-06-22 09:26:46.562','478678849-1-1'),
('271304e7-e667-4bb7-adab-d9b1d95b89e6','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-20'),
('2713532a-6462-4770-b207-65aece610a39','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',42,16,86,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-9'),
('27142c56-6cce-4781-b0a5-77e62639c430','d8cc3511-84de-4ab9-9beb-0d40f6d341e9',0,0,0,0,'2025-03-24 16:01:42.948','2025-04-05 17:48:17.433','745968655-3-2'),
('2716fd8c-bafb-4189-827f-7f1bae3b31d7','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.188','163961995-1-95'),
('2717611a-d29a-478b-b4d1-801204e62c6c','378dc493-c6a4-4c83-98e1-1832a246c86e',51,51,77,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-1-1'),
('2718db2f-8b16-4151-bf5a-9c898661d517','bd6cfe4a-bd47-4822-8402-62086ab48f7d',37,206,13,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-3-1'),
('271a5a25-5553-4a29-bda4-63e25e54ef45','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-14'),
('271c0e88-cc4e-4f07-950d-45c23f9a7156','1916ae7f-80e5-4993-b31a-1869332c7d71',190,32,32,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.192','786849282-3-1'),
('271e8b63-5a0f-4793-a612-db9d51ac8762','21f74ee3-8163-4caf-be93-184351bbdc71',109,126,65,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-1'),
('271f78af-5da4-48b7-ac3a-c7d360ad9797','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.635','248186638-1-13'),
('2723797c-08cd-40a8-a8e5-93601c021bcd','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-8'),
('2723c0fd-34ac-49fb-8a01-e635ea4fb217','38dae227-f2c9-475f-bf36-c9eafe154a88',104,70,70,0,'2024-10-23 14:11:52.661','2024-11-04 08:40:37.608','910926193-1-4'),
('27247818-e1ed-402f-8308-412ecec4de4b','ce705bb9-2292-4b08-8e28-45289657fca2',0,0,0,0,'2025-09-02 14:48:53.641','2025-09-12 06:56:40.399','011222896-2-1'),
('27290016-a9d6-41b8-8ba5-4005b6df29e4','bedfc7ad-a202-4cd7-b76e-9096cb5176d0',46,150,97,0,'2025-04-25 16:57:17.729','2025-05-01 09:52:24.226','644178035-1-1'),
('272e9b65-e863-4218-b3d2-7bbf58c5e669','1f8ed22c-646c-4405-8477-3cfc46f95401',73,73,65,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-3'),
('2730ff7d-5a6a-41c8-86a0-8c9c5aa0d9e4','ce42e11e-4d43-4c6c-8883-9e3ebd875644',90,70,76,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-5-1'),
('27317791-cff1-4317-a6ae-cf1aaa2ac61e','67dba577-f387-4df9-95bd-9cd507ced642',0,0,0,0,'2024-11-02 08:42:46.458','2024-11-09 11:12:25.458','745127322-1-4'),
('27333223-fb5d-4b5f-8627-3569245ff243','c1a31a07-5113-4703-99ff-14d4a90ef1ba',130,175,10,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-3'),
('27347409-8f58-455f-9d4c-8643f03454e0','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-36'),
('2734cde9-250f-44e2-bf50-cd206063e80a','e6bddda4-b1df-4be7-bbd5-63cc4b197736',212,63,9,0,NULL,NULL,'42857810-1-2'),
('273861ad-e244-4dd5-9fc9-b8d609755520','e6b643b2-ddca-48ec-b553-690e29e71879',59,46,47,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-1'),
('273d61d1-74eb-4798-a2ad-802a36f7be96','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',167,67,8,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-13'),
('274049df-6c6c-4ff7-b82d-387e758b070c','603bbb28-8202-40b6-a789-1531b9124485',89,67,200,0,'2025-06-27 17:12:30.423','2025-07-04 21:24:28.083','371881042-1-2'),
('27414365-3f29-4b21-8314-008dba3dc3af','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-18'),
('27418870-e870-4d07-8e84-91e8d70d4c26','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-58'),
('2741fc3c-f8bd-467c-9a15-d6718bdf0c5c','8d3d3650-c22e-43f0-9360-325f2df43f5c',0,0,0,0,'2025-02-09 09:51:44.471','2025-02-17 21:42:56.662','745636493-1-2'),
('2745c3bd-ac5b-4c68-91a0-488968c57e34','ba4d79b7-2f50-472d-b8a3-175425785005',205,160,30,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-2'),
('274857b0-7d1a-443f-980c-935f79399139','6fcd8160-ca06-46ab-a691-51de5c394793',39,13,61,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-5'),
('2748c251-090f-4a29-9f5c-d99e8adb778b','cf923c2e-5afb-480c-b737-8b48ace679b6',95,95,7,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.773','371628660-2-1'),
('274b3115-bb97-4ff4-b8c6-dd718498a4c0','2499a4db-dc20-496c-b47b-f4ad48cab92a',57,75,100,0,NULL,NULL,'221584314-1-1'),
('274ef635-a8fe-4de0-abc2-dd4c2e845be2','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-9'),
('27555490-9cda-4cf3-952b-4900c4c2f07b','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',90,80,75,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.535','614766744-1-4'),
('2757213e-e189-4a9a-b52f-c1268aaf7ad8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,160,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-17'),
('2757eb9e-9bb0-40d9-b334-bd45d47e6ae8','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',92,95,43,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-4'),
('2760025b-9d57-4769-946a-18df5ff8b9cf','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-43'),
('276186b8-eb1e-4cc7-895c-2fdb522d0799','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-152'),
('27618c50-3662-42ec-9260-6fb19391a2cc','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-73'),
('2762e826-9e92-40ae-8ec4-0eb857ff33af','18014a19-7e61-4998-9ca3-020a7d8a9ac3',51,206,33,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-2-1'),
('2766cadd-bda3-4bc2-bb04-288fb7c8a43c','e89e7d75-4967-4c63-9f73-981469e531af',85,80,75,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-9'),
('27672319-ffaa-49ac-bc81-64628b9a9e2c','bf2fbd97-6d0f-4724-b25e-47e019854e49',44,208,5,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-6'),
('27684d5b-2beb-47d2-8c44-65f93b17d39d','92eefcaf-225d-4459-b297-1d8d499b03f7',0,0,0,0,'2024-12-18 09:31:24.380','2025-01-10 16:33:03.833','735272751-1-4'),
('2768b7d5-7b48-488e-963f-3dc06a4340cc','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',100,43,14,0,'2024-04-27 08:45:29.529','2024-05-08 21:08:12.684','614725757-1-9'),
('276bf584-d08b-40f3-9e80-0e856965b71c','9bb1caef-a37f-4f55-86cc-6aecc99853ff',102,57,85,0,NULL,NULL,'221607575-1-1'),
('276c266f-1cfe-4d0e-9632-a8f3e4078ba4','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-21'),
('276ff896-858c-4be6-92c6-aa6c67f54478','b8721202-54f1-436d-bc84-f671bfc36fe4',100,73,70,0,'2024-09-19 18:27:53.236','2024-09-24 16:01:08.792','517827584-1-4'),
('277972e5-103d-447b-a800-0c7e6e46183f','304740fa-6d96-4ea0-a997-094361062796',38,38,200,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-8'),
('277c3c4d-7008-4de2-b99c-080cdb60b933','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-19'),
('277cd69d-b013-4972-b4ea-6e2a61ba3bca','59e374c2-6e9d-43f0-a7b5-2e103296684e',70,91,91,0,'2025-05-09 18:43:49.654','2025-05-21 18:37:05.329','371160737-1-3'),
('277db668-49f5-482c-a6d7-ea0dcbfa04b6','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-97'),
('277de8a2-77e4-4bf0-9654-a2b3eaf579c8','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.700','2024-09-17 13:49:48.055','126824871-1-7'),
('277f7c12-8665-4797-bbea-4545e0801b80','4c9af956-747f-4f55-9533-cdcfab1e4fd2',51,51,77,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.710','675902808-2-1'),
('2780bdd0-6304-418b-996d-6896aed76aac','426edf33-c45d-4446-b38c-af56172acc0a',85,75,70,0,'2025-02-13 20:43:33.268','2025-02-25 17:03:41.023','449448008-1-2'),
('2783cee9-65a9-44bd-8377-cd544ebf0199','a29400c4-3879-4ada-aeb6-c99017d4e531',101,96,75,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-3-1'),
('27882b98-3a98-44b9-897d-15a59fccecde','766da20f-af1c-47a1-a9d1-61d9a22c827f',65,55,100,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.877','613809111-1-1'),
('2788b193-8c3b-43c0-b12f-0c79a3131547','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-3'),
('278a315c-d78a-41ef-8515-13fa2c6d603e','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-17'),
('278ccdc4-1811-488e-b6b3-ed0c4f913fe0','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',205,80,5,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-5'),
('278ceaa5-6cf8-438c-9b3b-81bcb151e8f1','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-12'),
('278ef3bc-12cc-468b-893f-19778ad5d86e','0009aeec-e682-465c-b701-363a3ef377a6',50,35,35,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-21'),
('278f23c0-92a5-48c2-99d3-ef0fed4e1d29','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-5'),
('2794b36e-994a-4fda-b061-724b26c42ff2','8a556e5c-d40f-4adc-88d5-0c6485ab9282',73,135,309,0,'2025-04-26 14:41:50.405','2025-05-03 06:22:27.306','644775291-1-1'),
('2795d2aa-e593-449c-810d-c1dea1510469','904ccae0-124e-44d4-aea2-8615bcf196d5',0,0,0,0,'2024-12-13 14:49:23.227','2024-12-21 10:34:20.584','735905073-1-2'),
('2797940c-8f5a-4e9a-8cc9-74db01a51132','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-132'),
('279ae247-4bd8-4aac-80fc-bafac5404771','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-6'),
('279b7216-71c6-4357-8c52-b59b31d6512e','743afebe-6082-4419-89e7-020f67e440f0',75,47,47,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-2-1'),
('279d7b86-0ca2-4a10-baf9-80dd761b85ee','6a2d762e-11cd-4fca-b32d-cdba41391e25',86,12,51,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-5'),
('279dfa8e-26d6-4247-8ceb-85be22bbd5a6','d3d5114d-4fd2-41d8-bd26-703a87e70d0e',93,64,140,0,'2025-05-16 16:33:29.348','2025-05-23 14:06:55.651','644145142-1-3'),
('27a21dee-4ca2-4028-b4b3-8db63ff44efa','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-140'),
('27a3147f-e590-4056-bfef-c9adabe3f1f2','14ad5bdb-7df0-4df9-8328-3ee2c7a3e6ae',0,0,0,0,'2025-03-13 12:21:19.442','2025-03-24 16:02:29.861','97684781-1-1'),
('27a33941-d4bf-42d7-b736-5d9e5782202b','1a0ccb48-0abc-46b0-b34e-fac7901a5459',0,0,0,0,'2024-05-29 10:12:14.769','2024-06-10 13:50:44.710','449557088-1-5'),
('27a5fee7-755e-4aad-9e01-3ff09fe276a0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-201'),
('27a8054e-1266-4f07-a8a1-d548d9979b3d','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-4'),
('27aa70bf-489a-42db-a57c-0b9ff19e1aba','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',37,26,28,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-9'),
('27ad1a96-41cd-4577-9269-7e233edda34e','69acd97e-52c0-45ae-adf5-ee013e52776f',102,55,85,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.558','412596038-1-28'),
('27add8ec-98cc-4e66-a11f-fc0f085acaa7','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-6'),
('27b243ff-b22b-4809-89ce-17abb008f276','49b0262b-aeb4-40b0-bdcc-b5461a64c972',45,8,212,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-16'),
('27b2f17b-6de9-4769-9290-f1db58e8ebcb','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-2'),
('27b396bd-63ef-49fb-97a2-e5d1bd26bedf','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-2'),
('27b3ba4d-ee39-4f49-b078-8be9830a76f1','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-6-1'),
('27b46f0c-add7-4421-bb30-f60f70ce534b','5bfd2b44-3068-4b7b-b490-2c69f8b986ee',72,192,2,0,'2024-11-15 17:06:39.848','2024-11-27 08:20:23.084','614990703-1-1'),
('27bbb252-fed0-49c1-bacb-d5194dfbadac','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',100,15,45,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-7'),
('27bc1145-0604-40a8-9ad2-450d6fdcf90c','d15bfb2d-ea1c-4de5-8239-aa7ecce41541',105,105,6,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-2-2'),
('27bce434-5ce1-4648-9939-6c184d95e7ec','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-8'),
('27c0bcbf-4982-405f-b5ef-965c99bea3d1','443751fc-e739-4620-b6a4-3b4b39d4da52',45,48,50,0,NULL,NULL,'428163052-1-1'),
('27c0deeb-39bf-41ed-81c5-dcb360632d5b','e41c2f64-f695-4f9f-a2c8-28d17571c06b',68,4,126,0,'2025-07-29 12:58:22.159','2025-08-11 12:32:33.741','437584936-4-2'),
('27c300a5-c6a5-4523-a2d5-e043b29362bf','047bf09d-242b-472b-97f8-46901b73eea9',17,19,51,0,NULL,NULL,'428905379-1-4'),
('27c808d2-b7a5-4d17-b2d6-ed96b73c1b68','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-24'),
('27caaab4-30a8-46b1-9a56-ad6b50045355','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-2'),
('27caf2e4-0949-4775-be82-c34f389577c1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-18'),
('27d023e7-4d1d-4894-a5f7-66cfffd233c3','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.840','428752676-6-4'),
('27d196ce-efe4-4bb6-a1bc-c6a5d3aa5617','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-6'),
('27d3c3e1-1732-43c3-82e9-ec67e20d4a39','8f339642-bf4b-403c-9289-3a16f3a3b2e9',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-3-3'),
('27d71a51-6ad5-4e25-aed0-fc7c483f70f0','8c3a9387-2db4-400b-95fa-11aef6c745f6',82,44,24,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.892','501766543-1-3'),
('27d8d7f7-dd62-42df-bd60-0581b039d494','0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4',30,39,58,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-1-1'),
('27dadeb3-3ba1-4bbc-bdfa-c19e00b9602d','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',57,83,101,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-4'),
('27dceb6f-ddfc-4253-97c0-9335c11bcbd3','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.569','745508995-1-3'),
('27dcfe87-0d9a-45df-af0b-d8c07d0a1b21','5ea4b207-b05c-4931-bbd1-648b6933aae5',67,85,70,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-31'),
('27dda885-60d1-4c7c-8749-3041322541e8','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-71'),
('27dfefea-214b-4b55-b8c5-123fd8883c17','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-4'),
('27e11ead-ac6f-4c51-ab6f-e098e134f6ec','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-5'),
('27e2e97d-4fde-46bf-8ecc-fc95dd2a4154','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-22'),
('27e42437-af46-4b78-b3c2-3e45b99660c2','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',83,83,6,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-19'),
('27e56170-1c23-4bc1-b8d4-8f9a7d4ec600','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-53'),
('27e76e80-b04a-4d21-a935-97767a7f654d','50443669-b15e-4cc6-9bdf-b91285138cc0',80,201,22,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-3'),
('27e86fe5-4d1b-4af4-8683-bd07b67d2d60','46967417-5579-4330-96d2-b8546922819a',168,40,40,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-2'),
('27e9e734-8a3d-485f-a3fe-8b11c3b4b074','c8ea2253-3c75-477c-8e01-4ed8b3e57524',0,0,0,0,'2024-12-23 12:00:05.262','2025-01-11 09:47:11.464','73597674-1-3'),
('27e9fea4-2a65-4690-8c6c-1a4f902980a9','dec1c588-b8ed-4782-988d-22421211d62a',18,37,96,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-3-1'),
('27ebde7a-f401-418c-b34d-4492d34d46c3','5aac8c34-51ea-4438-b73e-7d54bf02d518',64,56,44,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-15'),
('27ec2fc8-a3cd-4e77-86be-5b9a15cab467','b628ce1b-6b78-4402-9d3f-96ac8321b505',42,15,8,0,'2025-10-20 07:18:02.414',NULL,'817682643-5-1'),
('27eca0bf-e960-4724-827f-12d4d05a807b','3c799be3-cf4c-4ca1-9e86-e1a3e476c0da',65,102,88,0,'2025-06-27 17:12:15.671','2025-07-09 11:39:48.701','418120869-1-4'),
('27eefc16-508c-4dfa-a3ff-69f280edffea','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-6'),
('27ef3120-d181-4869-9ca7-bf0f9454c5c2','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-1'),
('27f4becd-b801-48d9-8747-562b46af2a49','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:28.489','248284003-1-53'),
('27f540ee-af9d-4fad-8ed7-6830cb6fe4b2','a42de1f0-259f-433b-bc71-eaa067da905a',214,65,90,0,'2024-11-12 16:15:46.174','2024-11-23 15:59:18.876','61420700-1-1'),
('27f5b5af-685d-44d5-b6ee-e996ee5a571d','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',60,45,10,0,NULL,NULL,'011548428-4-3'),
('27f89e35-34be-41cb-843a-6ca20da2cddd','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-10'),
('27fa3ee6-0240-4735-b7ab-8872cf248569','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-20'),
('27ff0166-c115-49a5-9fcf-3d839425a4a9','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',68,43,18,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-4'),
('27ffb8d4-a7ab-4194-a4bf-0c7560e8473f','69acd97e-52c0-45ae-adf5-ee013e52776f',41,61,31,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-21'),
('28030eec-0d57-454e-b741-bd7e38e17067','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-18'),
('2805350e-7120-436b-b331-6822526ae45f','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-16'),
('28053bb3-a354-4762-8efe-68c56650c656','67ccfa3d-f741-465a-883e-090e37617e92',85,74,93,0,'2025-04-15 16:01:14.814','2025-04-28 11:59:28.218','745639167-1-3'),
('28095c3f-9b92-4107-a77d-a55530fd1615','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-20'),
('280af4d1-e682-4f4a-a577-5dccaef389f0','372e1bc8-6cab-4d95-850a-8adaef911ece',61,72,80,0,'2025-08-14 07:05:52.297','2025-09-01 11:08:22.515','478417862-1-1'),
('280b5ba5-71b3-494f-8e5f-4c84f5fba993','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-8'),
('280ebd5c-e9a3-4c59-a1bb-0d67c0ddd878','41d63bdf-b3e0-4aa8-a76f-ffceee8b0290',96,196,6,0,'2025-01-26 10:54:28.814','2025-02-08 15:05:06.582','221440431-1-1'),
('2811f95c-2fde-4834-8f2b-73a966784137','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:26.836','248284003-1-108'),
('28120636-81dd-407c-a2fd-ae03d0121339','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-193'),
('2812da20-08cd-4ce0-a1be-c3dbb213d6f2','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.299','478479612-1-30'),
('2816defa-0ea6-4080-acf2-0f6a96862881','d7a68585-2a23-4904-a221-7e2482da8969',0,0,0,0,'2025-07-08 11:30:57.025','2025-07-26 16:11:30.132','644452767-1-1'),
('28191a0d-d905-47db-9c28-8b03f2a37f1f','5ea4b207-b05c-4931-bbd1-648b6933aae5',222,46,5,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-2'),
('281b772d-c64d-4291-9e74-854e831eb382','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-179'),
('281bdf39-6996-4060-8054-55aa3cf584db','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-6'),
('281c36df-4c36-4a78-af80-757820fdd0eb','6302f68c-26c4-4a31-853e-80b9d1ba59ee',165,40,37,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-8'),
('2820af2e-5586-4987-885d-5c4e8699686c','bf560fb2-0b91-485a-bf70-cae59896df3f',230,90,70,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-8'),
('28231c1f-3a8a-4c59-b9ba-1d08348056b3','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-7'),
('28243cef-ff3e-41ad-98f5-61adc0c39299','e89e7d75-4967-4c63-9f73-981469e531af',210,100,30,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-10'),
('28252cfc-657a-4487-8404-3f6e63bc490d','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.494','221949733-1-2'),
('2829c548-aa26-4b65-b2bf-8d9bc2a04fcf','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-19'),
('282c3b1f-4375-4467-8744-8b2d072d3131','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-14'),
('282f7c21-3151-49f5-9e53-6faae5f998f8','536180b1-1c3f-4444-a507-049eec9ae541',80,206,2,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.981','745853192-1-2'),
('283092e9-3916-49f8-8cc7-82d6802d9d43','c1a31a07-5113-4703-99ff-14d4a90ef1ba',24,50,86,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-4'),
('28340874-571f-47bc-84ba-a4147615e239','29aa9d56-5356-45de-aaf2-7a6c4a5f2bc2',52,75,92,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-1-2'),
('28374e4b-fc09-4dec-8de2-c248b73950dc','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.299','478479612-1-35'),
('28379a15-0894-473a-8bce-42dc6736886d','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',63,43,15,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-21'),
('283a6203-963b-4cb5-b769-1d6a57a59500','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-64'),
('283bbe83-b150-42d8-98de-ac7c4d728b10','8cf1c134-2d55-438d-84fc-b33192eae93f',55,71,101,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-4'),
('28420390-f13e-488d-80fc-7505b975f74f','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-4'),
('28489cb7-6643-43a6-a86e-19b737445f8c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-74'),
('28499c2f-db8e-49ca-99cc-c41b9ce5bd1b','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-6'),
('284fe18c-00b9-420f-9a45-fcc1a666efa5','69acd97e-52c0-45ae-adf5-ee013e52776f',90,200,28,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-22'),
('2852675d-ad8a-4d1f-aa00-eb941eccd066','de8a2a10-9ee2-444a-a28e-efaf3ff1c953',93,100,70,0,'2025-10-20 07:18:16.076',NULL,'644664237-3-4'),
('28544b78-9727-4951-a406-91eed638d126','6cee1429-9935-4eae-be32-dc630b6d70e8',73,43,19,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-8'),
('2855de40-66ef-4e40-89c6-4f86346cf431','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-61'),
('2858400a-42e4-4833-9be3-b5abe4e01e58','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-6'),
('285a2b04-f511-4a38-8488-9975ad827512','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-55'),
('285ab99a-d860-4e73-ad01-924c21ad9049','3a8806d9-8f36-4702-b4a9-c0d54762186c',35,34,35,0,'2025-02-09 09:51:32.951','2025-02-18 17:24:12.014','455757391-1-2'),
('28649e1e-4e1a-4600-8b45-cc6c27cfd729','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-6'),
('286d392a-4505-47eb-90ce-a07cf9f3d1bf','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-3'),
('286ff9cb-772f-4484-879d-0092d37b5aa6','9e9d8510-86a5-49dc-924c-9ab30e855883',96,96,65,0,'2025-10-02 11:20:43.409','2025-10-17 06:16:56.789','976185606-1-1'),
('287549ca-6df9-4be5-9d1d-23e16c59acc2','fc6979fc-a14e-4764-a9c1-5e69d11573cb',51,52,77,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-7-1'),
('28779140-4e9b-457e-9ba7-a3d8f3d9d122','8a7fb8e7-170d-43fb-87a3-8fffb16bb71e',99,108,76,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-4-2'),
('2877c7a9-79ae-4a3a-bdf3-bc37d1428efa','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-12'),
('287bc2ad-3e82-4f77-aa41-749d75263dd1','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-31'),
('287ccdb7-aaaa-4939-bb77-dd21b8b3d1bd','ef2c0471-c7d7-40d8-ac98-3d2bf3a67976',53,76,100,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-3-2'),
('287d981b-763a-49a5-b6a3-54cd158ff179','4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869',65,99,117,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-1-2'),
('2881cadb-9838-4d6a-beaa-f4ed72269ddc','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-9'),
('28823ff8-fd0e-4cd0-8461-604fd284658b','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-12'),
('2882b02e-0599-4d9c-8e8c-b8ddd40cab31','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-9'),
('2885f767-e0d3-41f2-88ff-a381fef78a7a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-78'),
('2886ca2e-5003-4703-8c1b-a8449b82ad5c','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-68'),
('2886ff8d-b3bd-4f2d-b3e0-046ecbbe5a47','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.706',NULL,'223317066-1-22'),
('288aa8dc-aac1-4a1f-ab39-e21c192e1915','aaa8d3a6-48f2-4ac6-8cde-f805e401d89e',96,197,7,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-2-1'),
('288acb3c-8b08-4a5a-80d4-f268c628df47','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-58'),
('288bbd42-927d-4706-97a2-b8b8ea0cb9ce','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-6'),
('288da002-49c2-45f4-b2c9-fdc8b2f8c99d','11cb00a0-e2da-4c53-b9c5-4e213558a211',195,95,70,0,'2025-02-09 09:51:28.021','2025-02-18 17:24:25.088','976441354-1-2'),
('289333e9-936e-4c7d-9a04-78f6031921db','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:38.769','248135683-1-195'),
('28933d89-197a-4700-ba6a-d513b0119296','6105a5ad-ab0b-4b69-b796-281a85aa1c1e',57,82,110,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-3-1'),
('28934583-b6b2-4856-a967-09c3f1d52abe','a3c7cedc-5869-462c-83ba-d69c3bd9dbdf',58,76,100,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-2-3'),
('2893de92-36e6-4d34-b727-705608246fc7','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-80'),
('2894c341-b88a-4252-bbab-6aa9f1a10a40','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-20'),
('2898ceb8-bc63-42c5-ae66-c0dd430d39c6','f88c3e53-b711-4bcb-aa3d-9543580054cd',36,10,140,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-10'),
('28997743-ffca-455c-94f4-1f47fad3514e','86e5956d-750b-4aa3-8f00-53e2db7b9f65',68,30,45,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-5'),
('289c0d28-3d88-482b-a864-cbdec0582b20','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-15'),
('289e3f48-1c62-444d-b989-dad9cec30df1','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-165'),
('28a07e5d-89f6-4594-bb25-1c1c0b705d0f','70873466-f77e-4c55-81ef-21947837cbff',80,70,70,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-2'),
('28a1601f-7d55-40f6-84fa-bed19efd0ed7','ac1a5fbd-8451-400c-95df-d777e477b50b',0,0,0,0,NULL,NULL,'74520701-2-2'),
('28a2c43d-200e-43ef-8ce1-e056a0ac192a','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-36'),
('28a32e48-b13f-4e8e-8b47-b5a46df930f3','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-2-5'),
('28a73da2-749a-4f17-bb37-d6711f8cca39','c563f86e-fe4d-44fb-b91a-72261e82a6fd',106,7,106,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-5-4'),
('28a7885a-c6a1-41b6-8562-8eb6d3604b41','21f74ee3-8163-4caf-be93-184351bbdc71',109,126,65,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-2'),
('28a945c8-5feb-4e87-8d1c-448f5a0f5697','16ee37cc-f44c-4652-a3d9-37ff204f5538',0,0,0,0,'2024-05-08 18:43:19.572','2024-05-21 18:45:56.505','231455458-1-4'),
('28ab7c80-ef25-4384-97b4-21cfd130fcbc','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-8'),
('28ac35f8-d03a-4d03-8e07-a0c43220a1bd','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-1'),
('28b29e8a-e186-44a1-87a3-e77171e1895f','cf13fd34-bd50-4310-937b-eee4652efc14',0,0,0,0,'2025-01-22 09:07:11.020','2025-02-01 16:36:30.863','478224735-1-1'),
('28b4cc2b-7aa3-4859-ab63-94b08b354865','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-13'),
('28b68710-8a51-4d6f-a317-a4ea327fb411','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-90'),
('28b8c054-4da9-4724-8e86-cea970ed0002','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:25.526','248284003-1-95'),
('28badcf1-5c85-4ad0-9efc-741742c684a3','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-1'),
('28bd9083-1111-4c7c-a9e7-bc910b11f755','4f65b611-3598-4b25-a13a-86ec5208990c',75,57,103,0,NULL,NULL,'221600878-1-1'),
('28c0901c-1d4a-4248-b8ff-6ec344d0a18c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-104'),
('28c105cf-5699-4e35-81fb-e8658ce8f11e','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:39.381','248135683-2-78'),
('28c6b766-d0e4-4a24-9d82-ac1df9025234','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-6'),
('28cdad67-24b0-4cbc-a22b-4e157c07bea5','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',50,240,4,0,NULL,NULL,'011548428-4-4'),
('28cdce21-369d-46a4-8e38-89fd109e20c5','56444780-7901-46c9-a902-b20a8f5d4449',51,51,8,0,'2025-05-16 16:33:27.780','2025-05-23 14:07:00.550','33850305-2-1'),
('28d02d03-2836-4aef-98b7-507c9d67beb2','c7fce8c7-acfd-4c12-8db5-81618a4b211d',40,206,10,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-8'),
('28d2026f-ddae-4664-bc1b-4d3856971940','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-52'),
('28d52c56-4ab6-46d5-8500-f162f5258447','ba35c585-5a41-49a0-931f-21e6c034471c',65,70,100,0,'2025-05-28 19:08:46.383','2025-06-07 14:07:59.723','517278082-1-1'),
('28d8040d-9e2c-4990-8ec7-7a80610b6371','4869c334-4618-49fb-9d03-99d95654d12a',29,55,75,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-9'),
('28da4489-dfbe-4357-8a37-f953c383f0dd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-151'),
('28da86ed-dd87-41aa-9942-f8e4d0de833d','542181c6-dabf-4cbd-b756-74abe3440744',63,8,213,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-3'),
('28de88f9-d1d0-460c-875a-e685991276fc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-114'),
('28dea5f7-4f40-4917-9c70-255a3113ca8a','5c759086-0cd7-497c-a83e-a2162d4b099c',24,144,124,0,'2025-06-21 04:33:45.447','2025-07-01 09:00:53.543','248630618-1-2'),
('28e27ad5-05fb-4a87-8ad7-43ea091b8258','a455ba66-b417-4781-a6f2-6fce1b8bab23',47,16,93,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-4'),
('28e632db-0990-45bb-aa77-62a36ecb8623','fa893fcd-0aa2-4b0d-8cfb-f1438b36cac6',0,0,0,0,'2025-07-02 12:43:56.180','2025-07-16 16:50:59.613','371655670-1-2'),
('28e9ecd0-4f40-4226-8204-ca60d680aca9','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-44'),
('28eabf9e-28a2-40e0-8658-30edcdcefb7a','57dab073-4b3b-40f6-b274-8bed0e1e1e8e',0,0,0,0,NULL,NULL,'613137842-3-3'),
('28edc034-4eed-4ab3-964c-024e454d801c','80953bac-8441-464b-ae38-3bdc43f14985',0,0,0,0,'2024-12-18 09:31:18.009','2025-01-10 16:33:22.776','745283034-1-1'),
('28f011ba-3165-4039-9999-a13e4ab637f5','87b3f634-7cb9-4342-96bb-9a0c75c1ffe9',98,173,80,0,'2025-10-20 07:18:09.468',NULL,'505332275-1-4'),
('28f073d9-d385-4aa0-bc74-004464c2e1f1','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-71'),
('28f1b124-baf9-4847-b046-e5e119684430','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',230,72,90,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-4'),
('28f46bee-7368-42bd-a00b-4fd82782fac8','03ad506f-f86b-4dbc-952f-52b01e2467fa',150,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-14'),
('28f5107d-e566-4e97-ac0b-74b11b5785f0','7defd633-f7ab-424d-8029-028d1b045752',169,24,7,0,NULL,NULL,'501119446-1-27'),
('28f7d327-fce8-4276-bd0d-dfbf82af3920','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-2'),
('28f9edd8-1a77-4bbd-9bd3-7fa2e44bda14','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-2'),
('28fc6ce6-82b5-48a0-ba53-052fed89674f','77ba132e-7c8f-4ec6-9299-238cc9b3b7e4',120,199,32,0,'2025-06-27 17:12:12.393','2025-07-10 07:16:37.956','745952430-1-4'),
('28fc8337-e448-4c54-a17b-4dabb88c2bd2','85c15194-eff1-4483-93bb-42a19c646f6d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-3-1'),
('28febdb7-dcc0-4d7b-a0cd-92f0ea9bea8e','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.053',NULL,'598894090-1-4'),
('28fecdb9-6ce1-40d2-81a0-6a810fd65098','135c284f-8acf-4424-8c84-150435648d16',57,112,81,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-4'),
('2903b0fb-a61d-45a8-96c8-1e10889d2dd4','016dfb52-0431-472b-8ea9-e510a1937e2e',45,28,201,0,'2025-08-27 19:40:40.614','2025-09-03 06:11:03.306','371421349-1-1'),
('2906e591-fdaa-4d08-ae26-aad595c202b5','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-27'),
('2907bf7d-26b7-4565-bbf7-43a243f6e148','0857bc82-8e40-4209-8aaf-1fc4fbcce6b5',44,57,63,0,NULL,NULL,'428905379-2-1'),
('290ca0a2-0d05-4f40-96ce-56c591fc6cb7','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-11'),
('29125994-fcc4-4292-9b51-b34e41352733','b63291e7-9a9c-4942-9e5c-792e1279180f',4,210,41,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-2'),
('291b7004-039b-447f-a6d7-8b33006a9511','f95c2298-a038-46f7-b507-fbf48a2c0808',0,0,0,0,'2025-09-02 14:48:34.588','2025-09-10 17:05:30.502','319388100-1-1'),
('291c4dc8-c605-4319-a476-9ee0e32d062a','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-5'),
('291ca9d9-82b5-4a7c-b6dc-2379bc90be91','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-2'),
('291ee670-6eb5-4e3f-971b-5348c898e2a4','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-2'),
('2921004d-e4ce-44e3-8b95-7791920add3d','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-5'),
('2922e7da-6d3d-4988-a442-b338767771ed','68ba006c-4563-4d70-85de-ae704607cc56',1,1,1,0,'2025-07-12 09:20:23.158','2025-07-24 18:03:49.514','517395181-1-3'),
('29263694-94d2-49d5-b8d4-10a030697d63','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,85,29,0,NULL,NULL,'644104537-5-3'),
('2926a0a4-2f8a-4d8a-9efa-0f4fd4166f7d','886e0e1a-c599-47ba-bacc-c329212cc55b',38,38,40,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.556','478730420-1-9'),
('2928399b-6b59-41d4-bd81-93f011a4d060','88373dc6-277e-4d79-8537-6fc1534daf48',135,135,11,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-4-1'),
('292a19ed-a4ba-4adf-9cdb-0a70e8c4da97','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-3'),
('292c6b0d-f700-4b60-9363-1e322d6c0dc7','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-10'),
('292edbee-4571-402f-bb87-3f9f9c5b2320','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:26.176','248284003-1-157'),
('29310e63-46a8-463f-aad0-ab6dc9e9267d','009d2ad6-5f92-49bd-8463-3fa964f7693f',82,56,100,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-1-1'),
('293336ae-e00a-4356-b016-3b2f8b507dbd','46d1512a-2bfb-476d-a224-9390f3e194f2',173,42,10,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-5'),
('293691c0-55a6-43fe-984a-cbdb415f16ff','090b9a06-aee0-4c02-b626-f3e2002f0fce',41,41,78,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.850','750717756-1-33'),
('29378292-a925-4028-afc1-25881a2535b8','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-2'),
('2937af3f-5aa9-40f7-b25d-48a70eab697e','ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705',89,89,70,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-4-2'),
('2937b383-93c0-4a64-b60d-ea8d5a12d2bd','a8240df2-bc04-464c-afdc-dd0bdbe1643d',6,63,218,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-3'),
('293843c6-c987-49f5-a507-15ff73e25037','950eb8aa-72e9-4405-9031-9182cf1b215e',76,28,203,0,'2025-08-07 16:52:35.986','2025-08-21 08:12:57.335','478525280-1-3'),
('293b6e1b-eed3-4c5f-a482-5a901362f2f5','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-155'),
('293bc837-8c09-4638-9098-47f1df516726','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-170'),
('293ded13-78ce-4d99-97e3-c93133c47576','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.500','449890150-1-10'),
('29413089-3a40-4dce-83b9-d7eee06b0bc5','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-18'),
('2941380e-1ef0-47a2-9d3c-c10d72a9ac03','135906fa-fceb-45b1-a401-83de82461319',13,13,54,0,'2025-09-26 12:39:13.889','2025-10-09 09:24:47.313','319585140-1-1'),
('294affe3-e6b7-4817-a781-4f51403d89de','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-51'),
('294bcdd6-71e6-49eb-8d4e-214270139039','6ae0233f-f2c2-44bf-9706-7274e4c923e9',45,45,75,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-4'),
('294c7667-069c-4f13-bf7e-cfb8e1b207a4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-50'),
('294cdfd9-eb38-4a8d-a88b-86023c8bb011','c900d790-eeff-48b9-9f2b-48972c98ac32',41,16,200,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-3'),
('294cee75-a000-4fd7-89f2-ae254e447d96','24886f99-c4f1-4e3a-b8ea-1b00c2870261',45,20,32,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-1-2'),
('294fe495-f88e-4eaf-af4c-e5d1f5a0e789','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',82,93,28,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-1'),
('2951d265-d7f9-4681-b7e2-3f8c1aa603eb','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-9'),
('2951edbc-1528-4f31-99db-97e27976e934','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-56'),
('295996d7-34d4-48d9-8c8e-05a62d6e05fb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:39.672','248135683-1-167'),
('295ad134-a451-4485-bdd9-6e549d273958','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.460','734579794-1-3'),
('295c8fd1-b6d9-4b5e-beb4-eaa9b977144d','1916ae7f-80e5-4993-b31a-1869332c7d71',200,93,23,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.192','786849282-3-6'),
('295ffea8-db7f-4591-bee5-c28bf1e45335','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-34'),
('296a2ef1-abe3-49e3-b3a6-703d495c5c7e','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-36'),
('296be255-6e40-468f-b145-185db9d1c68f','5acbde88-dafc-4c21-ac17-d9730a373cef',55,40,40,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-2-3'),
('296caebd-3e62-48d0-a79e-1a5dee1e561b','f7b7d96f-ed14-446a-9420-7f44bcbbed32',23,12,23,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-2-2'),
('296d0e1f-86bb-48a1-9253-0c8119ba5d83','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-80'),
('296d8486-2828-4748-84b2-b6d38edacfa2','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-4'),
('296ef8c5-6744-4ce7-848e-2fd4de091939','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-111'),
('29797189-52a2-4370-b07f-920fdb04119f','04dff17a-2b9a-4f35-a082-5684dfe5706f',220,90,75,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-3'),
('297b3ead-0428-4f54-82a7-435dcb766383','da8440da-e3c4-4852-854d-19123cbe7e56',0,0,0,0,'2025-05-09 18:43:57.347','2025-05-21 08:16:23.972','151258703-1-1'),
('297b50c0-d49e-4be8-a9c0-d44fdf9cb5f6','a48f4957-ffc5-4309-808e-9eba40503ea8',44,44,78,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-4-1'),
('297ddd1b-bae4-44f4-8a8b-90d738131a64','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.434','2487154-1-39'),
('298295f6-a933-49a6-af53-31bcf69701e5','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:29.507','248284003-1-174'),
('298342f4-633a-412b-b7c0-247a4722282d','1d2ec7e2-f735-46a1-96be-3994af90aaac',57,83,100,0,'2025-09-16 16:29:23.562','2025-10-03 06:54:42.114','750363306-1-8'),
('2988174f-d120-4865-aab4-679388af0ff6','ef603b58-9644-4d43-9c77-58a606dadcf8',80,71,42,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-3'),
('2988384f-26bb-4815-9102-ae3451af2a00','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-4'),
('298d82e2-d0cb-401d-a980-4c4ad354d063','e31f714c-14b3-46df-a325-7cbfccab37bf',90,38,34,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-6'),
('298f336c-01e2-4563-9444-9fb1fca9f589','dbc7afbd-247d-4124-8935-6a9a1df416de',96,96,75,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-3-2'),
('298f3c1f-dc69-45f5-9bb7-54d1d07bc23e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-189'),
('29906f60-1b65-426e-9bd6-09ac4d14ab20','e86f2f3d-8f0b-4894-8c39-9063af830231',45,8,215,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-5'),
('29907ae6-b8d9-4ea7-8362-ff20b07b71f8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,72,80,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-22'),
('29912b07-ad72-493b-bd28-0516f08681ab','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-23'),
('29923139-19da-40fa-bd98-5caba4682ef3','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-8'),
('2994234f-7fd7-4ce8-8dfa-d4c02248c929','61557b6b-0b26-45ed-a3c0-a245ea1dc158',205,84,25,0,'2024-08-07 15:02:47.801','2024-08-16 19:22:01.168','614908568-1-1'),
('2996d33f-0787-4169-b272-3ae673afe847','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-142'),
('299828f2-0dcc-4ff1-b76e-15bff3d1b2d0','bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1',80,80,70,0,'2024-10-23 14:11:46.938','2024-10-31 12:05:38.042','501848451-1-4'),
('29999d4d-471e-498b-b3c0-8af5e9a68187','9114ad70-d53e-4d1f-89c7-30585d0a43de',225,42,8,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-9'),
('299b39ac-5c69-4059-8310-f10567c7b3e9','ba8a3b40-6783-4783-9cb0-da727261a6d9',51,51,77,0,'2025-10-25 08:59:22.001',NULL,'221811614-3-2'),
('299ce3db-d02e-4443-8e98-aaa22fb7a8e7','c3fe21d3-5610-4a96-9492-67597bbe83bc',126,126,12,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-5-3'),
('29a0dc81-ddd6-476d-8554-5bfa0cc914e7','fc33e6e7-779b-41c9-8d72-c26a1d995b78',100,142,8,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-1'),
('29a575f5-1623-48a7-bdfd-338f89d4cfda','cacb1c7a-8595-43bb-b1ca-40b46c29dc4d',35,30,20,0,'2025-06-11 13:14:43.208','2025-06-17 16:02:34.544','976765698-1-5'),
('29a690cb-6ffd-4b07-992e-85a67abfb13d','2a9dc5cf-e36d-4418-b12b-38735a234501',90,34,9,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-1-3'),
('29a78065-e21b-43c8-bf70-b3e3791adc1a','7f827719-d0a9-4910-9aef-532cd3731df7',60,8,213,0,NULL,NULL,'745995046-2-12'),
('29a8f800-41aa-42ae-9303-557e03142713','69545533-7407-43ed-aa87-ace1a5f77648',82,90,4,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-3'),
('29ab550c-df6d-47b5-85d3-7a90ff36b74e','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.165','248883377-1-22'),
('29ad5a03-3b87-4ca3-b891-ca178c540c87','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',121,95,65,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-5'),
('29af053f-a8de-4c85-9944-b4cdfc71a897','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.296','2024-09-13 16:38:19.762','41283002-1-4'),
('29b0e019-570a-429f-835d-fca88dd65841','22cdb203-e189-4693-adf6-5b2569edda9b',45,85,70,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-2'),
('29b47687-37ab-405e-ba4d-dffb820260b7','94d4fd15-f663-40b8-8ec9-f93a5cde757c',234,4,66,0,NULL,NULL,'614364554-5-3'),
('29b681fc-7d41-4e73-83a3-46c0025a1846','7a221082-1858-44f3-b094-3a693cf4ef01',96,195,6,0,'2024-12-28 21:42:15.499','2025-01-07 19:30:37.794','221883606-1-1'),
('29c30676-1f9c-42e9-a925-3aa657b190d6','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-4'),
('29c39540-78ea-45b8-9947-684745f65763','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-127'),
('29c754d6-7f4c-47f4-b1fa-000357f02aa8','a769cd75-8095-4eeb-999c-d1a749589a77',254,20,43,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-13'),
('29c92623-7609-441c-bb6a-00a8183707fa','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-11'),
('29cb603c-10ad-4250-bd2c-34bdbc067689','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-4'),
('29cdd51f-1772-49ec-8ee6-7f300d3e3ae0','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-6'),
('29d3e44f-5373-4f63-b316-e06672e24927','9866a947-9974-4053-8415-4518842488fe',204,17,17,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-10'),
('29da2a64-3844-4be9-a551-10d9fbde1442','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,160,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-23'),
('29db227f-2ee1-42e9-ad2b-f78076301cb3','6c37c9bf-2092-4fce-bbd6-41f3729ab98c',110,136,65,0,NULL,NULL,'808696925-2-1'),
('29db7a0c-0a65-40d8-a078-7479f98bded4','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-2'),
('29dbb6d9-a5cf-461c-aecd-1eec740dbc46','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-32'),
('29dde6ea-ccc6-42a3-98da-3a7279c3a14f','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-3'),
('29ddfa38-26be-405b-918b-f8012b09b61d','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-1'),
('29e42790-8b27-45ec-9c02-ca704c55a987','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-68'),
('29e79979-ecf6-4717-9268-c41e1603732e','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.865','2024-09-15 23:12:06.200','223867751-1-15'),
('29e7b42a-8296-4712-a009-b086865d137a','f848ce93-1e13-4869-9697-77af297f746c',0,0,0,0,'2024-07-20 10:37:18.022','2024-07-29 16:40:42.800','412450269-1-2'),
('29ea1f44-4b22-4de2-bfe9-6e1c47afa45e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-37'),
('29ead150-0dc5-454e-94db-7d0436e4171b','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-7'),
('29eb43b9-bff5-4581-8956-714b1077e444','886e0e1a-c599-47ba-bacc-c329212cc55b',4,56,205,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.557','478730420-1-15'),
('29ee9ff5-3feb-4f6a-9191-888dbf9ebc0d','852cb596-91b3-432f-8aee-ec6a804f3a01',70,85,13,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-10'),
('29eee14f-17bb-46cb-a454-c05139d6e213','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.188','163961995-1-40'),
('29f2d051-7a16-4fe0-bd84-aaae332effe2','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.299','478479612-1-28'),
('29f30805-58d0-49a2-ac1b-54ecb1bb6c45','46d1512a-2bfb-476d-a224-9390f3e194f2',102,65,2,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-6'),
('29f69fed-e088-4d6c-946a-ded56638bfe6','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',100,83,54,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-4'),
('29f76662-71e2-4ecd-b6ba-cf157fe5aa9d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-23'),
('29f7cd18-dbc3-45f3-8cc4-063d7437b893','307b609b-7404-46c2-ba6a-cea1cd59da9e',77,90,77,0,NULL,NULL,'598697614-2-2'),
('29f84caf-bd5f-45e6-8283-9ac735f46122','23916ed8-c0d3-4f6d-b7d5-f8117e883299',33,31,250,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-3'),
('29f8c421-f9a6-49c6-8eb2-f0d5f150b183','2fbebf8b-bf03-4aa8-a35a-9fc079f51881',105,170,55,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-1-1'),
('29f8cb40-3a71-4f0e-901d-5bcf9c4212bc','83a4a2ab-63b4-468e-9809-edf00bbd2679',80,101,105,0,'2025-05-09 18:44:21.969','2025-05-19 20:26:27.501','570417524-1-2'),
('29f9fdb5-261d-429e-a1bc-2366f1bfe375','59b0092d-145d-40f5-a623-67f07fc4accc',82,56,109,0,'2025-04-21 06:13:22.496','2025-05-02 07:03:10.003','910316067-1-1'),
('29fa5f38-bf6c-4db2-bc59-fa8ba406697d','5032b9d1-12b3-43c9-be24-f1af560c5e03',0,0,0,0,'2024-11-15 17:06:26.238','2024-12-01 12:27:55.685','745445888-1-5'),
('29fcf810-df7e-412c-b461-29ae722aac39','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-8'),
('29ffc733-42f6-400d-a0fb-b49fcf637498','e8e041d5-7390-45f3-b4cc-314402912762',0,0,0,0,'2024-05-10 18:50:14.993','2024-06-04 14:24:46.948','478261585-1-4'),
('2a017344-d099-44d5-8d89-0c314e3c13c2','e5ec1382-ead6-4ece-a830-c08623df48ce',30,98,207,0,NULL,NULL,'64471370-2-3'),
('2a029473-7b27-4fee-b5b3-4e1027033d91','8bdf2fd9-df04-4cf3-9e65-a87dd36dc1ab',90,65,75,0,'2025-06-14 12:48:27.807','2025-06-22 09:25:55.839','982681083-1-2'),
('2a059bbc-e5a2-48a2-935f-3ae31907cde5','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-24'),
('2a05b1bb-7996-4edf-a917-d832f92e52bc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-136'),
('2a07884d-5d80-42cb-8c2b-2fce2d102adb','b6b84af2-002e-42d6-8888-913741571a16',35,210,101,0,NULL,NULL,'598944852-4-4'),
('2a0e5d04-ede0-4c28-af0c-7581aa9c9000','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-5'),
('2a0f3a1c-2d97-42db-9ba2-9540e7ec9c17','f88c3e53-b711-4bcb-aa3d-9543580054cd',99,91,80,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-25'),
('2a0f5a8f-534a-4866-8b46-55beb40341ef','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.393','41245861-1-86'),
('2a0fbed6-e4fd-4769-97c5-4e4f5ef1078d','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-44'),
('2a111509-05ee-4e94-9b40-cdad1c7de375','b7fbd54c-bcc0-4613-9901-d06327048472',42,104,21,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-17'),
('2a116565-269b-4440-a114-8af76cd0e2f9','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-22'),
('2a11b683-256a-4ccc-923b-b3b43a53aeca','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',25,67,200,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-13'),
('2a145386-dd76-4066-a46e-52b4386239bc','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',70,92,230,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-7'),
('2a160db1-3232-4126-bfe8-a9473c16f678','7fee7544-b544-4623-b92a-7a80075349b3',70,100,55,0,NULL,NULL,'478514572-1-1'),
('2a1d8951-252f-4eaa-aeae-d7562e6175f0','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.092','2024-09-13 16:38:54.585','412871738-1-14'),
('2a20a09d-090c-4f77-b8e0-5b39181d6aea','d790c4af-3dcd-4c2f-bac7-cd5516a41cfd',51,51,77,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-3-1'),
('2a2115ae-d878-44a5-aa2a-95923256fcb0','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-163'),
('2a230eff-1725-4ae0-b234-bbec154f1523','426884c2-84a9-4add-aa92-e432769e1f8e',56,82,100,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-2-1'),
('2a23c297-86fc-41fb-b83e-4fa84b4cbee7','9114ad70-d53e-4d1f-89c7-30585d0a43de',55,63,64,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-10'),
('2a2c4dd8-7c31-4c4d-825e-69b9d902823f','7539ec51-cdb8-4879-b280-a64290bb512f',63,92,4,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-2'),
('2a2cc8ef-c73b-4de5-8c48-b20083746c40','a455ba66-b417-4781-a6f2-6fce1b8bab23',91,2,212,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-5'),
('2a2e1672-05b2-49dc-8001-0a144d4fb936','c71d8705-4675-43e1-be22-4ac642637a94',32,58,80,0,'2025-10-20 04:18:21.633',NULL,'312422305-7-2'),
('2a2ed8f7-dca9-436c-b469-8e899d608740','793ada31-608e-45e9-bf4e-447c23b093df',0,0,0,0,NULL,NULL,'455784012-1-1'),
('2a3396b1-4e60-40c5-9d6d-ed66b2582620','702c1aff-1a98-44f0-9dce-efad71572432',4,160,200,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-25'),
('2a344f30-0413-4623-94bb-be9d05dc4da1','21f74ee3-8163-4caf-be93-184351bbdc71',50,25,116,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-5'),
('2a39fac6-e462-4b59-aa0d-b1581868aaf8','c2e59836-c823-41bf-b343-b3df9dfc91f8',70,172,90,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-18'),
('2a3ea704-8948-4882-a279-46c9caa9c2fb','4cbccb36-ce98-48a1-99e0-56eca97abdb8',51,51,42,0,'2025-05-23 14:05:19.701','2025-06-06 17:34:50.225','221530805-2-2'),
('2a40ae39-ddd1-4dad-b896-fcc675f8a06c','5ba52abd-bd4f-4d1d-b36d-0b46860bd62b',80,23,15,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-4-1'),
('2a4b07b3-c4e5-49ce-b876-9a9624272ada','249d1f3a-1f6d-4acc-ad1e-40e713130f9e',80,98,95,0,NULL,NULL,'59898054-2-3'),
('2a4c4060-c91c-4474-b21e-e22fbcb358fb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:40.288','248135683-1-116'),
('2a4ce4a8-dcdb-4714-9923-284182693ec2','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:40.128','248135683-2-43'),
('2a52c310-2118-41ac-90c4-bb10d4f7ed46','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-3'),
('2a52d903-fbcc-49ee-8abf-ceb664b9a1f4','bd3024d4-77ba-45bc-938e-d1bc61220b35',65,100,65,0,'2025-08-07 16:52:24.798','2025-08-25 07:06:53.264','982561254-1-1'),
('2a534ac7-2006-429c-96bd-a1cedd5746c7','2bd41fb6-a948-4fbd-8c3b-c76f4f5f863f',51,51,77,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-1-1'),
('2a568209-8795-4f9f-808b-7f907349a69a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-217'),
('2a5ab15a-68b1-4132-8426-a2da2cac2d34','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-13'),
('2a5cc3e5-682d-4f4f-8ec6-315e717a4ecf','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',27,199,101,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-3'),
('2a5e6c67-28d5-4cd9-bedc-cefdb78f141a','ffad1b86-20c5-4d98-8921-4101b61ab763',107,191,6,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-4-1'),
('2a642c0c-2a18-46a9-8b82-4dfd9ab07a0f','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-3'),
('2a6481f6-9eac-4d5c-a988-d7954e8bb55a','4b89aa36-817d-48c3-9a42-4031483da485',0,0,0,0,'2025-03-24 16:02:05.134','2025-04-01 13:25:28.639','221247114-1-1'),
('2a6a30e1-ac29-48eb-883e-bca89429d3fe','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-17'),
('2a6b497e-20f0-47b7-9ae0-7e5a7bc14a99','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-41'),
('2a6d27ff-035a-4771-9238-e79397be0db1','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',85,57,107,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.749','61378160-1-6'),
('2a6e2980-f409-4de6-a609-3e519cbc7f49','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-207'),
('2a71c44a-e92e-4ae1-83a2-088d0f8e125b','9e5026fe-8d17-45e7-be7e-1fd39ec1f746',51,51,77,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-2-1'),
('2a75beca-e6fa-4956-8827-aa81b1c93ffb','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-12'),
('2a780db8-5dd8-4227-8000-b7ef2a2184d9','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-2'),
('2a79319f-a057-4ae8-9826-a67d5cf9cac5','a89f5cb0-4036-440c-b388-8ef641d6f3b9',7,60,225,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-2'),
('2a793e23-19d9-4a31-abd7-b9f4029b2267','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-20'),
('2a7b41f3-e15f-46df-98b9-12a9fe2f8cf0','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-4'),
('2a7cd816-4494-4174-8f56-cfd6be19edfe','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-61'),
('2a7d1ae9-20e8-4e0b-a556-135714ef8226','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-12'),
('2a81389a-99af-47af-aa5c-78a9157882a5','177be132-8ef4-4489-bb59-2794e3f4e826',80,125,100,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-1-5'),
('2a825212-7587-4d51-b03b-907c77816803','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-6'),
('2a835dd7-8382-4a17-b395-43a91cbf5952','b16256b1-d6a2-448b-a170-4c574127a57b',91,55,100,0,NULL,NULL,'745189997-3-4'),
('2a85d7ee-b5c9-4c76-ac77-6eecceeb018e','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-8'),
('2a86bae1-ab43-4c6e-814a-c92136e411d2','58ebcdbe-9281-4605-a44c-87684653f9f9',93,93,82,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-2-1'),
('2a8755ef-c5df-42e9-9158-2b5adb0535a8','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-4'),
('2a87de8c-0d6b-4541-952f-2c74d96d81aa','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-24'),
('2a88b41e-f896-43cc-9f93-485715c40926','0263f7f0-6c1a-4beb-ab78-25d69142647c',47,7,112,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-6'),
('2a8a876b-ade2-4be6-955d-8838c6d16543','5282b87c-6b11-46ed-bf19-54c6f3afd111',65,203,32,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-2-2'),
('2a8e4629-60ee-409b-af42-d8c5623a71e3','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-3'),
('2a90836e-c0d5-489f-a8f7-e86f87475500','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-2'),
('2a9114d8-3563-4223-ae98-69f0d5f72693','841f7f01-a7cc-440b-859e-dea7f085dd74',40,40,163,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-14'),
('2a9135b7-6023-4f08-8ee2-ffdca803f8ad','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-32'),
('2a99293e-01f6-4a46-95dc-6c9c6f17cd42','e9ad1ccd-2cba-442d-99f3-fbe2ebf084bc',104,44,103,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-6-1'),
('2a99b239-8b52-412e-87e4-0ff73d148e95','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-229'),
('2a9b3501-92f5-4c52-91c8-2e60722b18aa','9114ad70-d53e-4d1f-89c7-30585d0a43de',54,38,24,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-11'),
('2a9c9c25-155f-4a07-a164-077d00a2d84a','6a0e9903-d145-4c98-a4ea-6bbc6d4c522b',0,0,0,0,'2024-05-08 18:43:06.853','2024-05-24 07:08:05.841','478647079-1-2'),
('2a9f71d0-cb2f-44c3-bfad-d2e8b658a84e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-155'),
('2aa18720-5497-43f9-80af-e65553e96ba4','3535d433-eb38-4879-84b4-dbf8410809cd',6,42,214,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-30'),
('2aa19234-f438-44df-bff3-e63b611cb2c6','3ee7efa6-3558-4b02-a610-7981c42e78e3',240,97,70,0,'2024-12-01 06:47:55.166','2024-12-12 07:41:31.232','614352-1-1'),
('2aa2fe01-0ff8-4d52-a9fc-b047db0818d3','cbef7bb3-505d-4317-b96f-79bb7c881fdc',82,57,110,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-2-1'),
('2aa3d8a3-33d7-4fd3-828a-ae0f86ce59b7','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-7'),
('2aa7ec12-5cd8-460e-8f43-fd4f2fb54f30','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-158'),
('2aa8bef2-6bdb-4aa1-9768-42d0c39f6082','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-52'),
('2aae3df1-146e-4f2f-b542-2afb8d4db410','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-8'),
('2aae505a-7149-430e-b200-a239dfd5c462','c12f65fa-742a-4f75-bd9f-e44e0db841f7',200,16,16,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-2-1'),
('2ab0b9d6-defc-425a-a7d8-27b9685e222c','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-143'),
('2ab8fc59-276f-422c-bc13-bf697512c06e','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-9'),
('2ab98632-d050-4d4a-bee7-877245760dce','e54055a2-3c9c-4738-a808-7a4a31877ef1',84,84,6,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-9'),
('2ac11642-3394-46a6-9ce3-cda570644df0','660a4e89-2eec-45b9-9977-7a81419e94a9',76,45,45,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-1-2'),
('2ac40d47-693c-4045-9fae-f3fd51276ac2','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-7'),
('2ac4c828-6607-4ec5-8c78-74330bc737d9','81d0dc47-7670-4778-9132-e810a9a4d368',44,14,71,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-2'),
('2ac7bff9-ce53-4ffa-9a7a-9c8fd6bf0ba4','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-4'),
('2ac83e5d-2a2d-437d-95a6-c7d56a30aa68','b08f1011-0521-44ed-afa8-62b0f014b52e',206,96,6,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-3-2'),
('2acbc54f-824e-4152-8fe8-c26645207f04','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-34'),
('2acc1123-8ca8-4310-90f7-ae7df3cea988','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-2'),
('2acc8d61-a003-42de-b485-cbcd868d7aec','c9b410bf-c39f-4d56-97b6-272196df3cc6',190,52,40,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-1'),
('2ad30c8c-a7c9-42f4-98d0-6bac260a894c','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-3'),
('2ad35677-2412-41f8-882b-57521c0fb12b','7360cf59-fdde-4259-88ae-e20574f2ab94',50,75,75,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-1-1'),
('2ad666e4-e0e7-4ab2-a7be-5312b665adec','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-26'),
('2ada663b-3335-4ab9-99f3-453d2e6447b9','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-25'),
('2adad075-cbf5-4aff-960b-d54eb325f86d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-67'),
('2adda3e4-4be4-4729-9114-ca5f4b3686d0','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-81'),
('2ae1a9b8-360a-43d5-8fd8-f1cd76abce11','2a723830-d2b5-42fb-95ad-678895eae7cd',60,45,10,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-3'),
('2ae6f18b-6c30-4766-ba72-612fafc746b7','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-16'),
('2ae8df99-87a2-4a19-80f5-c0604aa21596','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-14'),
('2aeaca4f-c9e9-47b7-82f0-685690cbefd3','1868aea0-f631-4deb-85f5-8aa25773bef0',165,30,200,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-8'),
('2aeb52d6-96da-456c-91ea-d0f922725ba1','05af1df3-9a36-4be2-8bd1-773d59e1605a',234,51,8,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-18'),
('2af0ae8e-c435-4d93-9ec7-5ff19618701e','9bdb0d32-ef86-4a60-96fb-8c31daab68f8',42,16,6,0,'2025-09-16 16:29:21.952','2025-10-03 09:15:52.721','478862837-2-1'),
('2afa091b-f0bc-4687-9a93-8c940841b1ec','96eec285-a16a-4ef8-91c2-f330c11ec1f8',74,74,74,0,NULL,NULL,'221893262-2-2'),
('2afbbed6-4566-4637-92c7-20331bb4bcd3','c29e76a4-89ba-4143-8fad-01a2910620ee',95,65,240,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-1'),
('2afc3dda-86aa-4ced-9624-96a793aa0c11','f52b306c-3f53-46f5-8bed-8c43d5e71dd8',60,60,90,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.647','644377995-5-2'),
('2afe400e-9d3e-4896-b817-462bd9481a7f','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-3'),
('2afe8f50-3c55-4e85-aa51-e707f8ddc787','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-2'),
('2b008c0b-51d1-4456-89fa-f0384b8c68d2','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-9'),
('2b03de6a-50fd-489c-bf07-0114a9a8cecf','a42de1f0-259f-433b-bc71-eaa067da905a',70,187,87,0,'2024-11-12 16:15:46.174','2024-11-23 15:59:18.876','61420700-1-2'),
('2b07048f-0c8e-4d9d-b3c1-0b6329c495fd','ae8b0589-4bee-4cda-9dbe-1fb3b25105e7',76,52,101,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-2-1'),
('2b0b8909-53e9-4dfd-afaf-115742c2f1bf','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',230,95,65,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-2'),
('2b0c019a-d3bb-4d13-9825-35144b611138','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-12'),
('2b0fa5d5-0e4d-4da9-b2af-82fb6df798ce','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-96'),
('2b123d5c-d005-4003-8d7a-efd426e3dd1f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-129'),
('2b147bc7-b203-4f2f-9af4-d0f9d17b61e0','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-8'),
('2b15ef60-6432-4579-9f21-89b9e3cd8522','e0478821-943b-4eac-98b7-c417fdf27e29',60,60,50,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-4-1'),
('2b189d4f-189a-4337-bc76-7ad3cf55be67','9114ad70-d53e-4d1f-89c7-30585d0a43de',130,75,95,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-12'),
('2b1acd80-ee64-4469-8736-1d86aa498b5c','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-9'),
('2b1b2a1f-b079-4dea-a768-6b9901455c06','7d462544-6e96-45df-8230-5dcbcd269f64',0,0,0,0,'2025-03-08 13:46:16.569','2025-03-17 14:54:20.815','644971564-1-1'),
('2b1c21a9-3b97-4713-b825-32ca85964522','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.577','735785649-1-1'),
('2b1d4418-2a7e-4a57-b8eb-015cb8eb349b','7dbfac68-a166-481d-9984-d7ec9291dc46',85,57,101,0,NULL,NULL,'808690841-2-7'),
('2b1e29aa-1617-467d-9654-a645593ab84c','ace7ef1f-bb3d-4e4b-b44b-e8e0fc39c5c8',174,68,95,0,NULL,NULL,'613592756-3-2'),
('2b2300ef-ea02-45b5-83e1-cff30e29030a','15d74154-5fd4-4173-9e76-f45c4027e0c0',0,0,0,0,'2025-05-28 19:09:10.544','2025-06-05 12:35:12.685','644860505-1-3'),
('2b260b9c-fb52-4006-857d-952549c8f059','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-35'),
('2b26f6d3-4b4c-4b67-892e-f6169eab222a','03ad506f-f86b-4dbc-952f-52b01e2467fa',183,39,42,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-15'),
('2b271843-df01-4e87-92a6-17cd99019029','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-5'),
('2b2d84cf-ba88-4f0a-be99-0341068744a5','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',57,10,177,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-6'),
('2b2edfe6-b68e-4c78-b652-0fd4b595cb37','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',186,100,19,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-6'),
('2b3490c3-9131-45e0-ba8b-fdc91666b773','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-7'),
('2b352583-ae11-430c-b2d5-f3544ae3119c','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',120,90,50,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-4'),
('2b35afab-8958-4beb-b02e-08611326fddc','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-5'),
('2b36426a-4efb-4c1d-975d-a0bbc9347083','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-134'),
('2b369fcf-68d4-4191-8d09-439d1fddd118','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.713',NULL,'41288739-1-11'),
('2b385c05-5798-4dce-b4c0-9cb549056914','6a308121-6cf9-4384-8446-08182bd669fd',214,45,4,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-23'),
('2b3c58c1-ed1a-4a1f-9867-bd5e6301cb9f','a7adbd9e-6dc8-4e83-8103-f0614c771f77',70,104,230,0,'2025-07-12 09:20:31.828','2025-07-23 06:22:15.027','817838997-1-4'),
('2b3c69db-8dd2-49d4-87f3-f103921b064c','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-9'),
('2b43e7bb-52c2-4707-b5a7-326464ad78b9','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',96,10,58,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-14'),
('2b44adf0-8d3b-4643-9069-877b688c53a6','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-5'),
('2b45253e-6fb6-4bd8-8545-4e60c4a662d7','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.270','44940434-1-1'),
('2b46cbf4-7f2a-41c3-a9aa-d6a30a78b7fb','0e92c59b-93d0-4308-91ce-3965bb186203',255,130,30,0,NULL,NULL,'428180919-1-16'),
('2b4d4121-a4d7-4d5e-aade-ba4202fd8af2','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-5'),
('2b4d895c-bf65-4128-bf50-6718659db614','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-8'),
('2b5129c0-1679-4f80-bff5-ec85c8df07cb','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-5'),
('2b523b83-26df-4962-a7af-c48f7420b4bb','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-218'),
('2b52e7ed-54e3-499e-b154-129ce3ed7c63','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-237'),
('2b54ece9-9675-4cc9-b4da-fc6314b3937a','af69c5a3-87d3-4548-a650-720b69a4fc69',80,80,80,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-53'),
('2b580ad5-355f-4805-b6d0-7901bfd0f43e','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-6'),
('2b5ac08b-7772-4205-a824-87b10b52cf1e','476b43b7-da3a-41aa-b89b-f5010f41f08f',96,96,70,0,'2025-10-25 08:59:07.177',NULL,'598445423-1-2'),
('2b5b3f44-2071-4393-bce1-1e6af799645d','a9313571-e855-4653-bf10-1dd7085ab26a',0,0,0,0,'2025-04-11 13:42:24.020','2025-04-17 13:54:18.485','478438901-1-1'),
('2b5b6bb6-6fa5-42c5-8130-0e71b85ac64a','c51cf533-511d-4f61-a94c-3e48074db45d',40,64,82,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-3'),
('2b5de98c-e150-453c-84d8-e8693b8d0376','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-11'),
('2b60a907-f8fe-4bd0-9d2f-0105b0ee76b7','2ab41284-325e-4735-a02e-0af4784fee90',85,7,145,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-7'),
('2b62c487-eb95-46ce-968d-048ca7436219','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.353','248614196-1-2'),
('2b640eab-06ec-4844-b6cc-4836c75cea57','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-14'),
('2b648ae5-4e83-4bee-9767-65f77f3696f8','9affc7b1-09c4-4e84-b48b-d0c117c421b0',180,200,33,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.901','412280381-1-12'),
('2b655901-0b76-4d97-9708-9dde14b73424','9d7979f3-a35a-4a64-97d1-4ba973786029',53,20,85,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-16'),
('2b691005-82cb-4daa-b085-c95972b17e10','b0475ba5-7be0-4dbd-9322-91f52b8cda06',0,0,0,0,'2024-10-23 14:11:40.001','2024-10-30 18:09:35.878','248764146-1-2'),
('2b6a0608-d6e7-4c0d-89d1-9ae39699616d','0009aeec-e682-465c-b701-363a3ef377a6',72,3,200,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-22'),
('2b6a3b96-043a-4f38-b8bf-ef91bee13ffc','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:40.958','248135683-1-135'),
('2b74ddfa-a5b1-417a-9f53-cf148dc8e460','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-29'),
('2b7a438f-eb51-4a8c-b21f-bb1d679a1b24','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-15'),
('2b7c0ea3-71d2-4358-97d2-c2c62b200117','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-4'),
('2b841de6-a26b-4218-8dca-ed240977dd30','60cada38-138f-443f-87cf-2250edc59661',53,73,100,0,NULL,NULL,'428172853-3-1'),
('2b8b4333-cf87-4917-aed7-f6411ea3e3e7','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-21'),
('2b8c98f8-7ed7-427f-9992-3e015a2bfd69','67ccfa3d-f741-465a-883e-090e37617e92',85,121,121,0,'2025-04-15 16:01:14.814','2025-04-28 11:59:28.218','745639167-1-1'),
('2b90ee45-b120-4957-8348-a330f8ec453f','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.845','478723327-1-2'),
('2b9da55f-5052-4779-a189-2a54d8e1aeaa','4b89aa36-817d-48c3-9a42-4031483da485',0,0,0,0,'2025-03-24 16:02:05.134','2025-04-01 13:25:28.639','221247114-1-3'),
('2b9fab65-1a7f-4c3e-ab32-e8fa7ce68bb3','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-41'),
('2bad8c12-41da-40d6-82ab-21ac52b93317','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-2'),
('2baebb00-936f-45af-a0f5-efc67d262a88','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-1'),
('2baf62b5-0ce8-4efd-9e28-f0f623c61e80','ef0789c3-230c-45b9-8414-11958c24d45e',56,83,101,0,'2025-07-08 11:31:29.130','2025-07-21 10:22:31.990','675629833-2-1'),
('2bb15bc5-1304-4104-a9fd-b0df1e38dca7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-245'),
('2bb40b3e-9c03-4a2a-acf4-bd3bcd253538','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-24'),
('2bb4f0d3-0c04-49e3-9257-550ccfd6ee7a','e4ea4323-3b5e-49e3-9d61-fbb71b718557',0,0,0,0,'2025-03-27 15:06:20.483','2025-04-04 17:24:37.240','127945692-1-3'),
('2bb657b4-c040-4c81-9616-02c223a1f0ec','b1baa9bf-71ab-446e-8c4f-f00d8bb3ba05',65,105,42,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-3-1'),
('2bb6d553-e7fe-4b16-892a-e167e64b4adc','49b61c2b-d092-4b6d-8c1e-caee3f39aabf',123,75,8,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-1-1'),
('2bb7292b-59b9-413f-a781-f14d5a5bb1a5','90bdd797-29e0-469d-83fa-a093a91bd2bc',210,58,37,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-3-1'),
('2bba100e-0b90-46fa-99f4-ec50d6aa3afc','61e1acf5-6d78-4652-b300-18948d3cbbad',0,0,0,0,NULL,NULL,'478647664-1-1'),
('2bbcbb7b-8688-4bdc-8a6e-7026d005c90f','ca7ffbfc-f9b9-48bc-8115-521efee8b6ac',0,0,0,0,'2024-05-08 18:43:10.229','2024-05-23 08:25:33.815','745850370-1-1'),
('2bbd5fc2-382a-4331-8668-af1875714a3f','80b1233b-a544-4cfa-b3c0-d621b23200b4',90,75,70,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-3'),
('2bbda63a-1b12-4829-b4b0-7fe33d9d7f13','1ee10629-f1ed-4f00-b3e7-b0eabc56a71b',73,60,80,0,'2025-03-08 13:46:23.569','2025-03-17 14:53:57.989','910572875-1-2'),
('2bbdb7f3-a1d9-4f90-a19b-887d4d79a010','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-125'),
('2bbef602-80a1-40ee-9d40-de38eb616e84','3f69b18f-39f2-40f9-b6e6-91f66d88bf80',193,145,9,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-3-1'),
('2bc0fe41-a281-49f8-bb69-5f577cdd5c3d','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-125'),
('2bc140b3-ef6e-4d05-ab79-7821202b42c4','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',120,100,68,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-5'),
('2bc1b7a9-7306-4bfd-b383-ad046f71a3dc','56ccf024-8de0-4c44-ad1e-db1438dbb90e',52,75,100,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-1-2'),
('2bc1e75e-8185-4006-9c5f-f54c67b99e61','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-16'),
('2bc29553-15ad-4f0a-a347-81246a842a02','a5506c59-0e9f-48a6-9b69-13a5163cf994',125,61,7,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-2'),
('2bc2cc79-65ec-4980-84ef-744424ab587d','ae2f16d8-65e8-4efb-b2a7-26877719b20a',63,17,40,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-2'),
('2bc638c2-f7ea-435e-ba96-fd108ef9baad','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-8'),
('2bc66de3-05c4-4514-af10-eb5e45603ade','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-14'),
('2bc878a8-dba8-41b5-9893-55f2980311bd','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-10'),
('2bc902a4-10ba-4575-9fc7-d06b36bf2c40','19f8d788-357e-4bae-a0cc-714638359cc7',28,16,210,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-2'),
('2bcaae4f-161e-41c8-b8a5-7aa0ac5fa73b','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-76'),
('2bcb0b6d-a4d5-4431-b607-6883f1b98e84','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-14'),
('2bcd269f-ae06-4dcb-b81f-4027d1141041','94265c38-053f-43ac-95e5-6d1b08ae3c22',61,45,60,0,'2025-03-27 15:05:06.419','2025-04-08 15:35:11.106','517887763-1-5'),
('2bd11977-18d8-4dee-afba-34809612f3c7','1bc30bdc-dbe8-46e6-b9da-ced1339173a8',80,57,57,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-1-2'),
('2bd25254-0776-4e64-8a0e-f76a446c87ee','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-98'),
('2bd2ea15-4c15-452a-b4a2-1a29950986f4','7852e0fb-6de3-4daa-9882-f74fa24083a7',90,29,200,0,'2025-05-14 17:03:44.747','2025-05-27 07:54:03.769','613464926-2-2'),
('2bd34eb0-6c6c-4dce-8f82-a5d04d7a94e4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:41.593','248135683-1-100'),
('2bd45ea6-aa55-43c8-b3ae-f259db92a0b6','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-35'),
('2bd4e593-7e3e-478f-abe6-4f1383845bad','a5626ae2-9a5a-4401-9095-a368c22814f1',131,204,2,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-4'),
('2bd812c9-ee87-4601-b7f3-5caf3673d26d','1fa4834f-6874-4d5a-80f2-1b8fe854abcb',51,51,77,0,'2025-07-12 09:20:25.398','2025-07-24 06:22:57.917','817918521-1-2'),
('2bd85e42-f22c-448e-92aa-f536808aadb7','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-7'),
('2be083a9-586d-4214-99df-074de293960f','4c90744d-c7f4-4a92-a397-19633c6cd352',32,25,17,0,'2025-10-20 07:18:03.600',NULL,'644178445-1-1'),
('2be09f3f-2d67-485e-90e7-d52f9cdf2482','f0c15cb7-88df-4d6d-9d57-a7aa3a6df37f',130,43,92,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-5-1'),
('2be4ac8e-0009-4f88-bfce-5611d3017d77','04dff17a-2b9a-4f35-a082-5684dfe5706f',201,54,6,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-4'),
('2be5ab61-7b8f-423e-8af2-3207148d2348','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-5'),
('2be79001-334f-4266-9c0f-e16706f91a91','8a7fb8e7-170d-43fb-87a3-8fffb16bb71e',100,80,76,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-4-3'),
('2bec2057-fbf2-43d8-9b9d-9b3e67cb53e4','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-69'),
('2bed37f4-3a79-42f7-98ec-ce9d626f612a','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-2'),
('2beeb389-5baa-4a35-b1ad-af76ef141cb0','5478abc5-9d64-4211-bae8-54bf5172ebc0',65,80,90,0,NULL,NULL,'982268643-1-1'),
('2beff098-ca16-45eb-8e82-84969112de7e','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-14'),
('2bf230e8-f219-424e-afd1-6402505947ad','795d2f7a-ffa2-4492-98f6-4e205fe5de73',78,100,58,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-1-1'),
('2bf34856-4066-4b13-b1e9-c9959e419e02','9a19deea-8c60-4c1c-923e-00c7ad1fc71c',0,0,0,0,'2025-09-01 11:05:42.853','2025-09-05 12:00:02.684','412968518-1-3'),
('2bf4bf2e-e2c7-4ded-a64b-bc106aa1c703','09ab7c74-e4f1-4f23-9e8b-20d215d2afcd',105,75,230,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.230','478928003-1-1'),
('2bf56a25-abc4-4cc0-89a3-46ec59cbddac','f7dce569-186c-4b40-9e32-d553c0d68d00',104,182,75,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-4-2'),
('2bf634bb-df58-45a3-8d4b-442b7539f007','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-32'),
('2bfad985-8667-45f8-bf28-a06988559286','1f9ee26d-ee30-4f8e-ba4f-8f1f3e46bd8e',0,0,0,0,'2024-11-12 16:16:00.770','2024-11-22 21:22:31.805','248904478-1-3'),
('2bfdfb25-4439-4d0d-aa3e-9e5f1c5ab1e2','9608c74b-ee00-4cb4-8b27-84c43649d0c7',101,237,70,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-3-1'),
('2bff8a8a-06e2-49a9-8c24-db0799aa119b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-16'),
('2c021fb2-8402-4a5d-bc81-8b3131d844b9','7c09f776-ffb6-47c8-8828-61389547804e',140,25,25,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-9'),
('2c03f6fd-b76d-40c5-b191-49857ebec9e4','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-2'),
('2c047097-db23-4854-a0d3-49846ceca307','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-47'),
('2c0712bd-d9e0-42be-b167-9fd99778b8d5','2bd41fb6-a948-4fbd-8c3b-c76f4f5f863f',51,51,77,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-1-2'),
('2c0abc1b-ae43-4e92-9d07-e771cf5a37f8','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-16'),
('2c0b394e-1159-4fd4-a73a-708f0ea21a91','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.161','2024-11-19 17:22:04.281','223744518-1-6'),
('2c0c6b20-24f6-42cc-87e5-07f146e8489f','841f7f01-a7cc-440b-859e-dea7f085dd74',78,73,190,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-3'),
('2c0cfb46-4e95-4eb5-82aa-9cabcf56d60b','565f6966-f194-4d7c-8b20-64502045078d',100,90,4,0,NULL,NULL,'478350685-2-5'),
('2c0dfac7-7988-4ca4-9247-f05a510ef4a8','70025235-c3ff-4d6e-b849-3c76df68e036',0,0,0,0,'2024-09-19 18:27:43.471','2024-09-25 12:59:16.338','745132796-1-4'),
('2c0e9400-d3ec-4090-8471-63eb0f2d12c4','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-73'),
('2c0eb59e-1f91-42aa-b2a7-cc87974ec42a','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-5'),
('2c0fc33c-0780-4858-a4d5-d15de12373cc','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,5,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-17'),
('2c183b7a-8ef1-4c0d-bbab-0499cc86b26b','719f1147-b9ed-45c5-99c0-b1467885c18b',96,195,8,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.166','371514006-3-2'),
('2c187dd4-a389-4ada-9a05-eab1078a6121','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.434','2487154-1-22'),
('2c18fa24-aa82-472e-a6d2-0dade6af50c5','838fa479-d6f3-4221-9bdb-56015e77ff50',0,0,0,0,'2025-04-25 16:57:24.127','2025-04-30 14:30:34.365','478681042-1-1'),
('2c1b00b2-5111-4c6d-bea0-d4c259a48cb7','03f3236c-f2ae-4e6e-afe1-dbad801907b2',60,105,185,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-1-1'),
('2c1df70d-1ce1-424e-b2d1-d15651d7de84','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',235,100,75,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-6'),
('2c2285a8-ee4d-485d-95bc-f55061494d65','129708ec-ae71-4363-b219-de04734f5e75',66,87,65,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-13'),
('2c235191-6439-4c6b-91a8-18ec70e6bc82','a9d9045b-a128-4ab9-b2f2-89d537b5f2af',0,0,0,0,NULL,NULL,'011548428-5-1'),
('2c258bbb-ac11-4a94-ae34-379549fbd657','2453f6bd-9e41-4af8-9f8d-4c11364b9084',66,90,85,0,NULL,NULL,'598967733-2-2'),
('2c269cc3-5e6a-44b8-b868-3093bc23a438','8c3a9387-2db4-400b-95fa-11aef6c745f6',215,64,7,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-4'),
('2c29dca1-9070-49ac-9816-c33a01351cf8','df713518-2930-40b6-8d4d-ddc4bcddbec8',235,96,76,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-3'),
('2c2a5545-e45d-4064-b17d-2029bef6798a','0009aeec-e682-465c-b701-363a3ef377a6',230,60,57,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-23'),
('2c2ad00c-545b-4633-abbb-50484846d398','23f3477c-f11c-4298-947d-16df3b5cde8d',91,66,75,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-1-1'),
('2c2b52ec-8e6b-49a9-a461-04e31667f7b1','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.250','2024-05-21 18:45:12.078','478681830-1-2'),
('2c2bd7ed-c4ca-4166-a862-dcddcd8b1fd3','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-4'),
('2c2c99c6-9629-4b7e-b9e6-3f59357c9f59','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-90'),
('2c2cd1d8-d606-4121-853f-602203d7b180','307b609b-7404-46c2-ba6a-cea1cd59da9e',94,160,77,0,NULL,NULL,'598697614-2-3'),
('2c2eebff-c4a5-4e1f-a3d5-92354386261a','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',48,7,227,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-5'),
('2c30f644-ef4c-4e81-9ea7-5a408b5234c5','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-18'),
('2c32e48c-ccf5-4ff4-ade1-087e246663df','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-7'),
('2c32e6dd-a8ac-4c8f-8871-f25c4569ea87','edef2f29-fe9b-4fa0-8465-53614e2f2468',65,120,120,0,NULL,NULL,'478412191-3-1'),
('2c35118b-bc1c-4f10-b12c-cdaa4de4e8c0','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',62,21,47,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-12'),
('2c37c19b-e120-4de3-a547-a2650f4942b2','06036ad4-83e0-4244-a783-5ad208e02a0b',53,103,76,0,'2025-07-02 12:43:39.481','2025-07-18 17:08:45.020','371282604-1-1'),
('2c38ce87-08a4-41ef-8986-118d015f7725','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-7'),
('2c3a03c4-8aae-4012-a20e-4e6dde15a4b1','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-6'),
('2c3c3d26-b59a-4eec-b57e-77e5d6e2cb23','9d7979f3-a35a-4a64-97d1-4ba973786029',61,5,130,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-17'),
('2c3e0fd0-6297-447e-983f-2f167bc678d6','8b4b20b2-a316-4448-9879-8c88eb75301a',93,63,68,0,'2025-03-24 16:01:50.514','2025-04-05 10:57:53.233','644110179-1-1'),
('2c3ef3ed-0e01-4016-b510-814e8b07cbda','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-9'),
('2c43b951-3022-4c38-a3fd-f8c44b21a65b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-16'),
('2c4759e6-28af-4eaf-aa3a-dfbc9072be2b','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-1'),
('2c487b01-f6c0-4ef9-bc03-47254062a4a1','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-32'),
('2c48cfae-a433-41aa-87a1-c25057737aef','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-1-5'),
('2c49f4e4-a3dd-4c52-80c7-780182417803','73499d6d-d2d9-4c76-9e89-9c775fadaada',113,108,72,0,'2025-03-27 08:02:49.277','2025-04-08 15:37:20.028','81723596-1-1'),
('2c4a0bcb-7620-46cd-9d5a-c73d3ff00f9c','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-18'),
('2c4f2a4c-b1ad-47d8-bbf0-08e8e835a842','70295e99-ecec-4498-943e-fb5826d388c5',75,90,74,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-2'),
('2c578468-c4e1-405c-ad52-9f186c8b25b4','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-2'),
('2c591650-7020-449a-bbb4-869d1f600edf','b79c9c03-f101-41f5-a37a-01d796fa6d5b',100,100,75,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-3-2'),
('2c5f71d2-2469-4e49-9fd9-53b46a6759e6','9866a947-9974-4053-8415-4518842488fe',165,20,20,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-11'),
('2c5f91ac-03b7-47e2-a4e1-4c0d9869ea01','b4183fd9-691f-4e50-aa3e-1185b3e78cff',196,98,10,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-3'),
('2c61fa7c-b0a2-4447-858c-ce0686bec890','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-5'),
('2c63938c-276b-4806-8d5e-d6c0dbcf8a83','0d90ef6d-e963-4a99-bbbe-e4ca67429574',62,43,103,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.982','750125400-2-8'),
('2c65876a-3c42-4bb7-8cbf-78e9a58aeeda','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-34'),
('2c667d01-6616-4776-8168-f5f466b59fda','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',65,95,190,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-6'),
('2c67b6ac-0451-4b12-84a5-09c86c04e465','bb9a5b8a-5138-4f0b-ae57-88695cf68e25',117,87,73,0,NULL,NULL,'786811264-2-1'),
('2c6dd4f5-6961-4c87-9b38-3310c511afd2','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-7'),
('2c6e1463-6d19-4b3c-b671-9b7bb287d8e1','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-24'),
('2c6f978d-7f5e-45a7-8e23-6bcb78e24acf','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-30'),
('2c7734f3-17c6-4134-9beb-6b25f423de24','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-3'),
('2c789816-450d-4a30-8f49-7e26aebe0330','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-9'),
('2c7bd37c-19d1-49aa-b2a3-6796b7fcf000','8beca2df-7a47-4d0b-b3bb-89209ce0b5c5',70,100,100,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-2-1'),
('2c7e8f1c-efb0-4616-b592-2c62b60ea2ce','34a4ab26-f53a-4295-9345-9762f27ce36a',77,53,102,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.887','478659791-1-1'),
('2c7f6409-c226-4542-9d13-9c8d313c5f83','9d7979f3-a35a-4a64-97d1-4ba973786029',40,11,72,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-11'),
('2c825040-b28e-451e-aa73-9da20cd8bec1','a2f34510-a7f6-4abd-ac03-e7c577feca03',58,4,214,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-3'),
('2c8282b7-ac42-466b-bb26-06027ed9d616','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:30.998','248284003-1-18'),
('2c832cd0-55ec-4b73-93e2-580b1693ffc0','08af242e-dc62-496d-980d-0f589dcdea60',69,75,80,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-14'),
('2c85ef23-6890-44a1-ba13-499f6e662fd6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:43.530','248135683-1-156'),
('2c86410f-0433-4862-925d-8e0f737f78a4','5d074556-ce95-4ffc-8684-279dc37597f0',112,56,82,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-6'),
('2c865fe1-31af-4e7c-b555-30cea8fdecbd','9b333ce6-5bc7-4a67-b8c1-e8283698a5e8',58,82,104,0,'2025-04-28 07:40:43.381','2025-05-05 09:10:54.449','613502652-2-2'),
('2c8a2519-16fd-4bd0-8688-dde7936e77e1','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-11'),
('2c8b04a2-1490-478b-9641-deb30568b76b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-82'),
('2c8ca5b9-605f-443c-8be8-1c3102a76516','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-2'),
('2c8dadfa-42de-4172-abb2-43e58883ed3d','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-24'),
('2c8f3d56-4de4-44b1-96a9-8450126f63b5','404bb5c9-911f-4abe-ae27-d9f8c7b4f704',0,0,0,0,'2025-07-19 07:52:16.841','2025-07-28 12:02:29.778','745712790-1-3'),
('2c93e553-c8f3-44db-a6c4-0a3eaad9d8ba','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-15'),
('2c94620b-25a6-4094-8d11-5f52c482f0c6','b9039b9b-ecf6-4419-a382-893676712c93',238,110,34,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-3'),
('2c9a9c37-833f-40d8-b9cd-b679470bfd41','d176a715-bd33-47f6-bcb7-f384e079f39a',166,22,10,0,NULL,NULL,'501724603-1-12'),
('2c9ab76a-8b7b-4929-ac2e-b22da0c03356','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-20'),
('2c9f2bf3-0c52-4c7c-a503-b04c08dce86c','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.099','982405831-1-4'),
('2c9f8290-234b-4884-a5da-479725b540b2','2881c493-0a0a-403e-bf7b-36c55e85e85c',45,80,30,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-2'),
('2ca04b8e-1263-4edb-8246-6bc2f7aca692','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-171'),
('2ca19da5-1871-4f3d-a4e9-56b0a533ba61','b4183fd9-691f-4e50-aa3e-1185b3e78cff',220,92,70,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-13'),
('2ca2a158-9034-4ee0-913f-2e9a12d841e2','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-4'),
('2ca326ec-3067-4020-b520-38c573b2b019','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-27'),
('2ca3a3c8-c2e1-4dfc-8c42-4ebcce984f37','9437e5bc-0bc0-4924-adb6-d303a80c1c2a',97,70,70,0,'2025-09-06 07:20:46.209','2025-09-12 06:52:49.110','598130952-1-4'),
('2ca888c2-1c46-4f88-817e-762958da584c','b16256b1-d6a2-448b-a170-4c574127a57b',91,55,100,0,NULL,NULL,'745189997-3-5'),
('2cac7ebc-b829-4953-ac6e-07e1c55bc3de','5cb082f0-4973-4f83-ba7d-550b088af234',85,64,67,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-4'),
('2cacb243-abf1-4486-9390-925f4012be5c','a69f640a-80e0-40e7-836c-75a316391b0e',0,0,0,0,'2024-05-08 18:43:27.068','2024-05-21 18:45:23.921','734482220-1-1'),
('2cb11585-670c-4ed3-a948-00cae8ac14bf','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-6'),
('2cb38903-de43-4e8c-abc5-e481c27d70a4','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-4'),
('2cb7d787-c965-4449-9508-5af967dfd510','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:30.325','248284003-1-193'),
('2cbcedaf-6c85-4d67-b78f-d8ee9c64bdc6','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-42'),
('2cbf0821-7b18-41d1-8e23-ee5877f5db0f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-28'),
('2cbf6eb3-455c-45e7-98a5-0c9ed70aa44b','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-1'),
('2cc34900-f81c-4e15-a923-f7c1997a53b3','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.278','2025-01-11 09:48:50.086','735660192-1-2'),
('2cc6b272-1a41-4407-9b71-a00b256631d2','3166ea3a-776c-48c3-91c8-684a49e8a243',50,50,78,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-2-3'),
('2cc7ee3a-9b27-49e3-9133-da5319ee3ff8','796f74f1-a123-4566-9122-ee642d251917',96,129,6,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-1-1'),
('2ccfcde1-25c9-49eb-bcc1-958bfcf9054f','97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6',78,138,7,0,NULL,NULL,'50552381-1-4'),
('2cd259d5-254b-4c44-84c2-f9d274433128','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-2'),
('2cd38b49-b28b-4a68-98d3-d900bb19f4f2','afd7f71c-d1fc-484f-b72d-f986503df4f7',92,71,65,0,NULL,NULL,'703266692-1-8'),
('2cd542a5-22e4-4c0f-aa08-26eea8f117c6','6302f68c-26c4-4a31-853e-80b9d1ba59ee',90,26,9,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-9'),
('2cd6b27b-7ecf-4899-8b83-c60c106b1faf','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-9'),
('2cd6e9e3-41c3-4199-8b4b-5194651faef6','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-8'),
('2cd7c091-9bbc-40e4-9bf7-d0333ae463ff','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-2'),
('2cd891fe-415d-45e1-b0ac-412bb91a250a','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-5'),
('2cd8a8c8-9da3-43c2-94ca-1b1f9993b0ec','fef5bf4d-01ee-4073-99a2-5cff1b560073',77,56,103,0,NULL,NULL,'371117320-3-2'),
('2cdd430a-35be-4796-b5ff-454b0337860a','8b9be79c-034c-4491-9980-ad94bae49b22',108,10,20,0,NULL,NULL,'501873907-1-2'),
('2cdd74f0-816c-42f8-a739-3d71c963d4d8','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-6'),
('2ce07e19-43f0-461e-bc1b-ca7c81c0aead','a7738d79-0b07-40ac-b644-35e9d80b368e',80,20,78,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-4-1'),
('2ce08164-526d-4517-b1df-42484a6517c2','cd701be1-7ee5-44c3-b2e7-2b7e15ffe056',40,40,30,0,'2024-03-23 08:36:04.730','2024-04-03 18:55:06.259','412977083-1-1'),
('2ce4baac-5a91-4f17-9ffb-064e784e9af9','9504c24b-6a37-4522-83ad-b302a5d583a5',81,81,6,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-7'),
('2ce66cff-32e9-4fc5-820a-41acad1fde6a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-137'),
('2ce8f1a5-63af-4a81-b26b-7858189e5459','e15eeaa1-59a2-4349-99c9-58ebc248336f',0,0,0,0,'2025-08-14 10:05:46.222','2025-08-29 16:53:33.284','644426448-1-1'),
('2ce973ff-9f29-4e32-9aed-f6b13c26acde','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-119'),
('2cea6675-b937-4eef-9139-848edae4afc7','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-24'),
('2cec768d-b557-4e5a-afd2-d575fe0d195c','43f2900d-96f1-458b-9b9e-6777ac110ab0',0,0,0,0,'2025-01-06 13:08:20.186','2025-01-09 10:06:25.423','478643015-1-1'),
('2ced00c9-1e1a-4b2c-800c-8aa3ab297374','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-5'),
('2cf21330-6de6-4bc1-bc2a-b195c7d14ce9','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:31.528','248284003-1-184'),
('2cf3f776-f47c-4f95-b4e7-3af7780456a5','094fda01-ee08-4746-bfb8-5af4550b0416',56,82,101,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-1-2'),
('2cf50214-10b0-4dc2-badc-9a31e4b9d71c','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-31'),
('2cfb9fb1-bf3c-4002-8e01-96b9abb815f4','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-16'),
('2cfc64a0-6ec7-4d43-95e0-5810b61b0019','51130bdb-f938-4bc4-8f49-46c9b089489c',230,140,25,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-3'),
('2cff3a4b-52ce-489b-91d3-68cebcf2304a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.818','2025-07-03 11:20:12.745','223422825-1-26'),
('2cffdd0b-d161-48d5-997e-6fdc0a3f764b','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.744','221341784-1-1'),
('2d004af3-7e64-4131-b520-2e5f9595f0ba','6b7249fa-3b92-44b6-a5b6-20ae76f8a01d',67,107,8,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-1-3'),
('2d04def3-44a5-4533-bd81-31d39c746465','220fed8f-f96e-4af5-867b-ac05d11bda6f',46,44,5,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.766','478507488-1-14'),
('2d06a599-e88e-4836-8552-5ec9410cad50','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-17'),
('2d0af1d4-bfde-4e1a-8428-704c692aa3b1','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-68'),
('2d0fea4b-c0a9-4da5-9c18-9655ac485778','26983e4d-fafe-4a1f-a87c-716366e4cf0f',65,66,86,0,'2025-01-26 10:54:38.004','2025-02-07 11:21:19.005','127530070-2-2'),
('2d11be4b-f4ed-4fbc-a21f-b8ddf44914d7','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-18'),
('2d1403c1-319c-40b7-8935-75d193dc9f23','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',73,112,125,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-2'),
('2d1480ed-bbb4-416e-ab31-01deae68fe2c','11bb54b9-d46e-445d-a3df-c44fe0e83c43',55,77,103,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-1-3'),
('2d192ad7-98b4-464d-943c-1cbb249107ff','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-40'),
('2d1bb403-e355-4dbb-9e49-e0b1e527877f','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-17'),
('2d1d34c2-a0c7-4164-aa0c-a34674dcddfc','2a7b0dd7-e92c-4d80-a1a0-61f0b6b1d33e',45,45,78,0,'2025-07-26 07:40:28.340','2025-08-02 17:36:11.137','598668612-1-1'),
('2d21b9f4-0446-418a-8b0f-c3b23a1fead9','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-5'),
('2d249de6-b4e5-480d-804b-af1d990d73da','778350cd-5627-457e-9aa3-334a2ccc6781',95,65,90,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-5'),
('2d2766cc-8bb5-4031-88b1-078a68ecbd78','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-8'),
('2d2865af-02c1-4b62-98d6-d5b3a709168c','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-4'),
('2d2a939a-8694-4d93-a25a-6016d9ae8b3c','382f1f7d-825f-4f4a-9f87-598a8856a6ac',0,0,0,0,'2024-05-08 18:43:12.410','2024-05-23 08:25:18.039','745439695-1-1'),
('2d2aceaa-2fd2-47e2-a42d-b81c4152340b','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-11'),
('2d320866-7442-4fb1-8fc7-9a08f19ad3c5','f0485a78-951c-4f89-bddf-b2003f0bf783',56,40,48,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-10'),
('2d34c258-ce42-437b-a3c0-a35f6a1d4672','6a308121-6cf9-4384-8446-08182bd669fd',87,48,9,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-10'),
('2d365322-d2cd-465f-942c-593b06d1b134','5aac8c34-51ea-4438-b73e-7d54bf02d518',7,94,180,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-4'),
('2d3845d7-04e8-437e-908b-2fb2ff1fc925','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-5'),
('2d3ca6c1-d79f-462c-a144-f02f0b26d3c6','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-14'),
('2d412da8-2db5-48d5-b984-f821c9757be0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-35'),
('2d418330-96e2-4940-8472-40151dec1431','c8a2a15e-4279-4904-a725-a9d44306abad',154,27,27,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-13'),
('2d424e7f-f43d-4d2f-a414-bca97fe9b1bf','e5c9836a-2651-42c7-a4c9-79cc66a12250',51,51,77,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-4-1'),
('2d4422c3-5972-4ded-b1f1-a9086059a348','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.387','2025-10-17 06:12:49.749','644606140-3-4'),
('2d44b4a3-af9a-4c07-baf4-920fa2f6c298','c4917d94-8c91-4f12-8ebf-b803c0150f37',30,111,203,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.490','598412225-2-1'),
('2d45e560-d984-4cf0-80f3-6329677ef246','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.547','412107970-1-190'),
('2d485967-3fa1-40c6-9667-c303b0eb5364','5fa83bd5-c793-4df3-9fe4-54f56117638b',240,97,80,0,'2024-11-02 08:42:14.214','2024-11-12 16:17:30.024','750145910-1-1'),
('2d48623b-837a-4498-b99a-6a422379e9d2','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-76'),
('2d4a9d21-9893-4252-9af5-fc6abce880c6','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-2'),
('2d4bdf31-bc5a-49e8-8fca-7c9d3e489945','ff7a7a58-3e7d-46f0-851e-7a15e0f7a061',69,124,11,0,NULL,NULL,'478514572-3-2'),
('2d514d75-5032-4faf-8983-8afac2f0ed8d','db48d2de-9b3c-4281-8b61-7cd066669b2d',104,123,77,0,NULL,NULL,'644726352-1-2'),
('2d51575b-76a2-4880-8ba2-c9e7bb580636','b7fbd54c-bcc0-4613-9901-d06327048472',40,5,201,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-5'),
('2d521533-be22-4e2f-a611-857b9519fb32','f6534c5f-f6d6-4e0b-b8df-9db7fa49aa22',31,31,31,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-3-1'),
('2d53c7a5-32a3-4f83-99ca-52b59209a863','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.188','163961995-1-102'),
('2d5db20f-0779-42cf-a598-729f024c519b','376d58bd-0c2a-4ae6-b35a-b4c5a8512820',180,200,30,0,'2025-10-02 08:20:35.390','2025-10-15 08:32:34.226','745219309-1-1'),
('2d5e352c-e92d-4427-bd6d-bf8a7540ea75','68112cc1-ad84-4c05-8982-53d277841de8',0,0,0,0,'2025-05-09 18:43:42.169','2025-05-22 15:22:34.432','478278253-1-2'),
('2d5eec51-6027-4cd6-96b5-5f0cc87670e3','c530f905-27f0-487c-bf56-8ae218e8420d',45,71,16,0,NULL,NULL,'478153975-3-5'),
('2d63dbbf-5c38-4aee-ac95-41439810187c','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-49'),
('2d6680ea-4b41-4d40-8964-8aa52adaa06e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-25'),
('2d66d689-cfb4-48d1-b6e2-a4562a39e6cc','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-45'),
('2d675635-29d9-4357-b9ea-207c2263da13','6d0390ef-65ce-4154-a607-d67e51938ed2',79,50,50,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-25'),
('2d6a75b6-a8a3-4d26-b3e3-a8c3d220074c','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-36'),
('2d6b31f4-a3df-4a2b-8680-e3c08c4c1ff6','9c9ece2e-cdef-44ae-9960-980614fe02aa',65,72,102,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.775','478243785-1-2'),
('2d6ba7d4-436c-442c-98be-06ec1cba7dae','211ec422-ff31-4a6d-8829-2e78be0611f7',50,54,90,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-1-2'),
('2d6cd100-3a78-427e-8804-badbcf8a76c4','6f8fd929-0228-4fd9-a182-83fe855d3f5c',100,86,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.511','962908456-1-3'),
('2d6cde9b-f97a-49c0-bc7f-6561838c93e1','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-152'),
('2d715601-9833-49ae-84f0-32ab1efc5320','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-97'),
('2d7415e8-6b54-4c9f-9603-848224dfed60','2a507ef9-decc-4447-92e0-1cd036ecc70f',56,56,84,0,'2025-07-08 11:31:24.515','2025-07-22 19:06:58.071','221471794-1-1'),
('2d75c450-8ac2-4fe4-b150-ef2239274e0b','2a529661-568c-4dd3-8b4a-cd09bf85bae9',87,87,11,0,'2025-10-25 08:59:15.285',NULL,'505414907-1-5'),
('2d7a31a5-3657-4433-8d62-0a695cda5c3b','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-1'),
('2d7db8a0-3be3-49ac-90c4-6d30aa1f0e5a','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-75'),
('2d7f25a7-aa44-4aa5-a7d7-0f0f1dccab65','50cd18d1-456d-4a3a-9315-1c4d4ae815b9',120,100,65,0,'2025-02-09 09:51:24.840','2025-02-19 18:36:53.201','50133684-1-2'),
('2d7fa527-0a42-453b-8f3a-a7bf7d1af872','4c2679d1-8174-446f-b353-35431309f481',0,0,0,0,NULL,NULL,'478981977-2-1'),
('2d8024cd-7e50-4944-a0c6-59b1ef33de84','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-10'),
('2d8467f3-55f0-445c-a679-6f7dd56d410c','5a31d59d-2a39-48c6-a450-4b8e78dae401',80,30,201,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-2'),
('2d8546dd-064a-4c1f-8137-1456d2774bdd','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-3'),
('2d8586bf-99b2-4b3b-a7af-c2b7acc8816e','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.434','2487154-1-17'),
('2d86898a-b790-4a61-a584-912ae12110d2','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-7'),
('2d8abc2b-e877-4b28-bab3-516c9ba37acc','215b7f43-1974-4003-9af2-0e2b300284d4',100,110,70,0,'2025-10-25 08:59:10.092',NULL,'644522996-1-4'),
('2d8ccacc-255c-4ebc-b61f-c5146a2aee39','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-26'),
('2d8d1d71-75ea-49b7-bd6f-16abe8ad0739','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-21'),
('2d9015c2-e990-487f-938e-49a3b4769f45','7a3874a9-db61-4cfe-8c48-f341a8247a1c',51,51,27,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-1'),
('2d904562-46fd-4445-a29d-7932a59fd518','a3b52076-ddc0-43e7-bdcd-781801f338bb',100,100,80,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-3-1'),
('2d912649-e79c-435d-bb64-faf6b89c3bf6','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',32,32,135,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-8'),
('2d91b2e1-af65-4adf-bab8-cf101c65590e','a9e59bad-160c-4c51-b34b-7c71bb5efeb3',41,30,128,0,'2025-10-14 09:22:22.489','2025-10-25 09:00:18.615','011804405-2-2'),
('2d92b5c0-8db6-479a-b58c-bda37c62da9e','91114ba0-49e3-45a4-8200-76051f282450',0,0,0,0,NULL,NULL,'478790178-1-1'),
('2d95902c-9fdc-432c-9456-305a5cc68621','0263f7f0-6c1a-4beb-ab78-25d69142647c',57,6,210,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-7'),
('2d96640d-2b84-44bb-baee-d876287660d9','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-150'),
('2da10ed7-dba5-4e1f-8698-8d47a6033a7e','ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e',101,240,65,0,NULL,NULL,'47816855-3-2'),
('2da1b73d-ab01-46f0-868a-bbb5d1580086','8c1d061a-bf51-4cca-b610-45c125718335',66,96,125,0,NULL,NULL,'765334693-2-3'),
('2da21433-9855-4b6a-95d0-98c2656a62fd','384387cf-8c35-4d32-b59d-2400336e8b60',94,193,7,0,'2025-10-02 08:20:45.726','2025-10-20 06:33:16.734','150685221-1-8'),
('2da4d063-b2d0-400a-80c6-9abf77f50d37','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-2'),
('2da67d35-8709-4c5a-a949-e00424183165','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-166'),
('2da92814-c9de-42d9-b160-fe6454dd8cb1','8809d2f7-18c1-42c1-aed8-715d42bf5e65',55,30,77,0,NULL,NULL,'976462703-2-1'),
('2da9ba68-e5da-4dc0-8002-1a62c38d0079','5ee00c1a-30c4-4631-928f-5c95f22101d5',73,92,118,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-1-1'),
('2da9fa43-3f24-4af9-b693-c4c9cf3c1a0d','db1e0b9a-d829-49ba-8948-a90a863b6512',54,73,101,0,'2025-10-20 07:18:19.736',NULL,'644741916-2-2'),
('2daa9761-63bd-45c8-a9c2-9395010c6f92','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-2'),
('2daafe59-7b95-4b8c-98b8-b69e7dcdb431','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-7'),
('2dabf9ed-415a-43f7-9f65-fd5b6711f350','d0c58395-1ef4-4e35-9dbb-33c8a0ca36bd',42,128,310,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.432','531549696-2-1'),
('2db13b5c-7b88-461c-a943-59c31bfb6477','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-23'),
('2db3f881-603b-4ffb-9e41-1d47c33b6197','72142188-56e5-4fac-8fb4-f7d0f25058ff',100,100,82,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-5-1'),
('2db41bd3-7422-414e-99f1-532ac922459f','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-2'),
('2db4e885-275b-41e7-b372-8d211e84ee7c','b63291e7-9a9c-4942-9e5c-792e1279180f',57,7,210,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-1'),
('2db77d11-8f49-4ffc-b8e4-a37f35d8c618','9f080024-096b-45e3-9b43-059581313d8f',60,60,90,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-2-1'),
('2db9884a-421b-4fbc-ac67-5f37f3a1c9ff','b406e820-44f0-4685-8e93-c95709e1da71',90,206,90,0,'2025-07-02 12:43:44.589','2025-07-18 05:16:08.057','248352114-1-4'),
('2db99e9c-76ea-4e0c-807c-2bdaf4818654','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-21'),
('2db9a17a-5fa2-4106-b923-d0a93b47f0e6','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',31,141,200,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-2'),
('2db9a755-6530-4560-ac61-5e975643728c','6fcd8160-ca06-46ab-a691-51de5c394793',51,20,95,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-6'),
('2dbc3bd6-7f20-434f-8b0a-88cbc9e14f5c','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-7'),
('2dbc8700-4734-4e93-9b54-a36c66c9b74c','c6867ab4-5976-4f98-8c63-66591eb740c5',95,95,44,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-8-1'),
('2dbfec11-8fcf-45ea-8e17-69eae1edf42d','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-20'),
('2dc1a08a-b48e-42e7-8786-2f401858c4de','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-1'),
('2dc39e3a-b7f5-4aab-b799-01adfd28aff0','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',130,90,10,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-2'),
('2dc3e77e-9265-458d-8ccf-ac008b1242b8','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-87'),
('2dc5685e-27b8-44f9-b540-adda792b7376','743afebe-6082-4419-89e7-020f67e440f0',75,47,47,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-2-2'),
('2dc66e3f-a0c4-4c89-95ef-7bf4dc6892f4','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',39,44,8,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.984','61428079-1-8'),
('2dc81133-b78e-40fd-b528-90c942734d8d','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-42'),
('2dcc8361-bac8-4dc6-ab9f-3006b90d2665','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-91'),
('2dcd9572-7e69-4f7f-b9af-9938ea73c01e','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-4'),
('2dce9137-4f57-450d-a6de-3cf4e15aa653','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:32.245','248284003-1-190'),
('2dcf234c-f8c9-408f-9803-d6301f6b32ab','b2cc240f-bde3-400a-bbec-a61085853dd5',63,65,38,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-4'),
('2dcf8a76-ef67-437f-ae39-34c3895b8a6c','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-19'),
('2dd06529-89dd-43db-8ffd-92f89fcb9745','3735c345-c4d0-40fc-afc7-359f15617a16',100,70,70,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-4'),
('2dd1a3c6-d1c0-4c4e-a4e7-8385a10c8c87','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-64'),
('2dd537a9-2b7a-490f-add1-87c66f0fa550','b463387a-754c-4c53-ade6-f7e850173707',51,51,77,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-3'),
('2dd55e97-27fe-4339-bcd2-07177bdbe05e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-60'),
('2dd87ec2-72d0-4561-b972-fb0a3fdccd6b','49c326ab-5b3b-49e7-a781-28760709b5be',30,24,15,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-13'),
('2ddac65d-86cb-4eb0-b2aa-d1a7b26726e9','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-5'),
('2ddf837f-024e-4d48-bef4-f65b7134e08c','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-5'),
('2de02d62-6ce9-447a-970e-1daad61f92f3','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-136'),
('2de1c77f-21d0-435d-8e62-95ee0d0ba0aa','6a0e9903-d145-4c98-a4ea-6bbc6d4c522b',0,0,0,0,'2024-05-08 18:43:06.853','2024-05-24 07:08:05.841','478647079-1-4'),
('2de91a09-05cf-48fd-ad18-b0ea623fd3d3','49c326ab-5b3b-49e7-a781-28760709b5be',44,23,141,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-22'),
('2dea00d4-a37c-477e-ba90-48d394b0ef08','85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5',104,103,74,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-1-3'),
('2defad5a-ee00-40a3-90e2-eb21cf89bf45','ed32e0e2-0518-41d3-99f8-2b923271439a',0,0,0,0,'2025-08-27 19:40:20.383','2025-09-03 19:38:01.269','598587609-1-3'),
('2df49dee-ed3e-4f88-836d-0fa5da30cbca','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',87,56,12,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.984','61428079-1-9'),
('2df51275-1fa7-4a04-b94a-3cce832ba191','0ac2a48d-48c9-41d2-91a2-b574a94542b0',15,57,84,0,'2025-08-14 10:05:38.308','2025-08-28 18:20:16.504','765729280-1-12'),
('2df54c6a-2a1a-4409-b5bc-d3b3671e604f','b4526735-5641-4f8e-b544-78126f7e6078',0,0,0,0,'2025-04-11 13:41:53.749','2025-04-23 17:45:34.745','478138166-1-4'),
('2df6ba9c-0c16-4b67-a526-db71ed6abb6b','57d426fa-fa0c-4bd9-b11b-11018599b28f',76,101,57,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-2-3'),
('2dfa125e-964d-4dea-b4e5-e9ee4e37cf38','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-13'),
('2dfca5a3-bb44-4493-b559-74806d257967','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-11'),
('2dfd4ba6-d00f-4493-b09d-178ce8a52f77','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',72,106,56,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-1'),
('2dfd9cf1-caab-4152-af66-76d5f5e2c609','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-3'),
('2dffa444-3074-4297-a319-5955165a3b25','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-6'),
('2e0781d0-4dad-43c6-9458-1b199bb16f20','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-157'),
('2e0b8c18-7e0a-4ab7-ada6-64a23127f5f6','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-1'),
('2e0bcb43-0ba9-4d96-9bec-76d2585d1f03','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',9,70,33,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-2'),
('2e101f98-0774-4564-9ae7-2860eb992f55','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-20'),
('2e118ac7-42bc-48f8-ba7f-2a769433c406','c7fce8c7-acfd-4c12-8db5-81618a4b211d',198,178,3,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-22'),
('2e15cd29-dd55-431d-9a32-3c7d402046c5','c1a31a07-5113-4703-99ff-14d4a90ef1ba',20,120,40,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-21'),
('2e1b2768-39d9-4e0d-a9aa-22aae80ce885','2547c819-405b-4d9a-a0a4-ad76db169d46',95,80,114,0,'2025-09-18 15:49:10.658','2025-09-27 10:27:57.874','598148104-1-2'),
('2e1ca769-0661-40f1-a24b-f8637746f5fa','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-6'),
('2e1cf926-f8aa-4eb8-b21c-f7f2a115f1d3','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-127'),
('2e2388d6-bc65-45b7-a2c0-0edf4207dea1','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',45,45,80,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-3'),
('2e265f78-4254-4129-a356-333d989c4527','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',0,0,0,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-43'),
('2e27e9b2-1cfc-48a6-9fe7-5016fe3ddd6e','4c4cf20b-abff-4c94-a2bc-14cac7fb53de',55,66,101,0,'2025-03-06 10:32:07.193','2025-03-14 11:07:13.433','613990071-1-1'),
('2e28cbf1-8abe-489b-8a93-5e0f262eb21d','d996c4f8-5b23-4215-8745-02197703fd3a',0,0,0,0,'2025-03-27 08:03:05.413','2025-04-05 22:11:34.360','37176846-1-5'),
('2e2b9a9b-6c47-4da5-b17f-ad9d188e2071','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.809','478150977-1-4'),
('2e3946e7-6ad4-4076-999d-934e54ac1eac','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-224'),
('2e3a0d26-39fc-4205-8d3c-49879703c523','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-7'),
('2e3bfad1-b6f3-41e6-a76a-063329dc123d','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-69'),
('2e3d258e-8638-4b55-ac28-6c81cf1e72a2','c1d25f90-d493-406d-a430-9b65b4f44c5e',6,56,162,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-4'),
('2e3d3714-332d-4de4-939c-7e733531bbfa','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',100,100,60,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-1'),
('2e3d5b21-e4d4-4ee5-8a19-f82ab3a9c859','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.963','2025-04-26 09:16:50.952','223734808-1-126'),
('2e3e1963-2fbe-4bae-ab6f-6226ba071dd7','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-18'),
('2e407917-3616-4e2a-973c-d4572adad3ab','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',65,80,80,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-5'),
('2e447f12-4b99-440e-9334-829979e73443','c530f905-27f0-487c-bf56-8ae218e8420d',45,71,16,0,NULL,NULL,'478153975-3-6'),
('2e4a97cb-5c5b-4724-a300-8a447d8583f0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-40'),
('2e4dc361-9974-48aa-8ec2-8df27ae4b982','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-17'),
('2e4ea151-37c1-445b-8abb-1d0fd6807b06','35eeff3b-e518-487c-a326-3bee90657fcc',0,0,0,0,'2025-03-08 13:46:26.880','2025-03-15 08:58:06.593','910560938-1-2'),
('2e503b46-5014-4106-b843-062eceaa4c07','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-15'),
('2e50700c-dbbf-44dc-a145-15b52d5e9d62','0009aeec-e682-465c-b701-363a3ef377a6',56,18,35,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-24'),
('2e520542-96de-438f-866b-0bd1b01abd85','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,43,6,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-6'),
('2e559559-ae6b-4115-ac2b-a2881fda4948','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-14'),
('2e5a0164-2ee2-433a-8990-77643f90d6dd','5a62441d-a36d-4f89-a525-f3dd862b2254',76,44,119,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-2-1'),
('2e5a3ce5-19d2-4aaf-b8d9-696402df3484','78093200-7588-4a38-bf16-e75f613ae247',51,51,77,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.035','505850944-1-2'),
('2e5abd5a-317e-4de6-a545-719c6302b69a','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-5'),
('2e6014ca-7c81-48b6-8af4-2d03ac4847c2','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-41'),
('2e66a562-aae8-429a-9ffc-a7e285423dfd','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.134','2025-01-11 14:11:33.608','248284003-1-27'),
('2e670173-b2e2-4f82-b980-7b5569368462','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-16'),
('2e672f6f-2612-48f8-8758-f3ef56e4159c','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-5'),
('2e6a2ae7-895e-4ecc-a875-cfd79ecd17f5','159c73ed-083b-4d67-98ca-6adcfc554962',12,192,143,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-4'),
('2e6a8026-c716-4490-a9f5-95b632841ca7','46d1512a-2bfb-476d-a224-9390f3e194f2',94,64,38,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.419','412395565-1-7'),
('2e6fb613-30ce-444b-8dce-b292f56cd418','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-195'),
('2e7181c0-5b37-49aa-9d3b-63cc9b0c6fda','bbaefe28-b9dc-4d61-857a-1ef4e89040b9',0,0,0,0,'2024-11-08 17:37:22.890','2024-11-28 16:59:24.127','478192530-1-1'),
('2e7574a8-2c86-4148-8f84-b7ab500fd1f1','5ea4b207-b05c-4931-bbd1-648b6933aae5',230,65,95,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-24'),
('2e77f199-a5c6-4c4d-a9fa-accccecd8625','059d418f-09ca-4d30-b6ea-028323d66c5e',97,97,80,0,'2025-10-25 08:59:02.132',NULL,'59841260-1-1'),
('2e79ef17-b54d-4af5-94c6-6f5dd1654fcf','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-7'),
('2e7adc60-c8fc-4cba-a9e9-5d99a589f9b3','fd3a44e7-97a6-4a95-8999-ea918e44e1de',64,57,23,0,'2025-02-23 12:39:21.090','2025-03-05 14:40:18.879','910426934-1-2'),
('2e7cc6de-48c8-4f85-894d-e99a76d1d236','9affc7b1-09c4-4e84-b48b-d0c117c421b0',136,101,19,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-28'),
('2e81c192-9376-4a96-809c-6987f25f0370','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-22'),
('2e81fdf6-46cd-4312-96f2-145074e6fb61','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.952','223734808-1-117'),
('2e85aed3-9f31-4a01-b787-d90718d2f819','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-2'),
('2e86bfab-c919-4bb9-ae64-0f9fa9ca3d5e','e0251f39-fdfb-4a10-8cd6-82c7fe45e07f',95,240,73,0,'2025-07-02 12:43:28.763','2025-07-22 10:19:20.310','319275080-1-1'),
('2e873abf-f24c-4fff-b320-6a6d84ee909a','c3322872-ddf3-4e40-b549-9fc0bcd0e3f2',96,186,65,0,'2025-09-18 15:48:34.720','2025-10-02 06:12:04.730','437101296-1-2'),
('2e884ad8-2b15-4b03-9a33-145638e52bba','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-64'),
('2e89a717-424c-43c0-af52-683ddc137630','638172c9-793e-4ec5-9ad2-cf82bf06eca7',50,77,122,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-8'),
('2e8ffab4-68c2-4688-9e38-c36ad6118cd0','9e200495-c3a8-4497-8534-ed3e925ea480',1,1,1,0,'2025-09-10 10:50:37.358','2025-09-17 17:51:20.672','531870941-1-1'),
('2e923cef-237d-4c54-a1c0-a9bcc2126666','db6038f5-6951-4cc2-bf80-1b165340ace8',93,95,80,0,'2025-07-29 12:58:40.468','2025-08-08 08:47:32.675','644644115-1-2'),
('2e92df68-8369-480b-933a-e8cc8fd7cc24','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',40,30,25,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-25'),
('2e93254c-a5df-4d41-b895-a1d504a541b2','ff41de74-17ff-4bad-989d-6f378ab50997',51,51,77,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-6'),
('2e95b1bb-b3e1-434d-afb2-ec1abf25565d','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.986','2024-05-08 21:07:25.066','745180441-1-10'),
('2e986cdb-37b4-4550-8e3d-6384815858c3','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-8'),
('2e9b89f7-f606-427c-8150-cb5e6be2043e','f0485a78-951c-4f89-bddf-b2003f0bf783',46,27,69,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-11'),
('2e9cadb2-77f5-45c0-b1ea-7fa3c50163be','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-22'),
('2e9eb33f-4d8d-49e7-8a89-27877936e4b9','5c990e83-628f-443e-afbe-ea1650122f59',210,40,12,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-2'),
('2e9f7dd9-e9f2-4b61-be56-8b27b206e959','a8240df2-bc04-464c-afdc-dd0bdbe1643d',10,63,218,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-4'),
('2ea45059-f148-4d8a-8142-112ebe68ffb5','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-3'),
('2ea658d3-5576-4bbe-8355-f0a614814c96','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,4,0,NULL,NULL,'478893710-2-11'),
('2ea71821-2dc0-4fda-b99b-1ac2e17a75e7','a7f92057-6250-4045-97ed-482e9da4c648',200,120,30,0,'2024-12-07 09:45:06.874','2024-12-10 12:36:11.155','501167444-1-4'),
('2eaaa169-fa9f-44ed-a4fa-be32fec26ef4','77cd884d-f138-4552-b446-4f7389e3ccfa',51,51,77,0,NULL,NULL,'221394764-1-1'),
('2eaceeb9-db3c-494b-8cb8-f7b8046ddcf4','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-16'),
('2eaebc63-f58c-42e9-8ba9-3caa13491cf1','37a97bfc-766a-4865-bc4c-1c02e1ff86e2',166,100,70,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-2-2'),
('2eb310f9-97a8-46c3-97fc-2f6747febc6b','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-71'),
('2eb6656f-03a0-437c-a8ca-e2b4f450f764','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-9'),
('2eb7cf22-c314-4792-8efc-8e7337ad7198','4301b768-4818-4e74-a6d0-12a33474f5c6',6,65,12,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-5'),
('2eb7d125-2fbc-45ae-81fc-e3f3313057f3','793801d4-f6c9-4e1a-9207-88bfb41fcbbc',51,51,77,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-6-1'),
('2ebc752b-b934-4ef1-80f0-9ccb263ac58e','f8845648-6347-4e46-b7f2-eb261e05cd91',75,95,55,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-8-1'),
('2ebcd91d-de0e-4127-997d-93c19367e91f','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-2'),
('2ec30aa6-6ab5-4287-98c5-eb499104541c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',97,105,4,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-8'),
('2ec30c89-8d55-45a9-a61c-2a37853cf5a0','4248435a-86e0-4cf9-9c9e-c779eca78500',58,20,136,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-4'),
('2ec68185-4ca4-4148-b577-e8b55769440f','7544d141-ad78-4111-8cf3-83517131e050',204,92,14,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.270','896155892-2-1'),
('2ec6d1e1-038e-4337-a239-f3ffd082911b','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-8'),
('2ec8c03b-76d2-4a9b-84ba-3bd2a497d4ae','5c6d6c79-765d-40aa-a4a8-a3e725f44ec3',78,53,86,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-1-1'),
('2ecc1629-3694-432c-80ab-01703535af40','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-8'),
('2ecdbef6-ed9d-47ed-aff2-5984387c6990','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-4'),
('2ece334d-67d0-46ba-84d1-6d92e664c6c6','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-38'),
('2ecf3dd4-4e58-4a31-9161-000ee6464158','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.934','221850151-2-1'),
('2ed2611e-d7cf-49f0-a058-ca14a967c28b','e8b58cc1-698b-4364-ae95-f00b90174c08',40,13,107,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-7'),
('2ed32889-89ae-4124-832c-5ea86e7c33be','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-10'),
('2ed38ccd-d04c-42a2-9bca-7da7a921404f','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.299','478479612-1-8'),
('2ed3ee80-f40d-4f32-8f73-9015405ead97','8966cba6-713b-4094-b1bc-e0e0d0f8334c',41,31,7,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-1'),
('2ed4ce31-60df-4cfa-9048-440ff0ea4dac','b2c78cf5-c58c-4553-bd14-49e83916894c',53,46,8,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-13'),
('2ed4f229-11cc-4efb-bb77-11ccc53770ab','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-32'),
('2eda42b7-54c3-407d-b442-6864fd5050da','5f740c2f-b4a8-4058-8f15-0c74025f8ecd',100,120,75,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-1-1'),
('2edd4d02-e396-47bc-9f53-05804366a1e9','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-51'),
('2edebcdb-3416-4ac0-a699-8761141ca97a','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-68'),
('2edf482c-fb54-4e81-a3e0-c1d098a30d89','99673d53-ad4d-4fc2-ad49-3653b23e8491',75,92,227,0,'2025-09-02 14:49:02.291','2025-09-12 19:46:40.785','786252388-1-2'),
('2ee3a466-89e1-49a6-9f24-f3dbf0f40a3c','2ee29e0d-5d75-451c-93a9-a55038d6d101',0,0,0,0,'2025-02-03 18:18:43.137','2025-02-14 10:41:18.327','74534951-1-2'),
('2ee5b9c6-4466-409d-bcd4-bff7bf60c77b','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.734','41256945-1-1'),
('2ee70f11-c091-4734-85f3-c23cd7aecab5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.269','2024-09-12 10:54:58.869','223337181-1-26'),
('2eefc43f-c43b-436b-916e-6bb01c270be4','d0ade823-74de-4507-8f72-ff3352af4bbf',38,12,25,0,NULL,NULL,'428407424-1-5'),
('2ef240ed-6169-4ca3-bf4b-252e9342d3bb','a4fbce4a-8063-462d-aef4-150b13a4ea25',51,51,76,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-3'),
('2ef7e999-f5ac-4a3a-9ab1-c0e1e75ef75d','ae9a9400-7a4a-46dd-bdca-d8a0d71d424d',100,20,14,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-3-2'),
('2ef943c9-c655-40af-b614-4a2eae20f578','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:44.103','248135683-1-69'),
('2efb54f0-e78f-4181-8516-24264cc2a0a0','31550c22-c059-4382-820f-6d1760b04019',0,0,0,0,NULL,NULL,'910611541-1-2'),
('2f00c247-0da6-4b96-83d6-cacf4688bcee','ce4976ba-e974-4470-8acc-c28f5a58a2e9',10,10,160,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-6-9'),
('2f04a051-8846-4509-bbad-119aa2ec9b2c','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',265,60,10,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-15'),
('2f05849d-e1c7-4d75-a6ad-ab1038b6ddca','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-15'),
('2f05c776-098a-47bc-91bf-a1e6646946e5','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-14'),
('2f064bb9-9824-4e60-b71c-0555cf2cad42','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-34'),
('2f065a45-6bdc-4d18-a563-647e95f381f3','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-1'),
('2f097f6e-a8a8-4182-8f97-7ba79634f3af','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',85,56,66,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-7'),
('2f0a7086-22c2-4c79-b03f-591df5233c8f','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-15'),
('2f0c0cc3-c582-459d-9a01-4b7b14b70bb7','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-4'),
('2f0c93c0-b46e-4f67-8cef-1bf9331d3a5e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:36.306','248284003-1-91'),
('2f0e21ae-29eb-435c-b897-e960287c1826','1ea964d7-2e9b-469f-bd3d-af7e4d9f0853',77,77,48,0,'2025-09-16 16:29:16.090','2025-10-03 14:58:06.531','478603328-2-1'),
('2f0e7da1-f55e-4724-a256-880235f543a8','7c09f776-ffb6-47c8-8828-61389547804e',80,82,73,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-22'),
('2f11b647-0908-45d4-adb1-c7fa89805169','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-37'),
('2f151126-85d9-4a78-a009-87001615e321','8c3a9387-2db4-400b-95fa-11aef6c745f6',215,64,5,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-5'),
('2f1532a1-0ee6-4636-beb9-df2ded2d1992','c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9',94,110,67,0,'2025-05-28 19:08:53.194','2025-06-06 17:37:15.490','817872283-1-4'),
('2f1796b8-1001-481d-a508-302723cbb710','0d90ef6d-e963-4a99-bbbe-e4ca67429574',25,52,223,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.982','750125400-2-10'),
('2f17c756-f860-4fdf-bbc1-1a7979ecbddd','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-8'),
('2f1857fd-cc74-4ce4-811e-93c7106238f2','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-34'),
('2f188c38-6f4e-4b39-9ff1-5d8bd62d9130','6465e1ab-9a54-436b-b6b6-782870563698',87,166,7,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-1-4'),
('2f188d05-6157-459e-961c-9677e86e80f1','b169de1e-8e76-43d6-8772-7570cfc9a15d',200,49,65,0,'2024-11-21 10:29:05.908','2024-12-15 17:40:14.800','982639053-1-1'),
('2f19f21e-4e96-4dfc-8584-3e6033d977dc','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-12'),
('2f1f89c6-7417-4705-b81b-4ffce550b275','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-135'),
('2f20d8c2-1ed3-4300-bf28-712dc7214681','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',90,200,22,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-2-5'),
('2f21c80a-65d8-48f0-83ad-66eeb61482e1','88efd6f4-86cc-4f4e-9e39-520afe44f05f',68,70,70,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-2-1'),
('2f22b9cd-67d3-419b-888b-f00f9a249ae1','7ac04c84-54ce-46a6-9898-1b08419392f9',96,93,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-1'),
('2f240962-024d-4b7a-a96c-4c40a2c852c8','9547b618-8081-409b-9076-efd2957a9e1c',60,240,98,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-2-3'),
('2f25cdc1-8b47-4218-be4c-34294702ec47','9608c74b-ee00-4cb4-8b27-84c43649d0c7',101,237,70,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-3-2'),
('2f2b9d4b-1362-4b8b-85d3-dd531403332e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-114'),
('2f2bbf1a-bb93-4d74-bb93-8478af50976e','58fe4c33-e268-41af-9163-4863a4d27452',105,72,42,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-3'),
('2f2e62b9-8b89-4fd6-8b0b-d9f17d4cc364','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-68'),
('2f2f1e1e-2087-4837-9eec-fe83407847bc','0365be5a-cb94-4992-8e8d-cb784930b2e7',100,125,80,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-2'),
('2f30a070-5f81-4233-890e-b2b002fece67','b2d959b5-31fa-467a-8e1f-cefc0166a15f',217,102,28,0,'2025-07-12 09:20:41.418','2025-07-22 13:22:57.741','803961620-1-1'),
('2f30c53d-fd0f-4f23-864b-46fd816449ae','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-25'),
('2f322cdc-8884-4472-98ac-10fbe901a670','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-235'),
('2f3444d5-f782-4214-a8de-fa82949050e6','7dcc2170-0fdb-4643-987a-624cc3fb4320',51,51,77,0,'2025-10-25 08:59:26.342',NULL,'221651438-2-1'),
('2f355d29-6695-42a5-b1fd-c3e9d8343fcb','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.826','598876994-1-2'),
('2f3622fb-cf10-4968-b92e-0075aa1d86cb','b63291e7-9a9c-4942-9e5c-792e1279180f',2,82,206,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-7'),
('2f3c373d-46a1-4574-9397-f015b437d638','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',73,56,100,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-4'),
('2f3c740b-dfc7-4d70-8fd0-76cb26f23681','2dde6fa9-86f5-4072-acf6-d126395be890',51,203,24,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-3'),
('2f3d616f-9dda-4991-b4d1-f2c6b8e6e999','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-114'),
('2f41bd88-ab13-4b82-aea0-d310033ebb7a','b31ae358-4cb7-4d8a-bac0-dff0a61dcd39',230,100,80,0,'2024-12-07 09:32:22.880','2024-12-18 16:37:07.052','910950688-1-2'),
('2f4307b2-842f-4a92-a89d-3d127860af3a','ff5b1597-758b-485a-b299-4127569206b1',46,17,18,0,NULL,NULL,'750939503-1-1'),
('2f432274-89d4-4568-8c2c-2c0fcbdb9115','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-4'),
('2f440b94-c9e5-4d36-9703-09b15782f384','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',150,60,10,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-16'),
('2f465dab-f618-4440-9646-7f1f72b181ab','aaaf255b-d973-4737-94d9-7642e86777f3',105,50,20,0,'2025-01-11 15:20:17.289','2025-01-19 14:51:56.907','517205467-1-2'),
('2f46babc-9e20-4904-b209-fdf29a137283','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-3'),
('2f4ab8e2-6e8c-4d2b-b04b-ea9eeeabd3e5','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-78'),
('2f4afba0-b5a7-48aa-b090-82d2938e8590','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-6'),
('2f4c3b77-c1e4-46f1-b5c0-e00e44480ce8','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:35.645','248284003-1-129'),
('2f4eee71-cf25-4dbb-a4e4-29f76e42eb33','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-5'),
('2f5027a9-d156-488a-9a59-806881b7a727','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,8,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-26'),
('2f53ce67-cb9f-4a3b-9e2c-4250047a71d2','2c42d6f3-528d-4738-9714-38cf6e6c758a',0,0,0,0,'2025-01-20 11:21:30.744','2025-01-28 20:44:59.603','231216092-1-1'),
('2f55bc9c-581d-4ef1-be58-179aa32b21a5','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-39'),
('2f55f965-9c7e-423c-a46d-8b9cff51bc2e','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-37'),
('2f588d11-18b9-40d7-a2dc-7f7e15a4bc4f','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-1'),
('2f5ce837-22c0-4785-ae8a-ccfc223fca36','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:44.697','248135683-1-96'),
('2f5f899e-8087-4e9e-807e-8cec411c58ea','7f086af4-7f94-4b2a-8e93-97605ab16c61',133,85,22,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.686','162733891-1-6'),
('2f5fc486-1013-4071-9cbc-1e50d7180e90','be9c2c0d-546b-4955-8cae-7e59b8476d8a',157,13,96,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-3-1'),
('2f5fc4d3-029c-4134-a7bf-249315020d9a','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-3'),
('2f6588cb-c676-40d6-bd18-3f0e8dd67f0c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-23'),
('2f68ba7c-9690-4836-ba10-4b59adaf1ff5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-156'),
('2f6d0aab-8ef4-4c11-98db-a6bac041b749','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-12'),
('2f6f5400-b45c-4149-a333-42f0758b6d9b','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',34,25,245,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-3'),
('2f6f5b86-a957-4dae-a04a-60721ab948eb','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-12'),
('2f70046e-b023-4cc5-b5d3-ac1a60e930f7','220fed8f-f96e-4af5-867b-ac05d11bda6f',43,24,221,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.766','478507488-1-27'),
('2f719c03-d455-4ce2-9bf4-e026e6bafb33','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-15'),
('2f7291ab-154d-4cb9-a880-dc961f7acc75','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.052','2025-10-16 08:43:48.733','412467921-1-22'),
('2f74c54d-9623-465a-ad25-d7639961c328','46d1512a-2bfb-476d-a224-9390f3e194f2',201,31,3,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.420','412395565-1-8'),
('2f777acc-7a1b-4ed6-9efc-16bab3f99e82','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',40,25,13,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-7'),
('2f78c3dd-b089-4b75-9e9e-a8c8a3ff4bba','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-4'),
('2f7a3330-9957-4414-a8fa-04a2701782fb','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-65'),
('2f7d6c35-9fa0-4c4e-a1e7-fac0cb207fbb','fe4e104d-d113-4a98-bb0f-d5b0a3408cb4',97,7,169,0,'2025-10-20 07:18:16.076',NULL,'644664237-4-1'),
('2f81693f-5165-4840-aacd-2bca3cea4435','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.575','16334418-1-92'),
('2f81d023-7d18-4f7b-9c9f-f7efb61f75be','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.907','412757132-1-12'),
('2f83cef5-019b-4486-93ef-aacb3085548c','0263f7f0-6c1a-4beb-ab78-25d69142647c',45,16,67,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-8'),
('2f83d5f9-51b9-4ea6-b376-e0760b04855d','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-19'),
('2f85ec39-e8d4-4d87-beee-041e94a017d4','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-11'),
('2f8a003b-f678-4bde-bc17-008ebb453cb7','886e0e1a-c599-47ba-bacc-c329212cc55b',7,55,163,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.557','478730420-1-7'),
('2f8e5a42-f7ec-46e7-b3e3-117ce3715271','b6bcdb5c-cba8-4b50-81aa-7aa8e9eb573e',10,18,28,0,'2025-08-14 08:21:39.050','2025-08-21 08:14:06.251','334206952-1-2'),
('2f93899c-c2e8-4e79-9074-674b0f55fdb1','e5137001-c514-4561-be61-64e08396d4dd',0,0,0,0,NULL,NULL,'614941926-11-1'),
('2f98e5e6-a46b-4e55-99e7-3297b70455b6','78b92a41-f41a-4dfa-97b0-48b35908cf44',57,76,101,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-5'),
('2f98f851-7948-4743-af0e-b9dd3c3de5a4','cde2b645-2cf4-4ca6-9d59-ef733217c501',96,96,17,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-5'),
('2f99e0c6-1a12-44f7-ac0d-54b89c0ef7e6','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-14'),
('2f9c264e-bfbb-4a2f-9710-28a9999b1194','1a93f0e7-35b1-4d7d-8e2c-3a74dc8ac1d8',40,85,77,0,NULL,NULL,'59898054-1-1'),
('2f9d4cae-2122-4bb8-8bb2-6106591bd0fa','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',56,66,14,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-3'),
('2f9d9a25-0297-48cb-a899-42a92fb91048','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-15'),
('2f9ebd62-38f7-45b5-a33c-e9e4e68f1313','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:45.371','248135683-1-165'),
('2f9effd5-442e-42fc-b186-73180a78e4d0','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-8'),
('2fa00625-c817-44c7-a2be-5a7e375139d2','8966cba6-713b-4094-b1bc-e0e0d0f8334c',137,65,100,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-3'),
('2fa05444-8cfe-434e-a648-152506dbc1f3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-56'),
('2fa1c7d3-b872-4dad-aec0-5d71c377386d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-124'),
('2fa223b3-6499-4f19-b1d1-8f2f0172a521','15ff9118-18a9-4a0a-a3cc-31c9c550751c',0,0,0,0,'2024-11-25 08:28:36.848','2024-12-05 16:18:18.434','449454395-1-3'),
('2fa84bde-d801-4b37-98e0-1cf61d5e5fac','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.156','223254418-1-84'),
('2faaa911-6c5f-41a3-86fd-63366e4b38d1','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-1'),
('2fab7ff9-032d-46bb-a8e1-5f7f09c28d7c','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-14'),
('2facc983-607a-4136-8fab-8e991f7023b4','606b177a-2516-4ee8-8a97-7fcc5be07957',51,51,77,0,'2025-03-27 08:02:55.282','2025-04-08 15:36:58.886','644877146-1-5'),
('2faccebc-efb0-4c36-a735-121d77254378','6facbe4f-6c71-450d-841e-ed1b4a628d10',0,0,0,0,'2025-03-24 16:02:08.953','2025-04-01 09:23:37.885','478168461-1-1'),
('2fafa799-c6c4-4674-908a-f8f81d5cc380','1a031080-df55-4ad4-b405-0eda0f569cfe',15,15,160,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-1-3'),
('2fb5ae41-1653-4824-acf6-6f5979c1c2a7','d16c32bd-befe-46f6-b24e-45b67ff18710',0,0,0,0,'2024-10-17 11:51:16.607','2024-10-26 07:31:21.787','858124295-1-1'),
('2fb5f79d-bc6a-4466-9b24-0ebf12ebbb92','d83c40d1-4df5-4c97-bc83-28837db95b2b',65,36,18,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-14'),
('2fb6755f-ef63-4b0d-9a6e-05a26a6f661f','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-24'),
('2fb6c126-b9eb-498c-83e4-bfdcb254f1dc','b4035fe5-266c-42fa-8614-d1d476373fac',51,51,77,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-2-1'),
('2fb6e103-46b1-42c4-a793-957b5998d8ab','525a1f01-65a7-452a-a205-48074153f5d1',51,51,77,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-3-2'),
('2fc07bcc-a51b-451a-9d62-8908a7b1927a','217455d9-4668-4753-ad89-562e50f0bc65',101,56,82,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.063','505948491-2-3'),
('2fc08ee2-25d0-4090-9b95-f9213ab274f1','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-5'),
('2fc1571d-bbfb-4ad5-bb1d-0478cd1f6762','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-10'),
('2fc26e72-a498-4232-88d9-34a110a8c633','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-5'),
('2fc315bc-6ec3-4112-ae99-82667f500132','ab17d88e-ebaf-47c0-8475-f212320a77fa',43,78,43,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-3-1'),
('2fc5309d-74fe-42bb-96bb-632f968b9df5','29aa9d56-5356-45de-aaf2-7a6c4a5f2bc2',97,7,204,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-1-3'),
('2fc743fa-f805-409b-acec-5ca952f10b1d','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-27'),
('2fc88b7c-2ae4-467a-94bc-6073ed9ba885','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-46'),
('2fc8f368-0dad-44ab-a96e-528c937aec3f','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',92,51,29,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-7'),
('2fcbfd65-f071-4022-8fb1-5d89e1c2ba81','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-103'),
('2fccf503-668d-43cb-ad9f-bd76afb853d8','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-39'),
('2fcdeab1-f2cf-41f6-bcda-3c4640945d8c','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-10'),
('2fd0a8b8-41b2-4263-b99c-61a24d95d4f6','a039de33-a0b0-4710-a90b-a2a55d34c7e4',70,97,253,0,'2025-05-28 19:09:15.404','2025-06-04 07:30:22.164','371193272-1-3'),
('2fd0f74e-fe96-4e4a-b132-6f61cb16ca11','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-106'),
('2fd1e9a6-4d5a-49d4-b0cc-d3409a5e3091','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-13'),
('2fd382da-ff9f-4620-bd45-4663ad87b2e7','e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81',44,43,79,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.567','745761149-4-1'),
('2fd47234-2e25-4fa5-897d-622a225578d3','da295a9b-a45c-4b30-875f-e960d7ce19ff',55,65,78,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-29-1'),
('2fd51be2-9620-4a36-b917-eeb7795272ec','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:40.838','248135683-2-58'),
('2fd565b5-7ccc-4729-b4fb-b5c61150640f','a56038e7-2267-4938-bfc2-ec55e9b729c7',42,63,12,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-1-1'),
('2fd59e34-88e1-470d-b7e7-d0557c930732','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-9'),
('2fd63f2d-e395-4819-b2e0-a3a09f251501','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-23'),
('2fd68295-5055-4aa2-ba89-32c44ebf341c','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-2'),
('2fd745dd-8824-4e1c-ad30-72caa9b8d831','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',2,79,210,0,NULL,NULL,'47816855-2-19'),
('2fdc4480-6796-45b2-9710-ab02cef73932','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.815','2025-07-03 11:20:12.742','223422825-2-14'),
('2fddd181-a1d0-4438-9377-367a77d520fe','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',49,9,59,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-3'),
('2fdf02a0-3f73-44d1-91b8-0e8c16d66927','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-12'),
('2fdf9fdd-a8ff-4e09-8948-de6f66e78ec3','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-26'),
('2fe29da6-e9f0-447f-a09a-a7c5e02c2f90','cbf68d77-8563-4d27-83fa-23f08cf671b7',60,120,7,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-2-4'),
('2fe43654-a4dd-438a-abe9-06fb5cc7c1d5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-17'),
('2fe6e090-db5f-4a73-9d1b-d3d8c2db67d3','497cac99-1969-4f4b-b126-72d742c06b8a',67,145,280,0,'2025-09-10 10:50:50.685','2025-09-20 18:55:42.175','920610594-1-1'),
('2fe70832-fe62-4243-bd0b-13488e6fa7db','1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be',51,51,77,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-1-1'),
('2fe78550-37d2-4eb9-aafd-0c6c3aabffca','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:45.974','248135683-1-207'),
('2fe80cbb-2c5c-4e1d-b23d-24a3fcf2badf','b2c78cf5-c58c-4553-bd14-49e83916894c',202,102,10,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-28'),
('2fe86d79-d2c0-4815-8acf-494c8bd156d8','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-2'),
('2fec86fd-588c-43b2-b149-89a273d52d14','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-3'),
('2fedcdc9-d56c-4e7f-87d6-8b016b94b90f','0bb931f8-128e-493c-ae94-68675d2e4db0',90,200,25,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-1-2'),
('2fedd413-532e-426c-8936-6682b1854c19','8d71467a-cada-42f2-a7b0-5507af419d94',76,56,102,0,NULL,NULL,'59898054-3-1'),
('2fee1be8-c7e9-4090-898d-645647747ae4','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-2'),
('2fee2ed7-c255-43d8-b3ae-1abc2eb73775','b3f001df-2f2a-4776-a3b3-cdfa1a154531',230,95,85,0,'2025-01-22 09:07:20.142','2025-01-30 09:59:36.200','910796066-1-1'),
('2feebcaf-1aa4-46ba-978e-22d84027ade4','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-1'),
('2fef825a-ea76-4406-91e6-99f4d8993295','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-2'),
('2ff1eb9f-96e5-4966-b604-481f2fa45381','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-9'),
('2ff2c0bd-0dc7-4b86-ad81-f7d52db185e5','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-3'),
('2ff34791-04cb-411d-aebb-0033e3ed80ba','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-3'),
('2ff47710-aa53-4a12-bc7d-e20398d8f10d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.908','2025-10-05 12:15:06.057','223441694-1-23'),
('2ff5225e-56a2-4f6f-9dfd-a34565274075','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-253'),
('2ff62fe3-9d60-4480-bcdc-20c291d8274c','733d947b-4145-4080-8edd-87c33f93d60e',102,95,60,0,'2025-10-20 07:18:07.350',NULL,'59856960-1-4'),
('2ff72ad4-02b1-4b74-81c5-3530602a8c0f','1a33dee0-770c-42ca-b23f-f3750f630a74',90,60,65,0,'2024-11-25 08:29:12.551','2024-12-03 10:00:08.315','976779460-1-4'),
('2ff8e0e2-ff55-4470-8093-f5fec5c0fba6','426edf33-c45d-4446-b38c-af56172acc0a',95,65,233,0,'2025-02-13 20:43:33.268','2025-02-25 17:03:41.023','449448008-1-5'),
('2ffa98a2-4029-4976-bac3-e9753579d75e','afd7f71c-d1fc-484f-b72d-f986503df4f7',92,73,65,0,NULL,NULL,'703266692-1-9'),
('2ffcac8a-d944-4522-9abb-d63ebfd8dc0d','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-7'),
('2ffd2b72-d7b6-409c-804b-dbc6163f5df3','b754c285-0492-447c-9c5d-43237c2e442e',245,60,97,0,'2025-01-11 15:20:21.030','2025-01-19 14:51:43.991','982817887-2-2'),
('2fff5e1a-94c6-492d-bad8-c3c28cda10eb','a455ba66-b417-4781-a6f2-6fce1b8bab23',16,19,22,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-6'),
('2fff6821-e7dc-4691-8857-f9019c4cfcbb','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-29'),
('30027f65-4fde-468d-99f9-1c746a42530a','75966646-88d8-46f2-843a-dd1b1be9bed1',0,0,0,0,NULL,NULL,'478912846-1-3'),
('30041496-5266-4556-a1dc-28bcd1d4233d','b4183fd9-691f-4e50-aa3e-1185b3e78cff',66,24,25,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-10'),
('300758d5-d35a-4181-b2eb-9789f162d183','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-4'),
('3007fe18-461b-4714-a04d-428c5c611390','19c6a32c-4384-451a-aaa5-dfc264ab827b',82,5,207,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.340','517895646-1-3'),
('300c48a3-7226-445f-889a-e1bb1055b2c1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-75'),
('300e98d7-ff10-4fc2-9e38-e1e570fea7f7','7fee7544-b544-4623-b92a-7a80075349b3',123,100,60,0,NULL,NULL,'478514572-1-2'),
('301067cf-c6fa-4dc0-b0b6-517dcb5b11a5','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-3'),
('30149825-826f-4660-8829-da94430ef888','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-10'),
('30152641-2b2a-4ac0-83c7-608692f483a4','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-27'),
('30165237-52f6-4e7d-86c4-46a2aa32e1a3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-54'),
('301712a8-9196-4016-b7e2-0efce6d79429','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-25'),
('3017485a-f92e-43f9-898d-6c2eccb9ecdc','a38571d1-22df-46b1-bb70-46d8dc6a5d8d',236,70,98,0,'2025-09-02 11:49:01.550','2025-09-12 19:46:35.543','278583277-1-1'),
('3021524f-5aa3-41ba-80d7-78c10c62e536','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-7'),
('3026334c-a9b9-40f0-9e3c-f47b13f25313','70295e99-ecec-4498-943e-fb5826d388c5',75,90,74,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-3'),
('30263f29-3f6e-42c8-b788-8fe990fdc3bc','f88c3e53-b711-4bcb-aa3d-9543580054cd',49,141,12,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-20'),
('3026f02c-848b-44e0-917b-3de554096e64','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-31'),
('302aeb5e-e743-433b-8e76-cef51d489f09','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-20'),
('302b6a06-a081-4be4-9e30-7017df2e72e2','3c6c148b-48b9-42f5-a540-77250f81fc68',90,90,65,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.172','976369647-1-1'),
('3030e368-6b5d-42ba-9aec-6f760e30b281','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-30'),
('30335e45-2a07-4d92-b5d6-32eda3b3f380','304740fa-6d96-4ea0-a997-094361062796',28,200,100,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-2'),
('3033f4cb-d14a-4c0d-a931-f1eba356689f','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.065',NULL,'51557557-1-7'),
('303a9109-0c93-484b-a6c5-1e8763abd328','82c2f7e6-7d17-4f07-ab88-13d96b343121',123,90,65,0,'2025-10-08 17:44:14.745','2025-10-20 06:32:43.863','644651781-1-1'),
('30427cb0-4d6c-423c-b8d9-09416af1d5fe','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-13'),
('3042893b-29b9-4b24-afa7-aa8f9ac39c9d','443d1fa9-d29f-4aae-96b8-c6565b068779',82,82,8,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-1-3'),
('3042f4f0-106b-4650-94b3-36668fdcef60','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-104'),
('3043607a-3f29-4843-9b49-f22b9e68d1cc','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.248','478449275-1-43'),
('304563b6-a188-4978-936d-1930dc2f7db4','19c6a32c-4384-451a-aaa5-dfc264ab827b',99,17,174,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.340','517895646-1-4'),
('304b2d28-756d-4f81-9341-129a095d5d5e','0bafd109-abe8-42a8-b45f-d5053eae132b',20,20,122,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-2-1'),
('304fb2a2-282e-4ef1-b4c2-aaf8b6240866','f0c2df6e-cc70-47df-9954-4a2f43a9ef6f',51,51,76,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-3-1'),
('3052853d-72d7-4c7a-b7e6-749d023a5158','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',180,200,32,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-2'),
('30550783-2a4a-4365-b83c-67764b9c3aac','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.919','2025-09-25 06:55:47.157','223254418-1-163'),
('30557c45-a5db-4601-aa17-10c5cc0fa1ff','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-26'),
('305ac802-f550-402f-9e9b-a1683d18f29c','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-78'),
('305b546c-a009-4cc2-a002-34dfc2b0289f','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-13'),
('305c2b65-6e52-49af-bfc5-f899e1f56529','ad0413bc-5657-4c6d-8881-5531603a28a8',97,97,78,0,NULL,NULL,'598891928-2-1'),
('305cddce-7df7-419f-bada-4c5bc535936b','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-2-16'),
('305dddd4-d1e5-4c28-aa32-a4afdaf3a1a9','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-59'),
('305e09d4-b299-4994-a972-8ec410ae651d','365e39ee-f73c-4477-836f-a2b97cf0bbad',8,100,182,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-1-1'),
('305fb9b3-2e0c-47a9-b935-885906ee5de2','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-105'),
('3061fe11-2535-418b-b9bc-a41bf6ef762b','e0251f39-fdfb-4a10-8cd6-82c7fe45e07f',80,88,75,0,'2025-07-02 12:43:28.763','2025-07-22 10:19:20.310','319275080-1-3'),
('3063fcec-d7e6-4c05-a9d6-837c44afc417','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-24'),
('3066dfba-0be0-46fb-9534-246ca5105543','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-51'),
('3069737c-f5e6-4049-a4d9-79d044698211','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-6'),
('306a0001-e7dc-4c4b-a408-965c51853816','107fdebc-b61e-48d1-9c8f-84ffa2681dcd',70,100,65,0,'2024-11-21 10:29:00.131','2024-12-15 18:03:37.216','982692076-1-2'),
('306dfc95-fc48-4271-8adb-29c75f8bc501','d0ade823-74de-4507-8f72-ff3352af4bbf',205,79,6,0,NULL,NULL,'428407424-1-11'),
('306e7f07-61f2-49f5-9690-b1cc815b09d1','86a60767-7224-490d-9d65-38533eedf53b',95,100,65,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-4-1'),
('306eaf6a-0e93-41b5-a5af-c0da83338390','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',48,48,6,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-4'),
('306ebd70-06a7-4162-afd3-aafd8b222155','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-8'),
('3070d928-1cc0-4b1a-b1b6-122d5d7ce5a6','03f429da-4d99-4f35-ad4c-9889f0fb87ee',128,128,7,0,'2025-10-02 11:20:44.115','2025-10-17 06:17:01.820','221364325-1-1'),
('30713b1d-a3b5-4d31-ae25-f8678713905c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-143'),
('30772527-cd75-4cb7-8540-201fea294b1a','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-6'),
('3077b90f-d870-4408-bd2e-cea46bd3969a','e0c79669-21b8-48a9-8bfe-2f9b19cb872b',100,72,54,0,NULL,NULL,'644563405-5-1'),
('307bdd39-01a0-43b3-b7cd-f8e182f14797','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-2'),
('307c5691-6f65-45cf-8dfa-c1c1e34b6575','c98f6188-56c5-4870-be97-be71cf95f62e',230,65,95,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-42'),
('307c643c-9e8b-4a66-b1e0-cca918f355f7','6818bb9a-7b67-4c84-b61d-688315d496d3',77,24,159,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-2-1'),
('307d0701-f2b1-47cb-b346-a10c565e91dc','f5fbba45-31ba-45f1-8947-4cb66498f8a7',86,87,6,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-3-1'),
('307d9dd8-3593-407f-aa05-5f5385e3d1ab','c900d790-eeff-48b9-9f2b-48972c98ac32',93,10,95,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-4'),
('30820063-cef3-4010-af0f-94c948990f30','1d79ff49-df16-4b4f-a525-50167665ac1d',54,207,47,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.145','976126416-1-1'),
('3082a857-2825-4d3c-a604-06836881ef9a','86e5956d-750b-4aa3-8f00-53e2db7b9f65',80,80,4,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-7'),
('3084d688-e546-4886-87fa-7fb8cef2a9cb','88efd6f4-86cc-4f4e-9e39-520afe44f05f',95,67,235,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-2-2'),
('30860141-88fa-4a7b-b326-97704837f6fb','6d6387c1-6c6d-4152-b1f6-64a868887602',111,110,6,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-5-1'),
('3086a6ef-b133-4205-b3ab-121c01661d91','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-53'),
('3087cc3f-9522-41f5-8957-266595737f0f','6ec8ebba-fdf6-42c8-aceb-e6a01c76790d',75,182,95,0,'2025-06-21 04:33:53.244','2025-06-29 18:30:40.604','745343811-1-4'),
('308afdf7-5710-46e6-af02-4fd0d5db12f4','a5da465a-92e9-41c8-8e37-0c57b478a8fc',71,126,209,0,NULL,NULL,'920752929-1-1'),
('308cbe15-0b2b-4a53-b349-b5856f070fbd','03ad506f-f86b-4dbc-952f-52b01e2467fa',200,90,29,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-16'),
('308d1b7f-be73-458c-977e-d65213e4ac18','4abcae6f-afac-43a1-83d3-65715ac410f6',0,0,0,0,'2025-02-18 16:37:10.835','2025-02-27 06:36:36.211','478101413-1-1'),
('308d8ded-fe50-4966-a5ea-0a53f790bba9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-154'),
('308f33bd-3aa8-4646-8718-64f7aef1d216','b4526735-5641-4f8e-b544-78126f7e6078',0,0,0,0,'2025-04-11 13:41:53.749','2025-04-23 17:45:34.745','478138166-1-1'),
('30918e40-a564-4e69-9378-722a99618d2e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-87'),
('30954e40-4d95-49e0-9c47-44943e6a1563','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-69'),
('30965478-b483-4f07-8542-992567803c7b','2547c819-405b-4d9a-a0a4-ad76db169d46',75,95,109,0,'2025-09-18 15:49:10.658','2025-09-27 10:27:57.874','598148104-1-3'),
('3096e379-0e9e-480c-921e-bf679a80677e','f71120f0-3dab-49a4-9919-47f817fb8a68',100,70,70,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-4'),
('3096e825-d517-4b44-b936-f4cf698a1337','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-27'),
('30976137-e6ce-4f73-b89e-ccb2dd9707d7','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-21'),
('3097e6b6-9238-4108-9b2c-bb12f6d60038','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-79'),
('3098acbd-7bad-4716-9a77-65453b49cee7','6226bd29-5d06-4891-9ca0-310e4356024f',57,83,102,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-4'),
('309ac4c6-e0fe-4fd4-b24b-9636c5894721','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.577','735785649-1-2'),
('30a0d31f-fb91-4dd4-af3b-c605857943ef','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-162'),
('30a695df-f836-49b5-94aa-4066d39f9459','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-13'),
('30aab95b-3512-48d8-b18d-6d55ea83df4d','acf4e1e8-26b1-4665-86d6-6ba473790be4',100,230,70,0,'2025-03-13 12:21:20.698','2025-03-23 16:16:07.965','910948770-1-2'),
('30ab64c7-882b-4dd9-b989-8b59d25b1046','d2f8d58d-42ad-4705-b1e8-a666af927fa3',43,24,222,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-7'),
('30ad30ec-37b4-4417-987d-f98590836d61','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-74'),
('30ad965e-eb93-4a01-8591-455bc74bf7ca','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-32'),
('30af7d40-c196-4703-8f52-c1a69c5b7228','e54150ef-c37e-434a-b822-2ec057a11543',97,94,60,0,NULL,NULL,'745189997-4-4'),
('30b057a9-5eea-4ad1-a5ee-64aa78156096','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:34.668','248284003-1-126'),
('30b09daf-43bb-483d-bee1-322184ab26cb','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-20'),
('30b46882-452d-4042-80dc-198ed18413e9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:46.611','248135683-1-175'),
('30b6aca9-a194-402b-98f5-a19b4aade39a','7884afbb-70fb-4cb7-a993-b67b9605608b',110,57,82,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-7-2'),
('30b91fb1-4f9f-4e16-a919-3024e209fe74','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-197'),
('30bf0d51-d31f-4d38-9753-ddb99f2bdf1a','15d74154-5fd4-4173-9e76-f45c4027e0c0',0,0,0,0,'2025-05-28 19:09:10.544','2025-06-05 12:35:12.685','644860505-1-1'),
('30bfe5ab-229c-435b-b9d1-b958f259c072','8e39c973-c918-4ebc-bd24-9e7fc61de240',230,70,100,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-1'),
('30c0d092-2af7-4077-89b9-87590ead2a3a','e945c68f-2934-46f3-87b9-fdd1b2658111',51,51,77,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-5-1'),
('30c3847e-e863-4280-89d4-dd59f496c93d','dd8fae0b-e8d9-477c-8204-5d1b7cf83f03',0,0,0,0,'2025-03-27 15:05:13.892','2025-04-08 15:34:45.071','478697529-1-2'),
('30c5cc01-bdad-4b99-8104-129b22a1384e','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-17'),
('30d03a90-9135-4efb-9878-79260f383289','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-19'),
('30d3216e-4937-44b7-978d-14688753b720','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-5'),
('30d3d4bf-52bd-4225-b27c-cbd950d661de','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-4'),
('30d95380-52ce-4aa1-be28-7639f15c5677','44f4434a-fe1d-497d-a075-b27d62c676b7',53,85,100,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-9-1'),
('30dbd8be-bafa-4fa1-b53d-0eeba18098ea','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-18'),
('30e02250-8557-446e-884f-04583d750873','03ad506f-f86b-4dbc-952f-52b01e2467fa',150,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-17'),
('30e12f98-0cd8-4bba-8c6b-73d23be4e2dc','6ec87888-8b87-4bf1-adae-d5b6742225d9',91,101,5,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-9'),
('30e40804-7276-47ba-bb4c-cac189368ef1','b1412704-b0a3-458a-a5d4-ae0a217b9f18',30,200,180,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-6'),
('30e53873-c575-4b0c-ad4e-2b80ba7dcb3c','54d8cca4-55bb-4e17-bfbe-85fc6529db13',0,0,0,0,'2025-09-02 14:48:53.640','2025-09-12 06:56:40.399','011222896-1-1'),
('30e5aa02-9074-4b94-ad55-ffc9f8afee46','0cc39437-8ee1-47ea-87c2-b9fe770c2259',63,60,92,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-5'),
('30e89a01-8a5f-4e29-9d37-d25b0dd7d542','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-30'),
('30e94940-c7c8-40e0-8a46-f1cd0ad0360c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-20'),
('30ec8fc6-a079-4468-81d4-be911ef347a9','5e372d49-2995-43b9-8175-cfd3bd1f09b8',103,123,67,0,NULL,NULL,'37198203-1-3'),
('30f90eca-a724-4391-988e-9657d66308f7','f52b306c-3f53-46f5-8bed-8c43d5e71dd8',60,60,90,0,'2025-07-02 12:43:29.741','2025-07-21 18:56:17.647','644377995-5-3'),
('30f96dc6-3142-496b-b5d3-300b574a4961','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',41,41,77,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-2-4'),
('30fa46d6-406d-43d7-b666-b05f3aa7b3dd','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:47.621','248135683-1-206'),
('30fadeb9-9d84-4c5c-8f8e-5c455f952af4','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-4'),
('30fd602f-34f9-4407-9838-a19f9c313101','bcbbd32d-478e-47f4-97ba-0a391ba7a4db',9,126,126,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-2-2'),
('30fda883-4918-4654-882d-570d0578d991','54f49f0e-3750-48ef-be0e-ae8f72989d98',0,0,0,0,'2024-09-19 18:27:15.225','2024-09-28 12:18:48.557','982542299-1-1'),
('30ffbaa7-716e-4230-b07d-87e600ea0ea5','c68da11e-578e-4c6c-8afa-d56edaa715f4',40,32,31,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-4-3'),
('31006b53-064d-47d1-bdf6-223427c48914','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-5'),
('3101c13e-67b5-4b58-9d6c-a73820676f79','fd565af1-de3d-4ec4-a771-b7c0b8a28e6e',35,35,185,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-4-1'),
('31024f4d-16a9-48a9-bf7e-6a304d23a3aa','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-5-3'),
('31056305-ac7f-4eac-b30c-d3b2495327a7','52dd3c5a-4e7b-470b-aca6-03bb538c76cf',55,97,106,0,'2025-09-11 06:34:14.467','2025-09-17 16:03:39.710','437442386-1-2'),
('31067e1c-645f-4a0a-844c-5c0b175ed53d','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-22'),
('310b5a92-3255-47f2-8e61-94982547eefe','c9afd200-5d14-4c16-816c-282d1b5697af',0,0,0,0,NULL,NULL,'371747945-2-1'),
('310bd642-d253-4aaf-877d-a1656bba9603','b3fb10c2-6a6c-41fc-a7eb-4920e6e670be',0,0,0,0,'2024-05-10 18:49:56.164','2024-06-04 14:25:40.001','478958320-1-4'),
('310bef0e-1ac8-4249-bac7-4ef473366f18','145acb30-1c39-4fcb-b4a1-ded11d8b7586',70,96,96,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-3'),
('310c95a5-0aa2-418e-a8e5-b4585e31d440','47019764-af76-445a-be8b-30f53c6195d6',0,0,0,0,'2024-10-23 14:11:51.627','2024-11-04 08:40:42.087','478941206-1-2'),
('310d24fc-5f37-45ac-b5e2-56d5483c7e75','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-14'),
('311139c4-7547-45ad-b61f-c4d6556dd659','15c51264-1610-44fe-b2b3-1798f688353e',57,82,101,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-1-1'),
('31143cf4-9150-429d-8ebb-e93177286fff','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-2'),
('31185afa-87f1-416b-bb5b-425fa3979a54','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-27'),
('3118e324-1e5f-405e-91fc-61e29d0f460c','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-9'),
('311d3f7b-09cb-4978-b01b-420392a4f84f','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.935','2024-10-06 13:26:07.139','163229349-1-10'),
('311daab6-9bd6-48a0-831f-01bac555c536','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-18'),
('312057f8-f795-4d96-83cb-fc9e3db96440','68112cc1-ad84-4c05-8982-53d277841de8',0,0,0,0,'2025-05-09 18:43:42.169','2025-05-22 15:22:34.432','478278253-1-4'),
('3124d28c-455a-4aed-9190-ef6bf9d1609d','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-28'),
('312e576c-1714-43a6-a7e9-93ad34473ab1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-93'),
('312ea64f-d46a-4de8-953e-03b9a8fac439','16bf292d-cc10-4c60-8e1b-eb5020fba975',0,0,0,0,'2025-04-15 16:01:51.538','2025-04-25 09:51:53.683','786276080-1-1'),
('31343925-b2aa-4647-8896-9e90732ac26c','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-4'),
('3138429b-2669-4e7d-ad54-3954577acf0c','9a74cdae-acbf-459b-836a-29ba929835b2',214,89,81,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-12'),
('313883ba-999f-4288-8ce8-c60db37a45e4','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-2'),
('313946c4-edff-43e4-97e7-e34f7e15dfa2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-134'),
('313aac36-5218-424c-9ea2-d68a4a1ea962','e027c393-a1fe-4d6f-b265-19223be40e91',41,41,60,0,'2025-01-26 10:54:22.648','2025-02-10 14:16:21.329','221390997-3-1'),
('31411e1c-a6ef-4604-901e-aca98defe0ee','ddfe7d66-74b7-4072-ba98-b8104a9db616',38,38,76,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-4-1'),
('31488eb5-a346-40b7-982f-79f61f0111d0','e9c9f5aa-6590-4069-abfa-cfff80831cb3',230,100,70,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-2-1'),
('314b77cf-23fb-4ccc-baba-ed00715b3e43','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',75,45,65,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-23'),
('314d40d9-8288-408d-a1a7-170e9cbed775','6098bfd6-9976-47f8-a799-df79295948c1',52,12,87,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-3'),
('3155a073-4fb4-45c9-99e9-8291f5489016','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-2'),
('3156111d-fc39-429a-bcc4-9d2a50231025','1d0eb855-07f2-4c64-93d6-62c6de7fce20',240,85,100,0,'2025-07-17 09:33:44.114','2025-07-22 21:00:41.428','910684336-1-2'),
('31570944-9c3f-40ea-8c6c-3ccf6d31dffd','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-8'),
('31573a66-e879-43d8-b8d0-9136d9950c14','173da7e9-9f08-4f80-bd79-f624a6af761d',123,16,236,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-1'),
('315895ca-7988-4a2f-8a20-e1b05ef6bfb2','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-19'),
('3161ec85-dc7d-4b99-a417-0da715889c08','ed9c894e-c70c-4612-9f50-d24ca23310a5',104,7,184,0,'2025-07-29 12:58:22.159','2025-08-11 12:32:33.741','437584936-5-1'),
('3161ef7c-6982-40aa-9a27-ca0eaf0ef318','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:37.466','248284003-1-65'),
('3161f4ba-693e-4af8-b4a5-bf342a962caa','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-7'),
('3164cb33-c735-4005-8008-dbff810d06fc','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-1'),
('316c74b4-05a1-45ac-a97f-2752427f9cd6','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:39.515','248284003-1-197'),
('316d4f5e-c644-40d4-ac99-808ee2d9b22b','6fcd8160-ca06-46ab-a691-51de5c394793',53,20,70,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-7'),
('316eafa8-02be-4ec5-a62b-a9c0cb9de173','635711a9-ff02-49d9-9082-6c29292a043a',29,29,55,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-1'),
('31775001-3650-4390-8318-79892a5432ee','e54055a2-3c9c-4738-a808-7a4a31877ef1',214,45,11,0,'2024-10-17 13:41:02.666','2024-10-24 01:09:07.003','42837513-1-10'),
('317cd580-f458-4364-becc-02aeec9141dd','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-1'),
('317d5be7-06c7-4e9c-acfa-181573ce88ba','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-27'),
('3181874e-b3df-4425-aef8-81bbb08ec15b','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-2'),
('3181ee56-424a-4047-87b3-b71919ad36d3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-255'),
('3181f16d-50bb-4c87-a2c1-9e29bfe67a3b','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-3'),
('31855145-e96d-493c-a6ec-be34089d56d4','4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869',100,94,65,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-1-3'),
('3189770b-dc4d-4ac0-9641-dbbd6076adad','536180b1-1c3f-4444-a507-049eec9ae541',26,60,218,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-1-6'),
('318c1ebd-2a9d-4f09-973f-5d4dfab9c273','10b7216f-e5f9-4de9-b36d-c05d44e9b3a3',57,76,101,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-1-1'),
('31907564-e9af-4d8e-96a1-92a683422b55','fa1b43bd-5ac8-4622-adbd-464a8c925f9d',50,50,94,0,NULL,NULL,'7455365-1-1'),
('31920b78-f2f8-453b-9413-30c2e2ef89f7','a29c5d4e-5806-445a-b142-4d6423d465a6',51,51,77,0,'2025-06-27 17:12:18.861','2025-07-08 11:48:36.117','221368256-1-2'),
('319310f9-ed84-4970-97a0-5f71cea0cbdf','02c1cca2-b7ec-44f3-90c7-3e935d2e255f',110,100,76,0,'2025-02-20 12:15:12.935','2025-02-28 12:04:36.224','478142620-1-5'),
('3197dfaa-2128-449a-abba-6d50d91f8179','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-18'),
('319cae2d-b177-4b6e-886e-947e8582d43d','9f1f4a12-045f-486d-8d26-612451204bcf',45,15,55,0,NULL,NULL,'745995046-4-1'),
('319f0a65-830f-4749-8c5d-725dd98b7ff5','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-15'),
('31a15c0c-6618-40b4-9e30-a1f83eae15cb','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-25'),
('31a439a2-fb0d-4af5-90b1-f227f802e22f','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',47,45,25,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-7'),
('31a4a878-4691-45fb-acda-30197050059d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-11'),
('31a8bce1-f6b3-48aa-81b1-8fa3a4146d5a','3735c345-c4d0-40fc-afc7-359f15617a16',100,120,70,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-6'),
('31aa4bac-6f67-45d3-90a9-7f1c628d0d49','a135c145-15f3-450a-819b-e82b427bc978',76,100,52,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-4'),
('31aa5c24-b392-4cd8-9742-5d544824b3dd','7884afbb-70fb-4cb7-a993-b67b9605608b',110,57,82,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-7-3'),
('31aa611e-e912-45b6-89b9-7de0c0f3ff3e','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.376','2025-01-07 19:30:46.444','478681299-1-45'),
('31aa67e7-04a1-4ec3-a933-392bb69887ae','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-4'),
('31ac0dcd-4d1c-4ed5-bf27-e2656f50941b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-204'),
('31ac6751-e4c8-4a05-97b6-ef1839f6f2e0','845cd508-3836-4f7f-899b-bf28d0f90884',16,50,72,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-4'),
('31b00f50-fb9e-4e62-a91e-d1064bfdc2ed','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-7'),
('31b17026-8d53-4ad1-81dc-e041f02d6fcd','57604baf-e8cf-4035-aab3-ed4bab52522f',47,212,5,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-3'),
('31b3bb86-0bd8-4a44-aa0a-e3d0d5025c1c','cc6b5286-c3eb-44b8-8853-67815b2524ff',160,90,75,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-3-1'),
('31b755e6-97d8-48aa-8e8d-e717373ed445','d8896502-ee1b-4969-b484-104bc8965f47',207,95,62,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-1'),
('31b866c2-66bd-4a5e-ad2b-4c7829c747f8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-68'),
('31baff6c-2d47-4ced-80e3-27d3e4b93b27','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-118'),
('31bd7d3e-4b9e-47a3-9809-5dcc07ebd4d4','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-9'),
('31bfba45-161c-43c2-afd5-58cd0b7f33ff','ee6fb030-92cf-478c-a63e-a4a35c648758',28,30,12,0,'2025-08-25 12:31:59.341','2025-08-30 18:25:27.869','437539983-1-2'),
('31c1b9fc-68f0-4195-a486-4e76df7e2116','ec07c178-2173-4880-986b-3c0707f84e91',13,212,101,0,'2025-09-12 17:16:36.666','2025-09-25 14:05:07.223','644423895-1-1'),
('31c6235b-1be9-4cee-8031-09fe662426dc','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.550','2025-03-08 13:57:44.556','221554711-1-5'),
('31c96032-1398-4846-b6fb-67aa1e65e0de','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-5'),
('31c98e12-2941-428d-b76d-4f6473e61ec0','702c1aff-1a98-44f0-9dce-efad71572432',15,66,8,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-23'),
('31cc5004-004d-43d9-8ce7-cc17aa816152','7ba47169-83ca-49a6-98fc-6ef1a1990eac',55,50,28,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-7'),
('31cc7197-fded-477c-9163-9d203b1a87da','5e1b92c5-0a78-4535-ae47-a667ddc85987',79,132,7,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-1-2'),
('31ccddd6-8f9c-4667-ad82-ead102dd2930','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.473','2024-06-22 23:00:04.354','44831715-1-1'),
('31cf1401-2469-42eb-ab39-38dc17ca87b7','3987bcda-6531-4738-8815-187fd84bf71c',44,44,32,0,'2024-09-10 10:47:13.056','2024-09-16 17:09:39.158','75056602-1-5'),
('31cf2729-b6ff-416c-aabe-0ac316b992a7','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-9'),
('31d10e78-c56e-4897-a367-3cc3cb92126f','6b64d1e9-ff42-44d9-84a9-30cf22738927',42,83,5,0,'2025-03-13 12:21:43.380','2025-03-20 18:08:22.870','127241743-1-5'),
('31d1159f-127c-4e57-b441-9ac874ffb925','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',37,26,52,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-22'),
('31d1c13d-a3b7-4721-bd11-d9f68d082fbe','0cc39437-8ee1-47ea-87c2-b9fe770c2259',50,55,133,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-6'),
('31d203a7-e730-4167-b59b-b7571daaa068','aed57dfb-3aa2-4f6a-849f-51424a18ca86',50,50,6,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-9'),
('31d5fbd8-ef9e-490c-9117-31b61775803a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-2'),
('31d7b69b-39dc-4326-8e78-6973565a6131','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',17,42,60,0,NULL,NULL,'478893710-2-7'),
('31d94b35-a37e-4ee8-90ad-0e87b7f7cf0d','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-7'),
('31dc98f9-2883-4256-bea8-2cdaf0b50131','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-7'),
('31de9b34-4338-4f12-94e9-bd21064097c0','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-6'),
('31e34485-1a0f-444e-b736-029815d206bd','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-3'),
('31e34a11-94a4-4d00-b532-3b49058b9af7','39e88a96-6243-4852-a38c-9846154a9d45',30,42,110,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-1-1'),
('31e7e4b8-ee76-466a-a0e4-a4b7449026ba','6fcd8160-ca06-46ab-a691-51de5c394793',61,8,185,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-8'),
('31e8accb-aed3-4865-90ac-dca0ac5bdae0','9568170e-e378-4da9-b37b-d9254993edbd',85,65,80,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-4-1'),
('31eab20f-5ba8-45a8-94b3-83fce167ca09','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-9'),
('31ed215c-b770-4451-b81f-590ad4410355','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-102'),
('31ed9512-6201-400c-988c-9f3596df525c','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-48'),
('31ef572e-14a4-4f59-a0e6-fa702a6a6d5a','c1a31a07-5113-4703-99ff-14d4a90ef1ba',30,11,180,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-5'),
('31f65a66-9b76-4bff-8c44-3c4e2b617d15','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-21'),
('31f76bb8-3fcf-4bd5-8d58-ae064825db31','8173a4b9-15fd-4a7c-89f4-c9f0540e10aa',74,115,8,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-4-1'),
('31f7d255-8b15-47f3-9e4e-f8b89be640b7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-28'),
('31f8ff25-a49f-4634-b2bc-4e4473bd7c5e','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-5'),
('31fb7036-2a31-402b-963d-d39e383d3849','4aed1165-da71-460e-ad92-7bbd8bca0bad',0,0,0,0,'2024-05-08 18:43:41.271','2024-05-17 09:44:35.365','982653067-1-3'),
('31fc05c1-7f2e-4cb2-b893-487eead072e8','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-63'),
('3201c890-07d9-4770-abf3-0c411ac197d3','fe32e52e-e41e-4849-a30d-cfd7abd60e35',0,0,0,0,'2025-01-20 11:21:31.902','2025-01-28 20:44:54.688','231717770-1-3'),
('3207b8fc-43e6-405b-8848-d1621894454b','fb58f438-30e4-4e01-af6e-6378e27a11fe',70,80,35,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-4'),
('3208d20a-c003-4325-9460-8af3a94cf490','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-1'),
('3208dbb4-a7ca-4600-ab9a-cd4b9a3751af','bd176b24-f129-40d4-8c33-6b35eded0fad',188,124,20,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-14'),
('320a170e-d5dd-4274-8c1f-09eeced77e4a','9affc7b1-09c4-4e84-b48b-d0c117c421b0',202,90,26,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-24'),
('320b5c3b-6309-4caa-8c11-3479bf1b4229','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-250'),
('320d4aa8-45cb-4e70-b3af-d1baf36c5c55','29cc8746-fe8c-48c8-bc02-cdff22be5576',58,48,47,0,'2025-08-07 16:52:26.586','2025-08-21 21:29:39.744','982484679-1-4'),
('320dbd38-8b79-4efd-9885-46c592a2e339','a41cc165-9ba9-48b1-bec3-06ff1f0e0fa1',95,70,230,0,'2025-01-26 10:54:44.964','2025-02-07 11:19:08.733','428519862-1-2'),
('320f6ad3-e377-4e36-8abd-a439491e5cfc','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-2'),
('32129ea3-b0ce-4308-a697-ad78954bc8fc','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-2'),
('3212c88c-0865-487c-be58-d55d49561863','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-11'),
('32170d34-97bb-459e-b12b-ecb9c6ddec5c','808a4f1b-793f-4a15-808d-00c26a26c166',230,60,5,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-8'),
('321ac660-b94b-45d7-854b-2e74a3316ccd','97ed1835-e7ce-4f2f-9729-01e5df10301a',105,75,230,0,NULL,NULL,'745995046-3-1'),
('321bfe24-b990-41b5-956d-81e1d19527cf','499d8a44-50f7-4dcc-9922-380deefb0ce0',160,200,34,0,'2025-10-25 08:59:25.499',NULL,'478544570-1-1'),
('321c97ab-0348-4c1b-82fd-38f76f2f34f5','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.679','2025-10-17 06:13:07.090','221801165-1-4'),
('321d244f-27ad-4dda-91be-bcca1d58130b','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-51'),
('321eccc4-fa52-4142-9596-a2dff6570e18','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-6'),
('3220b082-226b-421f-a80a-bb9669d15cf7','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.385','248425122-1-2'),
('3220c961-a624-40c9-851b-e88105932330','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-167'),
('32221923-5e80-433d-88e7-abe2b6c9e40f','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.555','734955536-1-2'),
('32282a82-673e-4df5-b7f7-3a9a70457b57','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-13'),
('3229b590-8e32-4615-b330-b7a167d6b736','6ca0cbb5-8b45-46fa-9e41-2771ad9644cf',92,93,65,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-2-2'),
('3229e024-131d-4e26-a3a6-337c3c8d7e64','5c487410-f906-4e14-a077-9f060026719e',135,40,25,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.267','703183067-1-3'),
('322ad442-9955-4096-861b-163cf800df24','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-5'),
('3232dfec-44f3-4e2a-89cd-ef3a9bc6addb','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-96'),
('32355b53-21ef-468e-886d-fa771c654380','d47d3ae7-7352-4137-a656-596680802fe5',82,100,56,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-5-2'),
('323710e8-3e11-4a81-bb71-d7a05281156f','795d2eda-013a-4fd7-b48b-148a85caef26',115,155,75,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-2'),
('32378925-7bd0-4f35-b662-63a654791494','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-81'),
('3237eb76-625c-4fa5-9b65-11ad3be5aeda','e9511c57-a306-4e1e-8a16-bbe40431ae5c',117,81,56,0,'2024-11-21 10:29:20.456','2024-12-13 14:13:36.041','449108957-1-2'),
('323cc9e8-76b1-43f8-9086-6d72131d2d13','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-19'),
('323e444f-54f7-4125-99a7-89a5e2231e48','5e048b22-34db-4d5f-9247-201f664d4e80',98,98,82,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-3-1'),
('323f5e45-637b-40d6-b1ae-795655ec7e4a','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-75'),
('32403b49-b13c-48d9-8f68-9d250cc403a0','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-6'),
('32415566-3bdf-4db2-8ce8-92249c6f5a9c','a0a4be0b-f2b9-429e-92f5-4a10e11028b5',125,26,70,0,'2025-01-06 13:08:16.787','2025-01-10 09:45:15.067','910405441-1-5'),
('32419b55-99cf-4ec3-9418-55449f2824e6','7defd633-f7ab-424d-8029-028d1b045752',67,136,7,0,NULL,NULL,'501119446-1-21'),
('3242d868-d76b-425a-a9b3-e2df73653582','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-130'),
('32434736-7b29-4fd7-8763-26fccb40cc2e','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-4'),
('3244bf52-e807-4907-b527-e41b0d589bdb','44f4434a-fe1d-497d-a075-b27d62c676b7',53,85,100,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-9-2'),
('3246724e-8dd5-4c9e-8d92-37f5035a3de0','c1a31a07-5113-4703-99ff-14d4a90ef1ba',5,50,20,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-18'),
('324ac5a0-42b6-4a5b-8289-c9761f699f31','766da20f-af1c-47a1-a9d1-61d9a22c827f',75,53,101,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.877','613809111-1-9'),
('324cb910-9a9a-41e4-b16b-2a9f495eb326','3ba27633-a526-475c-9e24-fa446137f6ce',90,80,75,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-2-1'),
('324ebe57-e320-4044-b2ed-64b8df108e1b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-25'),
('324fbf7c-ca2e-41b5-83dd-43509316d430','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-10'),
('324fed5b-2108-4beb-a15a-c9be83df53bf','ed134a02-1a23-450f-b473-72a8e8cd94a9',0,0,0,0,'2025-03-24 16:01:57.284','2025-04-02 18:56:20.188','745724851-1-4'),
('3250cb3e-f56c-4007-aa88-3a7398fb3d22','7012b87f-b3b2-45ee-a901-be79ec1f67d9',51,51,77,0,NULL,NULL,'221407742-1-2'),
('3253966a-9dcf-477a-9911-b170a781f17f','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-16'),
('32545a57-da4f-4ec7-8942-99b86ba7d9e0','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.340','2025-08-02 17:36:11.137','598668612-2-4'),
('32584095-be84-4f7e-89ed-f3e7bbf82df9','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-21'),
('32590598-d17d-4ab4-ba80-20c2a7ca3aaf','22399f1c-a89f-4887-a03f-c112be6c99b0',86,86,9,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-5'),
('325cbb76-1469-4e14-beee-9b50d0688c93','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-12'),
('32602d91-e64e-42b6-b8b2-40a5b08c8694','e6705ae4-c86e-41f9-94cd-841708902923',53,53,53,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-6-1'),
('3261d916-8671-4566-af00-a9d8d5488485','f7fec661-6f5f-45d8-8d10-18c1dad72513',75,70,45,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.162','428704278-2-5'),
('32621b37-87f3-48d7-9551-e1ece0bc3e5d','05af1df3-9a36-4be2-8bd1-773d59e1605a',128,17,81,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-8'),
('3267e3ad-b503-4825-8551-74051ee50b62','a1cd1c1a-930b-4527-9f89-812389e0038c',93,7,95,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-3-2'),
('3267f451-72cd-49d0-b828-b9a0aadc5fdc','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-1'),
('326b417a-c877-4cdc-810b-8b761faa9e48','8625abf2-719d-4d7f-b206-16948b318b8b',125,65,65,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-3'),
('326cd3d5-49bb-4012-949e-0b853d3bfd30','49c326ab-5b3b-49e7-a781-28760709b5be',115,32,19,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-15'),
('32707ed9-1efa-48d0-b999-1a7c5bed4b6c','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-84'),
('327a9bb8-a8d8-461e-8ec4-1c56ec66d640','c7fce8c7-acfd-4c12-8db5-81618a4b211d',78,208,1,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-14'),
('327f2073-cab8-4262-99d6-12a66f3e5574','eebe5042-de81-4afa-b4a6-4517e07ad579',105,70,120,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-2'),
('328028a8-59e9-46dc-8870-78dce65b6452','a89f5cb0-4036-440c-b388-8ef641d6f3b9',71,106,53,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-14'),
('3283f40c-3b2e-4195-acdb-614d2e811cee','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-6'),
('32892778-3068-4fe8-b563-1295e5f3688a','1d4d748c-8215-4966-9c01-ecb14e0334f4',0,0,0,0,'2025-02-15 13:31:37.842','2025-02-28 17:30:36.364','478885043-1-1'),
('328a5927-92bd-4c50-bc0c-4afe8ab01a0f','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-4'),
('328c3bb6-05c9-485c-9100-01b3a2df9cf0','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-42'),
('328de3cc-6b37-408d-bfdb-fa93ba3d2405','9114ad70-d53e-4d1f-89c7-30585d0a43de',198,176,3,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-13'),
('3292089e-216a-4f21-b285-42968e193a21','e178636b-b1d9-4260-aa1b-879946fa7f5d',65,4,220,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.152','745177264-4-3'),
('3297197a-612d-4004-a249-be98137fbe8e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-212'),
('329859b5-d28e-4cf6-92d4-997422d2d1af','29faaf4b-90ea-4ca7-90cd-3532202e6c83',180,200,33,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-2-2'),
('32990991-b966-4c6d-a5f3-cb7b50fc6fdf','a7adbd9e-6dc8-4e83-8103-f0614c771f77',40,30,31,0,'2025-07-12 09:20:31.828','2025-07-23 06:22:15.027','817838997-1-2'),
('329a209e-0783-4e6f-92e5-29afd996f2d0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-76'),
('329bac09-bfa9-4a82-905b-9c81fb44b9ca','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-11'),
('329cb996-3faf-4e0a-9c46-bbe857edc27f','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-2'),
('329e5bc5-4e0e-4371-8178-23ce6b5b17c4','bea7bfd4-c724-4bd1-9622-cc671ef16009',0,0,0,0,'2024-07-30 14:58:36.700','2024-08-05 20:20:51.622','412330197-1-1'),
('32a7974d-38f3-42aa-a342-b04f3a2a99b8','197b43de-1f57-4e3a-b18a-a54d1c950856',50,56,6,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-1-1'),
('32adffa1-d001-4274-8d40-49a740d78f1b','382f1f7d-825f-4f4a-9f87-598a8856a6ac',0,0,0,0,'2024-05-08 18:43:12.410','2024-05-23 08:25:18.039','745439695-1-3'),
('32aea9bd-0824-4edc-ac0d-c801c0a7d915','82ac2d58-053d-41f5-a402-9275c56203f9',41,11,107,0,NULL,NULL,'428172853-4-7'),
('32b0cb7c-8e23-49b9-b498-2710b5360126','c784a732-36c9-47dc-809e-6b6a917e74dc',57,81,105,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-1-2'),
('32b21ea3-b447-4f67-ae69-d7f245eb8b6b','ebb978cd-58c7-4bbd-8316-d3317348da3c',85,95,65,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-2-4'),
('32b3296f-4b4b-43a8-ac1c-5de5a04d266d','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-38'),
('32b35c86-b5dd-4898-b753-58bd1e8bc6ae','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-9'),
('32b7c49a-582c-4e45-9cf1-850ea5fb3711','b44449c8-5efa-4085-bd2d-0a3594587af9',32,9,81,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-8'),
('32b936e1-1177-4122-b770-a1c93affcbcb','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,215,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-10'),
('32beaf9f-6df3-4fdc-878a-ca3c0f0f8573','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-59'),
('32bf829a-8895-4e20-ac9b-1724018b1a79','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-3'),
('32c00619-be4d-4a2c-94b6-b524775406ad','138edf36-d166-4335-8560-d9873886e31c',60,9,215,0,NULL,NULL,'745189997-1-3'),
('32c3fe74-548f-478a-8645-a87254c644ed','b78519ec-4b79-400f-a709-a1f09256d30d',160,200,29,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-33'),
('32c691ef-e79e-4957-8afd-084dcc8a520a','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-3'),
('32c6f4eb-66d0-4c7e-9f67-7396a65c71c0','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',79,79,5,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-4'),
('32c7e100-75ac-43f5-8a7f-73d59d9ea614','f0485a78-951c-4f89-bddf-b2003f0bf783',8,88,128,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-13'),
('32d04708-0b39-4d9c-8c8e-f2f978239cc0','546ad3d0-25c2-43dd-9443-e48b8e5b6530',192,30,20,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-38'),
('32d4e1de-8214-465e-8c17-7d58c28e069a','70c34137-1e24-4496-a1ad-0465a945d558',65,90,170,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.646','598263441-3-1'),
('32d87031-f83c-4a9d-a1d1-70dfd6a5df5c','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-4'),
('32db493c-20cd-4f69-a4ad-bc0e37fa7e45','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-164'),
('32e1ac6f-2ffe-4d67-bddb-dea01e28a82b','edef2f29-fe9b-4fa0-8465-53614e2f2468',123,69,101,0,NULL,NULL,'478412191-3-6'),
('32e42609-c06f-4384-bcc8-d6ffa29a9991','359880a3-777e-425a-a9fb-c44790c1fdd7',95,65,120,0,NULL,NULL,'570265257-1-4'),
('32e51f68-c98f-45d7-abf9-6a0b3e5bfe17','628d9615-d14d-4eba-9099-0780016f2dec',54,55,80,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-1-1'),
('32e6809e-be15-4a51-96c8-c1b1a832db51','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-17'),
('32eae620-fd7f-4ee2-a855-4c1073cfa2ad','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-13'),
('32eb6702-2873-479e-9956-479447a14116','40a691f8-942a-4652-b0f7-9d467326f3e5',44,44,74,0,'2025-08-07 16:53:07.020','2025-08-19 14:52:22.917','371660448-1-3'),
('32ef43de-018b-42e8-a072-3375ae25f73c','afdf27e1-0689-4491-868f-ab5e614758ec',18,28,38,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-1'),
('32f13f95-d76e-45db-bf35-8cef05678c06','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-128'),
('32f3afdb-c49a-46a8-84d0-32c3b8fe1821','d0f1019a-0cb9-4fff-9f33-5af28e47634f',51,51,78,0,'2025-05-09 18:44:17.177','2025-05-19 20:26:37.031','644113100-1-1'),
('32f73539-a41b-49db-9019-dc5b138fecc2','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',123,75,13,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-8'),
('32fd21b0-f7c3-4eae-957e-8c00449dd2b5','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-133'),
('32fd9285-c792-42d1-af4a-32888cee033d','9bdf29e0-66ce-4558-9d38-95b5c9b769ec',97,187,70,0,'2025-09-26 12:39:05.490','2025-10-07 14:12:30.489','371400028-1-1'),
('32fd94aa-6095-4e99-8203-be0aafb1bfea','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-84'),
('32ffbcf5-5001-4332-a744-a138af065931','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-3'),
('3300594c-3b48-49d9-9399-8777991097e7','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-3'),
('33019f92-972d-429f-af1a-6a1eab1b8a81','ce8f4415-3b63-4fe8-a25c-9973f07651e6',83,7,173,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-5'),
('33024b49-7744-4c24-8821-1d3bf356b6fb','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-15'),
('33026af3-57a5-4c64-b00f-447a9d2ae01f','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-6'),
('33039d08-aa61-49e4-b55c-201827473d98','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-10'),
('33089858-70ac-4279-ac6b-eec1c6e67533','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',38,30,212,0,NULL,NULL,'47816855-2-9'),
('33096aa2-af8d-4bd6-886b-cbba426b2b36','c0d27879-28a1-4f95-a3fe-67eeaa327a18',81,174,36,0,NULL,NULL,'982759064-3-2'),
('3309c7fb-858a-4d99-b141-5878e2ab6b9b','af1a3f38-e83c-49d2-a38d-c1fbc58d5223',60,97,90,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-2-4'),
('330b320c-d3fe-4c35-8478-a23ee34f0b68','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-16'),
('330b393d-e45c-4e1d-8092-fbe23e8bd391','177be132-8ef4-4489-bb59-2794e3f4e826',80,125,100,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-1-4'),
('330d699e-1684-46db-b39c-935d7a012960','1fa4834f-6874-4d5a-80f2-1b8fe854abcb',122,75,4,0,'2025-07-12 09:20:25.398','2025-07-24 06:22:57.917','817918521-1-5'),
('330e89b5-28b1-49e5-bb28-45f19b5129a1','90531b95-eb66-4c07-9e68-b2c510b7b356',110,45,37,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-6'),
('330f327c-a405-40e4-a5b3-542dc209b4f3','555b2841-46e8-45eb-9191-165bb36234f5',240,70,90,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-2'),
('331166af-be83-45cc-a122-648cad19a61f','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.897','734957360-1-3'),
('33127832-0268-4d15-8932-4e0752615733','0263f7f0-6c1a-4beb-ab78-25d69142647c',95,182,13,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-9'),
('33136fc8-a60b-48c8-9786-229e50e71278','b67fa3d3-0b05-469c-a42b-d477847d9d21',25,32,24,0,'2025-09-12 14:16:54.076','2025-09-24 14:32:37.478','531893295-1-4'),
('3314423d-f7b8-485a-b923-3e01572bc444','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-150'),
('331738fa-b823-4657-af59-8d721be7e91a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-136'),
('3317d6f7-c395-4884-8731-8358f36ed3f4','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',85,59,41,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-2'),
('331ab4ac-5cc1-4945-a18c-b391f6436e39','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-101'),
('331acf88-76f7-4b0f-95c5-e6d85246200e','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.867','412346704-1-49'),
('331c1a1a-5659-4ce2-9e14-68b67ca40e96','259a72a2-bf47-453f-a1f2-67b32a430a12',94,85,212,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-2-3'),
('331ea761-1099-46bc-8e05-ab15c6e5e3e3','e7f31a78-648d-4a5e-9111-1bf7db38dd79',210,53,67,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-8'),
('3322bfcc-035d-42c7-b132-634db5433a54','025b9500-3972-468d-bbaf-e0261595a84d',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.385','478957028-1-1'),
('332328dc-33af-46c7-aab3-2f369a4b80dc','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-17'),
('33279d28-7253-43d6-8d54-275b03d507e9','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-20'),
('332898b0-ced8-4a5d-9886-2cae38643000','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-146'),
('332c18b6-3a02-436d-b5eb-3c930bb5fb4c','e6cd7c35-daff-4ce2-a38e-7b089abac876',0,0,0,0,'2025-09-02 14:48:51.471','2025-09-12 06:56:06.375','644424764-2-2'),
('3330f782-02cf-4544-adba-0d5bbd5d6a5b','cf3cac0e-39dd-4100-a9ee-9ff081b7f99b',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-2-1'),
('3333a9f4-52e1-41b9-adee-d6598dbdedf2','01a94a2e-0aac-4423-a8d4-df98bf7e514a',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.098','42892944-1-1'),
('333bf64e-fbb7-47a2-b2c0-8aa3ec5bf9eb','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-31'),
('333eac3e-6902-42e7-962e-d307db64181d','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-3'),
('33432b1c-3ea4-43d9-8e3a-6257abf9df07','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-9'),
('33440f24-7bca-4a95-a7c6-bd7bcb0002c7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-24'),
('3347581c-6c46-47ae-899e-b15aa24ae5ce','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',157,97,70,0,'2024-10-02 09:26:32.554','2024-10-10 16:31:34.970','428736949-1-3'),
('334a0212-f5d5-40bf-9396-046c4ace7873','796fef16-71d1-4946-b8ba-54f687adf598',240,92,65,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-5'),
('334b746c-e932-41b7-8624-a131190fb094','03f3236c-f2ae-4e6e-afe1-dbad801907b2',55,43,81,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-1-2'),
('334b9107-7161-4804-9885-f7bf78c34039','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-8'),
('33502f09-fc22-486b-95e5-62008bedc240','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-20'),
('3350d20b-e6c1-4108-9008-19728c00773c','798dd250-3594-4da1-8def-ce51d07ef0ef',65,100,72,0,NULL,NULL,'745249761-3-3'),
('33539776-3d69-4e8d-b86e-2cb977b41bcc','9e55f6ba-9fbd-408f-8f31-c85b9997fd4b',97,67,169,0,NULL,NULL,'371364319-2-2'),
('3354d30e-217e-4d00-99bb-b5e297c0ef8a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-85'),
('335e739f-abfa-48ab-9b9e-375b0bf9a894','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-2'),
('33608441-7d63-4ccb-a27e-c35a581a95ec','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-18'),
('33646a80-1ac0-4b1b-90c1-5e36509f95e3','de440f55-a69c-4eb1-b8c9-629c405b795d',116,16,210,0,'2025-10-25 08:59:01.028',NULL,'515973668-1-1'),
('33652d40-9b6a-414c-9a84-b47a249df5f2','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-4'),
('33654948-8597-4cb0-9a19-1883c7a2c2b6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-7'),
('3368cf0c-7134-49e1-8337-c7c100f18bf6','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-12'),
('336b0c54-3b21-4c52-94a8-265ec9d4512f','e110e2a5-8fc4-41d8-85e2-8eeeedf6f348',0,0,0,0,'2025-09-01 11:06:00.100','2025-09-08 14:12:35.867','59840179-1-2'),
('336bb937-1ef0-4b2d-9260-291fdf055b97','532dcdc4-aacc-4c9a-9207-a316ea09350e',0,0,0,0,'2024-12-07 09:32:24.377','2024-12-18 16:37:02.165','735173063-1-2'),
('33715516-f21b-4c02-9c54-ca2a1c7c3c4f','8ceabc6f-ce46-40c7-8fcc-4d00d4a393f1',100,200,7,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-2-1'),
('337196b4-2fe5-44e8-9f12-aecf110776bd','e9511c57-a306-4e1e-8a16-bbe40431ae5c',117,81,56,0,'2024-11-21 10:29:20.456','2024-12-13 14:13:36.041','449108957-1-3'),
('33728a30-2c7d-4967-b883-3612a0f1592f','a6b7e463-b550-4e80-81cf-84b6fe9fd920',206,97,70,0,NULL,NULL,'371118280-1-4'),
('3372f66b-ebd4-4480-89b0-74aeaa918f5c','c57b0a67-4926-4770-8317-0fdee56c0abc',0,0,0,0,'2025-01-26 10:54:17.305','2025-02-10 14:16:49.589','248746531-1-3'),
('337372ce-0c84-47d9-b53b-9904700f3d15','243bf136-94ff-4e73-8eaf-8fc7da0321d5',46,75,29,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-1'),
('33743974-b38f-4c2b-b6ab-b791e5388413','3fbef21f-32ef-4868-925f-a3a2c46dae90',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.957','745717474-1-1'),
('3374804f-c0b2-48ca-91c5-31d2e476d23f','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',76,57,102,0,NULL,NULL,'808443666-1-6'),
('3378e238-4c4c-4ec0-80c3-909a7f366095','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',75,75,85,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.496','982490890-1-7'),
('337ae78a-c2fc-4c0c-83cd-bd4b7af5c94d','8b0faffd-49d2-436c-acda-c8b006f7cc05',0,0,0,0,'2025-02-23 12:39:25.741','2025-03-04 20:47:52.542','745687103-1-4'),
('337af671-5d01-4739-835e-bf697c879a95','fbe21725-aa89-4d56-9467-9cb01a9ccd14',51,40,50,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-2'),
('337cd511-9ccb-48ec-b43f-add1ac2803e6','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.952','223734808-1-4'),
('337e4e41-8239-4792-9ce6-78f9a55d85d7','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-40'),
('3380e141-25b6-476b-b8ba-b55dda4c6d67','af69c5a3-87d3-4548-a650-720b69a4fc69',41,13,77,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-19'),
('3380ef93-ce53-4196-b7d2-6f58f7a6c5bc','a7c0e479-2722-40ba-bd18-c64a1b76d170',85,95,70,0,'2025-10-22 13:07:10.734',NULL,'011766113-3-1'),
('3382ff77-7164-4372-9a55-d32e3e9c4c58','1d0eb855-07f2-4c64-93d6-62c6de7fce20',240,85,100,0,'2025-07-17 09:33:44.114','2025-07-22 21:00:41.428','910684336-1-1'),
('33841b6f-75e2-44bb-9ce4-826c8742af15','5201addd-e2f2-4f82-93e3-b6be743edbf7',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-3-1'),
('3385b56c-85f6-4891-aff1-1ac7aa5da132','01445163-8215-4106-bdba-4d0bf73930fe',96,94,70,0,'2024-08-21 14:52:33.316','2024-09-02 08:33:41.727','614462377-1-1'),
('338620fe-8451-4dd3-8d04-641f5d9c8ea1','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-5'),
('33870646-1d33-42d9-8320-464d37578684','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-3'),
('338df4de-9341-4d60-a58c-4c4f3403de46','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-29'),
('338ed2fc-205a-4261-be86-279b6c001c14','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-18'),
('338f5d11-2a25-4eaa-8782-dfcb28a6979a','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-3'),
('33900707-e6aa-4aa6-9c7e-49c29f783c68','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-2'),
('33945de8-d08c-4e87-a357-49384e09b316','90f573db-bf35-4042-9450-88ca0e789403',96,100,70,0,'2025-10-22 13:07:00.774',NULL,'515829047-2-3'),
('3395a1af-f3b3-4ce4-ab2a-086127e5197a','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-12'),
('339c1330-7852-41eb-8a12-824f839af0a7','05250dd0-c37f-4c20-872c-06cdf609c03d',195,70,92,0,'2024-08-31 13:26:30.884','2024-09-09 15:17:41.175','982545187-1-2'),
('339de5a6-ee53-4f47-a6e8-a68462093945','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-82'),
('339fa90f-4e44-42f5-b543-c52851532e11','091fc5f3-cafb-4a56-8101-89c4a22e01b6',0,0,0,0,'2025-02-23 12:38:58.756','2025-03-08 13:58:12.078','517291063-1-3'),
('33a00ee7-e7ce-4bd4-8db9-b534d43d8360','7bd64728-38dd-4554-a901-c9cd5700a0c6',147,65,90,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-2-2'),
('33a80112-8d5e-49c0-b165-04bb166ab401','a5506c59-0e9f-48a6-9b69-13a5163cf994',54,29,17,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-3'),
('33a86bbe-1556-4492-b9c1-745520c798a1','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-10'),
('33ac7e1e-1cbc-4bcd-a5d4-e8cfe46e9c5a','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-29'),
('33ade10a-977b-4a9f-8a10-2f558325cc3d','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',200,90,28,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-3'),
('33b015c3-f6ef-4547-8c06-ddb0f8b32ed2','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-9'),
('33b2b337-f205-4011-a05c-ac31d36f8b17','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:48.364','248135683-1-229'),
('33b35ac0-250d-4226-ae71-630a7dc38ff1','7f827719-d0a9-4910-9aef-532cd3731df7',51,51,70,0,NULL,NULL,'745995046-2-1'),
('33b58f37-63c4-4062-974b-442929f215d8','58fe4c33-e268-41af-9163-4863a4d27452',180,95,9,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-4'),
('33b5a679-41bd-4b3a-acbc-33c5edcf63c9','841f7f01-a7cc-440b-859e-dea7f085dd74',157,16,96,0,'2024-12-28 21:42:19.778','2025-01-07 17:28:32.755','755919446-1-11'),
('33b88a24-babc-412a-94ea-035972020e75','bae4c977-9759-44fc-bcaf-f9d3042c9468',60,60,40,0,NULL,NULL,'745197948-1-1'),
('33b8ee86-6534-412a-ba84-a96a6af77285','2ae0945f-d21b-4c2c-8cb3-1cf6a08e3c5c',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-1-1'),
('33c3a940-6736-42d2-8f6e-98d2a444cc34','fc9baf44-fed5-4b50-be95-b9964e750a79',100,115,70,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-4-2'),
('33c3d05a-59eb-464d-ad9f-78fa07ee3621','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-56'),
('33c65fb2-6107-4334-8a60-b8796972c26a','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-5'),
('33c8d092-378f-45c9-bee1-0199a5ca9a51','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-3'),
('33ccbf9e-47bd-4005-8411-05ddae6071e5','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-30'),
('33ce6df2-f059-485d-9f18-7ae280504d3a','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-4'),
('33d01c00-e3b0-49af-b9f3-8da14bcb82bf','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-7'),
('33d1af7a-b877-4e9f-95cc-749fe9621395','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-110'),
('33d55d66-3099-4ee0-bb4a-ccdf864a1122','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-30'),
('33d7710a-9a3c-4cd4-8e65-87e6cf6a945a','c9b410bf-c39f-4d56-97b6-272196df3cc6',130,50,48,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-2'),
('33da03b5-bf66-4435-9977-68e94b55970c','565f6966-f194-4d7c-8b20-64502045078d',81,4,205,0,NULL,NULL,'478350685-2-6'),
('33e101ce-b0d9-43a9-bd73-1e534f3d6147','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',65,40,16,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-28'),
('33e2e607-c971-480a-bc31-df3539ac8e43','33404392-4c1c-4173-be7f-094c12291d2c',65,180,90,0,'2025-09-01 11:06:28.489','2025-09-12 19:45:58.707','644763473-1-2'),
('33e79948-02c7-45f9-b464-23944ff48ddc','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-20'),
('33eac66f-b28e-42da-b284-570c2a057aa4','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-26'),
('33ec19ba-a321-46e5-81bd-3170c85152b6','31aeaee6-0983-4996-af4d-a37e42a0a6e6',103,220,70,0,'2025-10-20 07:18:02.414',NULL,'817682643-2-1'),
('33ecd5c1-cd27-4999-996c-6d1d36684d91','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',9,47,87,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-2'),
('33ed9dc5-bb60-470c-83fa-71e8b3ccbfef','272262da-fcbb-404e-9836-883da7bce903',54,52,41,0,'2025-05-23 14:05:13.688','2025-06-06 17:36:20.959','221997933-1-1'),
('33eebfa8-b4f5-445b-b503-14e549b7d082','1868aea0-f631-4deb-85f5-8aa25773bef0',55,90,57,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-2'),
('33ef7d38-7b15-4883-85e3-bbb3cfb8566c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-108'),
('33f8b229-f112-435d-be5b-ed9514c87201','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-142'),
('33fb5ea3-1f19-44b4-98e2-708f37fed815','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-34'),
('340064d4-9613-4e11-a81e-d4fa41b7632a','7a97860c-cf43-4a19-988d-d91cf377fd10',80,60,90,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-7-1'),
('3401fbee-7a19-455a-a21a-93ea0c5f53a2','816e932e-b5c2-4bd0-af1a-72d4dd4f7919',205,95,70,0,'2025-08-21 07:15:13.043','2025-09-03 05:44:24.021','531450758-1-1'),
('34064f3c-d6d3-4207-90a0-747bae2924bb','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.845','2024-05-21 18:45:33.371','734936220-1-2'),
('3409fb87-99e4-432b-b85f-67967788652c','9dad246b-72da-4bab-bec2-c2d038d9316f',0,0,0,0,'2025-07-02 12:43:52.562','2025-07-16 17:47:31.515','371398805-1-5'),
('340a3534-b099-47df-9156-0e0d511fd376','bf8b314b-c9bf-495a-a5d4-e261174c043d',48,105,52,0,NULL,NULL,'531481098-3-1'),
('340d7987-603a-4222-a142-49d1467ee45d','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-7'),
('340ecfec-a553-4ddf-831c-440e5ac9fe4b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-151'),
('340f9bcf-5147-4165-b9de-a9c8b2790feb','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-54'),
('341343a5-2213-4e91-818d-c4b0ecf50140','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',125,17,40,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-3'),
('34139b02-86ed-4b40-9111-1296226cde19','fc9baf44-fed5-4b50-be95-b9964e750a79',100,96,70,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-4-3'),
('34150de4-e039-4147-8d70-cd12405a7544','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-65'),
('34190a2c-d8d9-438f-8432-d09ca6458d5d','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-12'),
('341b83bb-d041-4397-96af-91d319487288','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-125'),
('341bbc6d-5920-4b3a-a36a-12eb48b19f48','7f11042b-3945-4eb3-b37e-a822894de6f5',79,214,2,0,NULL,NULL,'478777575-1-13'),
('341e6917-2f10-4195-b4ce-bdafe8ac769b','140facd2-f55a-4a12-95ae-07ab47a00128',93,8,182,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-5'),
('342023ee-a048-4a5d-b41b-30d67e9f5ea3','c8af3e69-b8dd-427a-830b-128e95991556',92,92,44,0,'2025-10-20 07:18:02.414',NULL,'817682643-6-1'),
('34210c2a-c8e8-46d3-a2fd-c9490743b335','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-21'),
('342c7848-ea8f-4baf-b140-df7aba542f1c','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-18'),
('3434a24e-9369-47c1-8900-6e07d62b1087','03bc45e5-f323-4e66-a20f-8f27132eeb63',0,0,0,0,'2025-05-16 16:33:14.360','2025-05-25 19:11:42.872','745350597-1-1'),
('34357cd5-bfbc-4b8a-92e0-bd9dbc33e276','8e39c973-c918-4ebc-bd24-9e7fc61de240',76,39,39,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-2'),
('343898db-56da-462b-bfc9-c7e09c54113f','c71fdc71-df3e-48af-9323-d534b0931ff1',33,20,210,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-4'),
('343c548d-35fb-4094-875d-5b5d73884d35','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-7'),
('343f98ba-d91c-4f91-b9d0-06c6fdd72e47','a45dfc88-22f7-4e59-99af-31e8399ea126',48,75,119,0,'2025-09-24 11:02:10.437','2025-10-05 12:15:55.032','808146332-1-1'),
('343fbdff-73e5-41f4-a0b0-10a90ad856cd','bf2fbd97-6d0f-4724-b25e-47e019854e49',35,36,215,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-7'),
('3443e7d0-3c21-4f40-b352-77b8e52c66ae','588b3fc3-de25-4a76-ab64-66572872b773',51,51,76,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-2-2'),
('34458436-7dfb-4dfd-93d2-b52e7e764983','1087586e-034f-4ec1-9828-d61ce37a1821',73,100,65,0,NULL,NULL,'478153975-1-2'),
('34488360-94b3-4c54-8f97-f3d67a551230','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-2-6'),
('344985c3-9a16-4a86-8c2b-d5a63132fc1c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-130'),
('34499a4e-09cf-40c1-ac31-daeabb33c703','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-98'),
('344a6ecb-90de-4887-bea9-8612984061d5','c90aef9b-b83f-489b-afc9-92320b0dc24c',30,80,10,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-5-2'),
('344ac813-0b39-4b35-aacf-bc2a661a6d3c','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',60,40,60,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-9'),
('344ad05c-2850-4a13-8755-3fb699e152ac','f912307c-b419-4d9c-add4-84739c9e0ea5',75,80,80,0,'2024-11-08 17:37:46.313','2024-11-22 21:22:02.722','982773684-1-2'),
('344ad52a-29b6-4235-9931-c25a87e0144d','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-4'),
('344c02ef-65f1-4927-b330-2f9ca853c70e','12470cb7-9c6d-4996-a8fe-651fcfada915',0,0,0,0,'2025-06-26 14:18:33.878','2025-06-24 13:42:34.035','478428380-1-1'),
('344da3c9-e6ed-4b04-8b23-05d073ba2f0d','80b1233b-a544-4cfa-b3c0-d621b23200b4',44,44,50,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-7'),
('344f7274-5c98-4207-8805-ec1ed23a45e0','f4f18af6-44b4-4cc2-bf41-cb9ac30bd2ea',0,0,0,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-1-3'),
('3450e889-696a-4b35-99e1-483a5f38bd39','4a5b7db2-dc5e-4f39-972a-37093584e9dc',120,27,200,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-7'),
('345232e0-6845-4a25-9961-972cb03df36d','6b29fcf3-79cd-49b9-b2fa-ca1518066509',46,6,213,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-2'),
('3454adc3-a168-4ac6-b4a8-f67168bfd34d','220fed8f-f96e-4af5-867b-ac05d11bda6f',58,24,30,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-13'),
('34576ff3-2097-44e7-a0ad-0871e8242a8d','f990d766-c4f4-4a39-9787-2739ff6edf53',0,0,0,0,NULL,NULL,'61440092-5-1'),
('34597873-e356-4889-a4ee-6df45ccba0a8','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',10,10,66,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-3'),
('345a5b34-b234-4c77-94b7-74bbae234c5b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-4'),
('345b2ad1-33c4-4256-a4be-f505ea45fc85','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-38'),
('345b5930-6b15-4726-849d-36cf8817a939','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',252,114,9,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.750','61378160-1-1'),
('34608e01-aa6e-40d1-a01c-7c4ade30558b','ad0413bc-5657-4c6d-8881-5531603a28a8',98,116,77,0,NULL,NULL,'598891928-2-2'),
('3460cf41-5708-48fe-a041-4fbd80c6d9bc','6e4789ed-c3b6-42aa-92c7-9f9bf35ae289',75,145,95,0,'2025-04-28 07:40:21.339','2025-05-10 20:12:39.533','644542202-1-2'),
('3461eec3-18f9-4abb-bbcd-856fd82353f2','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-62'),
('34632f85-4f07-4fdf-87f2-46071371cdf3','c19e66e6-a1bd-4661-913a-aea87aee7878',55,77,102,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-2-1'),
('3464957c-8dc8-477e-84e5-ef6e4c1ea344','a2d857b1-bcf6-46ee-9e87-dabcdac62719',128,128,20,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-12'),
('3467611f-f7d7-47c9-ab3d-e3dd508f5219','42207860-48dd-4778-ac1f-e702ac193305',110,58,82,0,'2024-11-21 10:29:01.504','2024-12-15 20:07:24.367','126806100-1-4'),
('346f2c13-da16-49bf-b71b-1f5476422890','1cc0aa13-016d-422e-af4e-742c14842a07',83,57,102,0,'2025-10-22 13:07:00.774',NULL,'515829047-1-2'),
('346f4c2b-61d5-417e-90f9-1cdb594ca1ff','b2344382-bf60-4678-b271-01032fee96b4',97,160,15,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-2-1'),
('34704b3d-1f67-40ef-9e9f-90c3682c393c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',58,90,13,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.825','745485271-1-28'),
('34724f91-9d4d-4185-b5b3-c6db138ecd7d','94df600c-14bc-4088-b6c5-be9e0b0223ee',0,0,0,0,'2025-01-20 11:21:18.002','2025-01-31 12:16:21.240','478300434-1-2'),
('34752ee6-60c1-4182-81c2-e4ac95733e2a','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-2'),
('347847d0-9e02-4c93-866b-3bf783927445','1219ae2a-bb83-4e56-868e-8398ae2fe1f8',206,95,65,0,'2025-08-27 19:39:59.902','2025-09-06 07:19:18.863','371413703-1-2'),
('347bd745-d8e0-4459-be56-c09bbf04a4b1','62dcad6d-7e47-4849-924b-61c791d5a98e',90,95,110,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-1-1'),
('3482284e-1080-4670-8763-ded00139a194','fbffb9d5-c273-47e9-93ff-d898c5730075',86,88,81,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-4-1'),
('3484e845-b8a1-479c-b7bf-e84081f66a64','bd5cd96b-f90b-435c-9dd2-b569c97d608c',0,0,0,0,'2025-02-27 16:45:17.909','2025-03-14 11:07:25.073','478644533-1-2'),
('34857eb8-acff-476e-bebf-46fce38485f6','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:41.912','248135683-2-51'),
('34863144-9b7e-43e3-af8f-328789905689','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-3-4'),
('34878e79-e560-4388-ae57-a4847dc269a3','635711a9-ff02-49d9-9082-6c29292a043a',51,32,75,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-2'),
('3487e2ec-cd2b-499e-b30b-e3255625d83b','f1aaaa95-2d25-4f45-b026-0107ca13ac62',80,60,60,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.456','616724751-1-1'),
('348d2996-c043-4aff-96f8-bd1a9c69c350','443751fc-e739-4620-b6a4-3b4b39d4da52',210,108,8,0,NULL,NULL,'428163052-1-5'),
('348d9364-ad86-4c1b-a02a-2d1f8619a1ef','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-18'),
('349b3d60-5340-447a-a25a-0536def4d161','ed05a300-3f7e-44c4-b954-a6eab482e5d7',33,15,28,0,'2024-11-21 10:29:18.363','2024-12-13 19:00:45.749','982549375-2-1'),
('349bf679-ff74-4002-9ead-f8e7b18336d2','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:38.166','248284003-1-29'),
('349c75e9-31b1-4c56-ab9f-5791eb03b041','da854db4-c9fe-4508-a673-92723239b20f',0,0,0,0,NULL,NULL,'412346984-2-1'),
('349e273e-a721-4f55-817f-1776dc2f5dbc','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-26'),
('34a02dd4-4048-487f-a20c-8d0888c53f6c','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-9'),
('34a08456-403d-4270-8037-38588cc51cb6','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-38'),
('34a353f8-a6af-477b-a07c-97096425c848','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-32'),
('34a3c3b6-0c29-4e5d-a90f-00c32049e05e','82c44317-84ac-4df9-8145-97abec99a444',0,0,0,0,'2024-04-08 08:57:37.142','2024-04-30 22:31:35.539','478702716-1-2'),
('34a4ce07-fb7f-4363-ab3b-7715bea03ae6','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-14'),
('34a64d0b-3758-4af5-83fc-314752868b93','b352a3c5-b9ec-4d3f-bf94-3477a4939ef8',53,75,100,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-2-1'),
('34a9850d-dca3-4708-ab10-ec7daab333ab','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-8'),
('34a9dac7-e9f5-4886-85a4-a2165de06cc7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-242'),
('34ac0747-1267-48f7-8acd-52cac02afa36','bf778fd6-13c4-47e1-9120-ab8609b766a8',96,170,7,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-4-1'),
('34adfbc8-32db-4706-9229-29121034bfd1','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.292','2024-05-23 08:25:25.619','734380041-1-10'),
('34afb803-24f5-4de8-80c4-ce459bd4c7be','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.255','163401674-1-79'),
('34b110da-e563-4069-ba47-91315f24286a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.952','223734808-1-74'),
('34b168d6-ce30-450e-b332-581dba3e2cbf','83e81175-cef2-4f5e-adbe-8ca02a747efd',57,78,101,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-6'),
('34b36122-7e1a-40b6-8cda-8c3c76e306da','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-60'),
('34b3ff2f-4382-4697-9eb1-a8df63d56cac','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-9'),
('34b659c9-dde3-4aef-81c8-747a73d7bd8f','09ec3773-11e0-4cf3-8e95-4f78f73f4e5e',74,43,44,0,'2025-04-15 16:01:55.950','2025-04-25 09:51:45.421','598127401-1-2'),
('34b90184-1205-48cd-959e-1555070f3021','c389fd95-9357-4fac-a819-48a512bbe294',84,93,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-6'),
('34bacebc-1ca1-421d-bcf3-6015c26b3c97','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-15'),
('34bb90f8-4480-4637-b601-2bcec5ba67b2','4140c031-d713-4eab-a9d3-c8f897ea7b76',75,220,95,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-1-1'),
('34be39c6-693b-4d4d-9e9b-a36348668401','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-8'),
('34c1488c-3e1d-4505-874d-87e2a4ba775c','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-25'),
('34c3cc62-32d4-4d6b-b2c5-d44e752fef26','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-209'),
('34c64ff7-cbc9-46b9-8cff-af02eb753e82','0bd42145-fdd8-4793-a5cd-a2e404d37142',90,42,20,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-20'),
('34c9ab9b-9910-424f-a022-89a45e56d8e9','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-10'),
('34cc963c-f9f3-4472-9305-f701dcfaa077','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-31'),
('34d02200-6ab6-47d5-a980-fea492c70d7a','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.842','2025-06-04 07:00:07.029','22391500-1-106'),
('34d16d69-57aa-4181-908c-481794dad4e5','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-5'),
('34d1f82c-a632-46a8-87d8-08b207354cea','6c23f9f6-3497-47dd-84cc-1eb6d89bd740',125,126,65,0,'2025-05-24 17:55:38.201','2025-06-03 09:41:07.359','31925609-1-5'),
('34d8152d-dae1-46c3-bab8-d3438b112d0a','3cb4049f-f049-43eb-aed9-c5807606078d',0,0,0,0,'2025-04-15 16:01:12.913','2025-04-28 18:15:37.519','231348651-1-1'),
('34d8b9fd-0a8d-4ce3-a427-c448cf377c77','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-100'),
('34d97f12-88ed-49a9-b227-e993a44261a1','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-77'),
('34db62d7-a312-47db-8f0d-a114f8bbef0e','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.542','2025-08-11 10:24:52.464','412173308-1-108'),
('34dc5b9a-d83e-4cd8-95d5-32d29eea1d6f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-132'),
('34df6f82-6c1e-4b26-9474-7210f74b5d2e','3955479c-3ada-4444-9b91-1b60a8b0ffab',40,112,190,0,'2025-10-06 07:10:22.920','2025-10-17 06:12:55.921','140681782-1-1'),
('34e0f584-e398-4135-87d0-3a83c8fd7afc','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-3'),
('34e1846f-58e9-44bd-ae38-76739221e9f8','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-32'),
('34e39dad-b458-4632-8888-bbc9cc70cd72','affb2ea6-71a0-4d35-9267-d30788f4e193',51,51,76,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.914','221624652-3-2'),
('34e81020-c5cc-428f-9ac3-08502f391665','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-18'),
('34e9b866-6382-425a-a600-0ca961343db8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-73'),
('34eba76f-fb1d-47eb-8e7d-90062ab86a04','de5b9e9e-def0-4a43-8da4-04266bcc83f7',75,97,96,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-2'),
('34ed45dc-4394-432f-8920-a3f74d7602a4','237271e4-97e7-405f-ae1a-c243dd0c3783',76,63,63,0,'2025-07-02 12:43:33.291','2025-07-21 14:10:49.019','221417499-1-2'),
('34ef86d6-b781-406b-82db-7e583312c9d8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-6'),
('34ef906c-a9c6-433a-bf2f-64cef5405b25','ed134a02-1a23-450f-b473-72a8e8cd94a9',0,0,0,0,'2025-03-24 16:01:57.284','2025-04-02 18:56:20.189','745724851-1-3'),
('34efc6b6-7c1d-4606-94b3-765cbbe9a406','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-19'),
('34eff31c-c422-452b-9af4-67071995b206','e7f31a78-648d-4a5e-9111-1bf7db38dd79',150,15,7,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-9'),
('34f091b7-54ad-4d62-9e02-22af0770b500','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,160,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.067','412586204-1-29'),
('34f09f24-f8d0-47e7-a7cd-f92658d209a0','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-34'),
('34f17ef4-049f-4fb8-8947-a74da6de1be8','a33e65b2-520a-44d8-8fa8-a6f99b49bddc',51,51,77,0,'2025-10-02 11:20:28.084','2025-10-10 21:30:40.540','221962516-2-1'),
('34f29889-114f-44cc-8f88-ff3c5757ce9a','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-11'),
('34f2bbcc-1d38-413c-81ca-a2f6a0469073','c13492d6-3f5c-4259-a440-85041d298138',52,115,220,0,'2025-09-02 14:48:46.527','2025-09-12 06:55:49.063','644684020-1-1'),
('34f470be-6fed-42c9-a494-7c6793916d31','d2f8d58d-42ad-4705-b1e8-a666af927fa3',14,25,214,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-8'),
('34f47450-b6be-4d4c-ae61-241921cebb86','f3414f51-92da-4967-b108-6baad5cdd798',57,75,16,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-2-6'),
('34f6906f-d78d-4954-aaab-b2f5d11bdb52','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',56,59,59,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-3'),
('3500b8c8-5ab8-423b-a8fa-3acbf2bb69ba','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-42'),
('350447d0-71c8-49e3-bf66-560a16bd7183','57d11f20-03a6-412e-bd79-62615f3c7867',113,56,11,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-4'),
('3506d77d-2fa2-41bd-9248-8ca569c0d467','a89f5cb0-4036-440c-b388-8ef641d6f3b9',19,68,68,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-9'),
('3506f72c-93b5-4b9f-a125-b45ddbeee2fa','31756259-76a0-4e0a-ad43-f10e0bb6f4ed',50,54,42,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-2-1'),
('350b2774-7148-4b97-8483-f6f1e24f227a','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-4'),
('350e9609-17d5-44f5-8d35-6c3f5b201f5c','6f44b113-5917-40cb-9c98-9456f8c03518',128,198,10,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-2'),
('350f035b-ebe4-4757-9e34-f5ab7cc8daa6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-70'),
('351683be-be44-4c95-9d1c-939d05f7e560','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-53'),
('35183f43-3fc8-4e82-8c95-aeb11beb7963','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.309','745859135-1-4'),
('351b6687-ec10-483e-b311-b732040af14e','f0485a78-951c-4f89-bddf-b2003f0bf783',44,33,33,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-14'),
('351e77a4-9388-4d19-871a-b07220132fca','b574a061-f2e4-48ca-bb05-af8813fa6286',61,60,90,0,'2025-09-26 12:39:10.670','2025-10-09 09:24:57.388','644803178-3-2'),
('3525ea95-61f0-4bef-b52d-546793235708','1868aea0-f631-4deb-85f5-8aa25773bef0',85,210,1,0,'2024-11-25 08:28:42.793','2024-12-05 16:17:50.344','248614567-1-7'),
('3525f6ad-f5e9-4036-86a7-c0ee3033476a','83e81175-cef2-4f5e-adbe-8ca02a747efd',45,45,74,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-2'),
('3527af03-93a5-452e-ba66-ca74dd630774','93682f23-197e-416d-95a7-a04da3e2c257',93,100,60,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-2-1'),
('352851f6-a4b6-4ebd-a9d9-af5a84dad812','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-17'),
('352896c7-7a40-4778-809e-49c9894f799d','2ef10f17-04cd-4b22-8b1b-2915e55684f2',35,20,10,0,NULL,NULL,'50538335-1-4'),
('352901db-06c6-4c97-a620-908ff704277d','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-10'),
('3529e17d-8d7f-4ee4-a19c-9cb1de718915','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.554','2025-01-09 10:06:17.574','735340001-1-21'),
('352cc4da-941b-4321-aba8-511e82e6daf6','6053785d-1d29-4e11-800e-efc4fb955f66',65,66,86,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-2-1'),
('352e0451-72a4-4d51-9872-d8074ac87f77','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-2'),
('352e50bc-2edd-46dd-baa0-935c93e8d9ed','2c8ef13d-f9a7-4e40-be91-cb7c4602862c',98,98,83,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.270','896155892-1-1'),
('352f00e4-3ef8-4ee5-b3c9-1fc51313c384','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-3'),
('3531f47c-6a9d-473b-86dd-c0b6873185d0','6fcc55d3-2339-4d12-b5e2-e156727c33f9',94,29,228,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-11'),
('35322304-2e27-47b1-a39f-178f50ba1846','9d7979f3-a35a-4a64-97d1-4ba973786029',41,15,55,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-10'),
('35357b2f-3c0e-40c5-ad06-685093749c7f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:49.000','248135683-1-196'),
('3536f6b7-a379-43b9-a2d0-bb0a31ef8c24','6cee1429-9935-4eae-be32-dc630b6d70e8',82,40,14,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-9'),
('353a083e-d986-4bd8-9517-fdc410c03f31','c930cb02-6682-41d1-b86b-f7fb4105a19f',90,89,69,0,NULL,NULL,'371245433-1-3'),
('353a2683-862c-4663-98ba-7bda2095c012','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-22'),
('353ccabf-5ad0-4e76-a813-0672ce3d09ad','7b2d4551-a99f-4fb6-8215-e7af3afe860e',36,36,190,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-6'),
('353d184b-83d9-476f-a1ba-4554b89aa80d','58ebcdbe-9281-4605-a44c-87684653f9f9',93,82,118,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-2-2'),
('353f3c69-38c2-48da-bdc7-481fe27c5a89','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.091','248211803-1-33'),
('353fdedb-5fa3-43ef-84b4-b5897b9e74f9','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-51'),
('354252e9-aa19-4fb5-aa45-f1236bac9f38','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-3'),
('35451716-58d6-46b2-934f-7dd722c545f4','7a7bde44-ed92-480e-893f-02d0f840ef92',123,123,67,0,'2025-08-22 20:28:42.930','2025-09-03 06:11:37.803','338829299-1-1'),
('3545353c-2293-4152-9031-1389891ebc5a','6ff86400-74db-4fb0-8f8d-7ebd7383bc24',0,0,0,0,'2025-07-08 11:31:03.623','2025-07-25 18:05:15.056','735929791-1-3'),
('3545bd52-ee0f-42aa-92a6-db223dd91faa','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-4'),
('35493d04-1156-4687-b5ca-fa55fdef6f0b','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-2-3'),
('354a3a48-6631-4dc8-8b0f-4706a59c5531','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',92,236,2,0,NULL,NULL,'011548428-4-5'),
('354ae9a7-04ce-44e9-ae49-096ddcd87962','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-16'),
('354f8b57-4962-4d23-9496-ae041cf0c95d','bf560fb2-0b91-485a-bf70-cae59896df3f',70,80,80,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-9'),
('35515713-64d1-4be8-a257-229605ac3480','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-102'),
('35528077-3816-446e-81d0-858d68a076dd','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-5'),
('3554a241-e9da-4f52-a4e4-c924f5fe51f8','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.845','2024-05-21 18:45:33.371','734936220-1-3'),
('355b705b-4ff9-4ee4-8c03-0d44f5fe2dc1','fcaf053b-d516-402f-b15f-d6744a9851a0',57,54,96,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-4-3'),
('355ccf60-fac6-4130-b6fe-dd3f9f41756e','4c9af956-747f-4f55-9533-cdcfab1e4fd2',96,198,7,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.710','675902808-2-3'),
('355e6edb-b97d-45b1-8823-b119b811d3b1','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.299','478479612-1-1'),
('35616df0-c797-4293-b979-11327c7d15ae','7beecb9e-d558-4da6-bcdb-d35549b9c1ec',0,0,0,0,'2024-12-07 09:32:30.833','2024-12-17 19:51:51.056','735233033-1-4'),
('3562324e-7e26-407d-850e-88f661afce2f','571f0044-97d4-451a-a63d-b045acd7a606',90,90,68,0,'2024-03-31 17:55:16.198','2024-04-11 06:19:53.270','982164642-1-3'),
('356436c5-0f28-43b0-9209-e9ee446185b2','702c1aff-1a98-44f0-9dce-efad71572432',60,8,212,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-3'),
('3567f3cc-fa21-4f8d-81de-cf2f80489388','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.020','2025-03-13 09:28:59.434','2487154-1-45'),
('3568537b-e952-4bbe-8e13-69bf294e4090','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-101'),
('3569dca2-32c5-46bd-83ad-44a1037b1074','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-41'),
('357447ca-3357-432a-b9f0-0d6cd1a1d335','af69c5a3-87d3-4548-a650-720b69a4fc69',59,212,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-35'),
('35764b42-b929-487a-b61a-4efa6b3e8fa1','68df0ce3-ed22-4bd4-82ea-dbc9646fba18',46,46,8,0,'2025-05-23 14:05:24.756','2025-06-06 17:34:29.771','221561968-1-1'),
('357656a3-44e8-4165-b828-8139072db1af','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.619','734380041-1-11'),
('357793eb-2183-43da-bd75-002e3d43c8ac','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.418','2024-05-21 18:46:29.546','734970518-1-2'),
('3578b389-5230-47ed-9070-cf731d87e11f','21b92c18-fe01-4738-a64f-22357aa1711b',53,76,102,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.271','01914447-1-6'),
('357c58c1-fd9e-4d3e-9312-1ca7b0c3e1d5','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-88'),
('357c5b01-7807-4f1f-af47-00915e5994be','eebe5042-de81-4afa-b4a6-4517e07ad579',105,70,120,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-3'),
('357d598a-c41a-4e48-9af7-59a20899fdf0','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.160','2025-04-07 17:30:05.097','223896175-1-6'),
('357d76ed-4638-476e-898a-4865c07e271f','999628f4-6414-49b8-9330-8d7f7a351993',0,0,0,0,'2025-10-13 10:18:25.256','2025-10-17 10:41:42.720','41283852-1-1'),
('35808589-5db9-4534-9745-c54be21e5daa','c98f6188-56c5-4870-be97-be71cf95f62e',215,44,6,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-1'),
('3582f5e0-9345-44dc-8b83-0f4334b2b7f6','3badfe11-f9f9-4b71-919e-3999791add02',30,30,30,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-1-1'),
('358362a3-d426-4215-ac9d-7eb3a4f631f3','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-17'),
('3583e174-57ab-4b03-bb51-6160f2c22f22','28d025ca-eab1-46d1-98d4-ad06ea05cfe7',93,181,8,0,'2025-03-24 16:01:49.444','2025-04-05 10:57:59.260','613508377-2-1'),
('3586ae12-1f4d-4520-8046-34247decd674','c7711311-d9e2-44ab-9529-bf35ca0a141b',235,38,25,0,NULL,NULL,'613592756-6-1'),
('3587ec05-9858-4aea-8fce-a5c8ece489b1','9c87d055-322e-433b-9fd7-b8e890d8305b',62,62,26,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-2-3'),
('35889279-dc42-4746-99ba-15014a81317e','516b7da8-60b0-423e-ad0b-ba7b65a9acd7',70,101,50,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-2-2'),
('358bd5b8-c575-4cd4-9b30-346801346681','8be2c2d6-a463-45ae-938a-90a949953910',97,72,96,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-3-2'),
('358c1a97-b5a4-4c49-9d92-378c1e2854d7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-77'),
('358c950a-87f8-445f-b2ef-f5211dcedaab','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-11'),
('358ee414-0d4b-4836-8059-18d299c7915e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.745','223422825-1-249'),
('3590ae7f-7fdd-4e74-b788-4b9622c70bb7','0e92c59b-93d0-4308-91ce-3965bb186203',47,107,5,0,NULL,NULL,'428180919-1-1'),
('35919d8b-c26d-4645-9d0a-6a91b214de88','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-32'),
('35928e7f-c41c-4acf-8f3f-cc337b0e3cbe','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-36'),
('35942cc5-752e-4c9e-a725-f6b44d345616','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',75,100,60,0,'2025-09-01 11:06:25.188','2025-09-10 17:04:36.702','428693052-1-2'),
('3594c604-cdd6-453a-a89a-8e41e79b974d','02ad9997-7b6a-48d1-8a8f-51b8d6be6016',97,202,70,0,'2025-10-20 07:17:57.977',NULL,'59878032-1-2'),
('3595e9a5-dcce-4ba8-9501-3e7897f332a7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-28'),
('3596ff53-df39-473c-8b0f-48b2089948b1','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-2'),
('359801e7-2b1b-47ef-b73d-4b6975aa074b','3aca7d6d-09cb-4903-812e-7535a083b09c',85,65,66,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-13'),
('3598c9a2-9be0-409b-a347-32f6f72853b5','4301b768-4818-4e74-a6d0-12a33474f5c6',132,177,16,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-6'),
('35a07591-9438-4d32-86e4-75de944d6291','9064014f-b213-4017-8a26-f5ee2179876f',0,0,0,0,'2024-12-07 09:32:37.433','2024-12-17 19:51:15.615','735637082-1-4'),
('35a10bb7-64ad-4698-af06-c8c3ecd26c72','cf3bf9ba-92d0-47df-8c74-248b0e3c5f89',72,53,96,0,'2025-10-20 07:18:04.671',NULL,'517619393-2-1'),
('35a5dbed-d61c-4c0e-9612-d039bdf919ca','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-12'),
('35a796ee-db55-4cd8-9855-393fd673e9a7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-71'),
('35a80323-23cd-46e7-9452-0779b8215183','e6b643b2-ddca-48ec-b553-690e29e71879',112,57,84,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-2'),
('35a9f2e2-5c9c-4656-beea-33d196241156','daa88a63-2ece-4786-a082-938c1a50dfc2',240,96,85,0,'2025-02-15 13:31:41.746','2025-02-27 16:43:01.175','910759399-1-1'),
('35acc46e-27c5-40b9-a35b-b78e6d6253d1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-110'),
('35b2464c-560f-46d3-ab67-a3f0c9d70d52','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-136'),
('35b2984e-fdf1-4b04-9150-24de89218293','0fc25d41-fe66-4797-a304-92adc29b59c1',95,65,232,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.174','910594430-1-1'),
('35b31094-e733-43a3-9430-dee835007062','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-65'),
('35b722c4-3f73-45ad-a049-e91aca3c4248','135906fa-fceb-45b1-a401-83de82461319',57,12,90,0,'2025-09-26 12:39:13.889','2025-10-09 09:24:47.313','319585140-1-2'),
('35b9effd-af06-4448-9339-5740056c7a81','98713122-22d9-4f83-b25f-bee68631b924',51,51,77,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-2-1'),
('35bb2099-09e2-4a86-bd09-2675b850b0b5','a01912f8-693e-42b8-a248-694a4ecac68c',100,110,65,0,'2025-10-20 07:18:12.638',NULL,'531606130-3-2'),
('35be6270-538c-4885-b751-ba2ceedaaad6','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-29'),
('35bf3118-f66a-47e9-a3af-33aa9f2cb2f0','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-78'),
('35c09dfc-2517-41bc-9d1a-483bd0920b99','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-6'),
('35c5558b-c399-4405-bbb5-97ec9cb47938','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-47'),
('35c8ac49-9f4c-446a-8ce1-b47993f3a3bc','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-15'),
('35ca07bf-15a8-4f46-ac98-96d4a6e9aac9','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-35'),
('35ca9c18-c66f-4ffb-b712-d609702a6160','fc62f08c-a4dc-4f3a-b1bc-a39834539515',6,83,85,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-8'),
('35cc1784-d968-4914-a1b5-5362d997c913','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.468','735500422-1-11'),
('35cdcca5-b682-4cb0-97e3-6a0e3cca4f46','169583e5-aae1-401d-bbeb-1e1ae478298c',125,67,7,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-2-1'),
('35d27ef2-6c49-46ef-bbc8-b8a8082d18f3','8fc7023c-7fab-44ae-a533-006d835eddb6',52,14,87,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-4'),
('35d6f625-3d27-4ebe-a3ad-041141d51ae8','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-129'),
('35d808d6-224f-456a-a3e0-c30c9d991f37','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-42'),
('35ddaf19-fe54-4a81-ab70-3714a71542dd','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-13'),
('35de5c6b-85bb-4378-86d0-f4d37a1ad60c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-236'),
('35de682d-62fd-47d1-b2bc-6002ba5213d5','4c827ccc-5373-4bb5-b088-bc5d1ef4f91c',92,94,75,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-1-1'),
('35e046df-e367-4c02-a798-357c91861825','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-7'),
('35e0aad1-09ab-4b89-bd1b-0bcd59644473','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-3'),
('35e15c39-c8c5-47e7-a9f4-60daff8e010c','e401ce6d-1f41-4077-903f-4deb32a0813e',245,100,65,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-3-1'),
('35e42537-3991-4774-b6f3-23123635e503','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.860','2025-07-24 18:00:53.296','223444495-1-35'),
('35eb07af-c358-4c9b-9eca-651366edec4e','42b2ca3a-9313-4b97-901b-3859e34b21e1',60,45,35,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-3'),
('35ebc9e6-6c2f-4b42-a034-22fc3a7781f9','e2279222-d071-4645-9dbf-0666c6bded58',96,6,196,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-2-1'),
('35ecd006-6053-4a68-9757-b8cc6bc58038','bd19b448-d5df-4f2c-bacb-4f45d6ea0ce9',47,47,75,0,'2025-10-06 07:10:20.821','2025-10-17 06:12:44.721','598131456-1-1'),
('35ed0431-221b-4e29-8594-a27c2b9d51d5','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-42'),
('35f0f88e-005e-4a65-a01c-a844fc950fe9','85863f70-10fe-411d-ad43-60a5ba95b680',0,0,0,0,'2024-09-19 18:27:17.240','2024-09-28 09:04:10.925','982425532-1-4'),
('35f1795b-d943-421f-87eb-87a56fe2a1a4','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-5'),
('35f67685-5788-4fb8-9f9e-688d5826919d','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.237','745357299-1-3'),
('35f6a14b-d21c-4ea6-856c-482c20652113','c2ca9295-3327-4596-8115-dd1ef2d64d4f',170,40,27,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-1'),
('35f823dd-5339-4e8e-b1c6-1716370721da','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-15'),
('35fa6b6f-0cbc-43fa-a5d0-dbc70190d662','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-6'),
('35faabcb-2a3c-48f1-8677-c7262f544c46','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-4'),
('35fae80c-f6b0-4d2a-9a07-7f6875c87e8f','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-3'),
('36032cbc-4520-4e07-b9f0-a9791494870f','7e8643f3-2224-44f8-8380-7da5eea93721',80,80,80,0,'2024-03-30 10:55:02.595','2024-04-03 08:28:04.945','501668492-1-1'),
('36037c3c-4050-44fc-98b4-e3d56ee1769f','ca9035e1-80a3-45dc-92f0-bd7c607a8cf0',54,101,73,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-3-3'),
('360449ce-763a-41f3-9efd-6ab0946704b7','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-15'),
('360827be-06e6-4c01-9bd3-47073b9a85fd','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.855','2024-10-07 14:02:25.806','47867667-1-4'),
('360e52d6-8b6c-4dc9-b8f2-53ca3823acf8','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-5'),
('360f7a2d-ffb0-4ce4-b40b-24b5392ebda3','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-4'),
('361203aa-2b87-40d2-9c0e-d64df4670a0c','03b4a2cb-abf2-4d84-85e7-366794ad4504',80,85,70,0,'2025-09-16 16:29:11.874','2025-10-04 13:57:19.734','7454878-1-4'),
('3615a8af-0424-42a5-aaf5-b31b7e5da454','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',65,96,93,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-5'),
('36160377-9e1d-462d-b23b-d02ccc3b581c','27bda15a-7623-4220-ac03-054c6daa64e8',82,56,110,0,'2025-04-28 07:40:48.885','2025-05-05 09:10:22.589','745411152-1-2'),
('3617adb9-1b42-40cb-a906-80eb6e01def5','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-60'),
('36183499-3374-4d7c-ba7c-2722ecdebec2','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-7'),
('361a5c4d-990a-415d-9466-d98a2724def7','52c1c51d-da24-4385-88da-ce34429dabb7',61,57,82,0,'2025-06-21 04:33:56.315','2025-06-29 15:02:31.408','221758948-1-2'),
('361bff21-9c2d-4235-9c8a-ddfb7ef12698','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.733','412467921-1-12'),
('36213d87-70ca-4062-abe7-2c3ac6f91943','88bec1c0-e7a5-4328-b46f-29d37f4728f2',90,67,75,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.068','982973548-3-3'),
('3622122f-9f9d-46c6-ba77-c36eb57c2a21','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.246','223823107-1-45'),
('36248907-1f25-4f6a-95b9-efa7726f53f5','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-2'),
('36269bc6-fb34-40a4-8589-bb417690ead2','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-18'),
('362cd5f7-0edb-4af4-8ced-ce9110ecd4af','343abbb0-3b83-4960-99bb-3b111e2a8797',70,100,60,0,'2025-10-06 07:10:07.138','2025-10-15 08:24:33.635','338730647-1-3'),
('362fe18a-e53e-4ea7-93b0-1ba20bc27bfc','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-15'),
('3632994a-8194-4f92-929e-2d96f9919abe','702c1aff-1a98-44f0-9dce-efad71572432',19,15,220,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-8'),
('363679a1-e341-4304-b3c5-15e0c19008ad','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',100,85,70,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-6'),
('363afe9f-37d2-4c60-8284-c911d867b770','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-25'),
('363b4f69-6b76-4b9b-b619-58bfb39befad','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.378','745175736-1-5'),
('363db920-833a-42b7-a967-b5dff07c3588','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-87'),
('363e87ab-7878-4ece-bc46-0a6224d979b8','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-16'),
('3640821c-7c9f-43dc-bcef-6b0e1947a387','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-158'),
('3640b9bf-2819-4a01-8072-67d6f9e61392','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',10,10,260,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-6'),
('3640dfcd-cfdf-4b34-b36b-245a32ab4ade','a3c7cedc-5869-462c-83ba-d69c3bd9dbdf',58,76,100,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-2-1'),
('364507fd-fa1a-4637-9bdf-40fecad095ef','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-7'),
('36493f56-c8a2-4c17-ac58-19593f718914','a970a3f5-58bb-4e19-be39-2b2e53a6e56e',93,7,182,0,'2025-10-22 13:07:10.734',NULL,'011766113-4-1'),
('364a1670-ce9f-4024-88e5-31208bd109b1','2a7b0dd7-e92c-4d80-a1a0-61f0b6b1d33e',45,45,78,0,'2025-07-26 07:40:28.340','2025-08-02 17:36:11.137','598668612-1-3'),
('364bece9-ead4-4813-acd1-f52e00fa0d7a','5d074556-ce95-4ffc-8684-279dc37597f0',112,56,82,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-5'),
('364d48a9-127c-4f4f-b8c8-11703ba3a05f','8076bb41-df9d-4c3e-b002-8df21ddafb0a',80,85,63,0,'2024-09-06 12:28:00.234','2024-09-13 16:38:28.325','449281517-1-2'),
('364dde7e-b5e9-4f12-933b-4f4103408311','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-9'),
('364e3fb4-e544-4c3d-a7f9-5e1cd1c6bd1f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-8'),
('365a92eb-b301-461e-81af-a505129479d8','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-97'),
('365f3ecf-9208-4534-b5ee-2f5b50de1d2f','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-6'),
('365fcf15-0bd4-4596-aaac-ee5c908a5960','a87576e3-14e1-46a8-99c7-1d48360995f5',95,90,58,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-3'),
('3660111b-c3ab-4162-9b37-8e876e8be98a','cde2b645-2cf4-4ca6-9d59-ef733217c501',100,50,75,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-6'),
('366c267d-49e8-4888-ae2d-c423484ceeda','253bc977-f851-4c87-a294-ed526cc3cb5c',54,54,30,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-1-2'),
('366c41a7-980c-4d87-ae3e-5db55f09591a','256006bd-b235-4d94-b138-40c9fa05eaf1',76,100,54,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-2-1'),
('36741366-408d-4490-b8f4-d10e20cf6050','798dd250-3594-4da1-8def-ce51d07ef0ef',100,125,65,0,NULL,NULL,'745249761-3-1'),
('3674e702-168f-4c2b-b80d-5da6c621127b','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-6'),
('36761527-2ce7-4c16-b970-40d6b41703fd','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-168'),
('3676c832-9ae2-42a0-8d25-a1f70a956aac','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-89'),
('367c2ae5-ff6f-42c5-8b58-1410ae05eead','0cec28fd-4d59-4786-8895-12736ccf55a1',60,61,90,0,'2025-07-17 09:36:44.598','2025-07-24 09:43:16.475','644682734-1-2'),
('36803b01-f6de-4751-97a8-baced02e72df','9866a947-9974-4053-8415-4518842488fe',58,41,26,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-12'),
('368063d7-9425-4c54-bce6-60c6f333ea49','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-42'),
('3681b648-6d3f-492d-970b-c4df296e59a5','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-93'),
('3684699c-9f68-4ea6-a343-8c0684f83b78','48662948-788b-4f09-b1a2-4177f97b1eb7',73,54,101,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-2-1'),
('36847251-46e0-4152-9d90-9344f04902bc','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.929','2024-04-29 09:07:18.394','41245861-1-5'),
('3687f77b-6cd7-46eb-b54e-c657d4e096d2','f45571a9-812c-4870-9a5d-3dc263fdeb52',106,215,9,0,NULL,NULL,'221351976-2-3'),
('36907d1b-837a-453f-ae95-614d7208e6e3','b988fde4-e371-4e31-a284-a3f361315160',0,0,0,0,'2025-02-23 12:39:07.886','2025-03-06 15:54:32.345','745140498-1-1'),
('3690db87-9daf-4ed7-822e-328a2dd62b0f','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-14'),
('36924d76-1757-4695-b8a9-ae4f72806ff6','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-3'),
('369348d5-e9a7-4e74-ba5b-9cdb78b86812','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-12'),
('3693867e-4125-4f6d-b9eb-dff063b46ff4','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-63'),
('3695f7ce-e1fb-42aa-8015-8cebe1af3b1b','97a6e2d5-a920-4592-81a1-c1fbca835c74',30,42,58,0,NULL,NULL,'613745862-3-2'),
('369762d6-1f33-42e2-b688-8c094d56bd01','09539d44-2328-4f3e-aead-ca2c08bff4dc',240,95,85,0,'2025-08-27 19:40:11.075','2025-09-04 21:05:05.201','910561299-1-2'),
('3698aa18-0bda-49ce-b0be-666a195367c1','5598c3c4-7b30-49fc-8997-d966fbd95fbc',202,92,30,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-3-5'),
('36992822-0e15-44bf-bd97-49250a94aefa','ee9fb715-b428-43a4-bbcb-69a220329347',214,105,8,0,'2025-09-06 07:20:45.019','2025-09-12 22:09:23.092','371304914-1-3'),
('36a0e39b-c92c-4e8a-a251-c76c706bd611','4858773d-333a-4197-a946-bf62338fc789',0,0,0,0,'2025-02-13 20:44:03.491','2025-02-24 13:33:03.096','613633231-1-3'),
('36a1ac3c-42fd-47bb-a31f-5aacb0a39218','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',61,12,122,0,NULL,NULL,'478350685-3-2'),
('36a321ba-5994-4093-a1fa-a5b2ec13ddca','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-21'),
('36a3bb19-1e46-4896-a373-7cd8dc0a9ff8','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-23'),
('36a56fc1-ecdd-4b99-a755-532083f9dc25','392e6688-b280-4b27-9b5a-97925f3d9c8b',28,18,25,0,'2024-12-07 09:32:10.924','2024-12-19 14:54:06.615','107870370-1-4'),
('36a5b582-8108-4192-b6d6-a0eea4d58088','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-13'),
('36a5b8ed-f1e5-4545-86c1-0eaba557dab4','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-22'),
('36a5f914-5f74-4f12-88bc-ad7e7c063b9d','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-5'),
('36a6539a-26c5-423b-b030-4db4e97dbf0f','886e0e1a-c599-47ba-bacc-c329212cc55b',18,30,209,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.557','478730420-1-19'),
('36a7f6d3-045e-47d1-947a-406d23e25887','c8a2a15e-4279-4904-a725-a9d44306abad',154,27,27,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-16'),
('36aa0716-828a-4886-9fc0-5eda1f9d263d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-39'),
('36aa7e15-de18-49f4-aa01-e2472aec2e20','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-100'),
('36ac1bb9-ddf7-463b-b890-c014a767d9f9','43a5868e-b45f-4da5-81a1-837338bfc39c',0,0,0,0,'2025-02-20 12:14:59.012','2025-03-04 15:38:11.587','47853753-1-1'),
('36ae4ec6-99a0-4da5-93c2-f71b30cb14cc','a3a218ea-c02b-4cec-b478-b5babd3881d0',56,72,100,0,'2025-10-22 13:07:10.733',NULL,'011766113-2-1'),
('36ae55f1-eb52-4d9f-aa97-f4169d48118c','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-12'),
('36aef533-93fb-4706-b83b-5e639f44e1cd','dd6fdf61-e650-45bb-980e-83d576bfac38',80,75,65,0,'2024-03-23 08:36:28.333',NULL,'982425071-1-1'),
('36af1b16-0966-4a45-bc16-d5d62d5fc1f1','cf16ee0b-0882-4d38-9eca-1e0888101309',95,80,94,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-2'),
('36b3b82d-7186-4bde-b2b3-1c3b55f6419b','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-39'),
('36b40162-dee1-4df6-bc2f-3328dbdb3a6d','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-4'),
('36b4149a-81f0-448e-a5d8-c51c4b87b336','16ee37cc-f44c-4652-a3d9-37ff204f5538',0,0,0,0,'2024-05-08 18:43:19.572','2024-05-21 18:45:56.505','231455458-1-1'),
('36b5b8ff-5b22-445c-b66a-ed393166a61d','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-31'),
('36b653fd-2fb0-4fef-8860-092002509997','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',90,127,8,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-1'),
('36b66a74-4b75-40bf-87f6-5c85c9ad2df2','d83c40d1-4df5-4c97-bc83-28837db95b2b',240,80,100,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-16'),
('36b6e9d5-d7f1-46fc-8ade-18d812709c37','6588ed6d-edc3-4416-a491-7dd64da792c9',120,67,116,0,NULL,NULL,'371215833-2-2'),
('36b74c49-721d-4929-9489-c5ce731dc9bc','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.722','478833375-1-3'),
('36bcc784-5dfc-4ae0-90bc-0a20972c6d4f','9866a947-9974-4053-8415-4518842488fe',94,100,70,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-13'),
('36be84fa-cc1f-4990-b4c0-0d7b3e00894a','5dc0d88b-7ff1-416a-932b-9af0149bafd3',53,77,101,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.247','437431907-1-1'),
('36c001a9-a26a-4e95-9e66-d644d7ac342e','02c1cca2-b7ec-44f3-90c7-3e935d2e255f',80,77,98,0,'2025-02-20 12:15:12.935','2025-02-28 12:04:36.224','478142620-1-3'),
('36c0b634-6f52-4477-b020-a71168c8f1d2','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',53,15,61,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-17'),
('36c402fb-23a3-4387-b1f7-eb1780036b9b','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-5'),
('36c99c7c-716f-4477-a6c4-6ccad4676a33','b11a7688-4046-43cf-8820-625309aed56f',70,93,242,0,'2025-09-02 14:48:30.710','2025-09-10 07:23:42.948','011255060-1-2'),
('36d2a83f-c3ab-40f9-8c78-477113999263','4869c334-4618-49fb-9d03-99d95654d12a',135,169,6,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-25'),
('36d32439-52a9-4ecd-bc51-7d6b02d816e8','b5604942-4711-4185-9f16-590acfefb52b',40,32,202,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-2'),
('36d69597-dd0f-4622-aaee-d926292398cd','c90aef9b-b83f-489b-afc9-92320b0dc24c',80,14,120,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-5-3'),
('36d7fe9b-7a6b-4488-9cbf-85b37c4113b1','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-17'),
('36d8e886-2a63-4d36-a2f2-df428b31e75b','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-9'),
('36da70d3-579c-4082-a8d8-7e959f55decd','01445163-8215-4106-bdba-4d0bf73930fe',107,66,10,0,'2024-08-21 14:52:33.316','2024-09-02 08:33:41.727','614462377-1-2'),
('36db45ff-2dff-44cd-a16a-60b2c7bfc2f1','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-47'),
('36dc117a-0085-43a4-90b5-c6eb12e5e694','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',77,77,85,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-38'),
('36dcb52b-fd17-46fe-9e8c-afa4b406c0f2','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-62'),
('36e0f320-1f22-4799-ae12-8484d0112f7f','5e4d8700-ecec-4c1f-b393-843da9941edc',0,0,0,0,'2024-07-20 16:33:35.781','2024-07-25 21:24:38.399','9824380-1-4'),
('36e85835-006b-4401-9cb4-e2ce802af4fe','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-9'),
('36e8c00a-5621-431d-bc52-295f9dd68f7b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:49.640','248135683-1-205'),
('36ec3603-62e4-4a82-8a18-ab609e1ce470','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-177'),
('36ed84c5-d3db-49de-96cc-961e65ad1d32','808a4f1b-793f-4a15-808d-00c26a26c166',229,60,8,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-9'),
('36edd483-1123-4abd-b068-6187ffe6bf44','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',46,12,8,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-10'),
('36f23234-7113-4e65-bf0b-3cd77f64ae26','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',24,88,46,0,NULL,NULL,'011548428-4-6'),
('36f3651c-0393-40b0-a2e3-93b5ef344a65','344aaa06-6752-4614-be63-13e9875ccf3c',180,200,32,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-2-1'),
('36f78f5a-49f9-4db2-9c49-621db87cf64b','e54150ef-c37e-434a-b822-2ec057a11543',123,168,60,0,NULL,NULL,'745189997-4-3'),
('36f7b3ec-6600-493e-9aac-bb6277cae9c8','8778c3f3-967c-4a24-9adb-37b4330b383a',75,51,52,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-2-1'),
('36f8363c-2772-4793-930c-3bbdb1fa3838','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-5'),
('36f8fe04-4c5e-41f8-874d-506d4e43deb9','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-52'),
('36faa80a-b97a-4083-8532-ed029886dbd3','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-7'),
('3700c1f5-4bc0-403d-90c3-b93f120abfda','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.353','248614196-1-4'),
('37055c1d-ae3c-42b3-99d9-e736aaeba821','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-8'),
('37056e6a-eaef-468d-b2af-b23c260fee3e','f0485a78-951c-4f89-bddf-b2003f0bf783',78,78,9,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-15'),
('3706b77f-8015-4104-b7fc-960cbd959f69','1d2ec7e2-f735-46a1-96be-3994af90aaac',101,162,13,0,'2025-09-16 16:29:23.562','2025-10-03 06:54:42.114','750363306-1-5'),
('37085685-9fda-4ca7-b7db-b0906bdf068f','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-5'),
('370d955b-947b-4021-b9a1-0486c04940cf','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-65'),
('370f613b-62cb-40d5-91c7-52bcb105d110','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',10,89,21,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-8'),
('3713006e-aed1-4ef0-926c-777b148a4729','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-29'),
('37146196-4300-4a13-a2eb-16324859e384','c5d03b78-19c4-44f2-a673-725e07271521',110,34,23,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-10'),
('37194316-30a5-430d-a0cc-bed0e88e327e','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-3'),
('371af7e8-a0a6-4427-88e4-061bb75cb52d','5a89fae8-525a-4de4-8188-2f4d7c892e74',55,27,85,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-16'),
('371b7c73-9d5b-4fbe-9f0f-a4fe9d99a17c','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.901','412280381-1-39'),
('371dcb89-3e6a-4811-be5c-d658dfb89bc8','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-5'),
('37226e7b-b5ba-46dd-94c2-a519afb407a0','54d4752f-e7ac-4178-9490-9a68454369fd',240,90,65,0,'2025-07-19 07:52:02.271','2025-07-29 13:55:08.002','982426968-1-2'),
('372415aa-b03d-4b8a-952c-dff7087f00c9','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-114'),
('37249f88-40c9-4d8c-a3da-e279913ccc05','ce43478a-bedd-4537-b06a-c1e76d9d50ff',70,94,178,0,'2025-02-23 12:38:57.638','2025-03-08 13:58:16.672','703870981-1-3'),
('3724b59a-5fb1-4a43-aa84-c3b5d206a4d3','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-22'),
('37276aa5-b9ce-42fb-8642-56f5d04e380b','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-53'),
('37288ed4-29b0-41d5-97e1-19b3879e04c5','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-8'),
('372b5a8b-4d29-4e66-812e-e05cc22a53a9','2638267c-49c8-40a2-9cea-d01b15ec2ffa',100,117,67,0,'2025-10-08 17:44:08.106','2025-10-20 06:32:16.904','644113252-1-2'),
('3730f5a5-e279-493a-a87d-03f1cf652602','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-2'),
('37314cdc-8ee9-46c6-b75f-6fa08751fefc','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-34'),
('37320e68-b468-4201-b1f7-fc9d4dbe4e86','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-24'),
('37389d00-0a72-431e-8f87-d1c1a3c46337','9212dfa8-08b3-4e92-93bd-a594eaf017b6',73,18,103,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-1'),
('3739a8a9-5689-4679-97ac-fcf762da0b87','950eb8aa-72e9-4405-9031-9182cf1b215e',150,32,200,0,'2025-08-07 16:52:35.986','2025-08-21 08:12:57.335','478525280-1-1'),
('373c8711-2bf4-4743-a779-644cb29ea3a4','833a3da7-2e08-41e5-bb3c-06e3df596438',0,0,0,0,'2025-02-13 20:43:53.415','2025-02-24 17:24:29.598','478560084-1-3'),
('373c93a4-9e06-4861-b8ef-ebdf7cf7e5d0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-108'),
('373ce80f-e513-4edc-83fc-f5822951fbc8','3a08fb4b-5cc4-4e68-847f-00548d024407',70,90,95,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-2-1'),
('373cf294-18b9-4907-8284-d332feb76f54','536180b1-1c3f-4444-a507-049eec9ae541',160,200,4,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-1-1'),
('373d8370-4c28-4ece-91e8-f792ae994e5e','00c4d4eb-e89c-4883-b434-2cd031184f1d',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.081','478449021-1-1'),
('37407de3-5021-4954-b369-6a5a1c387528','5a89fae8-525a-4de4-8188-2f4d7c892e74',52,68,63,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-3'),
('37445332-d505-4d37-9b34-cc36d48acdb1','42ef4d8b-8548-4e28-8dc4-0632930c5828',53,33,205,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-1-1'),
('37467e9c-bf00-4b16-8e19-f0473325c36a','652f8782-6554-4a1e-8ce4-2443e79b37fa',62,62,77,0,'2025-09-12 17:16:58.862','2025-09-24 06:51:18.915','613940015-1-1'),
('3748f1c0-fb22-4079-a3d6-c092a4ba7b76','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-229'),
('374a08a6-6744-43b7-b1b9-355086a0d65d','f842eaaf-94f0-44f1-9cc7-68d39b982516',56,76,103,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-3-1'),
('374c67b0-0798-48b3-81ee-6e52a1213a09','9a74cdae-acbf-459b-836a-29ba929835b2',215,75,95,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-1'),
('374cff6b-9faa-4dc5-8832-b6363a92a4c4','e95ebe6e-cfa7-4eee-b276-6f464674325e',110,102,70,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-4-3'),
('374e5d1b-e2e3-4d05-a543-764d8b95f6ec','078e5a30-43f7-4f76-873a-4dcdd248380e',85,78,90,0,'2024-05-08 18:43:22.003','2024-05-21 18:45:46.061','50119540-1-2'),
('3750874c-a0d1-4fea-a779-38db5ae12c7b','ba8a3b40-6783-4783-9cb0-da727261a6d9',51,51,77,0,'2025-10-25 08:59:22.001',NULL,'221811614-3-3'),
('3750f7f9-002e-4542-be09-76eaea4e2f65','cfda16e3-3e94-4fc7-b414-e5be0c5bf581',0,0,0,0,'2024-09-19 18:27:28.977','2024-09-27 16:39:50.359','982219496-1-3'),
('3752e4b4-b444-4eaa-acae-ad993887c482','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-80'),
('37545668-ade5-4da1-9ada-ca55248e23d4','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-17'),
('375aae03-8782-4f00-b57d-bb04bb5b31af','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',140,45,13,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-30'),
('375af747-2cb1-43d2-9ed9-616353a47a10','808a4f1b-793f-4a15-808d-00c26a26c166',51,18,107,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-10'),
('375b0b25-529c-4db6-9bf3-c39510d9ddeb','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-15'),
('375b0dbf-7716-41b4-a346-d220644f174c','e1601d35-cc40-41a5-8e8e-8005a1281654',143,53,8,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-4'),
('375c59c7-30a6-44bd-b7b8-8a8f7c8602f7','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-3'),
('376161cd-3676-4c2a-b39b-0eb68cf63f8d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-88'),
('37626b07-3b67-4206-a9b7-dcf4f7502b69','7a1383f5-b919-4384-8104-0058a54fc111',27,27,43,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-1-2'),
('37648289-a247-424c-9f39-02f289a1fe22','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-4-3'),
('376533ac-4d4b-4fed-a932-caf9b075f4b4','b52c782d-173c-4921-91e0-83bad837ccef',93,153,15,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.753','371998665-3-1'),
('376b19fd-92c6-4e19-92c3-fff41d2e0f2d','abd1d92d-bf39-4c91-8d61-ddc273b6427f',51,51,78,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.736','437917777-1-1'),
('376bf6bd-a0ef-4d2a-9dc9-affade553afc','2e72969e-16f4-4df8-800a-7af035413223',0,0,0,0,'2024-06-14 12:06:08.655','2024-06-25 14:26:25.215','478702476-1-1'),
('37704eca-17fe-4c4b-9581-8be76e712ef7','d0ade823-74de-4507-8f72-ff3352af4bbf',68,15,16,0,NULL,NULL,'428407424-1-3'),
('3771d03c-4679-4479-a7c4-92ab1eec7fe9','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-2'),
('37726535-7130-4124-9902-3d8f9c53864a','5e64592b-2456-4b97-ac5f-4841289e6177',0,0,0,0,'2024-09-27 14:06:17.967','2024-10-07 14:02:15.860','478913776-1-1'),
('37730661-cd5f-40c2-b426-72910276b1a9','d12ce78c-a7c1-4937-be74-17b603729cee',37,38,75,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-3-2'),
('37734264-246c-4cd7-801f-e07d0dcfb328','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-6'),
('377498cc-fa87-447f-938b-51e0dc7fdf41','272baab3-523f-4b56-ad75-0ec90f594ff8',51,51,77,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-1-2'),
('37771ad6-78e1-4ade-9c33-98e8797e27d3','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-4'),
('377b1da3-b593-4166-9b37-f68d57ba2320','7f086af4-7f94-4b2a-8e93-97605ab16c61',56,102,72,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.686','162733891-1-4'),
('377ea5c9-394f-4bd4-9c9b-24147724681b','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-85'),
('3785becd-d601-418c-aa66-d88cd41bf4db','77ff902d-1907-4a5d-ae12-53e25cd118f1',0,0,0,0,'2025-07-19 07:52:25.651','2025-07-26 14:17:19.757','644564440-1-1'),
('3785efae-8443-4c84-a87a-b56d33eb752b','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-2'),
('37866c61-919d-4756-b2c3-8f360305600a','d94a498b-a4f2-481d-bbd3-eae08b47ab9e',92,101,80,0,'2025-06-11 13:14:40.852','2025-06-17 16:07:08.386','644703173-1-3'),
('3786d9d8-2f7f-4c9f-a656-1c406dee8d47','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-77'),
('37879bdc-6e73-4eff-91af-111dc413ab09','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-35'),
('378c35a4-af2a-460c-9e7a-309eddf58685','32c9673d-ab89-44f1-a639-3cfa252bd8cc',99,99,75,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-2-1'),
('378c7d27-92b4-4e81-80fc-34c31e14975b','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',48,45,45,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-13'),
('378dae7f-7904-454f-8bf2-56d9195b9e3b','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-3'),
('37924b57-030a-488b-8565-b1bbd0e42d92','90cf749f-c053-4b41-a940-3f8735110a4e',0,0,0,0,NULL,NULL,'910550169-1-1'),
('37924c56-91b8-4999-80c0-3cabdfbb0dc5','090b9a06-aee0-4c02-b626-f3e2002f0fce',41,41,78,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-34'),
('37939a4c-6bf9-4521-91a2-acd6b1cadd33','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-31'),
('3794afa7-5ab8-4126-9d2e-6106e33fd907','50517437-8e4d-49e3-bf9b-a6221588b05f',0,0,0,0,'2024-05-11 08:11:37.516','2024-05-31 10:16:39.587','478319922-1-3'),
('379676b9-0486-4391-88ea-f9b482c53b90','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-2'),
('3796970e-b7d9-4f89-889d-d97a46b8e78b','a7adbd9e-6dc8-4e83-8103-f0614c771f77',92,86,65,0,'2025-07-12 09:20:31.828','2025-07-23 06:22:15.027','817838997-1-1'),
('37980b3c-b3b5-4ed6-abf8-5d0e22fd06dd','32c9673d-ab89-44f1-a639-3cfa252bd8cc',99,102,75,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-2-2'),
('379b9cb2-d01b-4931-8f32-e8e27c7ed093','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:50.261','248135683-1-92'),
('379c2567-c596-49de-8088-dcb66aa933a6','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-37'),
('379c8998-bf18-4969-ac67-52227f7f6dd3','87758232-82f4-41bc-a8c1-71f044bd69f4',77,78,70,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-2'),
('379dec9d-450b-40c9-a2b2-cb3d311c6797','3535d433-eb38-4879-84b4-dbf8410809cd',50,55,50,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-4'),
('37a2218e-d326-46c2-92d4-fefcbc03ad79','9722a553-1f9e-4d47-9697-a2ef95a51936',115,115,70,0,'2024-12-23 12:00:40.593','2025-01-07 17:27:56.919','428480095-1-1'),
('37a55368-7a75-4894-a906-701ccf0f4c8e','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',103,68,90,0,NULL,NULL,'501168544-1-1'),
('37a75192-98f5-4a9c-a52a-2a5f9378d48d','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-14'),
('37a7ff1e-e464-4173-b631-e145eda21022','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',98,80,130,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-5'),
('37a82f6c-43d1-4a05-ad86-6db7b57cc6f4','f0d0f679-0435-47ac-98c0-ecc939f711dd',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-4-1'),
('37ab8ff2-0c49-4a60-8a7e-8ba946852df3','c7711311-d9e2-44ab-9529-bf35ca0a141b',92,32,202,0,NULL,NULL,'613592756-6-2'),
('37b08ecc-a477-4a26-aec6-b5caef7f603f','0ac2a48d-48c9-41d2-91a2-b574a94542b0',42,30,15,0,'2025-08-14 10:05:38.308','2025-08-28 18:20:16.505','765729280-1-13'),
('37b09b6d-9377-4cb1-b219-1d1b6d4e3726','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-16'),
('37b38888-8fcc-4db5-a491-c5a750b9c65b','5e418100-d855-48c0-ac4b-19a956b8ef44',70,96,236,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-6'),
('37b45701-b1f0-4fd3-8e39-dc309b229154','2be304af-892c-437c-ad01-00360cd990ec',44,44,75,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-3'),
('37b4f86c-6ecf-4c7a-b9d9-dba4a65a1c85','86e5956d-750b-4aa3-8f00-53e2db7b9f65',60,50,10,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-8'),
('37b5993c-2a79-4c0e-87ab-7ebced49356d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-73'),
('37b791f7-4dc7-4a92-be57-768e8d1833ab','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-35'),
('37ba7ab1-48ad-4e8d-ad33-e77e985da16d','5eb95499-56e2-42e9-8465-c8430d78f2e1',25,200,180,0,'2025-10-09 08:39:52.751',NULL,'011940661-3-1'),
('37bb0554-d403-45f1-8b59-2bcc5613363d','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-3'),
('37bee429-9b43-4011-90fd-0b413d6b7923','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-1'),
('37bf02a6-8a9a-40e0-b827-5c668f6e4d20','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-207'),
('37c42af5-ed09-4bb2-88b4-0fb45c96a01e','31efbfbc-2eef-474b-8cd0-b552d5c60b72',43,30,250,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-1'),
('37cb3d99-f10c-47c0-98a9-ae621819a27c','e619eb30-ffe1-4f0f-8b5e-957c09a8c7f1',80,56,110,0,'2025-10-25 08:59:06.361',NULL,'43750462-1-2'),
('37d26feb-8b36-4549-b3e3-97e651dc4e3b','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-11'),
('37d75691-55a1-4f63-afe1-31d9e359061e','d55d2e95-9872-4d09-82e1-d78ed10c9ec3',0,0,0,0,'2025-02-13 20:43:39.053','2025-02-25 17:03:29.863','745959029-2-1'),
('37d7570b-1724-418e-bf93-8b5fd12f6d18','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-21'),
('37d96fe4-6c12-457c-ae1f-d7be14e8904d','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-11'),
('37db9f8c-0ebf-4880-a5e1-aac2ae11e43f','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.373','4127825-1-6'),
('37ddc3b9-b4e3-4a91-b99c-2fb1e4c03dc4','3da7ca23-1096-4e12-bda9-57170294f0b1',250,204,43,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.512','412977009-1-6'),
('37e0605e-9526-4d51-87af-205b15dbe20e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-59'),
('37e06b17-32f3-4859-8d92-e595c6463df3','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',106,197,7,0,NULL,NULL,'808443666-1-3'),
('37e076e8-8f7c-4994-9820-8a67983f9569','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-76'),
('37e11d01-7469-4065-81bb-e031715ab7fd','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-51'),
('37e2e6e8-33d0-43d2-856f-71cf00063423','2881c493-0a0a-403e-bf7b-36c55e85e85c',37,80,30,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-3'),
('37e50cb6-6ed5-4acd-9915-e853539499d8','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-17'),
('37e863a8-9e05-43f9-8473-57bf42485b25','0bd6afc7-c317-4f22-9668-b45353a1d28e',80,100,70,0,'2025-07-26 07:40:26.442','2025-08-04 06:40:09.550','428761245-1-2'),
('37e94c73-d5f3-4013-888b-03afa8482301','d9f1a5d2-c0f1-4933-85c0-7d67a8550e21',85,100,230,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-3-1'),
('37e99aa7-82a7-4a7f-9469-eba135446c74','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:50.824','248135683-1-154'),
('37eac376-4b48-4356-99bb-393f3fb6da92','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-6'),
('37eb5cb7-1030-4ffc-941d-e3dc2e726ea4','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.116','24886445-1-12'),
('37ec0b93-22ce-469d-8f85-b83971f8cd43','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-132'),
('37ecd152-f656-48e0-bce4-e8eef23b9ceb','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-43'),
('37ee0a3d-4164-4993-8c4b-17b77b669e18','50577563-264a-47c3-ad7f-93a3a9e59474',0,0,0,0,'2024-09-27 14:05:56.660','2024-10-07 14:03:13.192','614460765-1-1'),
('37eebf74-5f30-4f15-977e-f2af5c2daa42','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-2'),
('37ef32e9-34cd-426c-96fc-f0cb010da185','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-37'),
('37f0c86e-62f3-45a9-8952-b5b444c6a72c','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-6'),
('37f1a013-c28f-427b-a0f3-ac8fb5f8cea5','4a5b7db2-dc5e-4f39-972a-37093584e9dc',120,27,200,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-5'),
('37f4b118-b1aa-4860-9f8e-d5ba6bd48265','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-3-1'),
('37f60d94-86e1-42f4-b223-55825daa4f72','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-5'),
('37f7110d-1172-4ae0-9a97-6d454468e904','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-11'),
('37f857c9-27fd-4196-b6ee-e200cfcd94ff','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.451','2025-07-15 19:43:15.075','437222135-1-6'),
('37f89518-3122-4c4a-830b-7728a7b9f093','ca465cdc-1a1c-4dc9-8703-e249c099992f',0,0,0,0,'2024-04-23 10:31:48.539','2024-04-26 20:12:15.906','614859961-1-2'),
('37f9049b-7350-43ba-a5a1-54c9a4431f25','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-23'),
('37fb6b64-e7a6-4923-b670-7fd479b1d338','ea9dabd1-827a-4f9e-9b28-301e5af3a89a',0,0,0,0,'2025-03-08 13:46:12.067','2025-03-18 18:32:47.945','745124199-1-3'),
('37fb90ed-ab02-4dbc-bd5a-2dc48792d33f','9722a553-1f9e-4d47-9697-a2ef95a51936',70,95,230,0,'2024-12-23 12:00:40.593','2025-01-07 17:27:56.920','428480095-1-4'),
('37fdb8bd-7279-4fda-8296-0bfd3e340472','733d947b-4145-4080-8edd-87c33f93d60e',95,95,60,0,'2025-10-20 07:18:07.350',NULL,'59856960-1-1'),
('37fdbff9-b8a6-4a06-af70-9c3171e7d972','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-151'),
('37fdccfa-9f04-49c3-82f7-832a417f16be','8fc7023c-7fab-44ae-a533-006d835eddb6',46,14,68,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-5'),
('37fdea62-aca4-4bc0-a189-fadcbddac6be','d1bf45f5-0074-4f90-aa36-647a6e5b5b53',71,44,44,0,'2025-04-11 13:41:52.989','2025-04-23 17:45:39.776','613853408-1-1'),
('3802f39b-3479-4506-8a77-6ba23f0ce118','546ad3d0-25c2-43dd-9443-e48b8e5b6530',110,65,100,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-52'),
('38038d5f-6a59-4664-9917-38b18c80fd43','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.319','478365640-1-6'),
('38056946-49a6-4f6f-86e5-598529920c7f','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-5'),
('3806642b-9e28-4b3a-a93e-b998809720c7','32c3a303-b84c-41ee-a5cc-be771a19b1d1',115,18,46,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-1-3'),
('3806a644-c842-4255-afdb-437b34dc1f71','39a2d7af-f64a-40e2-8bc2-27483789b401',0,0,0,0,NULL,NULL,'808294576-2-1'),
('38075495-1d98-455e-8ff5-994ca2cf8194','9950fe74-2437-4188-83e7-37a1e09fa6f7',112,20,187,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-4'),
('380760fb-4422-4ee1-8e08-0afe95bfabae','85510702-b7c6-4c86-a63c-4795fb24cb65',51,51,77,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-3-1'),
('3808757d-9c5b-4f1c-8edf-e1aa8d24089b','92e74cc1-8870-45fa-ac8e-6a5609a5c837',35,45,60,0,'2025-03-27 08:02:39.973','2025-04-09 06:26:25.853','22145224-1-1'),
('38095a43-57a4-4915-a3e3-1cb1aa59bf78','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-15'),
('380dd8e1-e9fc-4c2c-8ebb-afe409fe0b72','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-4'),
('38126b86-455c-4a4f-b338-e9acd494e469','bf2fbd97-6d0f-4724-b25e-47e019854e49',52,9,86,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-8'),
('38131d49-0688-43ce-ae1c-15e6e0711dfa','cc886e6e-44f1-40b8-ba47-5a6876af765c',56,83,108,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-3-2'),
('381320bf-dbac-424b-89e7-110c2d60dbf5','96449af3-c272-4a90-b77d-0790552dd455',80,75,90,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-12'),
('3813b521-dadf-4d45-af74-6af9da0bbf6e','e401ce6d-1f41-4077-903f-4deb32a0813e',245,100,65,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-3-2'),
('3818fc67-7d7e-4ed5-a944-c0c7d2848f8f','c71fdc71-df3e-48af-9323-d534b0931ff1',44,5,211,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-5'),
('38197af2-9c9b-449c-83f2-e3682a786f02','6b81ed22-c981-4a7c-9467-3ff418f2c899',49,49,55,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-1-2'),
('381a2374-4456-4e8c-9802-965142fa6bf9','15c51264-1610-44fe-b2b3-1798f688353e',57,82,101,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-1-2'),
('381adaf1-9c8e-4e3d-b86f-311b7b792578','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-47'),
('381b8807-c185-406b-b769-2fea96843881','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-43'),
('381e847a-7aec-43e5-8e65-4ac5b310a167','b4d98069-3d83-4da4-8f40-7cf8dd0aa2a8',10,97,177,0,NULL,NULL,'598697614-4-2'),
('3820b45c-294f-4952-a548-fdbe73cfcf2c','26a88534-d736-482b-a920-c717b09572b9',98,98,70,0,'2025-09-16 16:29:47.072','2025-09-29 12:23:01.142','371179895-1-3'),
('38243fd2-65bf-4988-abfc-86a922f7e6c3','587fc7bb-d234-4c16-8ef8-7a704c2be32a',73,100,53,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-3-1'),
('3824edb8-7d60-4799-a789-da8528558b58','841f7f01-a7cc-440b-859e-dea7f085dd74',185,35,110,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-6'),
('38258b62-6605-4bb0-99ee-f3fee532c252','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:39.118','248284003-1-98'),
('38259731-de39-45d1-8729-db9cd6ce2951','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-20'),
('382604b3-8961-46c8-8024-cfe82f8ac8aa','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-2'),
('382684f7-e5a6-46e7-8a1c-1f576ae89159','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-24'),
('38274db0-7992-4938-b7f2-4fd4f20d4004','aed57dfb-3aa2-4f6a-849f-51424a18ca86',42,78,125,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-8'),
('38277d7e-0f7d-4fff-a3a9-dc68cf98cf30','b6051284-5975-4633-84a9-2c666e0e1e39',1,1,1,0,'2025-09-16 16:29:39.073','2025-09-30 06:16:27.196','47822949-1-1'),
('3829f865-2913-4a58-8002-38c03f2bd3f4','44473b9b-ccf0-4acc-bdd8-c81f1d8d7bda',86,60,225,0,'2025-07-26 07:40:15.482','2025-08-05 14:06:23.753','478423651-1-2'),
('382b43ff-4c28-4247-ac24-5067fd9ebce1','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-74'),
('382c3cb1-c999-4780-ac5a-38b52f73879e','6be11964-ff08-4fef-811c-ae5e608bc5ca',92,8,240,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-1-2'),
('382d5fdf-627a-4e99-b8bc-93ec80cc7cf4','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-35'),
('382e0279-9d1d-4133-898f-cea2666fde86','3987bcda-6531-4738-8815-187fd84bf71c',135,33,20,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-6'),
('382e0fd0-be0f-49ff-b5e2-a45da8028396','642202df-ca75-465e-8036-f34da2dad54d',160,40,35,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-3'),
('382e3630-dbac-441e-83e5-bb3867b7795f','6114a732-dc0c-474c-bbb4-76211cbefcb1',70,98,115,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-2-1'),
('3830c9e5-4edd-486a-ab7f-d03eee328ea3','ab45478c-7fcb-46bc-aebe-fab160a476ef',85,75,67,0,'2025-04-28 07:40:29.966','2025-05-08 07:31:19.557','248359668-1-4'),
('3831d06a-7b8c-46c3-8eea-8376fe3011fe','1b975dd0-98b9-4adb-88bc-962d71cc7b22',101,63,200,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-7'),
('38340746-d214-47a1-874f-c2a9629f925e','c8fb6c19-43e2-4ce7-b399-76de54ff6c64',0,0,0,0,'2025-06-27 17:12:23.802','2025-07-07 06:56:07.768','478185886-5-2'),
('383a7ede-8a2d-4a2c-bc98-133e15102340','778a1f21-7000-4e0b-bc4c-8e24c82eca0a',230,75,93,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-4-1'),
('383be0e9-30fa-4836-9739-b57933ae7690','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-116'),
('383c7015-a321-4ac5-9c55-3d2868ec4d56','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-4'),
('383cecd2-9b72-41ab-863a-b8f1f4615860','e67674ec-4f16-41f6-832d-4bdbc7afcc39',0,0,0,0,'2024-09-27 14:05:53.006','2024-10-07 14:03:47.331','248864808-1-1'),
('3841e698-8b41-4975-8959-e123368fe2aa','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-2'),
('3841ff4b-0908-476a-8851-6668434fed34','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-75'),
('3846b139-49f9-4c21-adaa-a17998b94ece','32a0f08e-82b4-4d3f-919e-5021b7c38cf0',230,100,67,0,'2024-03-23 08:36:15.949','2024-04-02 16:11:13.712','449768376-1-3'),
('3848f895-1000-432d-ad99-4f1f3af9db4e','42b2ca3a-9313-4b97-901b-3859e34b21e1',185,45,28,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-4'),
('38532db5-6ef2-4c05-a7c2-936ffcf19e92','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-61'),
('385357ed-f0c8-40a2-b57e-6706fd195a4d','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-10'),
('3855c6be-0157-4acb-8b80-a874694aa3fa','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-12'),
('38578188-0da5-48f4-b782-558655b283e4','2e0ecff2-b03e-4c77-8804-bb606172165d',53,77,102,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-1-3'),
('3858a670-3cb7-4b4b-88e8-e4809671dc43','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-9'),
('38607bf4-3392-47c9-8b20-05008a78dd33','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-27'),
('3862a1ae-9b61-49f7-b058-10c7d818eeb4','c701ed0d-e722-4e4d-a783-3461ca228a9d',57,80,109,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-4-1'),
('38677b9a-7a32-41c7-ac36-da8291e7b728','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-21'),
('386884c0-7f26-4dab-9a6c-a492f9586d9a','10b7216f-e5f9-4de9-b36d-c05d44e9b3a3',57,76,101,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-1-2'),
('3868e06b-e3a0-4b41-abe5-7c1b42e6072c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',62,5,230,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.825','745485271-1-25'),
('386a7ac1-003a-401d-8768-1baf7e9753c2','9078f690-7464-41bd-aa0f-d35d75158aed',100,159,84,0,'2025-08-14 08:21:42.890','2025-08-21 08:13:45.093','43752518-2-1'),
('387236d2-d1ad-4d4d-8398-f4f3daf9d90a','cc886e6e-44f1-40b8-ba47-5a6876af765c',56,83,108,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-3-3'),
('3872e59a-125e-4c7d-a413-e207887931c5','ae9e9c82-84c2-42de-87ba-c07292fe079d',100,100,65,0,'2025-09-18 15:48:45.318','2025-10-02 06:11:13.650','644834421-1-2'),
('3874a05d-a6bd-47cb-8aa6-d1b6505a2a78','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',100,185,13,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-3'),
('3876afee-0778-4797-9d97-fe56ea616967','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-15'),
('387da440-c641-489a-852b-81be393efb96','96449af3-c272-4a90-b77d-0790552dd455',105,80,130,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-24'),
('387e7755-56c2-4fec-bddb-9d16c2306f5c','09ef7abe-b4ef-491c-951c-09430abea134',0,0,0,0,'2024-05-08 18:43:23.581','2024-05-21 18:45:40.660','478685156-1-1'),
('3881ba25-4043-40bf-a1f0-6bb037aff427','e9a2dbd0-228e-4a5f-a419-efe3b306e5f7',51,51,77,0,NULL,NULL,'221817193-2-1'),
('3882be7f-f9a1-43a6-ba9c-7cbdf42928f5','b9039b9b-ecf6-4419-a382-893676712c93',40,24,203,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-1'),
('38884dc8-df2d-4389-a9e9-d9f7ed36dddc','3952cb22-55e9-4578-a751-ee8895e55cf5',106,242,6,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-2-3'),
('3889c472-7057-4ced-b7df-3cbda9af5a32','07d8311a-40e2-4710-8c91-98b60be2e17e',120,100,70,0,'2025-04-21 06:13:16.658','2025-05-02 17:10:53.232','501703321-1-2'),
('388a0b29-fcd5-4a29-91a5-66e27884ec17','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.517','2025-04-25 19:39:28.225','64434778-1-16'),
('388d30c0-6a43-4d02-ba11-7f258529d4a2','b4b901d3-9cd2-4740-9982-7eb46cabc80e',98,70,217,0,'2025-05-23 14:05:54.830','2025-06-03 13:20:22.991','37142091-1-1'),
('389178a7-88e7-4275-b016-9306ebb79353','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-68'),
('3895916c-582d-4be5-8884-d3e76c690323','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-12'),
('38963844-ebe7-4dbf-ae51-9df6f491e22e','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-8'),
('3898aa77-d96e-4257-b18f-a78929c830e5','4e1a9822-f454-4da6-ad99-64bdb4e1f845',80,80,66,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-1-1'),
('389d4d5f-a64a-417f-a673-385c2899cb3a','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-8'),
('389eaf41-6c59-4799-a6d7-ecbc8596bc1c','cac592fe-4f73-47b3-b374-3028982419d4',75,93,81,0,'2025-05-28 19:09:19.363','2025-06-04 07:24:33.130','644507096-1-4'),
('389ee788-2582-4a84-b8cc-0462eb7216f8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-43'),
('38aaa87a-013c-4191-b5ba-85689f8cad73','2b95b149-0eea-4aa1-8465-0650e3c52636',160,200,27,0,'2025-08-27 19:39:49.134','2025-09-07 10:15:27.348','478502129-1-1'),
('38ab4f9e-7bd8-4727-b9da-8e91e8b1c7d2','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-37'),
('38ac794f-13a9-46be-968f-246940298ec5','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-60'),
('38b23931-bd3d-41f0-9fbb-36365b31b8ab','c38b4e0b-a453-4b21-9976-65cd3cc4d509',199,55,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-3-1'),
('38b28fd4-1791-499a-812e-c41076a86c73','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:51.939','248135683-1-74'),
('38b3674b-03c3-4f92-b9de-e25a39588fc8','b18cd944-b2a8-47b0-becd-29fd21a432c1',160,200,26,0,'2025-01-04 10:47:34.348','2025-01-12 13:23:00.339','982614868-1-3'),
('38b4fbf0-af52-4683-8816-169074bac747','b9d10e45-08f3-4b6c-adf0-6b6da3ea6318',81,56,110,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.847','437551575-3-2'),
('38b6512a-adb0-4dee-892d-c72d59aab190','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-8'),
('38bb2869-4a91-4243-87c2-a8734e25c9cf','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-25'),
('38be954d-23e8-42de-806e-f52e73e2d153','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-54'),
('38bf58cb-d429-45b7-b488-ed0dbb796d9f','7f11042b-3945-4eb3-b37e-a822894de6f5',11,10,67,0,NULL,NULL,'478777575-1-6'),
('38c006bd-a94e-43b1-a7c0-a7ca7dda79e1','1dd1c08b-81d1-4c12-a18a-1171b04b0808',98,70,208,0,'2025-03-27 15:05:42.380','2025-04-05 20:39:29.869','37197237-1-2'),
('38c562fa-ad8e-4e04-bb7a-b9b5fd7a49a9','86ee035e-15bb-41c0-a091-2eb029703094',65,95,95,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-1-1'),
('38c56e75-0dd3-4f9d-8afe-98faf6bfc833','9504c24b-6a37-4522-83ad-b302a5d583a5',67,17,88,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-8'),
('38c5a9b6-9357-463f-950d-1e29de709232','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-3'),
('38c96845-dcde-4792-912e-fa13ab507ac3','c29e76a4-89ba-4143-8fad-01a2910620ee',85,140,10,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-18'),
('38ca0b6c-f591-4de7-b7f1-735c35d2ceda','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,160,3,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-32'),
('38caf509-f32a-4bda-9edc-4f62860e93e4','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-1'),
('38ccc395-ba38-4e53-83c5-4101fd830303','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-3'),
('38cce58b-fa8e-4768-aed2-076f15e90c87','f6fbaf1f-3549-423b-93be-c9c9f9a68dcf',97,199,7,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-3-3'),
('38ccea2e-4084-4a37-a27e-96f33f0fc089','3535d433-eb38-4879-84b4-dbf8410809cd',210,45,6,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-20'),
('38ce682b-07a9-4ec4-9869-164d57e75ea8','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.619','734380041-1-12'),
('38cf6b29-9be0-4062-ad40-924347df5b52','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-72'),
('38d6be7a-dee0-4cd3-9482-dda1a720b443','585b23e1-d8ef-41f5-b796-16b2dd04a045',14,31,28,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-2-2'),
('38d6f5a0-2cdb-4b28-8d68-adf31f91e376','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-12'),
('38d8aed9-eeb7-4a16-a8e8-1795f25bffdc','be58b061-d13b-4150-9b6b-40941540f77e',240,66,85,0,'2025-07-12 09:19:02.178','2025-07-19 09:39:02.148','982708819-1-1'),
('38dadce4-82d6-4fea-b1a4-605d67da8aa0','d93f5d7a-7db9-43e3-8d9e-87cb0ef58425',93,152,14,0,'2025-10-20 07:17:51.379','2025-10-27 09:24:00.820','371434188-1-1'),
('38e2ded7-9d1a-4ab3-a753-d8d48c8aff72','4cb853fb-ed75-4081-be82-d68d6aa556bb',32,22,14,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-1-1'),
('38e3c6ac-bfdc-4848-816b-ce48c2cec4bd','e3274e26-e81b-4a5a-bc90-d5199ceb2caa',90,80,240,0,'2025-10-22 13:06:56.699',NULL,'910152598-2-1'),
('38e7f52a-0144-43cc-9d4d-5c7b8b1cbde5','9114ad70-d53e-4d1f-89c7-30585d0a43de',180,120,120,0,'2024-03-23 09:06:29.120','2024-04-02 16:08:39.591','146630568-1-14'),
('38e83b0a-0f09-415a-8884-1f7f9fa97eec','f134a126-2407-4b60-9673-09787c6564ab',213,92,60,0,'2024-10-17 11:51:20.558','2024-10-23 22:15:47.687','517914097-1-1'),
('38eb1437-c49b-424e-9c1a-f7010bea752a','7d19eaba-df15-41dc-b313-422bc8ab516b',100,173,70,0,NULL,NULL,'53182437-1-1'),
('38ec363e-f974-4c6e-94d0-50610ff0f051','93d194c6-8c22-469f-9141-d04ae150353e',82,57,110,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-2-2'),
('38eed02e-1422-4008-afb5-057e831d05da','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-6'),
('38eff705-120b-4527-b0d8-413924c2a083','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-6'),
('38f004fc-5c43-4904-82b3-1fad0eacfee8','ee746bfd-05a6-49f4-9eca-b7da110692d7',45,16,145,0,NULL,NULL,'428172853-7-1'),
('38f0b882-8204-4550-be9f-a903d9a106fc','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-194'),
('38f1de17-e069-4ad6-b289-90311eed9c35','e54055a2-3c9c-4738-a808-7a4a31877ef1',150,80,8,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.003','42837513-1-11'),
('38f2c909-22fe-425b-9c00-c5ac6d1924c9','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-1');
INSERT INTO `shipmentpart` VALUES
('38f2db20-9867-4557-8568-df3e2a22c291','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-2-2'),
('38f5029d-a7f5-46a9-bdc8-a121f2f35a15','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-150'),
('38f6cb9d-3fa3-459a-911c-f446f1106ffd','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-30'),
('38f8959c-eab6-4450-a76d-95e3855fac3b','dc4dd227-7e65-4643-a55f-0cbabe1845f4',75,75,65,0,NULL,NULL,'428172853-6-3'),
('38f93e27-f19d-4f1d-8b4d-677ac13dc205','d645cbb0-c670-4201-90d0-24c118165584',74,125,18,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-5-1'),
('38f9fe81-40db-43ec-b326-c5eceac7d082','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-31'),
('38fba594-dea3-41d9-a374-b5759c754599','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-8'),
('38fbf0ea-7f9d-4d72-bad5-6f60e130246a','82321952-2c8a-425f-ad1c-80144029e0cb',76,53,102,0,'2025-05-09 18:44:14.647','2025-05-20 06:23:59.224','371429381-3-1'),
('3900df35-9e8a-42c9-95f8-34f2532192fc','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',110,70,10,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-8'),
('39010b8b-0f37-4616-9797-9bca1ebdaae4','d4aaf1b1-4e37-4571-b354-b8933674055c',106,70,230,0,'2025-10-08 17:43:24.011','2025-10-15 08:13:18.159','910995300-1-2'),
('39039a67-ef79-498e-ae58-da404b1b177f','da08e17b-9c2d-4115-923a-b9a31bac47a3',96,197,6,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-3-3'),
('39039d7f-64ee-4a87-ae7e-79a7d34dd91b','378dc493-c6a4-4c83-98e1-1832a246c86e',51,51,77,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-1-2'),
('3906a5b3-2907-4f8b-96cd-ab917fbd5362','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-26'),
('39075793-bd33-400b-aaff-778bd6bb1388','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.537','598903023-1-1'),
('39076563-d5e3-414d-961a-dc5038a3ee5b','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:42.397','248135683-2-41'),
('3907b47d-42ce-4b98-a622-344e8ebf926a','7a97860c-cf43-4a19-988d-d91cf377fd10',80,60,90,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-7-2'),
('3908e590-118d-43c5-ae51-b0606a00916e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:52.566','248135683-1-71'),
('3909b4e5-8732-41a0-8e0d-e4e1e37067b5','6f5edc89-0f5d-4bf7-8539-15ef3e153ae3',0,0,0,0,NULL,NULL,'428905379-6-1'),
('391011c7-7423-40b2-a939-3357cbf909d2','6da50268-00e5-4c15-b11a-81b77c3b508d',163,13,94,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-2-1'),
('391157f1-b4b0-405e-b92c-58f96c541dc1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-33'),
('3911ca64-2e1e-4993-805a-49b7b1dd792d','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-20'),
('3912fdff-a972-41c2-ba74-9b3a2d0ff72b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-17'),
('39157064-6779-4bb8-943c-a697adeb4409','b18cd944-b2a8-47b0-becd-29fd21a432c1',185,90,26,0,'2025-01-04 10:47:34.348','2025-01-12 13:23:00.339','982614868-1-2'),
('39163f54-4e57-4d42-9453-3a220671e0be','2a0c69e9-2aa5-4e62-baa4-854f1483430f',57,72,100,0,'2025-09-11 06:33:55.311','2025-09-17 16:03:19.864','011697836-1-1'),
('39166aa1-371a-4644-ab63-5bbf515e8f52','0263f7f0-6c1a-4beb-ab78-25d69142647c',72,8,100,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-10'),
('391cde8f-baa5-4073-b4e2-c53be061caa2','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',46,92,10,0,'2024-06-08 08:00:17.835','2024-06-20 20:15:56.064','428138926-1-18'),
('391d85a2-55a4-4adf-87f6-7d8c736aa18e','4c4cf20b-abff-4c94-a2bc-14cac7fb53de',55,66,101,0,'2025-03-06 10:32:07.193','2025-03-14 11:07:13.433','613990071-1-2'),
('391e3248-6ec6-4287-a379-97fa4eec6882','0a72fe75-568b-40da-83ae-d78004c511a8',82,123,8,0,'2025-10-20 07:18:14.789',NULL,'61340935-1-2'),
('3926864f-f9a8-4858-a0d4-26f3bcc2709f','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-16'),
('3926d555-7128-4a30-a5e0-dc6682260d8b','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-6'),
('3927cc37-0bfa-4f8e-bd12-4cba9108138e','3535d433-eb38-4879-84b4-dbf8410809cd',13,168,56,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-28'),
('392b3770-d003-47e6-ab5c-5b89ef9267fe','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:43.705','248135683-2-5'),
('392b6229-6576-470a-a800-03641e199938','de4ad7a3-83c4-4f92-b28e-159332b39346',81,51,51,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-2-2'),
('392c87a0-f3fa-4f05-8bda-d5e018fc5129','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-33'),
('392d0e6b-dc74-496d-ba2f-e0b0198fdc66','7bb97173-116d-4058-8bc9-64fda10a5901',77,33,107,0,NULL,NULL,'531575051-1-5'),
('392ecac8-523c-4246-98dc-0b4c9925339b','437681da-5841-43b7-be0e-a63388bbbd07',128,95,60,0,'2025-10-22 13:06:52.544',NULL,'786146097-3-1'),
('392f0a46-b7aa-4fdd-847e-4982daa43c04','6fcd8160-ca06-46ab-a691-51de5c394793',53,5,192,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-9'),
('392f4c28-3b03-4d82-9e51-d215a140d925','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-1'),
('392feb04-cb41-4fe8-8e26-c3796af1e919','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-3'),
('393247fb-7562-49f1-8031-688bef2eae41','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-103'),
('393856ac-4082-412d-a406-83c693521a99','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-25'),
('393a61b9-7894-403d-8f61-5a2a2e946469','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-5'),
('393ab27a-98a6-4350-93cb-f87873a7f85c','d8b997b4-f874-47ea-b9fd-067dee0368c2',51,51,77,0,NULL,NULL,'515128101-1-1'),
('393c2fe8-a7d9-4c04-a0ae-e29701ed7554','c86269db-8ff1-458d-8f73-ecc40c58cc09',52,77,101,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-3-1'),
('393f0154-e838-46f0-b2aa-a8b1fdf6ef0c','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',40,40,50,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.704','437591433-1-4'),
('393f6858-cfd9-4e4c-8409-ed8ad8ee64fd','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-21'),
('39415d91-5c50-4e72-9b86-a0968ccdfba5','fcc0d1fb-e7c2-481d-8e13-58a0debd1ee0',196,96,6,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-3-1'),
('394198a4-2eaf-4de2-84f6-cb2229253f78','0fad58f3-27a0-40f4-87e4-10112791f0ab',51,51,77,0,'2025-10-25 08:59:08.075',NULL,'351519592-1-1'),
('39476d42-d782-44fb-8f87-de1e150adad4','3557e21f-77ba-4476-8e3c-5d5bb432eae7',223,93,40,0,'2024-11-08 18:02:49.962','2024-11-16 21:34:18.947','902159645-1-1'),
('3948d01e-1dd8-407c-b8b5-92e3b304176b','53464b3b-69a0-45cb-8346-b26d29c4ae86',53,53,76,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-2-2'),
('394cd8f6-9da5-424a-a6aa-909deb82a4e5','d0f4bba7-0b87-482c-9828-9f24f37e6ed6',51,51,77,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-3-1'),
('395a87dd-db1c-429f-9798-daef627d59a1','07d8311a-40e2-4710-8c91-98b60be2e17e',120,100,70,0,'2025-04-21 06:13:16.659','2025-05-02 17:10:53.232','501703321-1-1'),
('395c14d2-2459-43d5-802b-090ac8006db4','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-5'),
('395c50e7-c30a-4732-bd38-56ac5bf97a63','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-2'),
('395ca001-a9ba-4eae-8857-919fbd183c47','443751fc-e739-4620-b6a4-3b4b39d4da52',37,80,30,0,NULL,NULL,'428163052-1-3'),
('395e893f-f7a3-469f-b005-dd425dcfecf6','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-5'),
('395f79a6-aff3-436b-b2dd-644413ca3082','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',65,80,90,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.197','982555492-1-1'),
('39626cb7-c5e6-4e6c-bdaf-9506cfb169e8','733638b3-f981-4c38-8cdd-5eb1c0dd6243',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-3-2'),
('3962aa73-6163-4920-8cd2-f57eb850a920','3535d433-eb38-4879-84b4-dbf8410809cd',56,17,41,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-7'),
('3965bee8-66e4-4c29-8dda-d6102410ff9c','b2d959b5-31fa-467a-8e1f-cefc0166a15f',92,23,201,0,'2025-07-12 09:20:41.418','2025-07-22 13:22:57.741','803961620-1-2'),
('39660fd5-cfc0-465d-a894-614ea0394b56','d2f8d58d-42ad-4705-b1e8-a666af927fa3',39,38,46,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-9'),
('39673d51-e413-49f7-ac08-5f20df93928b','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-1'),
('396b204c-3218-4a31-8025-e6b1bb31b12c','e9626be5-ddcd-40d5-865d-7018bc1ef9df',100,48,9,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-4'),
('396ec413-ab43-4569-8a03-4e06caa0a065','50443669-b15e-4cc6-9bdf-b91285138cc0',82,48,11,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-4'),
('396eda60-0457-4dc5-a444-407929713627','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-11'),
('3976992e-0e90-4538-b90d-b3eff763bb01','b367aad0-f419-47d0-a902-3531114180e3',95,95,85,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-3-1'),
('39774bf7-cde9-48d4-9007-5a7d51472ce4','fb58f438-30e4-4e01-af6e-6378e27a11fe',165,90,18,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-5'),
('3977df19-6a5f-4b07-86ec-cfeda305d5b4','832915ac-d62f-48db-b00f-8e585de422bb',35,10,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-4'),
('3978f031-8310-487a-ba9e-c88eba21b242','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-75'),
('397bee46-6e04-452e-82de-564c8ef46e48','6aadeef6-4393-4005-8da5-51ca4e422dfd',117,90,75,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-3'),
('397da4d5-e148-4886-bf0f-7fbd6ca3062f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:40.518','248284003-1-83'),
('397dcbe5-3270-4c48-85eb-f2c34570e582','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-4'),
('397f1e32-763d-412c-8e4c-8a1708a2aa04','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-20'),
('39810c5a-b305-4254-b569-cf09feed7d72','86ee035e-15bb-41c0-a091-2eb029703094',100,65,72,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-1-5'),
('39872862-f44e-4733-b4f2-cb4a39ff85e4','c271b1b7-3bad-4233-a5e9-dd437e47d390',0,0,0,0,'2025-06-14 12:48:26.522','2025-06-23 09:29:45.131','412417235-1-1'),
('398b2b6a-af22-4f99-80f9-3950b1fb0de6','bdc15b51-242d-450f-a47e-a75e07f475a4',108,206,30,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-2'),
('398d4314-cd7b-4c54-8ff4-b56c9a4b7011','48a52c80-382d-403a-8339-88f26052eec2',45,10,63,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-3-2'),
('398e20ec-0998-4c2b-b06d-a401ef6dcf1b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-22'),
('39900550-4da6-4766-9abd-c29e727edeaa','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.067','223433822-1-8'),
('399069cb-ac5e-4107-ac62-150b1f1a0f17','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-21'),
('399452f3-a2e1-4ca6-a0d1-09f92028bbbb','5fc2bb75-5b7d-4cf7-8d56-ae678bb70e94',55,40,260,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-5-1'),
('3995f3db-4ed2-4c4f-a9cf-d0f02b8b1bbd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-223'),
('399f2628-7af0-4a28-a4fb-94829dd2ca5f','e6bddda4-b1df-4be7-bbd5-63cc4b197736',62,47,18,0,NULL,NULL,'42857810-1-3'),
('39a290f4-7aea-449f-a190-76566d0437bc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-135'),
('39a33c72-4c2c-4963-aeee-d80f48d8b322','7fbc0cac-4c11-4144-b578-3223cd9dd90a',48,12,80,0,'2025-08-22 20:28:54.259','2025-09-01 11:08:37.825','745485271-1-30'),
('39a41b60-0489-42ed-ae95-75e9b002c7cd','9a29c89b-7a06-4e63-88ef-c40eed097432',65,100,122,0,'2025-10-25 08:58:54.706',NULL,'371737204-1-5'),
('39a45b6e-1da2-4c12-b335-35ad60a08776','46fc3411-d64e-449f-ab52-edddebdc4c23',30,100,200,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-3-1'),
('39a46f7c-dddf-4eef-b71a-b39403de1466','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.619','734380041-1-13'),
('39a50895-cf40-468d-9d1e-17b04a5ddf19','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',27,199,101,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-4'),
('39a62812-140a-4d39-8716-033d34f5a9ed','4eb9bdad-63ac-4040-895e-79400bb9085f',0,0,0,0,'2024-09-28 16:27:33.485','2024-10-08 07:57:38.531','454880224-1-5'),
('39a9161f-fb55-46d3-87e2-13a7387a51d1','8c84c11f-8810-47ad-aa22-9fb50bc05d1a',65,100,137,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-4-1'),
('39a99cdd-cc94-498f-aac7-02c38810794f','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-26'),
('39a9c47d-994e-4c6d-9c77-0df1ce977b82','6060763f-09fd-4b23-9d16-0641dc9c453d',46,64,10,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-2'),
('39ae551e-f0cb-4252-b367-9743a90c8cfa','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',51,40,15,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-3'),
('39ae97ae-7ca5-45be-a23c-27d2e1fe123e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-106'),
('39b0d65b-ea1b-4b41-8a9f-f6f265d8417c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-236'),
('39b29d06-4c00-4f68-b3a1-1659f6afa079','5ab2416a-7bef-46c2-b80c-b65bde62a234',63,218,5,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-2'),
('39b6d0a2-69f7-45f3-af7c-9d1df72c1b03','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-2'),
('39b6ef16-df30-4587-b96a-4eb86d3fa2b5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-12'),
('39b77262-be4e-4cb7-b575-02a315a5f2e2','852cb596-91b3-432f-8aee-ec6a804f3a01',97,125,40,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-2'),
('39b87dca-c9ab-44bb-a221-d0f13dfed140','37a97bfc-766a-4865-bc4c-1c02e1ff86e2',105,97,70,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-2-3'),
('39b8dc8c-dbe6-42af-8c53-7fbab76a2975','618e1331-42cc-4157-b66f-62404be9162b',110,139,67,0,'2025-10-14 09:22:04.937','2025-10-22 07:00:50.606','808922349-1-4'),
('39b984b1-3392-44d9-9f47-a1de70dc8c48','e95ebe6e-cfa7-4eee-b276-6f464674325e',110,131,70,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-4-4'),
('39bf5ab6-f435-4f17-bce1-a8e588059e86','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-35'),
('39c175da-4e7d-47eb-8621-8265e6d94ee6','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-12'),
('39c23bad-9969-4729-ba6c-fc16cf97510d','e4b9eaac-f42c-4f15-afb4-d739f5a6a7a7',51,51,77,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.631','644243216-6-2'),
('39c28028-07b8-477e-af9e-456aec155494','d735327b-ac4e-4761-98e6-d9e2e53b4b8f',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-4-3'),
('39c28894-4988-4e68-b246-1f64b9dbc0dc','7e33f411-a309-4843-b994-1bcb7d71f292',100,73,60,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-6'),
('39c7840a-47fa-4fc7-8abf-58870050c72c','4301b768-4818-4e74-a6d0-12a33474f5c6',25,11,208,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-7'),
('39c89e79-18d0-48c2-b4e2-7df5bb14bf26','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-6'),
('39c8a23d-9f6d-4e93-98ca-f9ed79497996','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-94'),
('39c98968-c50c-4016-a2ea-f8a0872d9f31','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',16,7,165,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-16'),
('39cc16f5-b93b-4540-b94b-67e8858355b0','f63639f3-aa59-4a10-98a8-8b3cc509b6f9',75,70,78,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.371','517447554-2-1'),
('39ce4f8a-0289-4203-b164-358aeb899f3d','31ebb578-1bae-477d-b89f-f2d9614f22a8',99,100,83,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-1-3'),
('39cfc32f-43ec-45f2-ba5c-2fceed47ded2','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-17'),
('39d4a78d-8c6f-4310-aa3e-61a579a81659','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',93,58,21,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-7'),
('39d5567b-0e4d-493d-bfb6-25f1c83be519','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-2'),
('39d6703f-a76d-444f-a39e-dd2c4ff121ad','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-4'),
('39d71039-2c53-4d0c-a228-a34733cfdb6b','6a2d762e-11cd-4fca-b32d-cdba41391e25',210,6,57,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-2-6'),
('39e09fac-4275-42a7-9cad-cf7ea12046fb','04791454-cdb4-4c8a-bf80-d6f2c33e4300',57,226,40,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.319','338411614-1-1'),
('39e5a2d8-8437-4343-b9d9-305b2766b8a1','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',56,81,101,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-1'),
('39e63f7c-c5db-4c42-b125-7140bb9e5439','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.695','2025-08-22 10:59:14.817','223853931-1-102'),
('39e73d94-907f-403d-b8e6-946b74c8cc8e','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-2-3'),
('39e83515-fedc-4cd1-9cb3-68f81d89e52e','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,160,2,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-10'),
('39e89de2-93f6-4282-a55d-7a2e6b28dff2','c1d864c6-97c2-457a-ba23-bab224e0f781',51,51,77,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-2-2'),
('39e92e41-93f4-4a56-a123-aef4a2416876','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-9'),
('39ea7802-1cc4-4c7b-8dce-faff400e92e3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.952','223734808-1-87'),
('39eac2eb-6e77-4856-81cb-ef9713e1dd0b','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',79,5,205,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-18'),
('39f4e16b-5758-4826-8e20-5d195ed587e7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-92'),
('39f54090-5291-4376-b5cb-c2db24735302','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-93'),
('39f658f2-4dbb-41f6-9427-d052b5c002a3','4c9af956-747f-4f55-9533-cdcfab1e4fd2',51,51,77,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.710','675902808-2-2'),
('39f67556-372f-4928-9f83-7447976c282d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-37'),
('39f72063-007f-45e3-870a-509684a7be6e','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-39'),
('39f7af0f-43ea-44f6-b0cc-68fa77bd2227','489fd382-992a-4062-80fa-06d0adc63c50',56,83,100,0,'2025-07-19 07:51:57.710','2025-07-30 08:02:07.302','750505145-1-3'),
('39f7edf5-e313-45d6-9d1f-9e84cfb17ff0','045e5985-a61b-4e4f-ac79-e1b3998c80b7',103,56,80,0,'2025-02-20 12:14:56.827','2025-03-04 15:38:24.059','982824242-1-1'),
('39f88910-7f75-48c4-8028-47b0a4a5b205','4301b768-4818-4e74-a6d0-12a33474f5c6',14,80,58,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-8'),
('39f99ceb-9311-4544-9242-6787ec0000dd','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-70'),
('39fa52e5-b846-4593-b6ba-46c6f9fe9ce9','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-5-7'),
('39fec5fb-6ab3-4800-b84f-05c0f38a5064','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-4'),
('3a027297-6852-4930-bce2-9ba3f155abaa','0bf540a1-4e97-4b5e-bff2-523992ba0522',51,51,77,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.062','505948491-1-2'),
('3a031b76-4776-4bd2-9328-f8d46b48ac3e','e89e7d75-4967-4c63-9f73-981469e531af',54,54,39,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-11'),
('3a033a55-d0a5-44ad-a5d3-e4e114cd917f','9d2d299f-b0bd-451a-a318-5c7d807cea4a',85,57,110,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-3-1'),
('3a04fd85-e662-473d-8deb-74df85505205','2d715c9d-be1d-4641-83a0-5f2fc0061517',52,76,101,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-1-2'),
('3a058a57-3acb-4bb7-9e78-658daf317dbe','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-13'),
('3a05e75e-0d4a-4f97-b9df-1e5226877fa0','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',158,198,3,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-4'),
('3a0bb460-6b9e-4f87-b838-dde4d1ca94b9','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-130'),
('3a0cb131-303d-4b24-8ca7-814db6f24f7e','370a7590-6b28-4a62-8bc9-2de0a5c0a969',98,115,70,0,'2025-09-16 16:29:13.363','2025-10-04 13:36:32.358','437712381-2-3'),
('3a10c001-3337-4b06-b2a5-70f226c6c91b','542ee35d-c24f-4975-8b8a-369163028c10',101,55,81,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-1-3'),
('3a1434ed-d15c-4e48-b686-466618707f44','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-241'),
('3a162fb3-1500-4b52-a1ec-00c8970b7473','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-2'),
('3a177f6d-4776-4a3d-a1a3-61099d5c7218','8809d2f7-18c1-42c1-aed8-715d42bf5e65',55,30,77,0,NULL,NULL,'976462703-2-2'),
('3a19eab4-380b-4e2e-a6e3-f7b4abbce1ae','0a8285d0-d3db-4298-8e41-62c5429f150a',60,48,43,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-4'),
('3a22fc8c-431c-415a-a759-5f5e30865a01','7aeed7d9-4ae5-4fd9-aa5c-7529961da994',98,98,70,0,'2024-04-08 08:57:53.481','2024-04-24 09:14:57.411','315164103-1-1'),
('3a258944-e77c-4bde-90a8-d972644683f3','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-20'),
('3a268eaa-be46-4553-9c5b-70dc542ce838','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-53'),
('3a27c807-6b33-436e-b708-81ea28697a9c','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',75,70,75,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.258','449208438-1-1'),
('3a29bd56-43f1-4c9f-a72b-834f60486eb6','60c43f35-00d8-42f3-bf85-b04a49183371',159,96,16,0,'2025-08-15 15:03:02.477','2025-08-21 16:36:49.269','437514624-3-1'),
('3a2a0ae2-eef0-4d5f-8d04-966f9de7262a','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-36'),
('3a2af6fe-5a42-443f-a3d4-7b67bb7a055b','115aa366-1d90-47fa-a4bd-cfd120425cc1',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.965','976568852-1-1'),
('3a333127-38cc-49aa-b1b7-f1b1e512808a','96b29df9-d4cb-43b6-888a-d226e592e88a',110,96,50,0,'2025-09-06 07:20:41.172','2025-09-12 22:09:37.741','5312778-1-2'),
('3a34da5d-98fe-49ee-a7ca-9484370e239e','a8240df2-bc04-464c-afdc-dd0bdbe1643d',86,16,99,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-5'),
('3a351487-507f-408f-99e2-9c45cdad2d93','7c85f504-aeb0-4278-bdea-15616c0f4fb0',0,0,0,0,'2025-04-04 17:27:53.276','2025-04-07 11:35:23.400','24891590-1-3'),
('3a386f9c-cb67-481f-8970-bdb358fb63c1','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-6'),
('3a3a74c2-823f-46c2-9b7b-805acc313a37','c5027968-9a23-442a-bebc-9b8745408960',72,98,4,0,NULL,NULL,'982759064-4-8'),
('3a3c77c9-0cc8-4992-81c2-90c4b8899a6f','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-1'),
('3a3df61e-a470-4f0e-96ca-5dd98b23508d','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-24'),
('3a3e6e5f-5ee6-4d9f-b5df-80d201a8b267','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-12'),
('3a3fbf6b-215c-4cbb-90da-c3c7ebec7181','6f8fd929-0228-4fd9-a182-83fe855d3f5c',20,96,11,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.511','962908456-1-4'),
('3a4084a4-1325-45eb-bc62-a2d89b84cbfd','73de3918-2f08-47da-b796-b97c2383ecec',28,44,243,0,NULL,NULL,'221407742-2-2'),
('3a43fa87-2a8b-417a-932e-9b104cefd74f','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',83,42,6,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-10'),
('3a43fe82-6c30-438b-85f2-c0a38a04039c','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-8'),
('3a4415ef-aead-4ae1-b1d0-35e4512a2a6f','d0ade823-74de-4507-8f72-ff3352af4bbf',70,49,33,0,NULL,NULL,'428407424-1-6'),
('3a44a155-ef25-4098-988f-0bf26930e9b3','4682f070-54f3-4dfb-9968-6d7ce01b22f0',110,206,11,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-2-1'),
('3a457db9-4074-4c5f-9b25-1007ab0dd59b','ab45478c-7fcb-46bc-aebe-fab160a476ef',110,100,77,0,'2025-04-28 07:40:29.966','2025-05-08 07:31:19.557','248359668-1-6'),
('3a4a2510-bba4-4c72-bdd7-a360c50b8d80','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-3'),
('3a4b82f8-83fb-4acd-8292-cf9845364c51','03ad506f-f86b-4dbc-952f-52b01e2467fa',228,120,10,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-18'),
('3a53c1f8-f2a2-45aa-abf9-50929f3a0f47','c98f6188-56c5-4870-be97-be71cf95f62e',80,53,53,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-30'),
('3a5661d0-90d5-4c6f-a971-0708f08fefad','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-13'),
('3a56e8bb-22e2-477e-b54b-968dc31c77c3','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',0,0,0,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-6'),
('3a58959c-68c7-4b42-bcc7-4142eda79025','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-21'),
('3a59709c-0015-45a2-937f-1854784a68fc','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-89'),
('3a59a3ec-4042-4ec9-94ef-b519192e352e','a2f34510-a7f6-4abd-ac03-e7c577feca03',17,30,212,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-4'),
('3a5ccb38-b5ab-4c6a-86ea-ba9b6ba4546c','b4f5f7f7-67e7-4052-a423-6c6bcf2257a3',94,93,80,0,'2024-09-06 12:28:22.833','2024-09-12 10:54:24.707','455165840-1-1'),
('3a5f26ff-df23-4889-b137-722f27dc361e','f0a43129-5f51-488f-bd5f-ebd20137e40e',0,0,0,0,'2024-11-12 16:15:37.508','2024-11-23 19:56:09.399','745940979-1-3'),
('3a601d1a-610c-4e8a-9351-61795b5eca7b','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-6'),
('3a61bd72-0a86-4d46-a323-3dc2511611d3','df96f137-ec2e-4a27-b5f9-d4177b6ebb5f',0,0,0,0,'2025-02-20 12:15:11.603','2025-02-28 12:04:46.694','982408783-1-1'),
('3a63afb9-a5d3-4dfa-8d22-4869dd6fe81a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-222'),
('3a67e06c-1e64-41b5-b497-a593f6e674d2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-40'),
('3a692562-7326-4c50-8002-46e6c6548eee','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.817','223853931-1-16'),
('3a6e2fbe-04a8-4932-a972-33363a9e2c90','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-2-4'),
('3a6e3293-205d-4401-9907-78b418dd5e4b','778350cd-5627-457e-9aa3-334a2ccc6781',28,23,20,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-2'),
('3a748849-d474-4df5-8cdb-5257ce4f3411','41a755a7-afba-440a-a117-478fbfdbfd19',96,65,275,0,NULL,NULL,'478545195-1-1'),
('3a76e8c6-69e2-4545-b6df-29f97f71fec7','7fbc0cac-4c11-4144-b578-3223cd9dd90a',36,36,215,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-11'),
('3a7a4d68-ba2a-410d-827d-7dee932ff8a9','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.538','2024-04-04 12:47:51.273','412565065-1-9'),
('3a80c5e9-7b6e-4273-b355-b7189771d825','f8dffc2f-656d-4485-a0a1-ced4b9cedd31',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-4-1'),
('3a85473f-d375-4f9c-8bd3-735867a8a791','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-24'),
('3a854e02-20de-4789-a4b4-ae1c7a15aebd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-34'),
('3a86a982-c940-4e83-bb47-04b4fdd2ed1b','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-17'),
('3a8859bf-bbe8-437e-aabd-7b2803115a0d','150c9863-b37f-40fe-af3f-a5e800c4d9c0',76,51,51,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.121','644550858-1-3'),
('3a8b2745-4c3b-49a2-8c33-61fc32ce7428','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-2'),
('3a8d8793-7dc6-4596-ba2e-b9e954b8bcbc','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',80,110,114,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-2'),
('3a9067ea-2d7a-4c44-9bbc-644cee1d4f23','847447cb-cb81-4f9f-9f95-ff50b1304b30',35,25,11,0,'2025-09-11 06:33:55.955','2025-09-17 16:03:29.946','437397407-1-5'),
('3a954e00-a88c-4ee1-823a-1bca67f604cb','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-18'),
('3a95d10c-b037-4a21-88a8-ea407fbf7f46','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-3'),
('3a9a92e8-ec41-4bc6-97dc-f1a46aa51087','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-3'),
('3a9b9417-2d0a-4c4b-a08c-fddd9102cbb4','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-2'),
('3a9f652b-b016-44d2-bf44-137e109406e6','601003c4-c08a-4b64-839d-d5ab37e7595b',96,75,83,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-1'),
('3aa02d6e-88e4-4b38-bf83-6c9dfe95466f','6aadeef6-4393-4005-8da5-51ca4e422dfd',120,65,60,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-4'),
('3aa21972-8f98-4be5-a345-d1dc4e4821fe','60fb62a4-8365-4095-8f73-1e4ce71568c0',58,26,103,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-2'),
('3aa53d93-c483-42b0-a506-7ced531baafa','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-35'),
('3aa8f442-4e20-4750-a1cb-9cba56f97ed8','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-50'),
('3aabe8e8-6c6b-46d1-b5ab-d43250cab457','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-4'),
('3aadb800-4011-4801-abfb-ad0666c0a541','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-6'),
('3aae128c-bcd1-4899-8519-307b0b2e4cc9','a33dbb59-89b3-44c1-bbb5-026af12ad486',51,51,76,0,'2025-03-27 08:02:56.176','2025-04-07 17:30:11.059','64448364-3-1'),
('3aae9555-7ab0-4f3d-90ad-c0ff482ff207','03ad506f-f86b-4dbc-952f-52b01e2467fa',102,105,85,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-19'),
('3ab0f10d-d2b9-4a3d-894b-7a7d996fd692','4301b768-4818-4e74-a6d0-12a33474f5c6',20,40,67,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-9'),
('3ab54a44-41d4-48d3-a6cb-9554b2d0e2c6','6a2d762e-11cd-4fca-b32d-cdba41391e25',142,12,45,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-7'),
('3ab5b011-a16f-48e7-bbe5-cc699ef85ef8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-42'),
('3ab7439f-d3ec-4c43-ad9b-db61e48cf499','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',180,30,30,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-2'),
('3ab8a2b3-16c9-4226-9581-1f0dfadaa8b6','8fc7023c-7fab-44ae-a533-006d835eddb6',52,8,86,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-6'),
('3abc638c-64fe-489f-be28-93f3ecc802e2','52c1c51d-da24-4385-88da-ce34429dabb7',61,57,82,0,'2025-06-21 04:33:56.316','2025-06-29 15:02:31.408','221758948-1-1'),
('3ac43ca1-cb4d-4268-8809-0c5f9e549d68','052ad905-3da0-483a-aae7-9d36b31da379',200,90,2,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.569','428122550-1-1'),
('3ac47803-7267-4b3e-b0e5-274be5ddd1ae','73669d80-682e-4907-9777-0f955189f4bc',120,100,65,0,'2024-03-18 07:30:48.607','2024-03-22 07:34:46.866','501901219-1-3'),
('3ac4c89e-dab4-43d2-98e8-8782619b5f3a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:42.126','248284003-1-42'),
('3ac8c43b-c96c-45d4-9957-3d67a505d893','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-17'),
('3ac9d91a-ca3e-42f8-9e62-6784176ad563','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-159'),
('3acc6b7c-0133-4a3b-a94a-7d914b265f19','8fdb1f9f-ce3b-4900-a3ad-0a817d4437e7',51,51,76,0,'2025-01-22 09:07:08.975','2025-02-01 17:38:09.630','221481972-1-2'),
('3acce220-1208-4760-b9dc-5d041e5b5934','d9b1c3ef-83ef-4aa4-a68d-db1d57a35912',52,91,75,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-3-1'),
('3ace06b7-10c3-40c0-88bc-14bcdfc266fe','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-10'),
('3aceea30-6b9d-4ed9-8ff2-2d976c3671f6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-37'),
('3ad21434-9456-4c27-ba10-ec8b1e4b108a','71186865-547c-4404-a1d3-c309f2152015',90,100,105,0,'2025-10-14 06:22:07.545','2025-10-22 07:00:39.223','412722649-1-1'),
('3ad2fc68-a8cd-4848-bab4-bfa8b69d6cf3','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-36'),
('3ad496ae-4a82-4b90-8170-f6791a58aaf3','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',31,41,210,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-4'),
('3ad6ecfb-94f9-485f-ae82-8439bc0cf4d8','dce6d95e-9737-4ab8-a170-277f7cbd445a',24,53,220,0,NULL,NULL,'47816855-4-2'),
('3ad8057a-6042-4fd3-a9a4-bff36e9075ba','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-5'),
('3adae3ce-31ae-4d7c-97f1-1f7ac36ead3d','f0485a78-951c-4f89-bddf-b2003f0bf783',13,92,160,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-19'),
('3adbcf45-d7f8-404c-81a3-8354f51bccfd','5bd7aa2d-458f-46e9-a082-a599e9a49784',200,75,95,0,'2024-09-19 18:27:46.736','2024-09-25 12:59:09.871','449417757-1-2'),
('3adbfe11-061f-46ec-9b2c-596551481ab0','d176a715-bd33-47f6-bcb7-f384e079f39a',70,56,64,0,NULL,NULL,'501724603-1-6'),
('3adfb601-96b7-45b6-beff-bc46f3a86953','953ed9b4-8d37-4981-a491-9ed5406ea97d',51,51,77,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-2-1'),
('3adfbabb-1827-4003-8006-0b9e990ec618','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-81'),
('3adfe7d0-8f2e-4eb4-bccb-c8a1225b9797','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-10'),
('3ae1e564-95b5-4acb-a43a-3159ffcb2cee','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-54'),
('3ae76485-4388-46fb-983d-c692bf3a9a4a','cf13fd34-bd50-4310-937b-eee4652efc14',0,0,0,0,'2025-01-22 09:07:11.020','2025-02-01 16:36:30.863','478224735-1-2'),
('3ae815b2-2e5d-4661-a218-d4eb41e6fee3','bf560fb2-0b91-485a-bf70-cae59896df3f',230,90,70,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-7'),
('3ae8ccb7-53ee-4b92-94ef-26d0a2fe5ee4','7ba47169-83ca-49a6-98fc-6ef1a1990eac',210,60,2,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-8'),
('3aec0dd3-6c01-4015-b5a0-8eb4da5db6b1','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-22'),
('3aee8c3d-1471-461e-80ea-53836e7f97d4','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-51'),
('3aef1cb2-66a7-457b-a1e9-19d52bde84ec','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-119'),
('3af31ed2-604b-4958-9859-f997a72f07b4','e8b58cc1-698b-4364-ae95-f00b90174c08',46,67,14,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-8'),
('3af6ca84-16e3-45b9-a797-e8fad290d9c5','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-6'),
('3af8de0e-64fe-44da-a8d9-051d6e16fa1d','9504c24b-6a37-4522-83ad-b302a5d583a5',17,82,90,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-9'),
('3af91408-6810-4518-831c-1af307fd839b','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-3'),
('3afd6f09-f3ee-48a9-bb46-af51e3b598ea','135906fa-fceb-45b1-a401-83de82461319',80,10,135,0,'2025-09-26 12:39:13.889','2025-10-09 09:24:47.313','319585140-1-3'),
('3afe13af-6cd2-4b5e-bf39-b146027c5ec0','4ced19c3-d724-4c04-81f5-38ec0a0161d6',160,94,70,0,'2024-12-23 12:00:50.893','2025-01-03 19:31:52.612','501212768-1-1'),
('3afe7968-c482-463d-89c9-6b071b7d2cbb','7f7e8df0-7a2f-47d0-8add-150b2200e309',86,17,128,0,'2025-09-16 16:29:31.131','2025-10-01 08:00:26.782','478816988-1-1'),
('3aff0f7c-848f-43da-bc30-843b27801b6e','e178636b-b1d9-4260-aa1b-879946fa7f5d',65,4,220,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-4'),
('3affcb18-3b45-46bd-87d9-8532cd5953fb','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-1'),
('3b02d98b-4ed3-49d1-8655-63a04a8296e9','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-12'),
('3b035871-c730-4705-ba0a-5d19c9aa93f0','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-16'),
('3b070fe5-5782-4c7b-8707-bbd4c6754579','6f8fd929-0228-4fd9-a182-83fe855d3f5c',214,15,22,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-5'),
('3b071b7d-0329-4ceb-98b3-b8739210b995','b79c9c03-f101-41f5-a37a-01d796fa6d5b',98,206,70,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-3-1'),
('3b086bff-b45c-428e-91eb-f85ebc865aeb','ecc8a619-473d-44b7-bc3f-58005b885517',98,110,65,0,'2025-09-30 07:39:35.702','2025-10-03 06:54:27.923','644783664-1-5'),
('3b13b0ac-d589-46e3-817c-0a58ef1b3414','49c326ab-5b3b-49e7-a781-28760709b5be',225,60,95,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-1'),
('3b16f2db-57ca-472b-9875-4712d142bc98','cd005e98-fe25-409a-a9ff-536308cf8ab6',93,71,222,0,'2025-06-11 13:14:46.907','2025-06-17 16:02:05.831','910201328-2-1'),
('3b180cef-69ee-48d4-9ccc-a60e58a323e0','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-2-3'),
('3b193847-a6e7-4e60-abb7-bdddfdfe43ff','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',160,48,13,0,NULL,NULL,'428413605-1-5'),
('3b196c99-cc3e-4c32-843b-3f27733f09cd','8d8d7e39-f8c2-4085-9ac6-93f2c29e0897',79,201,25,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-2-2'),
('3b19a1fc-d929-46a8-af0c-b7b28a8b4a61','e54055a2-3c9c-4738-a808-7a4a31877ef1',215,44,9,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-12'),
('3b1d8394-c2ed-4c3f-86e7-11e5d2bccd74','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-64'),
('3b211f93-f758-421d-8e01-b2c697bf0283','af69c5a3-87d3-4548-a650-720b69a4fc69',162,29,8,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-50'),
('3b21f33f-b5ae-4bfd-a09e-c54f0eb5caa4','0263f7f0-6c1a-4beb-ab78-25d69142647c',64,5,82,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-11'),
('3b23f7eb-9be8-4578-ae27-cafa15b83ba9','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-6'),
('3b25620a-b00d-4afe-a049-f58ccf6ced6e','b6d04ed2-f29f-400a-ba86-37b36b0830b2',158,198,3,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-3'),
('3b28c494-9277-437e-b9fb-9f03e8213060','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.850','2024-06-10 13:50:10.455','745724680-1-20'),
('3b2a77ed-77ed-4b50-824f-edf3ef723de4','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.845','2024-05-21 18:45:33.371','734936220-1-4'),
('3b2a9dd5-a698-405f-8588-0aa5a9d26425','6cee1429-9935-4eae-be32-dc630b6d70e8',65,16,13,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-10'),
('3b2e0e77-2470-4495-b482-aac407c96ab4','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-13'),
('3b2e5115-c98c-4db6-88b5-538d24609b88','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-23'),
('3b33f34f-7a86-4dd2-8990-5d52db6b85bc','ce4976ba-e974-4470-8acc-c28f5a58a2e9',16,16,105,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.735','478221533-6-8'),
('3b3551b8-35ec-4717-8cc4-7b934aac398a','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.745','735553146-2-17'),
('3b3838f4-3004-4994-afa7-2f5ccd5de77f','f550b581-aef2-457f-bbad-307433755791',106,58,85,0,NULL,NULL,'613495902-5-1'),
('3b3d0be1-01e5-439d-80c3-429a75f84a7a','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-37'),
('3b3e0ea0-a516-4367-a561-14d6f41dcf3a','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-27'),
('3b40627e-ecf2-4f98-b1d5-29c26dafbdd8','1f47f4f7-d248-416a-a50f-29dc04cd5570',200,160,28,0,'2024-03-30 10:55:00.100','2024-04-03 08:28:11.225','982320922-1-1'),
('3b4298e3-c417-4a71-afe0-dd35a6b60b04','e2de9cd4-e8e6-48b8-aa91-52920db0471a',112,82,57,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-3'),
('3b42a0e5-6b69-42ac-be88-664f7451ecf3','886e0e1a-c599-47ba-bacc-c329212cc55b',43,4,210,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.557','478730420-1-17'),
('3b42c5a0-4e14-4b7e-b48d-b7aa88e12788','9021f98a-5560-40bc-8478-4da85897fec7',44,44,74,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-5-3'),
('3b45ca25-6c33-498c-8da0-6314dc37c4c3','8173a4b9-15fd-4a7c-89f4-c9f0540e10aa',158,20,77,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-4-2'),
('3b48ae7b-cf52-4803-a2c8-6213083589f7','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-43'),
('3b4b0601-8bb2-4dd1-bccb-ca8ad03eb3ac','d0ab4125-494e-44f7-a732-9602289cdd76',57,82,105,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-7-2'),
('3b54230a-89c8-4bfe-80e3-77af51dec463','064e955b-72f7-4dfe-903d-af71b421e048',48,210,6,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-8'),
('3b57b85c-0449-49ed-93d1-3439a3387413','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-37'),
('3b5871c6-3d46-4985-aaed-c8377cef46bd','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-10'),
('3b596228-dc5a-4c8f-88e2-6c291d226497','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-184'),
('3b5a6d2a-f15c-408e-b50d-f40f461a5665','6d2958d8-12ca-41bd-a12b-58082d5c955f',47,7,224,0,NULL,NULL,'614364554-3-2'),
('3b5b88f4-ed63-460a-b22b-63be74bf44ec','46d1512a-2bfb-476d-a224-9390f3e194f2',177,15,2,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.420','412395565-1-9'),
('3b5e84ae-dc1f-4430-9e46-ff3d1b6e1b75','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-2'),
('3b652d5b-0d82-4f17-a59c-c1d7278f5acd','be99e41f-406c-4044-b60a-ad33dea43bd8',90,70,70,0,NULL,NULL,'319400399-1-1'),
('3b657512-2ecf-481a-a9c4-53a9364fc7ec','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-39'),
('3b69469b-34c8-4967-b049-287dc958fa91','6a2d762e-11cd-4fca-b32d-cdba41391e25',67,11,10,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-8'),
('3b69c409-0e52-48f8-918a-18ac3b40096f','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-34'),
('3b69d877-ef79-404c-85d8-575b4ae470e7','c5027968-9a23-442a-bebc-9b8745408960',45,10,127,0,NULL,NULL,'982759064-4-18'),
('3b69ea92-9353-4ec5-ab96-ca82e387518c','70025235-c3ff-4d6e-b849-3c76df68e036',0,0,0,0,'2024-09-19 18:27:43.471','2024-09-25 12:59:16.338','745132796-1-1'),
('3b6ccd16-036d-468a-923f-f99a5904d37f','79a59d43-7fea-4b06-9f5e-bdc9d6a89664',0,0,0,0,NULL,NULL,'478825542-1-4'),
('3b70d833-2bb8-4aa5-b0df-abffd5f72d95','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-39'),
('3b74b69d-0352-4589-9cde-007987d73555','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',230,95,80,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-38'),
('3b74cbd9-85a3-489b-86d9-e90683a0b85e','577ac94f-b889-4af9-8d01-96034f38a36e',14,14,154,0,NULL,NULL,'478739679-2-3'),
('3b7942d4-e5c4-4dba-9bb4-20970cd4cbbe','09ef7abe-b4ef-491c-951c-09430abea134',0,0,0,0,'2024-05-08 18:43:23.581','2024-05-21 18:45:40.660','478685156-1-3'),
('3b795781-a7ff-444c-9889-fc2b9f8059c1','d157292a-9b96-4a01-b210-9211e153e2de',82,55,102,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-3-3'),
('3b7a57ba-a842-4fa7-be3c-4b74ccc383d5','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-25'),
('3b7ab917-3652-4969-a1fd-105c6dd6682b','eda2bfa9-32de-4996-9c79-f610f66e73c8',96,198,5,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-3-1'),
('3b7f03cc-faa9-46d1-b5cc-9e3c79123aa9','d7c129a1-5024-443d-aecd-2d1f690185ad',0,0,0,0,'2024-09-28 16:27:24.146','2024-10-09 08:37:08.450','478504480-1-1'),
('3b82b669-ebe1-4252-8a93-e700126ddbf9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-137'),
('3b8612c0-ebcf-4309-909e-39d7a0643714','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-106'),
('3b90b6ac-9783-4843-93b7-ba0d2b28c3aa','2eee4732-1804-4c17-a865-bc66f2ed3520',43,43,40,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-1'),
('3b99f0b6-2f44-413e-8521-b3233895e680','9cf2d55b-f29f-463e-a172-17eeb3bc4556',52,73,101,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-6-1'),
('3b9bd59f-9c89-448e-b4b6-305668864b24','260811f3-a8b8-44d6-a76f-27315dca3f65',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-3-1'),
('3ba13146-be65-4106-9ed0-1853de4e0601','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-17'),
('3ba45d64-b764-4244-ac2d-37faef641296','2bccb692-372c-403e-ac17-f092cc8d56e0',230,90,80,0,'2025-03-11 18:06:02.855','2025-03-17 23:30:53.310','982431907-1-2'),
('3ba50457-99bf-4741-a96a-73de36d4ac60','49b0262b-aeb4-40b0-bdcc-b5461a64c972',59,13,260,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-17'),
('3ba7aae1-9881-4a27-8531-dea332d322d9','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-6'),
('3ba7ffe0-de23-479e-9151-eaa350f14f39','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.567','2024-04-12 17:26:52.448','268188607-1-7'),
('3ba86cf2-1642-4209-97e4-a2541f17268b','a307363c-9911-4bec-ab96-f2419bd7e6fe',44,44,40,0,NULL,NULL,'9823833-1-5'),
('3ba8fba0-1c2f-4d44-9d5a-e47e24baa4f7','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-1'),
('3ba9e083-9ba6-4c00-bdca-dcd10e32817d','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',94,98,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-1'),
('3baa8191-9a24-4f85-b4ad-58cc8c5009fb','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-63'),
('3bab6991-55db-448a-85ba-b26d94f48bbd','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-18'),
('3bb08ad9-a724-499a-9278-17660ad25c20','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-68'),
('3bb19847-2cc0-47ae-a46b-d10fcee01ea0','c3d0ff20-91e1-44ac-afa5-c3dd3f70c550',86,88,115,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.127','428653750-2-1'),
('3bb203d8-3a38-4aba-bbc5-873a178ec311','d6b091c1-330d-473e-86ae-6ededb40d96e',0,0,0,0,'2024-12-23 11:59:58.153','2025-01-11 09:48:43.702','735258843-1-3'),
('3bb2a88b-9b96-4243-9eb5-e317d457af1a','26983e4d-fafe-4a1f-a87c-716366e4cf0f',65,86,66,0,'2025-01-26 10:54:38.004','2025-02-07 11:21:19.005','127530070-2-1'),
('3bb76ab3-0dd0-45d0-a7ac-35f7a22a2929','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-47'),
('3bb95a86-acd6-4880-ab58-8ee53e0811c6','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-49'),
('3bbbb3ca-0f1d-4215-bb26-8dc011e2094b','d8896502-ee1b-4969-b484-104bc8965f47',270,95,62,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-2'),
('3bbe6114-dac3-4252-8913-af13e0d58b06','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-31'),
('3bbe6e10-6eaa-4dc1-a089-1186081e2a4c','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-3'),
('3bbea01b-2cd7-4f68-9a4c-edaa5c820553','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:53.103','248135683-1-7'),
('3bc51160-c9a3-4fa6-9ef8-4bbcb6021779','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.057','223441694-1-100'),
('3bc882f5-b99d-49bf-9617-226e5d8fb84a','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.775','745481313-1-5'),
('3bca59ec-5aac-4d94-a5a9-aad3c639df98','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',45,60,68,0,'2024-08-07 15:03:04.521','2024-08-14 13:45:37.984','61428079-1-10'),
('3bcd9e33-d516-4b3b-b511-1bd89a468058','b6319fbc-ac5b-4323-8326-06724cade598',91,100,53,0,'2024-04-08 08:57:41.781','2024-04-29 09:07:28.433','982984016-1-1'),
('3bcdb659-b84c-48eb-972d-3c86f68dc783','d83c40d1-4df5-4c97-bc83-28837db95b2b',47,38,68,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-18'),
('3bd24fa6-25d4-4122-b6ff-bf1939b4915d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-50'),
('3bd557eb-a7d1-46d1-aa16-27a24ea77ef8','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-14'),
('3bd5db0c-6eb6-46d6-9ee9-8868da3d284b','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,51,30,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-26'),
('3bd9415a-1712-4230-85f3-09a4754dbb47','43024ca8-3408-4c20-962d-cdaf0ea11687',96,96,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-1'),
('3bdd0080-3d12-485f-9d6e-332beffce182','4cbccb36-ce98-48a1-99e0-56eca97abdb8',9,86,87,0,'2025-05-23 14:05:19.701','2025-06-06 17:34:50.226','221530805-2-1'),
('3be02af9-0389-4026-8724-55df8afc853b','2c694b03-719e-4436-94c7-b64621e4940a',51,51,76,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-1-2'),
('3be08bcb-61cd-4a57-bc6f-0990f57dbd72','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-5'),
('3be23f91-83a2-42a6-8f8d-39a3bc147785','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-24'),
('3be2895c-d344-45e8-9a25-403baa369185','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-10'),
('3be313fe-f7d9-44ac-8328-f16449fceb62','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-44'),
('3be34c7f-d72a-44ac-889e-0c3ae2705f2f','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-6'),
('3be4a1a8-5303-4219-8d60-dec416d01233','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',30,103,202,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-5'),
('3bea633c-e419-447d-92b0-87406457a9fc','7e33f411-a309-4843-b994-1bcb7d71f292',100,90,60,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-4'),
('3bea9411-1922-44fc-a2f7-99e72fec530a','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-13'),
('3bf2caf2-f616-41fc-bde1-b0ff12f5c527','f88c3e53-b711-4bcb-aa3d-9543580054cd',83,95,120,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-34'),
('3bf44ebb-c9b1-4cc8-aff7-27622333b2c6','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-45'),
('3bf51c91-aea2-449c-aeef-dc8cdcee148d','c71fdc71-df3e-48af-9323-d534b0931ff1',66,82,6,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-6'),
('3bfb2cbc-8991-452e-9f8b-39fe82ee294a','c3fe21d3-5610-4a96-9492-67597bbe83bc',49,49,6,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-5-4'),
('3bfd2a81-c658-46e7-a51f-73d6307c85ce','cb620780-a9a0-4812-a480-2a4cbe6c4b05',87,87,68,0,'2025-10-22 13:07:04.647',NULL,'412223405-1-2'),
('3bff2958-661c-4cf6-821e-592eb9c11cf1','0ca7b5c8-7608-49bc-9057-d56d835fbea5',82,57,100,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-23'),
('3c030efc-81d1-48e4-9ba9-8d1b7cfea304','dc3f18e7-09f7-4f48-a550-413323aa1fa7',190,60,90,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-2'),
('3c03179d-d8dd-48bc-95a2-3f93317e406c','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-30'),
('3c060d4b-0bb5-4e3b-a3f3-b6eb5b7a819e','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-4'),
('3c06b24b-e0c2-4e5f-94ba-173d602205c0','7a1383f5-b919-4384-8104-0058a54fc111',40,27,68,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-1-3'),
('3c06ffa6-d927-4bc0-876b-d33f41daf628','7f36cce6-f7f1-4611-81da-27e098ff6a33',60,60,90,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-2-3'),
('3c0baaf7-60ed-4644-9651-fe77913977ee','b73ab880-f311-4908-a4ff-7a2d1d67a990',1,1,1,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-3-1'),
('3c0bc3d4-1fe8-4e20-b9f4-1329ccb383c1','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-13'),
('3c0c1326-0cc2-4443-acaf-00850366ea39','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-9'),
('3c10c122-549c-47cb-8ff8-91649a201043','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-26'),
('3c117028-48df-43d2-abd0-314b490afd39','919abdcd-92a3-4f54-8e52-871167a8810b',7,103,163,0,NULL,NULL,'598944852-3-6'),
('3c121ddb-dafb-41fd-bd63-79f14d9c1c18','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-27'),
('3c13ade0-90fb-4c0f-8958-7d1eeb7f770e','3748b1cd-e92a-46d3-9822-bcd08e57fe11',50,65,65,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-1-1'),
('3c16d3d0-996e-4e78-a18c-09d1bda78fec','6b29fcf3-79cd-49b9-b2fa-ca1518066509',56,11,260,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-3'),
('3c1a497b-a04a-43df-8181-40f9963bf5e7','9212dfa8-08b3-4e92-93bd-a594eaf017b6',70,230,10,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-2'),
('3c1a7bad-0ebf-4990-a698-6b7fcabc0f0a','3f3bf1d2-c329-4e73-b2a6-5aa55d893969',95,230,65,0,'2024-12-23 12:00:35.871','2025-01-08 20:28:51.874','449329901-1-1'),
('3c1b2567-392a-4d87-9d34-e7f1510f6786','f702dc4e-af8e-41dd-8ba7-0b404624d574',0,0,0,0,'2025-01-11 15:20:09.430','2025-01-19 14:52:25.259','750704426-1-4'),
('3c1c7024-9a6f-4e71-9ea0-125bda2f1567','e89e7d75-4967-4c63-9f73-981469e531af',90,55,9,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-12'),
('3c1e1766-0add-4daa-a766-ab0505fea291','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-32'),
('3c21fcf7-80ef-4e62-bffb-00c06ad54e97','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-16'),
('3c2474b5-52e5-48c7-ba3a-9a53243daf9c','b49cb98c-d264-4e82-9dbe-f0420dad505a',100,55,45,0,'2025-10-22 13:06:52.544',NULL,'786146097-6-1'),
('3c24a708-5183-4745-8197-22b46ff022de','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-10'),
('3c25a7a7-95b8-4e62-95e4-1bf18e596c59','47a05ef5-3932-411a-a9c2-2cd1bd57b99d',51,51,76,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-1-2'),
('3c2635ad-afdc-4ea7-9494-fb9dbbf676f3','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',128,25,50,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.684','614725757-1-10'),
('3c29e64a-24d1-417e-890b-6ce128b55030','e65249b7-09e7-4653-bd04-1233b551b8c8',185,110,65,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.175','319316615-1-3'),
('3c2b4019-fb0b-4bfa-9d1b-44c2172c842b','5cc511ac-d64a-4fef-86ed-1703c5e7eb90',0,0,0,0,'2025-03-08 13:46:06.876','2025-03-19 12:35:53.698','655583517-1-1'),
('3c2bdbcc-8ab7-483e-a3e4-c738d5259476','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-28'),
('3c2db1cf-ef96-47da-8cd8-8f0c78ba8237','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-62'),
('3c2e273f-232c-4952-9711-eede2bf41d35','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-2-2'),
('3c33a2af-0e18-47bf-89a9-85be31722e1f','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-33'),
('3c3d776d-68a2-4d00-b528-e8b1fb5e3fa8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-232'),
('3c3feebe-b8d3-43d2-9cdb-664ac391f9d8','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,83,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.023','8087036-1-1'),
('3c432d5d-cf61-4b10-b353-c7f46cb517d7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-146'),
('3c4475fb-9152-4a22-b5c3-2c8346a95091','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-19'),
('3c467094-cdf8-491d-8501-a9e8c987baa0','57ef4979-842b-4b07-84ef-752e1f28ee7d',44,39,57,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-1-1'),
('3c4b5141-5957-450c-a90e-9c57345e69e0','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-39'),
('3c4c720e-9b2c-4a60-800d-d56da40420d6','b1e25181-d908-4fcb-b5f4-98f1985c7698',96,50,50,0,NULL,NULL,'644303406-4-2'),
('3c4c9c90-4d63-44f1-9242-04cdcbed80b2','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-2'),
('3c4d2ec0-fc80-443f-9e8a-da0b0831f252','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',78,46,20,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-34'),
('3c4d5e12-9273-40c6-8d71-4cf0c9e8d518','4ae9c5f7-6cb9-4957-b510-4e19119dcafb',101,76,53,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-1-2'),
('3c4e5dc5-d022-4f33-a2fd-38a24ddd38b5','19c6a32c-4384-451a-aaa5-dfc264ab827b',38,10,78,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.340','517895646-1-5'),
('3c4f3ec0-9b10-4890-b8bf-797e13f0b3da','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-3'),
('3c539b50-7486-48e1-a62d-21a7693c040b','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-1'),
('3c57eeb6-cf3b-44a5-8ee6-b880bb515467','b4e8b5be-8fa4-4819-8d9c-1aa6cbff844d',53,77,101,0,'2025-04-28 07:40:18.914','2025-05-10 20:12:44.485','644615727-2-2'),
('3c587952-f37a-4691-ac64-9488f4bdc446','6114a732-dc0c-474c-bbb4-76211cbefcb1',232,74,98,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-2-2'),
('3c58921e-5607-47ad-8e86-f0bad1a11821','e891b961-f9b8-41f5-b49e-f492048bd8c9',56,6,183,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-4'),
('3c60ffe0-28db-4e92-a2bd-c1b30086b97e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:41.354','248284003-1-168'),
('3c68edb2-58df-4885-a936-8096ba3581f5','81b00513-9ac4-4aef-8fee-fb279e70ca3e',80,77,65,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-3'),
('3c694436-89ae-4943-998b-18c1609c6869','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-17'),
('3c6c7bf3-c943-4a9b-99c0-3b9f02bd7cfc','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-23'),
('3c6eca40-3034-4e7b-bf55-587e1fdfc273','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:55.045','248135683-1-66'),
('3c71e275-3a56-4d4c-b561-1b63b1311de9','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-32'),
('3c7461d1-94b8-4f18-8932-5bb25dfb1af5','3fbef21f-32ef-4868-925f-a3a2c46dae90',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.957','745717474-1-2'),
('3c752ab2-4a9a-4d2e-93cf-1ab2ad618487','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-17'),
('3c7686de-51b3-40ac-b210-89d744d8b718','c51cf533-511d-4f61-a94c-3e48074db45d',40,64,82,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-2'),
('3c788490-2c6b-4cbf-8fb8-39a9d875ef91','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-19'),
('3c7b9e8c-a079-42f5-9991-57752b00cac0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-129'),
('3c7f2b15-dcb6-427d-ac65-fdce8c94dec7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-63'),
('3c8037c3-04d0-47e1-a510-a85e7e4ccb5c','fa806a1c-a3a2-4576-9af2-cff69901ad3e',0,0,0,0,NULL,NULL,'140421350-2-1'),
('3c80a98f-9d64-4adc-9a2a-ef1a4c9f9903','555b2841-46e8-45eb-9191-165bb36234f5',65,90,80,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-3'),
('3c83db4a-fcf1-4b2e-89ce-c2437c4a0b01','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-42'),
('3c853121-9709-4770-834f-79f61a4ec4d0','6d0390ef-65ce-4154-a607-d67e51938ed2',120,200,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-2'),
('3c861bbb-781c-4eab-b359-5ca9a73d642b','0263f7f0-6c1a-4beb-ab78-25d69142647c',35,41,216,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-12'),
('3c86413e-c555-4afa-b184-7a9cb510c4a4','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-76'),
('3c86a529-05d8-432c-9c82-bef522ebb37b','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-84'),
('3c88a6ab-abcd-4240-9a98-118ee864acda','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',118,58,6,0,NULL,NULL,'478350685-3-3'),
('3c89e773-beb2-4add-a489-8a7ecafb2919','c98f6188-56c5-4870-be97-be71cf95f62e',48,42,42,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-40'),
('3c8fe66b-db44-4467-9b0d-fe4b510f7ca2','4dae2c46-63f9-42b5-9288-01744ed81ee5',83,83,7,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-5'),
('3c920937-3097-45b3-bd01-61f26e80cc8a','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-2'),
('3c93cd8e-94f4-487f-a894-bf0095920c38','5a768734-74b4-44fa-8896-4be9106b7b5b',80,105,110,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-3-1'),
('3c951cb0-3f38-4557-822f-e90a85cd9c4d','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.817','223853931-1-43'),
('3c95532d-178c-487b-9f30-2afa8071219e','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-3'),
('3c96f476-d33e-42b5-9737-46d4af9d5fa8','a4f356be-d4f4-498c-9119-e35100832eb1',42,30,80,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.015','982314530-1-5'),
('3c97a83b-0c78-424b-8259-d1cf05550243','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-5'),
('3c97e3dd-cbe6-4071-9e27-b4c7c576cb5a','6b29fcf3-79cd-49b9-b2fa-ca1518066509',15,8,151,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-4'),
('3c9834d9-e963-4450-9b74-48dd7919dcfa','0a8285d0-d3db-4298-8e41-62c5429f150a',215,44,6,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-5'),
('3c9a34c2-ba08-4b07-a24e-bd8fd672148c','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-4'),
('3c9ed708-c4af-44a5-bd1d-e877bf0f9a37','9248be40-4180-48bc-9c4e-50a1e7dee4f1',202,102,27,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-5'),
('3ca0e2df-1fc6-4316-9b30-94854bcf4b6a','692498cf-64f2-4260-8e57-e8b680a64cdd',98,207,29,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-1-1'),
('3ca21dcb-e43a-4505-8c33-c60200bd3adf','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-36'),
('3ca67257-bff8-40a3-b17b-b934be50a5b0','5f35db51-2991-408b-82a3-7e6b54acabab',51,51,77,0,'2025-09-18 15:48:39.770','2025-10-02 06:11:36.370','221724224-2-1'),
('3ca6a5d1-b200-45be-86dd-6dca99bd2e5c','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',113,13,130,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-6'),
('3ca6abfe-e1c8-4163-b7a3-9e2262e7b8f6','7311f1e0-e2be-43dc-9e40-f94a010e8939',24,28,16,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-11'),
('3ca7d79c-58c5-470d-a30a-b24edc1301e2','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',82,120,10,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-4'),
('3cabc366-0ffc-4053-b301-9de089cd575a','41d63bdf-b3e0-4aa8-a76f-ffceee8b0290',51,51,76,0,'2025-01-26 10:54:28.814','2025-02-08 15:05:06.582','221440431-1-2'),
('3cac1d0e-936b-4d18-8ecb-813bb19c99b4','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-5'),
('3cad94c8-80fe-4f2d-b906-f6d35cf16674','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-7'),
('3cb02d3e-fcb0-41e6-b522-dd6f9dcef065','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-3'),
('3cb074b4-405e-49d3-9972-389e41852a00','c3ac41cc-e814-4fa6-aef1-11c9d37911f5',70,97,125,0,'2025-09-18 15:48:59.201','2025-09-30 06:45:01.426','644879098-2-3'),
('3cb150bc-b2b8-4e32-bfa8-d6ef99544d96','88373dc6-277e-4d79-8537-6fc1534daf48',77,60,60,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-4-2'),
('3cb1fbd7-dfdd-4dab-b702-53a62c763fbb','8279654b-3e57-43ba-844c-f5985ec2ca90',114,93,60,0,'2025-07-12 09:19:08.718','2025-07-17 19:16:14.064','982893962-1-2'),
('3cba27d4-6e92-48cd-bd4f-70bbb8b02e35','46d1512a-2bfb-476d-a224-9390f3e194f2',198,153,3,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.420','412395565-1-10'),
('3cbb1a26-ca9f-4669-9374-1c1b7f83a32b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-57'),
('3cc0b5e2-a194-45a7-a8a6-12326e57c34e','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',80,97,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-1'),
('3cc11991-360e-4980-af83-fc68adf2d34e','d2be0913-8bad-4bc5-b776-f2050b939197',65,100,70,0,NULL,NULL,'982759064-5-1'),
('3cc558b7-c0a2-46dd-8297-94ee6527c1d1','48a52c80-382d-403a-8339-88f26052eec2',42,63,20,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-3-3'),
('3ccbba0f-4f15-42ae-8d54-2dd524c9adad','76c744b8-92cc-490a-9b47-df670d09d9d1',0,0,0,0,NULL,NULL,'695274055-1-2'),
('3ccd3b0a-e70d-45db-923d-ca324e28a13d','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-16'),
('3ccf8173-6103-45e4-8461-8229f7813dfc','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-48'),
('3ccff512-0512-4346-8552-6628b349f822','6302f68c-26c4-4a31-853e-80b9d1ba59ee',60,25,20,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-10'),
('3cd31fb4-0806-4244-b381-f30356e503fd','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-8'),
('3cd5b100-0805-4e3f-bb24-82b53aaea91f','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-16'),
('3cdab025-de13-4479-b8d0-0fa61e81d801','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-13'),
('3cdb073f-7d9c-4aa4-9136-719f336796a4','778350cd-5627-457e-9aa3-334a2ccc6781',70,94,88,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-1'),
('3cdcd588-8000-41ce-a7b2-ad2399e71033','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-35'),
('3cdd8de1-4800-4807-bce3-df65b232c47b','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-6'),
('3cde52ce-1a17-41b1-8f6e-f90df7c1ea73','8dd2c090-c3cb-4f5f-9b42-8f83f29410df',73,54,100,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-2-2'),
('3ce2b129-c3e6-430f-b1c9-096f2cf727d5','bbf524c3-27fa-486f-bdf9-142bac6ace56',230,100,65,0,'2024-03-16 14:34:23.702','2024-03-25 10:42:32.899','976751266-1-2'),
('3ce6b555-5e04-415c-b8ae-8763d8a8a1a1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-2'),
('3ce8e4d0-80ce-4d1b-9d32-6ff1858a8ab3','9866a947-9974-4053-8415-4518842488fe',58,41,18,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-14'),
('3ce8ef91-dabb-48d0-ad16-50a02675323d','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',80,3,208,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-5'),
('3cea1370-d80d-452a-9a7a-8d9560f1587a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-22'),
('3cecbb9b-1c6f-40e6-9db7-90763822f71f','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-82'),
('3ced4d28-6f56-4625-ba39-91ded86df678','9504c24b-6a37-4522-83ad-b302a5d583a5',63,8,218,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-10'),
('3cef8179-a8df-4452-b869-a98517b4122a','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',19,75,72,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-7'),
('3cf45523-89b5-473b-a9a7-e722e2e10fe1','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-64'),
('3cf637ba-9129-4454-b30b-745a9526e0f1','796fef16-71d1-4946-b8ba-54f687adf598',100,92,52,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-6'),
('3cf66ec2-f44a-4543-80e3-55d0bd03dfb8','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-6'),
('3cf6a4dc-af7d-451d-b6a5-47007f52bbb9','0ca7b5c8-7608-49bc-9057-d56d835fbea5',42,42,75,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-18'),
('3cf88b2b-4d0a-4106-9e15-237aaddfeccb','5ecc2bd3-1fb1-4c1b-9901-f80f9be07662',85,53,105,0,NULL,NULL,'47816855-1-1'),
('3cfb066f-2e0b-4a85-8bdb-2345d2ad6260','3da17157-28be-4bae-8dcc-745d0e93e591',95,90,55,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-15'),
('3cfce986-e082-4d8b-b912-417ce8e416ee','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-1'),
('3cfcf8d0-114c-4985-8d1c-59a8a2dd8022','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:55.681','248135683-1-247'),
('3cfd2f20-b9be-4d6b-8870-d308dc55ff2f','fe32e52e-e41e-4849-a30d-cfd7abd60e35',0,0,0,0,'2025-01-20 11:21:31.902','2025-01-28 20:44:54.688','231717770-1-4'),
('3cfeeea4-5812-4e1f-b8b2-fae168e1fbee','0a8285d0-d3db-4298-8e41-62c5429f150a',64,40,26,0,'2024-10-02 09:26:30.808','2024-10-10 16:32:01.340','428499287-1-6'),
('3d00fd4c-2163-4435-89e2-ff88d068174f','72ef762d-fdc9-4544-903d-79a557b03bde',96,14,189,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-1-1'),
('3d0439d0-8d31-4901-86f2-cbc65bdd4bed','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-16'),
('3d093bbd-5418-46fc-9486-beac8696b006','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-18'),
('3d0c19b8-b6b1-4a4e-b937-03ab7c831fae','3ba27633-a526-475c-9e24-fa446137f6ce',100,80,118,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-2-5'),
('3d0cfe57-fd8b-424c-b16c-4339b0cf7eb4','2d6cd8ff-fddf-499d-ad4d-717285b10f9e',38,38,76,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-2-2'),
('3d122fa6-fcd4-407b-8ecf-cff437869202','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-18'),
('3d141582-401e-4a39-9df2-650d374b9b5d','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-68'),
('3d162166-69af-46cc-8371-9db953d92dfb','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-14'),
('3d18e7a3-3ca3-4953-9025-06ebe2d55aff','a5cdffba-1912-41c9-a08d-d35f47958738',130,37,91,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-3-1'),
('3d1aaeb5-f4bc-48a0-8539-e47feff28e67','4301b768-4818-4e74-a6d0-12a33474f5c6',7,153,50,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-10'),
('3d1f3726-37c0-450c-a355-6ea56e3b4fe0','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-1'),
('3d2255a5-d158-4e2e-b8c9-46039d85f476','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-9'),
('3d238c6b-2ac4-4939-8ae2-3c290ad55275','42d4331a-0080-4fca-8777-5a26c0e34df6',230,94,70,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.158','644711459-2-1'),
('3d25362a-675f-4f02-a700-c16b2c1681c7','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-3'),
('3d269316-a627-4f20-a413-3c5b6937a88f','07db21ff-c0e3-442a-bf22-b6f2f41656d2',86,88,6,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-1-1'),
('3d29be03-d122-4877-88ef-925ff8b3c5d1','aa76bb26-a6ba-4b2a-8254-e340f23c2fc1',60,6,212,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-22-1'),
('3d2a63ab-4567-44a3-97a2-4c8e6a6245d5','8fe29599-72ef-42ee-9679-c366178fc1f4',65,33,126,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-2-1'),
('3d37eb60-84d0-41f7-8f34-8ee6fce849df','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-16'),
('3d393ce5-8e03-4ae5-8ed9-a6fc65e5040b','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-3'),
('3d3c10ec-c78e-44a9-a18e-638b23f4334a','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-40'),
('3d42508f-9aee-4649-bc34-ce2b17f19c8e','6c23f9f6-3497-47dd-84cc-1eb6d89bd740',100,135,65,0,'2025-05-24 17:55:38.201','2025-06-03 09:41:07.359','31925609-1-3'),
('3d43f2f7-aad5-45ad-9a6a-ce933c7cd7bd','f88c3e53-b711-4bcb-aa3d-9543580054cd',99,92,67,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-26'),
('3d457f98-b223-46d1-8e27-85a8704dac04','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-5'),
('3d463e75-2b51-4ca7-bb1d-3246c91b4836','635711a9-ff02-49d9-9082-6c29292a043a',33,33,52,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-3'),
('3d4d533b-302f-4ef5-b1c4-72a12076a0f6','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-36'),
('3d4db568-cba9-484f-aa1a-33534e52446d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-128'),
('3d4e8763-a80b-463a-b83d-e724757130fb','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-12'),
('3d4f69d8-a42f-41e8-8b42-2bd5393cc252','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-11'),
('3d50f9d4-2467-4203-ab17-c616305394fd','c7fce8c7-acfd-4c12-8db5-81618a4b211d',39,49,26,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-21'),
('3d5261e7-7eac-424b-911d-0175d03a0833','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-65'),
('3d5289d7-0486-4549-bbe3-84e114e5a1b0','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',100,122,60,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-1'),
('3d5915ec-afb9-45b8-bdd5-9137c12af0b8','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.585',NULL,'412400536-1-9'),
('3d597193-668e-4e72-b5fc-cdba04f13cbc','2d658946-ced3-434b-8d47-2c22df2eb95e',115,61,18,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-1-1'),
('3d5ac48e-01d6-4757-b869-7e8e56f0f426','b23cf296-f843-4492-9697-0fd43d657771',106,80,56,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-3'),
('3d5f9b78-4080-4c65-b2a9-bc0bd9de8718','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:56.472','248135683-1-220'),
('3d626e3e-2850-42c3-8e0c-fa6945aa8b2c','af69c5a3-87d3-4548-a650-720b69a4fc69',80,75,65,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-7'),
('3d6366fd-c075-48d9-af87-f454e9c6309f','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-3-15'),
('3d64c377-8cba-45e3-81b0-ae23df6c5ef1','e1601d35-cc40-41a5-8e8e-8005a1281654',196,6,50,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-5'),
('3d678c86-9a98-4c90-8cf5-0094a4184610','5114defd-dd85-45fa-a3af-522574ed305c',65,36,78,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-1'),
('3d67e7f7-03af-465d-8fb1-28fdc2e68cd8','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-14'),
('3d680753-a714-4132-8dfa-1bc3ca99fedb','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-4'),
('3d69522c-5871-4ee8-ac81-31722f1ca71f','a322199e-9388-4cdc-a475-2497cf269eef',90,90,7,0,NULL,NULL,'501589922-1-4'),
('3d696655-bdac-4f4f-b0b9-8dbf42c09770','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-7'),
('3d69ce5c-c258-474d-97fb-3d028b63e89f','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-49'),
('3d6ad9a6-c0a0-48da-b64e-117e36c4bf32','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.387','2025-10-17 06:12:49.749','644606140-3-5'),
('3d6b3f06-d322-4a53-9e4f-b9e9d926b9bf','2b95b149-0eea-4aa1-8465-0650e3c52636',99,26,196,0,'2025-08-27 19:39:49.134','2025-09-07 10:15:27.348','478502129-1-2'),
('3d725c07-6abe-4e93-93af-70e5bc3e36b9','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',80,78,100,0,'2025-03-27 15:06:17.555','2025-04-05 13:45:20.920','319141495-2-1'),
('3d7cd03b-5e3a-4522-b763-5885b6233821','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',130,197,15,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-1'),
('3d7f86cb-4191-4d9b-9018-b335669ddc60','0fe6d0bb-346d-4029-b0c9-5d01dca21872',0,0,0,0,'2025-02-03 18:18:32.727','2025-02-14 15:00:22.989','478370539-1-3'),
('3d812f00-6d20-477d-893d-6c696ba5a28f','dc390da6-4128-4077-b3a7-07f6a89a5beb',75,100,120,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-4'),
('3d83903c-0852-480b-880d-3940c7c72427','6098bfd6-9976-47f8-a799-df79295948c1',43,47,8,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-4'),
('3d86ba07-05df-4615-9edb-12ccb55fe8ad','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-3'),
('3d8d6123-a801-42fd-9ed8-bbd4daff43f9','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-68'),
('3d8fc410-69ac-4006-beea-811d37d7eaea','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-15'),
('3d91c929-3820-4541-aecb-865bbcc78159','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-32'),
('3d92ae3a-c940-4dc9-b6d6-75c7d78b3f9d','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-10'),
('3d93cd4e-9fa7-4c27-b4e9-f7092c085c94','c3d0ff20-91e1-44ac-afa5-c3dd3f70c550',66,43,93,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.127','428653750-2-2'),
('3d9626a9-3bf7-4586-b9fa-0b99b3086661','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',158,35,200,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-3'),
('3d99edec-69be-4a98-82ce-cc30958e3cbb','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-17'),
('3da1f981-7872-4b3f-87f2-984f9012263b','b4183fd9-691f-4e50-aa3e-1185b3e78cff',220,92,70,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-14'),
('3da206fa-a0e5-40f0-b602-63e7f691c57a','60c43f35-00d8-42f3-bf85-b04a49183371',51,51,77,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-3-2'),
('3da353f9-f5f6-435d-85b5-16802bcc3d86','8d936761-2bc7-4386-9965-cc7665cb6779',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-3-1'),
('3da51f3b-dc3d-4e37-af2f-7f880cd2d1d0','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-1'),
('3da734ce-315c-4334-9423-8437fce1336c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-5'),
('3da76bfc-bb6c-4fd6-8bfa-6214a7411a21','27e2ce5a-dade-42bf-b4bd-0468323a08cf',65,125,100,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.086','478524376-1-7'),
('3da7f3b7-9025-40ab-8d0d-b6e7ea9c9a09','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,7,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-20'),
('3dab328d-30a1-41ad-92fc-18b8df2d8940','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-115'),
('3db00b23-1906-4f10-bc2c-34c792028153','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-11'),
('3db27e06-0b3f-44e2-b2f3-2843750d6394','66fb1f1f-5cda-45eb-abc6-d7e04b3ff904',1,1,1,0,'2025-03-27 15:05:45.141','2025-04-05 20:39:06.079','465194627-1-2'),
('3db325ad-20c2-41f2-a477-84102e548bc1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',130,60,9,0,'2024-07-02 08:19:59.901','2024-07-18 07:32:21.068','412586204-1-40'),
('3db533e7-8836-4a87-8f8e-55b2f5be7aaf','fcf2d3c6-3f79-42fd-a564-dc62e7679d3d',55,42,35,0,'2025-01-04 10:47:46.499','2025-01-08 10:30:55.332','248539327-1-3'),
('3db71bc9-3a18-45c0-b403-ef7008a8244e','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',52,52,94,0,'2025-10-08 17:43:46.255','2025-10-17 06:14:23.899','380453463-1-3'),
('3db741d5-df81-48d3-9e76-d01617487994','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-7'),
('3db7a0c5-90c8-4293-b790-7c82d8796f4b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-134'),
('3db8cff0-393d-44c6-adfc-2ae83f15a888','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.995','223963997-1-4'),
('3dc527b3-1122-447b-b645-e4af9375bcec','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-14'),
('3dc6da6c-ed61-415f-8674-69d611c6599c','a78eafba-d112-44f3-a32b-fedce65f49ef',82,55,75,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-2-1'),
('3dcc6269-371f-42ed-b989-ddfefdd6deae','6302f68c-26c4-4a31-853e-80b9d1ba59ee',93,68,14,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-11'),
('3dd17b5d-c519-4fc9-ad44-f347c58e0498','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-2'),
('3dd29988-ce6d-4e23-aa11-e569e6fb69f3','368574ad-455b-429e-98df-eb01c78f0d8e',40,40,50,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-2'),
('3dd3ecd4-2f38-4f51-ab32-ad94c78fbddb','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:44.391','248135683-2-53'),
('3dd48d1d-4aff-4539-9795-7758886b1240','d12e3c4e-7d14-4f36-a4a9-4e21c2b9d611',40,19,70,0,NULL,NULL,'478412191-2-1'),
('3dd5d888-3c65-4d6e-95cf-ca10081885ed','585b23e1-d8ef-41f5-b796-16b2dd04a045',99,124,65,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-2-3'),
('3dd6a964-d67e-441e-8667-4650644b369a','ef0f1181-3c3f-4dc6-8245-bb89aec09c30',28,20,10,0,'2025-05-14 17:03:46.983','2025-05-24 17:55:04.433','371804669-1-1'),
('3dd87d71-618c-42fc-85b3-670d94ce3046','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-17'),
('3dda1c9f-171a-4416-b2b2-cfd0d87bd71b','17628264-1528-4825-a23d-e787296a2c4d',63,115,100,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-6'),
('3ddc7eae-4fec-42e7-a0c3-702a02a919cb','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,92,70,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.432','644520957-1-1'),
('3de00399-b24d-43d0-a71a-764c995fc77f','03ad506f-f86b-4dbc-952f-52b01e2467fa',150,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-20'),
('3de3c8cc-07c8-4378-964f-4ec0dbceeeb1','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,19,0,NULL,NULL,'501168544-1-13'),
('3de7c279-64dc-497b-b1cc-931fb89f8dba','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-23'),
('3dead1a2-1712-4b9e-9bca-70a877c1e826','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-33'),
('3deef183-1c2e-4499-97f5-896471c0dad9','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-7'),
('3df0bd04-3d8b-432e-9f5f-4fa8cfa172e0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-33'),
('3df4e087-2fbe-4c77-a92f-03b7a198a360','bf8b314b-c9bf-495a-a5d4-e261174c043d',55,95,112,0,NULL,NULL,'531481098-3-2'),
('3df61526-3995-46b9-8774-be37ba8b0aa5','6bb3587c-46ce-4a7b-b153-d422b83670a2',0,0,0,0,NULL,NULL,'614443513-1-4'),
('3df77f7c-bced-4b1f-b10f-0a3c4cf13dcd','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.322','223249369-1-3'),
('3df898b7-1527-4126-b645-ebd110885086','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-6'),
('3df8ed6f-4704-439a-8251-f7632f4f2b92','c01fb28b-ddac-45ad-9fd4-6dc177af77f8',34,18,19,0,'2025-09-02 14:48:42.201','2025-09-10 17:06:01.025','613108463-5-2'),
('3df8f257-c01e-4212-ab3f-517935a0c24b','b6cc0670-fdd6-4ab2-a2e9-68048aa0caf8',0,0,0,0,NULL,NULL,'531230160-1-1'),
('3dfb4dfb-c0a1-489d-89ba-6a23f335f0e9','dd2cca48-6895-4e89-a0cf-e5c29b1a349a',0,0,0,0,'2024-03-16 14:34:26.862','2024-03-23 06:42:26.411','745524390-1-4'),
('3e063386-867a-4604-a254-21f0d78cc0cb','c1bfa9af-ef39-44a9-9789-3e9b58704cb8',101,76,52,0,'2025-09-11 06:34:27.965','2025-09-19 12:34:35.875','808886614-1-4'),
('3e071c48-0f70-498c-bc5f-56eb9509411c','138edf36-d166-4335-8560-d9873886e31c',53,15,63,0,NULL,NULL,'745189997-1-4'),
('3e07a900-1d68-4906-b07c-54a8a6466692','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-201'),
('3e099171-cfb6-4874-8896-6fdd8a89c8b4','06e319ba-26b5-4ce5-b9c0-d2e144aeabab',105,100,65,0,'2024-12-13 14:49:16.355','2024-12-22 12:45:33.978','976942444-1-1'),
('3e0aafdb-1915-4d78-a247-3b7029c80db2','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',158,200,3,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-9'),
('3e0fb12b-f88e-49f3-b1ad-844c2c72ea5f','fa386a83-3d1a-4d92-b1ac-072561c781fa',54,84,187,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-4-1'),
('3e107a6f-47b2-4041-9203-d79cb2c07b0e','9a74cdae-acbf-459b-836a-29ba929835b2',59,79,10,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-8'),
('3e116a28-8fd0-4aee-a283-7845e03d0668','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-2'),
('3e1250d2-d7ac-41c0-92e3-ead51d8cc583','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-5'),
('3e15223d-9099-4c1b-8a3d-11d1b1e676af','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',65,65,80,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-5'),
('3e159164-89c0-4e62-92b5-52b1218ca735','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-14'),
('3e198f83-10da-407a-8c26-ab20095b00b6','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-3'),
('3e1a6904-eb6d-4dd2-8a5f-3b60da06106a','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',103,103,6,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-6-1'),
('3e1aeaa8-ec45-4f76-be87-aa2b67986483','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-1'),
('3e1e3b2e-72f2-4b45-a347-322f67747d05','88cff7fd-c50d-46c8-9ff6-19710133533e',30,90,200,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-5-1'),
('3e1e63f1-937a-4a26-9801-edf4896b6969','cdab8feb-4b24-4e8a-bc95-98fb1259890d',74,46,46,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-1'),
('3e219822-98ec-47b2-9370-fd348e9b8572','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-42'),
('3e24a544-9317-4e38-9628-6a24cc725226','a769cd75-8095-4eeb-999c-d1a749589a77',105,64,31,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-17'),
('3e269f87-0242-4a10-aa35-2787e950e235','0009aeec-e682-465c-b701-363a3ef377a6',80,70,70,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.771','655307091-1-25'),
('3e29a0a7-fa84-4b65-9a5f-1bcd4fec1054','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',34,28,205,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-4'),
('3e29c64d-4864-4e28-a3a4-2c4adb6d2774','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-23'),
('3e2a203c-e9a2-4da4-b520-ab71381d6f55','410d238f-8bdf-4cf3-81b7-a69f07022dc2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.768','478185886-4-2'),
('3e2cce31-af87-42a4-90fc-4c0e856ae32e','4d13499a-c323-4a76-85d1-a36c201137a8',14,96,160,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-1-3'),
('3e2fc7c1-b2f4-41a9-8163-0722bb39e9b4','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-2'),
('3e316f41-14b2-42fc-9962-016be90dfe03','f1aaaa95-2d25-4f45-b026-0107ca13ac62',203,100,9,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.456','616724751-1-2'),
('3e31ed9a-5863-4918-b3f5-010bd80ee8b8','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.050','2025-03-08 13:58:02.371','412842533-1-39'),
('3e352130-76e0-4c95-b5ad-e3c4b7e20dda','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',68,60,96,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-3'),
('3e37e918-842b-4d91-80d0-87faa836536e','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-2-4'),
('3e3a6e7b-cb32-4f8d-b220-df5232b942db','5f80d731-28c3-4b2a-8876-8ca4df5e4bba',0,0,0,0,'2025-05-09 18:44:08.997','2025-05-20 06:24:06.665','7456984-1-1'),
('3e3bd921-e897-48b9-a578-14ee26f7f1dc','3bd671c9-374e-4431-93c3-1d44ad60103d',228,86,93,0,'2024-07-02 08:19:51.226','2024-07-16 05:11:54.166','614134006-1-1'),
('3e3c74ef-dc69-4c49-b597-2daade2c0869','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-231'),
('3e3d6f3b-7368-4779-b7c8-372dbc8f3f5d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:57.671','248135683-1-142'),
('3e3daf43-aa20-4af2-982c-6a0f19f07687','7dbfac68-a166-481d-9984-d7ec9291dc46',106,15,217,0,NULL,NULL,'808690841-2-5'),
('3e41083f-115e-4f78-8988-63b82e3c9af5','10713340-bec6-4848-aa12-a7c74e59c0cf',0,0,0,0,'2025-01-22 09:07:17.762','2025-01-30 16:21:08.969','47888654-1-2'),
('3e41e84a-1201-4e4a-97db-4f7cf0a85a5f','bb9f6535-af97-4e17-af79-099a643ce967',52,85,104,0,'2025-08-22 20:28:42.931','2025-09-03 06:11:37.803','338829299-2-1'),
('3e42b393-b425-493c-9c48-e7649a441653','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-41'),
('3e43eaca-506d-49b1-adb3-be3315c0c018','65fbcd7d-a680-46b9-89f7-75597cb1f190',9,109,120,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-1-2'),
('3e45e075-bec4-4f26-8948-61ce31752d56','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:58.303','248135683-1-13'),
('3e47d014-8508-4d92-85aa-c181a8b70a25','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-3'),
('3e4a79ba-d964-4ff6-9a2b-60907feeed93','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-33'),
('3e4bd4b9-3a34-4b89-8a6e-9224911c66db','96b29df9-d4cb-43b6-888a-d226e592e88a',100,100,63,0,'2025-09-06 07:20:41.172','2025-09-12 22:09:37.741','5312778-1-4'),
('3e4c87ca-f4a5-45e8-b7ff-bba7a3e68ee0','138edf36-d166-4335-8560-d9873886e31c',16,7,66,0,NULL,NULL,'745189997-1-5'),
('3e4f5bb2-0aed-4c08-a861-44315d53ff7c','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',197,180,4,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-4'),
('3e53988e-338e-4061-bddf-7894400b3c77','384c6719-2d91-4530-8e9e-3ddd44fc84ef',85,43,103,0,'2024-12-07 09:32:05.761','2024-12-20 14:35:02.738','248421874-1-3'),
('3e58063d-ede0-4796-8b45-3f95036316e0','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',58,45,72,0,NULL,NULL,'531240111-1-16'),
('3e588cc5-a6bc-4525-b55a-0cebb6df3a2e','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.471','2024-10-25 13:20:24.185','478816607-1-10'),
('3e5937de-bf95-468f-8fbc-4e756b9c591f','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-8'),
('3e5a09b8-2381-4e9b-8ea7-e7e294e65357','cde2b645-2cf4-4ca6-9d59-ef733217c501',100,163,8,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-7'),
('3e5b2bda-f414-437a-bba3-8b2396157960','ade60a0a-c34f-4d91-ab5d-457a76ceaa2f',31,31,31,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-3-4'),
('3e5b81bd-edfe-41fd-b7c4-134c45937c3f','0ad83dd7-8433-4d6d-90e2-775f048b7855',30,27,10,0,'2025-09-02 14:49:12.103','2025-09-12 19:47:24.575','437762949-1-3'),
('3e5d4a6e-a544-4622-b70d-990039246405','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',102,57,71,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-9'),
('3e5d4bdd-7ba9-468b-a448-50c6f90a169b','b79348bd-6b0f-4bf7-9a46-0e0654fa8fd2',100,70,235,0,NULL,NULL,'745883224-4-1'),
('3e5dc6dc-9f36-4d24-8035-a99b6f2c102f','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-6'),
('3e5f7081-3925-4f62-bcdd-f8a5017a964f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-47'),
('3e622dc4-1258-4dd6-9525-d30ae32d2596','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-30'),
('3e624a79-1709-42d4-a0bf-55c7a7c3e1e7','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-8'),
('3e649818-5bd8-42ac-a51e-b61566ff42e0','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-13'),
('3e6714d5-39e9-41f8-8f3a-d7198a7eb6e3','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-3'),
('3e6840b3-d740-4727-8c34-b7be4b5721d3','22399f1c-a89f-4887-a03f-c112be6c99b0',51,51,77,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-3'),
('3e68a90b-2134-4faf-b56a-47c9848922ac','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',202,79,1,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-9'),
('3e68c3dc-8d39-4556-a477-c40ba3181239','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-42'),
('3e6caa54-26a9-4fe9-b317-b841838b7a77','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-12'),
('3e6ce236-52e8-453b-9624-5ecad6e1a9eb','11bb54b9-d46e-445d-a3df-c44fe0e83c43',55,77,103,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-1-2'),
('3e6e3a74-3030-486b-817a-97fa1f33594b','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-83'),
('3e6fa796-d855-4414-babb-abd2b4350868','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.476','2024-04-01 07:52:44.957','478339779-1-3'),
('3e703c77-e2e3-4ba9-9e61-0cdffbc96f06','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',45,13,66,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-4'),
('3e77cf42-6792-477a-b55e-6f82da36b1d7','324936f5-0640-4048-8641-e1550a228838',57,225,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-4'),
('3e7d39d5-775e-44d3-b600-83cf07ffb0c6','52094cbf-05ad-4ae9-9377-57061d8b0a6c',82,56,100,0,'2025-08-14 10:05:31.016','2025-08-27 19:39:28.223','505987989-4-1'),
('3e7d41ed-5409-4404-acf7-e8b986e7d3d7','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-12'),
('3e7ec37d-9273-4702-94a6-9e719575f912','463a7999-c922-4cfd-a8b6-01513cc2c423',130,179,17,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-1-4'),
('3e871923-4b13-4a84-8051-95d8b01cc6a1','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-6'),
('3e90d481-09d6-4a28-9007-652c750adde6','7defd633-f7ab-424d-8029-028d1b045752',235,100,68,0,NULL,NULL,'501119446-1-1'),
('3e9305b6-5312-47e1-b476-6ef119cd595c','3f67e10a-92ba-4272-acb8-869d2db51af4',0,0,0,0,'2024-11-25 08:28:46.869','2024-12-05 16:17:19.183','745243104-1-1'),
('3e9559f7-6f91-4b4b-9c26-97e663d23104','6fcd8160-ca06-46ab-a691-51de5c394793',55,5,192,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-10'),
('3e955e1a-35fb-4235-8621-cc5ed85919f0','b4d98069-3d83-4da4-8f40-7cf8dd0aa2a8',32,32,161,0,NULL,NULL,'598697614-4-3'),
('3e966181-7c4c-41c4-bd05-0ecb30e18579','c0d1db10-6433-4c30-82a1-b54f8d2a6e46',83,101,57,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-3-1'),
('3e983e37-b2f9-4f5a-b022-4848f92e47e5','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',197,3,156,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-1'),
('3e9a0088-2f86-40d0-a9fb-5c172e59963f','b16256b1-d6a2-448b-a170-4c574127a57b',17,43,64,0,NULL,NULL,'745189997-3-6'),
('3e9d150d-b637-4a8b-83a1-d673febe611e','138edf36-d166-4335-8560-d9873886e31c',61,11,258,0,NULL,NULL,'745189997-1-6'),
('3e9da96a-7900-4c6a-b072-7ff1a5aa9be1','ed134a02-1a23-450f-b473-72a8e8cd94a9',0,0,0,0,'2025-03-24 16:01:57.284','2025-04-02 18:56:20.189','745724851-1-5'),
('3e9e1768-99a3-4704-9889-5879517b8565','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-19'),
('3ea122b0-4b7b-468b-8fb7-bacec213ad1b','c678d974-fe17-41f7-8bb7-fbea7100a805',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.608','478559056-4-1'),
('3ea3c1f0-ffa5-429a-beab-544ab504c81f','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-2'),
('3ea64ce7-f903-4933-a331-88c7df32e342','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-2'),
('3eab2a06-4c82-4df9-a5ec-1231148557bd','2f97d486-98ea-4fac-a9e1-6d2acbd29fbd',30,15,30,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-1-1'),
('3eac10fb-61f5-412c-9e71-2f3273745a2b','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-2-7'),
('3ead6386-56f0-4e50-acfd-dff665ecdb35','642202df-ca75-465e-8036-f34da2dad54d',52,75,22,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-13'),
('3eaf01a5-1ea4-4381-a208-59ec7fa92dc8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-3'),
('3eb01cad-ab35-4265-883a-f20d214fbbd4','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-3'),
('3eb196a0-5fef-41fa-9de0-a152ad6d10a2','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',230,95,85,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-1'),
('3eb1c4a7-5988-46d7-936c-a607156cb254','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-153'),
('3eb2a8e9-1123-41a9-87a3-76df8b1e185f','1ea964d7-2e9b-469f-bd3d-af7e4d9f0853',80,230,100,0,'2025-09-16 16:29:16.090','2025-10-03 14:58:06.531','478603328-2-2'),
('3eb351d3-7a8f-42da-913d-ae651f2eb57d','4f4d6062-861c-437c-a07e-84ed7315136a',0,0,0,0,'2024-09-27 14:06:47.253','2024-10-05 11:44:33.143','478392276-1-1'),
('3eb3886c-4c14-4001-a7de-de450363379b','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-2'),
('3eb5696d-d3c7-461a-8bb1-16271725dcfc','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-34'),
('3eb5c623-e284-427a-965a-be3e684e137a','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-20'),
('3eb67a76-f492-4d6e-8f06-be7fe1d339fd','b4f5f7f7-67e7-4052-a423-6c6bcf2257a3',305,96,82,0,'2024-09-06 12:28:22.833','2024-09-12 10:54:24.707','455165840-1-2'),
('3ebf1f82-201a-41a4-9d39-888a0177ad7e','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-6'),
('3ec17580-21a4-4069-9a68-9371c8b2a14c','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-12'),
('3ec30035-4854-4e77-b5cb-d116b9202110','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-1'),
('3ec3f59e-b8ae-4d93-ac21-9225a56f5fc7','3da17157-28be-4bae-8dcc-745d0e93e591',14,53,87,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-28'),
('3ec4e42b-f52c-4097-92a7-6d4ae32170aa','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.840','428752676-6-5'),
('3ec8ed53-ef52-468a-ae09-c28dc366b500','e97539d8-0d26-42a2-bfcf-9866d5bd205b',17,45,68,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-4'),
('3ec930f8-5ec0-4e60-8538-ae27f77c8acb','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-4'),
('3ece88ea-d170-49a3-9218-890dd7e96295','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-27'),
('3ed04bd8-a397-492f-b62b-c79dfc6a559c','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-8'),
('3ed0ab1b-60a9-42de-8600-411fd23f8cee','d9935e91-5c26-4669-9a9a-83060292f497',76,75,88,0,NULL,NULL,'478702481-3-2'),
('3ed408da-5ba1-4759-9fb6-d484d00b076e','4d63984a-5ff1-4253-abe8-286bd84e3528',90,190,30,0,NULL,NULL,'478350685-1-3'),
('3ed5aec4-b8d7-47a6-8fab-a365d0a5e2f5','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-3'),
('3ee07d2e-4f64-404e-b2e1-add905dca455','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-193'),
('3ee094f7-45d4-4946-b406-e38f3acbcb1f','4e0db86d-11b2-41d2-bddf-34d3072b55cd',93,127,80,0,NULL,NULL,'644637221-1-4'),
('3ee3f195-28e3-41b7-a392-8288502b0855','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-2'),
('3ee59947-a49e-4aa3-b514-901a3deb43d4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-26'),
('3ee5ca0f-3ec0-4579-ba56-aaaac461c897','b94c806b-5763-488c-87b2-52f7eaf89c15',85,75,70,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-2-2'),
('3ee61837-25e1-4930-b59e-76b7c68074aa','74ea88bb-c6c2-4f73-9c5c-f7a7d3f6bb0d',53,105,210,0,'2025-09-24 11:00:25.105','2025-09-30 18:44:54.780','644152675-1-1'),
('3ee8fc33-9df2-4af3-84e5-d93f678b95f6','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-21'),
('3eeb2789-3100-4dc3-a3f6-9bc27545487b','ed097511-c426-4ff2-b940-1f98b2a1f4f6',45,16,8,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-7'),
('3eee4fec-e83d-43dc-bfb8-92a8bd5b71e1','7efa38de-b01f-4bdf-ac3a-5f0a214bf87f',0,0,0,0,'2025-10-06 07:08:34.544','2025-10-13 06:39:39.819','745101735-1-1'),
('3eee6410-4607-4ff0-806c-e7a1a85e1e60','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-8'),
('3ef17b28-69e3-4481-b5cb-d825905207a1','bb888d28-6c88-45b3-99a6-a8c19e287f7e',52,58,96,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-2-1'),
('3ef1ec6a-3ad9-4717-9fe1-85fef025b1f0','0fe6d0bb-346d-4029-b0c9-5d01dca21872',0,0,0,0,'2025-02-03 18:18:32.727','2025-02-14 15:00:22.989','478370539-1-4'),
('3ef36824-f048-4f4d-80d7-dbfff0e9dfc2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-152'),
('3ef39f76-1be2-4141-8b5d-23218f76a08c','eac72926-5db5-430c-b199-22331da6b459',0,0,0,0,NULL,NULL,'614941926-12-1'),
('3ef61573-79f8-4489-b728-0e455863c3d9','83e81175-cef2-4f5e-adbe-8ca02a747efd',52,91,5,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-9'),
('3efb8e7b-79cf-4852-bc04-163c350b236f','dc192b30-06ba-4062-a95d-bdc29fd8c784',31,31,31,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.286','319212544-3-3'),
('3efbbd11-e4a6-46b9-afcd-2c859a9b9d81','5e048b22-34db-4d5f-9247-201f664d4e80',117,98,100,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-3-2'),
('3efcaab0-bdd1-40e4-85e9-e62cb23359a3','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.897','735793543-1-1'),
('3efebf9a-54ef-4994-807e-efbfb8ea98ab','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-17'),
('3f025cb9-b576-49eb-9d8b-f0e98b310d03','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-1'),
('3f030b01-d7df-43e0-9f33-d09afe74e880','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-14'),
('3f056070-16de-4a3c-8634-805c8c486838','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-16'),
('3f05a2ee-0310-4e21-ba92-13df0fd66177','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-35'),
('3f0601b7-ec07-4eed-af5d-bd089970657e','809c54bb-3c3a-4391-8520-158d7441cc0b',0,0,0,0,'2025-10-06 07:08:34.544','2025-10-13 06:39:39.819','745101735-2-1'),
('3f0a06fb-c000-47eb-a52e-22ccfe47e573','76cdb3cc-7e22-4c7c-b33b-29892e31126e',96,197,6,0,NULL,NULL,'675346042-2-3'),
('3f0baa47-f3c4-4b80-be60-017a63858df8','109642dc-0833-423c-9fee-ee29a1e3c5a9',51,51,77,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-1-1'),
('3f0c9489-7cf7-4120-9648-df657e658e4d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-187'),
('3f0cc840-488e-4322-8fa6-2005c202cde1','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-2'),
('3f12e281-7450-4ea5-9892-5e94c8920d82','91b1853c-0746-4c2d-89d6-c2fe0be8f025',245,93,65,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-3-2'),
('3f175cf4-4484-4f8d-88e7-bf9f041df7f3','aa66d5b0-933a-4e09-b2f7-e41da82ef43a',54,50,50,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-4-1'),
('3f1834d7-c6d6-40ad-b384-12c16065bede','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-18'),
('3f18e55f-500f-4f39-a828-3049e2619b83','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-15'),
('3f1c4c10-bad2-4adb-9a34-e1ffb6ae116e','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-13'),
('3f211e0b-07a6-43b3-a546-93e6ed986494','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-25'),
('3f2559ef-83a5-4e8f-8505-5a31d582ec01','ee6fb030-92cf-478c-a63e-a4a35c648758',97,165,70,0,'2025-08-25 12:31:59.341','2025-08-30 18:25:27.869','437539983-1-4'),
('3f2c7aa1-6790-4469-804a-2b33a2424892','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-4'),
('3f2cdec8-d1b4-4d8e-9c60-c4dd9c397016','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-4'),
('3f2e2053-fa4a-4d4d-921f-0768d388cada','aed57dfb-3aa2-4f6a-849f-51424a18ca86',100,228,70,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-10'),
('3f30185b-9a6e-4b49-b361-aa822cf1fa10','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-34'),
('3f32509c-49c0-4532-873c-c31eba311c1f','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.555','734955536-1-6'),
('3f32518c-cd84-4d25-9653-da84af1cf7ba','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.296','223444495-1-102'),
('3f33dd22-2a06-48cf-b608-42135cadd2d1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-101'),
('3f359d69-0dd0-4024-847c-28b5dee5191a','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',100,17,13,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.197','982555492-1-2'),
('3f374456-27d6-412c-bb25-76834898a2ac','60fb62a4-8365-4095-8f73-1e4ce71568c0',102,117,52,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-1'),
('3f38b65f-2031-4514-bdb6-439f3f20e047','cd005e98-fe25-409a-a9ff-536308cf8ab6',93,71,222,0,'2025-06-11 13:14:46.907','2025-06-17 16:02:05.831','910201328-2-2'),
('3f390ed0-90d7-4a92-82f1-dcb82eaf021d','91a053e6-4d43-473e-a6c4-c685892363c6',70,100,60,0,'2025-10-02 06:45:49.211','2025-10-16 15:47:01.900','478273603-1-2'),
('3f3917a8-dd63-4cd1-8ea5-0eb65a373d45','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-2'),
('3f39d26f-0c78-481b-be82-fce4e30b03ae','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',156,123,5,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-2-6'),
('3f3ddbb8-7ffe-4cd0-bb07-5dac98a3ba02','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-5'),
('3f3efabc-b274-40ee-8a48-de4b34cdfa6c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-78'),
('3f3f5ddf-15dc-4367-b5f2-096aee8051e9','89b10d5c-c483-44ad-9784-dd0d3532446b',43,43,70,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-3'),
('3f41fc1c-df6b-46a4-9ba0-d941996e13da','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-22'),
('3f44d409-bac2-4f29-b8d9-4d32e4c492fb','5eb53186-180d-4850-a598-783b17f41cbf',105,105,70,0,'2025-03-27 08:03:09.215','2025-04-05 22:11:15.005','976843037-1-2'),
('3f45c328-481f-4ed2-8a16-c01f5d0e8b35','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.039','221900850-1-1'),
('3f45ec84-a9b5-4d15-9b72-714d54e3dd93','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-59'),
('3f47c2bf-03bf-4556-a41c-248669273414','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-226'),
('3f48575f-8fdc-48c1-b60a-760b14d3221a','565f6966-f194-4d7c-8b20-64502045078d',75,55,62,0,NULL,NULL,'478350685-2-7'),
('3f48ab9f-a83d-48fe-ba2d-1699705924e5','e6377146-fb65-4f17-bc88-b4fb6a8017d6',240,98,70,0,'2025-04-15 16:02:07.350','2025-04-24 15:01:27.378','371363007-1-2'),
('3f4c11a3-8a7d-4c57-9520-384b472ddbfe','e9dbfd33-c34f-4a2e-aff6-18956dfc778b',50,50,95,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-3-1'),
('3f4f4ef9-7e7d-40a2-85a2-504780be147c','db7058ef-de6e-444b-b25a-dfa474ba7bcf',57,50,50,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-2'),
('3f520ee9-56c8-4b63-9e59-729226c7f4c1','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',81,56,100,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-7'),
('3f523216-5905-47cc-9136-636b2ea357ba','150cc542-c756-439f-8669-7c8ff8a7e4a4',0,0,0,0,'2024-09-28 16:27:17.388','2024-10-09 15:39:01.142','745849265-1-1'),
('3f530d85-39f4-45a5-938e-639b4a252eaf','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-5'),
('3f545ae7-cbd1-47bb-8066-f878b7e4f8ba','2f48d0ed-28f5-453d-8672-06427e42d843',51,50,43,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-2-2'),
('3f54f92e-ee32-49d3-bc38-f9723a50b024','8200af89-453e-434a-a4db-de08e8cfe818',80,65,95,0,'2025-06-27 17:12:14.763','2025-07-09 11:39:56.374','517365072-1-1'),
('3f56c5c4-0c08-4b63-b9e5-878e4e5b3cc1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-132'),
('3f575824-f8d0-41a4-9b4e-b65ee68a93d0','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-25'),
('3f582577-7d42-47e2-ae36-34fe618de3fb','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-35'),
('3f58820c-6190-4d7a-9469-f3d02e48b3d3','b458ebf7-66fa-45cc-b0b9-12f05086077e',51,51,76,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-1-2'),
('3f58a800-b7c8-4096-be55-3b8a7164dcb1','be73bfce-7391-4246-a655-6a37a58937a0',105,105,80,0,'2025-09-26 12:39:03.284','2025-10-07 14:12:25.524','976369139-1-2'),
('3f58e4ec-46f1-485b-9ee7-c6521efadea0','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-31'),
('3f5a108f-d04f-4cf5-b249-644417a28dba','e09a3626-bc71-4669-9faf-3f66c10fab18',100,70,107,0,NULL,NULL,'644390236-3-5'),
('3f5a27f3-4e40-45d0-ae4c-0838490c94ab','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-123'),
('3f5c4752-6063-433a-a13a-2797cd0f936f','f63639f3-aa59-4a10-98a8-8b3cc509b6f9',97,223,65,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.371','517447554-2-4'),
('3f5c9977-2eea-4582-b5fb-e7cc409c3cbb','8c84c11f-8810-47ad-aa22-9fb50bc05d1a',98,98,60,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-4-2'),
('3f60394a-e219-4e08-805e-d1191817360d','3da7ca23-1096-4e12-bda9-57170294f0b1',127,90,95,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.513','412977009-1-1'),
('3f618c8b-a4a8-43bc-bc18-e9550566182f','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-47'),
('3f64154a-11a0-463b-acc7-26896a580b90','c900d790-eeff-48b9-9f2b-48972c98ac32',90,2,206,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-5'),
('3f64478f-f550-4f33-bc72-057a6bac0f6c','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-45'),
('3f676e99-ac15-4f6f-abca-64fc47d67427','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-8'),
('3f6aaa99-8c97-41ec-921c-02de1618f44d','8cf1c134-2d55-438d-84fc-b33192eae93f',120,74,55,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-5'),
('3f6aabf7-33fa-4782-a201-f7bd8f9f339e','ee2cf480-090b-45bf-9383-709e6e5470a6',96,196,6,0,'2025-03-27 08:02:39.973','2025-04-09 06:26:25.853','22145224-2-1'),
('3f6b9d65-9233-495f-985f-4736784af3db','417d5128-140e-4a55-b497-de9ff93db63e',103,72,80,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-2-1'),
('3f71dc39-ffa0-4145-b279-941d9d07b125','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-2'),
('3f779451-77db-495c-9ca5-6fd1254f5bfe','ae9e9c82-84c2-42de-87ba-c07292fe079d',100,104,65,0,'2025-09-18 15:48:45.318','2025-10-02 06:11:13.650','644834421-1-3'),
('3f7796bd-5f21-4fa8-ba68-48e3ce1b06e7','7e8643f3-2224-44f8-8380-7da5eea93721',80,80,80,0,'2024-03-30 10:55:02.595','2024-04-03 08:28:04.945','501668492-1-2'),
('3f7a751d-390c-4eb4-928a-69e27b19bd9e','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-6'),
('3f7bd1a8-c5e7-4798-a05c-d987401739c2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-36'),
('3f7f0e23-006f-44c1-acab-315bb2c381a4','521f8731-8f18-4e3e-820f-edf48bc0b1bf',0,0,0,0,'2025-02-13 20:43:39.053','2025-02-25 17:03:29.863','745959029-1-1'),
('3f83bbcc-0209-4655-83d4-b468ccb511f4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-75'),
('3f89e4da-7537-414f-80e3-a0a6be2ceb2f','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-5'),
('3f8bc06d-26f2-40ad-865a-0ed9dee8dd15','940aa57e-21e8-4cea-ad18-82859c22f018',96,96,65,0,'2025-06-11 13:14:38.730','2025-06-18 07:15:26.935','817121694-1-1'),
('3f8e0eec-de6d-41cc-8be3-1916a1d49579','e67b1845-0be2-4837-a37f-becbd1706d34',100,123,75,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-6-1'),
('3f917427-87f5-46b2-9296-f89c6a43978f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-42'),
('3f976a66-8cee-4850-807a-0ab5fde868c1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-141'),
('3f9970e7-9b13-4c5f-a2cf-602038da225c','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,400,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-19'),
('3f99c841-8ce6-40ea-9cbd-dc7ca0484d36','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-31'),
('3f9c9bc4-9cf5-41e0-b0bf-37217a1bf0fc','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-6'),
('3f9fe7a1-b431-4805-bdf4-5d34334c9a11','b6d04ed2-f29f-400a-ba86-37b36b0830b2',82,120,3,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-4'),
('3fa1aca0-57c3-4bdc-b326-369ac1a5bb59','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-2'),
('3fa1bf1b-2864-4fdb-acf6-0075a5df12f4','f99d004b-43c8-4725-81eb-8647e7871abd',150,30,30,0,'2024-12-23 12:00:49.563','2025-01-04 10:37:10.815','428990953-2-1'),
('3fa428c7-8ab0-4bed-8a3d-f0dc7c76870a','93bf5a0c-675a-480f-8279-33ede48fd263',52,52,77,0,'2025-09-06 07:20:25.183','2025-09-15 12:30:38.019','371801847-1-1'),
('3fa5fee5-d1d2-4f75-91f6-f7a11d6a07c2','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-2'),
('3fa6d2e7-c9a4-4649-b119-691ddd8ec960','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-1'),
('3fa6e58e-5ea7-46a4-9e19-29d51b2534de','19f8d788-357e-4bae-a0cc-714638359cc7',82,211,17,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-3'),
('3fa9fa78-e1f0-4937-9f78-b3d46ae68702','09db59c3-434c-44c0-b22d-c0005ae4ad6a',51,51,76,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-1-3'),
('3faa9e42-0cd9-4732-9b5c-7e7891a517af','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-16'),
('3fad94c6-761c-474f-bd24-bb444eec8c30','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-20'),
('3fb185e1-25ee-4351-94a9-9b0183cf471e','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-4-1'),
('3fb3a36f-d17a-4748-82b4-f4e4236d514b','4ac8027d-d5db-4a57-916c-23dd357c98aa',52,30,30,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-5'),
('3fb4f9f6-58bf-4f1f-b529-940f2c66081b','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-8'),
('3fb8680b-3a24-4b19-85ff-c7e8506e9fba','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-29'),
('3fbdd0c5-76bb-4c4e-a18d-768f2953b941','d93f5d7a-7db9-43e3-8d9e-87cb0ef58425',43,43,75,0,'2025-10-20 07:17:51.379','2025-10-27 09:24:00.820','371434188-1-2'),
('3fc21409-a7fb-4281-b8ad-9c0073517797','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-1-3'),
('3fc52931-8a2f-4566-8135-1bc65a2ed643','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-9'),
('3fc58124-8ea0-427d-9116-562dc9715f22','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-3'),
('3fc61dc0-097b-4ec8-8947-545d4940bebc','1d063093-76ef-408d-ac4e-9b14c6ea3828',100,116,60,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-1-3'),
('3fc9ea77-4123-48ba-9e63-8bced2c1f079','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-3'),
('3fcb30e9-c92c-454c-aa24-1d0603107fa1','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-22'),
('3fcc1d72-3819-489e-80e4-116939e617fc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-35'),
('3fcc80fc-d330-4725-9ca7-c112650872a1','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.409','412990147-1-2'),
('3fd05bb4-c285-455c-a8c7-50542368bf2f','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',85,75,70,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-6'),
('3fd20300-38fd-4dc2-94d0-2b6450ad9753','9a855e3f-e255-4ab4-a73f-124103d32ad2',93,65,205,0,'2025-09-12 17:17:00.463','2025-09-24 06:51:13.936','976593604-1-2'),
('3fd31b38-145d-44bd-a921-28050ccb6dea','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-25'),
('3fd3cbb6-6d9a-40d1-a1d7-c98217d5c132','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-67'),
('3fd596cc-2563-4756-b942-5c5ab1118845','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-14'),
('3fd7da60-1098-40c6-9f17-a46f125acde2','1ec9c565-abc8-40c0-af13-1fc7f53b4a71',0,0,0,0,'2025-05-16 16:33:19.371','2025-05-25 19:11:17.052','478757775-1-1'),
('3fd87a8e-05d2-4f15-a92e-445383e69453','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-122'),
('3fda4f02-d6ad-4937-beeb-602fcf5bf329','c98f6188-56c5-4870-be97-be71cf95f62e',80,80,70,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-44'),
('3fdadd2c-f0d0-474c-b49b-c41a9a448c9e','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-4'),
('3fdbae9a-b8fe-408b-84c2-6df2b62c592c','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-56'),
('3fdddd37-08a4-440b-8fd6-61a598f86e12','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-3'),
('3fde3d99-1bab-4f77-84fc-d5f5fb31b419','a40ab67c-f6c6-4228-b875-7adeb6366544',154,93,75,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-4-2'),
('3fdeb370-82b3-427f-b7a7-5fa59c31b681','6137887a-a955-44cc-9620-948985c68d05',60,60,10,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-3-2'),
('3fe42d1e-78a0-430d-b106-0422c7bcc21c','79959af5-d58d-46f0-8817-b67d0c98e5f7',82,56,101,0,'2025-05-16 16:33:17.437','2025-05-25 19:11:27.053','613168811-1-1'),
('3fe53e83-e5be-4bc4-b43d-7c0b2c583ce0','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:45.123','248135683-2-20'),
('3fe5514d-cccd-489a-abaf-541bce761903','0ab3c63b-a6e5-4df0-a96e-33e5a256da25',95,95,68,0,'2025-04-11 13:41:20.090','2025-04-28 11:58:30.436','478403794-1-1'),
('3fe79070-919b-4000-b3a4-4ff77f143158','4b29ac47-ac7a-4668-999c-3fd1de904d7a',51,51,77,0,NULL,NULL,'613745862-2-2'),
('3fe8aaee-7bdb-473c-8fd9-bb00a99c2258','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-82'),
('3fec9657-2263-4a25-be93-d5e47dcc9906','17212552-5dca-489a-b6a0-803d13542c41',0,0,0,0,'2025-02-15 13:31:44.038','2025-02-27 16:42:24.996','478354582-1-1'),
('3feca834-baab-4a8d-bb5f-f29e88cfe223','546ad3d0-25c2-43dd-9443-e48b8e5b6530',31,93,10,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-19'),
('3feee093-3f97-4775-81f6-631f320008d1','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-21'),
('3fef8c29-ac5f-441a-8d56-25b3a37e0f9e','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',75,28,28,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-19'),
('3fef9939-79dc-4d9f-849b-048e6761a17c','6250b44c-f7fa-458b-9059-f4fe88176786',73,122,6,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-2-3'),
('3ff0d105-ddf4-4758-bfd2-811b83e9e3cb','c4e2b920-2753-46a8-80dc-96f38b4d715e',100,159,70,0,'2025-07-26 07:41:46.735','2025-08-02 17:35:57.649','437672074-1-2'),
('3ff17d2c-7da3-4a61-b221-b68f4f607ad4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-228'),
('3ff68eac-a59a-47a3-b3d9-2f057cc7b603','094fda01-ee08-4746-bfb8-5af4550b0416',56,82,101,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-1-3'),
('3ff9273f-1159-4e3e-878a-6895345f82d5','ef7dd452-447d-4d98-9daf-20a74a8187db',16,22,17,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-12-2'),
('3ff9806e-7614-4e65-88e4-344dcc4c2d9a','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-10'),
('3ffa6fb7-2192-472c-81c7-f94061346a0b','3842edfb-94f9-4f7c-b110-2ea10ce622e7',70,105,105,0,'2025-09-02 14:48:28.592','2025-09-10 07:23:35.121','644758410-1-3'),
('3ffdbb7a-5592-487f-983c-e893abd34b9c','53eba6e6-9870-466d-85b5-c7b32bf33173',100,100,45,0,'2024-12-01 06:47:51.833','2024-12-12 07:41:43.505','027517327-1-1'),
('3ffe2895-5a71-4234-b4e4-66c4aba5eb53','acbdd21f-746f-4630-82bb-eac5e391f704',228,88,98,0,'2025-02-13 20:44:02.437','2025-02-24 13:33:20.162','786254351-1-3'),
('3fff3c78-acb0-4778-b67a-757809f76053','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.099','982405831-1-3'),
('400055fe-b786-4afe-b572-bf37dec40727','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:59.341','248135683-1-85'),
('40022b3c-6739-43d7-9909-86ee49fbdd77','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,78,2,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-43'),
('4003454e-4702-4e12-a34a-195004124eea','af69c5a3-87d3-4548-a650-720b69a4fc69',93,13,95,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-29'),
('40048e06-a107-48a7-808a-71ef3f7ab59a','32a0f08e-82b4-4d3f-919e-5021b7c38cf0',88,80,70,0,'2024-03-23 08:36:15.949','2024-04-02 16:11:13.712','449768376-1-4'),
('4004d2b2-dd38-41ed-b466-98eeefa45b6b','ca9a64dc-5c9e-419e-83e6-dc5642b05495',245,95,70,0,'2024-03-31 17:55:10.379','2024-04-12 07:17:01.209','982310142-1-1'),
('400774db-2a97-4da8-aae7-9d5b68a22904','8e317333-4917-4a57-b2a0-6592178a7d36',85,90,75,0,'2025-02-13 20:43:45.320','2025-02-24 20:30:58.481','127504677-1-3'),
('4007f329-0b55-46c6-ae58-afada4e43ba4','6f8fd929-0228-4fd9-a182-83fe855d3f5c',210,6,81,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-6'),
('400a406a-dec2-4351-b631-d748be94953f','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-107'),
('400a4a5f-81cd-4952-bc88-507d002353f7','e8dc151e-1148-4a48-ac2a-d4fb2c761969',61,48,16,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-4'),
('400dd84c-0738-4739-8a25-71bf50d5b374','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-2'),
('4013b894-6e2e-4a0e-8ad0-960ac6881292','259a72a2-bf47-453f-a1f2-67b32a430a12',93,80,210,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-2-4'),
('4015378b-fe2d-4e46-b584-873d87babd8c','01be5e85-2bcb-4117-9ad4-5f2afa75468d',100,45,102,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-2'),
('401634e8-d2d2-4240-84a7-7bd9dd7cc0e3','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-146'),
('40171ff0-3cc6-43b4-820b-bf540ca47d22','b500f3e3-149c-4c27-a97e-11ac0175c96b',60,43,22,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-9'),
('4018bec5-d034-4516-aaec-b4856a56d355','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',213,60,8,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-44'),
('401a6850-35d1-4512-bc84-942e6132c56e','83b9571c-57fb-44d8-9d15-f074c343858c',230,100,75,0,'2024-03-14 13:50:31.260','2024-03-22 10:14:05.550','428647459-1-1'),
('401be705-eb7c-42db-bf62-e1f101242473','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-7'),
('401c644f-30ed-4438-ac33-42aef491d064','ba4d79b7-2f50-472d-b8a3-175425785005',95,20,12,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-3'),
('401e5349-9992-435d-b424-0e5d59b0f0e9','064e955b-72f7-4dfe-903d-af71b421e048',33,95,18,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-10'),
('401ff1cf-12dc-41d6-8457-b4556f738707','6d60b0dc-2aeb-4000-9b2c-154dfd45b045',91,65,91,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-3-2'),
('40212270-5f0a-437e-ad05-c88224e35ae3','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-2'),
('40230be5-ae1a-41ba-8df5-d4e9d3e00137','796fef16-71d1-4946-b8ba-54f687adf598',100,92,52,0,'2024-03-23 08:35:56.505','2024-04-08 08:33:34.367','982944278-1-7'),
('4023366d-f31e-4f79-8258-097271074f52','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-3'),
('4025377d-2781-46dc-85e5-27bae2d78a95','6f8fd929-0228-4fd9-a182-83fe855d3f5c',230,92,74,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-7'),
('40283bed-d41a-4d15-9eba-7c91736ceb33','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-74'),
('402d9589-0078-4ed9-91e2-2a8605965feb','0bd42145-fdd8-4793-a5cd-a2e404d37142',58,56,12,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-7'),
('403035dc-1a5b-4f58-8e8e-2a347dd017c1','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-5'),
('403318d7-3c22-4f68-88c1-755aeba416af','6302f68c-26c4-4a31-853e-80b9d1ba59ee',75,25,18,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-12'),
('4033a439-fc58-402c-8602-4d025d064f5b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-56'),
('4035d910-5415-47fb-8478-6bf4a6271cf7','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-130'),
('403713c3-e59b-4f52-8373-29c59cc911ac','72dd70ee-d1c4-46e4-b852-cc3c53e8554f',100,85,230,0,'2025-02-23 12:39:11.932','2025-03-06 10:33:36.756','910225013-1-1'),
('4039ebe5-8a62-4246-b635-b4bb8d83f433','6098bfd6-9976-47f8-a799-df79295948c1',108,108,6,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-5'),
('403a58a4-d9da-419a-aa29-3931eb3e223e','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-8'),
('403da6aa-33d6-4c44-8cfd-b16c2278c09f','6c7b7f95-a783-4780-93d4-d95611c52e44',57,57,87,0,NULL,NULL,'338387774-1-1'),
('403ec39f-d7ce-4c67-9dd0-02d31c1ba270','7f6a1eed-b929-4891-9958-a6e2765efe22',53,72,102,0,NULL,NULL,'127991361-2-1'),
('40416356-b771-4956-b042-0f7c63d9c44d','fcd67c6a-44c1-42d0-bb18-f0aad3734594',24,140,160,0,'2025-10-08 17:43:31.013','2025-10-17 06:15:12.040','011428040-1-1'),
('4046d537-8683-4448-96db-c131ab087caf','56f86587-7355-4e49-9eb5-727edc1be570',142,54,15,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-2'),
('4047a1fc-5ab9-4c3f-ac54-ac2d37230880','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.590','412771828-1-11'),
('40490719-9582-4466-a200-b0e6203cd519','a135c145-15f3-450a-819b-e82b427bc978',259,12,60,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-9'),
('404d9eb3-fc4f-46bf-828f-40ebcde13ea8','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-7'),
('404ea0bd-4488-4ff9-912c-40709b18bfeb','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-5'),
('40532607-e8b5-4aa1-b880-9d8eb3db9318','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-24'),
('4054d120-cd50-46c3-81d3-7722ee12cf2a','3535d433-eb38-4879-84b4-dbf8410809cd',48,62,40,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-11'),
('40557ebe-a3db-4403-91d9-24bd6fa4e27b','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-7'),
('4057ae0d-ff1c-4c0f-ade8-997cf8b31553','dadc5d04-be0b-4da0-980b-6007bbb7021f',250,75,100,0,'2024-12-01 06:48:14.667','2024-12-10 12:35:38.736','517764616-1-1'),
('40586468-e8d2-40c9-a9cc-d40004a2a902','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-3'),
('4058bb9a-da39-4b84-b127-c219f3658d5c','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-6'),
('405a3f07-89bb-4979-a78f-ae38a308c192','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-45'),
('405d3685-8437-4ae7-bbec-0ec971518c3b','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-5'),
('405e4e50-ac24-4adb-8bdf-6094e524d419','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.411','2025-05-03 15:28:14.551','221257971-1-1'),
('405e506c-7984-4d1e-87a9-a6f308949b88','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-176'),
('40610bdf-66fc-4940-b93f-eed72ceb19f3','f3414f51-92da-4967-b108-6baad5cdd798',15,66,7,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-7'),
('40621f64-b7be-4c37-a9d8-399c9bbf50ca','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-3'),
('40627efe-0b1f-4296-a28f-a8fb33549b7e','08af242e-dc62-496d-980d-0f589dcdea60',47,67,97,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-9'),
('4062a6e1-32e6-4134-9792-0adcda357b20','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-16'),
('4063048a-38e7-4b1c-82da-dea63d4f5440','ab17d88e-ebaf-47c0-8475-f212320a77fa',92,173,9,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-3-2'),
('40654d38-7161-4b96-a173-5f40738e4671','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-189'),
('40680a52-7200-4b1f-b02e-df2d2bffb835','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-11'),
('406c3e65-e167-4b38-b166-b2b8d1a539f6','cb24f977-2bb3-4346-b90c-e4f6ee8b9032',95,102,102,0,'2024-09-28 16:27:38.376','2024-10-08 07:57:35.037','428360379-1-2'),
('406ce53c-4a2d-446a-8781-8e407b189da2','8a7fb8e7-170d-43fb-87a3-8fffb16bb71e',99,88,79,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-4-4'),
('406fe810-ac04-43ef-9101-75f088d2cd30','ae991996-4699-46b6-814d-8a6d951bcedc',70,97,98,0,'2025-06-27 17:12:26.311','2025-07-07 06:55:17.755','371749484-1-3'),
('40708d46-41a0-427f-9e3b-42f3d19c8059','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-7'),
('4074cee2-e2af-4582-a41a-6f4ea0717e57','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-8'),
('40752dc1-9111-4be0-b327-4ded28b87e96','97afc9fd-6855-41a0-8fbf-b8fe33aa524f',125,125,7,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-2-1'),
('40754706-40fb-4f9f-accd-741fde2fe896','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-46'),
('407c9070-9d81-4ba3-a823-2d074cab85ce','db7058ef-de6e-444b-b25a-dfa474ba7bcf',230,100,67,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-3'),
('407d72fd-ca8b-428d-906e-ac245fd9fba7','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-5'),
('4080c619-d722-4dbe-bc2c-8530ddfc5a82','88cff7fd-c50d-46c8-9ff6-19710133533e',30,90,200,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-5-2'),
('4080ed1a-d964-467d-992b-68cefd4cf666','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-3'),
('40810aca-fa64-484e-b92f-4378ffe47f24','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:43.358','248284003-1-52'),
('4082b5cd-b40b-4d00-a19e-b0a557f2b188','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-11'),
('408769d8-153b-47c7-ba90-7102b1a514e0','852cb596-91b3-432f-8aee-ec6a804f3a01',54,110,7,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-6'),
('4088e79f-91e4-4e64-a8d2-fe74cdcfc467','796f74f1-a123-4566-9122-ee642d251917',198,96,6,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-1-2'),
('408a533e-45c6-4bf8-98e1-cfb65a7ed991','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-25'),
('408ca959-be41-4d13-989d-cc841bdbcd79','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-35'),
('408d38ae-96af-47b4-9e9b-1418aff6ca2a','811c4fc3-106d-4a51-b8c0-eaa09c5918da',51,51,76,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-1-1'),
('408e4871-de6a-42e3-a88f-6a2571868bd6','1118c3e1-7c30-4ac9-ae0e-5dff68ee2213',56,82,101,0,NULL,NULL,'613745862-1-3'),
('40913085-42cb-4ff5-b258-8dbf984e091d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-94'),
('40929c4a-bb63-4c28-a89a-6ffd0523b0a8','676266f3-03e6-4ff9-92c5-07a1b81bc27d',170,93,80,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-2'),
('40932db5-7d82-4826-aeea-0c1f51fc4e9b','bd7ba9b5-8269-4522-b579-d69c949c4a64',82,70,225,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-8'),
('40956955-d207-4f9f-835f-212051cc710b','105baff3-99ad-4d7f-b4a5-116a7968849b',0,0,0,0,'2024-12-18 09:31:19.411','2025-01-10 16:33:18.465','248849829-1-3'),
('4096a495-a3a0-44cf-b640-e3180a124a5d','94265c38-053f-43ac-95e5-6d1b08ae3c22',245,90,100,0,'2025-03-27 15:05:06.419','2025-04-08 15:35:11.106','517887763-1-1'),
('4097ae1e-6695-4cd6-8b9e-a0e4c6c156a8','0a8285d0-d3db-4298-8e41-62c5429f150a',140,44,11,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-7'),
('409c33d5-61f5-46b6-8e63-51fe3df85aac','e8024068-53f6-4221-b217-9d62a4cdb318',102,201,35,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-2-1'),
('409c5ca7-a586-4ae1-953c-961bc17f7fb3','b8cb209c-3d60-466f-8346-01810d5816ec',87,2,207,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-2'),
('40a0e425-c9a5-4528-b401-07afcee1e38b','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',26,202,11,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-10'),
('40a1ba45-6e48-45cd-a0cb-0c5a969ed0c8','1d839b45-f769-4613-b6b1-61fee06b9ca8',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.385','478957028-2-1'),
('40a256a0-d038-4972-81f5-83193da763ee','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-9'),
('40a3e4b9-7709-474c-8c5f-f7f3c72140b2','aed57dfb-3aa2-4f6a-849f-51424a18ca86',100,228,70,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-11'),
('40a4ac87-f835-45db-b1c2-f21c5cfd9156','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-77'),
('40a5d12f-1668-473a-bb7e-e5f7e5e0b62d','a4982347-c05a-4357-a3f6-ce95c38e366f',0,0,0,0,NULL,NULL,'817550178-1-1'),
('40aa3b6a-75c8-4e8a-8a4b-6cbec09c063e','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-19'),
('40ab8db0-8f2b-4fd5-ae4f-6346aca306e5','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-4'),
('40abd4aa-0f35-4289-9109-f1e5f0d4e1bc','dd119eb4-d1fe-4633-a5cf-5dc72cfaad2c',0,0,0,0,NULL,NULL,'614661701-1-1'),
('40abda05-f5c3-4691-bfb2-7483578c78c2','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-13'),
('40aee1f0-34eb-4b3a-9dca-5413f98d0e66','6574c9d2-e75a-488d-85d7-f96203442cc9',0,0,0,0,'2025-01-26 10:54:43.764','2025-02-07 11:19:13.804','478120731-1-4'),
('40af1edf-f586-4df8-af97-09e562772cbd','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-1'),
('40b1929c-b54e-42a0-a0b8-879486d85d55','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:43.736','248284003-1-75'),
('40b6f12d-4367-4c12-95dd-817fb0ce64a8','9f37ed98-135e-45e0-b26e-3af7dded2b24',85,106,56,0,NULL,NULL,'613592756-2-1'),
('40baa006-00f2-4b40-be8f-b6f86c063426','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.899','2025-01-29 14:48:59.955','248135683-1-146'),
('40bcfc3e-800d-4a0b-a97f-408f43eb205c','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-7'),
('40bf476d-26fd-4172-97b0-fa0f70db050a','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',55,63,15,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-9'),
('40c0af21-00a5-42e4-a9b0-dc848887f7b7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:46.506','248284003-1-32'),
('40c30b11-b447-4ccb-95c1-4adaadcbfa06','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-6'),
('40c3d6a9-5354-45a3-af84-82b64c030945','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-104'),
('40c45bcc-b99e-4b34-81f0-36f5120599e4','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-38'),
('40c5037d-841f-473c-a58d-9525b84f7d53','7f36cce6-f7f1-4611-81da-27e098ff6a33',60,60,90,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-2-2'),
('40c6cba0-d315-4dc1-b731-1428e88a22fa','db48d2de-9b3c-4281-8b61-7cd066669b2d',108,108,65,0,NULL,NULL,'644726352-1-1'),
('40c83217-bb6a-4be3-9940-0c891504461f','6fcd8160-ca06-46ab-a691-51de5c394793',45,7,194,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-11'),
('40c98d19-43ac-4afc-8279-29fc2927eb55','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-11'),
('40cdf4f3-801c-4feb-930b-105163c7baae','01445163-8215-4106-bdba-4d0bf73930fe',96,94,70,0,'2024-08-21 14:52:33.316','2024-09-02 08:33:41.727','614462377-1-3'),
('40ce3630-3320-4171-bff4-b8e3bd1eefb1','8b91c5e7-c071-4573-88e3-5264c5dc164a',96,15,157,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-3-1'),
('40cebd18-59cf-472b-a56a-439a824a43f2','d93690ea-b22e-45dc-99a2-0e07f17da633',76,52,102,0,'2025-09-06 07:20:15.394','2025-09-16 06:34:40.141','437152964-3-4'),
('40d33708-2223-43b1-8905-0a3dc7ee9a14','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-14'),
('40d3a0d2-188d-496b-98df-f7ca240719c8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-75'),
('40d53e53-f178-4c5b-a5db-aea53a7b561c','899dcf64-71c3-423e-92a1-60d82839fc84',230,95,70,0,'2025-02-03 18:19:38.677','2025-02-11 17:09:24.437','501934466-1-2'),
('40d6dca2-3262-4f6e-a426-ef67c95a882f','0a8285d0-d3db-4298-8e41-62c5429f150a',52,45,45,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-8'),
('40d73c95-4669-4a11-9908-833065771801','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',95,55,11,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-5'),
('40d96e43-dbbe-487f-9ee5-60d1e29a95ce','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-11'),
('40d9f146-c35a-45f4-ad58-5e697741493e','f9861f37-efe2-4e3a-930c-f694c4e10c6f',100,82,56,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-5'),
('40e064fe-e9d5-45d6-ad1d-514d71252f53','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-109'),
('40e62422-ba08-43df-bb2d-dbc390d06e70','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-3-1'),
('40e9ec9b-9213-4a9a-a90d-9d8a61922ff2','f7591348-7d95-45d1-8a05-cc0376cdc4d0',47,137,10,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-8-2'),
('40ea3771-1640-4fec-9b68-1906891139a7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-42'),
('40ee7e71-b51e-4c51-a12f-7037c29671b8','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-10'),
('40eefdc0-97cf-48a1-a5c8-6c2375fee3f6','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-8'),
('40f0ebf8-fd33-49cb-bf30-a1561babbb36','47e4ee8d-44c4-4351-9364-ad7d3f45a197',77,128,9,0,'2025-08-15 15:03:02.477','2025-08-21 16:36:49.269','437514624-2-1'),
('40f49a86-9db1-48f6-be88-175ee42c6a54','c527dd1d-63c2-443d-aaa4-dcf25c34e426',94,75,70,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-3'),
('40f9f7b1-ca66-4c01-bb33-944010847361','7b4ed6a5-61a8-4716-ac3d-984c92ff9cbb',200,54,50,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.972','221396383-4-1'),
('40fb60bf-8485-427b-bfc7-24e3ba4033bd','8625abf2-719d-4d7f-b206-16948b318b8b',50,40,56,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-4'),
('40fe8779-ba48-4db0-a25c-9d59643ff30a','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',234,70,95,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-6'),
('4105a52b-d0bf-43a0-b080-08052d53e526','e891b961-f9b8-41f5-b49e-f492048bd8c9',55,9,211,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-5'),
('4107089f-5c9c-4e42-ad9e-cb15898e3137','43174436-4764-40b9-92e4-4e79b7c0bd68',0,0,0,0,NULL,NULL,'703914684-1-1'),
('41099475-73f9-4c17-ba69-cb2f593537ec','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-23'),
('410b4d03-6107-4e16-9a81-129e7ae490c2','42207860-48dd-4778-ac1f-e702ac193305',110,58,82,0,'2024-11-21 10:29:01.504','2024-12-15 20:07:24.367','126806100-1-1'),
('41136a4e-b693-4dbe-9500-97f84e7f11db','9114ad70-d53e-4d1f-89c7-30585d0a43de',93,73,73,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-15'),
('41173631-831e-4749-a356-2fa89b73c1ca','3eee5b92-2a7f-4edf-af88-5ad493656745',80,70,90,0,'2025-10-25 08:58:56.097',NULL,'486741087-1-4'),
('41190e51-c57f-49a5-9808-034458678cf2','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-2'),
('4119aaea-7cc5-44d4-b0fd-8609c24b210e','9e659204-13ca-4fc3-a047-37a3690f3940',96,188,6,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-4-1'),
('4119e593-5c5d-4db4-bd93-543e682db0c4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-168'),
('411d4ef4-b350-47af-9e49-99ecc88d5bee','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-221'),
('411d9ed3-06d6-4f7c-974c-1a03b703b208','9437e5bc-0bc0-4924-adb6-d303a80c1c2a',97,88,75,0,'2025-09-06 07:20:46.209','2025-09-12 06:52:49.110','598130952-1-2'),
('411e3cbc-c73d-4c75-b83b-b8807b69a077','49b0262b-aeb4-40b0-bdcc-b5461a64c972',56,4,210,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-18'),
('411edb73-2ce7-4c67-9df3-807d003a2291','14154f1c-2788-4f7f-b6f1-b56e0a99f973',84,84,7,0,NULL,NULL,'745505506-1-1'),
('411f2c0f-b919-41c6-932a-f5ea14260e69','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',71,171,9,0,NULL,NULL,'478350685-3-4'),
('41235822-20e4-4b53-a325-eb103b8d58bf','9114ad70-d53e-4d1f-89c7-30585d0a43de',67,45,18,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-16'),
('41235b18-3e31-4476-bfe1-c6401e503f5a','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-25'),
('41241423-4f01-471f-acb2-50750841bdea','f34c39ba-861a-4be8-9d1f-5e84896b1732',0,0,0,0,'2024-10-02 09:26:28.994','2024-10-10 16:32:08.887','248977442-1-1'),
('4125358c-d1ea-45e7-b708-2144a67ec603','86e5956d-750b-4aa3-8f00-53e2db7b9f65',180,55,5,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-9'),
('41297389-a217-484f-8486-94722f7901c2','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-169'),
('412b7c9c-12d7-4108-8c6c-1445e67988d8','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',44,21,55,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-11'),
('412d5fb9-d14e-4c36-8de6-f348c9b3b545','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-62'),
('412dc5bc-8cfe-4bae-b66e-72f422ba27b1','afdf27e1-0689-4491-868f-ab5e614758ec',66,67,87,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-2'),
('412ee422-f13c-4639-a28d-49486b63ee25','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-1'),
('41345f09-8a39-4d0b-8090-c69372f20407','a135c145-15f3-450a-819b-e82b427bc978',45,5,220,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-11'),
('41352d6c-892d-401e-b674-dc8686d831b6','b15c4368-e7d6-4e4e-b516-00f1365a9a74',100,100,28,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-4-1'),
('413559f7-b096-4377-a98b-3da704bfca0f','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-6'),
('413772f5-3244-4c87-a196-d3f2c486ce33','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',105,23,23,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-3'),
('4138844b-99c5-4144-98b7-ab1ed4af1e2e','546ad3d0-25c2-43dd-9443-e48b8e5b6530',52,9,105,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-64'),
('413f3068-3e66-493a-934c-33b080628491','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.550','2025-03-08 13:57:44.556','221554711-1-6'),
('41412135-546c-4940-8d74-6908c910ae92','919cfe4d-f9d6-40fb-a788-38170b409e4d',97,179,6,0,'2025-08-27 19:40:04.127','2025-09-05 08:51:08.802','896847151-1-3'),
('4141d474-d4c8-4d57-baed-022441ba6714','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-3-5'),
('41420b10-d3b3-40be-9dbf-739af2100ce9','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-7'),
('41436cb9-893c-4984-b541-98bd4a7da935','50443669-b15e-4cc6-9bdf-b91285138cc0',63,101,11,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-5'),
('4145b36d-cbec-4cf2-96f5-64ae30f485eb','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-1'),
('414649c4-6320-4a60-8038-b57d1c4f70e8','0602416a-017d-4286-844a-6bc37caa79a8',70,90,28,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-8'),
('41470cee-ec9f-41f2-8d02-1fbd9e571402','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-1'),
('414b76a2-48e8-4b21-8217-1bc3e58a4173','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-2'),
('414bc14e-ce70-4984-ab53-ccba093bb9a0','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-2-5'),
('414c2903-c60d-401f-8bbe-760c10415b64','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-27'),
('414d486b-819e-428b-b8cc-656b0b4fa3fb','1d002e0e-a36f-4d75-b950-633af2536065',75,56,56,0,'2025-04-28 07:40:43.381','2025-05-05 09:10:54.449','613502652-1-1'),
('414e7cd0-e90d-4b41-9037-a4b4b6c8a0b6','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:45.036','248284003-1-38'),
('414f83d6-3bcc-4376-a162-e6967299bcb4','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',0,0,0,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-8'),
('4151a5f2-0890-4c17-ae2d-87206390994b','e6bddda4-b1df-4be7-bbd5-63cc4b197736',210,45,4,0,NULL,NULL,'42857810-1-4'),
('4153d80f-257f-40fe-8576-873c64fadf69','c701ed0d-e722-4e4d-a783-3461ca228a9d',57,80,109,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-4-2'),
('41574e2d-f60f-4899-9bdf-434fabbc3759','140facd2-f55a-4a12-95ae-07ab47a00128',26,19,9,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-8'),
('41576ee5-e065-4f94-a5f7-5ef009257565','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-3'),
('4157b63b-8ee6-4f58-b8db-90bb9ff79b75','bb888d28-6c88-45b3-99a6-a8c19e287f7e',52,58,96,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-2-2'),
('415895e8-60a5-4b4b-92c1-4cca893b8f20','9d62bebe-af83-4e4a-9fb3-8a3ebe7c5907',0,0,0,0,NULL,NULL,'614601595-1-2'),
('415b8c1f-701f-4b9a-8a94-fb6791d848bc','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-34'),
('415bb09b-5b38-436b-8b04-14f5709764ce','169583e5-aae1-401d-bbeb-1e1ae478298c',111,220,7,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-2-2'),
('415cffd7-bb2e-41eb-837f-33b0ed4b1309','89834bf4-a4be-4296-8bac-db24c46d63fd',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-2-2'),
('41612a94-b275-431b-966b-ae8656b9bd4f','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',181,27,200,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-6'),
('41631108-db01-4bdd-b4fe-910f9b4d4ed0','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:01.580','248135683-1-87'),
('4163aa10-1743-4e15-8255-a9fb045c1dba','6ec87888-8b87-4bf1-adae-d5b6742225d9',210,60,7,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-12'),
('416545d8-7b49-46e5-ba29-0b445257fd08','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-72'),
('41655850-56b6-4ec6-9cc1-f4820bcce740','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-26'),
('41655a97-2c36-4a60-9eb4-a0019e578f48','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-20'),
('416562ca-4795-4364-a012-29882989b423','c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4',115,80,95,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-2-5'),
('4169aea9-a127-4cbd-a477-72ac10903acd','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-118'),
('4169cc23-e03c-4e29-a268-fdf85a712797','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.754','2025-05-04 22:43:52.406','412411011-1-2'),
('416a675d-51e8-4c52-82a1-7389bd202c98','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,83,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-3'),
('416c646a-833b-4429-9e36-c07b0675e563','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-85'),
('416c6b81-8d57-4c77-a792-e6368931f0c8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-37'),
('4176345d-984d-472b-b031-096ea539cec6','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.697','449921347-1-1'),
('4176e0d4-49e5-4401-9789-f00d0c2fd4f4','9a74cdae-acbf-459b-836a-29ba929835b2',56,48,58,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-10'),
('4179c3d9-f312-461e-b3b5-e9d4462e75cd','6ec87888-8b87-4bf1-adae-d5b6742225d9',50,7,215,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-13'),
('417aec63-ba22-4f64-b2c6-ffecff4ad640','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-1-4'),
('417b2add-4310-4e73-820a-b323a597b667','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:02.247','248135683-1-190'),
('417d2390-cebf-4285-9d89-58b179790186','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-2'),
('417df1ba-d828-47d4-9858-ebe783d9986c','016dfb52-0431-472b-8ea9-e510a1937e2e',45,28,201,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-1-2'),
('417e6d22-ec72-4786-8b00-5b825f14a25a','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-35'),
('417fb842-bc22-4cf5-8b3c-af6e3b1760ad','0d3a5595-1b06-4732-a954-1590654c804a',100,200,28,0,'2025-05-24 17:55:25.951','2025-06-04 19:39:25.936','478240909-1-1'),
('4180a1e7-8fcb-4536-a8be-a0792b7cd359','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',70,70,10,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.704','437591433-1-6'),
('4182b4a1-91d4-468c-b674-4ed248ee7cf3','0bd42145-fdd8-4793-a5cd-a2e404d37142',50,114,10,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-5'),
('4185e1ed-7e60-43f5-b3f5-2db5af8e91d5','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-2-4'),
('41871c9c-a824-4da6-9a72-e72920c2dfe4','9547b618-8081-409b-9076-efd2957a9e1c',60,240,98,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-2-4'),
('41889ef1-adbb-4a1b-a13a-daafe007412a','4da5ac02-2da4-493f-ad0f-88044a96633f',96,235,60,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-1'),
('418ade71-0c93-40c5-bb7f-a5c5afc082b1','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.460','734579794-1-4'),
('418eba6c-a466-4f2d-91d3-06b17e982da1','e9c704c2-110c-4300-bbeb-984901945bae',91,230,75,0,NULL,NULL,'371797202-4-3'),
('419088cb-afd7-40d1-8186-a5f4b741a8a3','d8e303a8-8046-475f-835c-016b3dbd77bc',44,44,37,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-4-1'),
('4194a9f6-829a-4623-99ba-dc1f2d6284f4','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-2-29'),
('419807c0-ec25-45af-bb9e-0ba1004b9c48','3e4d9220-ce76-450d-a76c-9787b1f4433f',34,34,41,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-3'),
('4199e8be-7409-45b0-b667-f6e621a2372c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-241'),
('419adae7-3617-42e2-b265-b79d0a49a57e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-157'),
('419bd7b6-1683-4677-bad8-92ebe3df29fd','8beca2df-7a47-4d0b-b3bb-89209ce0b5c5',25,30,15,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-2-2'),
('419e0a7d-bbfc-4f0c-83a3-f364a4d4cc35','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',72,223,13,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-10'),
('41a1fca9-c9ef-4431-85ab-ac39a5fec481','57604baf-e8cf-4035-aab3-ed4bab52522f',47,212,5,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-4'),
('41a2b3f8-1a77-41e7-b488-4fac5cd0b6de','950edd95-6cf9-4fbe-b156-c4ec6d470b3b',166,70,95,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-3-1'),
('41a30123-18e2-46a6-841e-0cbcdd9bd4bc','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.929','2025-08-27 19:35:01.417','531988506-2-4'),
('41a45326-0aaf-41b9-afa8-a080fcc96e65','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-89'),
('41a67d41-ca31-4bd8-879c-e8e97a832d0b','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-1'),
('41a70997-b244-45bc-a5b4-40e2c43f2d5c','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',56,85,100,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-9'),
('41a91e73-1186-40d6-bd3a-feb723203e16','8517180a-7a58-490a-850a-a80ebb332fa2',0,0,0,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-4-1'),
('41aaaa5f-06df-44ef-9d19-6e647028711b','3987bcda-6531-4738-8815-187fd84bf71c',135,33,20,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-7'),
('41ab95fc-428d-4ef6-8ed4-2a27f834e023','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-3'),
('41ad671c-725a-43b4-ad1f-c3027062bb5f','af53dbaa-15c4-4117-8048-34fd042df2fb',50,40,80,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-2-2'),
('41ade966-763c-4127-b0d5-03c16cfe7c59','50cd18d1-456d-4a3a-9315-1c4d4ae815b9',60,80,95,0,'2025-02-09 09:51:24.840','2025-02-19 18:36:53.201','50133684-1-3'),
('41ae9fcb-e329-48da-9fd9-d059b4c3072d','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',207,77,6,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-20'),
('41aeadd7-d35a-4444-8730-5cd4eaba5b9b','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-9'),
('41af0291-3fa3-4d40-8cec-b6f1953149bd','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',80,47,18,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-63'),
('41b21cde-d145-4c92-83f6-1eb49f6f0308','9e9d8510-86a5-49dc-924c-9ab30e855883',95,55,65,0,'2025-10-02 11:20:43.409','2025-10-17 06:16:56.789','976185606-1-3'),
('41b5ba0d-b076-4dca-82d5-be17741753ef','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-50'),
('41b5c644-0999-442a-b259-9d6af5fb5909','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.506','745970479-2-5'),
('41b8158e-a2d0-4d28-b467-fc88cb74774b','e0cc17a2-4392-42a5-a637-de0f1c60c459',93,29,204,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-2'),
('41b85685-2cf2-47b4-b274-d524ceb1907b','676266f3-03e6-4ff9-92c5-07a1b81bc27d',215,96,82,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-3'),
('41b8d2c9-0238-4182-af80-fe06201c6eb0','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-26'),
('41bb4cb7-624b-4b88-a231-25691e67414e','e6dbec74-0616-4752-8816-29db541e12d1',185,100,68,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-2-2'),
('41bc6723-2be4-40ab-b4e1-331282a728e0','25311b3c-c4b0-4bae-ab6f-95cc825f6176',0,0,0,0,'2024-07-20 16:33:22.010','2024-07-29 13:30:04.515','982318245-1-2'),
('41bd5f80-f878-4073-bec1-cec4fcc2b639','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-7'),
('41c0cf15-a34d-448c-ae04-9d9b45980fb3','1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be',51,51,77,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-1-2'),
('41c1502b-7395-4daa-9eec-db6d28bdbd4d','090862ad-b2db-4f65-8ab5-ccad7f6f4211',87,87,8,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-1-1'),
('41c46e47-be02-4962-8612-977eafc9fae7','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',43,25,200,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-3'),
('41c6da36-bceb-4984-8a3c-678b23494b4e','fc33e6e7-779b-41c9-8d72-c26a1d995b78',100,142,8,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-4'),
('41c940e1-b027-434f-8b8a-add84a4c3cd5','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.415','2024-11-11 19:55:08.407','465500768-1-3'),
('41caa755-6314-4b70-839c-4de6de6d4933','8fc7023c-7fab-44ae-a533-006d835eddb6',86,206,2,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-7'),
('41cd7a0f-4e5e-4ff2-b801-17d4e639b9b0','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',90,127,8,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-4'),
('41d107aa-f033-4c38-b991-54d933bf8108','f2026b48-8180-47f7-9044-d94056905698',83,85,83,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-6'),
('41d16887-185a-4bb5-a804-66127da213df','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.000',NULL,'221811614-2-2'),
('41d4559a-5d99-4b4e-8655-9896f0dddfc7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:46.056','248284003-1-150'),
('41d4e679-8245-4b55-ac4f-41d819a04997','66f04f14-5079-4050-b288-99b7ac004505',51,51,77,0,'2025-09-26 12:39:46.350','2025-10-10 21:30:25.670','221621737-1-1'),
('41d5634f-6add-47af-afa3-269767a55c65','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-64'),
('41d57c34-9911-429e-a592-db052dc8055c','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-1'),
('41d6864c-a649-4fc7-bafe-ec6c8c3e4aae','3233f103-8c48-4a31-af23-0a9a1da3e7c4',100,65,204,0,'2025-08-27 19:40:24.697','2025-09-03 19:37:47.968','613661947-1-2'),
('41d9f154-2a67-47c0-9959-e0fde00efe8e','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-16'),
('41ddefd6-fa2f-4761-8f2b-5484026e83a1','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',40,30,30,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-14'),
('41e17e0b-bb7f-4f6a-806b-4aafc754ea84','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-8'),
('41e35431-b5d8-42af-9f0c-efb7cf96dfb6','6060763f-09fd-4b23-9d16-0641dc9c453d',46,68,13,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-3'),
('41e46240-3a96-48d1-b2ec-24ef05de9235','0e92c59b-93d0-4308-91ce-3965bb186203',22,68,49,0,NULL,NULL,'428180919-1-20'),
('41e7bd7e-3b7b-40c2-87d5-fb68f3f44878','e685dec0-77f5-4777-a591-8b659322473d',0,0,0,0,'2024-10-23 14:11:49.290','2024-11-04 08:40:50.986','745519015-1-2'),
('41e8231e-336c-4ea5-8469-cbfb98820db7','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-7'),
('41e88d4f-bafb-4418-b48b-f9523f116d4a','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-3'),
('41f3bd22-2932-4774-a10b-495606170487','6b64d1e9-ff42-44d9-84a9-30cf22738927',92,61,70,0,'2025-03-13 12:21:43.381','2025-03-20 18:08:22.870','127241743-1-2'),
('41f78745-4926-41f8-91ad-ee5b12e12628','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-61'),
('41fcd399-45cb-4a4e-8e62-fe23f22710c6','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-37'),
('41fef29e-d723-4313-b5d0-f5a48b36c121','6a308121-6cf9-4384-8446-08182bd669fd',210,42,7,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-20'),
('4200caa1-f56a-4238-b7d8-40ee37159050','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-7'),
('42060307-66cf-46d1-a803-374947100a0c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',68,90,7,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-29'),
('42065fa0-38c4-4b63-a846-bb56749cdae2','b6d04ed2-f29f-400a-ba86-37b36b0830b2',11,52,96,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-5'),
('4209eda2-8ef5-48de-92f2-cd4526cedcf0','6d0390ef-65ce-4154-a607-d67e51938ed2',71,7,175,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-10'),
('420c50b6-41d4-47bd-9acb-c8e35e29b967','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-112'),
('420f4506-7d5c-47ce-9ff3-e5535eb9013f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:03.136','248135683-1-239'),
('42145dac-9474-48a5-8845-7002d0facc56','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-1'),
('421af988-e90d-420a-ad3a-e645045e88e3','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-12'),
('421cc587-6872-4b4e-a89e-93e4ca52ffe0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-179'),
('421dd361-d1f4-4935-ab27-665505c21268','f2026b48-8180-47f7-9044-d94056905698',115,115,73,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-4'),
('421f72c6-9b2a-4239-8bbf-fbef56369c64','81b6844f-9988-4a82-aa1c-b69b75b17ba7',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-2-1'),
('422146d9-9048-4a0a-8ce5-44f955279e7e','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.095','2025-07-02 06:17:10.669','695249199-2-5'),
('4221bd65-d1e3-4d47-b7bd-55f00464a393','fef5bf4d-01ee-4073-99a2-5cff1b560073',77,56,103,0,NULL,NULL,'371117320-3-4'),
('42227314-8f54-456b-b942-c2edc0cccd40','f736ebb0-2344-4b12-b853-5ab586355287',7,97,188,0,'2025-10-25 08:59:00.065',NULL,'51557557-1-4'),
('4222a1f8-27de-4fe1-9c16-6f399242f44b','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-1'),
('42249bb3-542d-413c-9300-9a80024ad6f0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-117'),
('42270da7-cb8d-49f2-b672-af0962a217f3','f3414f51-92da-4967-b108-6baad5cdd798',145,193,10,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-8'),
('42297b3a-0f8c-4fa9-bda5-f32ed2368d98','d024ac00-3c90-4d85-add5-6d95182d7f3e',40,118,95,0,'2025-09-12 17:16:39.504','2025-09-25 14:04:59.283','817160215-1-3'),
('4229b550-ca1f-46bf-bc56-4b47fbf8f74c','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-3-7'),
('4229ce6f-8e19-4a72-a6fd-818f9733ce26','38109a6e-8ac6-46d9-8530-7fd5b3725869',70,80,85,0,'2024-12-13 14:49:13.085','2024-12-24 12:30:25.814','1936694-1-3'),
('422b60fa-8fbe-4d5a-a09e-50ffb170189f','9b1dd344-e23e-43d0-a03c-7f3b62f2b24c',0,0,0,0,'2024-10-11 16:09:17.348','2024-10-23 13:04:02.940','745924426-1-2'),
('422ed771-2dbe-4a30-9ab2-4216176369bb','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-1'),
('42303df8-a4f0-42bb-a963-ba30de5ddb28','0ff914c7-1691-4651-80b7-e820501b0c32',44,56,11,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-1-1'),
('42309d88-c996-4d50-8220-adc915068e7e','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-5'),
('4234cab2-e1c9-4c9e-93fa-6f76d37e75e8','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,85,2,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-11'),
('4235cc67-6edb-455b-90d6-e21d2f03988b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-250'),
('4237769f-f8e6-425c-ac16-5b1c81fd4d01','9866a947-9974-4053-8415-4518842488fe',88,54,4,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-15'),
('4237bda1-f76e-4fff-ace0-6cca027b6bd7','75e7d3fc-2c13-46f0-a46a-88b11bcb2401',0,0,0,0,'2024-08-07 15:02:48.808','2024-08-16 19:21:54.735','478212125-1-4'),
('423b2376-d792-4e9d-9305-125c65fbbd50','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-13'),
('423b97ed-30cf-42cc-bbf8-7f80b792e3dd','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',47,16,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-10'),
('42415815-8f4a-47e9-9933-06c50d6f41f6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-105'),
('42418823-ea8c-4398-a239-1741e49d6319','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-2'),
('42420317-efac-442c-9fa2-23f1b3e6e331','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-88'),
('4244b524-f4c3-431f-88d4-573d8a5223b8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-26'),
('42454437-3497-4d84-b4ec-68e228feaa05','a135c145-15f3-450a-819b-e82b427bc978',76,100,52,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-6'),
('4246b2f8-4799-422d-ad94-41eb03d7e3df','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-37'),
('42473c41-5721-468f-8076-196dcbb5254b','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-13'),
('42497399-7307-4a10-9592-cd9c016934f0','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.526','027201624-1-13'),
('4249ecb1-a4bd-4826-b465-7ab15036258a','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',225,89,2,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-21'),
('424b0668-bcab-4a47-bd00-43786cbd5942','d3bb2bf1-aaaf-4646-9e16-f444a59bbe9c',45,45,38,0,'2024-11-02 08:42:17.899','2024-11-12 16:17:16.557','982880880-1-3'),
('424c0fd8-7723-408c-90e3-a71ea900b220','edef2f29-fe9b-4fa0-8465-53614e2f2468',123,69,101,0,NULL,NULL,'478412191-3-5'),
('424c58cf-2a89-4ba1-bcdf-14c4143290a0','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',85,13,86,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-3'),
('4251b4e9-bb44-4784-939c-813d5f3a45cf','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-8'),
('4252fbe5-83ec-4520-9cb1-eb1c6fc5fa5b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-73'),
('4253b4c4-c4c4-4c44-bab8-ffe2ad1159cd','03e6b41f-f2d8-44cd-8fde-3ed5e7f289e2',130,100,50,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.036','100605954-2-1'),
('4255fe0b-9395-4fe2-9e44-97113edddbb3','e9f178bf-a805-4676-ada9-89a3aa16ee4b',0,0,0,0,'2024-04-08 08:57:47.451','2024-04-29 09:06:18.970','478803764-1-1'),
('4258cb47-00e0-43be-9a06-9b8bbcb44f46','7a97860c-cf43-4a19-988d-d91cf377fd10',94,30,60,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-7-3'),
('4258fbae-1788-4846-a3e8-3047407b6485','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-1'),
('425b488e-a8f4-440b-bde1-3c1a314f1555','a5e8964a-d12d-4dc6-b88e-55ea9e1549f6',129,46,76,0,'2025-07-02 12:43:40.932','2025-07-18 17:08:41.285','37140435-1-1'),
('425ba696-eecd-4029-b91c-40be2007a4f4','07d8311a-40e2-4710-8c91-98b60be2e17e',120,120,70,0,'2025-04-21 06:13:16.659','2025-05-02 17:10:53.232','501703321-1-4'),
('425ff3bf-c3cb-4976-80e4-3bfcab6fcd2c','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',78,93,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-2'),
('42634d15-e511-4527-bf5a-e776c567dcb5','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-1'),
('42646c43-61e8-4c4d-91d0-5efe3c6af6c2','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-6'),
('4266d9d6-c124-4871-9ff9-e98e646e371d','59e374c2-6e9d-43f0-a7b5-2e103296684e',93,70,183,0,'2025-05-09 18:43:49.654','2025-05-21 18:37:05.329','371160737-1-1'),
('426a3282-f74a-4817-9902-baffc0bd7dac','aed57dfb-3aa2-4f6a-849f-51424a18ca86',96,60,81,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-3'),
('426c71a8-e793-4a79-8ea9-6b810a971524','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-43'),
('426f388f-3b95-405d-8bc8-898bbb2fda32','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',71,24,202,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-9'),
('42722382-7824-4e37-9660-c1b991f4711a','4b539733-41e8-4f8a-81e2-17e2b9e31c94',0,0,0,0,'2024-08-07 15:02:43.871','2024-08-16 19:22:09.872','478101302-1-1'),
('42749f9f-1da2-49f5-a46a-8adf47601f24','ee746bfd-05a6-49f4-9eca-b7da110692d7',100,11,167,0,NULL,NULL,'428172853-7-2'),
('427a0513-bad3-4469-b5c4-80cd833cf9d7','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-81'),
('427b7f3e-f180-4580-93b8-a26d655849aa','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-24'),
('427ceb23-c0b3-420f-9e3d-0ff1e0f9a5e4','354bac1c-ec3d-48a4-af37-546517794e7d',0,0,0,0,'2024-11-02 10:13:48.043','2024-11-12 17:05:59.335','745128598-1-1'),
('42804c0a-19a6-40a3-959d-9736c86dd20b','9114ad70-d53e-4d1f-89c7-30585d0a43de',222,50,7,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-17'),
('428271cb-563d-47db-8230-c3ff6d75a6f9','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-5'),
('4283b14b-3cf1-4676-86a8-032492a43c56','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-15'),
('42846cee-c080-4a71-8ade-70e780bc6be1','6cee1429-9935-4eae-be32-dc630b6d70e8',200,90,22,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-11'),
('4289281a-6c0a-4a23-a238-97c3a48d1588','c891230b-a98b-467c-9f5a-6b1fd89f1dde',85,70,70,0,'2025-06-14 12:48:25.371','2025-06-23 09:30:00.019','982578025-1-3'),
('428da2ec-ef70-4230-ad36-401be95feb01','fb58f438-30e4-4e01-af6e-6378e27a11fe',73,64,53,0,'2024-09-10 10:47:04.843','2024-09-17 13:50:01.592','517147933-1-6'),
('428e12bb-8a48-4adb-9ed1-bbece50335c0','6e7cb94f-e7b0-449c-8458-dffd274f8115',93,15,208,0,'2025-07-29 12:58:48.867','2025-08-07 07:12:44.161','371191289-1-1'),
('428fabe8-e6e4-46eb-9bc1-bbd5e950a120','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-2'),
('42901d36-f652-4d42-ac6a-aca0639d282d','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-28'),
('4291f314-09db-42f8-99af-774a5f5461af','903795d1-74c0-4123-a09d-00392e52b276',56,81,101,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-3-1'),
('4292a750-15df-4133-80b2-739d578f6016','2638267c-49c8-40a2-9cea-d01b15ec2ffa',100,158,67,0,'2025-10-08 17:44:08.106','2025-10-20 06:32:16.904','644113252-1-3'),
('4292ccff-9d11-403e-aac5-2ee7ab127cef','3d6f2aed-8c6f-41aa-a8a0-136eeef8c725',65,90,87,0,'2024-03-31 17:55:02.046','2024-04-17 10:15:56.135','982629756-1-2'),
('4294c163-6e55-4e1a-9612-0ec4f58547c3','f88c3e53-b711-4bcb-aa3d-9543580054cd',21,16,34,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.305','107623614-1-23'),
('429ea0ad-7c19-4c76-8404-2dcdb4da1847','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-58'),
('42a0b5ec-a993-4347-a38d-bcedee35518f','f63639f3-aa59-4a10-98a8-8b3cc509b6f9',97,223,65,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.371','517447554-2-3'),
('42a86d7b-760a-435b-a5ff-0b9e630b5a0e','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',85,85,8,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-5'),
('42a9de22-3322-4a7c-bde2-d24d9e1da8b6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:04.329','248135683-1-89'),
('42aaa814-b5d7-4ccd-9bfc-e7a32bfb0dde','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-111'),
('42ac7ab2-97c1-4e0f-b4c2-6e296dd2f68f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:04.940','248135683-1-54'),
('42af4458-e4b7-49a9-bf6a-a30ac40d8546','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-14'),
('42b0deaa-3645-4e25-a3d0-522bbc60b672','bf1a5038-41f2-4421-8c5f-5546bf1e6c91',51,51,77,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-3-1'),
('42b1b49b-5f82-42f4-bcce-5ca9d2abae13','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-2-1'),
('42bc5afb-af71-48dc-be31-09676bc3b7b2','3943ece7-1eba-44a5-bbe0-8a7ab3b8fb5f',55,72,101,0,'2025-10-25 08:59:13.605',NULL,'644769101-1-2'),
('42be6493-30fc-4a63-8a1d-7b52067cf8b9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-53'),
('42bf2891-f4a3-4fd9-a980-d861ebcdb930','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.102','478593603-1-1'),
('42bfe184-1465-45bd-92b2-acb9ef498e06','f68f848d-9773-4521-8431-b7efe576a9ea',221,36,46,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-5'),
('42bfeb22-e2a7-4cb6-9cd8-f5438bccf2f1','6c7b7f95-a783-4780-93d4-d95611c52e44',97,70,235,0,NULL,NULL,'338387774-1-3'),
('42c050af-921c-41d7-bb6a-ab28afb82a61','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-5'),
('42c61b5c-4757-4348-8ee7-246d331efa80','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-6'),
('42c715e9-071b-443f-90be-092d854455c2','3cd9c83f-509e-4b69-a8a0-bb45f200c3d4',56,102,77,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-1-1'),
('42c8ce6b-8833-4db1-8135-b6a9824c7f50','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-54'),
('42c8ceac-8361-472e-bbc0-924bdeb28730','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-11'),
('42c95f0d-de8c-477f-aa3f-a0fff180507c','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-32'),
('42cc5842-6be0-4369-912a-9d0d996a79b9','9d7979f3-a35a-4a64-97d1-4ba973786029',32,20,13,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-3'),
('42ce07e5-a6bd-40d1-b27a-5621aec40d8c','78093200-7588-4a38-bf16-e75f613ae247',188,96,9,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.035','505850944-1-1'),
('42ce4cdb-de35-44d2-ba29-fece7f7e7c54','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-10'),
('42d241f8-2874-48ca-8065-3527694f6ee2','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-9'),
('42d25dac-5cb9-4a01-be73-5bc7f6725923','08af242e-dc62-496d-980d-0f589dcdea60',95,95,65,0,'2025-04-30 14:29:08.549','2025-05-13 09:05:45.760','412913992-1-13'),
('42d626e6-4c60-4d21-b838-ec540882c1dc','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.319','478365640-1-7'),
('42d62b95-4f69-4c09-860b-4f1ef9be996b','dca3d44c-499a-4076-b2f1-56f7b0be9260',75,90,220,0,'2025-02-03 18:18:26.436','2025-02-15 05:21:45.648','338474620-1-3'),
('42d93471-9c2c-457f-9260-9221e2fe695c','e9626be5-ddcd-40d5-865d-7018bc1ef9df',75,35,65,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-5'),
('42d9c7ab-bfcb-4d8c-997a-00709ae5af0b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-45'),
('42da13e3-644c-4946-a9d0-e48c03916958','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-5'),
('42dac5af-a9d3-41ff-8886-f9dbd93beb55','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',193,135,7,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-46'),
('42db6cfa-9a51-4e54-9cd2-7c9857781512','e8dc151e-1148-4a48-ac2a-d4fb2c761969',153,46,12,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-5'),
('42e009db-8568-4417-8004-194864bd188e','1dda97ac-51c1-4b89-abe1-67ed131b4e9f',18,37,97,0,NULL,NULL,'745883224-2-2'),
('42e2c1fa-b927-4609-8852-18130b4126bb','b07ae607-4e74-446a-afa8-eacbba5e3668',82,100,57,0,'2025-10-20 04:18:21.633',NULL,'312422305-6-1'),
('42e5eb33-db82-4614-b878-e40844cbf98d','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-5'),
('42e8f150-dc22-4e73-b7cb-063938d14221','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-18'),
('42eb7847-86c5-4c73-8ee4-8c5b670a6606','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-47'),
('42eedec2-b811-4c02-89b7-f85d127df9b6','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-14'),
('42f14d00-e27c-4a8c-aaa0-784f041bfbb3','bdc15b51-242d-450f-a47e-a75e07f475a4',200,29,80,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-3'),
('42f66236-0589-4247-83cd-dccc38386fd1','8e317333-4917-4a57-b2a0-6592178a7d36',240,70,95,0,'2025-02-13 20:43:45.320','2025-02-24 20:30:58.481','127504677-1-2'),
('42fd3979-60f8-4568-b4a4-6db492fdfb61','852cb596-91b3-432f-8aee-ec6a804f3a01',56,83,100,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-12'),
('42fde658-763b-424c-9bce-cbc2f062d779','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-10'),
('42ff5420-ae31-4537-a3b8-9651afca09ce','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-23'),
('43024a9c-1a16-4247-8af2-af832064e1c0','04dff17a-2b9a-4f35-a082-5684dfe5706f',160,10,60,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-5'),
('4303c0a3-92f6-4aab-afbb-427c212ed621','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',56,72,106,0,'2025-09-16 16:29:04.381','2025-10-04 13:57:40.402','478906000-1-4'),
('43067a5a-62bb-4417-ba25-ee372c6ab9da','03ad506f-f86b-4dbc-952f-52b01e2467fa',105,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-21'),
('43078273-d29b-4e74-9fc4-2cc692e80fe4','cbef7bb3-505d-4317-b96f-79bb7c881fdc',82,57,110,0,'2025-08-27 19:40:13.648','2025-09-04 06:16:37.995','437660658-2-2'),
('43093061-8898-4929-a7d9-0cf8cb18b2c2','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-9'),
('430ac0ee-dbbe-4fa4-a04e-b55b723ad065','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:46.127','248135683-2-14'),
('430b053e-60f9-4754-8bb7-528a23f6a078','052ad905-3da0-483a-aae7-9d36b31da379',68,22,49,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.569','428122550-1-2'),
('4312f382-5c40-40bf-a801-081dae4bab70','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-38'),
('43144f22-80e8-418e-9874-a40e16fbc774','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-83'),
('43167062-60a1-4743-aca5-7a189bb76ca2','5ab2416a-7bef-46c2-b80c-b65bde62a234',45,81,24,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-3'),
('431cb548-0260-40d1-a7ea-65d518ebbe84','cc6f3b66-bc19-498d-9509-1b342de6fdc9',227,92,65,0,'2024-09-19 18:27:55.806','2024-09-24 16:00:34.897','52896910-1-5'),
('4322afd9-f1d2-4464-aa1e-8819237086c9','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-8'),
('43231611-a9e9-45c7-87b2-e08f9c03e6f4','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-8'),
('4324e8e6-ce67-4b0a-ac7f-553a5bb56122','2318c3b3-a656-4ca6-b48d-9732b15b2a6e',0,0,0,0,'2025-10-02 06:45:34.797','2025-10-15 08:20:29.969','75052392-1-3'),
('4325c0bb-0e7b-44aa-9d48-5f30a8c62775','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-26'),
('4327358d-1705-4b1b-a156-f9401ef7000d','cc7dddf4-427f-4a79-9cec-d95529ff2c95',37,17,204,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-2'),
('4329439d-c9f6-46ed-92ab-f2aa3a5c385d','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-15'),
('432fad2e-6cbe-442c-9772-9ca8afb37cbb','58fe4c33-e268-41af-9163-4863a4d27452',108,56,72,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-7'),
('43314ab6-2d99-4d5a-aed3-e675fd8670cf','53025d92-f019-4f5d-9b69-68a3b09bb7bc',43,70,4,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-5'),
('4332949b-4991-4f63-951a-457f597577cd','e1601d35-cc40-41a5-8e8e-8005a1281654',128,59,10,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-6'),
('43350625-b1b3-436b-b8b1-599c2d2d736f','634dc64a-b9bb-45df-b331-ced53563559b',94,206,54,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-2-3'),
('4335550c-5d8f-4ad8-b173-a7a14b4a6ccb','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-12'),
('4336bb60-0864-4ae3-b477-fd007477c34a','28c4ae17-77a0-4b80-85e3-0cdc8efdd131',80,90,70,0,'2025-08-14 10:05:31.015','2025-08-27 19:39:28.223','505987989-3-2'),
('433771b7-c3a2-46a6-944a-08e232186040','92f4338e-023b-42d8-a569-19b0439633e2',94,95,70,0,'2025-03-08 13:46:08.990','2025-03-18 18:33:04.535','644130393-1-1'),
('4339a3ca-7dba-4980-bfa1-351ccf737b8b','66f8d34c-0c41-46f5-98bb-500adbb6f636',60,10,213,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-1'),
('433aae21-c76c-47c6-a8d8-22fa5ac8d6d5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-53'),
('433d4a6d-c24a-49d0-aa35-bd93bfcb6b98','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-2-29'),
('433d9268-547f-4b1f-8456-895cfea6cf4b','53356ef7-7c3b-4558-868b-c1552ff1d067',95,70,160,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-2-2'),
('433e3264-a6e7-4c38-a566-6130427d45c4','8e6246d2-0976-47a0-a7c6-8176e4065305',100,217,81,0,'2025-09-18 15:49:00.938','2025-09-30 06:44:54.100','644153988-1-2'),
('433eba06-c6fb-4dfe-bc44-1221da84297b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-223'),
('433fbb4e-f313-4f5f-90b4-04119d036bf7','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-4'),
('43433644-3db5-4fab-b89f-bb0450532ede','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-18'),
('43440a02-33d8-42c9-8968-aa9af57113d2','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-174'),
('434652f2-5de4-48b9-9f86-6c04be08a57e','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-16'),
('434b08d3-d3be-4660-b1a3-7cfd4afa8278','01db3b45-741b-40a3-890d-f412f526963b',51,51,76,0,NULL,NULL,'221763224-1-1'),
('434b578b-ad46-4afa-ad95-91d72d9aaed7','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-8'),
('434bc600-0ae1-4be3-895c-2165fc3d493c','b1e78900-6d6d-4a9b-b697-4622b372f80f',51,51,77,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-3-1'),
('434c3ed0-82cf-4655-8b03-46053884a315','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.418','2024-05-21 18:46:29.546','734970518-1-3'),
('434f084e-406c-4e16-b98e-e5181e74bddd','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',97,56,56,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-2'),
('43527483-38a3-42db-a877-1f33a6c570f2','16bf292d-cc10-4c60-8e1b-eb5020fba975',0,0,0,0,'2025-04-15 16:01:51.538','2025-04-25 09:51:53.683','786276080-1-2'),
('43539e40-1fe1-49c0-9824-a462d863b674','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-5'),
('4359a010-c56b-4252-ad92-71d3e66cd353','8c381124-abe0-44ea-94a9-c379625d2023',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.856','910479941-2-2'),
('435a3e12-8112-454f-993d-ca768e4fa77b','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-4'),
('435e1436-2025-467c-8e70-1f8b2be5621e','d3bb2bf1-aaaf-4646-9e16-f444a59bbe9c',45,45,38,0,'2024-11-02 08:42:17.899','2024-11-12 16:17:16.557','982880880-1-2'),
('43625f5f-fd61-4632-bf55-4f49715b329a','0a8285d0-d3db-4298-8e41-62c5429f150a',143,43,6,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-9'),
('436448bb-20b7-44ed-a301-fe0d8bcf094d','f104dcdf-0960-4a69-9dd5-baf21874bf92',57,62,84,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-3-1'),
('4364d1a0-11e3-4610-9945-ae10a7447d71','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-12'),
('43652588-cbcb-4714-8156-ebbe6d7c41ee','e89e7d75-4967-4c63-9f73-981469e531af',95,110,68,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-13'),
('43680b9c-28e5-4004-aef9-48b554067351','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-9'),
('43698a8e-5fbe-406c-b3f3-4dd7e0441e1c','2f648ea0-48c1-46b4-a5f2-0d0c23a5709c',93,53,76,0,'2025-10-20 07:18:04.670',NULL,'517619393-1-1'),
('436b08c9-65b4-47bc-b6a1-cdd795b8fff8','b153c580-1fa3-4d05-aed9-d033117f4c17',40,29,59,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-8'),
('436bbbd7-6927-4e28-ad86-81fbf8ee1bf1','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-11'),
('436c6db7-242a-4d76-95fd-4c9fcc6f3cdc','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-53'),
('436e8bd0-48df-474f-a5df-9c15aa83878c','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-2'),
('4371c5ad-e514-466f-aa88-18438d520136','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-15'),
('437d2f4c-ef11-4326-9da7-ac81e0b284b4','31990719-44d6-4ddb-ab93-087248d2f93c',106,7,202,0,'2025-06-21 04:34:04.432','2025-06-28 16:00:55.749','644716997-1-1'),
('437ecdeb-b34b-4fdf-9320-dd1cd33560f7','f4bf8c4c-4867-449c-8abd-6995be691baf',102,56,82,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-4-3'),
('437ede1a-a301-42c7-8599-9203837c485d','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-61'),
('43801378-5a4a-4369-9b80-e4928e9ca7fd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-47'),
('4382b79c-c02d-4ee7-8956-2c6a42d445c3','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-1'),
('4383379a-9903-468b-87d8-b549907aeb1e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-108'),
('4383c64b-32d9-431a-80a7-bb94a8bf9638','5cb082f0-4973-4f83-ba7d-550b088af234',58,65,75,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-6'),
('4388b976-fd1c-4bf9-8916-5fd5a3fd8c6a','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-5'),
('4389223f-54a7-4945-b0ec-46961798193e','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-31'),
('438ab899-1349-4fe3-bc01-b0a81a226139','4e0db86d-11b2-41d2-bddf-34d3072b55cd',94,93,80,0,NULL,NULL,'644637221-1-2'),
('438b216e-955b-40c3-958a-247ceadcb54d','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-75'),
('438c1e42-2658-4cb7-864e-a984cad663a6','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.490','027336842-1-17'),
('438eef93-8015-411b-9f9f-6076bc02c2f2','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-56'),
('438fce2e-1f8b-4ab2-a838-0d242e91c645','ca9a64dc-5c9e-419e-83e6-dc5642b05495',65,85,80,0,'2024-03-31 17:55:10.379','2024-04-12 07:17:01.209','982310142-1-3'),
('4392e7fa-265f-4e30-9cd9-08a9a496ced9','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-16'),
('439855ab-0965-4068-a469-a96625af9efc','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-66'),
('4398e6d0-0472-495f-b46b-15d01fc75b68','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-27'),
('439bb21e-2cb7-4b23-95c1-aad0e550246e','2b95b149-0eea-4aa1-8465-0650e3c52636',46,41,59,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-1-3'),
('439e21d2-e0f2-41ea-a9bb-217052252450','f0485a78-951c-4f89-bddf-b2003f0bf783',47,41,58,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-21'),
('439f7db0-6365-4542-94af-46f701aba69a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-192'),
('439fa1f3-043b-480f-89b6-cb275ab7be17','62e578d9-4130-45c8-aa72-f73c4ff49204',22,43,88,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-5-2'),
('43a4c52b-7748-4e2e-aaa1-f0f491e9a00b','501be04f-cb8a-4467-a453-3e4bd6f2b13f',98,73,71,0,'2025-03-06 10:32:11.218','2025-03-13 18:34:44.542','455522020-1-1'),
('43aa8f0b-24fe-4d43-b140-5bcccf7c71a0','16bf292d-cc10-4c60-8e1b-eb5020fba975',0,0,0,0,'2025-04-15 16:01:51.538','2025-04-25 09:51:53.684','786276080-1-3'),
('43aba3a5-6b04-4df0-95aa-06428bfbfc4c','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-98'),
('43ac4c65-d4ab-4376-adb5-561dc7c30575','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',48,107,9,0,NULL,NULL,'428413605-1-6'),
('43ac8e8e-b8df-49e9-926f-31e341993e1d','17a26aef-3edc-4baa-9cc1-e31a937771e1',240,100,70,0,'2024-12-07 09:32:18.094','2024-12-19 09:32:51.430','734626870-1-2'),
('43adbffd-3c71-47e3-876a-b25ba2972d42','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',46,5,162,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-6'),
('43af865d-d697-48fc-b85d-1a144df174d4','96449af3-c272-4a90-b77d-0790552dd455',105,85,130,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-16'),
('43b1f082-e84a-426e-aa4b-f283aeaab9bd','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-33'),
('43b78b9c-eec5-4f22-a614-707b5c3170e1','53025d92-f019-4f5d-9b69-68a3b09bb7bc',45,72,72,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-6'),
('43b8dc8f-3ab0-4747-a1a7-b7a336c6739d','5615ae9c-cc16-4fb7-83a7-8c7fa5679c81',0,0,0,0,'2024-06-08 08:00:14.381','2024-06-20 20:16:27.107','428160643-1-1'),
('43ba5c7c-e2a7-44e3-879f-0e22f6942bac','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-6'),
('43bc0d2d-d06c-4f24-8a17-d6f916310805','4c3a5678-79ac-4a99-82d2-9659115b69fd',0,0,0,0,'2024-12-01 06:48:03.963','2024-12-10 16:03:57.695','745747559-1-1'),
('43be04bf-d12f-4b27-a275-3d216eb55e33','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-14'),
('43beaec0-3c2b-49ce-9ff2-996c80294cf0','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-14'),
('43bf10a7-473a-4116-b5fc-da28fe7a2ec0','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',78,93,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-3'),
('43c0820c-67d0-42d8-9109-670513648668','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-4'),
('43cc8f82-abbe-4413-8cc0-433ddfff209d','43f2900d-96f1-458b-9b9e-6777ac110ab0',0,0,0,0,'2025-01-06 13:08:20.186','2025-01-09 10:06:25.423','478643015-1-2'),
('43ce1a04-3fee-428e-883b-05c1050336b0','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-8'),
('43ce3a0c-383a-4601-8db9-dbea3faddae5','e514b349-2bbc-4311-94ea-10df3f123320',96,6,186,0,'2025-03-24 16:01:50.514','2025-04-05 10:57:53.233','644110179-2-2'),
('43d12eb0-bd35-4c95-a967-5e7047ecf998','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-4'),
('43d724d3-53e9-4770-9e5b-53d64009c3b3','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-19'),
('43d7c7ff-37a9-4928-a93c-748bfd0ebe6c','b78519ec-4b79-400f-a709-a1f09256d30d',158,198,3,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-31'),
('43d89532-6470-4eb8-b806-3f7d05d3b120','4a769c6a-1636-4fa8-b52c-be5633d0794a',77,57,101,0,'2025-09-06 04:20:14.068','2025-09-16 17:47:08.284','598280715-1-2'),
('43db5f18-f52f-4bde-b2a6-5613ee9da7e6','53eba6e6-9870-466d-85b5-c7b32bf33173',95,75,105,0,'2024-12-01 06:47:51.833','2024-12-12 07:41:43.505','027517327-1-3'),
('43dde4eb-6b50-4b86-b2df-c446b081fc0e','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-35'),
('43de8400-80f3-4180-b6d8-06d4a6ab4537','e622181e-7708-44a9-8b12-3952b738674c',75,100,75,0,'2024-03-14 13:50:32.151','2024-03-22 10:14:57.066','614813890-1-1'),
('43dfd643-2281-4ce7-8832-b96b95971e74','af69c5a3-87d3-4548-a650-720b69a4fc69',205,17,5,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-20'),
('43dfd9dc-318c-48f2-9bd7-a1c97a40916e','193ecb2d-124e-4d60-bf94-e2e26992e689',65,120,120,0,'2025-09-12 17:17:03.245','2025-09-23 14:04:12.228','614553524-1-4'),
('43e0483a-471f-47da-b0c6-77c41b79793b','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',58,45,17,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-22'),
('43e3cdee-b4e5-4f18-aad6-63594b3a5f87','7a3874a9-db61-4cfe-8c48-f341a8247a1c',80,75,70,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-2'),
('43e3f4a1-e162-4a41-b33f-7838d20674a4','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',192,63,2,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-23'),
('43e70dc9-61c2-49e8-89b6-41db504c4b57','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:47.008','248284003-1-142'),
('43e8635e-325d-4d59-82ab-31e892fc09bf','4c0ca6e8-9805-4e5f-834e-d4cd8f62c746',75,70,85,0,'2025-10-22 13:06:44.530',NULL,'959658567-1-1'),
('43e88501-821b-42fe-a7bd-3553cc815fed','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.934','221850151-2-2'),
('43e8caa4-52c7-4d8f-a747-7be8215b1246','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-37'),
('43ed107d-e3a4-4fec-a820-a0e452fb076d','bf45c546-7b61-4cb9-8ff6-a953f372662d',80,2,207,0,NULL,NULL,'745995046-5-2'),
('43f056c9-1d4b-4ee0-9cba-a2cafaee73d8','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',4,160,200,0,NULL,NULL,'47816855-2-20'),
('43f4d632-2eb4-43c0-b4fb-c912c63a4cd7','d47d3ae7-7352-4137-a656-596680802fe5',82,100,56,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-5-3'),
('43f74d5f-37f5-4e5c-9711-e375c6b0dd41','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-48'),
('43f89fd6-699a-476e-b1e9-712641b7ba88','6f8fd929-0228-4fd9-a182-83fe855d3f5c',100,86,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-8'),
('43f8ddad-e075-4acc-b30b-5718809365c5','539471d1-c2f8-4e53-ad1b-76427705641f',51,51,76,0,'2025-07-02 12:43:19.787','2025-07-23 14:29:13.652','644403373-2-1'),
('43fb6a02-b599-461d-9d7d-53997ec4c667','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-6'),
('43ff8198-05d1-4a24-8953-3eb4e4037872','a93ec800-6f62-43c8-a2c8-9ae7e82352ff',0,0,0,0,'2025-09-10 10:50:44.916','2025-09-20 07:01:52.142','221348923-1-1'),
('44018e3b-33b9-4fb0-85eb-153ed373acc4','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-20'),
('44028de7-bc2f-4840-af01-2a76e164a043','82ac2d58-053d-41f5-a402-9275c56203f9',210,1,98,0,NULL,NULL,'428172853-4-8'),
('44033664-06c9-4e12-acb8-ad29d201e13f','e6b643b2-ddca-48ec-b553-690e29e71879',112,57,84,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-3'),
('4409c083-5b80-4fdb-b4df-dd8aefca3106','17868a47-2f8b-42c0-9e68-ed7885930bc4',49,49,47,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.191','644776565-1-1'),
('440b412e-e1d4-4f5c-85b2-88733db313bd','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-11'),
('440be6eb-af34-4125-834d-5d3988e3397e','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,43,6,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-10'),
('4411db40-ecc6-4ddb-b1b1-0dfbcf42cfa0','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-2'),
('44120a46-211b-4be8-bfb6-b5681ff04a8e','642202df-ca75-465e-8036-f34da2dad54d',68,98,66,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.969','20390821-1-9'),
('441396ff-bd8e-49a4-8f6c-4fc80ba4133c','c71f39fb-d5e3-408c-ba59-55a9dcf4158c',0,0,0,0,'2024-12-01 06:48:12.766','2024-12-10 12:35:44.768','44920682-1-2'),
('44139ef8-6e13-4cb7-b5a1-f925d475052b','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-92'),
('441631c1-cac7-445e-b95b-7b8f48007078','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-7'),
('441a27c9-ebc2-4cdb-a8ac-b4f11db94c43','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-16'),
('441a553f-92c3-4083-8305-17707d9d3163','d9c96ce5-7311-4159-8c51-6a1a744d0c49',51,51,106,0,'2024-11-25 08:28:48.880','2024-12-05 16:17:13.323','501760253-1-4'),
('441d6d52-d2ef-4573-95e2-de19f7be0e12','945d8ccc-c45e-47fc-ba3b-1163cd4e1ef9',60,221,86,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-2-2'),
('4425f883-5674-4617-b2ff-392c0391191b','507b9bbe-ef2a-4a95-a25c-ea392d3d95e1',95,85,75,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-3-3'),
('4426a863-a910-4eb1-81b0-757bc9fcd5c1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-49'),
('442a2c9f-ac2b-459a-ae94-653d6967bd28','7defd633-f7ab-424d-8029-028d1b045752',208,60,6,0,NULL,NULL,'501119446-1-11'),
('442a5432-48b2-450e-9c4a-7c8a6ee9994a','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-49'),
('442ba48e-4996-4ea9-9e5d-41c52952bb73','31a46914-f0d0-42bc-9a57-838b3227c099',91,240,60,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-2-1'),
('442bb5f4-2672-4696-8790-ad77b9989711','a545df6f-28a9-489d-b668-a448c88582d4',43,43,74,0,'2025-07-02 12:43:37.906','2025-07-21 08:00:51.719','371261673-1-2'),
('442c1d4b-f132-4edb-8e61-ee15348859ec','4cb853fb-ed75-4081-be82-d68d6aa556bb',93,66,70,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-1-2'),
('442ffdf1-0f92-49cb-9a84-8ba448455da4','a455ba66-b417-4781-a6f2-6fce1b8bab23',16,54,64,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-7'),
('4436dc0a-01e2-4239-8635-1437715b45b3','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-11'),
('443849c9-5949-43ba-bb36-2bb34e2a642f','f395fe5b-aa87-4cd3-bf35-762e8b234161',43,68,18,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-1-1'),
('443b4442-3515-4c0d-b625-2df730eed46b','5e418100-d855-48c0-ac4b-19a956b8ef44',98,33,14,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-5'),
('443c3861-efcf-44a8-b589-41c69453f73f','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-3-1'),
('443cb3ca-847b-4444-abc2-d1e578d151bf','5e418100-d855-48c0-ac4b-19a956b8ef44',75,75,70,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-2'),
('443d1bf9-8575-4feb-a49a-36ee525c4c7c','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-4'),
('443d36a3-3080-439e-b7c0-9c33f14b0f99','a2fe1c58-2fa6-4ab3-9db3-e2746fb8e9ab',0,0,0,0,'2024-04-27 08:45:27.409','2024-05-08 21:07:56.622','478979004-1-2'),
('444031c3-a335-4350-9144-9278958ffbe9','49d4d893-406d-46c5-a3df-d56f4e6677e8',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-3-1'),
('4444d3a2-e225-47bb-82f3-693fa5270389','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-26'),
('4446849d-2a3d-4148-9f4a-5bfd9df7ed11','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-82'),
('4448d115-d226-486f-bb09-135a333190d9','c7711311-d9e2-44ab-9529-bf35ca0a141b',50,53,58,0,NULL,NULL,'613592756-6-3'),
('444a0c5e-b212-46e8-8157-de7c0f07da48','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-5'),
('444bd1e4-be57-4f8e-8559-825f22854341','012ccc8f-38c1-4572-9fa6-9074afddb4b2',0,0,0,0,NULL,NULL,'011548428-1-1'),
('444dc482-e92b-4404-8479-5595a32c4db6','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-42'),
('444ee584-5ab6-46ce-9d6d-59e31b4e7750','0837f315-9787-4faa-af33-29b55e4b0f2a',51,51,78,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-1-2'),
('444facc2-a6d0-4336-aeac-47524d6146d9','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-4'),
('444fd141-a87e-4e6d-a9c8-d1204e892cae','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-7'),
('44518042-394a-451d-8586-827f2cbf5d3f','ad0413bc-5657-4c6d-8881-5531603a28a8',99,90,80,0,NULL,NULL,'598891928-2-3'),
('44541534-bdc1-435f-a6aa-ecc7961c50fd','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-1'),
('445aaba0-8cc2-4cc2-b2f5-fb3664bb83b6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-48'),
('445afe82-c3b8-4d2a-9bc0-faa89f207bb4','5c1630ab-9f31-4753-99de-1615c793dd9e',82,109,56,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-4-2'),
('445c4d27-257e-4662-845e-5fed58ff2a81','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-10'),
('445d90d4-68fa-4fe0-9725-58ee8a953b86','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-3'),
('445dba6f-a3c2-46aa-b0e6-03773d14609b','b2cc240f-bde3-400a-bbec-a61085853dd5',43,17,62,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-5'),
('445eb537-980c-409e-a50d-6badcbc2bafa','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-4'),
('446190e4-23a7-4bb7-8706-66c44fba410d','979b930a-f53e-4986-8714-bc7b10a23a95',95,110,67,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-3-3'),
('44624df0-188b-4423-ab86-72fb1fb90817','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-78'),
('446490f7-3ed6-4863-9f47-f7fb944ea203','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-10'),
('4466cc1c-8172-4afd-9ce8-e517c386542c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-50'),
('44712535-a352-4a9d-804d-1d55a55a502f','6a308121-6cf9-4384-8446-08182bd669fd',210,42,8,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-17'),
('447174c0-a227-4487-af4f-21fd74873641','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-14'),
('4474bcc3-0d09-4349-88e5-3447705b3d00','94c4f556-9786-46f2-b2fd-19ec8d6e3641',75,92,113,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-4-3'),
('44776ee0-e7d5-46fe-b128-1a6da4cb1ab4','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-1'),
('4478117a-7ee5-4819-915a-6b58338a479c','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-19'),
('447e754e-8413-4240-911c-6297f0df3ba0','86e5956d-750b-4aa3-8f00-53e2db7b9f65',260,60,11,0,'2024-09-28 16:26:47.601','2024-10-12 15:50:46.128','517110811-1-11'),
('447f3325-2643-4f60-8728-cb8d4ed22b1a','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-11'),
('4481b940-c491-4f39-9b9d-778d87e68ebe','e6dbec74-0616-4752-8816-29db541e12d1',195,100,68,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-2-3'),
('44832e19-ea47-4a72-84a9-08690e55be9d','6f8fd929-0228-4fd9-a182-83fe855d3f5c',230,92,74,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-9'),
('448488ca-15f1-4614-b4e8-cdf57e1f8559','1ab745bc-cedc-4993-8852-79017b1ed8a3',80,56,110,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.641','449196428-1-7'),
('4487a656-fdea-459c-b1e6-1bfed11430b5','6cee1429-9935-4eae-be32-dc630b6d70e8',103,54,30,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-12'),
('448c58ec-95fc-40ae-9fb7-0671a7d0389f','e3ad38ad-67b7-48ef-acdc-c2e13831e843',57,83,111,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-6'),
('448fbb55-4be8-44d8-9b29-90bf5877a5fd','841f7f01-a7cc-440b-859e-dea7f085dd74',72,61,45,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-18'),
('44901dbb-ce5d-486e-81f8-65c38d3e9570','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-143'),
('4490b0a0-ee81-4993-ba60-d8e6dab4ce04','4dae2c46-63f9-42b5-9288-01744ed81ee5',166,106,7,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-6'),
('4494d3cb-cde5-481d-948b-5a62bf4becad','4c8d5858-b6e9-4d61-8150-28923e7ac277',156,98,67,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-1-3'),
('4495879c-85d8-4aca-91cf-0b70a870b974','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-188'),
('44992576-a4ea-43dd-8b06-5861e99085cc','808a4f1b-793f-4a15-808d-00c26a26c166',9,94,94,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-11'),
('449ae165-c584-448b-9457-5a20ae0d9def','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-9'),
('449d4cfc-d60c-4135-b33c-0adba6cb2770','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-12'),
('449e2047-5158-4ee9-b13d-6a4696414f72','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-19'),
('44a02eff-16f6-4185-96dd-9d306a7d2840','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,2,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-51'),
('44a44817-b39e-43df-b058-110df304369b','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-82'),
('44a87b4a-a99b-446f-85de-77c2f068268f','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-4'),
('44abe150-7e07-4e5a-acb6-78fcb3c27fc1','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-27'),
('44acc44c-bcb8-4b38-a4d1-26e50038889f','a6256e90-8be2-4755-a111-ad8137d9c5b3',40,40,50,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-2-1'),
('44acfc0a-0d00-49ea-b819-5166cd95b9b7','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.990','478644410-1-3'),
('44ae27d5-ad1e-4ac9-808c-177c8170eb4b','dc99663a-31d5-4a1c-9141-06a0f625f39e',38,50,213,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-4-2'),
('44b06a10-03ba-48af-a80e-d268040eee12','b2344382-bf60-4678-b271-01032fee96b4',51,51,77,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-2-2'),
('44b07e0a-94fb-4650-a3ad-98d222309868','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-16'),
('44b2939a-3715-4d9c-bf44-add594f940d8','fbfff131-b02f-41a5-967f-a0528f7275f4',50,100,70,0,NULL,NULL,'745197948-2-5'),
('44b480db-6bbf-43a1-a553-e8be460da0ee','715005c5-c41a-4f93-a5d3-17adaaa7406f',90,80,85,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-3-1'),
('44b55fd1-29be-4dfa-bae7-db18e9d706b9','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-83'),
('44bb5e69-044e-467f-b67f-68a45f19a654','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',105,8,193,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-3'),
('44bca568-5dcd-4f32-8530-eef691bd1512','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',60,55,10,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-5'),
('44bdbef7-86a9-416a-b851-7cb1fde00eda','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-1'),
('44c14d69-eb34-4cb3-a8b9-91ffc0cf81b6','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-3'),
('44c1a390-fe10-45b2-a91a-423396532797','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-12'),
('44c1f972-8e46-4208-8a8e-76b321ecc6d1','2307cead-bc16-4ee2-aff3-8245c44ff256',70,72,99,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-1'),
('44c23011-e2a3-498c-a107-047d872d8c70','a6c12d5f-9151-4818-a6da-99773bbe3f36',85,86,8,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.341','644890175-1-4'),
('44c8311c-0504-4ddc-8738-cf4ac3f4b2bf','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',45,38,38,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-10'),
('44cfa72f-8696-40df-a7fe-b3d368fcc1fe','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',77,13,39,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-33'),
('44d66be0-9464-4f1d-9085-db572429187c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-30'),
('44da8dbf-09d8-4e97-8538-2d992ec6153b','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-5'),
('44dcbbb8-28fa-42b9-a35f-7bdec58340fa','cc7dddf4-427f-4a79-9cec-d95529ff2c95',91,202,3,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-5'),
('44de0f68-926f-4165-a63e-363a8a2cfbe1','ae1c857a-94b3-411f-9eda-b4b89f2608d9',53,77,102,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-1-1'),
('44df88a4-b9d7-46f8-976a-63808c10b2b3','47e4ee8d-44c4-4351-9364-ad7d3f45a197',40,58,30,0,'2025-08-15 15:03:02.477','2025-08-21 16:36:49.269','437514624-2-2'),
('44e2bf18-0e17-4890-ad0c-931a3c4f5a04','22cdb203-e189-4693-adf6-5b2569edda9b',80,63,30,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-6'),
('44e40f6d-f144-41b4-8586-3c56bbd9e7bc','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-20'),
('44e86d7e-f53a-4886-a311-b6c3ecc95447','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-44'),
('44e9220e-6699-4d0e-86e2-9c1896888c45','3c1c7892-5b0f-43f6-a6f0-8f933b1d36d9',85,90,70,0,'2025-04-30 14:29:06.540','2025-05-13 09:06:07.341','910187142-1-1'),
('44e98e22-5a02-46f7-a22b-cc2ab72de504','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-2'),
('44f2a015-6995-4502-bfd8-5d95eb5b2336','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-3'),
('44f32514-c2ad-4837-867a-94ff7c44f0ea','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-34'),
('44f403e4-3d65-4c89-aef5-550709bd16a2','9a16eb49-26d3-4e07-a503-649c789c7f9b',70,96,204,0,NULL,NULL,'019225297-1-2'),
('44f95cab-bc3e-4110-bcd1-0b450401308d','a71e29a0-9fac-4e05-b331-b3c24249dc5b',98,98,70,0,'2025-09-24 11:01:47.721','2025-10-07 06:18:03.066','371495147-1-3'),
('44fa8668-beb8-4d4f-b48a-23e428f274e4','f3909b2b-cc14-43fa-b752-696dc15ac199',95,93,63,0,'2025-05-16 16:33:33.977','2025-05-21 18:42:26.744','43758285-1-3'),
('450146c0-826e-4da4-9ede-2442d7916bd4','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-8'),
('45023375-6519-4e5c-9d4b-5d660ded6bc1','9114ad70-d53e-4d1f-89c7-30585d0a43de',225,84,4,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-18'),
('4502ee26-8e36-40b8-9494-8190cf4bcee9','19515d6a-9050-47c6-96a9-cd430edba1b6',125,125,50,0,'2025-10-06 07:10:09.041','2025-10-15 08:24:39.146','745906720-1-1'),
('45048beb-241e-4f5e-934f-2dc415f2e755','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.256','248890689-1-8'),
('4504cb03-ef90-41f5-82bc-1d8e1a7a6aed','7fbc0cac-4c11-4144-b578-3223cd9dd90a',180,200,5,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-1'),
('450505d8-fcb8-4d5f-983a-a71f96e277ff','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-4'),
('450b72a1-395c-4ee7-b325-0f0a881d9c54','5d6d56f2-d81e-47d5-835d-916b91abc6a0',200,40,25,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-2-3'),
('450cd338-b2f7-4743-8260-e7644363f050','66f8d34c-0c41-46f5-98bb-500adbb6f636',16,61,84,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-2'),
('45128d85-4a20-44f6-b4b2-528bf6f85260','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-9'),
('4512f122-17a3-455d-a2b0-0bcfcee27569','d83c40d1-4df5-4c97-bc83-28837db95b2b',94,40,97,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-19'),
('4516bdf8-fee9-466b-9914-19fce8c3ac1e','a3f658d0-43c5-4d1a-a346-44082f79ff25',39,17,32,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-1-4'),
('451a4b35-1985-4b55-a20a-839d3d6327c8','372213fa-c2e3-4293-b83a-0a8cb1587967',93,98,65,0,NULL,NULL,'765864813-1-2'),
('451a7241-07ab-4f81-a834-74b2ba3369ad','7f823e87-d09d-4cb4-ad0a-4393c51662c9',10,20,30,0,'2025-10-06 07:08:31.417','2025-10-13 06:39:34.718','644287826-1-4'),
('451b3b7f-c305-4233-8b24-34718aa8fb04','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',43,94,10,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-4'),
('451ba373-c92c-48a2-b8cd-ad92036f1edb','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-4'),
('451d7387-f67d-4240-9670-49b3b6c4f0b0','9114ad70-d53e-4d1f-89c7-30585d0a43de',166,51,4,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-19'),
('451ea666-0475-436a-8225-0f83d438d2f1','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-21'),
('4526863f-849f-4468-b45b-bc29957243a4','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.447','2025-07-01 09:00:53.543','248630618-1-6'),
('4527013d-d6eb-4244-ac38-ee05ab97e19f','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-27'),
('4527c534-9a08-4473-86ae-5a4226555da3','46f087b2-104e-4783-9de5-ec1ae5a60517',0,0,0,0,NULL,NULL,'598973926-1-1'),
('4529ba7a-ab7c-40fd-b488-d93d56ca8452','8625abf2-719d-4d7f-b206-16948b318b8b',185,13,41,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-5'),
('452bd965-1fb8-44e6-844d-9b980e1aa872','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-41'),
('452be9db-ca04-4b0f-9c13-6cb9391369ab','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-14'),
('452c9978-c146-4103-997f-e60e9291541a','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-7'),
('452dd8ae-3085-4a80-a424-5c0653e183ef','600e57be-30d7-478e-8253-ba5d90fea720',0,0,0,0,'2024-08-21 14:53:23.084','2024-08-31 08:14:36.336','745268660-1-1'),
('453024e3-21f3-4095-9605-17d30fcfbae3','5255e75f-2972-4ac2-8063-49e650a876c7',55,55,77,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-2-1'),
('45331f44-861e-49f2-aa0e-291d9d0efcc9','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-1'),
('45352054-2aff-4e41-8958-213aaf18acc0','6a2ec622-2e09-4123-a527-4a4179b4fa14',59,72,96,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-2-1'),
('45362362-92b3-433a-93ec-c25e9d01e50b','e6b643b2-ddca-48ec-b553-690e29e71879',230,90,70,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-4'),
('453a73d9-df9b-4c8a-b6fb-5f52b1d4cfbe','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-59'),
('453c64aa-a139-4afe-9629-c40d671855ce','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-17'),
('453cddab-3d9a-4190-a2db-bc1eefe59ac6','4d03132d-9f2a-49b3-a739-b1888901750b',1,1,1,0,NULL,NULL,'478432075-1-1'),
('453dbca6-8f95-4685-90e9-e4bb8e5e6126','df4ae67d-ca3e-4cdd-b49d-c5f3efda583f',43,43,47,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-3-1'),
('453dc887-c2f1-4676-b148-ca521f1f995f','3ab2fd1d-32f0-4ec0-9f6b-d89427ef7bea',0,0,0,0,'2024-05-29 10:12:11.110','2024-06-11 14:04:55.828','614390628-1-1'),
('45401193-0a7b-4d90-a773-3982d601e2fd','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-18'),
('4541072f-5be5-4e3b-b339-0633b9c08d75','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-90'),
('45423752-bf26-41ff-b74e-a13742af9241','1d0eb855-07f2-4c64-93d6-62c6de7fce20',95,70,75,0,'2025-07-17 09:33:44.114','2025-07-22 21:00:41.428','910684336-1-4'),
('454339fe-71fa-4d68-bebf-2ba1847f2d19','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,25,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-22'),
('4545053a-951b-43eb-9662-3b67aacaa620','d83c40d1-4df5-4c97-bc83-28837db95b2b',124,200,6,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-20'),
('454722ef-884b-41cc-b278-86622203b1ee','fb752cd1-ddbb-458c-8371-2851b143968a',114,60,5,0,'2025-07-12 09:19:03.318','2025-07-18 22:03:30.292','98221051-1-5'),
('45515eaa-0b5c-475a-80e6-3a9f7ac9ce68','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-81'),
('4551f671-9727-4347-baf9-cb8f644602c8','7f11042b-3945-4eb3-b37e-a822894de6f5',114,47,7,0,NULL,NULL,'478777575-1-9'),
('45539e87-53e4-4585-872a-37d639105a0d','55d57945-be77-4866-9a7a-1f1f873c24a2',51,51,77,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-2-2'),
('4557172e-9fbd-4ca9-ad3b-cb76005a4d75','bd176b24-f129-40d4-8c33-6b35eded0fad',210,43,9,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-12'),
('4557a024-ea20-4d61-b7f6-2a0fda416f01','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-30'),
('45592e5f-55f7-4325-8417-1cd0e39b645c','32b11ede-8890-497a-89a2-1672b3f73306',190,160,35,0,'2024-03-14 13:50:34.884','2024-03-22 07:37:35.143','982451991-1-1'),
('455b6636-31f8-41f1-a11c-71e4c25e710d','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-7'),
('455c5617-5932-449a-a4ec-8d492d160e05','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-95'),
('455e9351-3593-4175-8776-3197902aa1ea','0ca7b5c8-7608-49bc-9057-d56d835fbea5',42,42,75,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-19'),
('455f6603-0832-4bd2-ab9c-baaa470d2328','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-117'),
('45607bf9-aff8-41d7-9c38-78fc8ac441fe','6a308121-6cf9-4384-8446-08182bd669fd',205,81,4,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-24'),
('456351d6-3726-4255-9a6b-72073bc3194f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-62'),
('456437f3-5985-4c27-8ef6-15c82c5148e3','489fd382-992a-4062-80fa-06d0adc63c50',56,83,100,0,'2025-07-19 07:51:57.710','2025-07-30 08:02:07.302','750505145-1-2'),
('456529d2-0749-487e-811c-1cfb17d5757a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-12'),
('4567f1cb-0377-4e97-ad49-4277318369d7','0027cba0-0b74-42fe-b82a-55806baf40c5',51,51,77,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-1-2'),
('456a7198-ed6b-43a9-be5f-58903e40e800','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-21'),
('456b4e34-bfff-4a3c-a613-07cfd57f7fb5','367f3a5e-bb59-4b08-ac77-fb45fbe38388',103,77,68,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.930','808450440-1-5'),
('456ba80a-0264-48d1-88bd-5bc11bcd7567','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',28,53,39,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-11'),
('456c89f2-bf0d-4bac-9fa7-dcecfac84ceb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-128'),
('456f9547-91f0-411d-945f-2719ffd755d2','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',230,45,58,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-4'),
('4572f31b-e0f3-4b41-825a-d3fdb8e190f2','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-6'),
('45747acf-4195-401f-998b-cdc3d8d7f7f0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-51'),
('4575097c-28a0-48fa-9145-2fe70fbb0e20','fc8642c2-233d-40f6-9c73-4a49c73a1dab',0,0,0,0,'2024-07-30 14:58:31.531','2024-08-07 08:42:03.488','478283773-1-1'),
('457a99b2-c98d-4151-a61a-0b74b445b665','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-190'),
('457ab7b6-b10c-4de5-8ebf-27593cc9e00f','5c1630ab-9f31-4753-99de-1615c793dd9e',82,109,56,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-4-3'),
('457bb821-03a1-41b0-b2ca-516bb1780bc7','87393f00-12fd-4b92-bd9e-3438b29214c6',67,49,51,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-3-1'),
('457e8a71-b4dc-4dd5-af52-7989775ea997','ca9035e1-80a3-45dc-92f0-bd7c607a8cf0',54,101,73,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-3-4'),
('458041e7-4078-4682-b7dc-d95619ddda60','af3cff3b-575f-45ca-b1a2-1535de311073',97,75,161,0,NULL,NULL,'011548428-6-1'),
('4580d34c-9506-4bc9-904d-543b52d51930','d5283ace-e684-4edc-9409-0a221cb6b652',100,206,70,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-3-2'),
('458ae617-15ca-4d9b-9ab4-240abddde73f','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',91,91,60,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-4'),
('458c3573-3cdf-4ca3-8259-6760026e4f64','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.338',NULL,'22330381-1-140'),
('458cfd7e-9ea4-4d4d-808a-ab23e7608685','7b5051e7-035b-47a2-8be8-18b0ed228a6b',43,43,76,0,'2025-10-08 17:43:40.882','2025-10-17 06:14:39.891','598492066-1-2'),
('458dbf85-6d7a-4bef-b189-5a78563d527c','ee1b6660-5174-4eef-96fc-0e0db658df4d',98,211,70,0,NULL,NULL,'371903427-4-1'),
('45924d09-42f4-4769-9a1d-dd2b3a434786','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-13'),
('4593887c-189f-439c-bf7a-455a1c366990','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-5'),
('45940b46-2ee4-4e9b-922a-cdad5b93a73b','5b791a1b-bd6e-4eab-a014-286a1c1d2fd3',103,75,70,0,'2024-10-23 15:14:13.314','2024-11-06 15:48:43.182','517495121-1-4'),
('45943ebd-22b3-4003-9cfb-45ef1f00fb73','e891b961-f9b8-41f5-b49e-f492048bd8c9',44,18,54,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-6'),
('459452ed-4fe7-4912-b8ee-a55803ad1ccd','7d58ca9e-82b3-4213-9fd2-9c4798ae4dc3',97,20,45,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-3-2'),
('4595bdb1-dd5d-4ab2-a071-3fbaadc209d1','cf9e313e-63a3-4829-8ac3-fa259b349ab7',72,51,51,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-3-1'),
('4597c424-4a24-4aa6-8643-ea98c250da5d','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-3'),
('4598800e-e2d0-4f5b-a04f-3ebc3caffe5f','354bac1c-ec3d-48a4-af37-546517794e7d',0,0,0,0,'2024-11-02 10:13:48.043','2024-11-12 17:05:59.335','745128598-1-3'),
('45995fa5-b3da-4ec8-9db2-4f25c8a03c1e','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.378','745175736-1-3'),
('459a5443-ca1e-403c-8430-cd163d70ac13','619b2df9-4cdd-4cf2-8195-e3b19d37df5e',57,76,103,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-1-1'),
('459af0bf-e34b-46d9-8860-d9e793d50916','96449af3-c272-4a90-b77d-0790552dd455',85,44,43,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-1'),
('459b2a33-34d8-4a1d-9331-78a7c9e62f42','cae76a5c-9c58-4a28-b642-a8f3cffa00e0',95,65,85,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-4-2'),
('45a077bc-ce7c-46fa-9f80-c149b56aec51','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.039','221900850-1-3'),
('45a101a3-857d-498a-b343-ae4588a08d73','d1606eb5-933c-4e61-b7ea-5f79b332691c',91,28,201,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-2'),
('45a157d3-d040-435e-a899-89e255c40ce4','a322199e-9388-4cdc-a475-2497cf269eef',70,75,15,0,NULL,NULL,'501589922-1-3'),
('45a32113-03f9-485b-b860-36945d8b6ba2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-99'),
('45a82822-e173-4673-a632-e0caa40e8fd5','df06d54c-c84d-4501-87a4-6fd5f96e68d6',60,40,30,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-3-1'),
('45aa5a01-5672-44fe-9ad4-13b49e074801','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-84'),
('45ab19d2-3540-4658-8823-bd76cd97dbae','e0a099ee-13a7-4e80-b77d-55f860dc2f1d',0,0,0,0,'2025-02-09 09:51:13.031','2025-02-20 09:14:10.976','830905881-1-3'),
('45adb27a-0a5a-4747-af87-c9532ce98de7','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',100,63,80,0,NULL,NULL,'428413605-1-26'),
('45adde0f-cb13-42ee-8aee-ceb6b0b989dd','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-22'),
('45b33657-ae03-4b52-af4d-7e17a170703f','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.322','745582484-1-7'),
('45bc3188-9b4d-47d8-ade4-e65ea8571e3c','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',165,31,11,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.684','614725757-1-11'),
('45be7388-2f49-45bb-a544-c41b981bc804','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-81'),
('45beb9d8-8465-4334-b71c-e9629cc264a5','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-9'),
('45bf6f89-30ca-491b-82f5-01c35484ce31','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-86'),
('45c0dbdf-511a-4a27-bc41-a6833917bdf4','54d4752f-e7ac-4178-9490-9a68454369fd',90,275,65,0,'2025-07-19 07:52:02.271','2025-07-29 13:55:08.002','982426968-1-1'),
('45c0e6f4-3c2d-4d78-99c9-b5b30f685b67','af69c5a3-87d3-4548-a650-720b69a4fc69',211,47,8,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-30'),
('45c25bb6-25f8-4101-964d-4605a94ee491','26a88534-d736-482b-a920-c717b09572b9',97,70,227,0,'2025-09-16 16:29:47.072','2025-09-29 12:23:01.142','371179895-1-2'),
('45c40ec5-7248-4902-bb0b-0c4086595a72','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-28'),
('45c46616-6a05-47b4-a32b-a48b1175edfc','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-35'),
('45c93702-4e4e-43b7-8037-4a319313fcfd','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-14'),
('45cadf14-9067-4111-9c43-8a34bd81f7ec','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-3'),
('45cca951-e5b7-4089-a009-29717a921513','b7df853c-c210-4f4b-bcc5-e0189a8ebe0b',100,100,85,0,'2025-01-06 13:08:12.164','2025-01-10 16:33:51.205','911398945-1-1'),
('45d65816-5d38-4585-85d6-6314cbbdb724','af69c5a3-87d3-4548-a650-720b69a4fc69',100,53,85,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-14'),
('45d6b9a3-5d48-4e6a-b661-5bfb9ae651ce','603bbb28-8202-40b6-a789-1531b9124485',90,67,252,0,'2025-06-27 17:12:30.423','2025-07-04 21:24:28.083','371881042-1-1'),
('45da333a-eeca-465f-b054-f328d179a935','0bc24e77-b11a-40c8-a7ef-6a7f438e4054',95,165,80,0,'2025-09-06 07:20:21.563','2025-09-16 06:34:12.520','920821712-1-3'),
('45daccf5-d6fb-41e6-a11b-f93bc3d916e4','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',35,94,94,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-2'),
('45dec30e-6087-4612-8549-80445c7b8e75','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-51'),
('45e1a9b5-4b03-413b-884e-15809a2db155','19515d6a-9050-47c6-96a9-cd430edba1b6',60,105,95,0,'2025-10-06 07:10:09.041','2025-10-15 08:24:39.146','745906720-1-3'),
('45e54d9f-82a5-4853-aaf1-518b8a100b0d','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-15'),
('45e54dcc-7fa3-40b3-85d7-328ae0da759b','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',74,60,10,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-5'),
('45e56f33-5279-4df1-a000-b9889e76ca80','7b2d4551-a99f-4fb6-8215-e7af3afe860e',70,16,181,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-5'),
('45e6caca-d15e-4019-a4a8-713b919b6914','5282b87c-6b11-46ed-bf19-54c6f3afd111',65,203,32,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-2-3'),
('45ed2495-808c-4395-a9e2-227bb3c58db4','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-3'),
('45eeb73f-e090-46de-afda-eec9654b3783','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:46.694','248135683-2-31'),
('45f14052-d1f4-439f-94ee-a4009e8ba288','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.434','2487154-1-50'),
('45f171ae-dbe6-43a1-b4fe-4cafe184f9b2','3ea0fc9a-f0a3-42d3-821f-f15859ccac41',260,116,80,0,'2025-03-13 12:21:26.278','2025-03-23 16:15:49.033','338426911-1-1'),
('45f2fd20-729e-485d-afe0-00af97cc35c7','c321bcb4-e9ea-4666-adfa-15a8c704d731',60,65,90,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-6-2'),
('45f43aef-9a52-4d1e-9eeb-23a33deb7316','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-11'),
('45f5aabd-9ab2-471a-9347-c18d36f2fc24','81d0dc47-7670-4778-9132-e810a9a4d368',40,19,71,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-3'),
('45f5c215-fc7f-45a0-82d3-215dd8fc2e40','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-27'),
('45f9524d-183c-412f-9dad-118031089377','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',45,144,225,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-1'),
('45fe54d3-46d1-4a79-aa2f-671e3d1016d0','3d6f2aed-8c6f-41aa-a8a0-136eeef8c725',240,95,70,0,'2024-03-31 17:55:02.046','2024-04-17 10:15:56.135','982629756-1-4'),
('460296d9-4147-4f58-bdf4-dfdd5025b02b','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',210,42,5,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-5'),
('46076117-0ab0-4778-97b5-b69afa89f942','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.884','2025-04-04 09:29:32.767','248692077-1-31'),
('4607a5ef-5cca-4bfc-bd03-9fa8b1790b70','b7fd8ab3-d7da-4044-9725-c8468ff2d4a3',55,82,101,0,'2025-08-14 08:21:35.471','2025-08-25 07:10:53.527','982978293-1-1'),
('460bf5ff-5754-4cc2-bd52-36d70d7cc4f2','5d074556-ce95-4ffc-8684-279dc37597f0',75,70,70,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-3'),
('460c223b-6bad-4ddd-b765-d2108a5ff892','417d5128-140e-4a55-b497-de9ff93db63e',103,103,72,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-2-2'),
('460d1601-52b9-44a6-86f4-df628fde5122','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-8'),
('460d8cbc-f8de-4870-ae93-13f45921fa14','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-1'),
('460e488c-5e0b-47a5-b3ac-8de245566e83','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-3'),
('460e5215-a54b-490a-aa26-0fea365b26ca','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.733','412467921-1-8'),
('460f3c3c-c51c-456f-9404-05ba312491f3','cdab8feb-4b24-4e8a-bc95-98fb1259890d',56,77,101,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-5'),
('46103fdb-ddb9-469f-89fd-2da7bc01d618','404bb5c9-911f-4abe-ae27-d9f8c7b4f704',0,0,0,0,'2025-07-19 07:52:16.841','2025-07-28 12:02:29.778','745712790-1-1'),
('4610a6d3-c499-4a75-bb7a-38905baca407','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-3-3'),
('4612310f-c811-484f-9402-74048135dcb4','9d661c6f-2567-4168-935a-9adb098cdcab',150,70,98,0,'2024-07-02 08:19:59.016','2024-07-18 07:32:30.957','614474485-1-2'),
('4614dd1b-a6f2-48fb-902c-d0140567c60d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-35'),
('461573c9-1919-4bd0-b3bc-bb81086d58ff','b1cfee3f-4b3e-458d-b167-9e1d49c2621b',118,122,65,0,'2025-08-07 16:52:59.120','2025-08-19 19:34:06.860','745431846-1-1'),
('4618820c-8761-481a-b433-08d979033a63','b4035fe5-266c-42fa-8614-d1d476373fac',51,51,77,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-2-2'),
('4619c10c-0c54-4d3e-81e0-0cc810b3a51e','76fe790b-1831-4586-9c29-cbb216e7c8ff',0,0,0,0,'2025-07-12 09:20:03.338','2025-07-28 18:39:21.504','657782-1-1'),
('4619d606-a91a-469e-ba2f-357294832928','148a8646-0bfd-4fcc-ab65-0b45431fcc16',90,201,28,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-3'),
('4619ef5f-33e0-4e17-a2a6-d6751f7c2b8e','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.815','745645972-1-4'),
('461a2a2d-21b3-48bc-8da4-1f5d5066e75b','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-8'),
('461c0b79-d2b7-4aa9-b385-11f3a9eff757','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-2'),
('461c4970-6b6a-4a77-a757-655a17347d26','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',58,56,28,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-11'),
('461e3b5a-7993-4aa0-925a-92ea633f4bcc','b2d959b5-31fa-467a-8e1f-cefc0166a15f',203,30,33,0,'2025-07-12 09:20:41.418','2025-07-22 13:22:57.741','803961620-1-5'),
('461f22b4-454d-4f91-a966-a98689e0f2dc','d7b1a371-32dd-4a13-a035-cf235f8967f5',52,52,77,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-3-1'),
('461f705e-79d5-444f-85ac-d6c5f06e0d43','405c5569-3390-43f1-95ee-f006ef560059',233,75,92,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-3'),
('461fee4c-39c2-4dd3-b948-4ee2f2cef041','0300de52-b929-49fc-a72c-ccdfd0b7a149',65,85,63,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-1-2'),
('4620cbb5-5332-417f-a3d9-9acc6429629c','144ba1fb-01a2-470c-8696-3c2576397b46',52,100,75,0,NULL,NULL,'745995046-1-1'),
('4624c4de-f39d-43ad-ad03-f48fe444a78b','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',97,86,84,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-6'),
('462691cf-0b25-4086-b2c0-272dc96cfccf','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-2'),
('46280515-2c72-48bd-9e6f-54b21e791cc5','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-37'),
('4628e981-0a62-4408-adfc-df50dc882c62','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.477','412716766-1-39'),
('462ca0e3-14be-4f3b-a81d-de24e64c0d66','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-14'),
('462d32cd-561c-4f77-ae5b-b4ad0678b2bc','03f2628f-fe18-40ff-8a18-3ea577a85a6e',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-1-1'),
('462db083-079b-4a13-90e2-8764ebce48b5','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-6'),
('4633d020-8061-4813-8000-ab16e4f1a45d','8625abf2-719d-4d7f-b206-16948b318b8b',200,160,3,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-6'),
('46385ccd-60ff-4198-80ec-6dc24db9c124','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-132'),
('463a30ba-0ba6-42d8-be3e-4d0d4e660b53','66111de3-4db5-4d79-9d26-01d8fabb833a',143,67,111,0,NULL,NULL,'02713231-1-4'),
('463b4a3d-c4c0-4b0e-b1a5-ed135415b132','501be04f-cb8a-4467-a453-3e4bd6f2b13f',95,75,231,0,'2025-03-06 10:32:11.218','2025-03-13 18:34:44.542','455522020-1-2'),
('463c214b-9370-4ae2-b9bc-81f9cfa4905c','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',100,91,70,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-4'),
('463c3567-dcb9-4796-97ca-356aee6faf80','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-15'),
('4641470f-1728-4fb5-9f61-2f755dc665fa','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.208','2024-10-13 10:53:22.882','248535027-1-12'),
('464585f9-64ab-4882-9c2d-49689ceb4f43','14c5439d-b326-4a6c-aab5-d692d92d235f',0,0,0,0,NULL,NULL,'74520701-1-1'),
('46472c76-7d85-43d9-b7fd-02290f2c6ebc','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-10'),
('464a7265-fe88-40a7-9fd8-c3bfe8a47998','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-20'),
('464b3e06-e4b8-48d3-9391-150929629ef3','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.229','221254389-1-1'),
('46521158-869f-4e7d-bb08-4f817085ff4a','6fcd8160-ca06-46ab-a691-51de5c394793',45,7,194,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-12'),
('46541625-4d02-4785-906b-3156006bfd3c','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-92'),
('4657c7f2-4f58-41e2-aa3d-84f2d320c285','5f740c2f-b4a8-4058-8f15-0c74025f8ecd',90,125,75,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-1-2'),
('4658a085-b710-4549-81f3-7dd59de6c94b','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-44'),
('465b14e1-744a-4233-abd2-f71863c0a0ce','138edf36-d166-4335-8560-d9873886e31c',224,57,5,0,NULL,NULL,'745189997-1-7'),
('465c3f51-12bc-4f33-aff2-f6faea9ea322','6c7f7eb0-0e54-462f-9045-071cf525c2ed',187,130,6,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-1'),
('4660bd9b-cdd0-4a29-b52f-ab1155f3bf54','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',70,55,112,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-12'),
('466109b4-b968-4111-be30-ea6ea8d3f8c0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-231'),
('4664153f-4fe3-41d5-a35b-a2b2916f6072','d9c96ce5-7311-4159-8c51-6a1a744d0c49',95,60,9,0,'2024-11-25 08:28:48.880','2024-12-05 16:17:13.323','501760253-1-6'),
('4664eb80-b8e9-4545-bd91-5c463c39981d','7d35f4ea-7482-4542-8fde-94664de7709a',92,7,182,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-3-3'),
('466512b6-e7b2-4668-a70a-e2b9bc6d6ccc','7513aabb-6614-4711-96f7-2d73eded59cd',99,202,83,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-2-1'),
('46665943-342c-4c8c-afc9-a5b29361c692','9b790a64-be97-41ec-8330-fe02190f5b10',55,51,14,0,'2025-07-26 07:40:23.594','2025-08-04 10:55:07.811','517867004-1-3'),
('4667af0f-7850-4620-be95-39f56da83ed3','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',93,100,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.426','319911664-1-4'),
('4667b450-52a6-4c4c-a495-5e71d715af4f','b23cf296-f843-4492-9697-0fd43d657771',85,13,124,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-4'),
('466851dc-b3c1-46b6-b0cd-b8931b7d6da0','9a012a01-6709-4e0c-9806-61018f9e36fc',55,74,100,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-4-1'),
('466de89b-db23-4c1a-add1-e53b32458138','9a74cdae-acbf-459b-836a-29ba929835b2',85,95,215,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-2'),
('46708283-726f-467c-9dd7-9cf52bdf1805','220fed8f-f96e-4af5-867b-ac05d11bda6f',67,14,89,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-21'),
('4670ef2c-53b0-431f-a4cf-d0077edebf83','7db89a30-9c15-4696-a11c-dcd45c5887b2',80,205,4,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-4-2'),
('4673ded1-344c-4d01-8d78-9daa9e76ceab','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-15'),
('467a43f5-9dd3-4501-bbf8-9de60880467d','e6dbec74-0616-4752-8816-29db541e12d1',23,55,15,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-2-1'),
('468105e3-df4c-4a88-bba0-bf2151e531b5','55d57945-be77-4866-9a7a-1f1f873c24a2',96,202,7,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-2-3'),
('4682ee11-0122-4e79-abd8-d5ccccd6cb86','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.045','371365041-1-2'),
('4683f3f7-81ff-4c3a-8221-1f077f925d58','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',41,68,21,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-10'),
('4685f6fd-9903-4260-8703-6589cea64cdf','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-34'),
('4686a687-8f12-4736-be95-4ecc8719865c','0fbc8a59-8a38-472e-bcd7-358dfbdaa902',82,84,100,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-2-2'),
('4689e2a6-da18-4800-86f6-6534436f29ea','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:48.354','248284003-1-51'),
('468ab10d-e882-4b1c-b2fa-5cd8c1eae94b','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.099','982405831-1-6'),
('468cfc01-ee70-4fcb-85e5-fe206014abc4','ba4d79b7-2f50-472d-b8a3-175425785005',230,90,75,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-4'),
('468f2afe-0901-41ab-ac64-c76f331038b2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-103'),
('46909dc9-d441-4919-9624-fd7e27f66839','7db89a30-9c15-4696-a11c-dcd45c5887b2',74,36,208,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-4-3'),
('4692ac20-f076-4110-a56e-7e9d1bd4d2ed','a332a69a-5e15-4331-97b8-4dbbd334c8f6',63,70,85,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-2-4'),
('46933866-6371-4ce9-b1c8-f747961e0332','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-19'),
('46943368-ae37-40f3-8c98-178d5f7340f8','86e5956d-750b-4aa3-8f00-53e2db7b9f65',69,40,31,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-12'),
('4695ab51-a8fa-4c8a-b576-b948af350228','e401ce6d-1f41-4077-903f-4deb32a0813e',70,80,90,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-3-3'),
('46962354-1744-435d-91b9-40a5a8d0aeff','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-3'),
('4697c854-2583-4058-9318-f1e5f24af192','8a112f94-c1ef-4860-86dc-23351280686f',248,94,65,0,'2025-07-12 09:20:19.430','2025-07-25 10:49:06.698','976114868-1-1'),
('469aa86d-1836-4f18-b2da-f57f0c371695','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-22'),
('469b4914-4316-4314-b93c-36065299462e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:49.496','248284003-1-34'),
('46a01b79-bbc2-4e24-8dac-26e1dd32bcf1','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',51,50,28,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-5'),
('46a05c72-d4b4-4870-a168-f83db0c116f0','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-12'),
('46a10b5f-16cc-4d95-8ad2-cca514ffaf6e','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',235,100,70,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.684','614725757-1-12'),
('46aacc5c-1f02-4044-b0b2-7780be519b79','f36f3d25-a315-4a57-bee6-dbb93d2e26b8',98,200,7,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-2-3'),
('46ae930b-37c3-4990-b829-423a038f65cc','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-2'),
('46b0be66-8d4c-4eee-8e4f-59ada79650c7','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-1'),
('46b112ae-978c-4b49-8069-2c05d17fd105','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-13'),
('46b142d0-6a97-4dea-a461-0d712663e585','d6df3903-19cd-4a6e-9222-dc4fd8ba3e29',76,57,102,0,'2025-09-18 15:48:39.771','2025-10-02 06:11:36.371','221724224-3-3'),
('46b57b18-f336-4a75-9a92-db04e9dcf1b4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-2'),
('46b5ae28-844a-4c78-a170-ce94c9f9118b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-50'),
('46b8d11a-d87a-4bd0-8ab4-f22b1b4314a7','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-10'),
('46b96377-a00e-4cdc-8d41-a546b20dd77b','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-4'),
('46bb74e2-43cc-4c3d-b46b-b95ecea26deb','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-3'),
('46ccd100-62f0-4e34-b09c-a7e4bd4473f2','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-89'),
('46cde9b0-19fc-4655-b1db-be7eb2e4c215','a3f658d0-43c5-4d1a-a346-44082f79ff25',80,95,55,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-1-3'),
('46d09646-6777-4c0b-827e-e1f3760caaba','a5506c59-0e9f-48a6-9b69-13a5163cf994',255,69,96,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-4'),
('46d345c5-56e7-4643-b141-b3af335752eb','c51cf533-511d-4f61-a94c-3e48074db45d',81,26,204,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-10'),
('46d49d1d-ec95-4667-af5a-37f55890fcc7','0cec28fd-4d59-4786-8895-12736ccf55a1',60,61,90,0,'2025-07-17 09:36:44.598','2025-07-24 09:43:16.475','644682734-1-3'),
('46dacdc1-bda0-448f-9dd3-0ac977a3dfb4','77ba132e-7c8f-4ec6-9299-238cc9b3b7e4',65,203,28,0,'2025-06-27 17:12:12.393','2025-07-10 07:16:37.956','745952430-1-3'),
('46dcc946-c960-4728-8b09-7d7bb4d13b2b','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-2'),
('46dda0e8-8b15-49c5-9f5b-b58b172c3993','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-1'),
('46de4b59-3f6d-4473-ac21-adf16453de8b','f0485a78-951c-4f89-bddf-b2003f0bf783',46,27,69,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-22'),
('46dfce2b-9900-495f-bc22-2fe6cd2b54e8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:47.684','248135683-2-59'),
('46e629e8-d02a-4775-bedc-b9c747cbfd78','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-31'),
('46e789eb-af03-45ba-a1b0-95ab6d892f0c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-206'),
('46eadc87-76f4-4587-b80c-2d40cca86751','f8e958dd-34b6-42e9-a343-6f420c122893',81,56,109,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-3-1'),
('46f01e24-27d2-4d96-bbc2-1d661ac413d8','e5351842-f251-412a-b144-4f748b1a9359',107,93,65,0,'2025-10-25 08:59:08.075',NULL,'351519592-3-1'),
('46f46bd3-64c9-42d0-9cbe-7ecb50d4ded5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-211'),
('46fbad70-0fb0-4a7f-aeb9-8d82bd6cd1a3','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-2-10'),
('46fff63e-95f5-49c7-bbaa-3db36d9724d0','46967417-5579-4330-96d2-b8546922819a',176,152,10,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-3'),
('470151ab-8d85-4429-9afd-2a122df8665a','f88c3e53-b711-4bcb-aa3d-9543580054cd',92,77,205,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-31'),
('47025059-f70a-455c-ada2-14afd3ae3401','c4364289-7d10-4f97-9732-485a10bd6c67',57,16,50,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-6-3'),
('4702e7da-a50e-43bc-b177-33874d034080','f5145f41-7f97-497e-9d6c-3c1ccf4e324f',0,0,0,0,NULL,NULL,'614941926-15-1'),
('470350fb-3265-4467-955d-8f546b8132d4','a2f34510-a7f6-4abd-ac03-e7c577feca03',5,80,208,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-5'),
('4703ae96-be05-4280-8d69-4ff27a72430d','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-4'),
('4703ea4e-dcad-4c8a-b854-fbf922e71f16','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-1'),
('4703fd4b-34d6-4c40-b8b2-61d600806f73','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-36'),
('47059563-52de-4d3d-bc49-bb0cf4f2f095','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',102,65,45,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-12'),
('47072ec0-25a4-4b74-bd5f-85730f33aa4c','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-2'),
('47093c33-fe56-4f34-bac2-998cda9901c8','80953bac-8441-464b-ae38-3bdc43f14985',0,0,0,0,'2024-12-18 09:31:18.009','2025-01-10 16:33:22.776','745283034-1-4'),
('4709c7b0-d046-40f6-9e3c-2a94d6e02377','ce4976ba-e974-4470-8acc-c28f5a58a2e9',16,16,105,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.735','478221533-6-3'),
('470ee69b-121e-44e1-92d9-f212c344ccc4','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-6'),
('470f5b8a-8fb2-460e-a3a7-919850dfb574','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-2'),
('4711d611-de2a-43b0-88c5-af4bc867b926','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-2'),
('47123376-e9ef-4ce6-84fd-c321fa7b0589','e54055a2-3c9c-4738-a808-7a4a31877ef1',147,48,10,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-13'),
('47156c1b-1b84-4038-9555-6702397559b4','a322199e-9388-4cdc-a475-2497cf269eef',80,90,60,0,NULL,NULL,'501589922-1-2'),
('4715e269-05fc-454d-bd21-87ab5307ff77','daf32ec4-3098-4d67-9b7d-722264422db6',0,0,0,0,'2024-03-31 17:55:18.634','2024-04-17 10:15:44.136','614289770-1-2'),
('4716144a-1ae6-4721-85fa-44f705959116','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-28'),
('4718f3b0-9580-4cd7-8105-e536fc9df264','7ba47169-83ca-49a6-98fc-6ef1a1990eac',200,95,7,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-9'),
('471a498a-b91b-4fd7-8785-440215325b9a','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-19'),
('471c88cb-6570-4e70-a5af-ed5154d41665','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-9'),
('471d9066-ebac-47f9-a939-2b89992bb132','a893bf48-8aa9-4c2e-aac7-2d3d46f89794',51,51,77,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-3-1'),
('4723e385-e308-486b-904f-13b25a512790','3c1cb08f-5b16-41b5-872a-3dbcbd15c877',100,80,235,0,NULL,NULL,'910323683-1-3'),
('47249e9d-b7ff-48ba-bcb6-1c822169cb7d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:05.747','248135683-1-163'),
('472a527b-3463-4aef-a143-a2ed2d7f2d46','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-15'),
('472df876-704c-4507-8b1e-5ab55ff576c3','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-91'),
('473256da-c14a-4e17-ba17-355f0b48df43','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-6'),
('473263cd-cd32-41fb-b2a4-b1e4148f4adf','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-3'),
('47351537-3a09-409a-8ea2-0d1c4649cc7c','5bd7aa2d-458f-46e9-a082-a599e9a49784',87,97,73,0,'2024-09-19 18:27:46.736','2024-09-25 12:59:09.871','449417757-1-1'),
('4739e2dc-6d9d-4d2a-b2a7-1bec7e1b5b19','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.385','248425122-1-3'),
('473cb150-28b2-4e17-929d-927193830409','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-10'),
('473d1762-0592-4808-b913-b840768e7c92','280aa08f-620e-4d2d-a959-f7b298499b3d',75,70,75,0,'2024-10-25 11:54:28.142','2024-10-31 07:50:27.640','910163142-1-5'),
('473d2af3-10c6-4842-8128-d283408264fc','0655c66e-ad8e-4f89-af46-bcfa9a272b8b',95,225,70,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-1-3'),
('473fa4a5-aa55-431e-a1ca-85c831767569','7fbc0cac-4c11-4144-b578-3223cd9dd90a',48,8,221,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-10'),
('47416069-8095-45eb-ac67-1921ae077920','4bd3461b-c38f-4c43-90a6-39aacd24cc83',56,44,50,0,NULL,NULL,'976462703-1-2'),
('47425c6d-3ab5-4db8-8baa-70e84aebaa7e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-90'),
('47441033-f7c7-47f2-b9aa-730ea4139092','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-61'),
('4744e6f4-50d2-4032-8ce6-e5f272af3a2e','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-23'),
('47476c6a-67ca-4de3-94e7-d850c2733155','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-26'),
('47486aa1-204a-4183-9488-84e1f08f5892','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-17'),
('474b8e2d-a9f9-4ab0-a2fb-9bf85edb4982','c9b410bf-c39f-4d56-97b6-272196df3cc6',203,83,29,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-3'),
('474ec23f-cbae-4d01-ac61-ed0ad2bd84ac','b7612cfc-aad3-4f87-904b-e50d3b29d0b0',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-3-3'),
('4751d08c-70c7-4c5e-a2db-1b2d6858cc74','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',44,61,16,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-52'),
('4751d3b6-87d7-4e96-8fe2-3be5d4b57800','aa186eb7-d2f9-49f3-a9a9-5bfeea5eacc7',0,0,0,0,'2024-07-20 16:33:25.220','2024-07-27 08:40:50.353','42844174-1-1'),
('4752c5f4-5a84-4d9f-a0d2-428ea0b716c1','b4e8b5be-8fa4-4819-8d9c-1aa6cbff844d',53,77,101,0,'2025-04-28 07:40:18.914','2025-05-10 20:12:44.485','644615727-2-3'),
('47535246-32f7-4a90-8258-350bd496389e','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-22'),
('475d127c-ca60-4109-af3c-bcb09970a976','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-9'),
('476062fb-1316-40da-b115-2c9e5b65766b','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-12'),
('47643aa1-110e-4898-bc04-ab9186ec7fa8','acfd21b9-6dbf-4ded-9e6d-ff15545c15fa',240,65,100,0,'2024-11-15 17:06:35.912','2024-11-27 15:32:39.245','449215672-1-2'),
('476455d6-a4f7-4e43-a1b2-7e50c3cd5e94','6209b244-b9f2-4a67-9557-164b1c37e032',57,33,79,0,'2025-10-22 13:06:52.544',NULL,'786146097-4-1'),
('4764b9bf-74d5-4b2a-a894-749fdfbc4fcf','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-57'),
('476acbc1-9059-46c6-8844-69cf814ccb10','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.212','412574307-1-3'),
('476fd380-a78b-4c98-bc58-5ccbd12bc5a7','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-2'),
('476fe81c-35cf-48e9-be7c-b1f596e41558','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-37'),
('47758764-4f48-4a50-a8ac-291cd3cbbdc6','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-150'),
('477e193a-4dcb-4424-9938-a1b4c7b2c324','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-4'),
('477fc21c-c73a-468d-8d4d-969fe172141c','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-27'),
('47837720-6bb6-4d77-b06c-4d7823caba00','9cf8adcd-9452-4ab6-b89c-c783d7e0f9a7',230,60,100,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-3-1'),
('4788c3c1-8b3f-491a-ae45-4901fc75118e','54ecc723-511d-4e08-bb59-481cabdb46bd',220,80,77,0,'2024-11-15 17:06:06.781','2024-12-01 12:28:33.543','982333020-1-2'),
('478a366d-b1a9-4652-bd75-75503d76c663','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-67'),
('478c7b6a-c9a7-49ef-a43f-5417a94407a1','afd7f71c-d1fc-484f-b72d-f986503df4f7',50,37,20,0,NULL,NULL,'703266692-1-4'),
('478ed87a-91e3-4dca-b6da-a17ec09b1499','0e2be2b7-0932-4325-b574-46a1ab000238',51,51,77,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-1-2'),
('47903b03-06fc-4b79-915e-17346495f916','86e5956d-750b-4aa3-8f00-53e2db7b9f65',260,60,4,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-13'),
('4790619f-b19b-46e2-9953-3971acd4472e','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-5'),
('4795bf8a-f7cd-431b-9640-03ce8fff5bcc','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',230,67,90,0,'2024-03-30 07:11:57.221','2024-04-02 16:08:31.694','982501931-1-3'),
('47985809-e2c4-4dd6-91c4-5cde4cb5ad1e','5acbde88-dafc-4c21-ac17-d9730a373cef',162,75,20,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-2-2'),
('47999e86-51a5-42f5-a533-923698a0d9dd','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-6'),
('479b521c-7053-464b-b3a4-e7c0f1076ff2','c8fdc4b5-c5a2-450b-b132-21b8be8c8316',0,0,0,0,'2025-04-11 13:41:58.635','2025-04-17 13:54:22.361','47888038-1-1'),
('479bad4d-7ad0-4390-9a43-41159d2e6602','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.409','412990147-1-5'),
('479c988f-0f01-46cf-bf0c-4670a1901a13','b988fde4-e371-4e31-a284-a3f361315160',0,0,0,0,'2025-02-23 12:39:07.886','2025-03-06 15:54:32.345','745140498-1-3'),
('479e0b8e-7203-4d4c-b1c8-622177212cc8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-222'),
('47a12fbe-a63d-412f-92aa-0db6b52ff9a8','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-3-4'),
('47a319ff-e086-4dc9-8485-166506fab382','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-156'),
('47a5c5d5-659d-4d15-984f-107fdb1aafe7','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-4'),
('47a92ae0-2834-4209-8bd3-326d41d38447','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.102','478593603-1-9'),
('47aa112c-ebba-4524-aa2e-ec7f456024c0','65237011-5eb5-4b03-9971-4b707c212c08',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-2-1'),
('47ad5d2f-1b54-4dd6-9873-7fed5856275b','7f6a1eed-b929-4891-9958-a6e2765efe22',53,72,102,0,NULL,NULL,'127991361-2-2'),
('47ae2a2a-0162-4796-b0c8-f06a32b8b874','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-254'),
('47ae4715-56a8-459a-ad6d-095446f24b92','49c326ab-5b3b-49e7-a781-28760709b5be',44,23,141,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-21'),
('47b15eaa-4ff7-49fc-afc8-bc8a2072ab14','41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0',77,51,51,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-2-2'),
('47b2044a-99d2-4cf1-a9bb-60e9a7b15a10','0a8285d0-d3db-4298-8e41-62c5429f150a',67,11,11,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-10'),
('47b2a371-0ad2-4e9e-96e4-74d5ebef213f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-234'),
('47b68bdd-8ae5-4c27-ad27-96c603cc0a6c','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-4'),
('47b7c737-5466-4442-ba56-dcc91d0179ea','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-149'),
('47b8c9a9-493f-4eed-87a2-1c68d094d6b7','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.845','2024-05-21 18:45:33.371','734936220-1-5'),
('47b9b3d4-332e-4a06-bffd-8b6d03c0c9b0','0683aa5c-fafa-459b-928d-eae1729e635e',100,75,90,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-1'),
('47bad846-0fc5-402c-8ca8-ad645f3e3ad1','c564475a-2d18-4b15-a65d-9a29abfe2528',0,0,0,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-2-2'),
('47bb8557-2f22-4baf-9397-7f4df4fd3f0c','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-9'),
('47c02e52-aab7-44f6-8076-c0975d3507ae','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-19'),
('47c0d89c-2807-4766-806a-695957bf0bd0','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-1'),
('47c1ab93-c7d8-4d22-970c-3e64dfca6122','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-9'),
('47c3baf5-8f3e-4d75-a8b7-ab2bca64994b','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-5'),
('47c44991-0c74-49c0-8887-00d981d1c3b7','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',73,91,7,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-27'),
('47c564ae-eeb0-4800-9385-bdd690877d41','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-13'),
('47c7c3d1-3208-4fa2-ac74-a86674837f0c','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',110,80,55,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-8'),
('47c84ba2-efec-43c2-bdee-37763a77d9a0','0e92c59b-93d0-4308-91ce-3965bb186203',245,97,65,0,NULL,NULL,'428180919-1-9'),
('47cd1250-b555-4b83-9c4d-510a3b29b462','0c6185c5-4d86-4de6-a4f2-365f095498a7',45,55,114,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-1-2'),
('47cf9fde-4594-4eb5-8cb8-1e724cc87f41','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-231'),
('47d2dfe9-b873-4dbf-a06f-6b986691ea85','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-11'),
('47d40e0a-1b68-4bce-b311-1a150b1ff22f','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',208,32,21,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-12'),
('47d6a900-86f3-4ef4-8d15-f978ca568608','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-21'),
('47d81d1a-424e-4e90-8f78-8b0a20ee31d2','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-38'),
('47d8c220-4239-4098-86e9-ed24fc72107b','009d2ad6-5f92-49bd-8463-3fa964f7693f',82,56,100,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-1-2'),
('47d99222-018d-4c28-91d4-8220c3a0a11d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-144'),
('47da0e36-db96-45a9-a6f2-dbad1ec1c029','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-7'),
('47da497d-1c98-4dc2-888a-1041d001645c','2173be11-c6d0-41b5-81d8-89c770354a7a',95,75,225,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-1-2'),
('47dcdccf-6c25-41d9-9329-4cd54047a4b5','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-54'),
('47de7a9b-f408-4bbe-8e9a-309656b9ce5a','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-1'),
('47de9773-a368-4e43-884e-f643b2102e01','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-33'),
('47e09099-47d0-4106-99eb-cdebefc0ecc9','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.460','734579794-1-5'),
('47e4148f-c411-4b21-99d2-1476f2cdbc49','4da5ac02-2da4-493f-ad0f-88044a96633f',96,235,60,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-3'),
('47e42575-de24-4b7e-b510-4110337411b5','95b23b47-344e-4706-bc50-f1bc5ed6c00c',0,0,0,0,NULL,NULL,'598604443-2-3'),
('47e91a92-fd70-4a6f-a727-bd93d36a9194','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-45'),
('47e97369-317b-4eb9-92c0-5a7015e38837','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-92'),
('47eac507-8fd2-4d6b-9509-66592bda6921','845e0c76-772c-4d2c-86c9-e8d641b329e7',60,60,57,0,'2025-10-08 17:44:16.415','2025-10-20 06:32:49.150','831899043-1-3'),
('47ebc310-6c02-49a6-bf4f-331e26379f50','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:52.136','248284003-1-195'),
('47ec8e6a-2ee7-439b-9168-13747f08363a','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',165,10,30,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-11'),
('47eefe5a-ce7b-47f1-afa9-433197ef6d98','dd119eb4-d1fe-4633-a5cf-5dc72cfaad2c',0,0,0,0,NULL,NULL,'614661701-1-3'),
('47f31720-3553-49df-b7a9-1f7b452c1c80','980127cc-cb0b-4694-b945-70457774323b',88,200,28,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-3-3'),
('47f6a066-bebb-4c0a-8849-8ed3f7a4f765','d6df3903-19cd-4a6e-9222-dc4fd8ba3e29',76,57,102,0,'2025-09-18 15:48:39.771','2025-10-02 06:11:36.371','221724224-3-1'),
('47f8714e-b2b7-4e7c-af23-4569bf9319cf','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:51.107','248284003-1-102'),
('47f8d7f3-d419-4afa-9543-0a065444b54e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-133'),
('47fa7cbd-5303-4efa-8742-8bc8d811ccee','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-20'),
('47fb43b4-e100-4c3e-a787-639979244eae','efb12d78-a6d9-4ac9-acee-1e0a5f965fbb',32,31,15,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-2-2'),
('47fbf3a7-0cac-4183-9aa7-633ae19f86e5','d024ac00-3c90-4d85-add5-6d95182d7f3e',100,100,60,0,'2025-09-12 17:16:39.504','2025-09-25 14:04:59.283','817160215-1-4'),
('47fec33f-5e36-4966-8993-4e0609f97010','68a82262-4794-40bc-b3bc-eba8f7ad4a03',92,222,7,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-1-2'),
('47ff46ba-3535-4d9c-9e12-cd115c8426f1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-207'),
('48014903-0200-4b34-81c5-ef53799ba380','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-22'),
('48020ad0-7c42-4850-9c31-935641ed1887','940aa57e-21e8-4cea-ad18-82859c22f018',65,95,73,0,'2025-06-11 13:14:38.730','2025-06-18 07:15:26.935','817121694-1-5'),
('480289e3-71f2-459b-9393-3c189d61a1d4','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',45,95,10,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-5'),
('4803435d-ad45-4c82-9caa-a0a4d3189aeb','03ad506f-f86b-4dbc-952f-52b01e2467fa',175,75,95,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-23'),
('480aaa7d-8485-43cc-a84f-fc63b7567480','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-8'),
('480b3ae4-0375-414a-873e-a91b417476bb','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.061','2024-11-09 11:12:20.375','248259363-1-9'),
('480c3d73-b130-4ff1-a5c7-13e19569fff0','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-6'),
('480cc182-bc91-475e-b71b-ca8b2c9c2812','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-185'),
('481b7e66-a8aa-4bb8-851e-f2edec63b01b','2ef10f17-04cd-4b22-8b1b-2915e55684f2',100,206,70,0,NULL,NULL,'50538335-1-2'),
('481c7bd1-822d-42fb-9a53-ee5171079263','61693d6d-1ccb-4968-9461-6ef1bf43aac5',41,31,171,0,'2024-11-21 10:29:11.924','2024-12-14 12:00:59.316','112270991-1-5'),
('481fa9e4-8fd1-4354-8658-79c0e80462cb','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',91,56,13,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.360','478678748-1-62'),
('4822da78-4518-4c6a-8d17-5315ed2dc284','f5680032-1fe3-4ad6-a948-925ccde94367',52,52,77,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.748','351330330-4-1'),
('48252729-7d36-4556-992e-275c4f4d115d','d1aedf1e-b5d5-4c6c-8c6b-7898e66abaa3',85,72,53,0,'2025-10-02 06:45:45.668','2025-10-16 15:46:43.298','465634666-1-1'),
('482874d7-06d5-4312-bdf9-446c997f8345','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-111'),
('48292315-03f8-4d68-b251-9c108ccec323','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-16'),
('482d3012-8f64-4140-b88b-c7b4bc806174','b8089750-c1ff-4b2a-ae78-78b537c54a69',57,83,101,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-2-1'),
('482e6637-49b1-4d1a-8dc8-41a9efb25e2d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:50.688','248284003-1-87'),
('482e92a6-6dee-4b99-94c1-242e05728be4','b3f02c32-aa9c-4645-9a60-55ade9c2c6e2',58,30,40,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-2-2'),
('4834c585-44bc-4a33-b4fd-0a3926b8bd33','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,6,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-53'),
('48361106-82c9-413c-8aaf-93602de67b1f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-147'),
('483b52bf-d9fd-4b3e-a2e7-802ae21604d2','52dd3c5a-4e7b-470b-aca6-03bb538c76cf',55,97,106,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-1-3'),
('483d2edc-00b4-4cfe-a223-f376356e5e04','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-3'),
('484324d2-e527-4ac1-adcb-d82911452478','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-140'),
('48451325-1293-461e-9edc-35f0b3b05325','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-3'),
('48489a15-071b-4beb-952f-d89ff3f72eac','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-6'),
('48537b51-aadf-453a-899a-32144f7b31d5','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-8'),
('485922ca-7aaf-4f50-8daa-d027ef04f80c','f88c3e53-b711-4bcb-aa3d-9543580054cd',92,154,76,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-29'),
('485aa52a-929e-48d4-8e2d-c276c8eaeca5','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-3'),
('485e2ee7-4742-4e90-928c-413f3674d78f','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-5'),
('4864cfa4-3091-4991-a1a2-ad89e78913ff','0ff7b00e-abbf-4c9d-90d2-7b7dd8da240e',0,0,0,0,'2024-07-20 10:37:09.282','2024-08-05 19:56:13.040','614652730-1-1'),
('48651670-c900-4de0-b5a6-f09ee9a5bbe3','793ba0dc-e99b-4fa6-b21d-bf758c07d6bf',51,51,77,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-3-2'),
('48652ed9-311d-4fb7-afd9-6fdc56ef01d8','9f1f4a12-045f-486d-8d26-612451204bcf',31,31,40,0,NULL,NULL,'745995046-4-2'),
('486e680f-2efa-4804-9f60-6c6bec6b873e','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-42'),
('486efce3-0364-4941-9b70-c528def2bd26','41522b3e-6de8-4685-9902-9f8555a44573',33,55,33,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-2-1'),
('486f2e95-11ec-4d4d-91a9-7747bdcc15bc','a04842eb-3d64-4437-879d-2eebcd3724f3',56,82,110,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-1-1'),
('486f4688-0762-480b-96a9-b613ec4292d2','793801d4-f6c9-4e1a-9207-88bfb41fcbbc',51,51,77,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-6-2'),
('4870821c-4e2a-4309-941e-8d8b20a7cb5e','f0485a78-951c-4f89-bddf-b2003f0bf783',47,41,58,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-24'),
('4870a35e-4f04-4a36-96ca-607fd40146cb','da2a6994-498e-4ee7-b19e-3acf02f6cb3a',89,64,200,0,'2024-12-01 06:48:20.004','2024-12-07 20:48:15.986','614396499-2-1'),
('48734b32-0892-449e-9674-a51da045baa8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:06.661','248135683-1-47'),
('487507d1-8609-4845-97b0-8bedd74459a0','b5f6869c-be7c-4244-9bf9-704a745a8d2e',51,207,10,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-3'),
('4877340a-119b-43ff-80fc-093f67241cb5','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-13'),
('4877c69c-cf46-44ac-92c6-10798f6461d9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-125'),
('487986b8-a3e2-4a00-a8af-c3a0b57e5f90','83fa7429-792d-42a8-9ee5-5d78e3654c0f',140,200,30,0,'2025-08-22 20:28:37.271','2025-09-03 06:12:05.456','745734415-1-2'),
('487e6d0e-5068-4b69-9513-6d67d8c40876','c4364289-7d10-4f97-9732-485a10bd6c67',40,12,7,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-6-4'),
('488052ab-6a60-4f10-a580-58051a2ee6c2','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.464','478972804-2-11'),
('48816437-0c17-44a9-a6ec-ca4943dcd118','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-7'),
('4882997d-8129-48b5-afd8-f8a2bbca9105','2062f856-d39a-46e8-8b06-8b267e9c1d32',130,110,174,0,'2024-08-21 14:53:21.375','2024-08-31 16:53:22.846','448774640-1-2'),
('4888fc1c-554b-4dee-8709-74477f3d2b32','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-11'),
('488fa0e7-5a50-4369-8674-bd6856de621e','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',105,110,73,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-2'),
('48908a28-de60-406a-98f3-c7a9f41f37c0','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',111,29,208,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-12'),
('48909c6f-85ee-4fc7-bf1b-9d44559a9816','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',48,6,227,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-4'),
('4893bddd-27b3-4fb6-ba1f-90e3bf760e18','372213fa-c2e3-4293-b83a-0a8cb1587967',126,128,65,0,NULL,NULL,'765864813-1-3'),
('4895bde7-3a6b-4879-a6a6-b63db3edafde','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-128'),
('4898d31e-ff89-4a70-9203-7edf6b108020','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-23'),
('489ba659-9c4b-4dec-963f-b1f8c469bc4c','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-20'),
('489da0b7-47c3-4c32-896a-279d5f646495','a769cd75-8095-4eeb-999c-d1a749589a77',108,65,95,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-20'),
('489eda43-8f60-449e-971a-e37b8aea3c0e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-4'),
('489f970d-fcbb-4b9f-b109-fe52e1c5bc15','bf560fb2-0b91-485a-bf70-cae59896df3f',40,50,36,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-2'),
('48a0a177-1827-417d-a2d9-8cca475457b5','7afaa863-1632-4dab-9a18-d36f3b675d4c',80,82,78,0,'2025-03-06 10:32:12.498','2025-03-13 15:28:39.032','081982015-1-1'),
('48a3e916-6190-4b57-915c-f08f2820ca94','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-11'),
('48a8310e-4385-44eb-a834-ad386237a868','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-16'),
('48ad779a-5179-4176-af69-cb13db1a1358','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-1'),
('48b221af-1db2-4896-9ccb-ad277aef032e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-127'),
('48b44fa6-2750-455d-bef0-2cf1bd9ee7c7','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-8'),
('48b86a60-d42f-4ab6-bf1b-267a72058e3e','82c2f7e6-7d17-4f07-ab88-13d96b343121',85,90,70,0,'2025-10-08 17:44:14.746','2025-10-20 06:32:43.863','644651781-1-4'),
('48bcae10-b098-49c1-a6fb-dc64f51745ac','546ad3d0-25c2-43dd-9443-e48b8e5b6530',95,65,56,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-61'),
('48bd4f77-7484-432d-a00a-47cf318e8fa3','c5d03b78-19c4-44f2-a673-725e07271521',65,66,91,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-12'),
('48c030d0-0b98-4afc-a3f0-36834cefff9c','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.537','655111652-1-4'),
('48c320c9-7ca7-4e8c-97d8-f110dc060cf0','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-9'),
('48c5f5d6-7d35-4bca-89c8-75893cd00aa7','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-6'),
('48c6377b-0db5-49cf-b0ae-1295652a3c9e','aadf78aa-6852-48e3-9660-062042fc3ac3',113,70,108,0,'2025-07-19 07:51:56.592','2025-07-30 08:02:13.959','127221315-1-4'),
('48c79fa3-f95f-4fd0-9d8c-dd0d5acce089','2a723830-d2b5-42fb-95ad-678895eae7cd',55,232,6,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-2'),
('48ca18c3-c2a7-463e-a2e6-02aa4b504c30','39478666-fad8-4b04-b7f5-a9bfd5e65c37',75,53,96,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-2-2'),
('48d3286d-4c0b-4c46-8a2e-3b0150d555f2','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-16'),
('48d34eeb-d38b-4e2d-bc36-cc4cfe6c6a2b','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',210,45,15,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.684','614725757-1-13'),
('48d3f9d5-cd72-40c8-a257-16c8edfa6fb7','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-23'),
('48d5a556-053f-482b-a359-10f76c1cb4dc','7bd9d8a5-0270-49e1-abbe-37ba6f8f9ac5',60,45,35,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.490','598412225-1-1'),
('48d7601a-2d52-42b5-8b32-f8d641610efe','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-19'),
('48d89f92-c315-4b63-bdbb-4fccba693733','b79348bd-6b0f-4bf7-9a46-0e0654fa8fd2',88,77,70,0,NULL,NULL,'745883224-4-2'),
('48d98c78-cb26-43f8-8adf-8335e5fd6b13','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-120'),
('48da8187-298a-4eae-abbc-173133394ed9','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-20'),
('48dc15f4-0fbd-4059-8ece-8277bcd976e3','9437e5bc-0bc0-4924-adb6-d303a80c1c2a',90,97,70,0,'2025-09-06 07:20:46.209','2025-09-12 06:52:49.110','598130952-1-5'),
('48e71257-d4e4-4097-a76f-0d0e7e90f46f','08f19940-4aad-46bc-bf72-01f66d155c84',22,69,48,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-3'),
('48e717a2-b1bc-4789-8552-0d6538129375','cf593fe8-a725-46d8-9aea-78d789c87856',0,0,0,0,'2025-03-13 12:21:46.618','2025-03-19 12:37:05.683','745430976-1-1'),
('48e75532-9fcb-4e64-b8d4-f777b954e46f','3aca7d6d-09cb-4903-812e-7535a083b09c',215,46,5,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-21'),
('48e77e0a-18a9-4f75-afa3-ca149105a536','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-21'),
('48e852db-fb93-410a-abd0-88190c02e74d','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-25'),
('48e8df71-ac62-49c4-8032-fc7ee21667b5','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-68'),
('48edb499-2be2-4046-ac9a-f29a70010e00','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-6'),
('48ee8dd9-b0a5-4ef1-94d7-f5d3f758d69c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-75'),
('48ef4ef9-6e6c-4b56-b02a-584a80bfb86a','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-12'),
('48f11757-55a4-4bc7-8c0c-89eb3fb94f76','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-112'),
('48f4c9e4-05be-4a4a-8f0c-6dd90f449e28','fc62f08c-a4dc-4f3a-b1bc-a39834539515',51,51,77,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.758','515956879-1-10'),
('48f4cb4e-726a-40a4-976e-26a8d6889b06','bff50eb6-35f0-4d46-9229-c709335da145',45,90,50,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-1'),
('48f4e2b1-c2d1-4e88-885a-e287f24d7fa0','9d7979f3-a35a-4a64-97d1-4ba973786029',130,7,185,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-26'),
('48f6a8f7-9bd0-4bb1-9c53-352d1faa96ce','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-15'),
('48f789bc-50ec-4d52-9ef5-db1d2a396581','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-24'),
('48f7fc70-b37c-4dc7-9eae-5faaaf0e28bc','d0ade823-74de-4507-8f72-ff3352af4bbf',198,158,3,0,NULL,NULL,'428407424-1-12'),
('48f84f99-434c-4245-aebe-26755d34ef47','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',107,30,205,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-7'),
('48fbed53-bda4-4fe0-ae8b-9c5401e3c620','ee745f45-50d0-4658-bb53-a03142b7675c',0,0,0,0,NULL,NULL,'478494886-1-1'),
('48fd5833-d0c8-47c0-87e4-8ebd48825cfd','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-2'),
('48fd7795-616c-43f2-a199-2d4d83e134e0','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-3'),
('49014bb4-2cf0-450f-9da4-2c527da2a3b3','0a8285d0-d3db-4298-8e41-62c5429f150a',210,48,13,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-11'),
('49060a93-db6a-4e38-948c-88c8c90d07e1','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-15'),
('4906325d-7504-4b77-926a-d491ea61c6b3','a5506c59-0e9f-48a6-9b69-13a5163cf994',205,30,45,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-5'),
('4906c967-e583-43c0-a438-656ca0626066','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-20'),
('490b48fd-ccb3-4028-bf61-1728391d1a0f','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.856','412252425-1-2'),
('490f1859-9e91-42b7-b806-1f55614d5e11','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-9'),
('490fd7ea-83bd-43fa-bf33-838dffcabb93','e7f31a78-648d-4a5e-9111-1bf7db38dd79',118,24,8,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-10'),
('491010ba-88ee-4b05-9dee-d040e8da0d65','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',56,72,106,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.402','478906000-1-5'),
('4912fdbf-75d7-444e-bc11-4cc639d10e56','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-80'),
('4918f4c1-57af-4e9d-a705-2f7db66057e8','01ef32a0-1284-4a83-aa87-7a3d88e6cae4',97,196,7,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.790','745251111-1-1'),
('4919672d-55a2-48a8-aac8-417ae309de85','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-66'),
('491b7ac0-a285-49be-b674-b964463fb655','5e4d8700-ecec-4c1f-b393-843da9941edc',0,0,0,0,'2024-07-20 16:33:35.781','2024-07-25 21:24:38.399','9824380-1-3'),
('491b7c4f-1e08-4c48-adc5-e10faac75248','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-9'),
('491bee33-e475-4835-9638-40b9fda32337','dd610824-86db-4c6a-b135-c31ab1618fac',100,80,230,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-3-2'),
('491c9ea8-25d3-4d07-8977-15b88bc54489','e86f2f3d-8f0b-4894-8c39-9063af830231',224,58,8,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-6'),
('491f9bcb-d154-4c37-be44-193b8a6a178d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-4'),
('4920c5c1-17c5-449c-a7f9-11e1329afdb1','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-2'),
('4922c2f3-905a-4d41-a175-511eb6b35084','3fc759d9-3801-490b-bbad-23f2ff290b97',66,84,97,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-5'),
('4924e336-b7ad-4a01-9d20-34e388f5e583','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-18'),
('4926dacb-3180-4a2e-adfd-45426e1432ee','278b14ca-f435-4dc6-be59-91b5fafa1288',206,9,2,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-1-1'),
('49277c4d-840e-4a27-9ed3-5f955cb511e6','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-2'),
('49282910-940e-462b-911c-138f904f610d','b63291e7-9a9c-4942-9e5c-792e1279180f',66,43,25,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-9'),
('49294b93-4677-401e-ad6c-d74dfc6e730f','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.838','248771792-1-14'),
('492b2fcd-6776-4566-a390-04429f0e3d4f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:07.754','248135683-1-137'),
('492da707-7ce2-4dd1-a710-6ef0e736aa0b','324936f5-0640-4048-8641-e1550a228838',56,225,8,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-5'),
('492ed44e-6e88-4293-8cb7-61925215e47f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:08.614','248135683-1-204'),
('492f411d-3ba0-4e8a-a9b3-3b8d21a61ff6','a5e8964a-d12d-4dc6-b88e-55ea9e1549f6',61,61,75,0,'2025-07-02 12:43:40.932','2025-07-18 17:08:41.286','37140435-1-2'),
('493050ed-ae8d-417b-9402-287db73d541c','05af1df3-9a36-4be2-8bd1-773d59e1605a',16,17,75,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-15'),
('4931486b-ab99-4635-ba86-fb41252f40a6','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-2'),
('4932dbbf-1e3d-438e-8759-8f3068a63fba','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-66'),
('49349e60-22f9-4dba-a914-1940301201d3','914c35b6-7134-4163-8911-cbacbed3fcb5',100,15,120,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-9-1'),
('49376569-ecbc-46d7-8802-8b68b48e3062','5aac8c34-51ea-4438-b73e-7d54bf02d518',66,66,86,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-3'),
('49377cd6-3aee-413b-baf5-5071cc4ce61d','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-24'),
('49378e2b-5c97-4c8a-ad93-d3ac6eab6f74','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-10'),
('493943e0-3f2d-4e3e-bf05-5670a91d319a','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-6'),
('493dd66a-422c-4a64-9481-1880f7f77ec3','7311f1e0-e2be-43dc-9e40-f94a010e8939',80,5,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-13'),
('493e372a-a66e-405c-a71f-a145e5313e24','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-60'),
('493eed70-68b6-461a-888c-e434055136b9','63147202-2ef0-4eee-b5d2-5c980e242412',45,45,77,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.036','531445058-3-2'),
('494061a8-78c4-4c9e-a8b1-d963e4e900ca','4eae3816-b63a-4561-884d-1deed583c734',0,0,0,0,NULL,NULL,'614941926-5-1'),
('4942dc85-f942-4948-b90a-b5363ea12d0c','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-51'),
('494539e6-409c-4ef0-a1e7-ee1de9ec975f','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',76,39,42,0,NULL,NULL,'011548428-4-7'),
('494794a5-2b78-4b93-b419-a44c0f727d60','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-135'),
('494c73a4-9c21-41f5-b974-9574309044d0','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',49,94,7,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-13'),
('49517568-1b45-4921-8ac6-05d8bafb994b','7539ec51-cdb8-4879-b280-a64290bb512f',40,30,30,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-3'),
('4953fd56-5aba-4928-bc65-2b3e977c3931','8076bb41-df9d-4c3e-b002-8df21ddafb0a',243,92,67,0,'2024-09-06 12:28:00.234','2024-09-13 16:38:28.325','449281517-1-3'),
('4953ff4a-e6fc-436e-ba3c-20c2ac722e35','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-13'),
('49575887-32d9-4c6f-863c-a59943c9db30','c19e66e6-a1bd-4661-913a-aea87aee7878',55,77,102,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-2-2'),
('4958020c-a066-490c-9eca-c9205177e825','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-6'),
('495869f9-7441-463a-b700-afc950599558','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-169'),
('49590b73-0a1f-419a-9a95-0aa80cbde348','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-24'),
('495b9c9e-29a9-45f6-9536-d99d50bfad0d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-18'),
('495f2ae3-2e47-4517-beb2-e7791b16017e','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-6'),
('49600d5f-e810-44c1-a80c-4a3648de3434','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-13'),
('49615421-9558-4260-aa92-823b0ad82d20','b6bcdb5c-cba8-4b50-81aa-7aa8e9eb573e',115,115,65,0,'2025-08-14 08:21:39.050','2025-08-21 08:14:06.251','334206952-1-1'),
('4966a2ff-b8bd-4b50-959e-2e548680d665','af1a3f38-e83c-49d2-a38d-c1fbc58d5223',60,97,117,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-2-3'),
('49670208-9c73-405b-9b4e-a365042f13ba','faeed55b-96a4-4881-b45b-9ca34af87762',100,118,70,0,'2025-10-08 17:44:11.185','2025-10-20 06:32:22.650','644742878-2-3'),
('49675620-656d-4607-9517-05054701e5fd','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.693','2024-10-30 18:09:49.991','745976194-1-3'),
('496b9d23-9b9b-44f9-a93d-fd00c4023479','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-48'),
('496d5524-58f4-4e96-9689-2d58b6d351f7','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-64'),
('496e42d8-0973-4193-b67a-62b6a00f0581','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-39'),
('496f6f09-abf9-47e3-afa8-086f3c8725b9','19c6a32c-4384-451a-aaa5-dfc264ab827b',72,52,95,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-6'),
('49706320-b72f-4c62-ac53-1ba69db58556','9eeecdac-d023-4ee9-8639-dc9b22642c27',120,252,23,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-2'),
('497090dc-58fc-426f-884f-d5e3ad71384a','324936f5-0640-4048-8641-e1550a228838',57,5,224,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-6'),
('49721c82-4edd-4983-a47f-46a14d9b0ed1','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-32'),
('4978237d-0eae-47aa-aaea-3d3c531e7ab6','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-7'),
('4978b767-a01f-4877-9c89-84cbde52bbb4','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',44,58,17,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-17'),
('497c9625-0057-46f5-a8c9-1dae35e999a5','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-6'),
('497f924b-3d69-4131-bf31-f7e820d699f1','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-8'),
('4981fe9c-6562-41f7-a8a0-9d96aeedba46','29554c39-59b7-484a-8dc7-434cbbe4f2f2',51,51,77,0,'2025-04-28 07:40:36.260','2025-05-07 06:08:01.236','221867394-1-2'),
('498249df-aa91-467c-b450-7a91fe9aee3d','54f76545-b44c-4fcf-8097-cd39f86917de',32,17,208,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-1'),
('4985cea0-45c9-4c2e-bbca-8525eaf17590','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.840','428752676-6-6'),
('49867ed4-6a71-40e7-9721-60659c8a9f29','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-4'),
('498c4981-f51f-455d-9f67-9293ac2b635b','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-15'),
('498f8379-b346-4b9b-99e4-0bd1b783a2c3','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-3-3'),
('4991153e-7303-4bb3-beb1-d6c3bb842c88','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-1'),
('499115b0-0cbc-4ed3-93a9-e9dab177172d','d457d99f-e3fa-4b05-88ff-7a942d587be9',0,0,0,0,'2024-05-08 18:43:18.555','2024-05-21 18:46:06.354','745483178-1-3'),
('4992d31d-f733-4bc9-a2cd-8e326acc602b','2ab41284-325e-4735-a02e-0af4784fee90',48,10,148,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-2'),
('4997f463-0248-40bb-bc36-3411cdaffb31','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-3'),
('4998f7ac-b476-4282-a9b4-0f58bdc51403','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',38,13,185,0,NULL,NULL,'338991013-1-2'),
('499a3602-b670-4786-8846-e60f77d51e66','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',16,7,163,0,'2025-01-26 10:54:21.565','2025-02-10 14:16:27.212','428341956-1-5'),
('499a6807-1224-4a8b-9430-8459e5e60943','9c69684d-b820-4794-97d0-0096a00b04b0',56,80,100,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-2-2'),
('499df935-1ac9-401a-bd2f-449713709c38','62dcad6d-7e47-4849-924b-61c791d5a98e',90,95,110,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-1-2'),
('499f0ab0-ed2a-441d-87fd-4cb2b23bcdf2','724d91b5-a9e8-41cf-8697-c13640363602',101,57,84,0,'2025-09-24 11:01:59.340','2025-10-07 06:17:28.408','531309772-1-1'),
('49a0fa6f-a2d2-4826-8c75-d6b9ef91811b','b732088a-13df-4ef4-ad40-75866bda52af',57,56,87,0,'2025-04-11 13:41:29.010','2025-04-26 17:55:32.224','338607005-1-1'),
('49a45322-da72-422c-8b8c-59b2aaabf623','1a031080-df55-4ad4-b405-0eda0f569cfe',15,15,160,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-1-2'),
('49aa4131-0f15-42ac-9a95-7700577077a6','56f86587-7355-4e49-9eb5-727edc1be570',210,40,8,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-3'),
('49aec300-8125-4d79-a8c7-3178a73abf88','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-10'),
('49b17b4d-e22d-458e-a8d8-70dfb90937d9','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-9'),
('49b182ca-06f5-4b39-9f60-762920c83c3f','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-13'),
('49b29861-2b1d-4485-8ffc-3c96fab446df','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-21'),
('49b466c6-08e3-4876-bb72-0ab92397e99d','c5d03b78-19c4-44f2-a673-725e07271521',139,52,4,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-2'),
('49b568be-3c52-4976-b3ec-56f711280e35','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-29'),
('49b60694-fc9e-463b-b8de-bff7ad0d2c6e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-178'),
('49b7866c-b06d-42c1-b483-14072182c0c6','d249af0f-08a7-4145-9b4b-f81577563c6c',57,62,83,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.565','221345365-3-1'),
('49b9f247-313d-4c23-9df7-27b2b1d1a1de','a123770c-62b5-4b3b-b299-a8495740fccb',0,0,0,0,'2025-10-08 17:43:49.700','2025-10-17 20:57:08.776','428604775-1-4'),
('49bbc7e4-0218-4ade-a75f-6062e995a6df','f45571a9-812c-4870-9a5d-3dc263fdeb52',51,51,77,0,NULL,NULL,'221351976-2-2'),
('49c09940-918e-4616-9a33-b4127c8984db','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-60'),
('49cc87d4-dbff-41d3-bb62-5e9b1a306de3','5aee2d3a-f16f-4f77-85cf-30dd201f904e',0,0,0,0,'2025-05-09 18:43:38.267','2025-05-22 15:23:16.748','745865715-1-1'),
('49ccc7e7-4e61-4bfe-aee6-05e5b264e6d9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-28'),
('49cd2fcb-fa28-49cd-a503-52dbecd38747','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',11,60,94,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-3'),
('49d40bac-c4ba-4d3f-a1fb-691b22aea69f','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.461','734579794-1-6'),
('49d4720c-6647-42c6-a7fd-dd22e4574ba4','b463387a-754c-4c53-ade6-f7e850173707',97,198,7,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-1'),
('49d5d3de-1d62-4c3c-a639-273524726290','824d6217-b971-4993-8029-722e4fdadc9a',90,62,61,0,'2025-08-27 19:40:12.363','2025-09-04 06:16:45.734','644826740-1-1'),
('49d73334-4376-4a7a-835b-a84a81eced25','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-10'),
('49dab282-a772-4965-8394-52a6f496b9ec','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-8'),
('49db6436-1dae-4de1-8d73-010390040f8b','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-16'),
('49dced22-17e2-49ea-828d-9a918c698c17','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-3'),
('49ddea66-03d7-4f54-b66d-47e0efea29db','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-16'),
('49ddfaaa-3412-4d6b-aa65-8588d8e1dbba','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-2'),
('49e0adcc-5dc2-4db4-a8a8-093d2dcb8946','86e5956d-750b-4aa3-8f00-53e2db7b9f65',240,93,80,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-14'),
('49e363ee-718e-4dbb-ad7d-09f2d1ecc5d2','194c43e5-97d7-4321-8a7e-7758ae0d89ed',51,51,77,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-1-2'),
('49e368eb-1059-4277-9528-adffa9f07dc8','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-7'),
('49e370ea-75ae-40bb-ac1c-5b97a5fd89f7','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',141,46,17,0,NULL,NULL,'428437129-1-7'),
('49e392f0-2f0b-4585-b984-ab76cc820d62','6a308121-6cf9-4384-8446-08182bd669fd',86,56,9,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-15'),
('49e7f2f3-62ab-40c4-902b-0ce06e006de1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:09.311','248135683-1-1'),
('49ea1b08-0007-4aa8-a710-9dc920797979','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-4'),
('49ebb07f-03ab-4d08-bed3-1f0db0a956a2','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-86'),
('49ecb2a6-48ad-49c6-a31c-b5914eb753f6','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-4'),
('49edda64-d16d-48d3-a83c-5b423f03ada3','e8dc151e-1148-4a48-ac2a-d4fb2c761969',88,61,12,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-6'),
('49ede01f-23a4-4171-abfb-197fba265b27','e685dec0-77f5-4777-a591-8b659322473d',0,0,0,0,'2024-10-23 14:11:49.290','2024-11-04 08:40:50.986','745519015-1-4'),
('49f171d3-2b76-4fde-bf93-cb5e23818979','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-44'),
('49f17b64-fcfe-47b5-a783-76a9c6ef482a','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-3-1'),
('49f28ad3-2d7d-40e0-82b3-bae40d9a8f96','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-4'),
('49f69fb8-0a6c-49a9-8f4c-95fd56418a31','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-17'),
('49f9b5a0-f602-4d0c-bcb7-fbe5f2785d85','35df23c7-4cca-4641-b82b-bc6dfa711f1e',96,17,10,0,'2025-08-21 07:15:07.081','2025-09-03 05:43:13.674','31934282-1-2'),
('49fe90ac-9b3b-49d0-a61d-b2f241bed9d4','ab45478c-7fcb-46bc-aebe-fab160a476ef',91,65,240,0,'2025-04-28 07:40:29.966','2025-05-08 07:31:19.558','248359668-1-5'),
('49feb969-3091-4cab-a8f8-379ebad9dcc8','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-23'),
('49feceb4-6a43-45fa-9438-78a7f1624dd1','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-18'),
('4a0027cd-55b1-42ec-be74-be1790969b3d','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-2'),
('4a05d8eb-6b5c-48c3-bf67-715ffccac88f','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-11'),
('4a092eca-0881-45e9-824a-682f971700e8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.838','2025-09-17 16:04:00.285','412746738-1-143'),
('4a0cdf40-0bab-4537-b2b6-db0e3645757d','38dae227-f2c9-475f-bf36-c9eafe154a88',242,75,90,0,'2024-10-23 14:11:52.661','2024-11-04 08:40:37.608','910926193-1-1'),
('4a0d0d45-ff55-4ecd-a367-82942b2482fc','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.955','248618650-1-21'),
('4a0dafa5-b696-4744-9c3f-8b0fbb83d6f0','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-5'),
('4a11319b-30b6-4952-9991-fd1537293e30','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,15,85,0,NULL,NULL,'478893710-2-6'),
('4a13c8e4-0a5c-4948-812f-6859d9c603e6','9774f983-7a2e-428e-a849-ec0cde1c3577',77,50,50,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-2-1'),
('4a142743-3ca9-4522-bc3d-6917205edaca','9e799fd4-8e7b-4434-a919-bd8463baf426',93,167,7,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-2-1'),
('4a16ab53-b32f-4a3e-ae31-19b17d3367e3','e89e7d75-4967-4c63-9f73-981469e531af',120,165,68,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-14'),
('4a182e99-c505-4b4e-bc20-9753bb2ef9ae','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-54'),
('4a18c9a6-9c26-4f8e-b3ec-97cdd0193f6c','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-4'),
('4a21b1e3-db0e-41f0-b379-be24959a8de6','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-23'),
('4a2208db-a13d-4eb4-b686-4dd5364f0535','aca21297-1022-4505-a912-c540f09dcc5c',0,0,0,0,'2024-05-08 18:43:08.066','2024-05-24 07:08:00.705','478598314-1-2'),
('4a2394ea-5e90-4f9b-b951-2f1d601ce5c5','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-4'),
('4a24be4a-6447-4281-abde-01bfd9a57a6a','3535d433-eb38-4879-84b4-dbf8410809cd',56,210,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-23'),
('4a2ee7b5-e00f-4bee-a801-7a5c61a72a53','d83c40d1-4df5-4c97-bc83-28837db95b2b',205,30,10,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.909','916836796-1-22'),
('4a329bba-f163-4ce6-b14d-2581d619d4db','8beca2df-7a47-4d0b-b3bb-89209ce0b5c5',100,68,186,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-2-4'),
('4a3ac44d-a6f5-4822-80d2-4ba1560c121a','c45d0f8f-0a66-465e-bb56-1913286018e1',0,0,0,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-7'),
('4a3b4394-e654-4f1c-b8d7-aaa85b11102b','3e4d9220-ce76-450d-a76c-9787b1f4433f',76,23,109,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-10'),
('4a3d9ea1-6ca7-48a5-ba95-2abe210253f1','6a2d762e-11cd-4fca-b32d-cdba41391e25',207,86,1,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-9'),
('4a40af01-305c-4347-b018-d04026b281c1','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-122'),
('4a41f249-1725-4251-9027-445a806e8f66','d48dec8a-c7d4-4ff4-afc6-cca047d2de32',110,30,208,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-2-2'),
('4a436add-89ff-4c3e-928b-13a24a9e7ce3','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',82,46,85,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-6'),
('4a4b03fd-75c8-4d2b-acfa-1df8c55f357b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-25'),
('4a4b31cd-5f75-47b1-bbd2-b4ff26c25b19','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-5'),
('4a4c0ae2-3eb3-4fef-aa37-02ffe6698fe5','0a8285d0-d3db-4298-8e41-62c5429f150a',198,160,3,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-12'),
('4a4c7244-5818-4997-941b-a2488a5abc34','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-24'),
('4a4ca436-bbaf-460c-9a18-527f04e089ac','028c0bba-d7fb-4cd3-9892-3e3cf79cd778',102,52,77,0,'2025-01-20 11:21:34.362','2025-01-28 15:19:41.507','22134117-1-3'),
('4a4f8823-8360-4b92-9daa-db65cf1d3e2e','2d5f804c-2b06-43d0-bd12-bf140cf8e77e',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.051','982840804-2-1'),
('4a4ff4d2-b80f-4088-9856-0ca222703ce9','05080db1-19d9-4b80-afe8-cefbbc63d170',48,57,252,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-1-2'),
('4a506037-8743-46a4-a802-1336c8dfe3f3','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',105,32,50,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-4'),
('4a50ef01-b798-493f-8a66-61fad03db07a','f607b148-c0d4-4e1b-acec-1387e98b77c7',57,77,103,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-3-2'),
('4a527210-2809-4e6f-9252-f21e097d026a','e178636b-b1d9-4260-aa1b-879946fa7f5d',50,6,215,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-5'),
('4a52ccf4-be8c-47c5-bdbd-fd7aa65ac34c','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-3'),
('4a5320da-2e66-40f9-9f87-12d47b3ad501','6a308121-6cf9-4384-8446-08182bd669fd',228,90,65,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-1'),
('4a579b88-fb04-4a28-983c-7f90b3ee3cc2','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-5'),
('4a585fd5-c13b-4040-b29d-0431c0d9125b','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:48.167','248135683-2-61'),
('4a588e9d-2a89-4ff6-804d-b12f84cdd1c1','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-37'),
('4a58cc65-1860-4577-8cdc-ead16a2390d2','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-11'),
('4a59d916-e9c0-4a11-b0e8-adc1989123d0','c4194c78-4d66-480b-af6f-490c87805b3d',92,92,65,0,'2025-06-21 04:34:00.573','2025-06-28 21:53:36.042','675592889-1-2'),
('4a5c044e-e9eb-4b21-b7ad-5d54b1b0c1bc','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',79,73,105,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-3'),
('4a5d45fb-1fce-42e4-a044-d73f022117f8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-133'),
('4a5d4b72-ef46-4657-ae01-cb90cea10ffd','e9626be5-ddcd-40d5-865d-7018bc1ef9df',75,35,65,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-6'),
('4a5e9cd7-02b1-4aa9-9189-b4abc1c2216f','1086f7ce-fb42-4a68-915f-6eef7c1c791b',110,57,80,0,NULL,NULL,'695763797-1-2'),
('4a60294c-0ee8-4c2a-b4d6-e89b0539f085','cac592fe-4f73-47b3-b374-3028982419d4',75,93,93,0,'2025-05-28 19:09:19.363','2025-06-04 07:24:33.130','644507096-1-3'),
('4a60cab3-26cb-4fc5-96a8-94346489379b','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-6'),
('4a651096-dbc7-47fa-b975-be16b2afa776','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-4'),
('4a6ada80-6178-4b89-b272-37f3441eb7d7','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-25'),
('4a6e17cd-e513-4e6b-a060-3b3d92d285e5','0a8285d0-d3db-4298-8e41-62c5429f150a',88,88,6,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-13'),
('4a6e8a94-c04c-49c0-8880-87ec0f2658e1','0bd42145-fdd8-4793-a5cd-a2e404d37142',100,42,25,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-24'),
('4a6f277b-7021-451a-9c1f-061655bbf677','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-5-4'),
('4a7179f3-8eae-4569-9324-1def681be8bc','af69c5a3-87d3-4548-a650-720b69a4fc69',60,92,12,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-41'),
('4a7571bf-5c28-4a7c-896b-1650d200e04d','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-4'),
('4a77b812-4f6f-453e-ab75-79b83c4bc5a7','b0b9fe77-55c6-4043-8628-b0ea2c868cef',74,100,65,0,'2025-10-20 07:18:18.094',NULL,'6442594-2-5'),
('4a792589-6280-4635-9825-6f05c0ee72bc','546ad3d0-25c2-43dd-9443-e48b8e5b6530',23,42,11,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-21'),
('4a7b876c-3e58-4272-8fab-4d3caff8d1f7','7acb069a-c577-41e2-9204-1e273cb99920',46,180,97,0,'2025-04-28 07:40:18.914','2025-05-10 20:12:44.485','644615727-1-1'),
('4a7d14ca-9782-4765-aecd-ef870e724e42','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-10'),
('4a7e9a3c-4bb4-492c-b417-8499013bb988','e6bddda4-b1df-4be7-bbd5-63cc4b197736',200,160,3,0,NULL,NULL,'42857810-1-5'),
('4a7e9b28-8406-462a-a849-46831fd4e396','9a67f257-16f5-41c1-aefd-0de283426e95',168,98,83,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-3-3'),
('4a7fde61-3d5e-4c52-ac1d-7cc2dd81374c','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-9'),
('4a85d51c-75cc-493f-949b-7715b2bffb45','b9d10e45-08f3-4b6c-adf0-6b6da3ea6318',81,56,110,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.847','437551575-3-3'),
('4a88885e-bb4a-494e-9867-549f7740846e','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-16'),
('4a8a44fe-98e9-4552-a7b6-18a99c371ad5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-114'),
('4a8a7d0b-ce1e-4a16-993d-1fbc41703613','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-6-2'),
('4a8af034-9b56-48ed-9fa2-e4a9a9ad54ac','796f74f1-a123-4566-9122-ee642d251917',39,58,30,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-1-3'),
('4a8eb443-a30a-4bad-8ee3-61bae7857d0b','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-22'),
('4a994dab-4989-4ba7-a996-9002bf9ed666','f57ee80c-97f6-4020-9622-6597a0ebe80a',30,30,40,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-3-2'),
('4a9a160d-6e97-40b8-901d-4215df927e09','b7054ba8-258b-450d-b0bd-4a2c180dd4aa',0,0,0,0,'2025-08-14 10:05:21.404','2025-08-27 05:41:40.984','745332643-1-1'),
('4a9b9be6-8c8a-46d0-a594-5a5c50ccb5cd','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-18'),
('4aa21d90-5587-46d3-aef7-3d0cc9162803','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-135'),
('4aa37acf-0035-4e31-a0ff-245cf7a12005','0d1a3e09-3b1a-4b24-bfd8-967ad3171dee',65,94,173,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-1-1'),
('4aa4e969-9eb0-44af-b3d8-b5fb27d97493','cf16ee0b-0882-4d38-9eca-1e0888101309',80,94,95,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-3'),
('4aa67d9e-d060-406b-a5dc-dd6265d42ad1','fc6979fc-a14e-4764-a9c1-5e69d11573cb',52,52,54,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-7-2'),
('4aa81da5-b35c-4cfb-b3a0-23ccd9e95a29','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-40'),
('4aaf34c7-446a-4775-a0f6-7bc320c9736e','a95b7647-1261-4cf3-9745-195f5db6c429',0,0,0,0,'2025-02-27 16:45:24.198','2025-03-13 09:28:41.587','64418413-1-1'),
('4ab10688-44cb-4019-b66b-f366760a6884','a08b37d8-2558-4e19-9c54-21a2b076a1c1',0,0,0,0,'2025-01-22 09:07:16.541','2025-01-31 20:06:26.727','478112159-1-2'),
('4ab73f13-d91e-45da-9f09-aca0f6cae722','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',39,38,173,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-5-7'),
('4ab98973-d37a-4899-bc0b-3a2c67cc4437','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-7'),
('4aba1c38-5764-40f9-b135-3d3657119c92','c4f62775-21a5-4d48-bba8-0a66600ad101',95,80,70,0,'2025-01-26 10:54:19.504','2025-02-10 14:16:39.412','517521279-1-4'),
('4ac4678f-e903-474f-9d53-38692a879914','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-40'),
('4ac4f9e7-fad9-40a9-ab14-35132560b474','0bb0742e-7cb0-41f9-9c79-ffced4e0a7d5',1,1,1,0,'2025-09-16 16:29:25.293','2025-10-03 06:54:34.215','41268257-1-2'),
('4ac52aba-b56f-4c14-9784-b8eccc0b49bc','c2ca9295-3327-4596-8115-dd1ef2d64d4f',48,185,46,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-3'),
('4ac5506c-cfb9-4ef5-9c6e-17afccdb7f63','abd1d92d-bf39-4c91-8d61-ddc273b6427f',96,200,7,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.736','437917777-1-2'),
('4ac73d48-5e4a-4588-a0ca-8be16ec0627f','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-45'),
('4ac95580-c716-48ec-ac17-c7753f2c3c32','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-22'),
('4aca9339-a992-4f76-b98d-59511cb8643f','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',64,20,93,0,NULL,NULL,'531240111-1-15'),
('4accd149-0142-4176-8180-95355b162470','2fb19f98-3e7f-4224-baf7-2836d72e91ba',109,69,73,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.740','437584936-1-1'),
('4ad4effb-b428-4692-9425-c7941e2df935','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.910','478949141-1-3'),
('4ad7d305-ee3b-4d1b-ba52-95870902dce2','6060763f-09fd-4b23-9d16-0641dc9c453d',40,30,30,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-4'),
('4ad819c0-c66f-4600-999b-cc49d5d82cb3','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-4'),
('4ad9834d-9e8e-41ca-8ff0-eaf744a4a599','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-4'),
('4ad9f03f-5b90-4c31-950f-4084abfccd63','795d2eda-013a-4fd7-b48b-148a85caef26',64,39,107,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-3'),
('4ae81fca-3c68-4906-9946-049f277cb6ed','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-101'),
('4aec42c2-8780-42b0-8e89-e783d201248b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:10.031','248135683-1-129'),
('4aed11f6-e89f-435f-8b56-bbf0c30f4a3d','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-6'),
('4af1048d-dca4-4daf-97c3-1d4ee8cc7099','25f4965a-c481-4fff-bd08-ac93db0c7623',97,65,115,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-3-1'),
('4af62403-49a2-4c06-9d8c-144d13c59068','0009aeec-e682-465c-b701-363a3ef377a6',160,200,3,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-26'),
('4af633ff-4ccb-4597-bb82-ae9c9d470f59','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-19'),
('4af7183e-15ac-4e35-9e4e-3f6e8cfb8103','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-2-80'),
('4afa6239-1572-475c-874c-6fbe19c080ce','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-13'),
('4afad396-a62a-4c50-97d4-aa0561efc0fc','88a9c5d3-54c8-466d-99b5-bc55e66e9b6b',51,51,76,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-3-2'),
('4b007a61-f524-4d2d-99ed-21f6c42df33e','3da17157-28be-4bae-8dcc-745d0e93e591',44,214,10,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-32'),
('4b01a9a5-6a83-4334-b1c5-bf72a9ceb2fa','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-8'),
('4b03f886-ad33-4c98-8020-23e80c15626d','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-48'),
('4b0803f9-ebfd-4209-b267-411f504a6c4a','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',50,60,17,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-4'),
('4b090454-879d-4951-96a2-5beb88e99e8e','8132d4f6-fb04-49dc-9449-05b8d519868b',65,93,157,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.161','428704278-1-2'),
('4b0a2bb1-a47a-429c-bd15-2eefcad892c2','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.555','734955536-1-8'),
('4b0d123e-46bf-40b7-9198-2905409d4e41','85de75ab-a905-42c9-bc61-799745d96971',93,93,65,0,NULL,NULL,'338991013-2-2'),
('4b0dbeb4-c6e2-4602-9a9d-3432f3344cb9','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',69,99,128,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-7'),
('4b0dea4d-8271-4e8b-a37d-dacc4ae2b080','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.713',NULL,'41288739-1-3'),
('4b0f176d-125e-4766-908d-62eff212b43a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-186'),
('4b140364-f0da-4dfd-a732-f0a01adca1a0','d3d5114d-4fd2-41d8-bd26-703a87e70d0e',94,94,64,0,'2025-05-16 16:33:29.348','2025-05-23 14:06:55.651','644145142-1-4'),
('4b1669fe-69c2-410b-a409-38fc3d1be6bd','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-6'),
('4b17383d-3cb4-46c1-98d3-cdee5feab210','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-5'),
('4b17dadd-f3af-4a57-b0bd-f3ab209f45fc','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-37'),
('4b1909f6-edf8-4a52-99d1-30812b1cded4','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.297','2025-02-28 12:03:24.444','570899680-1-66'),
('4b1ffe72-5efa-46f7-93bf-81326dae2c87','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-109'),
('4b240707-152d-4dc7-8e0f-3782d6c23d37','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-237'),
('4b24e390-63ef-4531-a9e7-d35a2f58da91','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-1'),
('4b2518a1-0afa-4bae-8942-16a6c41765b2','0e30b5a4-a5dd-4eff-b745-984f8f856f13',0,0,0,0,'2025-02-13 20:44:15.248','2025-02-23 09:31:26.167','428851627-1-1'),
('4b2f98f7-4812-4170-a792-6915eb5cf3c8','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',73,18,27,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-19'),
('4b2fc99d-eb0c-46ee-9e46-365e967d8d42','536180b1-1c3f-4444-a507-049eec9ae541',26,14,212,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-1-3'),
('4b319a60-51e5-4efa-84ba-7ac0dd5c8506','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-4-2'),
('4b31f6f3-6593-41a9-8d51-7dd1dd55b0ba','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-6'),
('4b34c2e0-77da-402c-a0e6-ab370a2337d1','eb329603-e121-4099-9308-964edd5b6713',39,39,48,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-3'),
('4b368ed0-023b-4e12-a8a1-fbba8936d6b6','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-2'),
('4b36de51-4af5-4f9a-958b-2ec8caa6b8cb','9722a553-1f9e-4d47-9697-a2ef95a51936',105,50,15,0,'2024-12-23 12:00:40.593','2025-01-07 17:27:56.920','428480095-1-2'),
('4b396036-89c9-487e-baf8-d6e6af5ed0cd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,72,80,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-54'),
('4b3a8d7f-ac61-4e25-ab23-dacc054a375e','82ac2d58-053d-41f5-a402-9275c56203f9',207,6,80,0,NULL,NULL,'428172853-4-9'),
('4b3c78a9-c59b-4c26-b368-cc743cca50d8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-51'),
('4b3de83b-7e9b-4dd1-8f78-c22ee312c6c3','735a4cf4-d192-4bae-9d7b-24bd5111fa3f',100,72,53,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.121','644550858-2-1'),
('4b3f30c6-6a9d-4ad6-979b-b4cb4b41cbdf','f95bdefb-9393-4e36-a67f-177a26978136',20,100,200,0,NULL,NULL,'803703209-1-4'),
('4b403aa8-a7ee-4c2a-86ec-2a9dfe3dfd9a','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-58'),
('4b423eac-4c47-4bfc-aedd-2c213b983ac3','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,30,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-24'),
('4b45c2ff-db6a-45ff-87e6-ef8be625a346','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-93'),
('4b4ab22d-059f-4f7c-a885-5c6665fa84bc','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,5,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-14'),
('4b4d1980-46de-4bf1-abcb-5de84af3e467','3f9da6c4-f38e-4cbe-8228-dbd5aa3c016a',0,0,0,0,'2025-04-11 13:41:18.139','2025-04-28 11:58:38.030','221106888-1-2'),
('4b4f2a9f-15b8-4036-b819-6f7cc235ef04','c9aaae09-abdf-47e1-b3a9-2b58eaa5c76a',51,51,76,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-3-1'),
('4b5014c5-b553-49d0-be05-a00ec63c2d4c','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-78'),
('4b588773-4ef4-407e-a1bc-ce27feceda15','542181c6-dabf-4cbd-b756-74abe3440744',80,20,76,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-4'),
('4b588d2e-996f-4273-8b78-5e52c73c0ac4','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.406','412411011-1-6'),
('4b5aa3e4-4b05-4676-8329-54734d7bffb1','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-57'),
('4b5b729b-57c5-4ac8-b18a-795ddba34988','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-38'),
('4b5b9172-d620-4528-9d2b-39c68f88f60d','f5c772b1-e3ce-47e0-849d-c0b9b36c5c02',51,94,8,0,'2025-05-16 16:33:37.958','2025-05-21 18:42:06.781','371539784-2-1'),
('4b5d53ac-76d3-4470-b99a-dcb1e415018d','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-1'),
('4b5f6e93-4bd0-4380-89b1-225f036a6463','9e7c8477-11a2-4674-9f46-871291ca4883',0,0,0,0,'2024-07-20 16:33:52.007','2024-07-25 21:24:27.039','412366586-1-2'),
('4b6549e0-da93-46a9-8ef5-5582a3dc18bf','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-185'),
('4b663c26-1330-4320-beb0-e74923708e00','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.344','478623446-1-2'),
('4b6815a6-d340-4ee9-b6cf-4a3a476b114d','4bd3461b-c38f-4c43-90a6-39aacd24cc83',200,182,29,0,NULL,NULL,'976462703-1-3'),
('4b685036-d01e-4b11-910f-525dfaf48c9b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-55'),
('4b6e165d-7e36-4bd1-8795-89a41d54aade','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-140'),
('4b71d864-614f-42b6-8fd0-c42545426af3','4a5b7db2-dc5e-4f39-972a-37093584e9dc',106,123,8,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.735','449136824-1-15'),
('4b7302aa-cbbb-46d3-9359-1c673ed42a8f','d7c0bdca-3eb4-4f43-837c-c967d7025e76',1,1,1,0,'2025-08-14 10:05:37.119','2025-08-28 18:20:12.204','74597110-1-1'),
('4b7526f6-8b32-40fa-84f0-4e603025601f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-12'),
('4b766acf-8bb8-4ec3-8330-43102f85f43f','aa113c34-9fed-4b54-9803-35911009db78',215,71,93,0,NULL,NULL,'910781464-1-2'),
('4b78aebf-9cf6-4361-8dc0-cba0237048ce','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-17'),
('4b790608-d830-46b3-8840-b96b0f49d999','fa67de56-43a3-49a9-94f2-09d5fa9ec349',100,53,73,0,'2025-10-02 06:45:24.859','2025-10-14 05:37:27.072','428696149-7-2'),
('4b7cdaad-e13c-4195-a55b-8088357f7519','7a0fb46c-8489-4038-968f-f3816bfad167',96,72,59,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-3-2'),
('4b7d5f20-297b-4912-abef-d151f47fb518','f104dcdf-0960-4a69-9dd5-baf21874bf92',57,62,84,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-3-2'),
('4b7da1ab-b555-4649-9614-5cd2fec9a099','f736ebb0-2344-4b12-b853-5ab586355287',51,51,77,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-3'),
('4b7e1b57-82a7-471f-b539-f7c671d050e4','f104dcdf-0960-4a69-9dd5-baf21874bf92',57,62,84,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-3-3'),
('4b8373da-8b2f-412d-ae0f-50f04f0b3af4','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-5'),
('4b83f2d4-d69a-4c05-9016-b9d64637ec57','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-26'),
('4b855af8-e571-46ae-89e9-383ba1ea6b01','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-7'),
('4b85f67d-5c32-4916-808c-ad3256326060','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-6'),
('4b8727cf-9609-4141-b622-5717d507f28c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,78,2,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-56'),
('4b8746f7-84a1-4a62-9a84-298225167b82','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.464','478972804-2-12'),
('4b875bb5-2266-42c2-b267-bc0b434c2c9a','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-4'),
('4b881f17-7011-492a-91e0-123527970d36','22dec2c6-2a18-400c-b218-7284acdd139e',82,57,109,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-2-1'),
('4b8c3734-5dca-4970-9a7c-00fdcaf39a59','b78519ec-4b79-400f-a709-a1f09256d30d',45,5,212,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-26'),
('4b905861-e47f-44da-b250-17beb0eab694','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-19'),
('4b944164-4d72-43fb-8620-4fd871565fae','8dd2c090-c3cb-4f5f-9b42-8f83f29410df',73,54,100,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-2-3'),
('4b94e836-ad55-43e5-a636-d1b772e70327','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-39'),
('4b976da7-3f51-4abd-9045-ef1850e09e90','3535d433-eb38-4879-84b4-dbf8410809cd',13,168,56,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-29'),
('4b9ad1be-d432-44b6-8335-91e4c54a8a2e','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',95,70,70,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-7'),
('4b9c1814-e533-4918-abc3-d6e6be14935f','9114ad70-d53e-4d1f-89c7-30585d0a43de',140,70,10,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-20'),
('4b9d152b-0681-45e4-a0ce-8e6864857d47','e6b76b99-49cf-45cf-8b07-4059aa89b6fd',51,51,76,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-1-1'),
('4b9f0955-b4fb-467c-a7a1-8188b6f6c0f6','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-34'),
('4b9f7636-6da4-470d-86a7-ea4a3464d7f7','afb3cbae-61d4-403d-a04e-25f696176d48',43,69,19,0,'2025-05-14 17:03:48.273','2025-05-24 17:55:00.060','91030681-1-2'),
('4ba26d9c-a49d-4e2e-a28b-1502e0b5958c','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',29,14,212,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-6'),
('4ba33981-f720-47e5-bacd-6bbbe46c5022','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-9'),
('4ba79c93-2c2a-43f6-be28-8b01bffb6cb5','8fc7023c-7fab-44ae-a533-006d835eddb6',79,214,2,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-8'),
('4ba80101-c7ed-49b4-b3a4-8ff428b3d561','c18d1a6b-296a-4640-98e7-38a24909fdf4',45,90,90,0,'2024-11-15 17:06:06.781','2024-12-01 12:28:33.543','982333020-2-1'),
('4ba802a3-7d72-44c7-8878-f5422ad63ace','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-32'),
('4bb119ee-bfb9-4b53-b28b-298f1fe9a278','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',128,55,8,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-57'),
('4bb15b57-2d25-449f-a66d-048cca814dd2','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-15'),
('4bb1f867-215c-41b9-86f3-e3d17b5ae665','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-141'),
('4bb28648-e688-4d0c-b838-ce04b7734321','31ebb578-1bae-477d-b89f-f2d9614f22a8',100,110,83,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-1-4'),
('4bb54f69-23a8-4815-9235-c3f132f15b6c','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-3'),
('4bb6e082-8393-44d7-a3f4-57c38ae2d08a','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-5'),
('4bb75eb4-5647-41d3-bfef-0525a43788c7','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-14'),
('4bb8df27-9c15-4978-b738-71727a9cdfa6','c75addbc-d2eb-41ec-9bc7-5809796551b9',230,100,60,0,'2024-03-16 14:34:21.673','2024-03-26 05:55:37.761','449343471-1-2'),
('4bb943fb-12a4-4005-9289-1775441d4cb9','aca0a822-86a6-4946-95ce-feb7de5fb68e',98,135,65,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-2'),
('4bbb9301-28af-4aec-901f-40416fe70acf','1dff9484-7b74-4dd3-bde2-e304e871a006',104,204,10,0,'2024-08-20 19:22:24.329','2024-09-04 07:29:55.477','449780250-1-2'),
('4bbe5b14-90be-4f0d-ab8f-b836f33ded33','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.068','412586204-1-58'),
('4bbef862-6922-4800-92cc-3af220a44e92','fd5239f9-2c7d-4b5f-8eec-c01af9d7de05',0,0,0,0,'2024-11-12 16:15:43.440','2024-11-23 15:59:26.591','74582542-1-1'),
('4bc0bf53-640c-4b35-a2a6-ea7ea3ee71f9','9e799fd4-8e7b-4434-a919-bd8463baf426',43,43,78,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-2-2'),
('4bc31226-83c1-459e-9cc5-9f55aa9cad6b','6cee1429-9935-4eae-be32-dc630b6d70e8',81,86,5,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-13'),
('4bc32982-f6fe-4ecc-98a5-a9173c760175','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-16'),
('4bc915ae-e05c-46b6-a268-c7bc3aa0b402','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',73,39,13,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-60'),
('4bcd148c-874b-4640-97b7-ae6ec16d519b','7de47ad7-283e-4220-87dd-ec74ad29a390',71,201,27,0,'2025-07-26 07:40:26.443','2025-08-04 06:40:09.551','428761245-2-3'),
('4bcd5d78-5e22-4493-b539-e8cf92268974','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-9'),
('4bcd8c8f-ae87-4a8e-bd0f-166b22bfbdc4','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.476','2024-04-01 07:52:44.957','478339779-1-6'),
('4bd0a061-f9a9-44f6-a1e3-404ec0436c6d','5e5de5b3-4040-4320-b4a4-779e58d5e8b9',49,50,75,0,NULL,NULL,'371903427-1-2'),
('4bd17089-0b84-4b92-8757-89929679a532','6d60b0dc-2aeb-4000-9b2c-154dfd45b045',101,65,94,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-3-1'),
('4bd193ab-873b-4770-a0b2-8607a1cf8725','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.055','74529534-5-8'),
('4bd1a399-55f8-4c61-9f10-5f75fe1f6999','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-21'),
('4bd3b97a-1dbd-4d04-bf46-1594578e8bec','23f3477c-f11c-4298-947d-16df3b5cde8d',91,128,80,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-1-2'),
('4bd7956c-d3e3-4a2c-beda-5911da9dfe12','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-11'),
('4bd7cf41-f63b-4c2a-afed-de78381c7ac8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:11.141','248135683-1-201'),
('4bd843a3-1386-49be-91db-5274f4d312f1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-27'),
('4bdce462-29a0-4d37-8fd9-b632a9348440','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',102,57,71,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-8'),
('4bdda47c-a890-411e-83e7-2936d1ef1282','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-24'),
('4be80175-1216-4b19-a6a4-61edb185c809','c75addbc-d2eb-41ec-9bc7-5809796551b9',70,70,75,0,'2024-03-16 14:34:21.673','2024-03-26 05:55:37.761','449343471-1-3'),
('4bef1224-41c8-4188-b4dd-c1ce4b904176','80510286-f99f-4ac7-8b5a-8391d6a48f0e',0,0,0,0,'2025-02-20 12:15:15.489','2025-02-28 12:03:55.924','478775583-1-2'),
('4bf12f55-8505-4858-bafc-335ce8248759','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.464','478972804-2-13'),
('4bf2259f-f7f6-473a-9dad-e4e54c36939a','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-21'),
('4bf4c2b2-a932-456d-a6f1-3d257271272f','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-6'),
('4bf63a20-0457-4912-8450-33479c7db884','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-1'),
('4bf9793c-52ca-4961-afc6-1c8fa30c7dd0','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-3'),
('4bfb74d5-7fd1-4755-a313-c9a3b827c307','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-5'),
('4bfbc90e-953c-4ab5-9046-3c92883843b1','a5626ae2-9a5a-4401-9095-a368c22814f1',105,53,85,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-5'),
('4bfd2a6c-de1c-4701-b2fe-7c72bcdb876c','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-20'),
('4bfd7ff6-d726-4cd6-97e8-aba0168c463e','e0cc17a2-4392-42a5-a637-de0f1c60c459',115,126,25,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-1'),
('4bfe9e0e-af1f-4dc1-9229-0236e6e87665','0cc39437-8ee1-47ea-87c2-b9fe770c2259',131,102,76,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-3'),
('4bffc9ee-134c-498d-995b-a0a8323578c9','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-3'),
('4c016ae9-6442-487a-9425-194524258b73','940aa57e-21e8-4cea-ad18-82859c22f018',95,95,65,0,'2025-06-11 13:14:38.730','2025-06-18 07:15:26.935','817121694-1-3'),
('4c02b8c3-585e-4069-a513-a48101e82eb5','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-101'),
('4c02c28c-5414-4fe0-b365-553d5acd1b9a','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-30'),
('4c047b8b-1b49-46e2-9ffe-f23510bb021d','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-24'),
('4c053cf1-76f4-40eb-be05-c88ee8dfa14a','c1a31a07-5113-4703-99ff-14d4a90ef1ba',80,80,6,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-6'),
('4c077123-68e1-4997-8ddd-640ada420b38','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',103,103,6,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-3'),
('4c0926fb-232f-4241-b57a-045aea43ed3a','7fa60ad1-fd9a-4550-964c-dbeaa07775b2',93,151,6,0,'2025-03-27 15:06:18.682','2025-04-04 17:24:41.799','613529206-1-3'),
('4c0a3ee4-4e8b-4787-b31a-610574fa3aa1','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,73,65,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-5'),
('4c0ae461-a865-4049-b24f-6df5ee1f7e83','8b4543e8-c3ef-483e-92b5-3623066138c6',125,140,20,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-2'),
('4c1071da-deec-45e2-9b03-f45811576a3d','8e61c899-09db-407c-9715-f3b856731f08',51,51,77,0,'2025-10-25 08:58:56.097',NULL,'486741087-2-2'),
('4c13e028-bc32-406e-9c5e-c169523e039a','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-27'),
('4c140016-2c90-4f72-9759-c68aa3e985e8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-31'),
('4c14a788-38a0-4adf-86f1-10fc541568fd','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-1'),
('4c14e7c2-b53b-44b8-a6d3-da20f93aeb67','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.147','2024-04-03 08:28:16.531','248902824-1-2'),
('4c15216c-ae91-4f10-a9e5-3f59a8a6ccf9','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.604','2024-11-09 18:54:22.601','248720273-1-7'),
('4c1b23e3-6585-4599-b637-79e4a808ad25','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-15'),
('4c1d8f92-5cbc-4c02-9c6c-cf9ac517bab7','220fed8f-f96e-4af5-867b-ac05d11bda6f',180,198,4,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-34'),
('4c20730b-c842-42a1-9943-f8ce39c60732','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-28'),
('4c20fc10-0082-4d4b-88e0-f96eb19539d4','f26bc367-a8ff-4fab-b230-aa56b8cdf135',0,0,0,0,NULL,NULL,'614927187-7-1'),
('4c23858e-8b74-4f7a-ba3a-ce00480cce6c','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-1'),
('4c288cd9-6548-43a2-b6f1-bd867a3ae7e7','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-15'),
('4c2b78aa-c062-4984-99fd-8945931bc219','fd5239f9-2c7d-4b5f-8eec-c01af9d7de05',0,0,0,0,'2024-11-12 16:15:43.440','2024-11-23 15:59:26.591','74582542-1-3'),
('4c2cb160-357c-4cd4-b69f-479f65cf3ae5','81ff8563-ab6e-4bad-a81d-a451ba94d6a6',90,93,70,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-2-2'),
('4c2d5ab9-7f9a-4813-b67e-1106bf0fb3ce','75966646-88d8-46f2-843a-dd1b1be9bed1',0,0,0,0,NULL,NULL,'478912846-1-2'),
('4c2d9671-879e-4164-b091-0dea0656c827','f8042fc5-0122-45dd-abb3-ff92fa197c28',82,118,93,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-2'),
('4c2fc30d-dbbb-4ddf-b371-96a6c7598748','5089704a-e90b-41d3-a4fd-0f97ee26031a',101,101,42,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-1'),
('4c3039ee-d97e-4337-ab4b-026b3d8e0e19','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-2'),
('4c32d299-38bc-45eb-aff2-6eb00cc1dda2','0009aeec-e682-465c-b701-363a3ef377a6',58,52,52,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-27'),
('4c33038a-2d31-4377-ac18-23fb6ce9b4b7','8b9be79c-034c-4491-9980-ad94bae49b22',90,52,10,0,NULL,NULL,'501873907-1-3'),
('4c332aa7-84a8-44f6-8d8f-78f5462c353e','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-42'),
('4c33433a-9e9b-4dfd-b5aa-b52197148cdb','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-9'),
('4c343c16-ae65-42f7-b683-634632bd89e6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-155'),
('4c3ab513-06bb-4afa-8b84-011d49dc64ea','24886f99-c4f1-4e3a-b8ea-1b00c2870261',212,94,65,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-1-3'),
('4c3bb15c-4d72-401a-be34-2567bbeb7d37','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.147','2024-04-03 08:28:16.531','248902824-1-3'),
('4c3c6a80-4129-49c0-939d-a4015d7ae1de','a7202744-dd74-4e29-bc02-78baa3dbbb1e',101,53,73,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-3-1'),
('4c3d1417-38d1-4c1f-bf4e-20a8e3cd38f6','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-41'),
('4c3efc0f-dbc4-4b6e-bf38-1b3ad4ee51ab','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-32'),
('4c4027cc-d2f7-4716-8341-b84af310895c','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.138','598463425-1-2'),
('4c40e725-1d39-4154-8b9d-19aa2766daf1','9e7f1842-f525-4011-9489-abe8fb26944d',0,0,0,0,NULL,NULL,'614941926-8-1'),
('4c44d7a6-3a31-40a6-bb25-82582e5177f4','df1b54b0-5079-4ed1-ab6e-71b44edd62c9',0,0,0,0,NULL,NULL,'598314012-1-3'),
('4c44dd7b-389f-416c-ad6e-aa592e100462','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-6'),
('4c49f085-f3b7-45df-80cc-6d8c4784cfc7','b78519ec-4b79-400f-a709-a1f09256d30d',57,6,209,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-2'),
('4c4bcd99-9428-449a-a707-fac28611a55d','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-19'),
('4c4cfe08-43d6-4aab-ba4d-f4be72aa6787','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-5'),
('4c4d0fac-94a4-4b0e-9bc3-b29ae426a179','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-45'),
('4c4f127f-893f-4279-9643-606799278f21','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-227'),
('4c4f7d06-8ab1-4eca-819a-26433a6125cc','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-11'),
('4c511da9-8bfd-46ba-843b-89e300f2b5d8','19f8d788-357e-4bae-a0cc-714638359cc7',29,43,60,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-4'),
('4c51ac86-40ae-4663-b174-f937e25d7bb9','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-7'),
('4c522796-9aae-4f87-9aa2-661da5c1f99f','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-138'),
('4c5284a0-86df-4d86-85ac-d2e42b66327c','97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6',209,97,7,0,NULL,NULL,'50552381-1-5'),
('4c550b42-c0e3-425c-a9f6-00b9b5f1cd07','2a15168b-dcc4-4e71-964c-d404c90020d3',0,0,0,0,'2025-03-13 12:21:40.980','2025-03-20 18:08:27.302','412555066-1-2'),
('4c5a01cd-9e18-4f28-b8c1-c860dfe2141b','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-3'),
('4c5bf4c5-c810-4aa1-887c-f78428327888','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-16'),
('4c5d9615-2c49-47e0-9cde-72752ed2cc39','6d0390ef-65ce-4154-a607-d67e51938ed2',130,6,180,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-12'),
('4c5f2fcf-9507-471a-9165-c2fed078f803','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-197'),
('4c63430e-4c9f-4c9e-9728-d584d61a2b50','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-51'),
('4c654359-71eb-49f1-bd1f-185908052e73','33483979-937a-4973-b2d2-b22d22f5bb38',0,0,0,0,NULL,NULL,'478183761-3-1'),
('4c6706bc-aaa1-42fb-b836-6094778f8c40','8c3a9387-2db4-400b-95fa-11aef6c745f6',217,70,28,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-6'),
('4c67fb68-8ff4-44ef-9c1d-6a59eecb67c8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-59'),
('4c68afa5-2a2f-4635-b323-86539821bb45','f095d43a-8f6c-44f7-aaab-aade7799f4fb',192,94,59,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-4'),
('4c6927ab-2cc5-4712-8a97-387067f7e7c3','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-2'),
('4c6a7cab-01f1-45af-8ecc-607c90b91e3f','5c678148-a528-4b8b-bd4a-390890b0c04d',51,51,77,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.500','644535273-1-1'),
('4c747336-ffd3-4a1d-8218-ce059cadbfa3','c1d25f90-d493-406d-a430-9b65b4f44c5e',160,200,5,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-5'),
('4c7660c6-818c-4fe2-8f14-274604649b01','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-63'),
('4c76fc77-01af-48f5-8308-994ef28d7f19','e8b1acb9-b5a9-427d-bfb7-a350a1724a71',65,83,80,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-5-1'),
('4c7b15b3-50f2-4498-b1a3-a7096a0a2349','02c1cca2-b7ec-44f3-90c7-3e935d2e255f',77,98,83,0,'2025-02-20 12:15:12.935','2025-02-28 12:04:36.224','478142620-1-1'),
('4c7b1eea-13d2-4c67-8e89-19937d8be905','31efbfbc-2eef-474b-8cd0-b552d5c60b72',205,105,28,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-2'),
('4c8296c7-65cf-48ef-a001-92842f12243a','b7612cfc-aad3-4f87-904b-e50d3b29d0b0',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-3-4'),
('4c8b070d-e343-42cb-af5e-2110cc2a893f','56f86587-7355-4e49-9eb5-727edc1be570',205,88,2,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-4'),
('4c8bb30d-9907-4a70-a6b6-fdcc1b3a6b73','af69c5a3-87d3-4548-a650-720b69a4fc69',161,204,30,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-21'),
('4c90509c-4520-44af-b376-c2fcbbd1382a','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-13'),
('4c932d2b-2f07-4530-9512-7f4a20c0b999','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-6'),
('4c932f57-43b6-42e0-8fef-2862802ecb31','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-28'),
('4c941d63-3a0f-41fb-9f39-844f238b614b','6b40c652-4a63-49bb-8720-5b9279666fd8',90,186,72,0,NULL,NULL,'203797759-1-3'),
('4c977be6-2f43-4211-9620-35e802246665','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-79'),
('4c984a70-bcfd-4c95-9f68-06f58a07456b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-218'),
('4ca2e82c-4712-4dbc-823a-1c4fc987e8fe','d7c129a1-5024-443d-aecd-2d1f690185ad',0,0,0,0,'2024-09-28 16:27:24.146','2024-10-09 08:37:08.450','478504480-1-2'),
('4ca539e1-00a6-4cf5-a0b4-6a9c9023643e','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-7'),
('4ca6f880-64e6-4b52-b011-ed157f8165f0','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-41'),
('4cac740c-9241-49f1-85f5-bffd88fe7187','660a4e89-2eec-45b9-9977-7a81419e94a9',180,94,7,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-1-3'),
('4cacc0bb-09d2-46e5-b54d-ce2f5ac96da0','63f52e46-9697-4d08-a5bf-28ba3fea6518',105,7,241,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.763','371913094-1-4'),
('4cad1ff3-1690-4c85-894e-eeae253924c9','808a4f1b-793f-4a15-808d-00c26a26c166',76,2,193,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-12'),
('4caf72c5-fe0f-4295-bead-2f7aad6cc0cf','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',55,90,200,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-1'),
('4cb035fd-ad88-4e2c-b6e6-608083030ff6','128ee3b5-4128-473f-b460-9fad52390a53',255,100,70,0,'2025-09-11 06:34:40.847','2025-09-20 19:00:31.521','478391312-1-4'),
('4cb3955f-c538-4939-b133-aec52881b224','3da17157-28be-4bae-8dcc-745d0e93e591',46,64,19,0,'2025-04-28 07:40:06.229','2025-05-10 20:12:58.597','428135973-1-21'),
('4cb9078b-c131-466b-b189-d368ebc3251b','3535d433-eb38-4879-84b4-dbf8410809cd',50,55,50,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-3'),
('4cbc2569-3cd7-4e0a-abca-86f4584550f4','6883e1aa-61cc-4415-a95f-c2a814c5b3ce',0,0,0,0,NULL,NULL,'140421350-1-1'),
('4cbd901a-0b0f-4839-9596-f1f58ad7c054','448137c4-0ed8-4aba-90bd-b88619bd7a91',82,82,3,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-1-1'),
('4cbde60a-aff2-4c5c-b995-e95ba8950e39','969a892d-9ae7-432a-bed2-24840d90f040',99,141,70,0,'2025-07-29 12:58:50.480','2025-08-06 17:56:19.273','817395462-1-3'),
('4cc0bc47-e3f6-47d6-84a8-cb41794c04e9','b23cf296-f843-4492-9697-0fd43d657771',83,83,47,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-5'),
('4cc0e295-2944-4c1f-a61e-5b7d86ebd34f','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',112,112,80,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-2'),
('4cc3cf7c-5cc2-4255-bf00-e4720221bfdc','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-11'),
('4cc4067e-198b-4fcc-8915-beb9f3f79d7c','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,85,100,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-3'),
('4cc47590-8a3e-47e0-9111-2dc40495ef4a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-105'),
('4cc50ec0-9667-4e30-8a75-0001d2ab411d','1868aea0-f631-4deb-85f5-8aa25773bef0',53,250,12,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-15'),
('4cc519e1-2ee2-4779-9b89-1502e03a6781','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-125'),
('4cc83291-5dc5-427f-b238-ce30f62826fd','c4364289-7d10-4f97-9732-485a10bd6c67',52,25,222,0,'2025-10-02 06:45:24.859','2025-10-14 05:37:27.071','428696149-6-5'),
('4ccdb2ca-4da6-4c5d-9f53-c064dd635b8e','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-3'),
('4cd2d833-1845-4701-809a-3053900b7619','8132d4f6-fb04-49dc-9449-05b8d519868b',57,90,12,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.161','428704278-1-3'),
('4cd3b1de-34f6-4139-acc3-e7e930896395','6cb8915b-a169-4dff-829a-4bf790dd05cb',65,98,236,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-2-1'),
('4cd4c7ae-ef6e-4665-ba73-4d9c2c8a90bb','8625abf2-719d-4d7f-b206-16948b318b8b',29,61,41,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-7'),
('4cd5fa9e-140d-4225-b645-bb9d499fb91d','80510286-f99f-4ac7-8b5a-8391d6a48f0e',0,0,0,0,'2025-02-20 12:15:15.489','2025-02-28 12:03:55.924','478775583-1-3'),
('4cd6349c-bb90-4cfe-8ad4-9338e043cfb9','36ced38f-51af-4146-9bd7-7f1d6c0f4201',94,138,75,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-2'),
('4cdadc8f-01b3-4960-bfce-a56960e0a237','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:49.514','248135683-2-83'),
('4cdbb33a-f903-4772-b25a-0eba40c02ab8','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:52.546','248284003-1-85'),
('4cdcbfab-3252-423f-86c3-162572bee980','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-55'),
('4cddf80d-f671-496d-8a0c-17a61b68e432','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-68'),
('4cde58cb-82f4-4309-81f8-70184f9b7899','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-62'),
('4cdfdd72-2624-43f3-b53b-6e6c2a6ce91d','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-3'),
('4ce00084-02f8-49ee-90e6-7ab27736dcb2','0ad83dd7-8433-4d6d-90e2-775f048b7855',98,98,68,0,'2025-09-02 14:49:12.103','2025-09-12 19:47:24.575','437762949-1-4'),
('4ce2d162-7ee2-4be1-b2b1-c481fb1295b5','7311f1e0-e2be-43dc-9e40-f94a010e8939',63,33,36,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-15'),
('4ce5b927-9f73-45da-9cd6-212be0dddea3','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',56,20,44,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-8'),
('4ce62266-c53f-4c39-a17d-c33d25c71c1b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-186'),
('4ce9068c-c4d4-40bc-86d6-cd9fad1e1abf','a122ec06-073a-431c-8222-9c5ce64cf0cc',0,0,0,0,'2024-06-08 07:59:59.587','2024-06-22 11:11:03.823','478262226-1-2'),
('4cea5310-fd88-4cbf-a23e-d691c6837912','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-30'),
('4cea660e-23a0-4e27-94e3-d687c5ec60ea','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-3'),
('4ceaff92-93ab-4b5c-b6f6-f4049d0378e4','d9290b00-a023-43ef-94b8-727109b74f6e',0,0,0,0,'2024-11-25 08:28:21.531','2024-12-06 10:08:46.951','858365882-1-2'),
('4ceba6bb-e88d-4811-b09e-feeca5d3aab3','5e418100-d855-48c0-ac4b-19a956b8ef44',70,55,15,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-3'),
('4cec5402-c9bd-425b-bb46-5a0f3d5f3042','6cee1429-9935-4eae-be32-dc630b6d70e8',200,92,30,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-14'),
('4cec8d0c-8c5f-499c-ad61-0db3d7a667a8','e6bddda4-b1df-4be7-bbd5-63cc4b197736',156,15,8,0,NULL,NULL,'42857810-1-6'),
('4ceec48c-95df-49fc-b8ed-454a2e8e7a44','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,85,2,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-15'),
('4ceeeb2f-4a02-4edf-9ef0-d87b904ae25e','fe15fb75-251d-4801-a8ca-caa3d5567cda',247,96,70,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-3-1'),
('4cefdcb3-5dee-45b9-9f43-43c523f6ad02','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-12'),
('4cf4f7b5-d6eb-4a35-a127-0da6005b0615','1146c60f-37ae-4960-9ff1-39c79125711e',66,8,106,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-3'),
('4cf548db-8c06-420b-bae5-c0cd92c8ea77','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-15'),
('4cf58e87-4497-42e2-877f-257a1d290bd3','41a97f13-3141-42bc-acfc-50b87c2de9f2',0,0,0,0,'2025-01-22 09:07:18.972','2025-01-30 10:57:03.702','745302940-1-3'),
('4cf73dc8-cb7e-487b-b93a-bc25b74e7117','4248435a-86e0-4cf9-9c9e-c779eca78500',66,68,57,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-5'),
('4cfabb7f-a63e-478f-814c-3cf6a7f64807','2edecaba-33e1-4db0-93ac-b909e6bae465',96,29,202,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.024','613108463-1-4'),
('4cfc99ba-910b-4d23-b5da-8bfcbedc8eba','a07bcb7a-9868-44db-9691-88f2fc3163bd',55,50,95,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.773','644877864-2-3'),
('4cfddf6b-ee4a-4cfc-879c-173c8d5fca1f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-140'),
('4cfeaccc-db2d-4fc6-a99e-6e18a016a886','5ab2416a-7bef-46c2-b80c-b65bde62a234',67,91,17,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-4'),
('4d00fbc7-82e9-4601-8450-b6d24720b250','151b19d9-92ed-4dd5-aef9-d976e3d09152',87,60,233,0,NULL,NULL,'745436157-1-1'),
('4d038f14-b837-4306-9f8e-d0f7fbe74c6d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-44'),
('4d05558b-2119-49a7-9c06-74676de2658f','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-7'),
('4d06870c-bea3-45d2-af6c-93a8cf360af3','02b555c2-2445-44f3-9074-77fced684cb3',97,90,65,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-1-2'),
('4d077fcc-4c53-473c-afc7-2e3d2701fd15','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-10'),
('4d08b4b1-e768-4e2b-b676-e08604dfa20a','b23cf296-f843-4492-9697-0fd43d657771',33,27,8,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-6'),
('4d090a47-024a-4562-8675-6aeb7a25c2c9','0dc117f7-5e70-4621-87f8-335baf3c4f19',41,55,13,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-11'),
('4d095f52-1e4b-4ca1-8602-8f8fe2ea518b','db7058ef-de6e-444b-b25a-dfa474ba7bcf',60,12,41,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-4'),
('4d095fac-0c1e-428e-b498-7e30ffe7ca1c','702c1aff-1a98-44f0-9dce-efad71572432',77,98,8,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-9'),
('4d0d7ef5-bde4-4823-a91c-7455384aed6f','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-6'),
('4d0f634e-361d-4a4a-8ec4-9396eb13479e','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-31'),
('4d106e1f-497a-4fed-a3f8-9af23af5379b','6f8fd929-0228-4fd9-a182-83fe855d3f5c',10,94,18,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-10'),
('4d188e2b-5862-41e4-9a75-913b5766fb52','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:11.970','248135683-1-249'),
('4d1aab5c-f7fe-4603-8fb1-259b34e2d3de','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-1'),
('4d1c6822-aaea-4566-8c9b-25897a80e10c','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',39,39,46,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-2-5'),
('4d23c856-8355-4b41-afb0-0edd4079efee','ede9284e-0f42-4aa6-a16a-754961f9be43',230,67,92,0,'2024-09-28 16:26:55.303','2024-10-10 16:32:52.344','449197003-1-1'),
('4d248576-26eb-4abc-b873-8dfda487c344','d42ff6bb-7a1f-4711-9eb9-3593301b840b',190,100,65,0,'2024-03-30 10:54:56.698','2024-04-04 12:48:41.646','982592763-1-1'),
('4d26b1ba-2f52-4a6e-874d-bb1b54850665','b6dc1a64-c8c5-44f3-905f-7ce1e98dc6dd',0,0,0,0,'2025-10-20 07:17:53.583','2025-10-27 09:24:33.569','478885112-1-1'),
('4d26ec09-75a4-4846-a8a0-2f65743c3407','1efb8814-1560-4b9c-86ce-125d96c77b86',50,50,79,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-1-2'),
('4d2a3972-06fb-47bb-bcb7-80403703b347','a322199e-9388-4cdc-a475-2497cf269eef',207,31,20,0,NULL,NULL,'501589922-1-8'),
('4d2c6ec0-e5fb-4ebe-8a33-d683d32774cb','56f86587-7355-4e49-9eb5-727edc1be570',68,17,45,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-5'),
('4d2e026b-1263-407a-b0c4-3f171dff5459','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-60'),
('4d2fe805-3be7-474c-a327-b0e4b31869fd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-247'),
('4d353573-cefb-49ac-a511-7be82918c608','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-7'),
('4d36cb43-9d07-4968-b514-1326d491409c','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',120,104,78,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-2'),
('4d3929cc-7f5f-4f25-9060-6caf79004c45','bdc15b51-242d-450f-a47e-a75e07f475a4',100,197,26,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-4'),
('4d3dc575-51a0-4b8f-9259-6ac70e86e4bb','1b54b52d-74d2-4b3c-bd64-5cd7ddf73cec',70,56,101,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-2-1'),
('4d3e7e7f-5548-4770-9ea8-b44986d5c240','0e92c59b-93d0-4308-91ce-3965bb186203',245,97,65,0,NULL,NULL,'428180919-1-19'),
('4d408f35-f6f6-4a90-9c70-21a9b6fa5e68','af69c5a3-87d3-4548-a650-720b69a4fc69',80,75,65,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-6'),
('4d4159d5-bd97-4f12-9522-9aceb515c434','9504c24b-6a37-4522-83ad-b302a5d583a5',105,187,10,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-11'),
('4d445f76-49ea-4786-98a7-8b172334de1c','d94a498b-a4f2-481d-bbd3-eae08b47ab9e',92,101,80,0,'2025-06-11 13:14:40.852','2025-06-17 16:07:08.386','644703173-1-4'),
('4d47fb17-5e88-41c8-b46b-05de591477d7','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-14'),
('4d4a0e2f-875e-477a-8973-fa9953ad273d','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-21'),
('4d4b4f9a-13d0-4cb8-a25c-d657820e9388','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,70,5,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-23'),
('4d4e1528-c078-4618-a15c-15045f3c3ba1','e14c3817-4a53-4e54-8afc-0d865c5d7417',0,0,0,0,'2024-12-01 06:48:26.631','2024-12-07 20:48:01.866','478670997-1-2'),
('4d550681-b2a9-4594-9dde-6587a1984b73','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.148','2025-09-09 18:00:33.386','412315808-1-102'),
('4d5918c5-cf00-45de-b8f4-b3f5a26712d3','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-88'),
('4d5cd8bb-9ec1-49f3-b9c4-5090753e05a7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:12.585','248135683-1-176'),
('4d5e06a4-165d-426a-b129-213bafc50541','2e116f09-c1b8-49f7-994a-7ed5bfd8b502',65,63,85,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-1-3'),
('4d613626-3bbe-46cc-b295-12344018e667','304740fa-6d96-4ea0-a997-094361062796',28,200,100,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-3'),
('4d6161aa-f774-4184-b4ed-f3de79b95d57','2758ecf1-d2f6-40d7-98ab-d6b498789fd9',56,82,100,0,'2025-08-07 16:52:40.666','2025-08-21 08:12:35.793','613601743-1-1'),
('4d619ce8-7935-44a8-ab12-767677375339','42b2ca3a-9313-4b97-901b-3859e34b21e1',81,75,75,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-5'),
('4d637978-dc35-4c01-a602-607c9db8b1c7','6302f68c-26c4-4a31-853e-80b9d1ba59ee',60,25,20,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-13'),
('4d6fb90f-3a83-4fbd-bb67-2628e828c027','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-29'),
('4d74686f-ddbc-4a60-b109-86eba485f9dd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-189'),
('4d7a410f-ccfb-45f5-ab89-97dd0c3d53d1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-63'),
('4d7c2e68-2484-4709-bc7c-888cd9b2f3b1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-5'),
('4d849caf-2920-4cf5-89da-bba495dcc3c1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-59'),
('4d852a62-5e15-4072-b610-2ad47e7d1560','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-21'),
('4d8e2c04-8044-420c-bbdd-04272ff0aa29','546ad3d0-25c2-43dd-9443-e48b8e5b6530',19,189,8,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-12'),
('4d92688f-35e9-4846-a5bb-b90d3af2a69c','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-1'),
('4d942790-6345-49dc-a3c6-d2a69c744835','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-14'),
('4d94f696-ef3a-4fa2-ad49-392840075b1c','a7f92057-6250-4045-97ed-482e9da4c648',232,95,70,0,'2024-12-07 09:45:06.875','2024-12-10 12:36:11.155','501167444-1-2'),
('4d994113-984f-489f-925e-487e0e5c7303','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.898','735793543-1-3'),
('4da041bb-0899-4896-ad9d-5a52744770d1','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-8'),
('4daae8ee-5041-419a-a04b-fcab07161a45','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-40'),
('4dab0092-2ac1-4ad5-90c4-cdeded729ee5','82056d55-1803-4668-82d6-4700bbe5f656',57,85,105,0,NULL,NULL,'786156168-1-2'),
('4dac53d2-bd9a-479a-b151-6c189218d9a2','7b46bf4a-5ce1-4ec9-a494-a8f2948495dc',65,53,234,0,'2024-11-08 17:37:54.790','2024-11-21 12:40:15.277','982446186-1-1'),
('4dac629e-799e-45fe-a473-38ea25cef0ab','a2f34510-a7f6-4abd-ac03-e7c577feca03',44,6,208,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-6'),
('4dac7f75-b651-4925-a885-368d37fd18db','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-29'),
('4dae7eee-d9df-4341-930d-c10e7a4c119b','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.930','2025-08-27 19:35:01.417','531988506-2-6'),
('4db24fc6-3240-401d-9f69-01fe0f7d50cb','79b83287-c40b-4c07-9e9a-53d30ce5cd5d',0,0,0,0,NULL,NULL,'97688342-1-1'),
('4db5c03b-0236-428d-bdcc-63343298936c','e1601d35-cc40-41a5-8e8e-8005a1281654',141,46,17,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-7'),
('4dbafbb8-0193-4660-8b57-ddb798447686','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',90,70,83,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-3'),
('4dbf2f64-db2d-42e9-a8a2-fe7afc8538b6','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-58'),
('4dc28790-45fc-4c20-99ac-0c9420df0be4','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-4'),
('4dc347dd-dbb9-4201-9739-d187d4d41cbb','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-9'),
('4dc400bf-96bc-4c87-aa2c-6f7b1e07f206','ca7ffbfc-f9b9-48bc-8115-521efee8b6ac',0,0,0,0,'2024-05-08 18:43:10.229','2024-05-23 08:25:33.815','745850370-1-2'),
('4dc509b5-137a-49fb-85a4-a0ab246b46f3','db7058ef-de6e-444b-b25a-dfa474ba7bcf',67,70,38,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-5'),
('4dc636b0-00fc-4d7b-83a5-0f6f24bc1972','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-9'),
('4dc6869d-2241-4a67-9629-19c4cb3a8e01','ca4b53fd-638e-41d1-a236-22653e553702',210,95,97,0,'2024-08-21 14:53:28.676','2024-08-30 15:04:37.640','429340012-1-4'),
('4dca3db5-eb05-4372-b0e9-9cd13d4d3081','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-94'),
('4dcc3af0-67bb-4ccc-a8de-886be23424a1','ad0413bc-5657-4c6d-8881-5531603a28a8',93,98,78,0,NULL,NULL,'598891928-2-4'),
('4dcd33fb-cae3-410c-bc83-b3d9fe9b5d74','19c23553-d606-4be4-a362-65912f3179a8',96,84,70,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-5'),
('4dce7571-68b2-4fa3-9b29-66917661a90f','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-4'),
('4dcf159f-035c-4697-86d7-0ffe5a5fd528','9248be40-4180-48bc-9c4e-50a1e7dee4f1',202,102,27,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-6'),
('4dd002f5-10c3-469e-9caf-0679e7529228','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-10'),
('4dd1f316-f705-462a-a399-e53a5d378126','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-7'),
('4dd3ca78-675d-4fd9-a0a7-aa1bb2d5e993','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-125'),
('4dd64a91-2ac3-4d27-a01d-f54a56f425f2','0ad83dd7-8433-4d6d-90e2-775f048b7855',70,185,98,0,'2025-09-02 14:49:12.103','2025-09-12 19:47:24.575','437762949-1-1'),
('4dd71b64-7b0a-4924-b914-e91890666d01','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-5'),
('4dd82bc2-4143-4e85-aa1f-3ec05613e00e','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-14'),
('4dd93b65-eb70-4c5c-a993-4085952c595e','05af1df3-9a36-4be2-8bd1-773d59e1605a',48,100,15,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-5'),
('4ddb734b-22e8-454d-a957-6c0f0091ac3c','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-28'),
('4ddd0012-7998-4772-81fd-7cd52b225dcc','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-21'),
('4de07ffd-827c-4732-a8bb-24e787dee3e3','4738e896-6b15-4ccf-8853-35517f47fbfe',107,106,66,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-3-2'),
('4de34f3a-d1da-4eb7-9943-592baab001eb','337b85ec-7b64-4c15-a2cf-2a99fc9adf1a',114,18,113,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-2-1'),
('4de727a5-3922-4bfa-91f2-5e1191b772d2','2b5fa64e-2c3f-43be-9034-b86d4520cb36',100,28,200,0,'2025-10-25 08:59:21.121',NULL,'478485864-1-2'),
('4de83605-c2fd-4d94-8a27-4ca5e3bd37a3','b960ab31-c1e3-421c-b7b3-012a7ab2d040',75,120,6,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-4-1'),
('4deaa19c-57f8-41da-8802-cdb7f643941e','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.498','2024-05-23 11:42:38.764','223631242-1-27'),
('4dedc67a-1fb3-47d1-9569-5d03e7d7bb99','f1d0b634-e6e0-4b6a-a561-feb245a87cb1',230,100,75,0,'2024-03-31 17:54:54.854','2024-04-17 10:16:37.202','455568872-1-1'),
('4df1695e-730b-47f4-88fb-5383a3a61ffd','702c1aff-1a98-44f0-9dce-efad71572432',49,16,93,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-14'),
('4df1a855-d1b3-42aa-a435-021ed851fa7a','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-6'),
('4df23afb-7c01-40f6-b3de-41b91b78fef0','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-6'),
('4df246ec-542c-4b40-b287-19fb6443fb38','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-61'),
('4df25fa7-2669-40d5-a888-bd53e786a318','b6d04ed2-f29f-400a-ba86-37b36b0830b2',52,8,202,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-6'),
('4df27323-d7b6-42a8-9019-ccbccd54b466','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-69'),
('4df442f0-d81d-49c7-b4a1-9e7e3bddab96','76fbefc2-a286-43f6-ad72-bfd2c3a8078d',242,95,66,0,'2025-02-15 13:31:47.546','2025-02-26 13:43:22.913','982573889-1-1'),
('4df61a6d-3d61-43bc-b0e8-ff3478f9897c','069610fa-51d4-4a81-bd18-ed2e6a93f962',0,0,0,0,'2025-10-08 17:44:05.702','2025-10-20 06:32:09.198','765627791-1-1'),
('4dfbe783-ad11-4957-a238-d97b7aa9dace','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-42'),
('4e023f61-6dfa-4d15-be09-444b07bde211','249d1f3a-1f6d-4acc-ad1e-40e713130f9e',80,95,67,0,NULL,NULL,'59898054-2-4'),
('4e05f5db-02a8-4990-8963-3cbb09c112b6','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-65'),
('4e06ead5-80a9-439c-a100-61e2a1ce55e2','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-98'),
('4e07fbf1-7baa-4284-9d1a-33b0e24a23fc','8590fd4d-4305-4d64-8517-1195110a383f',0,0,0,0,'2024-09-27 14:05:38.303','2024-10-08 07:16:21.657','478516951-1-1'),
('4e07feb0-bb78-4231-9adf-c2e2d15803c9','1dcff831-1200-4173-a805-7e81be8a8855',51,51,77,0,'2025-09-18 15:48:39.770','2025-10-02 06:11:36.369','221724224-1-1'),
('4e084441-cf93-4a7a-9515-b83ab3c8778a','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-10'),
('4e0b7b18-4fe8-4bad-992d-735775a6e6dd','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-123'),
('4e0cf3c0-4911-411f-9447-f1f5e6f482c6','03f3236c-f2ae-4e6e-afe1-dbad801907b2',50,55,77,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-1-3'),
('4e0f0fb5-b052-4396-bb3c-1ea85ed67d8e','e3bf303e-a53b-492e-b877-e5f3df36d63c',110,57,83,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-5-1'),
('4e0feb6d-c1c8-4b1b-acea-a454af8fe58a','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.528','2025-06-04 19:42:41.195','412846685-1-21'),
('4e110001-499d-4e9e-bea3-b245baea462e','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.693','2024-10-30 18:09:49.991','745976194-1-4'),
('4e114223-91f9-47d1-a4c3-654b3e14878b','aa66d5b0-933a-4e09-b2f7-e41da82ef43a',45,80,80,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-4-2'),
('4e1150de-7045-4f3c-83bc-22dd8ada446c','2bd0a09e-a059-491a-8464-25f9d0457185',100,120,69,0,NULL,NULL,'127991361-1-3'),
('4e124d0c-b7f0-4165-8c4d-1664ef047e6a','f9861f37-efe2-4e3a-930c-f694c4e10c6f',12,6,133,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-6'),
('4e133e3f-d35c-40a5-9729-dd242d82c614','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-42'),
('4e14b074-396a-40e4-be8b-d3ceace85606','4f65b611-3598-4b25-a13a-86ec5208990c',75,57,103,0,NULL,NULL,'221600878-1-2'),
('4e14bc72-e10f-440c-996c-dbcad31577fe','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',80,80,80,0,'2024-03-16 14:33:53.476','2024-04-01 07:52:44.957','478339779-1-25'),
('4e1536bb-2b67-4967-a244-669199bac2a4','5ea4b207-b05c-4931-bbd1-648b6933aae5',182,15,5,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-3'),
('4e15b9c7-c8a8-41f4-bf63-36c2fc770371','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-3'),
('4e163d6a-55c0-4c26-9148-d9bb0f5fca2a','4528d00a-d527-462a-82f4-148016c4f77e',93,152,8,0,NULL,NULL,'478892203-2-2'),
('4e1764ee-08ae-4944-bb4d-a08d1cf0ae93','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-6'),
('4e1773be-6648-4638-a811-c5b6a76aad72','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-22'),
('4e17e62f-4838-49d6-bcec-f163bdd274d7','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-42'),
('4e1dc567-3ff0-41a8-b107-a20c16c4e13f','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-19'),
('4e1eb483-49cb-4b28-9294-cda9eca98002','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-105'),
('4e215a04-ce16-4920-9244-f033af967171','702c1aff-1a98-44f0-9dce-efad71572432',91,2,210,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-5'),
('4e25775c-8cee-406e-80ce-e1e7dbbe54ad','565f6966-f194-4d7c-8b20-64502045078d',27,53,73,0,NULL,NULL,'478350685-2-8'),
('4e2a0328-4de8-4861-8cab-c5875f969a6f','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-2'),
('4e2a9e79-88f1-41a2-96bc-210203748ede','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-135'),
('4e2c93c4-869f-4fde-95d3-6d1d00c6037f','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-3'),
('4e2d0975-8a5e-4906-92ed-4f522290ca21','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.444','570899680-1-56'),
('4e2d6c1a-4c23-409b-b7ed-aa11a829c568','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.668','2024-07-30 14:55:02.491','027336842-1-23'),
('4e309174-70f1-4567-91b1-037333377b9d','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-3'),
('4e31074e-810d-4c0e-9acf-a4254bf073ff','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-4'),
('4e344567-ac6b-4734-ac2e-794f6539c636','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-110'),
('4e37c43a-d43f-4948-974d-e7dc8cdcfeae','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-20'),
('4e399150-3135-4b0e-8359-4f9ba05a2f8d','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-12'),
('4e3cccf2-e33e-4459-9706-ab9dca5fe75a','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-5'),
('4e3d2f2d-722d-4c9c-9eb8-cfe02171e58e','bf2fbd97-6d0f-4724-b25e-47e019854e49',52,13,86,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-9'),
('4e3e23b7-2e3c-4813-b6e3-f95750c9c7ce','bff50eb6-35f0-4d46-9229-c709335da145',70,28,50,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-2'),
('4e3ebee6-0e17-4393-9c76-e1ad2398bde8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-25'),
('4e3f1f0b-7609-4688-9fd5-8086d6e6ac38','08f19940-4aad-46bc-bf72-01f66d155c84',200,43,18,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-4'),
('4e3f7f02-f68f-404a-90a4-c30bae5c2123','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-6'),
('4e401e8b-5e1e-4b97-af20-e7a3d43c276a','74c3f7a9-c212-44f0-813c-a9066ac926fa',51,51,77,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.240','221443179-1-1'),
('4e40b9cc-8f72-4e28-93a8-9727b680d74d','24b375d8-76fe-446e-b328-26e7a51cec10',186,100,80,0,'2025-08-27 19:40:22.423','2025-09-03 19:37:53.203','644880161-1-1'),
('4e41811a-6530-432d-937f-aa9fb0ed5552','dc3f18e7-09f7-4f48-a550-413323aa1fa7',220,90,65,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-1'),
('4e431f99-f95f-4bd1-8edb-d62ae83066eb','5362cad6-3ac7-4876-8ddc-d366e2335688',16,32,15,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-5'),
('4e43cb9e-9b51-4249-ba31-710cbbc3a11c','9d62bebe-af83-4e4a-9fb3-8a3ebe7c5907',0,0,0,0,NULL,NULL,'614601595-1-1'),
('4e44243a-a329-4917-b714-f5afbebbd6d9','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-43'),
('4e47e46e-02f5-4942-aeac-45988224344c','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',33,172,10,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-7'),
('4e47e73f-7403-430a-adfe-c0d256ac6530','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-5'),
('4e48d412-f317-481b-86da-3875920859db','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-34'),
('4e4a2652-b037-4334-b214-a888d9cb6482','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-11'),
('4e4af676-2cf5-4ec7-b6f5-d4fc5798de5f','c37afb63-e442-499b-a52e-405f6d0d0685',63,43,65,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-5'),
('4e4b2112-886a-4e60-b302-b1992cdd3716','b406e820-44f0-4685-8e93-c95709e1da71',90,80,75,0,'2025-07-02 12:43:44.589','2025-07-18 05:16:08.058','248352114-1-1'),
('4e4ce6c4-a85a-4677-a81a-0712ec93a549','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-12'),
('4e4d7571-5a85-4e98-a5bc-1f2da0dc681e','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-14'),
('4e4efc3c-cc06-48c2-99bc-29eb6a13c24a','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-80'),
('4e503ee1-40da-4adb-bd04-3fda4bdc6a33','1b77dc1d-c5b1-4ecb-9f88-6aa896bd187f',55,52,5,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-1-1'),
('4e51953b-0adc-4ad9-9b21-fbd80645f80e','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.097','223896175-1-61'),
('4e564017-4ddc-4275-82e1-53bdbf7ce005','f2159b2b-020d-40ff-ae20-f912043ddb26',102,84,58,0,NULL,NULL,'515491042-1-2'),
('4e59b5eb-cb9c-4288-ab04-de8faa5f313a','0cc39437-8ee1-47ea-87c2-b9fe770c2259',54,82,17,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-16'),
('4e5d4c4a-e3e9-43a7-8f22-4bb80eb36cc1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,48,16,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-61'),
('4e5e3f74-8baa-45c4-9c78-06d58bdaec03','f609ca05-b6ae-4dcf-ba26-864d6a39966b',96,170,6,0,'2025-05-28 19:08:51.904','2025-06-06 17:37:19.862','221989961-1-1'),
('4e61b3f0-1287-4402-9ce3-89a93dadf35e','7908530c-18a1-4a83-b5c2-fdea91117bbe',84,74,90,0,'2024-03-31 17:55:03.268','2024-04-15 11:37:34.889','449178440-1-4'),
('4e69971c-7a3a-4491-86b5-2d8f50343fda','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-2'),
('4e6cd207-6985-4e49-9702-10fc3cecf39f','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-15'),
('4e6f4f18-010a-428b-8b68-48a92af5291d','e89e7d75-4967-4c63-9f73-981469e531af',70,160,90,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-15'),
('4e70c35f-d1e8-42f4-a5d6-4cedcfe9a4c5','5d643542-ec96-4ed9-a8e8-2e7aade7f468',82,56,101,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-3-2'),
('4e73d959-bc99-4e0b-8aef-c7a4126a7357','d2deeb01-cbb5-46b5-a5f5-023f8cc21549',30,198,91,0,'2024-12-28 21:42:18.051','2025-01-07 17:28:42.441','614200423-3-1'),
('4e7930c8-a11c-44e1-94a3-aac910676c08','49c326ab-5b3b-49e7-a781-28760709b5be',75,60,60,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-5'),
('4e7935d5-1415-4d37-9eb7-e4a61e26844b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-30'),
('4e7ab801-6ea5-4db9-a278-e92ea4cce264','68112cc1-ad84-4c05-8982-53d277841de8',0,0,0,0,'2025-05-09 18:43:42.169','2025-05-22 15:22:34.432','478278253-1-1'),
('4e7c618c-fb90-4ff9-9e48-6820272859cb','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-66'),
('4e7fc4aa-55c8-48c7-b8fb-b0cd04563fbc','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',34,28,205,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-5'),
('4e819c42-f042-4a37-9f1a-9f7f44f32f0f','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-54'),
('4e866ce6-5148-4276-93bd-f16a374b2115','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-4'),
('4e86e2e3-4199-4357-855f-64b27feeb103','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-39'),
('4e86f3d9-4c8e-433a-96fb-fc5287b3e214','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-39'),
('4e8fd587-70d9-40c9-8a02-44c137ae6cce','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-7'),
('4e910586-fe6e-4d30-b8ea-878313be481f','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-9'),
('4e9113fc-30e7-4a5b-a63d-635bf96c08c7','016dfb52-0431-472b-8ea9-e510a1937e2e',45,36,230,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-1-3'),
('4e968e5c-f866-4f48-a6d1-722d910280ec','27a7bc54-5d32-41d4-9dcf-f63732db8996',85,92,75,0,'2025-07-29 12:58:51.566','2025-08-06 17:56:14.801','817630523-1-2'),
('4e976ea4-bde8-4e23-bae3-3db2cdafd1c1','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-12'),
('4e97db9c-b022-4d61-b3c4-b0f732079f0c','69acd97e-52c0-45ae-adf5-ee013e52776f',50,123,62,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-10'),
('4e9cea22-c807-4ada-80bb-608469dd2aef','e178636b-b1d9-4260-aa1b-879946fa7f5d',50,6,215,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-6'),
('4ea0a7d8-9ed4-492a-9c1a-8cb752bfd138','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:53.719','248284003-1-185'),
('4ea2348e-7adf-4ccf-a755-89e699e9dab6','138edf36-d166-4335-8560-d9873886e31c',26,40,198,0,NULL,NULL,'745189997-1-8'),
('4ea3103d-40c4-41ca-aa53-9fdd0d344605','5615ae9c-cc16-4fb7-83a7-8c7fa5679c81',0,0,0,0,'2024-06-08 08:00:14.381','2024-06-20 20:16:27.107','428160643-1-2'),
('4eab6ec2-8a51-4b34-8d65-0f70f4410821','84872db6-122d-4597-b24b-28898f0b0d23',75,125,5,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-2-2'),
('4eab7181-a273-4935-afe8-ba656459d973','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-1'),
('4eb04b1a-5f3a-4904-bf86-c352bc840f89','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',76,4,133,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-14'),
('4eb12154-71d1-41c5-b41f-2172acf24e7f','2728034d-4fca-460f-994b-48aa204fcba4',8,142,195,0,'2025-10-20 07:17:57.977',NULL,'59878032-2-2'),
('4eb1e645-61b8-4b44-b634-92b994995af8','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-4-6'),
('4eb65c3c-4593-4716-9f01-ac6bee95a2ce','0300de52-b929-49fc-a72c-ccdfd0b7a149',65,85,63,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-1-3'),
('4eb6e91e-5bfc-40d9-8719-58e7b76ab903','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,350,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-15'),
('4eb6f93b-7ad2-4019-9c14-de47c4639482','9b274431-45b4-4bea-9a3a-47a596873335',65,80,75,0,'2025-01-04 10:47:38.056','2025-01-11 07:53:51.697','517512652-1-4'),
('4eb91ca4-fefd-4f2d-999b-82afc7b74a82','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-28'),
('4ebe4373-bb84-49b0-8d2f-6e869f4ac49a','4269f867-0d44-45e3-ba30-724af57726ee',65,95,230,0,'2025-07-19 07:52:10.251','2025-07-28 18:39:55.403','371820680-1-2'),
('4ebfc085-123d-4b61-8d61-cea849ec7803','6098bfd6-9976-47f8-a799-df79295948c1',57,7,218,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-6'),
('4ec80e88-3b69-4a3e-beed-dc735d90e84a','10ad24a8-579a-4070-b518-bffa0ba09e26',11,30,51,0,NULL,NULL,'428905379-3-2'),
('4ecd958e-3115-405f-bcae-31908b33aca8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-59'),
('4ecde7f3-b28f-4944-bfd2-1bc306b79f04','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-16'),
('4ece208a-3dab-4419-8794-dfe35114cf6c','f7806aed-7891-40a2-a934-51885653847d',0,0,0,0,NULL,NULL,'437465500-1-1'),
('4ed09b30-5ced-484b-8063-bc201eed0b0a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:13.969','248135683-1-208'),
('4ed737ff-367b-4010-8d6f-0aebbdda1553','bf2fbd97-6d0f-4724-b25e-47e019854e49',45,17,67,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-10'),
('4ed8a41d-83d1-4ca3-9ca7-be6184da2399','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-3'),
('4ed9b336-66df-45fb-a0bf-981451e30c4d','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',36,26,280,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-6'),
('4edbcace-598a-4494-99cf-c853b31ddc34','b6d04ed2-f29f-400a-ba86-37b36b0830b2',15,54,67,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-7'),
('4edcd340-7acc-47db-a5c1-7ba4d875567b','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-36'),
('4ede3d06-95e2-42d8-bc76-15467c200dbd','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-3'),
('4ee29527-63c3-4591-9cd9-f0728c8ad52d','796fef16-71d1-4946-b8ba-54f687adf598',88,87,44,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-8'),
('4ee7cdfd-ea1e-4e59-8000-fc535f384faf','3bc08a9b-6927-40c1-bcc0-c1c07c409f89',51,51,77,0,NULL,NULL,'221963489-1-1'),
('4eeb3997-ba4a-47f0-8529-4aa1f2355e3b','1d063093-76ef-408d-ac4e-9b14c6ea3828',60,100,100,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-1-4'),
('4eeb4a4e-1d42-49bc-a0bd-30a0d573e3e0','628d9615-d14d-4eba-9099-0780016f2dec',39,40,96,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-1-2'),
('4eee7627-b92b-428b-a274-779ea09bb381','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-73'),
('4eef8add-30ee-4010-953c-d60aa2a64070','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-9'),
('4ef281a1-8b6f-41ae-b4b2-3ec229168a11','143d151b-b558-4cdd-aa6d-149292132a3b',240,80,105,0,'2024-11-25 08:29:07.180','2024-12-03 21:16:46.789','614350153-1-2'),
('4ef2d17f-4852-46d7-803c-87106ac5a07b','6c43de3c-5454-4dc3-8fc2-6cd719969299',62,11,122,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-4'),
('4ef3ebd1-afcb-4115-bb0f-ee43b7550ef7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:56.928','248284003-1-92'),
('4ef504eb-81b4-499a-aa62-d488da7a197a','e1601d35-cc40-41a5-8e8e-8005a1281654',91,107,9,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-8-8'),
('4ef5552f-0a81-48c2-8230-3d5430aaac0c','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-3'),
('4ef6cac2-1821-494c-8a2b-25f94b9ba577','fbfff131-b02f-41a5-967f-a0528f7275f4',100,124,65,0,NULL,NULL,'745197948-2-1'),
('4ef82491-ace6-4fa5-95a4-36d2f61c382c','a455ba66-b417-4781-a6f2-6fce1b8bab23',44,54,24,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-8'),
('4efc59ad-33f8-4768-8771-96bdb51f9156','0602416a-017d-4286-844a-6bc37caa79a8',86,37,51,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-9'),
('4efc5c3b-dcf2-4e8f-8cdd-885d63a27478','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-6'),
('4efc6acf-bfcd-4a81-83e5-63d248912151','9811dbd3-4c24-47b3-8560-c8e0f8db7d41',98,215,70,0,'2025-03-27 15:05:28.240','2025-04-07 17:19:01.106','371696993-1-2'),
('4efe8617-5ec2-408a-a513-7df6a8426f7e','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-40'),
('4f013892-e294-4db9-b594-62e3cac393d1','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-9'),
('4f085b7c-7787-4ef1-91a8-cbb9305ade08','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-2'),
('4f0d400f-2853-43c5-8e53-cf933f8a6cec','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-41'),
('4f0eb442-f5f6-45d9-8260-7563c7f02918','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-12'),
('4f12145e-389a-4107-af4a-08e6178bfb73','53025d92-f019-4f5d-9b69-68a3b09bb7bc',40,60,25,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-7'),
('4f156241-21c5-455f-bacb-4b8741bf1ce2','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-6'),
('4f15afb1-e595-4620-899c-dcb4e4249f0b','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-19'),
('4f1ea6e0-cb53-4bb5-95f8-613bdb198840','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-6'),
('4f1ec82c-cd88-4c96-95c6-7aa65b8679ed','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.569','745508995-1-1'),
('4f233abf-3ec9-4b55-9194-b102bf6e9d03','e6152419-c566-437d-9332-a9c204bd2574',94,96,51,0,'2025-09-16 16:29:42.464','2025-09-30 06:16:14.755','428107185-3-1'),
('4f269b9f-85b3-4dff-8b82-a63db605666e','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-7'),
('4f280017-ed86-4090-9b14-766c7f02ee96','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-10'),
('4f2b4211-27b4-44a3-919c-732b72b475ec','fe542976-fc97-4189-a192-853285ba7bc6',56,105,82,0,NULL,NULL,'478892203-5-1'),
('4f2ba0cc-b934-447f-9ad8-816fcc53babc','e3ad38ad-67b7-48ef-acdc-c2e13831e843',57,83,111,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-7'),
('4f2ee59e-078b-422e-9d7e-826a4def9b9f','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-21'),
('4f31b1d3-cd77-4e7e-902e-f4ced93cfa73','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-9'),
('4f37a815-7135-4fb0-aeb7-f3203209226d','619b2df9-4cdd-4cf2-8195-e3b19d37df5e',57,76,103,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-1-2'),
('4f3cd06b-773e-467d-ae19-9c590fa29625','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-1'),
('4f3e5de1-0c40-4775-bf6f-dd1e57aa4cdd','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-9'),
('4f3f6232-e80c-45f6-9b21-9db899dc3759','ca2466d1-9a83-4f57-8f76-f5ddce302e04',102,20,20,0,'2025-06-27 17:12:11.182','2025-07-14 06:05:05.686','382253716-1-23'),
('4f4013de-e0c1-4497-b202-660f9b876384','bf560fb2-0b91-485a-bf70-cae59896df3f',70,50,10,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-3'),
('4f4057d4-62c9-4f39-a3ed-ac9e51096b9b','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-3'),
('4f43c62a-a8d2-4127-8f53-9ddc1300f33a','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-7'),
('4f45154e-f8cc-44af-97a5-4ee8c14ea2da','d94a498b-a4f2-481d-bbd3-eae08b47ab9e',93,93,80,0,'2025-06-11 13:14:40.852','2025-06-17 16:07:08.386','644703173-1-1'),
('4f46cc7a-86c3-4da7-a89b-ea5908337d37','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',259,13,60,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-6'),
('4f47a4bc-f76b-429c-9247-af1c6d3634eb','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-31'),
('4f4a55a0-30ac-4ae2-97cb-966b31242c7a','7ac04c84-54ce-46a6-9898-1b08419392f9',92,73,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-5'),
('4f4b2746-0d7b-413e-8185-e3a7e1ef3de8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-80'),
('4f4e9825-1031-4bdb-85d8-95d1dba712c8','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-62'),
('4f54a31a-dbf4-4015-8403-f58671ef8c10','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-2'),
('4f569393-f3db-44e8-a152-b9dd339e282d','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-12'),
('4f5aaa96-010b-425d-ab51-26e2866c3c4a','151c5a73-b234-4d81-a36d-d64f6372c980',240,93,63,0,'2024-09-19 18:27:25.422','2024-09-27 16:39:59.826','98222175-1-1'),
('4f5b64b3-0391-425c-9cd9-c1815f8d9b57','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-3'),
('4f5b8509-db86-46da-ac4c-8081c7ae0412','e89e7d75-4967-4c63-9f73-981469e531af',235,63,5,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-16'),
('4f5ddec2-7d2a-4eb1-a8e4-efbbac7d610a','5c487410-f906-4e14-a077-9f060026719e',170,94,55,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.267','703183067-1-4'),
('4f5fbbc0-3f49-4f11-921c-6af141d7d2df','04f841ce-9ab3-4610-9d1d-bdd9d9518084',0,0,0,0,'2025-03-13 12:21:24.843','2025-03-23 16:15:52.675','268615271-1-3'),
('4f63eef6-9cd9-491c-89e1-5425887472f1','8d71467a-cada-42f2-a7b0-5507af419d94',76,56,102,0,NULL,NULL,'59898054-3-2'),
('4f659683-a967-4249-b5cf-37ee01a77658','9283d2d7-9cf2-48e1-a59b-c4fb7ce45934',40,30,30,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-2-2'),
('4f65ea55-db66-4d52-8284-ea69b10ec481','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-11'),
('4f671ff5-04ce-46a5-a1f7-ea6e1317964e','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-16'),
('4f72388b-f02b-4723-8e40-6a323a8bb3d8','51130bdb-f938-4bc4-8f49-46c9b089489c',195,90,55,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-4'),
('4f73c1ab-4da2-406b-b0ef-10799e75f28c','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-9'),
('4f75d5e7-fc92-40ca-9fa7-92696a657917','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-84'),
('4f7974aa-1f47-484d-9aeb-5c0aedb26082','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-3'),
('4f7b8e84-8db0-4263-8976-8b17174c5e1d','927ceb65-f6d3-4068-b0ea-1412cfd0a754',103,103,4,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-1'),
('4f7c8194-3b02-4bbc-a5aa-19409b73657a','84e96d11-c558-4787-b50a-0c3bbea0023f',0,0,0,0,NULL,NULL,'644563405-2-1'),
('4f7e331e-350d-40f8-8255-e0f8c1eb8853','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.548','412107970-1-147'),
('4f8073f9-e854-4d46-b072-96a921190990','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.461','734579794-1-7'),
('4f849712-ff67-4b7d-b117-8a2ea9a2a640','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-4'),
('4f8b574c-e7ed-42cb-8095-31b6504798a3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:15.130','248135683-1-211'),
('4f8cc0f5-fe00-42fe-8f11-88d615cc4440','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-29'),
('4f90c575-7f46-4412-bf6a-2cdddb8d0f9f','6aadeef6-4393-4005-8da5-51ca4e422dfd',85,77,43,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-5'),
('4f9198a9-ad90-4f84-979e-7c2b40751c45','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-55'),
('4f962382-a3b3-4dfe-a367-aafb79dc4eec','a9d9045b-a128-4ab9-b2f2-89d537b5f2af',0,0,0,0,NULL,NULL,'011548428-5-2'),
('4f96b39a-16dd-4494-bfda-b455816703b3','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-16'),
('4f990bab-9992-4c84-a081-7cb3dbf10950','e693d720-cbad-4070-bee6-aee0a70d5855',0,0,0,0,'2024-04-23 10:31:50.950','2024-04-26 17:01:12.070','478526484-1-1'),
('4f9a613c-785d-4234-81e7-9b2652bd2d9e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-74'),
('4f9c7713-eb0e-4bc8-99dc-4649c736e61e','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-17'),
('4f9ead54-02bd-42cd-b3cf-45c7e07a64fa','8fdb1f9f-ce3b-4900-a3ad-0a817d4437e7',96,196,6,0,'2025-01-22 09:07:08.975','2025-02-01 17:38:09.630','221481972-1-3'),
('4fa0413b-b783-4e7a-bc21-6eabed1bc64d','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',32,52,106,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-3'),
('4fabb6f8-bbbc-4a50-82c6-8fa009ba46e9','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-16'),
('4fae9327-4397-4908-9681-7a4a808417a7','3943ece7-1eba-44a5-bbe0-8a7ab3b8fb5f',55,72,101,0,'2025-10-25 08:59:13.605',NULL,'644769101-1-3'),
('4fae9542-4865-4993-a2a1-3a09ec994677','29faaf4b-90ea-4ca7-90cd-3532202e6c83',180,200,33,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-2-1'),
('4fb3de6c-6522-4d2a-acb9-3a8cfa29b289','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-22'),
('4fb5ebe3-2589-4484-8093-d4f1f75620d4','e8b58cc1-698b-4364-ae95-f00b90174c08',80,207,5,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-9'),
('4fb6c3ed-9d57-4954-94b1-967eac637441','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-31'),
('4fb833ce-30eb-423d-a8f0-9b2eb6dea037','8bff430b-7a96-4c68-8e7b-4099c51a0966',106,106,15,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.982','221191139-4-1'),
('4fbc4423-720d-44cf-b85e-08191744f4c6','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-72'),
('4fc0b12d-1b6e-4519-bf74-d448292db41e','08042e48-f41f-42af-a51b-44a9a14cedf4',57,198,30,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-1-1'),
('4fc359d6-a80b-4696-9b26-6ad78f5fbf5b','66f8d34c-0c41-46f5-98bb-500adbb6f636',67,11,10,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-3'),
('4fc3e1b2-641c-4086-8f5a-79384b436ea7','ba4d79b7-2f50-472d-b8a3-175425785005',165,135,15,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-5'),
('4fc890c6-0828-4061-bc18-89b718e6b8f8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:50.146','248135683-2-93'),
('4fc8be3a-fb7c-4b79-84b9-ec86ee9cbab3','d51dfe2b-0b6e-41ff-9db1-89b8770b0e0e',30,50,50,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.476','221746261-3-2'),
('4fcaa9d6-c841-4b54-81ce-dd53986b64a1','c235570b-ba36-480e-b52e-0e61d9b2b427',29,23,9,0,'2025-10-08 17:43:38.512','2025-10-17 06:14:44.871','371365427-1-3'),
('4fcae582-d3f8-4134-9210-3f1611cfb3e5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-149'),
('4fcced7b-525f-4ed4-9fb1-ade6e5aabcdb','2307cead-bc16-4ee2-aff3-8245c44ff256',45,74,98,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-6'),
('4fcd0fed-1937-4ca0-8323-f6dfff850b60','cf5c6387-b585-4f33-a565-829b3e46fd0b',99,240,64,0,'2025-06-27 17:12:29.093','2025-07-04 21:24:47.648','478261120-1-3'),
('4fcfd8e9-6888-4ba8-a497-dc8a2e66f5b6','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-10'),
('4fd070ab-9d09-4588-ab62-9a2f35dacea1','cde2b645-2cf4-4ca6-9d59-ef733217c501',133,55,55,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-8'),
('4fd1068f-b236-4c7c-9a87-82a83e7dd7d4','588b3fc3-de25-4a76-ab64-66572872b773',96,6,196,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-2-1'),
('4fd11914-7865-4c2c-8264-27a77d601f39','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.444','570899680-1-47'),
('4fd27559-0b43-49b0-b3e6-c4dad3025ae5','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-19'),
('4fe2a10b-5f52-4c8c-b4ab-9a5de27c27f2','c45d0f8f-0a66-465e-bb56-1913286018e1',95,197,60,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-1'),
('4fe30443-339f-4e19-a057-3e4bffe5fd88','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',209,65,2,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-13'),
('4fe34a2e-b237-454c-9618-fc4fa6f99665','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-1'),
('4fe6695f-3afd-4b47-b59f-543a7390a612','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-4'),
('4febd974-b261-40f6-93f8-3fdd4500e140','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.956','248618650-1-28'),
('4fed2f7a-75d9-41ea-822b-56b3c3371ec3','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-74'),
('4fed4345-c450-45f3-9526-f51cefb15836','a5e235f7-2218-48fa-9e8a-1680678939f4',102,77,52,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-4-1'),
('4ff0a84d-d1fc-4978-a697-41d2ef8ef877','1ff4ad35-e6a3-4c03-823f-a545fe383b9f',0,0,0,0,'2025-10-08 17:43:57.134','2025-10-17 20:57:51.021','437132386-1-1'),
('4ff34222-79c8-481d-8fda-76a6ed292dca','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:55.216','248284003-1-64'),
('4ff3825e-a60a-4038-b2c3-430853b7bccc','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-7'),
('4ff3fb5a-2c33-4ab9-adbd-7d58b16cee4c','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.869','223337181-1-41'),
('4ff494ff-d4e8-43e2-9349-006d9dbf1327','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-108'),
('4ff76b84-3791-433f-9014-d94de94f9f2c','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-3'),
('4ff81a12-a0be-4743-a4e6-342e8d23e7fc','6f7a6469-dc9b-4d75-903c-d0c86a5d5d92',35,35,205,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-2-5'),
('4ff8e4f9-4010-46d4-b6e8-3e7cc6d434a6','6b455790-a8b4-4d0a-a014-f3587ba053d1',30,225,40,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-2-2'),
('4ff98680-2152-42b9-9e40-46e1d38fa355','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-12'),
('4ffc20da-8579-4fb5-a28b-fd97f945b9b7','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-44'),
('4ffd7133-e095-4255-b00e-fd1d05f5a73c','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',65,20,93,0,NULL,NULL,'531240111-1-17'),
('4ffe3c23-a476-4184-8da3-6765c30ebd96','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-33'),
('4ffefefe-e7fd-4f42-ac30-0966736eeac6','c45d0f8f-0a66-465e-bb56-1913286018e1',90,53,13,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-4'),
('5000101a-6883-46ae-afcb-0cf49e04f79f','29cc8746-fe8c-48c8-bc02-cdff22be5576',93,65,235,0,'2025-08-07 16:52:26.586','2025-08-21 21:29:39.744','982484679-1-1'),
('50005a94-7522-46ad-b3fb-d3530919173f','bdc159b0-60b0-40ff-9092-421620718ec5',77,57,103,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-2-1'),
('50067cb4-b5a1-4855-8036-18b6deed0584','af69c5a3-87d3-4548-a650-720b69a4fc69',47,8,211,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-38'),
('50108ae7-9d9d-48ed-b832-c915ca46bc26','582920d8-061b-4cd8-a756-49a9a3248cb5',110,105,30,0,'2025-06-11 13:14:34.755','2025-06-19 08:55:52.973','644796086-1-1'),
('5012e9f7-b060-4422-adaf-4d3a3d12bf1b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:15.782','248135683-1-68'),
('5014d863-51d2-4acf-ad06-92894842989b','a2ffbe1b-8448-4755-a6d4-cc3e0734db94',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-4-1'),
('501ce8ad-ab08-4a09-b76d-9102bc767513','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-122'),
('501d4e4a-d282-4434-a1cb-8048113befba','72ef762d-fdc9-4544-903d-79a557b03bde',51,51,77,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-1-2'),
('50200211-50d0-4bf7-9aee-46b92229d525','a502c7d4-eee1-4a99-9f38-aab0a3c5c4cb',165,14,44,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.840','478984010-3-2'),
('50210409-c568-42e5-993f-3636c6735379','d5efe2d6-e010-4287-9123-64530913fd5a',230,70,100,0,'2024-10-02 09:26:56.363','2024-10-08 17:09:24.444','501626049-1-1'),
('50225347-1f81-4613-b6f1-b065d86c2cec','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-196'),
('50225842-cbb0-4748-8eae-820c2580aedd','138edf36-d166-4335-8560-d9873886e31c',40,15,31,0,NULL,NULL,'745189997-1-9'),
('5025a26d-941a-40d3-af5f-65f800300d36','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:16.475','248135683-1-186'),
('50261d5f-559a-493c-aab9-c03301a95a9a','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-17'),
('502641e3-4e7a-4ad6-a80c-b59c49730175','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-15'),
('502a6bd0-9625-4718-86be-513b9799c320','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',200,90,13,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-5'),
('502d1d3a-5c38-465d-92e7-700b7eb76d1d','94d4fd15-f663-40b8-8ec9-f93a5cde757c',93,9,66,0,NULL,NULL,'614364554-5-4'),
('5030d40b-e7ed-483d-8c60-ae2f16f1a713','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-14'),
('503170e2-18a2-47bd-8afd-5cb0cb3e3c03','0959e7bf-4a44-4a97-811e-75f64a118eae',32,160,200,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-1-1'),
('50349186-37ec-41e7-8775-67301a76f009','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-2'),
('5039a24e-16fa-481f-9dde-53c2407ba964','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',29,25,18,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-6'),
('503a0cc6-8086-4353-9e2b-a0147396d6a8','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-2'),
('503b1669-d50e-4568-967c-f969ccc42939','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:54.697','248284003-1-117'),
('503f5d41-4219-43cd-9d56-49002dc1b242','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-219'),
('503f924d-664b-4db2-b1b3-68f646284a6e','346c41d0-7f77-45cf-8572-ddf0fc62cce2',99,99,63,0,'2025-10-08 17:44:04.955','2025-10-20 06:32:03.725','644301613-1-2'),
('50436bfa-a876-428e-8c3f-fb7e43761ca4','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',220,48,7,0,NULL,NULL,'644104537-5-4'),
('5046f53b-d02e-4bed-a4d9-ecd0e1b145c0','09ab7c74-e4f1-4f23-9e8b-20d215d2afcd',105,75,230,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.230','478928003-1-2'),
('504899a5-63a3-4e85-a90f-8dd5a273cb9a','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-9'),
('50498a99-b8f3-422c-afe3-10b4f9e08d1c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.549','412107970-1-133'),
('504c4998-804b-49de-9bda-e7a162578814','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',80,80,75,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-5'),
('5052a824-58d5-41b9-8b55-d7d160d30159','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-2'),
('5053dd4a-5cb6-4c2e-9f9b-54b32ab948fa','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.767','248692077-1-39'),
('50584a64-fa7c-4344-a941-1b12b202ded3','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-60'),
('5058574c-2934-4d62-b17b-b8ede95eca48','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-2-4'),
('5059b219-10a8-44fd-80ce-bb20c98c90a4','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-79'),
('505dda89-6483-40f2-81b7-e7c996be97f8','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.935','221850151-2-3'),
('5062a67a-96f6-4786-bd75-d9f62aa53ccd','63f52e46-9697-4d08-a5bf-28ba3fea6518',47,47,44,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.763','371913094-1-1'),
('5064c8de-5061-424b-8b4e-f519416c5430','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.191','2025-03-11 18:02:47.566','221339460-1-39'),
('5065427d-c6d7-4faf-8d78-b53a9d67a530','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-2'),
('5066ff67-0a2b-4da4-8e90-eb210f4b5912','163cdf6f-a5e9-47e6-9ea0-4ea02a32d244',235,96,70,0,'2025-02-09 09:51:36.271','2025-02-18 09:36:12.669','910586114-1-1'),
('5068c321-04ab-4f97-bc27-ecd76cb2b6d3','2499a4db-dc20-496c-b47b-f4ad48cab92a',57,75,100,0,NULL,NULL,'221584314-1-2'),
('506cffd1-b64f-4624-9972-ca2a995b8222','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-3'),
('506cffdc-1ba6-4f27-b8d3-1f8e4abf3b3b','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:56.505','248284003-1-9'),
('506fa02a-5bc8-4bcc-a24c-c6aceb9ff395','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-191'),
('507455c4-3232-46c0-a2ca-c81fa90f8675','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-152'),
('507488e5-053f-4606-8a18-50b756552edd','f0485a78-951c-4f89-bddf-b2003f0bf783',45,45,76,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-25'),
('5074f2e9-47a2-4391-adb0-7a7d8f318114','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-37'),
('507ab498-ca28-43d9-862e-5bd817c3e0d2','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',0,0,0,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-9'),
('507b789e-820e-4dc2-af42-754ebfde6688','70295e99-ecec-4498-943e-fb5826d388c5',91,51,7,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-4'),
('507fa06a-3312-464c-b173-e858a0e2f142','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-4'),
('50816833-c0e0-4fa6-8040-07bf60227a58','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,12,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-62'),
('50847e48-54e5-4695-baee-e9bc4a1a0b8d','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-45'),
('5084a431-749a-49c6-b0f8-e1370907ad88','304740fa-6d96-4ea0-a997-094361062796',101,26,141,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-7'),
('50866086-c5fa-4492-88ce-71c7478816af','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:50.891','248135683-2-40'),
('5089aa94-1428-4eea-8170-9f3a9b17a4df','06962ae8-10d4-4704-8716-7c7238c4de0d',76,102,58,0,NULL,NULL,'808696925-1-2'),
('508a67e3-f86d-49a5-9b84-ba493c85eb83','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',50,214,10,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-29'),
('508c30ac-896d-486a-9d39-91346fab98dc','a5626ae2-9a5a-4401-9095-a368c22814f1',87,87,5,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-6'),
('508c768f-540f-47ba-b9f2-fd9920364e65','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-8'),
('508ca242-f17d-4ae9-a53c-b30b335690f3','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-6'),
('508d23f0-e9f6-4228-8e4b-c4c486be70e7','c7fce8c7-acfd-4c12-8db5-81618a4b211d',165,4,4,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-16'),
('509104cc-ef1f-4e35-a0b2-271f4a720037','3f7d80b7-a6ee-4575-afc4-6503c3eaf696',91,34,205,0,'2025-07-12 09:20:16.837','2025-07-25 10:49:18.047','412383870-3-1'),
('5091b048-863f-4497-85b0-46612bf7e448','abe9db81-20e4-46fc-8891-d8e8f19e9355',57,87,110,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.737','437917777-2-3'),
('50933316-6ff9-47ab-9e75-c5011a09ee3d','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-1'),
('5095e3c3-b975-4137-a361-deb68662235e','c29e76a4-89ba-4143-8fad-01a2910620ee',15,20,75,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-8'),
('509b1ea2-d2de-469c-b52f-e2979ff5bd77','19c6a32c-4384-451a-aaa5-dfc264ab827b',45,16,70,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-7'),
('509cbbfe-41b5-45e4-8943-1ea3a0fbc65b','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-106'),
('50a08d97-1f96-44f8-8695-fd1d83d6bd6a','5a89fae8-525a-4de4-8188-2f4d7c892e74',85,2,216,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-15'),
('50a27736-ffc6-4d66-a318-be6c5a2c0223','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',165,38,38,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-24'),
('50b245ba-f548-4e3d-b423-398f4449a271','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',30,87,204,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-8'),
('50b442ba-2725-4611-8b7f-0a0b7b2dd53c','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-12'),
('50b590d6-ed00-4936-a47f-c1b23f17d468','7a7bde44-ed92-480e-893f-02d0f840ef92',100,75,70,0,'2025-08-22 20:28:42.930','2025-09-03 06:11:37.803','338829299-1-2'),
('50bc065d-e8e6-40b3-84c7-bf4fca25c2d8','a5626ae2-9a5a-4401-9095-a368c22814f1',82,44,15,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-7'),
('50be56f5-72f0-4184-a1d7-6229d2445edf','5a31d59d-2a39-48c6-a450-4b8e78dae401',80,30,201,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-3'),
('50beb88f-ad5b-49ad-a36e-58d597c9076d','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-3-5'),
('50c49e53-142a-4b2a-982d-020808a0e7e2','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-36'),
('50caef0d-0e8b-4897-9215-295fe96ecfbc','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-16'),
('50cc1fd2-80cf-4958-a092-420606ad2771','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,400,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-14'),
('50cd0e0b-d5e5-4aa8-9058-2a433eaa6b19','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',228,12,92,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-14'),
('50cfd29f-2cc5-4235-8c31-f82b72167899','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-62'),
('50d04405-66d6-4afb-ae4d-3f4c06cdbaaf','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-126'),
('50d16a14-c0c1-4d0d-848a-af77e7fac8fa','c86269db-8ff1-458d-8f73-ecc40c58cc09',101,52,77,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-3-2'),
('50d1a66b-7bf3-40d6-802d-54c1ec638ee5','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-3'),
('50d2d15e-0f7e-4f30-b062-2fe7b56777c8','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-11'),
('50d4cd21-9ddb-49ca-b4d6-24ef0857af45','940baea8-49f3-47be-a090-24a0e87edc79',20,50,58,0,'2025-06-27 17:12:14.763','2025-07-09 11:39:56.374','517365072-2-1'),
('50d6ea89-a3e3-421c-8506-a7b924774c3c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-66'),
('50d774f8-77a1-405e-8020-3e01038de252','af69c5a3-87d3-4548-a650-720b69a4fc69',100,53,85,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-13'),
('50d82c5e-f600-4de3-a0d4-3505501fbdbf','5362cad6-3ac7-4876-8ddc-d366e2335688',78,55,111,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-6'),
('50d82d75-6e23-4019-91f2-e4c505a939aa','6dea2881-bc11-4637-b359-47042c58b112',160,100,75,0,'2025-09-10 10:50:13.670','2025-09-16 17:47:38.333','437545074-1-2'),
('50dab5a0-e618-42f9-a98d-d87787d589c2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-137'),
('50db33c1-9bb2-4f49-b71e-50c000dcb084','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-1'),
('50dd15f7-403a-4390-9037-e73b62eb2e36','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-24'),
('50df8862-02ab-46c7-9619-bd255cde8b4e','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-128'),
('50e0cc3a-d16f-42ef-8e26-3239759ee9e8','3c799be3-cf4c-4ca1-9e86-e1a3e476c0da',65,102,88,0,'2025-06-27 17:12:15.671','2025-07-09 11:39:48.701','418120869-1-1'),
('50e4f380-b076-4dea-95a0-9c2b473b9aad','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.567','2024-04-12 17:26:52.449','268188607-1-13'),
('50e7387b-ece3-45c8-bb4f-2a07fc8cce26','f58e6b9f-d5af-48a2-952b-687f4ff843c8',65,220,7,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-8'),
('50e8783a-0877-4fc7-a132-40507572cc5e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-183'),
('50e8c313-41c4-4823-924d-f8bdfa635b0a','70bd6130-456a-467c-bdb8-a08ab705493d',123,75,5,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-1-1'),
('50eb5062-9739-4c61-bc3a-c8ea57663448','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-69'),
('50ebf202-c4a2-49fa-bd91-dc91753d2b32','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.891','412218985-1-13'),
('50f261d5-a921-4648-aea4-6f3303ac9299','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-39'),
('50f410a9-de76-46e1-849a-cb67b323e272','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:17.194','248135683-1-193'),
('50f48129-2926-458c-8bc7-211c179ad5c9','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-57'),
('50f5d5dc-171e-45d7-98d1-d816871bd481','aed57dfb-3aa2-4f6a-849f-51424a18ca86',84,60,96,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-5'),
('50f6a9e2-417d-4e25-bac7-7fc41b0e53ed','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-6'),
('50f71223-08c2-49c7-988d-ac84ea556ca0','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',21,62,100,0,NULL,NULL,'531240111-1-13'),
('50f83f15-92de-4578-950d-50179dbb54e6','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-1'),
('50f8bdc5-840a-4214-b59f-29de280e8333','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-4'),
('50fac5d8-2383-485d-ba60-bcd1ec74df7b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-28'),
('50fb2b3e-eff7-4a26-ab11-5e727580846e','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.956','248618650-1-16'),
('50fcb4f3-213e-4fd0-9e55-2e9e6275add4','b2c78cf5-c58c-4553-bd14-49e83916894c',106,183,10,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-27'),
('50fe1961-31be-4d45-98e4-bd150700153c','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-2'),
('50fefbd7-c181-4c46-956f-dfa6f92d44eb','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-97'),
('510a75de-6634-4f00-b544-8bb5a6f53016','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',22,8,96,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-19'),
('510a96b4-0d44-4822-9661-418a62483d00','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-163'),
('510b2de6-7c05-4db9-93ca-abbdf01ded07','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',43,16,66,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-5'),
('510ee486-3401-448e-a68e-b260ac1c13a9','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-18'),
('5116cd03-c0ae-426e-b3dd-bd9764cd5470','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-6'),
('511cf121-ece8-4143-bbf4-8eeea16f0156','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-124'),
('511d43b3-700f-45cc-9a62-e7db323748c7','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-33'),
('511d8b05-9b17-433e-af24-a7838c0b151b','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-4'),
('512001df-7539-416b-b8e7-b39f72f23b4e','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-5'),
('51224e1e-ed9a-4a76-81d2-f3b6485a43cf','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-132'),
('5126f984-240c-41a4-9b4d-628633675be8','19c23553-d606-4be4-a362-65912f3179a8',30,20,37,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-6'),
('512b5fff-ad91-45a6-a2aa-154210d62582','f422a47e-9cdd-4fc1-aba9-00af56f758ff',230,92,65,0,'2025-01-06 13:08:19.026','2025-01-10 09:45:24.615','112609358-1-1'),
('512b819c-9765-470c-b18f-86e04a45be97','0a4d7445-7625-47e2-9f91-e881dc6494ce',100,170,75,0,'2025-10-22 13:06:52.544',NULL,'786146097-2-1'),
('512bba93-4778-4020-be38-ae2c07e9ba91','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-3'),
('512c1f14-effc-4843-8e79-b8c762a9a591','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-17'),
('512c6462-093e-4889-9684-0237f7a9831c','71452714-b180-4e00-b2a8-b6fefa0c5650',163,95,6,0,'2025-02-09 09:51:58.172','2025-02-15 05:22:04.063','268145141-1-4'),
('51300a07-de5a-4df1-8b87-da9fcf733926','53025d92-f019-4f5d-9b69-68a3b09bb7bc',70,43,25,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-8'),
('513595c6-d289-4a12-bfbf-38796c5ff1a2','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-6'),
('51385dbe-652b-406e-abb0-a4fdb81a2597','23420b54-51eb-47d3-b1c2-ad839bf9938d',160,200,33,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.264','478164511-1-1'),
('513865f8-19fa-43ff-b5ba-7a5714c13d03','dd6fdf61-e650-45bb-980e-83d576bfac38',90,60,25,0,'2024-03-23 08:36:28.333',NULL,'982425071-1-2'),
('51388274-1d34-4086-b8e0-f3eb96937a8f','0683aa5c-fafa-459b-928d-eae1729e635e',105,70,230,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-3'),
('51394afa-04ee-4c4d-b004-32eee1ba8c75','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-117'),
('5139ad7c-e695-4924-99c4-c4eb45f663da','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-4'),
('513e7909-0f02-47a7-811d-592d1abd67c1','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.840','428752676-6-7'),
('513ed263-fd27-46f4-9825-315c46afdb81','32bf5597-f8fa-4d97-9486-383228c7229f',95,75,80,0,'2025-09-16 16:29:42.463','2025-09-30 06:16:14.755','428107185-2-3'),
('5140dce3-6b9d-4c0a-8b54-c7d88811b674','22cdb203-e189-4693-adf6-5b2569edda9b',70,65,53,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-5'),
('51479d1e-4f94-446c-aaff-547a99eaab77','a70d73cb-094f-44bb-ac0c-1d78220508f9',1,1,1,0,'2025-07-26 07:40:24.891','2025-08-04 06:40:14.751','614529512-1-1'),
('5147aeb9-bb02-4556-81b8-31d92d1c7f47','6a308121-6cf9-4384-8446-08182bd669fd',75,70,75,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-8'),
('51497bd4-97aa-475b-882d-5b05a382dfbd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-45'),
('51530eb7-968f-4547-a2bd-aea46d4d102a','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-55'),
('51551f67-3336-491b-9ca2-9778fa4739a8','e54055a2-3c9c-4738-a808-7a4a31877ef1',56,60,42,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-14'),
('51587e75-84a4-4215-9129-230709278273','1a865eff-de9e-4c81-8ad4-8c96ddfa18ff',104,119,70,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.302','371194748-1-1'),
('51595299-a19b-49a1-9f01-0cb04695482c','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-5'),
('515b9489-eaa9-4854-b298-261077576437','66f8d34c-0c41-46f5-98bb-500adbb6f636',44,4,211,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-4'),
('515be1d7-a7ee-4b90-95fb-31767c5e418b','1146c60f-37ae-4960-9ff1-39c79125711e',54,105,25,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-4'),
('516129f5-c63c-464e-af05-299c0775e9df','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.549','412107970-1-25'),
('516431b2-017f-42c5-adc7-fc3d35899fba','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-23'),
('5164b30c-bdd8-45ea-9448-e4d50efe4fc8','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-7'),
('516729a5-fb83-4b6b-9a32-b5754b5c3508','70295e99-ecec-4498-943e-fb5826d388c5',60,62,27,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-5'),
('516744f8-cb34-402c-b06a-9d2046cd0478','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-15'),
('5167826f-769e-43e1-b12e-33ae26a1f35f','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-3'),
('5169383a-049c-4c55-97aa-50cb83610529','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-3'),
('51694f76-d3e6-42ab-b807-60c6fd16639a','24e0b87c-b953-4c9a-b3d6-0e79a700836b',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-1-1'),
('5172cd9d-dae8-4224-8345-774682c6c8ea','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.761','2024-09-12 10:55:08.189','163961995-1-47'),
('51772065-5b24-4b57-bb6e-04b66e77c662','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-9'),
('517dbf2b-75cd-475b-a813-179a90d72893','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-17'),
('517debbf-d07f-45e9-a65b-f14c302b2108','71b1f991-8cca-4d20-9909-8155787417b3',43,43,78,0,'2025-10-22 13:06:51.724',NULL,'371290223-1-1'),
('517df64c-d99c-494a-96b3-3f5276cba292','4f47afc1-f513-4c2c-9163-77830c49042a',226,85,90,0,'2024-10-17 13:41:08.940','2024-10-23 13:04:28.384','910943161-1-1'),
('517e5820-f5bf-4c5f-9347-ca6504825202','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-6'),
('517f4c82-227a-45d4-9540-2228ebd01eed','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.291','2025-03-11 18:02:05.549','412107970-1-142'),
('517fda41-8fcd-42b3-9d0b-3d30ec408d83','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-3'),
('51834a0c-b8cf-4c5a-8f5f-a42fbee1cdd3','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-8'),
('518574b7-36f7-4cd6-aa2b-b5012ebfeb5f','73070a82-3710-4964-a5e9-55737d39af81',80,80,3,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-4-5'),
('5185da0e-b902-464b-b599-49564c48191b','6d0390ef-65ce-4154-a607-d67e51938ed2',72,122,9,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-27'),
('5185e349-5b70-4415-ad0a-e2f0a26918cd','53025d92-f019-4f5d-9b69-68a3b09bb7bc',67,33,46,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-2-9'),
('5189d866-3fc7-4947-ae6f-66ca5635be20','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-70'),
('518d7025-16af-419c-befc-145578683dbe','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-2'),
('519237b5-ba0f-45b9-8447-5d7bbd9ce328','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-2-3'),
('51928ba0-725d-425c-b57b-08c5ef3d2c44','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:51.632','248135683-2-88'),
('51956744-1382-4ed8-956b-32b94fdd4cef','aca0a822-86a6-4946-95ce-feb7de5fb68e',97,83,65,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-3'),
('519812e0-9221-47ab-af2f-6054828dbe6c','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-8'),
('51a022bd-5ba8-44d6-bd68-d4bb5da68315','fb366cd4-897a-4e3e-8964-29b80d563ca4',100,70,85,0,NULL,NULL,'613362697-6-1'),
('51a36065-f877-4c04-bb50-0d29a9857855','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-85'),
('51a9944d-13a3-4253-a976-189a87d02081','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-7'),
('51ab8dda-3064-4765-a2ee-9f724dd32f85','7311f1e0-e2be-43dc-9e40-f94a010e8939',203,31,8,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-16'),
('51aca52e-5dd7-446e-842b-65a185359e55','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.615','2025-02-24 17:24:36.114','98222656-1-17'),
('51acf2c4-0a0a-4b53-b794-9447fc1b1fb7','450834d7-78a2-4ef2-8bf7-ea6da90710d6',96,158,16,0,'2025-08-15 15:03:00.925','2025-08-21 16:37:01.898','437427529-1-1'),
('51ae3ebf-54b2-4dd9-b18e-3a0c30d71ff5','b5756566-2b94-49c1-8c6a-3886ce361461',41,52,17,0,'2025-10-22 13:06:56.699',NULL,'910152598-1-1'),
('51b1a865-0a71-4a04-8152-c75f51ec0b65','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-22'),
('51b33b37-3b94-404b-acb9-4dba79f0b59c','12470cb7-9c6d-4996-a8fe-651fcfada915',0,0,0,0,'2025-06-26 14:18:33.878','2025-06-24 13:42:34.035','478428380-1-2'),
('51b4399e-53a9-44cb-803c-1cba383a0719','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-26'),
('51b506d2-4364-4c1b-a19e-9cef8ada2586','bfde6081-8376-4df9-8f57-774c35ed9954',105,125,70,0,'2025-10-22 13:06:44.530',NULL,'959658567-2-1'),
('51b5faac-824c-41a7-9ecd-50c3f0fec204','5c487410-f906-4e14-a077-9f060026719e',94,28,25,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.268','703183067-1-5'),
('51bcd6de-4bf4-4a43-bf0d-41eee7f280ab','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-18'),
('51bd9a3f-b011-4fa4-9821-758c284490e6','808a4f1b-793f-4a15-808d-00c26a26c166',248,118,18,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-13'),
('51bf8152-f780-478a-a584-03032d4fca8f','543dfe18-75e0-4198-9d24-c6d0458898e8',105,194,60,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-2'),
('51c118b2-72c7-48b8-a031-6e3e6b5de746','c6fb119a-d102-44f8-a309-82df366c405f',245,68,113,0,NULL,NULL,'478739679-4-1'),
('51c974ea-9acd-4270-b302-3dbf0edee774','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.461','734579794-1-8'),
('51d7de4e-2329-4bc1-a408-e5d552f23e01','7d07052e-d89f-4ebc-be55-2d8ac162c8cd',96,82,78,0,'2025-08-07 16:52:45.587','2025-08-20 12:01:53.270','598102662-1-1'),
('51d91155-411b-4e9e-bcb8-d8c1d523dd0a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:17.844','248135683-1-197'),
('51d93e49-0a14-4b50-8c25-f05c1a0d3e8a','c5027968-9a23-442a-bebc-9b8745408960',116,137,2,0,NULL,NULL,'982759064-4-2'),
('51d9b3a2-044b-471f-9914-72c07c90cbce','665094cd-94cc-4442-bbb3-4b6f02758361',60,85,15,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-1-1'),
('51df4705-833d-4cb3-a2ac-7cbe9ac8658f','f449fb69-70f5-4f97-8883-00b38025bca8',57,75,104,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-5-2'),
('51dfb63c-6d2c-4b63-b582-74545ed3a1a8','bbfd2ee8-8b41-4dad-9b78-8a62e2679cea',60,61,90,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-2-2'),
('51e45108-6b7f-4f96-82d1-c2d4de20685f','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-4'),
('51e631de-4cb9-467d-83b9-a53ef99f72cc','9950fe74-2437-4188-83e7-37a1e09fa6f7',80,206,2,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-5'),
('51eaf10f-77d5-43c0-9656-09da0cadd2fc','0d69f338-8121-4b73-b0a1-b8987dddf93d',1600,100,100,0,'2024-03-14 13:50:39.719','2024-03-22 10:16:54.919','412157690-1-1'),
('51eca5ca-c691-4721-aac6-64a2626828ba','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-39'),
('51ee7a6f-aa23-4cac-b63c-3c0d6b80244f','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-5'),
('51f22c5f-1836-485d-b370-398075702775','55155cc4-3303-4c8d-8138-cd049d9c0cad',108,10,216,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-2'),
('51f260fe-abed-425b-b42b-0468fdc3ce03','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-8'),
('51f3e679-28d5-47c6-84b3-b7baa440c1e0','57127d94-6fac-4e1c-ac7e-d9e37f789e3f',47,5,223,0,NULL,NULL,'614364554-1-1'),
('51f47ae0-bde5-4c47-971d-cffec76324b0','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-3'),
('51f4ba39-6c52-4f5a-b3f7-8f17dcf417ea','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-46'),
('51f7f849-b061-4831-8888-bea9f408cd31','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.909','2025-10-05 12:15:06.058','223441694-1-12'),
('51f9c515-b21c-4174-9dac-0058acc4ae37','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-4'),
('51fbced2-8836-421f-8c01-2cab25a06a6f','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-39'),
('51fc4217-d7e9-47ee-95e2-e07a893ecc48','5879d280-4095-4ae4-84b6-a7f59f7425e2',31,14,3,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-2-2'),
('51fc935e-e413-40d9-a55e-74dcb26422c1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-175'),
('51feefea-0f72-4ae7-a411-382d5a68f300','5dcc9ef8-8356-40ee-8dea-7d614cc219e2',56,20,15,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-2-2'),
('5200d8c3-adb4-4929-b7e9-02ff54b46826','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.767','248692077-1-1'),
('5207a8dd-ce3d-40c6-b4e5-1fc4107ba46a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-6'),
('520a1030-95cb-4076-954e-49a624452e5f','f8042fc5-0122-45dd-abb3-ff92fa197c28',102,74,80,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-3'),
('520cdfaf-6da1-4700-adf4-5afaf51637e2','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-58'),
('520e833f-7270-42ff-9ec5-80cdd35b49b2','bedd9b20-bb73-4dc2-b799-5a1a172888ca',100,90,70,0,'2025-01-11 15:20:27.109','2025-01-17 11:00:29.595','501588943-1-2'),
('520e985b-012e-47a2-943b-479727f52b27','03f3236c-f2ae-4e6e-afe1-dbad801907b2',55,9,208,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-1-4'),
('52187cda-012e-41e0-9133-eba4c688fe01','852cb596-91b3-432f-8aee-ec6a804f3a01',165,100,10,0,'2024-11-12 16:16:06.142','2024-11-21 19:12:27.211','952470417-1-4'),
('521956e8-b050-4c45-a741-da773478b358','ce35ed4e-10dd-496c-a133-4314817d51d0',110,227,10,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-3-1'),
('521a7591-267e-4d6e-8794-aa8d8e32453e','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-10'),
('521a855b-e9bd-4e72-b9fd-b805b62c06e6','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',93,93,5,0,'2024-10-02 09:26:32.554','2024-10-10 16:31:34.970','428736949-1-4'),
('521fa170-0ddd-4da1-9ac3-ed2df09ff82b','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-104'),
('522421f7-f081-459b-acce-68cfccdb0a1a','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.898','2025-08-08 12:23:53.636','412678735-1-11'),
('52267d41-80f2-446b-9d5c-a56b5cfa4427','c1d9e685-3827-4e27-bd48-754f9c260fa1',65,162,94,0,'2025-10-06 07:08:43.135','2025-10-13 06:40:04.416','675965194-1-3'),
('5229160b-34e1-48a7-b0b1-35b9baf18af8','df476668-960e-4ca2-9fb7-82b6c48ec5bd',80,240,95,0,'2025-08-14 08:21:40.648','2025-08-21 08:14:02.400','982720250-2-1'),
('52291ac4-bdfe-4830-9ab7-1d95bce498f9','8778c3f3-967c-4a24-9adb-37b4330b383a',123,85,8,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-2-3'),
('522bf006-d482-4d6e-a676-27f3745ac9ea','cb031967-3b3d-4215-88a7-f64c5744b388',51,51,77,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.774','644877864-3-1'),
('52303747-2135-43cf-bfd5-00d9c9c1dba0','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.339','2024-03-29 17:57:55.461','734579794-1-9'),
('5231fa2a-dc9f-402e-b656-c35d28c08c5a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:19.019','248135683-1-79'),
('5232056c-b569-4109-9287-0d1ed811a10b','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:57.726','248284003-1-67'),
('5233beb2-d7b4-4114-9a66-e731186020d1','a2f34510-a7f6-4abd-ac03-e7c577feca03',10,67,11,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-7'),
('5234a159-b1ea-47db-8125-c9d24a4f8cb8','9504c24b-6a37-4522-83ad-b302a5d583a5',63,6,220,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-12'),
('52353742-3882-4e80-a572-bcfcac743a5f','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-1'),
('52371249-f2d2-4c50-851e-c5abcc48719d','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-29'),
('52381221-35d2-4423-aff0-f577388b3b6e','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-17'),
('52386daf-7063-457d-b7e7-3c6009e7daf3','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-3'),
('5238793d-f092-4f2e-9f57-6d8642479143','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.531','248902824-1-4'),
('52397fd0-9e93-467a-b63e-bc389a10709a','e4ac663b-0089-49de-bec8-f0e4c8fde7a4',43,43,77,0,'2025-10-06 07:10:27.538','2025-10-17 06:13:01.459','371865484-1-2'),
('523a0beb-b7b5-4d4f-b26b-eec0d1a0f9be','7abfcf71-6dec-4a36-866d-9fa7ec174baf',0,0,0,0,'2025-03-06 10:31:58.252','2025-03-17 14:53:44.076','745206126-1-2'),
('523cfe1a-bf4a-4f15-ad60-580161bddf5b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-106'),
('523d2cd8-8f50-491d-a234-aadfbb84e0f1','995dfcaf-53b8-4dad-ac21-6f4ba521c6d6',60,75,103,0,'2025-10-25 08:59:25.499',NULL,'478544570-2-2'),
('52437513-049b-46ef-bf4f-2e6162b17a34','1868aea0-f631-4deb-85f5-8aa25773bef0',210,51,8,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-17'),
('52456191-bc22-429d-9e21-41856b90245a','73499d6d-d2d9-4c76-9e89-9c775fadaada',113,108,72,0,'2025-03-27 08:02:49.277','2025-04-08 15:37:20.028','81723596-1-5'),
('5249af98-79fa-44c9-8c71-86f76ec665f5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-10'),
('524ac1d1-0ffd-4506-a9a8-65e002e31663','1219ae2a-bb83-4e56-868e-8398ae2fe1f8',65,165,120,0,'2025-08-27 19:39:59.902','2025-09-06 07:19:18.863','371413703-1-3'),
('524bfff9-e584-4671-843c-4ae982913be5','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-44'),
('5253cd93-fa70-4ab9-8511-572edba64835','852cb596-91b3-432f-8aee-ec6a804f3a01',89,50,42,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-8'),
('52562931-c4b2-4ba9-a63b-a2cb33ccfe3b','56f86587-7355-4e49-9eb5-727edc1be570',0,0,0,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-19'),
('52563080-a231-495c-b9ae-c33569bf2514','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-41'),
('5256b76f-c7a5-41be-bc8c-989346ce0bf5','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-12'),
('5256e8f3-87d5-49fe-a0d9-7aa2e2589d9c','2777fe15-f59b-4ad7-ad0f-3b140f36580d',55,77,102,0,NULL,NULL,'598604443-1-3'),
('525bec32-0933-4423-abca-4df7dabe040c','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',35,155,9,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-5'),
('525f0ad6-94fe-4d89-8970-58ddb2c2fefb','1a9c727e-5c65-4a99-b25e-b0d3ffdd2826',93,114,65,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-1-2'),
('525f82b8-2190-4cd3-9ed4-4666c39c9885','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-52'),
('525fa708-4ed9-4fc9-8022-d4be615aa85b','743ccdda-3eee-4f87-8835-f0f9348b6b7e',232,95,70,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.916','501874784-1-2'),
('52615dd2-b9da-4691-a1ba-41e24f137877','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-4'),
('5263da4c-ec1b-4a23-a97d-6768f3d56891','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',50,10,130,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-68'),
('52644bf6-5d57-41b4-a2bf-24dd4fd051f1','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-16'),
('526b061e-2d7a-4b89-b887-a8e44f8aafb6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-151'),
('526e596c-85ee-49b3-8c31-62165a939528','5ecc2bd3-1fb1-4c1b-9901-f80f9be07662',85,53,105,0,NULL,NULL,'47816855-1-2'),
('52744a03-8847-46aa-b6dd-297ad042c7c2','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-5'),
('527698db-94f2-408b-80da-395a66987600','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',78,120,120,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-3'),
('527a1547-55ec-4904-93dd-88dfad8b3245','57640199-0b9f-48e0-b21b-62525f5d75f8',51,105,210,0,'2025-09-16 16:29:37.463','2025-09-30 06:16:22.259','644422105-2-1'),
('527b3450-981c-4e67-995c-3e6bfdc2bcef','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-34'),
('5283418b-a88e-44a0-9371-477205de89b8','21434274-7eaf-4dfd-8965-01f28214476b',51,51,76,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.582','221417545-1-1'),
('52848a7e-6271-437a-99e4-766beafb54b1','54615f37-dc23-4fec-a058-63bc43066248',51,51,77,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-2-3'),
('5285fb9f-8036-46ab-b487-76ba4d2adf07','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',80,60,20,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-4'),
('5286c5f2-0f4b-49f6-b56f-66c1b2ed5fba','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-66'),
('52890bfd-372e-43a5-b048-a11a8c7923e4','b7fbd54c-bcc0-4613-9901-d06327048472',53,10,243,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-13'),
('528ea38e-bf44-49c4-8228-ef35b281ae0d','d93690ea-b22e-45dc-99a2-0e07f17da633',76,52,102,0,'2025-09-06 07:20:15.394','2025-09-16 06:34:40.141','437152964-3-3'),
('5290d0e5-4f22-4d54-af69-ecfdab122f9f','5eba22cf-1a50-447a-819c-d6f78b038912',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-3-4'),
('5291c065-6da8-41dc-a973-ffdb09033c1e','a0a4be0b-f2b9-429e-92f5-4a10e11028b5',95,70,60,0,'2025-01-06 13:08:16.787','2025-01-10 09:45:15.067','910405441-1-4'),
('529445e8-2899-419c-8a92-2ad13cb5b6ed','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-22'),
('52974fac-8eee-4bb9-919b-3b1d83e335a3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-233'),
('529aa90d-b951-46e3-b870-490f870561c5','a455ba66-b417-4781-a6f2-6fce1b8bab23',160,200,3,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-9'),
('529ab6d9-1672-41e1-a9fb-8a7fde6ccd90','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-9'),
('529e116e-7e8d-472c-8f22-9d78e0b83f0f','a7738d79-0b07-40ac-b644-35e9d80b368e',160,20,76,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-4-2'),
('52a2d874-3fd2-4413-8a66-fe914d8ca2eb','c68da11e-578e-4c6c-8afa-d56edaa715f4',75,140,10,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-4-1'),
('52a897fa-b2ad-4c99-a88c-5fc7cee265c7','9affc7b1-09c4-4e84-b48b-d0c117c421b0',120,33,198,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-15'),
('52ad5826-763b-4e21-b5ec-2d688139786a','b7612cfc-aad3-4f87-904b-e50d3b29d0b0',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-3-5'),
('52adf1a2-f662-404d-96a4-de5c50e456c9','4bd3461b-c38f-4c43-90a6-39aacd24cc83',30,93,207,0,NULL,NULL,'976462703-1-4'),
('52afbec8-3539-4adc-a711-be007507607a','634dc64a-b9bb-45df-b331-ced53563559b',67,94,94,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-2-4'),
('52b0be6e-f04b-49b5-a74c-7552a3f1e4d1','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-3'),
('52b216ae-70d0-4c0b-be13-9b28c7e55b13','c02ffcbf-98bf-4c9a-9545-ddfcb6da67da',133,133,6,0,'2025-04-21 06:13:14.704','2025-05-03 08:05:38.336','221804377-1-1'),
('52b31aaf-cc85-4799-a845-026217c0c255','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-115'),
('52b6f2e4-840a-42c6-ba25-b7608bac50f2','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-4'),
('52b825e6-c28d-4290-86f3-18473280e6fc','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-30'),
('52b84627-770c-46bc-abfe-58e4a18f06a3','8626895a-fadc-48b2-8114-1f4670cf1280',0,0,0,0,'2024-03-23 08:48:19.964','2024-04-03 18:54:35.867','478227571-1-1'),
('52b9ee8a-9860-4af8-ab34-18ba1e183de6','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-39'),
('52c2b94e-6667-41b5-b635-78f6813e61e5','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-3'),
('52c4445f-8833-4d42-b265-065a87c1a24a','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-5'),
('52c44cbb-572c-4415-9800-a46f74db3458','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.869','2025-05-01 09:51:59.247','223823107-1-27'),
('52c570ff-2408-4197-bc66-decb1133f513','a95b7647-1261-4cf3-9745-195f5db6c429',0,0,0,0,'2025-02-27 16:45:24.198','2025-03-13 09:28:41.588','64418413-1-4'),
('52ce1045-0018-4295-9f71-7b05a7873afe','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-65'),
('52d01bb6-4827-4ef5-9b22-6bfc95c606db','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-28'),
('52d0271f-aed2-4c01-ab73-8bf7772449cb','c530f905-27f0-487c-bf56-8ae218e8420d',40,40,45,0,NULL,NULL,'478153975-3-2'),
('52d098ff-8c2e-444b-b723-749539511625','b4183fd9-691f-4e50-aa3e-1185b3e78cff',220,92,70,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-15'),
('52d131ed-154b-467c-85a7-0a41d6faddb0','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-8'),
('52d2a2bf-8be5-4f35-8b26-f936f086a197','44eb3a40-af64-4221-b013-eccbddfbef70',226,70,98,0,'2025-04-15 16:01:21.169','2025-04-28 11:58:58.862','371533444-1-2'),
('52d3be97-d7a9-4f12-b74d-3f256ada9adf','4759096d-1c45-449b-bc2a-51e974822898',75,57,103,0,'2025-02-23 12:38:54.317','2025-03-09 12:10:11.419','221924148-1-2'),
('52d51a60-7fe9-4a40-8932-e02df6c69ce9','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-50'),
('52d52f6c-9efb-4c71-b997-6f7a434d9662','0683aa5c-fafa-459b-928d-eae1729e635e',100,15,17,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-2'),
('52d5566b-eedc-47ba-8300-ba05aa84c2ab','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-11'),
('52db2c77-f78d-4b14-831c-73298060a4fb','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-30'),
('52db77ef-7f30-4e9c-9cf0-4a6bde616a42','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-3-1'),
('52dcf09a-c6bd-4202-af42-978cc1d3b1c3','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-69'),
('52e2b50f-5712-49a9-a77c-4808624ef5ca','9d9df441-0469-46e7-baad-366a3096e9a0',65,187,92,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-1'),
('52e46ba3-0edd-48e8-8a25-3ba3f9bef91a','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-19'),
('52e476bb-96bd-4ae4-8fe5-aaf1f714dbc9','3e68a7e1-b64d-4ae8-830f-cb72c4eec04f',84,84,53,0,'2025-10-09 08:39:52.750',NULL,'011940661-2-3'),
('52e64677-ea72-4647-836a-76f36a97702d','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',255,112,40,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-4'),
('52e839aa-46ab-4ad7-a28c-297974716960','058ec720-a3ef-43eb-a600-dd04b3b98013',51,51,77,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-1'),
('52eacaf4-08a0-4cd0-a11b-afcc6d2c569c','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',42,4,52,0,'2025-01-06 13:08:05.459','2025-01-13 07:51:15.783','449582137-1-15'),
('52ed1963-7dda-45c0-b207-c35578cce181','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-20'),
('52f172a8-42d3-4772-9428-2ffc445b2a22','8c3a9387-2db4-400b-95fa-11aef6c745f6',145,48,8,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-7'),
('52f22f94-b958-4f29-bf19-3fd1cc61ea05','159c73ed-083b-4d67-98ca-6adcfc554962',145,136,13,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-5'),
('52f42270-a339-447f-9b26-2c370d99206b','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-3'),
('52f5137c-8103-4c3b-996a-b22b78ee17bf','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',50,40,40,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.197','982555492-1-3'),
('52faab14-1fe0-417f-a738-5d4336383ab4','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-5'),
('52fab44b-966e-468c-b5b9-c2589faada5b','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',102,58,8,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-8'),
('52fb7ee3-a096-4d80-aead-58fc59de749c','d4b48666-94f9-40d1-8fe1-059d7aa569f6',73,68,65,0,'2025-02-09 09:51:56.373','2025-02-15 10:17:42.131','633870078-1-3'),
('52fd8266-bb4c-47bb-8cd0-82e772f325d2','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-18'),
('530539c3-da9a-4363-811a-70d265624c6b','43ec6ce8-9ec2-4648-8e6a-93c885be50d4',75,93,210,0,NULL,NULL,'478345195-1-2'),
('53080a59-55e7-40f3-8324-604a40724165','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.157','223254418-1-49'),
('53087891-bb7a-43be-8a10-4f2450c1f0df','4379a101-5d0c-4577-a568-55859726b74a',66,3,196,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.990','675885408-2-1'),
('530b3566-0509-47fd-b813-f3ea00475b3c','7d07052e-d89f-4ebc-be55-2d8ac162c8cd',97,103,80,0,'2025-08-07 16:52:45.587','2025-08-20 12:01:53.270','598102662-1-2'),
('530e4dc2-ab39-4e2f-ad0f-92ca9b4af989','2b836e01-2f5e-4512-9cc2-9be25ec5b6b5',69,110,94,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-1-1'),
('530e922b-f8c7-45bb-af4b-cfb5ff2c01dd','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-24'),
('530ef351-934d-48bc-880d-f018b997723e','00972f30-0555-457b-93aa-8acffb86ef96',51,51,77,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.158','644711459-1-2'),
('5312446a-a147-4091-bd8d-c9386e642fdc','0cc39437-8ee1-47ea-87c2-b9fe770c2259',61,10,219,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.956','248568702-1-24'),
('5312e4a7-3f41-498c-8979-bfbac6a91846','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',92,27,202,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-4'),
('531331c0-5f44-45b6-b67d-1c1e49263328','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-143'),
('53134a72-8db3-49c2-ba52-9e5700051583','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-10'),
('53167a5d-32df-4444-8303-ec5f7f5c648b','2fb19f98-3e7f-4224-baf7-2836d72e91ba',178,101,77,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-2'),
('5317883c-6b05-4af2-87a5-a8f76225c044','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-4'),
('5317dd55-2e7b-47ce-80b2-c9d2ac1039fb','99bbb574-412c-40b7-82ef-2a54c6e3ec1a',51,51,77,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.732','613393068-2-2'),
('531e0b83-17b9-440b-acb2-3d5338442f97','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.900','750135738-1-3'),
('5321de66-f936-4136-9f9a-c728c2b83a79','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-31'),
('532416d8-b16a-4811-8bcc-6c02717b158f','aca21297-1022-4505-a912-c540f09dcc5c',0,0,0,0,'2024-05-08 18:43:08.066','2024-05-24 07:08:00.705','478598314-1-3'),
('53246ecc-c2f3-4be3-a276-f1e4e1906f54','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',92,96,8,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-4'),
('5325b6b5-09d6-4006-bd80-48996db7bcdc','88d580d8-995f-4f93-8898-28857c4a2389',55,116,215,0,NULL,NULL,'613362697-2-1'),
('53291a84-b3ac-4de5-ac0a-83ae085ba125','42345ca6-ef3a-446c-b13f-224500a189ad',60,68,96,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-2-2'),
('532a5cbb-8fda-4911-be1d-78779eb52f03','03f37a37-bf58-4994-8ae3-0d9bab55ce29',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-1-1'),
('532cb48e-7afe-48b1-9d45-d887cfc49341','8f1b3fd1-9289-4cd5-ad84-508968f285df',85,194,103,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-2-2'),
('5331e4f0-aaec-4af6-bc96-5ae0a2d727bf','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-115'),
('5335ca2d-858d-40e5-b1ee-ba0a66e85857','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-1'),
('533687c2-1191-4ccb-8e05-8274c07fcc4c','e7f31a78-648d-4a5e-9111-1bf7db38dd79',200,100,6,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-11'),
('5336ab10-c077-4127-b727-ab32e6df27dd','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-13'),
('53380239-084e-41d3-98fb-582e580a1071','e8dc151e-1148-4a48-ac2a-d4fb2c761969',146,48,13,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-7'),
('533bdb64-e05d-4e3f-ba53-ab74d81a203c','e56002ca-42e5-4146-a60a-bac313c2c278',0,0,0,0,'2025-09-06 07:20:20.393','2025-09-16 06:34:16.662','745282619-1-1'),
('533cb619-b963-4f78-ba59-7d2f967819f3','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',230,100,73,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-4'),
('533d2837-3167-4244-866f-30bcb5ac44ae','91bd5cab-6fcd-41cb-966e-9b9d6f32b15f',51,51,77,0,NULL,NULL,'221196305-1-2'),
('533da502-577f-45b0-990e-bab9a6025b61','d39ed2f8-02e2-4066-8e4c-569b4799cf85',51,51,80,0,NULL,NULL,'695570555-3-1'),
('533e2da0-c9f0-49fc-845e-ad09eed5262d','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-36'),
('534240b7-e75e-42b3-83d8-3e7afba23db6','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',95,85,80,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-2'),
('5343029b-4c5c-4fdb-b0e4-2ef614abf81b','6fd22e55-d4d7-456b-8be2-88ba5d331996',56,76,103,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.133','598410676-1-1'),
('53449a59-1717-4789-9635-d4c36a2d2a66','532dcdc4-aacc-4c9a-9207-a316ea09350e',0,0,0,0,'2024-12-07 09:32:24.377','2024-12-18 16:37:02.165','735173063-1-1'),
('5345b19b-4e79-477d-a585-813eacdf72c1','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-42'),
('53476357-07f6-4aaa-90e0-696239b6ab6a','14694410-5bbd-4c16-aaf3-3218e9c86c9d',0,0,0,0,'2024-05-29 10:12:13.202','2024-06-11 14:04:50.980','449445608-1-1'),
('53489f46-848a-43df-b186-015ddfe91e9f','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-17'),
('534a9abb-d2e6-47a6-ba63-7d720c873abf','e1ca0884-0a56-41e9-892e-c3a62280a2ba',53,76,96,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-2-2'),
('534dae5e-282e-43ca-b820-f08e2a9d3684','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-1'),
('53542f62-426f-4c55-b0e0-35f0f1bcb3ae','55dd5cbc-c309-4696-aa21-919f08012acb',42,43,75,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-1-2'),
('535837d2-17aa-47bb-8bdf-542dd367cd1e','9b790a64-be97-41ec-8330-fe02190f5b10',100,75,60,0,'2025-07-26 07:40:23.594','2025-08-04 10:55:07.811','517867004-1-2'),
('53597529-dc07-45f4-8e31-4041a11ac083','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',57,83,101,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-2'),
('5359ad4d-7380-453f-ae24-5bb2b2f59bd5','97e2aa48-61f5-4871-a432-6b4e926e3487',51,51,77,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-4-1'),
('535e18cc-2e23-434b-b308-ee14c9e9b4d3','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-2-7'),
('535f014b-7604-4665-a855-dd65476ab4c7','5e6bc612-6c7a-4f9c-8252-00151bafb04f',238,40,113,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-3'),
('535f1a8a-40e8-4083-8153-a011a0247685','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-56'),
('536121ff-4657-4cf6-947e-935f3582b511','b7fbd54c-bcc0-4613-9901-d06327048472',72,62,12,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-15'),
('53668d39-7470-42e5-8727-2b2a0f8c137f','b2e0a7bb-3347-4afd-b0e1-536f1ce955aa',82,53,26,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-4-2'),
('5368e520-a780-418d-9ccb-d5a41f8b37b2','e98bfea4-ba12-4820-8a08-d9e21bb5df92',0,0,0,0,'2025-08-21 07:15:26.599','2025-09-04 21:03:41.501','338882287-1-1'),
('53691702-c734-4ec9-9887-20ffb1a7fff3','42dacb31-b711-4374-9f4e-97576b6e7abb',93,67,240,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-1-2'),
('5369e277-8967-4011-aa76-a27946291d08','5bfd2b44-3068-4b7b-b490-2c69f8b986ee',254,57,9,0,'2024-11-15 17:06:39.848','2024-11-27 08:20:23.084','614990703-1-2'),
('536a9dd9-7b48-4d5e-b1af-c9f2fe22b8b9','48a52c80-382d-403a-8339-88f26052eec2',27,60,43,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-3-4'),
('536bcf59-2bb0-4106-8ced-6653b775a69d','f4fea4c5-b879-4cb4-a43b-6716692a56f0',54,15,135,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-4'),
('536ce6ac-5cfe-4069-9036-51b0a8a79868','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',52,43,43,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-3'),
('5373a08c-ff7a-451b-87cb-4316f701c55d','ada78d77-5143-4e72-858e-02eb9de8df81',7,71,104,0,'2025-10-14 09:22:06.514','2025-10-22 07:00:44.506','478346989-1-2'),
('5373ee1e-75d7-40c2-990a-66115d093c7b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-26'),
('53753691-2245-4dec-9483-b7e59364273e','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-10'),
('537600f9-44e7-4605-a964-4b1aee2b848c','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-72'),
('53769483-9bdb-4c7c-b69d-ab018ac7b8af','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',60,30,44,0,'2024-08-07 15:02:59.361','2024-08-15 10:31:04.498','976577497-1-2'),
('53791703-e6ee-4a88-9ed1-8b0f30f4ea7d','06e319ba-26b5-4ce5-b9c0-d2e144aeabab',195,65,95,0,'2024-12-13 14:49:16.355','2024-12-22 12:45:33.978','976942444-1-2'),
('537c875e-f707-46c5-8dc2-59611605b04f','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-8'),
('537cccbe-2439-4261-a98e-9dded9790c29','d93f5d7a-7db9-43e3-8d9e-87cb0ef58425',43,43,75,0,'2025-10-20 07:17:51.379','2025-10-27 09:24:00.820','371434188-1-3'),
('537cf90a-878a-40b3-901e-cace17688241','793801d4-f6c9-4e1a-9207-88bfb41fcbbc',96,7,151,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-6-3'),
('5385d4fc-8250-4a67-8cef-f6a5c5fc6244','41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0',87,87,9,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-2-3'),
('53882778-ccba-434d-bebe-0e4abdc77684','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',98,80,124,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-6'),
('53896627-adfd-4f51-89cb-104ca4978828','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-143'),
('538f181a-6dbf-41f9-ad4b-0fa08e5ea682','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-18'),
('539272ca-7fb4-4bb6-ab6b-8f5c4bc3495e','c01fb28b-ddac-45ad-9fd4-6dc177af77f8',92,95,60,0,'2025-09-02 14:48:42.201','2025-09-10 17:06:01.025','613108463-5-3'),
('53935a91-7857-4fce-b1dc-4cf92688cf4e','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-4'),
('53958b2c-b581-4722-a91e-8cff5f72a8f6','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-5'),
('53959eb9-1255-4e34-b72b-2a133c0877f1','6a308121-6cf9-4384-8446-08182bd669fd',62,47,18,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-13'),
('5395db6a-1a0b-4f3c-8e75-24b34011bfb3','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-56'),
('539b468e-867e-4a35-9ce5-05b0f55f1a46','c29e76a4-89ba-4143-8fad-01a2910620ee',75,65,70,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-4'),
('539e3497-8add-4b8a-a351-094adea2f067','8fc7023c-7fab-44ae-a533-006d835eddb6',57,207,6,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-9'),
('539e6bd9-a782-4efb-8052-e65c4c406f10','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-43'),
('539fca1d-557a-4d0b-999d-ee338eb81ee1','723a1ddc-811a-4899-bb4b-577c7b163262',100,37,45,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-3'),
('53a28749-16a9-4ea2-ace4-78f29ad9a744','bdc15b51-242d-450f-a47e-a75e07f475a4',115,19,122,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-5'),
('53a4c6e3-09c4-4af0-b703-ebdcaf383036','f11542a3-dfa8-4149-83aa-1d327ed7b1cb',59,40,53,0,'2024-12-01 06:48:20.004','2024-12-07 20:48:15.986','614396499-3-1'),
('53a52b4f-94e0-45a2-ba4c-d6ced09113c4','1510fb1c-ac60-443b-8470-17f2857b0558',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-1-3'),
('53a582a9-7e6d-4941-9df3-3d3e6af591a6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:19.968','248135683-1-233'),
('53a77319-b867-4fe6-9025-e4410310cb3e','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-32'),
('53a977b0-50f8-4e75-bdc6-9ca330ae6112','d3b158c9-fe43-44e9-aafa-358c6c95c929',0,0,0,0,NULL,NULL,'478237582-3-3'),
('53ab178a-502c-490a-ba75-104e036d6857','7311f1e0-e2be-43dc-9e40-f94a010e8939',163,31,10,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-18'),
('53aeca6b-e290-4d25-bc6e-be971f7811a2','702c1aff-1a98-44f0-9dce-efad71572432',81,3,203,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-4'),
('53af3853-0950-42ea-92be-59eb0f53ca90','21eddb6f-56f8-423f-9b15-339f30ed9344',57,82,101,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-1-2'),
('53b1c095-0a88-4584-88bf-449ee380de99','0c6185c5-4d86-4de6-a4f2-365f095498a7',77,56,103,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-1-3'),
('53b3b060-9e97-40d8-842a-64cea47fd09a','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,215,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-13'),
('53b6464a-9845-4ad3-8a9c-a21b55806f3d','beef7e58-43a8-45af-a8d0-f733859c2592',0,0,0,0,'2024-10-02 09:27:09.259','2024-10-08 09:24:47.606','745170376-1-1'),
('53b7724f-ca17-4ada-b591-aedd857ec370','ec368b6d-2af5-4b61-bc86-98e5f6ec4ed8',100,140,85,0,'2025-08-14 10:05:25.550','2025-08-27 19:34:48.194','437700144-1-3'),
('53b778d7-1c45-4a43-b217-58f4ae1fadf8','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-21'),
('53c9953f-0c6a-44d6-abc1-c4b932469fd5','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-8'),
('53ca592e-4366-4275-a82b-4c62a2bbc9a5','c1bfa9af-ef39-44a9-9789-3e9b58704cb8',101,76,52,0,'2025-09-11 06:34:27.965','2025-09-19 12:34:35.875','808886614-1-3'),
('53cacf6f-1235-49d6-b756-bef2f4ad508b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',0,0,0,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-63'),
('53cba940-dd38-4250-bf7f-e83e6d84420c','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-33'),
('53cc2c35-09fe-4df3-b839-5602ef615038','6fc71087-3b34-4761-a094-a0f038c41be7',216,48,40,0,'2025-03-27 15:06:17.555','2025-04-05 13:45:20.919','319141495-1-2'),
('53cd9df2-a63e-4cce-8170-901e80a412c2','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-19'),
('53d26ac3-3cc8-44d2-b7e8-a21a9b61a23f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-59'),
('53d44d57-fcf3-493f-9eb7-ea4aaed7771f','c9aaae09-abdf-47e1-b3a9-2b58eaa5c76a',51,51,76,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-3-2'),
('53d4a3d1-692d-474b-bec4-897b0a97607a','acfd21b9-6dbf-4ded-9e6d-ff15545c15fa',240,65,100,0,'2024-11-15 17:06:35.912','2024-11-27 15:32:39.245','449215672-1-3'),
('53d83f6e-6a94-48b0-a6d3-70098fb185c7','4c88e864-195d-4fe4-a531-9df2aa8891b9',0,0,0,0,'2024-10-17 13:41:00.443','2024-10-24 01:09:27.947','982506182-1-2'),
('53d8d867-a8c5-4e47-8aa8-a7ce565acc8b','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-9'),
('53d90291-5ecb-4aae-9010-0dbeec82195e','f2b86101-231b-44f6-8b23-da9325756faf',143,85,14,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-5-2'),
('53e44a63-e679-4316-8f79-d8cb71e3cd52','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-14'),
('53e96224-79f1-4e4d-a32a-cc061f3908f9','31aeaee6-0983-4996-af4d-a37e42a0a6e6',103,220,70,0,'2025-10-20 07:18:02.414',NULL,'817682643-2-2'),
('53eb556d-fe98-4cee-8fed-37e1c37246a0','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',41,41,50,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-7'),
('53ef7189-99bd-4a63-baa6-03069f65c4dd','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-1'),
('53f195c1-1455-401c-a04e-b144bd880f83','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-29'),
('53f25b1f-e9a9-4bc6-b31b-011d5379d073','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-44'),
('53f267e8-9c15-4376-b7b1-77f33f500b1f','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-1'),
('53f29341-5763-49ca-95d8-33b71f985e36','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-95'),
('53f3c17b-6860-4f1c-888a-2e4710fc7ed4','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-47'),
('53f67b60-7acc-49c0-907f-dca8c03ab0c1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-65'),
('53f8fa28-7c6e-43ba-aeb5-b348ede2631f','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-10'),
('53fabc65-ea90-45a4-8332-723149aae9ed','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-14'),
('53fb90d0-cc78-4afe-be01-cbd419f204c6','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-12'),
('53fedbca-d103-48a2-9916-bb340cbc38fb','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.694','2024-10-30 18:09:49.991','745976194-1-2'),
('54010fd2-f59a-453a-91c0-358429486eb9','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',22,45,58,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-5'),
('5401aa44-f49e-4188-b48b-5e27026576a1','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',235,100,70,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-14'),
('5403c3a7-b340-4695-809b-e44579512d71','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-14'),
('54052fed-2a2a-4bb2-863c-a14b5866b68f','949e4a7a-6c6c-49da-ae9a-0534ae51f65b',57,82,101,0,'2025-10-20 07:18:14.789',NULL,'61340935-3-2'),
('5407b08c-2478-42dc-b5ca-012706231f20','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:20.600','248135683-1-147'),
('540d6e06-52b8-4aff-a28f-cdeb87f27bfe','0dce8613-12ad-45a6-ae96-565770f25828',76,53,102,0,'2025-09-18 15:49:12.390','2025-09-27 08:39:30.839','437574361-1-3'),
('540d9b37-9847-4ba6-bad2-d6385bfee8e6','1a865eff-de9e-4c81-8ad4-8c96ddfa18ff',92,105,70,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.302','371194748-1-3'),
('54103c0d-4ec9-4206-9532-3f2de370fddd','e5c9836a-2651-42c7-a4c9-79cc66a12250',51,51,77,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-4-2'),
('541060b9-115e-4e75-84f8-e6d4483b9fb6','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-55'),
('5414c9ef-7956-45ba-aad3-240ba5112d11','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-15'),
('541551b3-c0fc-40d9-be7c-c3c0c63d8124','fb366cd4-897a-4e3e-8964-29b80d563ca4',100,156,70,0,NULL,NULL,'613362697-6-2'),
('541673d8-06e3-4cd4-9439-bc222efc1562','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-9'),
('54179b10-99ac-438c-b445-14340a59f895','e178636b-b1d9-4260-aa1b-879946fa7f5d',50,6,215,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-7'),
('541a0f07-4d5e-41c9-abcc-0be2420c942f','a455ba66-b417-4781-a6f2-6fce1b8bab23',48,20,70,0,'2025-10-25 08:59:25.499',NULL,'478544570-3-10'),
('541a6a4b-0589-4cb3-9564-3abb5e315fd7','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-16'),
('541c1a65-5797-4c0c-8abf-a43406a628ba','5478abc5-9d64-4211-bae8-54bf5172ebc0',65,80,90,0,NULL,NULL,'982268643-1-2'),
('541e4290-32bc-4449-8048-42d8dbabe843','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',96,93,65,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-2-2'),
('5420b1b6-0733-45c4-9a36-5880eb6129b8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,72,80,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-64'),
('54217921-1eef-4fff-902e-fe95b53e2a7e','574dfe37-d46d-47c7-8219-216fa7c208ab',95,190,9,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-1-1'),
('54243c81-2021-4f80-9626-1e4d1b721dad','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-62'),
('5424fb7e-0f6b-4b21-9142-7cbf1aa4c60c','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-22'),
('5425e073-8f2a-4658-b7ff-1fb351332f25','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-2'),
('54271c61-f92b-4f59-bac1-22cbf9457590','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-112'),
('542776a1-32c3-4541-8094-ecde314059c3','8c2422b1-01c5-4a6d-9049-4906bf144020',180,200,33,0,NULL,NULL,'74532359-1-3'),
('54278d3c-7ca8-41e0-a3e6-71ed63594526','d9c96ce5-7311-4159-8c51-6a1a744d0c49',128,72,8,0,'2024-11-25 08:28:48.880','2024-12-05 16:17:13.323','501760253-1-8'),
('542a9542-4db5-43c1-8ac2-1452ba2662ee','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',92,182,11,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.898','107869996-1-4'),
('542b0375-9b69-4fab-a093-eaef0d3fbe48','21b92c18-fe01-4738-a64f-22357aa1711b',55,30,73,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.271','01914447-1-4'),
('542f6fca-65eb-42da-9fea-7c161e285e69','00dcbf70-c001-40af-9195-3caa85499670',53,72,100,0,'2025-09-16 16:29:37.463','2025-09-30 06:16:22.258','644422105-1-3'),
('54309893-9b33-487f-8be2-cc1760a07059','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-28'),
('54341890-4bb2-4b8a-a6b6-43246285a404','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.742','223422825-2-3'),
('543662a4-0c81-43ad-b3ad-f14a66a964d8','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-47'),
('543726e9-a582-4e60-9139-1118fc3e2e4f','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-61'),
('5437a925-61cd-4475-9459-1d557b5ca376','5f6b832f-9b3d-4451-8616-262b7ed123fc',0,0,0,0,NULL,NULL,'412184975-1-1'),
('54391862-1ffd-4523-bb02-989452f7f575','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-10'),
('543cdb60-f118-49a9-bb3c-833fc2b45e16','e39aa7eb-4894-4857-a5ab-216ca03e5423',50,33,207,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.476','221746261-4-1'),
('543d96c2-c81f-4b89-8afa-3218d8e2a2c7','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:52.592','248135683-2-23'),
('543f435a-d3e2-4f41-bbbe-3cbb4d711332','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-19'),
('544119d8-99f0-4b70-a264-6d5d4bc99c54','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',52,70,29,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-1'),
('5441a739-c4d1-4933-8b83-305f2ec46535','6e7cb94f-e7b0-449c-8458-dffd274f8115',44,43,72,0,'2025-07-29 12:58:48.867','2025-08-07 07:12:44.161','371191289-1-3'),
('5442b4e5-e23d-47cc-98fc-10041627ecb5','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',160,200,3,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-14'),
('54475fbf-14c0-4fa6-93d5-38245fe86569','f88c3e53-b711-4bcb-aa3d-9543580054cd',213,77,92,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-33'),
('5448694b-84c6-462f-b7a0-5070ebc1c0b8','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.953','223734808-1-180'),
('5448c010-cb2a-467f-b963-0b34031ef6d6','354f4bd6-093b-4fa1-b444-b083fcea7323',0,0,0,0,'2025-05-28 19:08:50.514','2025-06-06 17:37:23.725','786398335-1-3'),
('5449fcae-30ed-4300-855f-d83c7e8c78c9','fb58f438-30e4-4e01-af6e-6378e27a11fe',160,12,7,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-7'),
('544a8579-3eb4-4814-8641-6c597a580097','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-20'),
('544ac6b8-2628-4e04-8d20-7e02e0646ce2','f8845648-6347-4e46-b7f2-eb261e05cd91',75,95,55,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-8-2'),
('54558866-755c-4417-95db-c85f67912041','a89f5cb0-4036-440c-b388-8ef641d6f3b9',10,48,83,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-12'),
('545b29db-0394-474f-b1d0-1b760665536b','6302f68c-26c4-4a31-853e-80b9d1ba59ee',60,25,20,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-14'),
('545d76c3-ada5-4c7e-95d4-f1a8ac1271d1','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-8'),
('545e2334-a077-4e79-b056-58078e735b87','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-2'),
('54601ed8-93bf-4fdb-8b46-26c61c0415b6','ed05a300-3f7e-44c4-b954-a6eab482e5d7',70,90,90,0,'2024-11-21 10:29:18.363','2024-12-13 19:00:45.749','982549375-2-2'),
('5465b6b3-0d8d-4692-9af5-37e9214a131a','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-73'),
('546853ab-809a-42ab-9d35-f2ed555a7b84','0c4e75d5-e342-41c3-949e-5ca8657ec836',199,33,45,0,'2025-09-02 14:48:39.153','2025-09-10 17:05:41.390','598226174-1-4'),
('54689dc0-4d48-41b8-bd4b-4ea877095994','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-25'),
('546cc192-2c0f-41e2-8c0f-9a0864afa5e9','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-33'),
('546e9ddd-c374-4ea7-8597-70e737dbbe29','ff190dbb-143b-4c29-bab6-8f312e4deb63',0,0,0,0,'2024-06-08 07:59:58.647','2024-06-22 11:11:09.219','478642368-1-3'),
('5470972c-4983-4b3e-bd2a-de342eb65f60','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-13'),
('5470bcab-65af-4a6d-a6e1-2a48a1e4d062','d9c8afa6-f5f8-43d5-9ac6-960a71010d4d',234,70,95,0,NULL,NULL,'982572348-1-2'),
('5471a03d-2b55-4642-ba4f-f22c82879f4f','39e46e46-90b5-4ba0-a0dd-d262263fc640',53,91,75,0,'2025-09-11 06:34:39.385','2025-09-20 19:00:18.891','221594735-1-1'),
('5475f7ca-f55b-4ee6-8a1f-c8b4e3ffb035','043a68b3-cbde-4c54-b5a1-246e3bc84742',124,76,6,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-1-2'),
('547637fb-2319-43a7-8d44-f4db6179f354','509c0ac7-1856-4369-9d18-6ae5ef5d788d',0,0,0,0,'2025-03-24 16:01:42.948','2025-04-05 17:48:17.433','745968655-1-1'),
('547bd462-4f49-476c-92aa-9a49897d632d','b3c3deda-6c3b-46c3-9621-7f4713fc16e3',0,0,0,0,'2024-09-10 10:47:10.172','2024-09-16 21:13:58.766','97623604-1-2'),
('54834a83-fcda-4ef9-94d2-b44ef5e8de7a','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-13'),
('54840ee8-c30e-4194-944f-b2dbc66eff50','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-3'),
('54841336-f80b-4d2d-b21d-c974caf9b929','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-7'),
('5484c8d7-061b-41c5-8d4f-58aa8f78f446','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-7'),
('54860a0c-e07b-4494-b40c-3111930473d9','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-12'),
('54896d8e-a07e-4756-b6db-b3ce3b706d67','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-127'),
('548d41ed-1935-4c63-a015-38303aff73af','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-50'),
('5490a3e9-2197-4d52-8427-f18c79c0f469','b93c6331-52d1-4457-9c77-5af31d37b339',0,0,0,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-2-4'),
('549433b9-9114-46d0-95d0-bcbc1876bd2a','48327c16-88a6-4dd5-9dc6-0d88b77a9baa',12,101,195,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-2-1'),
('5497e3fa-6485-47b0-a4a9-4f68adaeb9b3','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',58,220,11,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-6'),
('54981852-a4b8-4dfd-ac04-0ea82306fe40','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-97'),
('54988fdd-468c-4b59-bf7c-58bd2bc95b4a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-180'),
('549a6032-2c85-4d5d-a890-36cd5c13322a','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-4'),
('549d8f8e-7b16-4409-a5f6-ef65d27a1abf','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',97,13,170,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-5'),
('549df3f1-884a-490d-82d8-806fc75476cc','565f6966-f194-4d7c-8b20-64502045078d',7,49,123,0,NULL,NULL,'478350685-2-9'),
('54a1842b-aa27-49b9-af49-9b8226e6571e','0009aeec-e682-465c-b701-363a3ef377a6',50,27,50,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-28'),
('54a5d766-4f36-4b8d-ba46-45058bba5bec','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-29'),
('54aa2a0d-d722-4a6a-a954-ef23f1e045e0','c29e76a4-89ba-4143-8fad-01a2910620ee',92,65,225,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-10'),
('54ad26bb-0093-4785-90e5-f92ebb5a9a37','9021f98a-5560-40bc-8478-4da85897fec7',44,44,74,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-5-4'),
('54ae1f90-a3c5-41b2-b0b2-7f14c034c3e8','11bb54b9-d46e-445d-a3df-c44fe0e83c43',55,77,103,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-1-4'),
('54b03a20-9ea0-4376-b772-9ee4b687099d','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',212,28,18,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-15'),
('54b3bb12-408d-4fdf-a0f2-f200cc4734de','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-68'),
('54b45711-8690-425e-99f6-1d64f2e521e5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-45'),
('54b9b130-dd99-4e62-807e-1dec24dc22bb','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-1'),
('54bb57d3-62a8-4b19-91f7-892f1261b3ca','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-52'),
('54bbc340-b53b-4a52-85dc-2ffec1d42a2e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-8'),
('54bf0eb1-514f-4fbb-b0ba-62ed6b687f3a','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-10'),
('54c09b1c-4be5-42f2-890f-688f05fcc547','d9935e91-5c26-4669-9a9a-83060292f497',100,95,67,0,NULL,NULL,'478702481-3-3'),
('54c212fb-371c-4b92-b500-3d1fdfdf7b25','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-2'),
('54c28868-75e3-4df3-b1b3-da1cd961b61b','b6d04ed2-f29f-400a-ba86-37b36b0830b2',101,211,6,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-8'),
('54c2c029-b11d-403d-aebb-8ba3fb9cd1f6','405a8b4f-16a3-4308-a37d-4df866ba5a15',51,51,77,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-2-1'),
('54c32ec2-5a17-40e3-95b8-4cdeeb04434a','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-21'),
('54c4b97b-a786-447d-9d1a-d9d0a63a0656','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-32'),
('54c6d50d-af34-4757-ba34-fabaa264c867','e54150ef-c37e-434a-b822-2ec057a11543',93,122,60,0,NULL,NULL,'745189997-4-2'),
('54c7c51d-d7cc-4a3c-8438-f4c133c19565','a6c77233-c870-4a4b-ab0e-76861ad31465',57,35,35,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-1'),
('54c9b7d4-a93e-4b29-a03f-5d7326303002','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-8'),
('54cbb79d-6953-4198-9f27-66c44cede28c','45749935-27bb-4063-9e4a-59a9d1cdc880',62,57,84,0,'2025-05-16 16:33:15.349','2025-05-25 19:11:38.702','221686815-1-4'),
('54cbd07a-de94-4a85-af1d-77c98f30a6e7','a3bbc87a-f769-48ca-8f56-60b6a63ae632',74,53,100,0,'2025-09-24 11:01:21.468','2025-10-02 11:12:24.133','644590959-2-1'),
('54cdcf09-d2f1-4b93-81aa-5a40d43c0215','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-13'),
('54d34664-ddee-47b6-afdd-126532e71cf2','bd7ba9b5-8269-4522-b579-d69c949c4a64',100,26,196,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-4'),
('54d3db66-a26c-4045-bf57-397ba18d7a1e','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',38,39,173,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-8'),
('54d7d829-7a9b-4aa0-b9d0-799fb5254de1','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',204,25,4,0,NULL,NULL,'428437129-1-1'),
('54d8b57d-be26-4384-9ca3-63c622b15c7c','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',208,47,8,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-13'),
('54e04fd7-87d6-4445-aeba-3bb1a9fad2df','85ff7453-fb73-41cb-8885-c4edae102a71',0,0,0,0,'2024-06-08 08:00:27.415','2024-06-20 20:15:37.271','72247088-1-1'),
('54e0813f-98f4-4358-84ea-c03f9d1779e1','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-9'),
('54e1cf7c-897c-485e-bf7b-287bc9b09df8','9bb570a5-52bb-4bbc-a797-b2a052d8260c',245,100,70,0,'2024-06-10 13:50:55.810','2024-06-10 13:50:54.112','3198601-1-1'),
('54e1fa39-d062-4240-8816-a2a8ab0f1091','fbffb9d5-c273-47e9-93ff-d898c5730075',94,81,108,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-4-2'),
('54e3b9ee-879f-4ed5-8867-df713ef10095','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-2'),
('54e666a8-65d6-4523-9f06-e5bd1e1adb0b','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',95,202,7,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-5'),
('54ecfae4-5ce6-4e32-9415-0b29487be556','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.287','2024-08-07 08:41:42.092','248211803-1-48'),
('54ee2e71-3d9b-4970-a5ec-b5d5f15c85e2','c29e76a4-89ba-4143-8fad-01a2910620ee',75,75,60,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-6'),
('54f23996-d07f-44a5-8c8d-18f3a8df955f','b16256b1-d6a2-448b-a170-4c574127a57b',16,43,49,0,NULL,NULL,'745189997-3-7'),
('54f568e1-2818-475b-a3ff-f67fd11d5f85','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-8'),
('54f7b3e0-6707-4fbb-a00e-ed942bbbfd76','652f8782-6554-4a1e-8ce4-2443e79b37fa',153,153,8,0,'2025-09-12 17:16:58.863','2025-09-24 06:51:18.915','613940015-1-2'),
('54fb2fe3-ccc1-4486-82fa-d44f696b2bb7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-79'),
('54fc5a8e-84b0-4627-b72f-5a0adee6b2af','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:11:58.698','248284003-1-39'),
('54fc7f1b-8fdd-43ab-acd0-01a1c37ae123','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-18'),
('54fd916a-6f73-4305-8138-5ff3f258927a','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',202,93,2,0,NULL,NULL,'428437129-1-10'),
('54fe4aac-e660-4768-b16d-556c2af7f146','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-62'),
('5501151b-27da-479e-88d8-9775a90919cf','2c1c23ab-0126-4156-8f58-8693f16e4bcb',0,0,0,0,NULL,NULL,'959626673-2-1'),
('5501d9e6-9bb2-4346-a308-fdf4c60b0c01','d1833d5a-ee89-4250-8013-2e537cc62ee3',70,110,110,0,'2025-08-27 19:40:14.969','2025-09-04 06:16:31.244','614536111-1-4'),
('5502c247-9955-4d47-8d5e-8297c93df208','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-2-5'),
('5505b281-b367-421c-ac9a-ee1d4d11d3e9','158455d3-2130-4d98-9534-cb36e6c15df9',230,95,70,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-1'),
('550aaaf0-a59b-4bad-824c-0054da9e7cd8','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-10'),
('550bd96a-6ba3-4ab8-a9ea-c6da7e1c773a','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-2-6'),
('550beafd-7e82-406d-8c18-08c9f80ee1fd','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.444','570899680-1-91'),
('550d0720-16f5-4e39-b25b-504b353ccf4d','410d238f-8bdf-4cf3-81b7-a69f07022dc2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.768','478185886-4-3'),
('550eae70-2760-4e1d-9c55-d9c43ba645b4','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-15'),
('55113f89-4936-4344-87b5-98c039624dab','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-49'),
('5512d3d4-3f38-4263-99c1-30d478a472c2','310d0b22-749c-4142-8372-39c495364b11',100,240,85,0,'2025-01-10 08:54:37.951','2025-01-15 10:30:26.528','428754067-1-1'),
('5514a97e-2ddb-4d66-8da9-6fabb1f1b7ef','9d661c6f-2567-4168-935a-9adb098cdcab',78,100,90,0,'2024-07-02 08:19:59.016','2024-07-18 07:32:30.957','614474485-1-3'),
('5515e35c-5287-4dc0-b083-ab5ca72f2669','d9290b00-a023-43ef-94b8-727109b74f6e',0,0,0,0,'2024-11-25 08:28:21.531','2024-12-06 10:08:46.951','858365882-1-1'),
('55178a47-2843-42ec-9c32-04b4973664d0','8cf4139e-7d57-4a28-9a02-b3da51835a61',40,40,44,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-4-1'),
('551cd472-d229-4cec-857c-8f22c9879a20','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-51'),
('551e8607-d8a2-478f-a65d-281760d5a2e0','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.409','412990147-1-7'),
('551f29bc-b218-46f5-9e8e-3ea81ef7f754','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-8'),
('551f2bdd-0eb4-4896-95a5-6f39a902b597','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-3'),
('5520297b-1d22-4eed-a860-7fba75c31634','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',182,95,15,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-3'),
('55228c24-b3c1-4c2d-a991-c893e75d6c96','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:21.338','248135683-1-30'),
('5522ae61-f88a-457c-8541-b1019550ca63','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-18'),
('5522e174-230e-4762-bfb6-bbe57358e90d','d7ba1ed3-8fa2-4df3-9997-7f6419ace61f',30,22,12,0,NULL,NULL,'371216639-4-1'),
('552673d9-f396-4e73-9762-1728f10602de','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-9'),
('552a2f65-f39c-4527-8722-fdf03052d9a2','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-78'),
('552c2139-fa09-4408-8cf1-020f1575c3f8','e6b643b2-ddca-48ec-b553-690e29e71879',190,49,63,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-5'),
('552ca405-a91c-4f5c-b156-3988f9fdc8e8','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-6'),
('552ff8dd-5d01-43d3-8097-f6301c3691ff','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-81'),
('55309932-b70b-48c7-9818-76669a598e6b','3aca7d6d-09cb-4903-812e-7535a083b09c',50,47,25,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-9'),
('55322646-e03d-4698-81c3-b97880ed079b','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-10'),
('553504f0-d6ad-41cb-a04c-889a3d73eb59','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-7'),
('5537f45c-6ed3-46eb-b18a-3adf21ef4453','5ea4b207-b05c-4931-bbd1-648b6933aae5',90,65,75,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-26'),
('55386119-3581-4230-9831-283b182ab4c5','05d4c5db-7f15-4790-9278-4411a57f7248',85,80,70,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-2'),
('553b5793-2188-4cdf-8658-9520919a17b6','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-4'),
('553cb9a3-ed04-4f33-8062-b6a9d240162b','a322199e-9388-4cdc-a475-2497cf269eef',280,15,65,0,NULL,NULL,'501589922-1-22'),
('553f1856-07e5-48ff-8629-3892214f60fe','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',200,160,30,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-4'),
('5542c70b-cb2a-4dda-a7af-b1c18540f851','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-104'),
('55441a50-c156-47da-b1bc-29614129a214','258f4a9c-81cd-472b-ac6c-2973d8c4745e',63,6,184,0,NULL,NULL,'455122963-1-2'),
('5545af62-ba7a-480a-a9df-a5bbec6c58ca','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-112'),
('55470045-a5ec-448f-bd9e-b5228c289b53','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-1'),
('55478c83-5017-44f2-9826-eb688b6f0730','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-2-4'),
('55481855-5ade-4aee-bc38-0f279e1c4577','b9039b9b-ecf6-4419-a382-893676712c93',201,93,29,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-6'),
('55495281-ca74-4a44-94db-d55c1b8b7cbb','2a6df913-1df4-4e6e-bdd5-9d6f58ef881f',101,76,56,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-1-1'),
('554b4e3d-ae80-4323-9e72-9f14ff768a5e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:22.029','248135683-1-18'),
('554bf4fc-23b1-4418-b3a7-d4c60e373d71','e9dbfd33-c34f-4a2e-aff6-18956dfc778b',50,50,95,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-3-4'),
('554cdba0-6015-4975-aee5-9d6cd4911ba0','3535d433-eb38-4879-84b4-dbf8410809cd',210,45,6,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-26'),
('554d9ba9-b991-46f4-8b16-afa29447e6cc','714823a9-06cb-43df-a342-d1728555129e',0,0,0,0,'2025-02-27 16:45:41.170','2025-03-10 16:34:29.348','745311878-1-4'),
('555098be-2352-4bf5-8066-11a58af4e980','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-4'),
('55520bc0-e434-4634-b7ee-5351452db466','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-8'),
('55555004-f2d3-4ec7-a9be-290750de5320','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-32'),
('5556519c-4705-44f5-ba91-19e87a0d0dbe','2a9e974b-aed6-4ac1-b9ec-1a2cb64ca83c',0,0,0,0,'2025-01-06 13:08:26.305','2025-01-08 18:08:26.831','478705604-1-2'),
('55575e3f-4ad3-4958-848c-c1da7b6b5a1d','19dfa4b0-04e4-4abe-b71f-85b70cbef06e',51,50,76,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-2-1'),
('555b6f2c-a6cc-4306-b5b8-cf2e6a0d1f3c','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-22'),
('555cd897-4ecc-4d67-b5c7-b457ed4171ba','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.930','2025-08-27 19:35:01.417','531988506-2-3'),
('555e4630-5bac-4bf4-ab64-e3d0f66f760d','702c1aff-1a98-44f0-9dce-efad71572432',55,65,17,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-18'),
('5560ebfc-69b2-40b9-aae8-8b03d0a820cb','7bb97173-116d-4058-8bc9-64fda10a5901',84,114,65,0,NULL,NULL,'531575051-1-4'),
('5565a46f-75a7-4e24-8273-b92f431ba47c','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:06.516','248284003-1-78'),
('5568c6e3-eb4b-40eb-a334-29fcbe2d6a4d','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-33'),
('556a367b-291c-45f1-87e8-651211423f35','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-82'),
('556a8d4b-58bc-4123-8889-c790cbb741b3','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-210'),
('556b5142-6ae1-4442-8ff3-16e3b015283f','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-3'),
('556c8f4f-908c-48d0-86ea-d87be8b2eea3','0801ed40-5b92-4284-83cb-76d882539064',51,51,77,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-1-1'),
('556ef65f-5c5a-4d60-9562-61d2fcdcb86d','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-9'),
('5570443b-d861-4304-a154-2ccd32e7f259','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-33'),
('5572b01f-79d7-4025-acff-67a8f4eb215c','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-34'),
('557465ae-4fbf-46d6-9cd1-609f4c7e9032','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:23.438','248135683-1-192'),
('55747c90-74ef-4747-982a-aea969c34c6b','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-22'),
('5574bcda-8c27-4969-ac6b-717b69c26f5f','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-27'),
('5575e635-6068-43b4-adae-9e1deb1d06cd','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',46,33,11,0,NULL,NULL,'531240111-1-19'),
('5578ad70-4598-4836-9de3-0e33089beffc','35822066-f6a1-4175-834c-d91d818c9576',51,51,77,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.564','221345365-1-1'),
('55795326-0304-42a0-b990-d5b10566d800','a2ac6ecd-d628-499b-b74b-a3bf267f0117',223,70,95,0,'2024-10-02 09:27:03.623','2024-10-08 09:24:59.189','910990360-1-1'),
('557b47b5-bc1e-4698-8961-7dd1481b0dee','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-10'),
('558a5f4c-bec5-470a-aeb1-a11ee5102bff','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-13'),
('558c5cfa-8a15-4485-8636-a4e9800c57b2','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-20'),
('558c9a4b-f66d-4707-9c58-b06e0b7927b1','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-27'),
('558f931a-3409-45b9-a0c7-e16e2750ced7','d4f91387-af40-4672-a65c-7ea6e96f76b2',45,90,20,0,NULL,NULL,'478350685-7-3'),
('5592e944-1924-4f67-b503-0235358bbdf9','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-26'),
('5599820a-b32e-4e51-929e-1442534ea63d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-191'),
('559d73e0-ce62-4ba3-a84a-472625091833','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',140,100,75,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-6'),
('559ec0b1-31ac-4954-86bf-5a82eba523e0','ea334a01-514b-4dbd-9960-a3963f52b611',0,0,0,0,'2025-02-09 09:51:30.901','2025-02-18 17:24:17.678','478188178-1-2'),
('55a74d77-80f6-47a6-b6c4-7740519d695b','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-23'),
('55a782ba-17d9-4ccd-90f0-dfa10bf17b97','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-190'),
('55a79c5e-7b1c-4c44-86bf-bafda2a4ddad','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-87'),
('55abc80a-676f-4363-af75-54a7e89a4c06','d790c4af-3dcd-4c2f-bac7-cd5516a41cfd',51,51,77,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-3-2'),
('55ad4c26-c76e-4997-a94d-9bbca3ffe344','8199fa34-7302-41aa-ac5d-0e057503fe32',60,75,70,0,'2025-10-06 07:10:14.815','2025-10-15 08:25:23.453','478749881-1-2'),
('55ad8208-0442-409c-8ad4-709237ad14cc','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-5'),
('55af69c1-4b3e-42d9-bd9a-eb8a07ab507e','fbffb9d5-c273-47e9-93ff-d898c5730075',94,78,85,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-4-3'),
('55afda74-1f26-4eda-8309-cf026c8b97b3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-168'),
('55b00d80-8fd8-4016-8599-461cb5e48c41','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-46'),
('55b3bcc2-5af8-49fe-a117-ba03a795edab','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:24.027','248135683-1-160'),
('55b3ed66-1160-4499-a297-539dc62a256f','5e4d8700-ecec-4c1f-b393-843da9941edc',0,0,0,0,'2024-07-20 16:33:35.781','2024-07-25 21:24:38.399','9824380-1-5'),
('55b5192b-95a4-4829-8360-09701a4ce68f','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-35'),
('55b5b80f-c669-4fd8-9bf3-ab465f175410','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-4'),
('55b67ce4-c8e7-4c91-8d38-996e98346395','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-2'),
('55b77fa3-9648-4849-8bcd-eaf3da0338ab','c98f6188-56c5-4870-be97-be71cf95f62e',28,16,210,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-25'),
('55b84a91-d1db-4e78-932c-e3dd49fe0917','6ae0233f-f2c2-44bf-9706-7274e4c923e9',53,77,102,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-10'),
('55bd4950-72be-4620-96d6-7a3dc7249477','55155cc4-3303-4c8d-8138-cd049d9c0cad',33,33,8,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-3'),
('55c0c55e-3bf9-4b4e-936a-16fb06abc495','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-140'),
('55c22041-7bdb-47fc-8ee4-9c5205ce2d63','a5626ae2-9a5a-4401-9095-a368c22814f1',31,207,17,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-8'),
('55c64a80-c61a-44f2-b608-4915c2934c8f','0e92c59b-93d0-4308-91ce-3965bb186203',67,16,8,0,NULL,NULL,'428180919-1-10'),
('55cb7099-2f27-48d5-be3f-f8c5c54f1f2d','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-17'),
('55d07e96-5eab-4efc-a1f1-3e88239801c9','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-83'),
('55d54d66-39f8-42d6-891b-30b87c15fa3f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-64'),
('55dae6f0-b756-45ec-b22f-5b7c1d7f6522','1f388c89-3645-4f72-9cfb-ca1d6893010b',103,56,80,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-2-2'),
('55dc669e-758d-45a7-9b51-b55139cf0cd1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-42'),
('55de4448-bd95-4c7e-ba8e-fe7c594f473c','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-30'),
('55e04944-4c0a-4b14-a324-754e87a8a517','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-67'),
('55e2616b-a0bf-4a92-a950-c2c8eb2b0a6f','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-4'),
('55e487d3-178a-4945-93c1-f31050c799de','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-7'),
('55e68100-4abf-432f-93e8-c7181c4d0218','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-1'),
('55e9ded5-9584-420a-aab9-01c1efa19af9','b63291e7-9a9c-4942-9e5c-792e1279180f',12,61,257,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-6'),
('55ec6fbb-2747-4249-8c02-30696ef94872','9d661c6f-2567-4168-935a-9adb098cdcab',105,103,66,0,'2024-07-02 08:19:59.016','2024-07-18 07:32:30.957','614474485-1-4'),
('55ee50e1-677b-439e-bb30-9c27c9eeb481','24b9c539-03c3-4e93-afd7-933754f75876',0,0,0,0,'2025-05-28 19:09:20.666','2025-06-04 07:24:26.939','644584641-1-1'),
('55f22e11-b082-4da0-ad05-ea0ec08e57e2','6f387dd8-0e1f-4464-b3b9-04f820af1d90',50,81,30,0,'2025-06-21 04:34:12.471','2025-06-27 21:58:31.744','613990020-1-3'),
('55f445e0-5dc5-45a3-8a47-f8abba3499fd','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-38'),
('55fad399-36eb-4f43-b99e-8b63334a15d8','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-2'),
('55fb1be8-29dd-4474-adca-cf27d03ac69d','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-18'),
('55fbeefd-156c-46ae-885d-53e0d27eb320','0ca7b5c8-7608-49bc-9057-d56d835fbea5',35,14,210,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-11'),
('56004042-d7ff-43e1-a638-b971784ae4d8','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-11'),
('560188a6-804f-4589-ac0c-7a29b7df47ee','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-12'),
('5602a4a4-8717-493d-9b19-e0808943d3be','7f6a1eed-b929-4891-9958-a6e2765efe22',53,72,102,0,NULL,NULL,'127991361-2-3'),
('5604ad73-cf8e-4c95-8c0a-dce86d036004','14154f1c-2788-4f7f-b6f1-b56e0a99f973',7,49,50,0,NULL,NULL,'745505506-1-2'),
('560716b3-2a17-4d16-9b35-f44b8bdaacb2','2777fe15-f59b-4ad7-ad0f-3b140f36580d',55,77,102,0,NULL,NULL,'598604443-1-2'),
('5607b1fb-02b6-4baf-865e-b48d615061e4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:24.654','248135683-1-141'),
('56084587-2c07-45b9-bdcc-0ff0dc662443','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-45'),
('560d2f03-6c90-43ac-a067-6fae718d629f','71481b47-e566-49d0-8ede-33e07961f2bc',52,96,58,0,'2025-08-21 07:15:30.112','2025-09-04 21:03:50.131','437880840-1-1'),
('5615ae49-1746-4ec2-b7f3-bec133bddb5a','cc5bb1da-ef5f-4230-9665-417835fd707a',51,51,46,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-4-1'),
('561a6c77-eeb8-4fb9-9e6a-ee151d4d7073','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-8'),
('561edfb3-b333-46cf-a222-990b0815cffa','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-38'),
('561f84a4-5a1d-4ab0-8f86-18a0c7bc6acb','719f1147-b9ed-45c5-99c0-b1467885c18b',43,44,78,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.166','371514006-3-4'),
('561fcd00-4bf7-498a-9d06-3b8c014ca1b6','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',56,5,49,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-11'),
('562127ad-aad8-4d54-93ca-6913369339ba','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.956','248618650-1-24'),
('5622dd93-933e-46c3-a716-4a01c26414b3','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-10'),
('56255bff-4c93-4028-9980-64c95a7eb207','b07ae607-4e74-446a-afa8-eacbba5e3668',82,100,57,0,'2025-10-20 04:18:21.633',NULL,'312422305-6-3'),
('5625f268-bad6-4b0d-aa5f-2780fe688098','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-5'),
('562a3754-9887-472f-ac1f-c1fe4677e2d7','aaa8d3a6-48f2-4ac6-8cde-f805e401d89e',51,51,78,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-2-2'),
('562b7766-0a33-4a10-9e65-4a0186cc9d75','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.611','2025-01-06 20:09:43.908','745398311-1-2'),
('562ea4a1-8cf7-4a9c-9ea9-ac3b59c6abe6','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.959','2025-01-09 16:51:53.934','735329890-1-22'),
('5638ad09-244e-4fed-8ab2-5f118d3305cd','5e1b92c5-0a78-4535-ae47-a667ddc85987',211,92,6,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-1-3'),
('563cd748-6e6d-48ac-8cce-75d6816c22d9','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-8'),
('56406a3c-64b5-47e4-9fa4-b6500097529b','8e9264a7-ea7b-413f-be45-63b66a8c7b11',100,80,205,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-2'),
('564086ae-89a6-4493-8150-6d0b050edc9b','93682f23-197e-416d-95a7-a04da3e2c257',95,95,65,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-2-2'),
('5640b850-4c89-423e-aefd-728a2e770a0e','7defd633-f7ab-424d-8029-028d1b045752',66,48,62,0,NULL,NULL,'501119446-1-8'),
('56442f25-37c8-4961-b62b-4a5b46941baa','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-13'),
('564465d8-3102-4dac-b2d6-aaf74e6ea3de','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-31'),
('5644d67e-801e-441d-8e9f-739e9808bbcf','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-16'),
('5645dbf2-8573-47f1-8733-fa971e6f6834','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-20'),
('564660df-d7af-48c4-8e4b-cce282f580af','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-17'),
('564662f5-05a5-4958-b6b8-1991fcdaf7a2','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-96'),
('56479a03-6956-45ff-8760-33bdfbf774e4','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-149'),
('5647e65e-69cd-4dad-8490-b4f5c43ba030','e2c96f59-d7d0-4a7e-957d-cc8dd004bf39',78,90,42,0,NULL,NULL,'59884902-2-2'),
('5647f8d5-4b5c-424b-b735-95c8ac8b22dc','d0f5d27e-51ff-470c-bc49-8beb1dcf3ff4',76,127,8,0,'2025-08-14 08:21:35.471','2025-08-25 07:10:53.527','982978293-2-3'),
('564be7c2-0f4e-4f67-ab76-250b1ab04f38','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-130'),
('564d29e9-ee11-4d6a-bea5-c640c00df3d4','335d49bc-ae8d-44e8-8d64-73df7dd93d77',56,81,101,0,'2025-06-27 17:12:25.013','2025-07-07 06:55:23.557','976680764-1-1'),
('564ea422-40db-4cc0-9c27-a8dca144d091','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-11'),
('56528ac5-9000-4e57-9020-9fa0c3b40438','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-67'),
('5652daf9-179a-4b8d-b129-e4f3b52785dd','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-66'),
('5664f4e5-9cf6-4de1-bc7e-ebba1dd74a39','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-3'),
('566820f6-973a-4be2-bfa4-abb371412ec1','7a3edb87-0b6e-4717-b4d7-94bb1c49be21',100,70,233,0,'2025-05-09 18:43:46.889','2025-05-21 19:37:59.629','371494792-1-2'),
('5669d172-bb7c-452c-bcba-e434ffc60d5b','b574a061-f2e4-48ca-bb05-af8813fa6286',61,60,90,0,'2025-09-26 12:39:10.670','2025-10-09 09:24:57.388','644803178-3-3'),
('566ac1f9-aac3-4bfa-a07a-035e4197e650','c8a2a15e-4279-4904-a725-a9d44306abad',300,106,10,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-1'),
('566b5eaa-7226-4a4b-96b0-cff9dcb6d35a','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-4'),
('566de881-8e51-4678-bb01-4ad71ebbafe9','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-4'),
('566f0b88-1665-4ee6-81fe-e7cce476b158','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-3'),
('56709ce1-063f-4ee2-ab03-394482ef714c','81610c29-0bfc-4279-b20f-0e7aaa372942',73,54,100,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-2-1'),
('56711408-b27c-41e5-97de-1ba0ffe27434','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-9'),
('5671791f-75e9-47d8-a78b-461132b9098d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-182'),
('567213e0-b6bf-41b5-a331-acbddae0e74c','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-25'),
('56747e36-5b1e-4b64-ac3f-10687968903d','78011c77-f958-4fc6-886f-f80a74dac952',233,96,70,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.764','371913094-2-1'),
('5676bcec-9d20-4e3f-97a2-956eabe3cb15','8d8f5e69-a32f-4bc3-91b6-8db313adc977',103,75,245,0,NULL,NULL,'504960523-1-1'),
('567a48a7-a956-493b-b2b1-9a76bb294d3a','86e5956d-750b-4aa3-8f00-53e2db7b9f65',200,163,29,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-16'),
('5680dc57-5bf2-4127-a736-ed5d0cece37b','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-18'),
('5681de2b-348f-4120-b32d-dc01ceed3859','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.297','223444495-1-81'),
('568266b7-aee4-4cad-87c5-0ae032c40872','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-4'),
('5684cfa7-b29b-4ead-9c7a-b02ae771fb9f','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-11'),
('5687855d-6f23-4dc1-8eb6-2f2994c01613','9a74deda-3652-44ca-8fa0-b3116126f14c',68,192,95,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-2-1'),
('56890051-4d5e-4408-a839-99afad10f2a8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:26.065','248135683-1-168'),
('56892a59-8981-4d9d-8bc2-643d6cef7d6b','0263f7f0-6c1a-4beb-ab78-25d69142647c',50,9,212,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-13'),
('568b09d5-fc83-45bc-ae70-def9aa55dd15','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-243'),
('568b5db2-2414-403e-b04b-79f56d44bb02','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-10'),
('568c4429-3db3-4bf3-97ba-29d328c64b20','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-66'),
('568ea3c1-fab1-44f0-880b-b0060b40c772','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-3'),
('5690c9bf-bd14-46b0-98df-7d66dc7c54b7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:03.771','248284003-1-33'),
('5693ad30-72bd-4cde-bf01-dc3fe7634707','c31d214e-54b8-4bd2-9ef1-5341759d62d7',140,76,7,0,NULL,NULL,'644563405-3-1'),
('56946122-05e1-429b-8549-4bc5404d6a14','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-4'),
('56956c72-5792-4687-8977-f063bca3e9da','77c075a1-c114-427c-b6fb-f1d092d89d6c',100,53,76,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.230','478928003-2-1'),
('5698570b-f42d-4530-8320-339d88a57e51','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-118'),
('569bbc70-a263-4dcb-a5f0-b70fc6c12092','4b51564c-325d-4963-87a2-4ba35ab8b434',160,200,33,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-2-1'),
('569c3c97-9a11-42c4-a728-56e92118cea9','9504c24b-6a37-4522-83ad-b302a5d583a5',63,5,219,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-13'),
('56a2195f-fafd-4b04-9d8d-1d61d5ae1b80','4301b768-4818-4e74-a6d0-12a33474f5c6',11,32,173,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-11'),
('56a8be3d-9f74-4c10-a35e-1514a472cb76','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',38,23,207,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-3'),
('56abab66-ba65-4a75-b809-c167f4f1a3c6','83b9571c-57fb-44d8-9d15-f074c343858c',70,80,70,0,'2024-03-14 13:50:31.260','2024-03-22 10:14:05.550','428647459-1-4'),
('56b540f3-80a0-48e0-8276-9812bd904179','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-13'),
('56b5b43a-8543-4307-8caa-97968a8109a3','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-47'),
('56b7046a-103e-4960-9410-3ab353cab102','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',80,52,104,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-4'),
('56b99b2f-c116-43ca-ab7b-8df8520bd25a','ceaa236b-3a68-4533-ad29-229cec3a8f6f',89,200,21,0,'2025-07-12 09:20:15.399','2025-07-25 10:49:32.407','486405325-3-1'),
('56bce7a0-69c9-41c7-813a-c7f088cbbb67','49b0262b-aeb4-40b0-bdcc-b5461a64c972',109,42,20,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-4'),
('56bd8641-5f15-4de2-a37d-16eb2a2052cc','abe73355-a72c-47ba-944d-cb6a15758ade',0,0,0,0,'2025-04-11 13:41:45.997','2025-04-24 06:04:58.668','904803845-1-1'),
('56be1a4f-ac2d-4e38-add2-ae9d6b8b7d8a','3badfe11-f9f9-4b71-919e-3999791add02',77,147,12,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-1-2'),
('56be6e23-cde9-49ef-94e8-465b485707ef','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-57'),
('56c04dc5-ad33-495b-a988-72a4834fdde4','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-71'),
('56c5b8d7-4d27-4568-9556-0d27eb766619','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-3'),
('56c8a4db-9fcf-41b4-8a6d-bdd0a933612d','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-66'),
('56caf325-9fbf-4771-8466-41f0437e1be3','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-23'),
('56d95402-931f-4366-8a01-aa2c7807a8b2','42781ec4-0202-4d59-947c-1921f95a4539',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-3-1'),
('56d97d6b-559b-4ebe-a31b-845a6547da16','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.298','223444495-1-198'),
('56daa583-efff-44aa-9cad-750e9e11106c','aea46c6f-d094-49c7-9663-2051def3cd74',76,132,6,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-3-2'),
('56dcd949-dd43-4f8a-ac22-3ef03370ffaa','1dd1c08b-81d1-4c12-a18a-1171b04b0808',74,95,95,0,'2025-03-27 15:05:42.380','2025-04-05 20:39:29.869','37197237-1-3'),
('56dd1706-1175-4fe0-8e62-67c7eeb0647e','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-77'),
('56de3ec7-7fd7-4b38-a020-a0f4cdc09a97','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-4'),
('56de4dec-92f1-416b-9ec7-f4d5dad492fe','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.444','570899680-1-94'),
('56dfdf6b-963a-4880-ac81-f0c9e56387de','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-19'),
('56e33eac-00a7-4a51-adee-c9c2be144b0e','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-65'),
('56e37806-5386-4230-a494-b9337708a373','546ad3d0-25c2-43dd-9443-e48b8e5b6530',20,13,120,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-42'),
('56e60f30-3188-4f96-8c78-b69fd04ca1d5','b44449c8-5efa-4085-bd2d-0a3594587af9',87,31,16,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-7'),
('56eb5816-4dfe-4778-af83-c8445d272a11','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.648','2025-01-06 20:09:27.226','221350993-1-6'),
('56efe250-01e0-47b7-8f6d-398e817e0769','ed097511-c426-4ff2-b940-1f98b2a1f4f6',73,53,101,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-4'),
('56f58075-a9b0-439d-a0dd-bd3f648a3e8d','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',28,74,57,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-2'),
('56f7710f-57cc-4fb4-80f5-69b8f28de747','55155cc4-3303-4c8d-8138-cd049d9c0cad',36,37,36,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-4'),
('56fbae0e-afb6-4be4-9687-cf3e7f0acabe','304740fa-6d96-4ea0-a997-094361062796',101,26,141,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-6'),
('56fbe8f2-4410-4917-bb38-38a5e9d4deed','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-16'),
('5700b6cf-bdc3-4513-9731-2ea901bbe87a','af69c5a3-87d3-4548-a650-720b69a4fc69',58,6,211,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-44'),
('570448ce-a31d-4fa6-97bf-b22a0ec21a88','c7711311-d9e2-44ab-9529-bf35ca0a141b',92,32,202,0,NULL,NULL,'613592756-6-4'),
('57046896-15c6-42b5-9d31-a5c8930fe81c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-63'),
('57060f7d-ba0d-4ca3-ae24-952392c4638e','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',151,80,90,0,NULL,NULL,'501168544-1-2'),
('570b7db2-50b2-485c-95fd-8afded2528af','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-1'),
('57133ebe-e1d3-46a7-a640-f4d0d7ecafdf','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-52'),
('57178d1e-668d-4b65-a528-799d431d3798','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-13'),
('571a7678-195a-4bea-a055-847d5b9dba3a','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-5'),
('57201b8d-0796-4563-991f-e82d7c702504','53346280-587d-47aa-9b0c-285594193bfc',74,124,5,0,'2025-04-30 14:29:02.569','2025-05-14 06:37:16.241','221947357-1-1'),
('572279d6-8f32-4deb-9277-30e8dc46ca08','55155cc4-3303-4c8d-8138-cd049d9c0cad',55,55,123,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-5'),
('5724913e-c8ec-4cc7-81e5-eda015306a7b','138edf36-d166-4335-8560-d9873886e31c',72,50,10,0,NULL,NULL,'745189997-1-10'),
('572924b0-8ee7-407b-a624-686bb9a3c604','0f616d2b-ac09-4760-90c7-afc7c0de4d7c',7,87,87,0,NULL,NULL,'644104537-1-1'),
('572b15ae-b8b1-4569-9ac7-9503cdc2882c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-3'),
('572cd37e-4e8d-4fec-9d88-a5188d3e0cfd','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:53.644','248135683-2-47'),
('5730ad01-348a-492d-8bb0-0800ed22b0a3','d84ba499-6aea-4ff0-b177-6f8576e1fcdb',235,97,70,0,'2024-08-31 13:26:36.284','2024-09-09 08:43:26.643','982868918-1-2'),
('5734f975-e253-4405-9b57-ae5464497695','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-22'),
('57352bbc-218f-4248-915a-c4b8f1a9c723','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',232,32,42,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-3'),
('57358628-f021-49ab-a460-f67a832f7dc0','0009aeec-e682-465c-b701-363a3ef377a6',95,64,100,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-29'),
('57394c0f-0a75-458e-adbe-a52c18047fa6','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-5'),
('573cb406-f248-43fc-9d5b-78882d7fd499','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-3-2'),
('573d7dbd-fd11-4801-9eff-f42c41542c7c','7657b93a-6861-440c-ac4e-1ea2919764f2',44,44,74,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-2'),
('574159da-640a-410e-8ac1-175f599ad048','dbe79bd8-007b-466a-bd69-a3871043b2cb',180,97,7,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-2-1'),
('5743bff8-7963-42e3-9750-6430936dcbf2','1f5509c7-65f9-4d35-999a-3947d455485e',90,70,90,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-1-1'),
('57468276-c2f6-4fd3-8587-23ed4182a13e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-142'),
('5747ff16-e4bf-42be-aa07-2feea195fb81','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',96,98,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-2'),
('574ab042-c1ec-40c2-8726-a449098b156b','4bd3461b-c38f-4c43-90a6-39aacd24cc83',57,57,25,0,NULL,NULL,'976462703-1-5'),
('574f3e4d-a992-4309-ba69-e1dbc252cc75','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',195,60,5,0,NULL,NULL,'428413605-1-7'),
('574fccaa-4fc1-4555-9425-95e4426a2771','778350cd-5627-457e-9aa3-334a2ccc6781',93,65,114,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-3'),
('574ff8f9-f0c8-4c63-82c9-c6591c4b1897','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',109,51,14,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-5'),
('57527d1f-396d-4def-ba9c-463321308be6','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-92'),
('575315d6-4153-41de-b501-4ff3375508df','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-100'),
('57540ad3-2363-4262-b7f2-01dcefdcf56c','b153c580-1fa3-4d05-aed9-d033117f4c17',76,57,101,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-4'),
('57546d35-10fc-4889-a445-7cb4cba2f272','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-5'),
('5755cf1d-7585-4c91-8653-042116b5425a','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.419','2024-08-31 18:14:27.946','478124503-1-2'),
('57595c03-f065-4d7e-aef4-c401cb7456cd','6c0dd84a-6c98-40d4-b2e2-bf00e6f5c44e',96,204,30,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-4-1'),
('5759dfb9-66e1-4126-812b-2bfaa6843c6a','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-7'),
('575cff38-f75b-42bf-8028-2baf2cd5e037','7c09f776-ffb6-47c8-8828-61389547804e',85,95,230,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-24'),
('575f5954-b8ec-429c-bfcb-5fc0e3f87a58','51d9a1e7-691b-4785-b89d-ef4906698195',73,122,7,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-1-1'),
('575f8922-6b04-463e-b307-b4eb2298ad66','476b43b7-da3a-41aa-b89b-f5010f41f08f',96,115,70,0,'2025-10-25 08:59:07.177',NULL,'598445423-1-5'),
('576359e5-961c-46ad-8607-09d4279927ca','8200af89-453e-434a-a4db-de08e8cfe818',80,65,95,0,'2025-06-27 17:12:14.763','2025-07-09 11:39:56.374','517365072-1-2'),
('57665553-f212-45bb-845f-5f1e26d592b9','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-41'),
('5768e229-2c7d-4a6e-87c0-6a02a8cc68f6','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-12'),
('576955ad-16c1-4c4e-bb52-9b76dfcdc529','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-8'),
('5769b7e5-9998-4ab4-bf89-b7fb58471b8a','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',53,17,56,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-9'),
('576c7d33-ed08-450e-aebf-99f00fceccd2','e163d910-3bea-4675-a310-ead7083f02b8',200,140,30,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-2'),
('576c85c3-9248-429d-817b-92f15cf60d44','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',180,200,34,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-48'),
('577821d5-c48e-48e4-984a-517a9cfe1922','1295e4e3-5188-43f0-8021-ac4bfa726bd8',245,105,75,0,'2025-07-12 09:18:59.900','2025-07-21 08:00:02.727','982163675-1-1'),
('577ac6a8-cc16-433b-8882-2a617cdc8956','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-2'),
('577cba46-3192-4cc9-ab75-6beb83ede8e3','a5626ae2-9a5a-4401-9095-a368c22814f1',105,53,85,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-9'),
('577ea7f5-5bc6-4e57-85f4-d5f28bb0c2b2','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-25'),
('57815033-406a-4991-94f6-f64db526d1cb','f9e5aa36-ee37-4651-8167-ac131f8c07fb',0,0,0,0,'2025-03-27 15:06:11.475','2025-04-05 20:39:01.048','745818939-1-1'),
('578312ae-76d2-43cd-97a1-3b39bb198b44','3c1c7892-5b0f-43f6-a6f0-8f933b1d36d9',75,105,228,0,'2025-04-30 14:29:06.540','2025-05-13 09:06:07.341','910187142-1-4'),
('5786cbd9-f496-4ea7-89cc-f2da14fec15a','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-2'),
('5787b2f5-31e3-410b-af98-8e212dcf2809','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-57'),
('57888abc-82a8-48c0-a973-cb98745a5b5a','ca2466d1-9a83-4f57-8f76-f5ddce302e04',21,155,141,0,'2025-06-27 17:12:11.182','2025-07-14 06:05:05.686','382253716-1-12'),
('578b6564-2250-4362-8970-ab5284c46872','d83c40d1-4df5-4c97-bc83-28837db95b2b',54,65,18,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-26'),
('578bab79-7c31-48f4-bcfb-5ec9fae535ad','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-158'),
('578ee724-167a-4bf5-b761-60244cb7f8d0','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-15'),
('579252b6-2cd3-41fc-8dd7-e931a2db5ddd','94265c38-053f-43ac-95e5-6d1b08ae3c22',245,90,100,0,'2025-03-27 15:05:06.419','2025-04-08 15:35:11.106','517887763-1-2'),
('5793253b-33c8-4832-a070-fb857e93589f','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-12'),
('57957dd5-7d0a-43be-9fc2-7a7590cfa3c4','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',100,188,8,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.764','745873539-2-6'),
('5796df78-9573-456d-9efd-6242acadfab5','df713518-2930-40b6-8d4d-ddc4bcddbec8',235,96,76,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-4'),
('57986088-cd19-4384-b056-2d92a2b7e058','8b16ecc6-bcbd-4d67-9bc7-fbfeea2940b1',75,48,93,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-3-1'),
('57995b93-902e-48a3-8e5f-233150168398','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-5'),
('5799ec7c-1f94-4c00-8341-4b76cfabd0bc','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-14'),
('579a6795-c355-41f4-9734-4a5d45a59ba2','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-72'),
('579b0781-e8a2-4a4f-84ff-ccc2b407cc3f','a7301044-68cb-4760-97a4-a179f6e13b28',96,197,6,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-1-3'),
('579e1e93-1b98-41ea-b046-6a1e9fb103b6','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-6'),
('579ecffa-ba5b-4c0b-9f49-cbd6edc8b100','53356ef7-7c3b-4558-868b-c1552ff1d067',95,95,70,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-2-3'),
('57a2932c-76da-46b0-ab12-96c69824e187','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-18'),
('57a34182-ed68-4307-91de-a0310e9470f9','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-66'),
('57a620f4-8500-49ce-8444-aac3409a5aa8','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-2'),
('57a6a4cf-0b28-4659-b17d-2969bd4a47db','e67674ec-4f16-41f6-832d-4bdbc7afcc39',0,0,0,0,'2024-09-27 14:05:53.006','2024-10-07 14:03:47.331','248864808-1-2'),
('57a7538f-efd4-46f4-aad5-277f6493fdc8','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-6'),
('57a77771-fdd3-4d63-b722-4d0b44c47df2','7852e0fb-6de3-4daa-9882-f74fa24083a7',90,29,200,0,'2025-05-14 17:03:44.747','2025-05-27 07:54:03.769','613464926-2-3'),
('57a893ea-2e48-4659-8024-334d41d53d8f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-188'),
('57aa00a1-037a-41ad-8234-8b3eb4825953','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-23'),
('57b0247e-4381-4f3b-b0cb-ba8475346f7f','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',130,100,5,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-3'),
('57b0d7bf-be5e-46af-8094-5ebd0e075e2c','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-8'),
('57b37667-87ce-4a16-b4c1-9868d0e416b3','0fe6d0bb-346d-4029-b0c9-5d01dca21872',0,0,0,0,'2025-02-03 18:18:32.727','2025-02-14 15:00:22.989','478370539-1-5'),
('57b41786-4d50-4e92-94d5-baa2980046f1','808a4f1b-793f-4a15-808d-00c26a26c166',57,20,87,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-14'),
('57b45a57-2c2c-4307-b393-5f4b46e58741','5615ae9c-cc16-4fb7-83a7-8c7fa5679c81',0,0,0,0,'2024-06-08 08:00:14.381','2024-06-20 20:16:27.107','428160643-1-3'),
('57b5c495-12a7-4d7c-8c7c-d0187676079a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.298','223444495-1-226'),
('57b86896-fd65-4723-b48a-db3daf4f6594','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:02.136','248284003-1-70'),
('57b961c1-6903-412e-8cca-d9f97a00bfc6','151b19d9-92ed-4dd5-aef9-d976e3d09152',18,37,95,0,NULL,NULL,'745436157-1-3'),
('57b9924e-0776-414f-b262-635d342af692','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',200,160,3,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.069','412586204-1-67'),
('57bbe28f-7d1d-4523-8ca3-fa24fb6b12e4','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-26'),
('57c1b462-999e-4f80-abd1-69447fb70cf1','81b00513-9ac4-4aef-8fee-fb279e70ca3e',75,55,98,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-5'),
('57c48442-dc0e-4d93-93d1-90ed1e8372c3','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-8'),
('57ca38f8-04db-4b39-a1a5-1d308fc948a4','a577ba46-b93a-4b80-a80a-51dacd8e6d2a',14,106,188,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-4-1'),
('57cba342-fdd2-434b-900a-0d5b3669a31a','96449af3-c272-4a90-b77d-0790552dd455',75,95,232,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-18'),
('57cce03f-52be-41d5-9b7a-78936f8441c0','b78519ec-4b79-400f-a709-a1f09256d30d',44,129,9,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-1-24'),
('57cd68f5-70b1-4f5a-b339-04e183b2587d','39e88a96-6243-4852-a38c-9846154a9d45',80,70,70,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-1-2'),
('57cfcb98-1c86-4812-8f2d-9ed61eff858c','d32b552c-b92e-4e30-9bd2-aacbb0b4e77b',110,57,82,0,'2025-04-30 14:29:04.719','2025-05-13 09:06:30.362','745291553-1-1'),
('57d20cf4-4094-45b5-9dbc-ff19a15999f3','b6319fbc-ac5b-4323-8326-06724cade598',85,90,80,0,'2024-04-08 08:57:41.781','2024-04-29 09:07:28.433','982984016-1-2'),
('57d2a582-399c-4e10-9e79-37b151c8a5b6','bd176b24-f129-40d4-8c33-6b35eded0fad',43,19,60,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-3'),
('57d31a0b-aff7-4805-9b5a-dc583622f539','e2f7afec-2053-4563-b82e-d7330ed835e8',217,95,66,0,'2025-08-21 07:15:05.662','2025-09-03 05:42:42.939','437835103-1-1'),
('57d6067a-2eb7-4fdf-95f9-3716ac2418f1','b8e84144-0db8-4892-9f43-56f021cdae8f',160,200,30,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-5-1'),
('57dcbe4d-740f-48d3-87c4-519ab673185f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:08.015','248284003-1-43'),
('57de4360-2ce6-4579-8fdf-99482d79f04c','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',95,75,90,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-2-3'),
('57e1cf06-c154-4253-a515-30cbe19b0614','2eee4732-1804-4c17-a865-bc66f2ed3520',5,76,115,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-2'),
('57e1f228-4f99-4a23-b89d-be8624c71b4d','0756d756-3ebb-46ec-bf88-18b98d2e8a63',52,36,70,0,NULL,NULL,'011548428-2-2'),
('57e1fc4b-5172-4cb8-84cc-b5453502ca69','83e81175-cef2-4f5e-adbe-8ca02a747efd',57,78,101,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-4'),
('57e3a604-852c-482d-8d42-59eecb9f1c2c','42781ec4-0202-4d59-947c-1921f95a4539',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-3-2'),
('57e4749c-63c9-431e-b9e0-b94d8b0b1298','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',47,12,214,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-3'),
('57e476b7-43d8-4dfc-ab63-8507d5e96435','ddf610d0-9aea-487f-b0f3-3e66ddc80ad7',0,0,0,0,'2024-05-08 18:43:20.667','2024-05-21 18:45:51.098','478202878-1-1'),
('57e9a97a-23a8-4bd1-a8f2-25a2ee081746','69acd97e-52c0-45ae-adf5-ee013e52776f',96,7,182,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-15'),
('57eb46fe-6919-47a7-b487-99794010a647','02b555c2-2445-44f3-9074-77fced684cb3',97,143,65,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-1-3'),
('57efffc5-dfaf-4e38-a0ba-cd9a9659b0bd','04791454-cdb4-4c8a-bf80-d6f2c33e4300',105,185,13,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.319','338411614-1-2'),
('57f8c251-fd66-416c-b644-29c98ffbd773','93d194c6-8c22-469f-9141-d04ae150353e',82,57,110,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-2-3'),
('57fa19d9-8bc9-4c14-98f1-046e685cf4a3','b1cfee3f-4b3e-458d-b167-9e1d49c2621b',98,122,65,0,'2025-08-07 16:52:59.120','2025-08-19 19:34:06.860','745431846-1-2'),
('57fa8898-2ce9-4768-885f-b59aef5af514','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-29'),
('57fe65a6-4ec6-4358-a10c-6b71dff36f11','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-89'),
('58000c72-1007-4a09-a57d-df3636c4c043','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-9'),
('5801a6e3-6092-44f3-a987-5fc4b3576060','5b453805-1a54-4050-9ab8-c37c7500f0ae',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-2-3'),
('58024e61-5c57-4fce-955c-8ecbc4af9bb0','351157cf-15d1-4ac1-ad90-0df56b569eab',93,93,80,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-4-2'),
('5802ded5-8dfa-4180-a138-90a6462aaa58','9e72249a-03e0-4070-91b9-57ec46ace228',200,93,83,0,'2024-09-06 12:28:23.889','2024-09-12 10:54:20.815','455460659-1-3'),
('5808a62a-6684-40b5-bb03-2b456d149d13','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-2'),
('5808b21a-215a-4fb0-87fd-b8ee0c15ff5d','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-6'),
('58097f1c-a1ad-4f14-80bb-185f77967304','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-11'),
('580c4ace-f7d1-4dec-b326-c79caa61aff2','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-41'),
('58124098-b5a5-4488-a71b-bde3bbaf1854','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.866','2025-05-07 06:08:12.702','412485805-1-3'),
('58156431-1146-4064-8b24-220657b59afd','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-15'),
('58177e86-c9f7-4043-822b-c282b3d2cb2c','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',88,101,27,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-3'),
('5818e568-3fd1-41cd-8296-b63aa91ed0f8','20a73c4e-790b-494f-b4a7-c61766021e4b',18,15,210,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-5'),
('5819d0f7-1d21-42ed-b238-72bbe3133ece','04dff17a-2b9a-4f35-a082-5684dfe5706f',205,45,6,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-6'),
('58264286-fd03-401b-a97a-bfe4e54e43e5','3e68a7e1-b64d-4ae8-830f-cb72c4eec04f',70,70,47,0,'2025-10-09 08:39:52.750',NULL,'011940661-2-2'),
('58266a1a-26b9-48f1-91cf-e8ef733046ce','429b3448-0e29-43d6-8ad9-a760a9c747f1',57,76,101,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.990','675885408-1-2'),
('5827913e-4dfd-4a24-818d-6a736036310e','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-50'),
('5829def6-0553-4fda-9f76-cf0d6e9b1446','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-27'),
('582cb0e7-1e41-4b20-ac5f-2827e88a84b7','7e89be5b-8c27-4449-8aa1-7cad96813301',90,240,90,0,'2025-10-02 06:45:52.445','2025-10-16 15:47:14.751','428391947-1-1'),
('582d34ee-734f-4cf0-82e7-3a5f9626f5f6','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',15,2,176,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-16'),
('582dd275-2ca2-4db2-8bd7-ee28802a987f','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-6'),
('582f7e37-e43c-4967-9acf-01e7e16be48d','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-8'),
('583166c3-8dbb-4e6b-ae22-befee9675405','bf778fd6-13c4-47e1-9120-ab8609b766a8',51,51,77,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-4-2'),
('58318320-22a6-4617-9fc3-adaf92142c73','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-5'),
('5833ea7e-0c2e-4546-a349-35a7b68c9ea8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-60'),
('58359d20-f894-4316-9772-3dab4e0b89da','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-4'),
('5835a98c-fb96-4a78-8137-63713f29b893','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-26'),
('58389d15-141b-4f4d-bf9c-189dad03021f','5cb082f0-4973-4f83-ba7d-550b088af234',85,64,67,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-1'),
('583a1366-733a-4c87-8f9c-5eb93a1fff82','9ab6b9aa-9d46-425b-9821-7a56194072cb',0,0,0,0,NULL,NULL,'655419413-1-1'),
('5842502a-90ec-4327-b579-7ef24eb05345','8ff98b27-68cd-48ee-b052-74aac1b70886',32,46,75,0,'2025-10-09 08:39:52.751',NULL,'011940661-7-2'),
('58474e46-5519-440a-aa21-f3b44a1924ac','3d059bd7-f20e-40fc-85ae-9f5fd41c6087',52,67,80,0,NULL,NULL,'371797202-1-1'),
('584860f3-8e81-48c0-b957-f47aa1f01e09','632338c1-7da6-421f-99e7-3499262dffe4',80,70,75,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-1-1'),
('584afcea-6003-43e7-90ef-e433b8efc469','ce0bc20e-e38f-429d-9313-f5c2e8c01178',51,52,70,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-4-1'),
('584e702a-a374-48cd-b3f4-d9fb359409db','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-16'),
('585075bc-6ab1-4a61-b006-6d6967447aa2','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.138','598463425-1-6'),
('5853e68e-12f4-4c9a-9fe0-27d91fcfe710','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-4'),
('58543545-90a1-408e-a6b0-30ab6ebb1b2b','b8e1c00e-2430-4417-9a2f-f583e3a37b18',96,167,15,0,'2025-04-15 16:01:32.250','2025-04-26 17:56:06.990','613786429-1-5'),
('5855fa10-8902-4605-8259-6e7fdad26788','6302f68c-26c4-4a31-853e-80b9d1ba59ee',95,85,5,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-15'),
('585b686d-ab12-44ba-9763-b0606e51631c','e54055a2-3c9c-4738-a808-7a4a31877ef1',90,67,9,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-15'),
('585cd579-1ad0-4ff3-9d02-683d2862e457','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.054','2025-07-25 06:56:26.352','735792949-1-6'),
('58600238-27dc-4092-baf6-485ab4629068','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-15'),
('5861c163-98fc-4ab6-829b-d92d30c10045','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-1'),
('5861dee2-4a65-489d-a828-1dfa5b77a108','d1833d5a-ee89-4250-8013-2e537cc62ee3',109,35,181,0,'2025-08-27 19:40:14.969','2025-09-04 06:16:31.245','614536111-1-3'),
('5862a34b-7c44-408e-a06d-e7367dee57c1','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-10'),
('58639945-c5a8-44af-bf23-d3544801dcf5','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-7'),
('58651dcd-a6b0-4b81-9e74-6ab1416b4a75','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-7'),
('58659145-fec4-4e99-8988-b49e0e647a9c','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-3'),
('58671a4b-1c73-4b7e-b55b-2613d6c1002a','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-1'),
('5870363e-52e2-4d25-ad40-a9742fea1b1c','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',44,40,40,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-14'),
('5870a57d-f4a4-45a2-9849-a4e042b79c38','afd23420-c1c3-4468-a9b1-5a8f4274d064',48,10,204,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-4-1'),
('58745e3c-ee1b-47b8-b6c2-0e95eef800b8','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-7'),
('587834fc-8c74-470b-a93a-f5f47bc8405f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-26'),
('5878992a-931f-4834-865a-031dae5128cd','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-25'),
('587b0ebc-72d4-4b58-8bcd-092e417eff3e','b52c782d-173c-4921-91e0-83bad837ccef',43,43,78,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.753','371998665-3-2'),
('587d5827-e61b-46cb-9437-1059061e10cc','aecafc00-84c7-44df-a04a-3bccbbec6f20',60,60,90,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-4-1'),
('58801622-5461-4192-8e0e-3fd77fd1f4ef','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-12'),
('58804961-ef48-493a-b286-e72cd383318b','cacb1c7a-8595-43bb-b1ca-40b46c29dc4d',80,94,70,0,'2025-06-11 13:14:43.208','2025-06-17 16:02:34.544','976765698-1-4'),
('5882f852-6183-4f2c-bb31-2f8871e9fdb5','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-1'),
('5883d09e-5b33-415b-a02a-2bfa8c739f49','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-3'),
('5886cffc-4d03-4c1e-bcfe-c8de6f6fdb97','04f841ce-9ab3-4610-9d1d-bdd9d9518084',0,0,0,0,'2025-03-13 12:21:24.843','2025-03-23 16:15:52.675','268615271-1-5'),
('5887774e-304a-42d3-88dc-8fc7f9f7b64e','a322199e-9388-4cdc-a475-2497cf269eef',200,160,3,0,NULL,NULL,'501589922-1-5'),
('588a06d9-cb80-4028-8a99-4a5b5a9d4bdc','ee1d8657-8b0f-401a-9ab8-400b6456fe99',51,105,102,0,'2025-10-22 13:06:41.295',NULL,'598719647-3-2'),
('5894c116-bef1-4e41-8b43-00e96eb68051','46d1512a-2bfb-476d-a224-9390f3e194f2',201,40,4,0,'2024-10-11 16:09:11.849','2024-10-23 13:04:15.420','412395565-1-11'),
('589617f1-862f-40da-bf7b-8ec95ace3198','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-121'),
('589b531b-5a30-4b46-babd-92ad46499a74','57127d94-6fac-4e1c-ac7e-d9e37f789e3f',29,29,75,0,NULL,NULL,'614364554-1-3'),
('589bccb9-ef60-4a00-8372-edc0bf8cc60e','fcf94972-9dfe-4f45-a809-b56685f0c411',50,135,137,0,'2025-03-27 15:06:16.395','2025-04-05 13:45:25.635','644107524-1-1'),
('589c7797-b14a-4a0f-acba-ba26f23c6557','b7fd8ab3-d7da-4044-9725-c8468ff2d4a3',55,82,101,0,'2025-08-14 08:21:35.471','2025-08-25 07:10:53.527','982978293-1-2'),
('589eed44-5fa3-4c5a-bd67-818cc3fa81c3','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-11'),
('58a2b7da-f5a1-419f-b82a-35c962436cbf','8a2e1aac-28d1-4f92-929e-a34cea96fcff',43,43,75,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-1'),
('58a46102-135e-417d-bce9-2deabac9e93d','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',80,80,80,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-24'),
('58a67470-655e-4bcf-bec5-80eaf5bd4589','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-2'),
('58ac9862-8f9a-4d88-b927-54688c6a454f','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-3'),
('58aed58e-217a-49e5-9de5-8a5b2d80f33a','78e96b5d-e785-4827-a870-bb88c819f8d6',0,0,0,0,'2025-02-13 20:44:18.368','2025-02-22 10:20:16.788','910291071-1-2'),
('58b09562-4f58-4438-8642-2cbf97164488','52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63',122,70,98,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-3-3'),
('58b16a3e-41a3-497e-8022-418c24040ac0','5713730e-9e2a-444e-8fe2-4b510ab6cee5',45,45,74,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-2-1'),
('58b4edb9-93eb-4341-9a4d-8ff41eba6cb2','5b453805-1a54-4050-9ab8-c37c7500f0ae',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-2-1'),
('58ba1023-26ef-44eb-83a8-ecaf7d5d760f','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-67'),
('58bc0e72-b02f-4da6-9cfc-b59b9634c1a0','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',63,52,46,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-7'),
('58bedd02-b6b2-4f09-b183-e39b85b2e130','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-15'),
('58c01780-4e1a-419d-8a52-54e4643f944d','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-68'),
('58c01908-bbe7-43d2-b443-ff67b6aa7f2c','ede9284e-0f42-4aa6-a16a-754961f9be43',73,114,24,0,'2024-09-28 16:26:55.303','2024-10-10 16:32:52.344','449197003-1-2'),
('58c0930b-c2dc-4da5-894b-580029f2de37','ddd56674-a4c4-44e3-94b8-0441ec7a9fad',60,57,85,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.326','221164226-2-1'),
('58c6eca2-bbee-4eaf-91c4-46c2092db714','ae2f16d8-65e8-4efb-b2a7-26877719b20a',44,209,5,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-3'),
('58c91460-2c0e-412d-a0a0-2353b781a40d','aaaede6c-998a-4b2e-af14-68241c67cfbe',0,0,0,0,'2024-03-31 17:55:00.055','2024-04-17 10:16:28.647','478125476-1-3'),
('58cd5dea-53cb-4675-bc89-8d0c2fc3ba64','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-67'),
('58cd9501-6cbb-4aea-892c-d15fe717bfea','587fc7bb-d234-4c16-8ef8-7a704c2be32a',73,100,53,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-3-2'),
('58ce458d-321e-4172-ae99-aa82698aec0e','6d3c54e3-0b3c-4bf4-bdff-b28c7ce0ec03',56,83,101,0,NULL,NULL,'675346042-1-1'),
('58d5d27f-bb84-4a49-89ad-ce006df9231f','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-7'),
('58d69fb0-1c39-4c40-b4dd-52b66909995c','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-32'),
('58d7174c-0ca6-4a5d-9ab1-08853e6f1dc9','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-11'),
('58d7a2f1-c892-4bed-bb20-a944f7d1a157','1868aea0-f631-4deb-85f5-8aa25773bef0',47,211,5,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-12'),
('58da8259-9265-4485-8ea7-e7d7154b3637','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.359','2024-04-17 10:16:12.696','248435862-1-9'),
('58dcb5ac-5c06-4bd9-a1d4-9370c122c53c','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-45'),
('58ddcd4a-6634-4196-bbe5-27fea44d16f2','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-19'),
('58de752b-99c5-48ed-a088-d25ac693509d','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,94,70,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.432','644520957-1-2'),
('58e11849-cb4e-43de-9b67-b66e1c44ce91','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-17'),
('58e3c9a1-fb0c-4478-a7b2-25049641bba7','6ec853bb-abac-4ef5-a04a-072663abe372',0,0,0,0,'2025-05-09 18:43:43.429','2025-05-21 19:38:37.567','745991962-1-4'),
('58e9a1b7-f6b1-4180-add1-f36183d879b6','80a4668e-063d-487a-8901-998c7c8fa9fb',52,105,78,0,'2025-08-22 20:28:39.971','2025-09-03 06:11:50.444','613528305-2-1'),
('58eab649-f773-43d3-9359-53317fe48610','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-77'),
('58edd0eb-7bb8-4edf-afeb-45e00c16dfd6','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-11'),
('58f89162-cffe-4678-b099-1ef9c9574845','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.861','2025-07-24 18:00:53.298','223444495-1-100'),
('58f9afdd-26f7-419c-8d31-fe31ce5395af','94458a15-6cfa-4c1a-9757-61589c04b616',175,55,48,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-5-1'),
('58fc309b-1db6-4901-9133-d9d5f953cfb0','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-147'),
('5901e749-63a2-41dc-8699-e3fc79505683','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-1'),
('59024161-dab3-49fc-a3c5-27e07890a9d6','766da20f-af1c-47a1-a9d1-61d9a22c827f',36,36,36,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.877','613809111-1-4'),
('5902aec7-94a5-49b9-82c8-1ce912623d00','9a0272fb-f864-42c8-89a2-8abe0cac90b2',57,102,83,0,'2025-07-12 09:20:40.358','2025-07-22 13:23:02.940','675799375-1-1'),
('5905191d-a5aa-4fe6-b69e-89240436b36d','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',127,71,23,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-9'),
('5905523d-dc67-4557-b55f-0e1e25941237','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-2'),
('5909d629-93eb-41c5-bf42-14942ddfc7b6','dd2cca48-6895-4e89-a0cf-e5c29b1a349a',0,0,0,0,'2024-03-16 14:34:26.862','2024-03-23 06:42:26.412','745524390-1-2'),
('590e8b34-c5fa-4de8-8f64-a4af51aadf44','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-6'),
('590ff431-8291-42be-b8ea-bc8b8e8732de','a545df6f-28a9-489d-b668-a448c88582d4',174,95,17,0,'2025-07-02 12:43:37.906','2025-07-21 08:00:51.719','371261673-1-5'),
('5911880a-e8af-4f97-94ca-b33c58bcfdb2','90f573db-bf35-4042-9450-88ca0e789403',96,100,70,0,'2025-10-22 13:07:00.774',NULL,'515829047-2-1'),
('591a0654-2922-4c0d-84c9-8e58803f0595','d1bf45f5-0074-4f90-aa36-647a6e5b5b53',98,202,7,0,'2025-04-11 13:41:52.989','2025-04-23 17:45:39.776','613853408-1-4'),
('591badbf-ca60-4e1f-8701-fb590463affe','03ad506f-f86b-4dbc-952f-52b01e2467fa',185,24,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-25'),
('591edb3b-19b7-4e48-ac91-7b36d8aa95f3','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-24'),
('5921d81d-a8c8-4372-9ac1-bae78967781f','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',45,45,75,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-5'),
('5922b7ca-8d14-4e7b-b661-9a3697eba76c','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-11'),
('592327af-ee8a-4197-abc0-da267e799b4c','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',197,40,5,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-6'),
('59244d76-57fc-4eaa-bb7d-f499007d7936','96449af3-c272-4a90-b77d-0790552dd455',60,50,42,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-9'),
('59286357-56b5-4d09-b763-214cfffa3820','b8721202-54f1-436d-bc84-f671bfc36fe4',250,100,82,0,'2024-09-19 18:27:53.236','2024-09-24 16:01:08.792','517827584-1-1'),
('592a5014-cbc9-49d1-863a-7add7f8ba2f7','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-50'),
('592a620f-ca8c-4d88-9125-23c2507b5fcf','21f98131-6f1a-474e-afcf-0edc5f8749a7',0,0,0,0,'2024-09-27 14:06:02.999','2024-10-07 14:02:49.696','750926872-1-2'),
('5931efd7-309b-47b1-9023-7c9b7d732743','6ec87888-8b87-4bf1-adae-d5b6742225d9',48,7,214,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-14'),
('59334047-f787-4578-a0a9-a12538bfdc26','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-2'),
('5934762d-b332-46c0-b158-d397fa033c33','01be5e85-2bcb-4117-9ad4-5f2afa75468d',90,80,80,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-3'),
('59395464-b3fa-4fb7-b602-520d1ea894e2','bc611bdb-d2fb-42fb-b735-3524b3d6a4fd',0,0,0,0,'2024-05-29 10:12:23.457','2024-06-11 14:04:39.030','412903351-1-4'),
('59397e9a-d56d-4bcb-816d-f45bc6ee0909','05ef3c64-c730-44c0-894c-1a748105fe1e',86,86,9,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.292','221190454-1-1'),
('593a431e-49a1-4d33-8b4d-364190df2708','7d75236b-0ffb-4e2a-9b72-d8f6af6680ca',175,75,75,0,'2024-03-14 13:50:24.592','2024-03-22 10:14:41.903','982744560-1-1'),
('593b9570-0724-4582-8b12-b9e4693221be','4869c334-4618-49fb-9d03-99d95654d12a',110,7,6,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-4'),
('593d6c60-0ac8-4e61-8030-907540f9faaa','7fce64f1-d9cf-4209-9183-021aff74eac4',42,43,75,0,'2025-05-09 18:44:14.646','2025-05-20 06:23:59.224','371429381-2-1'),
('593ee54f-9117-43b2-bbc2-d5a159a8af38','4d63984a-5ff1-4253-abe8-286bd84e3528',92,24,192,0,NULL,NULL,'478350685-1-4'),
('593f4358-6049-4aeb-b90c-134b68de0810','0a8285d0-d3db-4298-8e41-62c5429f150a',87,51,18,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-14'),
('5940dbad-6f2e-453c-8c56-4d367fd39631','b92e31e4-c5b5-4f66-97df-588443afb00e',43,43,75,0,'2025-08-14 08:21:37.460','2025-08-25 07:10:47.314','371529841-1-1'),
('5942ce38-9ce5-4765-a67e-8a41e433e0e0','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-120'),
('59469d43-51fe-43a2-80e0-dba935e2b201','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,100,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.912','524289921-1-5'),
('5946a5a5-ca6d-40aa-96bf-52f22d097da8','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-64'),
('594cf79f-fbce-41d8-9d39-bedc86860ae8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:27.465','248135683-1-62'),
('594e2b00-0f6d-4e93-990c-2ce9081ed962','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.102','478593603-1-2'),
('594e4b18-b80d-47d4-9009-df805b63fb88','d4f91387-af40-4672-a65c-7ea6e96f76b2',72,27,7,0,NULL,NULL,'478350685-7-4'),
('59515f8c-d363-4eff-92f9-313d394f6ef9','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-8'),
('59518953-ebea-4d2b-a8ae-2b480e0eb254','db7058ef-de6e-444b-b25a-dfa474ba7bcf',54,42,6,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.874','501981507-1-6'),
('595a1bbd-9864-4e6c-b681-08dd8a61f7df','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,60,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-27'),
('595db716-2884-4f0b-b6a7-aecaacb9dffa','19c6a32c-4384-451a-aaa5-dfc264ab827b',62,20,89,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-8'),
('5960f003-dfb8-4629-800f-fde3d5c7fa2c','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-31'),
('5961c4ce-241e-4ae1-bf21-aec311a86f23','73499d6d-d2d9-4c76-9e89-9c775fadaada',72,84,112,0,'2025-03-27 08:02:49.277','2025-04-08 15:37:20.028','81723596-1-3'),
('59621752-f85c-49a8-bfdc-0f69abd2cb73','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-22'),
('5963faa7-566b-45d5-bf02-ad9e0fdbb3d6','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-9'),
('5966184f-191f-4d04-bd31-c17783f3a932','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-6'),
('59665f57-335d-4778-8e7a-d3724eb6024f','5d66409e-1cf5-41df-82d4-6465db6f6598',100,75,75,0,'2025-09-18 15:49:04.451','2025-09-30 06:44:37.463','371155650-1-3'),
('59685223-a99d-4e8c-906e-c0a6f965c32d','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-54'),
('59692cd4-b6d9-47a7-9d38-4f74b183adb8','d5a7698b-6388-43e0-8603-5c9b362cc6d2',90,75,80,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-3-1'),
('596b2474-607d-4457-a96a-b8afcffd38f9','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-20'),
('59705313-cfdd-4a92-8a45-9dfac1124b48','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-111'),
('5973f50a-e42c-4688-bcb5-1e642b2c6ef4','6cef5b53-f812-4e21-87b8-9c3bfdc6543c',78,55,102,0,'2025-08-07 16:52:30.676','2025-08-21 21:29:19.691','598665171-1-1'),
('5977cae7-9224-4acc-8b87-f3ad7d1ef633','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-21'),
('59787173-0205-45cb-b3ec-77564dec8ea5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-33'),
('5978fea6-3cdd-4615-b46a-695a52452b01','140facd2-f55a-4a12-95ae-07ab47a00128',67,230,9,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-3'),
('5982556d-2700-4b81-a415-3b8c179b650e','c1a31a07-5113-4703-99ff-14d4a90ef1ba',69,7,219,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-7'),
('5984a6a8-1751-41a2-b89f-db0736b4bb1d','a5dbf4f9-afd6-4f1c-a387-07f0fc87d9bb',25,160,200,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-5-1'),
('5988a62b-7a27-49b4-ba11-fdce23b00739','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',0,0,0,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-7'),
('5988fe81-da26-45e3-b06a-db5fc5daa4f7','97f30c95-1381-4341-ab94-c74b11d28be8',88,96,80,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-2-2'),
('598c9ccd-1f04-4793-9041-949cfc0d5540','0027cba0-0b74-42fe-b82a-55806baf40c5',51,51,77,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-1-1'),
('598e3ad1-459f-4251-91f6-652c09b0292d','0009aeec-e682-465c-b701-363a3ef377a6',61,45,17,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-30'),
('59904cb1-ba31-4c1f-b194-94de941e1879','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-5'),
('59938715-0ac5-4339-874d-3e3490ca6514','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-244'),
('599dbaa3-103b-4e02-9f8c-26f7e38006be','2307cead-bc16-4ee2-aff3-8245c44ff256',70,99,99,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-3'),
('599eecf4-ff98-4cfd-9a3b-59563f493f1b','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-10'),
('599fc3dc-5ff3-4413-adaa-e7f2ff77de7b','5c487410-f906-4e14-a077-9f060026719e',205,98,52,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.268','703183067-1-6'),
('59a1500f-9445-46b1-b148-1c0ea73d1717','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-46'),
('59a1aa81-2daf-45d6-bb64-5ec0d13ad54e','c29e76a4-89ba-4143-8fad-01a2910620ee',90,220,38,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-12'),
('59a505d6-48fa-48f1-86e8-68eaf0bfea9d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-37'),
('59a55d49-3798-4a78-baa6-a26051ad99bc','71739720-3bf4-4e85-a052-44d40ca1db0f',85,100,230,0,'2025-04-30 14:29:27.263','2025-05-10 20:13:32.865','478662278-1-1'),
('59a68c58-16d7-40b0-83ec-f54d5e31c734','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-4'),
('59a8b9df-7e2e-4478-b70a-9bd31ecf94ab','bbc6d966-9d42-48e9-83e4-13afb85a7c33',8,52,61,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-2'),
('59a9bf10-0dec-48d9-b8a8-1385209c6ab9','899dcf64-71c3-423e-92a1-60d82839fc84',80,80,85,0,'2025-02-03 18:19:38.677','2025-02-11 17:09:24.437','501934466-1-3'),
('59ac0989-b634-4426-a816-431024dcda19','b7df853c-c210-4f4b-bcc5-e0189a8ebe0b',80,210,100,0,'2025-01-06 13:08:12.164','2025-01-10 16:33:51.205','911398945-1-5'),
('59ac52d5-0367-407a-9653-c8b6301f9cc3','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-89'),
('59ac9478-a95c-42b4-b529-7949649c04dc','f8da3047-bd3e-4abb-838b-cb388b449675',75,75,75,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-1'),
('59ad7b86-f7f4-4ef9-940e-84510cce44a5','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-13'),
('59b13f36-9945-419e-a555-0ca1b8363912','6fcc55d3-2339-4d12-b5e2-e156727c33f9',83,63,41,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-5'),
('59b21cee-85ed-4b8f-99c4-7d91b35efb6a','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-14'),
('59b287ff-6808-4ef2-b6f9-57e875fdb392','e1ca0884-0a56-41e9-892e-c3a62280a2ba',53,76,96,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-2-3'),
('59b39b80-5295-45a5-ba43-b08f117634a9','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-128'),
('59b3ddba-3697-48f3-a065-a856a4c421a7','a9828fad-e20e-4e73-98f6-917c06f178f5',235,60,95,0,'2024-03-30 10:54:55.588','2024-04-04 12:48:48.669','982189682-1-2'),
('59b46640-8101-47e7-94dc-e22f9e2f1c1f','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-34'),
('59b497ef-0726-4264-82f5-8dd4c2264b32','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.827','598876994-1-3'),
('59b5df8e-5075-4cba-ab4b-e9d65b73d6f4','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-61'),
('59b7a878-9b2c-4d68-a84a-63a67efd8469','7311f1e0-e2be-43dc-9e40-f94a010e8939',228,58,8,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-20'),
('59b89513-eb29-4c37-aed3-5505e4d77d78','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-17'),
('59bc6824-0cd3-42e3-b0ef-3552e859be34','fea9db7a-edb9-4a21-8dcd-5d30d009e820',90,200,30,0,NULL,NULL,'140284101-2-1'),
('59bc7542-f9b1-483d-b546-8b0af8f5c4e6','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-1'),
('59bca0f1-be7c-4a47-abd5-34e3fa721dde','159c73ed-083b-4d67-98ca-6adcfc554962',185,33,33,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-6'),
('59bcf920-f820-48c3-98ca-2b33794194c9','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:12.189','248284003-1-8'),
('59bdc80f-d266-4352-a37e-d0eb1c142b20','f33b1ee8-3c07-40eb-af52-f06451c11031',90,55,200,0,'2025-10-22 13:07:10.734',NULL,'011766113-6-1'),
('59bdccd1-c7b9-47b6-a8c4-048f9c3743ae','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-3'),
('59be87c1-fc5e-45e9-bcf0-a4b661204f50','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-91'),
('59c2811b-b958-49b9-bcad-7e007a69e337','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-10'),
('59c2fc42-2f20-42e0-a983-581cd8b4b38b','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-61'),
('59c386ab-1545-4d25-bcc3-138feb41c69d','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-66'),
('59c53585-73ee-446e-bfed-73ac94d645e9','9e06cc57-c3d1-4cf2-9952-689339186aff',0,0,0,0,'2024-12-07 09:32:39.163','2024-12-16 21:30:04.534','982529212-1-1'),
('59c66fa2-8798-45fa-9ad3-8719b8ecd18c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-56'),
('59c7cfc8-97fc-42fe-a245-bce3cc4bc322','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-100'),
('59c83e7d-9bd9-479e-8a78-b5c46077737b','23f3477c-f11c-4298-947d-16df3b5cde8d',91,102,75,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-1-3'),
('59c8a56d-05ca-413c-97df-52a16571517d','048e793d-c7d3-4002-b07f-d674aee9a12e',83,57,101,0,'2025-07-26 07:41:47.970','2025-08-01 13:39:23.236','675124573-1-1'),
('59cda3d2-762f-445a-ba46-3df2f60f140f','9a74deda-3652-44ca-8fa0-b3116126f14c',90,70,75,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-2-2'),
('59ce8690-d6fb-49f7-9413-862735a27afd','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-57'),
('59d0fd57-eeb4-4bf8-93f6-e1cf5b6f3406','e65249b7-09e7-4653-bd04-1233b551b8c8',65,100,110,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.175','319316615-1-6'),
('59d2d146-004f-4521-80f6-1c357cc53a20','fff846e6-362b-483f-ba3a-df216849c545',63,150,2,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-8'),
('59d4f466-73f6-4845-98a1-0ffc50867537','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-141'),
('59d5d21b-c376-43c1-b753-501569d1f0bd','d869275e-c52f-4b2e-ad61-45157dcc30a7',1,1,1,0,'2025-07-12 09:20:27.892','2025-07-24 06:22:43.107','613199072-1-1'),
('59d6e1fb-b3ee-4479-8f59-5cdff1383a55','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-43'),
('59d89c43-8b4a-4243-86e6-5838c7ad9a9d','0a94a330-c190-4d8f-bc87-1e36db747252',205,99,70,0,'2025-07-19 07:51:58.811','2025-07-30 08:02:01.464','371408514-1-1'),
('59da6275-f8e5-415d-868d-d5210ef5fefb','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-4'),
('59dd188c-bd75-4b1b-ba45-35636fe30f00','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-19'),
('59de68ad-b8c4-489c-93fb-1bbd5218cb5e','c2e59836-c823-41bf-b343-b3df9dfc91f8',80,55,20,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-11'),
('59e0a011-4f65-4561-bb36-8eece6b76e98','a5626ae2-9a5a-4401-9095-a368c22814f1',70,45,32,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-10'),
('59e15b27-56f9-4415-944e-31a840b06cf9','75edd126-ea16-4b60-87c7-d914b44daac1',203,5,91,0,'2025-02-13 20:43:40.237','2025-02-25 17:03:24.823','428103279-2-2'),
('59e3376c-f498-47fc-a796-c62e2ce433b2','ac73d19b-52b7-42a0-83e3-a4d8491f56b1',98,157,65,0,'2025-10-08 17:44:13.127','2025-10-20 06:32:30.113','644717952-1-4'),
('59e586ed-510f-4f5e-a3c7-4b4d1ac70ab9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-73'),
('59e5ff93-bb8e-4c3c-9a4d-a1a8442d89a4','ca2466d1-9a83-4f57-8f76-f5ddce302e04',80,120,49,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-18'),
('59e75bb8-5f8a-4f72-916a-f9898f7a5810','5a89fae8-525a-4de4-8188-2f4d7c892e74',10,40,74,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-22'),
('59e8c576-b9a0-457c-98ce-bc8435c77324','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-13'),
('59e9439a-d7f9-4d8e-b407-7f5fe57b15a1','07887ea5-a86a-4ebf-8976-e7c1641f50c9',0,0,0,0,NULL,NULL,'478361746-1-1'),
('59eaa4bb-4363-400b-8bc5-d4b1b68da312','73bb3ff2-f6f1-44b0-849d-9baef250ea05',96,187,5,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-3-1'),
('59f1771b-fc92-45bf-bc35-6d124e6539ab','afb3cbae-61d4-403d-a04e-25f696176d48',68,103,6,0,'2025-05-14 17:03:48.273','2025-05-24 17:55:00.061','91030681-1-1'),
('59f6d299-8372-46d0-bf2d-e364fe21cf74','9e659204-13ca-4fc3-a047-37a3690f3940',51,51,76,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-4-3'),
('59fc208b-beaa-4db4-92cc-ee926d3e1c82','b2c78cf5-c58c-4553-bd14-49e83916894c',74,165,10,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-12'),
('59ff8eb8-113f-48dd-bd88-ede65f9daaff','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',160,16,43,0,NULL,NULL,'338991013-1-3'),
('5a01d074-75d8-40b6-bcce-2d4bb0fb360f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-103'),
('5a08f7f5-0ec4-4dd5-a5fc-4cf180a915a9','5ea4b207-b05c-4931-bbd1-648b6933aae5',170,97,15,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-4'),
('5a1226e3-05fa-47d9-8f78-6b729813ff53','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:09.727','248284003-1-93'),
('5a1518f8-d40c-43fa-837f-a78c82efb78b','5c487410-f906-4e14-a077-9f060026719e',110,30,10,0,'2024-08-21 14:53:19.505','2024-08-31 16:53:18.268','703183067-1-7'),
('5a15b807-9870-41e1-981d-dd0df01a0ac2','7f4b7a21-dc50-4266-900e-ea705e2d3a34',80,200,27,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-2-1'),
('5a16d402-21a0-4f3d-ba78-78d3e1cea816','c03191b8-4886-46b6-b73c-6bb65be89b63',52,52,58,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-4-1'),
('5a17582b-2401-42d3-b586-cdc578a2991e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-47'),
('5a1ec59c-c6da-4272-9e45-df7ca0590132','8430af40-36c5-4b58-b933-e2ca938f7a86',110,65,70,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-1-1'),
('5a21393f-ec0c-4337-9779-7f081069e549','0d3a5595-1b06-4732-a954-1590654c804a',100,200,30,0,'2025-05-24 17:55:25.951','2025-06-04 19:39:25.936','478240909-1-2'),
('5a24a5dd-305f-48c2-bc28-de12008e0ecf','e3de85d3-eec0-4038-99df-48935e9c3c8e',79,73,58,0,'2024-10-11 16:09:22.260','2024-10-22 13:51:40.148','976898541-1-3'),
('5a2651c1-c5e3-4734-9295-1093604096a2','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-4-3'),
('5a2a49f2-22c3-4c9f-8fb1-8c0b0d3f5d4a','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',41,50,15,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-6'),
('5a2d7f33-31a9-46f1-8818-47f494eb8f2d','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-8'),
('5a307639-420c-42e9-855b-04d05619546a','d0512e6f-47bb-4d5b-9300-eec57f981f59',0,0,0,0,'2024-11-25 08:28:31.042','2024-12-05 16:18:43.895','478618410-1-4'),
('5a32b07c-e7fe-470a-a40a-982301df5d6a','1f226ba8-0087-4886-a39d-874a147a4378',51,51,77,0,NULL,NULL,'613362955-1-1'),
('5a363c10-a504-4de6-b54b-59649a375690','8a9beb26-658b-4990-84a0-177e0cc073c2',65,75,70,0,'2025-02-15 13:31:50.856','2025-02-24 17:29:21.268','081581964-1-3'),
('5a382804-c2d8-4b0e-97f7-d693dd419ca3','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-4'),
('5a3b2c99-817c-4c85-8233-e6eb4e72f58f','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-2'),
('5a3cf4c5-9616-4463-8fa2-f9d374628653','32c9673d-ab89-44f1-a639-3cfa252bd8cc',99,106,70,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-2-3'),
('5a41901c-586b-430c-9d65-213d41f1ad07','950edd95-6cf9-4fbe-b156-c4ec6d470b3b',75,30,80,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-3-2'),
('5a41a472-925d-4963-b645-c84964d73801','fc33e6e7-779b-41c9-8d72-c26a1d995b78',110,205,25,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-12'),
('5a42eb8c-2188-4461-bd63-af1e98367d57','71481b47-e566-49d0-8ede-33e07961f2bc',52,96,58,0,'2025-08-21 07:15:30.112','2025-09-04 21:03:50.131','437880840-1-2'),
('5a444dc0-aca2-435b-b479-32684a6448c1','5ea4b207-b05c-4931-bbd1-648b6933aae5',205,47,10,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-5'),
('5a44fc73-6ba8-4cdd-ae98-2f1277b85ca4','d5a0f2f3-bcb3-4fbc-afd8-35e9c6c818c3',57,83,110,0,'2025-09-02 14:48:27.542','2025-09-09 18:10:59.563','437426295-3-1'),
('5a4955f9-c907-40c6-afd6-3ed10f896931','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-1'),
('5a49707b-53e9-44e3-9b70-c133c0e197f7','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-50'),
('5a49b19a-ff80-4707-9b20-d92f857c3e0a','5cced97c-42f9-4f09-9ce2-eab123493da6',38,38,46,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-1'),
('5a4bee88-d305-4945-922d-6c3284b122ac','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-4'),
('5a4c25ff-9166-4bb2-af73-6a0acfac72fa','05af1df3-9a36-4be2-8bd1-773d59e1605a',40,150,200,0,'2025-03-27 15:05:25.699','2025-04-07 17:19:17.058','655688103-1-6'),
('5a4c8913-fa5a-4669-8df1-a20225fb7339','9b948fc9-34d4-413b-873a-889d552a3e54',174,100,9,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-10'),
('5a4d8cc8-1c1e-4624-8a06-585247340a4d','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-2'),
('5a4fd608-7a2f-4219-8e85-6c1470d2aab4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.746','223422825-1-182'),
('5a52c7cf-6600-4286-be4b-7de1f212de45','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-2'),
('5a598928-eab0-4da9-b82e-7ccbcfca9907','fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f',53,25,224,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-4-2'),
('5a5a63ae-2bf4-4407-b608-a51a0e948986','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-15'),
('5a5af8d2-6e11-4d84-8ed2-0434602524b5','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-27'),
('5a600194-3d22-49fd-96f2-b4e4b85116d7','e9626be5-ddcd-40d5-865d-7018bc1ef9df',55,40,43,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-7'),
('5a65a8b0-af98-48b2-8afd-d71e33e81ed3','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-85'),
('5a6a0663-8fbb-4aca-a85f-b015806fd048','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-33'),
('5a6b1961-0f53-45d7-86c8-c9838f6884c4','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-2'),
('5a6f51c1-157e-42d5-b2bc-de4e6d82b08f','7379fb2f-7c58-439b-a1f3-7d6e91d200f2',102,56,82,0,'2025-07-26 07:40:19.253','2025-08-05 12:21:48.610','418857351-1-2'),
('5a70ac07-407a-49cf-9e96-9878aa4bf5cc','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-17'),
('5a72bf43-164f-47a8-85c4-5cbf2fa5eca4','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-38'),
('5a744053-973a-4f05-ae20-11e53ab1b66f','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-13'),
('5a77f96e-5a28-42c5-808c-d8c08c992eba','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-50'),
('5a7c26f3-3e7f-47eb-a58c-41c3d9166d2b','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-10'),
('5a7fbc61-5dd4-4414-9ce5-63eaf703c547','a9ce9135-b72e-492d-a974-bd7c7ab64347',102,57,83,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-2-1'),
('5a84ede4-7a5f-41df-b80a-ceaf7ea1e5f1','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-36'),
('5a87e24d-3dbb-4c6f-85af-088346c1e9e4','05c69f47-3c62-498d-97f8-bc1d7350f13c',40,40,45,0,'2025-06-11 13:14:44.477','2025-06-17 16:02:25.266','437256638-1-1'),
('5a88523b-b5b7-49a4-84a7-e57fc9eb542a','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-133'),
('5a887931-62a3-487f-8913-23e5c9dc5f3f','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-55'),
('5a895459-0baa-49b5-aa7b-1be0e0c62111','0009aeec-e682-465c-b701-363a3ef377a6',62,72,103,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-31'),
('5a8b3c69-f1c6-4434-973f-8ce656c655ad','f7c345ec-fb13-49ec-a83d-d89fa6a2ceaf',62,60,90,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-4-1'),
('5a8c2de3-6069-462a-8e96-408e2864a881','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:18.387','248284003-1-133'),
('5a927a07-cdc4-458d-8013-ee8f5f1391d2','405c5569-3390-43f1-95ee-f006ef560059',233,75,92,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-4'),
('5a960678-71e7-4724-990b-3716b1efd295','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-44'),
('5a969258-c82e-4363-92e2-fe5333ebbbba','0009aeec-e682-465c-b701-363a3ef377a6',100,97,65,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-32'),
('5a97ae82-203a-4b4e-ad08-cc8941b88f13','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.342','2025-01-09 16:51:50.694','745422037-1-5'),
('5a97d23a-edcb-406d-8e18-ec6d789fefd3','1cb85858-5f86-4be0-b9e7-c06f3f4a2a9e',50,90,138,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-2-2'),
('5a98c28a-fdea-4421-8383-dee4d36d077b','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-19'),
('5aa0025c-f527-4cbb-8741-fcb3bfe168b0','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-6'),
('5aa09f3a-df51-4004-8009-34d9c4ec5621','df3b19de-7db5-480e-801a-a689b8d2eda0',100,104,65,0,'2025-10-25 08:58:58.836',NULL,'74521183-4-2'),
('5aa3dcf0-9ab4-40a6-a859-9585554dd1ba','ad0fccfe-fec2-49fc-a475-2e6c6c3ce2b0',0,0,0,0,'2025-05-23 14:05:26.970','2025-06-05 16:38:26.855','745786401-2-3'),
('5aab9d95-960b-420c-9031-c60d6fc6cdee','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-6'),
('5aac3965-5e8c-4e49-9deb-ccc3f682f9f4','0f3df944-0578-417f-8086-580114d92963',0,0,0,0,'2024-06-08 08:00:04.367','2024-06-21 16:18:39.742','248746135-1-2'),
('5aac6fdf-0439-471e-bf0a-958f01a322bd','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-61'),
('5aad330a-b512-4be1-9b6e-c9929f9d5729','d61e1a25-0e04-417e-ba49-aa6868ece882',0,0,0,0,'2024-07-03 14:35:40.604','2024-07-16 05:11:31.470','614337059-1-1'),
('5abc7573-b6ec-4086-b6c7-dadbcb0cdb2b','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-3'),
('5abeb5ce-56ca-400f-83d0-9faa107bb53a','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-37'),
('5ac0b4a8-252d-405b-97e7-c2e626e24222','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-78'),
('5ac19961-d3d6-43f6-8f95-d93d31285ef4','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-9'),
('5ac19f33-502e-4e73-8a19-2336a6d3878b','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',120,200,34,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-51'),
('5ac2a8df-abbf-49ae-baa4-e8d23c71d27d','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-3-6'),
('5ac2ebb3-e685-4a2c-8112-6c08d796372d','96449af3-c272-4a90-b77d-0790552dd455',90,80,90,0,'2024-12-18 09:31:05.358','2025-01-11 14:08:16.457','911787432-1-14'),
('5ac2f4ef-7705-4e3a-8439-177d8bd6c22e','607b4c5f-810b-47b0-aac2-0f9c1bde53fb',75,65,95,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-1-4'),
('5ac3f9ed-795a-4373-98db-cb9c265a46b2','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-94'),
('5ac402a2-a635-4b18-bacb-3927a4ecf81f','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',123,123,70,0,'2025-09-01 11:06:25.188','2025-09-10 17:04:36.702','428693052-1-3'),
('5ac49da5-c097-4351-8fa2-56b82693be44','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-2'),
('5ac63383-eeae-4c67-9805-a5cfb786ccde','73f6eac7-ef02-457e-8f85-1a7627c5ea9d',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-2-1'),
('5ac6c7c5-1dc8-434c-9384-a4a6b42a1326','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-31'),
('5ac92c26-162b-4bc6-97dd-095e8de5640a','471a9a7c-b962-42f0-b21c-205afc04b527',100,110,80,0,'2025-07-12 09:19:07.368','2025-07-17 14:41:44.640','41286775-1-3'),
('5acb714f-96ff-4a7f-af58-7da4e3052e8c','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-5'),
('5ad0bf13-b68d-451d-9acf-b9da8836ae25','5317ac97-70e9-47b5-8215-375c06b6889e',50,50,47,0,'2025-10-20 07:17:56.782',NULL,'598387436-1-1'),
('5ad22579-d74e-43c9-94df-1bdc53230bfb','7c7686b8-8f65-4271-acac-1585b7485563',222,45,12,0,'2025-07-29 12:57:25.959','2025-08-12 06:14:45.105','412395222-1-2'),
('5ad23749-d6eb-437d-a3ca-f099f5be2f95','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.058','223441694-1-172'),
('5ad32b6d-3574-4126-b7c4-e9f070c63fe3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-79'),
('5ad726d8-0d64-4722-b014-facc6aa4c41c','525b5c37-829f-4a61-adec-1c61536019ea',51,51,77,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-2-2'),
('5ad8341f-0be9-4f07-b69b-b713605ab211','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',115,115,6,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-7'),
('5ad9d114-1866-4685-a0d4-83325dbb9a16','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-35'),
('5add108a-6afc-41ed-8502-2a68d50ebbf3','96449af3-c272-4a90-b77d-0790552dd455',90,80,90,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-13'),
('5adee16f-5739-447a-938b-e2ffa51015e4','9504c24b-6a37-4522-83ad-b302a5d583a5',46,11,216,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-14'),
('5adf1064-514a-4736-8b64-dee0e20221f9','cf7f91ae-875d-40a7-aa62-343d55ae5df6',0,0,0,0,'2024-07-20 16:33:51.062','2024-07-25 21:24:32.800','412603598-1-2'),
('5adf8ef2-9dd0-42ad-83cb-792c501d760f','e7f31a78-648d-4a5e-9111-1bf7db38dd79',210,45,5,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-12'),
('5ae3e9d7-4c86-4224-ae9d-393a979555dc','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-23'),
('5ae7e0ed-e2f4-4bf4-9183-19127f872ba0','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,64,11,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-28'),
('5ae843b5-aa78-46b0-bd0f-0ec9a117a900','0ac2a48d-48c9-41d2-91a2-b574a94542b0',5,211,42,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-9'),
('5ae864b4-8a35-4d64-842a-cc7ab67a1571','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:54.238','248135683-2-70'),
('5aeb215b-8524-4b08-b20d-619286d21d88','b23cf296-f843-4492-9697-0fd43d657771',207,52,4,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-7'),
('5aeca94c-0fed-4917-9986-e61025093528','6cee1429-9935-4eae-be32-dc630b6d70e8',40,40,20,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-15'),
('5aef0c11-64b1-4ae5-aae8-6a96fa2b2b82','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-4'),
('5aefbb14-bd2d-421f-920f-cc39379529da','7311f1e0-e2be-43dc-9e40-f94a010e8939',203,160,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-21'),
('5aefea48-348b-4d7d-aeaf-cd072f54ae8c','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-14'),
('5af09ab2-4398-4723-9359-b6770be730d3','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:13.556','248284003-1-121'),
('5af38606-be0a-4bce-ac37-a6462ccd8ca4','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-3'),
('5af6d807-ad6c-4fa1-a369-e8ceb3b481ad','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-3'),
('5af77bde-2ae0-49f7-9541-6f188c99247a','a307363c-9911-4bec-ab96-f2419bd7e6fe',77,44,44,0,NULL,NULL,'9823833-1-7'),
('5af7aa1a-e80d-4121-a1de-0370107b73cd','177452de-a019-4a63-8749-61daa619034c',0,0,0,0,'2024-05-10 18:50:11.428','2024-06-04 14:25:01.922','126922033-1-1'),
('5af7ab92-d730-40ea-bd5b-75a9de786a63','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-22'),
('5af9732c-6859-4420-a85e-c558497802a1','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-5'),
('5afac343-6e1f-4bdb-b2f9-563cd1836963','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-11'),
('5afe8f81-d7b0-4ba4-ba0e-609f810e7f0e','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-2'),
('5aff7a3b-0a8c-4c7d-a906-4aa8c5272271','638172c9-793e-4ec5-9ad2-cf82bf06eca7',34,34,87,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-5'),
('5b05f270-953d-4434-9f6e-1ad4becec5a2','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-1'),
('5b06dc6a-7c3e-48e1-bd5b-cad0d3d5ecb3','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-6'),
('5b0c3ab9-30e0-448b-8dd1-ac6d6a416527','b352a3c5-b9ec-4d3f-bf94-3477a4939ef8',53,75,100,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-2-3'),
('5b101d32-940d-46b0-bb4b-58e360da0483','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-12'),
('5b114591-8d92-4848-ac21-9c5aec5f6ba4','db31505d-890a-49a3-ab5c-a703df1962b6',98,162,7,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-4-1'),
('5b11e5fb-7ca3-474d-bb68-5b7cb01872ed','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-17'),
('5b136b2a-1dc8-4b82-b334-d0f6e216fe7a','fb315394-4cb2-4ee4-9b83-42589f739871',0,0,0,0,'2024-11-12 16:16:09.017','2024-11-21 12:39:35.617','745286096-1-4'),
('5b1476c1-6945-4f64-88c1-428bc11da716','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-6'),
('5b15bd97-394c-42fe-8564-95a28d19663e','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-32'),
('5b1777bf-030e-4e05-ac02-6922d5a96290','94470f07-2500-47ea-83e7-2660e0c8d460',88,52,25,0,'2024-12-07 09:32:25.879','2024-12-18 16:36:57.903','982432822-1-1'),
('5b1a7b53-5bc5-43a2-ad78-7e86b2634913','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-54'),
('5b1b427f-681d-401c-abd2-a2512ff95c6a','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-17'),
('5b1d876d-9127-4c0d-9256-04fde86dd8f1','1b57ad51-327c-408f-87da-e1a22f3c872d',31,31,55,0,'2025-01-20 11:21:28.572','2025-01-28 20:45:10.314','221416475-1-1'),
('5b1dab48-f7ec-4d91-8099-87e27a5c1041','832915ac-d62f-48db-b00f-8e585de422bb',45,37,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-6'),
('5b1e3b20-67ed-424d-a96b-739c8086d65b','2eeeec42-3306-4154-bcd5-56e769835168',0,0,0,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-9'),
('5b1e7b97-0470-45bb-8f34-339d23061655','796fef16-71d1-4946-b8ba-54f687adf598',100,92,52,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-11'),
('5b1ff31f-8378-4cca-a373-3241906f2557','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-6'),
('5b21c414-881a-48c9-9f17-09cab1bacde7','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-10'),
('5b248231-64e1-4dad-b233-f598b3c9d8f3','d8b997b4-f874-47ea-b9fd-067dee0368c2',58,76,102,0,NULL,NULL,'515128101-1-5'),
('5b24ba07-4bd5-43a0-8bf1-c3451ae0cb7c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-79'),
('5b24d2b3-ae3c-41bd-a708-1283005f654e','8ac95ed3-d833-478a-bb81-b1337612bde0',73,106,55,0,'2024-03-23 08:36:18.109','2024-04-03 08:28:41.117','982562609-1-2'),
('5b26b62e-737d-4ad8-b7ec-5208f99702bc','e1601d35-cc40-41a5-8e8e-8005a1281654',80,123,6,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.841','428752676-8-9'),
('5b282db9-81e9-49a4-9777-12bfffea8a37','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-36'),
('5b2a239d-34b8-4c66-9007-cce68ca27940','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-7'),
('5b2b735d-4f16-4b9d-9611-dcc2ee220586','53025d92-f019-4f5d-9b69-68a3b09bb7bc',47,30,67,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.071','428696149-2-10'),
('5b2b8403-8ac7-48ea-84d4-9d32ce9c7fde','bf560fb2-0b91-485a-bf70-cae59896df3f',207,48,38,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-4'),
('5b2b86c4-d5ca-4706-99bc-117e85f94af8','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-2-5'),
('5b2c6d30-af4b-4f48-9721-6d3272a5a8b5','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-11'),
('5b306d3c-6e45-46d3-b1ee-79d63b491e5c','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-6'),
('5b37a6d5-1ed1-49ef-b83d-311b3f6999e7','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-37'),
('5b383b9a-d2c5-49ae-a406-17afabf2c58a','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',51,51,77,0,'2025-10-08 17:43:46.255','2025-10-17 06:14:23.899','380453463-1-1'),
('5b3c78d3-9f5b-470b-b122-c335a4791155','902aef44-bdc3-4e37-99aa-8a4094073651',60,40,20,0,'2025-10-22 13:06:42.033',NULL,'776312220-3-2'),
('5b3ed211-4c9c-4cb8-adb7-20c2c5ef54e1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-252'),
('5b3f772f-d10d-4fed-b9b7-d4ede3f714f0','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.707',NULL,'223317066-1-121'),
('5b4084f7-125f-40d7-bea1-74431513617c','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-10'),
('5b414019-f5ec-493b-9e40-339e60793da0','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-97'),
('5b418d35-6d19-48ea-ae0d-e233bf4d02b2','8d348f39-aab0-4774-9035-903836bd3dac',52,52,77,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-2-1'),
('5b4437d4-27f5-436d-b819-7668f9de1075','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-3'),
('5b468c53-8fe9-427d-8762-d8f35a80f9a0','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-35'),
('5b474131-0031-4a64-9c55-3f6efb27d625','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-17'),
('5b4e60d9-5d55-4053-846c-1d1aba30629d','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-35'),
('5b4f0a83-70c2-4fbc-9e0b-9837c1409e1c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-34'),
('5b5175fd-bc5d-4e73-ab0a-1e98635fba58','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-20'),
('5b5504ff-78a2-4242-88c9-c77cd32e8083','6c7f7eb0-0e54-462f-9045-071cf525c2ed',60,47,49,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-2'),
('5b55fd66-5443-442f-88d4-0041403881a9','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-14'),
('5b5904dc-9d70-4f80-ba14-138b5dc1e048','f6534c5f-f6d6-4e0b-b8df-9db7fa49aa22',31,31,31,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-3-2'),
('5b590d4f-5b21-4f79-9bb3-4930d8ab06d3','d394151c-87e2-4f5a-83e5-e75ef45c4ec0',240,100,85,0,'2025-07-17 09:33:48.166','2025-07-22 08:19:40.603','910697257-2-1'),
('5b5f646c-6393-4635-9072-da1c3e7a5f7c','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-2'),
('5b61354f-3b7a-4890-b9d5-4756e77efda8','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-66'),
('5b61fbc2-f819-49fd-8633-869c57d0c289','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-2'),
('5b626073-eb8d-48fd-830d-dbb0bae72fe2','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-3'),
('5b64fa86-30e9-4b66-bd1a-6a338b549123','4e1a9822-f454-4da6-ad99-64bdb4e1f845',70,240,95,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-1-2'),
('5b653765-0c27-4d12-bec5-41ccf6d03f68','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-9'),
('5b65c531-79b3-4f72-84c2-34fe3b6a900a','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-8'),
('5b678bf0-be7e-48c2-8ad0-310a802891e9','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-25'),
('5b6903ad-0b4f-46a5-a250-3eb704387a3a','5603bee7-2924-427f-8ac2-cc504126f908',105,107,70,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-2-1'),
('5b6a0a81-2c2d-4514-8d9a-d0da1ba7c6e5','15d74154-5fd4-4173-9e76-f45c4027e0c0',0,0,0,0,'2025-05-28 19:09:10.544','2025-06-05 12:35:12.685','644860505-1-2'),
('5b6aa675-4983-4ef0-8143-023fbbafab89','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-12'),
('5b6d9afb-2bc1-49f7-8dc6-57b89e4edcc6','8fc7023c-7fab-44ae-a533-006d835eddb6',59,6,213,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-10'),
('5b6e2659-225e-445e-83be-12020f312104','85de75ab-a905-42c9-bc61-799745d96971',265,93,65,0,NULL,NULL,'338991013-2-1'),
('5b6e2719-b750-41a0-8429-1e6941e754d2','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-83'),
('5b6f67c8-d406-4db9-a5a2-8c0806e3c2d0','12ef12fb-6e31-49d7-b5b3-abc20f2bd4f6',130,178,15,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-1-1'),
('5b74b388-4d9b-45c4-864d-5b941bc2009b','ece4ba5e-e243-49ff-970a-1ff0579ad2f3',0,0,0,0,NULL,NULL,'745505506-4-1'),
('5b76d81a-79bd-48cb-8899-423fafbf90fe','2f8afc9e-696f-4b14-b212-d5f56e6fb5a3',51,50,76,0,'2025-02-03 18:18:41.577','2025-02-14 10:41:28.342','221859569-1-2'),
('5b773813-3bd3-4144-859b-f9ee705c05bf','2ea7f945-fdbd-4103-b8f5-8c2aeb402519',42,76,118,0,'2025-04-15 16:01:18.799','2025-04-28 11:59:03.141','644334455-1-2'),
('5b773ee6-675a-4d58-9ee7-0d8ed6051614','883e6aaf-ccf4-4814-b2e4-afec5f99ad33',90,70,70,0,'2025-01-06 13:08:10.045','2025-01-10 16:34:01.975','910407767-1-4'),
('5b814b80-707a-444a-826c-ad72792b305f','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-7'),
('5b8432f4-b766-42c4-83be-3084eb8ed79d','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.555','478971881-1-21'),
('5b84d1d4-3cc7-447b-a295-22dc65dd8969','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-208'),
('5b8521a3-08d2-4aea-b7a8-24f1d6c99c21','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-26'),
('5b86a19a-9455-4de2-a24c-cd1c9915262d','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-76'),
('5b87c6e3-5a05-4a01-ac2f-02a1e1c137d3','0ce74bb1-5b22-4340-b7c2-3e486e77bf0a',51,51,76,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-1-2'),
('5b8857cc-89b7-4706-b486-5fe4f8c419e5','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',95,90,70,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-1'),
('5b8c9199-a068-4d72-a2a9-8a17aed64c02','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-130'),
('5b8cecdd-e727-4efc-91db-a8081be9e076','25960cc2-fb91-4f42-9e90-011ad226f434',90,95,70,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-2'),
('5b8f0241-2013-4d90-b59a-96dde1d1d5c0','04dff17a-2b9a-4f35-a082-5684dfe5706f',40,18,65,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-7'),
('5b903db0-7602-496a-a77a-9e45fe850a56','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-86'),
('5b909182-911c-47c8-b5c0-534cb9593aef','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:28.177','248135683-1-36'),
('5b926ea1-9fa8-414f-882d-deacde11ffd4','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-2-2'),
('5b92b357-6c70-42a2-b641-bcd974f4d168','f7fec661-6f5f-45d8-8d10-18c1dad72513',42,58,55,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.162','428704278-2-2'),
('5b939de5-92f2-4024-88e6-31e37d1219b0','b78519ec-4b79-400f-a709-a1f09256d30d',45,212,5,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-3'),
('5b95dc97-6f77-4f92-9476-2c94187f8723','0bd42145-fdd8-4793-a5cd-a2e404d37142',74,15,136,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-6'),
('5b9936a1-4c2e-46e3-82e5-ec46020bf209','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-18'),
('5ba3622f-0d82-4e10-822d-25ce80b52035','6ec853bb-abac-4ef5-a04a-072663abe372',0,0,0,0,'2025-05-09 18:43:43.429','2025-05-21 19:38:37.567','745991962-1-2'),
('5ba4cc7c-72f9-4196-a2fb-4a178b985542','220fed8f-f96e-4af5-867b-ac05d11bda6f',48,8,144,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-5'),
('5ba59787-9fcf-4b3f-8cd4-a5ae9472ba5b','3a08fb4b-5cc4-4e68-847f-00548d024407',70,90,80,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-2-2'),
('5ba5e311-11c7-408a-b3b6-f4d72f5140ae','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',46,162,4,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-5'),
('5ba6c585-e9bd-41a3-ae47-90ae6f6260fb','f8845648-6347-4e46-b7f2-eb261e05cd91',65,65,15,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-8-3'),
('5baceffc-b318-407b-8d68-8f47f2566a43','5c759086-0cd7-497c-a83e-a2162d4b099c',110,110,3,0,'2025-06-21 04:33:45.447','2025-07-01 09:00:53.543','248630618-1-4'),
('5bad7699-048b-41fb-8038-a4ae709d4d46','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-7'),
('5baea84a-daf9-4402-9545-5c65cfd505a1','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',160,200,30,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-15'),
('5bb45c41-d8ee-42af-ac27-6e7e827a032c','bbc6d966-9d42-48e9-83e4-13afb85a7c33',45,210,7,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-3'),
('5bb5f576-e356-4609-a052-5b3f92dcea1e','e178636b-b1d9-4260-aa1b-879946fa7f5d',49,8,215,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-8'),
('5bb8de44-1aa2-4b1f-a95c-f282085515b9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-155'),
('5bb900ca-a717-4d69-854c-d3bcc46d0b28','1fffa8ea-befc-4b74-98ce-8981bef002ea',245,68,93,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-6'),
('5bba1cb0-85d3-4abc-b96c-441dda1952ad','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-8'),
('5bbd1ec6-f43a-4ff8-9d93-9982429ded18','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-14'),
('5bbdc556-03df-425d-abc2-7978d486210b','4869c334-4618-49fb-9d03-99d95654d12a',76,54,29,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-7'),
('5bbdd812-543e-4f9a-9513-44c2354e04e0','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-26'),
('5bbf3908-18f8-4178-8371-f6cbbc854e38','8b4543e8-c3ef-483e-92b5-3623066138c6',115,33,33,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-3'),
('5bc07d12-848b-4223-9a63-334337108eb4','78b92a41-f41a-4dfa-97b0-48b35908cf44',51,51,77,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-1'),
('5bc1ea73-1b2f-4fd7-9052-7a9edd848480','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',76,57,102,0,NULL,NULL,'808443666-1-5'),
('5bc285d7-78d9-4dac-8d80-4d81fff49146','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.135','2025-01-11 14:12:21.398','248284003-1-86'),
('5bc4412e-14f1-4d98-bf27-6ff6f0a1fd45','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-85'),
('5bc44b66-d7b2-4645-bacd-3c5b366432b3','597a9de3-517b-438b-bc68-5db3df76109b',65,66,86,0,'2025-01-26 10:54:39.096','2025-02-07 11:19:27.865','127927013-2-2'),
('5bc7d387-61c5-4a96-96db-e079f8263e3b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-32'),
('5bc9df59-346f-469a-9516-a77e7edabb8d','855d727d-98db-45fa-811c-d503dd78babd',52,65,81,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-1-4'),
('5bcc262e-2142-44ea-a5d3-ae0a60da4dff','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.306','2025-02-08 15:04:24.323','223249369-1-135'),
('5bcd9390-a3ad-494c-82cd-8ad32057dc66','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-4'),
('5bd3e0cb-6ee7-419b-bed5-f57c96aa8ea1','0dce8613-12ad-45a6-ae96-565770f25828',76,53,102,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-1-2'),
('5bda6abd-eb7b-4513-9889-a0672189b867','e7f31a78-648d-4a5e-9111-1bf7db38dd79',61,47,40,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-13'),
('5bdaae0b-c902-4a7d-8892-322474714a14','c8ea2253-3c75-477c-8e01-4ed8b3e57524',0,0,0,0,'2024-12-23 12:00:05.262','2025-01-11 09:47:11.464','73597674-1-1'),
('5bdce3a7-4689-4b03-a2bc-14f23a38bb9a','68468cbe-741b-47ae-be43-0aae10030ee3',51,51,77,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-2-1'),
('5be22a5e-bb31-4604-9e1a-ca403b8931ef','4bf4c188-ebf9-429a-8ede-d43489efe0cb',35,35,202,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-3'),
('5be43501-008e-40d5-8ecf-4ae6005cee7e','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.324','223249369-1-84'),
('5be4d7cc-9e89-4d7d-887e-be482c215255','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-21'),
('5be8f4ca-1582-4d68-bac3-d693bd393e74','c98f6188-56c5-4870-be97-be71cf95f62e',60,20,40,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-2'),
('5beb0ca4-1764-4e73-9637-9f80917f7ff7','417d5128-140e-4a55-b497-de9ff93db63e',103,110,72,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-2-3'),
('5bed4264-1d09-4123-b555-bd5c050d3e84','84deaccf-5c15-4d59-9178-63fd4b3a3ff6',100,60,28,0,'2025-02-03 18:19:02.377','2025-02-13 13:19:40.212','976821188-1-2'),
('5bf0310e-f660-4283-82c5-432d13129b09','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-30'),
('5bf473b3-a0ae-4e28-afbb-cb18841e9315','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-22'),
('5bfaabf9-d82a-4916-bdc7-678bea732189','05aa1c0d-05ce-4ba4-b8c5-3bfc961c77ff',50,50,4,0,'2025-09-16 16:29:42.463','2025-09-30 06:16:14.755','428107185-1-1'),
('5bfaf9a7-0c03-480f-ba76-0ef39fae24ac','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-154'),
('5bfceb29-6122-4b9b-b6ab-ba14a0615ab0','da8440da-e3c4-4852-854d-19123cbe7e56',0,0,0,0,'2025-05-09 18:43:57.347','2025-05-21 08:16:23.972','151258703-1-5'),
('5bff1941-6f7c-4791-bb48-65a7c0faf485','70873466-f77e-4c55-81ef-21947837cbff',170,90,60,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-3'),
('5bff49d0-d3ab-4c45-85a2-7414a3d1bc1b','d9935e91-5c26-4669-9a9a-83060292f497',100,123,67,0,NULL,NULL,'478702481-3-4'),
('5c03c3a4-20d3-40ff-9a73-e60dd764bb70','2a9dc5cf-e36d-4418-b12b-38735a234501',96,66,203,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-1-1'),
('5c03e3b8-1e75-41c6-affe-f38ac1ddd7f1','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.059','223441694-1-48'),
('5c0c4f89-649b-45a6-af35-3bdf0b94a87c','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-25'),
('5c0f564c-9803-4810-beb5-21bf81d57222','e86f2f3d-8f0b-4894-8c39-9063af830231',127,89,8,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-7'),
('5c118a39-9357-4878-8222-09612dcda76f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-9'),
('5c13cce8-b0d9-400c-8427-3c145460763a','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-17'),
('5c157949-f77a-4647-a68f-33d230387087','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',83,82,10,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-10'),
('5c163580-94c0-48c9-a595-e00846af1c4b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-27'),
('5c1935b6-6328-40b6-862b-09fdb9aa97bd','5a89fae8-525a-4de4-8188-2f4d7c892e74',40,80,10,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-20'),
('5c1993bc-796d-49b3-b680-7053d1c489e0','0ac2a48d-48c9-41d2-91a2-b574a94542b0',42,14,213,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-7'),
('5c1aa8c1-04cb-4754-9f72-897447be8abe','7c7686b8-8f65-4271-acac-1585b7485563',108,84,73,0,'2025-07-29 12:57:25.959','2025-08-12 06:14:45.105','412395222-1-13'),
('5c1f92d3-9302-426c-803a-93298c234112','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-74'),
('5c2005f6-4312-469c-9e47-2316eabac905','135906fa-fceb-45b1-a401-83de82461319',52,73,97,0,'2025-09-26 12:39:13.889','2025-10-09 09:24:47.313','319585140-1-4'),
('5c212304-86f3-4510-971a-606c30a38e35','7311f1e0-e2be-43dc-9e40-f94a010e8939',325,58,4,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-22'),
('5c23613b-136e-4a7e-b44e-4a12735a511f','7f827719-d0a9-4910-9aef-532cd3731df7',50,7,217,0,NULL,NULL,'745995046-2-17'),
('5c23c31d-783d-49a1-a3d3-c86e4ded053d','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',100,90,60,0,'2025-09-01 11:06:25.188','2025-09-10 17:04:36.702','428693052-1-4'),
('5c24a167-09fb-47ad-828e-05f8022c1d31','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.055','74529534-5-9'),
('5c24a68a-cb4b-4338-803e-e76f3b6cc3b8','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-16'),
('5c25d1dd-305a-4b78-a713-1c031acf3900','2b06d8c7-633e-4a98-bb51-6e3fea57b5d2',0,0,0,0,'2025-08-14 10:05:24.314','2025-08-27 05:41:52.198','745525130-1-1'),
('5c2788a9-b517-4e16-be9e-e89ccdac0a90','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',43,30,60,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-2'),
('5c2826d0-6840-472c-813a-ed67b8aafeb5','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-39'),
('5c2d5cc1-63ea-4394-9b46-f9638c059c38','13df3a21-76d6-4b0c-a169-76303e61ea4a',55,84,103,0,'2025-10-20 07:18:00.494',NULL,'765472156-1-2'),
('5c2fdc50-86e9-4c79-a380-4f962766a123','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-23'),
('5c30e11e-b135-4630-a54e-ea35fd6055ab','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-62'),
('5c31362c-b12d-488b-8531-7243cda9ce73','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-10'),
('5c31fcf0-9f1d-4a01-bb99-86168e9fa116','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-6'),
('5c322b9b-08b5-492f-be2b-82b995f61fd3','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-16'),
('5c335f0c-5be0-40ce-8de1-e2ec2d17fe04','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-26'),
('5c33f78a-1f32-47b5-ae77-9dd88a1ac595','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-20'),
('5c38fdd9-8e12-439b-b372-47030feaf425','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-4'),
('5c3b6bab-c404-4210-9c9d-28fb24e6887e','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-8'),
('5c3d1293-7700-47ed-9e16-5eeaa028b40a','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-12'),
('5c432be3-3f37-4b9b-9a4a-0e58ed8db233','387c0dbb-aaca-4bdc-8257-0a8a920eca0c',51,51,76,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-2-3'),
('5c443ef3-4386-4f55-94a8-181fbf749b2d','c98f6188-56c5-4870-be97-be71cf95f62e',212,42,5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-3'),
('5c474047-3c93-4e6f-acb3-cb8c46ad510d','1118c3e1-7c30-4ac9-ae0e-5dff68ee2213',56,82,101,0,NULL,NULL,'613745862-1-1'),
('5c49ab3e-9600-4810-8a8c-463f851b880a','887cdf3d-b4a4-4b5c-8d2a-c96f769b16af',44,44,50,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.303','371194748-2-1'),
('5c4a58d9-d9b5-4b7b-806f-8fc82730b4cc','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-10'),
('5c4cb2d4-c952-490d-918b-9c7720384e6e','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-38'),
('5c4f6e30-2a97-4e65-a16f-6253d1ba6ca4','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-15'),
('5c5106d7-312c-4e29-aa29-cc56c7ec47b3','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-2'),
('5c51c03d-ec38-4d3d-85b3-1eea85403600','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-144'),
('5c5592e9-603c-43c8-b563-aa650f0b4d3d','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-8'),
('5c58753a-e3e4-44d1-9e32-8602a99d3d75','15848870-75a0-4294-9752-8c0da1d7da4a',75,75,90,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-2'),
('5c59655e-ffca-48c0-b618-ead2bf943d2f','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-2'),
('5c5ba333-7ac5-463f-be45-76ef3b41b501','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.136','2025-01-11 14:12:17.166','248284003-1-191'),
('5c5bc1a6-7e2c-4bf8-8119-2a27a95ef60c','89054cd3-6702-45df-aaed-cce37ad10d39',80,99,92,0,'2025-04-30 14:29:12.351','2025-05-13 09:05:13.396','531724547-1-2'),
('5c5c2726-8d28-47ed-b688-4677fa708816','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-63'),
('5c5fc595-80d0-49e0-a295-a1a6417919c2','bc611bdb-d2fb-42fb-b735-3524b3d6a4fd',0,0,0,0,'2024-05-29 10:12:23.457','2024-06-11 14:04:39.030','412903351-1-1'),
('5c60fc21-78d5-4c05-9444-f9c2b10f04be','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',13,52,90,0,NULL,NULL,'47816855-2-17'),
('5c628b71-9fb5-4a2e-b991-f9668a77c6b5','9affc7b1-09c4-4e84-b48b-d0c117c421b0',85,98,80,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-3'),
('5c65e0ea-56a5-44f2-97d7-66bac7e2c4c9','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-28'),
('5c66e878-e3ab-46a0-b957-faea8d11bdd9','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-248'),
('5c6842bb-e2b5-49a1-8c9d-34beb2c713a8','12a4b68e-a96e-444c-b55b-5688b36532fa',83,57,100,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-2-1'),
('5c6ff9cb-7a92-43af-9e64-900f8349a518','da71f37c-3d3d-4e2d-af5d-70af9d403edc',54,105,77,0,'2025-10-25 08:58:53.629',NULL,'598479723-1-4'),
('5c77aa92-56e0-41e7-ab57-c1687db191a0','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-10'),
('5c7b245c-b28c-4c9d-92fd-65ad130e1033','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',63,44,35,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-4'),
('5c7b2f1f-bae8-4aac-81ba-0da2abeb9b56','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-62'),
('5c7b4322-4847-4ef5-ab38-2d025fe80586','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-19'),
('5c7bfb6d-15b2-4189-8af5-bd51a128068e','b7fbd54c-bcc0-4613-9901-d06327048472',40,5,201,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-3'),
('5c828e50-096d-499c-8e96-bcf9e5cbc09d','d5c4de73-6296-47b5-9493-d4e95eb86ce9',51,51,78,0,'2025-07-02 12:43:25.536','2025-07-23 06:18:04.216','644330933-3-1'),
('5c83ae98-87f6-405f-bf72-49c000268c44','e2f7afec-2053-4563-b82e-d7330ed835e8',94,136,66,0,'2025-08-21 07:15:05.662','2025-09-03 05:42:42.939','437835103-1-2'),
('5c85287a-5ce5-4f62-98f7-e012b56b459b','7c09f776-ffb6-47c8-8828-61389547804e',200,180,33,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-1'),
('5c892e4b-6f6d-4b81-8d05-2f3211496ce9','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-9'),
('5c8ffa19-9859-478c-9966-e1020852e102','52c1c51d-da24-4385-88da-ce34429dabb7',61,57,82,0,'2025-06-21 04:33:56.316','2025-06-29 15:02:31.408','221758948-1-3'),
('5c9154b2-d377-47c0-a9b8-699151a98dc1','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-6'),
('5c918ae3-76bc-4bdd-bfa3-a140cb7bfc8b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-8'),
('5c936289-b516-45ec-bcf8-eabaa5485472','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.310','2024-03-26 16:08:52.648','734499902-1-11'),
('5c9746a8-afcb-43db-96e4-5ae83a018adf','4333409c-e607-4580-98aa-64ce9862909d',97,65,65,0,'2025-09-18 15:48:52.001','2025-09-30 18:47:48.887','478616973-1-3'),
('5c97b0fc-1b46-4bf4-bbd8-284c082d03aa','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-13'),
('5c9a5b60-5dba-4251-ae7f-4548c38497ef','9866a947-9974-4053-8415-4518842488fe',206,89,5,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-16'),
('5c9bee0c-3a7f-4462-aadf-33190cfd9018','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-32'),
('5c9fc480-2550-4b4d-9ab3-71952a8a4069','b849cdf0-72e7-4208-8cab-3c1221248605',10,10,170,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.087','598425779-4-1'),
('5ca03aeb-0409-44d1-b916-c8f841fd87a8','a93b9cf6-27d8-4821-806d-042dfb49c4e3',0,0,0,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-2-1'),
('5ca8d0ea-18db-4ae0-9d17-5ffb298a30d1','9b948fc9-34d4-413b-873a-889d552a3e54',52,92,74,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-7'),
('5cace008-a566-4d23-bb7a-2c36355ca888','60c43f35-00d8-42f3-bf85-b04a49183371',51,51,77,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-3-3'),
('5cad89d7-689a-46cf-b222-eb1f952d5316','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-118'),
('5cb518e9-7fd0-4805-a846-7ed8a67574ae','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.200','223867751-1-33'),
('5cb522a3-2ae2-4b1f-a0b8-dadc5f9d7023','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-27'),
('5cb5ce17-683f-4d88-a72a-b807af53a6f2','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-13'),
('5cb828ca-c25a-406c-84a9-d4cae9a4c21b','d15832fb-c5f0-46e6-b8ad-3b93fb8fc893',90,56,100,0,'2025-10-25 08:59:25.500',NULL,'478544570-4-3'),
('5cb9b07d-9bd7-498b-9179-be3fb6493483','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-16'),
('5cbcdbc6-5ad0-413d-8817-c9ac963217dd','c5686ee6-2537-4ca8-91b5-7a63652f7dcd',51,51,77,0,NULL,NULL,'221394764-3-2'),
('5cbf626c-aac7-4817-8142-ac3e5838a79d','a2d857b1-bcf6-46ee-9e87-dabcdac62719',76,53,101,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-10'),
('5cc25494-b365-40d1-b298-f331109a2895','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-1'),
('5cc7f828-d8ad-4ab3-9ea3-7e6b369205c2','ede9284e-0f42-4aa6-a16a-754961f9be43',75,82,67,0,'2024-09-28 16:26:55.303','2024-10-10 16:32:52.344','449197003-1-3'),
('5cc9b6ec-b4b3-428f-be99-3c9dfc828281','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-31'),
('5ccb8244-0ccd-406e-93de-5754fb0e84c7','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-14'),
('5ccca804-1a48-4b6d-94e5-8b6cd695d795','624bc0cc-a8cf-48e8-ab3e-f18d96ce32fb',0,0,0,0,NULL,NULL,'61440092-3-1'),
('5cd26eb0-279e-43fd-8d25-832ee4c9cda8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:28.816','248135683-1-41'),
('5cd534b9-8bd3-4e0d-87e9-12c8e87fc95a','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-6'),
('5cdf555e-f97c-4027-827c-00a4280feeb9','9affc7b1-09c4-4e84-b48b-d0c117c421b0',82,110,56,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-44'),
('5ce0d6d9-89ae-4e8e-b753-f7fdd29d769a','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',220,50,10,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-15'),
('5ce21665-500b-4fc4-a0d6-abcb0045b931','115aa366-1d90-47fa-a4bd-cfd120425cc1',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-1-2'),
('5ce4d049-cb7a-4699-8f61-d49b30ff494a','5f1551a0-3002-4877-a790-948d5c6a3315',0,0,0,0,'2025-10-22 13:06:59.842',NULL,'223575392-1-4'),
('5ce5574b-b7b7-416f-b1d9-9daaee6bbcd0','916fd678-d465-4976-acbd-ecbf61315197',0,0,0,0,'2024-03-19 07:52:14.899','2024-03-30 07:26:56.125','449634859-1-1'),
('5ce7f18e-1963-4036-b311-a3a136128b1a','ce8f4415-3b63-4fe8-a25c-9973f07651e6',76,7,126,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-6'),
('5ce8c2d5-fa10-4a5e-bb94-ff7c024f09dd','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-215'),
('5cf1421a-0534-4417-a439-0900ac5cabf0','403e333a-cfa6-4367-b6fa-62cc56364211',85,75,70,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-2-1'),
('5cf179ef-20a3-428a-bbad-602e824bc34f','68ba006c-4563-4d70-85de-ae704607cc56',1,1,1,0,'2025-07-12 09:20:23.158','2025-07-24 18:03:49.514','517395181-1-2'),
('5cf4df27-a717-463f-88ec-f42666d7c8a1','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-40'),
('5cf6e3ae-7619-4963-9982-fb4c7ed3890e','37344bde-d918-41e0-a71e-d46212dfd17f',40,40,70,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-2'),
('5cfe5a6c-203a-42a7-b083-0c30f9e287b1','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-11'),
('5d070048-6234-470e-997c-7bafbdb9cdc9','8b9be79c-034c-4491-9980-ad94bae49b22',230,90,70,0,NULL,NULL,'501873907-1-4'),
('5d07aadd-a1e5-4338-90d6-ddf87bb2ae37','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-1'),
('5d07d681-55ca-4414-a4c1-e593f9db5dbf','c802c5a6-aa73-494b-ae3e-44bd484092c8',80,80,70,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-3-1'),
('5d0c5334-dc81-4345-a0eb-0da586178894','57c78c42-17b9-4ffd-b16c-f80f383635aa',96,206,70,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-2-1'),
('5d0f673a-71af-451c-b4a6-4250cfe14c66','148a8646-0bfd-4fcc-ab65-0b45431fcc16',90,201,28,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-4'),
('5d10364a-fd46-440d-8ca4-8b84410a1413','c6d965be-8394-4c92-b2e7-c0edeb71006b',82,57,109,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-3-2'),
('5d1078ab-5467-4aa9-bbf7-fad3735ee67f','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-47'),
('5d11d011-a4f7-4f3d-8e38-e64d3b350035','da725bab-47fe-4aea-b4e3-094195e16ad2',100,130,70,0,NULL,NULL,'745509928-1-1'),
('5d19d87e-d4a4-42ea-8149-9ec650a0011f','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-14'),
('5d1a6d17-8f3e-495d-8987-d3c6b5f00193','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-4'),
('5d1b39e6-7065-445a-8894-eddb2cfba3af','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-13'),
('5d1bf357-1fea-4c3f-be63-58b85f03d863','66f8d34c-0c41-46f5-98bb-500adbb6f636',42,7,212,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-5'),
('5d24c589-cdd7-4e88-9aaa-eeae9f0555ae','4da5ac02-2da4-493f-ad0f-88044a96633f',65,80,70,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-6'),
('5d24fb6a-5ac9-4bdb-878a-db55ae662208','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',53,85,105,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-12'),
('5d2635df-60a6-41f0-87c3-2cc75700d557','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-2'),
('5d28d9c4-60c0-41e5-8122-916459ef8d34','8076bb41-df9d-4c3e-b002-8df21ddafb0a',243,92,67,0,'2024-09-06 12:28:00.234','2024-09-13 16:38:28.325','449281517-1-4'),
('5d2c5bcc-837a-49db-b29a-1034a8fd480e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-10'),
('5d30102c-3d17-4b8b-8b58-71e7f493981e','e21ff554-3cc5-400e-a57d-15fa271de157',51,60,203,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-3-1'),
('5d346a50-f197-4e66-9948-a3f3edbe4b8a','d2498eae-06de-4965-ad29-62155b9a8992',95,75,196,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.146','976126416-2-2'),
('5d382dce-4a0a-4d56-a39c-dc8687994a02','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-44'),
('5d39253a-be32-44ec-b4dd-bc05b2cca1f3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.247','223823107-1-1'),
('5d398c77-36ce-44f0-9201-97ca2261f332','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-9'),
('5d3cdab0-4620-40b7-966f-221093a731a2','2c05cb84-f059-49a2-961f-cf222d5be8ef',0,0,0,0,'2025-05-16 16:33:10.884','2025-05-27 07:54:25.413','47876427-1-1'),
('5d420e06-6499-412c-9cf4-c68c598a9365','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',56,81,101,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-2'),
('5d4397f5-25b5-4707-91d9-f2bde93a88a6','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.324','223249369-1-35'),
('5d4489ae-2045-4167-a8a5-2999d8d9c16c','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-52'),
('5d4a6ceb-c7ea-4373-b6d0-8a8679ed0603','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',30,195,200,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-1'),
('5d4fba81-2092-4d3b-92a3-d398142a9515','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-34'),
('5d50e87d-1e4b-4c74-8c34-e0a4ed0fb6ed','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-25'),
('5d525410-bae7-42c8-a10e-7744a3df0c9d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.394','41245861-1-128'),
('5d55cd9a-f6c4-4282-bbda-f50954e045d2','d1833d5a-ee89-4250-8013-2e537cc62ee3',76,42,62,0,'2025-08-27 19:40:14.969','2025-09-04 06:16:31.245','614536111-1-1'),
('5d570b77-148e-426e-a970-328efae7f0fa','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-4'),
('5d5a68fe-d6a5-4a42-8389-049ec3534cb4','9eeecdac-d023-4ee9-8639-dc9b22642c27',29,42,220,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-3'),
('5d5e5c70-5dcb-47d8-b214-d15101ff808f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-46'),
('5d5f54cd-9615-45de-9d62-22983a8e9956','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-128'),
('5d5fc0c2-e032-4506-b0f5-4c6ca0ab469a','86e5956d-750b-4aa3-8f00-53e2db7b9f65',92,65,70,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-17'),
('5d62a4f1-7af1-4aae-a2e0-1b8b601957b5','e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81',83,83,7,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.567','745761149-4-2'),
('5d62baff-0b36-4588-bd3d-a23b2aa83f9c','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-12'),
('5d67d226-3260-45c9-ab97-92bfaa818882','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',17,4,210,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-20'),
('5d688894-dc72-4a04-9115-9cb3ecb13796','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-131'),
('5d6bcd47-ef97-4fa3-909b-4312c4a3fed6','665094cd-94cc-4442-bbb3-4b6f02758361',5,217,46,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-1-2'),
('5d6c170c-a841-4132-a225-f48a82a130c3','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-26'),
('5d708998-7cd5-4cca-919f-55942cd8c7f0','6d0390ef-65ce-4154-a607-d67e51938ed2',47,43,41,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-28'),
('5d7255ee-1f6e-4f8c-8565-88625a706ba0','ed32e0e2-0518-41d3-99f8-2b923271439a',0,0,0,0,'2025-08-27 19:40:20.383','2025-09-03 19:38:01.269','598587609-1-2'),
('5d747f9e-9444-482a-88ad-9cf83d25ec52','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-20'),
('5d75d218-b8c4-477a-8e04-be07c1253f78','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-2-3'),
('5d79e0dc-6151-4ff8-a800-75264e7c323e','0c4e75d5-e342-41c3-949e-5ca8657ec836',200,45,28,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-1-5'),
('5d7d3bb4-7699-447c-a63a-edcb549f4c9c','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-11'),
('5d808bbb-af42-4854-8c02-8b7e5404c388','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.406','412411011-1-5'),
('5d8635d8-f4eb-43d0-9776-805d1774d92e','4e1a9822-f454-4da6-ad99-64bdb4e1f845',70,240,95,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-1-3'),
('5d864d40-aa48-4bfd-b111-09bb8cb702ef','b4183fd9-691f-4e50-aa3e-1185b3e78cff',110,33,35,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-7'),
('5d88c780-acc8-4440-a08e-df9e341a652c','54615f37-dc23-4fec-a058-63bc43066248',51,51,77,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-2-4'),
('5d8bb860-57d1-4104-8ce5-b5aced412f59','7c09f776-ffb6-47c8-8828-61389547804e',56,71,96,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-7'),
('5d8efc98-d8c5-4285-b086-a96468aeb5bc','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-83'),
('5d901561-f008-49ca-96d8-aaac81a03ed7','df06d54c-c84d-4501-87a4-6fd5f96e68d6',73,113,5,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-3-2'),
('5d962a2f-570d-404a-8f3e-6b2013983944','c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9',30,17,27,0,'2025-05-28 19:08:53.194','2025-06-06 17:37:15.490','817872283-1-1'),
('5d967d26-d1bd-4ab6-8927-13f4cb3742ee','57ef4979-842b-4b07-84ef-752e1f28ee7d',10,103,110,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-1-5'),
('5d990c80-5583-49df-94fe-9bf32942af70','5c4d9368-f975-47d0-9818-aa9d64564578',80,93,158,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.786','644523362-2-1'),
('5d9a2ed1-c600-4f96-9e8d-afa45e8f1b3e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-137'),
('5d9ad98d-8234-479a-bb2b-b6bddaa6040b','d0ade823-74de-4507-8f72-ff3352af4bbf',70,56,64,0,NULL,NULL,'428407424-1-8'),
('5d9b0202-48e2-4bb6-a362-713ff66137b2','17a26aef-3edc-4baa-9cc1-e31a937771e1',240,100,70,0,'2024-12-07 09:32:18.094','2024-12-19 09:32:51.430','734626870-1-1'),
('5d9b4bf0-c60a-4e6c-a1b4-4fb6a6f6e04d','3268c72f-f164-49fe-b81b-8e7dba188814',106,216,40,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-2-2'),
('5d9caa2e-2462-468a-846c-2ffcaef742b6','443751fc-e739-4620-b6a4-3b4b39d4da52',45,80,30,0,NULL,NULL,'428163052-1-2'),
('5d9ec587-2e29-44b5-81ed-ca267d64e473','de610e6e-8746-48a1-bc9b-9545c82200ab',76,100,57,0,'2025-10-02 11:20:39.275','2025-10-15 20:06:33.336','221282484-2-1'),
('5d9ee1bc-bf06-4e46-ab98-ad3375a88a08','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',80,80,76,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-2-3'),
('5da24a45-fb8b-4995-be01-ed6df7370acc','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-5'),
('5da4d4fd-75cd-4a17-86fe-e565cd2d062e','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-12'),
('5da8b43e-f341-40e3-aa3c-c691902b6ebc','c1a31a07-5113-4703-99ff-14d4a90ef1ba',48,121,9,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-8'),
('5da9dcbc-f63f-4f6f-a3d0-5f21bfc4a695','1ad6d0d7-d80c-49ae-83a1-8f1779ed2429',128,18,197,0,'2025-09-18 15:48:50.869','2025-09-30 18:47:57.405','745374253-1-1'),
('5dad2530-a10b-4715-9563-ec4ec803907d','1b975dd0-98b9-4adb-88bc-962d71cc7b22',33,25,212,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-10'),
('5dad428e-cd1a-45ee-aa0e-ae1b4ff6529a','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-4'),
('5db1a52f-7a53-4a73-afdf-447f36bb1819','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-5'),
('5db29914-7b07-4e15-a9e2-193238cfd3a5','5ea4b207-b05c-4931-bbd1-648b6933aae5',104,85,53,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-32'),
('5db354e1-ba91-419b-bc32-bc4a4b1a456c','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-3'),
('5db42843-0bfb-4be9-875c-218b6e65bdfa','193f8529-9851-484d-b59f-72470c97132f',44,43,75,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-1-3'),
('5db57993-add9-4dfe-b0e8-feeef6d71349','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-191'),
('5db61a90-90e2-4f19-ba6d-edc581cc1ee9','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',230,100,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-13'),
('5db64adf-c62b-4159-bf3c-ee1921265fc6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-46'),
('5db9d571-5e3c-4c78-9930-b833e75b7b76','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',220,48,7,0,NULL,NULL,'644104537-5-5'),
('5dbfa876-2d26-4051-acbc-fdafef890d3f','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-2'),
('5dbff715-da07-440a-8000-ac94abc2a26b','b4526735-5641-4f8e-b544-78126f7e6078',0,0,0,0,'2025-04-11 13:41:53.749','2025-04-23 17:45:34.745','478138166-1-2'),
('5dc00528-4d9c-482e-b476-0b95655b2155','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-35'),
('5dc0bf8c-0479-4321-9681-e0c0af4cfde9','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-3'),
('5dc1c441-28cf-4fc5-b8b9-5f273f5579dc','0ca7b5c8-7608-49bc-9057-d56d835fbea5',80,2,205,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-4'),
('5dc30cb4-2520-4a3e-b682-808a284647c7','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-36'),
('5dc61548-ec46-423d-ab01-4a5ad08c25eb','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-18'),
('5dc9a42a-9e97-49b6-84cf-740aa6da0294','69acd97e-52c0-45ae-adf5-ee013e52776f',97,75,80,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-12'),
('5dcbd16c-76ca-447b-86e7-67a61f7f787d','1bb5f42b-00cd-4103-97bd-b2cd24afaea0',41,43,75,0,'2025-07-19 07:51:58.812','2025-07-30 08:02:01.464','371408514-2-3'),
('5dcc01ae-0db4-4f5d-a691-50c7a3a43be1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-23'),
('5dcce47d-bba7-4f2f-8712-a616953ab879','38109a6e-8ac6-46d9-8530-7fd5b3725869',100,47,70,0,'2024-12-13 14:49:13.085','2024-12-24 12:30:25.814','1936694-1-4'),
('5dcdb221-ce5c-4faa-8c78-27d52e3a9af5','42ca0061-b4cf-49b4-9c38-32898832854c',0,0,0,0,'2025-05-09 18:44:13.417','2025-05-20 06:24:03.531','371807983-1-2'),
('5dcdbe5c-1883-4911-bd35-6abce882ecb5','77622bd1-22d0-484e-a26f-ce2246532635',12,126,167,0,'2025-10-08 17:43:50.389','2025-10-17 20:57:20.132','614901187-2-1'),
('5dce80c2-e7e6-4f0c-973a-0662875b0267','c71f39fb-d5e3-408c-ba59-55a9dcf4158c',0,0,0,0,'2024-12-01 06:48:12.766','2024-12-10 12:35:44.768','44920682-1-4'),
('5dcfaf4f-46c5-42fc-be10-d7b5d750029b','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-31'),
('5dd76b43-3b12-4a9f-95b2-bd2bab05f90a','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',53,54,48,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-2'),
('5dd8fca4-71ff-4529-b4c0-aae423d7c4f1','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',305,95,66,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.898','107869996-1-1'),
('5dde74a2-093a-448d-b28c-e6568737e0c8','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-2'),
('5de2f904-7d58-4cfb-95b4-fd70bd6402e9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-145'),
('5de34cc0-f3e0-4d25-a028-3b32c89cea73','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-98'),
('5de5eb6a-7e3f-4f8a-9f54-aa27533ab386','af1a3f38-e83c-49d2-a38d-c1fbc58d5223',97,60,127,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-2-5'),
('5deabdcb-81ae-42ad-a231-1917757a78f2','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-1'),
('5dec0997-a6e4-42be-937e-0d258c928918','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-4'),
('5deed011-3fa5-4cb8-8c35-c8e7d14fe107','c98f6188-56c5-4870-be97-be71cf95f62e',223,59,4,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-4'),
('5def372f-7cbf-43c1-9025-85290f2d8ffd','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-2'),
('5df1b953-c2db-48d8-914d-5538546da76e','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-45'),
('5df349f1-f934-4b57-8d22-bf007a121a6e','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-8'),
('5df4feca-fcd5-4159-874e-782a56d86d52','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-55'),
('5df64f3c-8c4d-4e54-a37a-cf36f3e7792a','d9b67b57-dd9e-40a0-9cc1-3e7dbc1c3b30',104,215,13,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-4-1'),
('5df72bb3-7dbf-4a9f-a078-6b3f2df63c01','e7f31a78-648d-4a5e-9111-1bf7db38dd79',175,14,120,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-14'),
('5df87371-242e-4a8b-9e44-7bd9fefc6e72','9d7e593b-5023-4e2c-90b7-252a3cc3180a',0,0,0,0,'2024-05-08 18:43:33.235','2024-05-21 18:45:07.083','478890979-1-1'),
('5df9211f-2f1c-4e33-9897-381f9435ef78','1fffa8ea-befc-4b74-98ce-8981bef002ea',56,56,50,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-3'),
('5dfd1a93-2e01-4aea-a80a-fa728da34c3b','4a37c431-7317-431b-8aa0-05bfbd0b8456',0,0,0,0,'2024-06-08 08:00:19.084','2024-06-20 20:15:47.637','449627061-1-1'),
('5dfdb113-0384-4d05-a055-80ef80aad418','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-48'),
('5dfe5f97-4f67-4284-bed7-5f003b41809b','42b2ca3a-9313-4b97-901b-3859e34b21e1',56,100,81,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-6'),
('5dfec098-6974-41d3-9366-765490b829f8','e86f2f3d-8f0b-4894-8c39-9063af830231',211,86,2,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-4-8'),
('5e035d59-478f-4e89-ad22-0a8ee832268c','cd338320-b04d-4520-adba-f892a82d945a',80,95,65,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-1'),
('5e06c9d8-78ff-4241-aaa9-979acfa23b73','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-4'),
('5e098b34-bba0-4014-bc2b-1ddfe40a1374','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-74'),
('5e0af2fa-9437-4e7d-8d76-aee49650c276','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-2'),
('5e0dd868-e05d-4426-a8fc-579e6f94e518','8cf1c134-2d55-438d-84fc-b33192eae93f',107,10,225,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-5-6'),
('5e132a6e-5595-462a-a841-3439bc752d76','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-7'),
('5e147df7-075b-4ff7-834b-9cf76670719b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.324','223249369-1-45'),
('5e15343b-dde9-453e-b6a4-bfd6822c0a6a','23f3477c-f11c-4298-947d-16df3b5cde8d',91,93,80,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-1-4'),
('5e180664-7de0-4200-9c4c-a38f567e76cb','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-48'),
('5e19636d-8b17-4880-8e87-e5b2aadcc8dd','35108694-a340-4204-a046-217b0f92915a',210,38,34,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-1-2'),
('5e1a9952-0ccc-443c-a6bf-78958e2fe299','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-29'),
('5e1f7fcc-cf17-456a-b95b-7882fe716d57','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',70,82,100,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-6'),
('5e2272a0-9f00-49f2-897b-a738c5956b5b','fe4e104d-d113-4a98-bb0f-d5b0a3408cb4',75,23,138,0,'2025-10-20 07:18:16.076',NULL,'644664237-4-2'),
('5e255b0b-4ed8-4047-83f3-e79e131e8a7d','465d80fd-910d-4efd-b69a-ac5b10f5964b',96,167,5,0,'2025-04-15 16:01:16.815','2025-04-28 11:59:07.352','644887691-1-3'),
('5e29d6ce-19f2-458f-acf9-516a88b5f48a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-75'),
('5e2b5f41-d0b2-406a-88e9-cadfcbc7d29c','f5fbba45-31ba-45f1-8947-4cb66498f8a7',80,51,51,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-3-2'),
('5e2c9978-a6dd-41e0-908f-bf1f3247e62d','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-4'),
('5e2d1be5-d8e1-4d5b-9465-f7f2851a3377','d6df3903-19cd-4a6e-9222-dc4fd8ba3e29',76,57,102,0,'2025-09-18 15:48:39.771','2025-10-02 06:11:36.371','221724224-3-2'),
('5e33143a-840b-440e-b062-095511d13eec','ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e',75,70,100,0,NULL,NULL,'47816855-3-3'),
('5e355d1c-0ee2-4ffe-88a1-5c226b1046ee','7fa60ad1-fd9a-4550-964c-dbeaa07775b2',77,45,45,0,'2025-03-27 15:06:18.682','2025-04-04 17:24:41.799','613529206-1-2'),
('5e39171b-0334-4640-aed8-a90c95a2440c','8097e799-ad15-4df9-bffc-97a238b2b292',70,70,81,0,'2025-08-14 10:05:29.929','2025-08-27 19:35:01.417','531988506-1-2'),
('5e39f74b-d255-442f-a742-93a7f8059132','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-69'),
('5e3fe7ad-ec44-42bd-89e0-e36cb336f616','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-96'),
('5e41f84c-de88-4529-8a55-71ba1282675c','19f8d788-357e-4bae-a0cc-714638359cc7',51,18,84,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-5'),
('5e428a27-5e04-400f-b697-3c4d9413684e','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.910','478949141-1-5'),
('5e44c41f-6b41-46bc-983f-11598be385c9','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-4'),
('5e45fa7e-ff06-4b32-835d-72f3d6819e5a','307d6f4e-5065-4492-a18f-04b925d71f98',72,87,53,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-1-1'),
('5e47d20f-1d58-4153-b80e-c9a9761fef87','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.111','2024-08-30 15:04:24.956','248618650-1-5'),
('5e4b7c8c-9f14-449c-977f-7de5954fc82a','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',111,115,68,0,'2024-10-02 09:26:32.555','2024-10-10 16:31:34.970','428736949-1-5'),
('5e4e2f0a-150e-4651-856a-7150c8ff3c77','d9566919-c3d1-4b43-9f35-08efcf51aa33',0,0,0,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.258','478245028-7-1'),
('5e50e004-fa3e-41e8-a5d0-0115ce48847c','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.136','2025-01-11 14:12:27.786','248284003-1-161'),
('5e51ff46-7ae1-4100-b9fa-2436d4c20faa','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.136','2025-01-11 14:12:26.556','248284003-1-20'),
('5e530fc6-ce0d-47e6-9d0a-22f0dfaff013','d0512e6f-47bb-4d5b-9300-eec57f981f59',0,0,0,0,'2024-11-25 08:28:31.042','2024-12-05 16:18:43.895','478618410-1-5'),
('5e53983b-595d-429f-bff5-98fd554e7371','3aca7d6d-09cb-4903-812e-7535a083b09c',230,100,70,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-11'),
('5e54171e-4cb1-4967-b3ec-cfe157dd45ed','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.815','745645972-1-5'),
('5e564964-bce1-49cc-abec-5180dbca3e41','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-7'),
('5e5c004f-ab0b-4703-a3ac-4a24fbc9ff1a','2ab41284-325e-4735-a02e-0af4784fee90',35,205,7,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-11'),
('5e5dc633-08a1-481a-a620-177a999d49a0','c3322872-ddf3-4e40-b549-9fc0bcd0e3f2',26,38,10,0,'2025-09-18 15:48:34.720','2025-10-02 06:12:04.731','437101296-1-1'),
('5e63c701-a3bc-49e1-aa02-42abf81e3718','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-33'),
('5e723508-b787-42ed-bed5-8b60c62b04da','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-10'),
('5e7588fe-7619-49a6-9ee4-15218915598e','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-21'),
('5e760561-d27d-4cd6-a102-9e907cb72cff','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',135,43,9,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-70'),
('5e76be2e-97dc-4604-9597-5078599df40b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.747','223422825-1-109'),
('5e77ca27-329b-4556-a35f-be1192dc578d','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.473','2024-06-22 23:00:04.354','44831715-1-2'),
('5e799de4-8167-445c-81ad-7b4603274209','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-22'),
('5e7a3ec6-ba13-403d-80f0-e0159765a23b','f0ccee55-ac9f-4706-9ef6-eab6558d6a64',52,52,100,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-3-1'),
('5e7bec24-83b5-4c82-add9-c62ce2b00a14','06e319ba-26b5-4ce5-b9c0-d2e144aeabab',95,55,15,0,'2024-12-13 14:49:16.355','2024-12-22 12:45:33.978','976942444-1-4'),
('5e7c4c15-e4f0-48f0-9802-96a66451e20c','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-39'),
('5e7c5499-a9da-4862-8583-20dfe8804ed7','59be4a33-464f-479e-aa6d-ad757827d4d8',104,56,79,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-1-1'),
('5e7e635b-3cac-47e1-9ad4-c0b15bdb1238','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-88'),
('5e83f453-df05-4fd1-a2a9-f1b333512493','9866a947-9974-4053-8415-4518842488fe',94,100,70,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-17'),
('5e844734-c8d7-4324-8203-05dfeb7b6ef1','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-1'),
('5e86bfb3-93a3-42cf-807b-44f406d91abb','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-3'),
('5e899859-89d5-4fe2-8f80-03d7842930e4','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',131,59,9,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-4'),
('5e8d5f4d-6b70-48b7-837c-970f4c377998','afcdd189-4513-4f98-ba10-d072597768c3',0,0,0,0,'2025-03-13 12:21:23.214','2025-03-23 16:15:57.285','221892935-2-3'),
('5e8e3693-88f4-4b83-afb5-26b9a7da779d','1091def4-1b0b-468c-88e1-7bec1e66dc81',98,75,75,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-1-3'),
('5e8ea5c0-5ea2-48b5-80f1-45bd262ba1c3','397c6c0c-2b5f-44b0-8b19-823a5a63374e',0,0,0,0,NULL,NULL,'412980691-1-3'),
('5e94877d-a484-4a68-a313-e174b1389d82','e6b643b2-ddca-48ec-b553-690e29e71879',83,80,70,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-6'),
('5e9aaa33-16cf-428e-8c34-ed12d95056bd','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-107'),
('5e9aed08-fed4-4894-9f4c-83ee733aed21','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.747','223422825-1-67'),
('5e9b6d41-42ac-4070-80e4-cec168cd7f2d','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-70'),
('5ea08ea4-5c26-45f2-9540-00e4b5eab50a','5114defd-dd85-45fa-a3af-522574ed305c',120,180,45,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-2'),
('5ea291fc-a0d6-4410-a978-cb7901d23bc9','45711d8e-de1e-49bc-b9f8-a709a70c7fc4',34,34,80,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-2-1'),
('5ea34d87-9448-4f64-b3da-5e0116baf420','03f37a37-bf58-4994-8ae3-0d9bab55ce29',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-1-2'),
('5ea5a8e2-6e02-4d1c-bcf6-4132211ff033','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-1'),
('5ea60f29-6403-4fc6-b00e-a12bc69a2b04','642202df-ca75-465e-8036-f34da2dad54d',70,4,142,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-12'),
('5ea65caa-a970-4667-a6b9-84bd359a0994','6f8fd929-0228-4fd9-a182-83fe855d3f5c',108,93,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-11'),
('5ea67c85-c9de-4ed7-9060-23067ed7ac40','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.652','2024-04-29 09:07:38.566','478943291-1-24'),
('5ea6f4b1-8bac-48a1-ba05-fb203097353c','6cee1429-9935-4eae-be32-dc630b6d70e8',120,100,70,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-16'),
('5ea8f4b0-4229-4af5-b8a7-af971c5398c9','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.494','221949733-1-3'),
('5eaa7243-e09f-4d52-8e07-0d2663a97c94','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-50'),
('5ead388f-ef96-4869-985e-02344ddf55cd','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:54.890','248135683-2-29'),
('5eaf8fb9-1b52-4f9d-905a-9faedef729ba','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-9'),
('5eb1d8ab-07a9-40d6-8376-c7a50fb46a8d','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-45'),
('5eb2da0f-1a96-4f73-97ac-9b3d9b61d94e','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-50'),
('5eb2ecf2-24df-4a53-88be-74ae2b4f4e1c','676266f3-03e6-4ff9-92c5-07a1b81bc27d',84,53,52,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-4'),
('5eb4d28d-9e7a-4c09-bbcc-bdb7a84d0805','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-46'),
('5eb622a9-e2ad-476d-b910-49819f9f4d43','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-9'),
('5eb6bb6c-4b73-4b24-918e-b2d58d3f6181','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',130,60,9,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-71'),
('5eb6de47-008b-4db6-80dd-1fd9478390fa','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-19'),
('5ebe02fe-9ab7-496c-96ba-c7e58ffacb44','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-25'),
('5ebf86e5-0dbb-4102-bf35-084d195fa547','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.683','248243194-1-25'),
('5ec14160-e60b-48e9-a11e-abb015b0cfdc','76fc0420-d453-4e15-aaa0-2fc45178a4a7',65,94,94,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-4-2'),
('5ec1c54c-7523-4f47-842d-54235904eac4','b4183fd9-691f-4e50-aa3e-1185b3e78cff',93,93,6,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-2'),
('5ec1e6d6-a5fb-48e6-a3fa-6236e9e33186','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-16'),
('5ec6524b-006d-41a1-ae11-5500ee54b7b7','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',207,108,8,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-5'),
('5ec89cd4-200e-4b67-a241-a7979b472b3b','26a88534-d736-482b-a920-c717b09572b9',97,70,189,0,'2025-09-16 16:29:47.072','2025-09-29 12:23:01.142','371179895-1-1'),
('5ec93b78-6db8-4d9f-ab32-6a111378aeff','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:29.987','248135683-1-60'),
('5ec9a96a-a067-4629-9230-d2279270f5a2','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-11'),
('5ec9b523-8d7f-488c-b9b5-7a25ca818af7','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-14'),
('5ecb1875-89f4-443b-875d-7a65c471f3cb','b574a061-f2e4-48ca-bb05-af8813fa6286',61,60,90,0,'2025-09-26 12:39:10.670','2025-10-09 09:24:57.388','644803178-3-1'),
('5ecbf2de-2907-41dc-ba93-2173d052279e','db333680-8c96-42d1-8a24-6c5ab1346079',60,60,85,0,'2024-11-12 16:16:13.047','2024-11-20 16:19:02.417','910891585-1-3'),
('5ed31d36-26f2-49a4-ab0c-0720339333e5','77ba132e-7c8f-4ec6-9299-238cc9b3b7e4',65,203,28,0,'2025-06-27 17:12:12.393','2025-07-10 07:16:37.956','745952430-1-2'),
('5ed6e940-c70d-4939-aca3-5b98ad14d227','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-5'),
('5eda007a-a876-4462-b467-185f54418909','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',200,160,3,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-25'),
('5edb0d0c-deff-4cfa-b03b-30fe4542c998','8b0faffd-49d2-436c-acda-c8b006f7cc05',0,0,0,0,'2025-02-23 12:39:25.741','2025-03-04 20:47:52.542','745687103-1-1'),
('5edd71d4-2512-4528-9623-01f725577786','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-21'),
('5edfe2af-9ff1-46d2-aeb6-41db0e426aed','534b92d0-013c-428d-99ac-08117a624aee',93,115,65,0,NULL,NULL,'351183541-2-1'),
('5ee1c9b1-40dc-4777-b039-57673ca3f3fa','c1d25f90-d493-406d-a430-9b65b4f44c5e',3,68,86,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-6'),
('5ee306d0-7df0-410e-8816-157c5a2705a5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-120'),
('5ee43941-e4c2-4f73-b127-f722c83a2146','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-31'),
('5ee4f246-413b-4cd4-929e-123ea2a8a0f2','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',40,106,206,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-17'),
('5ee71ebe-05db-486f-bda4-7886d595d7ae','31efbfbc-2eef-474b-8cd0-b552d5c60b72',110,28,255,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-3'),
('5eec03e3-3bb8-407d-8c19-d42c8720b385','c480858d-901c-48e4-862f-33a7b0a7f33f',0,0,0,0,'2024-05-08 18:43:34.954','2024-05-21 18:45:00.280','478321858-1-1'),
('5eed692d-dabe-4453-a593-7bf2726d1844','3e4d9220-ce76-450d-a76c-9787b1f4433f',34,34,47,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-4'),
('5eee04a7-6bd4-4dd6-a034-585c7a8b5267','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-9'),
('5eee72b6-2753-4f33-895a-581924f0b170','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-2'),
('5eeebca5-5a72-4e62-b98d-779ce4302784','c5027968-9a23-442a-bebc-9b8745408960',62,217,6,0,NULL,NULL,'982759064-4-14'),
('5ef07aeb-ff5a-4366-bbf6-eb9774d3125d','841f7f01-a7cc-440b-859e-dea7f085dd74',79,107,56,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-20'),
('5ef2c759-80b8-440a-b6d7-9fe5f873f015','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-4'),
('5ef3d444-99cf-41e9-81bc-444658cd5b1a','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-5'),
('5ef76536-4aff-45cf-9fc5-f17161c9bae4','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-14'),
('5eff816f-a779-4979-946e-b8c4c9f63be7','a135c145-15f3-450a-819b-e82b427bc978',56,42,18,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-14'),
('5eff830f-4d93-410e-9efa-b60ed71f50f3','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-16'),
('5f05d7a0-490a-4e70-bf22-935d305e374d','92a145d8-7167-461b-8674-419e94785674',230,70,100,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-1'),
('5f063d79-96f3-4b0b-8407-ad0467193864','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-3'),
('5f08b83a-3ce9-43e3-a44c-3cdf007dbb86','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-1'),
('5f0a2b5a-2a6d-46df-acee-7082727697b0','d93f5d7a-7db9-43e3-8d9e-87cb0ef58425',94,43,43,0,'2025-10-20 07:17:51.379','2025-10-27 09:24:00.820','371434188-1-4'),
('5f0b4427-b827-4d0d-83fd-41d8cc38cd6f','6b893fae-c5ae-430a-922a-8b76921e755b',55,84,108,0,'2025-08-14 08:21:42.890','2025-08-21 08:13:45.093','43752518-1-2'),
('5f0b4b5b-aa0e-4bcb-bd4f-c2061e4d14ae','83b60f78-3367-4358-9376-fd4dfc3de67e',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-1-3'),
('5f0d54dd-1a41-4773-b26e-06b3ec045ba2','07db21ff-c0e3-442a-bf22-b6f2f41656d2',95,51,51,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-1-2'),
('5f10bb4a-d03d-452c-8c5d-e332468a8dd8','11d9d1c3-aa53-4d51-a735-2be58bc6aeef',0,0,0,0,'2025-07-08 11:31:23.368','2025-07-23 06:12:43.035','982632860-1-3'),
('5f12cf9b-da01-4ffc-a135-3df98fed3cbc','acbdd21f-746f-4630-82bb-eac5e391f704',80,92,75,0,'2025-02-13 20:44:02.437','2025-02-24 13:33:20.162','786254351-1-4'),
('5f13dd06-927a-4e80-8526-a31dcdecdfe5','0cc39437-8ee1-47ea-87c2-b9fe770c2259',103,103,79,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-2'),
('5f1663de-6e89-4d00-a121-b3ef25c98c00','81b6844f-9988-4a82-aa1c-b69b75b17ba7',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-2-2'),
('5f1719b6-f94d-416b-a957-8f719b432ab8','e89e7d75-4967-4c63-9f73-981469e531af',238,105,9,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-17'),
('5f177f66-95fc-440b-99b5-082bcce15521','9568170e-e378-4da9-b37b-d9254993edbd',232,95,70,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-4-2'),
('5f18ff2d-b473-4d3e-9a72-e3511722fa71','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:31.243','248135683-1-152'),
('5f1bd001-ae9d-4059-860e-9acee35fcaf7','57ef4979-842b-4b07-84ef-752e1f28ee7d',43,90,90,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-1-2'),
('5f1c1134-39f6-44ad-9237-a9e589a6d757','a5626ae2-9a5a-4401-9095-a368c22814f1',51,125,23,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-11'),
('5f1c1431-f20a-48bd-9668-6128c8347cde','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',65,94,94,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-6'),
('5f1cbd8b-90b6-43ac-b140-8e4647456312','0ce74bb1-5b22-4340-b7c2-3e486e77bf0a',51,51,76,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-1-3'),
('5f26aa64-6649-45ee-9519-a2bdd53444eb','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-174'),
('5f2cb589-7748-4744-bde1-96145b731fb7','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',200,16,16,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-5'),
('5f2ccbac-2f6f-42d4-954e-37925ad05397','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-5'),
('5f2e501c-603c-47ee-afec-a5cb681feafa','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-15'),
('5f33d66c-ba98-4608-86e1-9a7ad4d1015e','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.219',NULL,'412206514-1-11'),
('5f34938e-f50c-49cc-a285-57e2969af396','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',47,42,47,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-2'),
('5f354b8a-f011-4fbf-850f-ee4a29793a1d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-49'),
('5f35ca48-5498-41fc-bfea-00c8b11ff8f4','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-67'),
('5f37883d-4047-4c65-8dc3-ec85f58b2e3e','638172c9-793e-4ec5-9ad2-cf82bf06eca7',83,6,186,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-1'),
('5f3c656d-e6c4-4cc2-9a3e-8f9175cdf666','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-3'),
('5f403cb6-b397-418c-ac09-0a20ef3754a7','346c41d0-7f77-45cf-8572-ddf0fc62cce2',99,118,60,0,'2025-10-08 17:44:04.955','2025-10-20 06:32:03.725','644301613-1-3'),
('5f40acde-9b24-49b4-ae9d-e347ef0a689e','edcfcac5-104f-43f7-9e71-b88aa530c026',0,0,0,0,NULL,NULL,'745693868-2-1'),
('5f40dbc5-8fbf-416f-b01c-9d50d1128162','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-14'),
('5f44379a-0e29-4cd2-a169-8b9c6109d49f','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-35'),
('5f44feb3-753a-4d89-8eb6-f86894d6fb74','5bc7ab60-e1c2-443d-9a05-7c4a3a009f1f',30,160,200,0,NULL,NULL,'614204771-1-2'),
('5f46419b-eb5f-40a0-ba8f-4d90a163c5d1','c1eae8f4-8187-4c64-aba9-aab18d9bbb27',100,100,80,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-5-1'),
('5f47ed43-ede2-4836-96dd-f607facd8317','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-13'),
('5f4852c5-0d74-4f08-b059-c13477ed2d04','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-2'),
('5f48fef8-043c-4023-a1a8-2788a7269462','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-15'),
('5f4a742e-2bb8-4c22-9101-c926b8581798','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-112'),
('5f4dea00-0a8f-40cb-b6dd-f152186ce476','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-18'),
('5f50ca35-780c-4f43-af7f-d01e2d5350e9','4468137a-37e6-4938-b390-5c8261b58e50',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-2-1'),
('5f513b1a-8978-4081-9385-d44da9fc57a8','83e81175-cef2-4f5e-adbe-8ca02a747efd',58,199,2,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-8'),
('5f51a7f6-141b-493e-b788-4f10d4abfe24','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-17'),
('5f52b10f-cd07-45a6-ad03-9b0cefc55d8a','2547c819-405b-4d9a-a0a4-ad76db169d46',80,95,70,0,'2025-09-18 15:49:10.658','2025-09-27 10:27:57.874','598148104-1-4'),
('5f53617f-10a3-4a4a-a715-29d8024cafc5','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-14'),
('5f5a86db-f646-4242-8025-faef99b0d9ae','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-2'),
('5f5cb56e-ebab-4660-80e1-427d55864a31','05008527-fd22-4ebd-921b-be4d8555bbb8',51,51,77,0,'2025-08-14 10:05:31.015','2025-08-27 19:39:28.223','505987989-1-2'),
('5f5e1583-27ae-4da6-9daf-6478640e865e','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-1'),
('5f616051-8f36-493c-b124-166243222a63','3cb4049f-f049-43eb-aed9-c5807606078d',0,0,0,0,'2025-04-15 16:01:12.913','2025-04-28 18:15:37.519','231348651-1-4'),
('5f620816-8950-4488-b2db-1615e434ca2e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:32.037','248135683-1-202'),
('5f628d7d-097c-4d41-856c-8cc946df691a','54f76545-b44c-4fcf-8097-cd39f86917de',114,140,14,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-2'),
('5f679bc4-39b3-4be9-b42b-6a72829cd5a0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-110'),
('5f6df60c-825d-4fea-a40e-96f021c61eee','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-34'),
('5f6eb8a6-cfaf-40bb-9b58-3f349e3c4c48','68196a47-7977-4b73-9a24-2c24753a10b5',56,56,78,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-1'),
('5f6ebc63-716e-4157-b238-47588091ad54','b4183fd9-691f-4e50-aa3e-1185b3e78cff',69,106,10,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-6'),
('5f6f0e7b-7857-48eb-bcf3-c500a2c46afd','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.466','011195834-4-3'),
('5f7011bc-ee4a-4c44-b78e-69cef5db8d29','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-8'),
('5f73a768-04ad-4222-bd4c-8287b63c0583','6a34a80a-fe09-4ffa-8ad1-ed500b30a4d4',50,50,5,0,'2025-09-01 11:06:28.489','2025-09-12 19:45:58.707','644763473-2-1'),
('5f7582b6-3e4c-4a1e-a82c-2af44ddc9d7d','83b9571c-57fb-44d8-9d15-f074c343858c',230,100,75,0,'2024-03-14 13:50:31.260','2024-03-22 10:14:05.550','428647459-1-2'),
('5f78359f-9ce6-48b9-94b9-2e5f03c199f0','e7812ff6-8432-435d-ad8c-50f9beb9f193',100,21,11,0,NULL,NULL,'248501679-1-1'),
('5f787bdb-424e-45c8-87b7-01a03ee90a37','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-50'),
('5f7997c9-1844-4ea9-9327-26959b2f1518','ebb978cd-58c7-4bbd-8316-d3317348da3c',95,63,65,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-2-3'),
('5f7afacf-0224-487c-844a-a95ccb074906','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.747','223422825-1-25'),
('5f7d554c-9134-4fa6-a05f-d99697c343a0','ae991996-4699-46b6-814d-8a6d951bcedc',98,70,208,0,'2025-06-27 17:12:26.311','2025-07-07 06:55:17.755','371749484-1-1'),
('5f7f8415-49c1-418c-94b6-99f495714083','38c9e885-9a1e-42c6-bd22-aeabea344a53',230,100,70,0,'2024-11-08 17:37:52.939','2024-11-21 12:40:21.415','750486427-1-1'),
('5f800a8d-602b-4623-9e61-098fcfe50232','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-29'),
('5f8134f2-1d70-4fe5-b668-a7341decdebf','1d002e0e-a36f-4d75-b950-633af2536065',183,7,94,0,'2025-04-28 07:40:43.381','2025-05-05 09:10:54.449','613502652-1-2'),
('5f82a67d-475a-4258-82e9-d26430ce9929','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-76'),
('5f82baca-9ee7-4ffa-98ac-609dd71cc56b','8fc7023c-7fab-44ae-a533-006d835eddb6',59,259,10,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-11'),
('5f859b60-dfdb-4305-9cb6-05df4125fb60','7ba47169-83ca-49a6-98fc-6ef1a1990eac',100,92,52,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-10'),
('5f880bc7-b445-49f8-866c-fcf201d7af6a','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.039','221900850-1-6'),
('5f88b27f-0552-4c3f-8112-32d79f7e2a14','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-23'),
('5f88d124-3b21-4b5d-8e7c-5dd455cb9830','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-32'),
('5f8a85a6-e658-427b-aead-07181d7c129c','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-33'),
('5f8abca7-20f0-4cfc-854b-8501eb70f650','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-47'),
('5f8d4126-02ad-4610-b65e-737b3dcbfe9c','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-3'),
('5f8fdc03-a1bb-4a27-9b08-41461a72747a','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-9'),
('5f93bc0a-a562-4574-8e83-a13a650b6c4b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-134'),
('5f953558-fff3-4ec7-a031-c91a714b59d2','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-50'),
('5f967286-2246-467c-9a1e-0ae9a1a883c9','be9c2c0d-546b-4955-8cae-7e59b8476d8a',51,51,77,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-3-2'),
('5f970e45-c792-4667-a2a7-a2d01b6de3fe','3735c345-c4d0-40fc-afc7-359f15617a16',120,120,70,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-3'),
('5f9bac91-ac71-4483-ae4d-75f40eec1779','7539ec51-cdb8-4879-b280-a64290bb512f',36,20,11,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-4'),
('5f9c8bc4-0488-4068-9ff9-18803528d0f0','145acb30-1c39-4fcb-b4a1-ded11d8b7586',96,80,96,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-4'),
('5fa0e5c0-b850-41bb-907c-ccf4f3acff15','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-2'),
('5fa19c1e-09cc-4205-b447-17b0419d00e1','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-36'),
('5fa19d7c-74a9-4993-96b3-3139b94894a0','1977a173-f6c0-45d1-ba5d-5729f658054a',51,51,77,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.934','221850151-1-2'),
('5fa40cd3-c90b-4759-a253-d697e0051313','5b74d54f-5e67-4524-a1ee-59011b82f249',0,0,0,0,'2025-04-30 14:29:15.473','2025-05-12 09:08:09.366','412731497-1-1'),
('5fa7442b-9b5a-450f-b969-d7ab14ce3a1a','3735c345-c4d0-40fc-afc7-359f15617a16',100,70,70,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-2'),
('5fa88544-8bd7-4cfd-a70e-6bde398c50f2','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-140'),
('5faf3480-aae1-4642-88a7-5fc75b80f579','4bd3461b-c38f-4c43-90a6-39aacd24cc83',60,90,300,0,NULL,NULL,'976462703-1-6'),
('5faf69b3-935e-4277-88ab-dc0cb600f539','1a929455-0b70-45da-b39a-75cee0e92908',45,50,210,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-2'),
('5fb00ad2-ba1c-44f6-9744-aa726864604f','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-21'),
('5fb23e23-f5f6-4f4a-91de-13d3d1f65e6b','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-1'),
('5fb6cee4-d7e3-42e6-8968-73258430a907','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-11'),
('5fb7f578-f671-4c01-a834-1f90f363c6e3','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-132'),
('5fb92e76-9ea8-4002-8127-bfb55ceacc98','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',63,44,35,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-1'),
('5fbc6da8-f1b9-4357-bef4-941eb1162763','e3274e26-e81b-4a5a-bc90-d5199ceb2caa',90,80,240,0,'2025-10-22 13:06:56.699',NULL,'910152598-2-2'),
('5fbd1fbb-fc94-4bb4-9056-f717c05dfcdf','b3f001df-2f2a-4776-a3b3-cdfa1a154531',230,95,85,0,'2025-01-22 09:07:20.142','2025-01-30 09:59:36.200','910796066-1-3'),
('5fbd2112-2f43-4deb-a741-6388f81ba199','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',200,70,94,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.258','449208438-1-2'),
('5fc01887-f935-4b70-b8c5-1d6d191fa4f3','b23cf296-f843-4492-9697-0fd43d657771',190,45,28,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-8'),
('5fc0ac66-5b07-4654-8adb-e15101fab4e6','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',90,70,225,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-1'),
('5fc1538b-3876-424d-adc9-eb66e5cfb2e3','8a2e1aac-28d1-4f92-929e-a34cea96fcff',94,163,15,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-4'),
('5fc35ff9-60dd-40ab-84f5-d990726dc7cc','c2a3eb30-4a97-42f8-8728-73449ef0f928',51,51,78,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-2-2'),
('5fc3736b-7b9c-4237-9728-44464a0d3cb0','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-2'),
('5fc415fc-d696-4475-af1f-0b387fc4c834','4ac8027d-d5db-4a57-916c-23dd357c98aa',75,43,43,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-7'),
('5fc8553c-b90f-45b3-920d-96cf204aa7fd','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-1'),
('5fc9f30e-0b6a-4555-872e-4b1818faee37','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-76'),
('5fca33e9-05b7-4689-b467-748f7d1671cf','9866a947-9974-4053-8415-4518842488fe',44,76,10,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-18'),
('5fcbac88-3aff-4454-ba3c-b8779efe8fad','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-19'),
('5fcce106-7ed0-44ef-b24b-d9099e2e05f5','e6f73d54-f93a-41d1-bbef-8930d53eb399',82,57,101,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-2'),
('5fd0f61e-6ac1-4d55-993e-4c6375ed5910','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-2-5'),
('5fd22a95-2a7e-439e-8891-704d757b4e3b','8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7',15,97,170,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-3-2'),
('5fd44feb-0f5a-4fc7-8e42-0593df6dd1f9','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-14'),
('5fd6e599-0dd8-42f7-8316-1e1633bbef52','a322199e-9388-4cdc-a475-2497cf269eef',280,96,65,0,NULL,NULL,'501589922-1-1'),
('5fd82b88-8cc8-4dbd-a307-2c6f25fb6c1d','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-9'),
('5fd845e0-099c-4418-a88d-bb45f8b8a5ec','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-7'),
('5fdd7573-00c1-4352-9a61-4b9f3ebdead8','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.615','2025-02-24 17:24:36.114','98222656-1-7'),
('5fe3bf88-5ccf-4f90-b200-9c69ee79f469','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-35'),
('5fe47d0f-4c9b-4ae0-b148-f8c148cee245','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-22'),
('5feaceea-c3c6-457d-a45d-ef0c2ddb5582','e178636b-b1d9-4260-aa1b-879946fa7f5d',80,3,210,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-9'),
('5fede684-0c4c-4cc9-8e7a-9b75c2213853','0c36ae1b-e1eb-476a-8196-505500cdac6e',57,82,104,0,'2025-03-24 16:01:49.444','2025-04-05 10:57:59.260','613508377-1-3'),
('5ff17754-d7d8-4a46-b1d9-be130a332ad3','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-5'),
('5ff45b1f-d2ea-42dc-94ae-344d3c85425a','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-7'),
('5ff4baa8-f794-40ea-a98e-6ec498cdf47b','af3e2c68-d1df-455e-a5d7-0f309e2961a9',86,86,7,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-4'),
('5ff7b36f-15cd-4c81-81ee-6d63f4cdeae4','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-96'),
('6009cbd0-6ff1-4906-a0f4-402fc68a6b65','aa113c34-9fed-4b54-9803-35911009db78',28,28,15,0,NULL,NULL,'910781464-1-3'),
('60122843-4b04-46d7-9f42-166640be44b6','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',38,30,20,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-6'),
('601293e5-313d-443d-bb2f-2d88ca419955','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-28'),
('60150948-3a75-4d18-b3f3-ebf3b1b9f0e1','546ad3d0-25c2-43dd-9443-e48b8e5b6530',56,65,95,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-59'),
('6016a038-e11e-4b6e-85bc-2f728294be22','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',98,177,10,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.704','437591433-1-7'),
('6019ce24-6ce4-4204-86a5-d9f857d75c9d','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-2'),
('601e9167-2e83-48e8-aec4-1dde714bf5ae','0b843397-58bf-411e-9c45-d57a80cdcbbe',0,0,0,0,'2024-05-23 07:27:18.746','2024-05-29 11:21:56.854','449401217-1-4'),
('6020b707-a27f-4d1c-b4c9-c813c87fd268','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-8'),
('6023019f-661b-48bc-8c4a-b30f2383755b','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-35'),
('60243f62-0cfe-4a04-84b6-07a5bffc7bf7','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-19'),
('60247dd8-e395-4e95-8db0-8d44fe20b671','c080623b-df50-459f-92a8-eb2eaff4030b',70,100,55,0,NULL,NULL,'478350685-6-5'),
('6028d019-650e-47c6-a90d-53a104c4ea88','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-5'),
('602a97bf-1850-4127-a011-fbb75a457aae','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-172'),
('602d4e82-e443-4e00-a304-a9b28b9e52a6','5aac8c34-51ea-4438-b73e-7d54bf02d518',5,117,187,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-10'),
('602f56e8-24b1-4f52-8143-cdf6e76463c4','5ea4b207-b05c-4931-bbd1-648b6933aae5',104,85,53,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-33'),
('60318f12-aac4-4c8f-8ed8-481ae949c2ba','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-5'),
('6031c9d7-e0e0-479c-b5b4-90813ee24774','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',30,18,208,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-9'),
('60332851-c899-4e98-8244-d666bffbed6c','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',40,215,80,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-6'),
('603630b2-eacf-4615-93db-e7e7dbbf5a43','c98f6188-56c5-4870-be97-be71cf95f62e',80,80,7,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-23'),
('60398c16-5c4a-4f65-b9c0-f1c835be7326','de8a2a10-9ee2-444a-a28e-efaf3ff1c953',118,100,70,0,'2025-10-20 07:18:16.076',NULL,'644664237-3-5'),
('603b0761-0b62-4128-8d25-afc100c487e9','f5158f15-6373-4fcd-aeb6-1fe6b9c0961d',56,16,120,0,NULL,NULL,'655216482-1-3'),
('603b5127-dd76-42db-9592-13b0a0c6da40','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-7'),
('603c101f-d6ba-4f5b-8a27-766cf32cd9f2','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.223','2024-12-05 16:17:06.732','428651654-1-34'),
('603e82f7-915c-4b8d-ba6a-be90c005d7c0','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-21'),
('603ee0cf-b1d8-4310-a2c6-7c96247b0fe1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-87'),
('604209af-95a4-4f0f-b6bd-94e5854368bb','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-70'),
('6046b5ec-750d-4e47-adab-840b1ca89ee2','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-72'),
('604a5f55-4b21-44b4-9dc7-af872b827b16','fd1e8997-53e4-4033-a92d-13fa88acbade',62,2,197,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-37-3'),
('604c3120-769c-4466-bc2f-7adb377dcf02','ae22c95f-8f5a-44b8-98b4-9c9319923e2c',96,52,58,0,'2025-04-11 13:41:15.462','2025-04-28 11:58:44.064','43720744-1-1'),
('60507c74-6aa3-4ef1-b2f5-38aaaa01ed28','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-234'),
('60508df3-caa2-4d91-98c5-e37594bac624','ea6ce2a5-fd42-4bc9-978d-b3714213845f',167,94,65,0,'2025-05-09 18:43:55.905','2025-05-21 08:16:34.944','976430102-1-2'),
('605b13ca-a463-451b-a6c9-93c7b0052a94','ed660ffe-c741-4eb1-b890-c5a2f52b1f9b',76,56,103,0,'2025-10-20 07:18:10.105',NULL,'59874048-2-3'),
('605c00f7-5e0f-4ade-831b-4d4e131d6c84','faebcca0-46de-45fa-9329-665a09e1afc7',115,115,8,0,'2025-07-19 07:52:15.651','2025-07-28 12:02:34.929','371944289-1-4'),
('605c9e08-488e-4c9e-865b-eac0914265d1','03f429da-4d99-4f35-ad4c-9889f0fb87ee',51,51,77,0,'2025-10-02 11:20:44.115','2025-10-17 06:17:01.820','221364325-1-2'),
('605cdea5-149b-4236-827b-67648244efb5','69ea6974-d387-4458-bf21-972299a4ce67',100,68,168,0,'2025-09-11 06:34:16.553','2025-09-17 16:03:51.803','437529604-1-2'),
('605ee184-588c-4bbd-abdd-2277c8c392e6','a8602257-d25c-4483-b345-d3a8ec10d670',50,40,65,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-3-1'),
('606305b4-03d2-4310-9eb9-ca87072e67d1','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-8'),
('60662083-ab8c-4dbe-a62b-9068b2855caf','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-5'),
('606a4d0d-f5ba-441e-a752-ba96d4eca807','7311f1e0-e2be-43dc-9e40-f94a010e8939',30,24,27,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-23'),
('606d66a6-db99-45b0-bccb-5f6570805651','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',85,54,54,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-8'),
('606e51ae-3812-4459-9654-2a46220c89fd','16ee37cc-f44c-4652-a3d9-37ff204f5538',0,0,0,0,'2024-05-08 18:43:19.572','2024-05-21 18:45:56.505','231455458-1-2'),
('606f0043-6876-4393-a233-626065edd250','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-117'),
('6070fa22-5aa2-4091-ade0-3f856a6a2831','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-70'),
('607a0b1b-e9b6-44f8-afde-74c347ac9a02','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-1'),
('607a6b29-7874-436e-9ee6-ceff18197cab','808a4f1b-793f-4a15-808d-00c26a26c166',226,6,47,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-15'),
('607b9854-229b-4d17-aa17-da2037c551de','048e793d-c7d3-4002-b07f-d674aee9a12e',83,57,101,0,'2025-07-26 07:41:47.970','2025-08-01 13:39:23.236','675124573-1-2'),
('607ccf81-3aa9-4840-9c8e-aa4452080785','607b4c5f-810b-47b0-aac2-0f9c1bde53fb',75,65,95,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-1-3'),
('608a1091-f64c-4061-845c-2076c27d3c74','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-1'),
('608b8862-79dd-4464-9183-5b995dd95d2e','30506096-717b-49d6-916d-e53b4af1ac5b',100,98,70,0,NULL,NULL,'644303406-2-1'),
('608ca676-1d2a-4106-988e-ba6086d5444c','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-14'),
('6093877e-c60b-46be-a486-fcc703610a4b','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-5'),
('60959905-9d97-4e75-8a2b-65f0310b33d6','db7058ef-de6e-444b-b25a-dfa474ba7bcf',230,100,67,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-7'),
('60966201-e9fc-460c-9f81-cea0f74d003b','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-23'),
('6097312b-253f-4eb9-94ea-ec5c82281120','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',220,48,7,0,NULL,NULL,'644104537-5-6'),
('609b9f5c-592a-4257-b80f-46aa8b0ed114','1e2311a0-6cac-4263-ad4b-df8b85b9fe7a',35,44,173,0,'2024-11-25 08:27:49.578','2024-12-13 19:00:51.189','982271871-1-1'),
('60a202f1-630c-42b7-93f2-4af4ff4da3db','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-17'),
('60a224a7-8351-48a8-b1ec-9d8f5b66dfe6','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,400,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-18'),
('60a4496d-e3e7-4a76-a8a9-5aeac7e28d03','0cc39437-8ee1-47ea-87c2-b9fe770c2259',51,8,181,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-21'),
('60a6d004-38b7-4b0b-b2cc-67064757a09e','090b9a06-aee0-4c02-b626-f3e2002f0fce',57,43,11,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-3'),
('60aba707-5764-4315-9156-a5a5bddbd1b6','2833c015-c4a7-4e42-bcb0-6965d0bf9a2d',97,195,68,0,'2025-07-12 09:20:36.030','2025-07-22 13:23:30.418','598161990-1-2'),
('60af4896-0a08-41cf-a56d-17f35d82adfe','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-17'),
('60affb46-fc28-481f-a86f-01f65191e391','ae267513-3704-433b-b18f-6d6210d048fb',120,120,80,0,NULL,NULL,'644104537-4-3'),
('60b58f2e-1256-431c-ab03-058cd3eb8299','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-146'),
('60b658dc-195a-475d-8790-73ffa54ec17d','b4b15055-f101-4d05-8ad1-045787380a20',97,75,164,0,'2025-10-09 08:39:52.751',NULL,'011940661-6-2'),
('60b8c2b0-c172-4978-8b2b-ba3631ed2ea0','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-35'),
('60b942c9-75fb-4fbb-b12d-6c201f3950b1','8ac95ed3-d833-478a-bb81-b1337612bde0',73,106,55,0,'2024-03-23 08:36:18.109','2024-04-03 08:28:41.117','982562609-1-3'),
('60bb682a-a813-4029-bd07-c4ae3b5440d1','0e92c59b-93d0-4308-91ce-3965bb186203',55,55,55,0,NULL,NULL,'428180919-1-8'),
('60bb84e8-a351-4faf-aa9d-eff2269f6c10','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-9'),
('60bc5491-a1e6-4e2d-babe-0271f1e9251d','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.387','2025-10-17 06:12:49.749','644606140-3-6'),
('60be1f81-946c-4955-9617-e0c2626ea25d','30cc08c3-1c49-4272-a534-8826f5e06885',72,99,95,0,'2025-04-28 07:40:38.026','2025-05-06 11:25:38.562','817893403-1-2'),
('60bfc77f-5d37-4b04-9015-171cf188aac3','2039ee35-f01e-4485-89fd-8576030c9477',0,0,0,0,NULL,NULL,'614927187-2-1'),
('60c48fc7-8282-4a83-9fcc-096c78f4751d','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-16'),
('60c5bb60-4ddb-4e83-ac6d-14b876411c6f','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-14'),
('60c976be-b3df-4541-9a70-db28f811236b','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-44'),
('60c9c92f-934b-4521-8df2-fa00f9a8ec71','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-11'),
('60cfae27-558b-45a1-9419-4784c00d1965','92e74cc1-8870-45fa-ac8e-6a5609a5c837',123,73,6,0,'2025-03-27 08:02:39.973','2025-04-09 06:26:25.853','22145224-1-2'),
('60d35e98-6099-45a5-8b19-756199e30bf1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',190,128,5,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-73'),
('60d49965-d432-4add-b3f1-3c114bd42c6a','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-34'),
('60d6a54f-0dc3-45c6-a702-20d18289bccd','b8cb209c-3d60-466f-8346-01810d5816ec',6,56,209,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-3'),
('60da4877-c893-4a47-87d5-8ed17cf2b228','3ec26908-d18e-42fc-bdca-909ed5ad501d',94,220,7,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-1-3'),
('60dd8ee9-1261-4abc-8866-1a0166d390cc','d4f91387-af40-4672-a65c-7ea6e96f76b2',42,14,124,0,NULL,NULL,'478350685-7-5'),
('60df920b-5ed1-474c-9573-58d85359d105','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-96'),
('60e1dd18-ebff-47b7-8df9-874241062188','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-4'),
('60e248ce-1c4f-41f4-9a93-dd63713afd0b','56d181e7-071b-403e-bd82-0351e0863d0d',50,100,82,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-3-1'),
('60e3abe6-b779-4cc9-968e-9331a52d92a6','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-26'),
('60e74238-11b6-45c5-a566-ab0b95c7180b','4738e896-6b15-4ccf-8853-35517f47fbfe',110,83,66,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-3-3'),
('60e84a92-977b-4a72-9438-c9738fe5580f','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-2'),
('60e92a71-296b-4133-bd93-dc752a1c50df','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-16'),
('60e9ce74-77ae-4bef-bf87-c9bc35458cf3','80510286-f99f-4ac7-8b5a-8391d6a48f0e',0,0,0,0,'2025-02-20 12:15:15.489','2025-02-28 12:03:55.924','478775583-1-4'),
('60ed85a2-f689-4ea6-bb9e-669303114849','7aa660c9-3193-4cae-ac2e-82a288784e22',0,0,0,0,'2024-05-11 08:11:41.968','2024-05-31 10:16:29.386','478235858-1-1'),
('60ee1b28-8f99-4557-89ef-5f1e118527b2','c4f10c81-b322-4ff5-bb9c-85e7f0e16565',76,53,101,0,NULL,NULL,'478514572-2-2'),
('60f1cfe9-8c12-4a44-9cec-c0179577a13b','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-19'),
('60f3bc04-0d99-47f4-8bd6-fbf0f8a77cbe','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-74'),
('60f4082a-6470-4651-8a42-9d992230b191','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-11'),
('60f60c22-91b0-4c0c-b8ef-0b7e120c57c9','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',80,106,43,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-5'),
('60f76ce2-298f-480b-9f69-c6044cadbc69','8a112f94-c1ef-4860-86dc-23351280686f',25,45,51,0,'2025-07-12 09:20:19.430','2025-07-25 10:49:06.698','976114868-1-2'),
('60f8c0c3-6d5b-45a9-bf74-e92fc14dcef9','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-10'),
('61014461-0552-46f2-9458-028b321d4f9d','ede9284e-0f42-4aa6-a16a-754961f9be43',230,67,92,0,'2024-09-28 16:26:55.303','2024-10-10 16:32:52.344','449197003-1-4'),
('610492ab-327d-48dc-b47a-d79fbe0556c3','60fb62a4-8365-4095-8f73-1e4ce71568c0',25,80,60,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-4'),
('61049ce5-743c-4ba2-a124-3b06056bd6aa','a1729ef8-68db-469a-aac3-924bcd87bbdd',99,70,240,0,'2025-05-16 16:33:37.957','2025-05-21 18:42:06.781','371539784-1-1'),
('6104a5e8-c930-4e56-b455-9c64a17eccd6','80d84738-4558-4872-bcee-0d4fada9081f',53,71,100,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-5-2'),
('6105474a-ac83-4f56-8e16-38d60c3dedd7','8c20d2c3-b3a4-41fc-a624-75080aeae334',51,51,77,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-2-1'),
('610573be-faaf-4793-8352-8b08151837c8','df8f2fad-cf54-4954-a619-fe7d05b72e27',47,4,210,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-30-2'),
('61067662-9528-40b5-9acd-97f24cf38081','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-3'),
('6109273a-08db-4243-9225-9debbceb1660','7ba47169-83ca-49a6-98fc-6ef1a1990eac',55,85,12,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-11'),
('6109f550-8967-4e56-b01a-a007b0469b4a','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-5'),
('610bc092-253a-465d-b432-f63ea7295de5','5d87ced9-ddb2-4a6e-a01b-2e80e5988136',0,0,0,0,'2025-05-09 18:44:04.562','2025-05-20 16:27:51.434','338878009-1-2'),
('610c2551-edc6-48fa-b1c8-957be321b437','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-13'),
('610cfe4d-2c4e-431d-bbd5-f81f84901628','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-29'),
('6112cfb1-8971-48b6-b37b-fb1546d9c548','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.797','2025-04-08 15:36:41.478','412716766-1-11'),
('6116527a-fa7a-49b5-882e-847734cb3b99','e89e7d75-4967-4c63-9f73-981469e531af',235,51,9,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-18'),
('6117330f-5aea-4347-8799-48c13b91c859','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-192'),
('61182dd5-16a6-4291-8f6e-075089b57c18','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-40'),
('611b0ab5-efad-4fd3-9d67-114969eec467','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-11'),
('611bf295-e5c2-463b-8ac0-7e00f20f30cb','bf778fd6-13c4-47e1-9120-ab8609b766a8',51,51,77,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-4-3'),
('611c131b-dbc7-43ea-9d76-d2b676960eb5','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-10'),
('611d6751-a735-4326-a327-616648ddeb5a','f3414f51-92da-4967-b108-6baad5cdd798',135,212,8,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-9'),
('611e8cca-e851-49c5-89fe-1c9c13fd3956','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-5'),
('611e912a-5f6a-46d3-ac91-3ec9dcd8c3a4','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',31,23,20,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-2'),
('612015ee-5920-4800-89d4-20553fc6dacc','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-202'),
('612045ea-e3bc-4ed1-aced-e2be2d22fcb4','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-22'),
('6120b407-41e1-4b09-b3a6-deed19bd8707','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-4'),
('612ababe-fd4c-41d6-a62f-35d8a8417d97','a332a69a-5e15-4331-97b8-4dbbd334c8f6',73,53,101,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-2-2'),
('612d73fa-7c91-4443-b8fa-445027a64127','ba21f0ec-8f24-4b9e-9a8e-22b2194606be',51,51,77,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.231','644547865-3-2'),
('613634a3-2289-49e8-95ea-30bb2d98d01f','92eefcaf-225d-4459-b297-1d8d499b03f7',0,0,0,0,'2024-12-18 09:31:24.380','2025-01-10 16:33:03.833','735272751-1-3'),
('613c3019-03b8-4117-8d1e-8f5c79370a2d','b4914894-38ba-4b92-a3d4-567b3e8d166f',81,26,202,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-2-2'),
('613d31c0-8fd5-4ce2-ac1d-031514322e10','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-25'),
('613fc772-587d-4f3f-9ce4-0c62230d2cf6','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-2'),
('613fd054-274d-4cbe-98f6-2fdd04ca6a3f','4c88e864-195d-4fe4-a531-9df2aa8891b9',0,0,0,0,'2024-10-17 13:41:00.443','2024-10-24 01:09:27.947','982506182-1-1'),
('614002fd-2f49-40ea-b9ad-4e9e62e4b229','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',120,176,11,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-23'),
('6145187b-334a-4d16-88d5-ae8ca541403e','9e06cc57-c3d1-4cf2-9952-689339186aff',0,0,0,0,'2024-12-07 09:32:39.164','2024-12-16 21:30:04.534','982529212-1-3'),
('6145f199-4f0d-4966-abd0-02c13b869c16','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-9'),
('61472aed-77c3-4693-aaea-d64752633faa','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.403','478994871-1-21'),
('6147cd1f-4f5f-48ac-9196-b61e8d7f9f82','0dc5e5d6-cace-4501-9a0d-ff1d1e995f89',95,180,7,0,'2025-08-27 19:40:01.501','2025-09-06 07:19:02.562','598961911-1-3'),
('614ceb6d-267d-463d-8c0e-0fbc0b61629f','324936f5-0640-4048-8641-e1550a228838',57,7,224,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-7'),
('614ddef4-2dc4-4ce4-8d06-0588ebb47fdd','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-86'),
('6150427e-7fe3-4f05-b00e-79367de63083','4869c334-4618-49fb-9d03-99d95654d12a',63,11,8,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-3'),
('615172e4-a102-4b85-ba41-1b4d40eca1e2','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-39'),
('6151a1ac-2449-4e57-8369-0a0a2d1731c0','6cee1429-9935-4eae-be32-dc630b6d70e8',100,105,10,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-17'),
('615520e7-5c60-497d-bfae-aa6034d79a0b','ce8f4415-3b63-4fe8-a25c-9973f07651e6',55,55,76,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-3'),
('615820cf-d535-49fa-aa9a-c96f8de73bca','b52c782d-173c-4921-91e0-83bad837ccef',95,64,7,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.753','371998665-3-5'),
('615cabd7-f6ec-45b8-a925-443a2a6437b5','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-42'),
('61620a9c-4183-4e76-b341-15e7d42958a9','2ae835d1-b59e-4847-94e9-a2ddd98d1c93',65,90,80,0,'2024-11-08 17:37:41.335','2024-11-23 08:31:53.168','982644032-1-3'),
('6164a8e6-238a-435c-99f1-948bd7610a38','cb7dcc1c-0a37-4356-938e-da743c917af2',29,44,11,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-2-1'),
('6164c07c-f9e1-4e5e-9937-48f813a59608','6cee1429-9935-4eae-be32-dc630b6d70e8',200,90,22,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-18'),
('6167e383-69ed-480c-ba48-a0af2431c778','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',121,190,17,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-6'),
('6168304d-fcc1-41b4-b829-6c13e9d5fc6e','e4174e33-46ef-4741-a875-241d3d31e381',55,74,100,0,'2025-08-22 20:28:35.968','2025-09-03 06:12:11.936','644796083-2-1'),
('6168dde2-38e0-47ed-bc20-4676d0bdf481','75e7d3fc-2c13-46f0-a46a-88b11bcb2401',0,0,0,0,'2024-08-07 15:02:48.808','2024-08-16 19:21:54.735','478212125-1-1'),
('616c1773-9c9c-4e12-901e-ef95610ff362','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-21'),
('616fa106-2eb2-4ecf-a391-06017c90fcb1','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.055','74529534-5-10'),
('616fed99-2f82-41ff-8f8b-48517eafc110','e163d910-3bea-4675-a310-ead7083f02b8',155,130,22,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-3'),
('6176d803-6313-4fbf-a93f-c5744dd13df8','8b4543e8-c3ef-483e-92b5-3623066138c6',205,115,40,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-4'),
('6179c75d-7d4f-4d86-ac11-cfd3bd779b23','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',183,80,90,0,NULL,NULL,'501168544-1-3'),
('617ab663-a234-4a77-9c49-7a2b3ebdec51','c2ddad80-9393-4fee-af04-55166ef5c607',211,45,31,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.051','745946644-3-1'),
('617bfaaa-37d4-42e2-af48-f0615caff484','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-28'),
('6181938f-c5cd-4a55-ac1f-79bba93a48dd','81d0dc47-7670-4778-9132-e810a9a4d368',41,18,89,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-4'),
('61822535-4fbc-4c7f-9372-d26c7883b658','7908530c-18a1-4a83-b5c2-fdea91117bbe',163,95,16,0,'2024-03-31 17:55:03.268','2024-04-15 11:37:34.889','449178440-1-7'),
('6183bce1-e684-4b24-962a-382676dc5e0c','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',219,55,6,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.801','750822079-1-16'),
('6187da3a-d76f-4bfe-89bb-556b9629dd70','869845cb-83bb-4465-bd39-430dcb105252',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-2-1'),
('6189136f-71c2-4674-8feb-3b9d404ab250','0365be5a-cb94-4992-8e8d-cb784930b2e7',100,100,80,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-6'),
('6189724e-50cf-4ccd-a887-319de9f14334','7b4b0f31-e651-4a25-819d-b4e21db79d87',235,82,65,0,'2025-03-13 12:21:39.415','2025-03-22 07:37:04.678','449700444-1-1'),
('6189777d-337c-44a2-b989-f0a376796899','d29f1072-25b7-40a0-807f-3d4e2938cf5c',112,56,82,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-3-1'),
('618b5da4-b2e9-414d-ac7a-c617755cb9ee','9d935c6e-5911-403e-b53a-08f90bd2dad0',65,95,230,0,NULL,NULL,'449224087-1-5'),
('618c5d9e-0f28-4227-871a-2148a742fdf4','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-3'),
('61917751-838f-4dec-97eb-68a84981a7dc','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-5'),
('61920367-dce6-47d4-8249-e6cf4622c58c','08832577-714d-471e-b006-0d3852d85ed5',93,193,7,0,'2025-09-01 11:06:05.922','2025-09-09 12:50:22.144','598172413-1-1'),
('6192b470-4be1-4b5f-9b06-3fb985e663c8','05b97ce2-a737-45d6-a444-20708de6bbba',66,51,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-4'),
('61941daf-38bf-4900-8459-dd0f6a017d15','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-35'),
('6194fb74-a0b5-49ed-a1e4-ddbf0d27aabe','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',90,20,13,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-75'),
('619782b4-2e04-4d4a-a48e-ace29017847d','8bff9e3a-f9c2-4823-b36c-e38dbf3ff3c8',188,96,6,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-2-1'),
('61998038-22a3-4483-86ed-c6da536d2bfd','f104dcdf-0960-4a69-9dd5-baf21874bf92',57,62,84,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-3-4'),
('619ffd68-d450-4d82-bed8-8d9a01880d1c','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.054','2025-07-25 06:56:26.352','735792949-1-4'),
('61a2b82a-07ca-484c-afce-50714703433e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-39'),
('61a6ee2d-3766-48dc-8f5c-7542efd8dc86','138edf36-d166-4335-8560-d9873886e31c',77,100,7,0,NULL,NULL,'745189997-1-11'),
('61aa5e98-4c68-4897-b497-aa469b85c646','6d799456-04ef-4f63-84ef-f07b7154d34e',126,54,60,0,'2025-02-15 13:31:42.966','2025-02-27 16:42:30.316','982585914-1-1'),
('61ab369b-9824-472d-ac77-beea16126799','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-3'),
('61aced5f-42ea-4ddb-843f-7ca9b6ff683c','b39244ea-16b4-435c-9bb4-e2081e2736ed',103,70,70,0,'2025-07-02 12:43:25.535','2025-07-23 06:18:04.215','644330933-2-2'),
('61ae15ae-ae42-4f5b-8f4d-3f9b8dd68340','84deaccf-5c15-4d59-9178-63fd4b3a3ff6',212,50,50,0,'2025-02-03 18:19:02.377','2025-02-13 13:19:40.212','976821188-1-1'),
('61af2645-5f59-45c5-8f76-65d95679d5c8','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-48'),
('61b0a7b0-dcb1-435e-af1c-3b5c164105d4','9866a947-9974-4053-8415-4518842488fe',73,73,43,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-19'),
('61b56da1-0d04-40e9-be57-d8ef9bf51acc','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-115'),
('61b8886b-3bc4-4fda-b3e7-01836f3da2e2','78011c77-f958-4fc6-886f-f80a74dac952',32,21,14,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.764','371913094-2-2'),
('61b975fa-eb3e-43f3-b645-e6c31ce2c708','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',25,25,50,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-6'),
('61ba71f0-52aa-4d6b-985d-67a07b972337','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.747','223422825-1-90'),
('61bca188-7be7-4d32-807e-1e5539cd486a','6cf15506-e6d2-496a-a50c-1bddeb987a1f',10,102,208,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-7'),
('61c0c2ed-7ad8-48ed-bfdb-0cb6f895f3f6','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',105,75,130,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-4'),
('61c1b582-9cc4-4708-b188-1ef9978eebb7','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-21'),
('61c2071a-5034-41a5-ae0c-d38e9a95b890','91ea3c10-8c22-491e-b87c-0ed70a1b566e',238,68,98,0,'2025-04-15 16:01:53.400','2025-04-25 09:51:49.424','371376503-1-1'),
('61c25999-d2ca-462b-ab0f-c9c63d084d9a','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-1'),
('61c2c815-ea57-44e3-9dc2-43d5e9352fbc','bb395081-1e96-4f04-a805-718cc5ddc9fe',70,97,179,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-3-1'),
('61c3eb5f-9d5d-49a3-8df5-d3795563abb9','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-7'),
('61c4495c-9b50-4537-9119-b4a0e757e193','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-38'),
('61c687f1-ee17-4268-9913-d507087e26a4','de610e6e-8746-48a1-bc9b-9545c82200ab',76,100,57,0,'2025-10-02 11:20:39.275','2025-10-15 20:06:33.336','221282484-2-2'),
('61c8533c-1fe2-48f7-9b24-33f96e38cf2a','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-9'),
('61c92fcc-b2ff-480a-9857-2af6cf73399e','6f8fd929-0228-4fd9-a182-83fe855d3f5c',230,72,96,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-12'),
('61d07aba-50ef-4ab4-a429-48be5ff671a7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-173'),
('61d3d30a-3b5a-493e-b6f9-9b394b3480f0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-134'),
('61d4959c-bfa7-4769-ada4-aa16b0ae9525','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-195'),
('61d55257-bfea-4e52-9071-3d47229ed18a','fff846e6-362b-483f-ba3a-df216849c545',53,71,96,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-3'),
('61d5c099-c4a8-4ce5-967b-adfa57e4cf67','5a89fae8-525a-4de4-8188-2f4d7c892e74',48,7,219,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-13'),
('61d7ca69-e7ad-434b-9c43-26c70cbced34','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-73'),
('61d99153-6437-4076-948b-ddbc69d312fa','9ea68f31-7756-4447-84dc-16ea42994b2c',93,171,6,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-2-2'),
('61da3b76-9033-4f62-93a6-33ec6c010faa','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-2'),
('61dc1cf0-be43-4bf2-bdcf-bc3e8b97a480','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',98,122,75,0,NULL,NULL,'504809900-2-2'),
('61e01156-bc9b-470c-9259-85efea88a8c7','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-18'),
('61e3275b-7888-4de2-a3ad-f77bf71ba140','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-102'),
('61e3aa4b-ffa0-432d-b9ab-d68688f9786c','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-31'),
('61e53f5e-0370-4a4a-8761-85069ecd77a9','d12ce78c-a7c1-4937-be74-17b603729cee',37,38,75,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-3-3'),
('61e7eb03-31de-40ce-9da7-ae33c1606567','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-1'),
('61ec5cec-056e-4a34-92b3-9c3d1a4849af','c900d790-eeff-48b9-9f2b-48972c98ac32',47,208,6,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-6'),
('61ecacb7-b0ae-4699-b2bf-39827629c476','45624052-e478-4c53-92ab-2b7ad134bf8b',99,158,70,0,'2025-08-25 12:32:00.331','2025-08-30 18:25:59.309','437306380-1-1'),
('61ed38f0-1a6c-40fc-a6a5-0afbf91ae121','a502c7d4-eee1-4a99-9f38-aab0a3c5c4cb',4,91,171,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.840','478984010-3-3'),
('61f42cf8-00d9-4ef4-9a53-adef101ce412','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.306','2025-08-21 08:12:31.707','221559079-1-5'),
('61f435d2-d552-4dad-863c-5c0c767ff94d','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',90,90,60,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-7'),
('61f497d4-e695-4da8-8cf8-a7c989fdfdc7','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.920','2025-09-25 06:55:47.158','223254418-1-133'),
('61f82342-68bc-4773-b016-5940a872470b','49c326ab-5b3b-49e7-a781-28760709b5be',75,60,60,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-4'),
('61f8e9c8-1038-4a8e-9b8b-c03a5488ac65','3d6f2aed-8c6f-41aa-a8a0-136eeef8c725',240,95,70,0,'2024-03-31 17:55:02.046','2024-04-17 10:15:56.135','982629756-1-1'),
('61f91816-1046-4fbf-b9c6-7208db8b040a','1a33dee0-770c-42ca-b23f-f3750f630a74',95,55,12,0,'2024-11-25 08:29:12.551','2024-12-03 10:00:08.315','976779460-1-5'),
('6200d39e-5302-401b-a8af-0940ac7473af','26efefb1-0454-4e31-9029-81e2ef22d726',51,51,77,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.462','613191069-1-2'),
('620ce816-64f0-4814-af24-66585b7d3e7a','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-3'),
('620cf193-2edf-4f90-9e9b-f0e972ddd799','9a855e3f-e255-4ab4-a73f-124103d32ad2',93,65,205,0,'2025-09-12 17:17:00.463','2025-09-24 06:51:13.936','976593604-1-3'),
('620d540b-750a-4b08-92be-5f06eb2c63f9','af69c5a3-87d3-4548-a650-720b69a4fc69',58,212,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-37'),
('620f2213-f400-452f-995a-63a240d847c8','78c5f4f6-2307-4b72-8615-22388f9576b2',0,0,0,0,'2025-03-24 16:01:43.923','2025-04-05 17:48:11.560','478325717-1-3'),
('6211012a-c346-4bc9-a7f0-485a87b0820e','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-20'),
('6211e624-9c13-4512-8edd-54d4001ec0f9','8e39c973-c918-4ebc-bd24-9e7fc61de240',43,12,19,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-3'),
('62132894-2eda-4788-8f10-f677b724fb6d','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-5'),
('621330a1-8c7e-4d22-a14d-781e14b870fc','43a5868e-b45f-4da5-81a1-837338bfc39c',0,0,0,0,'2025-02-20 12:14:59.012','2025-03-04 15:38:11.587','47853753-1-3'),
('6215a37c-866a-4252-8138-7c3ae21e3882','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',34,200,97,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-4'),
('6215f828-3fdd-40a5-856a-e98e7dd4018b','63147202-2ef0-4eee-b5d2-5c980e242412',106,204,6,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.036','531445058-3-1'),
('62191051-fd22-433c-8a17-76a791fd903a','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-43'),
('621a5934-e314-47ba-8943-37b99d3dad30','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-5'),
('621ae4c5-864b-4d47-97d8-418c9ac3a154','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-5'),
('622006e2-409a-41d3-bf71-0939483176a5','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-16'),
('62258649-abd7-48c5-924d-4b877b9c732a','3f3bf1d2-c329-4e73-b2a6-5aa55d893969',85,65,75,0,'2024-12-23 12:00:35.871','2025-01-08 20:28:51.875','449329901-1-4'),
('6225f5c9-6f3d-41bd-a9b7-a86f378cb7cb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:32.773','248135683-1-45'),
('62274355-0bb1-4267-a680-15572d714470','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-43'),
('622985ac-cec8-4f11-845d-05c52f1a21b6','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,85,29,0,NULL,NULL,'644104537-5-7'),
('622ef4c9-946f-4af4-9e17-82b93940e642','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-8'),
('62301d60-3bc1-4370-a9a9-83b45b13634a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.465','412173308-1-110'),
('62334189-ddfa-48b5-bbcb-8720b5325600','5a89fae8-525a-4de4-8188-2f4d7c892e74',5,45,217,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-12'),
('62368797-b8df-48cf-87ff-2035a3bdcfa1','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.054','2025-07-25 06:56:26.352','735792949-1-3'),
('6238203f-9da9-4205-b66a-0c2b0dd1ccee','55155cc4-3303-4c8d-8138-cd049d9c0cad',128,12,123,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-6'),
('62396c21-6b10-44bf-b45b-ff4244617d7b','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.481','2025-10-15 20:04:54.628','41246036-1-124'),
('623b9dc5-fcc2-4c1c-8e08-6010054c915e','8d35edd1-d68f-4751-990b-5502af59bfdf',54,74,100,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-2-1'),
('623ca0bd-f519-451a-a6a4-250db464180b','adb117df-07fe-463d-8c5c-78ac6b66268e',51,51,77,0,'2025-07-12 09:20:31.828','2025-07-23 06:22:15.027','817838997-2-1'),
('623d9f60-9d18-441b-8a70-494a7c425b81','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-3'),
('623e337a-70bc-4c9f-b6ca-c56a21a5e184','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.648','2025-01-06 20:09:27.226','221350993-1-2'),
('6242ac78-9f50-44e0-80ed-74cb59303ba7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-55'),
('624a1f67-24bd-431e-bec3-a33eb4f734a2','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.251','2024-12-01 12:28:14.055','745978651-1-17'),
('624ab6bf-bbaf-464d-86be-7990ab98c4d8','6b40c652-4a63-49bb-8720-5b9279666fd8',95,80,60,0,NULL,NULL,'203797759-1-1'),
('624add86-311e-489e-8077-1068b65a66da','08042e48-f41f-42af-a51b-44a9a14cedf4',57,198,30,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-1-2'),
('624b75ac-0375-4f95-be8b-d6d93f935836','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-5'),
('624e2a0f-f056-438d-b12d-7dff93639581','3a133e35-97e7-48eb-8cf2-15d2cfe04475',180,40,30,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-3'),
('6250d09e-0e52-4df3-85f7-420b3ad9d8d7','bff50eb6-35f0-4d46-9229-c709335da145',206,108,9,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-3'),
('6251b132-f05a-4c37-a12b-3032ac3c4072','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.980','2024-09-14 19:01:35.932','853766753-1-35'),
('62559873-0739-4c92-91d3-0a293a34486f','ab321622-fb0a-46b0-b51b-4c72aa09efcf',50,25,28,0,'2024-12-01 06:48:00.757','2024-12-12 07:41:13.909','501622058-1-3'),
('6255cf6b-c818-43bb-bf97-0fcd8e0b6076','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:33.556','248135683-1-28'),
('6256a871-4689-4e00-9a4e-8a0eaa9d7062','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-7'),
('62576035-8af8-4651-9547-4b592223bc5a','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-22'),
('62576b41-4d2a-4158-a81d-a00a2976023a','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-27'),
('6258ed51-71be-463b-85cb-f4b9a1629680','0365be5a-cb94-4992-8e8d-cb784930b2e7',85,100,90,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-1'),
('625998cc-cc4a-4159-8159-78b825ff17b3','6302f68c-26c4-4a31-853e-80b9d1ba59ee',110,67,16,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-16'),
('625b14b2-7472-4a5c-b312-0d0a2f3b3035','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-32'),
('625d2068-5e3d-467f-9779-32fe98e9e723','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-86'),
('625e8ebf-d0ff-40d4-b82e-3d3cfc024799','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-2'),
('62603ed6-6b90-45d6-bee6-6872c239cdcf','be305b23-f28b-48dc-8c0b-c8aaccb68d10',0,0,0,0,'2025-01-06 13:08:22.836','2025-01-09 10:06:09.562','73558075-1-3'),
('6260c453-168e-418c-a8ea-7f2f8b881fb8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-187'),
('6260db20-91b3-4a15-b9ec-df3655df2286','f81b6e31-6832-4eb6-87b1-0c2abc96ab92',82,27,200,0,NULL,NULL,'614204771-6-1'),
('626128fd-3e03-4b3f-8f96-37ee9d198719','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-14'),
('62653519-293b-432b-a589-7d9893dded38','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-57'),
('6266b989-9f99-4719-b2f1-63d822b42d89','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.339',NULL,'22330381-1-144'),
('62682336-6dd8-4910-b1f1-e87ccbe71760','8625abf2-719d-4d7f-b206-16948b318b8b',75,55,47,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-8'),
('62683f3c-b37a-4f59-95e5-b8a5ced1e792','d51015b0-6be2-44b9-9d54-292a049a61f5',50,85,125,0,'2025-09-11 06:34:39.385','2025-09-20 19:00:18.891','221594735-2-1'),
('626b79c9-588d-48ec-956d-cf94fe4b7591','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',81,41,81,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-25'),
('626c3105-6e5b-4d3d-ab3f-33d6acc16adb','2a0c69e9-2aa5-4e62-baa4-854f1483430f',57,72,100,0,'2025-09-11 06:33:55.311','2025-09-17 16:03:19.864','011697836-1-3'),
('626ccf76-12e4-4fe0-94b6-c9f815c43520','3a3d0efb-40d8-40ad-b5ee-8ea665daa2ca',95,75,228,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-2-1'),
('6272a568-8ef9-4d01-97a7-ab1a8a2dd745','d090324b-381d-4576-9558-a6a55f702152',93,55,100,0,'2025-08-14 08:21:31.391','2025-08-25 07:11:25.135','745824761-1-5'),
('6272eabc-6567-4d90-a3de-e7f03fb99c96','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-27'),
('62739f30-56a8-4d92-ae61-4820d9342aed','68112cc1-ad84-4c05-8982-53d277841de8',0,0,0,0,'2025-05-09 18:43:42.169','2025-05-22 15:22:34.432','478278253-1-3'),
('6276a9b5-4b7d-48b9-b00c-e34c7c6cdcae','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-125'),
('6276b7f9-97d0-4067-9483-aa05816124bf','c0d1db10-6433-4c30-82a1-b54f8d2a6e46',83,101,57,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-3-2'),
('627b7704-653a-40e4-8470-b6dc87132b94','1fd8e619-fda4-4a7c-b740-1071821a89a4',90,95,65,0,'2025-09-18 15:48:37.361','2025-10-02 06:11:54.487','437158505-1-1'),
('627ba9f8-97ad-4141-b8b3-e3d2cf8957f6','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-1'),
('627d626c-6bde-4f77-87b9-0bac06aeca58','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-122'),
('628267f7-e5ac-4203-b435-03e840e1732c','a89f5cb0-4036-440c-b388-8ef641d6f3b9',8,112,112,0,'2025-10-22 13:06:58.807',NULL,'4786538-1-5'),
('628625cb-1fcd-4c6c-a17a-1476a7f0f77c','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-45'),
('62866451-8d8c-4bc1-a3a2-8693e5795d44','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-7'),
('628682d2-3c6d-413a-ab48-ef87c09bbef4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-20'),
('62893e02-3c75-43d9-ad25-bee80fd57e9c','a167e1eb-625a-4d2f-8619-d1980601cb14',100,50,15,0,'2024-08-31 13:26:54.344','2024-09-07 08:07:20.122','428177245-1-1'),
('628b63e6-4a1a-43c4-bcbb-ebea6725f9ec','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-51'),
('628fa109-5c90-4c4a-8489-c203c49820b7','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-2'),
('6292f1a4-ec22-4d64-9a55-d6addc35fe3e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-48'),
('62953f7a-8876-4088-8df4-d0487bbc5324','f1aaaa95-2d25-4f45-b026-0107ca13ac62',24,30,34,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.456','616724751-1-3'),
('629590a4-21cb-4df0-8ece-8ed15d3e54e2','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-8'),
('6296cd6d-6d34-42f0-9224-581d0efcdb60','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-2'),
('629c99e6-9fcf-4be7-bfe6-8338e9af35f7','ada78d77-5143-4e72-858e-02eb9de8df81',17,94,164,0,'2025-10-14 09:22:06.514','2025-10-22 07:00:44.506','478346989-1-1'),
('629ccf33-ee6f-42be-80a1-82e4441125ef','6302f68c-26c4-4a31-853e-80b9d1ba59ee',90,26,9,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-17'),
('629ceaf3-bb9f-4d75-81f1-9b91ddff6f44','82ac2d58-053d-41f5-a402-9275c56203f9',215,6,51,0,NULL,NULL,'428172853-4-10'),
('629e5892-2cb3-4f0a-ab19-53ba3ef7f1b0','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-4'),
('62a656a2-fed0-483c-8bbd-197e7fc4dcdd','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-4'),
('62a73765-92f6-4850-9df0-bcb280efc92d','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-40'),
('62aa1674-58f9-43fa-8617-457399f4f60d','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-23'),
('62aae5a1-9d4d-40be-9446-703073defded','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-43'),
('62afa231-fe51-4311-b96e-3b3eab56b7b8','7a9963cd-0d66-4092-bf41-9c56574a2415',95,185,75,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-2-2'),
('62b2deea-b1a0-426a-98ce-200aa89821c8','f33be6c8-e5a5-43e7-a5f8-33603ac2233f',0,0,0,0,'2025-09-02 14:48:46.011','2025-09-12 06:55:41.826','61390448-1-1'),
('62b38fc7-23cc-4130-808b-aea33aa651cf','85dce3a8-9a2f-4902-a6e2-0f1045bf1c0d',76,123,9,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-2-1'),
('62b6f20b-073a-4106-886c-b3822633f07d','0009aeec-e682-465c-b701-363a3ef377a6',80,9,23,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-35'),
('62bb9bbb-75cf-4a71-8688-69b2393abe86','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-32'),
('62bc03df-4926-47a5-be2a-b7b87f38ac90','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-51'),
('62bc0b0b-6c5b-4091-9d7c-1a3157d0230c','d1606eb5-933c-4e61-b7ea-5f79b332691c',40,27,200,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-3'),
('62bc674b-30a2-4af3-9d73-ff357c92c4b3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-185'),
('62c1d757-2114-4664-a3dc-60293a8c6f06','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-17'),
('62c9e550-cf30-438c-9154-206a9e1abbfd','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-3'),
('62cc4042-0855-46b3-a5b1-11595d68778f','d55d2e95-9872-4d09-82e1-d78ed10c9ec3',0,0,0,0,'2025-02-13 20:43:39.053','2025-02-25 17:03:29.863','745959029-2-3'),
('62ce0cdf-d5f8-4a9b-bc3f-3269ab6ce9b1','58fe4c33-e268-41af-9163-4863a4d27452',80,58,58,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-1'),
('62cece71-69a7-470b-b99f-357dcfdfb7e8','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-7'),
('62d3053e-b1ef-4881-8454-eafd0ebe8c23','212dbaa7-c2c3-43c5-815b-138aed4d0833',81,58,104,0,'2025-04-15 16:01:24.821','2025-04-26 17:56:36.043','786286562-1-3'),
('62d41f4b-290c-4ad9-baad-cd3b5742ca4b','7defd633-f7ab-424d-8029-028d1b045752',225,41,54,0,NULL,NULL,'501119446-1-7'),
('62d4d02a-b040-44f8-be55-1f77a61610ff','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-119'),
('62d8b132-6ced-4204-97af-f0db456e2ee1','21b92c18-fe01-4738-a64f-22357aa1711b',53,76,102,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.271','01914447-1-5'),
('62d9d39f-05a8-44fa-b049-cc3322cd56c1','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.824','613803170-1-6'),
('62dd48b6-e3ac-45b6-b1ab-6102e9ba7e09','648b1063-2206-4845-a6a3-5b3089a2bafc',92,204,28,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.533','531344250-1-1'),
('62dd5141-be14-461a-912f-d43eb2bd27c8','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-4'),
('62e317fe-c88f-4b7c-b68f-a8248c6ab0bf','fc62f08c-a4dc-4f3a-b1bc-a39834539515',6,75,130,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.759','515956879-1-9'),
('62e5c798-a381-4522-977a-59de6618bcc3','9774f983-7a2e-428e-a849-ec0cde1c3577',77,50,50,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-2-2'),
('62e60711-3825-4e67-9a51-ee771b2effd1','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',58,17,51,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-6'),
('62e67d14-9e61-4e88-8656-7e3abb95f8eb','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',120,33,10,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-26'),
('62ef855a-87a5-4984-94f0-3abdb77f95ad','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-11'),
('62f00767-2813-4ec9-9f11-313b8fab7ce2','0ad93723-9533-486c-83ac-4a9287073b23',97,95,70,0,NULL,NULL,'598967733-1-2'),
('62f122d9-95ad-4eda-b340-db06c6e3d891','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-181'),
('62f17077-2204-438f-8ce4-5d567eee0468','83e81175-cef2-4f5e-adbe-8ca02a747efd',60,51,8,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.947','478687899-1-7'),
('62f32d32-3c45-4e14-aa9d-ef1c46a66dcb','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-2'),
('62f369fa-c0c7-4310-9076-014ee61b8c11','ebe29e2e-61a4-442f-9309-76e0af12c3c1',0,0,0,0,'2025-07-08 11:31:11.054','2025-07-25 06:56:26.352','735792949-1-7'),
('62f4cfc4-b290-4f19-8982-52ff62a79747','37344bde-d918-41e0-a71e-d46212dfd17f',34,34,88,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-3'),
('62f91dc6-c472-4fa8-ac0a-6aca1a86347b','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-7'),
('62f9708e-3e5a-41b6-9770-5a525d9e1065','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.932','853766753-1-36'),
('62fa6b13-a279-48bf-92b3-7b20e9540f36','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-6'),
('62ff3c9d-d90a-4b95-bf98-d21f90b5d2f3','66f8d34c-0c41-46f5-98bb-500adbb6f636',83,7,3,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-6'),
('62ff9330-ecc4-4acb-9760-3fe313b181d9','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',62,53,44,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-16'),
('63025c11-44e6-4b65-aa16-d34ad00a168a','0a1f676e-5220-4240-a3a0-0e60bd6d378b',230,117,57,0,'2025-10-20 07:18:20.525',NULL,'644526832-1-1'),
('6303819d-1a1d-4aaa-9dea-ca298df88096','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.342','2025-01-09 16:51:50.694','745422037-1-1'),
('6304f9c6-c8a7-47dd-8709-562da6452377','0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4',43,96,6,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-1-2'),
('6305a67d-a218-492b-b2e6-f9fa61d7fa85','cf923c2e-5afb-480c-b737-8b48ace679b6',44,43,96,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.773','371628660-2-2'),
('630cefdd-9ed7-4e8a-9931-ca4b3bcc8cd7','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.386','412315808-1-46'),
('63105f3e-757f-47ce-8e24-a0516b74851a','ada78d77-5143-4e72-858e-02eb9de8df81',42,49,156,0,'2025-10-14 09:22:06.514','2025-10-22 07:00:44.506','478346989-1-5'),
('6311f35f-8155-421c-8cd9-9eddf77ad6b2','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.380','85814402-1-15'),
('6314199c-3dd7-45f7-97c9-69a89bccc80b','44622e7b-0fdd-427c-9a36-f04079e592e0',80,81,57,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-4-1'),
('6314f631-e849-4824-99b2-fc5db7cdb617','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-43'),
('6315a038-fcbc-46d3-b027-fa7956ada725','2ee29e0d-5d75-451c-93a9-a55038d6d101',0,0,0,0,'2025-02-03 18:18:43.137','2025-02-14 10:41:18.327','74534951-1-3'),
('63168f92-53b8-4902-b05c-d18211630d0e','a918ff1e-42da-4211-9742-133995470138',83,120,70,0,NULL,NULL,'808690841-3-1'),
('63192e26-21d8-4ddc-ba0f-ad47105a5c24','4ed838d2-71d3-4d84-a945-0e0075c5f9fc',96,189,6,0,'2025-07-08 11:31:25.721','2025-07-21 14:11:19.708','675951028-1-3'),
('6319d3df-bb41-42d4-8d43-e9df1d94b1b0','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:55.928','248135683-2-33'),
('631ce6ef-accd-4aad-bedb-172a88a1d418','845e0c76-772c-4d2c-86c9-e8d641b329e7',36,51,175,0,'2025-10-08 17:44:16.415','2025-10-20 06:32:49.151','831899043-1-2'),
('631d3541-e3aa-4591-b8a6-9a8fdc85c896','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-12'),
('631de47e-b216-4c9a-8845-73c2b5fafc66','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.158','223254418-1-108'),
('631f8e00-af1c-4427-9175-74d7b78195c3','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-8'),
('631fa5c8-a97a-4f48-972a-4e18dcdd2387','daf32ec4-3098-4d67-9b7d-722264422db6',0,0,0,0,'2024-03-31 17:55:18.634','2024-04-17 10:15:44.136','614289770-1-3'),
('6320cfc9-f759-4ec9-a275-55690475f3c5','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-57'),
('63234c7b-bc68-4a9a-84e3-4e661a280764','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-11'),
('632c247a-9027-4983-b12f-b09a174fb9fc','9212dfa8-08b3-4e92-93bd-a594eaf017b6',90,54,102,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-3'),
('632c9782-2064-44a9-a094-8be271707da9','05b97ce2-a737-45d6-a444-20708de6bbba',66,80,51,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-3'),
('632dbc1a-c133-4e0c-b95a-e6d1d68a3ea2','20a73c4e-790b-494f-b4a7-c61766021e4b',13,43,190,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-2'),
('632f03c7-51a7-4410-bf4e-6d4f3df3b3de','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-19'),
('632fe163-e015-4f6d-b6e9-78dc7cf54f77','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-155'),
('6334fffd-4579-40e5-9bfa-6358d04f0a54','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:34.524','248135683-1-14'),
('63355819-f53b-404b-bff5-c20369b6e167','126dd53d-77d9-4431-9b96-782895f21d66',96,70,209,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-2-2'),
('63368655-8cd3-42b0-ae45-0ca35335d22f','9d081d24-06c5-4cee-b0ab-52ddef98e867',20,108,7,0,'2024-12-28 21:42:23.524','2025-01-07 10:35:37.746','501247386-1-3'),
('63382361-79e1-44f4-9e2a-56c274be1ff7','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-62'),
('633c1da8-3dde-4bb8-bfb0-dd6864dab119','7cc12a18-6858-4c55-a9a0-fa838ec5c974',52,76,101,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-2-1'),
('633df853-f564-41cd-9c59-cfa89db2940e','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-6'),
('633ed445-d2cd-45d4-9159-d28064b04957','c1e8ae95-b005-4e76-a148-1dc517d1a512',96,166,6,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-2-3'),
('63447e8c-de07-4eb0-a35f-4647d9c976b0','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',32,32,187,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-9'),
('6344e021-80c9-4004-99b4-2d2993e7e92a','a0a4be0b-f2b9-429e-92f5-4a10e11028b5',95,70,60,0,'2025-01-06 13:08:16.787','2025-01-10 09:45:15.067','910405441-1-3'),
('6346224d-0007-4058-bfee-85903971e323','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-3'),
('6346a9c5-ba5d-4952-96d2-e3360901f6b8','5e048b22-34db-4d5f-9247-201f664d4e80',79,90,98,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-3-3'),
('6347ab65-c641-4b1a-bde7-63d297749db7','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',22,80,13,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-2'),
('63491565-06b1-452c-b55d-0c2b99c84e71','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',96,66,111,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.898','107869996-1-2'),
('634d7208-0531-4023-a8c2-c713088c86e6','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-33'),
('634ff2f1-27ee-4dff-a12d-7cdbac252cce','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-4'),
('635179b4-e228-4eb2-a282-4fda995513cb','92a145d8-7167-461b-8674-419e94785674',0,0,0,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-7'),
('63520fd8-d8f5-4486-a6d0-c1696cfa73e7','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-51'),
('6353224c-a3c7-4458-9ff3-c5fca5c57db4','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',87,56,99,0,NULL,NULL,'478739679-3-3'),
('6358a218-92d1-4663-8118-d7107dcfc2d3','0bbc5c7e-04d4-47a1-95a7-a4fb473803b3',42,67,71,0,'2025-10-09 08:39:52.750',NULL,'011940661-1-1'),
('635967b3-4afd-4b27-9c85-7988e6ad98bb','02ed9c60-7e1a-4a84-acc5-24092c7b8a72',90,38,127,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.024','22130093-1-1'),
('63597b66-fb22-4fe9-9ad8-b31e0724e83a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-42'),
('635b902f-242c-4f2e-9ffa-a8d945070dbb','5defa65b-c736-4108-94c5-e25a26e975c6',53,77,102,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-2-1'),
('635bad6d-f989-4182-81c5-99fc27a1059d','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-6'),
('635f86dc-8680-4077-b11c-bec0aa14d935','42b2ca3a-9313-4b97-901b-3859e34b21e1',225,95,72,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-7'),
('635fd861-bb26-41de-989a-1692c23a55e7','52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63',122,70,98,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-3-1'),
('6363f24f-83e5-4eb7-b474-f2b46ba480b3','a123770c-62b5-4b3b-b299-a8495740fccb',0,0,0,0,'2025-10-08 17:43:49.700','2025-10-17 20:57:08.776','428604775-1-1'),
('63665afe-5741-412e-87f8-39472fb76196','9affc7b1-09c4-4e84-b48b-d0c117c421b0',85,98,80,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-4'),
('6369f8fa-c2c3-42be-98e9-92961486df23','3fc759d9-3801-490b-bbad-23f2ff290b97',62,92,162,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-1'),
('636b6af7-8711-43ad-9120-9fea86e8a150','2a9dc5cf-e36d-4418-b12b-38735a234501',96,96,62,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-1-4'),
('636b88f3-a1af-42f5-87e5-7a8197f31371','f7dce569-186c-4b40-9e32-d553c0d68d00',118,117,75,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-4-3'),
('636c4ec1-f9df-47fb-aa7b-e943c69866b9','3c6c148b-48b9-42f5-a540-77250f81fc68',178,95,70,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-1-2'),
('63715053-56a9-4677-9a5a-413eec642f1f','6bb3587c-46ce-4a7b-b153-d422b83670a2',0,0,0,0,NULL,NULL,'614443513-1-1'),
('6372d65a-862c-4753-a6a8-739043ff633a','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',80,85,85,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-22'),
('6376fc13-6625-4d78-9319-e1acb631d1b1','6aadeef6-4393-4005-8da5-51ca4e422dfd',100,13,65,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-6'),
('637e450f-4bd1-4107-9785-857d66561603','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-15'),
('637fe252-1fcc-442b-86d5-5742e6e17450','1868aea0-f631-4deb-85f5-8aa25773bef0',32,80,210,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-6'),
('6380db8f-e209-4911-b195-01c19ef5d9c3','6fcd8160-ca06-46ab-a691-51de5c394793',76,6,110,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-13'),
('63812587-bacf-4807-a76a-28a2ffaa5adf','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-1'),
('63816ac8-663d-4ad6-8f8e-494344ec6d89','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-17'),
('638a2162-c7ba-4168-9998-4256534913cb','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-13'),
('638ae3c8-34fa-474d-adbb-c48cbff19dc2','676dc697-7061-41a1-a8c3-abbff4eb9699',30,28,15,0,'2025-09-11 06:33:57.374','2025-09-17 16:03:34.523','437232562-1-1'),
('638bbdc3-1d03-41ed-9d3f-df730a6492b5','b8d78340-f04f-4e44-b2c1-2534da12f517',0,0,0,0,'2025-07-26 07:41:45.347','2025-08-02 17:36:01.658','61355212-1-1'),
('638c9fa1-8fb4-446c-8dd2-ccdef4dcb980','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',123,26,11,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-27'),
('638e768b-adfe-4f2a-9c17-ecec2b29a26a','21434274-7eaf-4dfd-8965-01f28214476b',51,51,76,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.582','221417545-1-2'),
('6390d7c5-c77d-401a-b99d-387413648b35','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:36.006','248135683-1-224'),
('639270b2-a94b-43ec-9cd3-f7d43d347945','7544d141-ad78-4111-8cf3-83517131e050',100,212,35,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.271','896155892-2-2'),
('63952e3e-3dda-40a7-882e-58945fc7a423','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-220'),
('6395c1ed-e74b-42ed-a446-9627895575ae','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-33'),
('63965cf7-c674-4b5d-8158-164571912bd5','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-6'),
('6398299c-5136-4a89-ba6f-6aa2f55a5fce','1009cf72-9e4a-4916-a90a-4e3ad3f7d48e',74,50,27,0,'2025-02-03 18:19:24.577','2025-02-12 10:27:30.687','614419362-1-1'),
('639bdd98-97f5-419e-b109-769f8c132528','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-26'),
('639c2c35-c041-4857-85f4-49c548457af9','b56e3648-bb0d-4df7-af12-ae3aab1fcca8',70,70,101,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-3-1'),
('639d093c-4287-47dd-9307-fe4731fcb431','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.095','2025-07-02 06:17:10.670','695249199-2-6'),
('639e6230-e282-454f-9a12-1097b59fe6de','06fc7ced-5d2f-415f-bbde-bd46d9f87f4c',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-1-1'),
('63a21202-a963-445c-928b-9e7601c32bfc','e54055a2-3c9c-4738-a808-7a4a31877ef1',100,70,80,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-16'),
('63a3eed9-93a9-4130-8268-c0569e660644','5d074556-ce95-4ffc-8684-279dc37597f0',128,56,70,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-1'),
('63a46815-a7fe-4e82-b385-c098e9db74d7','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-43'),
('63a4749e-6e71-43bb-82ef-83e0a4525a54','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-33'),
('63a5f503-80fd-4e4b-9a11-3957c2e435c4','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-23'),
('63a794fc-df28-40cb-9d87-be9871f64871','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-26'),
('63a899f6-1552-43ff-8862-a38c0c69bb57','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-3'),
('63ad5732-f828-4588-81e1-9ae894aabb97','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-16'),
('63ad8141-ae30-4da3-8979-ffaab0824be2','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-36'),
('63ae7d3e-bc8a-4454-bfdc-bc55bd70eb1f','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-1'),
('63af117f-ccdf-4db2-93a2-cfee8e20c511','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-23'),
('63b12dd0-e250-4227-a754-19a8304055a5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-70'),
('63b12f2a-e6ae-4d25-b4d7-222a45618669','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-41'),
('63b15f1f-56e4-4b54-bfe2-ee84832cc81f','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.148',NULL,'505724535-1-2'),
('63b3ffea-786f-4b60-93de-bd8486a7d1b2','2ab41284-325e-4735-a02e-0af4784fee90',44,5,212,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-5'),
('63b4d786-1c71-41aa-a1d7-38e409e9e487','ac1a5fbd-8451-400c-95df-d777e477b50b',0,0,0,0,NULL,NULL,'74520701-2-1'),
('63b61879-dca6-43db-ba38-ffb7254aaadf','91caf0f2-3247-41a8-bac8-85a7da9a1ea1',40,40,45,0,'2025-10-25 08:58:58.836',NULL,'74521183-2-2'),
('63b853ca-05a2-4920-abf3-d421d2a79a00','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.658','478778961-1-27'),
('63ba6b4e-65f3-4860-b3e2-38cf7a3189bb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-5'),
('63baec4f-91be-467f-b672-a623eadc5588','5d87ced9-ddb2-4a6e-a01b-2e80e5988136',0,0,0,0,'2025-05-09 18:44:04.562','2025-05-20 16:27:51.434','338878009-1-1'),
('63be8edd-d580-444f-8082-fb5c084359b2','9a0272fb-f864-42c8-89a2-8abe0cac90b2',57,102,83,0,'2025-07-12 09:20:40.358','2025-07-22 13:23:02.940','675799375-1-2'),
('63beaedd-6b36-454b-95dd-e196d48fac9e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-108'),
('63bf19d3-d786-4a80-8082-475a351909a1','169583e5-aae1-401d-bbeb-1e1ae478298c',35,35,83,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-2-3'),
('63c0a993-bcf4-4ff3-a978-b403ed45fd78','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-107'),
('63c0e869-5b7e-4ce8-aa16-57f1119893b7','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-72'),
('63c18f08-6dc6-4432-b969-54320b937eeb','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-20'),
('63c71d7d-63e3-4917-b413-17812a4c6a13','90531b95-eb66-4c07-9e68-b2c510b7b356',88,110,120,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-3'),
('63cbdeb3-9a53-4325-a716-83cfe42e1ed5','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.158','223254418-1-146'),
('63cd1144-7a8a-4a50-a743-6a524508fba9','052ad905-3da0-483a-aae7-9d36b31da379',250,125,24,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-3'),
('63cdba01-5091-44b5-b41f-04ff8f14bb30','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-34'),
('63ce148b-31da-47a3-95a1-c47a45629a2e','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-88'),
('63ceda6a-3e56-4f7c-b05f-38027f68d43e','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-6'),
('63d01e3e-e112-40ac-938d-3675deef207c','e7f31a78-648d-4a5e-9111-1bf7db38dd79',215,55,5,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-15'),
('63d0df4a-80d2-434c-9117-7508c98af829','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-24'),
('63d193ca-d97a-41d9-8f49-49a013796dd4','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-45'),
('63d2fc47-6931-45fa-93a2-0517a945a322','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-4'),
('63d6366e-5cac-4c31-9547-73d6f56a7b79','1086f7ce-fb42-4a68-915f-6eef7c1c791b',46,106,188,0,NULL,NULL,'695763797-1-4'),
('63dc0a5c-fb87-40b4-9dab-990f1871c4e4','4858773d-333a-4197-a946-bf62338fc789',0,0,0,0,'2025-02-13 20:44:03.491','2025-02-24 13:33:03.096','613633231-1-1'),
('63dd09e3-841c-4560-81f5-4b1a06e9f064','404bb5c9-911f-4abe-ae27-d9f8c7b4f704',0,0,0,0,'2025-07-19 07:52:16.841','2025-07-28 12:02:29.778','745712790-1-4'),
('63dd1d4a-614c-47dd-800e-eac39b570e5f','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-29'),
('63de541f-a1d0-46a9-b390-0e26d620a8b6','a29400c4-3879-4ada-aeb6-c99017d4e531',101,98,75,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-3-4'),
('63e14d39-7ffc-4f9f-946b-afb6adcf6ea1','5ee00c1a-30c4-4631-928f-5c95f22101d5',100,80,75,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-1-2'),
('63e379aa-8fac-4c40-a205-203f5cd17717','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-16'),
('63e52a8f-2069-477a-9edf-d4e82c4707d9','145acb30-1c39-4fcb-b4a1-ded11d8b7586',96,70,64,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-5'),
('63e5f0e4-6853-4b78-be43-e04779bfee43','6302f68c-26c4-4a31-853e-80b9d1ba59ee',104,92,6,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-18'),
('63e8725e-891b-4d1f-abbd-ec58bc3356d2','8fc7023c-7fab-44ae-a533-006d835eddb6',34,8,216,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-12'),
('63ee6b49-292a-4777-8c4b-283ded101e62','f3d9453b-0679-4d52-bd61-c38e6f80c2a6',71,166,7,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-4-2'),
('63eefb6e-3aa6-49bc-9953-723e31150c59','8c2422b1-01c5-4a6d-9049-4906bf144020',19,127,198,0,NULL,NULL,'74532359-1-4'),
('63f26223-158b-477c-a0a2-bdab974ccdc6','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-7'),
('63f2cb37-0b39-4e78-a491-e62e8c246433','cae76a5c-9c58-4a28-b642-a8f3cffa00e0',95,65,85,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-4-3'),
('63f497a7-0410-4f4f-9e2f-42dccdb4ff00','9b274431-45b4-4bea-9a3a-47a596873335',250,65,93,0,'2025-01-04 10:47:38.056','2025-01-11 07:53:51.697','517512652-1-1'),
('63f568db-52d9-45fd-865e-d48495b66f68','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-11'),
('63f57db2-ee2e-4ac9-9f72-82d7d6adfa39','0009aeec-e682-465c-b701-363a3ef377a6',120,200,25,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-36'),
('63f61911-467e-487d-bde4-6447579ba886','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-6'),
('63f7503b-f985-4e75-8f74-70f32200eea8','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-21'),
('63f9b000-5dfb-40ea-8ebd-69eb0266336e','788a8b56-add3-49ff-b48f-4809da260c0e',0,0,0,0,'2024-10-02 09:26:42.921','2024-10-09 11:10:47.116','126377805-1-3'),
('63fc9dae-39c2-4ca6-bddc-3ad056fa8f71','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-51'),
('63fd313f-f9f2-44d3-862d-20e44e8b4466','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-15'),
('640017b9-0255-4959-b599-1f952b2fe545','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-1'),
('64022fb9-34da-48bb-912a-86dcf79de623','62dcad6d-7e47-4849-924b-61c791d5a98e',90,95,165,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-1-3'),
('640482eb-8145-459f-9be2-121804c88176','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-28'),
('6405b005-e0c3-4f09-ae81-fc6b372fe587','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-8'),
('64061b4a-311b-438a-8b92-6163d4e81429','c4eb687d-e46c-4f7c-993c-f7f7a9998576',62,62,78,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-3-1'),
('64099142-8ddb-473e-b6d6-59d660c6d836','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-5'),
('640d9d22-3134-42bf-b0ee-01af574d3079','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:56.622','248135683-2-87'),
('64103e57-05ee-4251-8cb2-fb82085b638d','6a308121-6cf9-4384-8446-08182bd669fd',40,24,18,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-3'),
('641112f3-6bb6-4ac4-8d24-4916805da1ad','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-3'),
('64124444-6b4d-49d2-9ec7-e84f3a6af5e6','d7b1a371-32dd-4a13-a035-cf235f8967f5',52,52,77,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-3-2'),
('64159f8d-d7ff-4ef2-ae64-9bd67facebf6','03ad506f-f86b-4dbc-952f-52b01e2467fa',112,32,8,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-26'),
('64169a69-f49d-436f-8c3a-859171e847bd','0deeebaf-efdc-4c4d-8020-24722ff30282',96,161,14,0,'2025-08-22 20:28:38.630','2025-09-03 06:11:58.365','437870707-1-1'),
('641a9689-ff5e-4668-b893-ffeb448c82c5','e4bcf108-420b-4086-8851-146bc29ae338',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-2-1'),
('641be493-68b4-43c5-9aa5-ed832252366b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-52'),
('641c0950-1dae-4469-a1c9-e4d89797c873','21ba80b1-b634-4254-a431-391707677bf9',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-3-1'),
('641c48c3-b563-4efc-9fbf-508a8fce2103','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-15'),
('64201947-9a4a-4d9e-b978-786b619132f3','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',54,100,25,0,'2024-10-02 09:26:32.555','2024-10-10 16:31:34.970','428736949-1-6'),
('64209eab-971a-46d5-95d3-4dd05efbafa7','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-52'),
('64252dcb-25ae-45f3-9128-17d4c5b44443','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',170,60,10,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-14'),
('6425e8b5-6238-4f5e-9f29-e8207ccca326','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-6'),
('642757f0-d7ba-494e-89c1-9dee4dd9ef69','c4eb687d-e46c-4f7c-993c-f7f7a9998576',62,62,78,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-3-2'),
('642a0074-8fe8-4d7c-a60a-da78a00c4810','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-20'),
('643711e6-26cd-4e27-a90d-319c12074bef','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.607','74520622-1-18'),
('643aee8d-95d5-4d92-b39a-d9cd3bb2a621','091fc5f3-cafb-4a56-8101-89c4a22e01b6',0,0,0,0,'2025-02-23 12:38:58.756','2025-03-08 13:58:12.078','517291063-1-4'),
('64400504-b4c2-4fc9-9d81-83df844d7d0f','2b95b149-0eea-4aa1-8465-0650e3c52636',103,10,113,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-1-4'),
('64401e9e-16a6-491d-a830-8c53e55d4fef','546ad3d0-25c2-43dd-9443-e48b8e5b6530',50,40,15,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-48'),
('6447a1d6-1423-4bc7-9634-879ff6f04e5a','ee2ce720-7c0d-4884-9e68-080047f920df',8,58,209,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-34-1'),
('644b0b2e-27fe-4d95-a317-60db9a46fe4e','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-7'),
('644bdbab-8cae-42c8-82da-bdbbfeb47860','65fbcd7d-a680-46b9-89f7-75597cb1f190',56,56,77,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-1-3'),
('644c3e10-e960-40ec-aa58-c70640623f2b','886e0e1a-c599-47ba-bacc-c329212cc55b',9,44,64,0,'2025-10-14 09:22:25.724','2025-10-25 09:00:35.557','478730420-1-27'),
('644f6df1-a221-474e-bda1-d7df921a4cbe','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-8'),
('64529cfc-52c5-491a-be15-895bc0ac9ec1','ca465cdc-1a1c-4dc9-8703-e249c099992f',0,0,0,0,'2024-04-23 10:31:48.539','2024-04-26 20:12:15.906','614859961-1-3'),
('64541aef-8be1-4698-80da-f7dce440086e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-196'),
('64598b44-7d73-4759-9afb-fc7aca3d75d0','05af1df3-9a36-4be2-8bd1-773d59e1605a',80,70,20,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.058','655688103-1-13'),
('6459b665-66f1-429c-89e4-5a2054476e5f','f88c3e53-b711-4bcb-aa3d-9543580054cd',53,242,10,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-17'),
('645cb455-5300-446f-83e3-6f2021607234','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.819','2025-07-03 11:20:12.747','223422825-1-170'),
('64603372-f7db-4036-90a8-bf8a79ffed40','7311f1e0-e2be-43dc-9e40-f94a010e8939',325,58,13,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-25'),
('646093a9-4d7a-48c3-92c2-c15c30289e2e','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-13'),
('64616f15-048d-4219-896a-d1bc9d640a87','e4174e33-46ef-4741-a875-241d3d31e381',55,74,100,0,'2025-08-22 20:28:35.969','2025-09-03 06:12:11.936','644796083-2-2'),
('646420bd-e2b1-4859-a05f-47725fb6151d','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-41'),
('646501d8-f26b-4cce-aedf-0092e4c572cf','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-29'),
('646aa5ac-8f32-4af7-9f6e-67e2ab9186f1','9cec7784-226a-4c4e-91ef-982823f6722f',100,85,160,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-3-1'),
('646b5893-0d93-4cb3-8ae9-8fc2bf05d32d','090b9a06-aee0-4c02-b626-f3e2002f0fce',88,89,16,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-8'),
('646e34ea-c545-484e-b324-d4c4f2bf1808','253bc977-f851-4c87-a294-ed526cc3cb5c',96,50,22,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-1-3'),
('646f4e37-b211-421c-8650-bb237406c8bc','88ed24fa-a5d6-4b3f-9fe0-f610ed723cf3',95,70,248,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.469','517255345-1-2'),
('647416be-1621-4164-a6fd-886a337f9f52','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',208,80,2,0,NULL,NULL,'428413605-1-8'),
('6474765c-cfcf-4144-a065-1a81c8efb64c','8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7',51,51,77,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-3-5'),
('647636bd-2fd0-42c0-b8df-a59ee14154da','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-87'),
('6476d26e-0bfc-4593-a6df-977375b5238a','e31f714c-14b3-46df-a325-7cbfccab37bf',190,70,90,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-2'),
('647cf5ec-f2b8-460e-9882-f656b753d462','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-17'),
('647d8a73-8931-46f2-a2c2-dca4f71e8957','7311f1e0-e2be-43dc-9e40-f94a010e8939',77,72,70,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-26'),
('647e22cc-af2b-46f0-a888-580df878b718','14a2a5fe-cc61-42ec-a329-3fede175e6a3',56,56,75,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-1-1'),
('647eadd4-fc88-4446-949f-4f5d5d4e1aa2','cd01ade5-adb2-455a-8f90-b396a501cae7',51,51,77,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-4-2'),
('647fbdee-9f9e-4ca0-9e3b-76cb5f16bdbe','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-2'),
('6480acdb-dfda-40d7-a4dc-9df0b4b9b296','723a1ddc-811a-4899-bb4b-577c7b163262',100,227,70,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-2'),
('6480caf7-ade8-4ceb-9974-935e9238f518','e7f31a78-648d-4a5e-9111-1bf7db38dd79',210,85,4,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.459','501216728-1-16'),
('64812457-0195-427b-b15c-d8821003bce2','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',36,36,46,0,NULL,NULL,'47816855-2-22'),
('64816db1-0c43-4474-a8d4-831bc74ad0a3','e7f31a78-648d-4a5e-9111-1bf7db38dd79',190,15,2,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-17'),
('6483b212-5ec9-493c-8a56-9a03431ae495','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-195'),
('648631aa-e8d3-40c8-b59f-f97c60b995d2','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-54'),
('648b42a7-de3a-454d-a761-088601e15138','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.158','223254418-1-38'),
('648e891c-643a-4c62-9896-6ec0b18aaf0c','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-8'),
('648ea757-5d09-4e28-8dca-ffe6b2a8c2a5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-156'),
('64912790-efb8-4910-9527-4aa688c2eb80','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-71'),
('64912c03-8188-4e31-8b6a-745ef3e84595','282bbf45-2136-4253-bc67-64c0148d8397',95,85,70,0,'2024-12-18 09:31:14.767','2025-01-11 14:08:00.763','93566108-1-4'),
('64915237-5b5e-4e08-95a6-39a451df33da','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-15'),
('6492fa73-b888-4521-ae3b-6b6f311af89e','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-3'),
('6493b4df-d843-42ff-aec8-ef33ecb16c9f','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',208,43,5,0,'2024-07-02 08:19:59.902','2024-07-18 07:32:21.070','412586204-1-76'),
('6493cbc8-f2c1-4c73-8b25-15b2c7742290','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:36.786','248135683-1-104'),
('64945500-1d61-49c3-b8e4-b49fda0f5d90','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.158','223254418-1-136'),
('64970023-50fb-4054-a8c0-bfa0f159dfb5','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-34'),
('6497299e-7aec-40f8-b85d-185364174f92','cf16ee0b-0882-4d38-9eca-1e0888101309',80,94,95,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-4'),
('64985274-2c83-43f7-8f6b-201930c77442','9b949ab4-e652-4783-bf62-9c9c1bfcb13e',200,180,29,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-2-1'),
('649d3e9d-4737-4e0e-872d-d785594a8e5e','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-11'),
('649e2639-0e5c-426f-bd22-c222f39c3fee','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',57,19,85,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-4'),
('649f5e30-5802-456e-8aaf-fa5921fb9dea','aea18323-162d-4a93-9077-c2c03f8305d2',57,82,101,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-4-1'),
('64a0dfe8-c432-418d-b827-e285d77bdbdc','b15fee30-5c16-4f4f-9aec-4a574a38187e',93,235,85,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-2-2'),
('64a75a76-17d1-4339-92a6-c41cb7030914','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-9'),
('64a9268f-1bdd-42ad-bb69-bf5213216af1','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-3'),
('64aa7311-3243-4b33-a2a3-6c6e23897ba9','ee4fa9d5-c840-4b56-915f-a8eff865c451',93,93,80,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.265','644593040-2-1'),
('64aca300-c790-46fc-84b2-d42602a68254','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-53'),
('64ad47d1-7717-4cc7-969e-65c9344a6e0f','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',50,206,6,0,NULL,NULL,'531240111-1-1'),
('64ae94ed-0bf0-430b-b7f8-9f1558319697','c3ac41cc-e814-4fa6-aef1-11c9d37911f5',70,96,100,0,'2025-09-18 15:48:59.201','2025-09-30 06:45:01.426','644879098-2-1'),
('64b021a8-1c5e-4bb1-99db-026942803562','e163d910-3bea-4675-a310-ead7083f02b8',85,80,70,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-4'),
('64b2fb6b-4d7f-4c52-a7d2-81dd4066a892','69acd97e-52c0-45ae-adf5-ee013e52776f',97,75,80,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-11'),
('64b5823a-23b3-4c50-ae1b-b0948d84d851','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.158','223254418-1-156'),
('64b5d7f7-3f14-4823-9d0a-fe032e125f05','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-22'),
('64b7d2c4-6157-42f3-b188-c62aac01a509','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-62'),
('64b8b254-0b65-475e-900c-4ab4f5bf963a','7a081169-1e01-44a4-9ec7-439661c10583',60,61,90,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-1-3'),
('64b8fdfc-b505-4f8f-91ff-a6753159b875','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-10'),
('64b9a951-f600-43e1-85e2-373711bf971a','79a59d43-7fea-4b06-9f5e-bdc9d6a89664',0,0,0,0,NULL,NULL,'478825542-1-2'),
('64b9fbeb-d121-45b3-84f5-180b0d9656cd','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-7'),
('64bd8adc-9e3b-4da1-aff4-0bb98e70769f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-131'),
('64bfb29e-7ee1-4c90-8ea3-0a978e05392c','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',67,15,7,0,NULL,NULL,'428413605-1-9'),
('64bfef84-3fd8-48ca-87e1-03947e74ed8b','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-4'),
('64c05aba-890c-44e8-baee-cc3abc732704','61557b6b-0b26-45ed-a3c0-a245ea1dc158',205,84,25,0,'2024-08-07 15:02:47.801','2024-08-16 19:22:01.168','614908568-1-2'),
('64c1e876-5153-4cbc-a61f-6e869592727a','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-43'),
('64c22d35-6d30-45b0-be14-46038efcc8b2','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-10'),
('64c263c1-3ee3-44c3-8312-0ecc4f759962','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-74'),
('64ca8534-efd6-4993-9cf9-48ea9f7e0b40','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-17'),
('64cd7a10-4cb0-42a3-8725-734ea890f780','a322199e-9388-4cdc-a475-2497cf269eef',245,96,65,0,NULL,NULL,'501589922-1-21'),
('64d05136-2779-4536-974c-48d27cd52177','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.932','853766753-1-37'),
('64d13840-eb55-41c1-ae62-4c7d372e309a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:37.397','248135683-1-23'),
('64d13ad7-98c2-43b9-a6e8-923566e91b29','ae59a50e-901c-469e-b6b6-ec0de7b0b0fe',400,450,95,0,'2024-03-14 13:50:26.545','2024-03-22 07:37:07.324','614456400-1-1'),
('64d1563e-74be-4546-b7c8-be9420823811','b3f430f0-e6a4-4b83-a659-8973f598dee5',0,0,0,0,'2025-02-20 12:15:19.114','2025-03-13 09:29:10.469','478406590-1-1'),
('64d4633f-9af9-4157-9c90-93c8b59a9405','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',51,51,77,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.750','61378160-1-2'),
('64d5a191-42ef-427b-b275-49505d47add2','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-3'),
('64d75ba8-c886-401f-9d69-67cb7fb82315','5e5de5b3-4040-4320-b4a4-779e58d5e8b9',96,8,63,0,NULL,NULL,'371903427-1-3'),
('64db6bf2-eea2-4717-839c-740fce02fa7b','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',50,210,6,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-18'),
('64dbd0ce-943a-469c-9b3e-124a11dcead5','e89e7d75-4967-4c63-9f73-981469e531af',185,64,8,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-19'),
('64de376a-923a-4125-a8db-93a721f23b6c','96b29df9-d4cb-43b6-888a-d226e592e88a',90,96,50,0,'2025-09-06 07:20:41.172','2025-09-12 22:09:37.741','5312778-1-3'),
('64dfeea3-ffcf-4301-8ea9-bc68e6658fc8','7defd633-f7ab-424d-8029-028d1b045752',200,160,3,0,NULL,NULL,'501119446-1-15'),
('64e05c00-56ca-4a7f-b754-ca6b0964895f','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-4'),
('64e1e598-7598-4d80-b1e8-5831e8c2bbf8','d2f8d58d-42ad-4705-b1e8-a666af927fa3',18,52,85,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-10'),
('64e83e2a-1583-42fa-9f73-2ebd6fdde11c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-40'),
('64e927f0-28c8-4cd4-9d0f-d0488244e2a6','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',37,50,4,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-12'),
('64eac8f4-925f-4d2b-b7b9-b67b876d9d49','edef2f29-fe9b-4fa0-8465-53614e2f2468',72,95,60,0,NULL,NULL,'478412191-3-3'),
('64ed0284-896d-4a2c-a423-fe6ed5ac644a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-16'),
('64ef816c-68e2-4430-950d-61f5feb21982','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-1'),
('64efcad4-9762-4b5a-8a80-f1de5430541d','10487cb1-a480-4eb0-8c13-2e4f22918abd',62,57,75,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-1-1'),
('64f41159-ee44-4e22-9340-2c80a62ee134','6cee1429-9935-4eae-be32-dc630b6d70e8',75,54,19,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-19'),
('64fd2b93-4a4d-4f2e-8757-ac3c1a0877b7','f3414f51-92da-4967-b108-6baad5cdd798',140,213,8,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-10'),
('64fe5300-29a2-479e-af96-562241be956f','f95c2298-a038-46f7-b507-fbf48a2c0808',0,0,0,0,'2025-09-02 14:48:34.588','2025-09-10 17:05:30.502','319388100-1-2'),
('65010d94-f97a-4f97-908d-ab2acb207c68','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-236'),
('6501ddc6-a262-457a-aace-73f6ba2f4ddc','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-6'),
('6502a11c-50f2-4578-938c-d72f85c163f0','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-1'),
('65045856-fe64-4d15-8277-6c80d713dfa1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-44'),
('65093ad3-84ed-4ae4-879c-0c7208551d90','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-88'),
('6509e1f6-46e7-47b7-a823-e268b6baddc9','5df6ebd9-9f42-42e8-b325-2e290291826a',41,12,211,0,'2025-08-27 19:40:06.874','2025-09-05 08:50:58.370','437154123-1-1'),
('650c69e9-94e8-4512-bbca-640e6f4ad6fc','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',52,56,49,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-27'),
('650cefc2-23c3-4265-98ca-9577864b62e1','c8f396d4-65a3-4c67-8ae4-e78fccdca407',51,51,77,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.704','786668251-2-1'),
('65133632-e485-405c-aa34-2a057c5effba','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-38'),
('65169974-3d4c-4be8-ad47-8e2c137421d1','69acd97e-52c0-45ae-adf5-ee013e52776f',90,27,200,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-14'),
('65171959-1089-4eff-a3bb-8e8733238bee','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-17'),
('651a04e1-8cbd-4af3-ae5c-f8b40c59f15d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-17'),
('651cc310-d7c0-46f7-8e7d-04d3cf6897ed','2e116f09-c1b8-49f7-994a-7ed5bfd8b502',65,63,85,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-1-1'),
('6520cac6-4944-4c7a-a0a5-b824d5741096','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-46'),
('65219cd7-697f-4e10-93fb-17cb0d8fc345','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-29'),
('6527093b-6bed-4308-ae58-2696c14c0b41','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-153'),
('652811ab-a21f-4db4-af27-d74518a95b68','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,300,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-9'),
('652d52f9-7b32-4aa9-80ff-a6fd9c274ae9','2659414c-d45d-4920-a302-a8db660bf2cc',75,57,102,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-1-1'),
('652d5896-a7bb-4b56-9166-0f5c55d6f14f','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-12'),
('65306f64-5573-4dc6-9fed-68d51de2fd8e','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-6'),
('6531c468-9675-4d7d-b14d-3bad280294a5','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-8'),
('653274b0-b6a2-427f-9f6f-599d76c8af48','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-32'),
('653415c0-145c-4f22-bea5-7dbc28a6b846','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-7'),
('65344e83-c632-4906-b5be-ab4a11d33898','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-23'),
('6535744e-fc43-4047-8ea6-220aa76aa9a4','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-19'),
('653792ac-f175-46e4-9f8c-e9b3f62335d0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-140'),
('65392a90-e667-4e7e-b13e-076d68927615','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.636','248186638-1-49'),
('653a04ea-b511-4e7d-b08a-6d1e36d8d911','267142d9-637b-4672-82ec-1cf14654d578',98,181,70,0,'2025-05-09 18:44:14.646','2025-05-20 06:23:59.224','371429381-1-2'),
('653b42eb-bcad-4cb3-b415-494d1e51fdca','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:57.413','248135683-2-52'),
('653cf464-17d7-4309-9a77-f810c3015187','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-44'),
('6540a728-6fd2-412c-b19f-247815c3aa26','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-14'),
('6541c89b-0184-4a7f-8d87-5470c145a6c7','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-5'),
('654254f0-fca1-4535-bf1f-b8419529de4e','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-10'),
('65431501-d709-4c0d-8fec-773ba72df098','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-4'),
('6544043b-4cb7-4dbf-8117-ff2a63ae3a07','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-29'),
('65455e89-167f-4a8c-bee3-7d8c284669a8','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-3'),
('65461a7a-eab0-48be-8b97-a2f6ab66b945','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-105'),
('65474b4b-047e-4c04-8f94-bf4ed9c13625','92f102b1-d7fb-464d-93f4-22a19907a485',40,24,33,0,'2025-03-13 12:21:26.278','2025-03-23 16:15:49.033','338426911-2-2'),
('6548a78b-36d7-4981-a073-41a0ac25547d','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-7'),
('6548fb6d-9ed6-4e55-8903-f708cc9887dd','845e0c76-772c-4d2c-86c9-e8d641b329e7',102,102,11,0,'2025-10-08 17:44:16.415','2025-10-20 06:32:49.151','831899043-1-4'),
('6549e9da-6bfc-4b88-ab51-c704d7c34e05','12b37afa-91dd-4e2d-af06-ea0c3edaf49f',100,78,70,0,'2025-10-22 13:07:10.126',NULL,'644312365-1-3'),
('654d0dc6-71fe-42e9-b849-77a9bec28faf','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-22'),
('654ef3fa-2b2c-483a-abcf-3dde25e2c392','c271b1b7-3bad-4233-a5e9-dd437e47d390',0,0,0,0,'2025-06-14 12:48:26.522','2025-06-23 09:29:45.131','412417235-1-2'),
('654f17e2-bcb8-4d78-98f8-190de38737af','4468137a-37e6-4938-b390-5c8261b58e50',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-2-2'),
('654f53b4-a9f1-413a-9699-9cbbc3a137a1','c1eae8f4-8187-4c64-aba9-aab18d9bbb27',98,226,80,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.065','43725194-5-2'),
('6550c503-8719-420a-8886-054bf7323b14','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.277','223379282-1-9'),
('655218a7-f5e6-4e28-afd0-e7139aed9f9f','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',95,165,70,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-2'),
('65522725-84a2-4bb3-a4da-0a30a1341f3a','9affc7b1-09c4-4e84-b48b-d0c117c421b0',62,29,202,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-19'),
('65536a5d-cd8f-404d-a940-1e8b98759f0f','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-6'),
('65542aee-aeee-4c92-8bb0-2ac0cd5c2cff','2eeeec42-3306-4154-bcd5-56e769835168',83,73,44,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-8'),
('65566574-b7ac-4714-9277-2ed1944eb0a1','fbe21725-aa89-4d56-9467-9cb01a9ccd14',126,10,188,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-6'),
('655691ec-f4c4-4ccf-a870-9c052621eb19','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-59'),
('6557d313-e7ba-4a7e-9c6a-a98e16f30b36','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-69'),
('655a2b06-c530-43fe-b971-361483cdd807','b4526735-5641-4f8e-b544-78126f7e6078',0,0,0,0,'2025-04-11 13:41:53.749','2025-04-23 17:45:34.746','478138166-1-3'),
('655d2b5a-0e2b-49f6-99aa-2c23bef77d06','69acd97e-52c0-45ae-adf5-ee013e52776f',49,10,108,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-33'),
('655ecbee-737a-4c9d-8ad2-fe647fd70b07','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',250,58,11,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-77'),
('6560cdde-d183-40c4-b3f4-9f17e2ea4d72','539471d1-c2f8-4e53-ad1b-76427705641f',96,161,6,0,'2025-07-02 12:43:19.787','2025-07-23 14:29:13.652','644403373-2-2'),
('65617f94-8031-48f8-a502-292805c021d7','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-4'),
('656248dd-44e5-41db-9eb2-82600f5df5e0','4b51564c-325d-4963-87a2-4ba35ab8b434',80,202,30,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-2-2'),
('656551d4-549d-4982-b8ad-30d237c20deb','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-29'),
('6569896a-3fd5-4deb-9b4f-9c594485e6a2','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-6'),
('656a44de-c4a4-4184-b13e-2f386b4da63a','a3a218ea-c02b-4cec-b478-b5babd3881d0',56,72,100,0,'2025-10-22 13:07:10.733',NULL,'011766113-2-2'),
('656f08e8-cd32-4eab-8d4b-60186a69f7b5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-90'),
('657041d9-be47-486e-b9a0-1ed1ded5b4ac','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-238'),
('65738280-7db6-4d09-a93c-2baa6996a85a','bff50eb6-35f0-4d46-9229-c709335da145',55,35,85,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-4'),
('657390f0-3dee-4f3b-999b-f127937350de','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-63'),
('6577a242-b933-47ba-b1ec-98ec904e2c90','8b9be79c-034c-4491-9980-ad94bae49b22',59,46,47,0,NULL,NULL,'501873907-1-10'),
('65811985-25c5-4573-81b7-0c3103ef5e8d','93bf5a0c-675a-480f-8279-33ede48fd263',92,182,7,0,'2025-09-06 07:20:25.183','2025-09-15 12:30:38.020','371801847-1-3'),
('6581a8c9-9210-486a-a775-5514681da0f9','68196a47-7977-4b73-9a24-2c24753a10b5',94,9,181,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-3'),
('6585ff91-fcfe-406f-873f-6095e79bf2fe','fdf057bd-458c-4a9d-a013-560eb90dde7f',96,159,15,0,'2025-09-16 16:29:13.364','2025-10-04 13:36:32.358','437712381-3-1'),
('65891bc2-bad8-41ee-b185-cd54e3e6f664','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.278','223379282-1-15'),
('658eb47e-0fc1-4547-9433-e6c6994b8a9a','9212dfa8-08b3-4e92-93bd-a594eaf017b6',90,54,102,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-4'),
('658f4555-1a02-4d2f-a5bf-f5d7326cf3c7','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',94,96,68,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-1'),
('65932ead-2665-4156-b90a-f722e2668fc3','e3ad38ad-67b7-48ef-acdc-c2e13831e843',240,80,95,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-1'),
('65977ea1-55c4-4f4f-a0e6-d4c360eb1a27','25960cc2-fb91-4f42-9e90-011ad226f434',95,65,80,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-1'),
('659a7848-143b-4eb5-baef-9d40485692b3','58f9d367-338f-4f26-923c-11e9b56748d1',45,45,78,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-2-2'),
('659b2315-c7f3-4905-98ae-8486a03531e6','0f0e3177-ab60-40d0-8405-2f1a66594f0b',0,0,0,0,'2024-10-11 16:09:20.670','2024-10-22 13:51:49.149','449968881-1-1'),
('659c238f-4c52-49a0-b1ec-4a546beaa80f','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.838','2024-03-27 11:10:13.392','734447528-1-17'),
('65a1a6fa-e6df-4341-9b72-81fea3a02ee3','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.898','735793543-1-4'),
('65a204ed-a6d4-417a-bf03-0c4373484fe9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-75'),
('65a8f54c-e580-4ee4-aa11-e7b444b8c917','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-24'),
('65a9db03-19e0-478a-ba3c-b05af8a324a0','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-30'),
('65ab4680-fc4c-4455-a819-7aabd591196b','845cd508-3836-4f7f-899b-bf28d0f90884',39,22,212,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-5'),
('65ac7b13-3272-4aff-9a33-68ed0fb14969','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-7'),
('65ae40c4-72c3-437c-8956-a8ac8333b5b0','8dc747cb-b372-42a7-a610-18e2ac9a01fe',206,60,92,0,'2025-03-24 16:02:00.063','2025-04-02 16:10:21.430','982329375-1-1'),
('65b0063b-42a9-485b-a9af-4bbfb35550b6','c900d790-eeff-48b9-9f2b-48972c98ac32',48,208,9,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-7'),
('65b0d63b-d7ef-4aa1-b0ba-efcde04c36ab','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-12'),
('65b1d033-7c77-4e81-8bc0-9867b56e6fea','014ebe19-c8ce-4288-a6be-75bb83ffcc5a',35,35,35,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.608','437791709-1-2'),
('65b2ba7b-3a69-4886-ad5f-68033346b36c','fe32e52e-e41e-4849-a30d-cfd7abd60e35',0,0,0,0,'2025-01-20 11:21:31.902','2025-01-28 20:44:54.688','231717770-1-1'),
('65b66c9c-482b-44d5-9872-7683c8060813','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-78'),
('65b715b0-bcfd-41be-8994-5e064ff49cce','6098bfd6-9976-47f8-a799-df79295948c1',52,12,87,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-7'),
('65b91c13-03b4-436d-9b12-3611259d31ca','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-53'),
('65bce545-1ebf-4a81-95a7-9daa5dc6396e','0886662d-3f5b-4da6-acc3-7da74bb71f94',45,30,200,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-2'),
('65bd0aba-33dc-47ad-aaf8-01867b574b06','66ac3e8e-58c7-4a1e-bc6b-2d9b6a2a311a',93,30,200,0,'2025-04-15 16:01:26.830','2025-04-26 17:56:30.038','745770556-1-3'),
('65c15e36-409b-4f53-bebd-04431f251b2e','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-6'),
('65c19d09-d560-4692-9f0d-b23adb9b7597','8430af40-36c5-4b58-b933-e2ca938f7a86',177,70,120,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-1-2'),
('65c4479c-b358-4a42-a348-017eb5eff806','a769cd75-8095-4eeb-999c-d1a749589a77',35,200,182,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-26'),
('65c62cf9-c349-4dd8-b235-0ebb05f9eb45','c1a31a07-5113-4703-99ff-14d4a90ef1ba',44,9,215,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-9'),
('65c7a316-edfa-40cb-96a7-275129399c16','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-32'),
('65c9fb5a-b82a-4e60-97a8-a93446a06e83','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-108'),
('65cafa27-2ead-41b5-b4c3-b654fc4178d3','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-5'),
('65cb55e4-2bd1-4add-82e6-6a39653cde5c','b8f4daca-0289-4a61-84eb-ddbde1849b43',67,101,98,0,NULL,NULL,'613868869-4-1'),
('65cc55e3-c768-4267-b63b-0ebab783118d','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',50,240,4,0,NULL,NULL,'011548428-4-8'),
('65cce568-abe7-459b-8459-692ae66e613c','1c55b4e5-54ce-4848-a88a-545a632bcd68',160,35,35,0,'2024-08-21 14:53:10.288','2024-09-02 08:33:34.976','428225143-1-1'),
('65d220cc-bb96-4b0f-a7d9-852a65a28a11','694114ed-30f4-444c-a5cd-2dac0759dde5',52,51,81,0,NULL,NULL,'37165070-1-2'),
('65d3951e-9796-400c-b706-8d703f57ec1c','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-4'),
('65d728a2-1437-4dd4-b6d6-57f4c6169ef1','dd1cd3de-f760-4608-b546-c1d5ff28b9df',45,77,45,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-2-4'),
('65d73b3b-d063-4711-9dcb-8956a3238de5','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',31,40,31,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-2-8'),
('65d7e55a-9e1d-42f9-b304-1fe4c20be129','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.802','2025-05-08 07:31:37.872','248968905-1-22'),
('65d88025-6e58-4a5d-9b24-4e55a36350c5','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-25'),
('65dae245-e429-4aab-b279-6c86509a1f4f','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-2'),
('65dd80f8-3d91-491f-b5c2-f53955102312','fb2833ed-b33f-4336-b2e5-bb576edd765a',0,0,0,0,'2025-02-20 12:15:00.168','2025-03-04 15:38:06.964','982342488-1-1'),
('65de28e5-2177-4a76-8083-d03b7bea90cc','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-99'),
('65df218b-aac0-4db3-8697-c1fae05870fd','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',90,200,22,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-2-4'),
('65df7f95-4ada-46c5-ba7c-3f96b725613d','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-3'),
('65e1097f-67d2-4c58-b767-89732a9eee4e','61557b6b-0b26-45ed-a3c0-a245ea1dc158',150,200,34,0,'2024-08-07 15:02:47.801','2024-08-16 19:22:01.168','614908568-1-3'),
('65e28a80-1617-4294-8bca-1c2c4bd56d7b','606b177a-2516-4ee8-8a97-7fcc5be07957',73,125,6,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.886','644877146-1-1'),
('65e2e8a9-ed89-4949-823a-d42b64ab967c','a2f34510-a7f6-4abd-ac03-e7c577feca03',12,57,84,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-8'),
('65e48a7c-059f-489b-ad69-bcbdf1538b9d','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',222,59,6,0,NULL,NULL,'501168544-1-5'),
('65e4b8fa-368b-4cee-b6e6-37d6fa253453','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',85,75,70,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-3'),
('65e761ff-0135-40f7-b327-54127f82ea21','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',102,75,225,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-4'),
('65ea3d03-edb2-4f25-a3d7-ff225597b42b','c4f10c81-b322-4ff5-bb9c-85e7f0e16565',76,53,101,0,NULL,NULL,'478514572-2-3'),
('65f15fb8-9e36-4700-ae91-d9cf7607a074','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-15'),
('65f1f70c-6f6a-403b-b317-4c305fd7de2f','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-18'),
('65f9e7e7-c157-4567-9d24-d2e1962464cc','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',203,37,5,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-8'),
('6604f82f-57cc-474b-93a0-f18818ca1439','ec52a31d-c17f-41c6-9e4b-ece376aa03b2',16,16,28,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-4-1'),
('6606dc25-a6ea-4fab-b5c9-dda8a34d0c1c','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-10'),
('660934c4-2958-4f79-8729-7add565d851f','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-8'),
('660c2274-976d-41dc-adbc-463a46287fd3','96449af3-c272-4a90-b77d-0790552dd455',85,60,65,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-22'),
('660e1a61-4dea-4e7a-8146-131fc96c31b7','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-4'),
('6612b46e-5f01-4a7c-8c1a-bd81cbf29f8f','e7f31a78-648d-4a5e-9111-1bf7db38dd79',48,70,28,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-18'),
('6615580b-5ab6-4356-95cc-29b5f405f957','9fa21250-9753-4784-b45e-6a96c940a504',104,124,70,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-2-2'),
('66157d03-0b8e-4b4a-87a4-dbbd16adf1af','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-61'),
('6619ef85-ff9e-4de5-930e-a9111688e0d4','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-6'),
('661b62fb-27a3-484f-8752-dde4fbe3013b','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-21'),
('66206acd-cb0d-4967-b3c8-bae0dee4b529','02c1cca2-b7ec-44f3-90c7-3e935d2e255f',170,76,110,0,'2025-02-20 12:15:12.935','2025-02-28 12:04:36.224','478142620-1-4'),
('66209577-77a2-4ad1-b6ed-57bae9893f8e','304740fa-6d96-4ea0-a997-094361062796',246,27,36,0,'2025-04-30 14:29:25.893','2025-05-10 20:13:40.356','78633450-1-1'),
('66239be8-5ef5-4eed-9f61-af34b00ac89b','af69c5a3-87d3-4548-a650-720b69a4fc69',58,53,42,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-8'),
('6623e301-89bf-46f2-aa05-fa96c89ad037','df476668-960e-4ca2-9fb7-82b6c48ec5bd',80,240,95,0,'2025-08-14 08:21:40.648','2025-08-21 08:14:02.400','982720250-2-2'),
('662496b3-3cd7-43ee-aefd-6cf90accb2e1','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-54'),
('6624aead-ea12-435a-9ca0-786a763f2dbd','984f1373-fcdf-438b-b771-54cf2b74c91b',53,22,50,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.429','437969799-1-2'),
('6625233b-a127-4c27-a539-1a27df5b1e36','9dad246b-72da-4bab-bec2-c2d038d9316f',0,0,0,0,'2025-07-02 12:43:52.562','2025-07-16 17:47:31.515','371398805-1-3'),
('66270fe6-5394-4a88-a9d2-b0b0dd8901f7','cc6f3b66-bc19-498d-9509-1b342de6fdc9',100,50,11,0,'2024-09-19 18:27:55.806','2024-09-24 16:00:34.897','52896910-1-2'),
('6628439e-b583-476c-ad4f-451189be0903','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-36'),
('66285b36-5af7-4acc-8f07-7f957bcca4f7','e163d910-3bea-4675-a310-ead7083f02b8',200,73,30,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-5'),
('662ee144-b285-4beb-b975-098f41f50fe0','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-4'),
('6631f4d2-4495-4d6b-886d-3dfba689535e','d090324b-381d-4576-9558-a6a55f702152',93,55,100,0,'2025-08-14 08:21:31.391','2025-08-25 07:11:25.135','745824761-1-3'),
('66328316-1562-4d82-9f65-2894459eefc9','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',74,52,12,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-6'),
('6632e1c8-f3c7-413c-aba4-40e32eae3b11','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',112,57,83,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-4'),
('66388f8c-2832-41e4-b5bf-1cd450d561aa','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-28'),
('663af4f8-96b4-4831-a58e-1f1599b1192d','7d462544-6e96-45df-8230-5dcbcd269f64',0,0,0,0,'2025-03-08 13:46:16.569','2025-03-17 14:54:20.815','644971564-1-2'),
('663bae39-68f1-477a-b251-af6dddd4e66e','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-36'),
('663c28ce-ac43-4be2-96be-c4cf4effa3bd','4140c031-d713-4eab-a9d3-c8f897ea7b76',75,220,95,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-1-2'),
('663c563e-7764-401d-9ee1-3ecbeb588274','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',58,42,53,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-8'),
('663c6f63-d039-4b81-8196-31c4bf4d72f5','e8302a51-2bb4-4124-bff3-50276f045168',9,117,228,0,NULL,NULL,'127991361-3-1'),
('663cdee1-2109-42b5-ae0f-2fc23b88c687','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-6'),
('6640450a-d9ec-455f-8ca1-70809dd5aa0d','bdc15b51-242d-450f-a47e-a75e07f475a4',108,206,30,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-6'),
('6643879c-c714-42f3-a511-b468cb7caacb','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',31,36,25,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-18'),
('6645672b-da9f-4567-9184-714d483f9e7b','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-12'),
('66467e6c-72e2-4370-945d-7243fced2914','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-120'),
('6648d0a1-e0e3-4385-8aa5-965e770b242f','107fdebc-b61e-48d1-9c8f-84ffa2681dcd',50,60,27,0,'2024-11-21 10:29:00.131','2024-12-15 18:03:37.216','982692076-1-3'),
('664b9a50-402a-45da-8ad1-538683459aad','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-1'),
('664c0d3b-ebba-4856-a52b-fc6dcd92c3cb','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-18'),
('664c5a3c-9cc4-4b5c-a975-5f91b7259340','626b4650-456c-4f9e-bd85-603b644fe1d8',33,33,170,0,NULL,NULL,'598967733-4-2'),
('664ce387-e4cf-4aef-a63d-8b09f71b8d8d','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-1'),
('664ef954-bdcb-429a-87c5-4525a4b869ef','9d01daf1-bc0c-44c5-af16-9b7dbb9a3065',0,0,0,0,NULL,NULL,'745505506-3-1'),
('6651d8e5-f76e-4967-abf8-4058990f2d51','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-40'),
('6652487d-63a8-4564-90dc-cdefca65979a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-50'),
('6656a289-4525-474a-aea8-f7288e97bb1d','00309240-1237-48cf-8533-21b60a560393',86,122,70,0,'2025-08-14 08:21:15.981','2025-08-27 05:38:22.525','428326285-1-2'),
('66570adc-ffea-4fc1-8caa-4ff7236ef085','138edf36-d166-4335-8560-d9873886e31c',36,38,206,0,NULL,NULL,'745189997-1-12'),
('665872fd-dc09-4d80-95ad-ecee7d545bc9','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-4'),
('665b52cf-7f1d-47ca-929f-7581f46659e4','ff5ae9da-b42e-4f83-b529-51fbfbe9ea38',174,58,78,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-2-1'),
('665e8e1c-9b57-4707-b80c-876e2aa62a4f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-28'),
('665fbc15-6625-424a-9c25-d62ee19fb6c8','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-11'),
('666092e5-b5a4-4034-acc0-6362c7f48857','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-5'),
('66615fc2-3f38-4fbe-8169-dcea9b07c374','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-8'),
('66646a94-1a9c-45e9-ace1-0a4ac4052713','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',105,105,68,0,NULL,NULL,'808855328-1-1'),
('6665e599-fd32-4a26-8498-2ed7636680a4','9affc7b1-09c4-4e84-b48b-d0c117c421b0',120,33,198,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-14'),
('66661b3c-548f-41eb-9ce3-79292cfecdd6','919abdcd-92a3-4f54-8e52-871167a8810b',47,23,75,0,NULL,NULL,'598944852-3-3'),
('66682f5c-5de3-410f-aec7-911711da5e25','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-5'),
('66691f9a-2128-46d3-9026-ebb6a2c8a498','4127ee40-0e2b-4246-87af-80c9d221472d',70,161,110,0,'2025-08-21 07:14:56.642','2025-09-01 16:56:53.496','598961970-1-4'),
('666a709f-119c-490f-8f30-702d2656adf4','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.451','2025-07-15 19:43:15.075','437222135-1-2'),
('666a7e05-f7fc-4d74-a832-18613917711c','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-5'),
('666bb211-34f4-4fb9-8105-8b064e72e7a7','9486e3cb-00fd-42aa-a1a2-44d5da68af36',53,76,101,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-4-2'),
('666c5fd2-5915-4376-ba01-b9ef1b84f982','af514340-77a4-4179-9482-f6fc84ee2bf9',0,0,0,0,'2024-03-18 07:29:37.239','2024-03-25 08:44:04.125','745714095-1-1'),
('666d89de-5a81-4a9e-a42c-97f557b4f06d','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',50,147,15,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-13'),
('666eb14f-b331-4a0f-ba92-83239808e354','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',130,46,12,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-6'),
('6670a97d-6d3d-455e-90d5-aed6a80873a8','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-7'),
('6678f940-7e34-43ff-a7b0-4bd748637d52','220fed8f-f96e-4af5-867b-ac05d11bda6f',44,10,215,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-32'),
('667a10c8-2102-44dc-98a4-528dc967bb89','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-25'),
('667c93c5-b2ef-45e1-aa00-3f76d6d69e2c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:37.995','248135683-1-123'),
('667cc224-1fba-46a7-8f36-6831e6eb4992','7892a090-b651-4c3d-9db5-17afabd37421',95,200,30,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-8-2'),
('667ef057-bbb8-427b-bb66-2932824bf0ca','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-18'),
('6682a5d3-f98c-406f-86b7-c94ffa327ca7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.270','2024-09-12 10:54:58.870','223337181-1-55'),
('66851224-88ae-4013-a20d-a9e15f383fae','27850efb-2a6d-4e5f-89d7-075bcaa37d7b',0,0,0,0,'2024-06-14 12:06:09.859','2024-06-25 14:26:18.719','745632580-1-1'),
('66856d3f-275b-403d-950b-6cfde91734dc','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',85,18,50,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-4'),
('668cdf87-5535-4252-bae3-7c657c5aa0e3','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',121,95,65,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-1'),
('668ed68e-3efc-4c73-b83a-8c0b8b4eeba5','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,4,0,NULL,NULL,'478893710-2-12'),
('669b3ca2-c65b-4316-aea3-f771bfc3b4cc','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-6'),
('669c1f9c-2191-4939-9ba9-8340434485cc','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-56'),
('669d0d36-1dc4-4edd-b139-630d39be5d7a','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-66'),
('669d1e9d-f3f9-4436-9d6f-78b13af0e2b6','8e317333-4917-4a57-b2a0-6592178a7d36',88,18,20,0,'2025-02-13 20:43:45.320','2025-02-24 20:30:58.481','127504677-1-4'),
('66a130c8-4724-4f52-ae08-90a96d27d5d5','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.251','2024-05-21 18:45:12.078','478681830-1-3'),
('66a4d235-6d8f-47f7-9100-d0889c942382','4a37c431-7317-431b-8aa0-05bfbd0b8456',0,0,0,0,'2024-06-08 08:00:19.084','2024-06-20 20:15:47.637','449627061-1-2'),
('66a7c7a0-d9dc-4ed5-bb4a-727aa2ea41b3','e89e7d75-4967-4c63-9f73-981469e531af',16,58,48,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-20'),
('66ad4f3e-f447-4248-a464-b7b6e8625068','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-13'),
('66adc82b-4b02-4c43-86fa-ca4c552823c1','4e1a9822-f454-4da6-ad99-64bdb4e1f845',100,80,28,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-1-4'),
('66afdb8e-3300-4415-a5e6-e50d9fa6efe1','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-90'),
('66afebf8-9a29-4ddc-b1e9-d84af00ebff6','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',143,53,8,0,NULL,NULL,'428437129-1-4'),
('66b1b98a-5323-402e-a773-1b16895c4789','20a73c4e-790b-494f-b4a7-c61766021e4b',34,4,183,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-3'),
('66b1c893-095a-449b-a2e3-bd48de0d522c','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-1'),
('66b2f34a-8753-41e4-9956-fecd8268d9ba','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-1'),
('66b301a2-9698-435d-b0a9-1006f2179c7e','70873466-f77e-4c55-81ef-21947837cbff',220,70,90,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-4'),
('66b7d164-9936-4353-bc17-2d07a019fba9','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-155'),
('66b8b43a-8646-44e8-b81e-8b71e3818362','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-61'),
('66be0651-1f67-424c-a379-c26069dd6813','a893bf48-8aa9-4c2e-aac7-2d3d46f89794',86,86,9,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-3-2'),
('66c429cd-f695-473b-b547-baf32b324eea','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-6'),
('66c7a8d0-d917-49ae-a5f3-b9934f8c7f12','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.003','2024-11-12 16:17:22.576','16334418-1-87'),
('66cc1235-a2ce-454a-b21e-76c232e4f187','1575d82c-3b40-4cd5-9eff-caa45101c1d2',69,99,208,0,NULL,NULL,'3718332-1-3'),
('66cc1d99-c191-46c5-93f3-d3570e4918ae','b2c78cf5-c58c-4553-bd14-49e83916894c',29,63,83,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-8'),
('66cca1b5-bbec-497d-a648-3664e21edfa9','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-90'),
('66cec4bd-0a3d-4c9e-9a9e-178c75f35294','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-126'),
('66cf533c-225e-4b11-aac9-51502781cffb','2be304af-892c-437c-ad01-00360cd990ec',38,38,50,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-4'),
('66d02b3c-17e3-4b3b-8939-0e89b64e6ff1','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-2'),
('66da989c-8d4e-4af0-83ec-9006a78a6a64','cbb2ee4d-f3d4-434f-aeb9-9dbae6ed267f',165,70,50,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-2-3'),
('66daec42-e0ee-47d9-ab4d-fe32b8e34f6c','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-45'),
('66e0a1ef-901d-478c-b1c0-2da6fe2b04ac','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-130'),
('66e19fe6-1136-40e7-9d05-c5f76e3d6a84','d9c8afa6-f5f8-43d5-9ac6-960a71010d4d',234,70,95,0,NULL,NULL,'982572348-1-1'),
('66e216fc-6935-4f08-a6f1-6b16a56f005f','090b9a06-aee0-4c02-b626-f3e2002f0fce',89,218,3,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-22'),
('66e2bd7a-0d0e-4549-a876-2dd848681078','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-12'),
('66e40a8e-6147-4fd0-a228-9de7fa50866e','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.496','2024-12-24 12:30:21.380','735736030-1-5'),
('66eb8270-14a7-4fe3-9556-fdba4bf9e17f','d176a715-bd33-47f6-bcb7-f384e079f39a',212,33,8,0,NULL,NULL,'501724603-1-8'),
('66ee0594-f2fd-4c63-ba40-6a3cd77505bb','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-47'),
('66ef0f2a-f1e5-4fcc-8a03-69d2b6037aa6','38dae227-f2c9-475f-bf36-c9eafe154a88',185,75,100,0,'2024-10-23 14:11:52.661','2024-11-04 08:40:37.608','910926193-1-2'),
('66ef22ff-9971-4512-bbd9-83493204d778','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-70'),
('66f603a2-00ca-4d44-a42b-2b8d899f20c1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-186'),
('66f891f6-267d-4c42-b2cc-b183618419b3','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-11'),
('66fc050e-0e12-4554-bc30-43afae5827bd','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-2-5'),
('66ffe6da-c3bc-4da6-8aea-c06f6337a56d','e3994b63-49b6-43c0-a134-5e71d143bab7',28,18,41,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.631','644243216-5-1'),
('670203b4-28da-4108-b2d9-964a89cdfa2b','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,60,5,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-17'),
('6702c201-34fc-4c06-86f3-0592c756eced','6162f09a-c875-44a3-a309-7f63d0880087',85,96,76,0,NULL,NULL,'614597563-1-2'),
('6707e646-2a1c-49b8-92ec-c952231c82fc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.628','41246036-1-26'),
('670e4f98-ffb6-4cc2-9efe-0880098ecf83','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-4'),
('670f78f4-6b60-4c23-a7be-c8b6f528350d','9504c24b-6a37-4522-83ad-b302a5d583a5',46,8,215,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-15'),
('6712adf1-4b66-4d60-9c34-8e851aee3f8e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-144'),
('671622f2-dbb8-4813-a1fb-8d2e70512029','de440f55-a69c-4eb1-b8c9-629c405b795d',30,30,190,0,'2025-10-25 08:59:01.028',NULL,'515973668-1-6'),
('6716778f-8571-4984-9f99-006e01c56179','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-19'),
('67173dc6-9ea3-4ff1-ba1d-10ce770ce43f','9114ad70-d53e-4d1f-89c7-30585d0a43de',208,39,13,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-21'),
('6718f915-7417-47cb-b300-0227b61746f3','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-12'),
('671934e0-c23f-462a-b99e-ed0ede73e64c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.964','2025-04-26 09:16:50.954','223734808-1-185'),
('671c8efd-0140-4c59-b8a5-5053b200036c','67230d57-36ae-46e9-af72-e2352002aef6',85,75,75,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-3-5'),
('672002a7-dafd-41c2-8260-9d93d70092ca','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-6'),
('67208bb2-7ee2-4fc5-8953-9123ed6c8475','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.701','2025-10-27 09:24:38.908','412757132-1-11'),
('6720bd57-0aa8-4be5-869f-529b83fb9bcc','796fef16-71d1-4946-b8ba-54f687adf598',100,92,52,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-12'),
('67214953-322e-4254-835a-559ebb20cd8c','058ec720-a3ef-43eb-a600-dd04b3b98013',109,233,7,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-3'),
('6725f793-3870-4868-862f-bd8ec50a8c58','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:38.967','248135683-1-17'),
('67266781-c42f-4688-bd4f-e5242508f8b5','a123770c-62b5-4b3b-b299-a8495740fccb',0,0,0,0,'2025-10-08 17:43:49.700','2025-10-17 20:57:08.776','428604775-1-2'),
('672a0a20-80ed-48c2-b5b6-5813eb1cd5bd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',206,31,18,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-79'),
('672a2b92-b20e-4f68-8284-31cf8380208d','8a2e1aac-28d1-4f92-929e-a34cea96fcff',25,25,58,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-6'),
('672bb7af-5677-4b4a-b620-48e63e42fcac','f0485a78-951c-4f89-bddf-b2003f0bf783',145,125,47,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-28'),
('672cf16d-4ebd-42c4-a215-c78445d18bea','220fed8f-f96e-4af5-867b-ac05d11bda6f',41,89,17,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-23'),
('672db821-95c6-41c9-9bc4-9f4a6cfc73f9','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-39'),
('6731ce72-b925-476b-adc2-0525aca8a727','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-58'),
('67339fd8-f462-467f-9104-cf105fdd5832','8b9be79c-034c-4491-9980-ad94bae49b22',40,56,37,0,NULL,NULL,'501873907-1-5'),
('673454bf-dc88-4cbf-915f-296608c5840f','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-65'),
('67355824-64cc-45b5-b735-7db8a2531733','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-27'),
('673f02be-a83b-4db9-92fb-d3ff24f641e0','0eeaeeec-d499-4938-975f-3fc74fce159f',51,51,76,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-1-2'),
('6740cb5f-77c2-413c-80ab-7ffaf73e69de','b78519ec-4b79-400f-a709-a1f09256d30d',61,13,169,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-28'),
('67428fad-fff5-4e3e-90b9-346df401512f','8966cba6-713b-4094-b1bc-e0e0d0f8334c',100,65,170,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-4'),
('67474ad1-857b-4e65-88b1-6d78e058355d','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-6'),
('674af6d7-a046-41ce-b231-da7adbea2cee','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-148'),
('674d05b5-dd33-42b0-9063-a4f89690c3fc','a6256e90-8be2-4755-a111-ad8137d9c5b3',40,40,60,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-2-2'),
('674fe692-4d89-4e1a-b0e5-d568ae3ca4ca','443d1fa9-d29f-4aae-96b8-c6565b068779',95,42,44,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-1-4'),
('67527d34-0674-4d6f-b7a1-ce2b4ce36b92','0bd6afc7-c317-4f22-9668-b45353a1d28e',240,100,85,0,'2025-07-26 07:40:26.442','2025-08-04 06:40:09.551','428761245-1-3'),
('675299a0-5421-402c-8e2a-66a6a5314780','20de256d-a63f-4ddc-9e1f-42653a455a81',180,200,3,0,NULL,NULL,'47856812-2-1'),
('67540f0e-a42a-476b-9d44-28e8e656d969','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-17'),
('6757b580-5fc6-48d9-9927-60f507555f51','8bff430b-7a96-4c68-8e7b-4099c51a0966',51,51,77,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.982','221191139-4-2'),
('67582029-48ad-44ca-a7a2-71ff8642ddc0','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-6'),
('6759b106-13d4-4fa7-808d-47c42e0503bb','86e5956d-750b-4aa3-8f00-53e2db7b9f65',90,60,10,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-18'),
('675a4e78-cbe9-46a6-ad21-51a61bd27bae','31ae1da0-0ec2-4d89-86f3-f97ab9fd9e36',59,62,89,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-1-2'),
('675dbd44-145e-47fa-9bd1-f85e3dd07bb4','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',180,100,13,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-15'),
('675fa4b4-72d6-4d92-b652-db0d4851c443','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.898','735793543-1-6'),
('6766a0ac-5051-465d-988e-cea70df38ce9','8c9b45b9-09dd-4bf8-9d3b-dba3a172f00b',45,20,100,0,'2025-04-15 16:02:03.211','2025-04-24 15:01:37.127','910251573-1-2'),
('6767ad7a-45db-463c-877c-270a5e89c32a','f68f848d-9773-4521-8431-b7efe576a9ea',42,27,198,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-6'),
('67693893-3725-4f01-a089-838c9b794767','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.641','2025-01-16 09:38:38.361','478678748-1-45'),
('676d2b67-89a2-44c4-96e6-4ed521b2dd92','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-2'),
('676d716e-262f-4ee2-be5a-9a989c6c6a51','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',100,70,97,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-3'),
('676e253e-c828-4812-a5ff-42026217ff27','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-80'),
('676f825f-6788-48cf-ab57-c6898db943cd','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-103'),
('6771927e-d08e-4dd5-9505-be52c1ade2e0','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-5'),
('67730e23-d808-4dc6-ad24-78ec8297218a','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-2-3'),
('6776ddc9-0dd3-464d-9cfe-cadbd8a40393','719c1517-1488-43e8-8631-14bcd14307be',57,76,103,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-2-3'),
('6779f686-8e2c-4f78-bc06-38bf2ed42544','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-122'),
('677a8a21-1da2-432e-b941-29e134519066','b6983269-7177-4886-861d-72648ff63282',181,200,30,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.254','478483851-3-1'),
('677b64df-10a9-49dd-acec-ceebdc5d00e2','af69c5a3-87d3-4548-a650-720b69a4fc69',110,180,36,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-3'),
('677ec20b-b1df-4486-b0c8-f17f9c8497be','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-81'),
('677ec379-f382-4537-8dbf-4f3e71bf3a38','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-14'),
('677f69bf-627d-44d4-b9ac-2aff3f6963fa','2758ecf1-d2f6-40d7-98ab-d6b498789fd9',56,82,100,0,'2025-08-07 16:52:40.666','2025-08-21 08:12:35.793','613601743-1-2'),
('677f8b57-f6b4-44fd-b73c-bd85d33c3316','c45d0f8f-0a66-465e-bb56-1913286018e1',85,85,70,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-6'),
('6780c209-a4dc-40c2-9b20-5cff7b5fd153','847447cb-cb81-4f9f-9f95-ff50b1304b30',100,180,70,0,'2025-09-11 06:33:55.955','2025-09-17 16:03:29.946','437397407-1-2'),
('6783cbba-e2c4-4c0e-8416-0fe3ab846168','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-19'),
('67875632-e4f1-405e-beb6-79c75ff66720','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-200'),
('67893b1c-e7b6-4b02-8cc3-a20976562e82','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:25.958','248284003-1-23'),
('678a0cf9-7691-4851-a517-c6e5dcb4247a','9eeecdac-d023-4ee9-8639-dc9b22642c27',44,16,202,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-4'),
('678c2044-87a0-4281-aec5-a00ddc034ee2','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-4'),
('678e9b22-e358-4917-8fdd-ebd97958eff2','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-66'),
('6790c2d7-2f39-46f8-a7ba-8bdca44f9ab8','c2a86095-314f-417e-838e-52f2b3b068fa',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-5-1'),
('6790ecd2-dc60-441d-a653-bf02c6c5b1fd','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.237','745357299-1-2'),
('6793b9f9-de2e-4603-a659-3b9984445be3','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:58.114','248135683-2-27'),
('6793f8d2-358b-472e-b65b-17a9f03352e0','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-1-5'),
('6794cd60-58d1-4133-b436-2f67163753a9','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-83'),
('67966d57-71ac-4848-86ad-7b1d4fad05c1','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',195,80,100,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-5'),
('6797811b-3d50-4c3b-b6a3-53dd08f091d5','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-16'),
('67993a90-84d8-418e-b1a9-1beb21ad36b3','55ba31f7-49c7-468f-b2f6-79eb12fe2db4',155,155,7,0,'2024-11-21 10:29:08.702','2024-12-14 17:25:34.448','126245978-1-1'),
('679e01f1-8854-403f-9140-af0913a2d399','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-9'),
('679eb737-f9d7-4c36-abdd-86f5a456ce02','6d2958d8-12ca-41bd-a12b-58082d5c955f',224,6,47,0,NULL,NULL,'614364554-3-3'),
('67a0d334-b8cb-4716-808d-80f2fdcaf362','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-4'),
('67a4582a-0673-4a32-8c9b-a91a57e6bd0d','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',75,110,100,0,NULL,NULL,'428413605-1-24'),
('67ad5a39-a07f-437d-b92f-5357244fe77a','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-5'),
('67af44b6-7c0e-4e7d-8c6a-9bc3620d17b5','4affbb1e-1f39-4f6d-95e5-ac1d9bcd8748',90,100,100,0,'2025-08-22 20:28:50.022','2025-09-01 15:17:19.745','598758154-1-2'),
('67af6a02-669e-4ebb-b4c2-6bb81861da90','1b9d02bb-27ab-47eb-bb6e-a6a04884328d',0,0,0,0,'2025-05-16 16:33:23.870','2025-05-23 14:07:13.362','745961245-1-1'),
('67b1f10d-1f6d-4ff6-a3b4-a9e18dcc8010','a6c77233-c870-4a4b-ab0e-76861ad31465',68,68,38,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-2'),
('67b2c620-3c7c-4483-b051-efa002435c50','2c356607-02da-4a51-85d3-eda95e852225',80,14,16,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-2-1'),
('67b3c41e-6dce-4539-a026-21cf693e7ca1','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.125','231712628-1-9'),
('67b5fa23-98dc-412e-9aa0-b905c073d8f3','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-2-26'),
('67b868a1-1ee9-4aae-85f9-6dc116aadbd4','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-15'),
('67ba4734-a15d-47fc-90e5-51a119de49cf','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-38'),
('67bbaa95-466a-44a9-8374-e1aa0e619ab6','36b532ab-9729-418d-95fa-3d28b03d7faa',54,73,101,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-1-1'),
('67bd6f02-3b52-4372-8306-b48b9cd81fb6','6302f68c-26c4-4a31-853e-80b9d1ba59ee',116,60,12,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-19'),
('67be09f2-7b0e-49ad-9bcf-27d43d5283a8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-242'),
('67c476a9-d3fa-426f-b727-5099d14e26a5','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',30,17,15,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-9'),
('67c49c91-be78-4461-91d4-1a92f629adac','bce4c0a6-f06f-418a-8c1b-131c4f5ffc22',51,51,77,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-2-2'),
('67c73f92-09c4-47bc-871c-ae8d0439bca6','fb315394-4cb2-4ee4-9b83-42589f739871',0,0,0,0,'2024-11-12 16:16:09.017','2024-11-21 12:39:35.617','745286096-1-2'),
('67c74403-8bad-442e-bc9c-814ab9736671','6f44b113-5917-40cb-9c98-9456f8c03518',72,58,101,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-3'),
('67c88426-6890-4525-8ca8-d6ec272da672','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-9'),
('67cd8a34-8dc2-4406-ab17-a24b9f449c8b','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-10'),
('67ce5510-d4a4-487e-8407-7c9d512586ce','159c73ed-083b-4d67-98ca-6adcfc554962',28,205,125,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-7'),
('67ceaab5-c34c-48b5-a0ca-2ec5eb835865','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',85,57,107,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.750','61378160-1-5'),
('67cf1f20-55aa-4b1b-9dda-d061f17ba5ef','4a5b7db2-dc5e-4f39-972a-37093584e9dc',120,27,200,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-6'),
('67cf7b37-0462-40e7-8b1f-a671f729ad5d','bf2fbd97-6d0f-4724-b25e-47e019854e49',59,9,260,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-11'),
('67d66298-e0cd-43eb-9bac-01a458b10a67','1b220ec0-b64e-4a76-82f4-db2a427b2a50',0,0,0,0,NULL,NULL,'614941926-2-1'),
('67d702f4-4e34-48df-8bc4-822328ba42b2','a536833d-42e6-4e44-bbb7-e5c1f349da79',0,0,0,0,'2024-10-17 13:41:03.926','2024-10-23 16:38:15.813','982765286-1-1'),
('67d8048a-6d25-44e5-9e1d-053f5fe84a31','ed05a300-3f7e-44c4-b954-a6eab482e5d7',95,210,70,0,'2024-11-21 10:29:18.363','2024-12-13 19:00:45.749','982549375-2-3'),
('67d85b5c-0a90-4cb1-991b-e15639be8f6f','f7dc1792-8ed7-4b88-b7d0-c13a7e4ca6d6',115,120,70,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-2-1'),
('67dc20ca-8b28-4531-bc31-120a3821e261','6f883022-1eea-4faa-b6c6-489aa1c8866e',89,190,2,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.331','455614339-2-1'),
('67deea82-0b9f-4313-a3e2-3b8ea8f5bb29','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-23'),
('67e17fb8-5ab4-4dcd-b7e3-d6ff9092a48e','3a08fb4b-5cc4-4e68-847f-00548d024407',95,90,70,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-2-3'),
('67e18301-9e3d-4962-9391-fc594298d333','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-1'),
('67edb49b-0739-4d51-8a2c-f651442a76cf','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-22'),
('67f0efb1-3a09-4a85-982b-a34ad5b31fa7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-104'),
('67f5432b-2433-4e0c-9995-7466086dbdd5','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.628','41246036-1-115'),
('67f6e8c6-6d02-4f4c-8c78-5efc324dc587','796fef16-71d1-4946-b8ba-54f687adf598',80,70,67,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-13'),
('67f852a4-3c5e-4532-bfa2-4afb25632ecc','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-24'),
('67f8f713-8914-4182-8807-d5ae1f2f84d0','f6885427-480b-4660-b34b-c410a6dc850f',61,61,7,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-3-4'),
('67fb9fa0-dde6-4c08-b52a-fae5a00a9c9b','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-10'),
('67fc1c52-7ef1-4b0d-8fb8-fc585d7d59dd','34a4ab26-f53a-4295-9345-9762f27ce36a',77,53,102,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.887','478659791-1-4'),
('67feb335-bec7-4f75-9197-572bd87c126f','6aadeef6-4393-4005-8da5-51ca4e422dfd',97,42,116,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-7'),
('67fee60e-d2d4-4147-b943-d743d8949b0d','f550b581-aef2-457f-bbad-307433755791',106,58,85,0,NULL,NULL,'613495902-5-2'),
('6803a8da-382d-4d1b-8078-f7f804ca4299','6d2958d8-12ca-41bd-a12b-58082d5c955f',5,224,52,0,NULL,NULL,'614364554-3-4'),
('6804dc66-d017-4763-b376-1b3201046d96','25960cc2-fb91-4f42-9e90-011ad226f434',120,120,70,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-7'),
('6807d54a-d41a-4a84-9bf1-1809e478543c','393a3e6b-f235-486c-87ca-8b44a4bf1559',0,0,0,0,'2024-11-23 08:32:18.098','2024-11-28 16:59:19.376','478530755-1-1'),
('68092cd4-0fc8-4949-9a1c-604a7efa39f6','4b51564c-325d-4963-87a2-4ba35ab8b434',80,202,30,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-2-3'),
('680a7cc7-ccf4-4079-a28c-de21ac758cbe','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.463','478972804-1-10'),
('680e93d2-ef4a-472e-98e5-41fe501ca637','51130bdb-f938-4bc4-8f49-46c9b089489c',200,40,25,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-5'),
('680e9a0b-e83e-43f9-b0d9-57033e90bb48','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-24'),
('680eb9e4-af9f-4b05-ae64-08ceac4f767b','43b8384d-aa9e-46af-869e-8c40c8c2e87e',105,80,70,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-2-2'),
('68150cab-4d3e-458b-8bb7-1fc5f639b197','cf3bf9ba-92d0-47df-8c74-248b0e3c5f89',72,53,96,0,'2025-10-20 07:18:04.671',NULL,'517619393-2-3'),
('6817bf29-05ac-4f06-87ab-f081578dad17','143d151b-b558-4cdd-aa6d-149292132a3b',80,75,75,0,'2024-11-25 08:29:07.180','2024-12-03 21:16:46.789','614350153-1-3'),
('681a7ba8-e09d-48fc-8a9a-983be9594802','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-1'),
('681dc966-de3e-4eff-bdbc-102f014425de','803574ae-1ef3-4704-8432-986beb633506',3,160,200,0,NULL,NULL,'614364554-4-5'),
('681defb8-fdbc-4b64-b9d8-1e1dacd9045d','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-16'),
('681fbee0-c287-4526-9d5d-2b58edc8d77e','630d42f4-c9b1-4b32-9b3d-39e20b4a7b35',70,70,70,0,'2025-04-30 14:28:58.969','2025-05-14 06:37:48.850','745173444-1-4'),
('68206d09-84ee-42a6-aa8b-72e6dde14629','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-1'),
('6821227f-9080-4b78-81a2-44754dc81907','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-54'),
('68224747-d9e6-4120-8346-be9f0f642c34','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-86'),
('6823db45-8594-4d36-9720-a0b11123f00a','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-3'),
('68280c84-8d44-42b9-a924-c9f01ad1c3dc','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',100,24,12,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.258','449208438-1-3'),
('682d49d5-ba8b-47ae-a280-c5336abae9d5','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',72,106,56,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-4'),
('682d72a9-54ba-42f8-bb15-2e85f44a9f24','7c7686b8-8f65-4271-acac-1585b7485563',81,71,32,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-11'),
('682fce23-2437-41ca-81e6-f3161b3f4653','fb58f438-30e4-4e01-af6e-6378e27a11fe',90,70,75,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-8'),
('6830c32e-5805-417e-9097-5e887ca97f7a','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-28'),
('6835d511-d5da-4268-a2d7-6f4f0f00517a','72fb9c80-80d1-4a22-84a3-c154b5a3cce2',56,82,111,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-2-1'),
('68376eb9-b309-483e-ad47-111b9880bd2c','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',38,40,212,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-10'),
('68377b34-10ec-43fb-b96d-998b4d0c9475','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-40'),
('6838f3cf-813c-4b3f-b727-ebfb0e5eb901','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-9'),
('683bec1d-f676-40c6-a609-4cd9d9ee7de9','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-2'),
('683dc18c-8079-4e38-93c3-ea7919bc148e','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',77,82,41,0,NULL,NULL,'808855328-1-3'),
('68405274-d38b-4b90-b651-ce25e7921a1d','3988ea20-dee7-4b87-8731-bedc6f18d112',52,35,49,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-1-3'),
('6840d660-ff1f-4439-8dfa-4dc8cfc1d290','b7fbd54c-bcc0-4613-9901-d06327048472',42,55,33,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-16'),
('684219c8-39ee-448d-a385-d38bdfe9933a','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-15'),
('68431a6b-cba7-4542-bd4f-2114b96136fd','a94a556a-77a8-41f7-8103-f5eed51f9a91',57,60,85,0,'2025-02-23 12:39:03.931','2025-03-08 13:57:38.797','221966080-1-5'),
('6844e29f-5d33-4cd1-acd4-262deb5ac674','5cb082f0-4973-4f83-ba7d-550b088af234',85,64,67,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-3'),
('6848ba53-e348-498f-a8da-052e04314999','3987bcda-6531-4738-8815-187fd84bf71c',158,21,21,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-8'),
('6848d8c2-fab4-4ef1-8f98-e3c1b0b8346e','7ba47169-83ca-49a6-98fc-6ef1a1990eac',230,65,60,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-12'),
('684a24c5-ab3a-427e-9b6b-19aeef9b5dfc','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-17'),
('684d225f-92bd-4adc-b004-40762fb5a0f7','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-2'),
('684ddd99-600a-4a11-a2e6-d3a71a29b400','4a769c6a-1636-4fa8-b52c-be5633d0794a',77,57,101,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-1-3'),
('684f068e-2fdb-4bb0-9c04-7c94924016fd','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-23'),
('68547374-a3dc-4681-a24c-983d2828d799','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-62'),
('68582efd-c70e-4657-8165-6cd5809b5ae6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-97'),
('685b5b0a-5fe5-419e-a8cf-a4a9d7af7240','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-50'),
('685dae8d-9e2d-4707-8ef0-b6ced85c0bb9','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-3'),
('685dd520-609b-4169-90fd-9f1b36a53e7f','b16256b1-d6a2-448b-a170-4c574127a57b',18,60,45,0,NULL,NULL,'745189997-3-8'),
('6860bf25-5aa4-40ff-a9d7-be65fbf03b2a','86d6c74a-fed6-4b24-a3e8-4af8a7cfed33',45,45,76,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-3-2'),
('68660420-01b2-48ad-9f97-991bfcf7f79b','f88c3e53-b711-4bcb-aa3d-9543580054cd',193,77,108,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-32'),
('6866f345-bf72-46db-a811-63d6113b8070','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-13'),
('686b27f4-b690-4670-ab2c-ebe22f01f683','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-2-2'),
('686c3d89-8016-4551-8010-cf8d9e91d97c','a5506c59-0e9f-48a6-9b69-13a5163cf994',103,72,72,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-6'),
('686f5418-bad3-4766-a4ed-25f65eb5a941','8625abf2-719d-4d7f-b206-16948b318b8b',230,75,100,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-9'),
('687448bc-dbfa-400f-82da-1ff0e9155bb2','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-6'),
('687537ff-978f-4677-aabd-4f075313607d','69acd97e-52c0-45ae-adf5-ee013e52776f',133,7,185,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-16'),
('687ae098-3fda-43d8-82aa-d04adbaeeca5','335d49bc-ae8d-44e8-8d64-73df7dd93d77',56,81,101,0,'2025-06-27 17:12:25.013','2025-07-07 06:55:23.557','976680764-1-2'),
('687d2c47-3e92-478a-96ef-cb59b22c73dc','da45c512-a565-44f0-94fb-f2a9be01c44f',80,75,60,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-3-2'),
('687f2cca-653f-41ba-aba9-31fe496bbde6','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.033','2025-05-10 20:13:24.404','478994871-1-14'),
('6887878a-732b-4acc-86ca-8f7513bef768','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-84'),
('68884a30-09dd-4a06-adb5-0047f5469106','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',86,32,40,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-10'),
('688a4604-c33d-4244-9fe2-6e974ef82d69','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-20'),
('688dec95-1c92-4ec5-b17c-2b4fc2d56317','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-77'),
('68905807-a02b-46bd-8005-d79852e5ba22','f71120f0-3dab-49a4-9919-47f817fb8a68',98,115,70,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-6'),
('68931423-0ec3-40ec-b76e-a9dfa6b30469','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-15'),
('68995b87-ed0f-4ed1-8c85-14c99992bded','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-85'),
('689971bc-3c6e-4ae7-b703-c75e288353c8','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',21,7,210,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-71'),
('689cd112-15bd-473b-af0a-6af6a8081f11','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-3'),
('689f97ef-c8e5-4fe9-83a5-52330e501708','d0fab5e1-5f00-4678-bcb8-96afe15cb326',116,215,12,0,'2025-04-15 16:01:58.310','2025-04-24 15:01:41.799','64441153-2-1'),
('68a230d8-0cee-47a2-82fb-25f687e687ae','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-24'),
('68a9b126-4d99-4a67-ba62-59521a656b40','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-174'),
('68aaa860-1370-4239-bbcd-32eecb769f5b','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.726','2025-04-04 09:29:51.592','248133427-1-13'),
('68ac3943-4eec-4521-85c3-32c5b141f1a6','0066c2e3-ba8f-4c63-a37e-2b8d8425a42b',82,57,110,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.802','478677262-1-1'),
('68af5457-fe65-4986-a68c-4d8d628d3b8b','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-14'),
('68b219de-e4fd-4359-9609-6015af301e30','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-15'),
('68b2e357-8c62-4630-8d44-ed6321136d6a','ed660ffe-c741-4eb1-b890-c5a2f52b1f9b',76,56,103,0,'2025-10-20 07:18:10.105',NULL,'59874048-2-2'),
('68b368c8-e08b-4d49-9895-4371f6bdec4a','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-17'),
('68b36bb2-5e96-4453-b076-48af76f0cc04','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-4'),
('68b446ab-27d7-4600-beca-1de0255f0337','0cc39437-8ee1-47ea-87c2-b9fe770c2259',59,218,2,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-22'),
('68b9a7c3-2bb9-423a-a749-3661867e4449','148a8646-0bfd-4fcc-ab65-0b45431fcc16',40,34,205,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-5'),
('68bc4d98-49f6-4cec-a9ac-29365fac5cf8','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-40'),
('68c2d7ae-08bb-4178-811f-e39e6e9fc655','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-5'),
('68c2e3df-3baa-4632-af50-ac680052a4e2','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-43'),
('68c46d07-e192-4828-8b76-ea736276f2b9','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-82'),
('68c52298-b60a-46ae-8f17-7170b27ad5c7','84a978c9-68bc-4af6-a5ab-3a6551bbc294',9,9,155,0,'2025-10-08 17:44:02.656','2025-10-20 06:31:57.755','371876767-1-4'),
('68c94260-014a-485e-a656-0740380b5379','6465e1ab-9a54-436b-b6b6-782870563698',48,45,45,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-1-2'),
('68cbdd87-2791-4b9e-bcd9-7a67c38fa980','0cc39437-8ee1-47ea-87c2-b9fe770c2259',46,21,206,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-18'),
('68ccaa46-a549-4da8-bf89-221e9327813b','bbc6d966-9d42-48e9-83e4-13afb85a7c33',56,75,100,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-4'),
('68cda019-117a-4d86-b153-d9f95b8d7110','70295e99-ecec-4498-943e-fb5826d388c5',94,64,197,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-6'),
('68ce72ad-6633-47aa-bcd6-b93217770fa3','7af3ae82-b2fc-46d3-aefd-cf6046c49f14',119,27,200,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-2-1'),
('68d5d329-5995-483e-a92d-7c68767e380e','a41cc165-9ba9-48b1-bec3-06ff1f0e0fa1',58,21,95,0,'2025-01-26 10:54:44.964','2025-02-07 11:19:08.733','428519862-1-3'),
('68d8b351-eef8-49f7-97b5-b2369d2b98a3','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',83,83,6,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-83'),
('68dc871b-134a-470c-985b-312227edab1f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-51'),
('68ddb50b-f28d-4dec-a220-dde93c2957d9','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-37'),
('68de03f2-34b5-4e96-8666-da4c2e757223','04f625f7-445b-409f-b4ca-5314e2044c7f',56,83,100,0,'2025-05-23 14:05:22.410','2025-06-06 17:34:35.937','221897784-1-1'),
('68de478b-569d-4321-bd8f-7643d71387ca','8e39c973-c918-4ebc-bd24-9e7fc61de240',54,58,9,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-4'),
('68e76348-2a2e-4b2b-826d-fc77c1898a44','3bda7c8f-d10d-4b97-b22d-c5e0ee73bec0',80,100,70,0,'2025-02-20 12:15:03.287','2025-03-03 12:37:37.230','910599740-1-3'),
('68e9dab8-1685-4b78-ba55-e0b541ef3b8d','17868a47-2f8b-42c0-9e68-ed7885930bc4',57,49,47,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.191','644776565-1-2'),
('68eb0e31-3450-48d4-804d-38b3f7de49bd','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-11'),
('68ec9096-4507-4898-a2fb-519c42ed1f89','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:25.498','248284003-1-131'),
('68fd81f7-5cd7-4d36-a543-a1ddfdf3e12b','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-21'),
('68fd9455-7d34-4b5a-91e9-d69ce5d71cd7','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-11'),
('68feab79-575f-427c-bdbf-a7b9470f3c7d','105785a5-e450-4d29-8109-3b9bd15eec97',51,51,76,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.325','221164226-1-1'),
('68febb22-30fb-4f6c-bd6d-26cf713e1586','7da90be8-bc5a-4edd-b9b1-cecfb9a48c3e',42,74,11,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-13-1'),
('69006aba-cd06-493d-a2a5-244630c8a038','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-15'),
('6900d678-6d23-4e0a-af3e-bdef11a33c09','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-24'),
('690560f2-e6c1-45a5-a4fd-5ce4c08199b7','08042e48-f41f-42af-a51b-44a9a14cedf4',57,198,30,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-1-3'),
('69070bec-07af-4c44-9009-93b8cb9fe7cf','5ea4b207-b05c-4931-bbd1-648b6933aae5',34,51,24,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-30'),
('6908421d-05db-436e-a3d1-991dd2189316','0bb5d71a-48ab-403f-9eb4-a71c550b29ad',36,36,195,0,'2025-03-11 18:06:01.698','2025-03-18 17:00:21.789','982134567-2-4'),
('690d0cdc-0933-4b86-915f-9375fb074b38','1146c60f-37ae-4960-9ff1-39c79125711e',43,44,19,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-5'),
('690d6f07-a066-4847-9b1a-caaec1a0be5a','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-30'),
('69123a56-e0e1-4016-b53c-983fe5fb4fa5','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-10'),
('6913e0c1-cf2d-413c-90d7-b488fbc8bde5','6d0390ef-65ce-4154-a607-d67e51938ed2',90,190,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-6'),
('6914fa21-8a82-4ba1-883e-4c27db278a58','8fc7023c-7fab-44ae-a533-006d835eddb6',44,9,213,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-13'),
('6919a735-fdfe-4f04-b02e-40013f6a0674','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-76'),
('691e20c2-087c-4337-949f-b924cc21dd5c','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',52,52,77,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-1'),
('691f7a6c-c2ec-4904-bd34-07e505870188','71739720-3bf4-4e85-a052-44d40ca1db0f',0,0,0,0,'2025-04-30 14:29:27.263','2025-05-10 20:13:32.865','478662278-1-3'),
('692495d6-2ebb-4a7b-ae32-01ecb88c41ac','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-84'),
('692ca83e-b88e-4d8d-83e3-8a5a42f1009d','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-13'),
('692d8c4c-1560-484a-a8ff-a076976b8945','47019764-af76-445a-be8b-30f53c6195d6',0,0,0,0,'2024-10-23 14:11:51.627','2024-11-04 08:40:42.087','478941206-1-1'),
('692e1cbb-dced-4d7d-8d65-01ae8b82482a','154621b1-ffa6-4119-be67-ecb1d2de0d10',70,62,91,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-1-1'),
('692e5437-8d23-4000-b65f-4eb0a6c659df','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-9'),
('692f7242-daf3-4a74-a845-8e9c911c7af7','46d1512a-2bfb-476d-a224-9390f3e194f2',36,21,16,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-12'),
('69324e3e-2838-43a8-8e4f-b639db76ea3c','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-13'),
('69327ebc-08c6-4e5d-9248-c28e4bd134fc','9114ad70-d53e-4d1f-89c7-30585d0a43de',142,23,8,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-22'),
('693337a9-ca2e-4fe1-8907-8dbe1254760e','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-28'),
('6933bd63-4978-4b32-927a-45343d55a50a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-50'),
('6936603c-a4cf-4ad1-b9af-8134d39858d7','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-2'),
('69383bbf-ddf8-4e5a-a226-3ddd98de5459','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-14'),
('693c7026-1c5e-48b0-bd79-aba04247d3e4','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-2'),
('693e854b-814f-4043-aff8-95bd602405d0','1ee10629-f1ed-4f00-b3e7-b0eabc56a71b',49,36,22,0,'2025-03-08 13:46:23.570','2025-03-17 14:53:57.989','910572875-1-1'),
('6941ca48-b6b8-42a2-bad5-b83397573056','81ff8563-ab6e-4bad-a81d-a451ba94d6a6',104,104,70,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-2-3'),
('694235f4-395b-42e6-a86a-5ee312f56e4c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-97'),
('6943cbe1-9543-42e1-ba80-e3bc2b178b14','e3274e26-e81b-4a5a-bc90-d5199ceb2caa',100,65,75,0,'2025-10-22 13:06:56.699',NULL,'910152598-2-3'),
('6943e2bb-5184-4d0a-9d02-b9a7a6427e13','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-7'),
('69454153-1234-4f1d-9c29-78442724c9ba','addb5c2f-4917-41fa-b1cd-a27dce7e3612',51,51,76,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-1-2'),
('6946266b-cb7c-4dc9-bc26-50b473d92be5','feb77c04-d085-4688-a308-1871c3ac6713',0,0,0,0,'2025-09-18 15:48:36.291','2025-10-02 06:11:59.159','412955343-1-1'),
('694692f6-fc01-46c0-8690-8a7eceff141c','6f008251-c003-4235-8950-f5ecedfd319a',97,70,187,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-1-1'),
('694bad89-a30f-49c4-9b39-24e7ef16019d','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-1'),
('694c6195-53ba-46cf-be9f-fb9d7fec4aa4','e6bddda4-b1df-4be7-bbd5-63cc4b197736',225,95,63,0,NULL,NULL,'42857810-1-7'),
('694f4122-c6ba-489c-88b0-6b01d60c57d1','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-16'),
('695031a1-4dca-4d0b-8e87-c05e301310b3','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',94,52,52,0,'2025-10-08 17:43:46.255','2025-10-17 06:14:23.899','380453463-1-4'),
('69509ebb-10d1-4a22-a7f8-fa457c26bcf7','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-2'),
('695162a5-63a4-4438-ab20-0992a2993f2b','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-14'),
('6954ccd0-ecd6-44fd-9ec1-cbbde7d2b955','c6df5a40-83e7-435b-ab59-3e39b8d977c2',65,57,102,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.462','613191069-2-1'),
('6957b896-c5ae-4835-961d-bd612a2e2d50','6aadeef6-4393-4005-8da5-51ca4e422dfd',90,41,5,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-8'),
('69594bd3-56bb-4ee3-b250-8558103baf1c','3f466b16-fac7-4cf8-b004-d0829d6b5061',201,83,30,0,'2025-04-21 06:13:19.326','2025-05-02 17:10:36.933','43792999-1-3'),
('695ea049-fab9-494d-a910-1203d6c20c89','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-46'),
('695ff399-c894-4eea-a99c-da94bbf3c977','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-13'),
('69646011-4a11-49c4-8e82-37ec8c88ec2d','3d736ea3-973a-4d02-ac36-6a5148cceb76',109,202,6,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-1-2'),
('696824d6-b788-4975-ad9e-032f1fddf30a','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-10'),
('6968e807-6a9a-46fd-bce9-928b720be462','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-7'),
('696b9274-97ad-4ec8-8ba0-d6a49dddd441','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-215'),
('696bb11a-4f7c-48e7-a74b-3ec4bb8adfc4','6137887a-a955-44cc-9620-948985c68d05',185,115,40,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-3-3'),
('696ee9e5-80f6-454e-abd3-c1bce0c7881a','9c87d055-322e-433b-9fd7-b8e890d8305b',97,220,70,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-2-1'),
('696f5104-7784-45c3-88ff-c6b27ed83f3c','743ccdda-3eee-4f87-8835-f0f9348b6b7e',110,56,82,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-9'),
('696f716e-8e83-496a-97bd-405186cd81a2','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-10'),
('697182b6-0fad-42b2-87cc-c5c6b3f36c1e','702c1aff-1a98-44f0-9dce-efad71572432',112,14,195,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-22'),
('697234b2-0f9e-49b1-b3d8-7b52df465e3b','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-26'),
('6973238a-582d-4c79-a64c-ed5374a659c4','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-13'),
('6973e2fa-2466-453d-99d6-bb4f693c49e5','6b455790-a8b4-4d0a-a014-f3587ba053d1',100,202,27,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-2-3'),
('697b5b59-a9bc-4466-bac3-da61eea4762b','ce35ed4e-10dd-496c-a133-4314817d51d0',50,120,75,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-3-2'),
('697d2488-3a82-42d8-9914-43e0c92c7cdb','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-57'),
('697d34b6-bd49-4c17-b003-223a8dab70b8','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-11'),
('697f589b-8699-4465-88de-d9a9df5c5e59','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.932','853766753-1-38'),
('697fc75a-655c-48d5-b35d-67add049fdce','da0fcca5-1a59-4418-a46f-294dbac77c7f',0,0,0,0,'2025-05-16 16:33:10.884','2025-05-27 07:54:25.413','47876427-3-1'),
('69826723-e3b0-4161-99a9-78a5fb7400c0','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-2'),
('6982a31c-091e-49f2-8584-3dda64a76a9b','138edf36-d166-4335-8560-d9873886e31c',80,203,3,0,NULL,NULL,'745189997-1-13'),
('69839576-df0a-4335-ab71-c241c202b0e6','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',65,94,50,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-9'),
('69854b18-35ef-4da2-b5d6-aecb30914d5b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-58'),
('69867c65-f44f-4051-bf3a-92780b8074a3','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-41'),
('69885351-ecc3-41a0-a101-d8d1cbafa23a','33404392-4c1c-4173-be7f-094c12291d2c',65,228,90,0,'2025-09-01 11:06:28.489','2025-09-12 19:45:58.707','644763473-1-3'),
('698c7005-43e1-43f7-8438-98dbd4468eca','0205414b-5878-424b-a8f7-1bf9fc0d9072',61,61,91,0,'2025-04-28 07:40:41.911','2025-05-06 11:26:18.860','786820149-1-2'),
('698debe9-2809-441b-9c01-0f53c01973a2','8590fd4d-4305-4d64-8517-1195110a383f',0,0,0,0,'2024-09-27 14:05:38.303','2024-10-08 07:16:21.657','478516951-1-2'),
('698f9803-db26-46ce-8ec7-edeb51c3d5f3','12ef12fb-6e31-49d7-b5b3-abc20f2bd4f6',82,27,202,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-1-2'),
('69905f84-035e-471d-b9cf-b4e85b0bf579','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-78'),
('69912686-477d-40de-a4ad-d7e250b94d98','03ad506f-f86b-4dbc-952f-52b01e2467fa',90,167,10,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-27'),
('69939165-c353-4a30-9289-0b0e11172d2e','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-19'),
('6995b58a-906f-4796-ae34-56ec663e79e6','9b637b9c-c2ce-4522-a986-3c8fdfd10d6f',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-5-3'),
('6997d266-bf21-43f8-994d-546e0d976c01','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.574','735340001-1-37'),
('69995f8a-7b8f-4070-a4d0-d1b51aefa5b6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-37'),
('699d7986-43e6-4f9a-9cbb-0b74f68b7dd1','b7fbd54c-bcc0-4613-9901-d06327048472',36,21,16,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-1'),
('699fe2cd-6d57-41c1-a583-4fe2bbcafd68','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-15'),
('69a125fd-b55f-4a97-b8e3-f9c58aa9c154','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-28'),
('69a1ea13-f8aa-458c-b052-ff23c6b03aea','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-2'),
('69a2ce18-68f3-484d-9d69-3fc2e9a553ab','52ff7790-3c03-4f61-b4e5-9502df5dc3d7',61,57,84,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-2-6'),
('69a700fe-42b5-4ae7-8f61-c6b8284be169','e6b643b2-ddca-48ec-b553-690e29e71879',93,63,7,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.301','501667618-1-7'),
('69aa034f-6941-4c9f-843a-2f4f897efe35','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-100'),
('69af6b26-3a8d-494d-b883-f54aaff382d1','2c1c23ab-0126-4156-8f58-8693f16e4bcb',0,0,0,0,NULL,NULL,'959626673-2-3'),
('69b00d5b-41ef-4625-88dc-5c86908b4bfc','f58e6b9f-d5af-48a2-952b-687f4ff843c8',95,170,10,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-5'),
('69b3a3d9-842d-4531-9b02-58d1aea03bc2','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-68'),
('69b45900-59ab-4a7e-a12c-5d341658c184','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',36,15,72,0,NULL,NULL,'478350685-3-5'),
('69b744b3-3ab1-4537-837f-37d7597b8e43','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-7'),
('69b7b52c-ce0a-45bc-b051-61b3496b8ef7','6588ed6d-edc3-4416-a491-7dd64da792c9',28,22,13,0,NULL,NULL,'371215833-2-3'),
('69b8aea9-27c7-48a3-a647-b8caa65d680d','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-23'),
('69bec937-e87d-40a6-a096-328e631e308d','f9861f37-efe2-4e3a-930c-f694c4e10c6f',53,25,220,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-7'),
('69bf16d2-39cd-4f72-845d-16da912e3578','fa386a83-3d1a-4d92-b1ac-072561c781fa',51,51,213,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-4-2'),
('69c04caa-6ad9-4bce-a26b-d24193653c3f','b5f81ffd-0a34-49a9-8ff7-1cac1067fdb2',95,70,207,0,'2025-06-11 13:14:26.407','2025-06-24 06:24:22.448','91034652-1-2'),
('69c10e0e-a2ba-46fa-82da-527dbd4c9224','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:28.976','248284003-1-128'),
('69c7440c-6d0d-4745-83bf-0ea8382d3c20','9248be40-4180-48bc-9c4e-50a1e7dee4f1',38,30,255,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-1'),
('69cb3d5e-18d0-4b42-afcf-3a98beca6757','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-7'),
('69cbfe73-6286-4d4c-9c76-a5f9aea94ee4','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-31'),
('69ce04c3-aa81-4a35-84e3-f282f8a3b297','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.540','2025-10-15 08:32:47.506','745970479-2-6'),
('69cf782e-6232-4ab4-ac3a-0131576696b6','cdfdd10a-5aff-42b9-befe-02fb27016fe2',60,105,103,0,'2024-10-23 14:11:56.802','2024-11-04 08:40:24.634','614345013-1-1'),
('69d64c62-a6e4-43f2-a3c0-d261cc8340ea','c51cf533-511d-4f61-a94c-3e48074db45d',69,81,127,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-6'),
('69d69d39-ac42-41d4-8ced-fda2a271740d','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-11'),
('69dc23a1-7675-4c0f-b3ce-8d34e5ae019f','a5626ae2-9a5a-4401-9095-a368c22814f1',52,47,65,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-12'),
('69e1bd98-01f3-4ab4-9a7a-cc8533a35cd7','03ad506f-f86b-4dbc-952f-52b01e2467fa',80,50,50,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-28'),
('69e28fc0-3337-47ac-beb7-4d8147594327','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-4'),
('69e2be53-e4b2-46e6-a922-f16351b61379','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-12'),
('69e658da-78fe-494b-b1a2-e1f99cd6b3e1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-97'),
('69ed18ac-77ce-42f2-8ed9-6ef79b51df94','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',75,70,75,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.258','449208438-1-4'),
('69ed96f9-c490-455f-830b-88f267177397','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-13'),
('69edb252-1037-44b1-a256-481e0ba86b6f','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-14'),
('69ee0dcc-87de-4e98-820e-e73f57c2f57e','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-8'),
('69ee80f8-0bb6-4bb5-98ba-cdd5e7200cc9','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.144','74541057-1-3'),
('69ef0fbe-2db0-4bbe-bc22-e833832cb1b3','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',38,40,22,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-2'),
('69f3be0d-ffb9-4804-8c1f-531560106f74','e4b1fe83-46ab-47f4-be8d-e8b68b8d576e',96,6,168,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.134','644847294-4-1'),
('69fbaf2d-7db6-453e-b9ca-0752eafa189f','b92e31e4-c5b5-4f66-97df-588443afb00e',93,152,17,0,'2025-08-14 08:21:37.460','2025-08-25 07:10:47.314','371529841-1-3'),
('69fc7933-f3c7-4907-afe9-e292f8927256','0c67a3bd-069f-46d5-a047-024932eb97bb',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.516','478764154-1-6'),
('6a00ac36-e5ce-4248-be3d-24ed0e53bcad','85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5',77,105,73,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-1-4'),
('6a00beab-df45-4bda-9c11-98b381d7e579','52094cbf-05ad-4ae9-9377-57061d8b0a6c',82,56,100,0,'2025-08-14 10:05:31.016','2025-08-27 19:39:28.223','505987989-4-2'),
('6a026766-fff3-41a2-81e3-212a9d4bf675','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-56'),
('6a039e23-7323-418b-822f-1bb831770346','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-194'),
('6a0a28cd-941d-49fd-b891-c906c4116475','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-108'),
('6a0d57f1-7d07-40bc-8e22-69f429727e25','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-13'),
('6a0dbad6-a5e4-4455-8315-a836759417f2','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-4'),
('6a0df7e1-9e57-49ed-9505-9edfaa602ce0','e54055a2-3c9c-4738-a808-7a4a31877ef1',115,46,50,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-17'),
('6a0f12a1-ea1c-4b57-b9bb-1044325ae677','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-16'),
('6a0f89f6-5f79-4ef8-890b-13a3e12a820c','f1c7839f-b9c9-451e-bf29-65e73f6adff3',0,0,0,0,'2025-01-26 10:54:33.196','2025-02-08 15:04:38.470','478472384-1-1'),
('6a13146f-c28d-4480-bd2e-006d6e5bddc0','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-10'),
('6a13d0d4-a486-4784-9356-5c879a3c71ec','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-39'),
('6a162703-ad7d-4bdc-b471-8d7c1b43505c','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-1'),
('6a171fb2-bcce-41ad-80b6-28932aeae90b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-38'),
('6a17468b-1d7c-4cfa-ad9d-6d11904b4f6a','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-3'),
('6a1a95ce-368c-4b9b-b8eb-02a6eed07f9d','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-26'),
('6a1ab179-3688-4e57-938f-0d6d1530d6fe','0009aeec-e682-465c-b701-363a3ef377a6',21,16,30,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-37'),
('6a1c60c6-f15f-4458-82d2-9a2fbdbc25f1','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-15'),
('6a1e0697-7a71-406c-b6ea-7e92eb10d58d','368574ad-455b-429e-98df-eb01c78f0d8e',40,40,50,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-3'),
('6a1e508c-0df0-479b-a24e-bf4eb35f7617','5a89fae8-525a-4de4-8188-2f4d7c892e74',53,90,17,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-18'),
('6a21aa10-60b2-49f3-9b00-27dfc1a801e5','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-13'),
('6a2272f4-351c-4b9d-9ba1-7a111cd9debb','ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e',75,70,100,0,NULL,NULL,'47816855-3-4'),
('6a260574-7a9e-4909-8258-cd100c7d6a28','6a1b914c-b6da-4eac-99b1-dcdcecabd124',58,81,104,0,'2025-04-28 07:40:24.987','2025-05-10 20:12:30.472','613431273-1-1'),
('6a26b2e5-ff9a-4bd8-acff-e9350aee41ba','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-29'),
('6a275b82-14dd-4813-9c85-b22537f23b94','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-8'),
('6a2a6d7f-4507-4084-abe3-6d31df28b985','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-14'),
('6a2b5490-24fd-44bd-9475-d97d649c2a45','cbcb5140-359c-450c-9f33-8e0b01b62f63',130,65,150,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-3-1'),
('6a2dec9b-9d39-4854-b1af-a2263be8317b','76dac387-c648-4ba3-a3ac-bf1674fb6f76',1,1,1,0,'2025-07-08 11:31:06.811','2025-07-25 18:05:05.030','644458216-1-1'),
('6a3080f0-7a36-4a48-a2dd-17683afe32a7','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-91'),
('6a33f873-65d9-4be2-8a45-06c3c85ca10d','b38439c3-7c7e-4298-a4cc-7ebfb427f502',160,200,29,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-5-1'),
('6a38626a-96f2-4951-b162-32a0ae2d3734','220fed8f-f96e-4af5-867b-ac05d11bda6f',63,8,218,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-25'),
('6a388aea-dfa9-4531-b026-9242feb25a0f','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.555','2025-08-27 05:39:11.569','221748184-1-1'),
('6a3ae6af-2796-43a4-8903-fc390ff9228f','5255e75f-2972-4ac2-8063-49e650a876c7',93,181,8,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-2-3'),
('6a3e0dd4-f090-4b88-93b0-1de966aa7f04','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',40,40,35,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-16'),
('6a40aa12-712a-4bcc-8248-6a58991711a8','44b402b8-0ac1-4080-aa6a-541923b0847f',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-4-1'),
('6a4139be-1da6-4883-b1fe-c9e19e7cd9c7','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-38'),
('6a44fdca-9428-4ad5-ac80-7b368b5d2ac3','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',108,27,57,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-7'),
('6a47d3fc-061c-4f8c-baca-256a1e42298d','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-3'),
('6a490bc3-262e-4069-a121-73892f35e3a5','ff722e98-0fc4-4e7a-aa12-76012685646b',210,100,70,0,'2025-07-29 12:58:29.427','2025-08-08 15:21:01.746','437609907-1-3'),
('6a4e6a5a-b706-40a1-9227-de82a09b963d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-122'),
('6a503f2d-4589-4558-99ac-0ba7b261aac6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-150'),
('6a51c55e-9c78-4447-b2da-a195cc0bcaf4','5a89fae8-525a-4de4-8188-2f4d7c892e74',53,19,84,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-4'),
('6a53e4fb-1b8b-43d3-96c5-7e3ddc08ce6c','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-5'),
('6a54bec6-d421-4f1e-b2d2-30f670096750','f9c33ca7-6673-4f4a-bb59-3ebf236a9842',57,83,110,0,NULL,NULL,'614364554-6-1'),
('6a58ead7-2867-4553-9172-f3e1227a9c47','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-4'),
('6a5909e3-a684-4806-88e4-c0a7494b50ca','32bf5597-f8fa-4d97-9486-383228c7229f',95,75,80,0,'2025-09-16 16:29:42.464','2025-09-30 06:16:14.755','428107185-2-4'),
('6a591643-32d9-47ca-b0fc-cee0a534ceb3','30cc08c3-1c49-4272-a534-8826f5e06885',75,95,73,0,'2025-04-28 07:40:38.026','2025-05-06 11:25:38.562','817893403-1-5'),
('6a5e40d9-0cb4-494e-a458-018fc2dc2bae','52094cbf-05ad-4ae9-9377-57061d8b0a6c',82,56,100,0,'2025-08-14 10:05:31.016','2025-08-27 19:39:28.223','505987989-4-3'),
('6a615e75-9042-4d45-a8e0-0fa351de14fe','bd7ec8be-4215-4dc6-b7a7-0bdad2bd0193',11,105,224,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-3-2'),
('6a645453-08a5-4009-a7a0-8a5087c2e482','0fbc8a59-8a38-472e-bcd7-358dfbdaa902',117,100,75,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-2-3'),
('6a68eaea-ae1e-46b6-92f6-19f5f9dac214','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-22'),
('6a6ab220-6b64-428a-ab17-97b1e9efec7d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-133'),
('6a6ed23e-8dba-4563-9351-5405ebc576ff','d93690ea-b22e-45dc-99a2-0e07f17da633',76,52,102,0,'2025-09-06 07:20:15.394','2025-09-16 06:34:40.141','437152964-3-2'),
('6a6fe221-d212-4b5d-92cd-520e22211ff9','a446daf4-5d63-45bf-8b9a-016e1db9d769',51,51,77,0,NULL,NULL,'221584314-4-1'),
('6a77187f-468a-4ad1-a4b0-5629bf9ff513','af3e2c68-d1df-455e-a5d7-0f309e2961a9',51,51,77,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-5'),
('6a784631-fc0c-428f-8f86-0bad9a174017','2a529661-568c-4dd3-8b4a-cd09bf85bae9',51,51,82,0,'2025-10-25 08:59:15.286',NULL,'505414907-1-4'),
('6a79ec08-0ee1-42da-a58c-859120f37743','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.697','449921347-1-2'),
('6a7cae58-9680-4d8b-8587-88a4481dcf39','b2cc240f-bde3-400a-bbec-a61085853dd5',42,38,52,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-6'),
('6a82069e-e341-4a53-976b-860661eca399','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,350,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-23'),
('6a845fce-73e2-49ee-8706-ba57ca936807','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-90'),
('6a851713-095f-45b6-9a4c-b555c7aab53d','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-6'),
('6a85a8d3-5f1c-453f-848f-0b28fd9117f9','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-17'),
('6a870161-aae2-44d2-8a12-0f1cc9f36ff4','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-4'),
('6a87cda6-fd29-40fa-b053-529979be0546','724114ee-3193-467b-9b8c-c116b42b4a2a',160,200,29,0,'2025-10-25 08:59:16.419',NULL,'478450171-3-1'),
('6a8ab5d5-555a-424d-ad54-5fdc5d677117','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-62'),
('6a8d3df3-a42b-4258-a9e7-4899df400325','a9ce9135-b72e-492d-a974-bd7c7ab64347',102,57,83,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-2-2'),
('6a8f4cb5-fdea-440d-931c-6042992c8728','ef603b58-9644-4d43-9c77-58a606dadcf8',82,111,56,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-4'),
('6a956cc4-4b34-4686-9de1-b03ba05d272e','84931d79-be4a-4fda-a683-426c1f8b5d7b',95,80,230,0,'2025-10-20 07:17:56.783',NULL,'598387436-2-1'),
('6a9a7a58-33c5-4469-acc9-58f6fd4f00ed','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-107'),
('6a9db689-fd45-4969-a191-bd065eac262f','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-21'),
('6aa62feb-6581-46b7-be95-c18de32bcd97','408c8a84-79b5-4f45-a05b-83e38b4edee4',57,60,85,0,'2025-04-21 06:13:24.924','2025-04-30 14:30:57.946','221287992-1-2'),
('6aa8323b-3db7-45a9-b1d4-2fd6c205614c','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-20'),
('6aa847d9-551d-4c09-bebb-02e694ce6256','6b455790-a8b4-4d0a-a014-f3587ba053d1',110,226,15,0,'2025-06-21 04:33:42.544','2025-07-02 06:17:15.323','69529713-2-5'),
('6aa9b3e1-89e3-41d6-8dbd-210588a7f4c5','56f86587-7355-4e49-9eb5-727edc1be570',205,30,90,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-6'),
('6aaa6542-f96c-4250-ba58-f13c2b81b027','546ad3d0-25c2-43dd-9443-e48b8e5b6530',80,85,75,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-67'),
('6aab0cee-4e75-48c4-96f7-58a95b2ea682','0009aeec-e682-465c-b701-363a3ef377a6',195,45,8,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-38'),
('6aace8b9-62c4-4e98-8d09-bf8a300e3641','aa4eed19-73c6-43a1-b6ec-33b163ede4a5',0,0,0,0,'2024-04-23 10:31:46.868','2024-04-29 19:18:30.729','982364429-1-1'),
('6aaf06dd-ba73-4a80-a90d-505cc099ea7f','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-10'),
('6aaf2968-9eda-4530-8eaf-aae146551eae','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-44'),
('6ab06207-57fa-43a9-b83a-cdf3904eeef9','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.046','371365041-1-3'),
('6ab0faba-15eb-48f1-80c5-6177cd52b95b','b2c78cf5-c58c-4553-bd14-49e83916894c',53,46,8,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-15'),
('6ab9cb14-d8cd-415c-a8d4-2a6d22fe666f','d83c40d1-4df5-4c97-bc83-28837db95b2b',54,65,18,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-30'),
('6abb7199-0ae6-487b-a106-dcaec42199ec','ba600219-bd53-41ab-9277-b80560376633',73,79,90,0,NULL,NULL,'598944852-5-1'),
('6ac07d5a-9562-40eb-932e-ea72b17b81e3','c1d25f90-d493-406d-a430-9b65b4f44c5e',56,9,86,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-7'),
('6ac209aa-cacc-4d30-91c1-87083b5688ef','e7f31a78-648d-4a5e-9111-1bf7db38dd79',85,53,46,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-19'),
('6ac2d409-d930-4496-9c58-f267ade00f45','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-31'),
('6ac515b4-344e-4e31-b4e1-6e81c5a83c85','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-222'),
('6ac9358f-f621-45e2-8612-d831a86821a3','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-6'),
('6aca5b00-4bea-458e-9a5d-ffac8edeb35d','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-84'),
('6acad548-8daa-47e5-8c49-68c5cc1ab32a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-134'),
('6acb7c3a-f15f-4b9d-b361-31b0014b2fea','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-208'),
('6accb151-5d28-4e4a-b403-612b027f3f37','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-22'),
('6acd6649-be75-4cb6-bbb3-763615f01bdf','3987bcda-6531-4738-8815-187fd84bf71c',65,46,16,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-9'),
('6ad29e14-6db2-43b6-a295-573e69703154','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-4'),
('6ad380a5-de2a-455c-9aac-bb21129d9094','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-76'),
('6ad5a9f3-866d-4b8d-891c-04c8d327a586','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-18'),
('6ad7f7c1-2d06-48af-885a-1beaaae4ca6f','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-9'),
('6ad941f6-a4b8-4842-a30f-b6324ee4c5f6','e51262e7-d967-4d4c-89ce-5959d794fa71',71,91,61,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-2-1'),
('6adb3f05-eab5-4636-b020-11ca90aa3b7b','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-17'),
('6add2535-a791-41ef-8962-03ab8f4a424a','cad27d48-d66c-419b-82d8-6b69b7fb1590',98,98,70,0,NULL,NULL,'515967328-1-2'),
('6adecd2e-43c1-4ace-803e-a9b34709f27b','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-1'),
('6adf1859-3209-4ac7-b860-6c7ea7a3dcb2','7657b93a-6861-440c-ac4e-1ea2919764f2',72,101,52,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-5'),
('6ae0f818-4fca-45ab-b415-8da2acd0962f','83af9296-590a-4b0b-81a5-7cfaa2cf9c5c',93,85,88,0,'2024-09-06 12:28:20.394','2024-09-12 10:54:28.998','455477301-1-1'),
('6ae6abc1-ac23-494d-bd17-18626f559600','8b4b20b2-a316-4448-9879-8c88eb75301a',93,63,68,0,'2025-03-24 16:01:50.514','2025-04-05 10:57:53.233','644110179-1-2'),
('6ae85611-e1e6-4d2c-8436-49bbc1862016','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-71'),
('6ae8ac5f-f8a2-4c12-9fea-aaa5dd333b0a','359f4965-11f0-4a4d-be60-e985145d2573',31,196,180,0,'2024-12-28 21:42:18.051','2025-01-07 17:28:42.440','614200423-2-1'),
('6aec0976-f898-4b76-81de-ff4fd9088e9e','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-40'),
('6aeea470-f00e-4042-b070-5b38229ae3b5','471a9a7c-b962-42f0-b21c-205afc04b527',145,109,80,0,'2025-07-12 09:19:07.368','2025-07-17 14:41:44.640','41286775-1-2'),
('6aeea6ef-21df-4c15-8c2c-3d63683af744','cacb1c7a-8595-43bb-b1ca-40b46c29dc4d',94,160,70,0,'2025-06-11 13:14:43.208','2025-06-17 16:02:34.544','976765698-1-1'),
('6af44c45-6fdc-4ae2-aa75-f96f0b7716c6','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-20'),
('6af5f307-9c24-4054-a82b-901be6ce437b','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-72'),
('6af64b0f-f80d-42ce-9ab5-bc94ebba6e93','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-6'),
('6afb5f2b-b4b4-4fac-9339-be9fdf7b7018','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-9'),
('6afeabd5-b2ab-466c-8d63-67b29708a5cb','64d193ea-3b9c-4bcf-8123-2e3e1e9f99aa',0,0,0,0,'2024-05-10 18:49:30.182','2024-05-29 11:17:10.734','315903894-1-2'),
('6b03ddae-5e03-43d3-9a86-4f2adcc95812','88bec1c0-e7a5-4328-b46f-29d37f4728f2',240,95,67,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.068','982973548-3-1'),
('6b09f5b7-068e-4c8d-ad16-b7826319df9f','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-11'),
('6b0c3acb-3fb0-44c0-8ea4-4b37f8b8e728','02ad9997-7b6a-48d1-8a8f-51b8d6be6016',97,108,70,0,'2025-10-20 07:17:57.977',NULL,'59878032-1-3'),
('6b0cbd7d-d07f-4a48-a132-b3d428a32e07','7311f1e0-e2be-43dc-9e40-f94a010e8939',70,40,47,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-28'),
('6b1134ab-b8dc-402a-9411-8021baf5d62a','de4ad7a3-83c4-4f92-b28e-159332b39346',250,103,5,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-2-4'),
('6b118279-35df-4750-9814-f5b19b281c77','b85943c0-7fec-4710-b762-43156a31c6fa',85,80,80,0,'2025-02-18 16:37:11.893','2025-02-27 06:36:28.734','501452801-1-2'),
('6b1638ad-5eb5-4704-a776-9c6caa5a2339','e0478821-943b-4eac-98b7-c417fdf27e29',115,118,7,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-4-2'),
('6b1c29c2-0dbf-4ca0-a3e2-b448177d1295','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-59'),
('6b1cbccf-a534-4e76-a974-a41aa0cb8cfc','5e048b22-34db-4d5f-9247-201f664d4e80',80,90,98,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-3-4'),
('6b1d28b6-f66d-4ecd-93c2-d412c3998ea1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:39.884','248135683-1-144'),
('6b1e5351-2afd-4eaa-a41f-488a3cb5775c','b5d05803-9ab4-468c-ba3c-4a0e289f571c',75,100,50,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-4-1'),
('6b207764-0259-44a9-a46d-8b6811af797f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-184'),
('6b21241c-dbbc-4398-8a2d-c96193c3511e','9c776356-2e24-4ef2-8e40-54bae883ae2c',100,56,16,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-2-1'),
('6b230dd8-c04d-4c50-905f-dbf18e475d31','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-59'),
('6b238075-4e01-407f-b9d1-af12bd74c213','c02a7a5d-c8b8-4c15-8213-f0898fe13e2c',220,95,70,0,NULL,NULL,'745151910-1-2'),
('6b239958-3762-4033-9485-3f0fb6c534eb','b6d04ed2-f29f-400a-ba86-37b36b0830b2',9,61,210,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-9'),
('6b25458d-55c6-4a79-9cd8-26fc21398db1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-232'),
('6b25caa1-4306-48e5-814d-7e9a9d993f05','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-61'),
('6b28ee52-7d46-4652-bae0-0bcb71945473','c900d790-eeff-48b9-9f2b-48972c98ac32',40,17,153,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-8'),
('6b2919f1-c87b-41cd-be3b-1f70a3e1e3ea','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-15'),
('6b2ad836-19ee-40cd-997a-b8ce847e03ca','c564475a-2d18-4b15-a65d-9a29abfe2528',0,0,0,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-2-3'),
('6b32462a-f08b-4f18-94c2-9d3774790ea6','6302f68c-26c4-4a31-853e-80b9d1ba59ee',95,85,5,0,'2024-09-10 10:47:08.794','2024-09-16 21:14:07.194','655571326-1-20'),
('6b33c257-ab4b-4a66-bd90-b9a93ddee7d2','e86f2f3d-8f0b-4894-8c39-9063af830231',57,223,7,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-9'),
('6b36d4f2-3e34-43ee-8320-925b0bf944dd','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-13'),
('6b3c0288-3844-48a4-b46b-e7348d1c72b8','0a8285d0-d3db-4298-8e41-62c5429f150a',213,43,5,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-15'),
('6b3c43ec-d10b-4248-adaf-3785e70efe18','577ac94f-b889-4af9-8d01-96034f38a36e',43,56,45,0,NULL,NULL,'478739679-2-5'),
('6b3c5623-9379-4cc6-9d3f-eaa090d827b4','1b57ad51-327c-408f-87da-e1a22f3c872d',51,51,7,0,'2025-01-20 11:21:28.572','2025-01-28 20:45:10.314','221416475-1-2'),
('6b3e3eb7-a361-46fa-a820-c6df6b1911e9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-112'),
('6b3ec6b0-bb94-4915-bab2-78d78633fd22','fc33e6e7-779b-41c9-8d72-c26a1d995b78',110,205,25,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-3'),
('6b40cf6e-b510-40bd-a537-15d62f26e93b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-9'),
('6b412d10-4c7b-4d64-90b2-387e55992a03','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-7'),
('6b41321c-7e05-46fd-9b0b-5d5ed5c6cd59','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-11'),
('6b41c43e-b6d0-4dbb-95a6-39e12c2ee427','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-3'),
('6b41efab-111f-4b2c-bf7b-3706a4c0e9da','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-7'),
('6b484218-f4d1-4866-b60e-05dd33739944','886e0e1a-c599-47ba-bacc-c329212cc55b',10,57,84,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-12'),
('6b49a011-1c05-486a-9ee6-6bb21fc54fd9','a8c5c790-fa90-42d3-9ce1-ba79c74bdc13',52,59,97,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-3-1'),
('6b4a02d4-c605-417b-9d8f-1ec3bc831ac0','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',121,95,65,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.333','231211138-1-6'),
('6b4a624c-1f0b-4a76-8a0f-4bf3de5b0a2a','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',74,53,101,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-1'),
('6b4e2264-116e-47ac-b1c2-13e3158f729d','0a8285d0-d3db-4298-8e41-62c5429f150a',40,40,27,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-16'),
('6b4f994c-45b9-449e-91af-40a68b23735c','42b2ca3a-9313-4b97-901b-3859e34b21e1',225,95,72,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-8'),
('6b50153b-6399-464c-8f9d-14215ea05ad0','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-6'),
('6b503c75-6f11-44dd-9e2d-0788eb0e919f','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-1'),
('6b52bcf0-8086-4fb4-a15c-7bc25a367de4','fb58f438-30e4-4e01-af6e-6378e27a11fe',135,60,19,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-9'),
('6b54cfab-4f8b-4914-ab0c-a33b5f24064f','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-40'),
('6b59b7be-54ac-4f7d-84cb-c39e4864ddc8','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-22'),
('6b5af106-bf82-46db-9339-17654a6c5469','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-20'),
('6b5f0fae-2cf3-4f73-8376-f9e343f1af11','0bd42145-fdd8-4793-a5cd-a2e404d37142',190,58,12,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-11'),
('6b612532-ee62-4f6f-a45a-0419bc71f2a0','15838be9-2a38-4e80-b613-df9538785c9f',94,75,7,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-7'),
('6b6223e2-d3a7-4cc8-9f66-94fb009a266b','3987bcda-6531-4738-8815-187fd84bf71c',135,33,20,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-10'),
('6b63b0bb-c5d2-4113-a3f8-c62dedf1f0c3','0683aa5c-fafa-459b-928d-eae1729e635e',96,98,54,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-6'),
('6b67ab3c-8f44-46c1-82a3-1b2e88656049','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.818','223853931-1-19'),
('6b6adab3-aa6e-4496-b329-d12346b31b0a','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-20'),
('6b6d73e0-dcb1-46cb-9944-2a4eab467cf3','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',80,5,207,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-14'),
('6b712321-9efb-435a-a96d-55d8298c2e40','ba4d79b7-2f50-472d-b8a3-175425785005',201,55,80,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-6'),
('6b7233e3-007e-450e-be80-cf799a5b5afa','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',5,86,201,0,NULL,NULL,'531240111-1-20'),
('6b75046b-f4e0-4c33-8260-53fcd3d9cbd9','c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9',90,94,65,0,'2025-05-28 19:08:53.194','2025-06-06 17:37:15.490','817872283-1-5'),
('6b770e6c-c431-4acb-9f08-faf107dae0bf','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.251','2024-05-21 18:45:12.078','478681830-1-4'),
('6b796bf4-9a8f-49a8-9df3-cc1f15bb4d0d','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-1'),
('6b7a5527-bb6a-4529-a206-4b829f6bbce5','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-28'),
('6b7cd109-166c-44e6-bf7d-cdcde33b85e4','4acace4e-dc95-40a4-a3c0-fcde9af4aead',96,196,6,0,'2025-02-13 20:43:29.765','2025-02-25 17:03:46.052','221439268-1-1'),
('6b7f132b-990f-4690-b5cf-f532d17c0de1','c27fa652-60a3-420f-84ea-e63942b65704',105,25,25,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-3-3'),
('6b7f4282-2b69-4d32-ba16-1d81c883e0ba','5aebc1d3-a23d-4e5a-a294-e71b1c0ce1e9',140,75,85,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-3-1'),
('6b7fa8d9-1c80-487d-9f83-c9ff48f28761','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',67,17,45,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-10'),
('6b81007a-6be5-40dc-b632-94a4768421bb','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-27'),
('6b810986-5f4b-4084-b4ee-4a875a68d633','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',265,63,13,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-85'),
('6b839fdb-01be-4290-87d7-33636477c4c1','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.387','412315808-1-70'),
('6b849c24-05e3-4131-be5e-23c59d6816c9','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-90'),
('6b876c3c-b03d-4ef3-9987-58f030648be5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-59'),
('6b8be7bd-e27b-45e5-b94b-740f1bf1801f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-28'),
('6b8dd773-8a33-423a-b145-f38e6bcdc906','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:31.254','248284003-1-48'),
('6b9068d4-a7de-4424-ad83-f9c0792f965b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-41'),
('6b932dfb-32e8-4229-80c0-62e5ee4b07c8','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-8'),
('6b94bb2c-b255-4f30-9b06-259e9cd609af','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-4'),
('6b94efb9-2057-4a37-8e9a-61676c119969','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-72'),
('6b987272-390d-496d-8b07-54413c941770','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-5-7'),
('6b9b95bb-1a42-4fa5-af09-23e4778d8c47','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',75,85,65,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-3'),
('6ba239f1-2023-4845-bdd3-692d5bd2e938','847447cb-cb81-4f9f-9f95-ff50b1304b30',100,70,108,0,'2025-09-11 06:33:55.955','2025-09-17 16:03:29.946','437397407-1-4'),
('6ba33f7b-23a2-43ae-bf5e-c1d395646d6d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-12'),
('6ba510b3-839f-477a-9e66-d4abe17e08de','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-24'),
('6ba54d43-2598-461d-8184-01dbc9103fdb','0dc117f7-5e70-4621-87f8-335baf3c4f19',95,183,2,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-5'),
('6ba73e30-a564-40ba-870a-709d44840ff4','0dc117f7-5e70-4621-87f8-335baf3c4f19',58,163,10,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-7'),
('6ba7ce39-b7d0-449f-a1c0-16f7c4527efc','a38571d1-22df-46b1-bb70-46d8dc6a5d8d',104,80,104,0,'2025-09-02 11:49:01.550','2025-09-12 19:46:35.543','278583277-1-2'),
('6ba8fa17-633e-49f9-832a-6f9458494c65','faebcca0-46de-45fa-9329-665a09e1afc7',95,203,7,0,'2025-07-19 07:52:15.651','2025-07-28 12:02:34.929','371944289-1-1'),
('6ba9cd80-84d3-481a-8162-67a003dfa6e6','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.398','2025-09-17 17:51:31.344','478402358-1-26'),
('6bac6003-ee5b-488e-b513-ddf5d7db3216','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-66'),
('6bacac78-bd00-47fe-b18e-06117bd30b79','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.494','046487702-1-33'),
('6bacda2f-f2e4-4bac-83e3-0e526578d39e','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',123,76,7,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-28'),
('6bb0bf46-a12e-4893-902d-a8654ac4e5af','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-7'),
('6bb0ff72-c738-4d16-b92c-5f53d805e439','1dff9484-7b74-4dd3-bde2-e304e871a006',215,92,65,0,'2024-08-20 19:22:24.329','2024-09-04 07:29:55.477','449780250-1-3'),
('6bb584bb-f755-4c6f-8fef-2f74be721919','f71120f0-3dab-49a4-9919-47f817fb8a68',98,115,70,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-7'),
('6bb66667-cfcf-4dce-a0dd-b276952bfc87','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',95,61,75,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-3'),
('6bb8eed0-0eb1-4fb5-a3f4-6a1745f72816','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:30.798','248284003-1-141'),
('6bb99f87-f4ea-4928-b5d4-5687dc216306','e89e7d75-4967-4c63-9f73-981469e531af',137,54,5,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-21'),
('6bbae475-b261-42d5-8e97-99e39b7d0a84','138edf36-d166-4335-8560-d9873886e31c',51,10,217,0,NULL,NULL,'745189997-1-14'),
('6bbb2235-5875-49c3-8cab-3d7b3b5252be','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-1'),
('6bbb7045-671a-4231-afcd-9181e932f4a6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-34'),
('6bc2b57f-b1eb-4488-86e2-a3fae743f4df','f2e4d8de-fef4-4eaf-9df5-a9679e2d6715',0,0,0,0,'2025-02-27 16:45:35.181','2025-03-11 15:31:48.143','41279166-1-1'),
('6bc5ed7f-ebe2-40c0-b749-407fb57a422b','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-61'),
('6bc79ec0-7d9f-4dd8-9a2d-bac105007d75','9a012a01-6709-4e0c-9806-61018f9e36fc',55,74,100,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-4-2'),
('6bca2e7e-64fe-459c-b8ec-cdf9c9742e30','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-16'),
('6bca9801-21c9-472e-af45-8c600f20ae5c','53464b3b-69a0-45cb-8346-b26d29c4ae86',53,53,76,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-2-3'),
('6bcb9435-fbd2-4a95-b8b3-d80ffd096c42','5fa653d7-dc76-4d81-960a-d297b9d1db18',56,76,101,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.981','221191139-3-3'),
('6bcc689c-e611-4059-93d5-724f65f6f82e','54ecc723-511d-4e08-bb59-481cabdb46bd',220,80,77,0,'2024-11-15 17:06:06.781','2024-12-01 12:28:33.543','982333020-1-1'),
('6bd36883-5200-4eef-b881-6775557ee706','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:30.270','248284003-1-106'),
('6bd3abff-f349-47f8-b7da-d9b3d8a36903','f51a80ea-b69b-4ce2-b38f-f9920bc3b5b6',55,55,68,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-7-1'),
('6bd7e14f-108a-469c-a750-df60eddab071','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-2'),
('6bd8c6cd-c464-46ae-a030-7e181eaba1d6','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',0,0,0,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-10'),
('6bdbb6c4-7785-4a60-a2f1-e4c46eed64a8','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.278','223379282-1-64'),
('6bdc4a92-c37f-4a0f-b7f4-3bfe2ef9734f','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-4'),
('6be3743a-92b8-4e69-bd42-7e8b5012ce80','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-11'),
('6be55652-7568-448a-b6f8-9196c41497f8','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-13'),
('6be5d900-2513-433a-b10f-b28716a9b5bb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:40.446','248135683-1-103'),
('6be64c5a-3a9c-46b6-be9f-4b9123efb407','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-3-3'),
('6be6af14-8ea3-4b54-a00f-2b694fa7bd1a','40e81366-8e6b-4b7f-b487-b6d23057f5a5',0,0,0,0,'2024-12-07 09:44:34.551','2024-12-16 21:29:58.927','735520226-1-2'),
('6be982ed-b5e0-474d-b534-48965f8829f8','d394151c-87e2-4f5a-83e5-e75ef45c4ec0',240,100,85,0,'2025-07-17 09:33:48.166','2025-07-22 08:19:40.603','910697257-2-2'),
('6bed5cee-6342-4c75-8cd6-2f99709ec9e8','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.996','223963997-1-15'),
('6bedb504-05a3-4cee-ab3c-f36cf418de09','d9c96ce5-7311-4159-8c51-6a1a744d0c49',190,27,44,0,'2024-11-25 08:28:48.881','2024-12-05 16:17:13.323','501760253-1-5'),
('6bee3353-6994-4b76-acf0-c678248cc3ee','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-5'),
('6bef270a-f556-41cc-a1b2-8a8b2e107924','bd3596c4-ba42-44fe-9a53-14cf56f1f7ce',54,229,6,0,NULL,NULL,'598697614-5-1'),
('6bf204d3-11ec-442c-9077-9e8d988f6b97','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-1'),
('6bf33d6a-109b-4f4c-ac7e-93e37d76b8c4','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-16'),
('6bf437dd-ecab-46ad-97bf-e575393bdf76','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-2'),
('6bf8c28a-ce76-40bc-8d36-d8463ee7cd31','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-6'),
('6bf9f9e2-c4b5-417f-99e4-f8c7f8475754','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-19'),
('6bfcb2d6-2821-4631-a9a2-27d494836012','e54055a2-3c9c-4738-a808-7a4a31877ef1',120,120,70,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-18'),
('6bfe028d-f4d3-41fc-bb11-0fb09f316267','e54055a2-3c9c-4738-a808-7a4a31877ef1',73,48,14,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-19'),
('6bfef8c1-3ad4-47b9-8754-45828d313ac1','dadc5d04-be0b-4da0-980b-6007bbb7021f',105,70,70,0,'2024-12-01 06:48:14.667','2024-12-10 12:35:38.736','517764616-1-5'),
('6c0391a7-5c95-4148-b6e1-00c3ffe70bca','c442462d-01c0-4b46-b4d7-c51ee072bc62',83,57,101,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-3-4'),
('6c06fce5-c36e-46b1-9cbf-22eafe866117','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-1'),
('6c0a8e5f-193a-45a0-b5e4-32e89275bdfd','841f7f01-a7cc-440b-859e-dea7f085dd74',76,75,65,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-2'),
('6c0c36e6-48ac-413b-beec-0dced7381ea6','5a768734-74b4-44fa-8896-4be9106b7b5b',75,100,100,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-3-2'),
('6c0e0906-af6f-48b9-9399-6cc2451e5b0e','9f37ed98-135e-45e0-b26e-3af7dded2b24',85,106,56,0,NULL,NULL,'613592756-2-2'),
('6c0f37c7-a92c-494d-a753-2a238151b41a','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-16'),
('6c10eaed-93e4-4dba-96d1-fdd0bff8b818','73f0ed30-ea86-4dfb-b0e9-bfb3d380810c',57,77,101,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-2-1'),
('6c1193b3-5b3f-4345-830e-ab735fac48a0','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-12'),
('6c12d95d-679a-4262-ac5b-fbaa686bb82c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-91'),
('6c1403da-6f87-4535-97f7-e8237d5b12f1','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-4'),
('6c1645e5-a1dd-4d0a-883e-36cd6526a03d','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-73'),
('6c169add-cb07-4ca3-b179-65c83a6fb088','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-4'),
('6c180d3f-e9dc-450f-b9c4-f2513cbd92dc','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-40'),
('6c1944f9-b434-4a05-b25b-0c3ac048aee8','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.023','248653667-1-20'),
('6c1ac707-a2a5-48b6-bad4-e371ba1d9841','0d3a5595-1b06-4732-a954-1590654c804a',112,102,10,0,'2025-05-24 17:55:25.951','2025-06-04 19:39:25.936','478240909-1-3'),
('6c1b17be-6f9f-4f85-8447-f265687a14c9','4f763765-223a-4b0a-a837-f4f5a6fd119e',230,67,92,0,'2024-09-27 14:05:27.642','2024-10-08 17:09:39.128','449769276-1-1'),
('6c20573e-6f61-4493-84d1-b46f5211b787','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-9'),
('6c210d15-3a23-422e-bdd2-489c7bca8bcb','0d0b3b65-9271-42fb-9f7b-7024362d9f03',115,72,10,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-2-1'),
('6c23a99e-f2b2-4e21-8d4d-2dc519318849','22dec2c6-2a18-400c-b218-7284acdd139e',82,57,109,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-2-2'),
('6c24afd1-0fd8-4c4a-b0fb-4606d3309d32','6574c9d2-e75a-488d-85d7-f96203442cc9',0,0,0,0,'2025-01-26 10:54:43.764','2025-02-07 11:19:13.804','478120731-1-3'),
('6c252144-2e4c-4331-b4f3-57e998b4158f','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-32'),
('6c269843-9621-47cc-8c09-071bbc0f93c9','14154f1c-2788-4f7f-b6f1-b56e0a99f973',38,38,71,0,NULL,NULL,'745505506-1-5'),
('6c28a316-8453-4c61-b724-d0cfcbe7519c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-139'),
('6c2970b9-c637-4f74-9231-31fe13036325','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.549','412107970-1-57'),
('6c2b79ec-d758-4357-98d7-6b5902fbf497','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-14'),
('6c2baa71-382c-4a51-8256-3ad780f27cbc','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-39'),
('6c2e7118-5bf4-46ad-b68b-ca301ad1f5aa','0deeebaf-efdc-4c4d-8020-24722ff30282',52,51,73,0,'2025-08-22 20:28:38.630','2025-09-03 06:11:58.365','437870707-1-2'),
('6c30f3fe-ff7e-4641-a909-099c0cd615c3','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-16'),
('6c319bfa-122a-4eae-9566-720ce890918f','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-13'),
('6c347996-7a2d-4fc9-9446-3fc040f60dda','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-2'),
('6c36767d-fe5a-4db3-959c-e83299150b37','9a29c89b-7a06-4e63-88ef-c40eed097432',65,100,122,0,'2025-10-25 08:58:54.706',NULL,'371737204-1-4'),
('6c38dbd3-c821-4353-839a-f71ae8d2ecc2','4b29ac47-ac7a-4668-999c-3fd1de904d7a',106,206,7,0,NULL,NULL,'613745862-2-3'),
('6c3a705b-d4b6-48b1-831e-7dfd84f66db8','75250fde-3038-4f4e-a5ff-558818ce04ca',96,151,6,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-3-1'),
('6c3c190f-d3b8-4af2-b2ab-d59794d5a061','1ecc5768-b507-40f7-a0d2-f557b0a01e35',60,95,204,0,'2025-04-25 16:57:10.447','2025-05-02 06:58:05.857','478537954-1-5'),
('6c3c81e9-5378-4ab6-9146-1e046bb20143','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-4'),
('6c3d9b65-7e94-42e4-afb0-d52a2a2924dc','85db759a-5e10-49be-92ff-a951a588c1a1',75,52,52,0,'2024-12-23 12:00:07.905','2025-01-09 16:52:13.614','126908301-1-6'),
('6c3ef0f4-215e-400b-9cf4-f1e66f1ad38f','aa4d2b23-8dc1-458b-bad3-3f299804fc95',85,100,245,0,'2025-04-21 06:13:15.634','2025-05-02 17:10:58.407','910884465-1-2'),
('6c4308d3-4792-4785-aaf1-243e3e175ab1','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-71'),
('6c439510-814b-48e1-94ee-6a4a0fd373d3','c563f86e-fe4d-44fb-b91a-72261e82a6fd',51,51,77,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-5-1'),
('6c468172-fd49-4363-9c87-1d15fb1ab595','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-2'),
('6c47524f-a917-43a2-ae77-969142665840','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-6'),
('6c4c7d54-ee7c-4136-add7-cd3a2dbaf2d0','9b948fc9-34d4-413b-873a-889d552a3e54',87,87,8,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-9'),
('6c4f7e2e-b3d1-4ccd-8358-ef4e61782c43','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',40,40,50,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-4'),
('6c56cf42-73a2-48bf-b917-01cdf6bd1878','9bdb28e0-34f9-4183-9232-5dbb14529176',0,0,0,0,'2025-02-27 16:45:16.849','2025-03-14 11:07:30.043','644823609-1-4'),
('6c5a843f-08d5-4e85-b357-ed0a67e9a508','9c776356-2e24-4ef2-8e40-54bae883ae2c',197,95,60,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-2-2'),
('6c5e34e1-610f-483c-a780-6fd04703dddb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-21'),
('6c5ec580-e4ff-42eb-9553-25a741953c88','3c799be3-cf4c-4ca1-9e86-e1a3e476c0da',65,102,88,0,'2025-06-27 17:12:15.671','2025-07-09 11:39:48.701','418120869-1-3'),
('6c637965-fc17-4a6d-92c8-ed6e66664f62','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-28'),
('6c643e5b-e7db-4e50-8338-d5e897d43f82','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-42'),
('6c682180-ecce-45fb-b409-e7f089bbe70e','702c1aff-1a98-44f0-9dce-efad71572432',50,7,218,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-7'),
('6c69a0c9-9377-4eb1-9ffb-4455e94ba378','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-46'),
('6c6a4722-679c-434e-800d-949d416f4ea1','0e92c59b-93d0-4308-91ce-3965bb186203',100,56,81,0,NULL,NULL,'428180919-1-4'),
('6c6a56a5-c8e1-4ce5-addb-ca9dbdc2e40e','96449af3-c272-4a90-b77d-0790552dd455',82,130,8,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-4'),
('6c6d916f-bf2c-451d-b394-1d84cfda13d7','b1412704-b0a3-458a-a5d4-ae0a217b9f18',90,200,32,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-5'),
('6c6e562f-72ab-4650-9358-2857a9f1d391','220fed8f-f96e-4af5-867b-ac05d11bda6f',63,6,218,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-30'),
('6c785b60-036b-4ee0-a967-9c9f9a31c913','a135c145-15f3-450a-819b-e82b427bc978',210,57,6,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.006','904863225-1-7'),
('6c7bb42f-fa20-4a00-8e14-2d0a731998a5','f095d43a-8f6c-44f7-aaab-aade7799f4fb',93,59,139,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-1'),
('6c7cef63-d174-4b2f-badf-7ba4456f512e','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.939','2025-07-26 21:25:24.118','598250504-1-5'),
('6c7d3f58-939b-4c54-b085-800a39584b54','d0ade823-74de-4507-8f72-ff3352af4bbf',70,49,33,0,NULL,NULL,'428407424-1-7'),
('6c7d5ea8-76be-4b72-9aa7-feb522b4b736','0009aeec-e682-465c-b701-363a3ef377a6',125,8,53,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-39'),
('6c7ea9c5-dd14-4620-aa5b-9ef8692d37d4','79a59d43-7fea-4b06-9f5e-bdc9d6a89664',0,0,0,0,NULL,NULL,'478825542-1-3'),
('6c7f366e-defd-47e2-8618-4ce339485faa','82c44317-84ac-4df9-8145-97abec99a444',0,0,0,0,'2024-04-08 08:57:37.142','2024-04-30 22:31:35.539','478702716-1-5'),
('6c811c5d-e6e0-493a-9b68-fec3c07af25a','b93c6331-52d1-4457-9c77-5af31d37b339',210,90,60,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-2-3'),
('6c8321fe-c6ce-403a-ba1a-fc59c48bdc56','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-127'),
('6c833d1c-bed1-4d7c-86fc-517c8c2acddf','b23cf296-f843-4492-9697-0fd43d657771',207,52,4,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-9'),
('6c844e22-ab84-4a3f-8265-660452fa2e50','91a053e6-4d43-473e-a6c4-c685892363c6',100,120,60,0,'2025-10-02 06:45:49.211','2025-10-16 15:47:01.900','478273603-1-3'),
('6c89951e-659c-45b7-855a-91eeb55c10bc','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-14'),
('6c8a40f8-c656-422e-b9b8-b8e6c70996c1','0cc39437-8ee1-47ea-87c2-b9fe770c2259',57,90,7,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-14'),
('6c8ad7be-1bdb-4cd1-84d5-0583e76d5ed1','135906fa-fceb-45b1-a401-83de82461319',52,73,97,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-5'),
('6c8adef9-0436-4ce1-acbf-86c228f52aa3','8db511a4-512c-43a9-a77b-c2c5b692a613',0,0,0,0,'2024-11-12 16:15:52.038','2024-11-22 21:23:24.063','745661183-1-3'),
('6c8ae96b-811d-4ed7-909a-16535b79ef71','0ca7b5c8-7608-49bc-9057-d56d835fbea5',63,90,7,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-6'),
('6c8d5d71-f5be-48d4-b2ab-72dc3da56e4d','8671fe0e-66f9-4cd3-92c1-b4cc827cf293',100,100,70,0,'2025-10-22 13:06:42.959',NULL,'644589662-2-4'),
('6c8f8446-374e-41a2-988f-7c72da9d722b','9d7979f3-a35a-4a64-97d1-4ba973786029',40,6,215,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-6'),
('6c97101f-06c5-4908-8684-ea38af75574a','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',120,80,102,0,'2025-02-13 20:43:42.872','2025-02-25 17:03:19.994','449693939-1-5'),
('6c9a7b07-c670-4e69-b2f2-1e04f9813c64','eb7d84af-1ebb-4c55-84cb-08cc927b773c',57,35,78,0,'2025-07-29 12:58:47.399','2025-08-07 14:06:05.144','613499620-1-2'),
('6c9d42da-b3ae-40c1-bb21-35db4b63a690','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-33'),
('6ca08916-92fa-4f6e-a2be-3af5de6bb393','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-206'),
('6ca658f3-b23b-46da-9ad6-3403eb6e9bd8','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-52'),
('6ca6d61e-c258-477c-8a8a-54d27d7b1103','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-35'),
('6ca953a2-11ac-406c-b764-925335db6bc5','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-47'),
('6cabd0d3-b342-4156-ac6c-4554760cd5fc','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-29'),
('6cad226f-4d58-47d5-a414-87855cc99786','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-61'),
('6cb12e37-0014-48cb-8e52-8a5736da24fd','e163d910-3bea-4675-a310-ead7083f02b8',230,98,72,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-6'),
('6cb27fdb-5492-49ee-b048-2f76997553b9','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-28'),
('6cb65680-5835-4e01-ad15-dd71bd1c5816','7e3957db-7e8c-442f-a041-3490cef36986',0,0,0,0,NULL,NULL,'750919384-1-2'),
('6cb8492d-d825-434c-967c-963a04c218fc','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-4'),
('6cba6e57-0675-4391-8901-94fb9770c0d6','49feb8d9-0b19-4536-871b-47f188c33cc9',90,100,235,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-2-1'),
('6cbdd452-40f4-46fe-a1ff-ffb3f0753661','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-169'),
('6cbf669e-a90d-4f7d-96bd-a5570c404843','437681da-5841-43b7-be0e-a63388bbbd07',128,95,60,0,'2025-10-22 13:06:52.544',NULL,'786146097-3-2'),
('6cc68a1f-ea09-4dc6-9dcc-6557e055d565','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-1'),
('6cc869e1-1e5e-48f8-98fa-f1f5e37d17a2','85db759a-5e10-49be-92ff-a951a588c1a1',75,52,52,0,'2024-12-23 12:00:07.905','2025-01-09 16:52:13.614','126908301-1-7'),
('6cc8e390-13f1-4911-b62d-b5e63cf1c013','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-10'),
('6cc9a0b3-4287-47af-b8f3-722bff303bf7','2be75c1c-2258-4665-a33a-18e6a18fc678',0,0,0,0,'2025-03-08 13:46:01.333','2025-03-20 18:08:08.052','478839575-1-2'),
('6ccb7b31-07df-4bab-9e53-b4583076e18b','8ae18186-b64f-4b09-b81f-8095d536895f',80,40,40,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-3'),
('6ccc26a0-d790-4a2f-9e9e-02fa709d825d','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-20'),
('6ccc4429-eb6d-4c6c-a070-06cd3c52d2d9','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-9'),
('6ccfd68e-388f-4b64-9530-1f68d8cf2e8b','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-21'),
('6cd01f32-1b65-4f28-9720-bfabd2a87435','71481b47-e566-49d0-8ede-33e07961f2bc',52,96,58,0,'2025-08-21 07:15:30.112','2025-09-04 21:03:50.131','437880840-1-3'),
('6cd1e613-e68c-403a-9c17-20c3782e92fe','087c4197-e286-433e-86d3-969922843b35',0,0,0,0,'2024-11-12 16:15:56.181','2024-11-22 21:23:11.520','126421974-1-1'),
('6cd1eb90-a6bb-46c3-a521-3220600791b9','a69f640a-80e0-40e7-836c-75a316391b0e',0,0,0,0,'2024-05-08 18:43:27.068','2024-05-21 18:45:23.921','734482220-1-2'),
('6cd5a804-2547-4809-9b30-e43ce18e7469','808a4f1b-793f-4a15-808d-00c26a26c166',60,21,42,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-16'),
('6cd91328-254f-4aa1-a050-2c0c655dffde','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.144','2025-09-04 21:03:37.661','531245816-1-4'),
('6cdae337-76a7-43f7-b9d9-cd7f4882668b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.819','223853931-1-119'),
('6cdb3426-8064-4d9f-86f1-f18627402922','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-48'),
('6ce34962-afaf-4494-a30a-dcab4231c84a','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-14'),
('6ce4eb96-8ec7-4b4e-a38d-0e36ea431ef6','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-22'),
('6ce52619-deea-4434-a03d-96aed2b35811','5c990e83-628f-443e-afbe-ea1650122f59',180,160,8,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-3'),
('6ce5ed54-086b-44f2-b28c-e3adfb33ce4d','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-31'),
('6ce6bd52-b975-40ca-ba38-fd832ed36ce3','7c09f776-ffb6-47c8-8828-61389547804e',50,35,35,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-16'),
('6ce7083b-6f8c-4a0a-b4ad-94d81b5443a2','6302f68c-26c4-4a31-853e-80b9d1ba59ee',75,25,18,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-21'),
('6ce7772c-6623-44a6-abbe-eac5ef51e7a5','db7058ef-de6e-444b-b25a-dfa474ba7bcf',206,47,61,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-8'),
('6ce7a1f5-02ab-4127-8be6-243aa3968dd4','c71fdc71-df3e-48af-9323-d534b0931ff1',57,260,10,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-7'),
('6cea77fc-b6cc-495c-aa6c-dacdad8605ff','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',222,59,4,0,NULL,NULL,'501168544-1-6'),
('6cef73b5-4b6e-42bb-9729-d025a0e9b6b2','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-1-2'),
('6cf6153b-a05f-49d2-8326-553707ffa1c5','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.566','478943291-1-30'),
('6cf63f96-c600-4ee8-9c65-987a9ead20cf','372e1bc8-6cab-4d95-850a-8adaef911ece',222,87,60,0,'2025-08-14 07:05:52.297','2025-09-01 11:08:22.515','478417862-1-3'),
('6cf8cbd9-9bcf-4168-b8b5-e3ceff13cd73','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-1-3'),
('6cfa0fe7-05ec-48fc-96e2-019f55cbd772','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-4'),
('6cfca055-7afe-4990-a4d1-2ddf54f3cd66','e89e7d75-4967-4c63-9f73-981469e531af',48,11,10,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-22'),
('6cfdc57d-2adc-44ec-b11d-5d7e9dfeea2e','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-26'),
('6d03548a-2ef6-4509-a288-38f1aa633832','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-21'),
('6d0441d7-5a9a-43eb-888c-43b54e069274','50517437-8e4d-49e3-bf9b-a6221588b05f',0,0,0,0,'2024-05-11 08:11:37.516','2024-05-31 10:16:39.587','478319922-1-2'),
('6d0a7171-89c0-4bb3-b29b-e1d605af7043','766da20f-af1c-47a1-a9d1-61d9a22c827f',65,55,100,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.877','613809111-1-5'),
('6d1458fb-a66c-49c7-876b-7afc5df6a163','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-3'),
('6d16c050-2466-4193-afdd-98c0d3571add','a45dfc88-22f7-4e59-99af-31e8399ea126',186,96,6,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-3'),
('6d17084d-b39a-4447-9616-1eea82a59cba','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-95'),
('6d1a6703-8d14-49c7-8046-5c8c9fddd3c4','3aca7d6d-09cb-4903-812e-7535a083b09c',85,65,66,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-12'),
('6d1bbebd-ebcc-47f4-aed3-ed322436cb14','cc500972-1de0-4a6c-b6bf-789f51e9fc9a',70,230,100,0,'2024-11-21 10:29:13.569','2024-12-14 08:24:23.414','98285799-1-4'),
('6d1bed7a-653c-4ae7-962b-36194464dca1','7f11042b-3945-4eb3-b37e-a822894de6f5',105,195,19,0,NULL,NULL,'478777575-1-12'),
('6d25f573-5c2c-4531-a34f-bf4e06047622','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.958','478631020-1-20'),
('6d26f319-d9d1-42d7-9df2-85d87b62d274','c98f6188-56c5-4870-be97-be71cf95f62e',30,35,10,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-50'),
('6d28c30f-c07f-435d-bd54-a7a49e3f53ab','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:45:59.962','248135683-2-17'),
('6d2bffe4-c2f2-47ae-bb24-602b5bd3184b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-77'),
('6d2c8b22-a54c-4cf2-8e2e-105131f03b0e','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-20'),
('6d2ededd-dccc-4617-b6f7-c8f15b373792','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-37'),
('6d31bf8d-0442-4434-a14b-eda1f24be8bd','bd176b24-f129-40d4-8c33-6b35eded0fad',82,82,3,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-17'),
('6d359e55-199d-4ce2-8161-fe7d957e743a','36ced38f-51af-4146-9bd7-7f1d6c0f4201',80,93,87,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-3'),
('6d36b9b3-eca7-4136-ae6e-64732b3d3c0a','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-11'),
('6d36cfa1-6c32-4d2a-81b0-aac5cdfe9b19','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',210,10,49,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-17'),
('6d36f707-3550-44b4-90e7-65e273a12237','b79e14f7-bc81-4d2c-b54e-e10324f46985',51,51,77,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-3-2'),
('6d42d449-ab46-44be-b51e-cc91b4a38b47','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-7'),
('6d443043-5a4b-41be-9308-d60c89da4aa4','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',97,105,83,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-1'),
('6d46141f-56c3-4677-b432-34b059ac4038','852cb596-91b3-432f-8aee-ec6a804f3a01',56,83,100,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-1'),
('6d471413-96d8-4f80-9355-9f6717bab08a','4cb853fb-ed75-4081-be82-d68d6aa556bb',232,94,70,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-1-3'),
('6d4933e6-317b-4e25-8a5b-5ccfd0771937','d83c40d1-4df5-4c97-bc83-28837db95b2b',126,50,16,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-32'),
('6d49f231-5b93-4997-aee3-11a80f801fe7','c98f6188-56c5-4870-be97-be71cf95f62e',50,60,47,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-46'),
('6d4d48e1-d788-420c-96cd-f435ef3e4938','d0ade823-74de-4507-8f72-ff3352af4bbf',212,33,8,0,NULL,NULL,'428407424-1-1'),
('6d4f8513-2942-4b4b-b101-ed154a1c168c','08af242e-dc62-496d-980d-0f589dcdea60',70,66,108,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-5'),
('6d4fb53f-b756-481f-9933-e6209e230b52','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-3'),
('6d521089-73d3-4abb-a2de-bb8665406f4c','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.044','2024-03-29 17:57:47.298','734245011-1-6'),
('6d54cd49-2b70-4aab-967f-e6adf1d243b9','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',82,206,2,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-15'),
('6d55c3b6-ea33-4d62-bb7b-103a987ef3ad','927ceb65-f6d3-4068-b0ea-1412cfd0a754',233,64,59,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-2'),
('6d57e711-9d9a-448f-96de-1cf9a319f1bb','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-30'),
('6d58aa7b-3ef3-42af-a5de-c0fee3037a39','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-8'),
('6d591074-7247-4004-9c20-57e6595c0f6b','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-11'),
('6d5b5617-939e-4263-ad90-4bc7d5962776','d84ba499-6aea-4ff0-b177-6f8576e1fcdb',110,20,14,0,'2024-08-31 13:26:36.284','2024-09-09 08:43:26.643','982868918-1-3'),
('6d5c8c88-16fc-4e2f-ac6d-a47a57b224fa','5525a9f7-87da-4298-9caf-21e307bb8af9',0,0,0,0,'2025-02-09 09:51:48.792','2025-02-15 16:09:39.544','478719602-1-2'),
('6d62f9b7-acba-403d-bda1-960f3a4c312a','e8b58cc1-698b-4364-ae95-f00b90174c08',12,63,134,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-10'),
('6d65b9f6-4255-4455-a2c5-59f2d432e061','da71f37c-3d3d-4e2d-af5d-70af9d403edc',13,100,100,0,'2025-10-25 08:58:53.630',NULL,'598479723-1-1'),
('6d6897bf-4da3-4584-b0a9-5334fd9a07c6','58ebcdbe-9281-4605-a44c-87684653f9f9',70,82,93,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-2-3'),
('6d692c19-ce64-4244-904c-9420f19e7a35','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-32'),
('6d6950ed-dc48-421a-9614-dd26ee5d3c62','e89e7d75-4967-4c63-9f73-981469e531af',190,60,40,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-23'),
('6d6a4c22-0b11-4c2b-8cf9-e31f79f71b29','b8cb209c-3d60-466f-8346-01810d5816ec',6,43,211,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-4'),
('6d722f7c-b7ab-4b1a-879c-5be691ee1d42','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',187,74,100,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-3'),
('6d726fba-7f83-4839-ba75-6ccf74bec450','7f827719-d0a9-4910-9aef-532cd3731df7',17,41,79,0,NULL,NULL,'745995046-2-10'),
('6d734bf5-7462-435f-acb4-fdffa1d632ad','ce42e11e-4d43-4c6c-8883-9e3ebd875644',230,80,90,0,'2025-10-06 07:10:17.714','2025-10-16 08:43:39.292','644407379-5-3'),
('6d73c7df-82cc-4ff6-965a-2213112d6a62','cf923c2e-5afb-480c-b737-8b48ace679b6',44,43,75,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.773','371628660-2-3'),
('6d7577bc-4eae-4539-928e-11c3c76568b4','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-12'),
('6d791865-72bf-46db-9060-a5fe584e7893','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-110'),
('6d7b41e0-d963-4213-851b-81211e49db96','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-4'),
('6d7bd811-1fe4-4da9-897c-1211a79a310c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.696','2025-08-22 10:59:14.819','223853931-1-108'),
('6d7e872b-f1c4-4adb-958a-0fddee846100','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',115,20,6,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-11'),
('6d7f98d5-f305-4330-bdb9-6ee6bb49f062','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-18'),
('6d827eda-902d-43ae-826a-02e4eab4f1a8','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-92'),
('6d85436f-b305-464d-b689-ae757798e60a','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-13'),
('6d863e36-c220-4524-991b-cc20e90317ef','6053785d-1d29-4e11-800e-efc4fb955f66',65,66,86,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-2-2'),
('6d867219-57da-44e9-8f2f-4c5617887d52','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-104'),
('6d86d81d-fe04-4ac5-a683-fe5c44568ec4','702c1aff-1a98-44f0-9dce-efad71572432',48,24,56,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-10'),
('6d872dd9-6e8f-403c-b7e8-aed100b1bc07','f0485a78-951c-4f89-bddf-b2003f0bf783',6,122,75,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-29'),
('6d87ae50-a15b-42ea-8c16-29ddcc4603ba','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-13'),
('6d8cf544-1ae1-417d-b452-2ffa593bc906','3987bcda-6531-4738-8815-187fd84bf71c',135,33,20,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-11'),
('6d8f5619-e82d-419c-b7e1-a6baf450e475','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:41.423','248135683-1-9'),
('6d9157dc-d0f1-41dd-90f0-a5b0f898e381','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-19'),
('6d9501b7-52e6-45d8-9760-79bf8e4f93fd','1732e8c2-bcae-4af1-9502-01cb2c0bb392',80,77,77,0,'2024-12-01 06:48:20.004','2024-12-07 20:48:15.986','614396499-1-1'),
('6d95ca5f-3f46-4bf7-912c-d0ff0f718755','25960cc2-fb91-4f42-9e90-011ad226f434',102,95,65,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-5'),
('6d983a9b-724b-4ca9-ab05-5dae935bc0a5','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',30,190,11,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-29'),
('6d9d868c-4f54-4134-9d36-23670e937ef6','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-12'),
('6d9d8b0b-d95c-46f1-8752-20eec17f4ccb','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-52'),
('6d9f6e5c-20a3-4600-a4ca-53fda18bed4c','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-4'),
('6d9fd6e2-fa5a-4116-8af4-ca280f744ab9','f2159b2b-020d-40ff-ae20-f912043ddb26',102,84,58,0,NULL,NULL,'515491042-1-1'),
('6d9fd732-7bf6-4600-9879-938b577d2021','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-4-7'),
('6da3c5dd-8f8e-4c7d-b43b-0a2658200052','1219ae2a-bb83-4e56-868e-8398ae2fe1f8',275,40,27,0,'2025-08-27 19:39:59.902','2025-09-06 07:19:18.863','371413703-1-4'),
('6da408e9-367f-4dd9-bf99-5e85d75f34d3','f4fea4c5-b879-4cb4-a43b-6716692a56f0',55,15,135,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-5'),
('6da60616-8d91-4703-822b-55e9462d53a9','c7711311-d9e2-44ab-9529-bf35ca0a141b',211,26,38,0,NULL,NULL,'613592756-6-5'),
('6dadda80-36cb-481a-9c5e-d3aebac48aaf','d83c40d1-4df5-4c97-bc83-28837db95b2b',180,200,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-33'),
('6db350bd-79fb-4267-af57-dc8cf89ba3de','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-15'),
('6db6f0e6-5c5e-4b21-adfa-1f7f8cf20b86','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-120'),
('6db795b6-3603-47f1-bde6-5639de8c8247','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-88'),
('6db7e4b2-f3c3-4b5c-a339-ecc83cf6b1d1','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-6'),
('6db83f77-d646-4f27-9b97-716a125ae1d2','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-173'),
('6db9714b-a10d-46e3-afee-1979a18a6418','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:32.175','248284003-1-132'),
('6db9860d-0fe4-4e09-9acd-b929b3c2d982','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-1'),
('6dba77f7-909e-4c2f-a961-7cfc40e0ea96','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-32'),
('6dbb0649-6bd8-4ba0-ae8a-fb73ccb0a8e0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-1'),
('6dbb8881-0982-49b7-8408-8979295bd587','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.125','2025-01-08 18:08:30.763','735814007-1-9'),
('6dbba11f-963c-4bb6-80c7-6ba88c19b8d0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:34.494','248284003-1-192'),
('6dbd4bf0-3f79-41f5-a2e7-fe7155bc5ef8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:42.324','248135683-1-122'),
('6dbfd5f0-fa76-4220-a06d-34c1ef86f583','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-41'),
('6dc16ef5-1228-4a40-8958-936d0d772e9f','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-3'),
('6dc1b2c9-b3ea-4b02-9a42-0e53b2cc37aa','e787b002-b91a-4f0b-a507-be225c591706',10,141,180,0,'2025-02-20 12:14:55.664','2025-03-04 15:38:32.599','982558117-2-2'),
('6dc74692-1c6f-4d9f-b845-c73c812bcdc6','542181c6-dabf-4cbd-b756-74abe3440744',66,176,13,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-5'),
('6dc7636e-f3c3-40a2-91a4-bfdd52279fb4','a69f640a-80e0-40e7-836c-75a316391b0e',0,0,0,0,'2024-05-08 18:43:27.068','2024-05-21 18:45:23.921','734482220-1-3'),
('6dc7e9d6-1276-4a74-acd1-8c40a454d7a3','8ec304ac-bf41-40b1-83e5-e7da60bed6bb',76,101,52,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-1-1'),
('6dc8e8d6-677f-43b3-bf83-f966362b2133','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-1'),
('6dcad606-df88-41d1-9a74-e35030926e27','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-6'),
('6dcbf295-7b25-40cc-a7bd-d5c2cc4f1b58','9078f690-7464-41bd-aa0f-d35d75158aed',100,208,84,0,'2025-08-14 08:21:42.890','2025-08-21 08:13:45.093','43752518-2-2'),
('6dccbd10-4a6e-45bb-b00b-7199a3363ebe','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-54'),
('6dcd7064-17ad-4dc7-9a59-a55a1661c507','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-5'),
('6dcfc3b4-2d5a-4fb6-85de-09cc3cb19bb1','324e00ef-45d5-469e-89bf-811dd1160a35',136,225,12,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-1-2'),
('6dd18f69-cc4c-4b3c-aed7-7f83ce5e96fd','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',160,39,69,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-12'),
('6dd1e2cb-7046-4ad7-af38-1c0988a4f33b','6302f68c-26c4-4a31-853e-80b9d1ba59ee',190,75,30,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-22'),
('6dd3b272-2e13-44d0-b40a-8e35f3b4fdc2','8e4621f8-e2f6-4c06-a542-51aea08e56af',100,120,70,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-3-1'),
('6dd845a8-0d32-4efc-b62b-795a7ffa18e5','4aa5ea47-6bd0-4d67-b370-60ef1d25e633',65,75,85,0,'2024-12-23 12:00:28.663','2025-01-08 20:29:07.045','449665773-1-1'),
('6dd8e1d9-2e95-439d-bede-7e7f333a7b97','392f085e-940a-4da0-833a-83d25e000858',0,0,0,0,'2025-02-27 16:45:44.001','2025-03-10 13:01:45.189','745935889-1-2'),
('6ddbc529-0be6-4108-be11-dc6f1613c68f','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-82'),
('6ddd3f28-da6d-4ce9-b8e0-66e1a4911ec6','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',283,57,15,0,NULL,NULL,'011548428-4-9'),
('6ddd56bb-e6b7-48f2-9d51-c25b064c8117','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-11'),
('6ddd6e11-94e5-403e-817f-eb78578b1ef2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-181'),
('6de10ec4-b8a7-4458-a9a4-4f7f6ed9e1c0','f912307c-b419-4d9c-add4-84739c9e0ea5',230,65,95,0,'2024-11-08 17:37:46.313','2024-11-22 21:22:02.722','982773684-1-1'),
('6de12f5f-0d82-4d53-983d-7382d63d2bfe','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-20'),
('6de29fcd-3b12-40ad-bd70-44940a982f48','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-37'),
('6de3f025-3c19-4d48-b613-9e6d03d4ca1f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.060','223441694-1-214'),
('6de7aa59-474f-4ea8-bbd8-933c7c17f25a','c3fe21d3-5610-4a96-9492-67597bbe83bc',51,51,77,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-5-1'),
('6de86225-8294-4c82-bc7e-78797cda4880','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',120,120,70,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-5'),
('6dece3ad-6a3f-467f-98e7-aa6ce9ead4c3','a89f5cb0-4036-440c-b388-8ef641d6f3b9',11,112,185,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-1'),
('6df4a32f-a136-4f70-b20c-ae702fe6cf1b','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-24'),
('6df865c9-1cb7-4b11-bede-05eb966d9b61','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-37'),
('6df894bd-d297-4dbc-a312-df4d49b6e657','d2f8d58d-42ad-4705-b1e8-a666af927fa3',13,41,64,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-11'),
('6df921fc-bf81-47ca-9545-4e05667c4ebc','06cfd546-43d2-48d8-af81-05265ddc6733',204,127,68,0,'2025-10-22 13:06:52.544',NULL,'786146097-1-1'),
('6dfbbbea-6fb4-4e8a-8655-de3cd8a5ce96','00c1fd23-178e-4add-8ff7-f9f4e9131927',53,100,74,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-1-1'),
('6dfe373c-43ab-4a95-885a-7dd747d9bad0','05b97ce2-a737-45d6-a444-20708de6bbba',66,80,51,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-2'),
('6dffb454-fc46-4f12-aad3-21cdf937321c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-71'),
('6e008cb5-00ae-4112-a007-19a63ef86853','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-33'),
('6e029f47-847a-4a62-b174-d066ce23f355','5dec8c16-6526-4fff-8d9b-6d323552f188',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-2-1'),
('6e05e04b-d328-4971-b94b-d4973f43c522','efbe186b-71f3-42d2-8da0-71f73ee0e288',92,90,65,0,NULL,NULL,'59884902-3-3'),
('6e07fa03-90a3-40f4-b5e7-b6207a494ee8','e2279222-d071-4645-9dbf-0666c6bded58',51,51,76,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-2-2'),
('6e0a352a-eb35-46b5-8e8b-00fd318f7e50','e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81',44,43,79,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.567','745761149-4-3'),
('6e0b0554-b34d-45fb-a774-58d3e018bbef','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-4'),
('6e0e3897-fea1-4a90-b588-8e388d8c6a2e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-173'),
('6e0e83fa-3183-4556-816a-4f3658d20f57','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-32'),
('6e122416-ee66-4480-a8a8-a69f6a10c376','f3414f51-92da-4967-b108-6baad5cdd798',28,28,216,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-11'),
('6e12eda2-e736-420a-a497-cfda3ddd43b2','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-5'),
('6e15863e-76b3-4c9e-8c3d-5114945bc95f','c29e76a4-89ba-4143-8fad-01a2910620ee',210,15,15,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-22'),
('6e168436-4501-4f45-95a8-54abd7f0cb73','afcdd189-4513-4f98-ba10-d072597768c3',0,0,0,0,'2025-03-13 12:21:23.215','2025-03-23 16:15:57.285','221892935-2-2'),
('6e1ad08c-7d83-44b9-abfd-06689255c74d','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-13'),
('6e206d29-b642-4231-a99e-5bea03715feb','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-21'),
('6e22e3c8-01f1-439f-8db7-c8ed5f6ac183','a5e235f7-2218-48fa-9e8a-1680678939f4',102,77,52,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-4-2'),
('6e230909-9b8e-4f53-a464-ac8f85e054fa','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-2'),
('6e246eab-dd82-45c6-ab26-6938d9181404','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-8'),
('6e254c46-3920-4278-b5d6-877874b44d30','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-23'),
('6e27279a-ef6d-4a5d-a1a0-53994bd85efa','291a2ff2-a042-49df-a88f-5eeac8ddabcd',220,60,52,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-6'),
('6e2c2a3a-f855-4111-a12d-f6434451336f','08af242e-dc62-496d-980d-0f589dcdea60',42,40,85,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-16'),
('6e2d543e-7e46-4e2c-a1e2-2f57101b1358','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-2'),
('6e306fe3-a6d5-4770-afa7-daa54f5093d3','b79c9c03-f101-41f5-a37a-01d796fa6d5b',100,100,75,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-3-3'),
('6e3148f2-6665-440a-ab34-33131974d2d4','5632f22c-493f-4a5e-afdf-13268c32b047',90,80,75,0,NULL,NULL,'528640995-1-9'),
('6e316198-afea-4630-b75c-314409e738d6','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-22'),
('6e3845bb-af4d-4a32-a3ff-456ee6e3a49b','f8845648-6347-4e46-b7f2-eb261e05cd91',82,153,6,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-8-4'),
('6e39b73d-c864-46ab-a838-2f8ff4536785','ceaa236b-3a68-4533-ad29-229cec3a8f6f',187,35,35,0,'2025-07-12 09:20:15.399','2025-07-25 10:49:32.407','486405325-3-5'),
('6e3a5900-f1ef-4dc0-80c5-371028863216','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-8'),
('6e3eeeb7-f643-4567-a90d-93c4a635d968','014ebe19-c8ce-4288-a6be-75bb83ffcc5a',35,35,35,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-1-3'),
('6e460796-ddd2-4f7b-81fc-1509843e53f1','55155cc4-3303-4c8d-8138-cd049d9c0cad',37,37,73,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-7'),
('6e48dc02-374b-4af1-a21a-5abfc92b8128','83af9296-590a-4b0b-81a5-7cfaa2cf9c5c',248,95,65,0,'2024-09-06 12:28:20.394','2024-09-12 10:54:28.998','455477301-1-2'),
('6e4af179-6341-40d7-94e3-f9fe3ca509ac','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-34'),
('6e4ea689-d273-45c1-9fda-6454fa7b143c','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-15'),
('6e4facc3-cddd-4674-9141-4ab4a2206d1b','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-9'),
('6e509fed-ba23-4b99-aac4-ffbeba872e46','c39409f6-eabb-4d89-8cfa-a6402efc79a6',166,70,100,0,'2025-07-17 09:33:45.878','2025-07-22 17:22:09.793','531737045-1-3'),
('6e563d33-de15-40b5-94dd-98179bcf5302','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-55'),
('6e56d89e-f137-42f1-aba5-41a3b8e3888a','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',52,49,35,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-8'),
('6e573219-6c4c-45e7-859f-2fbeffcd063b','bc7d9bfd-1d76-4ec3-ba08-f95ec93894de',0,0,0,0,NULL,NULL,'614927187-4-1'),
('6e58bfd0-3295-4410-adf5-ed681438628d','cdab8feb-4b24-4e8a-bc95-98fb1259890d',74,46,46,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-2'),
('6e5bca9d-c2d5-4c34-84ce-b7aee0b3d117','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-117'),
('6e5cabdd-607c-47df-bdbd-c84c658a73bf','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-18'),
('6e5d2de5-2555-469c-b7f6-78bd5cf14764','83af9296-590a-4b0b-81a5-7cfaa2cf9c5c',248,95,65,0,'2024-09-06 12:28:20.394','2024-09-12 10:54:28.998','455477301-1-3'),
('6e5ed90e-b918-488a-8a82-146970547b50','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-7'),
('6e61bef0-ff3b-48cc-8493-823373a3adaf','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-137'),
('6e625784-e3ef-4f43-bdda-2477aa6b2d10','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-14'),
('6e636c2c-49b5-428d-8804-8652a17e060d','367f3a5e-bb59-4b08-ac77-fb45fbe38388',105,152,68,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.930','808450440-1-2'),
('6e68400d-6285-4cbf-8de9-ae697d3e0872','94d4fd15-f663-40b8-8ec9-f93a5cde757c',231,5,102,0,NULL,NULL,'614364554-5-5'),
('6e6a64f7-646e-4e6e-bfa6-016decc3b96c','5022973c-b928-4561-ad5c-1a67c1816ac9',46,26,108,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-10-1'),
('6e6a8e30-9038-42f4-8a3a-8988b5eb2947','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-22'),
('6e6b5141-0480-4fcf-b909-b073697207bf','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',185,100,11,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-7'),
('6e6ec5e9-ae38-4e9f-98a0-bdc10620e1f8','66f8d34c-0c41-46f5-98bb-500adbb6f636',10,18,166,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-7'),
('6e6f7fbb-ce3f-4bb7-aaa1-1d065294c587','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-9'),
('6e7049b5-638d-4e8e-a643-5f8f46035c3f','159c73ed-083b-4d67-98ca-6adcfc554962',30,205,95,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-8'),
('6e72af02-2a00-48fe-9813-1058d26d18aa','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-40'),
('6e72b8c1-65bf-4e69-bc0c-3bc9880c3edb','8625abf2-719d-4d7f-b206-16948b318b8b',205,90,2,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-10'),
('6e759727-090c-46e4-81b8-5624f8e17a47','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-59'),
('6e7733d6-1931-43d0-985c-c732e22bfd56','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.381','2025-07-03 11:20:02.278','223379282-1-7'),
('6e78aac3-e7c4-4cb3-9e08-49b42128ce06','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.679','2025-10-17 06:13:07.090','221801165-1-2'),
('6e79f149-0aff-4013-a30a-747ee542a120','59466ba9-2ada-4521-948e-2d8e3bf18415',135,91,60,0,'2024-11-08 17:37:37.662','2024-11-23 23:45:30.499','982455918-1-1'),
('6e7cbf46-9a32-47fa-8c8e-bda6bdbfb085','f134a126-2407-4b60-9673-09787c6564ab',108,108,63,0,'2024-10-17 11:51:20.558','2024-10-23 22:15:47.687','517914097-1-2'),
('6e7e3a4b-07e5-4045-a85f-b75c1a246dcf','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-12'),
('6e7f78de-4c48-423e-a44f-e070cff37713','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.093','2024-09-13 16:38:54.585','412871738-1-42'),
('6e7f9634-bfe6-4544-956a-6a5d4340aa79','7ba47169-83ca-49a6-98fc-6ef1a1990eac',200,95,7,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-13'),
('6e814c19-06aa-4035-b3b6-3ebfd11ffa1e','4edf944f-7a80-479d-a999-67219fcb4040',51,51,77,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-1-2'),
('6e83eb44-948c-483d-848e-ffeecc9ac629','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-23'),
('6e86f221-c6ee-4cfa-9a5b-c5a4993f54ff','4528d00a-d527-462a-82f4-148016c4f77e',55,58,81,0,NULL,NULL,'478892203-2-3'),
('6e886262-ef2f-4842-b455-53abeb2e81a0','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:42.926','248135683-1-57'),
('6e88cd00-24f8-4b01-bb0b-4deabb4ef3e1','676dc697-7061-41a1-a8c3-abbff4eb9699',98,98,69,0,'2025-09-11 06:33:57.374','2025-09-17 16:03:34.523','437232562-1-2'),
('6e8d5eaf-d107-4ba7-a9b7-cf5c46cdaf4e','d8e303a8-8046-475f-835c-016b3dbd77bc',57,58,16,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-4-2'),
('6e94635c-046d-43e6-8be9-3f3050474da3','7abfcf71-6dec-4a36-866d-9fa7ec174baf',0,0,0,0,'2025-03-06 10:31:58.253','2025-03-17 14:53:44.076','745206126-1-3'),
('6e95a3e4-ecf0-4fb5-bb47-1f0569b7d440','1f226ba8-0087-4886-a39d-874a147a4378',51,51,77,0,NULL,NULL,'613362955-1-2'),
('6e97ee17-70e1-4010-b40f-739dec3e1291','795d2eda-013a-4fd7-b48b-148a85caef26',120,100,75,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-4'),
('6e99c9e3-a894-4653-a98e-3d6df25fb942','1510fb1c-ac60-443b-8470-17f2857b0558',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-1-4'),
('6e9a7ecc-e23b-40ff-b748-1c72fbc48e12','4abcae6f-afac-43a1-83d3-65715ac410f6',0,0,0,0,'2025-02-18 16:37:10.835','2025-02-27 06:36:36.211','478101413-1-2'),
('6e9e494a-ed43-4faf-a188-474aa0473f2f','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-1'),
('6ea0e953-6081-47a0-ba5a-d373693c7ce2','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-42'),
('6ea1f378-ee32-4ae1-8344-695e9fd062fc','f7fec661-6f5f-45d8-8d10-18c1dad72513',92,6,92,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.162','428704278-2-1'),
('6ea27b36-d688-4804-a4d3-5f11c6414d9f','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-8'),
('6ea4ac93-aca5-49d8-8e07-e0e2f861a98f','6f8fd929-0228-4fd9-a182-83fe855d3f5c',38,18,8,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-13'),
('6ea4df3b-aa96-434d-aef9-ba2f900f89a5','1c3805e9-6884-405d-bb40-3d257f12ef95',74,123,6,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-2-2'),
('6ea7f98b-7ae3-41c3-acbc-21e2edb96702','aa7913d9-4692-46ea-94b6-16deac482855',95,60,10,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-4'),
('6eabeca8-8cea-49a0-aef2-9cdbdbd3473c','c6d518ca-dd82-4758-b36d-2a2b91068364',51,51,77,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.565','221345365-2-1'),
('6eae4bcd-a2eb-46f9-b684-645bc5d0a7e7','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',80,52,104,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-5'),
('6eaea621-5de0-47bc-acec-c8b94dbdfa4d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-60'),
('6eaf39b7-bf98-48ed-95e3-f069c1a236aa','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-42'),
('6eb0308d-c641-4fd9-b0c6-c87f29d26ce5','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-7'),
('6eb043b8-960a-4477-b894-51c97a5a1594','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-12'),
('6eb849f6-50bc-4ede-a2a9-b99dca21ef93','4fe7c3b6-ef6c-4a70-8bad-36a1448321c2',75,42,43,0,'2025-05-16 16:33:32.206','2025-05-23 14:06:47.825','371521572-1-1'),
('6eb9a578-a5e4-4a8d-9e63-3a76b940cc60','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-1'),
('6ebdf29b-e6e7-4c45-9550-af9cb8c74fa5','55dd5cbc-c309-4696-aa21-919f08012acb',42,43,75,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-1-3'),
('6ec51a81-1b87-4377-a5e5-a0356bbb8610','6302f68c-26c4-4a31-853e-80b9d1ba59ee',95,85,5,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-23'),
('6ec73bba-5068-497b-a87d-6808b114e4c4','a769cd75-8095-4eeb-999c-d1a749589a77',110,44,56,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-4'),
('6ec7913c-127a-43fa-944f-24dcadf9d730','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-10'),
('6ec84577-20a3-410b-9513-27f3c17f2b97','79a59d43-7fea-4b06-9f5e-bdc9d6a89664',0,0,0,0,NULL,NULL,'478825542-1-1'),
('6ecdb23a-7226-4d42-81c7-b4f94b4d687d','08f19940-4aad-46bc-bf72-01f66d155c84',22,69,48,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-5'),
('6ed5195b-0915-4e02-8f3c-a06cf1099561','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-117'),
('6ed57147-7f3e-4e85-92b3-b0b7b87db90d','534b92d0-013c-428d-99ac-08117a624aee',93,70,65,0,NULL,NULL,'351183541-2-2'),
('6edb5096-4719-4009-a11d-268c2fec2d16','ff5b1597-758b-485a-b299-4127569206b1',49,16,69,0,NULL,NULL,'750939503-1-3'),
('6edba2b4-c0ec-4485-babb-162645a493b8','8bff9e3a-f9c2-4823-b36c-e38dbf3ff3c8',51,51,78,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-2-2'),
('6edc895a-066b-4163-9e06-d893bf248379','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-12'),
('6ede647d-e261-4aee-8a16-9ff814d33456','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-10'),
('6edf834a-b76e-42b7-9339-31d1fe853d01','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-8'),
('6ee1829f-a5ee-4938-8558-604cd9f6444f','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-129'),
('6ee27349-49fb-4a79-bd7d-763992e141c9','e54055a2-3c9c-4738-a808-7a4a31877ef1',173,9,57,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-20'),
('6ee27db7-79d2-4fff-84fd-3d0bf0f4adaa','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',58,5,222,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-8'),
('6ee4d7fa-2978-4850-a312-d91468f31b62','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-41'),
('6ee625f1-3382-4fa1-b7ad-c38d65365552','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-43'),
('6ee7d353-bb55-4073-aa78-e77348df1ac7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-155'),
('6eeabb31-54f0-419a-a9f4-34b7c0d8d8d4','b78519ec-4b79-400f-a709-a1f09256d30d',12,56,88,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-18'),
('6eeb5f42-04c2-48c2-b336-a534c26e416d','090b9a06-aee0-4c02-b626-f3e2002f0fce',32,32,48,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-35'),
('6eebd617-195a-4fd4-8ed7-3c895a7e52c1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-200'),
('6eed4ca9-a789-4120-95f1-23199e40a4bf','6bd7564e-6612-41e3-8625-b58f213b8d44',18,130,170,0,NULL,NULL,'614204771-2-1'),
('6ef9ff61-0a9b-4ec5-a644-813f1706c5bc','49b0262b-aeb4-40b0-bdcc-b5461a64c972',44,8,115,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-11'),
('6efa6991-f5b1-43f9-be12-eb9ddaeb9eb4','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',206,38,5,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-9'),
('6efd2a78-f3c6-4a18-a72e-81b51c3f7daf','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.371','412842533-1-88'),
('6efd82c6-2c90-47f0-9cc4-2fd19414268e','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-56'),
('6eff28f8-ed27-4297-a293-b3a114789295','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-120'),
('6f00afd7-8c0f-4334-84b7-25fb37265b0e','a502c7d4-eee1-4a99-9f38-aab0a3c5c4cb',46,46,74,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.840','478984010-3-4'),
('6f012a24-cbc9-485e-9996-f3ce656bd4d0','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-61'),
('6f014678-41e6-42ea-ad5a-70c2098f8644','0683aa5c-fafa-459b-928d-eae1729e635e',105,70,230,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-4'),
('6f0185d5-06ae-4f79-b83e-c681aa7e2095','0e92c59b-93d0-4308-91ce-3965bb186203',200,40,18,0,NULL,NULL,'428180919-1-15'),
('6f01bdfd-485c-4264-8cd1-dff6cdf1b691','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-1'),
('6f0c5dcf-fc39-4e0b-8e41-c62796b0e3c6','138edf36-d166-4335-8560-d9873886e31c',57,20,71,0,NULL,NULL,'745189997-1-15'),
('6f0e3c05-5b7d-4819-a1d0-a971ac314aff','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',190,128,5,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-86'),
('6f0eba9b-39d3-470c-9ded-bc9d5319d882','2b836e01-2f5e-4512-9cc2-9be25ec5b6b5',100,129,69,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-1-2'),
('6f0f6bce-d52d-485b-acfa-946cd93702e9','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-14'),
('6f128dc1-f273-46f7-9cdc-31e94a5edcb9','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-226'),
('6f1917ba-a352-440f-98a7-21a50e97437e','32611eab-fe9f-4168-b970-d430359cb03a',42,74,9,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-3-1'),
('6f1cb13b-297b-4912-a124-40af32a9a7f4','baace365-1a71-416b-8d76-9200d2fa2407',19,30,215,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.170','644832811-5-1'),
('6f1d1d2a-bd9a-4ba1-aa64-de7aecb6d916','8a112f94-c1ef-4860-86dc-23351280686f',70,104,104,0,'2025-07-12 09:20:19.430','2025-07-25 10:49:06.698','976114868-1-3'),
('6f23fcf9-bc01-4f0b-9e99-069350f65e23','c57b0a67-4926-4770-8317-0fdee56c0abc',0,0,0,0,'2025-01-26 10:54:17.305','2025-02-10 14:16:49.589','248746531-1-1'),
('6f26f23a-a9e3-4b3b-9b42-e4b45d8d94c7','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-184'),
('6f281621-bf35-4868-9419-4b06a36cb18c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-62'),
('6f28db03-5db3-4f8c-ac53-5f9e8f95dadf','6302f68c-26c4-4a31-853e-80b9d1ba59ee',205,27,27,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-24'),
('6f2b7f19-49b5-4521-b3fc-81ae48198827','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:33.118','248284003-1-136'),
('6f2e4976-5aba-41d0-b38c-5e549edf2b5d','543dfe18-75e0-4198-9d24-c6d0458898e8',65,72,98,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-3'),
('6f2f704e-0100-408a-8f5f-dd771191ee09','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.278','223379282-1-50'),
('6f2fba1e-c60c-4227-9317-2f4821504334','ff08ddda-9817-458d-ae19-df09ec034099',0,0,0,0,'2025-02-09 09:51:10.181','2025-02-20 11:56:02.221','203497868-1-2'),
('6f30412f-7573-40bb-946f-4d1e9911df38','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',51,38,75,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.898','107869996-1-6'),
('6f305baf-8e0a-4997-9365-01303d02bfe4','9f1f4a12-045f-486d-8d26-612451204bcf',48,40,20,0,NULL,NULL,'745995046-4-3'),
('6f3a3e64-2aaa-4d40-8a70-f0a3148982ea','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-12'),
('6f3b402e-2deb-43d2-b751-f973fb0d4531','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:46:01.025','248135683-2-32'),
('6f3c403c-2641-4762-8bb0-7aa14d44aaac','90841100-26bb-4ce0-8b37-9712689c76c9',100,95,67,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-2-5'),
('6f40b108-f86f-4c6e-b63c-a3c92e42ee31','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-72'),
('6f485fc6-0376-4d9a-8f4e-9474ed011f82','b16256b1-d6a2-448b-a170-4c574127a57b',16,60,53,0,NULL,NULL,'745189997-3-9'),
('6f4b4a45-b943-42fb-aa28-fa4fc0574e03','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-61'),
('6f4df46f-3c8f-454c-b6f7-5c4a7a33860b','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-75'),
('6f504145-3805-4121-82ee-61abf3577131','159c73ed-083b-4d67-98ca-6adcfc554962',13,143,136,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-9'),
('6f505344-c06e-474d-b443-7d293975b8d2','48a52c80-382d-403a-8339-88f26052eec2',55,74,101,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-3-5'),
('6f5154b4-8669-42f8-b808-27ae99b3af1c','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-15'),
('6f5484ba-f583-4016-8abd-1101e4ad7dbd','82c2f7e6-7d17-4f07-ab88-13d96b343121',80,65,90,0,'2025-10-08 17:44:14.746','2025-10-20 06:32:43.863','644651781-1-2'),
('6f575665-1c93-44e7-8aed-70b250b173bd','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-12'),
('6f58220b-b66a-491b-a4f9-e9f809d80976','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:34.100','248284003-1-31'),
('6f593d36-c219-4dd6-9587-3a3ffd540e28','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-19'),
('6f5a0cee-c2fe-45b5-838a-a4e297c34c85','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-23'),
('6f5a8088-f865-4e90-b3c9-8cb2a1cb4c7a','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-4'),
('6f5b4517-28be-4be9-807c-41b53402b145','7cd28b4a-73b1-4827-aaee-b29989b9d9b7',0,0,0,0,'2024-06-08 08:00:28.405','2024-06-20 20:15:30.824','74594122-1-3'),
('6f5ba6e6-12d7-425c-b7c4-4ea017bf1a6f','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-8'),
('6f61b48c-fe3d-4e93-80eb-8a75e6bc7913','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-44'),
('6f61d716-07ed-41a1-b90d-5452bc725fc4','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-18'),
('6f6818c9-9672-45d7-b12e-59565f7e192b','7b2d4551-a99f-4fb6-8215-e7af3afe860e',50,55,55,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-2'),
('6f6889db-cf76-4075-b7fb-9f1ab8d230ec','c6beb907-545c-4c72-840a-c2ee864f59e0',1,1,11,0,NULL,NULL,'47876680-4-1'),
('6f6ae296-c47a-4efb-95e5-28ada1c0d5db','c000faa6-6333-4c74-9601-233c813836c2',0,0,0,0,'2024-12-01 06:48:09.220','2024-12-10 12:35:58.728','478284503-1-2'),
('6f6d201d-0933-4870-a5d0-c28cb789a9b2','a1461e5b-9355-408c-b4cd-20852a5e26d7',196,96,6,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.972','221396383-5-1'),
('6f72cb62-041a-409e-a139-ab8b93eb7d15','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-98'),
('6f7508af-f782-4210-b2f8-e8256d2b35ae','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-9'),
('6f7bd15d-0355-431f-9b04-b38faa967e2a','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-45'),
('6f7d6c5a-b874-4c86-968a-d2ec5b97209f','0045cf50-baa2-4fa7-a3b7-47eb972ef774',13,96,186,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-1-4'),
('6f7fc620-7415-4b17-849c-3cfce2b766af','d218cf1c-b46c-49c5-a96b-570ea5fc549b',101,65,56,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-1-1'),
('6f826570-28e7-45d3-894b-d6d7f7d22fa8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-74'),
('6f83eabe-63bb-4a7a-954b-199670852975','59466ba9-2ada-4521-948e-2d8e3bf18415',60,91,91,0,'2024-11-08 17:37:37.662','2024-11-23 23:45:30.499','982455918-1-2'),
('6f8488c3-7b6f-4173-ac51-c2c85237e8ca','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-62'),
('6f8b03cf-6bc9-4ae7-b0cf-6c9d96abcb55','186c3fe1-8981-42c5-824f-091f5394d4a8',95,183,7,0,'2025-09-12 17:17:07.744','2025-09-23 14:03:57.118','371540742-1-5'),
('6f93df25-85bf-45be-8297-76f95efe6ff7','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-5'),
('6f9bcd5a-d41f-482a-a586-cb35a132d61b','05d4c5db-7f15-4790-9278-4411a57f7248',245,90,68,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-3'),
('6fa0b723-159a-424f-83b7-b43b65ce780f','89b10d5c-c483-44ad-9784-dd0d3532446b',43,43,70,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-4'),
('6fa2d994-63a7-4e11-82cb-03cf77d34e6d','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-9'),
('6fa36b4d-1e9b-418b-b903-d37531e26bdc','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-3'),
('6fa3d4f7-cc58-4c14-a005-3c75794c723b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-150'),
('6fa4f592-ed65-40d5-91b5-62e1e8115af0','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',30,43,100,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-5'),
('6fa6b293-6ba4-4aa2-9c95-1b2307406af4','4248435a-86e0-4cf9-9c9e-c779eca78500',48,56,74,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-6'),
('6fa8f050-14ae-4ed0-a354-bd5cfd7bfc5b','7311f1e0-e2be-43dc-9e40-f94a010e8939',80,60,15,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-29'),
('6faaefc2-a1eb-4bfd-967e-f3e043accbb3','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.705','2025-09-23 14:04:07.289','221225501-1-4'),
('6fab451f-505f-4b49-b172-fcdd3f4e95a1','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-30'),
('6fad32f1-4516-46b9-aadf-47628d9b9d5d','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.570','745508995-1-6'),
('6fad64d6-5d60-4990-93bc-ac37821f6aea','7b5051e7-035b-47a2-8be8-18b0ed228a6b',55,142,90,0,'2025-10-08 17:43:40.882','2025-10-17 06:14:39.891','598492066-1-3'),
('6faf5462-da1d-40c5-b173-6b9b92f6b352','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-6'),
('6faf61bf-dc11-49a0-b995-53235207b4aa','71f35f86-849a-4590-9b45-008b2e44e3bc',1,1,1,0,'2025-10-02 11:20:40.372','2025-10-16 06:54:27.770','745253500-1-1'),
('6fafb560-d0ae-444a-95ad-68044e054a12','501be04f-cb8a-4467-a453-3e4bd6f2b13f',95,75,231,0,'2025-03-06 10:32:11.218','2025-03-13 18:34:44.542','455522020-1-3'),
('6fb09d59-c995-425f-8c46-b68289725d8b','074ea43f-46eb-4c8b-a2cc-11fd81b03760',80,106,104,0,'2025-03-27 08:02:46.623','2025-04-08 15:37:36.306','644206771-1-2'),
('6fb75d33-fd2b-48b2-8610-89529598942b','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-2'),
('6fbaa9f0-0da4-468c-8ee2-5f0f70eeb636','8c1d061a-bf51-4cca-b610-45c125718335',66,101,170,0,NULL,NULL,'765334693-2-2'),
('6fbb088b-7417-41c5-8a3c-4cb8ab573d6b','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.694','2024-10-30 18:09:49.991','745976194-1-5'),
('6fbe2a5c-4147-4557-bb3f-3f95b0c9574e','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-12'),
('6fc0680f-8249-4674-8720-2561b77decd2','d83c40d1-4df5-4c97-bc83-28837db95b2b',105,67,10,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-34'),
('6fc5814c-1491-4ebb-be23-de49f4b1b03a','aca0a822-86a6-4946-95ce-feb7de5fb68e',75,75,80,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-4'),
('6fc64e67-7994-421a-acef-aa9365b00c39','9f1f4a12-045f-486d-8d26-612451204bcf',45,18,51,0,NULL,NULL,'745995046-4-4'),
('6fc6acf2-cc47-4e3b-8df3-93a8fbac8c4d','9b333ce6-5bc7-4a67-b8c1-e8283698a5e8',58,82,104,0,'2025-04-28 07:40:43.381','2025-05-05 09:10:54.449','613502652-2-1'),
('6fcad0da-2197-4e6b-b1c4-1cb47d360ded','7c7686b8-8f65-4271-acac-1585b7485563',92,116,43,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-8'),
('6fcda988-619e-4c6c-bcc6-f57ddf239140','1a5517be-4812-40af-afc6-9e5990a9748b',57,62,83,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-1-2'),
('6fceab4f-d4a4-4d15-87ee-941b041ad49c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-35'),
('6fd18eb6-1e5a-4448-81df-7c078b553443','4b539733-41e8-4f8a-81e2-17e2b9e31c94',0,0,0,0,'2024-08-07 15:02:43.871','2024-08-16 19:22:09.872','478101302-1-3'),
('6fd28e5e-0f55-4327-9204-62af0ddea107','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-6'),
('6fd3d3f2-2428-4b47-aa57-0aa94d61c4ba','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-25'),
('6fd4b132-4fdf-4bf6-8695-43a01437190b','4bf4c188-ebf9-429a-8ede-d43489efe0cb',201,91,23,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-5'),
('6fda6bab-0120-4060-9ee9-befbda12da58','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-42'),
('6fe02ffe-0188-43b0-9091-3f1fcddf1d9e','0f72925b-09ee-4187-9456-1c900ac26550',8,107,92,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.906','982837523-1-1'),
('6fe385bc-f87d-452b-a6de-3a0648eac6a7','f8da3047-bd3e-4abb-838b-cb388b449675',100,100,100,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-5'),
('6fe91d16-c525-43ab-9685-4022f48d62c9','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-25'),
('6fea3624-90bf-43d1-9ae3-6d132d6f22bf','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-34'),
('6fee1aa6-f090-46f4-a654-9ced5e4d02b5','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-38'),
('6ff0e131-657d-47cd-b488-3133c497fc90','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-75'),
('6ff1d601-9266-415e-b0e1-cab9760b6b81','14a2a5fe-cc61-42ec-a329-3fede175e6a3',56,56,75,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-1-2'),
('6ff47548-5aa4-4fef-bec7-c7809eca162c','6302f68c-26c4-4a31-853e-80b9d1ba59ee',95,85,5,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-25'),
('6ff5b1a8-939d-4653-ad83-0eeb3b003525','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-119'),
('6ff8607a-26ba-4334-b1aa-b19920a84778','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-9'),
('6ff8bfcd-e39d-43e7-b7f8-b451f0749d32','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-222'),
('6ffee59b-0194-41ce-abf3-e79b019f5a05','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-28'),
('6fff593f-5b8c-42b8-877b-ef5df58aa755','0009aeec-e682-465c-b701-363a3ef377a6',195,16,16,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-40'),
('70020059-985f-4a54-8827-d671719679c8','8ec65c8d-3654-4122-b978-0e2729ab3484',72,37,37,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.302','748663171-2-2'),
('7002f326-9799-41f1-a229-1722b2d3d9d2','7d58ca9e-82b3-4213-9fd2-9c4798ae4dc3',97,7,173,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-3-3'),
('7005db72-20aa-4ae0-b452-179977962187','82c44317-84ac-4df9-8145-97abec99a444',0,0,0,0,'2024-04-08 08:57:37.142','2024-04-30 22:31:35.539','478702716-1-4'),
('7007f4f9-8687-41fd-a78a-2e1845772a93','0009aeec-e682-465c-b701-363a3ef377a6',160,200,30,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-41'),
('70083992-06bb-4979-969e-35602449c60b','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',83,81,5,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-7'),
('700d2c98-8279-4e0d-9a0d-03e7f1beb983','ee746bfd-05a6-49f4-9eca-b7da110692d7',4,126,166,0,NULL,NULL,'428172853-7-3'),
('700ff332-616a-414d-9f44-e15ae73d2485','20258a0e-ffcd-40f0-ac30-ddc851f0dedb',70,50,105,0,'2025-08-25 12:31:57.181','2025-08-30 18:25:16.939','27829651-1-1'),
('70113387-7ad7-4e43-91b5-7cab8918e594','97ed1835-e7ce-4f2f-9729-01e5df10301a',105,75,230,0,NULL,NULL,'745995046-3-2'),
('70115077-94e6-4421-90e5-6efe70eef54a','a40ab67c-f6c6-4228-b875-7adeb6366544',25,22,11,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-4-3'),
('7013d3fa-306f-4d06-a549-5165a7467c14','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-162'),
('701476bf-bcd3-435c-a097-3ca2da851780','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-39'),
('701a6338-20ad-41ec-8793-c50388fa551a','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-11'),
('701b7bb0-47a6-4233-8339-d5228a9315db','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-7'),
('701d1343-3d22-44ff-a2ac-46a108ce1041','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-2'),
('701d349b-41e6-4466-a114-07952c2a041b','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-3'),
('701d8805-871f-4df6-91bc-2358391d84cb','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:35.496','248284003-1-4'),
('701d8cce-1550-4162-874b-6c8cc2becced','0e2be2b7-0932-4325-b574-46a1ab000238',96,6,184,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-1-3'),
('701e2f8b-43ca-4913-86a5-656e57840426','9affc7b1-09c4-4e84-b48b-d0c117c421b0',120,33,198,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-13'),
('701e3bcf-8f2b-4a43-b5ab-675e0bab6bfa','c9a9455b-6e5f-4cfe-b1a4-8364b733ad16',0,0,0,0,NULL,NULL,'614941926-10-1'),
('702095fb-ffe3-4de1-9fc9-90e58f149f54','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',34,43,210,0,NULL,NULL,'598604443-3-1'),
('7020b128-21e6-41ea-b91d-40f0ec5f2842','c5d03b78-19c4-44f2-a673-725e07271521',110,230,85,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-9'),
('70242f73-7823-4a1f-9ff0-11f3c344fff5','fbffb9d5-c273-47e9-93ff-d898c5730075',81,95,78,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-4-4'),
('7024e1f5-65b0-41fd-8c1c-cc99771f6bfc','c98f6188-56c5-4870-be97-be71cf95f62e',82,60,14,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-5'),
('702663e7-206b-4d67-9478-af75293750ac','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-4'),
('70276618-30d7-47e0-9a1f-2482da5ed1e6','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-8'),
('7028100f-c05b-4708-87fe-7d4def2d458a','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-76'),
('7029a1dd-2f8e-4b24-b9f2-fff7679d8201','6465e1ab-9a54-436b-b6b6-782870563698',95,95,8,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-1-3'),
('702a4a56-e96c-43be-b1ae-ab3ca7cb5293','a69f640a-80e0-40e7-836c-75a316391b0e',0,0,0,0,'2024-05-08 18:43:27.068','2024-05-21 18:45:23.921','734482220-1-4'),
('702b4f1b-0ee9-4007-a070-69b055df6535','7fdf89e0-868e-4dff-9a42-34a86d6e056a',46,65,49,0,NULL,NULL,'01169597-2-2'),
('702c4644-0a91-4fac-ad03-6cdb6ced3838','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-13'),
('702faa8c-4544-4f45-97ec-db0127289113','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-79'),
('70331231-8e10-4057-87d1-59d959c872c5','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',210,35,35,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-6'),
('7033fbe2-5148-4559-9b88-a418a1bb9674','49c326ab-5b3b-49e7-a781-28760709b5be',44,23,141,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-20'),
('70342ab8-cd1d-4d6f-a467-86e632468e5f','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-1-2'),
('7036bf25-2380-4037-8ad2-11651816c8b7','0ac2a48d-48c9-41d2-91a2-b574a94542b0',61,177,9,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-5'),
('703b01ba-7069-4129-a658-9f56ba8aab24','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-45'),
('703bc80d-a16d-4161-ac2c-c93a571db597','0ab3c63b-a6e5-4df0-a96e-33e5a256da25',25,25,17,0,'2025-04-11 13:41:20.090','2025-04-28 11:58:30.436','478403794-1-4'),
('703f1e26-a505-4211-b0e7-45a97bb688c3','7ba47169-83ca-49a6-98fc-6ef1a1990eac',66,10,11,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-14'),
('70408ccf-4d79-4c87-9147-a296ec7483a8','49577156-6988-4b1d-8a3b-01bcdb651052',101,200,4,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-1-1'),
('704394d3-f6bb-4b28-a081-dcd42f031e96','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-3'),
('70440d31-2960-4386-bbc8-5f4cf41f1ed1','ed097511-c426-4ff2-b940-1f98b2a1f4f6',185,10,95,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-14'),
('704c18bc-110c-4dd4-9b7f-ea08ea4a3486','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-6'),
('704e4842-0a47-4a86-9698-9f9d01932a5c','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-52'),
('704f1441-69d6-4c7f-85c1-20871b56ea0f','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-3'),
('70543f9e-62f5-4510-b19a-361c3e731b7e','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-27'),
('705475b2-c48c-4f93-8406-9debdc927459','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-9'),
('7054a344-94a5-43c8-8ff5-6b502a414685','064e955b-72f7-4dfe-903d-af71b421e048',56,101,81,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-5'),
('705555e4-8fc7-41c5-8183-35c8f14b42d3','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-20'),
('70585d16-2757-4388-9d7a-23f9409a8a23','749f88f7-2499-4bd0-b578-1cf55fd70948',180,3,198,0,'2025-08-21 07:14:58.361','2025-09-01 16:56:57.990','745294810-2-1'),
('705ce511-40db-4aef-aff8-ca460b47e01a','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.576','478983907-5-14'),
('706210a3-0091-4a8c-9d5b-b8e644c34f01','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-11'),
('7062733f-612a-4698-8bf2-155770f8e975','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-4'),
('70635b16-bf17-4eb5-855b-dc845c475646','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-76'),
('7063654a-ec11-44f5-86dc-5b8a02611cd1','8f1b3fd1-9289-4cd5-ad84-508968f285df',70,70,50,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-2-3'),
('706909ec-d050-455c-8601-292191df49bc','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-82'),
('706c9059-6d84-4ca7-bd0b-67c24de66ab9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-12'),
('706e4ce5-7638-481d-8c0c-f888ac166a5c','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',65,105,100,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-8'),
('706faf68-36df-42e1-a0a0-ed098f8c69c5','0009aeec-e682-465c-b701-363a3ef377a6',65,7,47,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-42'),
('707afb86-cdb7-4e21-aae4-4a9f90bfb4e8','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-24'),
('707cbdec-9fc0-4c2a-a1e1-e2c3d69b625f','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-12'),
('707cf390-8414-4a3b-84c6-6b67f1e5003d','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-20'),
('707d98a2-104d-4b3b-b525-7440f07eae9f','c4e2b920-2753-46a8-80dc-96f38b4d715e',25,35,20,0,'2025-07-26 07:41:46.736','2025-08-02 17:35:57.649','437672074-1-4'),
('7080b515-4b25-4a9e-b8ab-ae1b20a550c5','c2ca9295-3327-4596-8115-dd1ef2d64d4f',170,40,27,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-6'),
('70876e3a-ccea-40c6-a682-33cbff4fb03b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-29'),
('7087b75f-2cc7-4fd0-8ceb-85d44f2f7211','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-27'),
('708a0528-de90-4de9-8f31-ecc1e35c3f14','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-45'),
('708e62b4-69f3-4cdd-bcfe-8b8b9f10a05e','5f118d4b-0713-4860-9914-6f2ebfe8faed',100,94,65,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-3-1'),
('708f23ac-e3c9-4bb5-bebf-5d356c3c2b87','6aadeef6-4393-4005-8da5-51ca4e422dfd',100,80,75,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-9'),
('7090529e-de9a-451f-83e1-4d9b46e8af65','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-3'),
('70907e93-f4eb-482e-b8c8-7c9ea26404a7','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-70'),
('70985d3e-c79f-43c5-81b1-3d129081ea12','15838be9-2a38-4e80-b613-df9538785c9f',93,59,75,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-1'),
('709a177a-b646-4e05-a242-3f323adfa6a0','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-31'),
('709a4d50-1931-4665-8bed-c40dfa0c26b5','aadf78aa-6852-48e3-9660-062042fc3ac3',70,113,108,0,'2025-07-19 07:51:56.592','2025-07-30 08:02:13.959','127221315-1-1'),
('709a7059-65e8-4295-afd7-dd35464ef6f0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-179'),
('709ab459-1829-4a53-a2a7-b9c98ce962d9','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.896','2025-01-29 14:46:05.434','248135683-2-65'),
('709b54e4-6c8d-4000-a392-6dcb63d8be42','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-8'),
('709e0662-00b4-4963-89f2-10eb13f75fd3','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-6'),
('709e1e1f-2f6f-4e0c-a628-8459648d1098','503ad8da-9a8d-4ce8-9358-85ef86ef590f',90,100,70,0,'2025-10-20 07:17:55.584',NULL,'531380104-1-1'),
('709feef1-1db5-4667-b576-8d60ebabb4dc','0cc39437-8ee1-47ea-87c2-b9fe770c2259',90,5,210,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-19'),
('70a2e672-dfaa-4a00-bcc6-a78aafb8b8fe','b23cf296-f843-4492-9697-0fd43d657771',152,93,74,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-10'),
('70a49433-c55e-4762-ae49-34d9254e6d07','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-64'),
('70a4f75b-a557-4d4a-bd50-36acde2bdf97','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-57'),
('70a8daf6-9756-4b67-b233-f0404c17f294','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-20'),
('70a987b2-27e0-449b-8770-e1c6e2c1d700','5d93f9db-58ed-48cd-adb5-3427b2b7061b',0,0,0,0,'2025-09-18 15:48:33.491','2025-10-02 06:12:12.650','221996027-1-4'),
('70ab0e73-62c8-4137-a770-9343a44da745','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-4'),
('70ada980-dbad-497a-aa41-61cc73391842','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-63'),
('70b181b1-6f40-494e-92a9-e982714e2201','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.954','223734808-1-60'),
('70b1963e-c622-46ce-b4ef-5c1ca7371c47','49c326ab-5b3b-49e7-a781-28760709b5be',41,32,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-10'),
('70b1a40d-56fe-44ab-8b1e-e75db2cfc7e7','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',5,91,202,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-7'),
('70b2229c-bd29-4347-be24-3f1dfec84856','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-9'),
('70b38072-52ac-40de-8668-93d46ed7cd45','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-59'),
('70bbdd31-7290-4a84-847f-4eaeea60c98d','7f827719-d0a9-4910-9aef-532cd3731df7',51,12,74,0,NULL,NULL,'745995046-2-6'),
('70c00f7e-42fe-46da-a29f-bf5aba1e5918','5a89fae8-525a-4de4-8188-2f4d7c892e74',54,68,54,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-2'),
('70c1e821-b1bb-46c4-a573-82c2a8ed0d2d','c8fdc4b5-c5a2-450b-b132-21b8be8c8316',0,0,0,0,'2025-04-11 13:41:58.635','2025-04-17 13:54:22.361','47888038-1-2'),
('70c20436-a8f1-4c32-899f-60a99689821d','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',45,45,75,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-6'),
('70c2d84d-05fe-4db4-9516-f34860c230e3','99667d92-dbf0-44c9-b845-b66e678f2675',76,44,116,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-4-1'),
('70ca6b27-e4ef-49c4-bbc0-1a883d61c0ee','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:44.433','248135683-1-125'),
('70cc3da0-44b6-40bd-aabb-ed62fcbfcc80','a2996a96-e222-4190-85da-afc912411ba4',42,43,50,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-5-2'),
('70cd2632-9180-48ee-9958-bd479f523b3a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-185'),
('70ce94c8-a202-4b4c-b8ac-bfd3918f2dbb','d8b997b4-f874-47ea-b9fd-067dee0368c2',58,76,102,0,NULL,NULL,'515128101-1-6'),
('70d1b819-1fbb-4cc1-b54f-ed03615f6781','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-42'),
('70d3a65f-4047-41fc-9708-00ad96287b61','0d90ef6d-e963-4a99-bbbe-e4ca67429574',44,8,16,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.982','750125400-2-4'),
('70d51ee5-26ce-49fe-89a8-ac90a3167b40','5a47171c-3fff-4acb-b6b5-4670498a85a1',45,85,78,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-1-1'),
('70d54cfd-cc01-4339-91ed-0fd3db9486be','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-5'),
('70d57d7c-5c4c-49a4-a3aa-351b5a33c3b6','d9a3f4fe-a4c6-4ce4-a82c-a62d40e773f8',0,0,0,0,'2025-07-26 07:40:21.062','2025-08-04 18:53:19.707','478570794-1-1'),
('70d65c26-3f0c-4dd5-9ec6-a064a88363db','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-4'),
('70dc332f-f85e-4c7d-a274-8a2060cddf7f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-11'),
('70dcd840-338b-41ed-9ab9-4d5c47b3b163','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-22'),
('70e4401a-d4f8-4328-ae8f-18a6cbce4606','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-4'),
('70ef0eb0-0efd-457f-a83b-b6ef851db496','54d8cca4-55bb-4e17-bfbe-85fc6529db13',0,0,0,0,'2025-09-02 14:48:53.641','2025-09-12 06:56:40.399','011222896-1-2'),
('70f0836e-2556-4479-b677-2e4ab19ceb24','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-87'),
('70f1b6b4-5fa7-48e7-b949-a126f3f4501c','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-19'),
('70f22070-b169-421f-a4c1-08a6d6ff9353','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',103,177,13,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-16'),
('70f6e82e-1f17-4e83-8afb-b38b58b1fbc3','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-70'),
('70f9b88b-e831-4edd-841c-c09ac3f32bd2','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',101,56,82,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-15'),
('70fc295b-82f3-4ada-b52a-b2998cc19c6f','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',95,94,39,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-4'),
('70fc4c22-885d-4eb8-8641-e1e647e1b6e4','ed49121d-e843-4670-a011-d85f0304b09c',51,51,77,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-5-2'),
('70ff57d7-7560-4f56-979b-67f6120d14f3','5a31d59d-2a39-48c6-a450-4b8e78dae401',45,27,200,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-4'),
('7100a624-2971-4148-a9cc-c8040a34b4c2','20de256d-a63f-4ddc-9e1f-42653a455a81',16,8,68,0,NULL,NULL,'47856812-2-2'),
('7102df2f-7171-4fc9-aa53-a9bda75877a7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-30'),
('71035ef4-f34c-49a1-9cd4-bc7aab5a60a2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-6'),
('71066399-03e9-4427-9e5e-36bf1272993f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-167'),
('7108c9c8-6d3c-45a9-8146-7afa6e594bf2','0009aeec-e682-465c-b701-363a3ef377a6',21,16,30,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-43'),
('71096805-d4dc-44e7-9cc4-da78f983beef','ca2466d1-9a83-4f57-8f76-f5ddce302e04',102,20,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-24'),
('710a0154-b8db-4f57-b93c-cdb8ab16ecbe','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-17'),
('710ade2c-06cd-488d-84ca-3cefe177c0db','53025d92-f019-4f5d-9b69-68a3b09bb7bc',45,20,106,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.071','428696149-2-11'),
('710e7d91-31d7-4b35-b043-cd7af668f98a','f9861f37-efe2-4e3a-930c-f694c4e10c6f',100,82,56,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-8'),
('711004f2-b2c3-407d-8bca-cea0f4290862','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',170,58,10,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-17'),
('711192d2-b531-451f-ab8f-3c4a94091fd3','9cf8adcd-9452-4ab6-b89c-c783d7e0f9a7',230,60,100,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-3-2'),
('7112c3d6-584a-4f67-a58b-fa16d6fafc2e','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.576','478983907-5-41'),
('71142622-ceab-434a-ae12-e7cf8a13c6cf','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-19'),
('7115fba6-9e90-4a89-b474-256c045f65e2','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',56,81,101,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-3'),
('711da5a7-9665-41a6-883f-c28a081950f3','6d45660b-867c-48d4-bfff-e888d7d88b72',26,80,200,0,'2025-10-22 13:06:42.033',NULL,'776312220-2-1'),
('71218181-0afb-4d8e-b6ae-91db5839a3b8','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-15'),
('7122c595-a6cc-471c-984f-f15fc85b8deb','349ffa09-9e8e-4eaf-8f66-763e3dfa18ab',215,107,7,0,'2025-10-02 06:45:32.406','2025-10-15 08:20:18.471','221591105-1-3'),
('71270710-cfed-4845-8b68-2791ed8e5cf0','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-17'),
('712822ae-67e7-479a-bb75-43e3de88ab77','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-76'),
('7129a5ab-0bb3-4595-abf5-3aabd11d0798','ab45478c-7fcb-46bc-aebe-fab160a476ef',85,75,67,0,'2025-04-28 07:40:29.966','2025-05-08 07:31:19.558','248359668-1-2'),
('712b05f8-4801-404a-8f72-072eed54eaab','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-47'),
('712f0c96-91ae-41b0-852e-8cc203bc3877','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-10'),
('712f2cf8-c5c9-42e7-aa2e-bfdd36cb086e','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-101'),
('71305a35-96f2-4c9b-81bc-cdc7ea871caf','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-5'),
('71311a28-fb71-4977-8345-e0dd4652c1aa','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',80,52,104,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-6'),
('7133a8aa-c91a-4541-bb51-32168ef86fdf','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-3'),
('7139a769-1037-4376-acfd-ba4e84b00a88','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-6'),
('7139fc95-d4bb-42d4-a75f-c915d1f0ffcb','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-2'),
('713a3ae1-7c78-4558-85dd-c195d80f9660','6f8fd929-0228-4fd9-a182-83fe855d3f5c',211,109,13,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-14'),
('713c5afb-8864-4513-b993-e53e21685ab4','743ccdda-3eee-4f87-8835-f0f9348b6b7e',80,75,75,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-3'),
('713e8dff-097b-4015-9a94-2497c540a0af','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-19'),
('713f7463-f063-43f9-9d61-e26267cf3098','6d0390ef-65ce-4154-a607-d67e51938ed2',140,190,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-3'),
('714011b9-64d6-4349-ab93-da436b6213dd','841f7f01-a7cc-440b-859e-dea7f085dd74',110,185,35,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-4'),
('71445349-0b7c-473d-9425-a09b2329cbc2','7acada5b-2716-45f6-ac98-44841652379e',51,51,77,0,'2025-05-09 18:44:07.565','2025-05-20 16:27:39.653','221294149-1-1'),
('714804ed-4686-404c-9a9e-35088386f2fe','f3d9453b-0679-4d52-bd61-c38e6f80c2a6',35,49,52,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-4-3'),
('714a573e-e899-4cfc-8802-5d9217e15b83','9d7979f3-a35a-4a64-97d1-4ba973786029',90,17,39,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-15'),
('714c27ba-3653-409f-8295-64ceb3b9bf93','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-30'),
('714d21eb-700e-4bd7-af79-ea462a7a982d','7852e0fb-6de3-4daa-9882-f74fa24083a7',43,30,205,0,'2025-05-14 17:03:44.747','2025-05-27 07:54:03.769','613464926-2-1'),
('715049a7-8e60-421b-b1ee-5fc3922acd54','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-1'),
('7152cf6a-2995-483f-a53f-3c3df6e8bbab','bf29a690-2cc1-42b5-8c3c-53bcdc53ae9b',90,55,200,0,'2025-10-09 08:39:52.751',NULL,'011940661-5-2'),
('71535c4b-0dca-43aa-9d82-8c52695ec5a4','8d3d3650-c22e-43f0-9360-325f2df43f5c',0,0,0,0,'2025-02-09 09:51:44.471','2025-02-17 21:42:56.662','745636493-1-3'),
('7155e277-3d31-4b59-9b54-13803aedc143','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-2'),
('715a328e-daf9-4600-8637-ae9097ea867d','e622181e-7708-44a9-8b12-3952b738674c',80,80,80,0,'2024-03-14 13:50:32.151','2024-03-22 10:14:57.066','614813890-1-2'),
('715b5d63-7888-41ec-b2eb-dec7b677a565','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-6'),
('715bdcc2-64ae-4bc9-a907-e85fb92a60c3','b16256b1-d6a2-448b-a170-4c574127a57b',18,50,73,0,NULL,NULL,'745189997-3-10'),
('715e6d61-da89-4d20-92b2-a5a814f28e8a','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-10'),
('715e7c12-6eb0-4574-ba21-492c57706409','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-2'),
('715fce43-db3c-4264-b942-45fd2c7135f5','e0c79669-21b8-48a9-8bfe-2f9b19cb872b',100,72,54,0,NULL,NULL,'644563405-5-2'),
('71613920-3ce2-45a5-8da4-17a920e36d8b','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-16'),
('7162fad7-c89b-4148-8e09-7d348cec0def','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-16'),
('716339e4-05bc-492c-82a0-bee5202109de','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-104'),
('71634a20-8ac0-4609-88e3-4670f4fef259','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-11'),
('716647ea-9803-4bd7-860e-97b7cdfcaddd','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.021','478677950-1-11'),
('71668657-7a59-4cd2-b73b-a7b4f43e8b93','1d2ec7e2-f735-46a1-96be-3994af90aaac',95,248,63,0,'2025-09-16 16:29:23.562','2025-10-03 06:54:42.114','750363306-1-13'),
('7167c723-c152-4df6-819d-93125f76354c','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',65,94,103,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-6'),
('7167f1a1-d004-462e-94b8-040a7cc02a6b','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.083','412284149-1-18'),
('716a4fd9-85ef-47a8-b7e8-79164b27ebc0','55155cc4-3303-4c8d-8138-cd049d9c0cad',25,150,13,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-8'),
('716d69ef-3da5-4519-825a-90e0f2efb3cc','c51cf533-511d-4f61-a94c-3e48074db45d',160,122,7,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-11'),
('71715fa8-4620-49a3-b79e-7582cd9ff49a','0946c018-5896-43db-97d4-34199264b7d9',245,70,105,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-1-2'),
('717261b4-dafb-465f-91ff-7303617d61cd','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-5'),
('7173c1c4-391c-41f7-add2-a7b12ef80e0d','635711a9-ff02-49d9-9082-6c29292a043a',63,63,10,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-4'),
('7173c1e1-416e-43bd-b437-544f4a32f08d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-64'),
('7174081b-f07a-4ce1-9c9b-7d8f95d0d9dc','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.934','735329890-1-25'),
('7176a99a-e232-49a8-8086-ae43ddbb31da','af69c5a3-87d3-4548-a650-720b69a4fc69',42,9,211,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-43'),
('7179e215-c750-450c-9284-ec978e7d14ec','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:06.192','248135683-2-15'),
('71806c69-23e1-4fa3-b4ed-ab7f7d2eb913','b16256b1-d6a2-448b-a170-4c574127a57b',17,38,78,0,NULL,NULL,'745189997-3-11'),
('7182f9ac-0aa3-4892-af1c-6050df202740','b44449c8-5efa-4085-bd2d-0a3594587af9',11,61,173,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-5'),
('71853948-157e-41e7-81bf-ab3a05297101','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-67'),
('71877d96-200b-44a4-a4b2-0d3898d93509','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-44'),
('718c2b04-e5a2-4017-92b8-88a4afd83179','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-21'),
('718ee8e7-aba2-474d-adb3-45173d9beb2f','ec1dd010-46a6-4bf1-b8da-05f4c672e2af',65,80,50,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-5-3'),
('7190b4e2-18c5-4ae4-8dbd-0752487604b9','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',90,95,146,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-4'),
('71912315-95d3-4c4d-9b26-03d4c5749d65','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-2-3'),
('71946a50-4961-4899-bd68-b899aa8a0923','dc390da6-4128-4077-b3a7-07f6a89a5beb',100,75,70,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-2'),
('7196c624-d54d-4353-8fb0-34c3c1f58437','24781fe5-c8a9-48cf-a94a-3c61efb0a699',43,15,15,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-4'),
('7198c922-80d1-47cc-bbf1-718ae679eabc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:36.679','248284003-1-46'),
('719a3a35-d8bf-45af-922f-7fd0ba01e1b1','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-65'),
('719aed5d-c736-4264-86c6-1635416cb4f6','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-8'),
('719cd725-151c-4835-aa25-9a32236cb133','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-3'),
('719e3774-8131-484b-a788-f19f876194fc','fee6d28e-ec96-4152-8bd2-97598ebbd691',82,181,7,0,NULL,NULL,'598604443-4-1'),
('719ef725-34f7-4490-9723-054550b7dabf','ed134a02-1a23-450f-b473-72a8e8cd94a9',0,0,0,0,'2025-03-24 16:01:57.284','2025-04-02 18:56:20.189','745724851-1-2'),
('71a1c0e1-c867-49d3-a5ca-242f962052a8','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-14'),
('71a1fb5e-e662-4c75-871f-bbcbfc2e2099','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-23'),
('71a49f57-36cb-4bf7-9601-9dc052567010','f8da3047-bd3e-4abb-838b-cb388b449675',100,100,100,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-2'),
('71a68523-4eae-4abb-b49a-f5d1ed234d52','ec048287-78e2-41ed-9182-4554beb97192',102,121,65,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-3-2'),
('71a9d726-e14b-4d30-a70d-b4bb298f3584','a061c475-401f-4f65-ae66-2bc9f4569248',120,95,68,0,'2025-01-04 10:47:36.816','2025-01-11 14:07:41.414','501345257-1-1'),
('71aa474f-5abe-47f2-a762-ebb68ba69b5e','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-10'),
('71abcd59-f2f1-4ff3-83d4-da31cffd55b8','0367240f-e4aa-4d5b-a069-fbf9bd8627bf',0,0,0,0,NULL,NULL,'74546300-1-3'),
('71ac0e0f-e81f-4296-bdc2-a94a728777c7','01445163-8215-4106-bdba-4d0bf73930fe',96,94,70,0,'2024-08-21 14:52:33.316','2024-09-02 08:33:41.727','614462377-1-4'),
('71b19698-0889-4000-8aa3-aed7bb07874b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-136'),
('71b27a73-1d8f-494e-9b54-401066e1450f','5478abc5-9d64-4211-bae8-54bf5172ebc0',0,0,0,0,NULL,NULL,'982268643-1-6'),
('71b34934-ca87-45a8-b48d-5168fb8739ad','c7fce8c7-acfd-4c12-8db5-81618a4b211d',16,40,100,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-11'),
('71b3ba9f-0aed-400d-bf19-f49e3a38662b','a705de61-d772-4a7d-92e2-87f1e616ec0a',45,38,236,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-3-1'),
('71b63ede-4518-49d1-b713-f653f94b4266','fb752cd1-ddbb-458c-8371-2851b143968a',91,235,62,0,'2025-07-12 09:19:03.318','2025-07-18 22:03:30.292','98221051-1-1'),
('71bde3df-cbf8-4f7e-9d7f-0a4a76429514','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-131'),
('71be1c8b-368a-46df-bee8-7b09dccfb812','77d5f4ad-8065-46dc-b85b-91e145b84c8a',16,96,160,0,NULL,NULL,'221410306-1-2'),
('71be9997-70bf-4972-93ff-dcf037a0eab3','bea7bfd4-c724-4bd1-9622-cc671ef16009',0,0,0,0,'2024-07-30 14:58:36.700','2024-08-05 20:20:51.622','412330197-1-3'),
('71c2b7df-ca1b-4032-8ce0-d6427229e1b1','cc500972-1de0-4a6c-b6bf-789f51e9fc9a',70,230,100,0,'2024-11-21 10:29:13.569','2024-12-14 08:24:23.414','98285799-1-3'),
('71c340eb-9923-4ef2-bbce-c0ab00247706','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-32'),
('71c5234f-3e16-401c-aa4b-6447472e692f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-122'),
('71c9aab5-3f16-456f-b2f2-6347b2796749','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',65,94,50,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-14-10'),
('71c9cc70-ad63-499b-993f-40c6b552b601','87a6eed1-72e9-47a2-abf1-2f9ad0b45962',0,0,0,0,'2024-12-23 12:00:24.883','2025-01-09 13:53:30.063','74513098-1-1'),
('71cc969f-5de2-4cd7-8714-53824ecb961a','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-9'),
('71ccf15a-adca-4cb0-9dc9-2d98fcb522c0','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-36'),
('71cd5eec-2c53-4399-aafe-773e9b0d0341','e19ff5c0-c85c-4ece-a9d0-cb1eeeb4c292',65,92,92,0,'2025-10-20 07:18:14.790',NULL,'61340935-5-3'),
('71cefbd9-2f0b-4ee2-9289-a6041c500b50','291a2ff2-a042-49df-a88f-5eeac8ddabcd',56,100,80,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-7'),
('71d2830a-8426-49c3-8d07-3afd527dbb4b','a5506c59-0e9f-48a6-9b69-13a5163cf994',130,24,7,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-7'),
('71d29da8-6d19-479f-9fe5-1fe023d38ee0','f0d0f679-0435-47ac-98c0-ecc939f711dd',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.875','910775394-4-2'),
('71d2cacf-f5e1-4b59-8e64-56f413439c39','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',105,23,23,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-5'),
('71d525e8-8579-4e3d-b217-edb0eb8e5eb9','23916ed8-c0d3-4f6d-b7d5-f8117e883299',228,145,7,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-1'),
('71d52e25-9172-4010-a30d-9b1afe95ad3d','d4f91387-af40-4672-a65c-7ea6e96f76b2',47,10,147,0,NULL,NULL,'478350685-7-6'),
('71d7c5a8-9eba-4220-8484-8824a757a6f0','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-6'),
('71d94008-71f8-4b8d-97d1-09e92eec8598','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-5'),
('71de9224-aa79-4c40-8e95-f9b3db8f7ee1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-92'),
('71df884a-1a2c-43a4-bcc6-1179c8b9b4ce','41a97f13-3141-42bc-acfc-50b87c2de9f2',0,0,0,0,'2025-01-22 09:07:18.972','2025-01-30 10:57:03.702','745302940-1-2'),
('71e146ab-4f8d-470b-9032-52b62df3070d','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-1-2'),
('71e20c96-d52c-40df-87fd-e6d132784356','e619eb30-ffe1-4f0f-8b5e-957c09a8c7f1',80,56,110,0,'2025-10-25 08:59:06.361',NULL,'43750462-1-1'),
('71ec8096-37a4-4a11-90ef-f2aa94ae1c75','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-6'),
('71eceab1-c56f-4b72-afc1-d4bab051d3ae','d9a12366-07e8-4d5c-897d-e9877a9ebe15',51,51,77,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-3-1'),
('71f23fb0-358f-4092-894d-6e28fcb120f3','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-90'),
('71f3f6cb-886d-4343-a98c-ca7b483d59e8','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-13'),
('71fb9b3f-909e-4026-9e9d-499b3238f361','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-1'),
('71fda106-c89f-4807-82c9-73c3f1d3610c','330e6f68-483a-4357-959c-dce6efe61d45',100,65,75,0,'2025-07-02 12:43:26.635','2025-07-23 06:17:56.348','428173598-1-2'),
('720103ee-1c5a-4a69-b57d-57f827e6762b','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-14'),
('7202f2c0-d7c3-4be1-8893-40587562f99f','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-26'),
('7207c962-7eeb-459d-93ed-dc12f6721928','ef493929-9eb1-416a-84e5-6de254a218f3',75,123,7,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-3-1'),
('72126fe0-3359-4b19-b1ab-40a3fda2acbd','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-18'),
('72160c9d-4e83-43db-8eff-72356d9c4dcc','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-21'),
('72162275-40b7-48d7-bb43-d3119dd99078','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-11'),
('721aef81-031d-484e-953e-1a274bbd5a92','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.697','449921347-1-3'),
('721c183b-4adf-44a3-8efa-da69ff940694','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-12'),
('721cf6cf-829d-4777-80fe-a93039a3d5d6','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-125'),
('721d8349-4918-4aee-89e2-a53bb4fd333b','7e89be5b-8c27-4449-8aa1-7cad96813301',90,240,90,0,'2025-10-02 06:45:52.445','2025-10-16 15:47:14.752','428391947-1-2'),
('72213aaf-d20d-4888-a6f8-a37125e6a487','886e0e1a-c599-47ba-bacc-c329212cc55b',8,144,4,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-10'),
('7221469b-e9ea-45e0-970c-a15e8714bd30','a5626ae2-9a5a-4401-9095-a368c22814f1',90,20,14,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-13'),
('7222f45e-c321-450d-bc82-3cb93f35ff1c','43e258f2-7cc3-4e63-be4e-0b2929334761',120,200,28,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-8-1'),
('72245b42-ef3a-4570-ab1a-501ea3ded810','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.426','315389904-1-20'),
('7224a60e-4089-4e4b-b30f-7e6542c8a610','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',225,90,70,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-6'),
('722be9bc-66be-4a3a-8be9-53a65f5ab261','41d63bdf-b3e0-4aa8-a76f-ffceee8b0290',51,51,76,0,'2025-01-26 10:54:28.814','2025-02-08 15:05:06.582','221440431-1-3'),
('72306da7-dd0c-4434-8445-6144853cf7b8','92a145d8-7167-461b-8674-419e94785674',230,70,100,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-2'),
('7230ab1c-6b0a-4528-8a4d-cb9f2882c53d','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-92'),
('72360b06-629d-46b5-8696-74d76617e016','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-4'),
('7236a692-b519-46be-a216-51466423b2f9','af69c5a3-87d3-4548-a650-720b69a4fc69',91,3,212,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-39'),
('72376751-9ee8-4e1b-9433-388eddbbb3c1','796fef16-71d1-4946-b8ba-54f687adf598',240,92,65,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.367','982944278-1-15'),
('723bd13a-af1d-4c47-9d27-140716a77fd5','46967417-5579-4330-96d2-b8546922819a',225,94,74,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-4'),
('723f5618-699a-4c56-8dc5-48a1219dc7f2','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-13'),
('7241b79c-df8a-45c0-aaff-bea0f4a5f00d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-145'),
('72455785-0129-413a-95ac-2f865c5f1332','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-131'),
('7248a11d-32c0-49b3-b707-217dd69cca88','03ad506f-f86b-4dbc-952f-52b01e2467fa',198,31,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-29'),
('72494141-8e4e-48e0-9805-206654592490','9114ad70-d53e-4d1f-89c7-30585d0a43de',112,37,13,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-23'),
('724acf9a-c50a-4873-91c7-16a16090b14e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-158'),
('724bde78-4365-4c1d-9bc1-94067878232c','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-32'),
('724f6fdd-a417-4e75-9fb7-4fa55f6e17ad','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-19'),
('724feae8-c6f5-43ec-b075-d78baf18cfd5','cee76706-8686-4b5f-b415-fa5d54173ed1',240,60,90,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-5-2'),
('7255b8fb-7f6d-488e-b7c2-8e89f5b99e42','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-57'),
('725d84be-47f5-468a-ad71-2c437d9083a3','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-3'),
('725ed89e-7697-445a-8317-5f997f60101a','b5b0b7ac-87b6-4580-b7a9-4105fadd6d34',99,68,66,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-4-3'),
('7262ab78-2953-4ab8-95c9-ff45368be97a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-168'),
('72652c4b-e724-4841-903c-90cf05ca4f58','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-14'),
('7265b3d3-f259-4815-a697-07ecfe84bdf7','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',150,22,10,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-22'),
('726737aa-5244-4ab4-921a-8f2d3b320d1e','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.135','2025-07-25 18:05:24.877','412378459-1-6'),
('7267ae48-5870-4e9f-8830-994dcca1bd5d','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-5'),
('72692856-f9b0-4abd-acc4-427f70c60756','8ae18186-b64f-4b09-b81f-8095d536895f',112,82,56,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-4'),
('726ab7df-ec9f-4286-844e-2b97f845c5c9','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.116','22164822-4-5'),
('726e055d-b5dc-4700-8d41-3514ad23c53d','177452de-a019-4a63-8749-61daa619034c',0,0,0,0,'2024-05-10 18:50:11.428','2024-06-04 14:25:01.923','126922033-1-2'),
('726fedda-4bc9-472d-8e90-106c0df8649c','bcbbd32d-478e-47f4-97ba-0a391ba7a4db',38,38,47,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-2-3'),
('72702ecc-8c4f-4601-b8cb-966b22024bc9','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.585','412871738-1-43'),
('7271366f-3165-406d-986b-7b481fbce8b1','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-38'),
('72733f3f-0e35-475a-a5b5-6729f6be9df2','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-22'),
('72736729-cb80-4b68-b1e7-b6921f7ccc83','6b893fae-c5ae-430a-922a-8b76921e755b',55,84,108,0,'2025-08-14 08:21:42.890','2025-08-21 08:13:45.093','43752518-1-3'),
('72739b40-a18c-429b-a88f-9039319a7e67','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-19'),
('7277804d-8a6f-4107-918c-33942c2c53a1','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-12'),
('727b647e-924b-4f6b-b97e-29fd9909831e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-52'),
('727fe038-091a-4ab5-b5c6-94a106d6267a','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-7'),
('7281f20d-7671-4486-b40f-a70468794eb7','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-19'),
('72888ddb-a1ef-4aa0-986f-a3117283e01e','20f24d72-3cfb-43b0-9073-f7bf755859fd',51,51,77,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-2-2'),
('7292b633-10fd-4c27-9da6-f2673ced08d4','a3c7cedc-5869-462c-83ba-d69c3bd9dbdf',58,76,100,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-2-2');
INSERT INTO `shipmentpart` VALUES
('7292ef92-a2ba-4730-b58a-a06472485636','b153c580-1fa3-4d05-aed9-d033117f4c17',76,57,101,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-6'),
('7296f0d3-96ee-4d00-947a-de284eabf657','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-63'),
('72999f43-9a4e-4874-8d9a-4f1633ae4e6e','97ed1835-e7ce-4f2f-9729-01e5df10301a',50,75,75,0,NULL,NULL,'745995046-3-3'),
('729a30fb-8267-498a-a46a-1590f71ab756','0d90ef6d-e963-4a99-bbbe-e4ca67429574',53,27,17,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.982','750125400-2-5'),
('729cdbe6-0aae-4846-b33d-71397a52846c','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-11'),
('729f3545-e5d1-4d4f-a927-306d87046098','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-5'),
('72a02e7d-46d6-4ad9-b3ab-1ea52f2d9213','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-9'),
('72a3673d-6707-4eba-9061-6ad7f12cafa4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-227'),
('72a8c777-b257-434a-a4fc-331d94eb120a','2e0ecff2-b03e-4c77-8804-bb606172165d',53,77,102,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-1-2'),
('72a8db55-b40a-43f6-879c-5daa4e2fcf03','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-10'),
('72a8ee4a-84df-4004-85d0-d5519658717e','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-3-2'),
('72a9d06c-be62-4892-ab98-85f9dc432c44','7311f1e0-e2be-43dc-9e40-f94a010e8939',122,55,2,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-30'),
('72aa3b1b-219b-4498-b282-8cb1361a0e9d','b96216ca-b026-4c3b-b8e0-ecb7a190fb52',0,0,0,0,'2024-03-23 08:36:03.001',NULL,'478158518-1-1'),
('72ac5138-cea7-45b7-b06c-dc3ee5d7506c','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-102'),
('72acad89-414f-4f04-83af-a4e70f68a5dc','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-12'),
('72ae30f7-db9d-489a-a1ba-811a6b190a9e','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',65,110,110,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.152','127865742-2-1'),
('72af81b2-aac9-491b-a0db-744012fe3f7f','9212dfa8-08b3-4e92-93bd-a594eaf017b6',107,212,9,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-5'),
('72b138da-e650-4d7c-88e6-e86e0bb2cac1','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-20'),
('72b1e91e-191a-4ce7-a824-8cd43b727e73','4301b768-4818-4e74-a6d0-12a33474f5c6',72,192,2,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-12'),
('72b8569a-cfea-475b-ad52-88805706a7b4','4869c334-4618-49fb-9d03-99d95654d12a',48,60,71,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-11'),
('72c1ba12-ed75-4495-8a81-e06a9c2a4aaf','016dfb52-0431-472b-8ea9-e510a1937e2e',110,37,230,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-1-4'),
('72c34f3f-b0d2-4007-ac4e-a7f15a48ba7e','336b127b-d219-49c7-8661-4258d8834fe9',51,51,77,0,'2025-04-21 06:13:38.052','2025-04-28 11:59:44.002','64451300-2-2'),
('72c829ff-287f-470d-8edc-8f2c44ed8a40','a78536c6-c5ec-4e6f-9f6a-e893d5c6bb4b',53,51,78,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-3-2'),
('72ca6ffb-7cfa-4b67-beaf-9e5fbc0099e9','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-2'),
('72cb29b3-65dd-456b-812b-7122777d77db','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-10'),
('72cb4352-734c-4240-b428-de567b9350ef','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-14'),
('72ce5155-e66b-4ca6-bc70-2f0a1174ab17','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-5'),
('72d26666-3569-4c00-adef-5f381345a38b','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-8'),
('72d50905-0155-43ea-9368-00fa5ebda321','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',43,80,24,0,NULL,NULL,'011548428-4-10'),
('72d52456-b5f3-49b3-890c-c2b78a3810c1','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-2'),
('72d63c19-baab-4c1a-add2-1de333c2c7f9','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-230'),
('72ddb6dd-eee5-4318-9e2c-7677b3a38eda','21f74ee3-8163-4caf-be93-184351bbdc71',109,126,65,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-3'),
('72e102b8-3ae8-4d70-a78f-64a261518417','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.406','412411011-1-3'),
('72e14ff9-2138-4e00-9b99-cb44407d6192','c1d25f90-d493-406d-a430-9b65b4f44c5e',86,3,205,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-8'),
('72e16812-80d6-4be8-b1e8-3bca56365bb2','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-5'),
('72e4900b-a874-4f55-88f9-413278363bd5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-147'),
('72e77643-862f-48c2-b051-25612bd0cf91','5f740c2f-b4a8-4058-8f15-0c74025f8ecd',90,125,45,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-1-3'),
('72e9f376-2d3b-4b0a-9dc4-84b42392dd54','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',100,80,65,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-2'),
('72edfd53-bffb-4e64-8b06-83a31fe5acac','bd176b24-f129-40d4-8c33-6b35eded0fad',46,22,72,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-5'),
('72ee1197-9b6d-4222-814f-1523d09f7a7d','0803fa20-5b74-42fc-8f96-ac10c2c5324a',100,17,19,0,'2024-03-31 17:55:08.069','2024-04-12 07:17:12.019','982992264-1-4'),
('72ee337a-7050-4fda-bd78-6dabd400b593','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-5'),
('72efe9ed-4d87-400f-aa95-f4420354b545','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-11'),
('72effc2c-fe11-42f8-91aa-47c03d4aa182','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-25'),
('72f08ff5-ccf9-455e-aa0c-3ca4939eae09','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-9'),
('72f10fd8-fda0-4e25-8061-f9da32f551a7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:36.231','248284003-1-28'),
('72f34834-0105-40c9-a487-0d63cbd63359','3535d433-eb38-4879-84b4-dbf8410809cd',58,42,17,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-36'),
('72f39700-509f-4013-8732-99590ad919b5','7c7686b8-8f65-4271-acac-1585b7485563',229,84,72,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-14'),
('72f4a5e1-3031-4765-882e-d63c2eb1606f','9866a947-9974-4053-8415-4518842488fe',50,94,94,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-20'),
('72fe3eee-23a3-4578-beaa-1ebb6b24ebd2','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-1'),
('72ff71a6-6c88-4921-87f7-3f0047ba1e5d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.566','221339460-1-29'),
('7303eff6-0212-4b5d-9a1c-01c8e7f46f1a','686241ae-bda0-46d6-810f-2b17e9e251cb',97,197,70,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-1-1'),
('7308a16e-fc57-4b79-bc13-fbf433d5cf7e','4a37c431-7317-431b-8aa0-05bfbd0b8456',0,0,0,0,'2024-06-08 08:00:19.084','2024-06-20 20:15:47.637','449627061-1-3'),
('730b87ea-3865-436a-8590-f40bd6e6aa23','9e5026fe-8d17-45e7-be7e-1fd39ec1f746',51,51,77,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-2-2'),
('730f42dc-c1ae-45eb-8830-9f9b90849ce0','a87576e3-14e1-46a8-99c7-1d48360995f5',100,40,30,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-4'),
('731577fc-fb42-46c2-ae62-fef3f4ab16b5','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-18'),
('731597dd-89af-4c4c-bcda-1b290698477f','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-1'),
('73160f22-bac3-4e63-8663-cb5139331471','b2c78cf5-c58c-4553-bd14-49e83916894c',49,49,73,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-6'),
('731d7f4d-75da-4438-a041-cef66251dd9e','2ef10f17-04cd-4b22-8b1b-2915e55684f2',98,100,70,0,NULL,NULL,'50538335-1-3'),
('73227193-6589-4074-b4e6-1dc71628c1a4','a5626ae2-9a5a-4401-9095-a368c22814f1',165,37,37,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-14'),
('73241d9d-5585-4cba-90e9-6a1eb86db491','6aee7799-2e85-45ac-8d17-b03d8bb86a22',300,90,64,0,'2024-04-08 08:57:51.902','2024-04-24 09:15:02.815','315752826-1-1'),
('73241f46-7352-4d46-a36e-d6baff623b97','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.077','449902693-1-12'),
('73247972-6903-43c2-b354-139a63aa035e','fdf16f88-69c1-48dc-8781-5ef64e6edbfa',0,0,0,0,'2025-02-23 12:39:19.931','2025-03-05 14:40:41.541','745523335-1-4'),
('7328bf5c-c61f-427f-9125-5258348f46eb','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',50,206,6,0,NULL,NULL,'531240111-1-2'),
('73337ecf-02b8-4233-b9de-a92fa6c8c23b','46d1512a-2bfb-476d-a224-9390f3e194f2',143,190,14,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-13'),
('7337dc2b-e381-44a4-9740-e3213310795b','8baea4cf-59e6-4595-a565-1754d9ca8bb7',117,93,65,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-1'),
('7337e295-885b-4cf3-af13-ff1c6d530672','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-28'),
('7337f04f-6e86-4679-916d-99be25600720','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',197,5,98,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-1'),
('73397661-281d-47fa-9a75-3d91915dcc4b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-18'),
('733b099b-93b6-401e-a512-94d9b7a9796f','40158b47-f950-4e8b-81b2-1badad2ece04',127,127,7,0,'2025-10-20 07:18:12.637',NULL,'531606130-2-2'),
('733cb210-3240-4f11-8b4c-e002eb7af2d8','8b5e9a20-db1a-4fcf-8fe9-eaab2507cebb',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.515','478861689-1-1'),
('733d8ecc-f8dd-4e7a-bc6a-842bc8f947e1','2f648ea0-48c1-46b4-a5f2-0d0c23a5709c',105,182,6,0,'2025-10-20 07:18:04.670',NULL,'517619393-1-2'),
('734172ac-26ba-4bb2-821b-6fdb7717ace7','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-13'),
('7342d47a-a9b8-4a0f-ae59-aa11842f791d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:45.418','248135683-1-31'),
('734321ee-a3f0-46a4-be56-f15784ae17da','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-11'),
('734393b4-9679-4715-a29c-2c32db0b5a8f','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-22'),
('734420fd-803c-4622-94d4-a3db5601c803','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-116'),
('73486df8-9343-4a23-b1c2-511da02446db','7908530c-18a1-4a83-b5c2-fdea91117bbe',235,100,60,0,'2024-03-31 17:55:03.269','2024-04-15 11:37:34.889','449178440-1-1'),
('734ccea2-9ed3-4b93-ba1c-9ae018569f00','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-12'),
('73500647-391a-4764-812c-dabf01730db5','0fc25d41-fe66-4797-a304-92adc29b59c1',95,65,232,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.174','910594430-1-2'),
('73531835-9524-4148-86e7-4e18d05d01b1','86d6c74a-fed6-4b24-a3e8-4af8a7cfed33',45,45,76,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-3-3'),
('7354b196-6ef6-4f5e-8ec7-4f48fc865422','be81a593-813e-42e0-964f-fcbe3778c917',100,72,80,0,'2025-09-06 07:20:17.821','2025-09-16 06:34:26.391','371695056-2-1'),
('73558b79-c259-4009-ad86-75ae6099891f','2e0ecff2-b03e-4c77-8804-bb606172165d',53,77,102,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-1-1'),
('73595db4-f492-4e32-9226-34a906bc0912','e9626be5-ddcd-40d5-865d-7018bc1ef9df',120,80,2,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-8'),
('73599a1c-e6cb-4983-8db6-0f0466baca0f','40d58b2c-a3e8-4cab-a242-12a641f6f94c',15,17,100,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-2-1'),
('735c3b1b-c8dd-45ea-bcd5-d306ffd90946','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-50'),
('7360a302-fd34-4769-9e77-49138c049edf','6f008251-c003-4235-8950-f5ecedfd319a',206,70,97,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-1-2'),
('73612dee-7d48-4abb-8e60-b09eef684a1b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-50'),
('73636571-09be-4814-8e03-b3c460a83c0f','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-11'),
('736783b0-19fd-482d-bd17-f377d81ff082','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.827','598876994-1-4'),
('73681331-daca-428c-a55c-fe53cbb2c51c','4886e0ff-5157-4282-8e44-13be4b4cbecb',0,0,0,0,'2025-10-22 13:07:09.019',NULL,'412757812-1-1'),
('736c42cd-5f74-4145-8a7e-9f38a766fe5d','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-49'),
('737169db-c45e-4b31-8c13-acf09671cdfa','3ee7efa6-3558-4b02-a610-7981c42e78e3',85,80,65,0,'2024-12-01 06:47:55.166','2024-12-12 07:41:31.232','614352-1-4'),
('7378d167-ed12-4767-b408-577a00d4656b','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',100,75,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.426','319911664-1-6'),
('7378e1e7-fe45-41cf-b790-f639980d7609','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-10'),
('737df03d-b1d3-45f9-b977-43be36909ae5','546ad3d0-25c2-43dd-9443-e48b8e5b6530',55,22,8,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-62'),
('737e163f-4e3d-47d2-9f4f-9ad4561eefeb','ec1acc08-4857-4cc5-a6b8-e2ff799a9b1f',0,0,0,0,'2025-09-02 14:49:08.440','2025-09-12 19:47:12.201','663458477-1-1'),
('7380fc26-e6b9-44e5-a28e-2ba72e13a3a3','8cc650a8-67cc-4e6c-b514-6243b6970c09',0,0,0,0,'2025-04-15 16:01:22.757','2025-04-26 17:56:55.530','478285861-1-1'),
('73818620-89f7-48f7-97f5-5a24a97a630d','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-3'),
('7383edf5-6635-4004-9a32-5b8f3898824b','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-49'),
('738b3f45-2608-466c-8ab1-7ff626bfad24','5089704a-e90b-41d3-a4fd-0f97ee26031a',51,51,77,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-3'),
('738e8442-8980-451a-89d4-86b69d620230','3eee5b92-2a7f-4edf-af88-5ad493656745',70,106,88,0,'2025-10-25 08:58:56.097',NULL,'486741087-1-2'),
('738ed9ce-53f1-4507-b9cf-060262469b55','f9861f37-efe2-4e3a-930c-f694c4e10c6f',7,73,120,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-9'),
('73950436-7d2f-4b0c-a798-b2940699b03d','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',30,21,22,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-18'),
('73951361-309d-4b76-b91d-53798293eaa2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-27'),
('7395ef4a-13f6-4eca-b29f-7696cbdc4839','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-2'),
('7398fca8-06b5-46e5-8868-b750a236cd6d','a6c12d5f-9151-4818-a6da-99773bbe3f36',51,51,76,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.341','644890175-1-2'),
('73992d27-6905-496b-990a-54424d43ba3c','d9c96ce5-7311-4159-8c51-6a1a744d0c49',190,27,44,0,'2024-11-25 08:28:48.881','2024-12-05 16:17:13.323','501760253-1-9'),
('739ebdf7-bb23-4668-b9ba-16a7e2bd8a6d','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-93'),
('739f4e9b-0c21-4eb6-9920-e3564395e600','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-19'),
('73a1c733-939e-41d4-ba03-5d4353a402b8','5aac8c34-51ea-4438-b73e-7d54bf02d518',46,48,29,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-8'),
('73a466ee-a2d3-48af-bd9b-a9c35d1bc108','c9afd200-5d14-4c16-816c-282d1b5697af',0,0,0,0,NULL,NULL,'371747945-2-2'),
('73aa2da8-c626-4c0d-a4e5-c27e5c0e453c','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-3'),
('73aacc7d-4f21-47dd-88ba-7d2cad702759','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-22'),
('73aaf290-e4f6-4a44-aaa0-4a958d133be0','39e46e46-90b5-4ba0-a0dd-d262263fc640',109,8,25,0,'2025-09-11 06:34:39.385','2025-09-20 19:00:18.891','221594735-1-2'),
('73aafa5a-92c0-4fb8-94bb-ad7e65bb809a','7c7686b8-8f65-4271-acac-1585b7485563',65,65,90,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-1'),
('73ace619-e530-4272-bf42-3a34bb5ce66e','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.585','412871738-1-44'),
('73ad8a30-ff5b-416d-8cba-88c9a1da4fe5','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-8'),
('73b08bbc-1c0b-44b4-91f1-8b2e50d4fbbe','4d14c601-a3ac-47d6-83c9-24f76b7cd030',0,0,0,0,'2024-03-16 14:33:56.774','2024-03-29 17:58:02.407','478125578-1-1'),
('73b09be2-92d6-4802-9698-ea7ea1ce2a96','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-40'),
('73b37d0f-bf74-4170-8f5b-6ae21fbad70c','b49cb98c-d264-4e82-9dbe-f0420dad505a',100,55,45,0,'2025-10-22 13:06:52.544',NULL,'786146097-6-2'),
('73b5a1d5-caac-49fc-a367-3737a5fced5a','7b2d4551-a99f-4fb6-8215-e7af3afe860e',90,27,200,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-7'),
('73b756b8-cdfe-4e0e-b481-afbc0710f050','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.921','2025-09-25 06:55:47.159','223254418-1-85'),
('73b9886f-6885-4aac-ae96-ac9251f125bd','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',44,63,24,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-3'),
('73bb717a-33db-46ea-b3dd-1838fbb610c3','c7711311-d9e2-44ab-9529-bf35ca0a141b',190,35,35,0,NULL,NULL,'613592756-6-6'),
('73bc08cb-4832-48bb-ab26-3b19b719a28f','6ae0233f-f2c2-44bf-9706-7274e4c923e9',31,31,31,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-6'),
('73c22f52-8b35-4d5d-a0b9-60ca022e0d6b','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-13'),
('73c3d2bf-7a57-4eb9-b9fa-f72bc0733698','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-1'),
('73cc40e9-941e-4a3d-8795-aa1dc6644a88','06036ad4-83e0-4244-a783-5ad208e02a0b',53,103,76,0,'2025-07-02 12:43:39.481','2025-07-18 17:08:45.020','371282604-1-3'),
('73cf68d0-b400-4a18-9045-cc9cfcb65fb2','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-42'),
('73d04666-dff1-4ede-a5c7-c2348050bce1','c37afb63-e442-499b-a52e-405f6d0d0685',36,30,20,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-4'),
('73d0d19b-d888-44aa-bf4d-1538d537b254','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-3'),
('73d2f880-39f2-400e-9443-cc56c6864518','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-14'),
('73d3d560-853f-47af-9fbd-4387cf034572','561d9221-379f-4c95-8048-1cac9299f181',41,59,53,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.471','428182749-1-1'),
('73d52168-9320-424a-bf33-9afe52172798','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-7'),
('73d5cfb7-5e1f-42a4-9515-3c20ae81340e','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-7'),
('73d76323-ffb5-4936-89a1-ea9a85e78565','8430af40-36c5-4b58-b933-e2ca938f7a86',105,110,65,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-1-3'),
('73d8c516-5a4b-4d01-bd74-09bc6407d9cd','80953bac-8441-464b-ae38-3bdc43f14985',0,0,0,0,'2024-12-18 09:31:18.009','2025-01-10 16:33:22.776','745283034-1-2'),
('73db3fc8-4012-455e-bdfe-c6f211a5251f','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',68,102,110,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-4'),
('73dded43-9e25-467e-aeb0-ae006ae703b5','c98f6188-56c5-4870-be97-be71cf95f62e',90,40,40,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-28'),
('73def099-6c27-4a58-b28f-dcf4675dd5b9','a970a3f5-58bb-4e19-be39-2b2e53a6e56e',50,50,78,0,'2025-10-22 13:07:10.734',NULL,'011766113-4-2'),
('73e14df8-4223-4dd8-8b07-e6fa64bd84f9','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:06.862','248135683-2-49'),
('73e1e1c1-3ce7-49f1-bf17-136ecd5998c7','56ea7179-a602-4433-936e-330a27aa9423',81,201,28,0,'2025-09-26 12:39:06.062','2025-10-07 14:12:37.914','745464679-1-1'),
('73e36a47-0356-4fa8-90e5-90583ab84812','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-24'),
('73e54065-e9d4-4842-b583-0277531edc2a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-122'),
('73e573e2-744f-4e82-ad5f-bd0910bd025b','96449af3-c272-4a90-b77d-0790552dd455',87,65,202,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-19'),
('73e76e6d-f773-440e-af03-e601e4f0e444','a135c145-15f3-450a-819b-e82b427bc978',90,80,100,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-3'),
('73ecd8dd-0c2e-467b-ac8d-9ec9a9b797af','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-6'),
('73f4262e-1d8b-4e4e-9fb0-0654b55ad4b9','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',4,58,214,0,NULL,NULL,'47816855-2-13'),
('73f781f7-388e-446d-9786-30762459c532','e0cc17a2-4392-42a5-a637-de0f1c60c459',22,35,110,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-3'),
('73faba46-03b6-42e8-bccf-5bf2421f6759','546ad3d0-25c2-43dd-9443-e48b8e5b6530',59,63,41,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-37'),
('73facb03-0733-4f5a-87b5-417b0da01b07','23916ed8-c0d3-4f6d-b7d5-f8117e883299',50,100,9,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-6'),
('73fe2df4-829b-43de-bfbc-158dc541f14e','630d42f4-c9b1-4b32-9b3d-39e20b4a7b35',70,70,95,0,'2025-04-30 14:28:58.969','2025-05-14 06:37:48.850','745173444-1-3'),
('740029cc-33fb-4560-af12-29d90d0113a2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-223'),
('7400f0db-f0bc-4c69-bebd-6b2d586901bf','0bd42145-fdd8-4793-a5cd-a2e404d37142',205,60,10,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-9'),
('74027673-6c50-484b-95fe-26d2003fb5f3','6c7f7eb0-0e54-462f-9045-071cf525c2ed',200,90,30,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-3'),
('740591db-4b6c-4b21-8a73-2682308f0345','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:46.426','248135683-1-42'),
('7405ad2b-ca17-439e-a700-3a4496965a8e','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',75,75,85,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-6'),
('74078cee-5a39-4697-a6a7-f00d80f8b8db','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.578','2025-02-14 10:41:28.342','221859569-2-5'),
('74091b85-2ee8-465f-8151-9fae5fd100dc','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-7'),
('740af765-9db0-4b40-9841-b74a50c4e33a','69acd97e-52c0-45ae-adf5-ee013e52776f',69,29,29,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-35'),
('740c667e-1f19-4f45-beb8-3168520d4ee7','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-16'),
('740ca2bb-bccb-4ef6-92d2-2ff48c7efcfc','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',58,58,25,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-4'),
('740e983d-72d2-4b45-98ee-bf1a2e1450f6','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-5'),
('740ec21d-86cc-403b-8a39-e6747025611e','8b91c5e7-c071-4573-88e3-5264c5dc164a',51,51,77,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-3-2'),
('740f21ce-19a5-477d-83c7-199c9c9e98b8','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-20'),
('7411bc86-93b0-44b1-82d7-9214beb95c94','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:37.628','248284003-1-49'),
('74145c95-5e9f-404c-a984-066a0e20fbdf','bc27f6fb-29e7-4868-a1a7-34e9df8d2c77',0,0,0,0,'2025-07-02 12:43:22.406','2025-07-23 06:18:24.906','41295798-1-2'),
('7417ade1-c4f1-4535-841b-edef8f64fe6b','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-7'),
('741b329d-4c33-4e3e-b36a-a62ba27917ce','dda0b7bc-55fb-4b7f-ae16-27ef12800819',65,95,217,0,'2025-07-02 12:43:47.546','2025-07-18 05:16:04.066','371186967-1-4'),
('741feb88-0b1a-4011-b6ec-61ea7e5addc7','f9e43273-b7fb-4f2a-a82e-67f60793eff9',95,60,100,0,'2025-04-11 13:41:43.125','2025-04-24 15:02:05.019','745767667-1-4'),
('7420e9dd-acf3-4244-a6c6-6fed4b93769d','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-14'),
('74213d29-a3fd-49e3-80e1-0556c23bb07d','c321bcb4-e9ea-4666-adfa-15a8c704d731',60,65,90,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-6-3'),
('742328bc-d673-4235-889d-aafe570492fe','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-24'),
('7424f0b9-2f98-4d40-9dc4-3633b66f55ff','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-22'),
('74273ec3-d2a8-4d54-8de5-c2cb07b7e5f4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-16'),
('742e8129-f657-4117-a41d-41d338c73040','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-12'),
('7431a00a-b85f-4bb4-a82c-c169b33cfc50','bbfd2ee8-8b41-4dad-9b78-8a62e2679cea',60,61,90,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-2-3'),
('743244bd-7436-4e54-a58a-24511f5f84ab','2c8ef13d-f9a7-4e40-be91-cb7c4602862c',100,208,80,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.270','896155892-1-2'),
('7433bc6c-4206-4d99-836b-ec1dc69a7425','d2be0913-8bad-4bc5-b776-f2050b939197',230,65,95,0,NULL,NULL,'982759064-5-2'),
('743b3f15-e286-402b-a365-c4ccac4e95d0','307d6f4e-5065-4492-a18f-04b925d71f98',53,72,101,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-1-2'),
('7443762f-e1c4-49de-a7b2-a1d222a89355','a918ff1e-42da-4211-9742-133995470138',68,107,65,0,NULL,NULL,'808690841-3-2'),
('74442058-cd84-4083-b81c-a24eb1a0a4ff','4fe1f522-463c-4be9-bfa7-8a0345fe9fe9',51,51,77,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-1-1'),
('74488659-d214-45aa-8d26-1197a193c7e5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-65'),
('744f23e6-3fe4-498e-a43f-001a0c386491','d83c40d1-4df5-4c97-bc83-28837db95b2b',154,72,48,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-35'),
('7457fe30-499f-4e35-bdfb-890e5628ae88','330e6f68-483a-4357-959c-dce6efe61d45',120,120,65,0,'2025-07-02 12:43:26.635','2025-07-23 06:17:56.348','428173598-1-5'),
('74594852-bb34-4da2-8b83-5a766a07157a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:48.193','248135683-1-55'),
('745d45a0-4e09-4a3b-a649-68d33e534b9c','3fbef21f-32ef-4868-925f-a3a2c46dae90',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.957','745717474-1-3'),
('745eb306-11bb-4b7d-9712-6e41de236290','0ad83dd7-8433-4d6d-90e2-775f048b7855',206,100,65,0,'2025-09-02 14:49:12.103','2025-09-12 19:47:24.575','437762949-1-2'),
('745f25c4-03f9-47dc-8f3f-3d3a6a7ca096','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-5'),
('7460baf5-894e-4c8a-b84d-e264da67eec3','765a8b5f-e302-45d4-ade2-dc2092fa3779',0,0,0,0,'2024-08-31 13:26:40.414','2024-09-08 15:57:17.347','982196265-1-1'),
('7462531f-074c-44db-90c4-1fb6a2672965','958e3421-c3fb-4426-8a47-54e90cedc4fa',83,53,56,0,'2024-05-13 13:11:49.679','2024-05-29 18:59:13.763','126229931-1-1'),
('7467532f-36d5-4859-8fe1-35b284038c56','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-4'),
('746ae5ba-157e-4673-86e1-6991d8f83449','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-79'),
('746b2a9e-ed71-4e34-8d5b-a72ec784a2f2','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-33'),
('746bb482-c76a-474c-8088-e50316cce49a','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-63'),
('746d0f14-a0a1-4ec0-a4dc-8e372971bcfb','7cc12a18-6858-4c55-a9a0-fa838ec5c974',52,76,101,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-2-2'),
('74715d41-4902-4b4b-bcc0-728c21e86750','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-11'),
('74720ddf-dc99-4f2e-96de-ecf124fab34c','7d35f4ea-7482-4542-8fde-94664de7709a',43,43,80,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-3-2'),
('74735b9f-b4ca-4aef-bacc-052f20831d03','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-114'),
('74754fe4-a2a4-4d47-90e5-d898091fb84a','5032b9d1-12b3-43c9-be24-f1af560c5e03',0,0,0,0,'2024-11-15 17:06:26.238','2024-12-01 12:27:55.685','745445888-1-2'),
('74780e88-3be3-4aa7-8cbb-0e96b1288db5','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-70'),
('7478b7be-04c8-42cf-96b2-2af93971d275','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-7'),
('747a1773-6aac-447a-b140-fe72ba797cfd','f095d43a-8f6c-44f7-aaab-aade7799f4fb',95,100,59,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-6'),
('748074cd-ff88-4e80-a097-a7f032e1a97d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-17'),
('7480aa1d-5664-4755-9f45-1cf65803157d','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-4'),
('74810f63-8679-48a1-bf78-877346aad830','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-21'),
('74820c6e-53b7-49ea-bb50-6b0ec6717fab','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-62'),
('74837007-808f-425d-8be1-b211d70dfdee','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-2'),
('748531d3-1be3-466e-8349-0ba62086fb94','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-27'),
('748b9b82-62b6-472b-9d81-6ad9378c8b84','940aa57e-21e8-4cea-ad18-82859c22f018',23,30,22,0,'2025-06-11 13:14:38.730','2025-06-18 07:15:26.935','817121694-1-6'),
('748e35a6-35e4-4d32-9a40-13a5b711e532','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-4'),
('748e7c57-a86b-44e0-a0ac-12c49d7a8c75','ed078daa-30e2-4187-8a4e-f23be3ede906',62,85,80,0,'2025-01-04 10:47:36.817','2025-01-11 14:07:41.414','501345257-2-1'),
('748e92dc-2931-4656-9def-34967ecb4627','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-3'),
('748ec3a0-b503-4aba-8e3b-7ab1f7120e67','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-4'),
('7490d8cb-6702-45d8-8c14-4d24c072af34','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-20'),
('749332a5-42d6-4270-be87-3763aa64f278','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-13'),
('74944d9a-793c-4e0c-a9de-bb2950a46642','4301b768-4818-4e74-a6d0-12a33474f5c6',15,87,85,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-13'),
('749bc0ca-6b23-4082-94d7-a255f7fad113','2eec8f61-f0ba-4216-ba7a-88e2440d43d3',73,53,92,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-2-1'),
('749e3968-f66f-4c45-972f-f0f2f48b51c0','9f336aba-6a26-47d1-a23b-9448c37dd4f9',200,97,7,0,NULL,NULL,'505355748-2-3'),
('74a16c8d-5a46-43ec-9e00-7689afa463fe','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-30'),
('74a4e26b-953e-4abd-85ce-b73c201a6cb0','c08c5699-9501-4ce8-81b0-c32d990db7f3',262,10,62,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-26-3'),
('74ac38b4-380b-4e33-9489-a8749319aa57','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-129'),
('74b116f0-c319-428f-9c14-219c876934f8','bdc15b51-242d-450f-a47e-a75e07f475a4',108,206,30,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-7'),
('74b18881-4c14-4d13-8f2a-376400355074','832915ac-d62f-48db-b00f-8e585de422bb',6,79,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-1'),
('74b4271e-25bb-4fe2-98a9-78ff03268c33','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-2'),
('74b4dbc4-134e-4422-9e6b-43eee281a673','a2996a96-e222-4190-85da-afc912411ba4',49,46,209,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-5-5'),
('74b66748-0197-444c-9820-b8d5dfe52da2','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-20'),
('74bd3fd3-d3b5-40a0-b982-c76404f963c1','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-11'),
('74bf7d27-588b-4f81-b8e7-12a70e4b2973','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',235,103,77,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-19'),
('74c00f94-ae8d-47a1-97ce-91223d581c8b','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-8'),
('74cd51ae-839e-49d5-8973-6926a8ecd214','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-4'),
('74cf43db-9b36-4499-a0ca-ddf114a98422','a2f34510-a7f6-4abd-ac03-e7c577feca03',160,18,8,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-9'),
('74cf66d2-bbf2-4e9a-8015-0aa5ff78643b','eb329603-e121-4099-9308-964edd5b6713',39,39,48,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-4'),
('74d01000-d361-4dc8-8f20-6bd4f3af5262','c98f6188-56c5-4870-be97-be71cf95f62e',47,9,122,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-18'),
('74d15641-f381-4cef-843b-025342e8e563','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-58'),
('74d4db21-188a-49ef-af2d-f76c2e61cc83','2c356607-02da-4a51-85d3-eda95e852225',155,15,15,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-2-2'),
('74d57085-137e-47cc-9705-65bbd666acb8','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-21'),
('74d885b4-eca2-473a-86fd-cd2d3005cb87','7311f1e0-e2be-43dc-9e40-f94a010e8939',228,58,6,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-31'),
('74d94565-fbf2-4904-9ef0-e0bb3c0cd630','a01912f8-693e-42b8-a248-694a4ecac68c',97,97,65,0,'2025-10-20 07:18:12.638',NULL,'531606130-3-3'),
('74d992aa-fb42-4a55-b4f4-41a48e0c1e29','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-18'),
('74dc252c-b382-4dab-9dfe-130b796a6f47','0cc39437-8ee1-47ea-87c2-b9fe770c2259',57,9,217,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-25'),
('74e068fa-85e3-41b3-8dae-112fc4e03622','9114ad70-d53e-4d1f-89c7-30585d0a43de',227,62,6,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-24'),
('74e22c81-cf06-458a-9869-0c4ae570688c','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-24'),
('74e4a5ac-a73a-4a64-81e1-337215f20855','c1a31a07-5113-4703-99ff-14d4a90ef1ba',50,24,73,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-10'),
('74e52f98-fb74-41a8-b3cf-6b5fa695515d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-7'),
('74e68a54-01dc-44d0-a89a-66d79ea0a858','87758232-82f4-41bc-a8c1-71f044bd69f4',115,68,101,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-3'),
('74e7091d-157f-407d-a8e3-fc01d7b904e2','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-26'),
('74ed8172-eebb-41de-a3e6-baaf013f1c40','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.585','412871738-1-45'),
('74f0b2d0-64cf-4e6e-a1b8-082fdba94798','f38f268d-7a32-4f0d-a462-8692167d1d01',203,95,85,0,'2025-08-21 07:15:02.972','2025-09-02 06:52:12.482','478935366-2-1'),
('74f14b08-48b1-479b-ade5-827b6405ded9','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-55'),
('74f4c642-2343-454d-b6cb-af4148595abc','7e33f411-a309-4843-b994-1bcb7d71f292',126,130,60,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-1'),
('74fa47ff-eece-4615-b486-0d33eb41f3fa','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-18'),
('74fd0e07-a2b3-4f34-abd7-372e58645955','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-7'),
('74fea524-0eea-416a-a97a-95cd235bfcd5','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-2'),
('74ffc3e7-a922-4bdd-b6ec-21639f0002df','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-6'),
('7507600e-5f1a-4be3-a659-b01feb6a51a0','de51c756-e550-4e76-bf53-8a55d85b9133',83,57,102,0,'2025-08-21 07:15:07.969','2025-09-03 05:43:30.663','515171044-1-3'),
('7507a1be-1bba-4ba4-b381-f9bfe9278d78','67230d57-36ae-46e9-af72-e2352002aef6',132,100,75,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-3-1'),
('7508fabb-f152-4a54-82e0-c33f8c882bd5','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.590','371716908-3-2'),
('750a336c-5444-4dad-9c3c-6ee692df9afb','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-86'),
('750bdf2c-4511-4394-b8a7-cc17ca6cb0a4','b406e820-44f0-4685-8e93-c95709e1da71',77,126,11,0,'2025-07-02 12:43:44.589','2025-07-18 05:16:08.058','248352114-1-5'),
('750c3cea-88cc-4308-a778-838cbcf1f6db','4682f070-54f3-4dfb-9968-6d7ce01b22f0',42,42,76,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-2-2'),
('750d3d64-3aa7-4eed-8085-2807ac0038e2','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-2'),
('750d7840-9797-47c3-a8bd-d98fff84c223','9212dfa8-08b3-4e92-93bd-a594eaf017b6',63,19,72,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-6'),
('7511294c-2757-4abd-bba8-a32aa82f6902','daf32ec4-3098-4d67-9b7d-722264422db6',0,0,0,0,'2024-03-31 17:55:18.634','2024-04-17 10:15:44.136','614289770-1-4'),
('75127987-701e-4655-8845-c3c4fc94470a','4e2fd6bf-5f94-4ac0-9445-fed3d566f08f',44,44,42,0,'2025-10-22 13:06:54.380',NULL,'613568438-1-3'),
('7513759c-785c-4371-a97a-6c49f3929a1e','2694c763-03c7-478b-85c3-a639c728d0e7',65,95,95,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-1-2'),
('751511f8-fff3-4de7-858c-c7529874f6c1','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-4'),
('7516de9b-894f-48bd-ad74-0ba8ee38d282','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-3'),
('7518eec6-1613-4167-90d2-107f5057e0e2','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:38.687','248284003-1-158'),
('751c63d0-ef5b-498d-ba45-17ca73c44448','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-2'),
('751de5b3-5f71-4bec-affd-6b1b6d24cce2','367f3a5e-bb59-4b08-ac77-fb45fbe38388',77,82,40,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.931','808450440-1-3'),
('751f28cb-1701-4d05-b644-3e418473913d','fff846e6-362b-483f-ba3a-df216849c545',91,91,4,0,'2025-09-02 14:48:57.041','2025-09-12 06:56:48.627','517903636-1-7'),
('752123a4-95be-4a0b-88ec-d8447dfe6033','e4b9eaac-f42c-4f15-afb4-d739f5a6a7a7',51,51,77,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.631','644243216-6-3'),
('75213e1d-b073-415c-8232-d7d6853127e9','a29400c4-3879-4ada-aeb6-c99017d4e531',97,101,75,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-3-2'),
('7521fe30-53dc-4a2d-a069-cf33e5c45801','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-18'),
('752b928c-1d0c-4dfa-94ee-e52ba22daafa','416e7e24-9084-4530-b3a2-2808d9f33e37',100,122,65,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-2-1'),
('753039c5-156f-4ea2-947b-7c54eda88e10','ae2f16d8-65e8-4efb-b2a7-26877719b20a',59,214,4,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-4'),
('75338faf-c731-4579-b3d3-95a31e0c9c8e','1ab745bc-cedc-4993-8852-79017b1ed8a3',70,80,85,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-4'),
('75341f69-95ff-40d7-9699-50c1b58186c7','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-1-2'),
('7536137d-00af-46ff-ade9-e2b101ee8cf8','9e200495-c3a8-4497-8534-ed3e925ea480',1,1,1,0,'2025-09-10 10:50:37.358','2025-09-17 17:51:20.672','531870941-1-2'),
('7536312f-1dc7-4b00-a290-37fc185c61ae','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-8'),
('7537d218-c00b-49c2-a76e-4a53307fe64b','cc81edcd-ad63-47e1-a989-8ed1f6097722',44,44,75,0,NULL,NULL,'37151088-1-1'),
('7539fd5d-0460-490b-9764-d57595f8f1ca','e2de9cd4-e8e6-48b8-aa91-52920db0471a',95,63,310,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-4'),
('753a2f61-bd98-486c-8929-308821ff739b','8d348f39-aab0-4774-9035-903836bd3dac',52,52,77,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-2-2'),
('753d2263-7f20-49da-bb32-bc927a71ef89','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',23,101,58,0,NULL,NULL,'531240111-1-10'),
('753d471d-eed3-43bd-9d76-6e5bb3ee85bb','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-29'),
('753e0150-8816-4534-be39-697e1bb10422','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-87'),
('75462088-1042-4d4c-834c-049a09d4a499','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:39.806','248284003-1-160'),
('75479350-04f5-42ca-90dc-d1dc0101c9e3','88cff7fd-c50d-46c8-9ff6-19710133533e',9,94,112,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-5-3'),
('7548c31e-dd91-4df0-b153-5d990a731d17','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-2'),
('754c0d62-9045-4936-8087-55c6059199a9','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-14'),
('754d7cc9-227b-4e32-808e-379d01a16b6f','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-17'),
('754ec21f-ed08-41e2-835f-6e50e5696b08','a135c145-15f3-450a-819b-e82b427bc978',87,10,55,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-15'),
('75502f80-39a3-43e1-9a46-e605e3530eb1','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-119'),
('7555916d-9b68-4562-a242-8a639da5e539','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-54'),
('755793d8-8a3d-4a79-8a34-b66b4618ee9c','536180b1-1c3f-4444-a507-049eec9ae541',68,5,189,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-1-5'),
('75585501-31c5-4ed6-b95e-fa8665792b3e','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-29'),
('7559b311-defc-4166-8221-be46aa6aa4b0','57604baf-e8cf-4035-aab3-ed4bab52522f',58,211,8,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-5'),
('755b2c68-3dc6-45d5-9079-477c154ef7fb','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-10'),
('755bc06c-67aa-4890-8c54-fbb96b1e2a56','14a2a5fe-cc61-42ec-a329-3fede175e6a3',94,182,7,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-1-3'),
('755d0b5f-5121-49f6-9f3d-28d1180c3c87','dcfba104-f23e-437a-8a27-fd4802b38b82',110,76,96,0,'2025-07-29 12:58:45.006','2025-08-07 14:06:10.844','598585736-1-2'),
('755d8b3c-e681-4d3e-b8bf-279f5c3278d9','c399d22c-b15c-407e-a15d-e96e492fc756',83,100,159,0,'2025-10-14 09:22:25.022','2025-10-25 09:00:30.633','437321677-1-2'),
('755f6680-dc0a-4be4-a9d7-27c63dd8e348','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-47'),
('7564bf38-e47c-4915-b56a-58f8d5059307','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',90,70,225,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-3'),
('7569ee03-a97a-4b32-bee5-5f4bc750925d','27e2ce5a-dade-42bf-b4bd-0468323a08cf',65,100,75,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-1-6'),
('756db1c1-80da-4681-8675-2de9db61a816','4468137a-37e6-4938-b390-5c8261b58e50',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-2-3'),
('75712417-8424-4894-ab71-5d3e9cfeca20','64592fbb-c17a-4ef7-81fd-28e6bc8413a1',95,75,75,0,'2025-02-15 13:31:55.346','2025-02-23 09:31:03.540','897291641-1-3'),
('757363bd-a682-4a63-b1e4-e4878ebea8dc','9d62738e-2143-45e9-a295-ad7123e774d8',51,72,102,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-3-1'),
('75741bac-6064-41ef-911d-34ce66dc9a58','98abb86e-99d9-4e04-8214-f690a2b9fad8',0,0,0,0,'2025-03-27 08:02:41.819','2025-04-09 12:54:23.745','65722585-1-1'),
('75741f4b-d8b4-4a43-8d05-f83dbaa5b324','af69c5a3-87d3-4548-a650-720b69a4fc69',168,40,3,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-27'),
('75742da6-98a9-4630-b377-c22b7d7264a2','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',250,70,12,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-18'),
('75747fde-328c-46a1-9ba2-5eee8b6bd1a5','8d3d3650-c22e-43f0-9360-325f2df43f5c',0,0,0,0,'2025-02-09 09:51:44.471','2025-02-17 21:42:56.662','745636493-1-1'),
('7575daa7-cb1b-49fa-866a-e0fec4dc7aae','b5f6869c-be7c-4244-9bf9-704a745a8d2e',92,14,188,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-4'),
('75763189-820a-47b5-b810-3f155c784c7e','8c3a9387-2db4-400b-95fa-11aef6c745f6',73,45,13,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-8'),
('75770634-3770-438f-850e-3daa3aa49aa2','37640361-f136-4df4-b3b6-feaee27509fc',62,107,7,0,NULL,NULL,'745249761-1-2'),
('7577c798-e67b-4463-9ac0-fa73bc56e736','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-20'),
('7578fbc6-6009-48d5-a46a-fc9fd795b2dd','cb5cec25-5b62-4dad-a765-ec7410ef47d3',0,0,0,0,'2024-07-20 16:33:26.239','2024-07-27 08:40:46.356','428879207-1-2'),
('7579f615-7ba9-4e7e-9219-4e60fb080a8a','68ba006c-4563-4d70-85de-ae704607cc56',1,1,1,0,'2025-07-12 09:20:23.158','2025-07-24 18:03:49.514','517395181-1-1'),
('757b0a77-0c41-41ae-a5c2-609442dfab6b','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',62,51,30,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-10'),
('7580364c-9007-42b5-90fd-a67118270cb4','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-7'),
('758041bd-4d97-41ea-868f-3fd00fbf68ae','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-6'),
('7583ac1b-cfb2-47c1-9152-462c03a4cdce','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',10,56,41,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-2'),
('7585dfed-756c-4c5b-b166-680f3dc03e79','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-118'),
('758b67a8-0884-4c2e-a3ee-c959893b8179','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-25'),
('758dad36-f442-4814-b897-ffc65ca1f9a9','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-57'),
('759339dd-ebbe-4a6b-a870-9cef9bad5bd4','ecc8a619-473d-44b7-bc3f-58005b885517',17,18,32,0,'2025-09-30 07:39:35.702','2025-10-03 06:54:27.923','644783664-1-4'),
('75968509-e2fb-43d4-8109-b99b6f7d9238','53ebe0c0-71e6-4d4a-9269-0b525fe0abc0',0,0,0,0,'2025-05-23 14:05:18.570','2025-06-06 17:34:59.179','657640918-1-1'),
('759d546f-7f8f-4ba9-b0a9-8ae014266662','d48dec8a-c7d4-4ff4-afc6-cca047d2de32',110,132,7,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-2-4'),
('759d9ae5-f1b1-4e12-af6e-370391454e9f','916fd678-d465-4976-acbd-ecbf61315197',0,0,0,0,'2024-03-19 07:52:14.899','2024-03-30 07:26:56.125','449634859-1-2'),
('759eab34-1d5c-41ef-80ce-b55fb2272499','86a60767-7224-490d-9d65-38533eedf53b',93,129,64,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-4-2'),
('75a04753-bb06-4999-ab1c-d2e6d0e466c7','2595f24d-a640-4e24-9f79-2fb9e7f5696d',53,76,102,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-1-1'),
('75a75c6b-eff9-4696-af91-d2eb6bbbe432','7fc2bccf-14b4-441f-88c8-816117ad7eb3',0,0,0,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-3-3'),
('75aafec6-9299-4705-bef2-493210bf0b16','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-7'),
('75ab43aa-3ef0-43db-9946-0e34e12586d6','39478666-fad8-4b04-b7f5-a9bfd5e65c37',75,53,96,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-2-4'),
('75ac7746-b184-4814-aa66-ddc5223ec92a','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-2'),
('75ae0a0d-f0b8-4107-b88d-2cfa71758d2d','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-14'),
('75aea26c-7519-4114-a877-a5af99d3d62b','bd29119a-537e-44bb-96fd-8130d2d111e5',33,35,35,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-3-1'),
('75b1112c-8e5e-4133-9d9e-f3cceca9fef2','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',96,13,156,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-9'),
('75b1d889-6da9-483f-946c-a1279f4d857f','1fa4834f-6874-4d5a-80f2-1b8fe854abcb',51,51,44,0,'2025-07-12 09:20:25.398','2025-07-24 06:22:57.917','817918521-1-4'),
('75b27219-0161-43b1-9884-0cc297db872b','cb583771-c719-4749-b4eb-1ecbd639d119',72,53,101,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-4-2'),
('75b28a32-b9a2-4860-a821-8aaa9e826750','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-94'),
('75b3652b-ada7-4cba-a74a-9f2d00729aa3','6ec87888-8b87-4bf1-adae-d5b6742225d9',81,4,206,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-5'),
('75bd0efd-e51c-49bb-a74d-c5e7025902f1','2c19c1b7-bf7e-41a2-92f2-340a3624a547',52,100,71,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-1-3'),
('75be09af-6ec7-49a3-a417-200936b2ce63','0263f7f0-6c1a-4beb-ab78-25d69142647c',39,39,44,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.151','910717262-1-14'),
('75beb732-0410-47cf-b60d-be164ee7a9cb','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-24'),
('75bfe2df-5266-4cf3-afa6-e2f47b940a92','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-5'),
('75c1189e-a43d-4eb2-8aba-2ab90adb09f4','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-1-3'),
('75c143da-cd7f-4635-a2be-ed792982b1c0','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-142'),
('75c24965-95b5-449d-83e1-2bf21658e6e3','fac0c3c7-d870-4897-a631-62a0ad9bbcfb',101,124,65,0,'2025-09-24 11:01:52.628','2025-10-07 06:17:42.399','745808994-5-2'),
('75cb145e-6fe0-42f6-9b66-c1624554bf3a','66f8d34c-0c41-46f5-98bb-500adbb6f636',61,85,16,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-8'),
('75cd09f8-7d66-46d0-9015-ac3dd9a08a5e','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-6'),
('75cd9f74-b8f8-4f0b-a717-54182af7ac86','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-91'),
('75cdff30-33b4-4531-a106-b9a91837f86f','c44eb17a-ef18-468d-b7b6-43c97fccad36',57,83,101,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-2-3'),
('75ce236a-db66-4748-b9f8-e863025e1b3a','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',34,99,144,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-8'),
('75ceeeb1-c402-4f71-908c-91c167ac9f93','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-5'),
('75d0417b-343b-4a28-be12-8b1f19be5292','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-16'),
('75dcfe1a-7643-409d-bc2c-de748a8fdb74','0756d756-3ebb-46ec-bf88-18b98d2e8a63',70,70,47,0,NULL,NULL,'011548428-2-3'),
('75df163e-5587-4978-aa81-5c6fa95b46db','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-15'),
('75dff908-7563-4d62-a2e6-60186473a4df','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-60'),
('75e265ff-9ba7-4c87-9889-98742054aa11','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-59'),
('75e2e3d1-b242-4d2b-b546-a6e74570b8fc','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-63'),
('75e3b8f9-20d2-441c-b907-fce4029357e1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-129'),
('75e76322-dd00-4146-be1a-971873daab50','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-16'),
('75ecd3f3-8c05-4e15-a93c-a1c2fc12bc6a','7fdf89e0-868e-4dff-9a42-34a86d6e056a',68,68,232,0,NULL,NULL,'01169597-2-3'),
('75ed1403-4184-445d-96f6-cb229562bc34','151c5a73-b234-4d81-a36d-d64f6372c980',98,57,20,0,'2024-09-19 18:27:25.422','2024-09-27 16:39:59.826','98222175-1-2'),
('75ef8255-0e52-4e60-9d65-c31143149fb8','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',76,28,10,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-1'),
('75f61006-47ec-4ad9-9f2c-e640568a11d2','aa7913d9-4692-46ea-94b6-16deac482855',0,0,0,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-7'),
('75f6aad8-e12a-4a4d-9eb5-cf96c28cf319','87d144ec-833f-4749-bc8a-7b5dc3b8b776',80,33,52,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-2-1'),
('75f9d706-d69c-4905-a8d4-86fa1a0ad203','b5dffa27-66ca-41bc-b90d-205635c51d37',56,72,100,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-4-1'),
('75fc0e8e-93ee-4d5d-9cd8-4b18caa8fbd9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-67'),
('75fcab56-a66c-435f-87c9-d730a535bbeb','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.578','2025-02-14 10:41:28.342','221859569-2-1'),
('75fe9bc7-5c86-44ae-8856-f7faa18425cc','a918ff1e-42da-4211-9742-133995470138',102,166,65,0,NULL,NULL,'808690841-3-3'),
('75ffd099-9084-4138-8b00-9c45ddb539f2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-93'),
('7600a41a-3748-40c9-8172-f58067290736','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-23'),
('76020acb-4074-4e55-89b8-69d01ac794ab','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-11'),
('760367b1-832a-4aff-a242-b60aab1e4332','ae2f16d8-65e8-4efb-b2a7-26877719b20a',59,214,6,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-5'),
('7604c84f-80a3-4085-b405-0225a85d6427','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-4'),
('760761ae-f200-4386-8eb9-3d65a76b25fc','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,77,100,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-4'),
('76081620-dfeb-4c26-912c-7821931f7902','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-6'),
('760d12fd-2b32-4990-a3f5-1a3d5a57e717','adba09c2-3268-49b9-b2e2-a2426fbdcc6f',65,176,94,0,NULL,NULL,'976849487-1-1'),
('760d9c9b-00e1-4213-adc0-4680d78db919','76cdb3cc-7e22-4c7c-b33b-29892e31126e',51,51,77,0,NULL,NULL,'675346042-2-2'),
('7610d70a-0e06-4d39-9318-607154ea3166','e3fc96bb-68d9-4c85-8fd8-f3e18829deb0',161,84,16,0,'2025-08-14 08:21:17.680','2025-08-27 05:38:11.984','982496646-2-2'),
('7611021b-e807-457c-a02a-b068ad72fb53','f41e6fd4-208c-48d4-8be1-b31343cf7a1a',87,87,8,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-4-1'),
('76117250-6c2f-4b93-a6d8-634e9abde356','02b555c2-2445-44f3-9074-77fced684cb3',97,84,55,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-1-4'),
('7611d79a-8804-4ec8-9e05-e5822b25e7e2','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.555','2025-08-27 05:39:11.569','221748184-1-2'),
('7618fa9a-eaca-4074-8c2f-8b835bbb8abb','a41cc165-9ba9-48b1-bec3-06ff1f0e0fa1',70,115,115,0,'2025-01-26 10:54:44.964','2025-02-07 11:19:08.733','428519862-1-4'),
('761a0cbd-c18f-4ad7-b686-87fbffcef137','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-9'),
('761c1011-6875-49fa-8f55-24e0af69332d','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-1'),
('761e2626-70bf-4f95-9e2e-9d60dbd63f4f','04f625f7-445b-409f-b4ca-5314e2044c7f',56,83,100,0,'2025-05-23 14:05:22.410','2025-06-06 17:34:35.937','221897784-1-2'),
('762164be-75ac-482e-b06a-2976cdff1f00','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-53'),
('76221007-ce5c-4ea6-b4c9-f0b799469e4a','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',42,24,197,0,NULL,NULL,'598604443-3-2'),
('762685c3-2319-45be-8205-b8d8ab0d06ae','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-1'),
('762cfe0e-76f6-4477-9e21-7f7df623c860','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-3'),
('762e8b20-ceb1-44da-863e-3e1454356aaa','e89e7d75-4967-4c63-9f73-981469e531af',235,53,7,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-24'),
('762f1788-e195-4111-9b56-e5b61c02d5f6','795d2f7a-ffa2-4492-98f6-4e205fe5de73',78,100,58,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-1-2'),
('76305540-4c1c-4c0c-8a58-f35c4f5b28ca','b55602e5-8dff-4702-941e-3ee46c8104e1',0,0,0,0,'2025-02-27 16:45:44.001','2025-03-10 13:01:45.189','745935889-2-1'),
('763154cd-023f-4f49-ae1c-68e8658f8cbb','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-39'),
('7638ba0d-7fe5-4889-b08b-dcf3a12187a3','8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7',51,51,77,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-3-4'),
('763a5313-c74c-4715-8c39-6b15aa3baacc','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-30'),
('763b4873-d437-41eb-80da-517e6e02502c','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',84,53,48,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-3'),
('763d9a7c-f470-4b3e-9a9a-d866aaa3c787','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:47.415','248135683-1-102'),
('763dc244-e2ab-4785-857b-b3d2aa4d23d4','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-46'),
('7640bec5-b6b8-412f-ab23-435aa6faf06e','c1a31a07-5113-4703-99ff-14d4a90ef1ba',5,161,198,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-11'),
('76422999-601d-4ed2-877f-fbc04f02552f','c98f6188-56c5-4870-be97-be71cf95f62e',82,58,17,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-6'),
('7643fd72-063e-4c86-b53a-e15642a33b16','b463387a-754c-4c53-ade6-f7e850173707',51,51,77,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-2'),
('7647fe16-3883-491a-b31c-1d9eb767fd8e','0c0d513a-893b-42d3-96b7-f5358bfa4450',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-1-1'),
('76481d9d-e867-4876-abdd-7a1279d9f7ef','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-3'),
('764860a7-2081-4bad-96ef-1df459335741','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-168'),
('764b589e-44a0-4e6e-9b04-50f00fdbd51d','8b5e9a20-db1a-4fcf-8fe9-eaab2507cebb',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.515','478861689-1-2'),
('764ba264-6638-4d2e-a714-fed21cefe7bc','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-6'),
('764bf395-4e75-4998-ab3b-a123725880a5','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',224,60,5,0,NULL,NULL,'428413605-1-10'),
('764d70e9-b5a9-44e4-ab2c-37257b8ffc08','4301b768-4818-4e74-a6d0-12a33474f5c6',13,56,79,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-14'),
('7651d0ee-3d9c-47c6-97c4-f624c7d89b9c','733bff01-cf6d-4939-aa79-6311531918bd',27,78,198,0,NULL,NULL,'808690841-1-3'),
('7652f3e7-58c0-43e4-aba8-08ed485ba364','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-56'),
('7654c3ea-16b4-4f34-976f-e400194009dd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-83'),
('765e938f-b188-475c-80f7-a7d26de08fa6','6ec87888-8b87-4bf1-adae-d5b6742225d9',50,7,215,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-17'),
('766a63c9-5760-4acc-ab18-a99390a76135','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-27'),
('766ba05a-89e4-4c12-9078-096714263bf8','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-30'),
('766be439-89c2-4265-be60-5aaad7e09fc9','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',8,78,100,0,NULL,NULL,'478739679-3-4'),
('766d86ac-d20d-4701-a459-538cc8b83a3a','ab1b2a39-1033-4ca2-9a3f-fda0a79bd8f8',0,0,0,0,'2024-10-17 11:51:21.661','2024-10-26 07:30:49.319','745382052-1-1'),
('76736a1a-0187-4ce7-a556-ba4bf1979b84','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-112'),
('767511eb-7017-467f-8161-ae68fb5e7f9c','f3414f51-92da-4967-b108-6baad5cdd798',74,13,267,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-12'),
('7676a27c-3063-47fc-b00e-e17c8f85c804','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-2'),
('767caaa8-4993-4b23-a0cd-1a95f35a1338','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-3-2'),
('767e1906-1116-4639-8017-dfb336a1ebd4','70295e99-ecec-4498-943e-fb5826d388c5',71,168,94,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-2-7'),
('76866c16-f1f0-4bc0-836c-58fea865f424','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',8,37,50,0,NULL,NULL,'338991013-1-4'),
('768b31be-3fa1-44e1-b713-66b138e68afc','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-17'),
('768e07b9-4821-4650-9bf4-027563c5b9a9','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',60,16,42,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-13'),
('768e381f-f715-46ca-94cd-69eee6070896','76c744b8-92cc-490a-9b47-df670d09d9d1',0,0,0,0,NULL,NULL,'695274055-1-3'),
('768f634c-fdcb-42b6-8b87-55ed0161fd21','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.900','2025-01-29 14:49:49.021','248135683-1-226'),
('769207b7-014f-41a4-a4fe-0f98f4aed496','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',65,80,40,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-4'),
('76926acd-1ac8-4cda-a94f-9649e2fd5a85','e4ac663b-0089-49de-bec8-f0e4c8fde7a4',43,43,77,0,'2025-10-06 07:10:27.538','2025-10-17 06:13:01.460','371865484-1-3'),
('7693dd43-1857-4320-8704-0f8b9c1a8351','2a6df913-1df4-4e6e-bdd5-9d6f58ef881f',101,76,56,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-1-2'),
('7696480a-ad00-4115-879a-c22a63ebf5e3','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-4'),
('7697ab30-8cde-41bf-b575-d6a66ea62c94','5d87ced9-ddb2-4a6e-a01b-2e80e5988136',0,0,0,0,'2025-05-09 18:44:04.562','2025-05-20 16:27:51.434','338878009-1-4'),
('7697d7ea-2a90-4064-a344-cd66df1a3686','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-4'),
('76982764-57b1-4213-902f-e429dfbbc8e9','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-15'),
('7699da2e-6a1a-488f-b27d-6dc1ce297f21','41292cab-d2f5-400b-8987-d9df04092129',0,0,0,0,'2024-10-23 14:11:42.694','2024-10-30 18:09:49.991','745976194-1-1'),
('769ef0f1-0f8f-4fe2-a009-96e38a6d5f5b','d83c40d1-4df5-4c97-bc83-28837db95b2b',47,38,68,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-36'),
('769f629b-8d72-443f-8eb6-6d3803f2c8ee','ff6b529f-2317-4ce6-8b12-193a117a8ed8',30,30,190,0,NULL,NULL,'140421350-3-1'),
('769fef4a-3470-4839-9604-cd32f998f85c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-27'),
('76a37811-2d77-4f95-9d05-ad5df1766a4f','e0478821-943b-4eac-98b7-c417fdf27e29',7,108,208,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-4-3'),
('76a97051-0c24-4654-9a41-e8d33a053c17','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:49.793','248135683-1-107'),
('76aa7207-34f9-4a20-aa42-b7bb4af10d83','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-60'),
('76ad1306-eee5-4b5a-96b8-d05e6520c47a','de440f55-a69c-4eb1-b8c9-629c405b795d',43,38,204,0,'2025-10-25 08:59:01.029',NULL,'515973668-1-7'),
('76ad787b-e586-4308-9136-3e250802d03a','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-17'),
('76b241da-0a25-4aaf-899f-636cfc04cd0a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-24'),
('76b29314-ee4c-4653-b536-eb659593618a','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-15'),
('76b37c29-0032-40fb-8c22-7a28b0a700b0','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-2'),
('76b9507f-92b9-4c1d-9519-13c3d782a785','aca0a822-86a6-4946-95ce-feb7de5fb68e',98,135,65,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-5'),
('76b9f349-fc4a-4558-bebb-d0fae0926b7a','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-2'),
('76bb5c74-b0a7-431e-aa04-15647eb0ee8a','0614700e-3fb6-413b-85aa-f554ce2f1a0d',81,95,23,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.914','221624652-1-1'),
('76bc0f22-3038-4618-8320-bee3c86bedfb','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-10'),
('76bde8af-1d1a-4e30-80cc-0db9922ab471','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-70'),
('76be30c7-ee6c-498c-af9f-8e10a2bf0ef4','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-1'),
('76bef021-5b1f-4745-ab23-0685ffe1501b','2f7ffc63-a12c-4023-bcc3-e7043967b1bd',56,83,101,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.710','675902808-1-2'),
('76bf2beb-9759-4bfc-9e93-cf56942e8342','687ef888-f53d-4ec2-b170-8d3d356fa1e2',22,53,105,0,NULL,NULL,'745105230-1-1'),
('76bf8af6-fcfd-42ce-817f-ec3dba035964','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-96'),
('76c04a86-69e0-4989-8540-8ab863d1fdb1','81d0dc47-7670-4778-9132-e810a9a4d368',46,43,5,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-5'),
('76c09688-aadf-4fdd-99b2-e36875924b7b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-14'),
('76c2e49d-f86b-48a3-b221-caabb6daeb34','7ac04c84-54ce-46a6-9898-1b08419392f9',58,93,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-2'),
('76c5013a-6b46-489e-adbf-7e038e9f8250','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-9'),
('76c6ed78-72d7-4b71-81fc-87367f3a8c05','6d0390ef-65ce-4154-a607-d67e51938ed2',130,9,175,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-11'),
('76c81475-68ff-4a02-9ed6-4986b935faf0','151c5a73-b234-4d81-a36d-d64f6372c980',240,93,63,0,'2024-09-19 18:27:25.422','2024-09-27 16:39:59.826','98222175-1-3'),
('76c89fb0-00a6-435c-9e34-dbae79e75c14','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-3'),
('76c933a2-7075-4ceb-9b44-fa172e5e398d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-21'),
('76cdbea9-5b52-47af-bb06-424d21666a83','405c5569-3390-43f1-95ee-f006ef560059',76,51,75,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-7'),
('76ce7920-57be-4087-be46-4449d11398cb','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',100,80,65,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-4'),
('76cecd71-290e-42be-8d00-d38fc6f7d00c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-111'),
('76ced881-4cfc-48e7-a9cf-52921ae71306','07bb64ff-aec7-401e-a7a0-773145781f60',65,97,105,0,'2025-09-16 16:29:45.001','2025-09-29 12:23:06.903','644762741-1-3'),
('76cf6ae8-f864-46e1-b360-c8ea7c8aa4e7','0009aeec-e682-465c-b701-363a3ef377a6',210,9,24,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-44'),
('76d07f55-81df-41fc-9a04-be7b81987ae5','c4194c78-4d66-480b-af6f-490c87805b3d',92,68,267,0,'2025-06-21 04:34:00.573','2025-06-28 21:53:36.042','675592889-1-4'),
('76d25856-9e65-450f-b08a-de74c993726e','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',130,175,9,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-15'),
('76d740dd-481f-4458-bbef-092ba7d9384e','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,90,70,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-1-3'),
('76d890d7-977d-4fa5-98cb-f1946e838c95','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-3'),
('76d9b156-582f-4e55-9dfa-b12ad5dbe499','b4183fd9-691f-4e50-aa3e-1185b3e78cff',70,80,80,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-11'),
('76dafbb9-1a31-40c8-9370-a9407ab854bd','255d2671-4617-4d64-9aff-ca078c1ef926',235,93,75,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-4-1'),
('76db1564-6be9-43bf-b445-8be42f035ac3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:50.782','248135683-1-174'),
('76dbd3a0-6587-4f97-99f7-6e1e50024948','66f04f14-5079-4050-b288-99b7ac004505',51,51,77,0,'2025-09-26 12:39:46.350','2025-10-10 21:30:25.670','221621737-1-2'),
('76ddfd6c-ee27-4b0b-b036-7432e01809e3','19d55e9b-f9d2-4d64-9532-05620ae130e8',29,40,58,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-2-1'),
('76e0752b-bdb9-42d4-ac7b-9f2e394f55b4','35c80989-4689-4b96-88e3-4723c62adf39',65,70,80,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-4-1'),
('76e22bb4-fc15-430d-92a8-36a9c9fd33b6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-183'),
('76e2d565-7c2d-44c8-a428-4828ac8386f4','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-6'),
('76e2e33d-16f6-4f00-9357-7efcdf802302','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-1'),
('76e344a5-4d96-4909-ab37-931d35d4a3a2','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-5'),
('76e3d6b9-1f5d-461c-9ac4-25be6217b146','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-11'),
('76e51b7c-6d52-4c8d-a292-29d2c38c744c','8b4b20b2-a316-4448-9879-8c88eb75301a',93,63,68,0,'2025-03-24 16:01:50.514','2025-04-05 10:57:53.233','644110179-1-3'),
('76e81f4f-2ec2-41c6-b765-8a067d54837e','7a081169-1e01-44a4-9ec7-439661c10583',60,61,90,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-1-2'),
('76ee13b4-b888-496d-906e-92780a0f4e6d','7b4b0f31-e651-4a25-819d-b4e21db79d87',95,65,65,0,'2025-03-13 12:21:39.415','2025-03-22 07:37:04.678','449700444-1-3'),
('76ee2e19-908b-40c5-a580-fa410505d7ec','9d7979f3-a35a-4a64-97d1-4ba973786029',44,6,215,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-2'),
('76eea4b7-c1a9-4bd6-af52-459581e9081e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:43.149','248284003-1-13'),
('76f0257f-98eb-472f-a6b1-648178a1d5de','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-37'),
('76f27e48-3335-49cb-8b5b-4f4d2cb54a02','6f44b113-5917-40cb-9c98-9456f8c03518',72,58,101,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-4'),
('76f54d05-5d5c-43fe-9be7-a1bc73f151e5','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-130'),
('76f75c8c-eaf2-47b8-b581-2f8465044b46','b3352d57-7c75-4049-975a-d578fdf73ca8',105,105,60,0,'2024-12-28 21:42:32.073','2025-01-06 20:09:19.066','478368190-1-2'),
('76fa1c96-f798-4e04-a697-c20176c95d61','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',63,94,87,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-5'),
('76fbcb0a-e8b7-43cc-8bf5-3127aaf20af9','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-11'),
('76fcd8f0-b559-414e-8ca6-7c12e3d85cf2','31550c22-c059-4382-820f-6d1760b04019',0,0,0,0,NULL,NULL,'910611541-1-1'),
('76fcf8c9-126d-42af-8da6-fbea1c27be07','6ec87888-8b87-4bf1-adae-d5b6742225d9',66,15,7,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-8'),
('76fdd1f3-6d99-47f2-8bec-7198e3d586eb','7e1652b5-c6dc-455b-97ae-15ff0b6a532d',6,104,68,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-1-1'),
('76fde10f-929a-4393-ba48-18a562a6f30c','ee4dacd7-fe2f-409e-b014-e7adbfefa118',95,70,240,0,'2025-06-14 12:48:19.093','2025-06-26 08:18:44.849','910670298-1-2'),
('7701a50a-cfd8-4968-98f1-3ae5d31e1965','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-41'),
('77032a1f-c07f-40bf-babf-7bbc7afe4a90','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',25,22,13,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-7'),
('7704fa67-42c2-4e9f-81af-afc5e49c2f99','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',105,105,68,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-13'),
('7706032f-9672-4362-b89c-4ec552944946','9419dc7f-432b-401b-a4af-9a875d851a21',0,0,0,0,'2025-05-28 19:08:49.093','2025-06-06 17:37:40.880','644771270-1-1'),
('77078a2a-6836-4ebf-b802-60da67d2eab8','a545df6f-28a9-489d-b668-a448c88582d4',76,135,10,0,'2025-07-02 12:43:37.906','2025-07-21 08:00:51.719','371261673-1-4'),
('7708b3a6-22f6-4a82-b428-b3dfe278828f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-25'),
('77095c57-2740-4221-83bd-5ca1970800fd','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-66'),
('770d9715-55d8-4f77-8214-e4892f679fff','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-23'),
('770f3d3e-b765-473a-b5a0-33ae0ad72a6b','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-44'),
('77158cf1-9c01-449b-91d0-8d4faf7b0ed3','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-7'),
('771750e2-089f-4c31-9585-d29ee4cbc9bb','19c6a32c-4384-451a-aaa5-dfc264ab827b',72,52,95,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-9'),
('7719137a-afce-4d93-ad7f-474c19bbe95b','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-7'),
('7719dd03-f085-4506-b5dc-24949d2826c9','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-73'),
('771a13c1-5de2-4e16-ba67-d900783cc4ce','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-1-2'),
('771d6b48-397f-4702-ba01-a65b30e6723a','4468137a-37e6-4938-b390-5c8261b58e50',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-2-4'),
('771d9f65-be32-46f1-939b-773c81a8f0f0','9f1f4a12-045f-486d-8d26-612451204bcf',45,6,207,0,NULL,NULL,'745995046-4-5'),
('772611e3-dfd6-449c-95ab-a2ff0c1e21ef','ca2466d1-9a83-4f57-8f76-f5ddce302e04',140,85,121,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-8'),
('772651bd-5ce7-497d-ab77-819c5d48ffbd','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-14'),
('772917d8-d9d5-44b6-bb2f-8314eb189d18','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',105,29,201,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-7'),
('77309291-3ce9-4cc6-b466-55b1ec297b93','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',8,208,45,0,NULL,NULL,'47816855-2-11'),
('77371b5c-e1d6-4e4e-ac19-ae657916754a','3014e299-cf0b-48b7-8c7d-d69d3f855cf1',120,104,65,0,NULL,NULL,'428372230-2-2'),
('773cfe2e-1a7c-4f0e-880b-3fb19acaffd8','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-7'),
('773ebe7c-70be-4cfd-aaf5-32b4fe477d5b','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-6'),
('77418bcf-ca9a-48ca-92dd-a8e1a78b784f','f0485a78-951c-4f89-bddf-b2003f0bf783',25,43,75,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-30'),
('77421837-3fda-4839-a3d9-6ef98f291b7d','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-1'),
('77463a20-4241-4e31-9878-bebff4954c69','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-2'),
('7747dcc4-e986-4736-9ce9-3e9525f45ac8','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-5'),
('7747e50b-1f27-4bd3-b898-b4945fd6369c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-18'),
('7748d287-69fb-4ed8-a112-ecd8714828b8','edc484d1-e2ee-46d0-8ca4-5adc2c03d85f',38,38,47,0,NULL,NULL,'598891928-3-3'),
('77491ead-7ade-4e26-a325-4f2e4c4bf48e','b4914894-38ba-4b92-a3d4-567b3e8d166f',81,26,202,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-2-3'),
('77499cf7-b0c6-458f-8466-5776a3687c86','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-71'),
('774c07e7-e11c-4ac8-a7b9-d110ff12bb41','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-180'),
('774c4321-b145-4b47-ad68-ef2076d333ec','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-17'),
('774cd7bd-9ea9-498c-afdd-94fe43babd20','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.148',NULL,'505724535-1-3'),
('77501051-d003-42b7-9dcb-5c789f48835f','6fcc55d3-2339-4d12-b5e2-e156727c33f9',47,47,60,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-3'),
('77514b39-2b53-449b-8143-14c6faf82078','661b31b6-5864-4d50-94ae-a24ef9908dbb',93,180,75,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-2'),
('77534366-3be5-422e-ad1b-b7a0869bc7c8','5aca1c41-8cbc-4a31-9871-fc78682b8f7f',800,100,100,0,'2024-03-15 14:41:20.484','2024-03-20 08:14:20.246','412524404-1-1'),
('775b1813-519a-4a23-b66c-efe1b791fc89','919cfe4d-f9d6-40fb-a788-38170b409e4d',51,51,77,0,'2025-08-27 19:40:04.127','2025-09-05 08:51:08.802','896847151-1-2'),
('775d370c-bdd4-4d7d-a752-229edfdf1f28','a4af041c-c6f2-4d99-b497-397df83390e4',0,0,0,0,'2025-04-28 07:40:51.778','2025-05-03 09:04:59.711','412784700-1-1'),
('775fbd0e-4b9f-4ce0-ade8-8298494b7924','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,15,85,0,NULL,NULL,'478893710-2-5'),
('7760da54-640e-41d8-a88f-6f64fa4a9604','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-117'),
('77640635-3c12-4fff-9cfe-68e6d11f9f00','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-29'),
('77666360-1741-4ed8-a6f2-cca55d6248ee','bd29119a-537e-44bb-96fd-8130d2d111e5',33,35,35,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-3-3'),
('7767b438-4ffc-4f86-a897-6a2092c58f04','448137c4-0ed8-4aba-90bd-b88619bd7a91',41,41,41,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-1-4'),
('7768fb60-3ee0-4cfc-87d7-68a8b51ec2cd','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-111'),
('77691bbe-118c-46a6-9813-c29187de7777','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-7'),
('776936f1-6bdd-48ac-95de-eb1368fae99d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-53'),
('776beff9-f6be-4b4c-9bdc-763fcbbc2b87','00d82761-31c4-446b-a04b-97ce66aab4e6',235,95,65,0,'2024-08-31 13:26:35.084','2024-09-09 15:17:32.717','982918194-1-2'),
('776f3678-9f75-484c-b6c2-1615ea2cffa3','6a637fa3-9842-405e-a309-f0c0786f5d0c',0,0,0,0,'2025-05-28 19:09:14.236','2025-06-05 12:34:59.155','644635640-1-1'),
('77701cbb-c661-4b92-bab0-b42d888dcf41','7e33f411-a309-4843-b994-1bcb7d71f292',100,124,60,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-3'),
('77762cf3-ab25-4356-b6e4-c78af516c803','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-3'),
('77786876-7096-45a6-88c6-030f60391ac3','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-5'),
('777a94cc-3646-47d6-a31c-3673e710f2e8','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-10'),
('777c5f51-0ad5-41ed-8daa-f660196db01d','43024ca8-3408-4c20-962d-cdaf0ea11687',96,114,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-2'),
('777f547d-0a93-45ce-92b5-42b3db1de77e','fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f',58,10,220,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-4-3'),
('778394ef-3b6f-48b3-aa6f-8ecd6d5a4136','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.144','2025-09-04 21:03:37.661','531245816-1-1'),
('77869b9c-8cf2-44b4-8de3-2e032472ee9e','4abcae6f-afac-43a1-83d3-65715ac410f6',0,0,0,0,'2025-02-18 16:37:10.835','2025-02-27 06:36:36.211','478101413-1-4'),
('77896e3e-ca94-4b47-a829-e1dcf9c999ac','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-4'),
('778d0698-23b2-453b-8d16-57b6f9c4dc7e','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-48'),
('778d90b7-b363-47f2-b3b5-a0ccddd03db6','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-31'),
('778f8afb-8024-449e-b8a5-8babfe61fac7','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-24'),
('7790ceaf-25b8-44d7-85f1-8f8bd70d93dc','14fb0987-4091-41ac-acc5-918b7d5ce9a3',35,116,202,0,NULL,NULL,'371216639-1-1'),
('7793e024-2841-4893-a660-258f36944e73','8cfe9d22-5427-43f8-8477-4b5c89b07842',57,82,110,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-2-2'),
('7797f509-80f1-491b-9c74-c273667a4acf','78011c77-f958-4fc6-886f-f80a74dac952',112,115,67,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.764','371913094-2-3'),
('779e5ffe-1763-407a-afd2-2b9a8f06a941','ac2b9be2-c0bb-4704-9314-44e3ed793e24',78,45,45,0,'2025-08-14 10:05:27.420','2025-08-27 19:34:52.034','334873891-1-3'),
('77a1ed81-fa55-4997-a7ef-00f8649a2fce','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',34,64,100,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-9'),
('77a5207d-ecc7-4ecf-897b-0a481c3f3eb5','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-12'),
('77ad0551-5d3b-49f8-add1-ac5228f89c74','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-13'),
('77af9cae-19a7-4215-ac59-e14926c2a688','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',230,68,55,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-5'),
('77b40ff0-16b5-4223-80fc-d71a64cb2976','01ef32a0-1284-4a83-aa87-7a3d88e6cae4',158,198,3,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.790','745251111-1-2'),
('77b5f53a-1fd1-440c-ab3f-3eafce34deeb','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.840','428752676-6-8'),
('77b7dec2-3698-4eb5-b1d8-b43f8ea542b6','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-1'),
('77b88878-f90c-4cc7-968c-f2166257c7e8','324936f5-0640-4048-8641-e1550a228838',39,174,6,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-8'),
('77bc1dab-0719-479f-b5d9-00afc363b938','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-12'),
('77c130c1-b605-447f-b546-4aba9e258ef8','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',14,46,102,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-5'),
('77c156e1-3e3d-4b5e-a9ba-f7ae33a307fe','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',68,52,14,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-17'),
('77c51f9b-c4fa-4d89-bc88-021d8c0dabf0','f1aaaa95-2d25-4f45-b026-0107ca13ac62',88,63,63,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.456','616724751-1-4'),
('77c53b2c-9509-43b4-8fd6-fccfe35d24e3','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-46'),
('77c588dc-88e2-4093-ad6c-026cfe225027','426edf33-c45d-4446-b38c-af56172acc0a',195,65,95,0,'2025-02-13 20:43:33.268','2025-02-25 17:03:41.023','449448008-1-4'),
('77c66ed1-06c6-413f-b99f-c6d9ad8113a0','9ea68f31-7756-4447-84dc-16ea42994b2c',91,91,7,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-2-3'),
('77c78326-ccad-45e4-8f0a-f542d4891c66','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-9'),
('77cbbd8f-9c19-4e13-a783-9be00e89ec77','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-14'),
('77cd87d9-fe50-4f4d-92cf-4a60afc102e3','71b1f991-8cca-4d20-9909-8155787417b3',43,43,78,0,'2025-10-22 13:06:51.724',NULL,'371290223-1-2'),
('77cdbfc0-0c52-4fae-9206-03f57634a22b','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',56,5,49,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-12'),
('77cfce11-00f2-419a-a5b7-aae54f51fea3','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-7'),
('77d53c71-a4ad-4119-88bb-5d3cf28f0a10','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-18'),
('77d5a1dd-d08e-491b-af06-706656e77dfc','367f3a5e-bb59-4b08-ac77-fb45fbe38388',103,77,68,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.931','808450440-1-4'),
('77d66350-0176-4a6e-a7d0-b97a3f1a40c4','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-3'),
('77db6b67-bc9c-4413-a701-88cb21a7d8ac','f9e5aa36-ee37-4651-8167-ac131f8c07fb',0,0,0,0,'2025-03-27 15:06:11.475','2025-04-05 20:39:01.049','745818939-1-2'),
('77de1365-a986-41d5-a59d-7f3f3e1fb62d','11685268-d8ee-4474-adbb-41d1ceac04e0',208,70,90,0,'2024-09-10 10:47:00.013','2024-09-18 16:13:00.028','52817450-1-2'),
('77dfeeca-02a8-4cf0-a36f-507cb7e5b050','4869c334-4618-49fb-9d03-99d95654d12a',15,178,2,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-26'),
('77e15318-47b4-494a-9409-8dc87faa8dc3','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-7'),
('77e4fef8-f990-419f-b002-1372d4020a34','7fbc0cac-4c11-4144-b578-3223cd9dd90a',45,220,7,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-26'),
('77e50a4c-ce18-4783-a6a9-e0d8ba961e66','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-18'),
('77e753ef-0a3c-4e05-88f7-264fc00b3f72','105baff3-99ad-4d7f-b4a5-116a7968849b',0,0,0,0,'2024-12-18 09:31:19.411','2025-01-10 16:33:18.465','248849829-1-2'),
('77e7860f-3ad5-43e7-843a-fd45c4f003f7','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-5'),
('77e7e663-af75-49b9-b394-195660b60ec2','c38b4e0b-a453-4b21-9976-65cd3cc4d509',42,39,32,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-3-2'),
('77e81d2f-1b7a-459c-8c03-f63310e7e7f6','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',130,60,9,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-88'),
('77e97fc8-c872-4513-ac0c-7cac0f5ff9aa','4269f867-0d44-45e3-ba30-724af57726ee',80,70,90,0,'2025-07-19 07:52:10.252','2025-07-28 18:39:55.403','371820680-1-3'),
('77ec1940-2b85-4cac-ac7f-474eb9549cea','1fe5a3c4-700c-4065-9fa2-a479e3a6c022',50,60,6,0,'2025-06-21 04:34:09.409','2025-06-28 16:00:51.711','437133708-1-4'),
('77ee3b5d-1da9-4eba-873f-35caa4749c3f','8b9be79c-034c-4491-9980-ad94bae49b22',230,90,70,0,NULL,NULL,'501873907-1-6'),
('77eef8be-4c74-4f2f-a97e-c4767cb4446d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-63'),
('77f181a4-811d-45bb-a9cc-22a600dc256a','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-67'),
('77f182ca-bff9-44a7-a4c6-ad62123d66fe','0d90ef6d-e963-4a99-bbbe-e4ca67429574',45,16,6,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-3'),
('77f331d6-43cf-4542-bb84-50bd6aa28ffd','c71fdc71-df3e-48af-9323-d534b0931ff1',40,40,50,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-8'),
('77fdf62a-d608-4e7c-b4f6-9e350cef20c6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:51.490','248135683-1-97'),
('7800cf6d-cda8-401a-901c-ad95b57c4d64','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-6'),
('78011663-1c40-447d-be9c-4573781a6de5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-44'),
('78016691-61ec-4c1d-9841-5bc1775cf250','2a723830-d2b5-42fb-95ad-678895eae7cd',76,39,42,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-7'),
('78043153-4e58-45ee-afc3-c8a762ebbaab','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:42.606','248284003-1-101'),
('7804651f-478f-4b3a-a26a-90168bd0c9f7','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.560','371696812-2-3'),
('7807d6ed-f9e5-42ed-b2d4-cbdf5add2300','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-131'),
('78084eb6-b340-4722-b7a6-2b2a5484d3dc','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-4'),
('78089fd8-c513-4421-bf9e-c9663fbacaa5','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-43'),
('780b00b0-785b-4c77-bd4d-87bb4d082080','f7c345ec-fb13-49ec-a83d-d89fa6a2ceaf',62,60,90,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-4-2'),
('780e0279-c9e5-4b12-ad23-47ff0fd225cf','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-5'),
('780e54c7-3bd9-4639-b778-df2bcac47f39','0ca7b5c8-7608-49bc-9057-d56d835fbea5',156,200,3,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-16'),
('780fb3af-458a-497a-a65b-9b61540af6c2','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',94,9,123,0,NULL,NULL,'478702481-4-6'),
('781228b9-f767-4845-b802-d1c4fd77028e','f449fb69-70f5-4f97-8883-00b38025bca8',57,75,104,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-5-3'),
('78144183-2dd3-484c-a0d3-b53e9a5d69b8','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-18'),
('78146dd4-7eca-46c3-a6aa-f3b9764c56f9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-8'),
('78167819-ef1a-46df-affc-a1cd51d4ef1e','c5d03b78-19c4-44f2-a673-725e07271521',224,105,6,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-3'),
('7817d9a7-a6a4-4440-ba1e-7c24979cf636','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-21'),
('781a96ca-06c9-4697-b1b3-a185ee7804d1','852cb596-91b3-432f-8aee-ec6a804f3a01',42,30,14,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-7'),
('781b1169-e940-448a-ad0e-9ae6bcdcbc47','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-69'),
('781bed04-395c-46ae-a3a1-336374ee1bab','9114ad70-d53e-4d1f-89c7-30585d0a43de',67,31,7,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-25'),
('781c51d9-b2b8-472e-867c-e251494b0ec2','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-43'),
('781ca51a-8eda-43f7-a298-3d6caf7588f8','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-7'),
('781e47e4-52f4-4e78-bc95-39d98785a737','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-15'),
('781ee548-fe30-4531-a878-7716e68c7478','b07a55d1-cbb0-4473-8e2f-a91320826dbd',90,75,65,0,NULL,NULL,'910510042-1-1'),
('781f40a6-3cc3-45ad-946a-b6e3289a93a7','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.334','2024-11-19 17:22:10.642','858854212-1-13'),
('782c23da-3c28-4afc-adbc-ffcf244195b7','04dff17a-2b9a-4f35-a082-5684dfe5706f',80,15,50,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-8'),
('782ea914-23ab-48df-b5f9-ec4cf7bbfc13','e178636b-b1d9-4260-aa1b-879946fa7f5d',44,40,212,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-10'),
('782f6baa-b3e3-46bd-a48e-db391e120d62','642202df-ca75-465e-8036-f34da2dad54d',30,8,52,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-5'),
('78320385-ac23-45ab-a564-b1feccace5db','49b0262b-aeb4-40b0-bdcc-b5461a64c972',88,2,208,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-14'),
('78344790-c86b-4cd7-94ab-c2d3fdbb9b03','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',65,65,95,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-9'),
('78349471-608c-443e-ad77-edf124081833','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.029','248602682-1-7'),
('7837dee3-32cc-4176-8769-1235fbfac3d4','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-5'),
('783bb174-a2e7-4d43-a944-4a2d6a9150d4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',40,30,30,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-89'),
('783caa2e-7048-4f04-aee7-c6ae73ea6f24','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-3'),
('7840ca1b-ab16-477f-bf2e-54061c8d402b','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-1'),
('7845157d-41df-4bdf-9670-c636de291076','76087092-4086-4cd5-acc6-7f775e746dc2',98,100,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-3'),
('78485359-d71e-4b21-b1dd-b691e41f2afe','ed097511-c426-4ff2-b940-1f98b2a1f4f6',34,100,16,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-6'),
('7848c070-abe6-4220-8877-6145a1d64c56','50cd18d1-456d-4a3a-9315-1c4d4ae815b9',60,80,95,0,'2025-02-09 09:51:24.840','2025-02-19 18:36:53.201','50133684-1-4'),
('784950d0-22de-42d3-b308-941e68e9c433','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-124'),
('784a62dd-dedb-45fe-ac52-d3fdf9fb8bc3','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-72'),
('784d2a5f-6793-4c95-b7ea-0602ac580343','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-47'),
('784e1185-a128-4201-af9f-b7bb59abafa9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-113'),
('784ffaf2-66f6-489d-b6e1-92fd15e9490a','d996c4f8-5b23-4215-8745-02197703fd3a',206,72,98,0,'2025-03-27 08:03:05.413','2025-04-05 22:11:34.360','37176846-1-3'),
('78560fb6-a121-4dfe-b9a0-975eb9fabd2e','44172f06-d7a5-4d73-b1be-11dd839fbad7',102,55,76,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-2-2'),
('78561583-d0c8-4f7c-a443-3141ec35e269','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-59'),
('785628c6-5122-4f27-87a3-55ea464d75f5','bf3c6d76-210c-4d83-8776-c792b4de5d83',33,131,33,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-3'),
('7859f329-014e-40d2-8f93-8967a3af25ad','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.378','745175736-1-4'),
('785bd1d5-f37e-4c87-bb95-42cc21fdeb78','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-100'),
('785cf556-accc-401d-a8f0-ea3f4a8af304','55155cc4-3303-4c8d-8138-cd049d9c0cad',64,70,71,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-9'),
('785f4b98-8015-4eae-a036-68dc95371461','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-35'),
('786087f8-73db-49c0-817d-c65ca6b3bb4e','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-31'),
('7860b90b-2b76-407b-91ed-5a181c71ee8c','5f118d4b-0713-4860-9914-6f2ebfe8faed',65,116,100,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-3-2'),
('786422a9-6c66-49c8-8eac-efdb5c274cac','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-31'),
('7865918e-e0a7-4379-bd7f-0f304276b1bf','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-3'),
('78669873-728e-4b7b-b03a-72d9cdb52dfe','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-11'),
('786ab3be-62d4-435c-96af-f5666ed67678','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-6'),
('786fbaed-a95b-4030-b4fe-3b5962482f03','259a72a2-bf47-453f-a1f2-67b32a430a12',70,93,94,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-2-2'),
('787699f3-78d5-43be-b76d-da38f64e72c4','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',57,232,6,0,NULL,NULL,'011548428-4-11'),
('787b604b-f64a-4cbd-bd13-0043e6f9588b','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-8'),
('787b80e4-0454-4651-86f2-515215a12ce9','c98f6188-56c5-4870-be97-be71cf95f62e',211,88,5,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-7'),
('787d617c-94b5-4783-8f60-0a9aacfd3192','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-187'),
('787f5931-ff25-4ee2-8932-0c9d9f65ef99','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-25'),
('787fd318-d5f1-411d-acb8-007f3f54f91d','778aa4d8-dcfd-43b4-bdca-be11229e204e',51,50,76,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-2-2'),
('7881e55f-4daf-47cb-835d-011fc7c20632','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-13'),
('78826a0e-7c55-4eb3-acf6-350a67328987','382f1f7d-825f-4f4a-9f87-598a8856a6ac',0,0,0,0,'2024-05-08 18:43:12.410','2024-05-23 08:25:18.039','745439695-1-4'),
('7887d0ce-898a-4ff7-ac85-d0df2d31716f','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-17'),
('788a8776-bf72-4b61-9783-fecfa80d5031','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-18'),
('788ad049-f316-4522-84a3-07d05ce13d64','7f827719-d0a9-4910-9aef-532cd3731df7',16,55,67,0,NULL,NULL,'745995046-2-5'),
('788c47f5-f9f9-40a1-b2af-21471c8d9bf0','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-10'),
('788dadbb-637b-48c2-9216-8ffbf2680133','ded23734-c508-4194-a2ec-4f8b8510665c',7,126,126,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-3-1'),
('78916d18-6c5b-48c0-ab51-3287f23c5295','5ecc2bd3-1fb1-4c1b-9901-f80f9be07662',117,13,66,0,NULL,NULL,'47816855-1-3'),
('7892601a-8726-421b-bfd8-598db63961c3','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.576','478983907-5-16'),
('789268bd-9d7f-4b5a-993c-35bcf648e164','bcba86c8-98cc-483c-835e-d6a21f8a45b4',0,0,0,0,NULL,NULL,'70333177-1-2'),
('7892db38-f759-4cc3-9b1f-1416311d7aa3','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:41.084','248284003-1-7'),
('7894fe84-fe55-42b6-982d-50a328ebf00a','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-1'),
('7895e8b3-00cb-4cd6-aa8d-e47033452350','c6df5a40-83e7-435b-ab59-3e39b8d977c2',65,57,102,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.462','613191069-2-2'),
('789609c8-0844-49bd-8399-0205e1cdba7a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-142'),
('789a367b-cf24-4659-a734-d7dbf562fe2c','b28511d9-75df-4f6a-b1fb-ce18b7027a2a',0,0,0,0,'2025-02-09 09:51:39.841','2025-02-17 21:43:20.917','745536465-1-2'),
('789be60d-d454-4f09-a7c4-ec43a44536cc','7defd633-f7ab-424d-8029-028d1b045752',60,21,19,0,NULL,NULL,'501119446-1-18'),
('789cce3f-b29b-4592-97f0-7569caa75fb1','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',26,35,17,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-30'),
('789d8b93-3261-48d8-ac14-4965b0cefd0f','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-12'),
('789dd90e-0980-4962-be56-bd54b46e58c3','0009aeec-e682-465c-b701-363a3ef377a6',19,56,8,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-45'),
('789e207b-8e71-4110-81e1-214fd9c32225','723a1ddc-811a-4899-bb4b-577c7b163262',75,65,70,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-1'),
('78a738c8-a18c-4063-85e8-7f15237c256d','46d1512a-2bfb-476d-a224-9390f3e194f2',201,91,30,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-14'),
('78ac6bf6-e7b5-4173-9795-e225aea4d94d','f0485a78-951c-4f89-bddf-b2003f0bf783',51,51,13,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-32'),
('78ad36fa-6a71-456b-bf85-d39182a781b2','8d062431-1a4c-4054-b1a1-188c412c0dd2',56,106,78,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.218','221511033-1-3'),
('78ae0d34-c4c3-4039-bfcd-bc4616814e42','56f86587-7355-4e49-9eb5-727edc1be570',162,54,8,0,'2024-10-17 13:41:05.020','2024-10-23 13:04:48.112','982691264-1-7'),
('78b80f9e-eb3f-4c25-966f-5209b8c0be51','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-11'),
('78c2e4c7-bd49-4013-bfe0-06faa4cee5d2','335d49bc-ae8d-44e8-8d64-73df7dd93d77',56,81,101,0,'2025-06-27 17:12:25.013','2025-07-07 06:55:23.557','976680764-1-3'),
('78c3064b-a883-4742-bbac-c23585a558fb','d0f4bba7-0b87-482c-9828-9f24f37e6ed6',51,51,77,0,'2025-10-02 11:20:32.262','2025-10-11 16:34:04.338','221837026-3-2'),
('78c56231-5a63-4dd3-baa3-c24074f829d0','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-4'),
('78c56acf-435a-4c8c-93d3-15d58e428b51','0cc39437-8ee1-47ea-87c2-b9fe770c2259',55,48,41,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-11'),
('78c61455-b8ab-49c2-8acf-f69e731561d2','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-11'),
('78c70eeb-4c3c-49a4-b551-481651873580','485c676d-9cb1-400e-9d2c-e8f3c85d9402',54,76,100,0,'2025-07-02 12:43:19.786','2025-07-23 14:29:13.652','644403373-1-2'),
('78c97aec-3267-46a5-aed3-b829ef27ff98','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-22'),
('78c9f6c1-1404-4d8a-a66c-ed51b3b181fc','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-25'),
('78cd9a65-c2e9-4c2c-aab2-2fcf88242a6d','c900d790-eeff-48b9-9f2b-48972c98ac32',13,62,94,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-9'),
('78d0bf10-eeeb-4c30-9dec-ece110fd2853','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,55,5,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-19'),
('78d14179-3957-446e-9234-27329986f7ce','ce4976ba-e974-4470-8acc-c28f5a58a2e9',13,13,103,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-7'),
('78d69507-83e8-4661-bc12-0d6d51af5622','05c69f47-3c62-498d-97f8-bc1d7350f13c',53,58,97,0,'2025-06-11 13:14:44.477','2025-06-17 16:02:25.266','437256638-1-5'),
('78d7edf9-e6dd-4038-bcfb-bc5758590c1e','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-68'),
('78db9d8e-c75d-4afc-b361-188846d01247','9e799fd4-8e7b-4434-a919-bd8463baf426',43,43,78,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-2-3'),
('78dc46be-46b4-4fcd-b972-595970260668','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-40'),
('78de694a-3198-4b3a-9ded-48a7a2d78ed8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-167'),
('78df3c91-424b-401f-a917-0daa0a95ac5d','ae89ec40-3826-4229-b966-6415fc238b56',93,185,50,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-2-1'),
('78dfe81a-e306-4b8e-a196-7ab020672332','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-15'),
('78e0ccc0-65f0-4285-bc3d-278fbf19c065','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.298','223444495-1-75'),
('78e25de2-eff6-499b-a5b8-6c6d2d82b70a','968ee2de-a940-498e-9a22-f2f981b860b3',27,160,200,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-2-1'),
('78e36c63-3b1c-40e3-ad22-a3c6377a1485','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:42.066','248284003-1-182'),
('78e3e1c5-5d15-4609-bbf5-96c45ad2c6f1','6cee1429-9935-4eae-be32-dc630b6d70e8',220,49,12,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-20'),
('78e441db-a958-45c6-8092-bbbfe70892f5','2bd0a09e-a059-491a-8464-25f9d0457185',90,68,97,0,NULL,NULL,'127991361-1-4'),
('78e5383a-be60-4bce-9efa-2368918271df','3535d433-eb38-4879-84b4-dbf8410809cd',210,56,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.308','011620933-3-18'),
('78e5c375-6ae1-404e-8a07-5a1ffbecdee5','56f86587-7355-4e49-9eb5-727edc1be570',210,40,8,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-8'),
('78e9def3-1621-46cd-bc9e-67face4acd80','702c1aff-1a98-44f0-9dce-efad71572432',48,70,18,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-16'),
('78ea51d2-2419-49be-9c66-7bea5671434d','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-8'),
('78eb3a6e-f52f-47af-9dba-70081b7472ed','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-7'),
('78ebc3d8-fe1b-4fbd-9a99-10f24084b3d0','5e9ac631-c11f-4693-b962-64e3d00d41d1',95,65,65,0,'2025-10-25 08:59:16.419',NULL,'478450171-2-4'),
('78ec657f-66cf-405a-a33b-53a2eea354c7','b44449c8-5efa-4085-bd2d-0a3594587af9',56,16,91,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-11'),
('78eca3fa-4885-4396-ae62-7a0bbc53093a','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-11'),
('78eec048-d81b-40c0-8e1a-97d6f79a0989','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-1-5'),
('78efa169-2d8b-43de-98c6-e066de7712d3','9a855e3f-e255-4ab4-a73f-124103d32ad2',105,105,65,0,'2025-09-12 17:17:00.463','2025-09-24 06:51:13.936','976593604-1-4'),
('78f0b5d5-d291-4147-a009-2e554e62281f','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-47'),
('78f18ba8-b044-4d59-a1e7-0b92cc890c44','193f8529-9851-484d-b59f-72470c97132f',86,165,16,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-1-1'),
('78f1e908-5aa6-4b6d-b9ca-5f124149f5b5','8966cba6-713b-4094-b1bc-e0e0d0f8334c',137,65,100,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-2'),
('78f90208-787b-4e12-82bd-2c2c3790fc22','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-6'),
('78f99c87-a0e8-421b-a8ff-f65eb02a3c4c','56f86587-7355-4e49-9eb5-727edc1be570',200,180,27,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-9'),
('78fbd2e9-c9cd-46cf-9af0-8a69032c4cb2','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-63'),
('78fc7d15-7dab-4191-9f1d-f19407fd8ed5','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-3'),
('7901bed4-358b-471e-9cdd-c2f5dcc7be13','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-2'),
('7905816f-fbc7-4c2e-b1f7-13e783e174ea','8fc7023c-7fab-44ae-a533-006d835eddb6',46,12,142,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-14'),
('7905e393-179a-48ed-9768-ff83379c1e80','7d5afc4d-54d4-4d61-8ae8-ece35555da95',0,0,0,0,'2024-11-02 10:13:27.314','2024-11-12 17:06:08.204','745881843-1-1'),
('79073ef8-3c51-40e0-ab90-e359e939039b','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',143,28,23,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-19'),
('7908f714-1691-4d36-a8a7-c182b7878206','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-47'),
('790bc081-6d0e-48c8-8d63-fa419944e4c1','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-11'),
('790c2bea-7b59-45f9-b54f-a17bfb7dba0f','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',101,56,73,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-5'),
('7916f439-7497-4c56-bf34-375f127ec5aa','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',56,29,35,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-20'),
('79178c1d-8b49-4abb-82d1-9faeb448bbfd','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-4'),
('791c0be3-69ef-469c-abdd-52db1da92ef4','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-48'),
('791cfab2-ff6a-4902-890b-2ce2f6d75fe5','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-31'),
('79214466-93db-4379-94aa-13020db782eb','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-18'),
('792203c5-d23e-470d-a63b-51ce5afcf002','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-33'),
('7922cf3f-a683-45b4-a5a4-02c4e2b9ec7b','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-46'),
('7922d50e-d6a8-43f2-89b3-d309f25ca859','73bb3ff2-f6f1-44b0-849d-9baef250ea05',51,51,77,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-3-2'),
('7925242a-1b78-4d45-ac24-7e6e63d5696b','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-25'),
('7927524e-2a40-407d-ad73-9fdff0ce0337','fbffb9d5-c273-47e9-93ff-d898c5730075',81,95,78,0,'2025-05-24 17:55:18.378','2025-06-06 17:34:14.192','644776565-4-5'),
('7927934d-12e6-45a2-8625-aaa12b6a852d','f848ce93-1e13-4869-9697-77af297f746c',0,0,0,0,'2024-07-20 10:37:18.022','2024-07-29 16:40:42.800','412450269-1-1'),
('79280726-bda7-4107-8823-26cc7afcbd8d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-13'),
('7929d404-bfed-4db6-a345-23e73ebba903','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:44.348','248284003-1-189'),
('792cf64c-67e1-46a1-967f-f34aef972758','fc4843d8-7733-4186-b9c5-fb1602e2ec64',0,0,0,0,NULL,NULL,'011548428-7-1'),
('792d6b7a-3395-450e-a0ad-9a6a7f304dba','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-31'),
('79323ad0-a4b1-4011-b926-2e996df35470','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-22'),
('7933a728-2c72-46ad-9a2c-30cdcb17637d','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-49'),
('793421f0-61ef-48c3-bf94-8e2c8a6771de','c98f6188-56c5-4870-be97-be71cf95f62e',212,42,5,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-8'),
('79390fae-d5a1-4a63-a5b6-f67c2228deec','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-3'),
('793b70fe-c6ff-4f42-b2c2-e9be0744f83b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-28'),
('793e1d1e-5c0a-4b1a-bd11-fe12d927d52b','e54055a2-3c9c-4738-a808-7a4a31877ef1',197,163,3,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-21'),
('794105b1-f4c1-4779-ab1d-060bbd2564ed','78e96b5d-e785-4827-a870-bb88c819f8d6',0,0,0,0,'2025-02-13 20:44:18.368','2025-02-22 10:20:16.788','910291071-1-3'),
('7941260f-186c-4b12-88b4-5d3a3481f321','7ba47169-83ca-49a6-98fc-6ef1a1990eac',200,160,29,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-15'),
('794276b4-800e-4a7d-918a-964b2e301253','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-20'),
('794278d5-279a-4ae2-aba3-b14a80571c5f','ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705',88,70,97,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-4-3'),
('79445895-1a8b-4551-b0ad-48dacd52602a','e622181e-7708-44a9-8b12-3952b738674c',75,75,75,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-3'),
('79459eb8-fad0-4ef9-ac35-44b1d774e64f','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-25'),
('79486725-bd1e-428e-bf5f-f1f494c334b2','031c81a1-1596-403b-80d9-8d3b2e98940a',98,70,245,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-1-2'),
('79496fab-9296-40d8-9cbd-8fcfa5b512e3','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:07.492','248135683-2-44'),
('794a6671-90bb-4607-9ab5-aa4ed6a7b287','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-10'),
('794b8714-fe89-4a54-b16e-3ccc015ad1c8','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-12'),
('794d226e-583c-49aa-9a99-c0eb67f3bd16','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-44'),
('794e1eb4-88eb-42e0-bc4f-1f620c98b2fd','fae6909c-01c0-4f09-ac49-1ff3954779b4',52,87,70,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-4'),
('79520eed-2707-4b6b-a232-115b84821797','3da17157-28be-4bae-8dcc-745d0e93e591',105,123,65,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-18'),
('79542168-48f7-4ec3-89fc-1403104eb0ab','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.934','478212601-1-9'),
('79580082-b672-4456-a689-037703c15574','6cee1429-9935-4eae-be32-dc630b6d70e8',82,41,14,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-21'),
('79593739-f3c9-4924-97ae-d6e680b17a1a','7d19eaba-df15-41dc-b313-422bc8ab516b',75,70,100,0,NULL,NULL,'53182437-1-2'),
('795ec319-33e6-4de4-91b9-01b61d50d403','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,75,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.912','524289921-1-2'),
('795f3330-88ad-4db0-8a2e-77874da9d547','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-11'),
('79608386-3224-4635-bc9f-1d04b02ac9c5','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-32'),
('79616a33-375e-4272-b027-92f973b885f8','148a8646-0bfd-4fcc-ab65-0b45431fcc16',44,15,184,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-6'),
('7962adc4-405f-4373-920b-1cbab938d3a8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-192'),
('79630e65-8151-41f2-bfbb-f72c79c70702','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-5'),
('79653710-4006-4aef-9621-9d6f3a0d1376','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:52.084','248135683-1-101'),
('7969a10e-3cab-4dd5-a87f-d25b0a250f05','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-1'),
('7969c7cb-523e-4e79-84a6-97428883fed6','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-4'),
('796ab428-0cd9-4bf2-9277-8ed3e8940480','26d9dcf8-f56a-4ec1-96d4-af3945d37fa2',97,240,75,0,'2025-07-17 09:33:47.357','2025-07-22 17:22:00.525','910772127-1-4'),
('796ec4b1-ad0b-44ce-b121-942b5341532e','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-48'),
('79721cae-dec5-4131-8390-5165b9c00280','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-137'),
('79730911-efda-4ca6-b68f-81b0ae9fd11b','8c2422b1-01c5-4a6d-9049-4906bf144020',90,200,29,0,NULL,NULL,'74532359-1-1'),
('79745a34-c598-46dd-a1c1-dd93be100cd0','a769cd75-8095-4eeb-999c-d1a749589a77',110,66,23,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-15'),
('79767363-ae77-463f-a4f7-0a88b89eda82','e821bf6f-ce55-4036-a505-910ce2b84e01',97,201,63,0,'2025-08-21 07:15:03.733','2025-09-03 05:42:06.991','598614826-1-3'),
('797781ff-9187-4f83-934e-22a007b2c440','a769cd75-8095-4eeb-999c-d1a749589a77',80,132,2,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-9'),
('7979afe2-f5cb-476b-8c05-2087036ffb25','a5e8964a-d12d-4dc6-b88e-55ea9e1549f6',96,7,163,0,'2025-07-02 12:43:40.932','2025-07-18 17:08:41.286','37140435-1-4'),
('797ddc44-d959-46eb-a050-3622672508f8','62bb2a42-4002-4e2d-bac4-12fb90437329',94,182,8,0,'2025-06-21 04:34:02.578','2025-06-28 16:01:00.922','613554878-1-1'),
('797ee3d7-de8d-4588-8b29-2d18212233c1','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.092','248211803-1-60'),
('79801c20-1897-4620-892b-b2c55cad2457','c2733454-d8f3-40a8-a705-b4d31da5c848',138,75,28,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-2-1'),
('7981bf77-0b56-499f-9f3c-9eedbdb18e57','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-68'),
('7981c62f-eb73-4725-8582-da32ba41ddad','a5626ae2-9a5a-4401-9095-a368c22814f1',42,4,210,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-15'),
('7982ac82-289d-4518-9bf8-0a77ba51f125','349275ec-e320-40aa-a5b5-1c57b1cf65f0',87,87,8,0,'2025-10-22 13:07:06.149',NULL,'505724535-2-1'),
('79847c28-d1e1-4edf-a6a4-86dc78d1ebea','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-44'),
('79852060-9681-45db-acd0-35f15027f03c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-238'),
('7987343c-03e4-4a11-aba7-636c0fb71917','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-69'),
('79878a56-17a4-4660-ae90-e44ec8e26caf','9d62738e-2143-45e9-a295-ad7123e774d8',52,72,102,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-3-2'),
('798c13ce-0be0-4c8d-9a0b-934bf9c7fff1','016dfb52-0431-472b-8ea9-e510a1937e2e',97,29,202,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-1-5'),
('798c337e-ee5d-45cc-a6f5-3c4f5b74b737','66111de3-4db5-4d79-9d26-01d8fabb833a',100,82,57,0,NULL,NULL,'02713231-1-8'),
('798e59f2-94e3-4b56-b717-7e2ce3d57fc2','0c867a1e-6b53-453b-a01e-e0718e79528c',0,0,0,0,'2025-04-25 16:57:14.837','2025-05-01 09:52:31.774','644576493-1-2'),
('798f12a2-f0f0-4f5c-b351-1ba1a3f2ffa4','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-154'),
('799212a4-d8b9-4cd0-9cf9-130dcbb240f8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-44'),
('79938cf5-5414-4e41-8883-d1df83617625','acbdd21f-746f-4630-82bb-eac5e391f704',80,92,75,0,'2025-02-13 20:44:02.437','2025-02-24 13:33:20.162','786254351-1-2'),
('79962a79-ea70-48bc-8335-0a861c84ecbb','bf45c546-7b61-4cb9-8ff6-a953f372662d',68,6,191,0,NULL,NULL,'745995046-5-3'),
('7997c443-474e-4b0e-a21b-b2c33ec737c5','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',220,105,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-19'),
('79981f7f-1539-4fc7-9d54-0206ce3c9948','e8b58cc1-698b-4364-ae95-f00b90174c08',12,39,128,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-11'),
('79998d12-e1e1-40e4-837d-ff65758c450d','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-11'),
('79a38ead-8691-43fe-82a0-fe4f6e9ce5b2','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-3'),
('79a8b5ef-00b4-464a-be80-82c7ce54ce63','8a2e1aac-28d1-4f92-929e-a34cea96fcff',95,63,9,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-3'),
('79a8df19-fb55-44a8-9c49-d7f17bf63818','66f8d34c-0c41-46f5-98bb-500adbb6f636',32,20,207,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-9'),
('79a9de39-abcc-4543-9107-e35b35b7da14','9342288f-d53a-4162-b6ba-b88ee7f6ffa7',0,0,0,0,'2025-02-09 09:51:41.350','2025-02-17 21:43:08.580','478540346-1-1'),
('79acd89e-1fc1-4c29-a810-06e182637a0a','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-3'),
('79b05fee-352b-4670-bf01-85fa3c398c29','c71f39fb-d5e3-408c-ba59-55a9dcf4158c',0,0,0,0,'2024-12-01 06:48:12.766','2024-12-10 12:35:44.768','44920682-1-1'),
('79b07296-1fbb-4a23-b061-1105928a5d37','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-18'),
('79b3ad79-9102-48d8-a1ff-206680b91320','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.910','2025-10-05 12:15:06.061','223441694-1-65'),
('79b4a654-1834-4a4d-afc9-12e52930862a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-23'),
('79b81f32-c5d6-4483-9e5e-a779bc7197eb','d42ff6bb-7a1f-4711-9eb9-3593301b840b',235,100,65,0,'2024-03-30 10:54:56.698','2024-04-04 12:48:41.646','982592763-1-2'),
('79bd73ef-195f-4d03-ae5d-eb8a5dcbadcc','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-6'),
('79beb682-e421-4be0-8a5a-d8d77973c11c','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-3'),
('79bec5b3-935a-4313-9b7d-963bc8dbfdd0','2d31d975-945d-40e2-ac83-79cfc9b0b5f3',75,75,75,0,'2024-05-17 09:42:53.805','2024-05-28 16:23:04.287','449279198-1-2'),
('79c21629-9406-4a00-bfd1-e0b0c56f6917','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-235'),
('79c3e6f2-2504-4e02-9141-572b1bea7e6c','0009aeec-e682-465c-b701-363a3ef377a6',48,82,82,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-46'),
('79c57b46-d2a2-46a4-bac4-e68746d870bb','0009aeec-e682-465c-b701-363a3ef377a6',100,17,17,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-47'),
('79c67dae-a99a-4d13-843b-da21e251a6cb','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-35'),
('79c69102-eca1-4d56-9961-757641cdc7ca','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.516','478861689-2-1'),
('79c8e66f-818b-451a-b004-d80701bd3da2','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-8'),
('79c95c3d-4752-4562-8935-603f88cf8ead','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-9'),
('79ca219d-16ff-4370-a3aa-8e10e3992cd6','f7fec661-6f5f-45d8-8d10-18c1dad72513',54,51,58,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.162','428704278-2-4'),
('79cdcf88-c4dc-4127-9b88-b25432c87cae','cbb2ee4d-f3d4-434f-aeb9-9dbae6ed267f',85,85,45,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-2-2'),
('79ce26c5-323a-4c50-a472-d8f58ac9830e','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-18'),
('79cec05a-5f22-4cd1-be99-d08095bfb9a4','d002bcc5-a422-4c14-8bcb-77615c5f9183',101,52,76,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-4-3'),
('79cf74c1-1004-40c6-8995-6aef862bd899','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',30,106,206,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-21'),
('79cfdf7b-62d3-4949-b2b2-a87de3e51e2e','5acaa9de-dec3-4088-9126-7d8862513d93',85,8,87,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-2-1'),
('79d0c1cb-43ab-46dd-aa06-f801bd167cc2','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-5'),
('79d11a73-3028-4633-bf8e-6dc1d7a3e283','d0ade823-74de-4507-8f72-ff3352af4bbf',182,124,28,0,NULL,NULL,'428407424-1-9'),
('79d1451e-44a3-4fca-aa06-0e12810ab3d1','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-3'),
('79d6576b-d0b5-4787-9881-6a82b73519c3','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',230,95,80,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-90'),
('79d70a58-6174-49f1-b0da-a24649674f7a','fb58f438-30e4-4e01-af6e-6378e27a11fe',100,83,55,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-10'),
('79d7ae5f-87ac-4989-8d54-b234fbe82255','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-34'),
('79d8c7a1-7c8c-4c90-b086-665cd91ec4c4','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-23'),
('79df7dda-83ae-4c95-9df6-129e3237f648','e97539d8-0d26-42a2-bfcf-9866d5bd205b',17,45,67,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-5'),
('79e4bf26-1fc3-4468-bd6f-2553b0587987','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-48'),
('79e53567-2eb0-45e5-af4c-5579e617e500','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-49'),
('79e66759-c9b9-4758-aae8-6bd6e350c2b0','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.580','2024-09-18 16:13:07.069','248533509-1-26'),
('79ea610b-f6db-4395-9bac-7f38f89f77f5','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-62'),
('79f053ac-25f8-421a-923c-83c19534e84e','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-21'),
('79f346bd-93e0-40f4-a097-d051892b804a','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-12'),
('79f39b2f-8a54-48d8-bf37-0f21f0f8bc8f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-23'),
('79f3c057-b8dd-44df-853d-8257eb7c098a','8c3a9387-2db4-400b-95fa-11aef6c745f6',215,64,7,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-9'),
('79f5f823-d347-4e71-8ede-13f1a987d4a3','ae8b0589-4bee-4cda-9dbe-1fb3b25105e7',76,52,101,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-2-2'),
('79fa2201-2a3f-4310-bebc-df29d3e11288','e0c27b90-eb33-4e8a-8ef3-679c60cf0ffa',0,0,0,0,'2025-03-24 16:01:46.233','2025-04-05 10:58:12.819','478559134-1-2'),
('79fb93f3-3d95-4e66-83cd-28f4fb188303','d8896502-ee1b-4969-b484-104bc8965f47',80,75,68,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-3'),
('79fd7ff0-8890-448b-82af-c75a12ba7bc4','52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63',90,99,70,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-3-4'),
('7a0165e3-f4ba-4dd7-b041-e8e0f42241e2','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-36'),
('7a032c2a-c999-4a7c-a233-ca39595241fa','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-57'),
('7a03692a-30db-466c-bdbb-645aa95fe588','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-6'),
('7a0e60c5-a98d-4996-8a85-6a1aedf5293e','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',72,75,70,0,'2025-02-13 20:43:42.872','2025-02-25 17:03:19.994','449693939-1-4'),
('7a0ea047-cae8-47c5-b28e-6c2cca4abd43','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-32'),
('7a0efbda-3831-4860-911d-2e58bb42684f','8625abf2-719d-4d7f-b206-16948b318b8b',0,0,0,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-35'),
('7a0fd29b-f071-42cc-8424-8b6e6f4e2cfb','9eeecdac-d023-4ee9-8639-dc9b22642c27',91,207,2,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-5'),
('7a118b54-08a7-4a55-a332-d9f897d8bcd4','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-3-27'),
('7a12fa23-3e91-4250-980e-fe11e40dc1bf','d0382f9c-aaf0-441c-b336-44000b89634d',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-4-1'),
('7a18c13c-a53a-4527-8841-92919f0d6f91','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-18'),
('7a1a2182-b501-48d4-a86f-f68547796b9a','a970a3f5-58bb-4e19-be39-2b2e53a6e56e',50,50,78,0,'2025-10-22 13:07:10.734',NULL,'011766113-4-3'),
('7a1a87b9-ea2a-4ac0-baa1-227cd5f74817','0c05a97a-db7c-44bd-92d4-cae9f277481f',10,77,130,0,NULL,NULL,'598697614-1-2'),
('7a1b7a12-4bc3-4e66-a4e7-607d0dd542ec','4d63984a-5ff1-4253-abe8-286bd84e3528',92,24,192,0,NULL,NULL,'478350685-1-5'),
('7a210aea-6b10-4231-84e3-70351a314c79','4a90547c-6b75-4ad7-a83c-cf7308b5af24',45,33,225,0,NULL,NULL,'598138099-1-3'),
('7a23498c-59b7-49fb-83c3-ee16897051d8','ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-2-5'),
('7a25cf4c-8b3e-4c17-99f9-da3699c90c12','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.103','478593603-1-15'),
('7a2d3e5a-217d-4274-b5df-59e2423cbf9f','99f3c807-c2fa-4316-8a01-93a1eeeac0f9',90,22,203,0,NULL,NULL,'613868869-3-1'),
('7a309176-3d70-4dcf-9287-bf3a928ae964','0ca7b5c8-7608-49bc-9057-d56d835fbea5',82,57,100,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-22'),
('7a32113e-7763-4f12-8410-484764d4e3d9','de610e6e-8746-48a1-bc9b-9545c82200ab',76,100,57,0,'2025-10-02 11:20:39.275','2025-10-15 20:06:33.336','221282484-2-3'),
('7a32ccde-1edb-4964-b7a1-5788963513fe','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-1'),
('7a357f5d-aead-4dc7-b72d-e6854f3324a6','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',43,7,209,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-22'),
('7a35c97b-1235-43a9-addb-15e8e6bdea0d','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-7'),
('7a385eed-cf2d-4c18-b73e-19b483381d05','4f504ce1-6749-4512-ac63-b91e44735bce',0,0,0,0,NULL,NULL,'598772340-1-2'),
('7a3a4bd6-c6f1-44a4-81cd-ef1dc89d2e80','115aa366-1d90-47fa-a4bd-cfd120425cc1',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-1-4'),
('7a3abd35-302a-42e3-ac61-953795fbd1f7','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-54'),
('7a3ed522-b3f7-4ee6-a71a-0a905d051fc5','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-4'),
('7a3ee1b4-8a7e-4206-85f9-fcf19ec91e93','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-5'),
('7a421e55-a0e3-4d94-923a-a1adf3b4c618','de440f55-a69c-4eb1-b8c9-629c405b795d',29,90,200,0,'2025-10-25 08:59:01.029',NULL,'515973668-1-2'),
('7a42ba45-3e90-4557-9d3e-b1fe1c9f8d61','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.055','74529534-5-11'),
('7a461b75-a82b-42ef-9900-dad1ac90550a','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-3'),
('7a4f076c-65b4-4785-805a-e92b95e2fff3','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-17'),
('7a4fb109-4dbf-440c-8e4b-61312d37ccac','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-7'),
('7a50e09f-e576-4dcb-9765-70df617d2fea','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-20'),
('7a550783-4ae5-4436-841e-e80134721372','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-22'),
('7a5bc378-ba12-460c-8a66-38bb3c18b74b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-70'),
('7a5c4f81-8154-4314-b591-be57b684755e','220fed8f-f96e-4af5-867b-ac05d11bda6f',90,2,205,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-29'),
('7a5d8dca-4530-4fe3-81d6-1a5adc6842c9','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-3-2'),
('7a5e3d10-7579-4770-9671-20f11ed1e1c9','d8896502-ee1b-4969-b484-104bc8965f47',80,75,68,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-4'),
('7a5f0238-bfad-40a5-8f1b-1924453cafd4','4234b206-7cb5-444c-aaca-5283e36bcc3b',57,82,109,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-1-2'),
('7a607311-7568-4b90-8e8e-f622f05cb6bb','aae2318d-95da-452e-926b-e231bf06cabf',91,28,198,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-2-3'),
('7a61531c-b0ab-4f52-ac5e-aa00e7dbd442','0fe6d0bb-346d-4029-b0c9-5d01dca21872',0,0,0,0,'2025-02-03 18:18:32.727','2025-02-14 15:00:22.989','478370539-1-2'),
('7a62db87-4ea7-4fd8-84bc-7bc70d7146a2','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-12'),
('7a6665ea-e93f-4e29-b255-85a9f354b017','e891b961-f9b8-41f5-b49e-f492048bd8c9',17,59,140,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-7'),
('7a66b01f-dbd4-4e5a-86ca-35253e78f02f','fae6909c-01c0-4f09-ac49-1ff3954779b4',90,65,70,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-3'),
('7a68972d-de51-4323-bab6-558ac81c3f07','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-29'),
('7a689974-f878-412e-ba5d-842c2d6eb8a1','c7b31d10-8a95-4f0b-95ae-8c63de27ad8e',51,51,45,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-4-1'),
('7a6bbc67-6481-4c40-ac44-36aa4f44220c','971a672e-a142-49a7-a3c1-09bd6fbaa824',10,19,163,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-19-1'),
('7a6e9931-4db6-4b90-97c4-24464c75838a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.466','412173308-1-61'),
('7a6eca13-f49c-417f-9029-0a0fd22a64b7','c22c54f7-1976-414b-9910-bd141ffe1913',51,51,77,0,'2025-07-12 09:20:42.738','2025-07-22 13:22:50.069','613822987-1-3'),
('7a707ef1-0428-4773-b1c9-bda3cbc975f9','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-6'),
('7a734950-6654-4cf0-894e-ed9263892c1d','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-21'),
('7a7515df-867a-45b9-aebc-93e347d90b32','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',350,65,5,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-4'),
('7a759c14-f214-40c8-8835-1ed6b5309c31','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-190'),
('7a768340-6864-4473-827f-828e21133341','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-8'),
('7a782e92-921a-47d4-bb62-c96106401f04','6be11964-ff08-4fef-811c-ae5e608bc5ca',43,43,78,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-1-3'),
('7a79341a-7c55-48a6-ac08-0eda8fa20bad','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-5'),
('7a7b1b57-62f8-4a69-92c2-4d826d103c94','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-41'),
('7a7beca7-29e4-4827-ba60-eb0d2e02885e','6ce91342-6292-45b3-be85-1b55deed3ecb',240,100,85,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-3-2'),
('7a7c2d43-75f0-4dfb-a4c3-335746ffff29','715005c5-c41a-4f93-a5d3-17adaaa7406f',88,98,60,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-3-2'),
('7a7f87f6-a097-4614-b3e1-d48ef86d5ad1','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-64'),
('7a8334e6-b043-40f0-8336-508ebbf14ecd','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-4-3'),
('7a83519e-b20c-417c-b48d-4affa16455ae','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-32'),
('7a8669de-a64d-4525-acac-5024f6e0627b','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,350,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-21'),
('7a887928-9430-4c7f-b4ad-c4a7f3c28eb3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:52.764','248135683-1-12'),
('7a8bb2a1-8082-400c-b887-155db28bdcb5','1b975dd0-98b9-4adb-88bc-962d71cc7b22',198,100,10,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-6'),
('7a8c1cde-104a-4597-9d8f-61b59095e92c','e891b961-f9b8-41f5-b49e-f492048bd8c9',61,5,144,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-8'),
('7a8e3bea-7ffd-4697-b171-9af82c87c615','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-14'),
('7a928504-6a35-436d-a261-e410d80a32c6','fff846e6-362b-483f-ba3a-df216849c545',61,73,220,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-6'),
('7a93208e-3342-43eb-b49c-124e502d5c02','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-5'),
('7a94b06c-a53f-4e73-b094-5a610a0edb49','3988ea20-dee7-4b87-8731-bedc6f18d112',228,57,46,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-1-4'),
('7a959ad3-d2fc-4d40-a39a-2ac53805de9b','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-1'),
('7a96d595-1716-464e-b3a5-8f1e8a41dc58','b397ad04-cf36-49de-98e6-e6b8a1432616',0,0,0,0,'2024-04-27 08:45:31.204','2024-05-08 21:07:30.507','478572714-1-1'),
('7a98ec25-ceb0-4287-a69d-132fc620b486','51130bdb-f938-4bc4-8f49-46c9b089489c',200,40,25,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-6'),
('7a9ea9d7-d05e-409a-aa54-4382026d0388','7e8643f3-2224-44f8-8380-7da5eea93721',232,70,98,0,'2024-03-30 10:55:02.595','2024-04-03 08:28:04.945','501668492-1-3'),
('7aa002c6-faba-4f9f-99d4-ca85e91132db','27e2ce5a-dade-42bf-b4bd-0468323a08cf',105,52,23,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-1-2'),
('7aa05395-07ef-4e41-b46f-b38cbc859fc4','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.256','163401674-1-10'),
('7aa38553-2021-44a4-af20-a0a5a8cfc99e','f88c3e53-b711-4bcb-aa3d-9543580054cd',29,31,193,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-5'),
('7aa397aa-d107-4bdc-8394-d29926c5dde9','cc11592a-cebe-4e7a-b826-8d145872569d',256,95,68,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-4-1'),
('7aa44ca9-8e37-4865-82b2-5a08fccd5c48','fcf2d3c6-3f79-42fd-a564-dc62e7679d3d',56,40,45,0,'2025-01-04 10:47:46.499','2025-01-08 10:30:55.332','248539327-1-1'),
('7aa6ff5a-9477-493c-9260-9c04b1fb9b80','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-6'),
('7aaacfea-c793-4463-8dea-c0d7c3c51575','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.901','2025-01-29 14:49:53.330','248135683-1-225'),
('7aacbd60-e705-4e92-aa3e-05be4f46c6e6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-26'),
('7aaeb20a-97b9-4267-98b5-0826c31f33bf','ebc1b0d0-823d-4fc9-ab24-32381b1b2506',98,15,192,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-7-1'),
('7ab230d7-0771-4eaa-a59c-aa5250bc1ba1','8cfe9d22-5427-43f8-8477-4b5c89b07842',57,82,110,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-2-3'),
('7ab413ce-4ae5-452e-bdb0-20db8bd59180','51f75fd6-c577-4a6d-93f9-fe517711b119',80,70,75,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-1-1'),
('7ab690c3-13e9-4b3e-aa36-7b3fa2c27f5f','8e317333-4917-4a57-b2a0-6592178a7d36',240,70,95,0,'2025-02-13 20:43:45.320','2025-02-24 20:30:58.481','127504677-1-1'),
('7ab92fe9-2ee6-40b0-aa22-1b7a40f342bb','c7fce8c7-acfd-4c12-8db5-81618a4b211d',51,8,209,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-5'),
('7abce0f7-8cbe-4640-b1c5-8a12e1473aa5','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-19'),
('7abe74a2-7585-47e2-9b4e-ce5a6e41d865','f095d43a-8f6c-44f7-aaab-aade7799f4fb',95,95,59,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-3'),
('7abe7545-6012-4879-a890-01efa22e010c','50cd18d1-456d-4a3a-9315-1c4d4ae815b9',120,100,65,0,'2025-02-09 09:51:24.840','2025-02-19 18:36:53.201','50133684-1-1'),
('7acb380f-1bdf-4772-9ad5-ff82fbd7f40f','d93f5d7a-7db9-43e3-8d9e-87cb0ef58425',7,93,93,0,'2025-10-20 07:17:51.379','2025-10-27 09:24:00.820','371434188-1-5'),
('7acd24ab-4b6e-40c9-8ca1-f24d4ba9c74d','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-34'),
('7acf7f1d-e35d-4918-b8fc-fe2ffc27716d','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',51,76,50,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-9'),
('7ad37d04-7844-4ffd-8f43-a5ea5cfa032a','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-50'),
('7ad47364-21c6-4b50-8cd4-c826b0a3f6c3','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-71'),
('7ad65f1a-2eaa-4a5e-82ae-a4828d18aaff','edf5fe8e-ff89-4839-a672-95317938fa52',105,95,7,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.827','598876994-2-1'),
('7ad78bbf-0a4b-4d4a-bebf-227d3b4f43ec','7ca3b25f-8c08-4c50-b102-4ea800c2c2fb',42,43,75,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-1-1'),
('7ade8a9f-545b-408c-8087-9658bc6042db','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-1'),
('7adeebbe-f66d-43a1-8481-918656adb371','20df1553-f4f2-4fe1-971d-395f2623d3e2',53,60,96,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-1-1'),
('7ae2a56b-52e9-4b24-bd8a-8e4daa550c38','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-20'),
('7ae3c97f-9965-4bf4-8889-c78d4467fbec','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,6,0,NULL,NULL,'478893710-2-10'),
('7ae3d61d-28c3-471f-8c8b-9b9742719934','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',100,70,70,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-12'),
('7ae4c753-0e87-4cca-8178-0d95330cbdfe','6a308121-6cf9-4384-8446-08182bd669fd',180,120,13,0,'2024-05-10 18:49:24.434','2024-05-29 11:17:01.505','42845711-1-9'),
('7ae6d473-7531-4634-92cd-3fa9283f946e','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-46'),
('7ae73599-9f94-4cdd-a9fd-0efb160a2149','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-181'),
('7ae98928-8114-4d77-8270-52ce80eadf19','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',81,56,100,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-8'),
('7ae98de9-8496-43e7-b709-963d73a73d99','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-8'),
('7aeabb51-af13-4e4f-a225-a7b135613cd2','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-82'),
('7aef5b1e-f863-4fda-a917-88a20b68ac98','193ecb2d-124e-4d60-bf94-e2e26992e689',90,120,65,0,'2025-09-12 17:17:03.245','2025-09-23 14:04:12.228','614553524-1-3'),
('7af1bda3-78cd-4731-a480-88b213644023','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-38'),
('7af35042-9e8f-48c0-af79-103792d4ac74','626b4650-456c-4f9e-bd85-603b644fe1d8',86,205,33,0,NULL,NULL,'598967733-4-3'),
('7af4626d-bcb0-47cf-8dc1-5a8e97938f04','40c4dd8f-39f2-485c-9dca-60d32029c90d',64,93,88,0,'2024-03-31 17:55:12.689','2024-04-12 07:16:47.838','982547993-1-1'),
('7af7f8da-1235-488d-93d4-739d93d5c0a3','b3352d57-7c75-4049-975a-d578fdf73ca8',214,90,60,0,'2024-12-28 21:42:32.073','2025-01-06 20:09:19.066','478368190-1-1'),
('7afb78f9-344a-4663-a634-68e55a0e7022','c7fce8c7-acfd-4c12-8db5-81618a4b211d',48,79,5,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-12'),
('7afbfd05-5700-45bd-bc9c-7574b4d71f44','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-4'),
('7afd486e-479f-44ac-b88d-ec9287ac8bc1','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-2-3'),
('7b04b843-2063-4e07-8884-bd2da1e126f2','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-4'),
('7b07a572-9d26-4ef7-aeca-ff03e973998e','2a15168b-dcc4-4e71-964c-d404c90020d3',0,0,0,0,'2025-03-13 12:21:40.980','2025-03-20 18:08:27.302','412555066-1-1'),
('7b086b5f-40d6-40e6-a56d-6785d04073de','3da17157-28be-4bae-8dcc-745d0e93e591',130,197,12,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-26'),
('7b0b8e10-0efd-430a-a0bd-3712ac7c42ff','d218cf1c-b46c-49c5-a96b-570ea5fc549b',101,65,56,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-1-2'),
('7b0e5e73-e093-488a-aaf7-7948145e1306','2a723830-d2b5-42fb-95ad-678895eae7cd',55,93,12,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-1'),
('7b0f7c7a-13c8-4cda-a077-531df21f1240','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-141'),
('7b11c918-d2b1-473f-ac97-1e1a83f9aaee','d7ba1ed3-8fa2-4df3-9997-7f6419ace61f',93,232,60,0,NULL,NULL,'371216639-4-3'),
('7b11d9ea-6764-4526-a998-a654948c7a3b','ee4dacd7-fe2f-409e-b014-e7adbfefa118',65,75,80,0,'2025-06-14 12:48:19.093','2025-06-26 08:18:44.849','910670298-1-3'),
('7b1259ac-517b-48fb-a22d-7cea3f4ec965','7e9077fd-3ffc-4968-8b44-b2d19585952a',0,0,0,0,'2024-11-02 08:42:27.980','2024-11-11 19:55:44.992','745778561-1-2'),
('7b136ef2-1e23-4cbb-8ba0-4186009061c9','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-8'),
('7b1796eb-e782-4794-8c33-a83d8d60ac1b','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',80,80,75,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-6'),
('7b1915e7-084c-435d-b473-636c4549d1a4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-102'),
('7b19dacd-46e7-4065-84ce-99b09d2a01dd','7f29d579-cecc-4d5f-a303-6c20027acdd0',43,44,78,0,'2025-07-19 07:52:14.501','2025-07-28 12:02:39.073','598211009-2-1'),
('7b1ab6ba-75a1-4b95-834a-eaeef55ee65c','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-4'),
('7b1eae7b-1fbb-48b2-b9a9-187d72fb1bff','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-14'),
('7b1f187d-2f7f-4204-b66f-c2538f8d182f','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',31,39,21,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-6'),
('7b234c65-bd96-4091-9755-9d11600064dd','be58b061-d13b-4150-9b6b-40941540f77e',95,67,75,0,'2025-07-12 09:19:02.178','2025-07-19 09:39:02.148','982708819-1-4'),
('7b287b0d-a6bb-4264-bcb7-681e017f51eb','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-125'),
('7b298643-fc76-4bd3-a9eb-e3733ff83a60','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-4'),
('7b2d40f2-e15b-401a-ab4e-863a986a00e6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-58'),
('7b30af3e-2037-430d-912b-d6ec1798efa6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-172'),
('7b30b55c-84e3-4502-986e-a37b43483da9','5e9ac631-c11f-4693-b962-64e3d00d41d1',95,65,65,0,'2025-10-25 08:59:16.419',NULL,'478450171-2-3'),
('7b33fa38-e17f-40bf-ba5e-6205916b8a0a','6f8fd929-0228-4fd9-a182-83fe855d3f5c',108,93,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-15'),
('7b381fa7-5532-4354-b284-9656f8b068d8','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-3-6'),
('7b3a6d6a-d97b-4acc-9b98-391633a8091a','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-4'),
('7b3a8bef-5189-438f-b72f-8caad4a5cf36','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.622','2024-10-24 15:20:31.068','223433822-1-19'),
('7b3ad5a8-bd81-4233-85a5-e90a30c26ada','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-35'),
('7b3b85dd-1caf-4a0b-89b9-4d847c36b5e2','97e21a8f-39ea-4766-9d54-5e58992fcd85',192,59,117,0,'2025-10-25 08:59:13.605',NULL,'644769101-2-1'),
('7b3e0ec4-7492-457a-961c-32c383625c29','fb315394-4cb2-4ee4-9b83-42589f739871',0,0,0,0,'2024-11-12 16:16:09.017','2024-11-21 12:39:35.617','745286096-1-1'),
('7b41782a-7023-4fd0-9a54-ac34cacf3ada','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',88,89,5,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-7-6'),
('7b432d8c-d7a4-46df-b267-bfe6ce49b19a','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-27'),
('7b476cad-35df-4796-9d1f-b5ca393cf5ad','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-8'),
('7b4b68ed-e86d-4c2e-aeb6-2a652e4159ef','b0475ba5-7be0-4dbd-9322-91f52b8cda06',0,0,0,0,'2024-10-23 14:11:40.001','2024-10-30 18:09:35.878','248764146-1-1'),
('7b4e00f1-695b-4400-b04c-79446e5c702b','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-12'),
('7b56193f-b1bc-4632-a2c6-92d6f49c92d9','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.229','478361652-1-1'),
('7b5cb057-a821-441c-a208-38e1aaebd711','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-1-3'),
('7b634322-75b1-4638-80e4-7ad083d23eac','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',26,16,12,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-5'),
('7b64c75b-b7c8-49cd-a787-cbb5242eeef7','87690a74-53f1-4679-9f7a-22c85ca0de64',180,200,30,0,'2025-10-08 17:43:22.019','2025-10-15 08:13:05.462','745816946-2-2'),
('7b667ee3-92ff-47c4-909f-2909a00222d1','19c6a32c-4384-451a-aaa5-dfc264ab827b',46,6,211,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-10'),
('7b66e38f-b814-4805-81a6-d4d8a6a2609d','1ef8b91f-e8ea-475e-b299-b11ca4ae6186',43,44,74,0,'2025-07-29 12:58:31.228','2025-08-08 14:07:53.363','371887346-1-1'),
('7b66f50b-1a51-4533-b7c5-11d8436c37a4','256006bd-b235-4d94-b138-40c9fa05eaf1',76,100,54,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-2-2'),
('7b680fe8-0772-4675-8478-4b008ccd8a86','68780edd-2f5d-4394-95ba-798a89376229',110,45,45,0,'2024-10-11 16:09:02.511','2024-10-24 15:20:54.859','428226833-1-2'),
('7b71ef8e-c747-4f46-b2b5-6f330c8b9169','359880a3-777e-425a-a9fb-c44790c1fdd7',70,95,105,0,NULL,NULL,'570265257-1-3'),
('7b724792-f043-4991-84ca-75199b74eba3','be73bfce-7391-4246-a655-6a37a58937a0',95,70,216,0,'2025-09-26 12:39:03.284','2025-10-07 14:12:25.524','976369139-1-4'),
('7b730c8b-529e-4562-9468-f3668cfe8140','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-135'),
('7b77e0a6-731f-4f0d-bf97-dbc44ac915db','9f3b4155-e6af-4ddd-bb9c-bf7cf379013d',0,0,0,0,'2025-08-27 19:39:50.824','2025-09-07 10:15:22.011','478958383-1-1'),
('7b78a817-6649-47b0-bd98-187864bf1611','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-45'),
('7b79dee5-c48d-4e9b-877b-c22d648cfe94','886e0e1a-c599-47ba-bacc-c329212cc55b',10,27,41,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-4'),
('7b7cc10c-3a94-4b9a-8e05-36d536969f36','2c84ba11-87d3-41f7-bcc4-d0fa2cf2eeec',105,105,7,0,'2025-03-24 16:01:53.864','2025-04-04 09:29:40.653','982464994-1-2'),
('7b7ff1b0-34b3-47c9-baf8-4f5c6c31e47e','5ea4b207-b05c-4931-bbd1-648b6933aae5',205,42,8,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.111','428958532-1-6'),
('7b8c443b-538e-4185-8f39-b142eb518e41','e7812ff6-8432-435d-ad8c-50f9beb9f193',240,95,70,0,NULL,NULL,'248501679-1-4'),
('7b8ed2fc-c308-4ca8-b5e8-4a2b650523fb','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-89'),
('7b90b37f-1d97-4fcd-b3a2-fd926443d7a1','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-51'),
('7b90c316-65c3-4a49-8983-777db8da09d3','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-6'),
('7b9547b6-0733-4183-ac07-246d871a34da','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-21'),
('7b9a150f-b7e1-4460-b4ba-1d685587d98f','4b8db7d9-3ef4-4c05-b1ba-e427ad82676c',32,40,12,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-1-1'),
('7b9ad421-8832-410a-8bf2-9644ef3579c4','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.590','371716908-3-3'),
('7b9c1cae-e29b-416a-98a1-1ec91e4f3054','2d762184-6c8f-449d-a5e2-ee9bc3dd36a6',104,70,65,0,'2025-10-22 13:06:42.032',NULL,'776312220-1-1'),
('7b9e18ee-d5aa-47f5-a81c-0fb35b4a596b','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:09.460','248135683-2-91'),
('7b9fd88a-5d8a-4c5b-8f13-e81dd7cd45d7','ce705bb9-2292-4b08-8e28-45289657fca2',0,0,0,0,'2025-09-02 14:48:53.641','2025-09-12 06:56:40.399','011222896-2-2'),
('7b9fe2b3-dc44-4566-8a47-35c603b46fc5','8b053eda-bba1-4f32-b6ec-244e823db5ac',44,44,73,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-5'),
('7ba0e45c-c47f-4869-b6f2-9b0cdf0a02b2','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-5'),
('7ba18251-f007-4fd9-9f86-babf420da1dc','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-210'),
('7ba38c5d-cfc0-4eb3-9555-d118ac281878','7d75236b-0ffb-4e2a-9b72-d8f6af6680ca',75,75,75,0,'2024-03-14 13:50:24.592','2024-03-22 10:14:41.903','982744560-1-3'),
('7ba58598-c1f0-4fcb-b416-98a728ccf950','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-12'),
('7ba5a522-9252-4fa3-9427-434cb4ba85a9','635711a9-ff02-49d9-9082-6c29292a043a',50,56,12,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-5'),
('7ba64e00-7b0b-4fde-afe5-0ea2792f9bd6','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-36'),
('7bae2337-a16f-44ec-82e5-7066a3fa10bc','5c990e83-628f-443e-afbe-ea1650122f59',200,160,26,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-4'),
('7bafb4ab-6451-40e9-9d4b-a128000726a0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:46.406','248284003-1-186'),
('7bb50d95-b5cc-497c-a697-572f1ad3f2fe','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-48'),
('7bb76347-d0ff-4017-a2c1-32a4372e5e96','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:45.996','248284003-1-41'),
('7bba0e2f-0565-431f-82fa-59cc17e268b9','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-20'),
('7bbada20-6db0-44c6-b114-b225a5541021','6b29fcf3-79cd-49b9-b2fa-ca1518066509',44,20,188,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-5'),
('7bbb8e5a-ff0f-4a5a-97b1-3e3729c05912','ca2466d1-9a83-4f57-8f76-f5ddce302e04',75,75,129,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-9'),
('7bbc0722-d3ba-45b6-b043-960293e1f03e','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-35'),
('7bbd736b-a766-4b02-8f57-0ed6ddf2c59f','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',180,55,8,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-69'),
('7bbdb379-a622-4f0a-8d8c-ff66a5b54143','b85943c0-7fec-4710-b762-43156a31c6fa',204,95,70,0,'2025-02-18 16:37:11.893','2025-02-27 06:36:28.734','501452801-1-1'),
('7bbe8c89-d670-41ed-8460-de30f919a368','da8440da-e3c4-4852-854d-19123cbe7e56',0,0,0,0,'2025-05-09 18:43:57.347','2025-05-21 08:16:23.972','151258703-1-4'),
('7bbf7dc6-1cfa-4642-9acd-ab35bfa77c43','82ff3bdc-91ea-4214-98c1-4dc85d6f9504',0,0,0,0,'2025-01-20 11:21:20.024','2025-01-31 12:16:13.312','221946527-1-3'),
('7bc19a3e-2558-4401-bc38-a37cdd954446','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-1'),
('7bc21ea0-5e24-4f98-8b63-d20e770c3899','9a6b1e5d-c0f1-41dc-840d-52aa575f82eb',51,51,77,0,NULL,NULL,'221584314-3-2'),
('7bc30f41-2c65-4703-a5ee-e1df1f69c50a','86e5956d-750b-4aa3-8f00-53e2db7b9f65',92,65,70,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-20'),
('7bc8ecee-c4bc-4d4d-bab2-bd986631e52d','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-1'),
('7bcb99c4-1953-40ca-9b58-878cb5b73732','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-8'),
('7bcbe0c4-7426-4cde-8691-32556c1ed4c7','08832577-714d-471e-b006-0d3852d85ed5',74,127,8,0,'2025-09-01 11:06:05.922','2025-09-09 12:50:22.144','598172413-1-2'),
('7bd68d14-2ce2-4cc7-9151-25ff11e6eac0','619014ca-c3c8-4d5c-ad4c-39716a19cbbb',138,82,100,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-2-1'),
('7bdc53c2-d52f-4f80-a9b1-f65fdc4c2b5b','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-27'),
('7bdd173c-e4dd-4e34-adfb-5d0c8f07fdfa','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.342','644890175-2-3'),
('7bde5f32-35bd-4da1-892f-c6d654bb325a','4b539733-41e8-4f8a-81e2-17e2b9e31c94',0,0,0,0,'2024-08-07 15:02:43.871','2024-08-16 19:22:09.872','478101302-1-2'),
('7be26c4b-e962-460b-aa6b-2b6d84cc086b','8625abf2-719d-4d7f-b206-16948b318b8b',190,1,70,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-11'),
('7be5ce23-055a-47a2-bdc7-1224a2b42526','2a723830-d2b5-42fb-95ad-678895eae7cd',92,236,2,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-5'),
('7be69b14-7d65-4d21-83ac-9c22a23eff91','96449af3-c272-4a90-b77d-0790552dd455',72,81,190,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-28'),
('7be74624-2d15-4d85-86d5-e8a714e5e2aa','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-4'),
('7be979bd-475f-401f-95cd-b4cd0624ff98','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-49'),
('7bf51635-150d-4c4a-94f5-e7e706b742d1','46bbba6d-7306-4e50-94f8-b309b0edb518',70,80,75,0,NULL,NULL,'428905379-5-2'),
('7bf5be18-0d19-4453-9117-a8b12bc32bf8','b79c9c03-f101-41f5-a37a-01d796fa6d5b',103,100,70,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-3-4'),
('7bf99eb9-91a8-442c-afb1-f6436ea88bd9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-5'),
('7bfaef21-b387-451e-9cdd-10f272831248','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.577','735785649-1-4'),
('7bfdd786-d966-44ae-a8f6-714d42910626','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-5'),
('7bff7494-4e70-46e0-aca0-5dd5159f3fd6','1a9dfce0-e85f-42f7-8b4c-64b52dbced4e',55,66,100,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-1-2'),
('7c033471-73c2-4609-b495-a789f565f3ea','85db759a-5e10-49be-92ff-a951a588c1a1',63,50,50,0,'2024-12-23 12:00:07.905','2025-01-09 16:52:13.614','126908301-1-4'),
('7c03b0c7-265a-47b6-8d33-18da6af59ad1','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-16'),
('7c04ac6c-73b0-4d4f-91c6-de7b0e3fe12e','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-36'),
('7c0b2227-2fcd-4100-9987-6223b242dae8','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-12'),
('7c0e32a0-f151-4925-8fc8-87146a41dad5','719c1517-1488-43e8-8631-14bcd14307be',57,76,103,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-2-2'),
('7c0fc266-6309-4026-a005-6620eb66c723','a5930c87-7c64-481e-8b65-e1185a1c5e54',0,0,0,0,'2025-03-13 12:21:23.214','2025-03-23 16:15:57.285','221892935-1-1'),
('7c18f950-f497-4c40-b464-dba5ecceee94','3da17157-28be-4bae-8dcc-745d0e93e591',26,15,85,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-20'),
('7c20741f-766f-453b-8932-83117d938b03','651813ec-1db0-4bd9-808a-90b2d23efacd',105,110,80,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-2-1'),
('7c232f6d-8cd5-431f-abac-3ce80c4c8864','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-9'),
('7c241f35-f989-4d3c-8fb0-40390ed20b95','93682f23-197e-416d-95a7-a04da3e2c257',95,65,70,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-2-3'),
('7c243134-601f-425f-b409-3721515cb771','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',58,88,15,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-18'),
('7c24d7c5-7549-44b1-bd83-9ed5ec01f78f','cc81edcd-ad63-47e1-a989-8ed1f6097722',92,163,16,0,NULL,NULL,'37151088-1-4'),
('7c25b378-3ba4-4cf8-9a70-28057adf957c','4379a101-5d0c-4577-a568-55859726b74a',96,192,7,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.990','675885408-2-2'),
('7c25db7b-5ee5-42c8-be21-35cd35c71811','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-15'),
('7c28eae8-6fad-47d1-9169-b9c2c3b9e7e9','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-9'),
('7c2b4e25-1a10-430a-8588-823cf74dc7ca','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-106'),
('7c2dcb51-eae6-4bf3-94a3-65b0b96e1ea1','8e39c973-c918-4ebc-bd24-9e7fc61de240',200,103,5,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-5'),
('7c2f149a-d6f6-408c-8e87-074d1d393ade','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-15'),
('7c308347-8c0c-4995-848f-e64851407b34','7cd28b4a-73b1-4827-aaee-b29989b9d9b7',0,0,0,0,'2024-06-08 08:00:28.405','2024-06-20 20:15:30.824','74594122-1-2'),
('7c3786a5-3402-448a-8f52-603a178858f1','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-11'),
('7c38c006-336c-4356-a841-af9fa46d47b9','42b7553c-1533-4400-b356-4c6840431f4b',46,202,26,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.301','613510894-2-3'),
('7c3a1f97-3656-414c-910f-bf6364be9c7f','d996c4f8-5b23-4215-8745-02197703fd3a',72,167,98,0,'2025-03-27 08:03:05.413','2025-04-05 22:11:34.360','37176846-1-4'),
('7c3b858a-83e7-425b-bc92-01f6cae3a017','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-6'),
('7c3bcd58-485e-47a2-8575-d5521dbc09ef','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-24'),
('7c3be063-bd22-46ad-9b6f-c2464c64ec3f','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-31'),
('7c3c868d-9d2d-4e1f-8d58-f6cbe944e3fb','97bfb755-45c2-471a-806d-4a5234680c68',125,43,290,0,'2025-10-25 08:59:23.353',NULL,'657947887-1-1'),
('7c3cbcf4-be78-426e-adca-2293736104c4','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-61'),
('7c3d6299-f31d-4182-b9f0-d7445a9600c3','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,90,70,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-1-4'),
('7c4026e2-c8a3-45eb-90f0-3d4a51722d50','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-207'),
('7c40fea7-58c2-4f71-82f9-7c4bbb9cfe43','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-21'),
('7c422811-d827-4067-839b-c8a0352d1254','96449af3-c272-4a90-b77d-0790552dd455',90,76,60,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-25'),
('7c42851e-0d5e-41ef-8a25-8664e6e0807c','0d90ef6d-e963-4a99-bbbe-e4ca67429574',32,103,33,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-2'),
('7c44a324-f488-4548-bb3e-1c61125240e1','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-8'),
('7c49adab-aecc-4642-bdd0-baf3f00f3112','e3fc96bb-68d9-4c85-8fd8-f3e18829deb0',40,105,77,0,'2025-08-14 08:21:17.680','2025-08-27 05:38:11.984','982496646-2-1'),
('7c4f2d51-8a33-414b-a1de-4ad5b3f2e334','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-115'),
('7c4f64e4-bc8d-4899-abea-6a0f3979570d','46d1512a-2bfb-476d-a224-9390f3e194f2',198,107,3,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-15'),
('7c531f8c-f71c-40c3-9f82-1b6c61f2ccac','15ff9118-18a9-4a0a-a3cc-31c9c550751c',0,0,0,0,'2024-11-25 08:28:36.848','2024-12-05 16:18:18.434','449454395-1-1'),
('7c5487ef-3e21-4440-80c7-a11ce77b606d','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-15'),
('7c55f53b-f58f-46fc-8597-c1f40e74543f','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',65,40,16,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-91'),
('7c580d11-a901-455d-af65-6edd4b157eac','6d2958d8-12ca-41bd-a12b-58082d5c955f',92,7,224,0,NULL,NULL,'614364554-3-5'),
('7c5a8a73-634f-4ebe-aeac-3fae7a42594f','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',112,112,80,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-3'),
('7c5bc6a3-50f0-4e4b-b8db-dad37e7b28c8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-47'),
('7c5c29e4-00eb-4fcc-9e33-07b686ddfb4c','7bd64728-38dd-4554-a901-c9cd5700a0c6',135,93,62,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-2-3'),
('7c613ea4-f5e8-40bf-a338-498d00fbaa2a','f41e6fd4-208c-48d4-8be1-b31343cf7a1a',96,52,51,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-4-2'),
('7c63133f-d424-4c7a-a49f-6838a1136eb2','510115d1-e038-41e5-900d-014ceefd89e8',43,43,57,0,'2025-05-24 17:55:24.778','2025-06-04 19:39:30.245','268418662-1-1'),
('7c66fb24-e9a2-48eb-8bad-fba0f337d796','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-99'),
('7c67dd93-25dd-45c3-95bd-51a8d9215888','465d80fd-910d-4efd-b69a-ac5b10f5964b',51,51,77,0,'2025-04-15 16:01:16.815','2025-04-28 11:59:07.352','644887691-1-2'),
('7c6b6209-9d4d-41ac-9642-855a01254bdc','9a74cdae-acbf-459b-836a-29ba929835b2',56,48,58,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-7'),
('7c6e4edd-bc70-4780-a3de-457273235243','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-10'),
('7c70ff36-b438-4544-b634-e6715191f8fa','a77e3c4e-16aa-42f7-80d0-00cc4b94f441',51,51,76,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-2-1'),
('7c719c13-6208-4e1a-97b9-0db8288c42ef','8ca62177-fd4f-4b97-8db9-1855dac0207f',83,92,111,0,'2025-07-19 07:52:32.811','2025-07-26 08:30:20.850','248549362-1-1'),
('7c72f7b0-0dc8-4b4d-9f12-864175d26b97','5cced97c-42f9-4f09-9ce2-eab123493da6',87,128,9,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-2'),
('7c73dc94-3d55-45e2-bdb3-503f7110aee2','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-6'),
('7c79e6dd-ee3b-4720-9156-f7232e9dc427','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-17'),
('7c7bd91e-c27f-4dd3-9d45-c8f134b91987','8625abf2-719d-4d7f-b206-16948b318b8b',85,85,58,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-12'),
('7c7ccd92-d0b9-4b77-a601-d9ef5ff4968f','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-35'),
('7c7cecc4-a1c8-4195-baed-2ef9ffe422cd','54f49f0e-3750-48ef-be0e-ae8f72989d98',0,0,0,0,'2024-09-19 18:27:15.225','2024-09-28 12:18:48.557','982542299-1-3'),
('7c820ad7-b2a6-4842-80f7-8a9354da2dfb','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-41'),
('7c82a91e-51e5-4b02-9c26-7455c86506ee','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-6'),
('7c832df2-db11-4c94-93e7-9e29a8cd270a','1ab745bc-cedc-4993-8852-79017b1ed8a3',80,56,110,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-5'),
('7c8890f0-d9e4-4b45-b366-1bdf195ddf19','546ad3d0-25c2-43dd-9443-e48b8e5b6530',60,46,40,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-47'),
('7c88c008-fc2c-4f51-b4a2-1a7ae1137469','833a3da7-2e08-41e5-bb3c-06e3df596438',0,0,0,0,'2025-02-13 20:43:53.415','2025-02-24 17:24:29.598','478560084-1-1'),
('7c8a141f-e4ae-4e2f-81bb-f7220769c7c9','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-68'),
('7c8c2f66-3f77-4966-aedd-7c1082d87235','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-95'),
('7c8d71ec-a4cd-4fa8-ad6b-f45c1588c2ec','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-2-2'),
('7c94570f-9587-4e4e-9f32-39ca412eedaa','cbf68d77-8563-4d27-83fa-23f08cf671b7',31,31,31,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-2-3'),
('7c97a52e-3cb4-488b-af30-58071af6f49d','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-5'),
('7c993d97-1d87-4f73-a0d6-8784f20d8840','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-13'),
('7c9bf333-914b-4ef4-8bb6-7e27f3dc15df','6e4789ed-c3b6-42aa-92c7-9f9bf35ae289',96,175,75,0,'2025-04-28 07:40:21.339','2025-05-10 20:12:39.533','644542202-1-1'),
('7c9c99cf-94dc-4f61-99b0-b957361c042b','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-38'),
('7ca0033f-97fb-4e0c-86b9-f0e1fd10380b','7311f1e0-e2be-43dc-9e40-f94a010e8939',80,55,30,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-33'),
('7ca2d94b-cd45-4d64-bf38-387e22300518','919abdcd-92a3-4f54-8e52-871167a8810b',47,23,75,0,NULL,NULL,'598944852-3-4'),
('7ca4c6e2-1fa0-4bda-9574-29beea26c321','6a2d762e-11cd-4fca-b32d-cdba41391e25',85,8,52,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-10'),
('7ca8e17b-ee78-4685-99c3-8e0c27ea20e0','1a865eff-de9e-4c81-8ad4-8c96ddfa18ff',125,128,70,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.302','371194748-1-4'),
('7ca9ccb6-6bc7-4c41-9d11-bb3977de287c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',62,95,13,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-2'),
('7caa30bb-d081-40ec-a06c-8f4d40aae1b6','b8e1c00e-2430-4417-9a2f-f583e3a37b18',51,51,70,0,'2025-04-15 16:01:32.250','2025-04-26 17:56:06.990','613786429-1-2'),
('7cad27d1-06bf-4c0f-8aca-44b706d1bf6c','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-170'),
('7cafb75d-d577-4cbb-b547-fcd324da3add','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-10'),
('7cafca1d-1c5c-49a3-9d17-20275d194f94','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-3'),
('7cb09286-5b24-4a1a-b3c8-f872e9bd8ecd','ba600219-bd53-41ab-9277-b80560376633',109,109,81,0,NULL,NULL,'598944852-5-2'),
('7cb13849-7ab5-413a-8d6b-54ac5b18af9b','e35b3fa1-a894-4ca6-acd1-0e3e4568c63d',7,87,87,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-4-1'),
('7cb5a944-174f-42ab-b1f3-974d595c7f32','d94a498b-a4f2-481d-bbd3-eae08b47ab9e',41,84,82,0,'2025-06-11 13:14:40.852','2025-06-17 16:07:08.386','644703173-1-5'),
('7cb6d49f-e2d6-4e1c-bc52-08ed9687a52d','dc192b30-06ba-4062-a95d-bdc29fd8c784',31,31,31,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.286','319212544-3-4'),
('7cb74a1f-24d4-409d-a822-58db079893e9','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',120,200,30,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.604','976543269-1-14'),
('7cbbfb6e-1d6f-4945-be47-2aa0fc12b446','0a851431-d5c7-4333-895c-c0ce142450a7',39,40,78,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-2-2'),
('7cc19a37-c9c5-466a-83c8-cf891a2d6696','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-82'),
('7cc259ec-92c5-4b61-b582-695d4ae091ba','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-43'),
('7cc2657c-2d81-4975-9092-ca6f25725240','a33e65b2-520a-44d8-8fa8-a6f99b49bddc',51,51,77,0,'2025-10-02 11:20:28.084','2025-10-10 21:30:40.540','221962516-2-2'),
('7cc3a5ab-0e79-4829-b9ba-fd00dc2ac938','28a006d0-78f4-4519-9b69-fe1363cd8176',100,65,120,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.224','745869069-1-2'),
('7cc458b9-32a9-475e-8575-40e578419219','0005db85-41ab-4616-bf3c-3a7fe7d9315c',60,41,41,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-1-1'),
('7cc4a23f-27c0-4515-8f5e-847a11321e5a','2a723830-d2b5-42fb-95ad-678895eae7cd',283,57,15,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-9'),
('7cc516d4-3686-446d-b76d-e43164431c24','89054cd3-6702-45df-aaed-cce37ad10d39',80,99,70,0,'2025-04-30 14:29:12.351','2025-05-13 09:05:13.396','531724547-1-4'),
('7cc9df1a-8d70-4ab8-b2cb-bf97ed307b60','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,215,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-9'),
('7ccb3806-244e-4a97-8b25-721488397fe3','e6bddda4-b1df-4be7-bbd5-63cc4b197736',180,120,12,0,NULL,NULL,'42857810-1-8'),
('7ccc0e61-99a0-4a9f-b063-1d14d8c49393','b90750dd-73f4-4067-b29c-e3c2b60c9fa9',0,0,0,0,'2025-08-25 12:32:28.392','2025-09-20 07:01:22.780','437452475-1-3'),
('7cd0f150-3018-4bde-a017-f17a1ebf69c0','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-15'),
('7cd14c8f-cae6-47f5-9860-433a5457e925','8ceabc6f-ce46-40c7-8fcc-4d00d4a393f1',22,54,78,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-2-2'),
('7cd332b2-4456-44b4-a047-e0a16afb9fa9','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',144,8,205,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.434','982176810-1-2'),
('7cd33bcd-b4fd-43b0-b2fa-e36e0d2aa1c0','c557db8e-813f-4118-a776-7fcaab745fff',0,0,0,0,'2025-03-27 08:02:53.352','2025-04-08 15:37:07.395','47855592-1-1'),
('7cd544ca-a6da-40bf-a687-9230a01ce0fc','61a97467-1295-4761-858d-a807036a28f9',0,0,0,0,NULL,NULL,'745141319-2-1'),
('7cd59b7b-2d17-442c-956b-5b487a2e7ff1','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',11,50,206,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-5'),
('7cd7720e-39a8-4537-a6a1-e4c6b1ed3709','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-49'),
('7cdb7003-d535-4ce6-a471-371f59451da0','74c3f7a9-c212-44f0-813c-a9066ac926fa',51,51,77,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-1-2'),
('7ce17c3f-440f-4284-920d-bd24f4e011b5','845879e8-205b-444b-9d29-1e0a6fa08784',81,18,14,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-4-3'),
('7ce1939a-6145-4d9b-a974-7d0cdf980ff8','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-1'),
('7ce22569-df10-45fa-bf69-ee437b983660','ce4976ba-e974-4470-8acc-c28f5a58a2e9',10,10,160,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-6'),
('7ce36752-9b7d-489f-ae30-dae5280c4221','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-22'),
('7ce6f6c2-8a6d-42e4-8d8a-17d512cf069e','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-1'),
('7ceaab38-7b5d-4216-9510-060925e55998','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-18'),
('7ceb3868-4e80-4ad6-ac18-f022c088bafc','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-214'),
('7ceb874a-e356-4231-a045-f59597bfc18c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-62'),
('7cec33bc-ee31-4e7d-b871-5368ecc2e523','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-25'),
('7cec4c5f-636e-41d5-891e-09866165c2e4','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.591','371716908-3-4'),
('7ced2a11-46cc-45db-bb75-10ce58b465d6','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-3'),
('7cf2a6a2-aa01-425c-88e7-8cab81be213b','4a90547c-6b75-4ad7-a83c-cf7308b5af24',43,26,198,0,NULL,NULL,'598138099-1-5'),
('7cf541c7-e1bd-4bf0-a248-8e6ffd635661','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',30,17,205,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-20'),
('7cf608b8-21ff-40a6-b093-4ee25dc097aa','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-9'),
('7cf73497-39c0-4154-af7d-6dcf655691b0','66f04f14-5079-4050-b288-99b7ac004505',97,240,7,0,'2025-09-26 12:39:46.350','2025-10-10 21:30:25.670','221621737-1-3'),
('7cf7e10d-94d4-44d3-af0e-417656e7ae29','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',58,14,88,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-23'),
('7cf889d7-7cb6-4f15-99a5-ddf7d372d1b4','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-6'),
('7cfd1bd9-71f5-4a4a-b5b0-bfed4e41390e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-59'),
('7cfe096a-7f2a-492e-8198-4a83238a55f0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-55'),
('7d02f297-14dd-41ce-a0f0-8c3697abee86','749f88f7-2499-4bd0-b578-1cf55fd70948',180,200,33,0,'2025-08-21 07:14:58.361','2025-09-01 16:56:57.990','745294810-2-3'),
('7d074da7-e72b-4a39-a9cd-01cc736c7806','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-1'),
('7d076844-383c-4998-a0de-002e6b4765c6','dd1cd3de-f760-4608-b546-c1d5ff28b9df',59,46,44,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-2-1'),
('7d085e23-22f8-498b-952e-610312e3cd43','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-36'),
('7d0b62bb-4a56-47ea-83e5-f8c0c4098c65','a95b7647-1261-4cf3-9745-195f5db6c429',0,0,0,0,'2025-02-27 16:45:24.199','2025-03-13 09:28:41.588','64418413-1-3'),
('7d0f9b1f-711a-4fb3-846b-c6b40c847d11','e3274e26-e81b-4a5a-bc90-d5199ceb2caa',100,65,75,0,'2025-10-22 13:06:56.699',NULL,'910152598-2-4'),
('7d10c894-0680-4059-8918-526727e2c867','4869c334-4618-49fb-9d03-99d95654d12a',172,20,7,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-5'),
('7d1467d7-f76b-4fc6-875a-5067fee44cb5','5282b87c-6b11-46ed-bf19-54c6f3afd111',120,198,30,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-2-4'),
('7d15576c-c363-437e-9b34-bf1fbb956cac','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-26'),
('7d1a5844-bced-4902-b224-21d1f6bf6ece','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-59'),
('7d1b0e29-9fe8-4af8-90ad-62cbebd3cba2','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-25'),
('7d1e9be2-64f3-4799-bbad-7932d9bb225f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-27'),
('7d1ebfa0-f315-4365-9267-3149ba520023','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-6'),
('7d22385e-88ac-4110-bd4d-aa72cf34f95c','ba5911fb-48f7-4812-9cf8-75c9a9e745fb',0,0,0,0,'2025-04-25 16:57:06.397','2025-05-02 06:59:08.326','428459785-1-2'),
('7d22a1d7-83f1-43ec-ae33-00edbb750429','5ab2416a-7bef-46c2-b80c-b65bde62a234',81,82,7,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-5'),
('7d255c5a-1eae-4a93-8fc6-343ff629818c','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',31,43,10,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-10'),
('7d265654-1b72-4a30-b566-f8c7703da2d3','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-2'),
('7d2adfd6-bdda-4dbd-ba2c-09002a156716','b1cfee3f-4b3e-458d-b167-9e1d49c2621b',100,80,65,0,'2025-08-07 16:52:59.120','2025-08-19 19:34:06.860','745431846-1-3'),
('7d30af5e-52c0-4154-b0f4-3f2e71be3dd7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-233'),
('7d321035-b8b7-442a-b6f2-d4ae04f934df','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-43'),
('7d332b5b-654d-4906-98c7-36d42678682d','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',80,200,30,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-11'),
('7d33e8a6-4483-444a-b1e6-a85b3723db2e','aad5c1ff-942c-4e60-afcd-b7475a2421fb',85,56,60,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-3-4'),
('7d343009-43a0-475c-bbc8-afdf3e16fbcc','1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be',96,197,7,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-1-3'),
('7d35adc5-a288-422f-bd1a-f4c5eba2f9ab','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-5'),
('7d3a3c9a-db36-453d-874e-8d9db8192806','f1aaaa95-2d25-4f45-b026-0107ca13ac62',210,34,34,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.457','616724751-1-5'),
('7d3a85a1-0f8a-41e1-a2c8-13be0e2f53c3','24e0b87c-b953-4c9a-b3d6-0e79a700836b',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-1-3'),
('7d3af2ba-2403-4664-b48f-a368330b727a','c1bfa9af-ef39-44a9-9789-3e9b58704cb8',60,92,60,0,'2025-09-11 06:34:27.965','2025-09-19 12:34:35.875','808886614-1-5'),
('7d3c39dd-1be7-4023-b3fa-eff444b60896','7539ec51-cdb8-4879-b280-a64290bb512f',50,126,10,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-5'),
('7d3c45a1-f3e7-4f50-b324-5d1a0eb6653d','6fcc55d3-2339-4d12-b5e2-e156727c33f9',47,47,60,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-2'),
('7d3d2e03-785e-44af-ad4d-6ca67d89f9fb','443d1fa9-d29f-4aae-96b8-c6565b068779',43,43,76,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-1-5'),
('7d3f48ee-bb3a-4ad9-9ddf-e50397988fd9','d92cafde-c7c9-4ef1-8397-2d52a48d3964',222,116,7,0,'2025-08-07 16:52:56.179','2025-08-19 19:34:10.946','644658399-4-1'),
('7d41f145-bbbc-431b-89eb-78395d73aae2','ee6fb030-92cf-478c-a63e-a4a35c648758',97,205,70,0,'2025-08-25 12:31:59.341','2025-08-30 18:25:27.870','437539983-1-3'),
('7d442b26-875e-489c-8a48-f0fe80b5a5fb','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-4'),
('7d4ae503-f24b-43d2-b38d-4d882d1272cf','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-52'),
('7d4ba024-57cc-4638-b7b4-97709a325dcf','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-18'),
('7d4c4881-bafe-48c0-8fb0-117e5a39ef16','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-33'),
('7d4cdf46-159b-4dfc-9a65-ce65c9980ca3','46cf4fd0-6caa-4168-bb24-3b124a8287bd',0,0,0,0,NULL,NULL,'750836864-1-3'),
('7d4ce5a6-85bc-46ff-aba4-56cbaa5f9729','dcfba104-f23e-437a-8a27-fd4802b38b82',100,115,76,0,'2025-07-29 12:58:45.006','2025-08-07 14:06:10.844','598585736-1-3'),
('7d4dfe21-9ad8-413b-9893-2dd3720cc94d','8173a4b9-15fd-4a7c-89f4-c9f0540e10aa',43,97,20,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-4-3'),
('7d4f1f68-2c35-4884-a93c-10ee647ffad9','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-86'),
('7d4f82fc-e523-4c7d-b40c-26750d395282','88d64f13-8f29-4701-af77-f681ddeb5724',66,258,123,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-3-1'),
('7d508818-fea6-4f85-a9aa-210af5bbb5df','349ffa09-9e8e-4eaf-8f66-763e3dfa18ab',51,51,77,0,'2025-10-02 06:45:32.406','2025-10-15 08:20:18.471','221591105-1-2'),
('7d5303c1-dfb0-4d14-b381-57d22038ef30','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-28'),
('7d534e68-cd21-400b-8478-402942d68d37','5ab2416a-7bef-46c2-b80c-b65bde62a234',63,218,7,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-6'),
('7d557399-0809-4c69-b3ee-9edf21493585','3d740bd3-88dc-482c-bec6-f4b0fae42557',140,113,72,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-5'),
('7d55b377-7181-41d5-8e9e-9c2e53c3e821','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',15,100,202,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-6'),
('7d56e2d0-0bfb-4a46-ac0b-79f078a4c7c8','746b8541-3c06-48d2-910d-f711f2ff7472',0,0,0,0,'2025-06-27 17:12:17.764','2025-07-08 11:48:44.032','127552437-1-1'),
('7d5c4401-17de-49d7-a6f3-a34ea9217c09','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-41'),
('7d5ea91f-0425-4c7c-84af-abd2bc87d861','565f6966-f194-4d7c-8b20-64502045078d',64,55,50,0,NULL,NULL,'478350685-2-10'),
('7d5ffcc1-49c7-4ab5-9fa1-c0b3348c2cbb','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-20'),
('7d62f9da-cc7f-4671-8c15-8bcaad61b5fa','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-33'),
('7d656f5f-7eca-42cd-a76c-f03f4d496266','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.343','2025-01-09 16:51:50.694','745422037-1-3'),
('7d6ad855-92a6-4dbe-9f9a-f9e0c139711d','73bc49cc-7184-4418-a48b-cdaeaee04127',0,0,0,0,'2025-06-11 13:14:30.709','2025-06-20 13:05:25.864','745658808-1-2'),
('7d6e4c3d-3dfa-4ac3-8932-60a879f27028','b3f001df-2f2a-4776-a3b3-cdfa1a154531',5,49,55,0,'2025-01-22 09:07:20.142','2025-01-30 09:59:36.200','910796066-1-4'),
('7d6e80e9-7195-4921-89f6-2d6b14dadc90','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.678','2025-10-17 06:13:07.090','221801165-1-1'),
('7d780f2a-7b9c-432d-a66e-e9c7b1776d35','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-92'),
('7d7a4d15-fd5c-4f44-a295-3a7fe5b88e1e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-60'),
('7d7be2ac-f56f-45a3-9c82-ca0dc8e1643a','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-21'),
('7d7f46b0-2dea-4505-8817-522d8eb82470','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-63'),
('7d822362-a83c-45e2-bd4e-14dbd90d4db0','5ab2416a-7bef-46c2-b80c-b65bde62a234',41,17,67,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-2-7'),
('7d822580-2add-4963-b6f4-f7fa0241e9fb','3da7ca23-1096-4e12-bda9-57170294f0b1',250,204,43,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.513','412977009-1-5'),
('7d872baa-328f-4462-b0e3-4a533c14993d','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-4'),
('7d88b780-de09-4f9b-9ff1-7bff4691b345','a322199e-9388-4cdc-a475-2497cf269eef',66,11,11,0,NULL,NULL,'501589922-1-6'),
('7d8a602a-ec64-460e-be2a-c2186864ab81','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-27'),
('7d8f29ea-e37c-4629-b8bb-4c1bca3a6b10','5c487410-f906-4e14-a077-9f060026719e',104,16,12,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-8'),
('7d9042fb-b8ca-45de-89aa-48bde6a76f34','c27fa652-60a3-420f-84ea-e63942b65704',105,25,25,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-3-4'),
('7d951935-eb1c-480f-8757-2ebf5c7f8cbb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:54.081','248135683-1-112'),
('7d9ba95d-b653-4ffe-8f11-ab9baaa9f5a3','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-4'),
('7d9bcb40-ecc6-4a2e-935d-cccc03f7a10a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-71'),
('7d9d3e01-9de4-42cc-bb0b-64b56b010440','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-3'),
('7da14168-a090-4223-b4ed-b898fb417bd6','e8302a51-2bb4-4124-bff3-50276f045168',56,32,80,0,NULL,NULL,'127991361-3-4'),
('7da46184-685a-42ca-b4db-759ff680f519','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:45.576','248284003-1-15'),
('7da77839-3984-498e-9f5b-d08419d31bb2','a455ba66-b417-4781-a6f2-6fce1b8bab23',12,62,258,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-11'),
('7dad6647-4891-4ca5-8ffc-fdd1c42e1d9a','278b14ca-f435-4dc6-be59-91b5fafa1288',210,30,40,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-1-2'),
('7db32e05-0bd8-4122-b9bb-c22a5af81466','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-6'),
('7db358b1-a6cb-4def-836d-30b661453f99','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-2'),
('7db5d39a-2268-4fad-b10d-34fafcd6c3e2','02ad9997-7b6a-48d1-8a8f-51b8d6be6016',97,120,70,0,'2025-10-20 07:17:57.977',NULL,'59878032-1-1'),
('7db66dbd-c39e-4c44-bf16-817917f399bb','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.556','2025-08-27 05:39:11.569','221748184-1-5'),
('7db727aa-60c5-4a20-91ba-77fb8703aa00','92f102b1-d7fb-464d-93f4-22a19907a485',55,22,37,0,'2025-03-13 12:21:26.278','2025-03-23 16:15:49.033','338426911-2-3'),
('7dbac99d-6979-4893-9aa1-310bfc2be4db','4234b206-7cb5-444c-aaca-5283e36bcc3b',57,82,109,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-1-1'),
('7dbe27fd-56da-4e68-82fe-283def644a17','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-1'),
('7dbef110-dd15-4bca-a58d-c9ceca6301ab','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-18'),
('7dbf5881-e5a4-44f2-af3d-f6e993b3201c','fcaf053b-d516-402f-b15f-d6744a9851a0',57,54,96,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-4-1'),
('7dc1466e-cf84-4127-913c-567a7dd38481','c7fce8c7-acfd-4c12-8db5-81618a4b211d',223,80,90,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-1'),
('7dc1c28d-d487-465b-9de7-01a7b1565fd8','0263f7f0-6c1a-4beb-ab78-25d69142647c',45,16,67,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-15'),
('7dc57379-64eb-4808-ac7e-4250afc5e59a','1d2ec7e2-f735-46a1-96be-3994af90aaac',71,111,5,0,'2025-09-16 16:29:23.562','2025-10-03 06:54:42.114','750363306-1-1'),
('7dcb19cb-8811-4759-b803-46253c82da2f','d5a0f2f3-bcb3-4fbc-afd8-35e9c6c818c3',57,83,110,0,'2025-09-02 14:48:27.542','2025-09-09 18:10:59.563','437426295-3-2'),
('7dcc102d-b930-404a-87db-44f9c4dad00e','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-4'),
('7dcd9202-b635-4cd0-96c6-ee28c3651d41','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-77'),
('7dd02820-6bf6-43ff-8c3b-8c3077809761','05ef3c64-c730-44c0-894c-1a748105fe1e',51,51,77,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.292','221190454-1-2'),
('7dd25319-2bec-4589-a0b7-ad902ba65ab5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-184'),
('7dd49b6e-366f-48ea-9f62-343f37cbcc33','d4f91387-af40-4672-a65c-7ea6e96f76b2',62,9,83,0,NULL,NULL,'478350685-7-7'),
('7dd69d73-3769-4ce0-9132-0700499a102f','c5027968-9a23-442a-bebc-9b8745408960',87,217,3,0,NULL,NULL,'982759064-4-11'),
('7ddd0976-cde4-4beb-8d70-cca35384f74e','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.934','735329890-1-14'),
('7dde58e2-5793-4fba-91fe-2b3a6bbc32ea','c6df5a40-83e7-435b-ab59-3e39b8d977c2',65,57,102,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.463','613191069-2-3'),
('7de3c33f-0fb7-49cc-beb9-71708cb14689','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-50'),
('7de6eae7-c5f4-4147-a6a5-8bbdce23c813','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-82'),
('7de75093-82b4-4840-b898-5961760d8efb','f2b86101-231b-44f6-8b23-da9325756faf',40,40,50,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-5-3'),
('7de76297-56db-4ede-9c1b-8ec167d472e3','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-13'),
('7de7e4d1-35a7-46d8-97e3-eec21d0bd0bc','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-19'),
('7de9dc48-6967-4348-af53-c5fcd43d6827','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-32'),
('7df19ac4-c31a-4de3-9776-2211f6c357af','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-110'),
('7df3b139-1e35-4cff-940c-2749de68c714','03ad506f-f86b-4dbc-952f-52b01e2467fa',80,50,50,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-31'),
('7df6b2d5-83c5-448d-b6b1-fb52cc7b3c8e','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-24'),
('7df7f45f-c387-439d-85ce-fe0b6c4bdc51','c71fdc71-df3e-48af-9323-d534b0931ff1',21,8,161,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-9'),
('7dfa0350-04ec-48f8-a322-00f161c22ec6','0027cba0-0b74-42fe-b82a-55806baf40c5',96,209,6,0,'2025-08-14 10:05:35.322','2025-08-28 18:20:08.077','644147833-1-3'),
('7dfb2c19-a9ac-419e-9d19-9beae1c9571d','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',61,210,7,0,NULL,NULL,'531240111-1-6'),
('7dfc6eaa-7d8d-4206-b235-a2f37f14e8e2','012ccc8f-38c1-4572-9fa6-9074afddb4b2',0,0,0,0,NULL,NULL,'011548428-1-2'),
('7dfc7189-af84-4f7d-9812-2ecc9f53f368','19c6a32c-4384-451a-aaa5-dfc264ab827b',50,42,38,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-11'),
('7dfcda56-edd9-4c9e-a041-79628624aaf4','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.637','2024-10-08 17:09:18.899','248383650-1-12'),
('7dfcf90a-8fbd-45ae-9996-cefc05b671e2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:55.150','248135683-1-121'),
('7e00c409-484b-4c1b-a356-ac6256952954','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.241','2024-11-09 18:54:14.451','412441586-1-3'),
('7e02b335-00f3-4b2a-b750-58e18761f9ae','0ab3c63b-a6e5-4df0-a96e-33e5a256da25',66,93,209,0,'2025-04-11 13:41:20.090','2025-04-28 11:58:30.436','478403794-1-2'),
('7e036041-8bd9-478b-9721-a424c8cd941e','8f339642-bf4b-403c-9289-3a16f3a3b2e9',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-3-2'),
('7e057831-a464-4457-8eab-ef0332cc2352','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-12'),
('7e077ae5-9deb-4261-bd9f-84238fc6ffad','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.098','223896175-1-65'),
('7e0882a4-3e88-49b4-9901-6f11af174315','a95f79e2-41cc-4cd4-a9c2-b517bc5ed98b',171,98,13,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-2-1'),
('7e0ae833-cabc-41b2-a64d-7dc662849604','22cdb203-e189-4693-adf6-5b2569edda9b',76,57,45,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-8'),
('7e0b6936-5509-4adb-bea6-7add9db59baa','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-1'),
('7e0bf474-1002-4bad-8a4a-d10704afe690','fcaf053b-d516-402f-b15f-d6744a9851a0',57,54,96,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-4-2'),
('7e0cff65-7d27-43fc-b236-d27e628f4098','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-31'),
('7e0fd38f-b8ef-4b3a-a0c8-6e9af582f070','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-50'),
('7e14936a-389b-414e-a6a9-d340c623821f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-103'),
('7e157ca3-ff5b-401f-8d72-a6d84ea5e6f0','4ac8027d-d5db-4a57-916c-23dd357c98aa',44,37,37,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-1'),
('7e19f395-0166-4de8-8fe8-2f5a7511e97c','6c7f7eb0-0e54-462f-9045-071cf525c2ed',60,47,49,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-4'),
('7e1a47b1-6906-4f71-8729-531adaa4b6d9','2758ecf1-d2f6-40d7-98ab-d6b498789fd9',56,82,100,0,'2025-08-07 16:52:40.666','2025-08-21 08:12:35.793','613601743-1-3'),
('7e1bdee0-5c8e-4328-99e3-efef2984c5f3','5d68c437-9009-4a6b-8910-e785034e1ded',30,24,14,0,'2025-08-25 12:32:01.582','2025-08-30 18:26:03.668','278440694-1-3'),
('7e1c6745-c974-47a4-bb33-97aa572b4717','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-33'),
('7e1d7426-a92a-404a-8652-d4011c7e45a2','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-46'),
('7e1e96a5-43e1-46f6-93fa-6a960e8ba6b8','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-27'),
('7e236321-029b-4ecf-b882-194493b7c354','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-18'),
('7e25cf72-d213-4a2f-b466-4d503ca08fa3','9d7e593b-5023-4e2c-90b7-252a3cc3180a',0,0,0,0,'2024-05-08 18:43:33.235','2024-05-21 18:45:07.083','478890979-1-2'),
('7e260c60-62d0-442e-b9c7-285f3e4cd1ff','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',232,95,80,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.028','517910414-1-12'),
('7e285a21-00ce-4508-bcda-42bda01fb6da','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',100,70,72,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-2'),
('7e288171-8a95-4248-a6f4-af9afd2f8ac6','bcbbd32d-478e-47f4-97ba-0a391ba7a4db',56,56,75,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-2-4'),
('7e2b3d6f-db29-4bb4-b44a-69ecd60d6b98','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-18'),
('7e2bd0ec-107e-448c-8199-05a779e98e4a','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-22'),
('7e2ed508-703a-439e-98c3-e04fc0e9fc17','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',46,54,17,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-16'),
('7e2fe52f-a792-4168-afb2-a3e412043a1e','5acbde88-dafc-4c21-ac17-d9730a373cef',76,53,100,0,'2025-10-02 06:45:44.373','2025-10-15 20:05:09.396','338286320-2-6'),
('7e2fef93-dcfe-47f2-bba3-10151480eaf9','d176a715-bd33-47f6-bcb7-f384e079f39a',205,79,6,0,NULL,NULL,'501724603-1-2'),
('7e303f48-9cdb-41c6-b87a-988eb0533a6e','d3b158c9-fe43-44e9-aafa-358c6c95c929',0,0,0,0,NULL,NULL,'478237582-3-2'),
('7e31e417-2a02-4e1e-9930-0e017dadc767','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-14'),
('7e351f24-fdeb-4d8c-babf-cbcc477c0408','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-189'),
('7e35c743-0df1-4187-a407-33aa27090feb','35df23c7-4cca-4641-b82b-bc6dfa711f1e',105,228,75,0,'2025-08-21 07:15:07.081','2025-09-03 05:43:13.674','31934282-1-1'),
('7e36fe57-dff5-4645-bb21-96d6d43d9823','53025d92-f019-4f5d-9b69-68a3b09bb7bc',52,101,17,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.071','428696149-2-12'),
('7e3d2757-9866-4098-9d21-84381a745d0a','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-5'),
('7e3e90b2-d234-4b42-89ae-0c9ae7114426','0cc39437-8ee1-47ea-87c2-b9fe770c2259',8,218,61,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-26'),
('7e3e95e5-1689-4e75-9e44-12310c2218e3','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,11,85,0,NULL,NULL,'478893710-2-4'),
('7e431b77-0cc7-4e8b-baa7-a818a179971b','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-7'),
('7e4928af-0b18-4b49-97b9-3b57d88e076d','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-5'),
('7e493125-0c79-486f-9fea-b20152c3a550','6883e1aa-61cc-4415-a95f-c2a814c5b3ce',0,0,0,0,NULL,NULL,'140421350-1-2'),
('7e5112a2-3b06-4659-a058-e72c6d24d557','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.481','2024-05-21 18:46:21.334','734965369-1-14'),
('7e51b1e6-4eba-4d2a-a3b4-65fbb0a9fdc2','72dd70ee-d1c4-46e4-b852-cc3c53e8554f',83,100,70,0,'2025-02-23 12:39:11.932','2025-03-06 10:33:36.756','910225013-1-3'),
('7e51fdc8-3f55-43f7-b334-c4af81a52fd6','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-6'),
('7e530491-0e26-452c-af39-b5ee28782e60','f9e43273-b7fb-4f2a-a82e-67f60793eff9',120,65,123,0,'2025-04-11 13:41:43.126','2025-04-24 15:02:05.019','745767667-1-1'),
('7e5311a7-5921-472c-9304-4e68abb7ecd5','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',78,65,83,0,NULL,NULL,'478702481-4-4'),
('7e553be6-6654-48df-9230-9cb4006ac85f','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-13'),
('7e5e12a2-2c4c-4a26-89cc-2be99c9363f3','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-137'),
('7e60b6df-7469-4297-b52b-e014ff754436','21f74ee3-8163-4caf-be93-184351bbdc71',109,126,65,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-4'),
('7e614bbc-843b-4aaa-b7ec-5f683ce8575a','887cdf3d-b4a4-4b5c-8d2a-c96f769b16af',110,110,47,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.303','371194748-2-2'),
('7e64a5da-108c-40da-a8e2-3eef13081045','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.713','41298450-1-18'),
('7e64ec5d-94aa-43f2-b554-e41c26d63e71','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',123,123,8,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-10'),
('7e65dda6-0d84-48e5-8cd2-5ff13a463264','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-1'),
('7e6a8deb-cef5-475c-840a-d459c7305c68','5ea4b207-b05c-4931-bbd1-648b6933aae5',43,76,7,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-7'),
('7e6c8587-2d47-4520-899a-720f0e56275d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-153'),
('7e6c961f-53ae-49ea-939f-cee58bf1b78e','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-7'),
('7e6d8693-ed32-4320-b8c8-5551751815c2','9d01daf1-bc0c-44c5-af16-9b7dbb9a3065',0,0,0,0,NULL,NULL,'745505506-3-2'),
('7e6efe09-f095-4747-8231-c634097c6bf6','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-24'),
('7e727ef2-be42-4ef8-b6ca-52ee036ca860','00211013-0535-4518-a5a9-4baaa292122e',51,51,77,0,NULL,NULL,'644667834-1-1'),
('7e7418f1-63a6-4f7e-8575-97791d936245','8465c9cb-ffbe-4de2-aaad-a9d0c676a4d5',84,57,61,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-2-4'),
('7e7944d4-b8cc-4c0e-97db-2212e0711510','b85e0d9c-5dfb-438d-b4bb-4da1f04550f5',57,82,108,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-3-2'),
('7e7a8a97-7981-44f8-912e-3d771c02ecc0','24781fe5-c8a9-48cf-a94a-3c61efb0a699',44,55,51,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-5'),
('7e7b35a5-2a83-4723-967b-5730b8c42686','dc390da6-4128-4077-b3a7-07f6a89a5beb',107,9,275,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-14'),
('7e7d99b3-2bb9-4d88-b75a-fce0207e5c45','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-39'),
('7e80fd86-7dfe-4a5d-ab71-46a09dba6ee8','fbe21725-aa89-4d56-9467-9cb01a9ccd14',200,180,27,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-1'),
('7e84ffa3-de7d-40bf-a094-635e4b3da97b','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-12'),
('7e852df9-caa3-4f26-ad08-fa5cd566a5b3','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',53,43,100,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-5'),
('7e8de80d-258f-4c82-9189-901bb5b89866','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-4'),
('7e8ea39e-7e70-4c0b-bc92-a540c72f9521','39e33ee0-0790-4b60-909a-d98610bc0a69',0,0,0,0,'2025-01-20 11:21:35.774','2025-01-28 15:18:53.184','478966296-1-1'),
('7e90d424-6211-43d3-9676-cac25630265c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-167'),
('7e91fc70-4fb0-4772-b00a-734e2b98581c','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',57,30,77,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-2'),
('7e92bfbd-7433-4a61-8005-984a79844f2f','b28511d9-75df-4f6a-b1fb-ce18b7027a2a',0,0,0,0,'2025-02-09 09:51:39.841','2025-02-17 21:43:20.918','745536465-1-4'),
('7e9407c5-2361-4d0f-abd0-e4e7095f0c65','4aa5ea47-6bd0-4d67-b370-60ef1d25e633',70,95,230,0,'2024-12-23 12:00:28.663','2025-01-08 20:29:07.045','449665773-1-2'),
('7e94af04-d18d-412a-9bee-fee11004a922','4ef00d68-6112-4db2-8e3c-b639b689fc4a',0,0,0,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-1-1'),
('7e9648cd-d229-4ca8-a45b-a4e6edfefe07','edef2f29-fe9b-4fa0-8465-53614e2f2468',72,95,60,0,NULL,NULL,'478412191-3-2'),
('7e96d07d-7549-4c97-97db-78f8fd748410','15848870-75a0-4294-9752-8c0da1d7da4a',230,100,65,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-3'),
('7e975622-9cfb-4958-83d8-200e6aed3497','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-40'),
('7e9c98dc-edd1-41c3-b68c-96460b61a9b1','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-6'),
('7e9cbff0-d7d3-460e-9295-890d4bb6c170','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-9'),
('7e9e206e-f291-403c-b57f-d72470e4b49b','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-12'),
('7e9e89b1-df97-4f06-9ec0-02ad7a2e925e','e1170d04-f8eb-407c-ad59-267ac93c8240',122,102,85,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-2-2'),
('7e9ff5e6-b50e-422a-837a-fd6f10b02e48','ab1b2a39-1033-4ca2-9a3f-fda0a79bd8f8',0,0,0,0,'2024-10-17 11:51:21.661','2024-10-26 07:30:49.319','745382052-1-2'),
('7ea073bc-c0e2-4d19-b9ff-c74f38448270','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-8'),
('7ea36f96-56de-4aa2-846b-f0ea73d56e73','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-4'),
('7ea42b63-1c2c-4a98-a027-51998d3a87f4','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',90,80,75,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.536','614766744-1-3'),
('7ea57d1c-5e6d-4164-8eb8-89f6e005e009','702c1aff-1a98-44f0-9dce-efad71572432',39,27,196,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-20'),
('7ea5cced-4029-4f10-8b90-ba0dd0cac48c','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-10'),
('7ea8995c-92f7-44ef-b425-7f63317f9571','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-40'),
('7eac6a4d-b1ea-4792-af35-206104f521cb','9a5c9f09-ecda-434f-8efc-112c1bc44fbc',0,0,0,0,'2025-07-08 11:31:05.659','2025-07-25 18:05:09.591','371440688-1-3'),
('7eac8c3a-f0d8-40ef-b01f-579e7675eb44','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-53'),
('7eae3093-8e79-4979-8327-b5e72a098cea','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-6'),
('7eaf94db-f6f2-4a58-9bd4-6c387117af32','1d11c681-3983-42da-b02d-56cdbb17ad76',75,102,57,0,'2024-11-08 17:37:56.781','2024-11-21 12:40:09.302','748663171-1-2'),
('7eb1478e-c743-4ee8-bb7e-c650e23e61f2','949e4a7a-6c6c-49da-ae9a-0534ae51f65b',57,82,101,0,'2025-10-20 07:18:14.789',NULL,'61340935-3-3'),
('7eb16a2c-38c2-48ae-b6c1-b48fd4aefd6f','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-92'),
('7eb1bbd3-0810-49ef-bd49-bfce3c5816d8','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-72'),
('7eb305cb-8ff9-42ee-8409-8ef500e5808c','fb58f438-30e4-4e01-af6e-6378e27a11fe',57,43,19,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-11'),
('7eb44ab5-a623-448a-a500-d8ba233b23c6','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-19'),
('7eb52eed-1703-4fa8-aed3-a2d466331aff','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-58'),
('7eb65aa9-d075-403a-84aa-254384d4edc0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-97'),
('7ebc412c-47d2-4fcc-9bc3-3237000bbb2a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-45'),
('7ebd6ea0-eb6d-4731-af86-8882de19abb5','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-4'),
('7ec0e26e-4240-4df0-a362-79c4c9895035','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-82'),
('7ec2eeda-0f82-4578-888a-1c13ac3356fd','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',93,113,56,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-3'),
('7ec3b511-8bc3-44b9-a93d-adf1965f9071','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-153'),
('7ec3d6bd-2665-4dc6-8a56-e008e107524a','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-3'),
('7ec7a015-8676-44f9-893f-4f72a347974e','8beca2df-7a47-4d0b-b3bb-89209ce0b5c5',100,68,168,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-2-3'),
('7ec91ec3-93fa-4130-831a-af8239053310','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',121,97,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-4'),
('7eca186c-a408-41fb-a7ba-3224dc671322','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-136'),
('7eca9bd8-4a18-47a3-a3d9-89f148b4401f','5a89fae8-525a-4de4-8188-2f4d7c892e74',57,4,222,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-7'),
('7ecc37e2-3563-469e-ab92-3c415fe663d8','0d90ef6d-e963-4a99-bbbe-e4ca67429574',43,8,92,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-7'),
('7ece2ba7-0748-4336-afe2-d33e282c1b33','1ef8b91f-e8ea-475e-b299-b11ca4ae6186',42,46,94,0,'2025-07-29 12:58:31.228','2025-08-08 14:07:53.363','371887346-1-3'),
('7ecfa073-c341-4d7b-b814-2e8959453e98','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-121'),
('7ed0dad5-542b-4a44-bd9b-599f3c261f6f','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-20'),
('7ed1b10b-d1b7-4282-8c77-f4d9d1d8139e','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',71,24,202,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-12'),
('7ed372ef-90d1-463d-aac8-d5a875e2e2ae','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-10'),
('7ed92067-a3ec-4fc0-9942-1d836424ee23','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-4'),
('7ede3199-8e87-46e7-b2ae-82addebda6c2','7f827719-d0a9-4910-9aef-532cd3731df7',18,50,74,0,NULL,NULL,'745995046-2-11'),
('7edeee14-6a7e-4c88-ac3d-ff125d2e65d5','7f086af4-7f94-4b2a-8e93-97605ab16c61',85,15,13,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.686','162733891-1-5'),
('7ee02f3d-2589-4333-9ea8-b5e9b624008f','5e372d49-2995-43b9-8175-cfd3bd1f09b8',103,103,67,0,NULL,NULL,'37198203-1-1'),
('7ee0afec-bfe2-4cae-932e-c0bf31bf35ae','1dff9484-7b74-4dd3-bde2-e304e871a006',115,57,70,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-4'),
('7ee3728e-10a6-4140-b232-624fb122efdf','43e258f2-7cc3-4e63-be4e-0b2929334761',120,200,28,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-8-2'),
('7ee5a255-d654-4ecf-a772-8afd475850d2','ef603b58-9644-4d43-9c77-58a606dadcf8',80,71,42,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-1'),
('7ee84611-50ca-4cb0-a183-34a7ff2c3329','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.343','2025-01-09 16:51:50.694','745422037-1-4'),
('7eecff8f-b7a6-46d8-9146-2e4dfc01d6c6','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-9'),
('7ef06a61-0acf-4723-b96c-980e4bf315f2','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-93'),
('7ef0d249-445e-49c7-93c0-1486b545c751','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-10'),
('7ef0f492-5c3d-4cdb-92fb-122a608a40ad','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-22'),
('7ef10606-b2a8-4ff1-a5d3-b8e9e86f30b1','c1d9e685-3827-4e27-bd48-754f9c260fa1',25,25,30,0,'2025-10-06 07:08:43.135','2025-10-13 06:40:04.416','675965194-1-1'),
('7ef52ac3-db3b-4088-a85f-371e7c8fc199','c512880f-476f-401f-801a-a1fa72ec0ad0',111,92,12,0,NULL,NULL,'478892203-4-1'),
('7ef7f6cd-c0bf-49bd-9fe5-9d783317d18d','b5601e46-e9fc-4d1c-8c4d-4e974d336768',85,102,237,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-2-2'),
('7efcbbf1-ebdd-44ed-9a1c-388b07b18125','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-78'),
('7f008633-8577-4386-bdfe-b82ef4256129','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.081','2025-09-10 07:24:12.130','371180149-1-6'),
('7f03016c-ff19-473e-b76c-08b8eb211619','be58b061-d13b-4150-9b6b-40941540f77e',240,66,85,0,'2025-07-12 09:19:02.178','2025-07-19 09:39:02.148','982708819-1-2'),
('7f040199-7929-473b-b467-4e797b24844d','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-6'),
('7f0606a8-a862-45a2-885e-8e6bd875b1ec','fb315394-4cb2-4ee4-9b83-42589f739871',0,0,0,0,'2024-11-12 16:16:09.017','2024-11-21 12:39:35.617','745286096-1-3'),
('7f061efc-5cd8-4d59-b968-a9a63ab7d393','6f95e85b-2907-4e26-bc1d-f6ba702124b5',202,95,10,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-2-1'),
('7f07cab0-8cbb-436d-b881-31b7bbbcd312','22dec2c6-2a18-400c-b218-7284acdd139e',82,57,109,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-2-3'),
('7f0d4b59-89ac-4ab9-98ed-20f6faed7087','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-11'),
('7f0e05b4-b479-4756-9179-d3c08fe660cd','b2c78cf5-c58c-4553-bd14-49e83916894c',181,104,11,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-29'),
('7f0e24a8-5a5d-45e6-8bad-9f692fa5b709','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',80,70,65,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-5'),
('7f0f784d-376f-42f5-862d-68d735c0dab5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-73'),
('7f0fe1fd-2c04-4eee-bc79-7de17467b4bd','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-6'),
('7f14f2ab-3430-4899-ba7d-4bfaabc11653','4d63984a-5ff1-4253-abe8-286bd84e3528',92,28,192,0,NULL,NULL,'478350685-1-6'),
('7f163e9a-26eb-430e-8caf-56bb07fb623d','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-15'),
('7f1a7b3a-a9b1-47ec-a087-d69954f72eae','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-96'),
('7f1a945b-5e00-4ff2-a458-0750a5f8a8e6','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',180,195,21,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-6'),
('7f1b4347-affc-4c67-bf2e-dd98a0e1a51a','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-14'),
('7f1c3ad2-af1e-43f5-8b80-e9f28e89e144','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-36'),
('7f1c5b34-cf7b-4a53-93f9-7071718f298f','e4ea4323-3b5e-49e3-9d61-fbb71b718557',0,0,0,0,'2025-03-27 15:06:20.483','2025-04-04 17:24:37.240','127945692-1-1'),
('7f1c793b-1a28-41b4-9027-e86e90db40be','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-4'),
('7f1c9249-213c-49cf-b329-1b57cb2d1c06','5a40f64b-a362-449f-b074-5d84154e2855',74,115,6,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-2-2'),
('7f203a49-e763-4d64-b343-da39d5d0cff1','bd088382-ea59-4eef-9d88-602bb3f44bc6',51,51,6,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.126','428653750-1-2'),
('7f2123ef-cef3-4404-8497-518ff411c550','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-30'),
('7f2384b1-70f5-4f38-a527-55da5572fc83','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-49'),
('7f239b93-ccea-4e52-9fde-9c5cba8dbba9','9cc1860d-055e-43c8-9aca-a2085133ca71',110,110,80,0,'2024-11-25 08:29:14.494','2024-12-03 10:00:03.182','338678802-1-1'),
('7f23be11-b624-421a-90ec-3e7a2c5b3453','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',175,135,20,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.259','449208438-1-5'),
('7f245799-4585-4fe6-a43b-6cb6da1133cd','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-4'),
('7f26d14b-a715-4ceb-b7fa-cd673a4e2f79','08af242e-dc62-496d-980d-0f589dcdea60',65,65,152,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-1'),
('7f28de8f-b54d-4e74-9149-bc00d6862cc9','5ecc2bd3-1fb1-4c1b-9901-f80f9be07662',12,102,180,0,NULL,NULL,'47816855-1-4'),
('7f2905d3-fe1b-4769-9f01-aa890cf02a9e','a8240df2-bc04-464c-afdc-dd0bdbe1643d',16,86,99,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-6'),
('7f2abaaa-502e-4c33-b7a4-9da8d8449778','0842c3b7-0bd0-41b5-b390-ec7ea1d07eb0',45,77,119,0,'2025-10-20 07:18:12.637',NULL,'531606130-1-1'),
('7f2be878-9f21-4d3e-94a1-231b4995aec4','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.576','478983907-5-31'),
('7f2e1d13-f421-4483-a202-b3f70c102c5e','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-15'),
('7f323906-dbdc-4ce7-9d03-2daf4989b437','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-8'),
('7f35e0cb-32c8-404f-a993-cc4703060b2d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:55.778','248135683-1-65'),
('7f39c000-a2db-49cb-b3f3-a8466f624891','f0485a78-951c-4f89-bddf-b2003f0bf783',15,92,161,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-34'),
('7f39dd85-8166-42f4-b52a-115ffc2d3fd0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:47.437','248284003-1-60'),
('7f3bc253-ecf2-4473-a18a-1eabbb7d4fa0','2832d686-b584-4480-a3f1-7c4ec1b6f7ce',60,54,27,0,NULL,NULL,'910904581-1-1'),
('7f3d0b49-83fa-4e02-bbe6-c17cf68d3c23','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-38'),
('7f3d350c-b7a7-48c1-a8e9-8b221a547b32','cde2b645-2cf4-4ca6-9d59-ef733217c501',290,18,5,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-9'),
('7f3ec117-4e57-4141-b8eb-10ebb3e2f1d1','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-31'),
('7f44f65a-4863-4678-aa2f-2f776e65df4a','676dc697-7061-41a1-a8c3-abbff4eb9699',90,98,69,0,'2025-09-11 06:33:57.374','2025-09-17 16:03:34.523','437232562-1-3'),
('7f4c4428-064d-4565-bc3a-05d2e243263d','e622181e-7708-44a9-8b12-3952b738674c',100,10,10,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-4'),
('7f4cd307-d9d9-475b-b17d-172881d2d2ac','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-4'),
('7f4da79c-731e-4dbd-8298-ee5f72f3d08b','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-25'),
('7f4ee11d-8679-4577-9990-719922c60e1d','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.139','163229349-1-28'),
('7f511232-4187-4613-805b-67a4b4ad863a','9affc7b1-09c4-4e84-b48b-d0c117c421b0',136,101,19,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-29'),
('7f51c2fc-489c-4570-95cb-512bc7f71aaa','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-26'),
('7f529ac6-350b-4631-be7c-3b4e3d558e6d','9c69684d-b820-4794-97d0-0096a00b04b0',56,80,100,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-2-4'),
('7f52f653-5611-49ca-bbfe-680f444d7ac9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-113'),
('7f5930a4-70a8-4379-bba9-406874a10548','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-10'),
('7f5e5ed8-8372-4369-b8d1-f91550604654','3a8806d9-8f36-4702-b4a9-c0d54762186c',35,34,35,0,'2025-02-09 09:51:32.951','2025-02-18 17:24:12.014','455757391-1-1'),
('7f696eb0-4feb-4885-862b-630b166f1ce4','ac9c542d-e46f-415f-ba83-e9a5fd0736a4',60,67,100,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-2-4'),
('7f6af58b-312d-4a7b-a5f2-ba8340bbd8eb','57604baf-e8cf-4035-aab3-ed4bab52522f',58,210,5,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-6'),
('7f6bd084-13c4-4040-8773-01588d2c3bee','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-21'),
('7f6f7a79-1abb-4128-a441-7a2f3b4cbbb3','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-2'),
('7f7073cf-d546-49a1-b360-ea8097e306fd','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-34'),
('7f70f69a-0ce3-44e5-964e-0511bd7d4fa0','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.081','2025-09-10 07:24:12.130','371180149-1-2'),
('7f713845-9112-40ad-981d-0da440ce92f3','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-126'),
('7f75dc7b-c85c-434b-97c4-092ababcd1ae','ae2f16d8-65e8-4efb-b2a7-26877719b20a',45,208,5,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-6'),
('7f762767-1892-4be4-9455-e41e8c7d98fe','85863f70-10fe-411d-ad43-60a5ba95b680',0,0,0,0,'2024-09-19 18:27:17.240','2024-09-28 09:04:10.925','982425532-1-3'),
('7f77023f-ed81-42e5-8df5-8f37962b225f','3535d433-eb38-4879-84b4-dbf8410809cd',217,7,55,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-34'),
('7f7cc268-2856-4d64-bf98-2be202fc1554','f88c3e53-b711-4bcb-aa3d-9543580054cd',56,82,100,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-8'),
('7f807e53-1fdd-4bb5-beae-370bfa380612','2b5fa64e-2c3f-43be-9034-b86d4520cb36',100,28,200,0,'2025-10-25 08:59:21.121',NULL,'478485864-1-3'),
('7f807fb2-f285-49f8-8d1d-6e6c61d4b35e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-188'),
('7f81a600-7865-46aa-bb4a-31af2d00ab60','7bbdae5f-e68a-4fe0-afa2-f1f09497e5cc',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-3-3'),
('7f847881-1f26-4624-a3b7-94c650632c6c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-45'),
('7f8740ea-81b3-4a5a-aa12-38a6ee0f7ab7','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-18'),
('7f896c69-73ab-4baa-b4b8-a1a841087c70','a455ba66-b417-4781-a6f2-6fce1b8bab23',9,78,100,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-12'),
('7f8ac8d9-0204-46b3-b4bc-901725348ed0','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-4'),
('7f8c3bd4-2662-4dcc-b0d9-5108b611cdce','a33e65b2-520a-44d8-8fa8-a6f99b49bddc',230,107,7,0,'2025-10-02 11:20:28.084','2025-10-10 21:30:40.540','221962516-2-3'),
('7f8cd020-90b0-41ff-934d-e95573cadad9','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',85,79,3,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-13'),
('7f8dccbc-ff39-45ec-b4bc-a785640872c9','cd9220d6-7acb-425c-8114-79c4c4e650c8',120,75,11,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-28-1'),
('7f8ead78-7776-4373-862e-9ea957ef9fc7','9866a947-9974-4053-8415-4518842488fe',190,137,27,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-21'),
('7f9011a4-6c00-4703-8a4f-10a8be2ebe6f','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-3'),
('7f95085b-52b0-400e-9b3c-31f56396d547','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-80'),
('7f973f4f-04db-41a3-894b-86e65ce0fd8b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-93'),
('7f990709-0691-4fec-8dab-4780906605df','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-11'),
('7f9b1b99-cee2-4ba7-a1a7-70928aae0ae9','1a9c727e-5c65-4a99-b25e-b0d3ffdd2826',93,237,65,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-1-3'),
('7f9bf140-4a6e-4c5e-b0ad-6cc45e1db442','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-10'),
('7f9eafbb-13c2-4d4f-8bf9-edc3b99ccc7c','4bd3461b-c38f-4c43-90a6-39aacd24cc83',143,188,6,0,NULL,NULL,'976462703-1-7'),
('7f9f0081-d155-4c3e-b994-97972b0cf25b','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-10'),
('7f9f82a0-681a-46d5-bdb7-21ca0f8fffc0','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-17'),
('7fa01e41-9b7f-441b-8f00-75a9743ae0fd','3535d433-eb38-4879-84b4-dbf8410809cd',6,42,214,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-22'),
('7fa0d7e3-bd37-4113-83b5-3b30657aa4c1','145fbc2d-f2aa-4de5-8885-821f4b79c3dc',57,76,102,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.390','675749315-1-1'),
('7fa2100e-7e59-4ebf-a046-7484c64bab81','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-28'),
('7fa55033-d0fc-4bb6-9a48-7027b1b22b55','064e955b-72f7-4dfe-903d-af71b421e048',56,101,81,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-6'),
('7fa8d017-9001-4016-817a-d38592980e8d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-69'),
('7fa8e44b-30fc-4327-9a0e-d15b9695ac8a','1a929455-0b70-45da-b39a-75cee0e92908',53,48,58,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-3'),
('7fa904fe-bc29-4af9-af13-7dc6d3fd67b0','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-64'),
('7faa4232-0b13-4632-ae63-c1a66141d16b','d3c3d137-f31d-4357-958b-af365fcd9dce',100,85,80,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-2'),
('7facf919-4076-4634-8ac8-84e13aafaa3f','090b9a06-aee0-4c02-b626-f3e2002f0fce',105,21,223,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-36'),
('7fadc8e3-8e3b-4ab6-989e-05fa578f1b9e','e6b643b2-ddca-48ec-b553-690e29e71879',83,80,70,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-8'),
('7fae2dfc-9533-427d-a241-aa50d1134fdc','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-22'),
('7faf43f0-a69b-4928-9a09-aff6c8770524','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-3'),
('7fb1c3f2-a963-4e31-a765-3db490f92006','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-146'),
('7fb4239a-1daa-4049-a078-68caa356740f','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.843','2025-06-04 07:00:07.029','22391500-1-64'),
('7fb6fb02-147c-4b60-99e4-f9d3ae51bff4','f11fa07a-9aee-45ee-9bf1-964d6f5ae88f',0,0,0,0,'2025-05-28 19:08:49.094','2025-06-06 17:37:40.880','644771270-2-1'),
('7fb6fc83-0571-4230-9153-00d9acca1083','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-69'),
('7fb8c0ac-9f5e-4ba7-b5d1-757803f7b586','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-2'),
('7fbb96bf-13c2-406f-a231-f50239a4d129','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-14'),
('7fbbe2cd-8f01-41d9-bfc1-ebfddb7ac851','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-121'),
('7fbf8275-715a-4dd6-83e2-52bc2360a87f','e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81',44,43,96,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.567','745761149-4-4'),
('7fc28c67-ff5b-4549-aa41-bce477c48cd6','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-39'),
('7fc58318-cf55-449a-9bf3-2b7854b20af9','0a851431-d5c7-4333-895c-c0ce142450a7',39,40,78,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-2-3'),
('7fc6668c-787b-4deb-bbd2-c691994dc1e7','f64d8576-5c28-4bc8-bb1f-11a8e0471a92',80,92,92,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-5-1'),
('7fc9aa75-a8f1-412d-9132-71f841130ec8','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',143,9,278,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-1'),
('7fc9e528-ee5b-4bcf-868b-22ee221aeb2d','a7c0e479-2722-40ba-bd18-c64a1b76d170',70,95,70,0,'2025-10-22 13:07:10.734',NULL,'011766113-3-2'),
('7fd0c3c1-9181-4cd6-9a58-5f689e6e6012','bbc6d966-9d42-48e9-83e4-13afb85a7c33',20,25,40,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-5'),
('7fd1026b-6f9d-4ce4-a44f-53acfa877878','ce8f4415-3b63-4fe8-a25c-9973f07651e6',42,42,42,0,'2025-07-12 09:20:46.358','2025-07-21 17:00:44.678','371104317-1-1'),
('7fd278c5-5ec5-4d0a-a223-abbaad925c93','be73bfce-7391-4246-a655-6a37a58937a0',95,70,196,0,'2025-09-26 12:39:03.284','2025-10-07 14:12:25.524','976369139-1-3'),
('7fd3c6ba-25ea-4afc-b3a0-dd7168c33939','b6319fbc-ac5b-4323-8326-06724cade598',85,90,80,0,'2024-04-08 08:57:41.781','2024-04-29 09:07:28.433','982984016-1-3'),
('7fd6ab01-bf84-4538-a119-a230d10ae3be','c6fb119a-d102-44f8-a309-82df366c405f',245,68,113,0,NULL,NULL,'478739679-4-2'),
('7fd74f5d-e12a-462a-82f0-7e86a9e9ea20','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-112'),
('7fdaac52-fd01-4d48-a110-2a45b9978b64','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-160'),
('7fdc35e5-b7d4-40cb-95cf-554739f4e0ef','e86f2f3d-8f0b-4894-8c39-9063af830231',211,67,2,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-10'),
('7fde9680-ac92-4e83-a290-6ef308c4a991','5713730e-9e2a-444e-8fe2-4b510ab6cee5',91,201,5,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-2-3'),
('7fe1e9b7-e32b-4f3a-a4a4-a45d41e140ae','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-42'),
('7fe208c7-fefd-4efd-ac64-65c41aaeacd6','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-27'),
('7fe348e1-8f27-49db-9d7f-5f1be5ec9980','3987bcda-6531-4738-8815-187fd84bf71c',102,82,56,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-12'),
('7fe35344-8a94-456f-abaf-028dae9de9d0','12b37afa-91dd-4e2d-af06-ea0c3edaf49f',100,94,70,0,'2025-10-22 13:07:10.126',NULL,'644312365-1-4'),
('7fe357be-1a78-4027-be77-c337b8b1ba56','cbf68d77-8563-4d27-83fa-23f08cf671b7',31,31,31,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-2-1'),
('7fe441ba-3328-467b-bab0-c41f67734dbe','1c781ad0-971b-440d-9ba5-b64cd40eced2',0,0,0,0,'2024-05-29 08:53:22.768','2024-06-10 13:49:48.872','47889024-1-4'),
('7fe49a66-a23d-448b-9521-57c87c2b9e36','92eefcaf-225d-4459-b297-1d8d499b03f7',0,0,0,0,'2024-12-18 09:31:24.380','2025-01-10 16:33:03.833','735272751-1-1'),
('7fe509ee-9720-4097-a1d4-2862839ed892','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-4'),
('7fe55218-c580-409b-a9d3-843f9f0934d5','8c914f01-f6d0-4909-9906-64f504e70316',97,100,68,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-1-3'),
('7fe85028-4533-4d12-b625-cdda36ee7e9e','cad27d48-d66c-419b-82d8-6b69b7fb1590',98,98,70,0,NULL,NULL,'515967328-1-4'),
('7fe8913c-0614-4d25-bde9-fd0bbf686bfc','7615d0a2-cfd2-4c2b-955b-2f1fa4697aca',83,43,44,0,'2024-11-08 17:37:48.235','2024-11-22 21:21:57.745','449193323-1-2'),
('7feb6ce8-01d0-477d-8cf1-2cbc1dadcece','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-7'),
('7febda18-9181-457b-962e-096910c7836c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:56.445','248135683-1-10'),
('7fec7d4a-3dae-4ec9-ac14-02ed5e725397','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-1'),
('7fecee9a-6fd3-4aa3-80fb-2b98c472a9cf','5d6d56f2-d81e-47d5-835d-916b91abc6a0',196,86,20,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-2-1'),
('7feeb428-f9a3-44ab-bf71-84b00e28499f','6cb8915b-a169-4dff-829a-4bf790dd05cb',75,75,70,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-2-2'),
('7ff47f5a-8a00-4e0d-97a1-ed95a7ec229e','3f69b18f-39f2-40f9-b6e6-91f66d88bf80',100,203,30,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-3-2'),
('7ff5dabd-7b12-4d27-b39f-23fa79d65bbb','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-65'),
('7ff9ead2-9f1f-4eeb-9692-ce8813951d2c','0cc39437-8ee1-47ea-87c2-b9fe770c2259',55,48,41,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-10'),
('7ffbe66a-d7b8-4126-9744-6fe1dcec276c','06669ff4-2ae4-48c9-9194-ff50672e27e9',51,51,76,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.160','437400305-1-1'),
('7ffda237-2c21-460a-96db-453c8a344ea3','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-18'),
('7fffb4c8-f71b-4928-948f-533a0b65d311','c01fb28b-ddac-45ad-9fd4-6dc177af77f8',92,200,60,0,'2025-09-02 14:48:42.201','2025-09-10 17:06:01.025','613108463-5-4'),
('7fffc883-7e0f-4125-996b-17c6dbffb441','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-22'),
('80035cfd-5730-4e4b-b715-9d98680873d9','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-21'),
('8003f924-df28-4164-bd44-9fc0f079bbda','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-12'),
('80098a8b-66ff-4dcc-9fcd-2f83e4b9e8da','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-47'),
('80106979-8b12-4ae4-93a0-81be496eb3ea','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-21'),
('8014ec5f-3984-4bf7-88b8-4af983629b67','743ccdda-3eee-4f87-8835-f0f9348b6b7e',110,56,82,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-7'),
('801cb395-804b-4173-bee8-f247b20003f4','15c24f0b-669e-4030-a60a-786363379a1f',95,197,60,0,'2025-02-23 12:39:29.466','2025-03-04 15:54:31.452','976439318-1-2'),
('801cedac-40e8-49af-8f20-7c62bd9b5589','0bd42145-fdd8-4793-a5cd-a2e404d37142',125,21,11,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-3'),
('801e615c-b1aa-4272-86e7-a3e5ff24fd3d','82c44317-84ac-4df9-8145-97abec99a444',0,0,0,0,'2024-04-08 08:57:37.142','2024-04-30 22:31:35.539','478702716-1-3'),
('8024de54-037e-4c5b-ab6b-7ba5f0b3ef7e','9d7979f3-a35a-4a64-97d1-4ba973786029',82,2,176,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-24'),
('8025d52a-a77c-4c20-9a6e-25e4dffc7acb','877e4ae1-48a1-402e-9b28-5eef3571383d',72,80,65,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-3-4'),
('8028763e-e781-49a9-97e7-19842119e012','01ff323a-2bdf-41db-bd07-b6903d6c33a6',38,38,83,0,NULL,NULL,'371117320-1-2'),
('8029d8b3-d8a4-4a37-963d-79bc546ba37c','e9c704c2-110c-4300-bbeb-984901945bae',90,85,65,0,NULL,NULL,'371797202-4-1'),
('802d7cd1-deb6-421c-8b7d-f3b23e3627c8','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.916','2024-09-16 17:09:34.646','24889830-1-12'),
('802edd70-8c6d-4513-ae1b-749de2fb72f3','7f7994e8-0c66-45a1-8846-76386ada2b59',107,202,8,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-2-1'),
('8031e8f1-4c65-492b-9b83-514f3eccb58b','f3e25748-9512-4873-82f0-47edea247be7',0,0,0,0,'2025-09-18 15:48:55.722','2025-09-30 18:47:32.745','896769535-1-3'),
('8032118e-2acf-41b9-8ef0-7fa297566a27','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-6'),
('80360336-9396-4c5a-9d2f-e50f593ab605','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-37'),
('8037b674-9717-42bf-813b-66828da15177','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,108,100,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-6'),
('8037e8ba-2b76-4c5b-aae7-068ea4f41745','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-4'),
('803aeaba-97b8-4e2e-8c7d-3160e7e3f013','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-4'),
('803bae91-8ab6-4b7a-b720-01f0969c0e11','0a4aa4de-bb28-46ac-bb64-98beb5311460',50,50,82,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-1-1'),
('803bd61b-67c0-4593-98a4-2d279bc9ba28','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.325','223249369-1-141'),
('803cc308-219c-4f89-bba4-1eb00830727b','ffad1b86-20c5-4d98-8921-4101b61ab763',51,51,77,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-4-3'),
('80428277-3e17-4031-ba7e-9527ea2928b3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:57.342','248135683-1-119'),
('80439789-6ada-448a-87e3-5dd9eccdf90c','eda2bfa9-32de-4996-9c79-f610f66e73c8',51,51,78,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-3-2'),
('8046479b-a01c-429c-9662-3a1d4087bb9e','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-46'),
('804bde5f-e52b-4912-8ebd-4ae6214568c8','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-3'),
('804dba7e-3324-4936-bc5a-ae068071d5d2','a135c145-15f3-450a-819b-e82b427bc978',67,44,22,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-17'),
('804f9092-4745-4498-8842-379b1f2e64d9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-102'),
('80516e72-87f0-41ae-8bea-027dae0b9461','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-18'),
('8052e637-a961-48de-b998-26e14bd3a090','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-9'),
('805a41cd-201e-4e63-b593-2afef4cae930','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-13'),
('805bc9cb-22fa-40a8-8a2d-cb36332ed275','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-5'),
('805be275-787f-4d7b-a224-ffe17614eba6','6f883022-1eea-4faa-b6c6-489aa1c8866e',53,45,34,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.331','455614339-2-8'),
('805cd0fd-27dd-4e24-9f23-5accf075cc71','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-29'),
('80601a7d-6bc8-4304-8d30-8e5d0e4c7703','aad5c1ff-942c-4e60-afcd-b7475a2421fb',85,56,60,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-3-1'),
('806875f7-c800-401f-acdb-85b00fdc0fdc','b39244ea-16b4-435c-9bb4-e2081e2736ed',70,170,100,0,'2025-07-02 12:43:25.535','2025-07-23 06:18:04.215','644330933-2-1'),
('806d0934-f3b0-4edc-8c88-2141942840f4','0713d7c0-9688-415b-8aab-9cdef4078ba3',41,42,47,0,NULL,NULL,'613362697-1-1'),
('806dc4f2-1470-4f6e-9c37-e8a59ad146dd','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',88,98,3,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-7'),
('8072aead-5f2d-4d31-94eb-a18e1a21e53e','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-35'),
('80769225-71ab-432c-89e4-47ab19c58032','70bd6130-456a-467c-bdb8-a08ab705493d',56,54,32,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-1-2'),
('807ac39f-8840-46d5-a603-dce75a1d21ff','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-43'),
('807adb94-f059-475f-98f8-abc5d2425949','8c3a9387-2db4-400b-95fa-11aef6c745f6',85,64,15,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-10'),
('807c8913-df4d-498f-90ac-c030c18dc80f','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-9'),
('807e3272-ad8a-40c4-9add-a514198bdafd','1a33dee0-770c-42ca-b23f-f3750f630a74',245,95,60,0,'2024-11-25 08:29:12.551','2024-12-03 10:00:08.315','976779460-1-1'),
('808196a8-f52f-4603-87bf-34d82bc82c11','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-12'),
('80825d38-8423-41b3-879b-9617bc4e12f5','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.496','2024-12-24 12:30:21.380','735736030-1-1'),
('808b5568-66e1-442d-9931-dda69787821a','8ae18186-b64f-4b09-b81f-8095d536895f',112,82,56,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-5'),
('808f7b4e-d6af-4fe4-be49-f7fcc1303e31','5eba22cf-1a50-447a-819c-d6f78b038912',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-3-2'),
('80922b9b-3639-40b3-b4b9-aac44df2ba1a','23603e9a-f1df-45b7-910f-576bcfbf1bb0',0,0,0,0,NULL,NULL,'478981977-1-3'),
('809716c5-e1b6-4850-9a5a-5cbc1cd6da4c','62dcad6d-7e47-4849-924b-61c791d5a98e',90,95,165,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-1-4'),
('8098b0bd-bb69-432b-ab55-921759af1f3c','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-8'),
('809913b7-c30b-406a-a9b0-261036509615','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-19'),
('8099ed2b-07b3-4949-a1fc-ee79e21e4911','4dae2c46-63f9-42b5-9288-01744ed81ee5',51,51,77,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-1'),
('809b1760-c986-49e7-b947-64d2f4508139','dda0b7bc-55fb-4b7f-ae16-27ef12800819',26,17,40,0,'2025-07-02 12:43:47.546','2025-07-18 05:16:04.066','371186967-1-3'),
('809c899a-ac54-481e-b7b8-4247f938413d','03ad506f-f86b-4dbc-952f-52b01e2467fa',180,39,40,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-32'),
('809d123d-50a9-44d9-83f8-cde30b79889a','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-3-1'),
('809efc52-765d-448b-ac05-a36ba4c74a8b','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-5'),
('809f705d-7981-4966-b168-9290aeeba391','7513aabb-6614-4711-96f7-2d73eded59cd',83,99,241,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-2-2'),
('809f9d13-c6e1-47ca-8bdc-9a7371ec96bd','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-9'),
('80a1ae34-d7ea-48cf-acfd-41e5338ec219','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-10'),
('80a4faf2-5386-4de7-b75f-22dc050b0e14','96449af3-c272-4a90-b77d-0790552dd455',36,34,26,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-26'),
('80a572f1-30e2-4bb7-b9fc-01d97127f83d','18f619ca-618c-4101-9b2a-2b9e3114395a',95,64,7,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-1-2'),
('80a81c25-b30c-4a87-bf34-40a51bacb4b5','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-34'),
('80a8b4fe-9308-4f23-8b14-bdc5d2d9d502','9504c24b-6a37-4522-83ad-b302a5d583a5',45,10,215,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-16'),
('80aa3eef-7fba-44ab-be31-e79850f73aab','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',16,190,104,0,NULL,NULL,'478739679-3-5'),
('80ace9ee-d522-4879-82ff-181f1436ed00','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:48.838','248284003-1-81'),
('80ad8953-d706-4a5d-8506-c1bb2632a4f6','8be2c2d6-a463-45ae-938a-90a949953910',95,72,96,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-3-3'),
('80b153f2-b45e-4c63-8b04-29d0c21fe3d3','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-63'),
('80b1bb65-75c1-4abb-ac92-96982d8e521b','4b89aa36-817d-48c3-9a42-4031483da485',0,0,0,0,'2025-03-24 16:02:05.134','2025-04-01 13:25:28.639','221247114-1-4'),
('80b4393c-0961-4299-887d-a0bbcb7633ba','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-6'),
('80b6fc54-f7ed-43ad-9f3a-bb5d75162fd3','a229dc9d-0112-4892-aa8c-3d6eeb203d6b',160,200,29,0,NULL,NULL,'745189997-2-1'),
('80b76693-fb18-4129-ad4d-3ebcd9e1fcfd','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-83'),
('80b7d476-c9ad-4a2c-875a-6d207ff07608','324936f5-0640-4048-8641-e1550a228838',88,3,225,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-9'),
('80bac697-abfb-4700-82c3-3db24c80ae67','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-115'),
('80c10588-5d17-4776-b42c-85892a307a3d','a52a8f1e-fcc3-47df-b282-9601c50b05d2',139,5,61,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-3-2'),
('80c2975e-0056-457c-be0c-d0fce0e4d70a','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-9'),
('80c31908-814e-41e6-85b7-124ee9e08221','a7301044-68cb-4760-97a4-a179f6e13b28',50,52,77,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-1-2'),
('80c3781b-8d77-4a8c-87f0-6c4293fb8b06','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-26'),
('80c64df9-372e-450b-81e0-8445c95dc384','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-16'),
('80c90a9e-46f7-475e-a432-2897376c39c4','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-15'),
('80ca0be8-d753-4a8b-854e-adde0eef6c81','b9039b9b-ecf6-4419-a382-893676712c93',40,24,203,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-5'),
('80cc5190-1d43-4024-8e65-42bc98b0ec82','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-62'),
('80cddb13-31e3-4130-acb7-2baab77f4778','6f883022-1eea-4faa-b6c6-489aa1c8866e',60,132,7,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-2'),
('80ce9030-4a63-445e-b81a-d73babf81db9','280aa08f-620e-4d2d-a959-f7b298499b3d',238,100,74,0,'2024-10-25 11:54:28.142','2024-10-31 07:50:27.640','910163142-1-2'),
('80d4071a-b916-4d9d-b62a-26744f2eb2f9','04709db7-1bf3-47bb-af82-bf9215362742',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-1-3'),
('80d49d4f-a0ad-46e5-ad2d-eceb6751147c','aad5c1ff-942c-4e60-afcd-b7475a2421fb',85,56,60,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-3-3'),
('80d752bb-ac11-4ac8-9bde-d568e6a3a6a4','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-6'),
('80db6ee2-0201-4166-8eca-b0c091ec56e4','a705de61-d772-4a7d-92e2-87f1e616ec0a',240,35,111,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-3-2'),
('80dbaf56-bfb3-4d43-822a-d53732a48b4d','5d6791c2-ae64-44e7-a3ba-960fb60b24f1',58,91,22,0,'2025-07-19 07:52:10.252','2025-07-28 18:39:55.403','371820680-2-1'),
('80dbe007-5830-47b4-a468-5b64beab1337','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',51,51,77,0,'2025-10-08 17:43:46.255','2025-10-17 06:14:23.899','380453463-1-2'),
('80dc2223-8017-4aca-9171-23d87a7fe80c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',130,33,20,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-41'),
('80ddcafe-1540-4765-ae02-55ff795977cc','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-37'),
('80e207e4-c916-4b5e-8cd8-f1d3bc7b63ae','9f1f4a12-045f-486d-8d26-612451204bcf',54,20,78,0,NULL,NULL,'745995046-4-6'),
('80e309d5-500a-44b3-bd4c-14d2b00accdc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-121'),
('80e45f1b-e6d0-4dd6-bb29-d36b2edebd98','36d2ccf2-df1a-405a-b3c7-cef507b73ba1',81,25,202,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-1-2'),
('80e4c40d-e1d4-4774-bfa3-f48704fd1983','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',105,105,67,0,'2024-08-07 15:02:59.361','2024-08-15 10:31:04.498','976577497-1-3'),
('80e4f888-94fa-4d6a-b968-22534da92464','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-94'),
('80e643c6-4a92-4e67-a5f5-cc9a0315c855','25960cc2-fb91-4f42-9e90-011ad226f434',52,100,31,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-3'),
('80ea72d4-4ac9-45dc-9167-a91a1b60c30b','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-3'),
('80efef90-e6e9-47f9-a279-92b5ce2213f2','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-16'),
('80f09492-b601-43d9-ad30-b953cd734126','55c580f2-39b2-4b62-bcc9-c1c4c35132f8',0,0,0,0,'2024-10-02 09:26:40.080','2024-10-09 11:10:56.705','745283309-1-2'),
('80f1fcb9-5dd6-4a02-8c0a-bf3c44f1ba80','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-80'),
('80f226a7-2b46-4cb2-a827-076733005622','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',83,60,97,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-3'),
('80f25116-5d1e-42bf-b44c-8ee41a253e66','1091def4-1b0b-468c-88e1-7bec1e66dc81',98,98,75,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-1-4'),
('80f266c5-35f9-4015-98f3-f2b6eae6b537','6302f68c-26c4-4a31-853e-80b9d1ba59ee',45,45,50,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-26'),
('80f3a735-7432-4709-ba3a-bbd7f5edbd13','6cee1429-9935-4eae-be32-dc630b6d70e8',120,115,72,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-22'),
('80f5062d-b6d2-489c-9918-d3574c66760f','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-106'),
('80f707aa-3455-4862-abb1-a77c73465e9a','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-13'),
('80fc2b91-ae09-4d31-afe2-2f831d75dbae','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-45'),
('8105e9c5-5f37-4bfe-8fee-10913ee9f7c0','d15bfb2d-ea1c-4de5-8239-aa7ecce41541',60,60,47,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-2-1'),
('81075c45-cdc6-4deb-a0da-bdc043ccd0a2','0d069b83-aba7-488f-87c2-de268881778b',164,7,84,0,'2025-10-08 17:43:18.482','2025-10-15 08:12:51.780','598754271-1-2'),
('8108e4bd-bb32-4ac6-9463-a5954da56f26','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-10'),
('8109ed9c-290d-419b-9597-a4f7f76f655d','5c678148-a528-4b8b-bd4a-390890b0c04d',127,127,13,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.500','644535273-1-2'),
('810a99eb-944c-4e98-9306-e23437f1a407','886e0e1a-c599-47ba-bacc-c329212cc55b',30,31,40,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-8'),
('810dc3c3-74d5-4844-92b4-fd2f8b60b268','bedd9b20-bb73-4dc2-b799-5a1a172888ca',120,110,74,0,'2025-01-11 15:20:27.109','2025-01-17 11:00:29.595','501588943-1-4'),
('81190395-58d0-4bd3-828c-b068a578c43f','0fbc8a59-8a38-472e-bcd7-358dfbdaa902',100,80,104,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-2-4'),
('8120062c-7d6c-4c2d-b933-697a4f58a451','e4174e33-46ef-4741-a875-241d3d31e381',55,74,100,0,'2025-08-22 20:28:35.969','2025-09-03 06:12:11.936','644796083-2-3'),
('81219c80-6ec0-4d74-b0ea-fa55c81ff177','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-22'),
('8124b6f0-bba5-44b6-9912-dd1d60b508dc','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-3'),
('8125c94b-0be3-485a-ae24-3a7d037dc8fa','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-19'),
('8129193e-2aa0-4948-9073-3f857a8e3c8b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-11'),
('81292c01-9141-49b3-a207-05b2fbaff9ce','dda0b7bc-55fb-4b7f-ae16-27ef12800819',95,62,146,0,'2025-07-02 12:43:47.546','2025-07-18 05:16:04.066','371186967-1-1'),
('812a8602-b670-4c8c-99be-ab7604c8b95b','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-32'),
('812ce0b0-0451-4a97-a99d-4b05e45f65ba','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.447','2025-07-01 09:00:53.543','248630618-1-8'),
('812f3c74-e9ab-4aa5-97a8-89621fb7d103','4869c334-4618-49fb-9d03-99d95654d12a',43,209,5,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-21'),
('81308801-9c3f-4e6e-9674-ecdf1f54e14f','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-3-3'),
('8134a71d-dae7-41a6-a4b4-6327214ff49d','7beecb9e-d558-4da6-bcdb-d35549b9c1ec',0,0,0,0,'2024-12-07 09:32:30.833','2024-12-17 19:51:51.056','735233033-1-3'),
('81352b42-a096-4e5e-9664-e9d737be26f8','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-2'),
('8138631d-b600-4eba-9428-446911d75779','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',40,40,46,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.705','437591433-1-5'),
('81388abc-509f-483f-a1cb-a341381d8f66','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-1-4'),
('8138c987-0e00-4526-8438-561d79cb209c','9f1f4a12-045f-486d-8d26-612451204bcf',54,20,78,0,NULL,NULL,'745995046-4-7'),
('813e1f32-499e-4479-bf92-95074ea2986c','4e4af127-4320-4f89-92fe-1163834e6b38',103,68,90,0,NULL,NULL,'449888594-1-1'),
('81406d0f-ecdc-42be-8b31-5133057c9be6','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-58'),
('81414269-10bb-4c31-9945-56a2308740b1','0263f7f0-6c1a-4beb-ab78-25d69142647c',44,4,210,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-16'),
('814297d3-93a7-4d53-bf3d-914a54092095','324936f5-0640-4048-8641-e1550a228838',50,69,14,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-10'),
('814452dd-f5ad-403e-8e86-dd3258201fb4','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-15'),
('814587eb-fa1f-4c7e-b4ac-43fc0773926e','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-18'),
('81468341-9541-4f15-bccd-5e9e5b1e86d9','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-224'),
('8149e009-48f2-4562-b6e8-c5c8650d160b','7fdf89e0-868e-4dff-9a42-34a86d6e056a',68,68,232,0,NULL,NULL,'01169597-2-4'),
('814b2c84-6cd1-4460-b5c9-d2ffd5f6e8e1','3ab2fd1d-32f0-4ec0-9f6b-d89427ef7bea',0,0,0,0,'2024-05-29 10:12:11.110','2024-06-11 14:04:55.828','614390628-1-3'),
('814e36bd-f16c-47c6-80be-93af5526fed0','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-9'),
('814e956b-82cd-4fbf-9adc-c35cca4bcee0','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.095','2025-07-02 06:17:10.670','695249199-2-2'),
('814f2719-1017-4241-81b6-f86d3c84fac8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.747','223422825-1-122'),
('81523234-15e7-4066-a464-bf15178615b2','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',123,260,29,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-7'),
('8154154e-a9cd-42bf-afcc-6988113b9e0f','1f9da85b-2a2a-408d-aa85-1cbd194ab93f',82,56,100,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.732','613393068-1-3'),
('81601943-5ce2-426b-912a-2f1245214a37','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-7'),
('8161b959-2518-4fea-b69a-9ec9d7ec6925','7a7bde44-ed92-480e-893f-02d0f840ef92',105,100,70,0,'2025-08-22 20:28:42.930','2025-09-03 06:11:37.803','338829299-1-3'),
('81621971-e4bc-4123-9120-d370de80574b','5c1630ab-9f31-4753-99de-1615c793dd9e',82,109,56,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-4-4'),
('8165066d-9b68-4e46-b25b-94f8bb59c0d6','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-94'),
('816727e1-9225-41fa-a7ac-ef1ab4c5bdde','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-37'),
('8169eab0-e0fb-405f-8aed-36231525fde0','b4183fd9-691f-4e50-aa3e-1185b3e78cff',215,50,33,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-4'),
('816aead0-3a62-4e31-9c1a-853c9ef100df','81b00513-9ac4-4aef-8fee-fb279e70ca3e',40,88,7,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-8'),
('816bdc5b-3ade-4f41-b19e-8391209d0d6b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-191'),
('81734e29-f5ce-4ae0-9b37-9af23dd22108','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.061','2024-11-09 11:12:20.375','248259363-1-4'),
('8176a223-d0e6-4104-b446-ba68fdb315f2','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-103'),
('817bfc3f-721b-4620-8f5d-73fa50d15fcc','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',45,100,120,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-4'),
('817fb228-f86f-4fcb-b7c8-7d6c40e428b7','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-139'),
('8185ca89-38d1-4dc2-ac5e-a6b8266df3ba','b6d04ed2-f29f-400a-ba86-37b36b0830b2',47,18,77,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-10'),
('8188abed-bce7-44b5-86e9-0432f4f80c81','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-23'),
('8188e8a3-540a-429f-ad75-a72aabbc2b8f','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-6'),
('818ce9a2-9fd9-4beb-8d1c-a65b9fa1267a','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-6'),
('8190aa9a-bd1f-4f53-ac1b-24c83667240c','aaaede6c-998a-4b2e-af14-68241c67cfbe',0,0,0,0,'2024-03-31 17:55:00.055','2024-04-17 10:16:28.647','478125476-1-1'),
('81918742-2162-4c87-8997-add262f66b3b','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-5'),
('81928565-621f-4ec2-a130-a82c6cff1ddc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:48.318','248284003-1-159'),
('8193522b-7c4c-48a6-a21e-c9b94f667b92','24db27d5-0146-49dd-833b-d71f14ac985a',30,10,20,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-2-1'),
('819390e4-8186-4bac-bf72-2feb60136e2f','212dbaa7-c2c3-43c5-815b-138aed4d0833',81,58,104,0,'2025-04-15 16:01:24.821','2025-04-26 17:56:36.043','786286562-1-2'),
('81947ef3-09de-4a72-af95-ecf2d5d9d999','5ee1b922-dab0-4710-a670-da444e74f05d',100,34,143,0,NULL,NULL,'920359526-1-1'),
('8199cc0e-9dab-4fdc-aa28-37f90ade6ce3','2307cead-bc16-4ee2-aff3-8245c44ff256',71,70,99,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-4'),
('819a4d86-dd23-4e4a-998d-b461a29dcbfd','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.491','027336842-1-38'),
('819bca58-ac72-43e4-a9e3-dd9d6ea4bd81','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:57.940','248135683-1-86'),
('819d4c97-8449-4a91-aa58-886cc7909910','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-49'),
('819fc000-67e2-4021-85a1-77a794276e0e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:58.851','248135683-1-80'),
('81a1c41b-fbc3-4226-96fa-0cc5504915b8','1ad6d0d7-d80c-49ae-83a1-8f1779ed2429',92,28,200,0,'2025-09-18 15:48:50.869','2025-09-30 18:47:57.405','745374253-1-3'),
('81a2061c-b29e-4fc2-aa16-a2d75ecda578','fc33e6e7-779b-41c9-8d72-c26a1d995b78',110,205,25,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-11'),
('81a22bb5-6911-43e8-bc66-9d0421bc6d0d','a5626ae2-9a5a-4401-9095-a368c22814f1',105,53,85,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-16'),
('81a5ab1a-8815-49c7-993d-60ea600ed503','bf3c6d76-210c-4d83-8776-c792b4de5d83',33,131,33,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-4'),
('81abe19b-ce2d-4048-a4a4-7b2bf7629c69','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.569','221339460-2-100'),
('81af1637-2abc-4936-b9a3-173f0329948c','618e1331-42cc-4157-b66f-62404be9162b',105,74,69,0,'2025-10-14 09:22:04.937','2025-10-22 07:00:50.606','808922349-1-2'),
('81b1a520-0d29-4efe-8e49-2b7adac0a24f','42781ec4-0202-4d59-947c-1921f95a4539',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-3-3'),
('81b44a92-15af-4818-8f17-2079b4fef153','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-94'),
('81b48c9b-16aa-47ba-b243-401a32ff121f','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,60,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-37'),
('81b675c0-df05-44bc-b7fa-01505f957568','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-9'),
('81b92e3c-5671-493a-ab34-2a92187e910d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-18'),
('81b9a244-262a-4593-a6dd-b3d3fe896c4e','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-2'),
('81b9e3f0-028a-45ba-8b62-62b8c5561b0a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-124'),
('81bc7681-785a-4710-b0fa-9cb7e69fa54f','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-9'),
('81bc89fd-5255-458d-8c23-aaee3aa5bd90','d1833d5a-ee89-4250-8013-2e537cc62ee3',109,35,130,0,'2025-08-27 19:40:14.969','2025-09-04 06:16:31.245','614536111-1-2'),
('81be1ef1-32ff-4350-8f62-e1817003f69d','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-85'),
('81c34c29-2a62-4d4c-acd4-7f0c560e3767','c98f6188-56c5-4870-be97-be71cf95f62e',26,41,17,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-45'),
('81c46161-2c74-405a-91a0-92ae8f2fcca5','fc33e6e7-779b-41c9-8d72-c26a1d995b78',100,142,8,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-5'),
('81c46d23-1916-4683-ab8a-d09819b569b9','0a8285d0-d3db-4298-8e41-62c5429f150a',207,34,28,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-17'),
('81c4c64d-a41d-4a89-b103-7f6e422220bd','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-1'),
('81c570a8-4396-4535-8e0c-ba1f388fd745','41111b99-4330-4fbd-b14b-1061f0a8a390',97,160,15,0,'2025-10-02 11:20:39.275','2025-10-15 20:06:33.336','221282484-1-1'),
('81c69af5-4dc3-4e56-a3e1-2264fd1278e6','2a4df356-6870-4e82-843d-6a6131e7e377',230,95,57,0,'2025-01-20 11:21:22.852','2025-01-30 09:59:58.590','98238273-1-1'),
('81cb48da-b5db-41b1-b53f-e5413fa23b41','19c6a32c-4384-451a-aaa5-dfc264ab827b',33,8,92,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-12'),
('81cd5037-03c7-4e06-8a31-d95bbe47e383','c27fa652-60a3-420f-84ea-e63942b65704',167,30,30,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-3-5'),
('81cdfbfb-d6c4-4981-a900-9aa930453a18','c900d790-eeff-48b9-9f2b-48972c98ac32',52,212,10,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-10'),
('81ce9b15-d7bb-4791-83e8-927043eb7520','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-56'),
('81d01908-4955-4093-bea3-eca54a965ae7','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-68'),
('81d2e366-2d08-4e59-94ee-1f92606d4fba','bd5cd96b-f90b-435c-9dd2-b569c97d608c',0,0,0,0,'2025-02-27 16:45:17.909','2025-03-14 11:07:25.073','478644533-1-3'),
('81d3618a-d627-4b73-b2d4-952962ad42cb','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',13,29,87,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-10'),
('81d9d85c-cda1-4660-bbaa-20a5d726f285','d32b552c-b92e-4e30-9bd2-aacbb0b4e77b',110,57,82,0,'2025-04-30 14:29:04.719','2025-05-13 09:06:30.362','745291553-1-3'),
('81de9e98-c417-4359-b47e-e7a97516ab06','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:50.457','248284003-1-173'),
('81e1dbd3-353b-4bda-a23b-896c294ed659','9866a947-9974-4053-8415-4518842488fe',160,200,3,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-22'),
('81e28fcd-d642-4796-a4e6-ef9b722c91b5','5a89fae8-525a-4de4-8188-2f4d7c892e74',54,22,108,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-19'),
('81e4ce37-f1b3-44e1-a781-ec75c33ddc63','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-50'),
('81e5f962-ba6c-4b28-a79b-12dcbe65212a','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-11'),
('81ebd729-79ad-4279-91f5-0ddbf073ba6f','f0e43964-75b3-4eaa-8941-9cb4fed72d4c',0,0,0,0,'2025-04-11 13:41:47.605','2025-04-23 17:45:52.850','478919360-1-2'),
('81edb43e-25a4-49a3-bda7-21ac1b442c13','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.189','163961995-1-92'),
('81f2e0b0-c750-433e-a6cd-3b212b887162','5bcbbc13-969b-49af-9691-435907b8a012',100,106,80,0,'2025-10-14 09:22:09.057','2025-10-23 06:20:07.502','644257752-2-3'),
('81f3d6bb-8f79-45d0-b803-05e623014810','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-11'),
('81f3dc17-e161-4b78-8597-3ea0e4b67a71','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-3'),
('81f47aa4-6c19-43ee-b7d7-ebf36900dfb2','f422a47e-9cdd-4fc1-aba9-00af56f758ff',230,92,65,0,'2025-01-06 13:08:19.026','2025-01-10 09:45:24.615','112609358-1-4'),
('81f56df8-9855-4ce2-bd33-0c80099f626b','1087586e-034f-4ec1-9828-d61ce37a1821',100,123,65,0,NULL,NULL,'478153975-1-3'),
('81f57b33-adbb-4c88-9ba6-6deb459d9e19','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-21'),
('81f6ff17-6bdc-467e-9a71-c15b366b10bd','149f93af-0c33-4ba8-aac3-51f8a7e10611',0,0,0,0,NULL,NULL,'61440092-2-1'),
('81f88ec6-be40-4dde-ae8f-a031df6bf381','b44449c8-5efa-4085-bd2d-0a3594587af9',47,211,3,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-14'),
('81f8a5f4-e0d0-4946-9349-b6e92e639c2e','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-12'),
('81fb82ad-b45d-4902-bfb8-da8f4bebcd45','73070a82-3710-4964-a5e9-55737d39af81',136,43,12,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-4-2'),
('81fe7a64-38c9-42bd-aecb-414496ff1e29','f7c345ec-fb13-49ec-a83d-d89fa6a2ceaf',62,60,90,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-4-3'),
('81ff4352-bbac-4157-859b-4d86c13880de','80b1233b-a544-4cfa-b3c0-d621b23200b4',100,123,65,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-4'),
('8202fa12-75f8-42bb-be06-e4ee4b9409b6','416e7e24-9084-4530-b3a2-2808d9f33e37',100,122,65,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.165','371514006-2-2'),
('82060d39-2767-42d8-be4c-02632cbc7210','736a3843-e940-40e2-b010-ca2488879ddd',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-1-1'),
('8206a8fe-f388-4a49-855d-099cc9c05de9','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-15'),
('82080091-9211-4ddc-af51-a42488ff5da8','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-20'),
('82108a01-7668-4cb0-b6e5-97f99731f744','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-1'),
('8210e1fa-952d-449d-9fab-cafca1bfbe1c','32b11ede-8890-497a-89a2-1672b3f73306',190,80,30,0,'2024-03-14 13:50:34.884','2024-03-22 07:37:35.143','982451991-1-4'),
('8214b8c0-6a1e-49a4-8bd8-f77f825b1a64','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-121'),
('8216c20b-97cc-4f83-8bda-adcd1c4c861b','3693a7fa-0a40-42ee-b86b-ce0f3a59c4a1',47,51,225,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-7-1'),
('82185964-6dd6-4e0f-9eb2-10a837fb4f9e','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-14'),
('8219a9b6-d080-4ed5-81e1-6b8b7d0b5667','ae2f16d8-65e8-4efb-b2a7-26877719b20a',59,16,87,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-7'),
('821a11db-585c-4124-a99f-70a669d4c13e','bcba86c8-98cc-483c-835e-d6a21f8a45b4',0,0,0,0,NULL,NULL,'70333177-1-1'),
('821aaffb-7b9f-428c-b403-5902a39664af','111ec340-48ae-456c-b501-40efe003e8c0',58,73,105,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-1-1'),
('821da1ff-35e8-4a67-a778-e5c8b56446f1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-41'),
('821dd791-5363-4c27-82f4-ef3896b0dba9','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:50.868','248284003-1-74'),
('821ecb4c-f869-4efa-a09d-ae194f2af329','40d58b2c-a3e8-4cab-a242-12a641f6f94c',90,75,85,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-2-2'),
('82202e27-ffb5-4ae9-aca3-1169ba7197e0','5d68c437-9009-4a6b-8910-e785034e1ded',95,212,70,0,'2025-08-25 12:32:01.582','2025-08-30 18:26:03.668','278440694-1-1'),
('822034ae-dea3-47cd-937e-9159b185eb2f','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-2'),
('82209b3f-6068-4225-8d02-a757d22d939e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-4'),
('8224a67c-2068-4d9e-bb93-deb2226eea7a','58ebcdbe-9281-4605-a44c-87684653f9f9',93,93,82,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-2-4'),
('82254631-3cbd-4492-a4ce-1c81ae682684','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-7'),
('8227a7e2-70ed-4c61-b7d6-9dcea2638c5e','aa85d51a-54f8-4467-8437-b14d6b3635dd',54,75,100,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.406','486405325-1-1'),
('822a0584-3ab5-43a3-a279-c7fed8a16c9d','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-6'),
('822c79bf-882d-4290-a00d-64c744d0ece2','60265db6-b4a8-4ae7-8ba1-2177955c5b94',55,76,103,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-1-2'),
('822d2b4a-182f-409f-866f-494294ff3417','6e59bf3c-4674-48eb-95d4-e38eac38066b',262,72,98,0,'2024-10-23 14:11:53.676','2024-11-04 08:40:33.502','501786631-1-2'),
('822dca40-a89e-4577-8359-b4872fb48bf4','54f76545-b44c-4fcf-8097-cd39f86917de',88,208,5,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-3'),
('822e0ac2-f32d-4262-93aa-5d2e3be40cb3','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',100,70,72,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-3'),
('822f3be8-ee5f-4ce0-b913-bb5e881e464d','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-7'),
('82323739-97e2-4ce6-bc91-722ad5cff2b1','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-34'),
('8233c0c0-185a-49f0-9916-62694f4ea9e4','af3cff3b-575f-45ca-b1a2-1535de311073',97,75,164,0,NULL,NULL,'011548428-6-2'),
('8237f90c-8cbc-4f1e-9d2c-c7b585d36d8a','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-19'),
('823af0c3-de0c-4964-ba48-f15ab7d0efdc','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-1'),
('823dbd53-f484-4c3f-b7b9-f917e781503f','92f4338e-023b-42d8-a569-19b0439633e2',125,93,70,0,'2025-03-08 13:46:08.990','2025-03-18 18:33:04.535','644130393-1-3'),
('823e9ad8-3a29-441d-bc68-7b6a10e757cf','c29e76a4-89ba-4143-8fad-01a2910620ee',58,64,51,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-17'),
('8243e1ea-02f6-4d2e-b8fd-e7f792a8c60f','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-51'),
('82488fd6-7adf-4ea0-b30f-e6ebe3a6e61f','220fed8f-f96e-4af5-867b-ac05d11bda6f',85,90,17,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-15'),
('8248c959-564a-41d9-b96e-974ec779d1d5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-130'),
('824a4814-07c2-4768-829b-e9f83f48b46f','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-66'),
('824c7a4c-19b4-43c5-b6f9-072fbe622be9','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-73'),
('824f8bdd-44be-4cf5-b7e2-4204add70e15','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-65'),
('8253a882-f7ca-4de3-abe9-97011706b80d','abe9db81-20e4-46fc-8891-d8e8f19e9355',57,87,110,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.737','437917777-2-1'),
('82545d5c-3924-4ea6-b992-fcf02cc822b2','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-3'),
('8254e5b6-04b1-42ed-b5cb-bb6654151d5c','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',230,72,90,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-3'),
('825d9c9f-9f54-4636-ae46-ae6751364857','db6bdbaa-a89f-4ef8-8ba3-88c9315a24f0',44,43,96,0,NULL,NULL,'371105450-3-1'),
('826043ca-b45a-4071-9ec3-f7e538cddafb','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-19'),
('8267517c-7f6a-47ea-85de-ea2b5bb8ab5b','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-12'),
('8268910c-1e4a-4f1b-9a5d-3e5ba214cc8e','a1729ef8-68db-469a-aac3-924bcd87bbdd',99,70,245,0,'2025-05-16 16:33:37.957','2025-05-21 18:42:06.781','371539784-1-2'),
('826c2552-c8c4-4f09-b310-8793444b593f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-169'),
('826c3c7a-14f3-4726-a9e5-08a94d84e982','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-101'),
('826dc2a0-460f-4ede-bddc-c5ec3c899ef6','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-11'),
('826de13e-b638-4a16-9888-bf67c3525e03','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-5'),
('826df259-0992-4ace-8b95-2125a1969924','5d93f9db-58ed-48cd-adb5-3427b2b7061b',0,0,0,0,'2025-09-18 15:48:33.491','2025-10-02 06:12:12.650','221996027-1-2'),
('826e5b82-d858-4579-b7dd-acf819615a0a','1f388c89-3645-4f72-9cfb-ca1d6893010b',103,56,80,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-2-3'),
('8270faa2-7e49-4d90-bf3c-b9245679e705','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',83,110,56,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-6'),
('82743016-229a-4e6f-92c4-d2ff043453de','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-54'),
('82748b17-7071-4291-8f29-c55d31a8a388','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-35'),
('82759ed8-6a06-483d-8a14-d068e1d83eca','b1e78900-6d6d-4a9b-b697-4622b372f80f',96,188,6,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-3-3'),
('827c4102-93cc-4d17-a7a3-7ea2640c567d','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-53'),
('827e51f7-2679-4a2e-88bc-d5bc69e756e6','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-4'),
('82815cdd-eaf6-44a8-9431-eeeb1c8d04f4','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-37'),
('828362f3-eb7f-4364-a932-07a2911c5b1a','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',93,30,205,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-8'),
('828601bb-7490-4256-961f-dcedbda1b8bc','c7fce8c7-acfd-4c12-8db5-81618a4b211d',68,11,10,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-18'),
('828721bf-4a5f-4f8a-9d4c-adf843e26dce','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-3'),
('828886c6-d802-4d3b-ad8f-868cd206305c','d2f8d58d-42ad-4705-b1e8-a666af927fa3',11,36,121,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-12'),
('8288c3be-f1d7-4b8f-a83b-1735ddcf9b77','fc33e6e7-779b-41c9-8d72-c26a1d995b78',100,142,8,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-6'),
('828a934b-762f-4092-b010-0345aff3bbc4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-59'),
('828abb3b-435e-4528-80f5-e6e441f6482a','d3c3d137-f31d-4357-958b-af365fcd9dce',103,75,98,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-3'),
('828d102e-bcf6-4766-926e-5099c5a9aa84','db1e0b9a-d829-49ba-8948-a90a863b6512',54,73,101,0,'2025-10-20 07:18:19.736',NULL,'644741916-2-3'),
('828d73ed-ed13-4110-a662-95279b458b0b','4301b768-4818-4e74-a6d0-12a33474f5c6',12,45,79,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-15'),
('828e177d-c5f6-49c3-8188-1513ab5780b2','e178636b-b1d9-4260-aa1b-879946fa7f5d',35,44,202,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-11'),
('828e2672-9363-4435-8503-1c60a84f36ca','3ba27633-a526-475c-9e24-fa446137f6ce',100,80,118,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-2-2'),
('828ee693-6374-419d-8a1d-bf1c7379dfa2','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-9'),
('82912a01-bfde-40ca-83a1-614163d73361','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-5'),
('82914bd0-5490-483b-89f9-76715798b1c2','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',101,56,82,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-13'),
('8293d5aa-2677-41f7-8c12-910677df227d','40d58b2c-a3e8-4cab-a242-12a641f6f94c',103,230,70,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-2-3'),
('8295140e-fda7-4b18-94f6-bcd71781dc25','135906fa-fceb-45b1-a401-83de82461319',56,100,80,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-12'),
('8295e3bd-4a0b-4e6c-b480-d0e27aa5b8ef','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-48'),
('829f3da6-1651-4dc6-90e2-3d6da37e820a','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',105,20,16,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-2'),
('82a13dfb-6a3e-4710-a041-831af3d989b9','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-4'),
('82a522c1-c5d7-4c35-bea7-b10e4ef2c6d3','7f5d49b9-798b-4f31-9e95-4d6bd70554f1',200,119,70,0,NULL,NULL,'412922678-1-1'),
('82a5e0c0-a84c-4372-814b-42ee6b41e327','1dff9484-7b74-4dd3-bde2-e304e871a006',87,87,9,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-5'),
('82a68ae9-aed2-4553-ab6a-15d83a35b47f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-34'),
('82a7344c-d690-4ea1-93ed-94675874f41e','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-17'),
('82aa0da3-8d7b-4825-a7fd-18392a0cbd55','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-12'),
('82ac4534-882b-4a66-9808-ced0c4b6575a','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-24'),
('82ac805c-2db5-434c-a577-b728b2f2cdfc','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-83'),
('82b91e60-b0ef-4581-a428-ed3aac9e970c','4869c334-4618-49fb-9d03-99d95654d12a',72,51,11,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-17'),
('82c2b024-e48c-41e2-b1a6-52863bb62173','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',55,11,134,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-53'),
('82c57fce-407d-4c89-9bb8-2bfa3d6143ad','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-7'),
('82c60a9f-3f24-4dba-a955-708e46295c0f','a2f34510-a7f6-4abd-ac03-e7c577feca03',160,200,3,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-10'),
('82c802d5-d829-4bb6-9c70-8c4fcee924b6','0a7091a2-1be9-4a5a-a612-ddecb064d79c',115,210,52,0,'2025-09-18 15:49:02.790','2025-09-30 06:44:44.065','644484322-1-1'),
('82cac32b-fb3f-4b1b-b420-add9b0d64f85','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',41,94,5,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-7'),
('82cb3f2c-f1ed-4ce5-9f50-7c45ba3c637b','03ad506f-f86b-4dbc-952f-52b01e2467fa',130,46,84,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-33'),
('82ce5eea-f5d5-46b7-96c8-e918c34f0a25','c91edd26-ca21-49cf-967a-8ae66440af23',90,29,202,0,'2025-07-12 09:20:24.300','2025-07-24 18:03:45.377','745813483-1-2'),
('82d2adbf-2c04-47fd-9aea-1e2b05f458fb','82ac2d58-053d-41f5-a402-9275c56203f9',215,10,51,0,NULL,NULL,'428172853-4-11'),
('82d32f3d-bf46-4962-b6c4-a23417f89fee','31efbfbc-2eef-474b-8cd0-b552d5c60b72',41,25,198,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-4'),
('82d569ed-b254-49d7-9646-25a2e0323a2f','b02788c1-0146-4977-9654-9a5bfdaa0079',76,123,7,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-5-2'),
('82d60ad4-0afd-4b7f-b20f-0360f49ea089','4bd3461b-c38f-4c43-90a6-39aacd24cc83',56,44,50,0,NULL,NULL,'976462703-1-8'),
('82dd0a76-4bee-4e52-8f19-5444313be4e2','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-6'),
('82e07044-4e33-41f9-8d1c-14d763367dae','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-15'),
('82e0ce49-577c-4dab-a2d4-e7366be25286','3da17157-28be-4bae-8dcc-745d0e93e591',53,73,101,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-12'),
('82e5b3b4-b8dd-47f4-8fc7-d39d38889e18','da725bab-47fe-4aea-b4e3-094195e16ad2',100,85,70,0,NULL,NULL,'745509928-1-4'),
('82e5c850-13bf-48fa-a02e-e2a93e49e1e1','7dbfac68-a166-481d-9984-d7ec9291dc46',72,77,74,0,NULL,NULL,'808690841-2-4'),
('82e6c540-eee0-41c8-9948-d6c72408eaaa','4da5ac02-2da4-493f-ad0f-88044a96633f',65,80,70,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-7'),
('82eac286-bfac-4332-90d4-fde28296cad1','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-45'),
('82ef9111-3daa-40c1-ad6b-fb140c5ba970','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-15'),
('82f0c968-0069-418b-8cfc-256870f47ba6','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-7'),
('82f401cd-ff80-476e-9746-10467a0a7ed5','ac9c542d-e46f-415f-ba83-e9a5fd0736a4',100,91,60,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-2-2'),
('82fa0636-b28c-4925-8d1a-50464bf910a0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.248','223823107-1-246'),
('82fa724d-00d8-4167-b5c1-1a6a971c3c5e','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-76'),
('82fa9688-4e75-424a-8148-6ffc33403b8b','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-6'),
('83038504-92ba-497b-aef5-bea2161be09e','67dba577-f387-4df9-95bd-9cd507ced642',0,0,0,0,'2024-11-02 08:42:46.458','2024-11-09 11:12:25.458','745127322-1-5'),
('830b1e42-1c23-4985-940b-95021ab48944','7a9963cd-0d66-4092-bf41-9c56574a2415',83,92,92,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-2-3'),
('830c84f0-1589-4d37-be4e-b588aed1aa9c','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.899','248383650-1-13'),
('831012c4-7735-4977-9c94-270eae045aaf','54d3748f-dda6-479e-918a-23bd09a831ab',102,38,218,0,'2025-10-22 13:06:44.054',NULL,'598894090-2-2'),
('83125e19-4573-4f0f-8edb-fc01406723a4','6f39adeb-44e4-441d-991b-695b96264861',90,12,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-3-1'),
('83143e0c-6e47-4076-bac6-c159cd0de5d2','1d2ec7e2-f735-46a1-96be-3994af90aaac',63,10,20,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-3'),
('831689a4-d98d-4aa2-b8bb-738be6c27652','546ad3d0-25c2-43dd-9443-e48b8e5b6530',4,67,90,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-31'),
('831e8d95-89a1-4369-8512-b484d2bdb9e9','57604baf-e8cf-4035-aab3-ed4bab52522f',70,122,10,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-7'),
('831f2b08-372e-48c6-ad9d-169221fabc12','1ca8cf8a-cb77-4d12-8753-3efe7142a30a',51,51,81,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-1-2'),
('831faa0a-132a-4951-81ea-f4c96d5fe768','86e5956d-750b-4aa3-8f00-53e2db7b9f65',170,55,5,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-21'),
('831fb641-1d73-4ee2-92fe-5d2093836116','a545df6f-28a9-489d-b668-a448c88582d4',43,43,74,0,'2025-07-02 12:43:37.907','2025-07-21 08:00:51.719','371261673-1-1'),
('832338f5-ef4d-4957-910b-eafd6722cc65','a9828fad-e20e-4e73-98f6-917c06f178f5',77,80,60,0,'2024-03-30 10:54:55.588','2024-04-04 12:48:48.669','982189682-1-3'),
('83237275-73be-43f7-8964-6bdea2b95f9a','2c05cb84-f059-49a2-961f-cf222d5be8ef',0,0,0,0,'2025-05-16 16:33:10.884','2025-05-27 07:54:25.413','47876427-1-2'),
('832ebe84-607d-4f74-aa42-daf656d7f5e6','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-35'),
('832ecfd5-1e8f-44c4-87b4-1c5e5f3cc137','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-2-6'),
('8330a715-8fd6-4bab-bf6f-3b852a06607e','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-95'),
('833317e1-bf02-4fe2-a020-f50b493fd041','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-155'),
('8334f135-1612-4bb7-a4af-c65038d97bae','a7202744-dd74-4e29-bc02-78baa3dbbb1e',101,53,73,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-3-2'),
('83374cfd-2b83-4c0b-ba67-e11c463f4e71','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-4'),
('8337c38e-58d4-42cf-ad61-13d8d3c5a6f3','c1b37a15-5b7e-474f-b45e-76788d003b76',107,57,82,0,'2024-11-08 17:37:30.696','2024-11-26 08:03:46.532','231429780-1-2'),
('833ee82d-1880-430d-b6b6-be6883b48ec5','29f3f8ad-a5d1-428d-9716-27aa02ff0be2',91,23,190,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.331','455614339-1-2'),
('833fda20-5b47-4c87-ba98-607dbe8cf79b','8e39c973-c918-4ebc-bd24-9e7fc61de240',102,73,52,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-6'),
('8341ddae-d75d-4096-bb2f-83dbbc652ad8','546ad3d0-25c2-43dd-9443-e48b8e5b6530',90,24,190,0,'2024-12-13 14:49:08.599','2024-12-24 12:30:41.042','655919587-1-35'),
('83448312-7412-40be-ab2c-5d88c1127ac3','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-10'),
('8345beee-86db-4b88-91eb-ec0a95d5fa53','4c77e727-6744-42ae-9efd-d1c1270fb5f5',15,30,20,0,'2025-10-08 17:44:08.106','2025-10-20 06:32:16.904','644113252-2-1'),
('83469a08-7258-4c97-8356-0193453b0cea','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.474','2024-06-22 23:00:04.354','44831715-1-3'),
('834c458e-5011-47c2-b182-828d0e512c68','c2295f21-9953-47bc-82a6-45def25fc2f2',90,80,75,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-4-1'),
('834d33bd-d1b3-40ca-896f-e2f48a363d1e','04a41e24-7197-4701-a8ce-c4a0dd073b19',99,50,46,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.468','319645924-1-5'),
('834d5af8-6282-4dcd-bf58-f6134408f4f1','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-27'),
('834f73bb-2abd-4635-81b4-5e2b135deca6','c2ca9295-3327-4596-8115-dd1ef2d64d4f',48,185,46,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-2'),
('834f9cd3-1927-4205-a9df-27732ce36ae6','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:51.826','248284003-1-165'),
('834fcf48-bacb-46bc-94f8-2b72b1627d4f','89083e34-7ffe-4b68-86f0-bb6ea143c832',90,33,211,0,'2025-10-08 17:43:20.137','2025-10-15 08:12:57.977','614666366-1-2'),
('8352334b-2569-4289-991c-8c5a65ce93a4','1ef8b91f-e8ea-475e-b299-b11ca4ae6186',83,83,9,0,'2025-07-29 12:58:31.228','2025-08-08 14:07:53.363','371887346-1-4'),
('83542513-4aae-44a1-aaa4-66d1e7d94646','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-95'),
('83557fff-665f-4537-a2e2-a9267d500239','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-5'),
('8355c3b6-02ed-48bb-a262-cce732502a01','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-34'),
('8357f8bb-8755-479b-a9ac-a0f5cef7641a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-74'),
('835b6467-6533-43fe-a798-cb4a49c39c2b','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-2'),
('835c8115-54ed-42fb-b869-623dc9b739bb','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-59'),
('8361072b-38fa-4ac7-8230-04311705e39d','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-78'),
('836117ad-3e70-4229-83bb-802d0a51fa19','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-3'),
('83624381-dd23-4ba0-b71b-d824e735f55f','e97539d8-0d26-42a2-bfcf-9866d5bd205b',35,40,216,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-6'),
('83643648-525b-48ed-b56a-021a1ee0d4a9','4869c334-4618-49fb-9d03-99d95654d12a',54,115,19,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-6'),
('836a072e-d883-4b1a-b787-cc1157472b68','5f82a1e9-e92f-4ba1-a761-b3cd889fe18b',0,0,0,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-2-1'),
('836a8425-a2d5-4a08-a32f-82752cfa53a7','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-4'),
('836c4bfd-aaf7-4ce5-a3bb-fc53275f5e1c','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-48'),
('836cd218-36e3-4ea7-82a9-ab4abc872698','8add455f-cadf-462a-8446-b3feef2203eb',0,0,0,0,'2025-02-03 18:18:36.497','2025-02-14 15:00:10.497','73555265-1-3'),
('8370bcb1-b191-47cb-92b2-e1a84ed78a69','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-4'),
('83759bea-f278-4a96-9895-1e2a4651fbe2','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-5'),
('8375c07d-d9fc-41cb-8cbe-538c29f8e4d7','cde2b645-2cf4-4ca6-9d59-ef733217c501',95,95,85,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-10'),
('8375ebb2-a004-4552-926b-ae218d6c9712','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-7'),
('8376a2b3-0b6c-45a4-bacf-ea7ee21f92a9','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-22'),
('837728df-ed9d-4aba-8b67-6c14637689cd','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-1'),
('837ac2ce-c715-46da-9018-f4ecaa86c72f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:08.745','248135683-2-3'),
('837b09d2-f87e-4753-86e7-9002470f1f05','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-3'),
('837d65ef-b8e6-4127-a0e5-906fae341bec','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-123'),
('83800fe4-a7cf-4258-91f0-39c0f07b3611','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-94'),
('83820f4b-001c-469f-9684-e4bdea6b816a','a7d8e541-ac8e-49b2-b360-317f8114fc5d',80,80,8,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-5'),
('83846e1e-4af4-4e03-b023-3db25bc82b49','f2c9c596-b3a2-4d94-b5ce-ba5e069264d0',30,30,184,0,NULL,NULL,'140284101-1-1'),
('838668b4-a89f-448c-be5c-487409d0cedd','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-27'),
('838858a5-5111-45c2-a450-b714c4533004','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.344','478623446-1-3'),
('8389fb02-8b3a-4462-8f98-8d1cf7987f59','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-172'),
('838a52dd-d0d5-4f0f-92f7-5f59dfb2604d','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-12'),
('838b355d-90d4-4d90-ab4c-4eaefd834ebf','1fa0d27f-c4dc-4c7f-b202-ba5d273805ee',0,0,0,0,'2024-11-15 17:06:46.419','2024-11-27 08:20:07.312','745936573-1-1'),
('838d05be-1eb2-4d6b-b617-fe36013fcce2','e41c2f64-f695-4f9f-a2c8-28d17571c06b',56,81,110,0,'2025-07-29 12:58:22.159','2025-08-11 12:32:33.741','437584936-4-3'),
('838ec366-f3d4-4715-8289-5ae6417352ef','3e4d9220-ce76-450d-a76c-9787b1f4433f',66,66,6,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-5'),
('83945a13-14b1-486a-a44e-c36975f28db3','e622181e-7708-44a9-8b12-3952b738674c',80,80,80,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-5'),
('8394b047-8a44-4b7b-bd29-6788626213b2','09ec3773-11e0-4cf3-8e95-4f78f73f4e5e',164,92,18,0,'2025-04-15 16:01:55.950','2025-04-25 09:51:45.421','598127401-1-3'),
('8395c221-e14f-4d23-875f-0af71df84a80','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.150','163548367-1-29'),
('83961dd0-ba2c-4a15-a3e5-6f91a17bffa0','cfcd95ed-d5a9-4721-9a6a-423ce2278803',82,27,200,0,NULL,NULL,'614204771-5-1'),
('83979622-b791-492c-92d9-f7bd56a51649','b7df853c-c210-4f4b-bcc5-e0189a8ebe0b',210,75,110,0,'2025-01-06 13:08:12.164','2025-01-10 16:33:51.205','911398945-1-2'),
('83988f1c-ca7d-464a-9f71-0bad2ac4b40a','48662948-788b-4f09-b1a2-4177f97b1eb7',73,54,101,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-2-2'),
('83995d70-e603-46da-bff3-7fd22d427f0c','14fb0987-4091-41ac-acc5-918b7d5ce9a3',12,223,104,0,NULL,NULL,'371216639-1-2'),
('83aada26-8ec2-4ec3-969d-a86b6b61cb93','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-1'),
('83abb09b-983b-45d5-8085-0d58771c70ee','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-17'),
('83abd232-942a-4fc0-9990-9e8efc0dfd56','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-7'),
('83aee3cc-006e-4dda-85a4-1b710b8c3e50','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-39'),
('83b00ac1-5b66-4f56-b036-1b99c08546fe','4f4d6062-861c-437c-a07e-84ed7315136a',0,0,0,0,'2024-09-27 14:06:47.253','2024-10-05 11:44:33.143','478392276-1-3'),
('83b169a5-134d-4f34-9cc4-1335f4701270','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',57,208,8,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-7'),
('83b471b6-f769-4fc9-9bee-f0c7242a4471','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-21'),
('83b8d4e6-8814-4c4e-880c-851ecd444388','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',60,82,12,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-18'),
('83b94dc5-4723-4bfe-90e2-d4d7114bdebb','94265c38-053f-43ac-95e5-6d1b08ae3c22',45,45,53,0,'2025-03-27 15:05:06.419','2025-04-08 15:35:11.106','517887763-1-4'),
('83b96945-cb4a-4496-80d2-64f9f36c7b80','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-3'),
('83ba371c-0d09-4e31-9301-2ee6a0a194ae','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',47,160,7,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-8'),
('83be83b3-3722-4773-bd43-b1d4360822c2','2c356607-02da-4a51-85d3-eda95e852225',24,116,14,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-2-3'),
('83c1bd6a-2d6f-43e5-8ace-89abad5ded62','ef877586-eecb-4c6f-a5bb-bea716e4c29d',75,110,160,0,'2025-10-02 11:20:33.093','2025-10-14 09:36:00.702','412989879-1-2'),
('83c1cefa-a89b-422f-ab19-4badda76e084','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',90,90,53,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-2'),
('83c227f7-2776-44e2-ad25-dfc933d7794b','6f44b113-5917-40cb-9c98-9456f8c03518',72,58,101,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-5'),
('83c33b75-f474-44d2-8848-0de2a79572cd','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-19'),
('83c9c0d5-1970-4c80-b9ab-ce4399fd3e47','520b7195-189b-492f-9da1-ba698952b5ad',73,53,101,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-1-4'),
('83c9d44d-32ce-41de-ab24-9ee7e9ce83dc','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-74'),
('83ca1e78-a739-4c59-8217-cd8147a6ef13','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.286','412746738-1-144'),
('83ca6ccf-5457-4e8c-86fb-1215de54de01','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-84'),
('83cc17a7-2782-479e-82f0-90010d6a2080','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',150,60,10,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-31'),
('83cd8990-a6f1-4e36-aa6f-0238c000de3a','7cf524b9-0e83-4963-bfc3-863110305d5f',33,33,168,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-2-2'),
('83d6d02c-28f7-4553-9aca-08359c955352','9bdb28e0-34f9-4183-9232-5dbb14529176',0,0,0,0,'2025-02-27 16:45:16.849','2025-03-14 11:07:30.043','644823609-1-3'),
('83d70d83-9c64-47d1-bb13-fa90f52748ea','97f30c95-1381-4341-ab94-c74b11d28be8',95,120,80,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-2-3'),
('83d7619b-834a-44a5-bc3b-7eda5d8beed9','b0a7ad0c-b46e-4dae-be4a-303537beeaf8',0,0,0,0,'2025-01-04 10:47:45.156','2025-01-08 20:28:24.025','428490126-1-1'),
('83da99bc-b0be-429a-8169-df23ccba5b17','df713518-2930-40b6-8d4d-ddc4bcddbec8',66,74,78,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-5'),
('83daaf4e-480d-4a31-9e2c-a6d450c429d3','c891230b-a98b-467c-9f5a-6b1fd89f1dde',85,70,70,0,'2025-06-14 12:48:25.371','2025-06-23 09:30:00.019','982578025-1-2'),
('83db53ec-c5b5-4a85-9c20-4b2240861694','546ad3d0-25c2-43dd-9443-e48b8e5b6530',65,95,80,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-55'),
('83def22d-43e0-45c5-b52e-63b47a1a8c3e','5e418100-d855-48c0-ac4b-19a956b8ef44',75,75,70,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.501','583643470-1-7'),
('83e24885-6228-4bb7-9746-d26cdb12f3dc','8ca62177-fd4f-4b97-8db9-1855dac0207f',275,275,27,0,'2025-07-19 07:52:32.811','2025-07-26 08:30:20.850','248549362-1-5'),
('83e3d563-aa95-48a2-967c-00d0df3378d1','cd005e98-fe25-409a-a9ff-536308cf8ab6',80,70,80,0,'2025-06-11 13:14:46.907','2025-06-17 16:02:05.831','910201328-2-3'),
('83e54a10-0051-4da3-88de-1f3a2f1ec65c','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-6'),
('83e6fadf-459e-4800-8563-83a7ccc24c1f','dcfb227c-7cb0-4907-b275-857ab6f52d86',97,197,7,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-3-1'),
('83eacfa5-e462-48a5-9a5f-b7efd5382572','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-12'),
('83ec9ae1-80f7-493e-b070-6bd8ef15e901','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.340',NULL,'22330381-1-173'),
('83edd1cc-4e5b-4da8-91a7-b9b9755be09d','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-14'),
('83ee5a66-dd77-4553-b442-ec35a01b3cf9','c2863bd2-f075-466a-9b3b-b9e7a14ba13c',56,90,80,0,'2025-10-20 07:18:14.790',NULL,'61340935-4-1'),
('83f2c997-1e4c-444f-9c8f-44168654e617','b38439c3-7c7e-4298-a4cc-7ebfb427f502',180,200,29,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-5-2'),
('83f66456-4f74-4a43-b1cf-1487bf260404','03ad506f-f86b-4dbc-952f-52b01e2467fa',198,31,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-34'),
('83fae605-9302-4044-8755-b9f91d082f80','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-96'),
('83fb176b-97e9-4d56-9cdf-ec4d87f839d4','4b7d844c-2267-4af1-a242-7783f63d638a',160,96,68,0,NULL,NULL,'644234384-1-4'),
('83fe728d-f282-4149-a748-37e3931c49a8','53025d92-f019-4f5d-9b69-68a3b09bb7bc',11,37,33,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.071','428696149-2-13'),
('83ff2541-22d1-4a29-9515-331e035da13f','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-14'),
('8400a242-63e9-4dce-9db5-f854d271643f','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-3'),
('840202f2-c621-46c4-87f4-a77b492cb849','6d2958d8-12ca-41bd-a12b-58082d5c955f',7,92,224,0,NULL,NULL,'614364554-3-6'),
('84042d65-7faa-4a56-babf-1c446b2d3e81','db333680-8c96-42d1-8a24-6c5ab1346079',230,70,100,0,'2024-11-12 16:16:13.047','2024-11-20 16:19:02.417','910891585-1-2'),
('84049507-fd42-4a7b-97d2-0e4f962cf1fc','4b7d844c-2267-4af1-a242-7783f63d638a',44,17,27,0,NULL,NULL,'644234384-1-5'),
('840587e6-f5fd-4d9a-9832-17cf58d14d3e','09cca124-aaa9-45ed-9274-c6c360b73342',30,15,23,0,NULL,NULL,'644303406-1-1'),
('8406017b-0ce3-41fe-9375-5c805b9d2f47','943d063f-08bd-4675-85e3-b9d53ebf2480',94,184,11,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-5'),
('840de222-29ed-48a5-a4c9-632719077b05','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-88'),
('840ee40a-451f-418e-9b35-940eb1d24c7b','33876c61-043c-41c0-be34-9359775c4e74',0,0,0,0,'2025-05-23 14:05:41.990','2025-06-04 19:42:28.558','61330729-1-1'),
('8412ee96-64a3-4348-abd6-d1539d77139b','6b6cf630-a999-4879-9eec-3e89e6246af7',57,76,102,0,'2025-10-02 11:20:44.115','2025-10-17 06:17:01.820','221364325-2-2'),
('8415223b-500f-43c2-9288-58591db4e176','715005c5-c41a-4f93-a5d3-17adaaa7406f',71,90,55,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-3-3'),
('8419fa81-4f54-4781-acdd-17e304e1c464','f9c33ca7-6673-4f4a-bb59-3ebf236a9842',57,83,110,0,NULL,NULL,'614364554-6-3'),
('841abc66-07ce-4356-8c2e-8356262845d6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.249','223823107-1-64'),
('841f0402-efb9-4694-9514-5a6457d78f77','ef5e4ede-5933-4544-8a89-60396c7bb969',0,0,0,0,NULL,NULL,'644104537-6-1'),
('842a1f97-fdf6-47a0-b723-b006d0a8336c','a769cd75-8095-4eeb-999c-d1a749589a77',238,62,10,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-3'),
('842a3f7c-3fa5-4cdf-a8b0-b5663647223c','5f35db51-2991-408b-82a3-7e6b54acabab',51,51,77,0,'2025-09-18 15:48:39.770','2025-10-02 06:11:36.370','221724224-2-2'),
('84309b63-d64f-45c9-a5d5-aab2b2e12d83','31efbfbc-2eef-474b-8cd0-b552d5c60b72',105,28,205,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-5'),
('84316854-45e8-481b-bc99-aaa21ba6e771','54f76545-b44c-4fcf-8097-cd39f86917de',0,0,0,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-6'),
('8433e970-874c-4871-9dd5-54465a59d1b8','5bc7e533-c5ec-44b9-ad7e-bc4dd7427202',0,0,0,0,'2025-08-14 10:05:28.522','2025-08-27 19:34:57.148','644680025-1-1'),
('84361834-f40e-4034-9ad6-decc53041cbf','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-59'),
('84380fd9-4924-45fb-b98e-971c730c302c','f0c2df6e-cc70-47df-9954-4a2f43a9ef6f',51,51,76,0,'2025-03-27 15:05:09.315','2025-04-08 15:34:58.197','2213416-3-2'),
('8441b3b2-422b-49a4-9248-a947a230423b','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-2'),
('84453b65-40cd-4952-a8ef-3572bb0bce48','22cdb203-e189-4693-adf6-5b2569edda9b',75,63,56,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-4'),
('84475abb-4766-4975-9b2a-bcbb26a549be','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-8'),
('844a3ab8-9463-4725-bb19-d07e61efc09a','6ae0233f-f2c2-44bf-9706-7274e4c923e9',31,31,31,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-5'),
('844b6313-2e82-43a1-b614-df46ac3bbf91','bbc6d966-9d42-48e9-83e4-13afb85a7c33',40,64,53,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-6'),
('844c657a-1061-4088-95f4-22443182b2f6','f0485a78-951c-4f89-bddf-b2003f0bf783',110,43,4,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-35'),
('844c99f2-a20b-47f8-a18e-85c39b762277','ff41de74-17ff-4bad-989d-6f378ab50997',51,51,77,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-2'),
('844e92c5-951f-44fe-b65f-dd6098438c1f','66f8d34c-0c41-46f5-98bb-500adbb6f636',79,5,203,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-10'),
('844fe6a5-e35e-4992-8fc0-6604e659c78d','8fffc38d-a174-4cb8-aacd-f14bb2d38bac',0,0,0,0,'2025-03-08 13:46:02.273','2025-03-19 12:36:08.812','412289507-1-1'),
('845a8e38-9314-45b3-8379-9bfe7903fd52','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-68'),
('845ae643-7663-4049-afdd-4347a913eb82','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-15'),
('845d6f9a-9efc-4dba-a132-f842c28a5fac','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-33'),
('845db309-d96e-487e-8531-36ecd90ecc70','1fffa8ea-befc-4b74-98ce-8981bef002ea',245,68,93,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-1'),
('84608589-053a-4e15-9ec4-6b4411ab2a97','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-29'),
('8460f131-90be-486d-af82-e76584cc292a','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-1'),
('8462e782-8952-461e-9521-b7ca9fdfe71e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-133'),
('84640e3e-5180-4dcf-8d2b-f9fee2124c37','0c6185c5-4d86-4de6-a4f2-365f095498a7',77,56,103,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-1-4'),
('84665d6f-776e-4df9-adf0-e5893bc69f7a','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-31'),
('8466ca1f-7052-49f2-9888-4fbfa0baeadd','69ea6974-d387-4458-bf21-972299a4ce67',100,68,197,0,'2025-09-11 06:34:16.553','2025-09-17 16:03:51.803','437529604-1-1'),
('84678d29-b8a2-48bc-80f2-7bc627d2d7ff','7a7bde44-ed92-480e-893f-02d0f840ef92',105,100,70,0,'2025-08-22 20:28:42.930','2025-09-03 06:11:37.803','338829299-1-4'),
('8467e199-8869-41fd-91bc-7e0c46e9dfca','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-8'),
('84692b2e-9e88-429b-a83b-d92d891558bb','416e7e24-9084-4530-b3a2-2808d9f33e37',100,122,65,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.165','371514006-2-5'),
('8469efeb-5f27-4f42-8aaa-6263f4a243f6','b500f3e3-149c-4c27-a97e-11ac0175c96b',60,43,22,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-21'),
('8470f26c-8dd1-4633-8b17-170b7dbb5cba','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-4'),
('8475ea0a-59fc-4927-9366-a23b74ad355c','4d181a42-10e5-495a-b92e-ceb57447ac53',51,51,76,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-1-2'),
('8475f44a-ad47-4865-b482-ae695129f1a9','33130430-eaf5-4f70-ad2d-3853f3838c0a',0,0,0,0,'2025-05-28 19:09:09.353','2025-06-05 12:35:16.516','745967323-1-1'),
('8477b528-eaf5-4d98-a9b6-7b64e12eac89','6d6387c1-6c6d-4152-b1f6-64a868887602',22,42,65,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-5-2'),
('84780b85-2070-4cf0-889a-604290dbf5c5','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-30'),
('84787185-1ca5-4101-8c23-a91f648705c5','796fef16-71d1-4946-b8ba-54f687adf598',50,54,4,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-16'),
('847ab0e4-9a0c-42a6-b44f-b4cff4e9ecdd','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-12'),
('847f33a0-9e0a-46e4-83bb-ef3684add9d4','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-28'),
('847f9fd0-de3a-4d1a-b834-c9c272475806','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:10.117','248135683-2-82'),
('848bbf84-4928-4fed-a438-10a5b06b2831','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-55'),
('849101c4-0439-485f-b64a-7afc42e194d8','4dae2c46-63f9-42b5-9288-01744ed81ee5',51,51,77,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-2'),
('8491e372-5f7d-4814-85a4-b412f508ed93','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-4'),
('8492fb0e-6da3-4f9f-b600-26b88d31d7fc','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.273','412565065-1-17'),
('8497a6e2-69d4-4c0b-a4d1-d0235b162614','282bbf45-2136-4253-bc67-64c0148d8397',95,85,70,0,'2024-12-18 09:31:14.767','2025-01-11 14:08:00.763','93566108-1-3'),
('849dafaa-116d-4f68-a679-9637f7e735d7','b5756566-2b94-49c1-8c6a-3886ce361461',50,54,6,0,'2025-10-22 13:06:56.699',NULL,'910152598-1-2'),
('849ea644-10ce-4a5f-9869-6ff721a23437','5aac8c34-51ea-4438-b73e-7d54bf02d518',64,56,44,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-16'),
('849eabe2-c152-498f-a257-1cb4b9b78bd5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-240'),
('84a17196-e9f7-432e-bbec-32409b68b899','0ac2a48d-48c9-41d2-91a2-b574a94542b0',61,211,6,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-4'),
('84a19e6d-dc47-489c-bfc2-c120b1c51c4f','d810a4fe-529a-401c-897d-31b505128e43',0,0,0,0,'2024-11-15 17:06:28.456','2024-11-27 15:33:01.817','478355116-1-2'),
('84a3f715-420e-4ceb-8fc7-33e78f3478d2','7ed8f2b5-2d3c-4083-a93d-cddc92625cf3',235,75,92,0,'2024-09-28 16:26:51.725','2024-10-11 11:28:25.410','449823745-1-2'),
('84a42840-2a5d-4871-a2ad-031295e20c64','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',99,12,175,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-5'),
('84a47c00-9daf-439e-b649-47d1938335dd','ba600219-bd53-41ab-9277-b80560376633',90,104,79,0,NULL,NULL,'598944852-5-3'),
('84a5e63f-0718-40f1-b161-f485e7925372','d5c4de73-6296-47b5-9493-d4e95eb86ce9',95,188,6,0,'2025-07-02 12:43:25.536','2025-07-23 06:18:04.216','644330933-3-2'),
('84a9ce39-c690-4115-be3b-a365d64072e2','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-8'),
('84ad1b3d-29ca-4abd-9b43-83c51b5c98c5','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-11'),
('84ae06bd-8d5b-4fc9-8973-072516806260','457dff53-59ea-40e0-bd36-d823bc862d01',75,70,80,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-1-2'),
('84b08526-adc5-46df-83ad-1181fcf06e07','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',240,70,90,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.197','982555492-1-4'),
('84b19a73-3b13-4d4d-9dba-28788271898e','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-17'),
('84b2111f-b6b4-450f-9b92-0dbf133fdc12','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-14'),
('84b65a06-05c2-4d91-8838-7b2df30cb800','586d8693-ffd8-45d6-9ff5-c2329cf59822',84,100,55,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-1-3'),
('84b6eb6f-4922-4f91-8cd0-7abe4d42d50a','b1de0f4b-af17-44ae-b3be-bda2ccef868e',117,53,210,0,'2025-10-25 08:59:14.312',NULL,'371120237-1-1'),
('84b84ed0-e059-49d7-8736-542c01a7287c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-139'),
('84bc2913-e272-492a-9ee0-94957f8c8b0f','1d063093-76ef-408d-ac4e-9b14c6ea3828',120,120,65,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-1-5'),
('84bf6cd9-e9c9-4a11-9135-9139b66651dc','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-8'),
('84bff83e-f453-460d-94c2-427431c3ced9','159c73ed-083b-4d67-98ca-6adcfc554962',40,16,207,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-10'),
('84c0fd49-e77a-45ba-88d8-b2639012b83f','e09a3626-bc71-4669-9faf-3f66c10fab18',79,70,100,0,NULL,NULL,'644390236-3-2'),
('84c236a6-0448-4158-aef4-d02c24ef8e08','0c0ef815-3671-40f7-abee-a0ed0e2bc413',45,45,43,0,'2025-09-16 16:29:21.951','2025-10-03 09:15:52.721','478862837-1-1'),
('84c2cb83-942f-4e9a-b592-8417c50b5668','9f5345e8-c934-4c59-9caa-7e2a4551c5c6',52,97,52,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-3-1'),
('84c37cb9-3687-4f26-b6dd-0d88f1a70ad8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-79'),
('84cd0f28-a503-4a29-bffd-9b6d58fee35d','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',70,12,182,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.361','478678748-1-81'),
('84d46169-a568-4a2e-ac4f-f3b46464af4c','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.695','2024-12-24 12:30:47.746','735553146-2-12'),
('84d8bef3-a2d3-4856-97d8-b0f7ff14768a','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-2'),
('84d978e0-baf5-47bd-8c46-cf80ca4af2b2','778aa4d8-dcfd-43b4-bdca-be11229e204e',196,96,6,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-2-3'),
('84ddb4b2-ad3a-4408-a705-cfa220bc3424','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-75'),
('84e01f01-ea46-4f46-b84e-db3371b60fd3','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-30'),
('84e6dd36-1d87-49ba-8f99-275c071a427c','7544d141-ad78-4111-8cf3-83517131e050',40,14,210,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.272','896155892-2-3'),
('84e756f9-8db5-4eaf-a461-0147fae509b5','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-59'),
('84ea59d1-9135-47f1-b15b-258408bbb6cf','3fbef21f-32ef-4868-925f-a3a2c46dae90',0,0,0,0,'2025-03-27 15:06:12.625','2025-04-05 20:38:56.957','745717474-1-4'),
('84eafb26-fdea-465c-9a36-9c92c37b791c','86de9321-5059-496b-85e7-43b068bba29c',86,85,8,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-2-1'),
('84eb7fd9-31ba-48a6-af87-b398e3940322','affb2ea6-71a0-4d35-9267-d30788f4e193',51,51,76,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-3-1'),
('84ebbbbd-c24b-4b4b-b9d3-dfe3ac2e4b29','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,11,85,0,NULL,NULL,'478893710-2-2'),
('84ec2380-8058-4782-829e-93e9f52c97a7','9b948fc9-34d4-413b-873a-889d552a3e54',57,63,84,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-2'),
('84ef5fe9-d341-4da2-9024-07de0a459d25','08bd7f4d-e194-4aac-a4e4-084be05bac9f',76,56,102,0,'2025-10-22 13:06:41.295',NULL,'598719647-1-1'),
('84f34d4c-fe50-442c-afc0-49e618038cf6','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-54'),
('84f3b0fd-720e-4ef6-ac1a-870f82b0a259','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-19'),
('84f466f7-f8d5-4055-9bb6-8331d84bf0d4','2dde6fa9-86f5-4072-acf6-d126395be890',92,228,55,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-1'),
('84f7b49b-60fb-41af-819f-867525e7d111','75a1a1fd-c682-41a7-ae5e-306627043bc3',56,66,102,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-2-3'),
('84f7db98-d28f-4a0d-b668-916c3a41a4e8','b44449c8-5efa-4085-bd2d-0a3594587af9',64,180,4,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-15'),
('84f91743-adb9-459f-a01d-fb07a3d7f5f7','e86f2f3d-8f0b-4894-8c39-9063af830231',57,92,19,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-11'),
('84f9483c-055a-4ad8-bae2-7ed60d7a2805','e8b1acb9-b5a9-427d-bfb7-a350a1724a71',230,69,95,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-5-2'),
('84faf604-57ea-4720-bc30-87ee9e67a412','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:52.316','248284003-1-5'),
('84fb0a87-40f0-4640-96c5-e7d5b2fe8e3a','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-8'),
('84fc8538-1773-4666-8f18-21cd2442490c','e7812ff6-8432-435d-ad8c-50f9beb9f193',240,95,70,0,NULL,NULL,'248501679-1-2'),
('84fee205-839b-4dfb-b7c0-a13a3afa16eb','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-58'),
('84ffdf26-288a-4796-8546-b19f43ceb72f','a1b5bcba-4550-4a5b-91d4-912ad7be4749',0,0,0,0,'2024-08-07 15:02:55.747','2024-08-15 13:56:04.655','745799900-1-1'),
('85044056-6d9d-4580-b0e5-c632ac0728cd','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-84'),
('8504c067-ebba-4001-b219-535fd204bbc2','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-100'),
('8507f793-4e93-4a9a-8722-c2322a76c408','a3bf1b4b-19f0-4547-abec-82eb48474c5f',94,10,191,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-3-1'),
('850a457d-3de1-4a42-bbde-6aa73f062ee3','b2c78cf5-c58c-4553-bd14-49e83916894c',75,136,8,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-11'),
('850bc05b-fe42-4cd1-80af-a6899831f90e','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-9'),
('850c5151-c56c-475c-b59b-d4118ebc5e1b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-56'),
('8515b2db-d796-41fb-bd03-572604f045ba','fed28e47-8397-440d-8404-a285a8bdefbd',228,145,7,0,NULL,NULL,'011399882-6-1'),
('8515d199-fd4d-44fc-bab0-6fcac0ba38ce','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-90'),
('85178d1a-c768-42ab-8f5e-cbe46dd4709d','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-9'),
('85187fe1-5636-4b64-8f6b-92cbfdf5c57c','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-4'),
('851c3218-7744-413c-b98e-d648dc4b576e','2ab41284-325e-4735-a02e-0af4784fee90',40,26,17,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-13'),
('851cb4c4-df44-49d6-bc03-83900be902e0','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-6'),
('851da8ca-4bb9-4a1e-ba44-cd64167cf423','3987bcda-6531-4738-8815-187fd84bf71c',115,35,18,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-13'),
('8524bf77-4c88-4dfb-84d9-f2eda86f164e','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-13'),
('852570ab-48df-49d6-b142-83304eb35aea','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.103','478593603-1-10'),
('85294026-3530-413d-9aa4-e18905119453','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-14'),
('85296027-16bc-44e3-95a1-1fa7e6d003c7','30d375fe-963d-4059-bed3-7e6e37ebd635',51,51,77,0,'2025-07-12 09:20:09.548','2025-07-26 10:05:02.451','221598709-1-1'),
('852f6de4-0fb6-4087-b0c9-a02764e1e8b2','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-22'),
('8530e620-37f4-487b-bbf1-c9dd573784ff','e9887adc-3703-4570-a6d2-5ffbf9337c59',240,100,8,0,'2025-02-03 18:19:56.067','2025-02-11 09:34:09.386','614339204-3-1'),
('85331126-97d1-4ceb-85d2-1d1ac2896035','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-125'),
('853390ff-5d4d-4711-899a-6c710778ca95','2022ec7e-3b20-4c57-99bb-9fd74367008e',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-1-2'),
('8537c150-170e-4e80-aa1d-f9e5c75f0465','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-24'),
('85381c38-011e-4307-9f83-a22092170ee8','89054cd3-6702-45df-aaed-cce37ad10d39',80,99,99,0,'2025-04-30 14:29:12.351','2025-05-13 09:05:13.396','531724547-1-5'),
('8538f80a-0aa3-4353-beee-d61188cde144','7ca3b25f-8c08-4c50-b102-4ea800c2c2fb',42,43,75,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-1-2'),
('853960f3-d019-4dbd-9b10-bb8a2f1ae53d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:53.877','248284003-1-68'),
('85397b53-efa6-4bb5-92f3-e6071641c663','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-2'),
('853ad023-cea6-45ea-989b-4ac0167dfbf6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-98'),
('853b0444-2406-4372-9444-6d6909d3aa9b','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.556','478971881-1-5'),
('8542f469-7731-4d72-adb1-1fc7b44d4d23','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-6'),
('85441e35-7888-474c-b086-884f0cb1dbc8','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-36'),
('8548b036-2f5e-4241-bbd1-035954eebd67','bf2fbd97-6d0f-4724-b25e-47e019854e49',59,213,6,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-12'),
('8548e763-d49a-4fed-9ce8-397f7627c55d','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',92,90,41,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-5'),
('854f7e41-7b88-4511-a625-24e5a8634119','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-97'),
('85528042-2420-4f21-a42f-3e7c86eeafad','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-86'),
('8559f750-08a7-4614-ba6b-1c2b137329e8','5c1630ab-9f31-4753-99de-1615c793dd9e',9,9,157,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-4-5'),
('855b62e8-5354-4af7-acdd-1ef7673e40ae','a8240df2-bc04-464c-afdc-dd0bdbe1643d',93,3,209,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-7'),
('855e5f01-c05a-4551-8462-4707a507d362','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-49'),
('855fe169-ce40-4859-aab9-3ce82dc86202','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-67'),
('8562ea98-22af-42af-abc7-7fd5f93a8a54','86b60aaa-bb99-46c0-a4af-dcec737058c0',100,100,70,0,'2025-03-06 10:32:08.547','2025-03-14 11:07:09.096','613374971-1-3'),
('8566fad9-7b12-47af-9cbe-7d2faaa0906d','6a0e9903-d145-4c98-a4ea-6bbc6d4c522b',0,0,0,0,'2024-05-08 18:43:06.853','2024-05-24 07:08:05.841','478647079-1-1'),
('85697dfe-c489-4e21-9a2f-2a8effa7a1a9','2c356607-02da-4a51-85d3-eda95e852225',16,16,158,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-2-4'),
('8569e179-9c3a-4253-a7a8-24da5340f8ea','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',58,52,228,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-4'),
('856ade3d-aab2-4ea2-8cfe-3a15a845e586','478f6b54-88d9-46c0-9d8c-85f1f5bdfca6',75,15,17,0,'2024-11-15 17:06:30.475','2024-11-27 15:32:54.358','982972858-1-1'),
('856cdfe6-1356-4f96-9c94-e383a0e5bf2c','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,46,6,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-38'),
('856df765-9627-4598-b9a3-81c3a9547990','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-1'),
('856e7191-7bbd-427b-a4bd-0445d769515f','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-5'),
('856e8210-91fc-4d14-9a7d-434f3f2b46d9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.249','223823107-1-48'),
('856fc6ae-0961-43ab-a8ba-e8abb80f4be3','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,75,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-1'),
('8570186f-e7c8-49f9-aedb-26185c82012b','8e9264a7-ea7b-413f-be45-63b66a8c7b11',33,27,25,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-3'),
('85730d11-bd5c-49e8-8669-155c242473a2','4759096d-1c45-449b-bc2a-51e974822898',75,57,103,0,'2025-02-23 12:38:54.317','2025-03-09 12:10:11.419','221924148-1-1'),
('85747f43-2f4a-4841-b466-656e61a7989c','ca2466d1-9a83-4f57-8f76-f5ddce302e04',241,236,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-17'),
('857a1ec4-ed4b-4ff0-85aa-023181e48245','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-176'),
('857e5ac6-e71b-48cd-94db-de2d19c1558c','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.387','2025-10-17 06:12:49.749','644606140-3-3'),
('8580827e-7f72-42b6-9157-bba7cf6a2ea1','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-18'),
('8583aea9-1365-4991-a965-53be4ef37d66','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-154'),
('858532f8-cb8b-4a75-b031-f737c751dc2b','32b11ede-8890-497a-89a2-1672b3f73306',160,75,15,0,'2024-03-14 13:50:34.884','2024-03-22 07:37:35.143','982451991-1-2'),
('8586905a-37e3-4889-ab81-e4a45d0fbfd9','fdf057bd-458c-4a9d-a013-560eb90dde7f',51,51,63,0,'2025-09-16 16:29:13.364','2025-10-04 13:36:32.358','437712381-3-2'),
('8588fb5a-046c-4983-9426-fa3be1dccbc4','08af242e-dc62-496d-980d-0f589dcdea60',55,40,62,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-11'),
('858901cd-fa73-442e-955d-746ebc73e5d6','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-22'),
('858a3e91-e0e8-4d17-b1aa-ed54e7b3a5c8','49c326ab-5b3b-49e7-a781-28760709b5be',41,41,25,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-9'),
('858bea19-e35b-412d-9058-675dc9f02a60','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',15,5,178,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-2-9'),
('858d331a-572b-4469-93ad-83c2eece91e0','0ac2a48d-48c9-41d2-91a2-b574a94542b0',58,214,4,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-6'),
('85900ef1-d246-474a-bc42-3a3e0808df84','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-1'),
('859021c2-ef37-49cc-a0ed-7372fe7fd95e','49b0262b-aeb4-40b0-bdcc-b5461a64c972',88,53,8,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-6'),
('8598529b-78fb-4c88-a11d-18b4a47afaf0','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-5'),
('859dba81-058f-4f42-b019-9cedc2fb2fe8','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-2'),
('85a24607-3efe-4f42-9ee8-d8bc2082af7f','79a46d5c-c273-440d-b80c-397dceb69bd7',180,200,22,0,NULL,NULL,'01169597-1-1'),
('85a7d883-b5eb-45ae-b3f3-4875edfdc5d9','5d074556-ce95-4ffc-8684-279dc37597f0',112,56,82,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-7'),
('85aa3b3a-85a1-42d5-95cc-9ea9ce637153','0602416a-017d-4286-844a-6bc37caa79a8',83,57,101,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-2'),
('85aadacf-64b4-4c09-b25d-0ce3100cdfdb','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-30'),
('85ad8c56-0625-4e83-b017-8634a27f64e1','c1d25f90-d493-406d-a430-9b65b4f44c5e',38,38,42,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-9'),
('85aefc66-d007-46ec-a386-60a1ee0273f1','bc27f6fb-29e7-4868-a1a7-34e9df8d2c77',0,0,0,0,'2025-07-02 12:43:22.406','2025-07-23 06:18:24.906','41295798-1-4'),
('85b2cd7a-9619-4c8d-a16b-c365d5eb2d4e','e8302a51-2bb4-4124-bff3-50276f045168',32,57,49,0,NULL,NULL,'127991361-3-6'),
('85b4b8d1-fd57-48f8-8848-0eb47f48fd2f','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-50'),
('85b9e523-6ddc-462c-846d-95f709b53700','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-42'),
('85bbc0bc-9b28-492e-9254-55457b659abe','5863ff3a-c04d-4de1-9dee-bc92ece85d88',73,100,54,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-2-2'),
('85bbe352-d74b-4d64-9009-a663758d70c3','b8721202-54f1-436d-bc84-f671bfc36fe4',250,100,82,0,'2024-09-19 18:27:53.236','2024-09-24 16:01:08.792','517827584-1-3'),
('85bd23f8-83db-4ed3-9fbd-e786b8594cf3','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',92,27,202,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-6'),
('85bd57bd-b3dc-4d2e-9ab6-9e5861da1192','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-7'),
('85bd71a7-0a67-45bd-8565-ba902d8306f0','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-22'),
('85bf4143-e069-4549-9c01-16829bda1f06','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,75,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-7'),
('85c05d32-5706-4946-9d70-8632bae3f43c','140facd2-f55a-4a12-95ae-07ab47a00128',61,161,5,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-7'),
('85c16b2c-a2b8-41f8-8963-97201d5deba0','66f8d34c-0c41-46f5-98bb-500adbb6f636',60,8,213,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-11'),
('85c1f37f-9a00-4ddd-9d13-a803ce362ebe','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-5'),
('85c64108-4488-492b-b71a-2f7eda6913fb','065a4131-ff13-4bb8-8bf0-5263586379b6',0,0,0,0,'2025-05-09 18:44:19.477','2025-05-19 20:26:32.652','371785400-1-1'),
('85cbd6ab-a273-4b8c-80e0-9c9b814e087d','2652ccec-4069-4b11-b5b6-cbdf95122b6d',40,40,45,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-2-2'),
('85ccc084-ae47-4ded-80b0-1b4ea840b764','e6b15fcf-d8d2-44ee-b679-b6020a3b2f11',206,100,80,0,'2025-09-01 11:06:18.136','2025-09-10 16:32:52.073','437840419-1-1'),
('85ceb70b-65aa-4132-aacb-8ed8a4f30f38','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',180,15,5,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.900','428538007-1-21'),
('85d2bba2-1e57-4e18-a625-eb9fb39648a7','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-36'),
('85dae919-b7bd-4b99-9e55-0fbe63493416','a5626ae2-9a5a-4401-9095-a368c22814f1',75,12,25,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-17'),
('85db0de2-716c-48c4-9449-a61a016380e3','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-178'),
('85dd7b81-e985-437e-a63d-ecd37d569dc3','4b7d844c-2267-4af1-a242-7783f63d638a',115,93,67,0,NULL,NULL,'644234384-1-1'),
('85de6d15-8d48-4626-8a71-7a0e56feb607','1c55b4e5-54ce-4848-a88a-545a632bcd68',70,70,70,0,'2024-08-21 14:53:10.288','2024-09-02 08:33:34.976','428225143-1-2'),
('85df4d82-1abe-470a-8545-b60bb979ce16','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',80,80,80,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-23'),
('85e235c4-df28-49dc-ba80-85711a1418d4','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',112,57,83,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-7'),
('85e4c0cd-d86f-4096-bd3c-0603e4163475','1575d82c-3b40-4cd5-9eff-caa45101c1d2',70,99,100,0,NULL,NULL,'3718332-1-1'),
('85e54d34-bfc2-48f5-93d6-b26956e6088b','64fb355c-cbbb-4864-b40c-c3412c86cb51',0,0,0,0,'2025-09-01 11:06:03.172','2025-09-09 12:50:01.975','644625326-1-1'),
('85ebff35-869b-4f7e-9752-b6441195efa8','354cc431-6494-4803-abf9-6c2c326b7a22',235,102,70,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-1-1'),
('85ec4b25-9eaf-4390-95fa-f719ca53fc78','f4fea4c5-b879-4cb4-a43b-6716692a56f0',77,20,21,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-6'),
('85eda2e3-adb2-475f-bdb0-9e2a4a6f1ea2','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.251','2024-05-21 18:45:12.078','478681830-1-5'),
('85edf3ec-2519-4da8-8a01-8ce12ee49486','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-6'),
('85ef14d0-65ef-4420-a881-f2f587cc35e0','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',95,65,197,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-9'),
('85efcd82-abab-466b-b3cd-4663dcd99f12','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-217'),
('85f1e76e-0578-4824-a691-cfbfde4bf48b','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-5'),
('85f426b7-355e-413b-b98e-c0469aeb9acd','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.697','449921347-1-4'),
('85f5b0ce-5870-400a-a698-630ddee12c48','100d485d-7464-43dd-8090-f3ba1137ae7f',0,0,0,0,'2025-05-24 17:55:32.422','2025-06-03 09:41:23.291','437481013-1-1'),
('85fca829-a94c-4f90-a4e5-117bd520db41','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:53.488','248284003-1-176'),
('85fcbca4-8d26-42d2-a76e-495e13874333','b586b800-5234-4efe-8034-338d0734dfab',0,0,0,0,'2025-01-20 11:21:16.733','2025-01-31 12:16:25.732','478250269-1-4'),
('85fd29eb-5b95-4791-95e8-a16b98eb6a94','1091def4-1b0b-468c-88e1-7bec1e66dc81',102,75,122,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-1-5'),
('85fd960a-a260-4a00-ac16-5c8dee4e83d2','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.249','223823107-1-72'),
('85fed776-c6a3-4cb4-ba82-d541a6d1fd06','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-39'),
('8600bc22-bbcb-474a-b7f0-2cf851fafff5','dd1cd3de-f760-4608-b546-c1d5ff28b9df',83,84,4,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-2-2'),
('8603bfcd-45d7-45da-b8db-e8711dcf5d29','e163d910-3bea-4675-a310-ead7083f02b8',23,12,16,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-7'),
('8604adf3-5127-4ebd-aaf3-cc2554c17190','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-25'),
('8604bd22-7149-469f-b4f6-791e8be41b94','bc611bdb-d2fb-42fb-b735-3524b3d6a4fd',0,0,0,0,'2024-05-29 10:12:23.457','2024-06-11 14:04:39.030','412903351-1-5'),
('860616b8-c82f-4050-8848-465b2f0b0df7','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-71'),
('860783ba-df02-4f6e-b7d7-8dc567c1c95a','5f855801-dd4e-4ef8-9016-91337a075097',9,98,90,0,NULL,NULL,'614364554-2-1'),
('8608f22d-c185-430a-8445-c0ee51753331','220fed8f-f96e-4af5-867b-ac05d11bda6f',44,72,13,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-19'),
('860957d1-5cf1-4f00-8e5e-7c2a5eb3b78b','6cee1429-9935-4eae-be32-dc630b6d70e8',185,112,14,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.055','126824871-1-23'),
('860a6d80-bc1b-4def-b253-8a7833a0b703','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-40'),
('860da7a8-746a-4cd1-86e1-f888f734f5a6','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',5,60,210,0,NULL,NULL,'478739679-3-6'),
('860e0358-d8ad-43e4-902b-dddfa225456c','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-28'),
('8611065c-6877-48be-aef0-4a3ccc72acbb','56f86587-7355-4e49-9eb5-727edc1be570',40,30,30,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-10'),
('86127fde-74fe-402e-ba4b-e932a350d681','3da17157-28be-4bae-8dcc-745d0e93e591',160,200,3,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-38'),
('861335c6-7ad6-4c34-9d6c-c53fe3162bbe','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.866','2024-09-15 23:12:06.201','223867751-1-51'),
('8613f691-b5cd-45c3-89b3-583395851545','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-25'),
('86140c4c-1d2e-4577-bd34-04b5f7fa1aac','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',170,50,2,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-2'),
('86149854-aa1e-44e8-94f1-868a028806d6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-217'),
('861eaef6-6d27-4f52-88a2-bc69463cf6a8','b4239ab1-b15f-42e7-a23b-ebae1af13fce',0,0,0,0,'2025-05-16 16:33:22.630','2025-05-23 14:07:17.962','745338988-1-1'),
('861fd75f-a98c-4333-ab8d-e46aaf9dc7ab','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-246'),
('86217de3-6b9c-403d-98fe-6fbc3589e00c','fe32e52e-e41e-4849-a30d-cfd7abd60e35',0,0,0,0,'2025-01-20 11:21:31.902','2025-01-28 20:44:54.688','231717770-1-2'),
('86220bf5-af70-4a3f-9c51-2cc904106736','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-5'),
('86225f99-4ade-4639-a058-1e42302503cb','625aff0c-815c-4c92-ac3f-610621b3fe4f',0,0,0,0,'2025-02-09 09:51:19.039','2025-02-19 18:37:44.613','478118994-1-2'),
('8622cd23-c224-4595-b998-8bf53fe9319d','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-10'),
('8622f0a1-dbcf-4cae-87f4-6390cc04df37','37a97bfc-766a-4865-bc4c-1c02e1ff86e2',97,105,70,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.036','531445058-2-4'),
('862367f2-5d2c-4e66-be75-f66bc928f635','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',67,15,7,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-32'),
('86255231-fa40-42d8-833b-1a2ca5e94132','76c6ae05-c99a-474b-bc3b-0972208c5f48',85,57,110,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-3-2'),
('862655a8-d939-4ba3-b400-b5dc1ae002a7','c29e76a4-89ba-4143-8fad-01a2910620ee',210,15,15,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-21'),
('8627de13-1be7-4fcc-8219-bc8008c4ea71','19c6a32c-4384-451a-aaa5-dfc264ab827b',45,19,79,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-13'),
('86297a4e-6ca8-4d64-8971-1348dc5ecd68','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.448','2025-07-01 09:00:53.543','248630618-1-9'),
('862a1bcf-e525-409d-93dd-6a4222a673b4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-10'),
('862f83ec-dec7-4480-9336-33957320042e','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-74'),
('8630961a-79de-40f1-be70-83b9ca9f0b10','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-16'),
('8633a107-e213-4681-884a-45adf173f6c8','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-2'),
('86355b20-3081-4cc7-8974-c1cc75980fcc','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.870','2025-05-01 09:51:59.249','223823107-1-178'),
('8636d896-3897-4891-ab1b-b281cdeaac9f','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',75,75,85,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-8'),
('8637d2f7-6adc-4d04-a596-d7f35404f947','a21a956a-a1fa-49f8-b944-749b652df74d',0,0,0,0,'2025-03-24 16:02:11.404','2025-04-01 09:23:29.356','745837821-1-2'),
('863da7a5-e46b-4f01-a320-decc98a396d3','baace365-1a71-416b-8d76-9200d2fa2407',35,35,220,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.170','644832811-5-2'),
('86415043-98fa-4d02-ad18-c47acc73380f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-31'),
('8643d3aa-0efe-464f-9faf-d834e568df0d','220fed8f-f96e-4af5-867b-ac05d11bda6f',45,71,13,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-18'),
('8643f078-7cc9-4c32-ba65-54e7acf4c9ed','7908530c-18a1-4a83-b5c2-fdea91117bbe',45,58,74,0,'2024-03-31 17:55:03.269','2024-04-15 11:37:34.889','449178440-1-8'),
('8644b061-1354-4856-90bd-e1ea00ff5478','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-7'),
('8646f6d9-53fd-4411-a617-2a0a3588d6fb','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-2'),
('8649c52b-2024-4f5a-a7b9-fc9e577ac4a5','20df1553-f4f2-4fe1-971d-395f2623d3e2',53,60,96,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-1-2'),
('864a40ef-3c5a-4afc-9f38-d77e411a42ef','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-85'),
('864a622f-dc5c-4fe2-9e3c-82b636b5c85c','afd7f71c-d1fc-484f-b72d-f986503df4f7',92,116,63,0,NULL,NULL,'703266692-1-15'),
('865105ba-48c2-43eb-899f-179e493a8f63','c900d790-eeff-48b9-9f2b-48972c98ac32',70,22,49,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-11'),
('86572c2b-1c3a-4c41-88a8-e09e27a541b7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-239'),
('865b11ed-ac99-4cda-a590-b61ace407e81','b9039b9b-ecf6-4419-a382-893676712c93',40,30,233,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-2'),
('865ca111-690a-4145-b410-cd817c1fe853','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-15'),
('865caed6-f3ca-4b98-a649-755d81fd3a32','a1fafb1c-77e1-426b-92b6-a2d3797b09a5',123,70,9,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-3-1'),
('865f623c-c179-4791-924e-6f450b2037f4','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-68'),
('866081dd-af93-4090-9b38-2987e1c0b58b','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-13'),
('8661ab9b-df91-4049-af77-c0aaf23e1fe6','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-15'),
('86627e1d-7a6b-4c62-8010-15bf71a5b410','afdf27e1-0689-4491-868f-ab5e614758ec',66,67,87,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-3'),
('8664950f-1676-49a2-ae6f-f029f2855cce','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-11'),
('86669eda-54b0-4d57-b394-9dac5426214c','ed097511-c426-4ff2-b940-1f98b2a1f4f6',53,56,15,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-5'),
('8668caa3-f23a-41ed-baea-83ecd8dbc328','135c284f-8acf-4424-8c84-150435648d16',57,112,81,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-7'),
('866f639c-1cc2-4885-a02b-a646da7a3f62','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-20'),
('8670a2c9-0cac-4646-ad88-e24ebf32359b','09539d44-2328-4f3e-aead-ca2c08bff4dc',240,95,85,0,'2025-08-27 19:40:11.075','2025-09-04 21:05:05.202','910561299-1-1'),
('86738b47-e5c2-4f5e-b739-0dd59460e10c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-124'),
('86764a90-bded-49a5-a7d2-62180a1ac43d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-36'),
('867b47e0-147b-476f-9b4d-a0538573cd7d','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-35'),
('867c6320-e685-4ada-a1e7-3bc032603fa1','3da17157-28be-4bae-8dcc-745d0e93e591',109,130,6,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-9'),
('867cf5d5-cf92-4145-b0e1-c85615999910','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:49:59.475','248135683-1-126'),
('867da671-da11-4dc2-8288-6a948ebba662','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-59'),
('867f9387-4a63-498b-b119-f1281db5356e','e2f7afec-2053-4563-b82e-d7330ed835e8',104,105,66,0,'2025-08-21 07:15:05.662','2025-09-03 05:42:42.939','437835103-1-3'),
('867fc964-3897-4a06-82dd-a2ed74523400','46d1512a-2bfb-476d-a224-9390f3e194f2',201,91,30,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-16'),
('8680732f-ef7c-44af-9311-ceb1237af56d','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-63'),
('868461b3-4b7e-47bc-9b90-231ba2b06358','8d05832d-fc40-44ef-a024-a5cac327a362',80,100,230,0,'2025-09-16 16:29:04.383','2025-10-04 13:57:40.404','478906000-3-1'),
('868642a4-358a-4913-a07d-012eca255670','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-23'),
('8687fe56-671a-428e-af08-2f3749a2148f','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.551','126200859-1-36'),
('86894665-a05a-478f-9760-5a3ce395519c','4da5ac02-2da4-493f-ad0f-88044a96633f',96,235,60,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-2'),
('868b044a-0e3b-42c6-98c6-ea3fab9cd1eb','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-24'),
('868cba0f-ef58-4b23-92cd-038de2d918fb','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-6'),
('86912246-a951-47ec-a7ac-5d6171a5dfd0','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-2'),
('86912ef9-76f0-4179-aa6c-99e3f2c753da','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-183'),
('86923680-3fb6-4b9c-99b1-a1565b12bce3','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-86'),
('8694697c-f6a6-4f4b-b8ef-a5658613cbcc','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-12'),
('869547ec-8297-4f95-a487-b0234d2b8108','cf5e2f56-ede6-45c4-acb8-88a0bffb5f73',202,202,26,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.939','675139037-4-2'),
('86982e71-f883-4a78-8254-58eca221f203','5e6bc612-6c7a-4f9c-8252-00151bafb04f',29,95,202,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-4'),
('869e6606-de6d-428c-abe4-0d00023105ae','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-1'),
('869e7646-efd8-4a44-98bd-0ec035640978','9f080024-096b-45e3-9b43-059581313d8f',60,60,90,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-2-3'),
('86a17d75-ce2d-4874-a0f4-3829727d6d83','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-20'),
('86a3c99b-4014-4401-a7ce-28889f34879d','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-5'),
('86a4abcc-7eb1-4e48-9357-3ade27c1c552','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-1-1'),
('86a61767-21c7-4063-9123-30e1920c67ef','63e03482-af1b-4b30-9c93-56be1e53f6c5',85,70,83,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-3-2'),
('86a7bb12-1421-499b-89fb-89efe5ac1e36','cc5b1253-5911-4a8d-a337-c4002b9a8b25',95,156,13,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-3-2'),
('86a9fa7c-c4e9-4461-9038-bedd49796fa6','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.103','478593603-1-5'),
('86b0f7c2-2099-425d-9131-9ae7965e0922','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-20'),
('86b2c800-5ae2-4a7d-9fb1-67b025cad251','0ca7b5c8-7608-49bc-9057-d56d835fbea5',62,10,20,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-1'),
('86b4eb19-6556-4be1-921b-ef6098c0242b','91d10b70-a38a-4473-a688-7e33b18968e3',98,170,60,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-2-1'),
('86b5fe08-4066-4169-8306-2c64d1da7b78','2bd0a09e-a059-491a-8464-25f9d0457185',53,99,31,0,NULL,NULL,'127991361-1-5'),
('86b64684-8cd7-47af-9215-57b5bc06c418','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',85,53,50,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-7'),
('86b721c4-0b0b-47c1-84ce-51977b4c4831','682e2f71-df2f-412f-a256-ded0d3475e02',57,82,105,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-1-1'),
('86b9e2da-545e-4245-999e-daf150225a41','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-43'),
('86ba075d-1686-4d53-b458-533bcdf90f83','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-6'),
('86bac27a-1e83-40e5-919c-66ef2ffeb130','b119aac9-7601-45de-85ad-d1df9db63204',70,92,198,0,'2025-05-23 14:05:40.727','2025-06-04 19:42:36.248','371626943-1-2'),
('86be6a10-06c9-4248-a35f-965994f3f203','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-2'),
('86c358b6-b70b-4933-a6c7-e1d6b1cf4f89','bd176b24-f129-40d4-8c33-6b35eded0fad',208,56,6,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-11'),
('86c3b4da-fbee-49c8-bcb2-c919df7b0e2e','a2d857b1-bcf6-46ee-9e87-dabcdac62719',98,67,95,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-3'),
('86c3cb6e-ae54-414f-a15a-b455ff01b727','4e2fd6bf-5f94-4ac0-9445-fed3d566f08f',92,200,7,0,'2025-10-22 13:06:54.380',NULL,'613568438-1-2'),
('86c4d312-350c-4db2-afac-ffcd7aaec5e1','85db759a-5e10-49be-92ff-a951a588c1a1',93,8,183,0,'2024-12-23 12:00:07.905','2025-01-09 16:52:13.614','126908301-1-3'),
('86c4e4c0-d63a-4d41-964d-ac944a2d551a','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',160,50,69,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-15'),
('86c59c28-5264-43de-9f81-77092debc20d','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-3'),
('86c7afeb-31f3-4eb2-9560-32541f77cda5','edbe04eb-c7b4-48d9-a408-e4287108a690',0,0,0,0,'2025-03-08 13:46:17.759','2025-03-17 14:54:13.276','745983500-1-3'),
('86c83ae0-5e3b-487e-b4ed-422c9a9879b1','32a0f08e-82b4-4d3f-919e-5021b7c38cf0',230,100,67,0,'2024-03-23 08:36:15.949','2024-04-02 16:11:13.712','449768376-1-5'),
('86ce6e00-89e1-4ea8-a8fd-72923c6362b8','9866a947-9974-4053-8415-4518842488fe',70,98,53,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-23'),
('86cf49e6-bd38-4687-8994-b99cc0553b6d','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-12'),
('86d00cab-e114-4b22-b1ba-85629903e9da','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',37,20,14,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-24'),
('86d04042-2e43-48d3-9f7d-8d3e84e7e04b','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-27'),
('86d8bf4f-8205-41fd-a6c7-f9fbffa0427f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-169'),
('86d93fd5-4b27-44ad-bbaa-1f0b123b35fd','a94a556a-77a8-41f7-8103-f5eed51f9a91',57,60,85,0,'2025-02-23 12:39:03.931','2025-03-08 13:57:38.797','221966080-1-1'),
('86da1aa1-27d6-4e42-baf1-ae07f3d2f890','090b9a06-aee0-4c02-b626-f3e2002f0fce',57,43,11,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-4'),
('86dc2fee-32f4-49e8-9532-7c673497caa9','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-25'),
('86dd099b-e50a-4136-802e-708dec573667','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',34,211,6,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-14'),
('86e47dbd-1bba-4bce-8603-02433eacdfa7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:00.260','248135683-1-171'),
('86e5ee76-f114-462d-8868-bfc350fa5fd3','81b00513-9ac4-4aef-8fee-fb279e70ca3e',45,85,62,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-9'),
('86e78d95-7213-46c1-8db3-96c808aa11fa','9866a947-9974-4053-8415-4518842488fe',77,46,46,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.198','126371651-1-24'),
('86e94029-dcac-46a9-9656-49c868a59bba','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-4'),
('86ec2771-5805-4a3f-ac7d-0d809f33c353','e178636b-b1d9-4260-aa1b-879946fa7f5d',31,194,100,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-12'),
('86f2465f-1b38-4c55-840f-4d95b26b6634','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-20'),
('86f3549e-47c3-4078-ad34-0e5924fffc6a','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-1'),
('86f4086f-ad41-4780-b2a3-03be48489bd2','e6b643b2-ddca-48ec-b553-690e29e71879',51,39,36,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-9'),
('86f55d05-2268-42ba-8178-cd88e2e2aa3a','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-54'),
('86f5c37e-cf01-41af-a4a9-8a7fca1fa27a','546ad3d0-25c2-43dd-9443-e48b8e5b6530',47,62,16,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-17'),
('86f74865-404c-4504-9b5f-82354c3b0f07','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-36'),
('86f80b15-f34f-421c-bbed-2f460f24cc19','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-44'),
('86f983c0-051f-44f8-8b9c-cc2d823453bc','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-4'),
('87040b8d-5b2d-4d65-9749-daf085633b03','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',200,100,11,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-16'),
('87042206-79a0-4cb7-9f1c-97221e913c0e','10a71c5c-3ee6-4ad7-acf6-abdad6ddb70e',81,56,101,0,'2025-09-16 16:29:13.363','2025-10-04 13:36:32.357','437712381-1-1'),
('87057135-c8c9-4c39-a8c6-7e844ed52ede','c2117654-a5f8-4afd-97d4-1653f53e4764',140,190,26,0,NULL,NULL,'614789435-1-1'),
('87060130-c038-40c9-a694-0b35aaddbcce','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-1'),
('8707abb1-ed04-469d-817a-ba7f42402516','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-4'),
('870a07e7-47df-4269-ad8b-1d82be9d27d5','10487cb1-a480-4eb0-8c13-2e4f22918abd',62,57,75,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-1-2'),
('870adc01-f011-4b32-982d-0c8c932dd38e','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-42'),
('870cd9ce-1903-4f6b-bd87-764a1006e06b','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',39,28,9,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-17'),
('870d52fa-0400-4f17-843f-93d0f20d5489','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-145'),
('870ffd6f-bcb9-4f85-ab3d-bd420c380b8a','fe0dfc58-5578-4ca2-bf70-da7b36ac4e89',95,20,40,0,'2024-03-30 10:54:53.217','2024-04-04 12:49:01.227','982320208-1-1'),
('8710dc33-c9db-4cbc-a434-1719893aadc8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-17'),
('8712ec06-00b8-477e-ba1b-dca06adf21d6','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-8'),
('87174e22-b73e-4c97-afab-3cc6f195384a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-163'),
('871b8e84-b263-486d-8708-4869382c6d16','7f5d49b9-798b-4f31-9e95-4d6bd70554f1',70,70,12,0,NULL,NULL,'412922678-1-2'),
('871ce6aa-0ae4-46fa-b5c6-871e41518cec','9950fe74-2437-4188-83e7-37a1e09fa6f7',48,10,145,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-6'),
('872509fd-d298-4c3f-8e00-8d7abfd2ccf4','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',40,40,40,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-7'),
('87278508-8e70-4a59-8307-bb0f80010e47','39e88a96-6243-4852-a38c-9846154a9d45',65,110,125,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-1-3'),
('87293a7a-e253-44a5-95b3-de4cac121f79','e178636b-b1d9-4260-aa1b-879946fa7f5d',66,16,7,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-13'),
('872a4f99-2795-45a1-bba3-9602946d0034','48a52c80-382d-403a-8339-88f26052eec2',55,74,101,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-3-6'),
('87304a96-6999-49ab-9b92-452d9e9966e1','8fc7023c-7fab-44ae-a533-006d835eddb6',46,7,112,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-15'),
('87328b62-7bfe-4e22-9da6-d54c82dc5d04','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.543','2025-08-11 10:24:52.467','412173308-1-68'),
('87353c34-fb18-44b2-a3ec-24320f7a9430','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-16'),
('8735c61a-9130-4c1d-a6c8-db1c20f1693b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-19'),
('8738d745-52cb-4ca4-939f-56beceff6fb4','87d144ec-833f-4749-bc8a-7b5dc3b8b776',91,11,245,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-2-3'),
('8739232c-9f6e-4228-97b8-d11873854105','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-159'),
('873a84b7-6d55-483e-8355-15561b2d1933','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:01.078','248135683-1-216'),
('873b14f3-651a-4b91-a0f5-df2fb217460c','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.205','745715303-1-10'),
('873d09b8-acc1-4d51-8f26-ae2bf2910c6d','4379a101-5d0c-4577-a568-55859726b74a',80,55,41,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.991','675885408-2-3'),
('873e94be-eb65-4174-8540-1eb8b4583bde','de440f55-a69c-4eb1-b8c9-629c405b795d',29,90,200,0,'2025-10-25 08:59:01.029',NULL,'515973668-1-3'),
('873ec4b1-dba2-4768-883a-d0b15addb87a','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-18'),
('873ec5f5-770d-46f6-b33b-df8c09a81260','9cc1860d-055e-43c8-9aca-a2085133ca71',110,75,85,0,'2024-11-25 08:29:14.494','2024-12-03 10:00:03.182','338678802-1-2'),
('87408c17-3aa4-4753-98dc-285108e16d6b','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.131','2024-05-24 07:08:13.556','478971881-1-13'),
('8740a701-f06f-4313-be35-a97e76551314','76fc0420-d453-4e15-aaa0-2fc45178a4a7',105,94,65,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-4-3'),
('8744c3b4-aa7a-4fe6-9c80-8614a9ef44b7','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-23'),
('874a8263-6f0a-4b5d-a6d9-f6873a1949a9','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-1'),
('874e3c57-13f1-4a92-a4de-cb4601a2ab96','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-87'),
('875214f9-56ed-4658-966f-73a72828f323','648b1063-2206-4845-a6a3-5b3089a2bafc',35,235,45,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.533','531344250-1-2'),
('87557643-1e85-4b29-9630-9f21cc9f0977','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-11'),
('8756c827-926c-44a1-8a16-9d1ac9f0f4bd','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-6'),
('875799da-f9d9-4b40-9dac-4cee6b55fa45','6f387dd8-0e1f-4464-b3b9-04f820af1d90',50,81,30,0,'2025-06-21 04:34:12.471','2025-06-27 21:58:31.744','613990020-1-2'),
('876841fa-277f-43d8-8e65-72637cc0fe5d','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-74'),
('8768be10-aec0-4ce6-9e20-23bdfeb9faef','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-2'),
('876bb61b-53fd-40ec-8d9b-9c452d79dd5f','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',93,30,205,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-10'),
('876d9a54-923a-4afa-baae-026fa1685d84','e1601d35-cc40-41a5-8e8e-8005a1281654',202,93,2,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.841','428752676-8-10'),
('876eadd4-1c97-497e-aca5-face28600cb6','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-1'),
('876f2349-4bc5-4945-84a8-23fe421ef8f0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-109'),
('87704871-e27b-4112-8258-560bc4bed305','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-16'),
('87717bd1-9bfd-4774-887e-1a159e287e85','19ee4ad6-2109-4cda-a637-9c7a0d40dfd7',0,0,0,0,'2024-05-10 18:50:19.017','2024-06-04 14:25:51.961','745964132-1-3'),
('8771947e-d8de-4c06-9eeb-a4e95ebef491','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-2'),
('87735bd8-0f72-4808-a2a8-1b3ff9d9e84c','55c580f2-39b2-4b62-bcc9-c1c4c35132f8',0,0,0,0,'2024-10-02 09:26:40.080','2024-10-09 11:10:56.705','745283309-1-5'),
('8773e6d6-8752-46a2-ba55-32ad7d724c09','914c35b6-7134-4163-8911-cbacbed3fcb5',100,15,120,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-9-2'),
('8774127d-0214-453e-9e0e-f5afa20d0f1b','a4591ede-c042-49b1-ad0a-502745a68343',123,75,7,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-2-2'),
('877950ea-61a2-4b0c-b691-68f2c867fccb','8f72b70b-7145-4d62-a9c5-ef581e128182',122,7,75,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-2-1'),
('877a90f6-a9af-4363-a736-8bec37ceefbc','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-27'),
('877d799a-8a51-4432-bc4e-43f31b26280a','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-21'),
('877fd5ec-dd0c-4afb-8d62-df80bb93bd7e','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',66,115,7,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-31'),
('87805ab5-d404-4a6c-94f3-7fbaa92cf948','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-6'),
('8781e5d7-fc0b-4021-a9d8-0a7bc772699c','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-7'),
('8782715d-285e-4d1c-8371-82b6809939c0','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-21'),
('8783b86b-a649-40f6-b5b5-e2ebbe1404df','7f189b87-2a91-465f-92fc-e3e25024c53d',65,56,101,0,'2025-07-19 07:51:55.143','2025-07-30 08:02:19.538','613813844-1-1'),
('8785a2b7-cca9-4b03-bc32-92a87faa1863','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,6,0,NULL,NULL,'478893710-2-14'),
('87876469-a3dd-4870-b2be-947b65229909','e7f31a78-648d-4a5e-9111-1bf7db38dd79',157,200,24,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-20'),
('8787cb9c-6bd7-4f82-b585-4381036dd4b7','822012b8-3b7d-46ba-9997-29726e94fb5c',77,112,90,0,'2025-08-22 20:28:34.659','2025-09-03 12:46:56.985','278498481-1-2'),
('878a1e49-067a-43b5-9933-e32d0e2bc710','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.648','2025-01-06 20:09:27.226','221350993-1-5'),
('878a8284-35aa-4d9d-bdad-4b1b0599d6d8','fb752cd1-ddbb-458c-8371-2851b143968a',91,235,62,0,'2025-07-12 09:19:03.318','2025-07-18 22:03:30.292','98221051-1-2'),
('878c8423-3a0b-4933-b633-c9502bc99289','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-23'),
('878ed098-0635-4bfb-abc5-487e5110182a','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,11,85,0,NULL,NULL,'478893710-2-3'),
('8790ddc8-21e0-4842-a9e7-3298384d7c20','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-8'),
('87931b9e-d4bb-44be-b681-b93e0f059e44','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-10'),
('8795a1f3-a59d-4575-8ad8-9e18a18fff35','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-2-5'),
('87960641-82ec-4feb-a0b9-fae15f856bf2','bd7ba9b5-8269-4522-b579-d69c949c4a64',102,112,10,0,'2025-04-25 16:57:07.814','2025-05-02 06:58:52.817','478800752-1-1'),
('879634b6-ea5f-4d92-9e45-fcde430c9775','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-24'),
('879647ad-2e6c-4eb1-8a72-361644f0bd4c','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-16'),
('87967beb-c55e-414a-8eeb-63d475ae40c6','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-18'),
('879b8e01-87f6-4617-9551-a9c6de3df0b8','83902671-5e3f-46e6-98da-fea889e40b25',94,14,165,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.351','644985861-8-2'),
('879ce198-7f25-4df6-92da-a0da41f7de93','606b177a-2516-4ee8-8a97-7fcc5be07957',96,186,6,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-1-2'),
('879d5236-d727-476b-8667-74114f7e2f1b','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-5'),
('879fd56a-33ad-470b-a74d-980e3abe97e4','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-104'),
('87a06d74-0d65-4d97-8cfa-6d22eaec2678','638172c9-793e-4ec5-9ad2-cf82bf06eca7',34,34,87,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-4'),
('87a2bc04-42c6-490b-94c8-1e6b5783e5cc','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-3'),
('87a73c07-eed8-4895-ab46-2a82455bc4a8','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',92,92,47,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-20'),
('87a841d9-06c2-481e-848f-0830af1069d0','e89e7d75-4967-4c63-9f73-981469e531af',55,102,97,0,'2024-05-29 08:53:20.529','2024-06-10 13:49:53.435','319835776-1-25'),
('87a87b1d-e6f3-4192-afeb-463486541dce','54f49f0e-3750-48ef-be0e-ae8f72989d98',0,0,0,0,'2024-09-19 18:27:15.225','2024-09-28 12:18:48.557','982542299-1-4'),
('87abd84a-9d10-460a-a83d-4f13f660da19','4d63984a-5ff1-4253-abe8-286bd84e3528',160,200,30,0,NULL,NULL,'478350685-1-7'),
('87ad5bbb-7edf-4cbe-ab48-ed5d10be2bf3','d83c40d1-4df5-4c97-bc83-28837db95b2b',68,105,11,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-39'),
('87b996a2-f562-43ac-9932-d94103b70212','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-4'),
('87bcb12f-e51e-41fb-8b6c-330fe9f87ba4','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.839','2025-09-17 16:04:00.287','412746738-1-83'),
('87be1286-e4f1-4fdb-b458-831f15638345','4c8d5858-b6e9-4d61-8150-28923e7ac277',115,65,100,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-1-2'),
('87bead68-b741-46c3-8927-ee18c3ec112c','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',220,55,10,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-21'),
('87bfba4b-05ee-4084-8920-127045e5cf03','3bda7c8f-d10d-4b97-b22d-c5e0ee73bec0',198,85,96,0,'2025-02-20 12:15:03.287','2025-03-03 12:37:37.230','910599740-1-4'),
('87bfe2bc-f679-4d07-a3f8-377e4a453859','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-29'),
('87c37695-882e-497d-839d-90ba9dad9e22','945d8ccc-c45e-47fc-ba3b-1163cd4e1ef9',60,221,86,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-2-3'),
('87d0683a-dfb5-4930-acfc-df9259e0836f','6cf15506-e6d2-496a-a50c-1bddeb987a1f',231,66,48,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-1'),
('87d2595b-e003-4d35-87c7-4e3d4a75e2c2','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-20'),
('87d26a2e-b693-4b59-a13f-f79e136e90f4','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-20'),
('87d54e5c-205a-460a-a92b-92d44a323f4f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-65'),
('87d599eb-c817-47e7-9098-46a3ad9dd9f5','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-53'),
('87d78028-17c9-4519-956a-8a380f589caa','eb72fbac-991c-4275-8fee-d2dc4841a5f1',44,43,75,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-2-1'),
('87d86684-bd5a-4697-aa5c-63459117dc84','144ba1fb-01a2-470c-8696-3c2576397b46',52,100,75,0,NULL,NULL,'745995046-1-2'),
('87d8ed9e-8163-4e15-bcbb-35a44581b149','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',206,31,18,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-98'),
('87dc54e5-825c-439d-be71-25e0f8d03095','f2fcb1d4-582c-4733-a9cf-5fbb98d7f185',68,116,7,0,'2025-10-22 13:07:10.734',NULL,'011766113-5-1'),
('87e0fa4f-5307-43ce-a8e9-0e46031146eb','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-4'),
('87e3e5c3-34a8-4244-8c76-6c2334441391','c7711311-d9e2-44ab-9529-bf35ca0a141b',232,145,15,0,NULL,NULL,'613592756-6-7'),
('87e8fd24-5618-4240-8943-5be3a62feb36','5e372d49-2995-43b9-8175-cfd3bd1f09b8',130,129,67,0,NULL,NULL,'37198203-1-4'),
('87ea568b-7790-42f7-940e-62070b7c4bf0','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.990','478644410-1-1'),
('87ec09e8-2c8f-48de-a074-0d80d7120e8d','725b938f-4b76-4c51-af62-af86036ecfbf',95,215,42,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-3-1'),
('87ed43f3-78e4-4978-a37b-05a304211a5d','5a89fae8-525a-4de4-8188-2f4d7c892e74',6,57,222,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-10'),
('87ee656f-bf76-4d3e-adbe-742db007a64e','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',170,45,8,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.064','428138926-1-33'),
('87f15502-e720-4069-8f98-f962ffc59500','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-29'),
('87f29d55-9c33-42f8-ae3a-0b1883ffb4ef','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-7'),
('87f3108e-50fe-4402-9193-582449adfc15','6137887a-a955-44cc-9620-948985c68d05',75,75,8,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-3-1'),
('87f4a671-3cc2-4520-9382-96910616c927','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-46'),
('87f8633a-0a4a-4fd1-9e39-ca7b221fc80f','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-117'),
('87f9df88-a01e-4000-81e1-63e5ce019a9f','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-6'),
('87fc0ace-62c0-46bd-b9ef-f3ff5f6acbdb','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-64'),
('87fe1fc2-1164-42d1-a690-4457dd82f723','a34ddd24-f4f6-4725-847a-abf5fa275d11',52,76,102,0,'2025-08-25 12:31:54.926','2025-08-30 18:25:03.280','371684650-1-3'),
('8803327a-3df8-42d8-b38c-7672838b4612','03e6b41f-f2d8-44cd-8fde-3ed5e7f289e2',130,100,50,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-2-2'),
('880399d8-3002-4593-a178-8c539074a7f2','6ae0233f-f2c2-44bf-9706-7274e4c923e9',53,77,102,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-12'),
('8804a847-8d7c-4150-b988-580c93f97a6c','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-5'),
('88054a1e-a54c-46fb-aaed-204bcbe95051','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-5'),
('88055cfa-979f-47c7-9d62-4f2300d4574e','9d15ece0-9647-429d-b49f-1c791fc972a3',30,20,10,0,'2025-10-08 17:44:11.185','2025-10-20 06:32:22.650','644742878-1-1'),
('880759f7-e8b8-45ac-9e85-d9dc51238b38','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-6'),
('88080221-2dce-4d89-b03c-40aecf4ca03d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-17'),
('880bef5b-5fe3-41dc-8284-ea51a0d44d8f','7f11042b-3945-4eb3-b37e-a822894de6f5',63,83,6,0,NULL,NULL,'478777575-1-4'),
('880e1b83-ad28-4e61-8b63-4b6b27a9d7cc','f3448104-44bd-4193-a741-f1b06602f4c2',51,51,77,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-2-2'),
('88110d24-bea7-4262-b659-b9e874cbd70d','e3de85d3-eec0-4038-99df-48935e9c3c8e',90,20,16,0,'2024-10-11 16:09:22.260','2024-10-22 13:51:40.148','976898541-1-4'),
('88116c43-c833-42a4-a04a-211f0d3fb691','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',103,62,73,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-6'),
('8815566d-42d0-4a64-b737-b259d7a62ccc','90f573db-bf35-4042-9450-88ca0e789403',96,100,70,0,'2025-10-22 13:07:00.774',NULL,'515829047-2-2'),
('8815bec9-c713-47a1-b8a5-e5aaab455404','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-34'),
('8816933a-8edd-483f-82c1-69d240b20dc6','c671dc61-dbc8-400b-822b-b699e7404616',75,201,90,0,'2024-12-01 06:48:24.692','2024-12-07 20:48:05.906','465313266-1-1'),
('8817e9ac-0fd6-4866-8607-226cf954c576','1fa0d27f-c4dc-4c7f-b202-ba5d273805ee',0,0,0,0,'2024-11-15 17:06:46.420','2024-11-27 08:20:07.312','745936573-1-3'),
('881ad310-e295-486a-a263-d8dcda834ccb','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.037','319458159-1-8'),
('881b283c-56cb-40b3-991e-e58d6f9c2f6e','6d3c54e3-0b3c-4bf4-bdff-b28c7ce0ec03',56,83,101,0,NULL,NULL,'675346042-1-2'),
('881b9631-def5-4b6c-9120-86e93f7672a0','15848870-75a0-4294-9752-8c0da1d7da4a',75,75,90,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-4'),
('881cc27e-56ad-442b-91b3-ab9bde713ae7','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-2'),
('881d06e5-c540-46e1-ad7b-a73e4af297b4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:02.361','248135683-1-33'),
('881e90d2-7caf-4ff7-9d5a-1837dbbcd3bf','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-62'),
('8828098b-9fb2-403c-8d5c-bc8afe959177','57d11f20-03a6-412e-bd79-62615f3c7867',98,182,15,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-6'),
('882bd388-7685-4046-ae30-87ca3ce98c03','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-149'),
('882c1417-f90f-4f85-b85e-7e8b698f8a28','14ad5bdb-7df0-4df9-8328-3ee2c7a3e6ae',0,0,0,0,'2025-03-13 12:21:19.442','2025-03-24 16:02:29.861','97684781-1-2'),
('882cd39b-01d3-441b-a7a2-724f0ac6e533','c000faa6-6333-4c74-9601-233c813836c2',0,0,0,0,'2024-12-01 06:48:09.220','2024-12-10 12:35:58.728','478284503-1-3'),
('882d5ec7-9b99-43ce-92db-536681ec825f','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-44'),
('88303ae4-9062-492a-997c-2184f5cd5952','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-15'),
('88304cc7-54ee-4c50-81cc-b5c5585d6621','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-74'),
('88353a63-2bbc-45bc-9b3e-3339dd2a749b','e178636b-b1d9-4260-aa1b-879946fa7f5d',66,53,7,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-14'),
('88355d2b-a35f-4e0b-a975-1f1ec47c896e','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:10.772','248135683-2-64'),
('8835e8ac-82f2-4ec6-b56a-c09d6c9d99bd','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-1'),
('88360aa8-5a7d-47f9-9399-da9932fc4d2d','1a929455-0b70-45da-b39a-75cee0e92908',28,203,92,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-4'),
('883717ff-23f7-423c-8a80-c29c655d8ae2','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-65'),
('88379eaa-5394-490e-beb8-658c87efd4b6','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-41'),
('883de6a9-fea1-4036-9747-230f02495acd','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.046','371365041-1-4'),
('883f8864-ce1a-4d73-843f-36c1d3390417','53025d92-f019-4f5d-9b69-68a3b09bb7bc',58,216,5,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-14'),
('88406bc6-aecf-4455-81fb-aea015a0b9f2','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-8'),
('884326ab-a1e0-493f-9a10-abf974921a71','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-11'),
('884509c3-4320-47b5-95c8-eac9d4dc6fbd','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',56,72,106,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.402','478906000-1-6'),
('88456f24-7d9f-4e1a-812a-890a3e680b70','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:03.077','248135683-1-29'),
('88474453-4ad9-4c06-ac78-2e24a15155db','76087092-4086-4cd5-acc6-7f775e746dc2',98,100,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-4'),
('884ba6fa-19c3-49b1-8365-cc6975dff518','c3d0ff20-91e1-44ac-afa5-c3dd3f70c550',82,123,123,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.127','428653750-2-3'),
('88522c74-ec2a-4791-8283-645a6a5e4e5d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:03.745','248135683-1-105'),
('88522ee4-90e5-446f-b429-c1f1842732fb','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-14'),
('8853d507-2ded-4eda-85fc-af5ce40e9b8b','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-11'),
('88543101-05e1-4804-b82c-fd4b9b7d024c','6b64d1e9-ff42-44d9-84a9-30cf22738927',92,61,70,0,'2025-03-13 12:21:43.381','2025-03-20 18:08:22.871','127241743-1-3'),
('8857dd38-40c3-4b15-b591-8746a370b80f','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-6'),
('88581f6c-44a6-4d66-8381-963ffef90bd1','8ac95ed3-d833-478a-bb81-b1337612bde0',70,76,65,0,'2024-03-23 08:36:18.109','2024-04-03 08:28:41.117','982562609-1-4'),
('885987c3-ae8e-4861-a8bf-7ea32945b1d8','c1a31a07-5113-4703-99ff-14d4a90ef1ba',61,175,7,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-12'),
('885e0abc-df08-4380-819a-f8ba3a889bd4','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-4'),
('885f602d-1198-488f-958a-a1b678380630','cbcb5140-359c-450c-9f33-8e0b01b62f63',112,67,102,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-3-2'),
('8860b87f-eb5b-4ac3-aa00-6368a6409415','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-27'),
('88658258-5cda-49c9-acd3-ff61f466bf75','e4bcf108-420b-4086-8851-146bc29ae338',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-2-2'),
('88685916-b63c-4bdd-9818-bcfc9b64494a','cbb2ee4d-f3d4-434f-aeb9-9dbae6ed267f',50,50,50,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-2-1'),
('886c0fa0-9db8-4b56-bf97-bd112a39abc6','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',51,76,50,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-8'),
('886c132d-734c-4976-acf0-f40d23146a65','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-6'),
('8872d1cd-c85f-4f12-87f2-1cbbc5cc16da','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-55'),
('8877616b-ee97-48e2-ac98-586adfa05519','9e06cc57-c3d1-4cf2-9952-689339186aff',0,0,0,0,'2024-12-07 09:32:39.164','2024-12-16 21:30:04.534','982529212-1-2'),
('88777c62-c6b3-46cf-b41b-26be9696af6c','e89e7d75-4967-4c63-9f73-981469e531af',102,102,12,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.435','319835776-1-26'),
('887a6fdd-54de-4f8c-b75d-f4c8e740fd44','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:54.878','248284003-1-56'),
('887bb1e1-a490-4cdc-80c3-cfd58f62c2a4','574519af-b90a-45b7-9c99-63bd11d5c2f6',77,55,101,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-3-1'),
('887cb35c-0a39-49f9-838e-2765d036d69e','5bfd2b44-3068-4b7b-b490-2c69f8b986ee',51,90,1.5,0,'2024-11-15 17:06:39.849','2024-11-27 08:20:23.084','614990703-1-3'),
('887d2bc4-02ab-4ef2-baee-dce0a755d79e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-9'),
('887d7db9-2e5a-4bf2-8c09-c0d47e28e817','50748e2f-3de5-4f3f-88ae-d8093198e2a8',225,80,100,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-4-2'),
('8880975a-6a24-49f1-8a13-398c4a7ec6e6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-130'),
('8880b737-ec93-4d37-a6a2-fc33b114dafb','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-160'),
('88812475-dcb9-4eb5-a42c-124c4d208ede','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-4'),
('88813118-3539-43e0-b25c-2c367eaaa0ad','5dc0d88b-7ff1-416a-932b-9af0149bafd3',53,77,101,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.247','437431907-1-2'),
('88816106-56e7-411c-827b-5843e9091537','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-41'),
('8881c4e8-6d19-46d5-b283-5e71b6867b05','6b29fcf3-79cd-49b9-b2fa-ca1518066509',15,16,203,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-6'),
('88830872-f4b0-40ca-b0c7-7417526a0804','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-48'),
('88844e9d-559b-44da-8160-6c60aad6505d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-39'),
('8885474e-6c47-4d27-9e2d-dc3336d09e7c','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-20'),
('88893fce-8410-486d-ba5c-ec1fbf3442eb','ca2466d1-9a83-4f57-8f76-f5ddce302e04',124,206,7,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-13'),
('888b2dd8-0edc-4ec6-b2af-f7300e807888','8fc7023c-7fab-44ae-a533-006d835eddb6',46,17,68,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-16'),
('888c4fcb-884c-4a22-bf21-e50b090f1640','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',96,53,71,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-3'),
('88919f73-2c3f-4645-837e-69d73db37fc9','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-59'),
('889249fc-0faf-4889-ad64-de06c5b6d665','c5027968-9a23-442a-bebc-9b8745408960',66,7,217,0,NULL,NULL,'982759064-4-19'),
('8894998b-ca39-4424-a49a-31806ce463f8','e6bddda4-b1df-4be7-bbd5-63cc4b197736',210,60,6,0,NULL,NULL,'42857810-1-9'),
('8898468e-f66e-46e3-9b13-0df0f657fecc','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-4'),
('889bb5ea-a5aa-46b0-a6ee-7886a89232f8','f6fbaf1f-3549-423b-93be-c9c9f9a68dcf',51,51,77,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-3-2'),
('889cbb4c-dd92-496b-b2ef-d28ac6f3b997','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-26'),
('889de33e-0095-4aac-a2c8-2d48a88b906d','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-1'),
('889fb600-6b1e-43a9-af8f-ac5f711ad607','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-1'),
('88a22ccf-37ba-4ec8-8956-eb75c9f1b1c5','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.201','223867751-1-52'),
('88a3887c-d23e-42aa-84fd-ed2fbe210964','97f30c95-1381-4341-ab94-c74b11d28be8',88,96,80,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-2-4'),
('88a39d2d-4607-47a8-ae70-9231c50bf9e1','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-31'),
('88afbd7b-9de5-4843-a306-3330bdf1da90','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-96'),
('88b1ddab-fd23-4982-9f94-fbac6cc87a63','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-15'),
('88b2b1a8-9aae-4d6b-be0c-bc11593535d0','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-95'),
('88b4e359-94b2-446d-8856-83911dbfbfe6','9866a947-9974-4053-8415-4518842488fe',86,28,57,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-25'),
('88b55647-88f0-4eb2-b3ab-4d1c563a99f8','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-24'),
('88b6874b-c6f6-4c7c-9c83-0368dfa41798','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-6'),
('88bb37f8-88a1-4c45-8b0a-ccb1fe2aa9fe','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-80'),
('88c2194b-d92a-4cd9-bfb0-cbf5976ab068','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-31'),
('88c28ae3-f5aa-49a7-9536-f341b8d2a113','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-118'),
('88c90ec1-a47d-4593-b21b-363e71830ebc','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-192'),
('88ccbe00-f999-4f42-a3b3-5c9ae60bc255','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-3'),
('88d0d0fb-0d54-43e8-8f2d-126a5647a2da','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.489','2025-03-14 11:07:34.684','248243194-1-64'),
('88d31a02-f855-4b14-a160-f65ce8f0d58a','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-4-16'),
('88d5df12-f857-45f0-9bb0-5afaf45676a1','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-123'),
('88d60bcb-83df-4e19-bfbb-8a2dadb54fd8','3535d433-eb38-4879-84b4-dbf8410809cd',50,93,105,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-6'),
('88da5de7-ccdc-41f0-b010-903a9d6198d6','60cada38-138f-443f-87cf-2250edc59661',53,73,100,0,NULL,NULL,'428172853-3-2'),
('88dabcff-d004-4f30-b711-a07bbd3cbe44','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-7'),
('88de33bc-3272-4843-bd6b-f2106a830a31','ea6ce2a5-fd42-4bc9-978d-b3714213845f',68,101,103,0,'2025-05-09 18:43:55.905','2025-05-21 08:16:34.944','976430102-1-3'),
('88de8bb1-56fe-4a75-948a-ccf500b12168','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',196,6,50,0,NULL,NULL,'428437129-1-5'),
('88df7e52-f178-4e75-8ed0-716ed30c3705','e6eccb7a-4478-421c-8b7d-80495f16c580',0,0,0,0,'2025-09-10 10:50:50.040','2025-09-20 07:01:48.384','437124353-1-1'),
('88df999a-f8fe-4870-a59a-103b4f327ae8','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-3'),
('88e3b2a1-417c-4faa-8287-1bb3c512cdcf','2027d4e3-00a8-4050-97b9-4dcf16140122',103,98,65,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-5'),
('88e6cc76-2351-406d-b5f4-2851a0549215','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-15'),
('88e73d25-c9e5-46a4-a823-f279b404abac','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-19'),
('88e98162-7d5f-4ddd-a0c8-47dde9a90b3e','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-2'),
('88e9c312-07df-4f2d-97c7-c3af84108f05','60fb62a4-8365-4095-8f73-1e4ce71568c0',45,71,101,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-5'),
('88eba0e8-dda3-4cdb-990d-93818b7d9335','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-9'),
('88ef6cd3-742c-4616-a531-4f5428432898','324936f5-0640-4048-8641-e1550a228838',50,69,14,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-11'),
('88efb3f6-357f-435e-b169-9223086c4c22','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.335','2024-11-19 17:22:10.642','858854212-1-9'),
('88f012c8-9e93-4094-8f7c-632a1987568b','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.095','2025-07-02 06:17:10.670','695249199-2-3'),
('88f123ca-38f6-4f54-a795-ff8d02c79b7c','ca2466d1-9a83-4f57-8f76-f5ddce302e04',124,206,7,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-14'),
('88f3bf89-c975-4703-ac83-fd4c07c83ba8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-43'),
('88f41e65-889f-4fac-8b61-42d66a97a979','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',70,9,219,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-19'),
('88f59429-2e3f-4a0f-b9cd-bcc9d805c70d','702c1aff-1a98-44f0-9dce-efad71572432',9,51,217,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-6'),
('88f5dc97-f49a-4016-8724-17e558a2406a','3bd671c9-374e-4431-93c3-1d44ad60103d',77,88,80,0,'2024-07-02 08:19:51.226','2024-07-16 05:11:54.166','614134006-1-2'),
('88fc92fa-5986-48c5-8e89-cd92ac1409f0','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',45,5,231,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-3'),
('88fcb990-42f6-4091-825f-13fda46188df','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-33'),
('88fd51fb-cf9e-47cd-ad9f-189d21865c23','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.494','221949733-1-5'),
('88ffa41e-770c-4f5c-8a4a-8af74ae25ced','7f11042b-3945-4eb3-b37e-a822894de6f5',70,46,14,0,NULL,NULL,'478777575-1-3'),
('88fffb08-6c7f-46f4-addc-e5415e3212a4','f0485a78-951c-4f89-bddf-b2003f0bf783',6,202,92,0,'2025-10-09 05:39:55.570',NULL,'046517356-3-36'),
('8901aee1-42ae-4028-8f3d-ed8a65338eae','e6bddda4-b1df-4be7-bbd5-63cc4b197736',93,93,7,0,NULL,NULL,'42857810-1-10'),
('89028fab-1847-43a8-aaf3-82ebac7516fd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-120'),
('8906294d-e9da-4a90-80d2-94c8858931fc','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-62'),
('8908874c-bd98-4ca6-a3c1-c81f36d6d017','1916ae7f-80e5-4993-b31a-1869332c7d71',200,93,23,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.192','786849282-3-2'),
('89098496-33d8-45b9-8378-599bb049cdf3','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-6'),
('890e4195-a9d9-437e-8c27-114b208bccb0','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-25'),
('891253df-d9f0-4dad-afe0-ea386ed47518','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',210,35,20,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-19'),
('89162010-18a4-48cb-8065-24af6b1bc5b6','a08d6712-1d03-4cdf-9f9e-1098bdce8dc5',0,0,0,0,'2025-06-21 04:33:48.944','2025-06-29 20:24:30.376','231250162-1-3'),
('891818ff-913f-4b47-a585-d8e6934fd27c','5c678148-a528-4b8b-bd4a-390890b0c04d',45,60,30,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-1-3'),
('8918d220-632a-4b1a-8727-afa7f19d3ed9','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-4'),
('8919d2a7-b523-4116-b25e-7f4f5c8d9c76','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-28'),
('891a6b47-c771-4393-adca-b3665f6d748d','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-24'),
('891d8683-1867-415e-b62c-2d2536c66e79','87b3f634-7cb9-4342-96bb-9a0c75c1ffe9',98,98,80,0,'2025-10-20 07:18:09.468',NULL,'505332275-1-2'),
('891e258a-8882-42ae-8d8b-aa1a03a71092','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-69'),
('8922560f-b89f-4370-92a4-77712336ae27','8ff98b27-68cd-48ee-b052-74aac1b70886',10,25,175,0,'2025-10-09 08:39:52.751',NULL,'011940661-7-1'),
('8926b883-2e90-4ca8-aa10-ac34e01a4954','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-7'),
('89274137-f8ba-4381-9107-abdc2688e2c9','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-2'),
('892a1b7f-335b-4a60-9ee9-3f015139db61','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:04.461','248135683-1-2'),
('892d635b-bcc2-41d5-84d4-7bbb8057274c','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',230,100,73,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-8'),
('89305d7f-d22a-4aac-b834-f9f6c618ea8b','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-29'),
('89314806-6b8a-4d86-8fb3-be15d85733f7','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-13'),
('89319756-4aa9-4f05-b804-f785f2498bad','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-2'),
('89319d6d-aa31-487e-a137-e3153a991b8c','77ef7941-3e4d-45e3-af8a-a47e8d0ff2bb',0,0,0,0,'2025-10-22 13:06:57.242',NULL,'745942521-1-3'),
('893222e3-353b-4d03-9f9d-fdbfe8876bcf','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',65,120,120,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.152','127865742-2-2'),
('8933e9b1-3214-46b6-85e6-176cd90676bd','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-1'),
('893b096a-f77a-441e-b60e-b3609754b48b','a5506c59-0e9f-48a6-9b69-13a5163cf994',103,72,72,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-8'),
('893bf7ca-e406-4172-817f-ee9474fabf37','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-4'),
('893e1c18-b06c-4721-b2a9-a26ab03d5ace','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.306','2025-08-21 08:12:31.707','221559079-1-3'),
('89404c2c-bd7a-4d6c-84f5-858ec5c53067','384387cf-8c35-4d32-b59d-2400336e8b60',57,82,101,0,'2025-10-02 08:20:45.727','2025-10-20 06:33:16.734','150685221-1-2'),
('89405ef3-dad7-44f1-9f3c-602ef85915f1','01445163-8215-4106-bdba-4d0bf73930fe',96,94,70,0,'2024-08-21 14:52:33.316','2024-09-02 08:33:41.727','614462377-1-5'),
('8940e2d8-227a-414e-94f2-43d94bfe0119','950edd95-6cf9-4fbe-b156-c4ec6d470b3b',95,70,163,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-3-3'),
('8940fd34-8c7c-4ec2-8d8d-b95df333df7c','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-28'),
('894149a9-8a58-44d6-8dfd-49a19a40a2b2','c5027968-9a23-442a-bebc-9b8745408960',44,7,217,0,NULL,NULL,'982759064-4-15'),
('89419c45-bdcd-4e03-bb70-22f8cf52218f','0801ed40-5b92-4284-83cb-76d882539064',51,51,77,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-1-2'),
('8941b38b-11d3-463c-9e8a-201b78f0ccf8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-141'),
('894367be-9c8a-43d9-b85e-93a41fd8ddf9','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-93'),
('8943be08-3986-42f2-9528-da9591482bc9','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-35'),
('894bfcd8-9f16-4927-a138-2636de0aae16','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-64'),
('894bff00-4218-4358-be1f-109795dfed47','5733786c-8679-43e7-8510-9eaefeb26e66',52,50,76,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.745','221341784-2-4'),
('894d4151-4568-4da4-b453-1184524e3898','5d074556-ce95-4ffc-8684-279dc37597f0',77,24,50,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-11'),
('894d5ff6-5a75-41db-8bab-75d2a4c8736e','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-5'),
('894d7bff-b318-44ee-8ce6-2376fb16c734','886e0e1a-c599-47ba-bacc-c329212cc55b',11,50,95,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-3'),
('8950d462-12da-4e2c-8c48-526c680324d3','f0d0f679-0435-47ac-98c0-ecc939f711dd',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.875','910775394-4-3'),
('8952294b-ede6-4e01-8b51-5258bff2a576','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-89'),
('89539cb5-b605-4d18-bcfe-76813fc2d134','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-34'),
('8958fd55-4f4a-4b93-861a-15a92c2b8441','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',80,47,18,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-64'),
('895b756d-6d61-455d-bdbd-8f7bef68995b','969a892d-9ae7-432a-bed2-24840d90f040',93,96,70,0,'2025-07-29 12:58:50.480','2025-08-06 17:56:19.273','817395462-1-2'),
('895e1fe5-fd43-4f85-b1fc-c034f3f08133','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',95,95,4,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-99'),
('8962d5d9-595f-47d6-aec1-16727efde091','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-2'),
('8962e444-be22-46e3-ac5a-adf56053bbbc','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-17'),
('896545e8-4615-4ea4-a0e1-3cd518b43d51','87393f00-12fd-4b92-bd9e-3438b29214c6',67,49,51,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-3-2'),
('8965c921-cbb7-4666-b02a-271ef731e8c0','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-17'),
('8968e067-07ea-448a-9f6a-7d47a6f8f968','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-51'),
('896c763b-8b29-47c6-b755-d65d3f412735','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',76,6,111,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-25'),
('896cd48f-ed8e-4a1d-98f6-2638279f79a7','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-100'),
('896e871d-a50d-4266-b7a1-d65ff285ce70','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.820','2025-07-03 11:20:12.748','223422825-1-224'),
('896f6e6c-4db0-4150-893a-94db84a93317','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-23'),
('896f7ee5-6a9c-43bc-b190-4cdce63cb664','b1c85abf-7d3a-462e-b9c5-1e1f7b7dc803',95,240,65,0,'2024-11-21 10:29:02.614','2024-12-15 20:07:20.068','112787965-1-4'),
('89701505-3b5b-4c4e-9a45-6452554bfec8','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-114'),
('89713f93-6130-4b3b-b565-4b83a4317ffd','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-6'),
('8975df1b-b60e-4986-83ff-89ffb5704261','2538536e-94b0-499f-8945-6d56f97c2bf1',80,100,77,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-2-2'),
('8977c81f-c145-4db0-bdfb-0a718b634db9','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-38'),
('89783cb4-0407-4a54-888f-bc3758d3c5c5','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-17'),
('897d16d9-1d96-4b5b-a026-2782d854f14a','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.514','412903480-1-1'),
('89826e1c-664b-471c-8e00-1b7a24135efc','5cced97c-42f9-4f09-9ce2-eab123493da6',42,42,76,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-3'),
('89835761-ba5d-4c11-947d-83d0737de9f8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-30'),
('89843200-86cb-4562-bc4d-20f4dd0db00d','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-39'),
('8987d34a-4390-426d-9591-288ca0be4f44','f8e958dd-34b6-42e9-a343-6f420c122893',81,56,109,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-3-2'),
('89884aef-2c0c-4209-8c5f-9f56e936b506','41c40e8f-1ab1-4425-902c-c73cbea0722f',207,103,9,0,NULL,NULL,'644563405-1-1'),
('898c625c-6e4b-4979-8bcc-2a1fbf0db299','4869c334-4618-49fb-9d03-99d95654d12a',44,209,4,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-23'),
('898e7ef1-abd3-4298-a81b-316d3fb27612','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-2'),
('898e928b-c1a9-4c65-9a53-a45a5b4b6cc5','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-8'),
('898f1a4a-0cef-4126-b0d5-bc50aec6d08b','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-37'),
('898f4161-1f10-4b7f-87e0-c2bd914eb879','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-8'),
('89905f50-aeaf-4ed7-8c57-4675cee5f758','059d418f-09ca-4d30-b6ea-028323d66c5e',96,115,80,0,'2025-10-25 08:59:02.132',NULL,'59841260-1-2'),
('8990fab6-54bd-47d6-9116-a7d5233001a0','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-18'),
('89924304-f0ff-41fe-80e9-2b6ffe3db611','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:05.552','248135683-1-26'),
('89927cec-2d65-4ebc-b8e2-3b2f805540e5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-209'),
('8996765d-9904-4709-b8fe-66a080a7ae5a','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',170,70,90,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-5'),
('89986c25-753e-46f2-9278-3090dc9fc8b8','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-53'),
('899d4d4f-680f-4d8a-a5d9-fc4003a1a038','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-5'),
('899dbeef-26eb-4f83-b2f7-f2054f4c865c','8ccdb1f8-160d-48df-824e-2c174e594970',103,30,201,0,NULL,NULL,'428172853-5-2'),
('899e15c3-8fda-4951-89fb-2bad0a77a039','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-42'),
('89a47c87-e563-41e4-9393-4d7feca58120','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-55'),
('89a8cf48-9f22-49d5-a23c-b221c4d09f16','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-4'),
('89aa99e9-3030-4b5c-8ce3-328cfaa7de33','2a3786a8-55e0-4d0c-8acf-eca115b5b68a',0,0,0,0,NULL,NULL,'910752431-1-1'),
('89ac00ef-d6fb-4743-8c16-c9bcde4fc76f','c7ec2251-b2e5-4bd2-ab66-88acea94c958',84,99,75,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-2-1'),
('89ac3b18-dc37-4290-94e2-884ed879194a','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-10'),
('89aec7f9-8769-493e-80e1-a6a1710d8b0e','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-4'),
('89af2c6c-ca18-497e-9362-d0980c50694a','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-34'),
('89af3dd8-6106-4c2d-bd98-e0eb31b388a9','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',86,58,8,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-101'),
('89af89b2-fafc-4fb6-9e06-1571bfe72283','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',75,70,70,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-19'),
('89b59f77-3623-4c81-882b-a6f48603e06e','c7fce8c7-acfd-4c12-8db5-81618a4b211d',64,64,5,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-13'),
('89b8755d-9b98-43c3-85e1-bc5feb05d5ae','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',83,17,46,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-34'),
('89baa1af-9617-44ed-9e31-e69d1f5ef958','546ad3d0-25c2-43dd-9443-e48b8e5b6530',65,95,80,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-54'),
('89bb2629-c110-4ea0-a320-8fadfab31f1b','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-6'),
('89bbb216-4e58-417d-8627-467073bb3b67','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.137','2025-01-11 14:12:56.718','248284003-1-44'),
('89bf2d47-49fc-45a8-a4a7-afa87bea7856','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-5'),
('89c56b9b-1f6b-4962-bbff-9e5b8c8da9d4','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-10'),
('89c7498e-9a41-4091-8f63-81d6c92f98c7','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-2'),
('89c8206f-9cd7-4d2c-b4bd-0b465e2cae83','546ad3d0-25c2-43dd-9443-e48b8e5b6530',75,75,55,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-60'),
('89cdabf0-b211-456f-aab8-3cafd6d0bcda','fb58f438-30e4-4e01-af6e-6378e27a11fe',200,160,3,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-12'),
('89cec8b7-a8dc-4094-8aeb-741b9af3cfd1','a3c10ccb-9b91-412f-ae75-fe3fe1a6ab51',74,124,6,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-3-1'),
('89cee8f1-3d14-473c-a1f9-d1d6c6a264e7','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-105'),
('89cf1386-f231-488a-bc2b-97e59ade6369','c1d864c6-97c2-457a-ba23-bab224e0f781',51,51,77,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-2-3'),
('89d06b2c-2f14-4b7f-bf84-623f87561ca1','cac592fe-4f73-47b3-b374-3028982419d4',75,93,103,0,'2025-05-28 19:09:19.363','2025-06-04 07:24:33.130','644507096-1-2'),
('89d178a8-3884-4e08-be1d-b8e2bf12beb8','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-45'),
('89d19df4-1c9d-473e-b128-379467f69b65','1a9dfce0-e85f-42f7-8b4c-64b52dbced4e',55,66,100,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-1-3'),
('89d1e002-ea26-4172-99e7-7cb4edf2f6f2','4858773d-333a-4197-a946-bf62338fc789',0,0,0,0,'2025-02-13 20:44:03.491','2025-02-24 13:33:03.096','613633231-1-2'),
('89d1ebdc-114d-4c36-8500-36719fabbf48','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-88'),
('89d2f0d1-6467-44f1-bd4c-bcba6ad06fbb','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-23'),
('89d48f16-8da5-4f48-918c-61b6dbad2d06','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',46,37,23,0,NULL,NULL,'478739679-3-7'),
('89da4a32-3bf7-41ab-8dc9-79c9b28e226e','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.551','221257971-1-2'),
('89dab3fd-9540-4bbe-81fb-c3762a6b46db','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-3'),
('89db4cc1-39d4-473f-8259-d1284f5d3866','41c40e8f-1ab1-4425-902c-c73cbea0722f',51,92,77,0,NULL,NULL,'644563405-1-2'),
('89dde6f4-4ddf-4275-8c86-4535ae41fb77','6f44b113-5917-40cb-9c98-9456f8c03518',178,198,3,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-6'),
('89ddf099-e701-4301-9fec-30ef8da7c36f','c98f6188-56c5-4870-be97-be71cf95f62e',28,11,166,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-22'),
('89e00203-7c40-4889-9dc0-da55db2c1890','924e48ef-5b3c-415b-b550-ff097e5bc766',30,83,200,0,'2025-10-08 17:43:50.390','2025-10-17 20:57:20.132','614901187-3-1'),
('89e152cd-3b9d-4ec2-beb2-ff65a85af878','953ed9b4-8d37-4981-a491-9ed5406ea97d',96,158,8,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-2-2'),
('89e2a09e-33bd-4137-8de6-0fc31e7d94d3','e72937d6-5274-40bb-a570-ab73ccdc0bff',61,70,12,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-5-2'),
('89e2ba53-555b-4f5f-91bf-ab8e65dc2f26','59e374c2-6e9d-43f0-a7b5-2e103296684e',93,70,234,0,'2025-05-09 18:43:49.654','2025-05-21 18:37:05.329','371160737-1-2'),
('89e3fc35-7551-40b5-82c9-af5c06738086','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-76'),
('89e4aaa9-3fd4-445e-934c-76c8b00021bd','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-36'),
('89ea045b-d7a7-4542-8f92-0739c534c71c','5aac8c34-51ea-4438-b73e-7d54bf02d518',40,25,76,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-6'),
('89ec6bcd-a55c-4b33-87f5-f2466201a5eb','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',190,70,95,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-3'),
('89f087b3-c750-4bbb-bcd4-324e761c83b5','bd1c7a9c-2cfd-4688-985d-3595ff25bc8f',0,0,0,0,'2025-04-30 14:29:16.836','2025-05-12 09:08:00.216','478746196-1-1'),
('89f09b69-0dcc-4f67-ac89-d34f5ec43091','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-77'),
('89f49bd6-e9a7-4f00-94e2-bbb337cce702','76c744b8-92cc-490a-9b47-df670d09d9d1',0,0,0,0,NULL,NULL,'695274055-1-4'),
('89f82ccc-6391-4c0f-b629-877104a14539','e54055a2-3c9c-4738-a808-7a4a31877ef1',55,50,50,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-22'),
('89fc86ac-ecad-4750-9fad-671b0cc039d8','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-4'),
('89fcb60a-d455-4d1f-a231-658940905a9d','646747fd-82ac-42f4-afc2-f8e1df40f0c5',51,8,143,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-2-1'),
('89fcf94a-05fe-4b19-b8e8-b5a685f1ef0f','808a4f1b-793f-4a15-808d-00c26a26c166',25,185,30,0,'2025-05-14 17:03:52.863','2025-05-23 14:07:52.050','319232330-1-17'),
('89ffff7a-f7c1-48e3-918b-ccf2eea4ece3','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-1'),
('8a02133c-af0c-40be-98db-98055f0cd709','a135c145-15f3-450a-819b-e82b427bc978',87,2,210,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-10'),
('8a046510-da21-4d0c-9029-1fc622565f33','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.451','2025-07-15 19:43:15.075','437222135-1-3'),
('8a05e9c4-4525-43c4-b0e2-429074e8d8a7','1cc0aa13-016d-422e-af4e-742c14842a07',83,57,102,0,'2025-10-22 13:07:00.774',NULL,'515829047-1-3'),
('8a06edeb-bc1d-4a9e-a44d-60e9628c418b','7a97860c-cf43-4a19-988d-d91cf377fd10',94,238,65,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.350','644985861-7-4'),
('8a09aa31-74cf-4f2b-9c06-20f4f5b891a5','9c87d055-322e-433b-9fd7-b8e890d8305b',86,22,20,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-2-4'),
('8a0ad398-dfc4-4762-9c9a-4a27543d0b3e','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-15'),
('8a103243-4239-4441-88cd-ce6040ef97cd','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-36'),
('8a127444-848d-44c1-b190-8f5180d26ab7','796fef16-71d1-4946-b8ba-54f687adf598',105,105,8,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-18'),
('8a138d28-4906-4c0f-a3ab-4bfd80ebd847','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-16'),
('8a15a367-af78-4801-9bc1-76be30e912f3','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',68,11,10,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-23'),
('8a17d814-29e7-4bbd-833f-0141c70c6b05','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-10'),
('8a1aab46-f939-4b03-a158-bd014f1e010c','291a2ff2-a042-49df-a88f-5eeac8ddabcd',50,37,20,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-8'),
('8a1b690d-c385-41b8-840a-c10883d7ab33','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-14'),
('8a1f1945-c654-4618-b975-bfbb4ae9b3f5','da854db4-c9fe-4508-a673-92723239b20f',0,0,0,0,NULL,NULL,'412346984-2-2'),
('8a202e06-7969-45df-b8ca-da4b05d978ca','3c799be3-cf4c-4ca1-9e86-e1a3e476c0da',65,102,88,0,'2025-06-27 17:12:15.671','2025-07-09 11:39:48.701','418120869-1-2'),
('8a2091b7-6aac-4588-af50-ea0280b098b4','49c326ab-5b3b-49e7-a781-28760709b5be',95,186,70,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-7'),
('8a2538ba-68c6-4827-ba4c-3d546725981f','7bbdae5f-e68a-4fe0-afa2-f1f09497e5cc',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-3-1'),
('8a259d02-d757-48ad-a3ee-9d0f0823c06e','c2ddad80-9393-4fee-af04-55166ef5c607',20,22,90,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.051','745946644-3-2'),
('8a2789dc-a078-4f67-9d06-c75eab20f6b6','b78519ec-4b79-400f-a709-a1f09256d30d',36,51,20,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-12'),
('8a281b28-560f-460b-bd4a-8689b2e0cf4f','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',140,100,75,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-7'),
('8a283873-cd36-49c6-b6a7-c576cb9901c9','5d68c437-9009-4a6b-8910-e785034e1ded',105,105,70,0,'2025-08-25 12:32:01.582','2025-08-30 18:26:03.668','278440694-1-2'),
('8a29dd30-4c5c-4e65-9016-a25f9074559e','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-4'),
('8a2f59d7-4b48-4182-b40e-a6204c2d44d9','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.862','2025-07-24 18:00:53.299','223444495-1-5'),
('8a30a785-d78b-4ed5-bf3e-f3b9e2f806b3','6f5edc89-0f5d-4bf7-8539-15ef3e153ae3',0,0,0,0,NULL,NULL,'428905379-6-3'),
('8a33730a-d25e-4801-b700-96300515a33b','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-12'),
('8a341082-07a4-432c-a96a-f29b40c58e9a','4eb9bdad-63ac-4040-895e-79400bb9085f',0,0,0,0,'2024-09-28 16:27:33.485','2024-10-08 07:57:38.531','454880224-1-1'),
('8a39fd37-cf49-499a-9dcd-7f9ac7e255d9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-107'),
('8a3c6d9d-872a-4789-8d50-e2f0aae25e0b','642202df-ca75-465e-8036-f34da2dad54d',52,75,22,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-14'),
('8a3fce21-3c4d-4ad0-a730-44ce1e7a5bac','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-78'),
('8a3ffaff-e01d-476a-a564-0d9fc1170f9b','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-2-6'),
('8a40d067-581c-4966-897e-b389e6423d58','99667d92-dbf0-44c9-b845-b66e678f2675',51,51,77,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-4-2'),
('8a439eda-bedb-4077-887f-b4ae92fa4e9e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-131'),
('8a4405cc-feaf-4250-a7cc-a1c213e72f7a','43024ca8-3408-4c20-962d-cdaf0ea11687',96,68,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-4'),
('8a4974d2-d03c-4283-90df-2152588336c1','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-1'),
('8a49bc87-f963-4f2f-a3a9-f256b1358808','571f0044-97d4-451a-a63d-b045acd7a606',238,95,75,0,'2024-03-31 17:55:16.198','2024-04-11 06:19:53.270','982164642-1-2'),
('8a4a8b55-14aa-4f34-abd1-0df4c39f08c7','7f086af4-7f94-4b2a-8e93-97605ab16c61',56,102,72,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.687','162733891-1-8'),
('8a4ec4dc-0f25-4ce0-9fca-828ac79db065','b2c78cf5-c58c-4553-bd14-49e83916894c',9,96,96,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-2'),
('8a525567-aeaa-4419-8b06-0925b2f5d8cf','845e0c76-772c-4d2c-86c9-e8d641b329e7',54,62,103,0,'2025-10-08 17:44:16.415','2025-10-20 06:32:49.151','831899043-1-1'),
('8a54c197-529e-44cb-b459-5e8631940383','845879e8-205b-444b-9d29-1e0a6fa08784',90,14,161,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-4-4'),
('8a56b656-532b-47bc-8f36-bc80ef2ba15c','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-54'),
('8a57c1bc-cc6c-4be2-a89a-f767cf0fff8c','a5e8964a-d12d-4dc6-b88e-55ea9e1549f6',61,61,75,0,'2025-07-02 12:43:40.932','2025-07-18 17:08:41.286','37140435-1-3'),
('8a589b24-4bf5-4d2a-b2b6-0510b405cc94','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-18'),
('8a5be55a-74a1-45e6-8438-966022a2859d','7e33f411-a309-4843-b994-1bcb7d71f292',100,107,60,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-2'),
('8a5dcad2-0fe1-4496-af28-60008c6198ea','5e1b92c5-0a78-4535-ae47-a667ddc85987',52,51,44,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-1-4'),
('8a5fdcd7-8926-4d9f-bc79-626bbd06d586','bcba86c8-98cc-483c-835e-d6a21f8a45b4',0,0,0,0,NULL,NULL,'70333177-1-3'),
('8a605e8f-f034-4e72-a1ce-5d42513ac037','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.159','223254418-1-41'),
('8a612fe9-544c-4322-a41c-c413592231fc','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-3'),
('8a6216bc-0ac9-4fbe-adb7-5114f65ad1a1','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-2'),
('8a641ca0-d86a-4a07-af11-c08301fe9546','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-10'),
('8a64d0e8-863d-45c3-a27b-2e5056457c83','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-6'),
('8a6777f4-f43b-44fe-8959-1c949568151b','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-13'),
('8a6967d1-26d9-4179-a0ed-74d3743a70ca','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:06.185','248135683-1-24'),
('8a6a324b-78b4-484e-b6e7-6fe33eac3a2f','7b68e44d-2397-492e-b71f-fe3fb99d892f',81,95,72,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-6'),
('8a70b72d-ba7f-4290-9a8f-2f494d9064a4','220fed8f-f96e-4af5-867b-ac05d11bda6f',58,102,74,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-2'),
('8a72c7e2-f427-477f-b9d1-3cd09965743d','f2026b48-8180-47f7-9044-d94056905698',98,73,140,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-1'),
('8a7406f4-1040-4e18-bd85-3a172d68002c','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-1'),
('8a740840-f1b9-4fc5-bc85-62a6ab189568','fff846e6-362b-483f-ba3a-df216849c545',0,0,0,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-12'),
('8a770e36-a9e6-4e9f-9a69-499760928c97','f9861f37-efe2-4e3a-930c-f694c4e10c6f',53,25,220,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-10'),
('8a7a2f9e-40fe-48ee-a77e-e361eccc9f95','6aee7799-2e85-45ac-8d17-b03d8bb86a22',70,90,100,0,'2024-04-08 08:57:51.902','2024-04-24 09:15:02.815','315752826-1-2'),
('8a7f081f-534f-403b-b1f8-b49ee70e8b7f','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-54'),
('8a7fc993-57a7-4651-a42c-f4f2efca9bc8','ed134a02-1a23-450f-b473-72a8e8cd94a9',0,0,0,0,'2025-03-24 16:01:57.284','2025-04-02 18:56:20.189','745724851-1-1'),
('8a830db7-7c25-4101-a388-68b072bb2c5f','bee352b0-739f-4e4e-92a3-3b8256a7e9e2',80,25,35,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-3-3'),
('8a83bf73-579e-49ae-8357-987e76467033','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-30'),
('8a854039-4683-4249-8d0f-3d5abc20925b','7c09f776-ffb6-47c8-8828-61389547804e',100,81,4,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-17'),
('8a89d470-ae17-486d-b701-0ca5279234aa','3987bcda-6531-4738-8815-187fd84bf71c',117,76,8,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-14'),
('8a8c4f35-a239-4fc0-809c-db45e215f83f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:12:56.186','248284003-1-138'),
('8a915712-0038-47bf-9b20-e1ae78ae1d39','58fe4c33-e268-41af-9163-4863a4d27452',108,56,72,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-5'),
('8a92851d-dc19-4d90-a6d4-4ccc006dfdaf','9811dbd3-4c24-47b3-8560-c8e0f8db7d41',70,97,98,0,'2025-03-27 15:05:28.240','2025-04-07 17:19:01.106','371696993-1-3'),
('8a931662-55be-42fc-a39c-74b51129f28e','8e39c973-c918-4ebc-bd24-9e7fc61de240',102,73,52,0,'2024-03-18 07:29:35.018','2024-03-26 05:54:51.119','428184423-1-7'),
('8a94cb05-fe44-47d7-9c1a-ce8a918a6a07','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-109'),
('8a96decc-a4c5-485a-8a59-04d9e3bf51a1','c6fb119a-d102-44f8-a309-82df366c405f',70,70,85,0,NULL,NULL,'478739679-4-3'),
('8a971ef4-5c43-43db-9bb1-181087a6c64f','f095d43a-8f6c-44f7-aaab-aade7799f4fb',115,59,94,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-7'),
('8a984156-0c27-4c44-a2d4-e1f449089623','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-31'),
('8a98d9d0-e323-4255-b751-1ccff0a89c96','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-25'),
('8a998cb3-4a3c-4d19-b71e-5c7fccf8f8e7','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.070','412586204-1-102'),
('8a9a13e3-d3e2-4e31-9d9e-dca407d69972','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-17'),
('8a9a323c-2e91-4774-a996-cae2ca9f9aaa','d8b997b4-f874-47ea-b9fd-067dee0368c2',58,76,102,0,NULL,NULL,'515128101-1-7'),
('8a9afdbe-fbb5-4dea-bcff-48150c6f8f98','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',84,33,7,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-103'),
('8a9b1993-e131-48d2-b0c6-394a2c2066af','88ec1b69-5cc3-47af-8aa3-9c3043171516',100,122,65,0,'2025-10-14 09:22:23.462','2025-10-25 09:00:24.655','478589258-1-3'),
('8a9c062e-3800-483e-bd7f-3d49df909be9','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-6'),
('8a9df2ed-5358-49f3-95ea-ae4c150ac310','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-35'),
('8aa1c251-ac8a-49aa-83c9-925627539026','a5e235f7-2218-48fa-9e8a-1680678939f4',102,77,52,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-4-3'),
('8aa53231-0391-4f3c-a41b-f3d6d8bc0a86','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-5'),
('8aa7dd29-3f9e-45c3-9cb0-96c7eb28729d','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-3'),
('8aac21ab-2c6a-401c-8e06-02542dc75d85','af69c5a3-87d3-4548-a650-720b69a4fc69',90,50,87,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.820','614143415-1-15'),
('8aaceaa8-a2fe-4bc3-9962-52e772c9916b','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',83,70,110,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-6'),
('8ab6f2ce-645a-42e0-9e7d-5eb0325f694f','047bf09d-242b-472b-97f8-46901b73eea9',91,123,9,0,NULL,NULL,'428905379-1-5'),
('8ab84b98-d238-4dbd-a974-66e7cc1b5822','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',110,110,82,0,'2025-02-13 20:43:42.872','2025-02-25 17:03:19.994','449693939-1-2'),
('8ab8562c-3439-48b4-95b5-9f9e9ec950db','d83c40d1-4df5-4c97-bc83-28837db95b2b',260,50,4,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-40'),
('8ab888fa-6017-4473-ab67-0e45aa43b650','b732088a-13df-4ef4-ad40-75866bda52af',57,56,87,0,'2025-04-11 13:41:29.010','2025-04-26 17:55:32.224','338607005-1-2'),
('8ab95f04-5a3a-433b-a994-45edf67135be','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-84'),
('8ab9c470-5e4d-4cee-8343-c999fea8227f','d249af0f-08a7-4145-9b4b-f81577563c6c',51,62,83,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.565','221345365-3-4'),
('8abc60bb-b3dc-4408-9bbe-19bad683a9e1','be99e41f-406c-4044-b60a-ad33dea43bd8',245,105,70,0,NULL,NULL,'319400399-1-4'),
('8abcb50f-34c7-49d0-a81b-fdedabc76eac','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-5'),
('8ac0e4cb-2180-44f4-bf2b-c34779039967','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-22'),
('8acc9f20-0cb0-429a-877f-6c3e40cafa60','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-11'),
('8acd2432-ff60-4478-a59b-f8f62ab9580a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-69'),
('8ad073a8-2d08-4b8f-975f-cf97ad24b6c3','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:11.454','248135683-2-76'),
('8ad3f752-4952-4fd1-bdfd-d1791918b5f1','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',43,67,18,0,NULL,NULL,'47816855-2-1'),
('8ad63908-fa10-45e3-9f53-d1ddfc0014a5','28a006d0-78f4-4519-9b69-fe1363cd8176',100,65,120,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.224','745869069-1-3'),
('8ad7b346-05d9-4384-b968-e39767b710be','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-38'),
('8ade52ce-f098-441c-b2ba-7f11abf5f1ec','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-37'),
('8adeca9b-1145-478c-ada9-23dc6fee536e','e8e041d5-7390-45f3-b4cc-314402912762',0,0,0,0,'2024-05-10 18:50:14.993','2024-06-04 14:24:46.948','478261585-1-3'),
('8adffd9a-ef44-4314-8ed1-882f21bf63b0','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-28'),
('8ae11a7c-a047-4f56-afba-5b76209e9fb0','9114ad70-d53e-4d1f-89c7-30585d0a43de',180,120,105,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-26'),
('8ae4fe10-f9d1-4aaa-8eca-049401b31613','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-38'),
('8ae51285-4a54-4e98-9f5e-cb6d4bf93529','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-7'),
('8ae5968f-0164-4deb-8369-791d0c1d13eb','5defa65b-c736-4108-94c5-e25a26e975c6',53,77,102,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-2-2'),
('8ae6b5ec-b8da-4513-9f01-68abe116f7a3','0dfa8c17-2a67-40e3-83b8-3d8d909e832b',90,210,60,0,NULL,NULL,'47865425-1-1'),
('8ae72815-7ec6-4d96-9893-d509991083c7','165f39fe-fa82-4afa-96c9-52f09a4b6d7c',35,45,35,0,'2025-01-20 11:21:21.000','2025-01-31 12:16:08.870','734460411-1-1'),
('8ae991b7-be43-4b7b-b00f-026a6df6f69a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.061','223441694-1-58'),
('8aebfe4b-64c7-4403-95c0-05f227c0b89f','69acd97e-52c0-45ae-adf5-ee013e52776f',51,59,52,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-6'),
('8aef9dd3-8b57-4f7f-b83d-abd945f51030','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-115'),
('8af1437d-a636-488f-bbb1-c3d3220c59a2','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-52'),
('8af1ca0c-d719-41b2-b1ff-db72d517c764','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',98,233,9,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-1'),
('8af27b87-39cd-42b5-9f1f-dae19f221b23','4869c334-4618-49fb-9d03-99d95654d12a',37,16,204,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-20'),
('8af36c82-2163-4b42-979e-623abb47869f','5fa653d7-dc76-4d81-960a-d297b9d1db18',56,76,101,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.981','221191139-3-2'),
('8af49e59-ee50-4fbe-b62e-7fb6297afbeb','8b16ecc6-bcbd-4d67-9bc7-fbfeea2940b1',103,206,11,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-3-2'),
('8af59a28-1ccd-4dfa-ae5b-6756fc9c64ba','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-14'),
('8af5d504-c9e2-49ef-b9eb-1a307170c7ba','5fa83bd5-c793-4df3-9fe4-54f56117638b',82,80,80,0,'2024-11-02 08:42:14.214','2024-11-12 16:17:30.024','750145910-1-2'),
('8afd0680-e81e-413a-b22f-4d2979342fad','8625abf2-719d-4d7f-b206-16948b318b8b',82,70,100,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.162','100972804-1-13'),
('8affb298-5a0e-4c7a-a64d-a74c9dad5c07','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-79'),
('8affff77-ccf1-439b-8288-3d9387f4a9f3','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-8'),
('8b0232c6-22b1-4570-ab08-15f9caae81bc','95668b5a-1322-4bb3-9d03-da02daf206d6',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-1-1'),
('8b02595d-e57f-4fb3-be9c-70968e25b809','94265c38-053f-43ac-95e5-6d1b08ae3c22',45,45,53,0,'2025-03-27 15:05:06.420','2025-04-08 15:35:11.106','517887763-1-3'),
('8b04b1bc-9874-405d-846d-19bcc001620e','bf9a9a10-03c1-4c3d-ac2b-24d040e1f835',100,85,75,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-5-3'),
('8b04f9ec-5260-40e4-8e1f-1dd65db2e819','f88c3e53-b711-4bcb-aa3d-9543580054cd',100,139,4,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-14'),
('8b0748c7-a580-42f4-8626-d51782c96e22','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-89'),
('8b078e36-95e4-4fa7-8af3-647cd9862170','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-4'),
('8b085809-fa9b-419f-9c98-5720d8a513a3','b56e3648-bb0d-4df7-af12-ae3aab1fcca8',70,70,101,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-3-2'),
('8b0bf978-4e8c-4ef1-9a77-19b815c072f8','fb752cd1-ddbb-458c-8371-2851b143968a',65,83,70,0,'2025-07-12 09:19:03.318','2025-07-18 22:03:30.292','98221051-1-4'),
('8b106663-a73b-4c24-a6ca-a5008e81a181','3f3bf1d2-c329-4e73-b2a6-5aa55d893969',95,230,65,0,'2024-12-23 12:00:35.871','2025-01-08 20:28:51.875','449329901-1-2'),
('8b12ed69-505d-4e60-96d1-82b93443a05d','0602416a-017d-4286-844a-6bc37caa79a8',83,57,101,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-3'),
('8b1496e1-f9f3-4967-baf9-25d526250efc','9d7979f3-a35a-4a64-97d1-4ba973786029',33,8,202,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-13'),
('8b20dba1-d777-4f58-b336-66561ba556f5','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',81,40,19,0,NULL,NULL,'428413605-1-11'),
('8b24280e-01ef-4432-b57c-a7ea963951b7','bf9a9a10-03c1-4c3d-ac2b-24d040e1f835',240,100,70,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-5-4'),
('8b26e0dc-5d6f-45ee-9d53-a4ce4429f351','b1cfee3f-4b3e-458d-b167-9e1d49c2621b',100,80,65,0,'2025-08-07 16:52:59.120','2025-08-19 19:34:06.860','745431846-1-4'),
('8b2750d3-8403-464e-83aa-429f7cee30a6','aae2318d-95da-452e-926b-e231bf06cabf',44,35,207,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-2-4'),
('8b278b58-26f3-4cfe-91ff-08f0c60401eb','b1c85abf-7d3a-462e-b9c5-1e1f7b7dc803',75,80,85,0,'2024-11-21 10:29:02.614','2024-12-15 20:07:20.068','112787965-1-1'),
('8b2aa1cb-0489-42e3-9bcd-77b5725bcce7','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-34'),
('8b2ee46f-2e76-4407-9133-32800af1f596','41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0',96,197,6,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-2-4'),
('8b303b17-22c1-4860-bbc4-a10b9ca7da60','af3cff3b-575f-45ca-b1a2-1535de311073',96,96,75,0,NULL,NULL,'011548428-6-3'),
('8b3088cb-95c9-4d65-8943-604a5ba71078','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-4'),
('8b323432-61ff-45f5-96f7-86a9b123da15','2a723830-d2b5-42fb-95ad-678895eae7cd',50,240,4,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-4'),
('8b32b21d-8065-4c15-8ad8-b2e245de6d9a','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-10'),
('8b33cbc0-a3e8-41da-b550-c62ea866c2b3','10713340-bec6-4848-aa12-a7c74e59c0cf',0,0,0,0,'2025-01-22 09:07:17.762','2025-01-30 16:21:08.969','47888654-1-1'),
('8b3a2f68-0f8d-4d4b-b45a-fbf3adf657ab','04dff17a-2b9a-4f35-a082-5684dfe5706f',240,60,12,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-9'),
('8b3b7122-ea88-4e2d-b1a8-1604c6702358','d0c01cd8-8089-48cb-8f1d-e521fc5f8acd',0,0,0,0,'2024-05-23 07:27:21.845','2024-05-29 19:00:18.557','745303298-1-2'),
('8b3ccbce-fa67-4abd-ab8c-fa76eff52f94','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-14'),
('8b3f0bd8-3cfb-4fa9-b681-79ba61a955ee','448d1ec3-338c-4b04-9018-fab26732c500',70,133,6,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.786','644523362-1-1'),
('8b3fab43-6ec7-40e2-ac8a-aa849b9a05e5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-102'),
('8b402866-a4af-4825-bf8a-87801713d1f4','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-33'),
('8b424c42-d11c-4b77-a423-359c1bd1ed2d','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-2'),
('8b44c37b-43da-4b36-93b9-6fd5a2c1b577','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-3'),
('8b46d50e-e527-4940-99b7-72010dbc51b9','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-6'),
('8b47072a-3891-4604-a6d7-44ed0d6043b9','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-9'),
('8b476cb2-24b2-4fb6-ba5b-8c612a470c1b','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',59,11,85,0,NULL,NULL,'478893710-2-1'),
('8b4a4487-8f4b-46a6-b6fe-0bc4bd4b343c','9c9ed202-3936-4137-8d05-f95328f6c3e6',0,0,0,0,'2024-12-07 09:32:02.893','2024-12-20 14:35:12.849','478675012-1-2'),
('8b4e726a-4672-4a04-9f97-9ed828394bf3','9fa21250-9753-4784-b45e-6a96c940a504',124,104,70,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-2-3'),
('8b4fb56c-d4e6-4425-a3e1-21c1abafb381','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-9'),
('8b50d2ee-e099-494c-a3f4-87c5bdc40202','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-111'),
('8b5239ea-eae2-47ef-a589-eb9f26db4e4c','7dbfac68-a166-481d-9984-d7ec9291dc46',86,86,88,0,NULL,NULL,'808690841-2-1'),
('8b524db4-a100-49da-b963-6ac215a5adc1','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-15'),
('8b55033b-2909-4921-ba4c-0039655342ab','e4bcf108-420b-4086-8851-146bc29ae338',0,0,0,0,'2025-02-15 13:31:57.714','2025-02-21 17:08:57.557','127281736-2-3'),
('8b5792e2-b5e2-4482-864c-b99d67536af1','058ec720-a3ef-43eb-a600-dd04b3b98013',51,51,77,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-2'),
('8b585b8b-26be-41b4-bb29-5eb01819dc88','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',58,44,18,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-11'),
('8b593d7d-5ad8-4d3a-b58f-42a6ee3359f4','9866a947-9974-4053-8415-4518842488fe',180,200,28,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-26'),
('8b59b188-3cb5-4839-94f6-b3f2af84de8e','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-6'),
('8b5a5718-375b-4ea3-af60-5019bcbdfe22','9d7979f3-a35a-4a64-97d1-4ba973786029',41,152,2,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-25'),
('8b5abad5-fdd9-4966-90a6-50cefc84c7cd','1a33dee0-770c-42ca-b23f-f3750f630a74',105,105,70,0,'2024-11-25 08:29:12.551','2024-12-03 10:00:08.315','976779460-1-3'),
('8b5c9486-7f5f-49ca-96ad-fb361f055184','eae44c12-6eeb-4042-97c1-e6abf8051619',85,80,80,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-3-3'),
('8b5d4f2f-5bb7-42c1-b3a6-319852c75ca9','457dff53-59ea-40e0-bd36-d823bc862d01',195,92,70,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-1-3'),
('8b5e8726-74dd-480e-8df0-a3d44eae511a','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-72'),
('8b63c438-9954-438d-9503-35c3ae956c5a','afd7f71c-d1fc-484f-b72d-f986503df4f7',220,60,52,0,NULL,NULL,'703266692-1-1'),
('8b659ae0-e39c-4fcc-9a88-45d9ddff1ff2','15838be9-2a38-4e80-b613-df9538785c9f',29,55,105,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-2'),
('8b6aae1d-8f9d-476b-b33e-20b2b7484417','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-39'),
('8b6e1996-49db-48b8-8005-de419bb7e6c8','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.103','478593603-1-13'),
('8b6f1d21-0e38-4f27-93d5-01325b216373','af69c5a3-87d3-4548-a650-720b69a4fc69',60,4,76,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-22'),
('8b70b615-fcc0-4371-89e4-d3d3efbb5042','9dbc2d72-5e19-44c7-86df-bd889dde4163',0,0,0,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.704','786668251-1-1'),
('8b714178-3401-4659-af37-20eff8b58bb5','b2d959b5-31fa-467a-8e1f-cefc0166a15f',217,25,32,0,'2025-07-12 09:20:41.418','2025-07-22 13:22:57.741','803961620-1-4'),
('8b7b201a-c200-4a0d-b623-133177fccefb','19c6a32c-4384-451a-aaa5-dfc264ab827b',72,52,95,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-14'),
('8b806814-62c4-4fda-a950-4d621cc75a65','091fc5f3-cafb-4a56-8101-89c4a22e01b6',0,0,0,0,'2025-02-23 12:38:58.756','2025-03-08 13:58:12.078','517291063-1-2'),
('8b80c225-71ac-4e31-9812-5a1a15e446d5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-138'),
('8b84e312-ce3b-4384-8c00-8c08ec68cd8a','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-40'),
('8b86136f-f2a0-4624-b5e2-7ed9706810f1','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-8'),
('8b86940f-9365-47cd-a4bd-52cf26e633df','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-97'),
('8b88a384-8bc5-4bf2-be87-03025b0b3d67','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.793','2024-10-08 20:46:31.146','745972164-1-6'),
('8b8990d7-cb8b-40dd-a6e4-10450ece38f0','e7f31a78-648d-4a5e-9111-1bf7db38dd79',208,44,7,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-21'),
('8b8b9e68-a0c4-4399-b136-46b6262dd8ee','43f2900d-96f1-458b-9b9e-6777ac110ab0',0,0,0,0,'2025-01-06 13:08:20.186','2025-01-09 10:06:25.424','478643015-1-5'),
('8b8c014c-7276-4809-8e9f-2e1d1a73e4b2','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-42'),
('8b8cbf55-c438-4640-b5ab-f654d3e74dc5','189b9e28-3fea-4905-9c4f-022b3f29043d',97,80,70,0,'2025-10-08 17:43:34.937','2025-10-17 06:14:56.161','531629494-1-1'),
('8b8fb0b6-3592-459a-81fb-d640e80d6988','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-57'),
('8b920dfb-321d-4b5f-b318-cc94e37f19f2','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-59'),
('8b9290ba-61c1-45a0-bc14-546e75458a61','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-2-4'),
('8b9354a2-c1ac-48ea-b810-066c6469251c','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-10'),
('8b937aa1-a80d-4bf6-b2e5-2481e07a9b3e','42dacb31-b711-4374-9f4e-97576b6e7abb',97,40,25,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-1-3'),
('8b9445d1-fa6e-449a-a3f0-3b53a7fba050','cc7dddf4-427f-4a79-9cec-d95529ff2c95',15,2,177,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-8'),
('8b978352-5f86-43f8-bc74-ea505205acce','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-22'),
('8b98d758-2501-45e9-9671-5e8d08710f14','9212dfa8-08b3-4e92-93bd-a594eaf017b6',90,54,102,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-7'),
('8b9c2c71-9845-458c-a302-81be6652eeae','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-38'),
('8b9d171d-ea43-470d-9330-8d5303f90223','151b16b6-6420-4fd8-8cb8-814361edd1cb',0,0,0,0,'2025-08-21 07:15:26.144','2025-09-04 21:03:37.661','531245816-1-3'),
('8ba0cbb9-81d9-4e1a-80dc-fdad941adebc','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-5'),
('8ba1130d-25b6-404e-b2cf-5b5c594eb246','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-18'),
('8ba1a658-0660-49c7-977e-ad6f46abf7fc','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-19'),
('8ba3a1ff-d52d-42ad-8b69-9aa3e010e034','ddfe7d66-74b7-4072-ba98-b8104a9db616',57,48,7,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-4-2'),
('8ba9e3c2-22d1-4a33-8f5b-4a088256f0c4','8d63ddf2-2a6e-45d5-9ceb-635a8d8500ba',53,100,73,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-2'),
('8bab6de3-4da6-4ec2-a570-e9841316a7d5','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.407','412411011-1-1'),
('8bb249c5-3324-41c1-9696-335e2da854e2','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-70'),
('8bb342b3-7c9e-44df-8208-4887007b1a14','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-53'),
('8bb53c90-3043-496b-9bf2-c58eaaff9aa6','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.899','248383650-1-14'),
('8bb59dfa-8f24-47bb-90c2-65c8d4063fcc','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-3'),
('8bb6a8fb-d6ee-439a-9860-5cdcfeff75f3','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-71'),
('8bb6dc46-9d87-4310-abc3-ff3b956abc8f','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',18,50,84,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-24'),
('8bb98e87-9b96-4228-b5c5-9970a70e5944','9d2d299f-b0bd-451a-a318-5c7d807cea4a',85,57,110,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-3-2'),
('8bbd4831-59bd-4791-ad36-bd3ee2521495','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.251','2024-05-21 18:45:12.078','478681830-1-6'),
('8bbd8776-00a0-446c-8dc1-7e796fcd1534','17628264-1528-4825-a23d-e787296a2c4d',100,63,142,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-3'),
('8bc0cf90-7221-4d41-82df-11b1c909d6ac','e8dc151e-1148-4a48-ac2a-d4fb2c761969',220,7,49,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-8'),
('8bc38e61-0073-4f5d-ae73-79d7579e9a65','052ad905-3da0-483a-aae7-9d36b31da379',200,160,3,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-4'),
('8bc50956-0ca1-49bf-87d5-646b73b68f46','5ea4b207-b05c-4931-bbd1-648b6933aae5',60,93,15,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-8'),
('8bc57dbd-01d0-42da-a62e-9e2f31d41229','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-16'),
('8bc84baa-6732-45ae-b280-b9e3ed349d5f','0009aeec-e682-465c-b701-363a3ef377a6',62,72,103,0,'2024-08-20 19:22:25.325','2024-09-03 15:32:53.772','655307091-1-48'),
('8bc8b2b4-0d2b-463f-a6ec-3b31c96d991f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:12.297','248135683-2-72'),
('8bc9bc2c-d9f5-4711-a92f-5f524fe56c5a','af53dbaa-15c4-4117-8048-34fd042df2fb',50,40,85,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-2-1'),
('8bd580f7-e08a-4b85-8aed-81f52e649eeb','c0d1db10-6433-4c30-82a1-b54f8d2a6e46',83,101,57,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-3-3'),
('8bd8c9f9-ee3c-4d84-a432-21155554599c','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-8'),
('8bd9c0bd-5268-4332-a972-51e5c41c630f','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.201','223867751-1-53'),
('8bda2091-1339-4990-ad69-094a729c9dee','bf2fbd97-6d0f-4724-b25e-47e019854e49',192,104,16,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-13'),
('8bdadb7d-3d50-4143-b1c3-58e46ea9928c','17961e89-0ed4-4a9f-ae7e-3a944e1697e0',116,65,230,0,'2025-08-07 16:52:34.256','2025-08-21 08:13:02.684','371441090-1-1'),
('8be2287e-56b0-400a-8f0a-296f72f98634','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-7'),
('8be614e9-de6d-445f-998d-cdae027899a6','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-112'),
('8be7f8c0-9843-4bc7-956d-78f46feab4c7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-87'),
('8bec0f24-9466-418e-b00c-9c052a381ad9','49c326ab-5b3b-49e7-a781-28760709b5be',41,41,25,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-12'),
('8bec1957-45b7-4b7d-a618-15d77aaf46b8','ed097511-c426-4ff2-b940-1f98b2a1f4f6',73,53,101,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-1'),
('8becac16-99aa-4f94-825e-1e9e912dcce8','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-1'),
('8bed617b-8b11-4ac0-9237-ae1038d9335c','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',62,155,6,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-3'),
('8bedfd06-488a-43ef-b535-af4aa2afa6cd','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-4'),
('8bf4679c-4307-42fd-8dcc-4ea4b3b4bc97','53a40750-ae01-4461-a12d-633dc7c9cfea',105,73,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-2-2'),
('8bf601fa-55c1-459a-88f6-e6979e4eb07b','a3497272-7b57-49fc-a872-19dd147319a3',0,0,0,0,'2025-10-25 08:59:19.807',NULL,'478646824-1-1'),
('8bf6c32c-37b5-47a2-ab5a-96474a458b36','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-39'),
('8bf890e6-66b6-402a-b2b4-7923784c885f','01ff323a-2bdf-41db-bd07-b6903d6c33a6',93,64,7,0,NULL,NULL,'371117320-1-3'),
('8bfa1b87-6b2e-47ec-ba21-4c8be8e6348e','ce4976ba-e974-4470-8acc-c28f5a58a2e9',157,16,16,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-2'),
('8bfa5b71-938a-42b5-8e97-e10632f147f2','0009aeec-e682-465c-b701-363a3ef377a6',100,97,65,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-49'),
('8bfae568-e7ef-4aea-b668-8b0e01ec4c70','0cc39437-8ee1-47ea-87c2-b9fe770c2259',37,30,20,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-9'),
('8c00fd17-2758-45d6-8a7b-a7dc5c9f08bc','138edf36-d166-4335-8560-d9873886e31c',77,100,9,0,NULL,NULL,'745189997-1-16'),
('8c01d397-16de-4cdb-9634-81aee13697fa','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-7'),
('8c0451ae-87f3-436e-a31a-e035b2491b4d','9fcd93a8-b630-4700-801e-4dd9330828e3',159,199,4,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-20-1'),
('8c04db72-46be-44c6-93d0-82c49c84dae1','3da17157-28be-4bae-8dcc-745d0e93e591',45,8,214,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-29'),
('8c075a04-93a6-404d-a6c9-df5c759bd8c7','141eb86b-6a27-4ef2-9554-ac0a117fe5e1',0,0,0,0,'2025-08-27 19:39:58.291','2025-09-06 07:19:22.991','371201111-1-2'),
('8c076bcb-c157-401a-a666-51404e1206f5','b6bcdb5c-cba8-4b50-81aa-7aa8e9eb573e',75,95,125,0,'2025-08-14 08:21:39.050','2025-08-21 08:14:06.251','334206952-1-3'),
('8c07cb81-bb3d-4034-af51-0f69355370e2','d2a27438-077d-44ac-ac5a-141341739e32',160,200,30,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-9-1'),
('8c084277-7f98-4d6e-ad42-1ae4b3d03329','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.206','2025-02-27 06:59:50.873','910775394-1-17'),
('8c087f0b-4023-45dc-b1f9-894630eab907','e3ad38ad-67b7-48ef-acdc-c2e13831e843',95,80,68,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-3'),
('8c0b262b-eff0-474f-9c1d-57fe68e3c2dd','4a5b7db2-dc5e-4f39-972a-37093584e9dc',106,123,8,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-16'),
('8c0bb46a-e18a-4dd8-b8af-4cec22ea4a39','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.149','2025-09-09 18:00:33.388','412315808-1-88'),
('8c0c31e3-03d0-4e4c-a3a0-9645702d2e05','6ab69d31-d80a-42c2-9cbe-a5ac3f24afe4',0,0,0,0,'2025-03-13 12:21:45.223','2025-03-20 18:08:17.357','745297087-2-1'),
('8c0d6f1a-8811-4142-9f61-540b8e1aec91','d83c40d1-4df5-4c97-bc83-28837db95b2b',215,60,5,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-41'),
('8c0dad80-1d1c-4e9e-8bac-f508f938dd30','4301b768-4818-4e74-a6d0-12a33474f5c6',13,58,81,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-16'),
('8c0fb266-6161-4132-bf92-2d91ae4ccfe5','9078f690-7464-41bd-aa0f-d35d75158aed',100,100,84,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-2-3'),
('8c12d1b0-0bd9-4ed1-ac51-0ddb87e4d2ce','75a1a1fd-c682-41a7-ae5e-306627043bc3',56,66,102,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-2-4'),
('8c14020e-2f0a-405d-8dbc-155cb39982ce','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-19'),
('8c14a475-e9c0-4ff0-a0a4-d06133cb79cb','fee6d28e-ec96-4152-8bd2-97598ebbd691',43,43,77,0,NULL,NULL,'598604443-4-2'),
('8c1602e4-d23f-449d-b15a-a4771d0742bf','0d90ef6d-e963-4a99-bbbe-e4ca67429574',59,10,220,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-1'),
('8c1616dc-8025-43c3-b327-2682825df4c4','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-15'),
('8c1794ba-e7e3-4ccf-8e17-4003796bc659','5603bee7-2924-427f-8ac2-cc504126f908',100,160,70,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-2-2'),
('8c18f6b7-6e1f-4c63-8554-df0eda126848','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-6'),
('8c1b2758-4123-40a0-a8cb-ed6c6679b928','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-16'),
('8c1b6da5-2772-4d35-88b1-6fa98251cb05','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',110,170,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.427','319911664-1-2'),
('8c1e4b4e-cca9-4b81-aeb4-e53816affb11','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-18'),
('8c1e88ab-d20f-40b4-92e2-67726687db6b','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-72'),
('8c2468b3-e984-46ea-820c-7ef36b60196f','ed097511-c426-4ff2-b940-1f98b2a1f4f6',73,53,101,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-3'),
('8c266a5e-75ce-475d-8941-9041dab4ac37','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-33'),
('8c286bed-97de-40e4-867f-3bb34f43f823','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-2'),
('8c28fc89-f6a1-4eb5-bdda-42740ea17e5a','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-1'),
('8c292be3-3c38-478e-9c4a-a87eb0c7d042','a5a7d3b2-17a3-4f76-a55f-01181e93ce3d',56,82,101,0,NULL,NULL,'437335093-1-3'),
('8c2b9d01-a273-441f-b206-f19aae31dd5c','e99230ad-efaa-4c1c-b5b4-a16b35f81bcc',105,73,36,0,'2025-06-26 10:30:01.218','2025-07-01 19:00:59.515','745619301-5-1'),
('8c2d8f71-f14f-42dd-8ad1-ae7b264fc5e7','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',270,75,14,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-8'),
('8c2fe6be-1dc0-465e-8715-3475145255c8','220fed8f-f96e-4af5-867b-ac05d11bda6f',81,6,81,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-8'),
('8c310075-98a6-4671-8f5e-d4523b58e6ab','39478666-fad8-4b04-b7f5-a9bfd5e65c37',75,53,96,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-2-1'),
('8c347cee-ffcd-494a-81a5-e1a972e6de65','c891230b-a98b-467c-9f5a-6b1fd89f1dde',60,92,230,0,'2025-06-14 12:48:25.371','2025-06-23 09:30:00.019','982578025-1-4'),
('8c367829-b9e9-4def-b79f-47ce8d2b2d17','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.206','745715303-1-13'),
('8c381173-e726-41d1-bed9-8a95ffbaae3f','83902671-5e3f-46e6-98da-fea889e40b25',32,8,177,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.351','644985861-8-3'),
('8c383d64-7101-41b5-8946-5d5599fdb9e1','21b92c18-fe01-4738-a64f-22357aa1711b',53,76,102,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.271','01914447-1-2'),
('8c3880e6-a5a4-4e8f-9a2e-bc4d00a8d14d','b16256b1-d6a2-448b-a170-4c574127a57b',51,72,20,0,NULL,NULL,'745189997-3-12'),
('8c38c40a-1731-4413-a6ca-169ff8aaa9a0','cf16ee0b-0882-4d38-9eca-1e0888101309',95,95,80,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-5'),
('8c38d43f-e077-4687-aa40-6bec1dc2c1f5','e2e1bcbe-65c1-4fa4-a6a0-8770dcb1cb67',92,9,183,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-2-1'),
('8c3c0f71-0410-4fbb-a6ab-57f378494b43','d1bf45f5-0074-4f90-aa36-647a6e5b5b53',71,44,44,0,'2025-04-11 13:41:52.989','2025-04-23 17:45:39.776','613853408-1-2'),
('8c3d781c-78b1-4dc5-8ab4-b4cfe2a6eb20','30506096-717b-49d6-916d-e53b4af1ac5b',99,91,65,0,NULL,NULL,'644303406-2-2'),
('8c41183d-018f-4e6b-81a6-5d3513155bdc','ace7ef1f-bb3d-4e4b-b44b-e8e0fc39c5c8',176,95,65,0,NULL,NULL,'613592756-3-3'),
('8c4266f1-5b6a-4424-a053-20e0e375de7a','a3b52076-ddc0-43e7-bdcd-781801f338bb',45,60,106,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-3-2'),
('8c4588bb-134a-496f-b840-9888773c6e4d','91fb1a96-2420-46ea-af10-b13095d4de25',0,0,0,0,'2024-10-11 16:08:59.506','2024-10-24 19:13:00.054','501339138-1-2'),
('8c47795d-b74e-44b3-b781-a87623733a33','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-46'),
('8c483513-ab9a-43b8-b6e3-d966529dfde0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-72'),
('8c49706b-2023-4d3c-854f-2a4e82872499','53356ef7-7c3b-4558-868b-c1552ff1d067',95,102,65,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-2-4'),
('8c4beaab-df9a-446e-ae9d-718f3e029ffc','17628264-1528-4825-a23d-e787296a2c4d',100,63,94,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-2'),
('8c54f720-4a9b-4c03-9aab-1a9151401e8a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-22'),
('8c573f05-9f0f-418a-b979-c1933903497a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-69'),
('8c57b465-b3ed-47db-8e70-082c881c68c4','19c6a32c-4384-451a-aaa5-dfc264ab827b',88,88,7,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-15'),
('8c59970f-9110-4d54-aa8a-30d4b1cad7d1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:06.861','248135683-1-234'),
('8c59b472-bf69-4931-b5a1-8b862778e9cf','e8024068-53f6-4221-b217-9d62a4cdb318',115,201,17,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-2-2'),
('8c5aa2d8-6832-479b-889a-e609fa9f41c3','cdab8feb-4b24-4e8a-bc95-98fb1259890d',56,77,101,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-4'),
('8c5b04b2-729f-409f-9a90-ba352133710a','bfde6081-8376-4df9-8f57-774c35ed9954',105,125,70,0,'2025-10-22 13:06:44.530',NULL,'959658567-2-2'),
('8c5cb5a0-6486-4d04-a2fc-58de2d4e47a1','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-29'),
('8c5ccc86-ae4b-4ff7-91fb-6c8299c3d4ec','6cf15506-e6d2-496a-a50c-1bddeb987a1f',48,48,55,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-4'),
('8c5d4748-aed2-47dd-94d5-23e75574b3c8','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-18'),
('8c5f8dd7-b946-4ee6-8eac-337ddb4ea578','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-51'),
('8c623faa-3f06-4a36-b983-06ab9e5f6f27','a5506c59-0e9f-48a6-9b69-13a5163cf994',56,84,8,0,'2024-09-27 14:06:43.397','2024-10-05 11:44:39.855','517558560-1-9'),
('8c6a0288-91f5-48f8-824d-4ae24ca900ab','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-17'),
('8c6a9b09-33cd-44a0-a82e-74d0b0ea4afd','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-4'),
('8c6aa43b-34f6-47cf-a788-14af8c8f61c1','72b133d5-cf9f-4ffc-91ba-95b1bc6c10b9',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-1-1'),
('8c6b2c13-ead8-4d47-ab45-d343797f23c2','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-47'),
('8c725d42-0a5c-465c-97d2-f12e7e70c9c3','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-73'),
('8c774d3d-b932-492f-8734-5c4ec3aec688','b4183fd9-691f-4e50-aa3e-1185b3e78cff',220,92,70,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-12'),
('8c77e937-65c2-4e9b-8b75-1393691a6fc9','2f48d0ed-28f5-453d-8672-06427e42d843',94,59,8,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-2-3'),
('8c78d87d-f4c7-43d3-881b-cb2a2e58af25','4858773d-333a-4197-a946-bf62338fc789',0,0,0,0,'2025-02-13 20:44:03.491','2025-02-24 13:33:03.096','613633231-1-5'),
('8c79bb94-02d8-4589-adf7-9a4cb99cee4e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-62'),
('8c7be421-ea77-43d5-9606-3438fa94dea6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-21'),
('8c7e5af9-6009-442c-9f33-68c8002504f2','bd29119a-537e-44bb-96fd-8130d2d111e5',33,35,35,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-3-4'),
('8c7f1079-1d26-4997-8b9a-3307c4f4055f','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',54,81,103,0,NULL,NULL,'478702481-4-3'),
('8c7fde02-6040-4408-b2f0-81eef6aed99e','7f086af4-7f94-4b2a-8e93-97605ab16c61',230,95,75,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.687','162733891-1-3'),
('8c825e6b-66dc-48fb-a553-5be8e8a78a2f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:07.422','248135683-1-213'),
('8c86ce1c-d929-42bc-ba0a-244e8306e048','5ab06033-6474-40d0-adfb-4d7de8d9eb91',115,61,18,0,NULL,NULL,'91022025-1-7'),
('8c89e371-ca3a-48b3-947a-3d98d28793a9','56ccf024-8de0-4c44-ad1e-db1438dbb90e',52,75,100,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-1-3'),
('8c8aa900-9bf8-4570-a444-580bc256bdcd','940732e5-0ff2-4104-8730-71ae631a2346',93,260,6,0,'2025-03-24 16:02:12.814','2025-04-01 09:23:21.072','338691111-1-2'),
('8c8c7f85-4f16-4b9c-bcf0-d32bd9eee568','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-12'),
('8c8d12d7-f057-43c1-9501-392c084f1efc','fb58f438-30e4-4e01-af6e-6378e27a11fe',133,47,12,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-13'),
('8c8e86bd-4fb6-48a3-9b5a-779f0ad32d0e','72fb829c-8230-4d8d-9137-c937d756af88',0,0,0,0,'2025-02-27 16:45:25.397','2025-03-13 09:28:37.647','614680407-1-3'),
('8c8ee122-77c4-43cd-b7dc-6c3a5366ca5a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-66'),
('8c926e64-b9a7-4aaf-94af-d26ca1ec3971','b44449c8-5efa-4085-bd2d-0a3594587af9',45,150,79,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-3'),
('8c95cdc1-a241-4131-b199-3f1bb0f16a68','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-147'),
('8c95d8c5-8c6c-4dd1-97e7-6d14f26c1fa2','ce4976ba-e974-4470-8acc-c28f5a58a2e9',16,16,105,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-10'),
('8c9a0d03-a9ea-4a92-ad7f-a5b1d723f1dc','8465c9cb-ffbe-4de2-aaad-a9d0c676a4d5',84,57,61,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-2-1'),
('8c9b70f7-ac5b-41e5-8225-69eaf72549f0','d0179e0b-1e47-4301-add1-8a61b9197115',51,51,77,0,'2025-07-26 07:41:47.970','2025-08-01 13:39:23.236','675124573-2-1'),
('8c9be730-d26d-4a65-9392-5eb0ed782dd3','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-99'),
('8c9d12c3-6db7-4831-b44c-d6cdbb8052e7','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-92'),
('8c9e8dd7-aa81-48ee-96bb-98544245aa9e','f3d50b35-2f52-4ebf-8cc0-0cc77835375a',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-4-1'),
('8ca0001e-031f-414e-acc8-2e00996825d9','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.242','2024-11-09 18:54:14.451','412441586-1-5'),
('8ca2e48f-45d0-46d8-897d-a331c85dd099','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-24'),
('8ca2fef7-747d-46a4-9f72-b950020540fd','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.930','2024-04-29 09:07:18.395','41245861-1-59'),
('8ca707cc-2106-4761-a535-3549695bb0e1','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-14'),
('8ca80be2-6b29-4a3f-aa9b-7cf4193261cd','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-5'),
('8cad8a25-f0b5-450b-9fcc-6a22cfbc07cc','38ea6d71-f51a-43ce-a3ea-967bdd9f527d',149,110,80,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-1-2'),
('8cb05e17-bcd0-4c73-b40a-1b241a742fa5','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-5'),
('8cb1256e-40ce-4b7c-a82c-04d5e92c50b4','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-28'),
('8cb33eb0-6172-434a-928f-81867f8e5ba8','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-4'),
('8cb5947a-4b5b-43f1-aeec-05dd7895094a','7cf524b9-0e83-4963-bfc3-863110305d5f',38,25,211,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-2-3'),
('8cbc7fb2-26d2-47ff-a386-643fd40270b8','7defd633-f7ab-424d-8029-028d1b045752',235,100,68,0,NULL,NULL,'501119446-1-2'),
('8cbcb1fd-5a78-4cb9-836d-81e88e484e9f','145acb30-1c39-4fcb-b4a1-ded11d8b7586',96,96,80,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-6'),
('8cbd3bc0-e240-4553-81de-5a99acb0dc3c','9b1dd344-e23e-43d0-a03c-7f3b62f2b24c',0,0,0,0,'2024-10-11 16:09:17.348','2024-10-23 13:04:02.940','745924426-1-3'),
('8cbdc28f-7fae-4818-8e2e-2fcf0ecbb883','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.344','478623446-1-1'),
('8cc00623-678b-46a0-a2cf-e7de9d108e49','5fb48abc-0e89-4676-848a-05c84bfb094a',96,186,7,0,NULL,NULL,'613495902-2-3'),
('8cc2420b-581b-4dd1-bf63-300fcbd16163','640b66f6-160e-4841-a704-93345a8388a8',100,100,80,0,'2025-08-22 20:28:38.630','2025-09-03 06:11:58.365','437870707-2-1'),
('8cc2f080-5d8b-497b-b544-6c8caee0266f','b9d10e45-08f3-4b6c-adf0-6b6da3ea6318',81,56,110,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.847','437551575-3-4'),
('8cc3ab0c-25ac-4a50-9773-5f529ace793e','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',66,15,55,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-22'),
('8cc58a00-2ae3-4920-a942-c244e7d551d7','841f7f01-a7cc-440b-859e-dea7f085dd74',79,107,56,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-21'),
('8cc8f930-325f-45fb-93cd-d2fedbbff3e7','77ef7941-3e4d-45e3-af8a-a47e8d0ff2bb',0,0,0,0,'2025-10-22 13:06:57.242',NULL,'745942521-1-4'),
('8cc92fd8-8e86-4a20-8541-eee76b74c73e','c7fce8c7-acfd-4c12-8db5-81618a4b211d',83,190,1,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-15'),
('8cc995a6-7b7c-4b1b-a17f-b7545a51e588','a3f658d0-43c5-4d1a-a346-44082f79ff25',100,220,65,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-1-2'),
('8ccbc418-f44c-463e-9657-4fba3996a1ca','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',32,23,220,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-15'),
('8ccfbd41-779d-46b5-a9d1-4762e59f4dca','5397f272-f4a1-44e9-8d2d-7ab3baa0cd2c',230,100,70,0,'2024-03-16 14:34:17.339','2024-03-27 11:09:56.689','61467762-1-2'),
('8cd25602-1fa5-49ed-a9e7-bf99b4f78eb0','5e4d8700-ecec-4c1f-b393-843da9941edc',0,0,0,0,'2024-07-20 16:33:35.781','2024-07-25 21:24:38.399','9824380-1-2'),
('8cd5ee5e-4f6a-4457-b5d2-928b89a42357','4fe1f522-463c-4be9-bfa7-8a0345fe9fe9',51,51,77,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-1-2'),
('8cdf12fa-2579-49ed-8451-c263ac52d8f0','2c1c23ab-0126-4156-8f58-8693f16e4bcb',0,0,0,0,NULL,NULL,'959626673-2-2'),
('8ce286ce-108d-4c48-91e9-5c3d020fcfd7','019096b3-5c13-43b0-9be5-d87a00c3b660',57,81,107,0,NULL,NULL,'745883224-1-2'),
('8ce2a223-522f-4d70-a272-705f88908abf','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-45'),
('8ce37036-b572-466e-b7d7-65d28671703e','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-36'),
('8ce5b558-05c4-43b9-b5cd-6bf6d9478671','ae89ec40-3826-4229-b966-6415fc238b56',93,185,50,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-2-2'),
('8ce5dfac-5662-472b-98bb-cccc0dca9396','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-121'),
('8cec5bfd-ee45-4250-b797-9285bb29f968','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',85,7,156,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-73'),
('8cedc13c-8daa-4bca-9c1d-e5b55c65586f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-15'),
('8cedf28a-16a5-43ce-98bd-22bc30bd2795','c71fdc71-df3e-48af-9323-d534b0931ff1',53,8,86,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-10'),
('8cef55ff-9d85-4275-85d6-bf259a1678de','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-9'),
('8cf6f3aa-a77e-4b60-9e76-c3f96d7f6c4b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-80'),
('8cff935b-c4ed-4e1a-908e-2aeb9b888ae8','66ac3e8e-58c7-4a1e-bc6b-2d9b6a2a311a',93,30,200,0,'2025-04-15 16:01:26.830','2025-04-26 17:56:30.038','745770556-1-4'),
('8d0145b9-f7e8-4fe7-91fe-cf497ea29390','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-8'),
('8d025a2b-b70a-4f95-af4c-3bda6c19afe0','65d184ed-1d0e-4276-b9f7-8b50ba501ace',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-2-1'),
('8d0326ab-79eb-40c2-9b23-aaa4b706aefb','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-10'),
('8d0371db-40e0-4a80-958d-c9d92c8f8192','d128f7f7-dcbb-4f80-a8b5-2f4f29fa7159',36,215,49,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-3-1'),
('8d044350-9a4c-4bf2-b72d-c9a4ac4c0e30','640f51eb-2622-4aa2-ac0f-cc3d59a61df2',75,63,56,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-11-1'),
('8d0e498c-7161-467b-9ed0-d0f8baa8a834','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-10'),
('8d10e9e5-a849-4d83-a3b4-013a4adfc53c','8b053eda-bba1-4f32-b6ec-244e823db5ac',86,86,8,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-2'),
('8d18a7c2-7d12-4590-b5e5-e6f133802f84','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-9'),
('8d18c30b-7a45-4303-a246-bdad69ca3a84','7de47ad7-283e-4220-87dd-ec74ad29a390',137,145,12,0,'2025-07-26 07:40:26.443','2025-08-04 06:40:09.551','428761245-2-1'),
('8d18c54f-2a79-488e-ac00-43e45363752e','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-12'),
('8d1ff79b-da77-404d-a6ad-0ed4d98f38c1','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-7'),
('8d270255-4192-4f3c-ba19-005ae2bf5ace','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-32'),
('8d2dfe6d-b52c-46cc-9637-235390c17999','dd674d12-6366-44f2-9aab-4044248c2020',76,6,128,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.134','644847294-3-1'),
('8d33339e-4ef1-4c89-99cd-27fa8f969ea4','7bb97173-116d-4058-8bc9-64fda10a5901',110,110,65,0,NULL,NULL,'531575051-1-2'),
('8d377069-d1d5-4881-9540-fbb11f943562','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-63'),
('8d3a635e-72a6-420f-85bc-621ce3688274','5ab2416a-7bef-46c2-b80c-b65bde62a234',41,17,67,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-2-8'),
('8d3ac4d8-d847-4b6c-ad4d-08d813041666','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.337','2024-04-17 10:16:05.103','478593603-1-7'),
('8d3ad822-b215-423d-b855-b0b7ce16aaae','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-37'),
('8d3e5c24-5feb-4899-b6e8-702a85a4b8bf','0bbc5c7e-04d4-47a1-95a7-a4fb473803b3',42,67,71,0,'2025-10-09 08:39:52.750',NULL,'011940661-1-4'),
('8d42b3e8-75af-43cd-a39c-1851fc6c5c9f','39478666-fad8-4b04-b7f5-a9bfd5e65c37',75,53,96,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-2-3'),
('8d492e96-b15a-4c6e-af58-0ca4ff232e5d','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-4'),
('8d4a94bc-499e-469b-a96b-680050ea555e','9114ad70-d53e-4d1f-89c7-30585d0a43de',0,0,0,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-27'),
('8d4b582d-35d0-482f-b402-0e07b3bc2960','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-74'),
('8d4c877b-3baa-4ec6-98da-f0dff2ff3b76','17628264-1528-4825-a23d-e787296a2c4d',39,40,44,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.972','437233015-1-4'),
('8d50639d-f0e9-4588-89ed-35e3edd7857b','b4b16030-d85d-4a3e-bd25-b628bb5efb5f',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-8-1'),
('8d507bd1-d443-419e-a119-5bb0b7475a51','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-41'),
('8d52e4c3-8849-4eab-8d87-99e4f85345dc','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-9'),
('8d5b1db2-7197-4062-b536-afe546344dd6','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-4'),
('8d5e6baa-2eae-49b0-a4ff-b05294590982','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-10'),
('8d602288-5864-4012-9cf6-c74348bcc12f','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.062','2024-11-09 11:12:20.375','248259363-1-6'),
('8d634526-6df7-4b15-8795-a9522e393c38','090b9a06-aee0-4c02-b626-f3e2002f0fce',57,43,11,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-5'),
('8d6346cf-7a58-4ef0-a170-78b55767ebc0','e54055a2-3c9c-4738-a808-7a4a31877ef1',204,80,2,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-23'),
('8d66e356-a46c-477c-821d-349c590462df','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',100,60,85,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.152','127865742-2-6'),
('8d674532-2d97-4c12-89ae-92001518495f','898bffc9-631d-4f04-b4f5-ed3faa6efd68',53,45,45,0,'2025-01-20 11:21:19.102','2025-01-31 12:16:16.902','428222834-1-2'),
('8d6b60fc-7c79-4440-87fd-35ec4df32088','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-9'),
('8d712fdc-0384-4230-a723-9fc576ed43a8','e178636b-b1d9-4260-aa1b-879946fa7f5d',84,46,18,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-15'),
('8d7500e5-941f-426a-963b-66780c9885c0','0009aeec-e682-465c-b701-363a3ef377a6',270,18,20,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-50'),
('8d760c9d-cdea-4db9-bedc-cfe8a4a92434','a4b67ff6-faf9-4a12-8e79-94df38007116',44,44,48,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-4-1'),
('8d784614-3b7a-458a-8ff8-99a7ebdb3a86','159c73ed-083b-4d67-98ca-6adcfc554962',32,104,205,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-11'),
('8d807579-6c51-4772-95fa-46485fd98197','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-30'),
('8d83ae84-865c-474f-8a95-1532fb1c52d7','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-97'),
('8d84da65-55c7-49c2-861a-837e720490c4','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-42'),
('8d84e03a-b598-4741-bdae-8f0c3300876c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-62'),
('8d8526a9-a873-4f00-b7f7-a06242891467','ff41de74-17ff-4bad-989d-6f378ab50997',57,85,106,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-5'),
('8d86e5aa-7534-472a-b181-d70eec023b53','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-2'),
('8d8921fd-f0e9-44d2-8b75-b40389ae6886','543dfe18-75e0-4198-9d24-c6d0458898e8',97,132,65,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-4'),
('8d8a3369-6510-4e83-a858-ea31e3c07887','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-37'),
('8d8d53e5-1d7a-4b54-b697-5aafca5af5c5','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-138'),
('8d903e7f-ec45-477b-9cd8-f2124ea7c32c','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-62'),
('8d92ac5c-f3b2-4e19-bb8f-3c13e686ec46','a5506c59-0e9f-48a6-9b69-13a5163cf994',76,36,22,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-10'),
('8d968798-4d63-4806-9462-03c0108ed245','22cdb203-e189-4693-adf6-5b2569edda9b',80,55,47,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-7'),
('8d971b0f-61c7-4dc4-8642-1c3ed2483764','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-1'),
('8d97ccb7-9dde-415a-9d13-5a2cfce9e3ef','0cc31d9c-27a2-40b8-9231-c0a0d77af806',90,190,30,0,'2025-10-08 17:43:22.019','2025-10-15 08:13:05.462','745816946-1-1'),
('8d99acf5-99aa-4bee-894e-c8ef0d7dc1fe','291604f3-3b27-4afe-8e6a-7541e8711e03',122,120,11,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-5-1'),
('8d9cb14a-f99a-4e3e-b051-c14fc77bf71a','03ad506f-f86b-4dbc-952f-52b01e2467fa',183,39,42,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-37'),
('8d9e40c1-799c-4178-a37d-933c8cba8661','5478abc5-9d64-4211-bae8-54bf5172ebc0',240,90,70,0,NULL,NULL,'982268643-1-3'),
('8da14e62-999e-46f6-8a26-fac0a7f86eff','9608c74b-ee00-4cb4-8b27-84c43649d0c7',15,20,113,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-3-3'),
('8da2753f-d309-4c50-be97-53ef1bddf656','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-6'),
('8da4a435-5ad5-46e9-a352-85fb5b28d710','90f573db-bf35-4042-9450-88ca0e789403',96,100,70,0,'2025-10-22 13:07:00.774',NULL,'515829047-2-5'),
('8da67314-3684-4890-87ea-9e0d23322dd7','b352a3c5-b9ec-4d3f-bf94-3477a4939ef8',53,75,100,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-2-2'),
('8da6f123-9a94-4374-a056-b20032085e89','b6d04ed2-f29f-400a-ba86-37b36b0830b2',48,17,77,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-11'),
('8da8480c-84b7-4c17-a2b7-b75f04a89f85','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-26'),
('8da8708e-e186-4e52-9abc-2bb39fd5a58e','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-113'),
('8da885b1-5e2b-419e-af08-6a54d7b52630','4f763765-223a-4b0a-a837-f4f5a6fd119e',70,80,75,0,'2024-09-27 14:05:27.642','2024-10-08 17:09:39.128','449769276-1-2'),
('8dad353c-9d56-40d7-82bf-6a5fd06df4f5','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-4'),
('8db13d46-9659-4e0e-87e7-75ebdb670be7','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-1'),
('8db9acde-ae9a-4811-a085-2030747343c3','83371e37-9c5d-4c8e-b554-692e05bd3d90',0,0,0,0,'2024-12-07 09:32:27.530','2024-12-18 14:57:34.121','745671718-1-3'),
('8dba81e5-4130-4bba-b29b-6f3d876a3820','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',198,80,2,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-11'),
('8dbc4aaf-05b8-42bc-884b-e9f57126592a','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-41'),
('8dbe0509-d9c3-42be-8748-5a91247da1ab','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-104'),
('8dc0b1c6-33a8-4ed7-b447-59036008ac48','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-33'),
('8dc240fb-4add-4018-b4f7-42fb33d38ac4','ad0fccfe-fec2-49fc-a475-2e6c6c3ce2b0',0,0,0,0,'2025-05-23 14:05:26.970','2025-06-05 16:38:26.855','745786401-2-2'),
('8dc39f01-4bca-4b35-a964-bdfa4235237e','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-14'),
('8dc47e70-4fd0-451e-be8e-186db34b1e1c','9e5bfcdb-8394-46db-8299-0b1d709a5608',76,100,57,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-2-1'),
('8dc4c08c-78e0-4c85-a5f0-5224c5db3df1','068e8e73-09d8-4dab-bbe6-229daa9fd663',48,40,90,0,'2025-02-03 18:19:56.066','2025-02-11 09:34:09.386','614339204-1-1'),
('8dc730c5-eef4-4237-845e-76ad5d8af3a8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:13.248','248135683-2-85'),
('8dcc2bfd-8c8d-4fcd-9a7d-afabaac5a778','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-92'),
('8dd0bfb6-e186-4ace-a079-cc68833bc39b','a455ba66-b417-4781-a6f2-6fce1b8bab23',40,17,80,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-13'),
('8dd15c26-0906-44cf-97fd-953cd25d2400','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',79,5,207,0,'2025-01-26 10:54:21.565','2025-02-10 14:16:27.212','428341956-1-1'),
('8dd8722f-1b4d-4e62-a08a-945e621b90c7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-113'),
('8ddee9e7-c270-40b6-8493-2cb57f48832d','31efbfbc-2eef-474b-8cd0-b552d5c60b72',206,33,33,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-6'),
('8ddeeb02-98b3-403f-8860-8ca3eb466e27','4a61ce4d-fdd5-4745-a2db-47455ed6b156',97,120,80,0,'2025-09-26 12:39:37.123','2025-10-10 21:29:51.184','437649696-2-3'),
('8de49159-195f-43a1-9350-7cf2ad8dec58','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-81'),
('8de50fc4-d1f8-4c65-9584-00fb4dbabe81','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-13'),
('8de63c87-800d-4e6f-a8e2-05c16eacb2cf','571f94e6-7fb3-48e1-a3cd-dd123cdbe09c',56,43,83,0,'2025-08-14 08:21:25.981','2025-08-25 07:11:49.870','613378961-1-1'),
('8de71101-0162-4c82-af84-8023ab409532','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-58'),
('8dea890b-b2eb-4d15-8c0a-6deabedc3c0c','5b94f16d-f4d8-4466-bc90-5a88e45dee7e',105,105,70,0,'2025-07-12 09:20:18.079','2025-07-25 10:49:11.537','976747802-1-2'),
('8deda019-ec29-4a9b-91c0-8ece13524d7c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-56'),
('8df21736-85f3-4fc7-8f96-780244783409','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',92,200,26,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-6'),
('8df5ca55-e900-45ed-88e6-f3a11f4cf66c','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-6'),
('8df6853d-2e88-42ae-8589-3b1c5e20032b','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-1-6'),
('8df6cf25-f024-41ca-908c-b25a54cfcd3e','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-78'),
('8df6cfa7-d187-4e15-8a33-90a90f78417d','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-2'),
('8df9797d-3f3e-4021-9bbf-2de510d978dd','ac2f272f-90f1-4d84-b5c2-1892af4e2892',67,158,97,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-2-2'),
('8df9a8c9-c631-4554-8de2-1fe7e4a3a221','77906293-aff1-4514-aaad-6544e11655a1',236,116,55,0,'2025-09-01 11:06:21.881','2025-09-10 17:04:31.773','644513470-2-1'),
('8dffed62-2b9c-49a2-8686-ed88938a11f4','54d3748f-dda6-479e-918a-23bd09a831ab',96,205,14,0,'2025-10-22 13:06:44.055',NULL,'598894090-2-3'),
('8e0149e6-497d-4540-8734-d5abb25411cb','0511ebb6-7f60-4bc5-a2d3-4d5b19269e5a',15,208,43,0,NULL,NULL,'531481098-1-1'),
('8e048836-5bfd-489a-84dd-4f7b58590a7f','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',94,90,70,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-2'),
('8e05b8c3-640e-495a-a8c0-d0f9a64f69dd','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-7'),
('8e06341d-6ead-4668-a03d-b58056debc39','324936f5-0640-4048-8641-e1550a228838',50,65,14,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-3-12'),
('8e06fa97-3017-4b23-b30a-6d3fabc7ae2a','c1a31a07-5113-4703-99ff-14d4a90ef1ba',44,6,215,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-13'),
('8e0812d0-56e7-4ba7-adde-b464e3ef4ad2','215b7f43-1974-4003-9af2-0e2b300284d4',100,70,70,0,'2025-10-25 08:59:10.092',NULL,'644522996-1-5'),
('8e094c59-d417-4039-8439-e63ddd156937','a95f79e2-41cc-4cd4-a9c2-b517bc5ed98b',65,53,31,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-2-2'),
('8e0c5651-9faf-4da0-ae08-9d89d3952fae','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-13'),
('8e0d2c7d-3d88-4ec3-b50e-fd31e73bb8f3','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-20'),
('8e0eac22-3401-4ca9-aec0-8bef6dfb66a1','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',70,55,112,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-10'),
('8e0ed01b-51c4-4286-a619-df69105fd7d4','9a16eb49-26d3-4e07-a503-649c789c7f9b',96,100,70,0,NULL,NULL,'019225297-1-3'),
('8e0f18f6-c01b-4ec8-bb7f-b608233783e0','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-16'),
('8e0f8e5d-c107-4c86-bb93-8d7c1af6af73','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-9'),
('8e111b1c-5f5d-41f4-8d2d-64edf214a809','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-33'),
('8e119940-5f65-4475-9f9b-7ff3c5bdcf49','2a723830-d2b5-42fb-95ad-678895eae7cd',43,80,24,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-10'),
('8e19af47-0a42-4174-a91c-9932a22dc057','d1606eb5-933c-4e61-b7ea-5f79b332691c',35,35,190,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-4'),
('8e1c0800-65fa-45ce-a7ca-84a203c97a43','6574c9d2-e75a-488d-85d7-f96203442cc9',0,0,0,0,'2025-01-26 10:54:43.764','2025-02-07 11:19:13.804','478120731-1-1'),
('8e1d52e7-4818-4fb0-ae39-1d046e61225f','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-19'),
('8e209100-80f3-4b5e-a055-62e25947d4cf','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-13'),
('8e2329b8-ed93-4c8a-964e-17fcd11a8744','a4795240-7137-43ca-a2b8-d82742643bf6',83,101,55,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-7'),
('8e240444-5e46-4c60-8ce9-6100aaf91862','0e92c59b-93d0-4308-91ce-3965bb186203',142,70,26,0,NULL,NULL,'428180919-1-5'),
('8e25b80b-9b59-4e6f-8645-8e0ae41d102b','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-29'),
('8e270f89-69df-4fbb-8684-75924449cc74','a455ba66-b417-4781-a6f2-6fce1b8bab23',18,50,74,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-14'),
('8e291633-8bbd-4caf-b72b-0a276dff1d9c','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-26'),
('8e2a3cd9-c975-4e32-8cfa-c805d00f889e','bdc159b0-60b0-40ff-9092-421620718ec5',77,57,103,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-2-2'),
('8e2b0198-204e-43e1-8933-2a9dad83408d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:08.525','248135683-1-16'),
('8e2bac82-8a44-4441-95ea-f33aec2c25cc','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-25'),
('8e3087b4-bcb1-497f-ac15-8b0a47654bc4','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-5'),
('8e35086d-3a25-4a69-8f61-375db6f1d7d6','c2e59836-c823-41bf-b343-b3df9dfc91f8',18,103,10,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-15'),
('8e36daae-169e-4f28-a611-d06eda7710da','d12e3c4e-7d14-4f36-a4a9-4e21c2b9d611',10,104,186,0,NULL,NULL,'478412191-2-2'),
('8e399601-9f75-44f6-8132-2d52ec5eaa6c','6a2d762e-11cd-4fca-b32d-cdba41391e25',89,215,2,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-11'),
('8e3dddc0-26e1-42f1-9cb2-60daa2df9c9e','ab6d3108-30a8-4fcd-b5be-9a799e904968',27,180,200,0,'2025-04-28 07:40:40.288','2025-05-06 11:26:00.016','598454821-1-2'),
('8e3f6643-860b-4cce-b0f3-277fcbe834f4','4e14ca81-6045-430a-9e2a-f633a8c06b61',94,127,80,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-1-1'),
('8e41482f-3f2a-4955-95c8-2f5322f48180','c68da11e-578e-4c6c-8afa-d56edaa715f4',40,32,31,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-4-2'),
('8e45df54-fdd9-4df4-9b91-d462f0b88b7b','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-1-5'),
('8e483f28-b7e7-4941-ac2d-1ca5962a26e3','574519af-b90a-45b7-9c99-63bd11d5c2f6',77,55,101,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-3-2'),
('8e484b57-c96a-487a-a3fa-26ed82ba516e','9affc7b1-09c4-4e84-b48b-d0c117c421b0',82,110,56,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.902','412280381-1-46'),
('8e490cf7-328e-491a-b2f1-3bb070f1692b','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-16'),
('8e49468c-20d2-4254-a561-01437a10b7c1','c44eb17a-ef18-468d-b7b6-43c97fccad36',57,83,101,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-2-1'),
('8e4a2ba9-4361-4a98-bb7d-4b76a34979ea','69acd97e-52c0-45ae-adf5-ee013e52776f',85,95,165,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-27'),
('8e4b23a4-8b3f-4265-aab7-470dac4f9213','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-12'),
('8e4cb053-6c1b-45e7-baf4-6442ba5ef065','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-52'),
('8e4e7724-1538-44da-9fe8-eb1fd72049ee','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-82'),
('8e4eb370-2055-41d9-856b-30768bf29557','c98f6188-56c5-4870-be97-be71cf95f62e',40,59,12,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-51'),
('8e51679a-7208-4323-a1b5-0ebd7aa34125','e7f31a78-648d-4a5e-9111-1bf7db38dd79',85,53,46,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-22'),
('8e549051-7924-4615-a0e9-974045da7b36','4b89aa36-817d-48c3-9a42-4031483da485',0,0,0,0,'2025-03-24 16:02:05.134','2025-04-01 13:25:28.639','221247114-1-2'),
('8e56b8e2-05f9-41b4-89f0-05dc889bf7d0','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-45'),
('8e571f61-d2f1-4ab6-95a8-8cf466546b7a','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',213,60,8,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-105'),
('8e57fa4f-c659-4e34-899e-713b9e034e37','661bf68c-7684-4ca2-b22b-42afa9f4e989',103,104,78,0,NULL,NULL,'734230509-2-1'),
('8e598192-0a7e-436a-82bc-4cb4d707f242','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-11'),
('8e610edc-191e-4e2d-a4e8-1a60d4cb6570','71452714-b180-4e00-b2a8-b6fefa0c5650',96,57,82,0,'2025-02-09 09:51:58.173','2025-02-15 05:22:04.063','268145141-1-3'),
('8e61454c-a5df-4418-9ce8-028498e98abf','6aadeef6-4393-4005-8da5-51ca4e422dfd',51,90,43,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-10'),
('8e61f2f7-e231-4621-9318-9480d8143dbb','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-5'),
('8e672f9b-27b5-4034-8729-992c73811cd4','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-7'),
('8e678478-7b84-4f57-9714-ef28a6961d14','855d727d-98db-45fa-811c-d503dd78babd',52,65,81,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-1-2'),
('8e6817e1-d5d2-4ef2-8905-4adf9d9d033a','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',52,92,75,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-8'),
('8e686bb4-7814-414c-b95b-c57da58e37ec','66111de3-4db5-4d79-9d26-01d8fabb833a',0,0,0,0,NULL,NULL,'02713231-1-6'),
('8e6f753e-f4f2-4dca-831e-3ead76e239e0','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',45,45,28,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-8'),
('8e71e11d-1309-4e6c-9348-bd79e9267fb8','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-14'),
('8e7379ce-ccb3-4fd1-b090-5d4a8b7833c7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-94'),
('8e7783a7-3965-462b-8dc1-8373d0f29e16','3a133e35-97e7-48eb-8cf2-15d2cfe04475',100,76,65,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-4'),
('8e7ae853-7320-40a1-88c1-06230c1d6c53','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-81'),
('8e8232d6-235e-479e-adb2-4bfd37afc4cc','743ccdda-3eee-4f87-8835-f0f9348b6b7e',232,95,70,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-1'),
('8e8239f8-2d51-420c-9ea7-23dbdf4ac16e','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',32,207,18,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-13'),
('8e83a9db-6b9b-466c-8b81-026f58630a2b','253bc977-f851-4c87-a294-ed526cc3cb5c',70,70,65,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-1-4'),
('8e841ed9-b8eb-49e0-a37e-d412bb6f9fa4','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-5'),
('8e84a123-f4ad-4521-9b22-2bfc8d14dc11','c98f6188-56c5-4870-be97-be71cf95f62e',50,72,23,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.732','428651654-1-20'),
('8e8502ee-10cb-4a5d-bc03-9ae0a92e81fd','cc11592a-cebe-4e7a-b826-8d145872569d',72,93,92,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-4-2'),
('8e879a87-1fad-49ec-8761-442efbca0046','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',46,46,58,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-9'),
('8e8a8c18-39d7-4da7-bd14-ec0fa7b0a547','4133b64d-8906-4cf9-aeb9-479ffee87338',97,53,58,0,NULL,NULL,'695734625-1-5'),
('8e8b5450-25dc-426f-a830-096b1e562592','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-43'),
('8e8bdb3d-9bc6-4bef-8069-123e979aa4c8','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-10'),
('8e8c6c60-f830-4ca1-ad79-88f15ae838ad','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-5'),
('8e8ef131-f02c-44ae-b897-3c879a522f1b','ddfe7d66-74b7-4072-ba98-b8104a9db616',38,38,76,0,'2025-06-26 10:30:01.218','2025-07-01 19:00:59.515','745619301-4-3'),
('8e911e6c-5966-4f55-8285-3aea96adec8a','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-12'),
('8e926693-ec67-4242-9ced-86ea85d88d50','733f4ba6-58a1-4c6d-bfe2-a881599fe5fa',96,100,70,0,'2025-10-22 13:06:46.078',NULL,'515377519-1-2'),
('8e951c82-1ee5-4ac4-9af9-a2b9909565b2','c71fdc71-df3e-48af-9323-d534b0931ff1',29,8,211,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-11'),
('8e99962c-37d4-4086-acf0-cb47233b7c0d','3f7fbdec-6f37-4535-bd01-3e553df49817',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-4-1'),
('8e9bb9e8-3d9e-4eea-80f0-bac2a6f7c00b','21b92c18-fe01-4738-a64f-22357aa1711b',99,146,8,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.272','01914447-1-3'),
('8e9d3a76-fd48-473d-9cd1-5cf19387c61a','8113e130-28c1-4dba-ba92-b25c7bc8cbd7',79,55,3,0,NULL,NULL,'478350685-3-6'),
('8e9f1b85-013a-4385-a805-8f33efc01488','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-106'),
('8ea33eec-b38e-4160-aa2e-bd0e47ee0777','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-29'),
('8ea54d71-d1f7-4232-bbb4-df1c31605358','a705de61-d772-4a7d-92e2-87f1e616ec0a',45,22,202,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-3-3'),
('8ea6c591-bcc7-4e26-ada7-aacc89447e6c','e05e901e-453f-417c-bd4c-e857b8bd2fdc',98,67,67,0,'2024-09-19 18:27:49.283','2024-09-24 20:20:45.786','449715358-1-1'),
('8eaa92b8-00ea-439f-a7b1-6fb09267ce90','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-116'),
('8eab602c-8d46-4d0d-b0c1-1d94e1d8b00e','3987bcda-6531-4738-8815-187fd84bf71c',90,80,70,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-15'),
('8eadfa1e-4038-473e-a6ce-c5fc6ec78899','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-73'),
('8eaeb8c6-7656-48a2-b4d7-af240777dafb','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-74'),
('8eb0041c-8509-46d0-8ce9-063388b81182','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-23'),
('8eb252c7-8598-42af-aa9c-d500b0298d88','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-1'),
('8eb52f42-d496-47fe-8a14-1f7eeb2160db','7fd89c62-53fd-45d9-8937-40ac63d8d0c1',13,116,255,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-2-1'),
('8eb66992-93f5-49aa-a99a-864fa802ba3e','dadc5d04-be0b-4da0-980b-6007bbb7021f',54,54,6,0,'2024-12-01 06:48:14.667','2024-12-10 12:35:38.736','517764616-1-3'),
('8eb730a2-02fd-4862-bb30-ab836068ddbf','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-119'),
('8eb7b763-3ca8-45a4-9905-e23437d8493c','f662a61a-0008-45dd-b84c-cb13bd97b9aa',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-3-3'),
('8eb7bce7-febf-45d0-8e7a-08c637fecc19','766da20f-af1c-47a1-a9d1-61d9a22c827f',105,205,6,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.878','613809111-1-8'),
('8ebbc9d4-030e-402e-9932-fcd13c41dd00','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-20'),
('8ec281d4-c108-48d1-beb6-6084a9f6ffa7','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-8'),
('8ec4919f-810d-42e9-a40c-d89c505c5915','b78519ec-4b79-400f-a709-a1f09256d30d',219,8,15,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-11'),
('8ec75727-3604-4d24-aa73-9233043d29e5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.299','223444495-1-214'),
('8ec7a364-96ca-474a-bafa-264534d40828','0c8e601e-d31e-4aa5-8a79-e4a4d4aae257',23,45,16,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-1-3'),
('8ec8011c-580b-48c8-9f18-6a420655de0e','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',57,78,15,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-20'),
('8ec93d42-50e6-4e9b-a072-0354fac612cf','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-30'),
('8ece543e-8283-4989-bdcb-63dac116aee1','26d9dcf8-f56a-4ec1-96d4-af3945d37fa2',85,75,65,0,'2025-07-17 09:33:47.357','2025-07-22 17:22:00.525','910772127-1-2'),
('8ecfea75-a8af-4f8c-8c7f-3d5d5aa27afd','bfde6081-8376-4df9-8f57-774c35ed9954',105,125,70,0,'2025-10-22 13:06:44.530',NULL,'959658567-2-4'),
('8ed14dbc-733f-40e5-a169-d0c17d9f7c76','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-42'),
('8ed4d898-ef43-47f3-95e7-664040fc01c6','c29e76a4-89ba-4143-8fad-01a2910620ee',40,43,78,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-16'),
('8ed5969f-653b-4a13-89cf-b8bd38d1af05','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-9'),
('8ed63038-be57-44c6-9dfd-d13b0c82021b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',207,80,2,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-20'),
('8ed6d00b-61ee-4996-8079-2c6e12164786','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-5'),
('8ed72b4f-85b6-44f7-ac95-1a529f7dd04f','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-15'),
('8ed80fcb-1bb3-440d-8d6e-7f17b6591b40','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-18'),
('8eda3662-b276-4f86-a9ef-962c84473537','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-7'),
('8eda63d5-f9b6-4636-b02c-b1e337caa144','2a7b0dd7-e92c-4d80-a1a0-61f0b6b1d33e',105,185,8,0,'2025-07-26 07:40:28.340','2025-08-02 17:36:11.137','598668612-1-2'),
('8edf8f84-d901-4843-9d33-572838848b45','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-149'),
('8edfaf0a-9392-4cbd-a3b3-6725023a4201','c6d965be-8394-4c92-b2e7-c0edeb71006b',82,57,109,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-3-3'),
('8ee0b0a4-ba72-48a8-ae5f-33974904b6ae','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-58'),
('8ee0bd28-435d-4c73-a852-ee77284c0e08','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-1'),
('8ee197b1-6801-437b-bcf5-0546593df73f','c6e24aec-c8fe-404d-bc77-7c14e130d07d',67,121,6,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-3-2'),
('8ee62ed1-95fe-44e4-ac4e-b97c5a1bfcf2','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-8'),
('8ee91fcb-3c1c-4ded-9eb1-83cf67089360','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-113'),
('8ee97e82-73e8-4cbc-ab71-07497c8b8b7d','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-37'),
('8ee9e21f-1f38-4d7b-bd42-cc4660664e5f','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-33'),
('8eee540f-e2f7-463c-a9f6-a30fc725541b','9dad246b-72da-4bab-bec2-c2d038d9316f',0,0,0,0,'2025-07-02 12:43:52.562','2025-07-16 17:47:31.515','371398805-1-4'),
('8ef12792-3634-4bf8-8317-262919b1666b','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-28'),
('8ef2d3f0-9925-4b72-a495-ff33dd2c9163','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-28'),
('8ef47a3b-4a93-4239-8666-32f3fee2daaa','542181c6-dabf-4cbd-b756-74abe3440744',36,8,72,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-6'),
('8ef4a028-cb62-46d3-8026-a661f9cb47b2','91d10b70-a38a-4473-a688-7e33b18968e3',98,250,60,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-2-2'),
('8ef89623-ce3a-41b9-83d5-55ec65994082','a87576e3-14e1-46a8-99c7-1d48360995f5',90,70,70,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-5'),
('8ef9643b-32c9-4ccb-8282-cfc42dd84da9','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-5'),
('8ef97ecb-9eec-4e88-aa4c-00770fe035bb','11cb00a0-e2da-4c53-b9c5-4e213558a211',186,105,80,0,'2025-02-09 09:51:28.021','2025-02-18 17:24:25.088','976441354-1-1'),
('8efc875b-f380-4869-a68d-eb7b93681339','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.267','289168915-1-34'),
('8efd7dde-965d-482c-9250-9af9f773204d','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',47,28,222,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-3'),
('8eff7a9b-bd2d-4176-9111-627b06b1af58','78c5f4f6-2307-4b72-8615-22388f9576b2',0,0,0,0,'2025-03-24 16:01:43.923','2025-04-05 17:48:11.560','478325717-1-4'),
('8f01642d-dfc7-41c7-9e44-81733e104f57','2dde6fa9-86f5-4072-acf6-d126395be890',51,203,24,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-4'),
('8f0245b1-517f-44f9-b42d-17fa0445d99e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-194'),
('8f032919-4d8a-4929-84c1-04dab20e0f9a','7f823e87-d09d-4cb4-ad0a-4393c51662c9',98,120,65,0,'2025-10-06 07:08:31.417','2025-10-13 06:39:34.718','644287826-1-2'),
('8f04cac6-c3ba-47ef-9b94-d5871981d0f7','03ad506f-f86b-4dbc-952f-52b01e2467fa',170,40,38,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-38'),
('8f05e750-3e46-4d55-9bbc-cce15c620593','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-33'),
('8f07c987-b9fb-4a36-9a08-1fcf8107ff1b','e619eb30-ffe1-4f0f-8b5e-957c09a8c7f1',80,56,110,0,'2025-10-25 08:59:06.361',NULL,'43750462-1-3'),
('8f090532-74b5-40e3-a2ae-a8c0caf18108','e6b2195b-f5ef-42c2-8ba4-0de51fa35962',100,70,240,0,'2025-01-20 11:21:21.000','2025-01-31 12:16:08.870','734460411-2-2'),
('8f098d1b-ea6f-4a93-b677-9933ddb55bb6','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-7'),
('8f0a7494-d8f5-411a-9dfe-a0219f3c52b3','052ad905-3da0-483a-aae7-9d36b31da379',66,15,7,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-5'),
('8f0d398c-a3ba-48ca-83c7-e1438a67374d','e6b15fcf-d8d2-44ee-b679-b6020a3b2f11',206,100,80,0,'2025-09-01 11:06:18.137','2025-09-10 16:32:52.073','437840419-1-3'),
('8f106ead-03cf-4db4-88be-29c02b08de7f','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',70,65,10,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-14-11'),
('8f14a63f-1c63-4f1e-8fc1-9df8915ed881','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-28'),
('8f150795-dd67-4325-ade4-2ff234f6a1d5','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',237,60,61,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-4'),
('8f151de0-23aa-4655-94d8-66748719586f','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-12'),
('8f18b148-c13e-40fc-aa4e-5eca522b05fc','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-138'),
('8f1c368e-1e85-4856-b1cd-19a462d8cb7b','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-5'),
('8f1d4b8e-9ef4-4ed9-bac8-32894d9f3e5d','291a2ff2-a042-49df-a88f-5eeac8ddabcd',50,37,20,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-9'),
('8f1f65a9-9298-4f39-afa7-1f0b413e97c6','0066c2e3-ba8f-4c63-a37e-2b8d8425a42b',82,57,110,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.802','478677262-1-2'),
('8f206ccf-1cc1-4510-aea3-a6c4918cf50a','333ce140-8891-493e-86d7-a0823637ab0b',0,0,0,0,'2025-10-02 06:45:47.247','2025-10-16 15:46:47.649','437379015-1-1'),
('8f20e450-4412-4238-a23a-0fd597e9f32e','97e0c415-8243-4192-9049-d6302dfbee27',14,92,160,0,'2025-04-21 06:13:22.496','2025-05-02 07:03:10.003','910316067-2-1'),
('8f2132dc-1532-4528-9fbe-c8dc6e03c2fc','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-187'),
('8f21d962-c3d9-41cf-8b26-1a50ec414693','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-19'),
('8f28a0a3-2e1a-4508-a004-4e9ad53bd9bb','7657b93a-6861-440c-ac4e-1ea2919764f2',44,44,74,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-6'),
('8f2916ff-ad3b-41d2-bc7a-fda287fc806d','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-10'),
('8f2bafb4-181b-4212-b588-dc4bc8c6f8f4','aab886db-5418-4813-b226-87d8ffb449be',96,49,40,0,'2025-03-08 13:46:03.536','2025-03-20 18:08:01.972','221396383-6-2'),
('8f2ee6c4-0c28-4c55-aa3b-816724a36ce7','35eeff3b-e518-487c-a326-3bee90657fcc',0,0,0,0,'2025-03-08 13:46:26.880','2025-03-15 08:58:06.593','910560938-1-3'),
('8f2f2100-1bd0-43eb-af0b-9aadbe0550e1','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-11'),
('8f31cb1c-0286-4273-bcfa-59f1ef65b307','8dc747cb-b372-42a7-a610-18e2ac9a01fe',100,67,98,0,'2025-03-24 16:02:00.063','2025-04-02 16:10:21.430','982329375-1-3'),
('8f375ec0-06ca-43ad-821a-6da6a9a23752','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:09.108','248135683-1-114'),
('8f3a9fdc-fd47-4243-b6b9-f4d43a0115e3','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-5'),
('8f3d75bc-7f16-4a59-b509-c530b155f033','450834d7-78a2-4ef2-8bf7-ea6da90710d6',51,51,77,0,'2025-08-15 15:03:00.925','2025-08-21 16:37:01.898','437427529-1-2'),
('8f43342a-e039-427b-bcc9-10a2c233c488','5733786c-8679-43e7-8510-9eaefeb26e66',52,50,76,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.745','221341784-2-5'),
('8f4413fd-2898-4f50-a17d-30a4ce386611','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-6'),
('8f47aa88-e850-4464-b008-a9e8657d5e1f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-71'),
('8f4ba39f-1509-4aa2-ba40-cf079562ff0d','1a0ccb48-0abc-46b0-b34e-fac7901a5459',0,0,0,0,'2024-05-29 10:12:14.769','2024-06-10 13:50:44.710','449557088-1-3'),
('8f4c16bf-226e-41d0-9249-a04be476372b','cb620780-a9a0-4812-a480-2a4cbe6c4b05',85,192,65,0,'2025-10-22 13:07:04.647',NULL,'412223405-1-5'),
('8f4cf834-1097-4687-95da-9add015752c7','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-1-6'),
('8f4d0386-5aa0-42ef-a573-26f3363f2ae5','54f76545-b44c-4fcf-8097-cd39f86917de',185,8,18,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-4'),
('8f4d6539-c9bc-4c3f-bfdf-cad842fa579f','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-52'),
('8f4fb432-2f41-48fc-a3fa-1773d6572364','68196a47-7977-4b73-9a24-2c24753a10b5',56,56,78,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-2'),
('8f535feb-4567-4200-b06d-ee9ef74914ab','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-6'),
('8f546dc7-62ed-4130-a649-77fb65782a85','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.176','2025-04-07 17:30:11.059','64448364-2-4'),
('8f5680ca-0924-4530-bbdb-7c40bee0daf4','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-6'),
('8f56d55b-47f6-4993-9bf8-3f5dd3407cd1','f64d8576-5c28-4bc8-bb1f-11a8e0471a92',80,115,94,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-5-2'),
('8f5abf64-cfc9-46bb-b533-9694c017087f','6f7a6469-dc9b-4d75-903c-d0c86a5d5d92',85,228,16,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-2-2'),
('8f5d88be-6d2e-44a2-9dc7-3663fdcfc4ae','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',232,95,80,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-14'),
('8f62fa83-4bbf-4dfe-9728-0a75c744e219','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',200,60,94,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-7'),
('8f68c55f-aa17-4567-9fc3-458fb66422f4','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-53'),
('8f6ba242-9b0e-45a2-afcf-8cf829308de5','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',170,15,90,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-8'),
('8f6e4227-d86f-4b8f-afc2-7c7a1dc4f84a','cc6b5286-c3eb-44b8-8853-67815b2524ff',115,185,10,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-3-2'),
('8f7192ba-5dfa-4645-8232-ee933f7c7d1b','984f1373-fcdf-438b-b771-54cf2b74c91b',97,205,7,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-1-3'),
('8f7282f7-226e-48a6-8059-0f2eb7bf004d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.299','223444495-1-171'),
('8f761f08-f82f-4687-b7d0-4213853706d3','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:13.848','248135683-2-12'),
('8f78630b-cacd-41d7-9262-0b3769a5cd6b','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-81'),
('8f793390-427f-481d-9d03-48b36cb27e81','7afc8da4-5eda-4e4e-b6ca-e7b2aa75e00a',98,70,180,0,'2025-04-11 13:41:57.197','2025-04-23 08:12:45.151','371102325-1-2'),
('8f79f487-5f27-46f0-876b-dfe96aadbfdf','c389fd95-9357-4fac-a819-48a512bbe294',84,93,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-7'),
('8f7b16d1-3050-4b23-ad69-7324405da932','3da17157-28be-4bae-8dcc-745d0e93e591',68,17,88,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-23'),
('8f7b4610-5ec7-47bc-a51c-e9570be29b12','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-8'),
('8f7c4a92-07d4-413b-baf0-0bf728ccaad5','8fc7023c-7fab-44ae-a533-006d835eddb6',46,17,68,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-17'),
('8f7ee505-6611-48ca-a411-0c9cb141d026','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-11'),
('8f7f18bd-b5f4-420b-b66d-e8319db5b649','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-29'),
('8f805803-20d5-4794-8df5-a0c6d7c6e3e1','fff846e6-362b-483f-ba3a-df216849c545',53,71,96,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-2'),
('8f811bcd-f432-42ea-aa04-a66147758356','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:00.285','248284003-1-100'),
('8f83d55b-7d9c-4097-a478-d7ceac769a30','baace365-1a71-416b-8d76-9200d2fa2407',208,80,18,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.170','644832811-5-3'),
('8f8619de-f7bc-4fab-84e0-806da74e1736','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-7'),
('8f8809ce-9d12-4107-8520-bd0f283a7161','048fc569-ecd0-444d-b2d3-4f1071fb8463',51,51,77,0,NULL,NULL,'351183541-1-2'),
('8f88e621-05f7-4719-b7de-39ab3aba6b8b','b988fde4-e371-4e31-a284-a3f361315160',0,0,0,0,'2025-02-23 12:39:07.886','2025-03-06 15:54:32.345','745140498-1-2'),
('8f960946-91cf-42b6-b193-5e9371ffc569','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-22'),
('8f9a16ce-bb4b-45f3-9dd0-96202711ff61','1c781ad0-971b-440d-9ba5-b64cd40eced2',0,0,0,0,'2024-05-29 08:53:22.768','2024-06-10 13:49:48.873','47889024-1-1'),
('8f9b2c12-27af-4bd4-b90f-0ff0a1a0c15c','53025d92-f019-4f5d-9b69-68a3b09bb7bc',53,208,6,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-15'),
('8f9b7f60-6fae-4fd6-9e53-59e6f8283b9f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-22'),
('8f9cdc53-d566-4ac6-b929-6e1ed5d8035c','17868a47-2f8b-42c0-9e68-ed7885930bc4',100,110,10,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-1-3'),
('8f9eae1e-5fb0-4639-9f53-46e24b1e2a99','5c990e83-628f-443e-afbe-ea1650122f59',157,30,100,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-5'),
('8fa303d8-94e0-4037-9288-2d0a01879dc2','98ac4819-2edd-4fea-bc96-44923470a1a3',210,46,35,0,NULL,NULL,'613362697-3-1'),
('8fa69ed4-fe37-43b1-8a1f-ae5d66de2b34','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-6'),
('8fa7f868-be52-475e-80ab-5a37933473eb','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-24'),
('8faaa039-100e-482a-9351-c5d0e4049fe3','4eb9bdad-63ac-4040-895e-79400bb9085f',0,0,0,0,'2024-09-28 16:27:33.485','2024-10-08 07:57:38.531','454880224-1-3'),
('8fab7532-8e22-4d13-a16a-fbb92467e0ed','7908530c-18a1-4a83-b5c2-fdea91117bbe',45,58,74,0,'2024-03-31 17:55:03.269','2024-04-15 11:37:34.889','449178440-1-9'),
('8fae780f-50a4-481b-85de-41d567a39af5','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-12'),
('8fae9b10-a9b1-4201-b9ca-be001fbd5f86','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-119'),
('8faf0a58-0001-4a04-b170-ba829c76c9fd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-84'),
('8fb2a1a0-9b5e-4876-a211-848303457316','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',138,215,7,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-4'),
('8fb437b4-6ff3-48f9-afc4-ef1046a2f0bf','0c8e601e-d31e-4aa5-8a79-e4a4d4aae257',31,45,91,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-1-4'),
('8fb5d631-9f7d-49d4-b975-e313de337c16','e09a3626-bc71-4669-9faf-3f66c10fab18',80,70,100,0,NULL,NULL,'644390236-3-3'),
('8fb95465-177d-4330-819b-c56456f45046','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-82'),
('8fba08fe-2aa3-4d38-a6ff-139872a0bb2c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-123'),
('8fba79a9-afd1-4bc0-ae79-2a64c7ffc75b','ace7ef1f-bb3d-4e4b-b44b-e8e0fc39c5c8',174,68,95,0,NULL,NULL,'613592756-3-4'),
('8fc20cd4-d048-4f50-9449-d9474fe8ff71','7f24de6c-6cf3-451a-af7e-90bc8c30aebe',96,196,7,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-2-1'),
('8fc47052-b7e2-4afe-8694-f5416c00fb18','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.038','319458159-1-9'),
('8fc5b845-b47d-4265-85ed-018180b3a294','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-38'),
('8fc86cc4-13a5-45fb-ad7b-f57b3ff22935','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-46'),
('8fc8e144-fc95-411b-a50d-45f643bf106b','2f7ffc63-a12c-4023-bcc3-e7043967b1bd',56,83,101,0,'2025-05-28 19:09:04.424','2025-06-05 12:39:39.710','675902808-1-3'),
('8fc8ef77-2ef4-4135-9b8a-26b782293e3d','894ffd66-b452-4c98-9e0d-be9365aad518',43,75,43,0,'2025-09-02 14:48:34.082','2025-09-10 07:24:12.131','371180149-2-2'),
('8fcac0ee-fd53-4ab7-96f8-90591e2cde46','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',243,95,68,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-7'),
('8fcc9a15-926d-4306-86ce-a63cfd0aa8b4','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-47'),
('8fcd6015-d08d-4d3f-bc3c-0e19798ad7a2','c080623b-df50-459f-92a8-eb2eaff4030b',60,100,120,0,NULL,NULL,'478350685-6-6'),
('8fcee39e-f2c1-4ec6-8aff-c17841f640b1','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-20'),
('8fd0c1db-292b-4304-ab24-20d0fdf22164','ad0413bc-5657-4c6d-8881-5531603a28a8',70,79,98,0,NULL,NULL,'598891928-2-5'),
('8fd13342-726b-48e3-b4ee-a98176170a55','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-107'),
('8fd26699-63fe-47ec-9944-717a0be8f8bc','2ae835d1-b59e-4847-94e9-a2ddd98d1c93',230,90,65,0,'2024-11-08 17:37:41.335','2024-11-23 08:31:53.168','982644032-1-1'),
('8fd36012-7af5-44f7-9ecb-24cf59823fb7','5ab2416a-7bef-46c2-b80c-b65bde62a234',63,218,7,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-2-9'),
('8fd68500-b8a2-4f6a-96aa-057def2bf4cd','626b4650-456c-4f9e-bd85-603b644fe1d8',178,144,10,0,NULL,NULL,'598967733-4-4'),
('8fdaa0e9-3b14-4665-bd2d-258ad20bd8ef','7fbc0cac-4c11-4144-b578-3223cd9dd90a',45,63,12,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-14'),
('8fdb15f9-5a2c-440b-9133-62b61461609f','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-10'),
('8fe21815-4324-495d-98b7-0533d248bcdd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-18'),
('8fe3b6d9-9b4e-479d-a2b0-b2dcf8ad7e64','e8b1acb9-b5a9-427d-bfb7-a350a1724a71',65,83,80,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-5-3'),
('8fe43a61-8017-454e-8f86-f6a8cb9d67cc','542181c6-dabf-4cbd-b756-74abe3440744',62,15,89,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-7'),
('8fe5cfca-c42d-4607-a1c3-debfd0fd7195','7ba47169-83ca-49a6-98fc-6ef1a1990eac',40,30,22,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.524','982630175-1-16'),
('8fe5fce9-bae0-4302-891c-336ff99e8456','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-8'),
('8fe866f5-47f0-4ab3-9216-ad89f02340e4','cbcb5140-359c-450c-9f33-8e0b01b62f63',130,70,113,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-3-3'),
('8fecc35f-8520-4456-83a2-f346837f97fc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-181'),
('8fed6ddd-9bbf-4c00-a137-2cf7a106959f','6fc078bc-5513-47c3-827c-b4f5fa1c9ecd',44,44,77,0,'2025-08-07 16:52:30.676','2025-08-21 21:29:19.691','598665171-2-2'),
('8fed8591-20be-4247-8605-a4e1b49c516c','0367240f-e4aa-4d5b-a069-fbf9bd8627bf',0,0,0,0,NULL,NULL,'74546300-1-2'),
('8ff16d79-e88e-451b-b103-69718b7768bf','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-84'),
('8ff46b86-8b2d-4425-a235-cd4bf8f0df85','5338996f-0387-40ed-ac42-1d89b6d6d1fe',75,75,50,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-1-3'),
('8ff4f3da-ddc3-4717-a701-359c5c06df80','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-13'),
('8ffc2458-90bb-493d-b769-122167086ff0','2659414c-d45d-4920-a302-a8db660bf2cc',75,57,102,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-1-2'),
('8ffe06a2-62c5-4702-8826-5b6240ced1b0','94c4f556-9786-46f2-b2fd-19ec8d6e3641',92,132,80,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-4-4'),
('8ffecddd-6c45-4095-85c0-e903ae2ad9c4','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-100'),
('8ffed93b-71e9-4bf9-a95a-dad4605c541d','a769cd75-8095-4eeb-999c-d1a749589a77',38,77,110,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.121','248739379-1-18'),
('90033dbc-d20d-42f1-b42e-7b13f45d1653','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:12:58.866','248284003-1-25'),
('9005e6d5-7b24-4183-aa0e-45cb0d8af45e','ee2cf480-090b-45bf-9383-709e6e5470a6',51,51,76,0,'2025-03-27 08:02:39.973','2025-04-09 06:26:25.853','22145224-2-2'),
('900a8404-fe28-4ea5-87d2-60793a2aeb5a','a307363c-9911-4bec-ab96-f2419bd7e6fe',92,60,60,0,NULL,NULL,'9823833-1-2'),
('900a89b2-219f-4f38-b15b-a0e80d79cc62','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-56'),
('900cce1e-9c6e-4df0-a0c3-8884a80116a3','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-12'),
('900ddcfc-bd2d-4125-8b62-8acc3f29870c','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-10'),
('900eebf2-a0b3-4520-b9d1-172c8cd80514','eff0cbc1-de41-4da3-a56b-fd58a866d436',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-2-1'),
('90103504-e90f-4572-8572-9730b0465c8b','fbffb9d5-c273-47e9-93ff-d898c5730075',43,47,94,0,'2025-05-24 17:55:18.378','2025-06-06 17:34:14.192','644776565-4-6'),
('9010f98c-c014-4fa8-b270-35b1756275c5','a039de33-a0b0-4710-a90b-a2a55d34c7e4',97,70,232,0,'2025-05-28 19:09:15.404','2025-06-04 07:30:22.164','371193272-1-1'),
('90152fc5-d31c-4a37-bbec-c64b421fde2c','08bd7f4d-e194-4aac-a4e4-084be05bac9f',76,56,102,0,'2025-10-22 13:06:41.295',NULL,'598719647-1-3'),
('90159fd8-de09-4a00-9a57-4f672c748278','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-75'),
('90173463-5075-4c0a-9485-491927bfd3aa','cb583771-c719-4749-b4eb-1ecbd639d119',72,53,101,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-4-3'),
('901963f9-cdbd-4631-8ca7-4e772d2999b7','3987bcda-6531-4738-8815-187fd84bf71c',85,55,22,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-16'),
('901bd944-3af2-4ef5-9df0-d689b4130154','31bdf57b-3dc6-48f1-816c-c4b3c6efcdfd',63,84,57,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-2-6'),
('90218f45-8aa1-4acc-b29e-da991f56c538','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-13'),
('90239df1-f501-46c7-b270-893a627fac79','9a29c89b-7a06-4e63-88ef-c40eed097432',65,100,122,0,'2025-10-25 08:58:54.706',NULL,'371737204-1-1'),
('9023a234-1a21-4cc3-87f6-5820e0b2b334','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-6'),
('90252819-5938-4f43-ad34-76bfe434430b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-58'),
('9027de69-b05e-45db-abc8-fe7916c24c8d','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',51,51,77,0,NULL,NULL,'808384982-1-1'),
('9028cba0-ae74-4cc3-a334-2f917b854f34','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-11'),
('90297357-3ed4-42b8-8ef3-21807aa7858e','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-31'),
('902b60b6-bd93-4e18-8619-abc34ac87a01','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-38'),
('902c3cf3-6944-42ea-b39c-5737613862ae','1b378fd6-fc53-481f-ab7b-e597cb46b15c',104,57,85,0,NULL,NULL,'613137842-1-2'),
('902c8e1a-5f71-4df2-963b-b51b06d4d66f','c57b0a67-4926-4770-8317-0fdee56c0abc',0,0,0,0,'2025-01-26 10:54:17.305','2025-02-10 14:16:49.589','248746531-1-4'),
('902de128-0ca4-4b8d-a009-af308277eb91','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-136'),
('902e81ce-f9d8-4560-94fa-6e222637d649','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-73'),
('90343f85-cc64-4e4b-b1bd-9a66492ebaee','aed57dfb-3aa2-4f6a-849f-51424a18ca86',95,110,65,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-7'),
('90370d34-babc-4ee4-81ed-b009be4b5af3','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-10'),
('90373b3f-e138-4d9c-8429-2b89b3a86c22','c3a1b223-fcfa-4472-9d1b-78712c38d224',96,183,7,0,'2025-04-30 14:29:00.350','2025-05-14 06:37:41.026','371437952-1-1'),
('903b2787-74df-4f75-a617-d718f21808a1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',62,48,16,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-108'),
('903b3344-dd0d-4282-bc72-37c47ee3a595','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-32'),
('903c574b-6f8d-4392-8112-a5071820c68a','4bb8ca2c-be9e-4749-88d9-feef807e2707',97,7,189,0,NULL,NULL,'644104537-2-1'),
('903cf4a7-8cf1-4f5c-85b3-da5d0ab6e710','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-3'),
('90486040-0aa8-475c-a63a-bf3ef6cabeb9','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-4'),
('90492d78-c314-46ec-ad3f-da214be1d75f','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-10'),
('90498581-bd42-4553-bc19-554b7803ce83','fdf16f88-69c1-48dc-8781-5ef64e6edbfa',0,0,0,0,'2025-02-23 12:39:19.931','2025-03-05 14:40:41.541','745523335-1-1'),
('904a7272-5695-4b71-8906-2b5efb3725f2','7cf524b9-0e83-4963-bfc3-863110305d5f',38,25,211,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-2-4'),
('904e1e41-9e64-4db5-a2d8-d9438e97ba39','d0c01cd8-8089-48cb-8f1d-e521fc5f8acd',0,0,0,0,'2024-05-23 07:27:21.845','2024-05-29 19:00:18.557','745303298-1-3'),
('9050db11-550b-4d6a-b329-815f25b2eec7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-12'),
('9050f15f-75ef-434d-8abf-ff55faf60cbb','676266f3-03e6-4ff9-92c5-07a1b81bc27d',72,98,55,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-5'),
('90527a3e-43ac-4923-9f6e-7f43f48fc0ec','78b4e116-f5c7-4057-880a-bac3a92d60d6',85,100,49,0,'2025-08-14 08:21:51.796','2025-08-19 19:34:38.051','437713339-1-1'),
('905419a9-f5a2-49b1-8e48-f6c4e1816bc4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-66'),
('90547a94-4f28-48f5-8f72-c4c850f3fc8e','dc3f18e7-09f7-4f48-a550-413323aa1fa7',87,90,52,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-6'),
('905a3290-982f-4e69-81e6-2d676bceb136','310d0b22-749c-4142-8372-39c495364b11',100,240,85,0,'2025-01-10 08:54:37.951','2025-01-15 10:30:26.528','428754067-1-2'),
('905c2bd9-e3ba-42ad-bf87-e1da8461c44f','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-135'),
('905c8797-d038-4bec-8fb0-5fa6e47dae7e','89083e34-7ffe-4b68-86f0-bb6ea143c832',90,33,211,0,'2025-10-08 17:43:20.138','2025-10-15 08:12:57.977','614666366-1-3'),
('905cc7ed-a572-4fa9-9407-a8839e8db809','e3ad38ad-67b7-48ef-acdc-c2e13831e843',57,83,111,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-8'),
('905cce6d-c22d-4671-9c2a-5296c3065d37','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-2'),
('905eb6ed-288b-4602-a65e-9b99c9a9a8d0','25311b3c-c4b0-4bae-ab6f-95cc825f6176',0,0,0,0,'2024-07-20 16:33:22.010','2024-07-29 13:30:04.515','982318245-1-1'),
('905efcf5-f46b-45d4-aafe-8cfba405c117','694114ed-30f4-444c-a5cd-2dac0759dde5',92,183,7,0,NULL,NULL,'37165070-1-1'),
('90617dd1-b776-4569-856f-6d8e46b0cb49','e05413f2-5977-46d0-9d34-bb6b98ce2e4f',97,70,208,0,NULL,NULL,'371456634-1-2'),
('9062af0c-0e7c-493f-9b9c-18aa1b54f3a3','39e33ee0-0790-4b60-909a-d98610bc0a69',0,0,0,0,'2025-01-20 11:21:35.774','2025-01-28 15:18:53.184','478966296-1-3'),
('906891ff-7d72-4f91-afd1-7d10de5d53ba','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-3'),
('90693b82-7b7d-486a-a0ae-8a63b9b3bf3c','c29e76a4-89ba-4143-8fad-01a2910620ee',60,60,53,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-14'),
('906cfd17-ffe9-4199-b1ff-29fad214b41c','220fed8f-f96e-4af5-867b-ac05d11bda6f',35,70,19,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-4'),
('906f501a-1c6a-4680-8540-a40ccaa0ef2d','e8024068-53f6-4221-b217-9d62a4cdb318',102,201,35,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-2-3'),
('906f5a28-8089-4e4d-9071-c4891be5d898','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-13'),
('90761d31-bae3-4865-8429-d5d8eeacadcd','fae8e85d-bfcc-42fd-add3-4d47c7612f8f',0,0,0,0,'2025-10-22 13:06:55.664',NULL,'437170354-1-1'),
('9076bf7f-b719-4024-a4bf-53c783c84e97','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-5'),
('90788bcb-6490-45c0-acd3-36b5ad86b1c8','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-69'),
('907e6cd6-8c71-421f-8dee-e611366062fa','a6c12d5f-9151-4818-a6da-99773bbe3f36',125,122,12,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.341','644890175-1-1'),
('907f9186-0102-4705-a3be-eae8f093484f','632338c1-7da6-421f-99e7-3499262dffe4',86,190,57,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-1-4'),
('9085790b-e1a8-4995-be87-475754fbbae6','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',32,161,200,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-1'),
('908582e0-aa10-469e-a9a7-293e76a03f74','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:09.660','248135683-1-63'),
('908596f6-354d-48ff-a4ac-3ab0c5824e93','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-11'),
('9086cf5c-985a-4352-9f59-ed6be35e09b3','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-4'),
('908a229d-de2a-431c-9c69-d0d5e905fbc7','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-40'),
('908a9410-516c-4cdc-a747-7e3ea66a4d1b','f0485a78-951c-4f89-bddf-b2003f0bf783',46,27,69,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-38'),
('908da962-53d2-40fd-9ace-1f197cc9ee7d','574519af-b90a-45b7-9c99-63bd11d5c2f6',77,55,101,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-3-3'),
('908dc144-2617-45e5-a195-2ad1d7865934','a5626ae2-9a5a-4401-9095-a368c22814f1',75,50,30,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-18'),
('90940ced-10e1-404a-b0f0-6d4947a640a4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',95,95,4,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-109'),
('909467f9-1745-42b1-b9c6-7e12929237ae','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-9'),
('90957338-0291-4ffe-a0f0-3a9f7a269834','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-47'),
('90966ada-ed39-4cc9-ad3d-9c73289ffe06','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-15'),
('909ac0ac-cfba-4f5f-80a0-27999d48effc','4133b64d-8906-4cf9-aeb9-479ffee87338',105,53,58,0,NULL,NULL,'695734625-1-7'),
('909b239a-71ee-4a4e-a3e3-69a8909a2770','135906fa-fceb-45b1-a401-83de82461319',56,100,80,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-11'),
('909db0e7-9eb0-4cdb-8176-2e51223e512b','9a74cdae-acbf-459b-836a-29ba929835b2',71,80,71,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-4'),
('909e1ad7-4150-4262-9642-1691488457d6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-40'),
('909f4f47-58e3-4c49-8739-2611b2670cc8','3f69b18f-39f2-40f9-b6e6-91f66d88bf80',100,203,30,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-3-3'),
('90a00503-8016-4927-96ef-959743bc3de7','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-49'),
('90a0ef4b-b7b1-476c-9147-36724dd2bce8','c7711311-d9e2-44ab-9529-bf35ca0a141b',50,53,58,0,NULL,NULL,'613592756-6-8'),
('90a3d6d7-5a00-471b-af3f-f4495cd2461a','cde2b645-2cf4-4ca6-9d59-ef733217c501',73,76,17,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-11'),
('90a717d4-dafa-48cd-a38c-f5ac64af9409','05e7d8d7-4b08-4d26-aa64-e3a0bd2168c2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-1-2'),
('90a87f82-b137-47bd-aca4-26a1769f081a','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-8'),
('90a9148b-1e80-4543-8fbc-f27dc53cb974','d9290b00-a023-43ef-94b8-727109b74f6e',0,0,0,0,'2024-11-25 08:28:21.531','2024-12-06 10:08:46.951','858365882-1-3'),
('90ad0c26-0294-4785-b780-cc697a359c82','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-17'),
('90adee7b-7e59-4a8d-93ba-c2c82ba69e86','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-7'),
('90b15b67-ac59-4cc1-b876-8b7c15ee72c9','90841100-26bb-4ce0-8b37-9712689c76c9',100,81,67,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-2-3'),
('90b3131b-706d-4988-8ebe-8f33ed2ed70c','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-9'),
('90c5b031-9544-4815-8ab7-f26e7a645347','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-204'),
('90c6455f-f423-451e-b50c-46afc0431093','291a2ff2-a042-49df-a88f-5eeac8ddabcd',56,100,80,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-10'),
('90c9cce1-b9ac-4e6f-baf4-9763ef8b27fe','886e0e1a-c599-47ba-bacc-c329212cc55b',42,63,20,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-1'),
('90ce85a6-de99-41fb-86d9-a69eb7a72aae','903795d1-74c0-4123-a09d-00392e52b276',56,81,101,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-3-2'),
('90d17ca1-39ba-4401-8696-b2b4e4dae249','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-226'),
('90d1fe8a-9afe-4deb-9f02-631798ad1fb9','5f35db51-2991-408b-82a3-7e6b54acabab',98,200,7,0,'2025-09-18 15:48:39.771','2025-10-02 06:11:36.371','221724224-2-3'),
('90d23e93-d996-4ccd-bed6-7c3890570290','ef877586-eecb-4c6f-a5bb-bea716e4c29d',75,110,160,0,'2025-10-02 11:20:33.093','2025-10-14 09:36:00.702','412989879-1-3'),
('90d52d69-b7d8-4055-8c82-9c873bf47e17','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-14'),
('90d62179-e4cd-45b9-b0e8-20cbe6e9407d','4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869',98,99,65,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-1-4'),
('90d6c2a0-54b4-494d-a1f8-10a238a6415a','ad2443f8-53d8-489a-843c-af0350c2b5fe',93,183,7,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-3-1'),
('90da3772-78c0-461a-b80a-090ac564f9ed','12b37afa-91dd-4e2d-af06-ea0c3edaf49f',100,102,70,0,'2025-10-22 13:07:10.126',NULL,'644312365-1-5'),
('90df3722-f456-4284-bf5e-37637770e1a9','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-3'),
('90dfadcb-95c6-4abf-8649-0a2b8bdf362b','5d074556-ce95-4ffc-8684-279dc37597f0',77,24,50,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-10'),
('90e0ea64-41ff-4625-8310-3c1327c9e570','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,35,20,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-110'),
('90e1d517-0eb8-4456-a804-d043b8d70d15','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-92'),
('90e29a0a-4c84-4a47-81ab-a2bd1ff9afe9','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-5'),
('90e3e495-8fcc-4012-910f-7135ea7088c9','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',17,42,60,0,NULL,NULL,'478893710-2-8'),
('90e690cf-fbd3-456c-be28-a865bac14b7b','9e7c8477-11a2-4674-9f46-871291ca4883',0,0,0,0,'2024-07-20 16:33:52.007','2024-07-25 21:24:27.039','412366586-1-3'),
('90e7bead-764a-4d7d-814c-bd2b0581ab36','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.516','478861689-2-3'),
('90e7d17c-3de5-47b3-a6de-00cbe086aa78','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-4'),
('90f65006-6058-4915-b89d-f4b5a2d3fa09','e54055a2-3c9c-4738-a808-7a4a31877ef1',102,73,53,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-24'),
('90f76f0a-9c2a-42d2-9fc3-6865b23c443f','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-16'),
('90fb3006-37df-4236-ba76-9d4782c095a8','c29705d3-33f0-4fbb-ad6b-a8458c43b3d0',110,57,82,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-2-2'),
('90ff3d97-8d34-4c01-b9e8-bc58b52fa331','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.062','2024-11-09 11:12:20.375','248259363-1-1'),
('910410b2-6e67-405b-910f-ed25fa7a479d','86e5956d-750b-4aa3-8f00-53e2db7b9f65',69,40,31,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-22'),
('910539b5-fc1a-4ee3-bbf0-d694988b97bf','d83c40d1-4df5-4c97-bc83-28837db95b2b',27,14,67,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.910','916836796-1-42'),
('9106b1d1-1731-40d6-b030-19d0a178334f','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-5'),
('910b28d2-1224-4e57-a52d-4545431305dd','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',65,40,16,0,'2024-07-02 08:19:59.903','2024-07-18 07:32:21.071','412586204-1-111'),
('910c2766-b3c5-491c-a96b-33f00c4e7418','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-7'),
('9110e8f2-ffb0-423d-940d-a002bfb53d15','be88542f-e0b6-4861-aa2f-e410fce0ef7d',100,70,235,0,'2025-04-11 13:41:29.010','2025-04-26 17:55:32.224','338607005-2-1'),
('911395cd-a70d-4705-8232-d4dea608c23f','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-16'),
('9115f6cd-c5a6-467b-bf67-767f08254fdf','c1a31a07-5113-4703-99ff-14d4a90ef1ba',44,6,215,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-14'),
('91170584-31a4-419c-979a-eeab791b8201','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',230,67,90,0,'2024-03-30 07:11:57.221','2024-04-02 16:08:31.694','982501931-1-4'),
('9117aabb-f78b-429b-b9ce-fd231148ca45','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-2'),
('9119420a-072d-4951-b8f6-9466c07d4395','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-111'),
('911aafca-cd36-4e01-8773-3313b522c949','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-2'),
('911ae72b-3475-4a0e-9704-7bfe40dae14b','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',52,43,19,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-18'),
('911c190c-3061-42b3-9582-9cd2b4bcd93a','97e2aa48-61f5-4871-a432-6b4e926e3487',51,51,77,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-4-2'),
('91213638-5f8f-4e15-a462-e3d4782da4f7','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-4'),
('9122bc5a-e315-4723-8711-4ff10e737e50','9064014f-b213-4017-8a26-f5ee2179876f',0,0,0,0,'2024-12-07 09:32:37.434','2024-12-17 19:51:15.615','735637082-1-1'),
('9122f0ec-7077-4037-9620-dffbc94ca9e6','898bffc9-631d-4f04-b4f5-ed3faa6efd68',53,45,45,0,'2025-01-20 11:21:19.102','2025-01-31 12:16:16.902','428222834-1-1'),
('9124d88e-a85c-48b7-ba5d-c7dd081262e7','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-10'),
('912cf25d-e4fa-47ae-b5a6-2d3493fc80c7','82ac2d58-053d-41f5-a402-9275c56203f9',49,16,60,0,NULL,NULL,'428172853-4-12'),
('912d860f-fa58-4703-9939-2be8c99c0bd3','a6b43cce-9603-4922-8e0b-e00b9b4acc5c',51,36,242,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-2-1'),
('912da02d-da12-4612-b199-23c05782fd72','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-22'),
('91306c01-8b4c-4d2a-9e8b-b37aa20b7712','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-10'),
('913165ae-cb30-450d-a789-601a2eb3cf6a','ff5ae9da-b42e-4f83-b529-51fbfbe9ea38',220,78,58,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-2-2'),
('913c39be-9fa4-43b2-b2fb-bb0e2be55a45','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-6'),
('913d4ebc-a985-4e31-9b0c-f7d7aca4dc21','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-9'),
('913e2205-2f4d-4d80-bf45-404ee4091bdc','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-85'),
('913f1ec2-1c5a-4166-9fb5-920acd6272aa','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-22'),
('914011f9-e6b8-4677-9aa8-9d82274c505d','7a0fb46c-8489-4038-968f-f3816bfad167',96,72,59,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-3-3'),
('914074f8-88fa-47c3-a087-99664d09d402','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-2'),
('91412e6d-1a30-4490-8884-087a5500a282','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-77'),
('91433f31-83e5-4609-b206-dc65f27cc708','9114ad70-d53e-4d1f-89c7-30585d0a43de',147,50,12,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-28'),
('9144cebf-72a8-459e-9073-5f9d99e37ca2','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-31'),
('91458f15-8aeb-45b5-9194-54769497c857','c71fdc71-df3e-48af-9323-d534b0931ff1',158,198,3,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-12'),
('91461348-3f82-406c-953c-17a26fb76d9c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-69'),
('91463b0a-d67d-45b2-8e11-dabf263d4a9c','63a8dcec-116e-41d9-beca-c025bb85bc21',138,138,11,0,'2025-07-12 09:20:37.140','2025-07-22 13:23:20.100','644721676-1-1'),
('9146d111-3fe8-405c-9ba7-eec1d6ab018e','84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102',94,223,75,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-15-1'),
('914a14d7-c77a-481e-a176-caab03b283a4','4301b768-4818-4e74-a6d0-12a33474f5c6',11,56,80,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-17'),
('914cac94-5de6-419e-b67e-8fc76ea76ab9','30506096-717b-49d6-916d-e53b4af1ac5b',98,65,80,0,NULL,NULL,'644303406-2-3'),
('914fede9-4c40-49f3-abe6-b6f6f3af1977','592134b5-6991-4cbc-9a32-38489cdfccaf',52,66,81,0,NULL,NULL,'371215833-1-5'),
('91508ab9-e956-4a82-8880-f18dff5c6a9b','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-15'),
('915353e7-8acc-40b4-ae84-edc8952aa0bc','7311f1e0-e2be-43dc-9e40-f94a010e8939',155,40,26,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.268','289168915-1-35'),
('915a4c8f-3b36-46c0-af4b-f94ca27f9a00','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',88,94,243,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-5'),
('915eaf3f-6a96-4934-84a9-f5ddff63967d','18182670-9b6a-4987-802a-7e1c83c732bc',54,76,101,0,NULL,NULL,'504809900-1-3'),
('9161725e-8dd5-4dbb-9238-74190920782e','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-54'),
('91642268-31b8-4be5-8414-681ebf874833','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-4'),
('91648ace-7551-4afd-9fc1-fb887c195cbb','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-36'),
('916ab2d2-6b9e-409d-b4d8-348c3ce596b7','dda90efc-8994-493f-aa04-04ea47eb90d7',125,145,12,0,'2024-11-15 17:06:33.617','2024-11-27 15:32:46.318','449801040-1-4'),
('916b2bbe-3799-46bb-9513-68d77b27c076','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-21'),
('916b83e7-5f92-408a-b086-0a2da291d407','b367aad0-f419-47d0-a902-3531114180e3',90,95,85,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-3-2'),
('916c44ff-6672-4208-96c0-69148735a667','1146c60f-37ae-4960-9ff1-39c79125711e',122,100,65,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-6'),
('916cbc97-bc14-49cc-9ef5-f69a7bc79de8','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-8'),
('916d6763-c6a4-45c9-ac34-625a9af0c2a3','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-30'),
('916dc089-b6e0-4f10-90c1-e50789d8499f','79f2695b-370d-43a2-931b-972ba627ccf5',157,67,98,0,'2025-09-02 14:48:47.214','2025-09-12 06:55:55.906','437854000-1-4'),
('91774251-3f4d-48a6-8be4-f1b9ed5c0f4a','06ecaa73-326f-4922-8428-6c87a0be1bc2',78,55,100,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-1-1'),
('917742cc-5116-4018-9bc3-8ceff1850c27','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',58,45,17,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-35'),
('91780506-8155-41b1-819b-76978b738ad1','a5506c59-0e9f-48a6-9b69-13a5163cf994',210,43,23,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-11'),
('917a59f9-57c6-4508-b403-7878f847df98','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-30'),
('917a6f95-a91b-4cc4-8631-faaa8dba71e0','b7fbd54c-bcc0-4613-9901-d06327048472',65,103,3,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-10'),
('917d3f24-344b-4227-b861-91510ee42431','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-27'),
('917d4bd2-7f61-4d9f-9a8f-71a69fad34a8','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-139'),
('9187df81-cd76-4002-86aa-f65e989318a7','b1412704-b0a3-458a-a5d4-ae0a217b9f18',30,30,50,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-8'),
('9188cf2f-0b69-47c2-851c-b57560b8705e','81d0dc47-7670-4778-9132-e810a9a4d368',31,25,58,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-6'),
('918997ad-2313-4905-b22e-85fd68553d79','42fd5395-333e-41d9-b425-bed94ac92dbf',68,66,85,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-2-8'),
('918af046-7ce2-4102-8a3a-c7259a12c3c7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-116'),
('9190b4d2-259e-4d34-85d8-e6978bb289bc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-106'),
('9194cf3e-f0ea-4357-b495-44490fd0d419','e4fd1b67-c7cb-446d-8aec-24a4ed1ff2b3',0,0,0,0,'2025-05-16 16:33:21.497','2025-05-23 14:07:24.682','478337610-2-1'),
('9195d1d5-2fd8-4e4b-9f41-ef9ea27151ca','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-6'),
('9198782d-5ec7-4fd5-92da-44d96fbbbcfd','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-2'),
('9198a989-f571-4065-a106-20a714e0fca8','20258a0e-ffcd-40f0-ac30-ddc851f0dedb',22,26,10,0,'2025-08-25 12:31:57.181','2025-08-30 18:25:16.939','27829651-1-2'),
('919a4cdd-f0fe-4656-904b-35335cb8980b','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-43'),
('919a57d5-e2a2-4bf7-82f2-28077546cca0','7a7bde44-ed92-480e-893f-02d0f840ef92',100,75,70,0,'2025-08-22 20:28:42.930','2025-09-03 06:11:37.803','338829299-1-5'),
('91a481bd-3c0b-4d12-96bc-8c984f919331','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,83,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-2'),
('91a89674-e8e6-4f9d-8d1d-04a700877407','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-1'),
('91a987e2-7547-4f8f-aa8e-e887a43b1df6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-70'),
('91ab168a-83ed-4159-94cf-d47d62cddadd','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-6'),
('91b1fff1-e25e-4c92-bbf5-9db8e15659c8','8c3a9387-2db4-400b-95fa-11aef6c745f6',85,64,16,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-11'),
('91b2276c-fb32-437f-9bbf-e37ceb86c1b1','adccace1-e116-47c9-8648-9df480e3519e',51,34,204,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-4-1'),
('91b32fe8-69fa-437e-9183-a9ba62092a0f','4fe7c3b6-ef6c-4a70-8bad-36a1448321c2',43,43,74,0,'2025-05-16 16:33:32.206','2025-05-23 14:06:47.825','371521572-1-2'),
('91b37294-3658-46b3-981a-137c320ec8ff','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-13'),
('91b3d81c-b60d-422b-aef3-c4624bfa516b','03b4a2cb-abf2-4d84-85e7-366794ad4504',80,90,195,0,'2025-09-16 16:29:11.874','2025-10-04 13:57:19.734','7454878-1-1'),
('91b5900f-d9c7-449c-b405-283ebe378938','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-232'),
('91b63e9d-f35b-4e52-b149-3e32f8694dc1','a1550d6b-1e80-4cc0-a360-0d4fe5fd207a',0,0,0,0,'2025-03-08 13:46:07.997','2025-03-19 12:35:48.760','221944135-1-4'),
('91b6ff05-bc45-41d2-b727-7fee2d06d2e9','7afaa863-1632-4dab-9a18-d36f3b675d4c',100,250,80,0,'2025-03-06 10:32:12.498','2025-03-13 15:28:39.032','081982015-1-3'),
('91baac50-fcc5-47b1-a668-ed86b0307781','b31ae358-4cb7-4d8a-bac0-dff0a61dcd39',230,100,80,0,'2024-12-07 09:32:22.880','2024-12-18 16:37:07.052','910950688-1-3'),
('91bac389-6354-4984-977b-a861ccb12d97','291604f3-3b27-4afe-8e6a-7541e8711e03',122,120,11,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-5-2'),
('91bb6b81-9195-4f21-8e70-3f82483a7e94','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',45,195,6,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-14-12'),
('91bff92a-37a4-4e43-b219-65dd26bff9c0','9d7e593b-5023-4e2c-90b7-252a3cc3180a',0,0,0,0,'2024-05-08 18:43:33.235','2024-05-21 18:45:07.083','478890979-1-3'),
('91c044b4-97af-4d69-8c61-a6632c3903a7','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:12:59.806','248284003-1-6'),
('91c099e9-945b-49c8-97f7-d4cf80d65d8b','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-55'),
('91c29fae-dec7-4e43-b562-e31fb9438c01','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-1'),
('91c44390-ef77-4934-96b2-77605a61ca1d','448137c4-0ed8-4aba-90bd-b88619bd7a91',42,133,13,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.586','745538897-1-2'),
('91c47af7-7097-4bef-8032-ab96875e0aa2','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-38'),
('91cdfdde-3ce6-476e-b670-c79b537e2ec3','644cd00d-09cb-4fd8-b452-857ff80d55bf',0,0,0,0,'2025-05-16 16:33:10.884','2025-05-27 07:54:25.413','47876427-2-1'),
('91d10e53-8a9f-47ab-ac65-520bbf60c8fd','b23c09fe-3a88-4a0e-993f-e8cbb7ffde0f',0,0,0,0,'2024-12-07 09:32:01.395','2024-12-20 14:35:19.739','412665767-1-1'),
('91d22b60-0cf1-4823-8fbd-77d922bff77c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-69'),
('91d4e5b3-483d-49a3-9ecc-6c315bc29016','832915ac-d62f-48db-b00f-8e585de422bb',35,10,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-3'),
('91d77882-bc3a-4e5b-a715-1dfe643a70c1','69acd97e-52c0-45ae-adf5-ee013e52776f',75,215,95,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-26'),
('91da34f3-014a-4395-b4ed-403cfc04704f','0bafd109-abe8-42a8-b45f-d5053eae132b',17,154,17,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-6'),
('91dffad3-bd34-4d32-8ff1-04e792621ee3','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-1'),
('91e140e9-d521-434a-9edc-9dc917b9713e','c5027968-9a23-442a-bebc-9b8745408960',158,198,3,0,NULL,NULL,'982759064-4-20'),
('91e35782-24d4-4b35-867a-8fd9dc505656','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-56'),
('91e5ffc0-36be-44a3-8f1a-47a13dbcd512','e2d5a5ed-1130-4ac5-91c5-60afa0aa0b15',89,209,80,0,NULL,NULL,'371105450-4-3'),
('91e701c5-7ddb-4f54-aca6-2a1f9c71f469','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-7'),
('91e90867-074b-4cfb-ac73-14683430bda5','88efd6f4-86cc-4f4e-9e39-520afe44f05f',95,67,235,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-2-3'),
('91ee7d4a-5f01-4feb-9cf9-f06f56d80721','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',80,63,63,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-5'),
('91f73fb8-cd84-45fd-9941-1513d925a22d','42b2ca3a-9313-4b97-901b-3859e34b21e1',65,105,43,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-9'),
('91f95810-3d6b-4c00-b9c8-77a60309eb4d','8f339642-bf4b-403c-9289-3a16f3a3b2e9',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-3-1'),
('91fa90f7-5af0-4ef0-949a-ad7c03830213','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-10'),
('91fb8aeb-978e-4637-8192-bb81fc28260b','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-5'),
('91fc0ec4-b1e6-4950-8299-62fad4e4a451','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-17'),
('91fd98ab-2dd7-43fc-a86f-7fbe49382b68','9283d2d7-9cf2-48e1-a59b-c4fb7ce45934',40,30,30,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-2-3'),
('91ff65ee-3e82-4cb5-9873-7db5c66060e2','18f619ca-618c-4101-9b2a-2b9e3114395a',93,181,7,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-1-3'),
('9200a8ee-ea6d-4982-9257-10a161383408','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-39'),
('92016a44-3b69-4b19-b2fd-36fcfba8c99a','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-11'),
('92039033-354a-4a30-8c41-7731b57e5530','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.116','22164822-4-6'),
('9205d140-6a56-4f41-b4c1-e2b35dcafaae','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-5'),
('920974ab-27ef-4113-b275-d081c52550d8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-188'),
('9209dd26-3a3c-4dfd-94a7-2ae3b2651899','f0485a78-951c-4f89-bddf-b2003f0bf783',46,20,35,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-39'),
('920c80a2-ea21-45c9-acac-d0b59ca291d5','08832577-714d-471e-b006-0d3852d85ed5',44,77,44,0,'2025-09-01 11:06:05.922','2025-09-09 12:50:22.144','598172413-1-4'),
('920f482f-c7ec-490e-bfa3-5bd84362e373','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-7'),
('921207f3-b3f0-4a77-83a8-a2784adf2e80','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-8'),
('921bd12b-1f97-48e2-8542-587ae657a148','76cdb3cc-7e22-4c7c-b33b-29892e31126e',51,51,77,0,NULL,NULL,'675346042-2-1'),
('921ebe03-a0cf-4d45-9011-0db75b30363a','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-22'),
('921f8685-75ca-4109-9f13-9064f5837b58','e67674ec-4f16-41f6-832d-4bdbc7afcc39',0,0,0,0,'2024-09-27 14:05:53.006','2024-10-07 14:03:47.331','248864808-1-3'),
('92208b27-788d-4179-a190-b3847bb74265','a5a7d3b2-17a3-4f76-a55f-01181e93ce3d',56,82,101,0,NULL,NULL,'437335093-1-1'),
('9224595b-7480-496d-ad4c-23fef5e25a13','86e5956d-750b-4aa3-8f00-53e2db7b9f65',120,48,60,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.128','517110811-1-23'),
('9225a0ac-290f-4d33-af32-6738bfd3874c','c67def51-fe24-4885-9519-ba2b028c3f47',91,4,210,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-1'),
('922cf5e1-aa5a-4580-969f-0d8844bb3884','08af242e-dc62-496d-980d-0f589dcdea60',77,46,76,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-12'),
('922d2377-7a54-4871-a8c1-634409c3ca2a','256d7da2-dd55-4a96-ad4d-cb03e9247467',29,160,29,0,'2025-10-08 17:43:50.389','2025-10-17 20:57:20.132','614901187-1-2'),
('92331ca7-354c-4804-b4c1-54c465ebde04','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-113'),
('92345540-833d-43c1-968e-30d182b110af','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',43,30,22,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.174','817317858-1-1'),
('9235cf90-2e3b-49cf-a97a-daaad21ffef4','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-89'),
('9236efae-8f5a-4567-8b71-a85c5a81399d','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-10'),
('92387b1d-c3bb-4533-a971-7f660cbcfd9d','465d80fd-910d-4efd-b69a-ac5b10f5964b',51,51,77,0,'2025-04-15 16:01:16.815','2025-04-28 11:59:07.352','644887691-1-1'),
('923bc10c-03d3-409d-9806-e100e12d4b71','055c6f8b-9b1b-4daf-8b1c-5ee2ad6db7d4',56,82,101,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-1-1'),
('923d4da2-fab4-4c02-b07a-5bc3a7717f2b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-79'),
('923db6d0-f26a-4f0e-aa53-294b60bb3b92','1d2ec7e2-f735-46a1-96be-3994af90aaac',95,248,63,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-14'),
('923dee8c-8be4-40ca-8ffd-50ea96c6f96b','980e9055-cfdb-4ddc-8971-f55eb0411264',0,0,0,0,'2024-09-06 12:28:18.065','2024-09-12 10:54:37.436','478418764-1-1'),
('923f0f02-69be-47fb-8ee8-dc1208a7c56b','aaa8d3a6-48f2-4ac6-8cde-f805e401d89e',51,51,78,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-2-3'),
('9241aff8-44fa-4fae-ac18-ef7f6f15bc37','330e6f68-483a-4357-959c-dce6efe61d45',100,100,65,0,'2025-07-02 12:43:26.635','2025-07-23 06:17:56.348','428173598-1-3'),
('9246364f-e3d4-4357-b194-b9afac24e4fa','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-8'),
('9246a5cc-ca33-45c5-a046-48004529c9e2','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-4'),
('92476012-9d40-4650-becd-2a076584d575','34ddd883-283e-4768-b94b-c347224b0365',35,35,35,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-2-2'),
('924dc0e2-1eca-4f02-a844-ca5fa3aa0512','c91edd26-ca21-49cf-967a-8ae66440af23',18,128,197,0,'2025-07-12 09:20:24.300','2025-07-24 18:03:45.377','745813483-1-3'),
('9255a168-818e-4c7a-8485-40caa6f89d6d','661bf68c-7684-4ca2-b22b-42afa9f4e989',120,77,99,0,NULL,NULL,'734230509-2-2'),
('9255a57a-37ed-480d-bb48-db5665e9d6c7','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-7'),
('9259ef8c-aea3-4646-bda7-41deae353d95','f2026b48-8180-47f7-9044-d94056905698',31,24,25,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-5'),
('9259f4f9-3c92-4670-9d01-f75d35122083','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-6'),
('925b8cdb-65e7-4eb3-8301-3fa93b3f52bf','5598c3c4-7b30-49fc-8997-d966fbd95fbc',202,92,30,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-3-6'),
('925bef62-d773-479d-a32e-b9b6422c7519','8671fe0e-66f9-4cd3-92c1-b4cc827cf293',100,100,70,0,'2025-10-22 13:06:42.959',NULL,'644589662-2-3'),
('925e6a66-548c-4f97-90c1-afc92292cf37','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',13,110,145,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-2'),
('925f4742-217a-4219-ab2c-69b122e69f16','c3fe21d3-5610-4a96-9492-67597bbe83bc',30,30,70,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-5-2'),
('925f9e23-342a-4573-b518-b3833dcfe442','a1550d6b-1e80-4cc0-a360-0d4fe5fd207a',0,0,0,0,'2025-03-08 13:46:07.997','2025-03-19 12:35:48.760','221944135-1-3'),
('92613332-8b26-4027-8836-a5ef9caa87b2','9a0272fb-f864-42c8-89a2-8abe0cac90b2',57,102,83,0,'2025-07-12 09:20:40.358','2025-07-22 13:23:02.941','675799375-1-3'),
('9262159d-503a-4146-a7d0-d5580d717b56','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.683','478962763-2-23'),
('9263cd61-a579-459a-a440-2b56b52ac388','a3545233-7d60-4965-a14b-1b94e0e5edb9',65,130,105,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-3-1'),
('9265dd18-9551-4cfc-8fcc-24c6d33dc355','450e3cc2-5ef7-4167-b7c8-42e1eab92860',53,76,102,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-1-3'),
('926c7c65-c15c-439e-972f-4304f05ea663','3da17157-28be-4bae-8dcc-745d0e93e591',30,85,17,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-11'),
('926dc880-6ed7-496a-afdf-c65824e8e76e','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.418','2024-05-21 18:46:29.546','734970518-1-4'),
('926df8b4-f415-4580-8fb7-b59479d927af','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-2'),
('926f3ff6-5337-46bd-8f2b-463021c00a52','2307cead-bc16-4ee2-aff3-8245c44ff256',70,99,99,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-2'),
('927566e3-572b-446f-a98f-e0eb0d5b28a8','cc11592a-cebe-4e7a-b826-8d145872569d',235,68,95,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-4-3'),
('92774a1d-ebe3-4a58-96cb-cb3943b6992d','66111de3-4db5-4d79-9d26-01d8fabb833a',111,67,111,0,NULL,NULL,'02713231-1-1'),
('9281caba-ab24-4611-a58f-ca761479866b','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-70'),
('92823b4f-3753-48f6-bf7c-20d7e06b86bb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-126'),
('9282bfb1-e4df-4de8-a5e6-03be2d01aa35','0009aeec-e682-465c-b701-363a3ef377a6',110,90,65,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-51'),
('9283da8d-f8c5-427e-9c1a-eae0ac77bcac','25f4965a-c481-4fff-bd08-ac93db0c7623',97,98,65,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-3-2'),
('9283eb1b-5b0d-4e5c-8d80-9bcc577dd185','6b9e51b9-7e9c-47cd-801b-8bba008d0224',28,91,202,0,'2025-06-21 04:33:47.206','2025-06-30 08:56:30.724','695394738-2-1'),
('928a2a28-7159-4607-883d-703e7fe93a62','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-3'),
('928b94ff-217a-4470-b2a6-dcb7a80bbf97','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-57'),
('928c5432-0ef3-49e4-948a-9711cf8cd3c7','546ad3d0-25c2-43dd-9443-e48b8e5b6530',21,16,42,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-27'),
('928da479-f65b-438b-ba66-2ea48c027dc1','4ac8027d-d5db-4a57-916c-23dd357c98aa',7,82,82,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-9'),
('928fb4fd-0ba7-4d6b-8905-c1cb3cddc7dc','6d0390ef-65ce-4154-a607-d67e51938ed2',64,9,200,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-9'),
('9293a8a8-aa5f-4516-adf5-07a77ca66385','ab6d3108-30a8-4fcd-b5be-9a799e904968',96,204,28,0,'2025-04-28 07:40:40.288','2025-05-06 11:26:00.016','598454821-1-3'),
('9293fd05-6f52-4262-b261-c6742d971a6c','db3b2126-0e8b-4d3b-85f6-d470edff075d',0,0,0,0,'2025-03-11 18:06:02.855','2025-03-17 23:30:53.310','982431907-2-1'),
('92984504-b36b-47c8-9920-0e2fa0584cea','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-4'),
('92987774-612e-422a-bb0a-9b2cde5a8b21','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-33'),
('929906dd-a6cc-407a-a0eb-e27b252b3614','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,60,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-43'),
('929c99db-f5be-448e-9d45-c4b3f24fc212','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-4'),
('929e3e4f-8892-4db5-90b4-380ebd2f662a','4dae2c46-63f9-42b5-9288-01744ed81ee5',53,53,5,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-4'),
('92a1f84d-eeb0-4725-aed5-11d18e35be8d','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-29'),
('92a56159-6cad-4837-a48f-2133b378a3b9','733638b3-f981-4c38-8cdd-5eb1c0dd6243',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-3-1'),
('92a9f8fc-e53d-4370-94c8-5849d5c63b89','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-3'),
('92ab86ed-3814-4417-afa7-61172f9a35a2','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-163'),
('92abaeff-d162-4d9c-8bc7-e4c5db49b6a6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-94'),
('92b19999-6946-4379-88bc-2100bd1a0604','585b23e1-d8ef-41f5-b796-16b2dd04a045',99,87,60,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-2-4'),
('92b7609b-0429-4d72-b39f-fc143183facf','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',47,16,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.798','428602278-1-21'),
('92be8028-22df-4951-87c3-a090ba6b4230','e7f31a78-648d-4a5e-9111-1bf7db38dd79',200,160,20,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-23'),
('92c3f520-f134-4270-9674-0713440fba12','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.242','2024-11-09 18:54:14.451','412441586-1-10'),
('92c45090-069d-4178-a852-7c5a5510e625','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-3'),
('92c4c03a-597f-44eb-82f3-2bb7878334d0','808a4f1b-793f-4a15-808d-00c26a26c166',48,8,143,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-1-18'),
('92c509c4-d8db-42d4-8f8b-fb2f0219c1f2','648b1063-2206-4845-a6a3-5b3089a2bafc',204,44,24,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.533','531344250-1-3'),
('92c6ec3f-22ed-4521-b62f-d377879411a7','8e9264a7-ea7b-413f-be45-63b66a8c7b11',100,170,80,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-4'),
('92cb5d6c-f85c-4067-9a73-c3f09e86d16b','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-11'),
('92d024da-e2a0-4b53-832f-e2f6c7bfc474','a89f5cb0-4036-440c-b388-8ef641d6f3b9',71,106,53,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-15'),
('92d0aef1-d994-42c7-abbc-7bfcf6bcf708','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-59'),
('92d30a08-4a72-40d8-95a2-216f80ce99f5','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',98,78,70,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-4'),
('92d841b5-3bbd-45b1-aa3f-32b4d5d4e966','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-76'),
('92dd67e7-625b-4c7a-b6de-5a536a61c21a','778a1f21-7000-4e0b-bc4c-8e24c82eca0a',230,75,93,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-4-2'),
('92dfb325-01e9-456e-bac1-0fe2fda122b3','cec6ac97-c18a-481b-8742-ea1b5998230b',86,66,64,0,'2024-12-28 21:42:25.648','2025-01-06 20:09:27.226','221350993-1-4'),
('92dfc6df-f01f-4b40-8987-d3cb8915c1fc','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',103,28,202,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.435','982176810-1-3'),
('92e06411-bf2d-42fd-adf0-d1d19e6e6792','f0c2df6e-cc70-47df-9954-4a2f43a9ef6f',196,96,6,0,'2025-03-27 15:05:09.315','2025-04-08 15:34:58.197','2213416-3-3'),
('92e40eac-30c4-44a8-b435-6af2c2a100b4','27a7bc54-5d32-41d4-9dcf-f63732db8996',95,44,95,0,'2025-07-29 12:58:51.566','2025-08-06 17:56:14.801','817630523-1-3'),
('92e6557f-9e36-4a92-924a-ad034d49fe91','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.465','478972804-2-27'),
('92e76116-00c2-4b24-a263-dfe2812352e4','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.474','2024-06-22 23:00:04.354','44831715-1-4'),
('92ef75e1-7d5a-4b47-b6bd-0ed481772439','1b975dd0-98b9-4adb-88bc-962d71cc7b22',45,45,77,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-4'),
('92efafc8-dd4b-4241-b5b1-346b7e130215','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-7'),
('92f10a92-1774-4fd5-b65a-34a1ebdf951f','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-9'),
('92f22a51-599e-422a-a521-6e678890f794','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-44'),
('92f4848f-b76a-471c-a1e5-1541f686d169','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-93'),
('92f72f91-14bf-47cc-b022-67556982d5d0','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-12'),
('92fb40bf-60ac-45c1-96de-5b5876c50412','fc9baf44-fed5-4b50-be95-b9964e750a79',100,152,67,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-4-4'),
('92fbcfd2-1b8d-41c9-a3b2-5edc9c47ecdc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:02.565','248284003-1-109'),
('92fd46d0-bbab-4d98-bbb9-d469883ee1c8','dc3f18e7-09f7-4f48-a550-413323aa1fa7',135,20,9,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-4'),
('9300e030-affe-420a-b35b-752aeef690af','19ee4ad6-2109-4cda-a637-9c7a0d40dfd7',0,0,0,0,'2024-05-10 18:50:19.017','2024-06-04 14:25:51.961','745964132-1-2'),
('9301772d-3130-4d8f-ac2d-08cd31bc04d9','6aadeef6-4393-4005-8da5-51ca4e422dfd',97,42,116,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-11'),
('93018d25-50c5-482b-9fdc-a7d6a3d32d52','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.299','223444495-1-128'),
('9301a73d-84d8-429e-83f4-261b4a6e9e28','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-85'),
('9301b1f4-8a83-4d1b-8af0-febe510fa5db','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-129'),
('930c6d12-b27f-49f1-aba9-f815e345792e','439a468d-6cbc-43e8-aa94-cfa411e4fd3a',57,82,105,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-2-2'),
('930e4fd7-68ce-4c75-8b03-136a0e8ff5cc','8a2e1aac-28d1-4f92-929e-a34cea96fcff',25,25,58,0,'2025-08-21 07:15:30.659','2025-09-04 21:03:56.201','371665790-1-5'),
('9310e9eb-f463-4df2-b2b1-b8c7fbc2b8be','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-5'),
('9313315c-f644-49d0-8c7d-bb613fc3cc7e','34ddd883-283e-4768-b94b-c347224b0365',75,125,15,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-2-3'),
('931504ca-940d-4b00-8446-ae3764c35444','53025d92-f019-4f5d-9b69-68a3b09bb7bc',45,209,5,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-16'),
('93176004-8a77-4a6c-b693-0924a0fe9304','46d1512a-2bfb-476d-a224-9390f3e194f2',94,64,38,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-17'),
('931c03c9-4835-4a09-aa5c-0879d1e0f6c8','02a9c28f-9612-4397-8742-1194ba41344a',80,100,102,0,'2025-09-01 11:06:08.314','2025-09-09 12:51:12.366','43789661-1-3'),
('931feb21-cc16-496d-a64a-5c10bde6e504','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',98,98,80,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-7'),
('93235234-c403-4cb8-ba10-2ba69d1f9415','32c3a303-b84c-41ee-a5cc-be771a19b1d1',52,75,101,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-1-1'),
('93258a82-931c-4d01-ae6b-e37c64c4ad5e','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-5'),
('93268824-c28f-4a57-af03-f6952d9b733a','ede92e6e-229b-4f97-ae44-56e07777e1e2',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-2-1'),
('932705a7-d0f3-4260-8160-14193f23b66b','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-11'),
('9327be24-66bf-4a70-a5c9-d43d19d020a9','df6feab3-1b39-46d1-811e-3dcd375e9ebd',92,51,52,0,'2025-03-06 10:32:09.908','2025-03-13 19:03:08.684','455207811-1-2'),
('9327dd91-b898-4482-964b-c56115ebf17f','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-112'),
('932dfcfb-f5a4-442f-ad41-0a7bd7ed6fe1','41a8c40c-cb96-4cd8-b02a-dbe29db34034',51,51,77,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-2-3'),
('932f81f1-855e-4216-b243-7a53436ff029','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-9'),
('9331148f-ac75-49a7-9df0-97598621ede5','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-59'),
('933189b5-9b28-45bd-9685-1cbf0fe28566','d1aedf1e-b5d5-4c6c-8c6b-7898e66abaa3',73,52,100,0,'2025-10-02 06:45:45.668','2025-10-16 15:46:43.298','465634666-1-2'),
('9334ac97-6145-4a9e-9fc3-d0e0eaf9d511','080cca92-65c6-455b-b12b-18f90f342599',96,196,6,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-1-1'),
('9335e126-4a08-4268-bc85-0ec4e0a17cae','2f48d0ed-28f5-453d-8672-06427e42d843',49,48,76,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-2-4'),
('9336289e-2a9f-4e2c-a371-6087a9a98a66','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-162'),
('93384175-8320-45c5-9533-0ba8d2a21c05','62f8f5e0-3dde-4a16-8b43-15d3805cff33',82,82,9,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-2-2'),
('933a04eb-f616-457c-ad81-de51fec53ca7','a3bf1b4b-19f0-4547-abec-82eb48474c5f',42,38,59,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.557','976680764-3-2'),
('933b5583-c692-42cd-a7a8-60faa485bf20','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-3'),
('933d86f4-b13d-4a33-8be0-358e67241c51','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-14'),
('93444363-180e-4466-943a-3be28ff8e9a6','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.728','221940723-3-4'),
('93455707-f0b4-47c1-a154-7d361050bc64','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.268','289168915-1-36'),
('93492fe5-009a-40c6-a2a2-559eded5538e','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-29'),
('934a840a-4102-474f-9668-13477a473a51','b287fae0-0a10-4042-b38e-e88e51ed9759',0,0,0,0,'2025-04-30 14:29:05.619','2025-05-13 09:06:18.176','745639343-1-1'),
('934afff7-4a6d-467c-8f82-3a709ff6fb47','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-5'),
('934bd132-0d43-496e-b45f-546f1dd66b32','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-19'),
('934de377-132c-480f-badf-c6631b4dac7f','4301b768-4818-4e74-a6d0-12a33474f5c6',8,42,215,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-18'),
('934f58ed-88e6-47f8-b018-a2deb9c0a3b0','1b8f328c-9952-41e3-aa69-f843fde86e4a',44,23,34,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-2-1'),
('935047b5-f1f4-4173-99b9-a053b3eb5147','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-21'),
('93514fe4-33a7-445c-9fd5-7eba9bb314bd','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-46'),
('9352f561-01a6-4ac2-83d2-17588e497c9a','7c85f504-aeb0-4278-bdea-15616c0f4fb0',0,0,0,0,'2025-04-04 17:27:53.276','2025-04-07 11:35:23.400','24891590-1-1'),
('9354222f-91b4-40dd-af16-a58d0747b777','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-54'),
('93550c9a-c3f6-4f62-a5cd-805595de2c47','7defd633-f7ab-424d-8029-028d1b045752',169,138,3,0,NULL,NULL,'501119446-1-30'),
('9358cdf5-15ab-4860-bafe-532b9f378d75','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,4,224,0,NULL,NULL,'644104537-5-8'),
('935c8304-2714-49e0-b2c5-48df1a4fd276','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.230','2025-05-10 20:13:13.997','223963997-1-53'),
('935d9f5d-bdcb-443f-9e12-ef2dd2a7a53a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-30'),
('93645632-8934-4837-aaae-4305f7b0f539','c6beb907-545c-4c72-840a-c2ee864f59e0',1,1,1,0,NULL,NULL,'47876680-4-2'),
('93649a84-500b-440c-99a5-ee5f3bdac77a','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',91,91,60,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-5'),
('9364d965-833d-4b64-ac95-30df89f35ff3','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',73,9,125,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-28'),
('93657bfe-d28e-4c53-a9c0-58f0ca77bdc7','e6bddda4-b1df-4be7-bbd5-63cc4b197736',57,87,10,0,NULL,NULL,'42857810-1-11'),
('9366c0cd-a3f1-4313-ac83-83a9e67c46d6','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-20'),
('93680769-7c30-4a56-9534-3f79a4ff32f2','ba4fb021-5e2d-482f-afab-70b81af37be7',176,198,26,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-6-1'),
('93685ddf-14a6-4eee-b3de-8a3163c99d4e','bdc15b51-242d-450f-a47e-a75e07f475a4',115,19,122,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-8'),
('936fdb39-c3af-4551-b535-d4e96315714f','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-14'),
('93700e7c-53fa-4ee3-9e51-7f0e57578f89','e178636b-b1d9-4260-aa1b-879946fa7f5d',13,86,65,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-16'),
('93711b06-b672-4ef3-82b0-b6120ceb39da','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-19'),
('93753b1b-124f-4dd4-a7a4-6d707ce4ff8e','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-9'),
('9375484a-0f16-43a2-9033-617572163c1c','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-2'),
('937a8fae-da05-4952-8945-6a8db5cf3a38','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-122'),
('9380a159-67b1-48cf-9064-7bd007239007','b2cc240f-bde3-400a-bbec-a61085853dd5',20,57,72,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-7'),
('938114c3-c9e6-41da-a3a5-15b2c376da13','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-8'),
('9382115b-a918-4e3b-8823-b12cf285e804','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-11'),
('9383ff5e-136a-4743-b821-29c20c6ad147','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-100'),
('9385d55e-e741-4029-9d56-ad54491be955','5aac8c34-51ea-4438-b73e-7d54bf02d518',46,48,29,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-7'),
('938724ab-d60f-45d9-8fb8-bc91f4efe96a','733bff01-cf6d-4939-aa79-6311531918bd',27,78,198,0,NULL,NULL,'808690841-1-4'),
('938778a7-0860-473c-9700-6b45ce8bd2a8','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-12'),
('938833c3-dc04-4aff-ba8f-fa7974239cbf','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',50,45,53,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-5'),
('938ab65c-d153-456c-87cf-523475b819e3','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-11'),
('938b4af4-faee-4d3b-b309-3592f40abef3','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-5'),
('938d9c05-c4aa-40e1-a630-326365ae6b32','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-113'),
('9393fd04-0a90-41ca-b462-f5ca61682487','852cb596-91b3-432f-8aee-ec6a804f3a01',56,83,100,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-13'),
('93975dae-81a6-447b-a1f6-a55fc129b234','fa67de56-43a3-49a9-94f2-09d5fa9ec349',100,53,73,0,'2025-10-02 06:45:24.859','2025-10-14 05:37:27.072','428696149-7-3'),
('939a7b8f-674e-4fbb-8320-fabeabcefe9d','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-32'),
('939e856b-c371-403a-bc31-656985921e9b','93682f23-197e-416d-95a7-a04da3e2c257',93,60,212,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-2-4'),
('939f28aa-71e0-460e-bd61-b8d1b6891806','fc62f08c-a4dc-4f3a-b1bc-a39834539515',100,10,192,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.759','515956879-1-7'),
('93a11f57-c9d3-4ddd-9d2b-62914d932ff0','f88c3e53-b711-4bcb-aa3d-9543580054cd',56,82,100,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-6'),
('93a16f9a-4cae-4a49-945c-73c959a43d92','1f88d51e-8d4e-4e6f-91be-d98044cd5087',80,70,68,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-1-3'),
('93a7af6e-f970-42ca-a19a-8fb8d290f765','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-4'),
('93a7caa1-1f3d-4617-8dc2-fb60979fd995','565f6966-f194-4d7c-8b20-64502045078d',57,53,57,0,NULL,NULL,'478350685-2-11'),
('93ab7665-9719-4da3-8c68-2799c69cc4d6','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-43'),
('93ac44b3-b543-4661-9e57-629481015105','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.986','2024-03-29 17:58:10.538','655111652-1-34'),
('93b229b5-cfc4-4019-93fc-7153c8bd5c4a','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-4'),
('93b3bcb7-f87e-4dc0-bba4-9bc4897d5e7d','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',120,26,44,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-23'),
('93b4ca93-219a-4b7b-8937-cdb9ad7166b8','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-5'),
('93b4f99b-b506-41e1-bd11-435a2c9cd29b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-145'),
('93b52d30-cd24-44c3-bb0f-9685463ac920','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-29'),
('93b70a8f-0794-4ae4-bee9-b2ab315481ff','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-16'),
('93b7abc0-18f3-4738-bafb-85991fec3857','f24b8347-6579-4a66-abf4-66e820067aea',0,0,0,0,'2025-09-02 14:49:05.749','2025-09-12 19:46:57.040','644391223-1-1'),
('93b7e685-226c-4913-b533-b260c654e82e','8b053eda-bba1-4f32-b6ec-244e823db5ac',96,166,11,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-1'),
('93b81e7d-676a-4be5-ae82-beb3739fc3b9','a78eafba-d112-44f3-a32b-fedce65f49ef',103,205,8,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-2-2'),
('93be9d64-f422-43f3-b670-aca6b3f175f6','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',5,45,210,0,NULL,NULL,'47816855-2-12'),
('93bf22ab-9960-44e4-a08d-52b59fe605a7','a2d857b1-bcf6-46ee-9e87-dabcdac62719',95,63,85,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-6'),
('93c468f9-c102-4ce2-8402-149f9cc7bafa','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.991','2025-03-18 18:32:54.342','644890175-2-4'),
('93c542b1-73f8-45e4-8e2e-46618287150d','7fee7544-b544-4623-b92a-7a80075349b3',123,123,65,0,NULL,NULL,'478514572-1-3'),
('93c550b3-e3e9-438c-8809-280292e94c6d','ebb978cd-58c7-4bbd-8316-d3317348da3c',90,95,65,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-2-5'),
('93c9d356-2b53-4fbd-8614-30144a62077e','b63291e7-9a9c-4942-9e5c-792e1279180f',85,16,57,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-8'),
('93c9dff7-3376-423e-be40-3769445e55ec','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-1'),
('93ca0d10-bb42-421e-be82-6ba5ce3370fa','2c42d6f3-528d-4738-9714-38cf6e6c758a',0,0,0,0,'2025-01-20 11:21:30.744','2025-01-28 20:44:59.603','231216092-1-2'),
('93cbaacc-4b4e-4876-9816-4fe09cf6b16d','ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705',70,70,97,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.285','598280715-4-4'),
('93d18ea8-9a76-41ed-8045-434e4ccb2583','5d0f8b8c-a4d3-4dbf-a36b-74c0b807f0e1',0,0,0,0,NULL,NULL,'428605585-1-1'),
('93d64385-4e02-41bc-80c1-d417233daff6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-13'),
('93d659b5-c69d-4240-aea3-2f43e0a5751c','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.151','735384295-1-10'),
('93d90f69-e376-4cd0-afca-956fa0c371e6','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-20'),
('93dabf9d-5729-492f-8548-16c25ea9bc6f','ec52a31d-c17f-41c6-9e4b-ece376aa03b2',100,209,73,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-4-4'),
('93db0ca4-530e-4bf2-b7a2-5d19ba4b22f4','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-66'),
('93db3842-2e6c-477d-bfd7-aabf8d5067a2','2e033ee4-214a-47cd-9ec5-93c477abafb6',48,194,113,0,'2025-04-15 16:01:09.054','2025-04-28 18:15:48.256','64446005-1-1'),
('93dcd511-decc-49fa-802e-9c30db0514c4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-231'),
('93dd39ac-f2fd-4c0c-a474-79e6233d02f9','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-14'),
('93e1555c-8bc6-4f6d-8ab1-3172e30dd414','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',20,50,50,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-8'),
('93e252e2-465c-4401-a8c0-9de5b5af9322','0009aeec-e682-465c-b701-363a3ef377a6',100,17,17,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-52'),
('93e3de46-6d2d-4a62-8393-21187d1b35b7','58ebcdbe-9281-4605-a44c-87684653f9f9',93,82,93,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-2-5'),
('93e4578a-e71a-4b47-9e61-01212c4c1400','ceaa236b-3a68-4533-ad29-229cec3a8f6f',47,35,204,0,'2025-07-12 09:20:15.399','2025-07-25 10:49:32.407','486405325-3-4'),
('93e5ea87-1ac6-47ed-afce-e12270d1fbf8','a8c5c790-fa90-42d3-9ce1-ba79c74bdc13',52,59,97,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-3-2'),
('93eba296-d640-4db8-b2f4-ba41ee88578c','6c23f9f6-3497-47dd-84cc-1eb6d89bd740',100,135,65,0,'2025-05-24 17:55:38.201','2025-06-03 09:41:07.360','31925609-1-4'),
('93f3b013-2a98-4c6b-80ed-999ef5cc876d','7e33f411-a309-4843-b994-1bcb7d71f292',77,75,85,0,'2025-10-20 07:18:11.511',NULL,'598168850-1-5'),
('93f40cab-3b16-496c-a703-c0b51dda3d02','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',185,50,10,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-15'),
('93f61746-8d76-482a-b862-db2697c5056a','f65bc971-0655-4e60-a4f2-19d36f14946d',75,80,100,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-2-2'),
('93f85797-565e-4168-83ef-81a0fd4bca7a','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-13'),
('93fc2288-f0c5-43c7-8102-a0b55cb7b330','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-34'),
('93feba46-9b7a-4e39-b3ba-2fe902e42b1d','d2f8d58d-42ad-4705-b1e8-a666af927fa3',83,5,80,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-13'),
('9400268f-a5db-408e-83ca-5faf92ee45e5','b28511d9-75df-4f6a-b1fb-ce18b7027a2a',0,0,0,0,'2025-02-09 09:51:39.841','2025-02-17 21:43:20.918','745536465-1-1'),
('94025d4d-32b1-4931-9349-31de716959b5','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-4'),
('94029194-a3f8-4b7c-9ae8-300debd217dd','83a4a2ab-63b4-468e-9809-edf00bbd2679',95,105,85,0,'2025-05-09 18:44:21.970','2025-05-19 20:26:27.501','570417524-1-4'),
('9404566f-55e3-4714-bdf8-59c319527b1e','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-5'),
('9404685e-7261-4f8f-a322-4f03a68a025b','3e4d9220-ce76-450d-a76c-9787b1f4433f',85,85,6,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-6'),
('94096784-cd6b-4c59-b426-5227043f0dd9','9a5c9f09-ecda-434f-8efc-112c1bc44fbc',0,0,0,0,'2025-07-08 11:31:05.659','2025-07-25 18:05:09.591','371440688-1-2'),
('94107f30-dcf8-4925-ba62-87b5687530c3','94c4f556-9786-46f2-b2fd-19ec8d6e3641',80,92,92,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-4-5'),
('94120739-bf8e-4547-8c61-89ca9943c123','7acada5b-2716-45f6-ac98-44841652379e',96,159,14,0,'2025-05-09 18:44:07.565','2025-05-20 16:27:39.653','221294149-1-3'),
('94129c7c-832f-4151-8825-fcb744196298','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-60'),
('9413f399-442f-42d5-a18e-5dfa374b8bc6','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-10'),
('94162eef-8e3e-4449-af58-e4d0a5215695','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-77'),
('9417cb11-5c39-45a5-939b-c1aeaba3ebc9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:10.778','248135683-1-15'),
('9419f04d-73fc-4b1c-a2c1-a16af4f38502','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:02.026','248284003-1-45'),
('9422508f-5483-4f06-81b2-283c1fe9dcac','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-5'),
('94241553-976b-4640-9e5a-074c75290280','2b07e55b-c1c1-4589-9452-4dc53ede2f8e',52,61,81,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-1-6'),
('9424e2ca-dd8c-40bc-821e-6114944673b3','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-9'),
('9425af6e-3ff3-48e0-b26a-0b7f0035b0b6','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',175,64,10,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-6'),
('94260310-673c-4d7e-9e1f-48d0bcfd6044','b85e0d9c-5dfb-438d-b4bb-4da1f04550f5',57,82,108,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-3-3'),
('942644ac-b534-4411-bad5-411b30936d68','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',65,40,40,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-36'),
('9426e1b0-98ed-43ca-b603-d37e870847c6','9f37ed98-135e-45e0-b26e-3af7dded2b24',85,106,56,0,NULL,NULL,'613592756-2-3'),
('9429928b-62ab-42b0-9d89-d6e9bfe8354c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',99,41,6,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-22'),
('942d64ee-1e51-46e4-8c80-cb12c78c682a','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-7'),
('943238f2-8ecf-488d-8b89-d7fd9980a419','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',90,100,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-5'),
('9434d59f-db19-4271-867e-b90c8114a765','a5ccb673-2961-4748-b867-0c0cedc7d251',96,197,7,0,NULL,NULL,'221196305-2-2'),
('94357c31-23c2-48b5-ba63-c3875f0a4e61','fc853fcb-c51c-4c07-b20a-ac57fdd1a81e',123,98,70,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-5-3'),
('9435847a-bd1e-4a59-b177-4064334a0e8b','4301b768-4818-4e74-a6d0-12a33474f5c6',7,42,215,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-19'),
('94360c35-feb1-4dfc-9728-5cdff315f73b','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-12'),
('9437b84c-395a-4884-80c9-6f1942241b56','2b5fa64e-2c3f-43be-9034-b86d4520cb36',77,26,200,0,'2025-10-25 08:59:21.121',NULL,'478485864-1-4'),
('943808a7-5885-45fc-8150-07b7b0ebe57b','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-17'),
('94386dca-148e-4354-8fc4-e3f588cdbb4a','370a7590-6b28-4a62-8bc9-2de0a5c0a969',98,115,70,0,'2025-09-16 16:29:13.363','2025-10-04 13:36:32.358','437712381-2-2'),
('9438799f-ec55-4d44-aabc-3c34dba0ae9e','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-1'),
('94397f05-bc7c-4da0-9b03-dac9ce568b96','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-21'),
('943b7c72-a1bd-49f9-9343-f0b61850465c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-10'),
('943c2014-067f-457c-9721-ddc48637fbfa','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-182'),
('943c90d1-9a0c-4740-9a29-c73c4611f88e','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-28'),
('943f292a-f91c-459a-ac28-7cb3a4abcc17','d3eee142-7025-4960-b54a-b014d61d72f5',0,0,0,0,'2024-12-28 21:42:33.300','2025-01-06 20:09:15.195','735389141-1-1'),
('9445aa56-ca5d-486f-90b2-bb03f720ab11','064e955b-72f7-4dfe-903d-af71b421e048',97,202,4,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-9'),
('9445ede2-edfa-4191-9745-305e322f355f','54f76545-b44c-4fcf-8097-cd39f86917de',178,200,4,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-5'),
('9447c5b3-7d0c-4d1b-998a-6a9eeb97058d','6ec8ebba-fdf6-42c8-aceb-e6a01c76790d',115,65,120,0,'2025-06-21 04:33:53.244','2025-06-29 18:30:40.604','745343811-1-1'),
('944afa73-f63c-49ff-814f-313854c75a33','6d0390ef-65ce-4154-a607-d67e51938ed2',64,9,200,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.283','455411696-1-8'),
('944c0aff-8664-4f90-8322-2eb46b938137','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',180,200,4,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-6'),
('94503f6b-0908-4742-83d9-2b7efeb45603','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-5'),
('945715fa-46aa-467f-9de4-0940538a1cb9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.708',NULL,'223317066-1-2'),
('9458e9db-0472-4237-982b-becccfd3c485','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-13'),
('945be631-dd1d-48f5-89a5-eb1051997687','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-2'),
('945d0654-0bbc-430e-9af4-cbf0ec99007f','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-22'),
('945d368a-fad7-4d47-860d-ca1f208a7c58','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.225','64434778-1-6'),
('945ec367-1975-4178-92bf-d95c19a5eff7','e0543c7a-5972-4240-aa38-f23558126c19',0,0,0,0,'2025-09-11 06:34:34.943','2025-09-20 19:00:06.128','745545386-1-4'),
('945f0d42-e448-4ed7-9205-eba603e16b60','c46208e2-2c19-421b-bced-7443bbea66ef',57,80,110,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-2-2'),
('946308dc-39c5-410e-a431-f8b31939e01a','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.353','248614196-1-6'),
('9463469d-ee73-4496-b3cd-b581f41696f2','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-56'),
('9466f524-af0c-4c25-8682-5d8ef8918f86','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-2'),
('9469bbf3-ade3-49c2-8b9d-c2cbebe4301e','2be304af-892c-437c-ad01-00360cd990ec',80,130,10,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-5'),
('9469e829-5e4d-452e-8fb5-6ca58bc090fa','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-5'),
('946bf806-cf67-48fa-8001-1c491ab09b37','8200af89-453e-434a-a4db-de08e8cfe818',95,85,234,0,'2025-06-27 17:12:14.763','2025-07-09 11:39:56.374','517365072-1-3'),
('946c4537-a3d2-4818-b833-eb48082e1f80','c8f396d4-65a3-4c67-8ae4-e78fccdca407',43,75,120,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.704','786668251-2-2'),
('946c9c0b-6042-496f-b765-353f4a9de1d0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-27'),
('9471a386-6d75-492d-9cad-c9de49874c4c','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-26'),
('9472522d-5a74-4cfb-bc4a-4e13af7bbfdd','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-3'),
('947273c8-e446-4a7b-ba20-3867490f09f6','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-2'),
('94733693-da2a-4e21-9e32-931ad6ecea00','d024ac00-3c90-4d85-add5-6d95182d7f3e',70,104,60,0,'2025-09-12 17:16:39.504','2025-09-25 14:04:59.283','817160215-1-1'),
('9473971c-f5ff-43e0-b319-beab2318c52e','be5f48d6-5c2f-457c-a730-eb86e26bbc49',0,0,0,0,'2025-02-15 13:31:53.116','2025-02-24 17:24:59.463','478992248-1-1'),
('947628a1-2053-45f6-9556-855049d85942','1fe5a3c4-700c-4065-9fa2-a479e3a6c022',200,96,6,0,'2025-06-21 04:34:09.409','2025-06-28 16:00:51.711','437133708-1-3'),
('9478645f-1342-4f2e-aed4-100926f3d7dd','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-24'),
('947a5727-fb50-4efc-8585-580fb054df5e','a52a8f1e-fcc3-47df-b282-9601c50b05d2',91,58,15,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-3-3'),
('947afb95-066e-4021-b41b-95251808a965','fd631dfe-2e15-4544-a24c-e5e50c960d7e',0,0,0,0,'2024-10-23 15:14:09.405','2024-11-08 16:31:03.162','223440405-1-1'),
('947b4524-be2d-4ab9-b8ea-2734efae4a4a','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.505','221639055-1-2'),
('947d86e3-3d4b-43b9-b9c3-0d596b1c28a5','69acd97e-52c0-45ae-adf5-ee013e52776f',102,55,85,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-31'),
('947f0a41-8294-46e4-ac4b-00c97e3244be','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-83'),
('947f5198-0013-44a5-8c38-d71659db736e','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-12'),
('9481d4ab-9712-4563-9515-c49030e8556e','66f8d34c-0c41-46f5-98bb-500adbb6f636',61,14,84,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-12'),
('94824fa6-21c3-44cb-9c26-60dbab79f1b4','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-4'),
('948275d7-257b-4710-84cb-c60dbf741d0c','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.113','734627626-1-15'),
('9485df69-5eba-4502-9bab-9588e9141f2a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-225'),
('94867401-5c9f-41ea-9dfd-5c0d8c068a56','743afebe-6082-4419-89e7-020f67e440f0',10,100,145,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-2-3'),
('94884d79-34bd-474e-bd11-053ea9a71b0f','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.000',NULL,'221811614-2-5'),
('9488b854-6998-44a2-b88d-4b7b8677feea','27bda15a-7623-4220-ac03-054c6daa64e8',82,56,110,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-1-1'),
('948a8ed5-fe00-4b30-8cbf-967ca143934e','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',113,63,48,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-6'),
('948efbc9-50e6-4a07-bf3c-1b1494d88fd3','1868aea0-f631-4deb-85f5-8aa25773bef0',47,211,5,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-14'),
('948fb79c-bcf7-40c3-9ea2-5b1dd4aecbbc','439a468d-6cbc-43e8-aa94-cfa411e4fd3a',57,82,105,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-2-3'),
('9490e9b0-40ac-4d95-9c3b-f64b74b3a79a','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-14'),
('94926c7f-3d1d-46c5-ab34-2af73e0f546c','047bf09d-242b-472b-97f8-46901b73eea9',49,18,70,0,NULL,NULL,'428905379-1-6'),
('949432e7-30a6-42bc-b171-dec534d44382','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-23'),
('9499e7a1-9c2d-42f7-a57e-3ce527f8cca6','86e5956d-750b-4aa3-8f00-53e2db7b9f65',84,54,100,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-24'),
('949ae79f-fb59-470a-9049-8dc7a9ae6d39','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',60,12,265,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-11'),
('949af778-412e-426f-8f28-806585e802a3','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-33'),
('949d94cf-27fa-42ff-bbd8-ad708617d890','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-27'),
('949e9cf9-7794-4a4d-bcf8-94792054eb37','249d1f3a-1f6d-4acc-ad1e-40e713130f9e',80,96,96,0,NULL,NULL,'59898054-2-1'),
('94a8d223-2669-4491-a3e7-a437c55854d3','cc9e4990-6f0a-4a2b-9332-771ed4bcf88b',51,51,77,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-6-1'),
('94ad3ae0-b15d-4f86-8375-62d55dc870d2','66f8d34c-0c41-46f5-98bb-500adbb6f636',105,2,181,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-13'),
('94afacac-bd1d-4f21-8a04-249801424a0b','a87576e3-14e1-46a8-99c7-1d48360995f5',70,50,50,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-6'),
('94b05258-f9c9-44b5-84b4-76d77ce3cdbd','9d7979f3-a35a-4a64-97d1-4ba973786029',44,6,195,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-5'),
('94b0b7e0-2d63-443b-9aa8-f55ca1b713e3','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-8'),
('94b1d71b-1200-4ddb-b15d-28ce16c7c623','cc608bcd-34a3-4342-be6f-46734f0c9313',55,57,27,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-3-5'),
('94b1dae2-d94b-4fa5-b3b2-fc715e6065ae','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-11'),
('94b2a382-324a-49f5-97f9-c2bd6b8a0308','9e08c127-dbad-42d7-a9bf-569bebc6cd6a',0,0,0,0,'2024-08-31 16:53:35.119','2024-09-02 08:33:22.119','478778231-1-2'),
('94b35082-8ec5-44ec-8cfd-ee7f41ee3f9b','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-12'),
('94b54954-d58f-4470-818c-eb566cd990e0','d0ade823-74de-4507-8f72-ff3352af4bbf',205,36,25,0,NULL,NULL,'428407424-1-10'),
('94b94124-0ec8-4a38-bbd9-3d77ac3cbf76','a88e69fb-2933-49dd-93b6-3700d0ff1dd6',64,52,155,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-3-1'),
('94b9cb79-970e-41ca-86a1-1a491cb1b1ce','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-77'),
('94ba8ddb-a264-4be8-a964-4e3e683a8b31','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-14'),
('94c1f83c-8d25-431f-908b-0d7c60a99c05','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-7'),
('94c5bec6-1e45-4d8d-a11d-7b1f9d560054','0009aeec-e682-465c-b701-363a3ef377a6',60,13,44,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-53'),
('94d07e10-b21b-4257-8ea0-1b537a49e7ff','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-78'),
('94d0e5bc-419f-4239-8ea5-ba96e739191b','2728034d-4fca-460f-994b-48aa204fcba4',200,30,100,0,'2025-10-20 07:17:57.978',NULL,'59878032-2-4'),
('94d5dd81-b63b-4b6a-bc41-33ac7d292db5','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-30'),
('94d983e3-2274-4497-bf4a-437fb689c6c7','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-74'),
('94dc9162-70f5-4d9d-adc6-0cfd17cd80f2','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-96'),
('94dcbf08-2442-485a-8282-d21265e00e28','5599957b-2f26-4cfe-8cb4-9c7b2aad482f',179,200,32,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-2-2'),
('94dd9bee-cdde-4e0c-a48a-9d4878fee68f','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-3'),
('94dea3e5-5e84-4202-938b-528e8e600e35','090b9a06-aee0-4c02-b626-f3e2002f0fce',40,28,26,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-1'),
('94e0d238-21e2-4a57-a869-f67a139a005e','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-29'),
('94e2948c-67fb-4f14-a73a-ead87f869ab1','546ad3d0-25c2-43dd-9443-e48b8e5b6530',325,7,7,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-44'),
('94e3966d-448c-4c81-bc53-4d0fca217966','af69c5a3-87d3-4548-a650-720b69a4fc69',92,8,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-52'),
('94e3cbc9-933c-4546-a4ee-1d07409fb5fd','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',170,45,8,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-37'),
('94e5d71e-8ed3-4f51-b691-6b3ed172e443','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-2'),
('94e855f2-5995-4af2-91b7-4b0e53c7551c','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-12'),
('94ead3e0-7325-4ede-b4d5-102325aaf2fc','e654d04a-78f6-4d76-ae95-c3bef1625ad8',0,0,0,0,'2024-11-08 18:02:53.802','2024-11-15 16:10:54.110','107593305-1-1'),
('94eb44ca-47b2-4a84-b30d-ba960f2a96fc','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-5'),
('94eb58c3-8bec-473a-b95c-40b1cbc0a137','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-92'),
('94eb5fcb-0c49-4a2d-ad6e-791aed6838c8','e6bddda4-b1df-4be7-bbd5-63cc4b197736',264,60,10,0,NULL,NULL,'42857810-1-12'),
('94ebaccc-42a8-4bd3-a90d-eaf5210baad5','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-8'),
('94ecec29-3ac8-4e33-9d9d-bf2907fa76fb','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',58,100,9,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-2'),
('94f23a22-7c0b-4879-aa58-c7af84508334','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-12'),
('94f6dff9-f3ae-467e-b8b7-202a042bf19e','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-6'),
('94f9c1c9-631f-4fe0-a1e3-7494a4158616','25f4965a-c481-4fff-bd08-ac93db0c7623',35,25,10,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-3-3'),
('94fb6fe6-9c3e-4ffb-b618-653a2cdd1101','6ec8ebba-fdf6-42c8-aceb-e6a01c76790d',75,105,95,0,'2025-06-21 04:33:53.244','2025-06-29 18:30:40.604','745343811-1-2'),
('94fe9f1b-4603-4405-9bef-1b9189c5d581','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-8'),
('94ff2705-a6d7-4aba-9b54-462ca90a3d73','e9626be5-ddcd-40d5-865d-7018bc1ef9df',120,50,7,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-9'),
('9500d8e0-7af8-4257-b2a4-6e91e60f0cfe','0009aeec-e682-465c-b701-363a3ef377a6',120,97,70,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-54'),
('95036fb7-cca3-4bf4-b706-1051b2018b3e','c4194c78-4d66-480b-af6f-490c87805b3d',32,30,14,0,'2025-06-21 04:34:00.573','2025-06-28 21:53:36.042','675592889-1-1'),
('95042940-9bf1-44e1-af0e-c816b5e807bd','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',94,65,107,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-7'),
('9504a956-2ebe-4555-b3fb-e12173d24cf8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-54'),
('95066b5b-2843-4417-badf-d7e284fde513','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-27'),
('95087912-6b92-47f3-b3c8-7214403b1f76','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-8'),
('950b2917-03a8-4ea9-8b1f-9e41bb48f064','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-8'),
('951048fd-57bf-4599-8237-ba444958975a','c29e76a4-89ba-4143-8fad-01a2910620ee',92,65,225,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-11'),
('9510b6ab-d41a-4468-adce-fab730c149c4','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-3'),
('9510f752-45bf-40b6-a697-3a266407f8ae','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-53'),
('9515ec2e-9c32-451e-bd3f-659c4bea3e46','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-15'),
('951a6ac9-77d9-476e-8899-a181cffa49e8','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-1'),
('951b26ed-460e-456e-862a-716dfcd9b4d3','a0411d09-0161-4774-8dbf-3805a5aa9794',39,15,208,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-21-1'),
('951c0a69-ac7e-43ad-9137-17a9cbcca87c','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',121,121,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-6'),
('951d4f67-334c-4d87-a7c1-81c4f0f5cb92','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-3'),
('95223baf-7e41-47a3-9514-02aabfbd3dd6','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-57'),
('952289e9-e509-47bd-a232-630719c6d8d9','86d992e2-310b-42d7-9b36-975cd39eb913',50,82,102,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.472','428182749-3-1'),
('9523bf4a-5eb1-40db-b87b-f4bc47ebdfce','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-2'),
('9529ddd0-0a2d-4106-9f4c-3a2185360c29','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-81'),
('952cc236-3f18-43f1-9745-57aa0efd1f11','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-113'),
('952e89e8-ff2a-4d97-8195-d80e462014d6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-18'),
('953454e1-7ca7-49f0-9a13-977cc5339f2b','8c3a9387-2db4-400b-95fa-11aef6c745f6',84,80,7,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-12'),
('9537b4f9-78a2-45b0-8b67-2b5c56874d2f','36dd80b4-449c-4041-8f6c-8ecd754e0237',100,65,75,0,NULL,NULL,'910181635-1-2'),
('953aa64c-3ca1-40be-b136-019ceea99cc8','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',59,44,18,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-38'),
('954543b1-404a-489a-89b8-520538800b66','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-17'),
('95462722-0134-4bbc-9324-acd029f1265f','d9f8d303-c2bd-4794-8f6f-028cc186a4ef',51,42,51,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-1-3'),
('95469591-0c0c-407e-a2ff-e6000e988658','638172c9-793e-4ec5-9ad2-cf82bf06eca7',34,34,142,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-7'),
('95473b2a-ddc0-481e-af05-d845ff65e45e','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-6'),
('95479c45-f08a-4d65-8b55-68ffaefb7291','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-7'),
('9547c620-0f62-4e6c-889b-80ddbd7a5281','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',85,52,104,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-4'),
('954a80c3-a769-4f39-af97-770368def4c1','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-11'),
('954ace06-c628-4200-ab26-9436f49cea0c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-107'),
('95504849-a7ff-48ae-bc99-3472afa46c78','cc500972-1de0-4a6c-b6bf-789f51e9fc9a',90,95,85,0,'2024-11-21 10:29:13.569','2024-12-14 08:24:23.414','98285799-1-2'),
('95539823-cc7a-4878-ad89-a473a66b7b15','059d418f-09ca-4d30-b6ea-028323d66c5e',92,96,80,0,'2025-10-25 08:59:02.132',NULL,'59841260-1-4'),
('955736d8-2922-4b4c-b3cc-7411a2e03c76','28a006d0-78f4-4519-9b69-fe1363cd8176',120,61,120,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-1-4'),
('95586c63-817e-4041-bd39-d2c32eb8556c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-14'),
('955cf8af-c400-414a-8606-f66387cf1797','1dda97ac-51c1-4b89-abe1-67ed131b4e9f',87,60,223,0,NULL,NULL,'745883224-2-3'),
('955dda90-7f65-473e-89b8-8a3f67c0c1c1','c22c54f7-1976-414b-9910-bd141ffe1913',95,188,7,0,'2025-07-12 09:20:42.738','2025-07-22 13:22:50.069','613822987-1-1'),
('955e07a5-0cd9-47c3-99e8-73749df70b5d','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-6'),
('955ea395-bccb-407b-8380-fbfd3ca97ea8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-74'),
('95664bab-1c99-453d-a675-958379c70df5','f4018e81-dfe5-4f02-8ac8-0d56afe9c0c6',51,51,76,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-2-1'),
('956655a4-44c9-4185-8520-b5e9452ea384','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-1-2'),
('956bbf6f-92b9-4687-998d-724f663c0e41','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-28'),
('956f3ce4-258b-41e5-89f4-3afb44c70313','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-1'),
('9571068f-07ee-404e-8e3f-185a2e8cef11','e1a67057-fc22-48a3-bb93-d93ddb94cf07',75,96,83,0,'2025-10-09 08:39:59.394',NULL,'745759881-2-2'),
('9575b595-afcc-4089-99c9-43f3757f2352','40c4dd8f-39f2-485c-9dca-60d32029c90d',200,160,27,0,'2024-03-31 17:55:12.689','2024-04-12 07:16:47.838','982547993-1-2'),
('9576edfb-a9ac-4308-a3b4-3ad33e94e5ee','555b2841-46e8-45eb-9191-165bb36234f5',0,0,0,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-4'),
('957a83d0-c07c-4d7e-a191-771ed24e0f1e','be99e41f-406c-4044-b60a-ad33dea43bd8',245,105,70,0,NULL,NULL,'319400399-1-3'),
('957ab2e2-ad1e-4d70-b5c1-2f487cd44474','969a892d-9ae7-432a-bed2-24840d90f040',72,76,94,0,'2025-07-29 12:58:50.480','2025-08-06 17:56:19.273','817395462-1-1'),
('957bf8dc-0cbd-400e-a13d-dcbbd7b063ab','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.466','478972804-2-28'),
('957e3ac1-4891-42e7-93b1-4c353565f555','5a31d59d-2a39-48c6-a450-4b8e78dae401',45,27,200,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-5'),
('957fb4aa-7db5-4952-943b-333aa9ad854a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-101'),
('9584630a-1442-4653-be4e-71ead1db9ef8','5152e8e9-927e-405e-ad55-1fe2f6b40096',50,50,60,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-2-1'),
('9587c4a2-08cf-4c8a-9297-a25452f50177','3535d433-eb38-4879-84b4-dbf8410809cd',210,45,6,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-17'),
('9588f92f-4771-48b9-bd93-e49915c3ebdc','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-113'),
('958a20d2-9060-4d7a-bde9-607e33f689c9','b23cf296-f843-4492-9697-0fd43d657771',210,42,6,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-11'),
('958c0272-f54c-4ce3-95f5-611e5b44cb42','0511ebb6-7f60-4bc5-a2d3-4d5b19269e5a',13,93,204,0,NULL,NULL,'531481098-1-2'),
('958faaae-ce2b-41d4-bd41-da929dfa2c1e','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-2'),
('95904616-dbab-4c5f-abd4-8b068c957e9d','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',163,10,8,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-114'),
('9592711a-e7a7-4f8f-8971-78d22f9a680b','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.343','2025-01-09 16:51:50.694','745422037-1-6'),
('95943887-cd2b-48fc-9c82-38eefe5ef6fb','d364225f-466b-4bf4-be94-78a3b92ff966',51,51,77,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-4-2'),
('95949d85-24c5-4c03-ac19-250152352eb1','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-50'),
('9594d348-d11c-48c3-9f08-dae2796720d2','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-23'),
('9599acf5-3e19-4b69-adc2-21fcb86a1dbd','04fb64d2-7678-40dd-8131-83cf0774a2fc',44,44,65,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-5'),
('9599b888-fad5-488e-be5e-cd706e92bc18','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.128','2024-05-29 18:59:01.872','126938963-1-8'),
('959af769-203e-40ce-9c94-7f758f2ee579','7ba47169-83ca-49a6-98fc-6ef1a1990eac',195,60,95,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-17'),
('959b50b0-385e-43da-8c83-393b27aeb103','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-18'),
('95a161f9-d6df-4f9c-809b-0343d794a39d','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',155,25,25,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-25'),
('95abc6a8-cd69-4e4f-badf-0244ddb0bdf0','ef950bcd-c030-42d5-bca8-173f8ff8e8f2',36,52,75,0,'2025-04-28 07:40:50.293','2025-05-05 09:10:18.502','613725694-1-2'),
('95ac62ab-783d-42c2-9198-2d4279c6287c','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-95'),
('95af0cce-f192-4746-b583-6ec80a487c29','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-6'),
('95aff9d9-8b56-4534-80d8-dcd2ea1a5eaa','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-36'),
('95b1591a-5566-4f1e-8724-2f46930f22b3','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-4-6'),
('95b1aa21-e491-4944-95c6-6acc9ebb000b','54d4752f-e7ac-4178-9490-9a68454369fd',60,60,50,0,'2025-07-19 07:52:02.271','2025-07-29 13:55:08.002','982426968-1-4'),
('95b281c8-34a3-4fb6-9210-58a76e3cea1b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-45'),
('95b4988c-5969-4734-a81f-99a11aceeeda','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-14'),
('95b79e12-bbf5-4045-84ac-ba126d17dcd5','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-4'),
('95bddf39-237c-4d35-a0c4-f96605a1b991','cf9e313e-63a3-4829-8ac3-fa259b349ab7',7,94,94,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-3-2'),
('95be730b-c982-4c29-bb91-71433bfb33bf','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-194'),
('95c2b636-2d0e-48ba-9760-3bf691b47cce','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-23'),
('95c38867-6f34-4e1a-a316-a03b1585fa18','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-6'),
('95c41ebb-5f2e-4f04-9f77-874737bec418','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-4'),
('95c5713b-1ff1-4d1b-8bec-79f7323eed60','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-69'),
('95d1a794-5670-4650-acc6-7031be7c7728','41a755a7-afba-440a-a117-478fbfdbfd19',96,65,240,0,NULL,NULL,'478545195-1-2'),
('95d21d88-6757-4022-b247-00625e9f439b','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-3'),
('95d2e50b-1af2-4309-9d73-5e17e6f71f06','5a89fae8-525a-4de4-8188-2f4d7c892e74',57,4,222,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-8'),
('95d31e4c-4d43-4a76-b309-0487d688c9af','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-24'),
('95d3facc-ba13-4b9d-85d3-c8c16739e714','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-27'),
('95d663ab-b831-478c-a959-eebf2a2eae31','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-7'),
('95d7ac93-7e83-4c08-8e5b-8be051fc0e97','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-138'),
('95d82ce2-1ac3-4032-a353-855703299397','648b1063-2206-4845-a6a3-5b3089a2bafc',240,36,112,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.533','531344250-1-4'),
('95de685a-9122-4dcc-a775-d95527ad7bfe','5632f22c-493f-4a5e-afdf-13268c32b047',15,23,13,0,NULL,NULL,'528640995-1-8'),
('95dec8df-a697-4992-ad72-36a847d14662','b426d6f3-b133-4794-91a9-96e662c2e201',42,43,77,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.303','371194748-3-2'),
('95df6865-b4e3-491f-85d6-0ed08fcc1b54','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-58'),
('95e13676-d3f3-4856-97cf-342ed21e086c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-124'),
('95e1ff40-e015-4f92-a9e3-dcb653db11a0','958237a8-ec72-44d8-b7fe-5cff9027bc0b',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-3-2'),
('95e3f6c0-a32f-4934-8449-38b6cc4bf1a8','3535d433-eb38-4879-84b4-dbf8410809cd',210,56,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-19'),
('95e58b7e-f392-48d7-b275-43fe5687015b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',210,8,63,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-22'),
('95e5a24a-5faa-460b-bdae-cf5e69c35e96','536180b1-1c3f-4444-a507-049eec9ae541',24,45,216,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-1-4'),
('95e993ea-47d0-4adb-a683-21ac64d4e494','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-79'),
('95ef20bf-a8b5-4053-91aa-b4c6086763e6','e89e7d75-4967-4c63-9f73-981469e531af',235,58,5,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.435','319835776-1-27'),
('95f13717-57ab-4807-9ce3-a43e3edd3a0f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-142'),
('95f17cc7-554f-41d8-954f-4bc21f90cd3d','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-20'),
('95f2f90e-9516-4ad2-8c00-8a5653936964','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-59'),
('95fa2de5-619c-408d-91fb-c36b0a108d47','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-84'),
('95faa21f-7fed-4fce-a8a4-180290cf10fa','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.029','22391500-1-92'),
('95fb5fc4-1c3e-4035-9902-64068c2df339','2e7ef962-2f2f-42bc-b914-97f73b1ffeb1',0,0,0,0,'2025-08-25 12:32:02.500','2025-08-31 10:05:37.484','12771217-1-1'),
('95fdbcb2-e6e8-4ab1-8375-e565a6889a60','877cee40-fb6b-423e-82cb-24d2a131b0e8',214,44,50,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-6-1'),
('95fe0035-cff4-499b-8666-4b0ff527b878','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-94'),
('9601e024-dfb9-4b0a-a518-9b06e8aa142e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-156'),
('96022cb4-7e6a-4863-9d23-667c693074f5','cc608bcd-34a3-4342-be6f-46734f0c9313',57,89,235,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-3-4'),
('9602e8ed-d1f6-4a81-b395-102a987d7154','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-6'),
('96034fd3-9ddc-4543-9fe6-d83aa3660ae7','0bfb61ae-69eb-47c8-af39-c469e7cbd3f7',30,120,200,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-2-1'),
('96096ee4-5114-49fe-8553-86fc20fa47b2','78b92a41-f41a-4dfa-97b0-48b35908cf44',51,51,77,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-2'),
('960c5a20-4dfc-4454-914b-fe04c123a72e','237271e4-97e7-405f-ae1a-c243dd0c3783',144,7,146,0,'2025-07-02 12:43:33.291','2025-07-21 14:10:49.019','221417499-1-1'),
('960ff5b6-b151-4a20-8837-17992f337fd8','89252f53-ec5b-4147-a609-055aae4459d1',60,61,74,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-10'),
('96106486-5a90-4ce5-8add-a0e5e5497f92','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',100,100,6,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-24'),
('9610a043-aeaa-4af6-ba6f-98ea018577bb','0009aeec-e682-465c-b701-363a3ef377a6',170,70,6,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-55'),
('9611772f-37fa-48a1-a3bb-0ea145662383','5c1630ab-9f31-4753-99de-1615c793dd9e',65,80,21,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-4-6'),
('961587fc-8b4a-45b2-bfaa-52f6e9198867','7e9077fd-3ffc-4968-8b44-b2d19585952a',0,0,0,0,'2024-11-02 08:42:27.980','2024-11-11 19:55:44.992','745778561-1-1'),
('961a3784-1241-45ac-8dce-6f123d41c3a9','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.673','2024-09-12 10:54:44.776','750501209-1-15'),
('96220dad-d368-4f49-94f0-418fa4663c2f','9cec7784-226a-4c4e-91ef-982823f6722f',83,97,97,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-3-2'),
('96236038-9ae7-47cb-b267-a4c39c4e37cf','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-10'),
('96271ef8-f695-4535-8bf9-68a28a39e610','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-73'),
('9628cac4-626f-4581-8e4f-62ba830e9875','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-18'),
('962a35b4-3089-4d71-a6df-f339674fdf83','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-1'),
('962ab125-5751-4ad6-8e01-9c6eb30509ce','01ff323a-2bdf-41db-bd07-b6903d6c33a6',43,43,78,0,NULL,NULL,'371117320-1-4'),
('962aeb2f-1c46-4270-8146-b89897b8bdc3','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-1'),
('962b0d55-09d0-402c-868b-0ba7b1f0f2e5','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',232,90,70,0,'2024-10-02 09:26:32.555','2024-10-10 16:31:34.970','428736949-1-7'),
('962b114c-b28f-4909-b978-bf10aa4e58c3','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',113,72,12,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-9'),
('962e8f8f-58d3-4dc0-95b4-97633fb696ef','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-26'),
('9631895c-603a-480d-88db-858840a18ed1','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-35'),
('9631ad2c-ac11-42ab-8a0f-94c11813fe5c','42b7553c-1533-4400-b356-4c6840431f4b',46,202,26,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-2-4'),
('96348b65-2ee1-44a4-947b-d0cf5ac88461','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-5'),
('96353b3f-ce24-4eac-89bd-8e8b868a5c47','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-7'),
('96364113-6f16-44b9-9c41-df559f6b08b7','46b78526-9a68-4bd6-a664-c8493567b110',46,53,45,0,NULL,NULL,'248513969-1-1'),
('9638655c-10aa-46a9-a362-a894d22ba30b','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-5'),
('9639a5af-b9a2-432d-b01b-586f47d757ef','00d33439-2cbf-47d7-9bad-43659e6a874b',90,90,70,0,'2024-10-23 14:11:48.201','2024-10-31 12:13:55.505','501256266-1-2'),
('963e3662-3a2e-460f-940a-040a21cec16a','351157cf-15d1-4ac1-ad90-0df56b569eab',93,112,80,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-4-3'),
('96412730-7603-44be-b158-11b4a713c957','54f49f0e-3750-48ef-be0e-ae8f72989d98',0,0,0,0,'2024-09-19 18:27:15.225','2024-09-28 12:18:48.557','982542299-1-2'),
('9645d2eb-f4ec-4c8e-b490-e2158d44860e','4fe1f522-463c-4be9-bfa7-8a0345fe9fe9',97,178,7,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-1-3'),
('9648ba4c-b9d1-4f42-af60-54ec6164c63e','b5b0b7ac-87b6-4580-b7a9-4105fadd6d34',136,70,101,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-4-4'),
('964a59ad-2d17-4abd-bd35-0cf4a6e5b3df','0b263696-c301-4e53-af19-9954fc5ad107',0,0,0,0,'2025-08-07 16:52:46.856','2025-08-20 12:01:46.079','428470171-1-1'),
('964ceaa7-871d-4840-9933-a146b0b8f64b','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.748','351330330-3-2'),
('964cfcd6-cc78-4309-a417-736a774d14fa','065a4131-ff13-4bb8-8bf0-5263586379b6',0,0,0,0,'2025-05-09 18:44:19.477','2025-05-19 20:26:32.652','371785400-1-3'),
('9651da55-2820-4314-95de-e1e4f0e842f6','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-74'),
('9651e1c8-ea8b-4f69-8572-3035e35cc213','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-1'),
('965452c9-cf0e-4020-8ddc-03b75d9fe5cc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.965','2025-04-26 09:16:50.955','223734808-1-159'),
('9655a982-1eff-4142-b71b-7f67feea7585','a3bf1b4b-19f0-4547-abec-82eb48474c5f',76,75,11,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-3-3'),
('9657b9c6-9600-4674-89da-a77f24f3dd97','94d4fd15-f663-40b8-8ec9-f93a5cde757c',59,37,16,0,NULL,NULL,'614364554-5-6'),
('965b08ec-2132-44b9-8639-4cdcdd40745a','7defd633-f7ab-424d-8029-028d1b045752',44,82,12,0,NULL,NULL,'501119446-1-13'),
('965def6d-4f21-4253-9293-35d379f8f7b9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-71'),
('965e5a29-48c5-4f5f-bfbb-c3788faf92d0','546ad3d0-25c2-43dd-9443-e48b8e5b6530',44,14,94,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-4'),
('96613b02-d910-44ba-84e7-94c991fb286c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-8'),
('96623768-4333-4cc9-a36e-707e7a2cffe5','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-17'),
('9666752d-1eb0-4f0f-8a69-ae1fdb311d70','49b0262b-aeb4-40b0-bdcc-b5461a64c972',115,67,4,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-10'),
('9671385b-2ebb-41ee-a89a-e38f840a1fa4','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-6'),
('9675362e-f75e-4cdc-93b9-dcec985d314d','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-44'),
('9677aed7-8ca6-437b-8a4e-235cace2e8da','6ec8ebba-fdf6-42c8-aceb-e6a01c76790d',10,20,30,0,'2025-06-21 04:33:53.244','2025-06-29 18:30:40.604','745343811-1-3'),
('96785788-542d-4215-85a2-d59e99670d48','d3692bbe-c68f-427e-b8f5-575726bb8e24',0,0,0,0,'2025-07-08 11:30:58.678','2025-07-26 16:11:26.524','478403352-1-1'),
('9678e7c4-165f-4014-9fd2-262118a4f300','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-16'),
('9679756d-9ebf-490d-b660-1ea4649363bd','b4b0a716-b412-464e-9731-24f8bde6af44',90,240,65,0,'2024-12-01 06:48:29.054','2024-12-07 13:11:51.072','982835475-1-1'),
('967db9f7-b7fb-4766-ba90-0211bd80eca2','56f86587-7355-4e49-9eb5-727edc1be570',208,44,6,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-11'),
('968121d8-f381-4bbd-b9b2-11d544fd4f0d','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-16'),
('9687f056-c63c-4761-b5ac-b2bb2760cbea','6cee1429-9935-4eae-be32-dc630b6d70e8',200,180,30,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-24'),
('968852cd-85e6-4fe6-b969-b99a0e9421bc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.748','223422825-1-197'),
('968b0df0-a033-4196-9d57-2181e7fe03b2','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',92,100,5,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-26'),
('9692c89f-2747-42e7-9dd6-4e186823fc78','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-85'),
('9694a0cf-7c50-47ed-b770-0a22fcad5f8b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-115'),
('96956c0b-e976-40ec-9265-9e371a8d2ef0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-63'),
('9696e359-7685-49aa-9525-8409c3d643e8','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-7'),
('9697a417-28fe-4955-b4ae-2416f49f958c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-48'),
('969976ca-1d61-4e6c-9099-b98208cc5ac7','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',88,94,243,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-6'),
('969b4849-ca57-43b7-8d1e-54378b8f6f99','28a006d0-78f4-4519-9b69-fe1363cd8176',72,19,45,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-1-5'),
('969c3e33-ed72-4889-a431-c9f903b50466','6dd63c3c-43ca-49f0-9b2c-7b78a1c3be43',115,95,80,0,'2025-08-15 15:03:08.178','2025-08-21 06:44:09.150','478824521-1-1'),
('96a3ade0-59dc-4a8d-8a69-595db6b720d6','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-6'),
('96a4e147-b67a-4df9-91eb-5133ad85d939','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-3'),
('96a70e6f-2d68-4647-94eb-29fa2a206faf','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-8'),
('96a87b36-fa1e-4c1a-ac82-0e561f5a8e62','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-30'),
('96ab4864-797e-4f26-90b1-e8d44a0ad72b','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-46'),
('96ad8f61-cc0a-4eda-bdc9-07237df3bb0c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-30'),
('96af5265-bee7-4551-acd6-845366aeaf59','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-15'),
('96b01d78-f10e-43ca-9473-91f42b90c8fb','600b10a2-65bd-4820-9711-3189a40e7575',57,105,192,0,'2025-10-20 07:18:19.736',NULL,'644741916-1-1'),
('96b42754-8171-4c80-b9a8-95456ce36797','1754be32-bd97-48c0-9a32-09a8d9667b9c',0,0,0,0,'2025-05-28 19:08:59.196','2025-06-06 17:36:45.892','65728268-1-1'),
('96b4af4c-0bbc-465d-bd8a-153d67479802','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.873','910775394-1-15'),
('96b585c8-0e8e-4ecf-ae17-52f83ae43baf','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-152'),
('96b5ed4b-f260-43de-b4aa-2eb1a5263207','b4183fd9-691f-4e50-aa3e-1185b3e78cff',30,30,8,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-18'),
('96b98ae8-bd94-406e-ad95-f4e27c15cbc8','916fd678-d465-4976-acbd-ecbf61315197',0,0,0,0,'2024-03-19 07:52:14.899','2024-03-30 07:26:56.125','449634859-1-3'),
('96baca46-6c08-4ef8-bfb7-d3c5a2f5dfc8','3ba27633-a526-475c-9e24-fa446137f6ce',100,80,118,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-2-3'),
('96bb2479-8b21-45e4-adac-de5fc5f0ded2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-7'),
('96bcd925-3e8c-4247-9148-0578210b4561','f0ccee55-ac9f-4706-9ef6-eab6558d6a64',107,107,10,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.212','221186271-3-2'),
('96be6507-272f-4aee-b8ac-8b862cbbb4e9','98713122-22d9-4f83-b25f-bee68631b924',130,126,10,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-2-2'),
('96bee9c9-cfa1-4780-b16b-65606eac5fec','2fe519bb-8989-4e31-9bbf-7258948724d8',90,65,230,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-2-1'),
('96bf029c-108a-40b6-95e4-269c3a5f6690','9dd1fff2-f6c5-4178-8893-9bca27b3a077',200,200,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-11'),
('96c0a64b-4959-41c4-ba2d-cd8c9747cf55','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-8'),
('96c0d282-4cbf-49c6-b8e3-6b689c0d5d12','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',205,20,34,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-23'),
('96c49de7-50f0-4429-9d01-56669bb9ff2d','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:35.063','248135683-2-60'),
('96cab1e1-781f-40ae-9040-3bded85c74c5','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-6'),
('96cae35e-95fa-4158-9974-9f3b085b0822','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-12'),
('96cd34f0-965f-468d-8a01-bdd674855b0f','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-28'),
('96cd366f-bd67-4bb1-9696-b9c75669eb6c','177be132-8ef4-4489-bb59-2794e3f4e826',80,125,100,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-1-1'),
('96cddec1-6f53-4d45-b234-2fa3c305d3af','841f7f01-a7cc-440b-859e-dea7f085dd74',92,27,200,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-13'),
('96cfd419-4ef7-4be0-aaf8-f35c075b88df','49c326ab-5b3b-49e7-a781-28760709b5be',65,164,95,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-8'),
('96da8755-5eb1-4289-8b36-4843a676456c','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-12'),
('96e106fb-c52a-4040-95e7-501966725360','66fb1f1f-5cda-45eb-abc6-d7e04b3ff904',1,1,1,0,'2025-03-27 15:05:45.141','2025-04-05 20:39:06.079','465194627-1-3'),
('96e751f1-0eff-41cc-b325-ee181cdca1ce','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-15'),
('96e7e3c8-076e-4a50-a30c-77a3e9d78c6d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-53'),
('96eb4063-73c3-4ed7-a931-007ab75cc84c','ad3d8fcc-b247-46fd-95f4-08480bea8dd6',188,96,6,0,'2025-09-24 11:01:59.340','2025-10-07 06:17:28.408','531309772-2-1'),
('96ebe5bf-6750-4f88-9c0b-23abecd18d4f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-128'),
('96ef9082-d51d-4c67-9316-5e1ddd6f1d35','ce705bb9-2292-4b08-8e28-45289657fca2',0,0,0,0,'2025-09-02 14:48:53.641','2025-09-12 06:56:40.399','011222896-2-3'),
('96f0d884-fda0-4b5c-a065-8fef316f96a9','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-49'),
('96f29ace-b61e-4bf1-9908-cc7e19bfbe5d','7f827719-d0a9-4910-9aef-532cd3731df7',20,16,223,0,NULL,NULL,'745995046-2-18'),
('96f4d766-fd2d-41b6-80d7-612400c44f76','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-174'),
('96f4de7f-98d4-4597-bf2d-38995269571c','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',208,46,13,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-12'),
('96f60e09-877e-48cb-8e1c-336e05fba1bb','0946c018-5896-43db-97d4-34199264b7d9',70,70,80,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-1-3'),
('96faf69c-e8a2-42a5-9b39-82d71322ceb7','ca2466d1-9a83-4f57-8f76-f5ddce302e04',124,206,7,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-15'),
('96fd04e8-4089-4e2f-8b9c-38af214bd134','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-56'),
('96ff0bb9-dc53-4fa4-9092-ca3c8f07c774','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-39'),
('9701ee34-00fd-4d48-b56f-873bf78d391f','09c8cff9-2167-4239-96d7-6595b68b51e8',0,0,0,0,'2025-08-14 08:21:53.109','2025-08-19 06:02:02.037','663164000-1-1'),
('970313ef-1611-45f5-86e3-bc77e216a06b','5b81703c-cd5b-4b56-94d7-e111a745e9ae',105,75,58,0,'2025-01-26 10:54:20.546','2025-02-10 14:16:33.210','221240151-1-3'),
('9704e6e8-12f3-45e8-aefb-aa02661fa594','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-30'),
('9705dae0-fa7d-4cb9-ad39-4ff8592d79a2','76087092-4086-4cd5-acc6-7f775e746dc2',100,142,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-5'),
('97070804-b13f-4515-b275-792725c9dfab','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,45,6,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-25'),
('970fca50-dd92-4155-bb19-6b84c34a1c5c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-8'),
('971303db-eae6-4e94-b701-4ee1c264921f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-1'),
('9715de10-97ff-4595-9a28-4edbbadb53c2','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-116'),
('97167478-11ed-427b-9830-de289e87da4f','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',40,215,80,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-7'),
('971e40f3-640d-41dd-8316-a7a6ed9385a9','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-32'),
('9722f993-8a22-478f-b3dd-626a1f6914ea','ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-2-1'),
('97297174-c021-4ea3-b2de-9fca0a30caa4','ece4ba5e-e243-49ff-970a-1ff0579ad2f3',0,0,0,0,NULL,NULL,'745505506-4-2'),
('972ddcce-b0a4-47df-bdc7-924de66d06fd','bf2fbd97-6d0f-4724-b25e-47e019854e49',46,6,111,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-14'),
('97318240-f70d-49e0-8822-e0bfb52678fd','6098bfd6-9976-47f8-a799-df79295948c1',45,5,222,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-8'),
('9731f532-9156-47d1-bc11-62b92b68a079','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-37'),
('9732d991-a8bb-43ff-89b3-6b3b2988c42a','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-3'),
('97370305-3f3e-4eb2-899a-b3158018715e','fff846e6-362b-483f-ba3a-df216849c545',77,92,53,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-4'),
('973aa6f6-a85b-4681-9363-63faacaba8f9','ce4976ba-e974-4470-8acc-c28f5a58a2e9',17,17,200,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-1'),
('973bea44-89a2-4f9a-83c3-a75328889784','fb58f438-30e4-4e01-af6e-6378e27a11fe',207,93,9,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-14'),
('973c1cf3-7579-4817-b574-c648b097945c','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-10'),
('973d4b73-3c01-466a-96ff-3e9956e4393d','77622bd1-22d0-484e-a26f-ce2246532635',12,126,167,0,'2025-10-08 17:43:50.389','2025-10-17 20:57:20.132','614901187-2-2'),
('973dca1c-0bf9-4947-98ba-72e755d1e2a9','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-61'),
('973f1649-a3c4-4c62-9554-a16e09543bdc','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-3'),
('973f73fc-7074-4c25-b35e-195a915af132','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-30'),
('97414d4e-054a-4736-b0b1-369a5c8b626d','e86f2f3d-8f0b-4894-8c39-9063af830231',29,20,21,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-12'),
('9746bec2-9bb6-47d2-b820-e59975ca8256','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-16'),
('9748a338-a11a-4ae5-9c61-81c2b508a437','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',48,25,60,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-39'),
('9748e217-9b26-45cf-b5ff-9930873c77f2','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-11'),
('974e9907-a8bb-4636-8998-e979b43de3e5','c2ca9295-3327-4596-8115-dd1ef2d64d4f',170,40,27,0,'2024-11-02 08:42:44.072','2024-11-09 11:12:30.683','347986383-1-5'),
('97502a6b-96c3-40e6-ae4e-ab3ef2c2abe8','4fee46a2-3558-4ad0-b22f-8e6a38950750',0,0,0,0,'2025-03-27 15:06:22.210','2025-04-04 17:24:33.515','478650682-1-3'),
('975067f5-0638-46b2-9632-603338e14337','ddf610d0-9aea-487f-b0f3-3e66ddc80ad7',0,0,0,0,'2024-05-08 18:43:20.667','2024-05-21 18:45:51.098','478202878-1-2'),
('9750fe28-fd58-4e77-a1c6-044c746e8217','5c42fa66-1197-4462-860a-1846d76f1998',0,0,0,0,'2025-03-27 15:06:14.921','2025-04-05 13:45:31.240','745789797-1-2'),
('9751c55c-b3b4-4c15-b5dd-9543fc947a43','58db4ec8-cb6f-4832-bcbd-1cd3594b201c',50,36,54,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-1-1'),
('9751dabc-8d16-4015-aec5-b6d0a6375081','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-2'),
('9754a2da-06fe-41b4-ae8d-fc2a1c904088','ae2f16d8-65e8-4efb-b2a7-26877719b20a',58,87,11,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-8'),
('9754d596-21ca-482b-827b-51eedc9ced78','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-16'),
('9755c130-d53c-4d3b-88e2-c197ba9d8f5d','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-10'),
('9755c48c-b211-4986-822f-5b935a339a06','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-72'),
('975ada2d-0e85-4774-993a-510e3c1565d8','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-7'),
('975d266c-5a64-4545-a595-fab6b38ceb4f','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',145,70,13,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-1'),
('976651e5-72ef-408f-9464-6daa6fbdc1d0','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-21'),
('976697a8-e641-441a-befa-0ad5a8f9a607','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-201'),
('97675391-4157-4fca-aeb2-d0cf25d86e13','9f9f808a-df35-43e9-9547-e5a703a5fb49',100,95,65,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-3'),
('97689afd-9e49-4117-b964-a631e9604764','85db759a-5e10-49be-92ff-a951a588c1a1',55,37,37,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-8'),
('97691cf9-255c-4a9b-8cc1-f538e00f56e1','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.378','745175736-1-2'),
('976924a9-059a-4765-b81c-769a5b713b53','ce42e11e-4d43-4c6c-8883-9e3ebd875644',90,70,76,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-5-2'),
('976a3f25-dfbe-4391-85b3-88b016c20fcc','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.856','412252425-1-5'),
('976b1e27-92f7-451c-9212-c17ae3e23994','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-1'),
('9775c02a-28fd-4564-8532-1bf720a6ea67','acfd21b9-6dbf-4ded-9e6d-ff15545c15fa',75,75,65,0,'2024-11-15 17:06:35.912','2024-11-27 15:32:39.246','449215672-1-1'),
('9778ac75-437a-4194-9ed5-aad2a48205f0','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-22'),
('977b24ff-49c1-4710-8428-afbdcd37b58f','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-7'),
('97810ed3-bec9-4cb7-94f8-8f3fa739c5ae','186c3fe1-8981-42c5-824f-091f5394d4a8',94,43,24,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-1-4'),
('9783a551-6794-42fa-bb95-679c60b40c42','a89f5cb0-4036-440c-b388-8ef641d6f3b9',225,16,53,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-3'),
('9785a5a4-6897-4b52-a941-f9f7a4cedcda','1fffa8ea-befc-4b74-98ce-8981bef002ea',82,82,63,0,'2024-09-19 18:27:40.340','2024-09-25 12:59:22.568','449636092-1-5'),
('9786f941-538d-4332-a7ef-913343d75537','a1550d6b-1e80-4cc0-a360-0d4fe5fd207a',0,0,0,0,'2025-03-08 13:46:07.997','2025-03-19 12:35:48.760','221944135-1-1'),
('978b510a-1abc-4839-aa5b-dea35a4a464d','a2ac6ecd-d628-499b-b74b-a3bf267f0117',82,85,48,0,'2024-10-02 09:27:03.623','2024-10-08 09:24:59.189','910990360-1-2'),
('978bb310-953c-4b73-bce1-6965572221e5','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:36.083','248135683-2-99'),
('978d4c1b-28d5-463b-ba24-a85b42ab79d9','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-35'),
('97913e14-d4a1-458a-a95a-d90b43b3f4e5','46d1512a-2bfb-476d-a224-9390f3e194f2',54,42,15,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-18'),
('979335e7-2bd2-43ba-a403-0cab46ef895c','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',76,62,2,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-57'),
('97934194-d689-4ac6-8e7c-e9aa1d6f51ca','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-183'),
('9795521e-2a38-4ece-b4a0-1dc11b95c1db','5397f272-f4a1-44e9-8d2d-7ab3baa0cd2c',230,100,70,0,'2024-03-16 14:34:17.339','2024-03-27 11:09:56.689','61467762-1-1'),
('979680c6-ce59-439b-9084-031007220c4b','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',11,24,39,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-11'),
('9799a1e4-3143-42b3-bbce-7fd9f463ac73','0052de50-8105-4a4a-bdcc-a55ca79dce47',77,55,101,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-1-1'),
('979a27a5-28df-41e3-9227-f4c3eed87c38','a77e3c4e-16aa-42f7-80d0-00cc4b94f441',51,51,76,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.615','221157320-2-2'),
('979d3cbf-961a-4861-bfa0-312857385e6e','6226bd29-5d06-4891-9ca0-310e4356024f',57,83,102,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-1'),
('979f27a3-de47-4ba8-bc1c-c13a8077d830','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-2-4'),
('979fe9a2-0fb6-4f83-8c4f-47eb855ebb13','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-12'),
('97a0ed7a-460f-4a9d-b8b0-574d3f9233a3','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.466','011195834-4-6'),
('97a1c543-88f5-4e7e-887c-40fb117578fd','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-8'),
('97a325b4-2698-4926-856f-293163c5e03f','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-78'),
('97a3adf4-37c3-48be-9841-4c2a2217d3f0','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-1'),
('97a3b1ce-e9b5-4751-9090-53b899651a5e','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-34'),
('97a4b15e-a45e-4669-b4b5-2344085bc337','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-5'),
('97a4fb27-69ee-4911-a8a0-19d7cc93bcb8','5599957b-2f26-4cfe-8cb4-9c7b2aad482f',92,28,202,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-2-3'),
('97a895e5-b823-47d4-bdb2-2dc70d3c76f5','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-115'),
('97aeaa22-14f4-4c58-97ea-f587d6edd9f7','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-7'),
('97afb678-d64c-4bc8-b532-39392e4be61b','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-17'),
('97b18307-f9d3-4050-a407-596bf5446f9e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-5'),
('97b3ca3e-f241-4cb1-a16f-a67f5839517d','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-3'),
('97b4d66a-6096-4a4d-b47a-8ace50bd66d4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-210'),
('97b68bb9-1ab8-4642-9416-6626ca4e5427','14694410-5bbd-4c16-aaf3-3218e9c86c9d',0,0,0,0,'2024-05-29 10:12:13.202','2024-06-11 14:04:50.980','449445608-1-5'),
('97b7ddb8-6069-4171-85e5-70746c98cd0b','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-3'),
('97bca4d7-622d-43c8-adb4-d575ec80dac7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-103'),
('97c6336b-1d4f-4ca6-95c1-0ab82880198c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-33'),
('97c97d6b-7aba-4e4b-a97d-47b8ffacd5f4','c5d03b78-19c4-44f2-a673-725e07271521',110,80,120,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-13'),
('97cc2218-a500-4ee1-9fa3-aa03d1bc16c4','9c69684d-b820-4794-97d0-0096a00b04b0',56,80,100,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-2-3'),
('97cdd099-b835-4b48-b937-0e6ae7169c1f','5bcbbc13-969b-49af-9691-435907b8a012',100,80,80,0,'2025-10-14 09:22:09.057','2025-10-23 06:20:07.502','644257752-2-1'),
('97cf32f6-d34a-4dcf-9bca-f80fa2be0e03','c7ec2251-b2e5-4bd2-ab66-88acea94c958',75,95,100,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-2-2'),
('97d20363-bac1-442d-9902-ffa9c560a80f','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-2'),
('97d2a442-6acc-4ade-875b-f88d4c4320cf','0009aeec-e682-465c-b701-363a3ef377a6',120,97,70,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-56'),
('97d61a9f-0461-4b5a-9892-f900a873c85c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-171'),
('97d726d0-47b8-4db6-8535-8fb296a0f717','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-3'),
('97d7cfee-0e06-475b-bfda-05a666b9c191','c2097eeb-dbb1-47f0-8cca-48457994d308',230,70,98,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-3-2'),
('97d98833-9ac0-4cfb-b6d9-f13509464557','5c487410-f906-4e14-a077-9f060026719e',110,118,63,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-9'),
('97da588f-51ed-4bfc-a0b6-ff50b55bf7ea','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,46,6,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-45'),
('97da7b29-fa83-4631-8bcd-9de152bdc6cf','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-3'),
('97dcb5d5-09b3-4b22-87d6-5ee1208dc72d','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-20'),
('97ddec49-b743-4c9c-a4b9-a9ed5868e5d4','e05413f2-5977-46d0-9d34-bb6b98ce2e4f',97,70,210,0,NULL,NULL,'371456634-1-1'),
('97e43ca4-8139-4204-814b-1ada2966845f','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-62'),
('97e4925b-4f12-48b3-b854-c7301838ae15','9d7979f3-a35a-4a64-97d1-4ba973786029',61,28,38,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-14'),
('97e8eabf-dfce-41d2-bab6-5ab7adfdcbcf','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.484','2025-07-17 14:40:44.020','478259590-1-17'),
('97ee7927-ac73-4b98-81cd-8be36c8954c4','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-15'),
('97ef7e63-b260-409d-9a3c-dcb2800f24b1','5632f22c-493f-4a5e-afdf-13268c32b047',90,80,75,0,NULL,NULL,'528640995-1-10'),
('97f09838-0eeb-4e99-8cb5-73f5f97e583e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-109'),
('97f1ce44-d898-4e3d-8eaf-93c0858c067e','8beca2df-7a47-4d0b-b3bb-89209ce0b5c5',100,70,68,0,'2025-09-02 14:48:27.542','2025-09-09 18:10:59.563','437426295-2-5'),
('97f201a8-42a4-4c4a-b835-f89625c8d174','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:11.516','248135683-1-90'),
('97fa69bc-c8b7-4208-a49b-a5e9f925714d','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-63'),
('97fc3a90-11af-4612-b195-d42cff681b28','6302f68c-26c4-4a31-853e-80b9d1ba59ee',104,92,6,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-27'),
('97fd5020-7dc7-4fbd-b910-3fe225ec49fa','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-64'),
('9802bac0-67a4-4696-a47d-31b98a37ac01','5e637c0e-5f72-4f0d-9645-8eb854cb25d3',0,0,0,0,'2025-03-08 13:46:05.698','2025-03-19 12:35:58.109','412472932-1-1'),
('980331e1-7756-4263-8e9e-12223b19a93f','8fc7023c-7fab-44ae-a533-006d835eddb6',38,35,216,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-18'),
('98035a1a-f76e-4d04-b16b-84088481adf7','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-13'),
('9803bd6d-2fc9-4796-a0f7-a6a1401b7959','91d10b70-a38a-4473-a688-7e33b18968e3',80,85,70,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-2-3'),
('9803f204-40ea-4fcf-82a3-8984a0ea1fb9','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-4'),
('98073b16-1610-437d-849a-b52a2ae6ce0e','dc390da6-4128-4077-b3a7-07f6a89a5beb',100,70,90,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-1'),
('9808fb8e-618a-4d12-8ab1-0accf5979c2b','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-6'),
('980d58d5-a4c7-4ed8-a515-d330d0492933','55f6bdcb-8600-4864-bb7e-b38027af88e9',102,57,83,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-2-1'),
('98138ce6-b35c-49dd-82db-8807aaad789d','5c308574-a09b-4e29-a64a-51319a26b5d3',0,0,0,0,'2025-07-12 09:20:14.008','2025-07-25 18:13:04.067','412302460-1-1'),
('98177d9d-68f0-4cd5-8f06-74bbf8b203a5','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-29'),
('981af333-9838-4bd6-9e71-5ad36ff41518','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-25'),
('981ca90b-72de-405e-bd82-0960842c8a42','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-6'),
('981e8225-abc1-46fc-a4f2-ab17e6325d2a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-58'),
('9822bd2d-be88-4371-995e-4f954fab2506','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',54,77,17,0,NULL,NULL,'531240111-1-12'),
('982306cb-759b-4ce1-b122-f25c39b880ec','7defd633-f7ab-424d-8029-028d1b045752',225,60,54,0,NULL,NULL,'501119446-1-6'),
('9824bd2a-a136-480d-9e00-007c076dd14d','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-13'),
('9827f890-4d44-4541-a2a0-82bb5d1d7e7e','56f86587-7355-4e49-9eb5-727edc1be570',44,68,27,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-12'),
('98295f21-4360-43d4-ada6-bbc1356429d7','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-4'),
('98299c0f-7a56-4144-aa43-203eca9670da','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-177'),
('982cad78-f374-4216-9a64-46dc8e274e63','4e0db86d-11b2-41d2-bddf-34d3072b55cd',93,100,80,0,NULL,NULL,'644637221-1-1'),
('982cf622-207c-43e3-b921-8ec2fd9e464a','c5027968-9a23-442a-bebc-9b8745408960',48,71,19,0,NULL,NULL,'982759064-4-4'),
('9830c93a-d8f3-443c-8ebb-2d00a8ee6dc0','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',168,123,8,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-12'),
('9832d29d-3602-42df-b6cf-3fdd3f5a1a9e','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-8'),
('98331d6f-607b-421e-8c11-57e2478f8aeb','7de585d5-e2cd-4677-8347-f0711cbf9d10',8,22,90,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-2-1'),
('98366d29-86ef-4ed7-af9b-4e3ee97203a7','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-9'),
('98392388-ae81-4bcb-857b-a5e3108f94c2','bbc20f00-196f-40b1-9f3a-f3929d7454df',57,82,102,0,NULL,NULL,'50552381-2-1'),
('983ebe27-c55e-4701-aa00-8531fde7020c','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-3'),
('98416ac4-cd70-41dd-a914-9f22305b7593','8625abf2-719d-4d7f-b206-16948b318b8b',230,100,55,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-14'),
('9841a320-15fa-4a93-97f5-dfc809a69c1b','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-14'),
('984254fd-630e-400c-aa20-822efb31ea78','f5d940e7-9b63-45ab-ad43-351571fea934',0,0,0,0,'2025-05-24 17:55:23.643','2025-06-04 19:39:33.557','910980337-1-2'),
('984351a1-c664-4423-8930-a1d4fdacbeb0','86a60767-7224-490d-9d65-38533eedf53b',92,102,65,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-4-3'),
('98438e7b-e783-4016-a604-48376a39d2c4','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-57'),
('98439ad1-06de-485b-a808-1e109bcd2883','2ab41284-325e-4735-a02e-0af4784fee90',59,5,210,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-10'),
('98456f0a-6bcf-428e-9312-1035c2f81630','a2f34510-a7f6-4abd-ac03-e7c577feca03',12,57,84,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-11'),
('984785ca-51e0-451b-a2e0-b17d8bd3947d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-120'),
('984c3b55-7553-4050-b5df-ad39bd721054','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',160,200,34,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-49'),
('984d050f-adad-4447-942d-d3224257fa2e','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-5'),
('98503b43-cbf7-470a-9e03-7d1853edb7d7','7cc12a18-6858-4c55-a9a0-fa838ec5c974',52,76,101,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-2-3'),
('98507f1d-263d-47a7-a90e-6d2c6de9e1a1','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-89'),
('98516ba8-553a-46d7-83aa-69cc68d395eb','0ca7b5c8-7608-49bc-9057-d56d835fbea5',79,23,15,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-2'),
('98519c9e-052e-45e3-a3d9-17a1414027e2','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-2'),
('9851c1fb-3053-4281-86a2-45e34adf87c3','8e9264a7-ea7b-413f-be45-63b66a8c7b11',80,100,75,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-5'),
('98522a19-4314-4bc4-a354-3405af1044b6','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-121'),
('985491d4-547d-41f2-889d-ea4b9c55d078','86e5956d-750b-4aa3-8f00-53e2db7b9f65',160,200,3,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-25'),
('98566834-3df7-4de1-accc-e632296b055e','c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9',94,124,67,0,'2025-05-28 19:08:53.194','2025-06-06 17:37:15.490','817872283-1-3'),
('985692f1-253d-43be-b6fe-d627272e7456','b463387a-754c-4c53-ade6-f7e850173707',57,76,102,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-5'),
('9856f31a-4cd1-4acf-9494-de8f29c95544','7f11042b-3945-4eb3-b37e-a822894de6f5',37,38,218,0,NULL,NULL,'478777575-1-11'),
('985de2c5-5981-4321-a1b1-6b377e6cb2b5','a123770c-62b5-4b3b-b299-a8495740fccb',0,0,0,0,'2025-10-08 17:43:49.700','2025-10-17 20:57:08.776','428604775-1-3'),
('98604324-42e3-4e41-85b6-a3042aa669ab','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.882','248535027-1-22'),
('98611d3f-0e5f-4d0c-b77d-0df08f219d18','d2be0913-8bad-4bc5-b776-f2050b939197',65,100,70,0,NULL,NULL,'982759064-5-3'),
('9862f1d0-4e7d-4691-9cf8-41dc6695b2d4','46cf4fd0-6caa-4168-bb24-3b124a8287bd',0,0,0,0,NULL,NULL,'750836864-1-1'),
('9864e780-2815-4811-818b-c083cb57d493','5cb082f0-4973-4f83-ba7d-550b088af234',58,65,75,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-5'),
('98693ce1-0923-44c5-8ec7-e3b01c346845','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-37'),
('986a2aea-2d52-45b8-a9cd-492e082c8705','725b938f-4b76-4c51-af62-af86036ecfbf',95,215,42,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-3-2'),
('986be1f2-089b-47ef-9dec-6ede72489e98','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-36'),
('986f61ea-ea9b-476e-bc39-6f2ffb5ce94c','b8685301-df5c-4563-ba32-b1155cff246b',51,51,77,0,'2025-04-30 14:29:02.569','2025-05-14 06:37:16.241','221947357-2-2'),
('9871c59d-69ad-46e7-8a00-9d187b1ddbb0','5c678148-a528-4b8b-bd4a-390890b0c04d',127,73,7,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-1-4'),
('9876b782-2bad-44b0-b1be-e52d8672852f','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-28'),
('987769d0-c3ec-4e8e-9e10-7259e0a0175b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:12.342','248135683-1-77'),
('987792b9-b1a8-4d00-a0b1-5bdcf198a538','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-30'),
('987b1664-a14d-4856-94ee-0346ccfd9d3b','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-105'),
('987cf470-c801-4c92-9589-a7a35723027a','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',20,57,137,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-65'),
('98823c6c-1059-4679-916f-3d97b3c5dbe0','571f0044-97d4-451a-a63d-b045acd7a606',90,90,68,0,'2024-03-31 17:55:16.198','2024-04-11 06:19:53.270','982164642-1-4'),
('98857041-dc73-44e9-b3f3-6962cef12773','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-19'),
('98868967-a1e5-463c-b916-3f472d8f7cd3','8c381124-abe0-44ea-94a9-c379625d2023',26,160,200,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.856','910479941-2-1'),
('9887d9ef-0192-4a70-ac1c-477e2f030730','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.081','2025-09-10 07:24:12.131','371180149-1-5'),
('988ce232-c19e-46dd-9997-e8d7148e0c0d','126dd53d-77d9-4431-9b96-782895f21d66',70,160,95,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-2-3'),
('989017f7-6af0-4a8f-90b0-21c23719919e','b67fa3d3-0b05-469c-a42b-d477847d9d21',60,92,84,0,'2025-09-12 14:16:54.076','2025-09-24 14:32:37.478','531893295-1-3'),
('989073d6-85fb-4749-a457-4e5970c844df','1868aea0-f631-4deb-85f5-8aa25773bef0',73,28,48,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-11'),
('98938aaa-ff78-429b-9af3-11dda03e0aff','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-3'),
('9894f9d1-8657-4ad7-80f0-6f24cecca942','40158b47-f950-4e8b-81b2-1badad2ece04',51,51,77,0,'2025-10-20 07:18:12.637',NULL,'531606130-2-1'),
('98956d41-0778-467c-8b60-973c5fa17ee4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:14.251','248135683-1-223'),
('989823d8-8005-4950-a34e-9288dece739c','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-3'),
('98997648-3b3a-441e-9bc9-af0cfe2d89a1','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-82'),
('989e636d-0211-4c03-a407-c753d74561ad','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-21'),
('98a215c9-a293-41c1-adcb-517b25614499','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-7'),
('98a2992f-9d3e-40d9-9ee1-c4346bdd7812','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-173'),
('98a7300e-f178-4acf-82e7-6a788ea6e0e9','f2026b48-8180-47f7-9044-d94056905698',98,91,73,0,'2025-10-08 17:43:33.461','2025-10-17 06:15:01.526','5983047-1-3'),
('98ae0528-0ae3-4093-8361-464c444bfb36','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.528','745197344-1-21'),
('98ae61a1-d152-45bf-9452-effbedb24ac8','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-3'),
('98b11292-893f-48c3-8fba-54fed896ffb9','e5ec1382-ead6-4ece-a830-c08623df48ce',8,193,142,0,NULL,NULL,'64471370-2-1'),
('98b15631-20c7-402e-aa55-b4c0e21f3a3b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-105'),
('98b2052b-1ef3-4a30-b644-64c3904348e4','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-28'),
('98b81e32-7d4e-469a-9f1d-445292f5a2e0','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-5'),
('98b89515-8dc5-4cbb-8fd8-ff6ff75841ab','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',85,4,215,0,NULL,NULL,'644104537-5-9'),
('98bd92aa-bc90-4e30-b43d-b60736c07c6a','8945c2c5-f724-4f65-90d9-21087c50ff7b',51,51,77,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-3-1'),
('98c016e4-f7ef-496b-afcb-2b1c2a259b10','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-6'),
('98c0a338-f032-46ff-a4dd-d1ca4eeac230','6fcd8160-ca06-46ab-a691-51de5c394793',63,11,121,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-14'),
('98c1f1a3-7739-4989-9bb8-cd8734f924ca','82c2f7e6-7d17-4f07-ab88-13d96b343121',80,65,90,0,'2025-10-08 17:44:14.746','2025-10-20 06:32:43.863','644651781-1-3'),
('98c29237-d258-4516-a194-8598ddca859e','a135c145-15f3-450a-819b-e82b427bc978',78,25,6,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-16'),
('98c41a25-8e4b-4cbe-a3b9-9f772f8b0da0','19c23553-d606-4be4-a362-65912f3179a8',95,65,65,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-3'),
('98c4235c-ea94-41b0-bd11-9fd3ca41522c','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-24'),
('98c5d348-30a6-48f3-b9b6-44d870277751','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-144'),
('98c8e865-f17c-47da-a62b-37cc3280f01d','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.256','478245028-2-11'),
('98c98485-c56b-4529-9246-318319d68068','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-2'),
('98ca03a2-aca5-4111-920b-e31d4a362390','69acd97e-52c0-45ae-adf5-ee013e52776f',102,55,85,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-29'),
('98cb2b6b-d738-43d7-986e-282e6f5e0f30','24bff90d-5056-493e-bf7f-2882436822d2',160,200,30,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-1-1'),
('98cc20f9-8553-449d-92bd-9553a9311c15','f54ed30a-dd95-4143-9b02-ef07b59c72dd',97,6,197,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-5-1'),
('98ce031c-326d-45cd-9083-162bfb27fc73','d218cf1c-b46c-49c5-a96b-570ea5fc549b',101,65,56,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-1-3'),
('98d0fa07-fa19-4d44-8c0a-64b19b779b37','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-111'),
('98d1a238-fa83-4993-96b4-13697f4915bc','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-17'),
('98d25518-8f3b-4c12-bfa9-f05e7eafae0c','53346280-587d-47aa-9b0c-285594193bfc',52,51,29,0,'2025-04-30 14:29:02.569','2025-05-14 06:37:16.241','221947357-1-2'),
('98d54804-5d0b-4018-935d-7bf095079786','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-1'),
('98dadfd4-b5f9-4f65-a1e4-74e05611f722','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,25,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-39'),
('98dcaac7-3f6b-40fa-b0e4-1ac5b8fa895f','140facd2-f55a-4a12-95ae-07ab47a00128',81,260,5,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-2'),
('98df2a43-c84d-498e-832b-696165df6bfa','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-21'),
('98dfeb5e-692e-4dc5-a8b2-e4b167ea12ca','107fdebc-b61e-48d1-9c8f-84ffa2681dcd',230,70,100,0,'2024-11-21 10:29:00.131','2024-12-15 18:03:37.216','982692076-1-5'),
('98e002fe-db53-4a30-96d9-4772f98ee3cc','c046d586-ea99-4794-a85a-a2c69dda4abe',66,63,86,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-3-1'),
('98e2a09a-ab41-4efa-999c-542f1f973707','eb329603-e121-4099-9308-964edd5b6713',43,43,75,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-5'),
('98f06f88-2fd9-45c9-9568-b2c0ab73ff88','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.300','223444495-1-108'),
('98f0e77b-23f1-405d-9f04-2acd8076560e','3d740bd3-88dc-482c-bec6-f4b0fae42557',108,125,65,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-6'),
('98f23241-d586-4c96-b602-fa47166534a3','40c4dd8f-39f2-485c-9dca-60d32029c90d',64,93,88,0,'2024-03-31 17:55:12.689','2024-04-12 07:16:47.839','982547993-1-3'),
('98f325ae-e3dc-4314-95c7-4751c0a877ea','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',68,7,210,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-80'),
('98f3b7d1-bd71-4246-8dfc-1c6cd747f8d2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-48'),
('98fca237-da61-47a2-bef0-50c706d59305','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-12'),
('98fef20b-d2b6-47e7-a3cf-213f023a8566','6d2958d8-12ca-41bd-a12b-58082d5c955f',100,4,102,0,NULL,NULL,'614364554-3-7'),
('9903de17-e3a4-461d-bcc5-48ed283f9aff','7b2d4551-a99f-4fb6-8215-e7af3afe860e',50,55,55,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-1'),
('9906219e-a557-45c9-8b9b-af9e2acb7673','090b9a06-aee0-4c02-b626-f3e2002f0fce',100,75,200,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-29'),
('99067f25-45ce-45d0-a4f2-cbed8c18697e','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-10'),
('990bb697-357e-4a23-bfea-ca805a1e484b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:14.953','248135683-1-194'),
('990ccdb2-11aa-464e-b2c4-8ca62f71ae46','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-86'),
('990cf1a8-7424-4d98-8ec7-ed0f10c61a96','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-13'),
('990deadd-26fe-420f-9195-0faa8d8e58fe','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-2'),
('990f72c7-778d-4443-8dfe-102dd0829fc5','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-61'),
('990fa273-8916-4718-8934-7291c83b647c','94d4fd15-f663-40b8-8ec9-f93a5cde757c',0,0,0,0,NULL,NULL,'614364554-5-7'),
('99109e03-7fdf-41bc-8d34-13196d2ce2f0','15b6e708-f3d2-4929-8327-d1fc263bd0e4',57,82,108,0,'2025-08-15 15:03:02.477','2025-08-21 16:36:49.269','437514624-1-1'),
('9910c88d-e5be-4074-a27f-380ad1413357','811c4fc3-106d-4a51-b8c0-eaa09c5918da',196,96,6,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-1-2'),
('99123c92-6c07-4b3e-9d4f-eb367210c34e','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-5'),
('9912bb57-0b58-4cec-82a0-bdf2038048e1','d176a715-bd33-47f6-bcb7-f384e079f39a',124,58,27,0,NULL,NULL,'501724603-1-11'),
('9914ded9-d0ee-408e-9b57-2f62f32e0ad5','c71fdc71-df3e-48af-9323-d534b0931ff1',86,210,1,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-13'),
('9914f9d5-1569-4372-a9bf-55915234134f','fcdb68c7-3f48-4ca6-807f-23c014d6a46c',56,82,110,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-4-2'),
('991891ce-ec6c-4cdf-beeb-b4ad681d9aff','943d063f-08bd-4675-85e3-b9d53ebf2480',90,65,65,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-2'),
('991a05b1-5c76-45ee-909a-b2d63d258e3b','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-1'),
('991a0b6b-082e-462f-930b-a1314fc4389a','4eb9bdad-63ac-4040-895e-79400bb9085f',0,0,0,0,'2024-09-28 16:27:33.485','2024-10-08 07:57:38.531','454880224-1-4'),
('991a38d1-b8b6-4ff2-b188-b59d55d986dd','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-13'),
('991ac443-de57-47d5-a633-ad3f11930948','9b637b9c-c2ce-4522-a986-3c8fdfd10d6f',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-5-4'),
('991fedb9-d3f9-4187-a5aa-59d5002724d4','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-77'),
('992119e3-89f9-484b-b6a9-792e5759f7c1','1b8f328c-9952-41e3-aa69-f843fde86e4a',37,37,50,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-2-2'),
('9921825c-5608-4c28-a9c5-c150dbeb248f','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-3'),
('9922e39d-1200-4f5e-81f2-49642f8ca964','6b6cf630-a999-4879-9eec-3e89e6246af7',57,76,102,0,'2025-10-02 11:20:44.115','2025-10-17 06:17:01.820','221364325-2-1'),
('99235172-75d6-48bc-bb8e-bdf7a09c03b3','eae44c12-6eeb-4042-97c1-e6abf8051619',85,80,80,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-3-4'),
('99235669-5cd3-4846-9327-d7742b53c632','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-18'),
('9926c91d-f292-4b02-ae18-dec1b15e26f7','50bcdd33-0f58-4d41-83ad-b9e4db782251',0,0,0,0,'2024-11-25 08:29:05.309','2024-12-03 21:16:52.233','745105520-1-1'),
('9927386d-a4b6-4266-9eb1-83d430f2d80f','ae8b0589-4bee-4cda-9dbe-1fb3b25105e7',76,52,101,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-2-3'),
('9929eeda-0e9b-4038-8665-f99d1a4b73a9','138edf36-d166-4335-8560-d9873886e31c',18,222,15,0,NULL,NULL,'745189997-1-17'),
('992aa034-4580-4663-860e-faa5f3a369ac','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-8'),
('992c3dcd-542c-4283-bf0b-4d9320a2b58f','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',80,30,204,0,NULL,NULL,'598604443-3-3'),
('992e18f8-8aeb-41bb-b8a0-556f69208bbf','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-33'),
('992e8230-e90b-474c-bba0-3f25b5ede836','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-13'),
('9932fc9c-9e1f-4420-b824-a804e6a0b14c','d4aaf1b1-4e37-4571-b354-b8933674055c',106,70,230,0,'2025-10-08 17:43:24.011','2025-10-15 08:13:18.159','910995300-1-1'),
('993676e4-1bc4-4c86-8142-aabdcdb7f374','3e3d6599-2fb2-4a2c-8536-95e2e40e39a8',0,0,0,0,'2025-02-23 12:39:01.219','2025-03-08 13:57:50.780','478751440-1-1'),
('9936d7c9-fc4b-4ad0-b9b8-3a8d48ef97ba','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-5'),
('9938c332-0392-46fb-b1d3-00e4c764051c','bb9a5b8a-5138-4f0b-ae57-88695cf68e25',96,73,94,0,NULL,NULL,'786811264-2-4'),
('99399f51-f36f-4237-afa5-d9847d32aeb6','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.445','570899680-1-98'),
('993cefe7-bf23-495a-b0ae-9302aa67cdd4','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-2-4'),
('993d52d1-8804-4557-966d-e0e4b6c9565b','090b9a06-aee0-4c02-b626-f3e2002f0fce',100,100,10,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-27'),
('993e13cc-bf5a-4721-a61f-4523521cddc6','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-106'),
('99404d4c-40e4-4dc8-9f1b-f15198141dbc','91b1853c-0746-4c2d-89d6-c2fe0be8f025',245,93,65,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-3-3'),
('99423acf-03db-4722-9e23-7787b4872d67','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-3-3'),
('994325f1-a0a9-4019-ae02-04014968d322','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:03.208','248284003-1-79'),
('99456846-3ecb-475d-a325-da1b8106903b','a87576e3-14e1-46a8-99c7-1d48360995f5',90,90,70,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-7'),
('9946f02a-8943-4291-a2a5-e20e7b511802','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-5'),
('9947c689-4f47-4b15-b39d-e71ba3f6d988','4abcae6f-afac-43a1-83d3-65715ac410f6',0,0,0,0,'2025-02-18 16:37:10.835','2025-02-27 06:36:36.211','478101413-1-3'),
('9948c69b-4e94-4500-bf4d-2abf947f36b3','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.683','478962763-2-12'),
('994a78a7-f958-4f09-bce2-2358f7caa381','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-153'),
('994c3dcb-e573-4a17-bbb2-3950090c6476','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-23'),
('994d9388-7aba-46cc-814d-d339b77ff8c5','f65bc971-0655-4e60-a4f2-19d36f14946d',75,80,100,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-2-1'),
('994e37d1-fcf8-4949-891c-b29480cbbb1c','c5bf586e-b048-4ee7-b750-d82fc394b66b',0,0,0,0,'2024-05-08 18:43:39.740','2024-05-17 09:44:40.129','449354047-1-1'),
('994ed1d9-3643-447d-9217-09357d6e6d5e','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-18'),
('994fa7c0-5760-4cef-acc2-6be6115e292d','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-1'),
('9950eb4c-e702-4c60-8cf7-d837f47f3f08','04dff17a-2b9a-4f35-a082-5684dfe5706f',39,30,30,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-10'),
('9956ac02-eb10-45a5-9ccf-fc4554d439e2','368574ad-455b-429e-98df-eb01c78f0d8e',96,141,10,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-4'),
('9957a817-6333-4167-8310-a3d8c679fdfa','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-23'),
('9958a9cb-bd60-4406-a52f-c2867297a753','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',103,77,68,0,NULL,NULL,'808855328-1-5'),
('9959d89b-35bc-4288-b1e6-213b39970783','e89e7d75-4967-4c63-9f73-981469e531af',57,52,9,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.435','319835776-1-28'),
('995a3953-f2ec-4dd3-a7f9-b2711843f305','ff41de74-17ff-4bad-989d-6f378ab50997',55,110,9,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-4'),
('995f688f-6d67-41b7-88f2-fec3e9bbc85e','9c71e41e-a34f-43b0-843d-b59684049b38',160,200,33,0,NULL,NULL,'478702481-1-1'),
('99609682-8258-474d-96e8-107121fcd220','5acec4d2-2742-4d75-9b53-079f8cb9e387',160,200,31,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.223','478110382-1-1'),
('9960cc33-9076-4cb8-859e-082485c65c52','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-178'),
('99671b34-838c-4db8-b956-32079ee1e5d9','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-1-1'),
('99671e05-1e61-49b5-b468-cb3bb2cc9639','504660da-c27b-41a4-aa56-e6293172b9c3',90,80,80,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-7'),
('996c11ed-42ad-46bd-a573-9373554a9707','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-5'),
('997864e1-0dd9-4bc5-aed5-1d3b1cca3df6','ade702d6-cdc0-4186-ba85-c931b77bcd17',51,51,77,0,NULL,NULL,'613592756-4-1'),
('99796618-2118-437c-92fd-c7b918f6f48e','20e6d703-f38b-426f-9be6-8755c80d4f2b',0,0,0,0,'2025-08-07 16:53:17.210','2025-08-19 06:46:45.909','412548356-1-1'),
('997e1e4c-6945-4b83-a20a-255d1a1eb0ad','d83c40d1-4df5-4c97-bc83-28837db95b2b',95,90,80,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-46'),
('997f1726-e5b6-49ce-a207-471e9044a30d','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-12'),
('997ff457-a5e7-4ca7-8b90-c4a92751e1dc','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-64'),
('998005bf-2c1d-411e-afcc-3f08bbefc6d6','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-44'),
('9981bc5c-da8d-4445-84e2-a1a2fd8d9ad4','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.829','2025-06-16 20:21:15.376','750728735-1-10'),
('998274db-376f-4735-b544-6ba82ef46c22','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-80'),
('99834eb0-8d01-4c28-9e04-99f132b42623','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-19'),
('9983594a-147a-4c37-a8bd-6592b6b766f5','c29e76a4-89ba-4143-8fad-01a2910620ee',210,15,15,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-23'),
('998475dd-8704-4b5b-b238-13d07072af18','d3692bbe-c68f-427e-b8f5-575726bb8e24',0,0,0,0,'2025-07-08 11:30:58.678','2025-07-26 16:11:26.524','478403352-1-3'),
('9985485c-1434-4b9b-a03c-abfb211990ce','9866a947-9974-4053-8415-4518842488fe',217,32,29,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-27'),
('998677f8-8d36-4beb-b186-01f103622c65','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-81'),
('9989c284-f541-4e87-87af-d93a66c2c566','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-41'),
('998ab711-dba1-46e8-8ea1-c63fbde3d0e0','47019764-af76-445a-be8b-30f53c6195d6',0,0,0,0,'2024-10-23 14:11:51.627','2024-11-04 08:40:42.087','478941206-1-3'),
('998bb5ef-0743-43cf-a2b2-481cc27b07de','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-23'),
('998c6706-59ea-4625-904e-a697fa12b98d','0b3e1c46-d496-4276-abe9-00c9d3922ad6',47,50,119,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-1-1'),
('9994a1a5-df18-4a9d-b21d-7b733f82f5a8','e6bddda4-b1df-4be7-bbd5-63cc4b197736',70,46,16,0,NULL,NULL,'42857810-1-13'),
('99952114-03e1-41d5-a605-3c9ed8866886','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',65,65,45,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-28'),
('999abf41-af37-44a2-9e5b-85063c924882','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-25'),
('999c3415-8464-45b0-b52f-06e3286a1bc7','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-5'),
('99a0430d-64b7-4b29-aff9-f71c5220e0be','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-19'),
('99a37c36-7842-4436-a4ec-a332b4ca139d','5599957b-2f26-4cfe-8cb4-9c7b2aad482f',132,198,15,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-2-4'),
('99a40ed7-599c-4e19-a228-b0a5349416ee','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-177'),
('99a8fa48-30d5-42a0-b80d-1e3295811d2a','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-21'),
('99af3356-c140-4376-b6cd-df7bb35e3775','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-114'),
('99b44db8-3940-464f-8dda-c4194fb05309','6060763f-09fd-4b23-9d16-0641dc9c453d',161,200,4,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-5'),
('99b6a4ec-b530-4414-991e-cc8690c798bf','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',38,38,48,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-21'),
('99b76d7f-b63a-4bd7-86d5-c7fee9b74a53','c803d63f-cc10-4b55-b618-c9da25c7c49b',0,0,0,0,'2024-07-02 08:19:56.117','2024-07-18 07:32:34.566','745823692-1-1'),
('99b892e4-6c13-48e9-8688-9d0ab48516a9','2c19c1b7-bf7e-41a2-92f2-340a3624a547',52,100,71,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-1-4'),
('99b91486-1832-4e59-bebd-3616109e4ce0','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-4'),
('99b9de51-a622-43cc-bb6b-cd8e1ec7d502','f5a238d0-24d2-4881-bd26-6ef90af90fff',100,149,70,0,'2025-08-22 20:28:45.609','2025-09-02 06:43:20.130','43714618-1-2'),
('99ba429f-76ce-4586-9c79-87b710f54250','2b553000-b73f-464a-a5a4-5ac28c0473c1',75,115,6,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-3-1'),
('99bcf8aa-0687-4670-9320-8e2c4abe7b14','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-82'),
('99bdaab3-2c1f-48ed-a198-cce097d66174','0365be5a-cb94-4992-8e8d-cb784930b2e7',85,100,90,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-7'),
('99bec3ad-d66c-4f64-9a74-4a889820cbc8','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-40'),
('99bf61cf-dec4-48d4-a7c7-9b127d761057','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.038','319458159-1-10'),
('99c2e744-d413-472b-822a-3c050d2b2b88','e163d910-3bea-4675-a310-ead7083f02b8',200,73,30,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-8'),
('99c4cbf0-ca55-46bd-a214-6e31f3cabcc4','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-5'),
('99c4f7bc-17ba-4b06-b20b-546e418f0e53','f0485a78-951c-4f89-bddf-b2003f0bf783',47,41,58,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-40'),
('99c5661a-7c4b-4f74-89d2-4f56be8c13e6','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-120'),
('99c59a89-25b8-4214-bf4f-c9adf92123be','7311f1e0-e2be-43dc-9e40-f94a010e8939',160,90,6,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.268','289168915-1-37'),
('99c6c3ff-8ce5-456c-9cad-113e14c010d7','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.955','223734808-1-110'),
('99c91bed-5a44-4532-818a-093742025721','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-13'),
('99c9795a-e26a-4b51-a2a3-1bca413bb2f9','9d081d24-06c5-4cee-b0ab-52ddef98e867',68,14,106,0,'2024-12-28 21:42:23.524','2025-01-07 10:35:37.746','501247386-1-2'),
('99caeee8-899a-4640-b296-12021e450c0f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:36.738','248135683-2-96'),
('99cb1183-29a6-4912-864b-a4826d32ab82','1d002e0e-a36f-4d75-b950-633af2536065',75,56,56,0,'2025-04-28 07:40:43.381','2025-05-05 09:10:54.449','613502652-1-3'),
('99cbe861-99b0-4c8a-b285-81fdb2ba3bee','c7b31d10-8a95-4f0b-95ae-8c63de27ad8e',67,124,5,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-4-2'),
('99cc9dd6-396f-4963-8779-b8590f676d47','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-18'),
('99cd9dde-a512-4f94-9727-a7db826743c6','d394151c-87e2-4f5a-83e5-e75ef45c4ec0',240,100,85,0,'2025-07-17 09:33:48.166','2025-07-22 08:19:40.603','910697257-2-3'),
('99d2c681-7a40-4741-b2fa-e28e9e96f792','5dc0d88b-7ff1-416a-932b-9af0149bafd3',57,83,110,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.247','437431907-1-3'),
('99d4e33c-37e5-4e5c-bb2f-0c81f7120954','e86f2f3d-8f0b-4894-8c39-9063af830231',62,20,45,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-13'),
('99d5faef-3842-41f9-9864-710573d42e7a','8945c2c5-f724-4f65-90d9-21087c50ff7b',51,51,77,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-3-2'),
('99d84fc0-5f78-4b96-903f-4a87b195da07','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-87'),
('99da133d-c07e-4ecb-8f38-32234fc538b5','9a2158b1-4eb8-4741-9d0b-70a8ada04f34',68,168,95,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-1-1'),
('99dd0a25-c244-4ebb-8c0d-ecd8a71625d5','2f8afc9e-696f-4b14-b212-d5f56e6fb5a3',96,196,6,0,'2025-02-03 18:18:41.577','2025-02-14 10:41:28.342','221859569-1-3'),
('99ddabb1-2488-442a-b370-3333392d7411','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.715','2025-05-21 08:16:54.198','745817440-2-7'),
('99dde724-25c0-45da-85cf-6bb69e7b134f','2ae78cf8-53c6-4be4-bf8b-eeea900b63c8',88,123,55,0,'2025-10-22 13:06:41.295',NULL,'598719647-2-1'),
('99dfd48d-6e53-4abe-ad37-5ab899fa5259','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-6'),
('99e15dcd-ee09-44ae-bc04-fff212ceef72','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-24'),
('99e1ccfe-d039-42a5-a4b1-c6a7d2740090','d2498eae-06de-4965-ad29-62155b9a8992',105,105,75,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.146','976126416-2-3'),
('99e4f867-be49-4d67-85a2-c02021e551fc','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',198,52,6,0,NULL,NULL,'428437129-1-3'),
('99e84e4c-751e-4283-b072-b9d3b081d520','fbfff131-b02f-41a5-967f-a0528f7275f4',50,100,70,0,NULL,NULL,'745197948-2-6'),
('99e88910-45bd-49f4-9ae1-6d52481bc4ed','7b68e44d-2397-492e-b71f-fe3fb99d892f',121,96,75,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-3'),
('99e88edf-0490-4a88-b9d0-46f7a8fa11a6','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-20'),
('99eda763-33a8-4876-8f2e-d916467bf261','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-21'),
('99ee1d11-99f7-4e78-b052-795ee4658550','5e9ac631-c11f-4693-b962-64e3d00d41d1',97,65,225,0,'2025-10-25 08:59:16.419',NULL,'478450171-2-2'),
('99efb573-4711-4989-8249-d905540d72ba','5362cad6-3ac7-4876-8ddc-d366e2335688',100,80,70,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-9'),
('99eff51d-7504-48b5-9eee-ad49f74ae49e','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-5'),
('99f7256f-1417-491f-b26c-68c53dc720e2','841f7f01-a7cc-440b-859e-dea7f085dd74',157,16,96,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-10'),
('99fa7743-dd4c-4037-a5a3-c5328b493fb5','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',93,62,12,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-3'),
('99fe0d96-c342-40c0-8eb8-f746699b7ce4','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-10'),
('9a04b155-8709-468e-b66f-3cb7ceec6a20','2b0acf8d-fc6d-4d67-9d78-65615d9ec378',61,85,90,0,'2025-08-22 20:28:39.971','2025-09-03 06:11:50.444','613528305-1-1'),
('9a051f5e-0b27-4a2a-bd87-1e509830e1dc','e8b1acb9-b5a9-427d-bfb7-a350a1724a71',98,19,23,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-5-4'),
('9a05dccb-cd37-4424-aceb-70b0c5de99e1','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-36'),
('9a078822-24df-4dfb-9e12-09d11dc38edc','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-1-6'),
('9a1267a3-d3bd-4d01-a817-c9be9fad52c1','5317ac97-70e9-47b5-8215-375c06b6889e',73,155,7,0,'2025-10-20 07:17:56.783',NULL,'598387436-1-2'),
('9a126a3d-5a92-4b5d-a569-43839e6ef09b','d0512e6f-47bb-4d5b-9300-eec57f981f59',0,0,0,0,'2024-11-25 08:28:31.042','2024-12-05 16:18:43.895','478618410-1-3'),
('9a15e9cf-4162-4a6a-b7d6-58fe752d1990','8baea4cf-59e6-4595-a565-1754d9ca8bb7',117,93,65,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-5'),
('9a175eea-45e2-4cd7-91b9-20c37516492e','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-9'),
('9a1dced7-238d-47be-abbc-188d69a1d568','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-3'),
('9a1f6e1f-27b6-45a8-a7a8-21573453965b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:16.121','248135683-1-162'),
('9a1f71a6-7887-45e9-b675-183113c74b94','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-55'),
('9a20f3a4-923a-4413-9c2b-a77b08d0bc59','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-13'),
('9a22f21e-7c21-42b3-becb-23da48b523ed','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-51'),
('9a25e1c4-a615-43cb-8ced-d0a142dd6e5c','1a93f0e7-35b1-4d7d-8e2c-3a74dc8ac1d8',7,75,75,0,NULL,NULL,'59898054-1-2'),
('9a280e61-0af3-4f44-be5f-073ff438442b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-109'),
('9a2dab72-280f-4d56-86cc-d7821e342fad','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,75,2,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-26'),
('9a30d567-bacd-4b17-922c-09ed5631e3d7','0b843397-58bf-411e-9c45-d57a80cdcbbe',0,0,0,0,'2024-05-23 07:27:18.746','2024-05-29 11:21:56.855','449401217-1-2'),
('9a31fea7-8ff8-40ce-b964-926057901beb','ddfe7d66-74b7-4072-ba98-b8104a9db616',144,93,17,0,'2025-06-26 10:30:01.218','2025-07-01 19:00:59.515','745619301-4-4'),
('9a3747de-ee98-46f5-b7ae-89d9ffbdc959','15c51264-1610-44fe-b2b3-1798f688353e',57,82,101,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-1-4'),
('9a37c0e9-2cfb-451a-b4a0-922cd1df3aee','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-36'),
('9a3f20f8-7cf9-4608-9a9a-748a93b3bd17','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-31'),
('9a421602-dec0-4b01-9db3-71c86f231c5d','4528d00a-d527-462a-82f4-148016c4f77e',41,47,50,0,NULL,NULL,'478892203-2-4'),
('9a42606c-996b-4961-b0c8-0e5f1b70d0cf','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-11'),
('9a42bb7b-9ef6-43e8-af2b-d15e739e1d0b','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-3'),
('9a45812c-e961-4296-99c2-f8c9d20393f1','ef493929-9eb1-416a-84e5-6de254a218f3',107,211,7,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-3-2'),
('9a462370-459a-4f24-a4a8-f46ad561bd83','f88c3e53-b711-4bcb-aa3d-9543580054cd',81,201,1,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-16'),
('9a46cc2a-a29c-41c5-92f5-e6f690b8ca31','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-139'),
('9a47d5c9-59d3-4250-b509-a47c0bb02911','57d426fa-fa0c-4bd9-b11b-11018599b28f',76,101,57,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-2-1'),
('9a48138a-95db-48ce-b9ba-60b969136969','993b0ba7-688d-4747-bc27-d84b8f88b2a2',63,68,93,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-2-1'),
('9a491155-fc7e-4758-ab2f-a17ef384d4c4','6ec87888-8b87-4bf1-adae-d5b6742225d9',53,27,74,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-16'),
('9a4a1f79-2661-4937-bc87-f0e643e6a6cc','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-12'),
('9a4b12cd-393c-48ad-8731-34212dee82ec','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.827','598876994-1-5'),
('9a4d65e8-d00c-4770-88c1-07ba2dcc56c1','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-17'),
('9a533797-97e1-4d55-80fc-12a226ee16d0','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-2'),
('9a551fd6-4e60-4a78-b928-91da62885be1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-157'),
('9a5a6b9f-b7e4-4119-a8fa-19afb158d955','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-39'),
('9a5c78e8-26eb-490f-ac38-abd67c59359d','3aca7d6d-09cb-4903-812e-7535a083b09c',210,80,5,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-5'),
('9a60c7ad-f8ea-424e-9cc0-c27e5e471137','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-60'),
('9a61f857-25ed-4cfe-9134-2feb82154bec','ca2466d1-9a83-4f57-8f76-f5ddce302e04',84,116,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-6'),
('9a63d82e-6d0e-4911-86b4-1a4b7fa9d3e4','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-5'),
('9a650017-34c5-416a-b8b2-3712db809be4','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-21'),
('9a659d4e-707e-44bf-92a1-20e37abfdeb3','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-52'),
('9a68c3ae-55d8-4bd1-b8a2-89abb4aa8bf6','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-2'),
('9a7126cb-1975-4526-8cbe-518a72510185','a769cd75-8095-4eeb-999c-d1a749589a77',38,25,23,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-10'),
('9a732322-4b9c-4e13-9007-8670e5503068','9021f98a-5560-40bc-8478-4da85897fec7',84,83,9,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.170','598954734-5-7'),
('9a84b23a-8177-4ddc-a2d6-cf74ba9f6ba7','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:37.367','248135683-2-11'),
('9a86196e-a191-486b-986a-f1772efa381a','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',29,196,4,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-4'),
('9a8668f7-7c52-40f3-a391-dc7c1c7e7cf8','01be5e85-2bcb-4117-9ad4-5f2afa75468d',102,46,46,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-4'),
('9a875967-c73f-46f3-ad5f-5a248744edb0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:04.908','248284003-1-120'),
('9a8d5f2a-da67-4102-9a29-c568d0433d48','aecafc00-84c7-44df-a04a-3bccbbec6f20',60,60,90,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-4-2'),
('9a91df3a-c380-46a1-aff2-0561eeaefc2b','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',160,50,12,0,NULL,NULL,'428413605-1-12'),
('9a936aea-0014-4082-92ab-6d0bcc852e32','c5027968-9a23-442a-bebc-9b8745408960',50,15,138,0,NULL,NULL,'982759064-4-7'),
('9a941169-9810-457b-82b0-9af7d262a1cb','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-6'),
('9a94fa20-eb89-4d41-8670-3164baa762fb','5cbb6c75-8a55-4d2a-bbcf-444624bb5962',56,103,83,0,'2025-10-25 08:59:15.286',NULL,'505414907-2-3'),
('9a974856-9e9b-4681-b661-01eaf7f46b70','81b00513-9ac4-4aef-8fee-fb279e70ca3e',263,10,105,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-7'),
('9a988342-1d31-43a7-87c4-0dedea8ede18','5ea4b207-b05c-4931-bbd1-648b6933aae5',223,46,11,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-9'),
('9a98d22a-1679-4ffc-bf01-ecd2a906aa6e','a8602257-d25c-4483-b345-d3a8ec10d670',100,165,10,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-3-2'),
('9a9c7564-9424-4e1d-9a9e-94ab519d76d0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.301','223444495-1-178'),
('9aa04959-8dfe-48a0-bb4e-4edf9b9d686a','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-44'),
('9aa0b305-f776-4c6a-bd0a-f8caee708cbb','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-16'),
('9aa2093b-8d96-4583-8327-406b256f5bed','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-158'),
('9aa30fda-0f9b-44d6-80e3-d5af7e022b7e','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.490','478763903-2-58'),
('9aa71ae2-a6de-418d-9910-ed4d7fa58267','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-90'),
('9aa9c726-42f3-43e0-8ce8-6b58787ca769','94df600c-14bc-4088-b6c5-be9e0b0223ee',0,0,0,0,'2025-01-20 11:21:18.002','2025-01-31 12:16:21.240','478300434-1-1'),
('9aaa3d28-1b59-429e-a812-2d20360d251d','1f47f4f7-d248-416a-a50f-29dc04cd5570',200,90,25,0,'2024-03-30 10:55:00.100','2024-04-03 08:28:11.225','982320922-1-2'),
('9aaa9d7b-c5b3-49b7-98f5-544b13180543','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-2'),
('9aaaf210-193e-4597-9ced-fa48cf9c739c','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-1'),
('9aac6aa6-a07f-4e24-ba6c-6e0a84473892','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-74'),
('9aaf7626-3ee7-49f5-85e6-6571237df86f','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',95,230,70,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-3'),
('9ab1a237-ea35-4836-9de7-65d3fde96c13','177be132-8ef4-4489-bb59-2794e3f4e826',85,75,75,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.763','745873539-1-3'),
('9ab80424-fe6d-4f52-84db-a55315af5d8d','a0a4be0b-f2b9-429e-92f5-4a10e11028b5',250,100,80,0,'2025-01-06 13:08:16.787','2025-01-10 09:45:15.067','910405441-1-1'),
('9aba816c-a39a-42d4-a98c-e682bb717758','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-3'),
('9abb4d5b-b8f3-4e9f-87d8-eeca6ecfcb41','f0485a78-951c-4f89-bddf-b2003f0bf783',9,100,190,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-41'),
('9abb9f32-7108-4c6e-be30-8edd4b7a07af','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-115'),
('9abc35a4-eeea-4aec-9c4f-ef3bd214e78d','6fcd8160-ca06-46ab-a691-51de5c394793',21,11,204,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-15'),
('9ac1eaab-7aee-4540-8dda-d6122e77bbb7','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-36'),
('9ac30295-d31a-4660-b7af-3e484f7bdd78','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.762','2024-09-12 10:55:08.190','163961995-1-88'),
('9ac39a8c-a9d6-41e9-a922-8fb1072189d1','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-14'),
('9ac3b57a-a88b-477f-aa91-b9b8ae9940b4','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-14'),
('9ac46cd8-df20-41cc-aced-351eedae12c1','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',8,61,215,0,NULL,NULL,'47816855-2-15'),
('9ac972a5-2c38-4b91-b82c-7e80f4fd11ca','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-32'),
('9aca1205-80ad-447e-a893-eafcd4b5d165','359880a3-777e-425a-a9fb-c44790c1fdd7',95,57,95,0,NULL,NULL,'570265257-1-2'),
('9acf1641-03af-4a2c-865a-38e165d4c607','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-42'),
('9ad384ea-1df0-4ecd-8441-0fd8de01018d','61545b5a-3d2e-426a-b1bf-172ecd0f8714',0,0,0,0,'2024-03-16 14:34:15.938','2024-03-27 11:10:05.006','449806465-1-11'),
('9ad39481-7696-4451-960f-1847fd224a11','ee4fa9d5-c840-4b56-915f-a8eff865c451',93,143,80,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.266','644593040-2-4'),
('9ad3ec1f-bb5a-4078-b2f7-4d2641453cdf','63e03482-af1b-4b30-9c93-56be1e53f6c5',85,245,100,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-3-3'),
('9ad428ef-13b5-4fa5-9a07-99a039dfc2ff','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-37'),
('9ad56b47-6afd-41df-9a76-855efeef9926','d22d7227-b6be-4a20-978b-11fabd469cb9',95,95,80,0,'2024-05-17 09:42:09.160','2024-05-28 16:23:12.626','126274786-1-3'),
('9ad5b941-08ae-49e1-b5eb-5b12bbc7ff0c','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-25'),
('9ad7554f-3cc1-4f67-8621-c0b1ad81ad76','1568016a-7136-4521-a615-ca7531c293bb',0,0,0,0,NULL,NULL,'501396873-1-1'),
('9adb1ae7-84e3-48ad-bdab-5584d9d5740b','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-19'),
('9adcace1-0fa6-4278-a672-00c2c8abcfc2','0dfacf6a-8dcc-415a-9e14-a7dfd830c72d',0,0,0,0,'2024-08-31 13:26:49.464','2024-09-07 15:54:00.265','31912550-1-1'),
('9add6201-303e-42a2-8b7e-78033d3de3e1','8e4621f8-e2f6-4c06-a542-51aea08e56af',100,70,90,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-3-2'),
('9ade50aa-8be3-43d8-99f0-fd416660d4f5','6fcd8160-ca06-46ab-a691-51de5c394793',53,6,200,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-6-16'),
('9adfb7a3-05cc-41c3-99f1-5e9d74de47e4','a2d857b1-bcf6-46ee-9e87-dabcdac62719',32,25,15,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-13'),
('9aea9b0b-1425-4bc8-82ca-4755b35de483','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-65'),
('9aec27aa-39ce-4fa9-8cfb-2f34c909a2a9','0045cf50-baa2-4fa7-a3b7-47eb972ef774',51,50,76,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-1-1'),
('9aed51fc-b985-43f8-a488-5dfa7fcd97f2','9d9df441-0469-46e7-baad-366a3096e9a0',50,92,22,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-6'),
('9af10f2a-c114-4101-b99d-85d1b374ec13','e3606b49-005c-4991-8685-15a34953c46f',70,205,95,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-4-2'),
('9af3f511-3397-4811-bca0-096e4a130f33','a8240df2-bc04-464c-afdc-dd0bdbe1643d',9,63,218,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-8'),
('9af51162-f1dd-4df9-b9ca-b7b42aa093d1','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-18'),
('9af892a9-4300-4756-a748-8625a5e9b0d4','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-6'),
('9b00ca29-7ebe-4454-bb70-95bbe96cd1ba','c1eae8f4-8187-4c64-aba9-aab18d9bbb27',98,187,80,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.065','43725194-5-3'),
('9b01182d-590c-464c-83bc-26a961ba0110','b16256b1-d6a2-448b-a170-4c574127a57b',49,18,72,0,NULL,NULL,'745189997-3-13'),
('9b0374e8-2acb-4b6b-abda-fd4e8be68743','af69c5a3-87d3-4548-a650-720b69a4fc69',104,14,203,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-1'),
('9b03af35-e8bd-4698-b626-e4a570e6c356','03e6b41f-f2d8-44cd-8fde-3ed5e7f289e2',90,25,40,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-2-3'),
('9b11eab1-b985-4e07-a6db-1ebf7aa50b1e','7dbfac68-a166-481d-9984-d7ec9291dc46',52,53,43,0,NULL,NULL,'808690841-2-2'),
('9b12adbe-b6d4-4ed8-bc85-d5bec98691aa','052ad905-3da0-483a-aae7-9d36b31da379',67,22,48,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-6'),
('9b1fd9dd-daed-4a99-a434-9600c36f3210','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-9'),
('9b208517-e89d-4b8d-997c-3ebb24b3f993','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-9'),
('9b229192-a05d-4401-8914-2cf1f14ba946','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-52'),
('9b246c96-58c6-4e47-bf60-e3b8f7afd29c','9504c24b-6a37-4522-83ad-b302a5d583a5',25,14,212,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-17'),
('9b26adab-8c5b-4d1e-bf75-8395f5713ddd','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-92'),
('9b2ad603-fd3d-4228-bb5c-7c1084918585','a61afe94-7b8e-47a4-a6a6-a1d3739c3086',65,65,85,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-2-3'),
('9b2b481e-2302-444c-9ba3-457e2f1e6b63','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-2'),
('9b2d5a0a-379b-4b01-9725-4094dbaedea8','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-10'),
('9b304447-b225-44f0-a046-30f7739a7968','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-34'),
('9b389c9a-d66b-45db-97a0-2e3ad4287ae7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.550','412107970-1-151'),
('9b38e4bd-ff98-4699-b752-06f3cbff3f6c','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',110,65,110,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.152','127865742-2-4'),
('9b38e552-7217-42b5-8c7e-bfae70e6d274','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-59'),
('9b3c1e6f-3f5b-416e-b11e-d7e1c43b472c','d83c40d1-4df5-4c97-bc83-28837db95b2b',64,104,13,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-47'),
('9b40614d-da02-4936-90e7-2e0f248de4c5','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',47,21,195,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-10'),
('9b42c3db-de48-4a8f-979e-330c0eedd852','7defd633-f7ab-424d-8029-028d1b045752',207,43,6,0,NULL,NULL,'501119446-1-29'),
('9b44de18-369b-4c80-bdd0-9b499ea02dc6','177294d8-4a20-4344-9332-bcb523376954',51,51,77,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-2-1'),
('9b44f911-b3e9-4bcf-8be6-27e1332e8459','5114defd-dd85-45fa-a3af-522574ed305c',65,36,78,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-3'),
('9b458995-e6b1-4586-ae91-2d996692265f','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-24'),
('9b4d4cf1-7d67-4f45-b7be-0fcdfef6667a','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-21'),
('9b524da2-9c4f-4cdb-8068-bfb48e926bca','10ad24a8-579a-4070-b518-bffa0ba09e26',89,32,10,0,NULL,NULL,'428905379-3-3'),
('9b53668c-169c-40cd-bc29-e7803cba6f71','17a26aef-3edc-4baa-9cc1-e31a937771e1',100,65,75,0,'2024-12-07 09:32:18.094','2024-12-19 09:32:51.430','734626870-1-3'),
('9b54c061-2367-4de7-ab73-2ebb37cbfd56','96eec285-a16a-4ef8-91c2-f330c11ec1f8',74,74,74,0,NULL,NULL,'221893262-2-3'),
('9b558353-ef83-454b-867e-37d6bd3cb2a2','7c09f776-ffb6-47c8-8828-61389547804e',74,40,40,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-10'),
('9b57ecf9-d102-420c-80f3-45c25fc46f65','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.886','2025-02-22 10:20:07.683','65556881-1-9'),
('9b5903c4-eeb0-40f4-8f02-1244cf878161','a87576e3-14e1-46a8-99c7-1d48360995f5',55,75,45,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-8'),
('9b5c02dc-05a4-4295-8471-c3eb2b5a13a0','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-19'),
('9b62187f-7f5a-4441-ae6b-4acdc80a8046','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-5'),
('9b6483ba-9c51-49fd-8ac1-6c465db2747b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',206,31,18,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-115'),
('9b65694a-3a94-46fd-8da2-b7881d3ad716','470e5bf8-985b-4b51-9441-9efa4da41c0c',80,70,215,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-1-1'),
('9b657b94-aac8-4c27-873a-e221b37110ae','84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102',82,50,103,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-15-2'),
('9b6c66e2-f7d5-4625-82be-82d04f558822','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-23'),
('9b726297-b59e-4a8d-a54e-597c1d7ecbf6','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:38.070','248135683-2-48'),
('9b74c95a-79d1-4882-8efb-305b43fad239','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-82'),
('9b7592f7-91b9-424b-8ee6-a2859fec04a8','0a43887a-12ae-4e51-9586-f10e42c3bca6',55,90,200,0,NULL,NULL,'011399882-1-1'),
('9b77689d-9c0e-426d-9d50-cf09902c6908','a87576e3-14e1-46a8-99c7-1d48360995f5',125,100,20,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-9'),
('9b78bacf-ebd3-4459-96be-b963fd601629','bf2fbd97-6d0f-4724-b25e-47e019854e49',34,8,215,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-15'),
('9b7aa202-029a-4064-a453-20923d64a4fe','7f29d579-cecc-4d5f-a303-6c20027acdd0',96,163,8,0,'2025-07-19 07:52:14.501','2025-07-28 12:02:39.073','598211009-2-2'),
('9b7ad59d-1f33-41db-81f0-84737bbb0b9f','75e7d3fc-2c13-46f0-a46a-88b11bcb2401',0,0,0,0,'2024-08-07 15:02:48.808','2024-08-16 19:21:54.735','478212125-1-3'),
('9b7b655d-da50-4241-b909-c4565ea2cb25','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-43'),
('9b7c79f7-bf6e-40d6-be82-f6bbfa41bfd4','009cf10e-8302-46d8-a79f-46e58ad814bd',0,0,0,0,'2024-09-27 14:06:11.092','2024-10-07 14:02:36.786','750951041-1-2'),
('9b7f5506-8559-49e4-ad10-c8e848d36417','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-2'),
('9b7ff014-a139-409c-86ee-68cc8eefbf00','9212dfa8-08b3-4e92-93bd-a594eaf017b6',90,54,102,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-8'),
('9b80de88-16e5-4c94-add0-d718418be9b4','daf32ec4-3098-4d67-9b7d-722264422db6',0,0,0,0,'2024-03-31 17:55:18.634','2024-04-17 10:15:44.136','614289770-1-5'),
('9b812a28-97bd-4837-990b-145c317b98e1','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-8'),
('9b8134b4-84b7-446e-8eb8-24a5e8f6899c','f8c7ffcb-2cbf-4062-8bb7-970e7b285da3',91,116,60,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-3-6'),
('9b81e305-579b-440b-87e1-74e0341ed276','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-2'),
('9b826633-5ba3-4c68-b3cb-2676bbd32a1b','cb620780-a9a0-4812-a480-2a4cbe6c4b05',85,213,60,0,'2025-10-22 13:07:04.647',NULL,'412223405-1-4'),
('9b8573af-2849-46af-bf5f-aecf9807edcc','06e3c58b-ddb9-437f-aa81-bab14410c601',91,51,87,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-1-1'),
('9b85d4a7-f093-4131-8f63-df88499fafa1','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-47'),
('9b8a2129-64e6-4174-a410-530306839095','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-10'),
('9b8a3c0e-3979-4b1a-83c0-37208908b864','0e701d67-c6bb-4ce9-b32e-3d2255d064b5',0,0,0,0,'2024-04-23 10:31:53.400','2024-04-26 17:00:05.653','44971858-1-4'),
('9b8be505-462f-49ea-9626-109040f61664','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-5'),
('9b8c5f98-e158-40f0-9c06-3e7695299799','7311f1e0-e2be-43dc-9e40-f94a010e8939',161,48,54,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.268','289168915-1-38'),
('9b8dc8a6-926a-4654-bd65-42e64530cc49','489fd382-992a-4062-80fa-06d0adc63c50',56,83,100,0,'2025-07-19 07:51:57.710','2025-07-30 08:02:07.303','750505145-1-4'),
('9b933ef6-8c81-45af-ae8d-416291e5e355','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-6'),
('9b95008c-1662-453d-9770-36df1cc97f25','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',117,95,65,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-2'),
('9b953487-9106-48ac-b5d5-153532cf194f','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-31'),
('9b99836d-f0ec-4c88-950f-898c33da52ee','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-36'),
('9b9a6fc0-579a-41e3-9daa-c0f729afa2db','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',28,108,207,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-8'),
('9b9b7a37-35dc-4ee6-86f0-51a173dbf1e0','53025d92-f019-4f5d-9b69-68a3b09bb7bc',45,209,5,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-17'),
('9b9d9701-0185-4eab-9f02-d5efe893b3ca','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-6'),
('9ba1b9e1-05ca-411d-9e11-f5bc7151c3e9','6f883022-1eea-4faa-b6c6-489aa1c8866e',112,20,10,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-3'),
('9ba50bf2-274a-4f93-bb21-da20f3dc7805','e65249b7-09e7-4653-bd04-1233b551b8c8',95,65,95,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.175','319316615-1-2'),
('9ba6888d-7963-48f3-a8fc-569a58a575e4','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-18'),
('9bac95fb-3b1b-4eb6-ba36-d9a95ccd1dd6','64e3ab53-43e9-4065-b2d1-99c9cd2365cf',120,70,100,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.471','428182749-2-2'),
('9baedc34-1a5e-4e5a-ab23-96e6c4c10849','dc3f18e7-09f7-4f48-a550-413323aa1fa7',82,30,12,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-5'),
('9bb011cc-1c05-41b4-950e-194d31cecab1','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-141'),
('9bb5339a-8aca-498b-9d06-15e89d090c0b','b07a55d1-cbb0-4473-8e2f-a91320826dbd',95,75,230,0,NULL,NULL,'910510042-1-3'),
('9bb5b3aa-a312-487e-ba47-90bedfab3349','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-12'),
('9bb617d5-e871-42d2-81b0-bc91c6bfe204','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-10'),
('9bb945ff-22dd-4392-8129-ec0966aaca04','9c9ece2e-cdef-44ae-9960-980614fe02aa',17,17,146,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.775','478243785-1-6'),
('9bba34e8-9400-4b0d-b7e8-bb9dd97677d5','b79e14f7-bc81-4d2c-b54e-e10324f46985',96,168,6,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-3-3'),
('9bba7c6b-1028-41df-b811-b22c919899d1','6d0390ef-65ce-4154-a607-d67e51938ed2',71,31,190,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-16'),
('9bbaf9c2-73aa-49b9-8c68-8cc4b040ab61','bd7ba9b5-8269-4522-b579-d69c949c4a64',106,106,70,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-7'),
('9bbbd44d-85ba-486d-afff-b31be31917aa','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-107'),
('9bbd87dd-8ee6-4503-ad8a-5c3c71f8300d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-40'),
('9bc125e0-36f2-49a8-90c6-540824f6757e','392e6688-b280-4b27-9b5a-97925f3d9c8b',90,75,80,0,'2024-12-07 09:32:10.924','2024-12-19 14:54:06.615','107870370-1-3'),
('9bc2027b-6752-45cd-a083-0d3a2c6be225','8e9264a7-ea7b-413f-be45-63b66a8c7b11',80,240,100,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-6'),
('9bc30575-c7d9-4f36-8fbc-c36e10dca75c','7f827719-d0a9-4910-9aef-532cd3731df7',11,51,72,0,NULL,NULL,'745995046-2-3'),
('9bc60930-91cc-4c8d-867e-7bc4e866a20a','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-4'),
('9bcf85ea-de6d-4f56-abf3-dec931efb4a2','628d9615-d14d-4eba-9099-0780016f2dec',54,55,80,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-1-3'),
('9bcfdd00-39bd-4919-b4a1-c6a04d3f9db0','6fcd8160-ca06-46ab-a691-51de5c394793',53,6,200,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-17'),
('9bd02157-e5c7-4fc3-90be-c83b0279097b','ac73d19b-52b7-42a0-83e3-a4d8491f56b1',98,157,65,0,'2025-10-08 17:44:13.128','2025-10-20 06:32:30.113','644717952-1-2'),
('9bd3f5c5-a446-45eb-bcea-24c4634f6515','f095d43a-8f6c-44f7-aaab-aade7799f4fb',59,163,94,0,'2025-04-11 13:41:38.817','2025-04-25 09:52:26.884','910163146-1-5'),
('9bd62421-f19b-4472-8f06-fe19a8c1ef6d','5a47171c-3fff-4acb-b6b5-4670498a85a1',172,96,6,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-1-2'),
('9bd7a8fd-966f-4f58-8261-aa94edc520b7','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-2'),
('9bda4d29-5ce8-4027-8479-f51ce3dc97dd','af0ebe61-67f2-4d8a-98f4-d5372f0e2193',58,53,51,0,'2024-11-21 10:29:18.363','2024-12-13 19:00:45.749','982549375-1-1'),
('9bda68fe-54c9-480d-a766-80620ca99e57','3aca7d6d-09cb-4903-812e-7535a083b09c',217,32,4,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-17'),
('9bdae88d-6072-4bd8-a65c-b3bb427a7943','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-6'),
('9bdbd03c-ff47-4bf7-97a6-b54b778c77b5','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-34'),
('9bde8864-6b39-4fd0-b98b-964977aa9613','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:09.134','248284003-1-194'),
('9bdf0c5c-a179-492f-a78f-4d8fb47f7487','83a4a2ab-63b4-468e-9809-edf00bbd2679',72,100,85,0,'2025-05-09 18:44:21.970','2025-05-19 20:26:27.501','570417524-1-3'),
('9be4904e-dd8e-4044-918f-f1acca79f651','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:05.748','248284003-1-183'),
('9be6673c-6894-4b2e-9683-a9f8ae5730ae','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-62'),
('9be684a9-6d4a-4b7d-a843-6c01a5898dae','c1d864c6-97c2-457a-ba23-bab224e0f781',51,51,77,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-2-5'),
('9be7c41a-991f-4b62-b76d-3a3e24e2bc42','53025d92-f019-4f5d-9b69-68a3b09bb7bc',30,17,205,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-18'),
('9be8a00b-39a9-4127-a9cf-7ba1518c6011','0ad93723-9533-486c-83ac-4a9287073b23',105,104,70,0,NULL,NULL,'598967733-1-3'),
('9bea06d2-f5db-41f5-bde2-a78947e45399','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-8'),
('9bee24ff-f56e-4dec-a3dd-034f0dc4e74a','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-46'),
('9bf4c02c-85d6-47b4-aca1-6e5f32172ee2','9248be40-4180-48bc-9c4e-50a1e7dee4f1',206,28,34,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-4'),
('9bf5c728-f523-44be-9844-3eb339d54030','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-58'),
('9bf6bc2d-75e1-4346-9400-44d7bb62a179','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-61'),
('9bf73b4d-461c-43cd-8634-aa1a98cbad65','7311f1e0-e2be-43dc-9e40-f94a010e8939',98,98,75,0,'2024-09-06 12:28:25.211','2024-09-12 10:53:49.268','289168915-1-39'),
('9bfb117e-5dd9-4227-ac95-0f8675984fd1','df3b19de-7db5-480e-801a-a689b8d2eda0',100,64,65,0,'2025-10-25 08:58:58.836',NULL,'74521183-4-3'),
('9bfd2b13-13a8-4d3a-91e5-8e8c081ad567','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-17'),
('9bfe938b-f9ab-4852-9abd-7adab06510c3','f0a43129-5f51-488f-bd5f-ebd20137e40e',0,0,0,0,'2024-11-12 16:15:37.508','2024-11-23 19:56:09.399','745940979-1-1'),
('9c00b67d-6318-40c8-9ade-a354354fbe42','9edb0c9e-c517-46ac-b46f-908df1462d7c',12,40,204,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.569','598320188-5-1'),
('9c015b9e-077e-4772-b658-dca500e408ed','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-83'),
('9c02497c-35c5-4f08-99de-a8e9e25a3927','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-19'),
('9c027197-04df-434f-a7c6-8f47beb3a234','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-106'),
('9c04b1bf-0c2e-484e-9f36-2249593dbb08','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-87'),
('9c0a5d07-c0c9-46b6-9b8b-f83e0cb1aa10','55f6bdcb-8600-4864-bb7e-b38027af88e9',102,57,83,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-2-3'),
('9c0bcbb9-85cc-4449-8f87-eda91dec109f','b2c78cf5-c58c-4553-bd14-49e83916894c',6,73,37,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-10'),
('9c0dd488-4a75-4840-916f-90855929cdfb','1213fb34-61cd-42d2-a514-175d319ca5ce',0,0,0,0,'2025-05-16 16:33:21.497','2025-05-23 14:07:24.682','478337610-1-1'),
('9c12e189-e662-4c6f-a98c-11a7bb108743','5ea4b207-b05c-4931-bbd1-648b6933aae5',196,110,8,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-10'),
('9c136e85-28b3-4aed-b929-e85a49a037b0','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-32'),
('9c1a247a-be61-40e2-b4b9-cd8636eaaa63','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.148',NULL,'505724535-1-1'),
('9c1a9df2-5b3f-4e22-a712-106acb97958e','d7ba1ed3-8fa2-4df3-9997-7f6419ace61f',93,232,60,0,NULL,NULL,'371216639-4-2'),
('9c1fd13f-8e52-4267-b707-0ae27c286293','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',80,106,50,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-5'),
('9c21dd01-de43-48c2-8c69-ce3dd2f131f0','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.873','910775394-1-19'),
('9c23075d-613c-4799-8eb6-577cd681057d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.556','2025-03-01 17:30:01.495','046487702-1-52'),
('9c25e4c0-40e3-43c9-9c20-b9e8115d2b1c','dde50bf6-1fed-4426-9d6e-ef17ca7f8b03',160,200,32,0,'2025-09-18 15:48:52.001','2025-09-30 18:47:48.887','478616973-2-1'),
('9c272695-4d59-4141-961f-faac6d9d470a','a3545233-7d60-4965-a14b-1b94e0e5edb9',125,103,65,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-3-2'),
('9c29a55e-f4ff-4898-aa1e-3924a793e18a','0803fa20-5b74-42fc-8f96-ac10c2c5324a',175,95,67,0,'2024-03-31 17:55:08.069','2024-04-12 07:17:12.019','982992264-1-2'),
('9c2e0e62-5b73-4e03-b705-621026afb146','83371e37-9c5d-4c8e-b554-692e05bd3d90',0,0,0,0,'2024-12-07 09:32:27.530','2024-12-18 14:57:34.121','745671718-1-2'),
('9c3010fa-d556-4e9d-97d8-3f3410e0f008','72fb9c80-80d1-4a22-84a3-c154b5a3cce2',56,82,111,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-2-2'),
('9c3272e7-dbd4-46e2-9f6f-0c0412033d87','85863f70-10fe-411d-ad43-60a5ba95b680',0,0,0,0,'2024-09-19 18:27:17.240','2024-09-28 09:04:10.925','982425532-1-2'),
('9c33b44a-01bb-42c8-a9a8-ff7e3a9cdf47','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-10'),
('9c3678fa-8c1c-4367-aa60-784cd77288f5','32c9673d-ab89-44f1-a639-3cfa252bd8cc',100,73,75,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.042','598986653-2-4'),
('9c3765c5-6306-456f-babf-198b3db61c9e','a0f54067-e814-444a-ae72-77c30c33e12e',33,31,15,0,NULL,NULL,'644390236-2-1'),
('9c393709-90cc-4209-b57c-0aca44c4eb91','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-60'),
('9c39b84e-b6e5-4bd3-bddb-ecd880fdddb1','370a7590-6b28-4a62-8bc9-2de0a5c0a969',125,125,75,0,'2025-09-16 16:29:13.364','2025-10-04 13:36:32.358','437712381-2-1'),
('9c3fd36f-5585-4298-b980-64024edefa56','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',11,24,39,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-12'),
('9c3ff679-11f2-4766-87ff-36be637c3148','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-3'),
('9c431931-bc1d-4a4e-9267-a1f6af328ec7','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-6'),
('9c4559ac-93b9-4ff5-b600-a149e67d14f3','4dae2c46-63f9-42b5-9288-01744ed81ee5',51,51,77,0,'2025-04-25 16:57:00.700','2025-05-02 17:09:00.996','338411689-1-3'),
('9c46a335-8f7a-4f8d-b7e4-fa1dbb7c158f','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-10'),
('9c4786a7-46de-4e37-b5e4-d60db2ee6b29','58dd39fc-46c9-48f2-9cd2-07adef485fea',0,0,0,0,'2024-07-20 10:37:14.810','2024-08-05 19:56:07.288','614873400-1-1'),
('9c485fd8-1bf1-4649-aaeb-ac76e786af69','6a308121-6cf9-4384-8446-08182bd669fd',211,64,6,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-19'),
('9c49522d-41eb-47fd-a6ba-c80ec6b4474c','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-7'),
('9c4a1bbc-941e-4371-80d5-6f91840c1c7f','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-3'),
('9c4d623a-c397-4a11-8b31-d40ca1b4a536','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-27'),
('9c4f4bc4-94f3-4f43-91b3-549c793dcd88','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-6'),
('9c51b00c-9ffc-4d1e-8490-e4d2951470e7','052ad905-3da0-483a-aae7-9d36b31da379',215,30,40,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-7'),
('9c51fad5-e4f7-4329-ae28-f8c77fcbf54f','5d87ced9-ddb2-4a6e-a01b-2e80e5988136',0,0,0,0,'2025-05-09 18:44:04.562','2025-05-20 16:27:51.435','338878009-1-3'),
('9c5ba965-773e-470c-a9d8-2072528eec02','bf45c546-7b61-4cb9-8ff6-a953f372662d',27,69,217,0,NULL,NULL,'745995046-5-4'),
('9c64c311-65f3-4ed6-87f8-59bb1002d8a8','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-20'),
('9c6a35fc-9f1b-47ee-b1d7-11f39b5ba398','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-5'),
('9c6d78f6-6701-4f83-9a88-b0faa0d68783','733d947b-4145-4080-8edd-87c33f93d60e',95,116,60,0,'2025-10-20 07:18:07.350',NULL,'59856960-1-2'),
('9c6d9685-5ece-4bcb-803b-49fceb0b572a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:06.386','248284003-1-166'),
('9c6e43bc-df9f-43d5-b106-5cbed093939e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:17.464','248135683-1-181'),
('9c6e8284-a46b-458e-8e6b-682e31219a78','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',120,104,78,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-5'),
('9c718647-ca05-48be-8888-76234d3a5a3f','a87576e3-14e1-46a8-99c7-1d48360995f5',50,74,31,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-10'),
('9c7837d1-1ea1-41bd-9582-cf08457eecc7','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-33'),
('9c787989-f053-470d-bb3d-14f821232753','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',53,53,60,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-3'),
('9c78c7ba-9709-465d-9138-e90773fda3a1','5f1551a0-3002-4877-a790-948d5c6a3315',0,0,0,0,'2025-10-22 13:06:59.842',NULL,'223575392-1-2'),
('9c793e59-b76f-4d8a-bc92-0d5422050578','7fbc0cac-4c11-4144-b578-3223cd9dd90a',46,10,62,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-13'),
('9c7c3219-64bd-4b33-9340-7e463da445b6','0683aa5c-fafa-459b-928d-eae1729e635e',96,98,54,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-5'),
('9c7f6186-2174-46bf-b257-548874bf4d98','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-4'),
('9c7f8a71-8fb3-4431-9cf7-a4be6155e5e8','f2159b2b-020d-40ff-ae20-f912043ddb26',102,84,58,0,NULL,NULL,'515491042-1-4'),
('9c7fdabe-7a43-4940-85bb-7ef2f2b47f8c','7fc2bccf-14b4-441f-88c8-816117ad7eb3',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-3-2'),
('9c80f124-5702-402f-8e79-740e231f16a4','793ba0dc-e99b-4fa6-b21d-bf758c07d6bf',51,51,77,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-3-3'),
('9c884156-211b-41be-bb95-218091853250','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.215','2024-12-20 14:35:25.910','478949141-1-4'),
('9c8a048a-768a-4421-9182-3ca59774a565','0dc5e5d6-cace-4501-9a0d-ff1d1e995f89',44,43,79,0,'2025-08-27 19:40:01.501','2025-09-06 07:19:02.562','598961911-1-2'),
('9c8cdb46-99c9-4cdb-af30-ba7bc443e40a','9b4d1c30-8bcb-494d-964b-89ee11fbb5ec',51,51,77,0,'2025-09-12 17:17:01.866','2025-09-24 06:51:09.697','437319119-1-1'),
('9c8f48e9-c932-4632-88cb-4ca6b77549b4','29554c39-59b7-484a-8dc7-434cbbe4f2f2',86,86,7,0,'2025-04-28 07:40:36.260','2025-05-07 06:08:01.236','221867394-1-1'),
('9c8f4ac2-debe-4fc4-a853-b7247ae7e05d','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-6'),
('9c8f7e13-59bb-4d37-b911-ab034a14e49f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-55'),
('9c8fd08d-cc0f-48a7-8ea9-c9ac66657ec5','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-13'),
('9c92bdf0-7d66-4d1d-aaaf-0bc555175519','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-4'),
('9c9504a8-c54a-46e3-919c-bcabf8e6ef8d','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-6'),
('9c96b4b5-896d-449b-a981-742c62ecd70e','af3e2c68-d1df-455e-a5d7-0f309e2961a9',97,228,7,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-8'),
('9c97c921-6439-487f-9017-1c50bd411547','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-38'),
('9c98e687-4d0d-49a1-8f9b-9fad9d86e30a','0bd42145-fdd8-4793-a5cd-a2e404d37142',200,58,7,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-18'),
('9c9e38d7-b594-48ca-b9e3-8f188122f42a','6ec87888-8b87-4bf1-adae-d5b6742225d9',62,13,266,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-15'),
('9c9e460f-9ca0-47b5-9ca3-813e3b51531d','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-36'),
('9ca0824e-e151-42d5-807d-9bf883d0d7d9','bf1a5038-41f2-4421-8c5f-5546bf1e6c91',51,51,77,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-3-2'),
('9ca34565-03ec-4a30-81e4-a8aa01d7fca1','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-88'),
('9ca3fc5e-f5ed-4378-826a-986d66f89809','e89e7d75-4967-4c63-9f73-981469e531af',25,5,5,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.435','319835776-1-29'),
('9ca44792-0424-454b-bfa2-05d905b24e17','bfacae57-61cf-45fe-85f9-15ca84750bed',0,0,0,0,NULL,NULL,'745693868-1-1'),
('9ca73ef5-272f-4ec8-82f5-aa87330b8897','381d724a-7939-414a-8b9e-996cb1553398',105,20,200,0,'2024-11-25 08:29:10.762','2024-12-03 10:00:22.117','428159880-1-1'),
('9ca9addf-1029-42bd-899f-c8155cf79c65','9dc96b19-247b-4a97-bb0e-de1393132cd9',0,0,0,0,'2025-02-09 09:51:26.401','2025-02-19 08:38:48.550','01921294-1-2'),
('9caf259b-07f6-4818-bf68-db03a45c700b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-216'),
('9caf8cb0-4ba2-41de-b3b6-e82f03aa2156','b90750dd-73f4-4067-b29c-e3c2b60c9fa9',0,0,0,0,'2025-08-25 12:32:28.392','2025-09-20 07:01:22.780','437452475-1-4'),
('9caf937d-1b02-4e95-a4eb-3b106a003eb5','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-18'),
('9cb0514f-1d14-4026-94f6-f560ab3c4355','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-21'),
('9cb2b429-7083-4e42-a3ff-b5105312a4ff','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.762','41283002-1-18'),
('9cbe0ced-4ff4-4ee0-bf84-20da4ba302be','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',93,92,9,0,NULL,NULL,'428413605-1-13'),
('9cbe1c8a-ce3d-4abb-8a38-a80576ba0b56','154621b1-ffa6-4119-be67-ecb1d2de0d10',70,62,91,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-1-2'),
('9cc015b4-0390-4fd8-b663-073af98701de','9505974b-8c77-45d9-ab90-d648d60640dd',0,0,0,0,'2025-02-09 09:51:22.491','2025-02-19 18:37:19.838','745498790-1-2'),
('9cc01cb7-3040-427b-9a4e-4ae2b2e03053','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-24'),
('9cc06133-a6d9-41af-b7e2-d78e8c253ce2','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-14'),
('9cc13f90-2bd3-47dc-a9f9-5477428d1cb9','45624052-e478-4c53-92ab-2b7ad134bf8b',99,99,70,0,'2025-08-25 12:32:00.331','2025-08-30 18:25:59.309','437306380-1-3'),
('9cc20a6b-3efe-475a-948c-deb27a773543','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-5'),
('9cc59de2-f796-4c5e-8eac-81ac8d2d50f3','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-66'),
('9cd7a949-b0e4-4c59-b886-5da20ebf8850','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-88'),
('9cd9d5c3-d594-453f-8839-be743ba52a0c','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.806','47867667-1-34'),
('9cdb4965-668a-4fc5-9dba-7ebf9f94db79','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-7'),
('9cdc9bba-a1a6-4e21-bf72-ad0b540bf728','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',197,40,5,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-13'),
('9cdd169e-6a6a-437e-a1ee-a26dfa849af9','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',0,0,0,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-13'),
('9cdf66a4-18c3-465c-a21c-44ac2ad90959','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.819','223853931-1-126'),
('9ce03f47-933b-41fe-83b1-e99fa2aa2276','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-78'),
('9ce2019f-761f-43fe-bbac-7ba3f283d6fd','de3d1881-c5ca-4244-a03d-15cbe8813eef',79,25,200,0,'2024-12-23 12:00:49.563','2025-01-04 10:37:10.815','428990953-1-2'),
('9ce4c7f0-f84d-4ce7-8959-b4d6ceeb85b3','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-1'),
('9ce8f974-653b-4f3a-a341-6899c042f120','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-46'),
('9cea13c0-4e4c-451b-8b50-e389194ddbf0','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-21'),
('9cf186a9-999e-4d1e-a217-9d896b692d0b','2c277c44-2e96-4924-b190-204f7c59d3a6',190,52,105,0,'2025-01-26 10:54:39.096','2025-02-07 11:19:27.865','127927013-1-1'),
('9cfb41b1-772f-4aa8-ae1d-5a4849e0d39c','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-3'),
('9d008127-10d5-4525-b33c-f5d4eff5ec90','07bb64ff-aec7-401e-a7a0-773145781f60',98,81,60,0,'2025-09-16 16:29:45.001','2025-09-29 12:23:06.903','644762741-1-2'),
('9d01aeed-7af2-4bc0-98a9-c1c216c866e6','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-13'),
('9d01fdb2-1895-4480-8e12-d87b9b9204b4','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-35'),
('9d047647-3ecc-4c6c-85d6-6ad2102f35e3','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-33'),
('9d04b16e-43e0-4bd0-b2e5-3f3258fecc79','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-17'),
('9d07bef3-6711-4033-9ca5-dbf7281f5ccd','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-16'),
('9d11ba93-34ac-42b1-86dc-89905f0c7a35','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-30'),
('9d1459e5-dc86-4985-9e23-2001706f5c56','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-40'),
('9d18ea1d-4f3f-401d-b680-e25bb8d7a284','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-2'),
('9d192845-09c9-4af1-a905-3574523bf1d5','d2498eae-06de-4965-ad29-62155b9a8992',95,60,10,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.146','976126416-2-4'),
('9d19a188-228f-4144-abd2-85fc4ff421e0','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-6'),
('9d19c9ff-65b6-4709-ad45-406a16db84e2','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',53,85,105,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-24'),
('9d1bb80e-e75e-4038-8eea-6f30423b210c','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-13'),
('9d1d3276-7f1c-42f9-ac65-4b4ff461fdfd','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-47'),
('9d1d821c-9f96-48c5-9b5d-02ad0997aaba','a320c384-09d8-4809-a0b1-0d8740a8df59',31,31,55,0,'2025-01-20 11:21:28.572','2025-01-28 20:45:10.314','221416475-2-1'),
('9d267b44-e9b8-4382-af42-82fce675aaa7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-12'),
('9d27cb70-87cf-4d6c-bb11-e70b28371eb7','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-20'),
('9d28047c-3a51-4257-91be-375ffaba2026','fbfff131-b02f-41a5-967f-a0528f7275f4',100,124,65,0,NULL,NULL,'745197948-2-2'),
('9d2a959b-a729-433f-8eb7-c32a122283f2','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-7'),
('9d2c04b0-2dc0-406f-9dfb-4b8aaeaed997','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-45'),
('9d2e3037-a86e-4b4c-be97-c4616b30efac','0f3df944-0578-417f-8086-580114d92963',0,0,0,0,'2024-06-08 08:00:04.367','2024-06-21 16:18:39.742','248746135-1-3'),
('9d2e6ba8-41bf-4b23-966a-e8d4b13b52be','75e7d3fc-2c13-46f0-a46a-88b11bcb2401',0,0,0,0,'2024-08-07 15:02:48.808','2024-08-16 19:21:54.735','478212125-1-2'),
('9d303832-c77b-4295-831d-007a0a779dd9','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-1'),
('9d30d299-cdcb-415b-b665-2482879ed2f7','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.768','248692077-1-65'),
('9d338eb7-baf7-4c6d-a652-49ada29092d1','cfda16e3-3e94-4fc7-b414-e5be0c5bf581',0,0,0,0,'2024-09-19 18:27:28.977','2024-09-27 16:39:50.359','982219496-1-2'),
('9d34a1c6-64c1-4af7-94d9-655bf9a0f336','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-41'),
('9d35baec-8abf-4ccb-9045-8205b6f2d0cd','7defd633-f7ab-424d-8029-028d1b045752',42,20,65,0,NULL,NULL,'501119446-1-34'),
('9d37d443-158e-485b-950e-884420b556ac','91eefa74-23bd-4d2f-b604-3135beb41a9e',40,40,42,0,'2025-10-14 09:22:08.585','2025-10-22 07:00:08.036','221105277-1-1'),
('9d3909d7-e9f8-4b4e-95ea-3d3b25f66ba1','7b72cf40-46aa-4f24-9023-5b711de6e336',73,18,182,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-3-1'),
('9d3bdde0-8d76-4326-a4f8-c9c5dc620a1b','69ea6974-d387-4458-bf21-972299a4ce67',98,98,67,0,'2025-09-11 06:34:16.553','2025-09-17 16:03:51.803','437529604-1-4'),
('9d3d9605-f78e-4beb-96d6-ae49af677ed5','05250dd0-c37f-4c20-872c-06cdf609c03d',96,90,80,0,'2024-08-31 13:26:30.884','2024-09-09 15:17:41.175','982545187-1-3'),
('9d41642d-7c68-4f85-92b8-5b28e59d9e37','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-14'),
('9d42319d-237a-43c4-86c2-0539c26a254a','6c37c9bf-2092-4fce-bbd6-41f3729ab98c',110,115,65,0,NULL,NULL,'808696925-2-2'),
('9d4245c6-eb1b-45a2-bfa9-51c20d0d458d','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-84'),
('9d456aeb-53c6-49a4-91d7-c92eba7aa3ac','1f8ed22c-646c-4405-8477-3cfc46f95401',227,93,70,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-2'),
('9d47391d-d128-4b71-bb26-bb2abe378d20','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.629','41246036-1-14'),
('9d482e03-6642-4403-9c6a-b7c2d228ede5','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-2'),
('9d48ac66-8de0-4a0c-9830-3f5bf3724643','42b2ca3a-9313-4b97-901b-3859e34b21e1',161,94,13,0,'2024-10-02 09:27:13.599','2024-10-08 09:24:39.306','750845897-1-10'),
('9d498e4b-4a03-42cb-b603-3a3b0dfa7587','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.448','2025-07-01 09:00:53.543','248630618-1-7'),
('9d5002fb-4b1e-44d5-8e20-16ed0155099b','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-58'),
('9d520b39-b0a4-4ae2-ae40-36499f034833','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-3'),
('9d55df11-da26-4b48-a3de-3f11e9a5b206','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-41'),
('9d571826-3ebd-4f2f-b4c2-8b019fadc7a8','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-5'),
('9d574dd6-b0ae-41a5-ad68-a102c45b1746','c71fdc71-df3e-48af-9323-d534b0931ff1',67,20,45,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-14'),
('9d5c0cbc-38ae-400f-8bef-1b01334bbc51','82ac2d58-053d-41f5-a402-9275c56203f9',45,211,11,0,NULL,NULL,'428172853-4-13'),
('9d60336a-de3c-4762-b7a7-45ab67ee83a1','a7008be9-b82f-4d28-83a7-2484066afbc5',196,96,6,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-1-2'),
('9d62c49a-7955-4b9b-9cb8-01e1144af807','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-84'),
('9d6355fb-5be7-4bdb-8fa8-720c7bbe5026','3f466b16-fac7-4cf8-b004-d0829d6b5061',201,83,30,0,'2025-04-21 06:13:19.326','2025-05-02 17:10:36.933','43792999-1-4'),
('9d63a849-0113-43dc-ba79-86a3b4b3d31e','0c4e75d5-e342-41c3-949e-5ca8657ec836',111,38,200,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-1-6'),
('9d66754a-a9c5-4296-aea0-13d4fa82e815','ef0f1181-3c3f-4dc6-8245-bb89aec09c30',65,115,115,0,'2025-05-14 17:03:46.983','2025-05-24 17:55:04.433','371804669-1-4'),
('9d70f692-f13c-4915-bcf0-5c36ce0b09db','becd21f2-9082-48b0-ac47-6711ce47c626',1,1,1,0,'2025-07-08 11:31:02.291','2025-07-25 18:05:20.193','644298325-1-1'),
('9d73f30a-2480-4f70-8bf0-c8da82e8100f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:40.045','248135683-2-89'),
('9d74bf40-12df-4559-8025-5454a2b5e84c','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-17'),
('9d753686-d3f3-4048-a35d-c2a863794f8b','ed32e0e2-0518-41d3-99f8-2b923271439a',0,0,0,0,'2025-08-27 19:40:20.383','2025-09-03 19:38:01.269','598587609-1-1'),
('9d76cde3-6c39-4b22-9ebf-fb0a2792b38a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-98'),
('9d76ce01-10ff-4e6c-8761-88a590ec687d','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-7'),
('9d7bafcb-2593-442e-9afe-6997a8f76f36','f9185f83-ec03-46ab-a8d4-4d2449603dac',51,51,51,0,'2025-01-22 09:07:22.471','2025-01-29 13:30:49.205','428930069-2-1'),
('9d807834-f128-4de9-b7e3-c981aed115ca','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-4'),
('9d80ec30-8861-4c8a-9311-562c5191eb44','69545533-7407-43ed-aa87-ace1a5f77648',52,85,8,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-4'),
('9d813279-8539-4245-aec5-8ad35e6c8ccf','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',210,42,5,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-20'),
('9d8200c6-5c6e-45b8-b852-a83c0b192877','7fbc0cac-4c11-4144-b578-3223cd9dd90a',48,220,7,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-22'),
('9d85c984-3fa0-403a-8fe1-e3c535d948fd','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-71'),
('9d86f581-32d1-405e-92db-8608acfea859','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-28'),
('9d87c0e4-d538-4fa8-8a8f-917af864d290','9866a947-9974-4053-8415-4518842488fe',130,73,100,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-28'),
('9d8ce2c6-ca51-407a-b4dd-55f0681bd873','2e6a3452-8e6e-4932-a4a5-aac15a29336c',35,35,190,0,'2025-06-21 04:33:47.206','2025-06-30 08:56:30.724','695394738-1-1'),
('9d92e20e-13ab-481f-8034-7bedbd3231ed','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',223,72,13,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-11'),
('9d96f36f-106c-4e7f-8814-03cafdb37d2d','b44449c8-5efa-4085-bd2d-0a3594587af9',61,205,8,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-13'),
('9d977ab3-fdb8-4ad1-8989-2cf683c68a75','cc6f3b66-bc19-498d-9509-1b342de6fdc9',100,50,11,0,'2024-09-19 18:27:55.806','2024-09-24 16:00:34.897','52896910-1-1'),
('9d992b94-d1e1-4b4b-abd5-ef361f3cc20a','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-3'),
('9d9b4803-48cb-49fd-bb8c-35a71bcb5532','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-199'),
('9d9df5b2-4b2e-4966-8dcb-56c95ba32d76','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-10'),
('9da1b627-ee07-4f2f-93ae-a1f7494360b6','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',208,60,9,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-22'),
('9da3d7e7-054d-4c95-80dd-18b44f3b01be','8200af89-453e-434a-a4db-de08e8cfe818',95,85,180,0,'2025-06-27 17:12:14.763','2025-07-09 11:39:56.374','517365072-1-4'),
('9da47849-832d-4bf0-a448-dcbadf11f336','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-34'),
('9da6a851-f3ab-49ea-bccd-ede7be6e048c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.301','223444495-1-211'),
('9da6de9d-f3c5-416c-ae65-854f9a40d444','3535d433-eb38-4879-84b4-dbf8410809cd',6,42,214,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-31'),
('9da94750-f777-43ff-a2a6-9cb9cc981e79','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.212','2024-06-21 09:39:19.257','163401674-1-61'),
('9daaa85f-1969-4ee1-ba17-be80876c1433','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-7'),
('9dab0459-0b25-40bf-8f4b-885f7b331bf4','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.024','248653667-1-15'),
('9daf671f-05ee-4dc5-b2d1-6fe577a8f24f','55f6b49c-3b1c-4cdc-83c8-9d8baff8ce03',0,0,0,0,'2024-09-28 16:27:29.260','2024-10-08 07:57:43.399','745656343-1-2'),
('9db0c978-293b-4ac8-85ef-10ce7079e8ee','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-23'),
('9db8dddb-d1c9-41ed-934b-935bc92667eb','d51dfe2b-0b6e-41ff-9db1-89b8770b0e0e',43,43,45,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.476','221746261-3-3'),
('9dc20d34-258e-422b-a5e8-946cc52dc128','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-14'),
('9dc2b97d-b708-49b7-a772-48825361f3d1','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',51,51,77,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-9'),
('9dc4893b-baf5-4b20-b951-92e2174a4099','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-12'),
('9dc4c438-c8af-4e27-97aa-23ab863bc7b4','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-5'),
('9dc5a8b1-9418-49ec-b3dd-a29624bcee5e','08f19940-4aad-46bc-bf72-01f66d155c84',200,160,3,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-6'),
('9dc82577-a3b8-4724-884f-ef878455b5da','13c66a58-d73d-433d-bf73-d5203d5b07b8',0,0,0,0,'2025-02-27 16:45:31.340','2025-03-11 15:32:07.631','449866390-1-1'),
('9dcb0b24-90fc-4f3f-b86f-a47f50bec65c','bce777a7-72c4-47a3-8d2b-777b264ad8fb',0,0,0,0,'2024-12-18 09:31:28.343','2025-01-09 16:51:50.694','745422037-1-7'),
('9dcb5fde-9354-4747-9add-6ae6975b5b08','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-15'),
('9dcf6e42-6d53-4fd5-92f4-8866a490aff6','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-10'),
('9dd353fd-9567-47b9-8209-374f1c14b08f','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-14'),
('9dd53d5b-6287-493d-831e-b176798ea04f','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.148',NULL,'505724535-1-6'),
('9dd558f3-c6c4-4c52-aa90-f1882ddbdd9b','852cb596-91b3-432f-8aee-ec6a804f3a01',97,125,40,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-15'),
('9dd6c14f-ac38-464e-9981-1b8e689245d6','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-116'),
('9dd726ad-52e0-415c-a0f4-525748448074','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-1'),
('9dd75cc2-f22d-4b5c-8d50-d66055f1ac64','86b60aaa-bb99-46c0-a4af-dcec737058c0',70,100,105,0,'2025-03-06 10:32:08.547','2025-03-14 11:07:09.096','613374971-1-2'),
('9dd7acb5-a162-4304-ba64-d2218167dd93','7fbc0cac-4c11-4144-b578-3223cd9dd90a',110,30,210,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-12'),
('9dd9a992-6313-42c0-9e1f-0683cf7c5c5b','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:07.708','248284003-1-122'),
('9ddc03f3-fe99-401b-84a3-2619e32ce628','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',190,42,50,0,'2024-08-07 15:02:59.362','2024-08-15 10:31:04.498','976577497-1-4'),
('9ddd3935-5e7a-4746-8356-0b81c64a44b4','88a9c5d3-54c8-466d-99b5-bc55e66e9b6b',96,196,6,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-3-1'),
('9dded309-33ff-48f0-b7fe-98cbd5a6c5c5','692498cf-64f2-4260-8e57-e8b680a64cdd',98,207,29,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-1-2'),
('9ddf86a4-5963-4fb8-ab08-0d1b6c85508c','4e2fd6bf-5f94-4ac0-9445-fed3d566f08f',57,96,83,0,'2025-10-22 13:06:54.380',NULL,'613568438-1-1'),
('9de0b4b9-84d5-4ca5-a06f-dd050ca55f7b','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-7'),
('9de1aeed-839e-417a-b14c-7a673cf69276','6cee1429-9935-4eae-be32-dc630b6d70e8',200,90,22,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-25'),
('9de2f5df-63ce-418a-9718-d28dc2f96995','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-21'),
('9de31d84-0bc3-4a21-ad43-8c1494e34203','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-87'),
('9de3fba7-3da5-472e-926b-7a0a38435b7e','3f6d175f-15bf-42d9-bb3f-05e5f1f30d07',54,68,28,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-3-2'),
('9de402b8-0ec9-41c4-b63b-0033cdc0a0bc','105785a5-e450-4d29-8109-3b9bd15eec97',196,96,6,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.325','221164226-1-2'),
('9de5bdb6-7ae4-458a-84fd-c1e147040902','b4a6edb0-5f03-4460-a3ea-85083f1c61bd',0,0,0,0,NULL,NULL,'75078459-1-1'),
('9de82499-68b9-4a13-bf97-dbe0ec785976','77c075a1-c114-427c-b6fb-f1d092d89d6c',100,76,53,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.230','478928003-2-2'),
('9de86829-362c-4b91-b02a-996fd41947c7','b5d05803-9ab4-468c-ba3c-4a0e289f571c',105,100,50,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-4-2'),
('9de97fe8-2b31-434e-af42-d5193b112d3e','41185e62-43c9-496b-8cfd-12c1ef56bede',1,1,1,0,NULL,NULL,'501700728-1-1'),
('9dea6b2d-8fbc-4df7-a318-1f6f15fbd9cc','0bd42145-fdd8-4793-a5cd-a2e404d37142',127,48,15,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-25'),
('9ded193c-1fab-4ed4-9d04-4912822fb7f8','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-11'),
('9dee100a-c11e-4cc4-8876-9f5a2a8f7831','a3545233-7d60-4965-a14b-1b94e0e5edb9',104,102,65,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-3-3'),
('9df03044-728a-4534-8b92-ceb4bbe4d07a','e89e7d75-4967-4c63-9f73-981469e531af',220,50,40,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.435','319835776-1-30'),
('9df29ab3-8b9b-4b6b-8465-bca9327dbb6c','c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4',80,100,95,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-2-4'),
('9df334ef-c25e-4a08-aa12-305f475ac739','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-14'),
('9df6038c-1024-4be6-932e-13c25a5d0794','b5604942-4711-4185-9f16-590acfefb52b',205,77,28,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-6'),
('9df71d13-307c-4b67-8a4a-c7d9f7306045','03ad506f-f86b-4dbc-952f-52b01e2467fa',35,35,160,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-40'),
('9df73194-802d-40b3-b011-4d21faabdc79','2fb19f98-3e7f-4224-baf7-2836d72e91ba',109,69,73,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-3'),
('9df9086e-caaf-4895-9996-bd44ee661e75','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-11'),
('9df96dc2-b1af-444e-a601-7a7fe67a48f0','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-4-5'),
('9dfadb9c-455e-4a7f-a361-f2391586a9c1','7e8643f3-2224-44f8-8380-7da5eea93721',123,25,70,0,'2024-03-30 10:55:02.595','2024-04-03 08:28:04.945','501668492-1-4'),
('9dffa9c8-2d02-425a-9945-9304dec3679d','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',86,2,209,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.764','745873539-2-7'),
('9e01c3ee-edc1-4490-a3cc-d92f33808108','c7fce8c7-acfd-4c12-8db5-81618a4b211d',223,80,90,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-2'),
('9e021b3c-e6ce-43ce-92aa-d339c84784b3','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-118'),
('9e03ac72-6511-4fc1-a678-945e6f24525a','9e4a49fb-9de6-411a-80d8-1cbb68b072b7',56,82,100,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-1-2'),
('9e0789fd-d67d-40b2-9fd4-ef05b653836d','00972f30-0555-457b-93aa-8acffb86ef96',51,51,77,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.158','644711459-1-3'),
('9e0895e3-d8dd-47b0-a7c6-ad8812897126','1d2ec7e2-f735-46a1-96be-3994af90aaac',42,30,30,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-10'),
('9e0ad65c-7acd-42be-8264-570032848f4b','052ad905-3da0-483a-aae7-9d36b31da379',188,36,36,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-8'),
('9e0d5493-0d71-4e4b-a716-ed8ad78334d6','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-14'),
('9e11c94e-5b4f-49fc-9dd6-193f9d9c9044','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-16'),
('9e1221d9-e5cb-46cd-9bc4-dac30ce04226','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-85'),
('9e122256-890a-4966-a320-2bb06d643f3c','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.271','2024-09-12 10:54:58.870','223337181-1-155'),
('9e13085f-c435-48c8-a07c-2af1a47c3919','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-13'),
('9e1356db-5326-4ea1-bf9b-fc3ae6cd44ac','7fbc0cac-4c11-4144-b578-3223cd9dd90a',62,15,90,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-8'),
('9e1834ae-7518-4b51-8237-520eba7753a3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.301','223444495-1-210'),
('9e18b37f-7c24-4de9-b34f-a5908d10a59c','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-66'),
('9e197e7c-4981-478e-b909-f85784e92287','8626895a-fadc-48b2-8114-1f4670cf1280',0,0,0,0,'2024-03-23 08:48:19.964','2024-04-03 18:54:35.867','478227571-1-2'),
('9e1e907f-de31-4fd2-a972-eebeb1b3893c','d29f1072-25b7-40a0-807f-3d4e2938cf5c',112,56,82,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-3-2'),
('9e225689-b34b-43d0-8bdd-4b6ad6aa596a','163cdf6f-a5e9-47e6-9ea0-4ea02a32d244',235,96,70,0,'2025-02-09 09:51:36.271','2025-02-18 09:36:12.669','910586114-1-2'),
('9e2522bb-b58c-43b7-8103-56563483948b','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-19'),
('9e2ad83f-8d55-4268-beb2-b6cec6b2ac41','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-36'),
('9e2b9f50-49f9-4f93-9ee2-ae49a13b7217','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-176'),
('9e2bd763-2458-42b8-a4e8-08e92c425935','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-34'),
('9e2e24ab-3707-4021-af46-8f864547f316','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.039','221900850-1-2'),
('9e30a2c0-ac31-409b-8685-4cea1b20dacf','0a851431-d5c7-4333-895c-c0ce142450a7',120,242,7,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-2-4'),
('9e320314-600b-4c00-8325-68f37fc1ffb2','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-17'),
('9e33adfa-5744-4988-8bb3-0c095ce2ab1a','cd338320-b04d-4520-adba-f892a82d945a',235,70,96,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-2'),
('9e33fe20-ab2b-48cb-8347-3992cc746dfd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-194'),
('9e39047a-300d-429a-a63b-120285be2b29','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.335','2024-11-19 17:22:10.642','858854212-1-2'),
('9e3c029c-2f65-4e86-8872-5eb6e0a7a563','7f823e87-d09d-4cb4-ad0a-4393c51662c9',160,100,70,0,'2025-10-06 07:08:31.417','2025-10-13 06:39:34.718','644287826-1-1'),
('9e3c6309-e4f7-40e1-ac63-24547c70e2f5','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-32'),
('9e3ef0a0-10dd-4ee5-bd7f-9b034d2697d4','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',130,32,210,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-26'),
('9e4088b0-0836-43e9-b2cf-6eb39d8e1f17','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-38'),
('9e409eba-d5f8-4a99-a73f-b46c5a83161b','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-13'),
('9e41d484-6bef-4375-9e1e-b06f5723314f','197b43de-1f57-4e3a-b18a-a54d1c950856',50,56,6,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-1-2'),
('9e4328e7-c52d-4920-a42a-f9afb83e23ce','b78519ec-4b79-400f-a709-a1f09256d30d',173,5,14,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-21'),
('9e43556e-77de-4ee7-9b7e-1baf37e88aba','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-24'),
('9e47da7d-f6de-4d82-a36a-3241e8a9ad6e','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-9'),
('9e480017-9795-4b84-94b0-bc42f93e2eec','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-35'),
('9e490990-ee9b-48ba-b29c-60e0fe640521','2fe858c2-0dba-4eeb-ac43-17e48df137ca',25,25,15,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-1-4'),
('9e4cf493-1d1f-44f8-8ef8-82b53ba0f27a','3535d433-eb38-4879-84b4-dbf8410809cd',58,42,17,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-12'),
('9e52d020-b6fb-4308-b40e-63e47c19111f','b6bcdb5c-cba8-4b50-81aa-7aa8e9eb573e',75,95,175,0,'2025-08-14 08:21:39.050','2025-08-21 08:14:06.251','334206952-1-4'),
('9e55cc4e-75ec-4fda-b221-62db6406a946','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-13'),
('9e56f4b3-0b09-4bea-8d13-1925afaaa31f','bdc15b51-242d-450f-a47e-a75e07f475a4',115,19,122,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-9'),
('9e5982f1-5d56-488c-bfcc-5eaec704fd82','706d5781-e475-41b5-9b0f-7279cf02af9e',30,80,72,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-5-1'),
('9e5c69bd-dcb4-42be-94ee-ad2e02d9746b','d6b091c1-330d-473e-86ae-6ededb40d96e',0,0,0,0,'2024-12-23 11:59:58.153','2025-01-11 09:48:43.702','735258843-1-1'),
('9e60c2b3-1225-4ce9-bee9-c8e464f04f3f','e2de9cd4-e8e6-48b8-aa91-52920db0471a',242,97,65,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-5'),
('9e630381-fe90-46bb-af3f-0b54f8f281de','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-11'),
('9e647255-a77c-48ad-973e-54c8bc3841cd','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-4'),
('9e6603f0-a33e-4b82-8a42-c17d1206ec97','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-7'),
('9e66962a-53ab-4676-821b-4a3ad1cf51da','0263f7f0-6c1a-4beb-ab78-25d69142647c',158,3,199,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-17'),
('9e699b97-2d47-4714-818f-05a35f3d6b53','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-36'),
('9e6b4322-3cdc-4eb1-b387-9a566a4bb3c6','f0485a78-951c-4f89-bddf-b2003f0bf783',64,64,7,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-42'),
('9e6d94b6-2557-46c4-b543-6ad03af96645','6ae0233f-f2c2-44bf-9706-7274e4c923e9',31,31,31,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-1'),
('9e71ab33-41fd-4ee8-affe-da68a5f595f6','fb58f438-30e4-4e01-af6e-6378e27a11fe',60,47,20,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-15'),
('9e72a937-1401-423d-a713-3554389070ea','c0fe0399-dd85-4397-854c-745020ab9c38',80,60,85,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-4-2'),
('9e7480a8-80a9-40c2-be74-bd364b96df86','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.301','223444495-1-124'),
('9e76e3ef-8a7a-430c-a933-edcbc01e7733','edef2f29-fe9b-4fa0-8465-53614e2f2468',76,87,70,0,NULL,NULL,'478412191-3-9'),
('9e7a35f8-d03a-4efb-99b9-f4116089eef8','dbc13403-56ba-4ed1-99a1-ef2985435028',240,80,98,0,'2025-02-09 09:51:37.801','2025-02-18 09:36:07.880','319918133-2-1'),
('9e7d64c0-2910-406b-b651-d9f0c4e2b416','6098bfd6-9976-47f8-a799-df79295948c1',47,5,225,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-9'),
('9e7da687-4d7b-4938-8697-8d869f9628ae','0365be5a-cb94-4992-8e8d-cb784930b2e7',100,125,80,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-3'),
('9e7e9f56-dcdb-4dd4-9331-b75a09042985','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',90,100,8,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.984','61428079-1-26'),
('9e84fc04-2c3e-4480-bd1c-3c20344d721d','90531b95-eb66-4c07-9e68-b2c510b7b356',88,110,120,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-4'),
('9e8a8d06-1a0e-42c8-ad4d-d5b7d04ad421','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',33,13,100,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-23'),
('9e8ac5d8-e587-408b-a5c7-06541ee8ee40','0a4d7445-7625-47e2-9f91-e881dc6494ce',100,200,75,0,'2025-10-22 13:06:52.544',NULL,'786146097-2-2'),
('9e8ae078-2395-4966-bbe3-142c46b1fd71','c71fdc71-df3e-48af-9323-d534b0931ff1',8,13,74,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-15'),
('9e8b0d4d-5b9d-4bfd-a5a0-7ac35ebc45ef','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-26'),
('9e8ca166-78cc-48d5-aef5-cfcc4a6ed42a','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-16'),
('9e8ff081-42d1-4bc2-856b-27413fb52d80','0009aeec-e682-465c-b701-363a3ef377a6',26,8,30,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-57'),
('9e904497-d60d-4e7f-a122-6eb8efbce0ca','f54ed30a-dd95-4143-9b02-ef07b59c72dd',51,51,77,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-5-2'),
('9e917229-157f-47af-b809-ed12e9f5ba1c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-24'),
('9e94d790-7d3e-4210-8b20-57e63f34ae26','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-46'),
('9e98e72a-d217-483c-a18e-0c682bf2ecf2','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-13'),
('9e9ce564-ea7b-41e7-b1b9-25922e565e05','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.856','412252425-1-3'),
('9ea27192-cd0c-4cbb-b0ce-bb5b8451e782','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-16'),
('9ea2b862-91f1-4313-968e-3d7f056cb9fe','395fbbe9-753a-43cd-a397-22c019814296',76,123,6,0,NULL,NULL,'221893262-1-1'),
('9ea3d634-501d-4b0b-8b31-f2dd9b6ddcb9','159c73ed-083b-4d67-98ca-6adcfc554962',30,110,204,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-12'),
('9ea465d5-a1b0-4ab8-9a3f-39c7d4972a48','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.769','248915549-1-20'),
('9ea52e20-e021-4ec6-ac9a-3971a6ed2e5e','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-9'),
('9eaa007b-2ba1-4b71-97b3-d1e363d62921','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-9'),
('9eaa3aa9-c47b-4b24-9f8f-f1be9f4ee932','6ae0233f-f2c2-44bf-9706-7274e4c923e9',53,77,102,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.744','412149383-1-11'),
('9eab5ca1-992e-4726-94e6-53923c87cbe7','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-128'),
('9eb09629-df98-4917-865b-319d89ac48dd','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-4'),
('9eb099f0-e611-4c2d-bef3-93b0b9e545cd','cb5cec25-5b62-4dad-a765-ec7410ef47d3',0,0,0,0,'2024-07-20 16:33:26.239','2024-07-27 08:40:46.356','428879207-1-1'),
('9eb9dfa9-fd26-4355-be1c-c41dfaafb89d','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-20'),
('9eba64d2-16be-4bf2-bd56-9bb7e09e5274','8ae18186-b64f-4b09-b81f-8095d536895f',80,40,40,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-2'),
('9ebbba98-194c-4ea4-865b-e0a754222407','abd1d92d-bf39-4c91-8d61-ddc273b6427f',51,51,78,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.736','437917777-1-3'),
('9ebfec75-beaf-4d5a-9797-9da71062f3da','cc6f3b66-bc19-498d-9509-1b342de6fdc9',227,92,65,0,'2024-09-19 18:27:55.806','2024-09-24 16:00:34.897','52896910-1-4'),
('9ec03d1b-1ea4-410e-b2e2-c291199f3cac','2a723830-d2b5-42fb-95ad-678895eae7cd',50,240,4,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-8'),
('9ec5213e-e181-4c45-a5e3-b677b4888b77','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-19'),
('9ec56df6-e8fc-4484-ab5f-e9a1189dc324','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-69'),
('9ec704b1-969f-45a4-bc8f-de04e488874f','6098bfd6-9976-47f8-a799-df79295948c1',2,90,220,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-10'),
('9ec9373d-39ff-4878-815b-b37403c9c301','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-50'),
('9ecabf89-603b-4630-b0ee-70a21e1303d3','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',57,164,6,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-8'),
('9ecb8607-cf17-4ac3-af7f-2b79a354c2f0','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-4'),
('9ed3ee4e-9406-459d-ad60-f110bcbe0b43','03ad506f-f86b-4dbc-952f-52b01e2467fa',197,32,32,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-41'),
('9ed547a7-796c-4879-9889-29c1b795d861','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-8'),
('9ed59d8c-00ce-4df6-80c5-67662fdca9e7','45711d8e-de1e-49bc-b9f8-a709a70c7fc4',72,122,6,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-2-2'),
('9ed93dde-c406-407c-9e21-0170e34cbdfd','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:18.020','248135683-1-231'),
('9ed9a0ab-3795-481a-913d-084182a2e2ce','46d1512a-2bfb-476d-a224-9390f3e194f2',243,53,10,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-19'),
('9edca6dd-a975-436a-bdce-f22ce4150fa3','41e2f467-cdd3-4b4d-a446-e87ad786ff05',0,0,0,0,'2024-11-08 17:38:00.335','2024-11-19 17:22:10.642','858854212-1-8'),
('9eddc541-7abc-40ee-bd0e-4f80e62e2a2b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-151'),
('9edee3c3-7775-493f-b107-ab6c272fd5a6','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-2'),
('9ee33df8-f04c-41e2-8e38-099b8dd94e71','c930cb02-6682-41d1-b86b-f7fb4105a19f',66,89,200,0,NULL,NULL,'371245433-1-1'),
('9ee39993-103b-4b56-9e24-9ae582b62136','05af1df3-9a36-4be2-8bd1-773d59e1605a',16,28,17,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.058','655688103-1-20'),
('9ee5db36-d8d4-4942-abbd-f19787a27e6a','c71fdc71-df3e-48af-9323-d534b0931ff1',83,207,10,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-16'),
('9ee8a9e2-06a3-41f7-87a0-e3881f529721','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-5'),
('9eea2ba5-cf6c-408b-8985-4f927dd3a04b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-21'),
('9eee5858-2a8e-4f92-8137-20c66b5108f5','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-53'),
('9ef2c41b-dacb-41fe-a3a4-19e83d546e14','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-61'),
('9ef34c75-4d9c-4fa9-b113-6329e530c893','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-4'),
('9ef4991f-9ce8-4f16-ac46-9cc93dcc04f9','0a43887a-12ae-4e51-9586-f10e42c3bca6',85,212,38,0,NULL,NULL,'011399882-1-2'),
('9ef49c1c-a13f-4709-b2b1-5d1d9949717c','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-4'),
('9ef8ae0c-7fd0-47d6-be08-67814e371ccd','e80600aa-d0c4-4d74-ad08-b6ee527cccfe',23,60,90,0,'2025-10-09 08:39:59.394',NULL,'745759881-3-1'),
('9efadc6f-2d20-4010-9654-0b70c5eb68c5','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-19'),
('9efb2d1c-973c-48fc-ad71-b1145338d343','914c35b6-7134-4163-8911-cbacbed3fcb5',114,39,224,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-9-3'),
('9efca1c0-53bb-411d-9b6c-cd380663d344','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.514','412903480-1-2'),
('9efea2b2-421c-4dfd-b837-66778096eed6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-95'),
('9eff7f8e-a0ba-472b-9340-620304f880cb','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-22'),
('9f02bb73-7dd2-4adf-883d-9b3155f14736','e7da391d-1eb9-43de-ba5e-3274421bf28a',1,1,1,0,'2025-09-18 15:48:38.670','2025-10-02 06:11:48.354','657784193-1-1'),
('9f052afa-5bc4-43e1-811c-a8531d294e53','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-4'),
('9f0549f9-a920-45c0-9630-70e270a85bbd','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-77'),
('9f087c0b-7c07-43e9-af05-822476a4c703','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-4'),
('9f09142b-c35f-4d63-9d24-4483502df58c','ec52a31d-c17f-41c6-9e4b-ece376aa03b2',100,100,73,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-4-2'),
('9f0a6028-1eff-4a8e-81f3-22614cda9ed9','1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be',58,40,30,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-1-4'),
('9f0d4139-3f7f-4762-a78a-6dee753e600d','b8cb209c-3d60-466f-8346-01810d5816ec',6,43,211,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-5'),
('9f10090b-0149-4133-982e-3f0a96aba5a6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-112'),
('9f112ded-a6ae-4132-a2ec-c78962a98e41','5d03f819-f7e6-4cdd-aa5d-ca38ac9f6b4c',0,0,0,0,'2025-07-02 12:43:27.646','2025-07-22 10:19:34.420','501423957-1-2'),
('9f13ceff-3240-4f81-885c-2be8c3897dea','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',187,50,6,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-40'),
('9f1797ea-c503-41d0-bdd7-b431837edca4','565f6966-f194-4d7c-8b20-64502045078d',25,93,205,0,NULL,NULL,'478350685-2-12'),
('9f17e1a2-3f14-49f8-81fe-7aee63fa38b0','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-3'),
('9f199dba-7919-4a4b-b470-a770146f50d5','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-7'),
('9f1acabd-4d41-4a9c-b4e0-9a67b49a92a9','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',93,78,80,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-7'),
('9f1fb521-a2cb-4766-84a4-6622345635a8','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:10.296','248284003-1-152'),
('9f203112-0805-4511-ab15-4293b962f5b5','111ec340-48ae-456c-b501-40efe003e8c0',58,73,105,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-1-2'),
('9f25ea48-5a52-4beb-a76b-1e0327f8801e','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-13'),
('9f2a0453-3282-4074-a2d6-09dbce58e9df','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-39'),
('9f2c43e0-9e6a-496a-a9cb-c4af520267b1','c5e0d83f-acd4-4d0f-9e00-9f237578b979',76,46,46,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-2-2'),
('9f2e39fc-2278-43ef-a3b5-99eb973643f7','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-8'),
('9f2e9782-5e06-424e-a66e-47bd63709265','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-68'),
('9f2fa02a-0eb6-426f-92b8-41c17896bbf3','7defd633-f7ab-424d-8029-028d1b045752',230,26,60,0,NULL,NULL,'501119446-1-17'),
('9f3107a0-705c-4367-90cf-ec0d67505f24','9daab54f-5de6-4645-b176-395cd721a10f',30,83,200,0,'2025-10-08 17:43:50.390','2025-10-17 20:57:20.132','614901187-4-1'),
('9f31bcc9-0e8d-4980-9662-0a3de5a7d7d7','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-41'),
('9f31f9ff-b986-41be-b173-4c6a05165e5f','89083e34-7ffe-4b68-86f0-bb6ea143c832',20,184,113,0,'2025-10-08 17:43:20.138','2025-10-15 08:12:57.977','614666366-1-1'),
('9f32ffb9-7d36-4341-9b58-b1fbe430db87','cfb61950-fe5e-4848-865f-5a703096b7d6',0,0,0,0,'2024-08-31 13:26:42.695','2024-09-08 08:30:12.812','614788293-1-1'),
('9f37ca0f-9900-4b30-812c-2319ea8e3932','7f24de6c-6cf3-451a-af7e-90bc8c30aebe',51,51,77,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-2-2'),
('9f3ad49a-52a3-42fa-8521-a856dcef36e0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-75'),
('9f3bb5b4-248f-43b8-9b3d-70bf6b01ef29','e9a2dbd0-228e-4a5f-a419-efe3b306e5f7',51,51,77,0,NULL,NULL,'221817193-2-2'),
('9f3d2d95-47b6-4b8b-9216-96dcca38df0b','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-10'),
('9f4415dd-e606-4423-b9ac-70b79859e9d6','7a1d10c6-318c-4046-8b6a-010e311d53c3',87,87,7,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-1-2'),
('9f4497ba-274c-4d04-9cee-891478d0766d','c7fce8c7-acfd-4c12-8db5-81618a4b211d',10,40,206,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-4'),
('9f45eca2-e0cb-4be1-a592-545fdd9c80ec','aaf96c48-72ff-4932-adc1-18f1c88ade0e',0,0,0,0,'2025-03-24 16:01:45.087','2025-04-05 10:58:18.108','248284961-1-1'),
('9f47d5d2-a903-4d37-88c9-6dbb5a4ff342','c235570b-ba36-480e-b52e-0e61d9b2b427',215,94,75,0,'2025-10-08 17:43:38.512','2025-10-17 06:14:44.871','371365427-1-4'),
('9f4c2696-395c-4b50-867d-4f7d1d2001ec','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-19'),
('9f4c722b-352c-4e2d-a5b9-f2f283b6c8eb','9114ad70-d53e-4d1f-89c7-30585d0a43de',180,39,30,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-29'),
('9f4da977-bec0-4105-9247-1ca8796ab5c5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-182'),
('9f4f4ab7-d07a-4ab9-86d1-ce4398c932b4','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-8'),
('9f5162f4-598b-4974-be8c-757550aedaa0','916fd678-d465-4976-acbd-ecbf61315197',0,0,0,0,'2024-03-19 07:52:14.899','2024-03-30 07:26:56.125','449634859-1-4'),
('9f519bda-5126-4c4e-8c45-f226fb4fefa3','980127cc-cb0b-4694-b945-70457774323b',40,40,226,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-3-4'),
('9f533659-6e4e-4ff6-9dcf-43e8720cdcd4','702c1aff-1a98-44f0-9dce-efad71572432',208,37,37,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-2-21'),
('9f59fbc1-d391-4713-9eda-9c3d69aa2473','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-8'),
('9f5b07bf-b164-48fc-9e04-5eed9dfcf7b0','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-12'),
('9f5bdd1a-dc4e-4708-818c-15f3b778f978','50443669-b15e-4cc6-9bdf-b91285138cc0',129,162,13,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-6'),
('9f5c8999-1023-4edf-99f1-4534e45a5256','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-168'),
('9f5cbf23-dd6f-42cb-9eee-ef2209face82','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-62'),
('9f5eb18e-48ca-429c-be6f-dc53de057be5','86ee035e-15bb-41c0-a091-2eb029703094',100,65,70,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-1-2'),
('9f613253-1d35-46a7-a084-ca62aa6481a8','5a89fae8-525a-4de4-8188-2f4d7c892e74',55,27,85,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-17'),
('9f61725a-2d98-42c3-b144-b6b03b84ca97','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-69'),
('9f61ed82-d7bf-450f-8d37-402280bb9e9b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-15'),
('9f62cf8e-d853-45f8-a7c1-20dfb6fabea6','b3fb10c2-6a6c-41fc-a7eb-4920e6e670be',0,0,0,0,'2024-05-10 18:49:56.164','2024-06-04 14:25:40.001','478958320-1-1'),
('9f633360-c8d5-49a7-a8bf-4145b68b53b7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-72'),
('9f63365e-6847-4454-9bb9-dacaf30cf20f','8c914f01-f6d0-4909-9906-64f504e70316',100,206,69,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-1-4'),
('9f650a1f-8897-4eb1-9b39-e65210941d7b','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,300,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-12'),
('9f6700dc-5c64-4c63-8616-cdef66f5381e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-2'),
('9f6b3ee0-98ed-4c67-85f2-e3f16b24960e','0bbc5c7e-04d4-47a1-95a7-a4fb473803b3',42,67,71,0,'2025-10-09 08:39:52.750',NULL,'011940661-1-2'),
('9f757ce1-be23-46a7-a4f8-a26bd237aff0','8f27b03e-e6ee-4c3f-878c-5163d5a1ec81',200,10,20,0,NULL,NULL,'011894235-2-1'),
('9f7601b4-dd7d-4428-b8c6-2eed15851baf','609832c2-2dd2-4701-a14f-9db6c69653b0',51,51,78,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-2-3'),
('9f7de985-e4fa-43ab-ab63-4207616dc4e6','bc611bdb-d2fb-42fb-b735-3524b3d6a4fd',0,0,0,0,'2024-05-29 10:12:23.458','2024-06-11 14:04:39.030','412903351-1-2'),
('9f7e14d0-463a-4c17-9268-8e425078e3d1','0e92c59b-93d0-4308-91ce-3965bb186203',200,160,3,0,NULL,NULL,'428180919-1-12'),
('9f7ecd9b-96f9-4434-b671-8ff37ad034f9','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-1'),
('9f81df68-c610-4ad8-993e-c51c157ce270','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-16'),
('9f824157-41d5-42d8-87cf-ad59bf16a1a5','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-24'),
('9f82bcfd-b323-4a50-a178-2e6238d1df87','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-16'),
('9f83d599-eeea-442f-9755-a655371f61c8','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-12'),
('9f844929-df3f-4dc5-86d4-523dd9796760','9c69684d-b820-4794-97d0-0096a00b04b0',110,7,228,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-2-5'),
('9f896de1-279e-42c9-b9f4-7561b91447b8','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-25'),
('9f8fdd1c-d9b7-4f4f-980c-1f27f92c6bcd','55f6bdcb-8600-4864-bb7e-b38027af88e9',102,57,83,0,'2025-07-19 07:52:30.981','2025-07-26 09:24:06.361','221786435-2-2'),
('9f90ca7e-1bd3-428c-9fb5-6e7b629956fe','57dab073-4b3b-40f6-b274-8bed0e1e1e8e',0,0,0,0,NULL,NULL,'613137842-3-4'),
('9f92201f-9ac4-4863-b633-acca263126c9','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.870','223337181-1-89'),
('9f934266-940c-4e4c-8ae6-4a992220b981','f842eaaf-94f0-44f1-9cc7-68d39b982516',56,76,103,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-3-2'),
('9f935d8e-657f-4b16-95b9-5bae28e73596','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-2'),
('9f93ff6e-ef91-4b77-b944-b30ef37d50d1','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.576','16334418-1-4'),
('9f95eed5-8894-43c4-91cf-b308d757aecd','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-7'),
('9f961cb1-5153-4e70-9130-31cc7f16e817','ba21f0ec-8f24-4b9e-9a8e-22b2194606be',51,51,77,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.231','644547865-3-1'),
('9fa08e91-21f3-4093-b384-cf87669d0299','6ae0233f-f2c2-44bf-9706-7274e4c923e9',85,90,95,0,'2025-03-27 08:02:37.201','2025-04-09 12:54:30.745','412149383-1-15'),
('9fa16bfe-3b55-47cd-bf0d-755f6a559c93','ec368b6d-2af5-4b61-bc86-98e5f6ec4ed8',105,80,101,0,'2025-08-14 10:05:25.550','2025-08-27 19:34:48.194','437700144-1-1'),
('9fa1b460-991a-41c7-b96c-7b3dfeeaeef1','c98f6188-56c5-4870-be97-be71cf95f62e',102,10,14,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-38'),
('9fa334be-7f6d-42a1-8e57-52891c2f082d','ee5b3100-b151-4127-ab59-479d31aad576',0,0,0,0,'2024-11-15 17:06:22.252','2024-12-01 12:28:05.546','745334668-1-2'),
('9fa63772-5380-44a5-bb7a-6a0e83a61ac0','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-35'),
('9fa63938-c633-434d-b963-f59db32ef118','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-89'),
('9fa7444a-aaa7-434a-86ed-9630453dc2d2','7657b93a-6861-440c-ac4e-1ea2919764f2',94,157,8,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-3'),
('9fa9288c-09b4-4672-9149-3cdb7312bf12','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-161'),
('9fa9c9de-1f14-44a5-ab81-6e069dd39a5f','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-9'),
('9fa9edc8-16d8-4246-9a1a-70b91454a3d1','0dc117f7-5e70-4621-87f8-335baf3c4f19',8,187,48,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-3'),
('9fab14cc-7b85-4047-984a-f37bc44f50c2','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',85,60,30,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-10'),
('9fac602d-b78b-4612-aacc-fb24fa9f8551','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-7'),
('9fad7d85-3c3d-4fe3-ad05-338bbe29cef2','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-4'),
('9faeced5-c597-460a-b266-96a212739381','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-86'),
('9fb10929-39d2-43b3-ac2c-6cc17885beef','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.922','2025-09-25 06:55:47.160','223254418-1-8'),
('9fb1c111-a5aa-453a-9cc0-c08876c3491b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-67'),
('9fb319e8-56a4-4465-983c-fcf46c6a8cc0','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',209,6,55,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-8'),
('9fb6c9b4-a813-44b3-8bf2-193486d3c6ac','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.577','735785649-1-6'),
('9fbb8094-a15c-4a71-a921-dc8bfc5e6d26','42b2ca3a-9313-4b97-901b-3859e34b21e1',43,93,222,0,'2024-10-02 09:27:13.600','2024-10-08 09:24:39.306','750845897-1-11'),
('9fbcd579-0929-49b9-8c06-f3cf415ff1a5','3842edfb-94f9-4f7c-b110-2ea10ce622e7',70,100,80,0,'2025-09-02 14:48:28.592','2025-09-10 07:23:35.121','644758410-1-1'),
('9fc4490c-1c05-4180-98bb-8faafcbcf95e','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.212','412574307-1-6'),
('9fc63a47-6a21-491a-8208-51b70105804c','e3de85d3-eec0-4038-99df-48935e9c3c8e',65,55,52,0,'2024-10-11 16:09:22.260','2024-10-22 13:51:40.148','976898541-1-5'),
('9fc8ff13-518b-466b-aa62-0cf5c2ce17ce','211d8f56-4634-48c5-a67b-22e8e78dd20e',106,109,52,0,'2025-01-26 10:54:48.855','2025-02-06 09:25:02.607','976423277-1-1'),
('9fcb0879-aed9-482a-af29-ad17388a5a6b','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.921','2025-08-21 06:44:14.714','41298450-1-37'),
('9fcbd0ee-69b4-49c8-947a-87c66f01ef5e','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-2'),
('9fccefc4-2243-4a25-a872-2a52c023df1e','68cbf425-c8ce-4610-81f5-0a6734464045',180,200,27,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.768','478507488-3-1'),
('9fce9d1a-ef16-4c06-9310-45473334b135','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-4'),
('9fd35c0e-1f5b-48f1-8028-afcae1fc9dbd','2c84ba11-87d3-41f7-bcc4-d0fa2cf2eeec',61,63,233,0,'2025-03-24 16:01:53.864','2025-04-04 09:29:40.653','982464994-1-1'),
('9fd37b39-9a4d-4928-aa3e-bc4d7add2b1b','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-86'),
('9fd4e897-f6cb-4888-9c54-fbdcabeb1841','b94c806b-5763-488c-87b2-52f7eaf89c15',53,45,30,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-2-3'),
('9fd7e564-3120-44ce-95ab-79ef1b1d0600','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:10.816','248284003-1-21'),
('9fd84f34-a06d-4dd5-9d69-4743863a6798','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-22'),
('9fdb3e53-635c-41e4-b085-4491513cceb2','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-13'),
('9fe57cc3-51a2-413e-9bd6-5117a34fe49a','4a61ce4d-fdd5-4745-a2db-47455ed6b156',97,120,80,0,'2025-09-26 12:39:37.123','2025-10-10 21:29:51.184','437649696-2-4'),
('9fe61d9d-678a-449a-bd0c-77d9dc7f9b48','47a05ef5-3932-411a-a9c2-2cd1bd57b99d',51,51,76,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-1-3'),
('9fecc33a-e0b7-49d5-ae4c-e07780c04b7d','158455d3-2130-4d98-9534-cb36e6c15df9',57,59,41,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-6'),
('9fed1d05-381e-44fa-9ddc-ae4d5437e38f','0a11d915-2e8f-42c2-b468-0ee6b5857269',75,57,102,0,NULL,NULL,'221919629-1-1'),
('9ffc5604-32b6-4654-83e1-e3f29be707ef','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',129,56,10,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-5'),
('9ffc5fd2-eb6e-4156-b5bb-a84cd7a334c2','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.585','081411095-1-3'),
('9ffd7890-0bb1-43bf-a32d-0518007b07b5','2881c493-0a0a-403e-bf7b-36c55e85e85c',103,108,7,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-4'),
('9ffe4295-6309-4fca-8e08-76596ec817c2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:18.660','248135683-1-113'),
('9ffe6046-5db5-4779-877e-387bd9ee4579','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-12'),
('a000f203-1b1c-494a-8809-7d2ddea1c020','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-193'),
('a0088c54-3c24-4bd4-b638-646d38b25b2b','db7058ef-de6e-444b-b25a-dfa474ba7bcf',80,80,85,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-9'),
('a0097e49-aa73-4fd3-a74b-7b29bc46dfd1','8ebfb5df-a3ab-40d3-a817-7f11ab1bf9d4',0,0,0,0,'2025-05-14 17:03:57.703','2025-05-21 15:30:20.198','910593915-1-1'),
('a00ba867-7476-4889-a253-af7bdf988db7','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',75,70,55,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-11'),
('a00d264e-d3cf-4c26-8f50-88d8cef8b692','6b455790-a8b4-4d0a-a014-f3587ba053d1',100,202,27,0,'2025-06-21 04:33:42.544','2025-07-02 06:17:15.323','69529713-2-4'),
('a00e2a3c-3164-49ab-acdb-0b8e6e8883c5','9114ad70-d53e-4d1f-89c7-30585d0a43de',70,50,45,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-30'),
('a011b17a-af03-4c2a-895c-59fb532f3731','45749935-27bb-4063-9e4a-59a9d1cdc880',62,57,84,0,'2025-05-16 16:33:15.349','2025-05-25 19:11:38.702','221686815-1-2'),
('a011f25d-7759-4659-b229-664687232a61','0c36ae1b-e1eb-476a-8196-505500cdac6e',57,82,104,0,'2025-03-24 16:01:49.444','2025-04-05 10:57:59.260','613508377-1-1'),
('a0143e49-2395-4a4c-975d-d5fcd0e6a2ae','702c1aff-1a98-44f0-9dce-efad71572432',62,12,260,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.137','745233031-2-2'),
('a0171976-8126-4ffa-92cd-011189135b09','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-18'),
('a01b1048-776d-4b9b-b6c8-cff80a2a4769','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-3'),
('a01c7eeb-6f44-41de-8485-253e9414dd8b','43ec6ce8-9ec2-4648-8e6a-93c885be50d4',33,20,28,0,NULL,NULL,'478345195-1-1'),
('a01ea163-6382-43e2-82bc-668f595f416a','b67fa3d3-0b05-469c-a42b-d477847d9d21',60,70,92,0,'2025-09-12 14:16:54.076','2025-09-24 14:32:37.478','531893295-1-2'),
('a0266192-6aa5-4680-a6ff-0461cac6665c','5c0848ce-c79c-43de-adfc-f4532526d6bb',202,45,25,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-2-2'),
('a02815d3-4bdf-4932-b955-a44799516e0c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-196'),
('a02826d9-f751-4eb3-b78b-fcb7f4fe0bb4','661b31b6-5864-4d50-94ae-a24ef9908dbb',95,80,70,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-3'),
('a02996df-1aaa-4011-a212-f2ab43872be6','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-26'),
('a02b596d-23d4-4510-a87a-18232899c63c','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-5'),
('a02fe7b7-3c47-456a-80de-1d264bc640fc','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-8'),
('a030160c-b8c2-43a3-9380-73a8038af7d9','90f573db-bf35-4042-9450-88ca0e789403',96,100,70,0,'2025-10-22 13:07:00.774',NULL,'515829047-2-4'),
('a032bb07-4cc5-442f-9ddd-acb2c945b36b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-98'),
('a0339385-3a19-4f50-a7fb-d26023215863','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',135,43,9,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-117'),
('a037f647-32dd-4b15-8983-fc7d68f45ecd','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-47'),
('a03939e5-ff4c-4082-9abb-f78f6f1c0f52','5ab2416a-7bef-46c2-b80c-b65bde62a234',43,215,10,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-2-10'),
('a0395687-1f36-43ec-a6bf-59a460863366','d9a1e971-aa20-40ed-a8c1-d1b718ae07dc',65,63,87,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.036','505850944-2-2'),
('a03a356a-ce0e-4225-8852-e941764c85ef','a04842eb-3d64-4437-879d-2eebcd3724f3',55,97,107,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-1-2'),
('a03d068d-d02d-4218-8f04-cf36e632cfce','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-4'),
('a03e640e-0410-44d3-9c99-b0676b166059','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',121,162,10,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-5'),
('a03ff3a7-3498-420a-8ba4-bd8a557a5e22','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-5'),
('a0427358-ff78-4597-9c09-241aedc8ffbe','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-1-4'),
('a043d24b-1fdf-4364-9c62-27f9bf01aefa','105785a5-e450-4d29-8109-3b9bd15eec97',51,51,76,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.325','221164226-1-3'),
('a044b422-6d03-4586-b31e-92af7eb33b0d','3da17157-28be-4bae-8dcc-745d0e93e591',109,130,6,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-4'),
('a044c9d2-1331-46ac-b269-bf9b520df497','46967417-5579-4330-96d2-b8546922819a',225,94,74,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-5'),
('a045d497-88c2-4911-a645-a1ae1d8bab1a','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-7'),
('a0477ae3-6f24-4a9d-bf68-184d79cdf7ff','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-4'),
('a04ac3a6-c6e5-4f00-8668-bc4c56c50a36','4d14c601-a3ac-47d6-83c9-24f76b7cd030',0,0,0,0,'2024-03-16 14:33:56.774','2024-03-29 17:58:02.407','478125578-1-2'),
('a04b2bdb-9195-43ad-96d1-58bf99e5f887','5f0b2b38-f06d-439a-9e18-ba111e0cd0ed',30,20,10,0,'2025-10-20 07:18:18.094',NULL,'6442594-1-1'),
('a04ca58a-8037-4f47-9c6c-f189dc13cb1c','afdf27e1-0689-4491-868f-ab5e614758ec',115,73,167,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-4'),
('a04f300b-71f1-480b-89d4-d97acb39e71c','22399f1c-a89f-4887-a03f-c112be6c99b0',96,199,7,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-1'),
('a0500a60-9a23-4f7c-b5fa-e4e2f0ab490c','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-42'),
('a0519214-2c5c-491c-9d14-dc7af05d18fd','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-18'),
('a05451bf-4516-4dd0-97d9-7cadeba56ec7','87a6eed1-72e9-47a2-abf1-2f9ad0b45962',0,0,0,0,'2024-12-23 12:00:24.883','2025-01-09 13:53:30.063','74513098-1-2'),
('a057ed62-ed32-4733-ad3f-e9a02ded2123','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.069','248533509-1-32'),
('a058fbcb-746a-4abd-8e54-0e39cdfa7b8f','7d5afc4d-54d4-4d61-8ae8-ece35555da95',0,0,0,0,'2024-11-02 10:13:27.314','2024-11-12 17:06:08.204','745881843-1-4'),
('a0595388-3036-4416-8f53-cb92d4a3a381','7dcc2170-0fdb-4643-987a-624cc3fb4320',51,51,77,0,'2025-10-25 08:59:26.343',NULL,'221651438-2-2'),
('a05b8074-fa60-4e76-9331-1559c564a839','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-25'),
('a05c2576-9c3c-45ab-9c98-e2b761a9fb8d','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',85,85,6,0,NULL,NULL,'47816855-2-21'),
('a05caa51-c3e0-40b1-ae05-b815b840b146','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-61'),
('a060d8d2-00f1-46f7-bdd1-468e765005de','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-27'),
('a061aecf-8162-4168-9733-c257bb3dd20e','3c6c148b-48b9-42f5-a540-77250f81fc68',35,30,21,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-1-3'),
('a06476c4-b769-41d1-9376-1b618ae27ff7','d4f91387-af40-4672-a65c-7ea6e96f76b2',62,8,148,0,NULL,NULL,'478350685-7-8'),
('a065e0bf-aea2-4cd1-9cdd-268852dd4f8f','cf923c2e-5afb-480c-b737-8b48ace679b6',44,43,75,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.773','371628660-2-4'),
('a06c0426-3e75-4034-8224-dee6b51ad553','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',235,100,75,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-7'),
('a06c5040-7ddb-4e4b-bfe6-30d3576f2eb4','635711a9-ff02-49d9-9082-6c29292a043a',57,52,37,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-2-6'),
('a0710951-c543-4453-85eb-f17366e6e813','b3c3deda-6c3b-46c3-9621-7f4713fc16e3',0,0,0,0,'2024-09-10 10:47:10.172','2024-09-16 21:13:58.766','97623604-1-1'),
('a0711532-a484-40ca-9cdb-b4c0bf5a3510','845cd508-3836-4f7f-899b-bf28d0f90884',16,7,67,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-6'),
('a072ac3b-8d5b-45fa-99ea-0f96a30b58e9','57c78c42-17b9-4ffd-b16c-f80f383635aa',96,191,70,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-2-2'),
('a075d83f-9545-4013-affe-053b074b84d7','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-105'),
('a077a1a4-8876-4e9b-8841-5a121dadc9ac','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-191'),
('a077f969-0776-4e79-9d5e-a72891a70d32','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-3'),
('a079749b-62af-4e6c-998d-f51dab21e7ed','a455ba66-b417-4781-a6f2-6fce1b8bab23',15,66,7,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-15'),
('a07a4d56-ce65-4e5e-9718-8e95249e3028','d39ed2f8-02e2-4066-8e4c-569b4799cf85',83,83,7,0,NULL,NULL,'695570555-3-2'),
('a07cc22e-9a08-4df1-a1f5-9fd5e687e831','c7fce8c7-acfd-4c12-8db5-81618a4b211d',41,21,50,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-20'),
('a07f034f-bc74-4860-9afb-40eb04baf18b','2f7618fe-770e-47b7-b995-adcc1e476b1a',44,44,48,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-1-1'),
('a07f2441-5891-4ba7-b67f-c4a05b6a562b','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-28'),
('a0828b94-9f3f-4c79-a14f-459ccc72b9ec','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-126'),
('a084e57a-22f4-4072-b8c4-43454a3d2e5c','86839fae-db78-468b-ab03-dbec339ccf7a',45,45,55,0,'2025-10-25 08:58:58.836',NULL,'74521183-1-1'),
('a085e460-091f-4cb3-bf2a-f2fe6bcc05f5','7d07052e-d89f-4ebc-be55-2d8ac162c8cd',96,97,78,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-1-3'),
('a08c6dd7-b688-45e1-8b79-2571a5817f59','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-111'),
('a08ef035-9be6-4db0-9e77-19f37b6affa4','5fc3bc3a-6305-469a-be4c-a995c1f220f8',248,66,95,0,'2025-02-15 13:31:39.168','2025-02-28 12:03:31.414','98232043-1-1'),
('a08f1835-4e12-4453-860e-27dd2abf07de','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-26'),
('a08f68e3-85f0-43ff-8ead-ad9b3f6e194b','e6b643b2-ddca-48ec-b553-690e29e71879',170,95,16,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-10'),
('a092bada-db8a-45b1-bcd0-193f540b1dd1','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-10'),
('a0930f1f-b9e8-4600-b03c-1b9f8683c72f','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',71,46,42,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-27'),
('a095153d-ce74-4225-a6f9-ada152777a72','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',97,80,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-3'),
('a0979aec-06b7-4bd0-a0dc-aee9c86631b5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.395','41245861-1-24'),
('a09819ba-f8a3-48a2-b76c-ad80559a9783','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-63'),
('a09a04d6-9ed1-4d58-acc7-c1d94bbe885f','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-4'),
('a09b3ba1-1967-4149-b08f-b94c65eb62de','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-2'),
('a0a0cc02-afe3-444a-a109-d06e99b8a606','dc390da6-4128-4077-b3a7-07f6a89a5beb',50,40,40,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-10'),
('a0a69344-f6d3-40eb-92cb-5ef6d3e222d4','7fce64f1-d9cf-4209-9183-021aff74eac4',94,15,164,0,'2025-05-09 18:44:14.646','2025-05-20 06:23:59.224','371429381-2-2'),
('a0a697f5-3d44-41bf-9ebc-3bfad3e636aa','46d1512a-2bfb-476d-a224-9390f3e194f2',204,34,7,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-20'),
('a0a721ae-1fdb-4743-a96b-9552dcc4cf1d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-39'),
('a0a88b83-7660-4468-a480-8567a492539d','83fa7429-792d-42a8-9ee5-5d78e3654c0f',130,157,20,0,'2025-08-22 20:28:37.272','2025-09-03 06:12:05.456','745734415-1-1'),
('a0a9e213-ba2f-4223-bab6-01f7dabab15d','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-37'),
('a0ab3a48-756b-45ee-ba27-cd7bf4671116','325d219b-c8fd-4d28-8c93-ebdf2ac1a0b3',1,1,1,0,NULL,NULL,'47876680-2-2'),
('a0abd7fc-550e-43f4-adb8-fe9be04e9c5b','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-27'),
('a0ac35e0-e877-4f68-9411-8c6da476cfc5','adb2b048-17a7-438c-9f89-ff322dbc8eec',0,0,0,0,'2025-03-27 08:03:08.535','2025-04-05 22:11:18.672','91028874-1-1'),
('a0acae3f-613a-4b64-92b5-2333d90c8566','bdc15b51-242d-450f-a47e-a75e07f475a4',200,160,26,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-10'),
('a0b06f5f-9745-4e21-a1bd-c77dbff85655','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-186'),
('a0b1ee64-5d1b-4563-9d4c-67580643fd15','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-89'),
('a0b24dc3-a6cd-4531-8233-f1801b1457a2','845879e8-205b-444b-9d29-1e0a6fa08784',19,54,33,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-4-5'),
('a0b368c8-fa41-4051-b116-efe578b9ae03','56ccf024-8de0-4c44-ad1e-db1438dbb90e',52,75,100,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-1-1'),
('a0b6c328-cb9f-484f-b4d2-46c7a2ff6ff9','2a529661-568c-4dd3-8b4a-cd09bf85bae9',51,51,77,0,'2025-10-25 08:59:15.286',NULL,'505414907-1-1'),
('a0b892be-ad53-406d-80d3-354f5778d998','c891230b-a98b-467c-9f5a-6b1fd89f1dde',60,92,230,0,'2025-06-14 12:48:25.371','2025-06-23 09:30:00.019','982578025-1-5'),
('a0b8baf7-0b85-44ca-af74-38b86a7d4865','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-5'),
('a0bb787c-4952-4419-982e-2a0dd415316c','61a97467-1295-4761-858d-a807036a28f9',0,0,0,0,NULL,NULL,'745141319-2-2'),
('a0bd4ba0-5666-4ffe-a057-81cf9175a5d1','ec1dd010-46a6-4bf1-b8da-05f4c672e2af',65,80,50,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-5-4'),
('a0bde35f-895b-4a66-83f1-26a926b72d3a','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-5'),
('a0bef1ec-204d-4cf5-8025-2b5eb5879319','138edf36-d166-4335-8560-d9873886e31c',90,210,2,0,NULL,NULL,'745189997-1-18'),
('a0bf2cd9-b265-4b53-86fa-7a96679a1d04','f65bc971-0655-4e60-a4f2-19d36f14946d',100,85,240,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-2-3'),
('a0c122fb-b9b4-43ba-bb1e-832da0642358','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-17'),
('a0c3214e-b08d-4e2c-a857-b04a82f11a68','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',45,12,185,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-54'),
('a0c922c2-4742-4340-b56c-84ad0f366a80','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-80'),
('a0cbab40-d3b9-4d82-b484-f1f2dee717a9','2c694b03-719e-4436-94c7-b64621e4940a',265,118,6,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-1-3'),
('a0ce71d1-e2f6-4be7-8216-acfb241b09b2','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-20'),
('a0cf3201-dfe9-4fce-b76d-c49b58871ac9','c98f6188-56c5-4870-be97-be71cf95f62e',94,62.5,66.5,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-35'),
('a0d0de8e-6464-4810-9b04-c55a4be68350','27521c3b-da87-4890-b3ba-9b928cf6d336',76,56,102,0,NULL,NULL,'598967733-3-1'),
('a0d1c07b-e5be-4b49-ab3d-68d939dc3194','91fb1a96-2420-46ea-af10-b13095d4de25',0,0,0,0,'2024-10-11 16:08:59.506','2024-10-24 19:13:00.054','501339138-1-3'),
('a0d1c8c0-de25-4258-bbea-c66bf17802d7','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',59,30,44,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-12'),
('a0d317ef-4d4a-4a31-a240-bcb725960bdb','d4b48666-94f9-40d1-8fe1-059d7aa569f6',35,59,59,0,'2025-02-09 09:51:56.373','2025-02-15 10:17:42.131','633870078-1-5'),
('a0d349b2-bc98-4181-a011-2f43cd91e779','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-27'),
('a0da0455-75ec-4741-bb00-9a496ff15cae','b8e84144-0db8-4892-9f43-56f021cdae8f',15,60,90,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-5-2'),
('a0da51b7-52b6-4185-90e1-615b951a76f6','ec368b6d-2af5-4b61-bc86-98e5f6ec4ed8',160,100,85,0,'2025-08-14 10:05:25.550','2025-08-27 19:34:48.194','437700144-1-4'),
('a0dbc029-4d73-4e5a-acbd-88d48c9c25fb','193ecb2d-124e-4d60-bf94-e2e26992e689',90,120,65,0,'2025-09-12 17:17:03.245','2025-09-23 14:04:12.228','614553524-1-2'),
('a0e31707-72cc-4d49-a1f7-5b6181edef5f','edbe04eb-c7b4-48d9-a408-e4287108a690',0,0,0,0,'2025-03-08 13:46:17.759','2025-03-17 14:54:13.276','745983500-1-2'),
('a0e4d048-3011-4e49-94a5-55abfdc00f66','b4b0a716-b412-464e-9731-24f8bde6af44',100,18,13,0,'2024-12-01 06:48:29.054','2024-12-07 13:11:51.072','982835475-1-3'),
('a0e59c77-67d3-4f4b-b2a1-e980f72564c3','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',68,90,4,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-21'),
('a0e76590-6b55-4853-b04f-127325950e28','1afbd008-607f-4bd5-922a-2703eef2c0c3',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-2-1'),
('a0e94899-6ef7-4e2f-b63d-d2a59be36a65','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-9'),
('a0eb0339-7430-4719-820c-f92c83ad6d87','151b19d9-92ed-4dd5-aef9-d976e3d09152',76,61,76,0,NULL,NULL,'745436157-1-4'),
('a0eec55b-9c02-4371-b5f5-391463b9afd4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-251'),
('a0ef36c3-c7f5-4366-9b0e-e0632109adfa','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-33'),
('a0ef4250-4464-483a-a1d4-81514b3ec4ab','d9c96ce5-7311-4159-8c51-6a1a744d0c49',100,34,27,0,'2024-11-25 08:28:48.881','2024-12-05 16:17:13.323','501760253-1-3'),
('a0f0804c-2467-4bf1-af1e-eda872c2e434','f68f848d-9773-4521-8431-b7efe576a9ea',48,50,25,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-7'),
('a0f0c647-ba10-4952-8b45-b809a74181a7','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-40'),
('a0f11b4a-93aa-4141-8d0a-e360805b5401','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-173'),
('a0f35386-493b-4d8f-9ae4-b32b559aa69a','8d77ac35-40ae-4d32-8c64-07f636272862',76,100,53,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-1-1'),
('a0f65424-0bc7-4e08-aa4a-6f3d9fd23896','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',50,20,37,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-22'),
('a0fc51a8-fec0-4a6b-bb54-4a6053626efa','f8da3047-bd3e-4abb-838b-cb388b449675',75,75,90,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-3'),
('a1029a19-207a-49ac-b990-a3a30c716c3c','a4982347-c05a-4357-a3f6-ce95c38e366f',0,0,0,0,NULL,NULL,'817550178-1-2'),
('a104fe35-9108-42a8-88d5-23eb7166a503','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-46'),
('a1067ce0-1a7a-46d9-919e-5f7ed4e83ad0','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-27'),
('a106a481-e7be-4490-84a8-3354fe880930','7f827719-d0a9-4910-9aef-532cd3731df7',5,56,224,0,NULL,NULL,'745995046-2-13'),
('a1080b8a-0d1c-488f-9a0f-478e3ad35d43','1a0ccb48-0abc-46b0-b34e-fac7901a5459',0,0,0,0,'2024-05-29 10:12:14.769','2024-06-10 13:50:44.710','449557088-1-4'),
('a10a1de4-69c0-4a00-829e-1421a297df8e','d1670072-4bb7-4501-b8b6-00a607e502a2',40,23,15,0,'2025-10-22 13:07:10.126',NULL,'644312365-3-1'),
('a10d74d3-f993-4542-ac98-29d23f3c56b6','7ed8f2b5-2d3c-4083-a93d-cddc92625cf3',97,80,102,0,'2024-09-28 16:26:51.725','2024-10-11 11:28:25.410','449823745-1-3'),
('a10e33de-32fa-465c-83a3-ae882a455819','58db4ec8-cb6f-4832-bcbd-1cd3594b201c',50,36,54,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-1-2'),
('a116baaa-7dc6-48f6-a8c7-15a87d094f3a','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-32'),
('a117d839-f8a8-4924-a121-213384fbf1a9','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',97,56,56,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-6'),
('a1186ef1-33d8-4cf6-b67f-84b49f33f028','e89e7d75-4967-4c63-9f73-981469e531af',73,82,48,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-31'),
('a11b03f5-50d3-41a2-9c38-0ea2794c68aa','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-46'),
('a11b9354-fc04-4485-8a4e-05b656ee25aa','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.288','2024-08-07 08:41:42.093','248211803-1-87'),
('a11b9d51-2621-40e4-a251-3bcc45fd9ba3','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',60,42,16,0,NULL,NULL,'47816855-2-3'),
('a11c2715-de3d-457e-948b-72144f8159db','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-7'),
('a1219384-13ed-4403-b3a6-c08c8f7d3b5a','9437e5bc-0bc0-4924-adb6-d303a80c1c2a',97,88,70,0,'2025-09-06 07:20:46.209','2025-09-12 06:52:49.110','598130952-1-3'),
('a124d26b-ccde-43d7-843f-4de4325382ea','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-100'),
('a12637d9-13d7-456d-a9ab-350b5530b593','43ff4e79-db72-41e0-ba63-8999dc250518',166,96,5,0,'2025-04-15 16:01:30.380','2025-04-26 17:56:11.033','613420026-1-3'),
('a128190f-9406-4fae-9389-e725a6f76fca','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-2'),
('a1291bd6-cbe1-4f61-81ff-7ff49d260887','c512880f-476f-401f-801a-a1fa72ec0ad0',90,26,190,0,NULL,NULL,'478892203-4-2'),
('a12996bf-4d7e-432a-b3b5-63c2cf18d9f0','dd1cd3de-f760-4608-b546-c1d5ff28b9df',123,123,10,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-2-5'),
('a1299dcd-5211-43e3-bf70-9afa94b039d9','c1d25f90-d493-406d-a430-9b65b4f44c5e',56,204,4,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-10'),
('a129a980-c264-47f9-bc13-2f23f14da4db','cabd1847-46c3-4b5b-b6b7-f5e81a0e8756',59,230,110,0,'2025-08-07 16:52:40.666','2025-08-21 08:12:35.793','613601743-2-1'),
('a12b0c99-5291-403f-9e07-5b5fcf8c4527','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-22'),
('a12b2f73-9711-427c-a9ab-44990c877c10','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-8'),
('a12fb904-7725-4c89-9e65-8916186d3ba6','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-1'),
('a130cee4-bc16-4ffe-af2d-a5b7b6b98b4b','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',70,9,219,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-18'),
('a1378630-0f90-49a0-9bba-de69f794b7e6','42dacb31-b711-4374-9f4e-97576b6e7abb',93,67,240,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-1-1'),
('a13a59f6-1b5a-4f1b-b857-b00d3f42023a','894ffd66-b452-4c98-9e0d-be9365aad518',43,43,75,0,'2025-09-02 14:48:34.082','2025-09-10 07:24:12.131','371180149-2-3'),
('a13b4153-02a5-43b3-9b50-798ac874c477','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',52,14,86,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-6'),
('a13e38da-4fd2-4a6e-a8d4-92b96b9b7da6','816e932e-b5c2-4bd0-af1a-72d4dd4f7919',202,95,70,0,'2025-08-21 07:15:13.043','2025-09-03 05:44:24.021','531450758-1-2'),
('a1410d3e-22f3-49fa-964c-dab5bfe89601','527ed217-6d76-4ec9-b760-807ad00b847a',54,73,100,0,'2025-10-02 11:20:41.358','2025-10-16 16:43:50.653','910482480-1-1'),
('a1465bd1-6950-427a-9772-26f1bafd2c0f','1977a173-f6c0-45d1-ba5d-5729f658054a',0,0,0,0,'2025-08-14 10:05:42.925','2025-08-29 16:53:24.934','221850151-1-3'),
('a146be74-df58-41b9-896b-5b3072164dc7','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-21'),
('a149ff8b-87c6-4023-9f44-842d8febfafc','ee6fb030-92cf-478c-a63e-a4a35c648758',97,100,75,0,'2025-08-25 12:31:59.341','2025-08-30 18:25:27.870','437539983-1-1'),
('a14cbfd9-785d-4afd-9fb9-92156bbec2a4','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-5'),
('a1509bc7-3852-4f15-8a76-4056e5078fb3','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',103,152,68,0,NULL,NULL,'808855328-1-2'),
('a153087a-4b9f-4d3e-ae7b-06e6283819d9','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-13'),
('a1569937-73a4-4358-9148-11b124e4d289','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.909','478609228-1-13'),
('a1574454-319a-4097-a5b1-ed7e6573eff9','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-11'),
('a1593afb-0538-448d-9d41-160679fd3482','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:11.587','248284003-1-140'),
('a159881f-c0ab-4d46-a9a3-34ad9273745b','8c3a6528-ef31-4989-8531-7ec536f3c6ec',0,0,0,0,'2024-12-23 12:00:24.883','2025-01-09 13:53:30.063','74513098-2-1'),
('a15b4126-3e81-49a4-b983-f0ddb52153d3','e7812ff6-8432-435d-ad8c-50f9beb9f193',100,21,11,0,NULL,NULL,'248501679-1-3'),
('a1610c6d-f090-4de3-bd3f-4a3d34734588','f1d0b634-e6e0-4b6a-a561-feb245a87cb1',75,75,70,0,'2024-03-31 17:54:54.854','2024-04-17 10:16:37.203','455568872-1-2'),
('a1640213-9dc1-4d72-be6e-3efe696f91e9','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-42'),
('a16562ee-6bfb-4690-a45b-15b0e4985e61','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',209,81,5,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-23'),
('a16860c5-c1a2-4186-92d9-4564b42a3a56','8c20d2c3-b3a4-41fc-a624-75080aeae334',51,51,77,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-2-2'),
('a1687213-2aec-457a-bb68-a9320a82c38f','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',140,45,13,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-118'),
('a1691fa1-a8f8-476e-a713-70820f387fe6','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-23'),
('a169607f-ca9c-4f76-a669-7f5249309ea8','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-59'),
('a16a044e-690a-44c0-baa7-3f9e0bda43ee','c4f62775-21a5-4d48-bba8-0a66600ad101',95,80,70,0,'2025-01-26 10:54:19.504','2025-02-10 14:16:39.412','517521279-1-3'),
('a16a9a98-df2c-4bb5-b4e9-6f6f024595b3','dc390da6-4128-4077-b3a7-07f6a89a5beb',100,75,70,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-3'),
('a16c306c-38fe-47ce-b02d-2a9c619619ce','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',65,80,95,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-4'),
('a16e20b6-8f4d-4ac6-8cb8-9874d6bfde85','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-54'),
('a16f4e7f-4446-408e-b6a3-05b95339ba63','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-24'),
('a16fa650-5e84-4956-b7c1-8089ef443df8','aa7913d9-4692-46ea-94b6-16deac482855',0,0,0,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-9'),
('a17024d6-9569-4ace-bd5a-4ff5b7efc4e6','4c827ccc-5373-4bb5-b088-bc5d1ef4f91c',92,103,75,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-1-2'),
('a1717e3d-38fa-456f-bc69-7328b3479b58','8625abf2-719d-4d7f-b206-16948b318b8b',30,39,40,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-15'),
('a17291df-3725-4c42-9be1-5b6cf92bc21a','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-5'),
('a172ec09-eb52-4bb3-860e-c67c09e01326','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.936','2024-10-06 13:26:07.140','163229349-1-37'),
('a1732ee1-c9ed-4ea0-8438-0427c60a9380','23603e9a-f1df-45b7-910f-576bcfbf1bb0',0,0,0,0,NULL,NULL,'478981977-1-4'),
('a175d12c-5cf2-4bc1-a2aa-ecbcec0e563d','96449af3-c272-4a90-b77d-0790552dd455',75,113,9,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-2'),
('a1760651-de2e-43bc-8497-5d5cb0e85617','fae6909c-01c0-4f09-ac49-1ff3954779b4',90,230,65,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-5'),
('a178cbc3-b4dc-4da9-bdf0-42f18feabb7b','29aa9d56-5356-45de-aaf2-7a6c4a5f2bc2',52,75,74,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-1-4'),
('a178fa46-2356-41f7-b9e9-7f70c8ecf857','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-5'),
('a17aa69d-3685-4bcc-92ea-c4619aebb9b5','04dff17a-2b9a-4f35-a082-5684dfe5706f',198,178,3,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-11'),
('a17adc53-a75e-48af-bb1e-3fc07524db11','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-6'),
('a17bf7f1-4eb8-48ca-a186-9e90e6bf5ce2','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-125'),
('a17c4ff1-d954-4b44-89f9-2bad43f33529','7900b99f-1d0a-41ad-b583-3931be125cdf',51,51,77,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-3-2'),
('a17e6d28-467a-4db5-a364-c624409df603','059d418f-09ca-4d30-b6ea-028323d66c5e',100,98,80,0,'2025-10-25 08:59:02.132',NULL,'59841260-1-5'),
('a180c4e7-dee2-40c7-baab-85514149dde5','a2f34510-a7f6-4abd-ac03-e7c577feca03',28,8,210,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-12'),
('a1816db4-8a26-4eac-830d-f196b268ff84','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-3'),
('a181b461-cfc7-4400-b2af-90834c2092c2','c2e59836-c823-41bf-b343-b3df9dfc91f8',180,90,65,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-19'),
('a181efd1-5e38-4884-a1f6-4b54b3cec71b','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-34'),
('a1828c12-79cf-4744-9e41-f881a430cf6d','e6b76b99-49cf-45cf-8b07-4059aa89b6fd',51,51,76,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-1-2'),
('a18678d3-36f0-4f69-96f7-ffba99818098','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.410','2024-09-12 10:55:22.231','107394609-1-15'),
('a18df8eb-fba2-497c-8cf5-6563f2f43559','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-54'),
('a18ea296-4018-49c2-b3d1-7c4eac97c1b9','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-5'),
('a19003e7-a29d-4366-b265-ddd4855888ee','c5d61b93-7ced-4a71-93be-5a852d615a08',96,230,70,0,'2025-07-12 09:20:05.657','2025-07-28 07:57:27.593','412102597-1-2'),
('a193d465-2715-4b05-9730-cc28d98d500c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',43,42,46,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-16'),
('a1941e67-953f-45aa-b0bb-ab6235640bdf','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',63,25,27,0,NULL,NULL,'338991013-1-5'),
('a1a1567f-996c-424a-8081-2ed3941744de','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-41'),
('a1a2c122-ed23-46ea-9d95-24068774da29','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',76,57,102,0,NULL,NULL,'808443666-1-4'),
('a1a398a5-4707-4aa9-804f-c58982c73fb1','afd23420-c1c3-4468-a9b1-5a8f4274d064',52,18,61,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-4-2'),
('a1a3d9d3-6c48-41fe-9daa-18703b0f850e','542181c6-dabf-4cbd-b756-74abe3440744',87,30,200,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-8'),
('a1a7ba5c-f7a7-4d5f-a348-5d9e7fc3c328','c4917d94-8c91-4f12-8ebf-b803c0150f37',30,111,203,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.490','598412225-2-2'),
('a1aaaeaa-5da1-4907-b3ed-be94122e6ee0','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-76'),
('a1ad22fa-6aa4-4348-ac65-4b5535b9b945','6a308121-6cf9-4384-8446-08182bd669fd',157,9,20,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-6'),
('a1af99cc-eace-4460-b0c5-50803ddfe9ed','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-7'),
('a1b2f869-3887-4d7f-acbb-51a2d23b1cda','73070a82-3710-4964-a5e9-55737d39af81',44,23,15,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-4-3'),
('a1b3427c-6954-49ed-89aa-3b3825602d70','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-20'),
('a1b39536-738e-4691-bc32-a09f6b4085d4','869845cb-83bb-4465-bd39-430dcb105252',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-2-2'),
('a1b82c24-8678-4d6b-9ca1-0aefd0ed18e0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-118'),
('a1b95639-edf8-4e25-be9b-f23a645ec24b','ea334a01-514b-4dbd-9960-a3963f52b611',0,0,0,0,'2025-02-09 09:51:30.901','2025-02-18 17:24:17.678','478188178-1-4'),
('a1bba37a-ca94-4ee1-93c7-df376ca645b0','fcf2d3c6-3f79-42fd-a564-dc62e7679d3d',58,40,42,0,'2025-01-04 10:47:46.499','2025-01-08 10:30:55.332','248539327-1-2'),
('a1c16496-74f4-498c-8916-a53ea16e30f9','1dda97ac-51c1-4b89-abe1-67ed131b4e9f',76,76,61,0,NULL,NULL,'745883224-2-4'),
('a1c385e4-0733-4553-9190-ba93884b197a','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-11'),
('a1ca36af-deff-4078-a4b6-9b2a3054d835','57d11f20-03a6-412e-bd79-62615f3c7867',46,15,10,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-5'),
('a1ca744c-26b1-40c1-8af8-745ddf311b45','886e0e1a-c599-47ba-bacc-c329212cc55b',10,42,211,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-14'),
('a1cc8670-4fc8-40db-a346-7297c2b3c15d','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-6'),
('a1cdf63f-35c9-48df-8426-7bb00d4c5e87','c98f6188-56c5-4870-be97-be71cf95f62e',212,44,4,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-9'),
('a1ce8d3f-213b-4793-b009-d35cda082ee4','0fad58f3-27a0-40f4-87e4-10112791f0ab',51,51,77,0,'2025-10-25 08:59:08.075',NULL,'351519592-1-2'),
('a1d1696b-cd34-4e36-9837-b3ddeaf12000','056a9790-92fc-4518-aea0-4e028de531b0',220,103,38,0,'2025-08-07 16:52:37.616','2025-08-21 08:12:52.703','437313362-1-3'),
('a1d1a3df-0ba0-4a8a-946c-b3e90a663275','3a3d0efb-40d8-40ad-b5ee-8ea665daa2ca',95,75,190,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-2-2'),
('a1d345ed-7495-46d0-be7d-a93281612bbb','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-85'),
('a1d81a81-114f-428b-8290-30af7273d7ae','66f8d34c-0c41-46f5-98bb-500adbb6f636',83,7,3,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-14'),
('a1d9306f-2298-4b31-a0f1-d8630c0d79d0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-126'),
('a1d9361b-ea41-46e3-8893-8b3a24eed9da','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-25'),
('a1d9f13d-4bfa-4f53-b6b9-568ae4453cf5','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.202','223867751-1-64'),
('a1dae9bd-b39c-432a-8e05-8fd0604a31d8','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-21'),
('a1df6bcf-1764-49bf-b624-58ab52abb96e','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-3'),
('a1e6217a-5e06-4e84-8aa8-30098f5dbbdd','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-51'),
('a1e7d336-1026-430e-8916-0df154f87cff','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-15'),
('a1e80bee-718f-4050-b328-e3b0f1b2d846','40c4dd8f-39f2-485c-9dca-60d32029c90d',235,94,80,0,'2024-03-31 17:55:12.689','2024-04-12 07:16:47.839','982547993-1-4'),
('a1e817c9-666b-4ed4-a1fd-98a5e8ad5157','2bccb692-372c-403e-ac17-f092cc8d56e0',85,65,80,0,'2025-03-11 18:06:02.855','2025-03-17 23:30:53.310','982431907-1-3'),
('a1e84edf-d82e-445d-9a41-cef5b5cf7f55','cc7dddf4-427f-4a79-9cec-d95529ff2c95',36,134,11,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-1'),
('a1ea38c6-9f76-4641-a38b-e13d73d34e6a','73620971-43fb-4c83-8c1f-8672f6a63561',0,0,0,0,'2024-05-08 18:43:36.637','2024-05-21 18:44:54.329','976942978-1-3'),
('a1eb6db6-2720-45d9-a88b-be6357391b78','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-3'),
('a1ebdee6-16c6-45df-bcd9-ee52ac965844','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-11'),
('a1f090f0-dda4-4cff-9c93-7a0eb75fa035','ae9a9400-7a4a-46dd-bdca-d8a0d71d424d',80,65,90,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-3-1'),
('a1f6e892-8d02-4c2f-930f-3a26bc05d0b9','212dbaa7-c2c3-43c5-815b-138aed4d0833',81,58,104,0,'2025-04-15 16:01:24.821','2025-04-26 17:56:36.043','786286562-1-1'),
('a1f9a07c-da37-4af9-bbd3-fbe0b42b5f14','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-11'),
('a1fa6c21-41c6-4ea3-9c95-a7a7d42f99a8','ae22c95f-8f5a-44b8-98b4-9c9319923e2c',96,52,58,0,'2025-04-11 13:41:15.462','2025-04-28 11:58:44.064','43720744-1-3'),
('a1fff388-56f1-472f-9d92-9663d9b573b1','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-90'),
('a2027a8d-0434-4eb2-a734-02d802300281','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:14.065','248284003-1-17'),
('a205bc6e-c485-41b0-80bd-09d0a06c945f','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.534','47811313-2-26'),
('a2078dab-bcd5-4449-b1d8-6fd62f1e0cd4','085b8abe-140c-4e7a-a52b-57b804c24627',98,118,75,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-1-2'),
('a208b3cc-c134-42ac-b2a2-33dfbea2c54d','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-77'),
('a20bbc1d-5f95-4b9a-ad36-4ec556620ded','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-25'),
('a2102fd5-5e01-4def-94ff-146126c81e5a','899dcf64-71c3-423e-92a1-60d82839fc84',49,52,5,0,'2025-02-03 18:19:38.677','2025-02-11 17:09:24.437','501934466-1-4'),
('a211208b-5fde-4224-9407-2d08160da8ac','b5dffa27-66ca-41bc-b90d-205635c51d37',56,72,100,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-4-3'),
('a211981a-1ef3-44df-b926-267ba8816069','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-25'),
('a212dd65-5e3c-45e8-9789-ba779e1cd8d8','8f501b28-7e24-4062-b6f1-a5ff7b1353fc',56,76,102,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-2-3'),
('a2147389-6fa3-41d3-b4bb-fb6e82294caa','0009aeec-e682-465c-b701-363a3ef377a6',62,13,97,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.772','655307091-1-58'),
('a214d56a-e2a7-48c1-8fe1-28020afecd5a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-134'),
('a2160dae-9846-4005-b31f-3a989bcfbd21','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.345','478623446-1-6'),
('a2191237-c8da-4902-a270-98829d4c1493','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:19.399','248135683-1-170'),
('a21c3713-2b0f-47ae-ba11-a31a1a5e20fd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-146'),
('a21cca00-e373-42d3-b1f4-44e838acdec8','36d2ccf2-df1a-405a-b3c7-cef507b73ba1',130,174,15,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-1-3'),
('a2207c3f-f300-4d1b-b6f0-ef5b845d960a','a52513cc-f659-4369-b73d-77a47f20e288',0,0,0,0,'2025-03-24 16:02:07.087','2025-04-01 13:25:19.673','657785918-1-1'),
('a221bfc8-8e78-4056-9e41-a6448ed83690','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-4'),
('a221fd01-2e9b-4f85-8c94-66448c33a5f1','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-68'),
('a223de5f-655c-4987-bff6-328e34eda4d9','53ceca88-8b9c-46cd-b0d8-18b8ca55f1d5',85,45,75,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-1-1'),
('a2247250-2deb-4eda-8c1c-233ff995f231','58fe4c33-e268-41af-9163-4863a4d27452',80,58,58,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-2'),
('a225e76a-99ed-4215-a06b-b85436fb67bf','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-26'),
('a228c2b1-a19d-449a-8754-644b5d69ed40','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-3'),
('a22a0d1a-2a3b-47bb-b349-15595861a977','7fee7544-b544-4623-b92a-7a80075349b3',95,100,60,0,NULL,NULL,'478514572-1-4'),
('a22fd730-9aa0-4338-88c5-f50a56152707','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-104'),
('a2300aae-f86c-4d85-ad81-8e3a54bc22a6','c2e59836-c823-41bf-b343-b3df9dfc91f8',95,203,10,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.407','465500768-1-9'),
('a233bb1e-76df-41ae-87b3-b180ab8a9d63','43a5868e-b45f-4da5-81a1-837338bfc39c',0,0,0,0,'2025-02-20 12:14:59.012','2025-03-04 15:38:11.587','47853753-1-2'),
('a2352fc9-37e7-4f45-8b84-c4c08d8abde3','546ad3d0-25c2-43dd-9443-e48b8e5b6530',120,6,200,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-32'),
('a235c704-39e5-499e-853a-cc58b621da85','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.957','478339779-1-8'),
('a2385541-9cf9-40b6-bc30-1408fedda8ad','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-49'),
('a23897dc-4d91-4c64-8552-3680cc75fa90','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.759','515956879-1-2'),
('a23a74e6-c239-482b-a120-d366fab7166b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-100'),
('a23d8007-f5fd-4b11-9e5e-b432567cff86','6fc71087-3b34-4761-a094-a0f038c41be7',90,90,5,0,'2025-03-27 15:06:17.555','2025-04-05 13:45:20.919','319141495-1-3'),
('a23f7342-5560-4268-a57d-c148da2e7271','2ab41284-325e-4735-a02e-0af4784fee90',44,210,7,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-4'),
('a23fb17a-d8c1-4392-98fc-5ccc670f6883','c032e8ce-824c-49f7-9369-fe87698e9814',53,76,102,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-3-1'),
('a24340bc-db9e-48c5-9f35-19938c8c0c11','3ba27633-a526-475c-9e24-fa446137f6ce',100,80,118,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.768','478507488-2-4'),
('a24d7182-ed38-4a00-b4b4-56559fceb563','e821bf6f-ce55-4036-a505-910ce2b84e01',97,148,65,0,'2025-08-21 07:15:03.733','2025-09-03 05:42:06.991','598614826-1-2'),
('a251b7d4-8b9c-4859-847f-ec40b692c80b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-68'),
('a2529905-c60b-4945-a6f0-f0309d7bf6bf','9d01daf1-bc0c-44c5-af16-9b7dbb9a3065',0,0,0,0,NULL,NULL,'745505506-3-3'),
('a2541870-d655-498e-8768-688e1314fe2b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-46'),
('a2544628-9f71-4b4b-aced-866f4eef6452','85a3d92b-b7dc-4eb2-9f85-ba5b304d13d5',77,105,73,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-1-5'),
('a2565372-b539-4d2d-b679-0dd7865d727b','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',51,51,77,0,NULL,NULL,'808443666-1-1'),
('a256556e-5a1f-4a55-8623-ca6384d0d919','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-117'),
('a259260f-3376-430c-9b5b-585110bea137','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.505','221639055-1-1'),
('a2596765-0056-41d5-8060-8732cd20705b','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-30'),
('a25b7105-0e49-492d-851e-288390e9dc5c','fb752cd1-ddbb-458c-8371-2851b143968a',65,83,70,0,'2025-07-12 09:19:03.318','2025-07-18 22:03:30.292','98221051-1-3'),
('a25e1b21-b8ac-4acc-b743-d8991bbdc2b1','8625abf2-719d-4d7f-b206-16948b318b8b',35,74,34,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-16'),
('a26189ae-8c0f-46ec-b9e5-a8c2fe6feb69','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.744','221341784-1-2'),
('a261fabe-4238-4fda-8ffd-0e89a2e100d1','642202df-ca75-465e-8036-f34da2dad54d',68,98,66,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-8'),
('a268197a-cfb3-4cfe-9e71-4bea40067059','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-119'),
('a26884bd-11d2-464e-b5ec-55cb1afe793e','220fed8f-f96e-4af5-867b-ac05d11bda6f',46,23,81,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-20'),
('a26a14d0-3846-41c4-b9ea-f4648596a204','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-51'),
('a26c993b-5e07-4c7d-bff4-d253c46ffbf5','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-11'),
('a26e67be-526c-4e3f-8543-8ae45d409976','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-38'),
('a273e54a-fd72-4d08-8000-95927b0f8240','6060763f-09fd-4b23-9d16-0641dc9c453d',33,12,211,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-6'),
('a2750289-985a-48cb-96cd-7b57aa70e5c6','064e955b-72f7-4dfe-903d-af71b421e048',98,215,21,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-7'),
('a2799e71-b273-49e2-ae3d-5dd2fd89c305','b406e820-44f0-4685-8e93-c95709e1da71',202,182,35,0,'2025-07-02 12:43:44.589','2025-07-18 05:16:08.058','248352114-1-2'),
('a27a1ed6-220e-49ae-827f-45fa1388663c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-11'),
('a27a8fcf-1f4f-46ba-8ce5-333eb47922d1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-130'),
('a27b3f35-8f57-4f9c-bd0b-8636a5a1cba7','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-5'),
('a27b5c8d-e832-4ed6-8d3b-9ff2d52977b3','4d63984a-5ff1-4253-abe8-286bd84e3528',90,190,30,0,NULL,NULL,'478350685-1-8'),
('a27ca05e-6825-4678-b4c5-752578525128','15838be9-2a38-4e80-b613-df9538785c9f',48,97,45,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-5'),
('a285e7fd-6572-42d6-b1f8-428a69309a47','0886662d-3f5b-4da6-acc3-7da74bb71f94',363,35,143,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-3'),
('a2868962-18e4-4caa-9349-4bea29b36ed4','62f8f5e0-3dde-4a16-8b43-15d3805cff33',33,39,60,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-2-3'),
('a288b818-6940-46f5-8feb-c95eee8e6fe5','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-35'),
('a28aa21e-c006-4cf9-a125-82045464b73c','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-52'),
('a28c78b6-8af0-48b6-920c-00523ac3d05b','20de256d-a63f-4ddc-9e1f-42653a455a81',91,209,4,0,NULL,NULL,'47856812-2-3'),
('a28f56a3-eb51-426f-b137-cbb8c79ab08c','091261be-4db0-410b-aa84-1ae691d88e78',205,105,13,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-1-1'),
('a292b47d-9283-48bb-b320-2880c3421ed0','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-6'),
('a293c9e5-a1c0-4134-b90e-45a4e17b7004','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-94'),
('a295ced6-b1aa-4c44-b736-bb7d61c2421b','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-5'),
('a29c0999-279c-4965-a3db-2b6bcbcfefbd','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-145'),
('a29c20e1-4d42-4f53-a920-6acd89c89698','aa85d51a-54f8-4467-8437-b14d6b3635dd',54,75,100,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-1-2'),
('a29ea0d7-d674-4a57-bf91-de4428af4492','d1a94bfe-d49f-44a6-af36-335cd07624bc',83,101,57,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.404','380417164-3-2'),
('a2a2a216-1cdf-4d15-98ed-9ce0291dd975','4269f867-0d44-45e3-ba30-724af57726ee',80,70,90,0,'2025-07-19 07:52:10.252','2025-07-28 18:39:55.403','371820680-1-4'),
('a2a34550-df4f-4b97-9576-6a272753fd4b','1b8f328c-9952-41e3-aa69-f843fde86e4a',10,65,103,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-2-3'),
('a2a66033-91e2-48a5-b635-6f69f456d318','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-69'),
('a2a9ec3a-be6d-48bc-be75-d8d6a6321bc8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-27'),
('a2a9ed40-d0ca-4370-a2c0-ea1a087002d3','0009aeec-e682-465c-b701-363a3ef377a6',195,16,16,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-59'),
('a2abf7dd-71d8-44c3-88bd-cd68528c6561','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-6'),
('a2ae43f6-812c-4a3c-ab58-468ac2a4bbfd','c080623b-df50-459f-92a8-eb2eaff4030b',63,107,4,0,NULL,NULL,'478350685-6-7'),
('a2ae69a3-c004-48c7-972c-91c42862518f','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-97'),
('a2b03c0f-8d99-4e7b-a197-6562a9ed687d','f88c3e53-b711-4bcb-aa3d-9543580054cd',21,13,198,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-9'),
('a2b240e9-0b7a-4661-9b10-882eee20fcab','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-7-6'),
('a2b51945-0941-4d72-a2ed-cbf33a02fd01','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-15'),
('a2b7dc12-7d31-4031-85da-e2776807e562','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-1'),
('a2b91222-e521-415e-9a42-744e0622d27d','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',81,56,100,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-6'),
('a2be8b55-5976-47c9-9658-c8871249b095','574dfe37-d46d-47c7-8219-216fa7c208ab',75,47,47,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-1-2'),
('a2c04ba0-6fb2-4e9a-9dee-e7480260dd8b','0205414b-5878-424b-a8f7-1bf9fc0d9072',61,61,91,0,'2025-04-28 07:40:41.912','2025-05-06 11:26:18.860','786820149-1-1'),
('a2c24194-28f1-4da6-9533-ca27dda1367b','a34e86a8-520f-45c7-9873-449302cce2c8',51,51,77,0,NULL,NULL,'221574787-1-2'),
('a2c7e918-36ed-4cf0-904e-7859ded4dbcb','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-27'),
('a2c998f0-29ac-4d40-92d4-2c50315b9524','9866a947-9974-4053-8415-4518842488fe',213,32,13,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-29'),
('a2cec3d0-80f6-4dc5-a83d-a3a46dcae76f','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-7'),
('a2d02abe-cefd-42d3-a2e2-b6372b0022a3','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-4'),
('a2d0cd87-d671-4737-abe7-ed22dd23564d','19f8d788-357e-4bae-a0cc-714638359cc7',48,145,35,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-6'),
('a2d20753-4f3c-4083-912c-ce7162f69c65','61693d6d-1ccb-4968-9461-6ef1bf43aac5',240,75,100,0,'2024-11-21 10:29:11.924','2024-12-14 12:00:59.316','112270991-1-2'),
('a2d28dba-41e5-444f-86e1-636fc6428b35','c36c4fac-54ff-4834-a9e5-af345d3a3269',10,95,155,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-3'),
('a2d341f2-004d-494b-86f7-6a50f4e0f892','511bd2e8-973f-42d3-ac90-03096f542b82',0,0,0,0,'2025-02-13 20:43:40.237','2025-02-25 17:03:24.822','428103279-1-1'),
('a2d3ae21-f489-466c-86b7-1aa56c429e54','b2344382-bf60-4678-b271-01032fee96b4',51,51,77,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-2-3'),
('a2d567f3-9a7b-4cac-9d1e-d102a015fe53','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-63'),
('a2d63555-c6e5-42a6-9f95-673b7fa358af','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.114','98222656-1-1'),
('a2d6e5e5-9e7d-4d15-a3b8-dbf5ddefd7b7','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-216'),
('a2d9cdb5-5689-484e-9ded-9206b65afbc3','6c23f9f6-3497-47dd-84cc-1eb6d89bd740',100,65,85,0,'2025-05-24 17:55:38.201','2025-06-03 09:41:07.360','31925609-1-2'),
('a2dc2a20-2195-4872-9f96-7c0de2359658','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-3'),
('a2ddba6d-1e02-4ab0-a92b-e6f32969770b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-122'),
('a2df4e7b-765e-4c3e-bf70-d9dc7a8532f4','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-2'),
('a2e0b2ce-d753-4620-b8c6-c66f99777448','86ee035e-15bb-41c0-a091-2eb029703094',100,65,95,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-1-4'),
('a2e13216-5e04-44aa-9c94-92ac7cfea190','dcfba104-f23e-437a-8a27-fd4802b38b82',80,96,96,0,'2025-07-29 12:58:45.007','2025-08-07 14:06:10.844','598585736-1-1'),
('a2e32d0a-c01b-4750-8631-b527b0745dcb','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-23'),
('a2e3952f-9899-460d-9e1c-0b2f5b6a3622','b11a7688-4046-43cf-8820-625309aed56f',70,195,93,0,'2025-09-02 14:48:30.710','2025-09-10 07:23:42.948','011255060-1-1'),
('a2e3c419-a3a1-41fa-a12b-a6a157e562a3','c1c9db37-7322-484f-822b-e475a8ffaf59',0,0,0,0,'2025-09-06 07:20:26.523','2025-09-15 06:12:43.178','412299499-1-1'),
('a2e7d2ed-e7bf-43c6-a700-84acafab390d','1ecc5768-b507-40f7-a0d2-f557b0a01e35',95,204,60,0,'2025-04-25 16:57:10.447','2025-05-02 06:58:05.857','478537954-1-2'),
('a2f1dc7b-7d80-4907-a59c-0ac70ddb4ddb','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-5'),
('a2f4b45e-10ba-4241-8e13-60d22402f043','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-5'),
('a2fc15f0-807d-4d08-81d2-cc4edc77d226','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-45'),
('a2fd60e4-335b-4e77-9c46-af9a014897a0','6f883022-1eea-4faa-b6c6-489aa1c8866e',83,192,7,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-4'),
('a2fd6c38-6505-408b-85bc-e5f983581f54','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-244'),
('a2fdec92-5ab8-4ede-87d2-c633dffebef2','687ef888-f53d-4ec2-b170-8d3d356fa1e2',123,123,65,0,NULL,NULL,'745105230-1-2'),
('a30364a8-cf59-4b8a-bf92-139c72cb2628','b367aad0-f419-47d0-a902-3531114180e3',85,118,120,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-3-3'),
('a3070d15-9705-429f-a2c3-5d209cad4ffb','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.152','735384295-1-5'),
('a3079ed7-6f6d-435e-82a9-b88703185b3a','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-8'),
('a308a3ef-a13f-4773-b79e-3c4ba37945fe','d735327b-ac4e-4761-98e6-d9e2e53b4b8f',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-4-2'),
('a308ca76-2d4f-41b8-8b85-77ff2aaaab32','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-1'),
('a30a5207-a82f-411b-8e52-38df382fde1b','256006bd-b235-4d94-b138-40c9fa05eaf1',92,23,10,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-2-3'),
('a311ff41-9c01-4766-a456-c4dc0680eb03','c4f62775-21a5-4d48-bba8-0a66600ad101',240,100,85,0,'2025-01-26 10:54:19.504','2025-02-10 14:16:39.412','517521279-1-2'),
('a31214c7-4886-448b-a99f-10304ff56cf8','e0cc17a2-4392-42a5-a637-de0f1c60c459',35,35,180,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-5'),
('a314213f-5a42-4b4d-ac1d-dc0dafaee411','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-18'),
('a315419d-7710-4bb8-a5e5-eb2936bac27a','0e70ccfe-0887-4aff-9656-0781d621c3b4',96,185,7,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.058','982843761-1-2'),
('a3154da2-7d21-45c0-bfb9-9d502e0e2334','b6d4096c-e878-4da1-981a-ba540b80e87d',45,45,52,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-5-1'),
('a317b591-9700-4645-823d-40fcad5a51e2','a7d8e541-ac8e-49b2-b360-317f8114fc5d',40,40,50,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-2'),
('a3187be7-3a75-4183-a432-f46e0bd52643','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-176'),
('a31b2397-4c43-4fb2-bfd5-3f95107c00cf','8927f16d-18c9-4c04-915b-2efa7b9707b4',208,102,9,0,'2025-07-12 09:19:01.038','2025-07-21 07:59:59.277','98275727-1-2'),
('a31b4474-ff01-4e05-8a2a-97eee6a0e922','c900d790-eeff-48b9-9f2b-48972c98ac32',70,22,49,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-12'),
('a3222498-9d26-45f8-adc0-869f207f8e8a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-60'),
('a3242d21-3a61-4c75-84ce-2d638ea2aac5','21f74ee3-8163-4caf-be93-184351bbdc71',70,90,75,0,'2025-05-24 17:55:21.510','2025-06-05 16:39:13.518','127150146-1-6'),
('a3247978-5dad-40a2-942a-2bdbce1b17db','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-9'),
('a3279e09-9928-4fb3-97ad-5240e1d613d8','a5626ae2-9a5a-4401-9095-a368c22814f1',52,60,53,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-19'),
('a32c2373-fd11-4a02-97eb-e20dd743800a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-216'),
('a32c896a-b5d6-4f12-87ec-92c6b92ce261','46bbba6d-7306-4e50-94f8-b309b0edb518',93,230,65,0,NULL,NULL,'428905379-5-3'),
('a32f3eb3-e198-47ab-8e74-1082f0594e62','6226bd29-5d06-4891-9ca0-310e4356024f',51,51,77,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-5'),
('a32fdbac-d7ea-4ce6-9099-07e41e7b5e1e','4127ee40-0e2b-4246-87af-80c9d221472d',110,110,70,0,'2025-08-21 07:14:56.642','2025-09-01 16:56:53.496','598961970-1-2'),
('a3308047-bc78-4086-b4ce-34ac4ee0031e','1ad6d0d7-d80c-49ae-83a1-8f1779ed2429',92,28,200,0,'2025-09-18 15:48:50.869','2025-09-30 18:47:57.405','745374253-1-4'),
('a3331b35-d392-46f9-a06f-0b37c6fa2b0b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-1'),
('a3341247-77bf-42be-89ed-d6058d311017','090b9a06-aee0-4c02-b626-f3e2002f0fce',90,80,65,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-37'),
('a33482ee-cbf5-4838-b717-e60f0cecab2e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-45'),
('a338309f-60b3-4a6e-b73c-82e66fe69964','c5686ee6-2537-4ca8-91b5-7a63652f7dcd',51,51,77,0,NULL,NULL,'221394764-3-1'),
('a3418800-e0c1-453e-8f2e-031fa3d2f74d','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-20'),
('a345449e-684c-45f1-8ca5-eb0fcee6b615','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-18'),
('a346f990-1461-4791-83ef-69fd8900d687','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-20'),
('a3492b3d-7e9c-49d3-927a-2614b58ef5d9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-123'),
('a34cdae9-f3d8-4e04-8261-5ca0c3ababba','c5bf586e-b048-4ee7-b750-d82fc394b66b',0,0,0,0,'2024-05-08 18:43:39.740','2024-05-17 09:44:40.129','449354047-1-2'),
('a34d8453-5d37-4ec0-bdb9-71b1d337f9bc','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-10'),
('a34ecfea-83ba-4d8a-9789-7baf596c21e2','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-93'),
('a3500a48-a05e-448b-a0fd-e469477b2aa0','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',66,56,51,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-24'),
('a354b593-2383-4ccb-9a50-a8db313dab65','904ccae0-124e-44d4-aea2-8615bcf196d5',0,0,0,0,'2024-12-13 14:49:23.227','2024-12-21 10:34:20.584','735905073-1-4'),
('a359de8e-42d5-4bd8-9cb1-1018bafb34de','a5506c59-0e9f-48a6-9b69-13a5163cf994',100,82,57,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-12'),
('a35a7574-041b-4fde-9125-895a0f2661c0','6fcc55d3-2339-4d12-b5e2-e156727c33f9',94,29,228,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-10'),
('a35cb0d3-ece7-4503-bddb-e74916b42628','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',110,57,82,0,'2024-07-03 14:35:43.103','2024-07-16 05:11:22.184','614987879-1-8'),
('a35d36ef-efd4-42b5-96cf-ae4e4795bdf3','d83c40d1-4df5-4c97-bc83-28837db95b2b',57,64,10,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-48'),
('a35dd51a-4f68-4005-a357-93a9b525ea2d','6918492a-0685-40ae-9b38-8845d6ba2ae9',72,72,103,0,'2025-07-19 07:52:27.551','2025-07-26 14:17:14.136','644389756-1-2'),
('a3602d1b-f713-4454-878c-af5784074866','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',30,87,204,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.175','817317858-1-9'),
('a36498c1-79e7-4bd6-b00c-29955f44d790','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-29'),
('a367b49e-bbe1-4eea-9df9-5750dfdc9b7e','74eb1177-dbbc-41ab-99b4-94c187603621',50,76,51,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.746','22162472-1-2'),
('a36a1bb9-7229-4709-9459-2630455931fb','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',75,42,14,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-23'),
('a36afa3a-b856-49b5-8b0f-c7f8ac899250','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-36'),
('a36b4a16-7814-4aee-a950-40c118c6c7b3','40065c78-de90-4058-907e-6af9c5da2b57',35,27,175,0,'2025-10-08 17:43:29.333','2025-10-17 06:15:16.790','803441454-1-4'),
('a36ca565-b16c-4546-8b62-9d95cf417042','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',65,94,121,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-8'),
('a370a13d-3834-4695-a80d-a5695498b0e2','bbf09810-b890-4a13-968f-4412cec77c61',46,24,30,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.394','745996696-5-1'),
('a372bc18-55c5-46a1-bd22-5e7504894233','6a2d762e-11cd-4fca-b32d-cdba41391e25',178,198,3,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-12'),
('a372be8c-ba69-4233-b5dc-9d94a436d41f','a1461e5b-9355-408c-b4cd-20852a5e26d7',80,43,90,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.972','221396383-5-2'),
('a37a2cbd-0353-45d4-8d16-56f5f6c72fdd','6fcd8160-ca06-46ab-a691-51de5c394793',77,39,8,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-18'),
('a37c640f-ccf3-4484-a222-068adf99c791','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-5'),
('a37e087e-817a-44d4-b15d-e87eed266a70','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-24'),
('a3819653-3d00-40ca-ae10-59e79eb4f208','3da17157-28be-4bae-8dcc-745d0e93e591',53,73,101,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-13'),
('a381efe9-1b2c-4750-a2ca-3e0cbeb1acd6','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-164'),
('a384c434-9368-4b09-a50a-fbca0e8c7944','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-12'),
('a3855915-4b89-4358-95dd-1223b5956c9b','44172f06-d7a5-4d73-b1be-11dd839fbad7',102,55,76,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-2-3'),
('a38a3be5-1d77-465c-8cca-0fd7ed9d6c4b','9a9ccdd0-1e6e-4846-8069-0513cec9e7a8',110,60,85,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.152','127865742-2-5'),
('a38b0242-4926-4a5b-8341-8e4f7b894828','9a67f257-16f5-41c1-aefd-0de283426e95',100,100,83,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-3-1'),
('a3903a2f-b7b9-42bb-a6cc-323e5072a866','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-24'),
('a390fd18-5121-4c13-ad51-a6be9beb413a','8c84c11f-8810-47ad-aa22-9fb50bc05d1a',98,123,65,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-4-3'),
('a3939cfb-1511-4165-a95f-e365e143dd17','b55602e5-8dff-4702-941e-3ee46c8104e1',0,0,0,0,'2025-02-27 16:45:44.001','2025-03-10 13:01:45.189','745935889-2-2'),
('a394dd09-a371-40c5-9a13-0090b585ed52','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-34'),
('a39525c5-bb2f-45fd-a04f-064b9fb89861','a8240df2-bc04-464c-afdc-dd0bdbe1643d',63,10,218,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-9'),
('a3978591-9d38-4bfc-9b2e-11f5c1306711','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-53'),
('a3990fe8-bb57-4c0a-86fb-7f721a95b6c4','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-4'),
('a3991fec-8aa0-4879-9896-67e3dcffbdf2','788a8b56-add3-49ff-b48f-4809da260c0e',0,0,0,0,'2024-10-02 09:26:42.921','2024-10-09 11:10:47.116','126377805-1-2'),
('a3994238-db34-46b7-897d-cf23c433d772','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-11'),
('a399796a-7a1b-43d9-86ff-e0ac85e17e1d','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-23'),
('a39b3a00-9c83-442d-aef6-5e55f750e369','afd7f71c-d1fc-484f-b72d-f986503df4f7',68,117,91,0,NULL,NULL,'703266692-1-10'),
('a39b59f4-d49f-4801-ae8e-de886ac3ba82','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',55,258,12,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-27'),
('a39cbc08-15f8-47ca-91bd-1f3b3431d5ce','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-3'),
('a39cf7dc-38f6-45c2-9b82-834ff34befff','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-107'),
('a3a1a980-e1a0-45c0-a219-053997b94cc8','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-25'),
('a3a3ffef-a581-4e47-8a2a-113384e0386e','3735c345-c4d0-40fc-afc7-359f15617a16',102,30,55,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-1'),
('a3a7534d-866c-409d-9f9f-4bce8b14f6f5','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-53'),
('a3a7a464-feb3-44b3-bb49-8252c4480c9c','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-9'),
('a3a911ef-8665-47aa-ad1c-3d3bb0dc824c','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',61,133,9,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-12'),
('a3abbc02-0049-4922-b45a-2a7d5551cb0c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-60'),
('a3ae39c0-23db-48af-8d67-e55d2aafe54a','10ad24a8-579a-4070-b518-bffa0ba09e26',9,131,73,0,NULL,NULL,'428905379-3-4'),
('a3b01a02-be1b-487e-b465-5c3b9864816c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-120'),
('a3b0f98b-becd-4f6f-ab1f-3482f5ddb62a','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',97,21,10,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-28'),
('a3b2a18c-2f66-43fe-b7b6-ae807ceb24e4','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.396','41245861-1-111'),
('a3b38ed0-ffab-49ac-85a1-dbae864b63cb','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.000',NULL,'221811614-2-1'),
('a3b4c621-c6e2-46d6-904a-c6db5d184845','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-7'),
('a3b600b8-8c48-4fb9-8446-d671b9316caf','31990719-44d6-4ddb-ab93-087248d2f93c',78,74,8,0,'2025-06-21 04:34:04.432','2025-06-28 16:00:55.750','644716997-1-2'),
('a3b67a1a-f25b-44b4-a630-9cc917a530b4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,6,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-121'),
('a3b8b431-52de-4700-a74d-b2fd2a57fc59','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-71'),
('a3ba63d9-5b5c-47de-828a-57dd0b5b64ee','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-5'),
('a3bdb76f-6222-4003-8a54-b22610ee999c','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-4'),
('a3be1eec-8559-438b-8694-bca23cf34039','feb77c04-d085-4688-a308-1871c3ac6713',0,0,0,0,'2025-09-18 15:48:36.291','2025-10-02 06:11:59.159','412955343-1-4'),
('a3bff820-f840-4b44-9ea0-659384ffdc5d','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',10,18,70,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-8'),
('a3c2d90a-ff2f-41a4-873a-e8b01e845a89','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-20'),
('a3c4a1c5-2be9-4b97-b8d8-eacf2b0935ce','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:20.216','248135683-1-21'),
('a3c4afd1-958a-4028-b002-b366b1c7845b','d3d4bfdd-72be-46ff-be79-662e22aba9f9',100,100,80,0,'2025-08-25 12:32:29.250','2025-09-20 18:54:33.575','478983907-3-1'),
('a3c6e048-1f77-4f9d-bf7f-71be84e3db96','cc6f3b66-bc19-498d-9509-1b342de6fdc9',80,82,65,0,'2024-09-19 18:27:55.806','2024-09-24 16:00:34.897','52896910-1-3'),
('a3cd9cbd-63f3-4e18-87c6-71ead5acd6b0','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.870','223337181-1-90'),
('a3cf8b68-c965-4f08-b755-d44d4fea347f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-205'),
('a3d0e064-9632-4c9b-a9ad-fef9f6c7dde0','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-3'),
('a3d1fd5b-92a6-4d9b-80b8-c8169ddf4ab1','7a1d10c6-318c-4046-8b6a-010e311d53c3',51,51,77,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-1-3'),
('a3d2eb81-f3fd-4220-9287-80bd6b1bedb9','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-2-4'),
('a3d3bb82-cadb-4177-9843-dcbd3028dcd2','0bd42145-fdd8-4793-a5cd-a2e404d37142',207,24,13,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-16'),
('a3d4b904-18cd-4be0-b691-1529f719009a','1f226ba8-0087-4886-a39d-874a147a4378',190,96,6,0,NULL,NULL,'613362955-1-3'),
('a3d72af7-1620-4632-a8cf-0a4b49a7316d','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.212','412574307-1-5'),
('a3d8922d-1737-430c-99e0-9434076e6ab7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.911','2025-10-05 12:15:06.062','223441694-1-1'),
('a3dc4728-02a6-4198-8a72-c233daab6854','7a3edb87-0b6e-4717-b4d7-94bb1c49be21',82,73,80,0,'2025-05-09 18:43:46.889','2025-05-21 19:37:59.629','371494792-1-3'),
('a3e06e32-ca57-4351-bb35-77010a8ee6f4','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-5'),
('a3ed12b6-eb62-47ab-88ad-84b7a24a66df','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-11'),
('a3edd88a-9385-4bc3-949d-942c64d860aa','426ef9bb-a62f-449c-94ff-8db1393b2288',93,65,220,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-1-3'),
('a3eeaf00-9f0b-48bc-a966-ea098141d0d0','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-10'),
('a3f50e02-f711-4420-8de7-7f6ea4ff0145','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',80,200,30,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-12'),
('a3f978c8-2ed5-41d7-8150-72461145ca9f','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-11'),
('a3fa8089-3c51-469b-86eb-bae932ba21a7','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',213,46,5,0,NULL,NULL,'501168544-1-10'),
('a3fcaa3e-f674-4924-a660-f800a7a9343a','542181c6-dabf-4cbd-b756-74abe3440744',33,161,201,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-9'),
('a3fd40af-a304-402b-857f-85349840dd23','5cb082f0-4973-4f83-ba7d-550b088af234',85,64,67,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-2-2'),
('a4045c6e-817c-4b03-a3bd-2d6dacc4f70b','36dd80b4-449c-4041-8f6c-8ecd754e0237',95,240,75,0,NULL,NULL,'910181635-1-1'),
('a406a0f1-9288-4585-8373-439feff1aa01','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-30'),
('a40a5ec0-9740-4a4d-b34a-3570197ab1e5','a8c5c790-fa90-42d3-9ce1-ba79c74bdc13',52,59,97,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-3-3'),
('a40d397f-ed5e-4de6-abcc-36cb82e68fbe','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-2'),
('a40d50e7-72cd-4d62-aeb2-bb83e8c05c29','c71fdc71-df3e-48af-9323-d534b0931ff1',52,14,86,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-17'),
('a40d740e-ed06-4aa2-9fdf-bd1ec0fd6331','7b46bf4a-5ce1-4ec9-a494-a8f2948495dc',85,53,25,0,'2024-11-08 17:37:54.790','2024-11-21 12:40:15.277','982446186-1-2'),
('a411ec7e-d1ad-45e9-93cb-080efa3c2cce','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-38'),
('a4133bfc-156c-4a0e-8cbc-8fa406bed413','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-126'),
('a415fb45-6ee2-4e1b-be02-8ba83f5ccc01','28d025ca-eab1-46d1-98d4-ad06ea05cfe7',94,83,56,0,'2025-03-24 16:01:49.444','2025-04-05 10:57:59.260','613508377-2-2'),
('a41698b5-0dcf-4de5-a27a-e2f3a63ae746','a061c475-401f-4f65-ae66-2bc9f4569248',120,95,68,0,'2025-01-04 10:47:36.816','2025-01-11 14:07:41.414','501345257-1-2'),
('a417444f-80ef-48e1-bd96-5ba9bed35fa0','fb3572ea-a313-4cf8-a5cb-b7056e79114f',75,98,98,0,'2025-04-15 16:02:05.143','2025-04-24 15:01:32.170','371860514-1-1'),
('a4186ef8-00ed-4daa-9411-e36a7860179d','11ae30b7-e1e5-456e-a579-411396fbed2c',58,55,84,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-1-6'),
('a418bdfb-6d2e-4096-83e1-ad686395a78a','e46d4680-4bdc-4c9d-ad0d-2ba7ee909c19',0,0,0,0,'2025-02-23 12:39:10.498','2025-03-06 10:33:42.242','08159662-1-3'),
('a41ac9a7-27a6-431e-9547-d76aaede36e9','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-192'),
('a41fcdf6-e020-4326-a0eb-eda10b1fb8e1','e51262e7-d967-4d4c-89ce-5959d794fa71',71,91,61,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-2-2'),
('a4202575-6032-4771-b72b-69ead9b0b00a','05c9f573-84d5-4220-9894-da21bdbad976',57,79,104,0,NULL,NULL,'47856812-1-2'),
('a42221cf-32b6-408b-af50-559f51c948e5','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-26'),
('a4226f5a-01d2-4408-bdde-7f2ba16161cc','a38571d1-22df-46b1-bb70-46d8dc6a5d8d',168,67,95,0,'2025-09-02 11:49:01.550','2025-09-12 19:46:35.543','278583277-1-3'),
('a422cc3e-4811-4846-9338-576e0d0ef3d1','fa793f1d-2bd7-4a65-b1bc-3d0e571c562e',38,17,11,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-3-2'),
('a424ff68-cf63-4ef4-95a2-69d6d796a8c6','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-25'),
('a425522c-987c-42c7-8fd9-c32dea7d9766','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-7'),
('a4257d2a-bcea-4962-af4e-d4fb3efb32a8','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',22,7,145,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-5'),
('a4299ef5-fb39-489d-9a96-9ebcf9d2763f','4b539733-41e8-4f8a-81e2-17e2b9e31c94',0,0,0,0,'2024-08-07 15:02:43.871','2024-08-16 19:22:09.872','478101302-1-4'),
('a42b2000-31c1-42aa-8b62-e04c257c98b6','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.003','478409459-1-5'),
('a42e8d02-e34e-4a58-902b-57ef4b06f94f','8eaa55a4-b266-486a-8e75-6260e00887c1',80,55,38,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-17-1'),
('a42f0e06-70b7-4d47-8f06-7c5688fa2f0a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-49'),
('a4312e16-ada9-487d-b6d5-aac4f5e706c7','542181c6-dabf-4cbd-b756-74abe3440744',100,200,21,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-10'),
('a4372ce5-52dc-4054-bf60-9388778cf906','6f8fd929-0228-4fd9-a182-83fe855d3f5c',115,19,36,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-16'),
('a4388908-b7ea-4be0-9721-bd7fcc621190','77ee5c9a-b4a2-4ff2-bf2f-c8dde20a4100',51,51,70,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-2-2'),
('a43a13ec-d957-4bd0-9e78-e49a1becb974','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-6'),
('a43b10ee-e46c-4c2d-bea7-6eac5fa5723a','f0d0f679-0435-47ac-98c0-ecc939f711dd',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.875','910775394-4-4'),
('a441ad6b-a920-4b4d-bf63-f0e22bad96d6','7b2d4551-a99f-4fb6-8215-e7af3afe860e',40,40,220,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.123','486184665-1-4'),
('a44391be-bf9e-4036-bae9-755ccb92d63e','a9828fad-e20e-4e73-98f6-917c06f178f5',235,60,95,0,'2024-03-30 10:54:55.588','2024-04-04 12:48:48.669','982189682-1-4'),
('a445ead6-c2fb-40fa-9414-acf1a9a14668','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-35'),
('a4486c0f-658d-4079-ad27-46db83c9fa85','8c1d061a-bf51-4cca-b610-45c125718335',64,93,98,0,NULL,NULL,'765334693-2-1'),
('a44a1441-984f-4928-bb8e-4997611455af','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-11'),
('a44bbc81-36b3-4879-8d1c-23a18055220b','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',225,58,19,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-2'),
('a44d5aa8-e3ba-48b8-bc20-5fb2cd50954b','46967417-5579-4330-96d2-b8546922819a',26,82,202,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.892','428561353-1-6'),
('a44e0a55-768e-47fd-8deb-5beeadc0e8ec','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.870','223337181-1-91'),
('a4509e2b-f32c-4889-8d6c-0d5f9620e32b','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.090','412139250-1-12'),
('a4522cee-bf25-485e-8718-4f689a3793cd','ce42e11e-4d43-4c6c-8883-9e3ebd875644',230,80,90,0,'2025-10-06 07:10:17.714','2025-10-16 08:43:39.292','644407379-5-4'),
('a4527609-9be4-40e6-82ca-4f3e01236021','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-38'),
('a4531dfb-f979-4c7b-b650-ec2f9323b9af','869845cb-83bb-4465-bd39-430dcb105252',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-2-3'),
('a4545b67-0ee5-4028-957e-68750202e375','b406e820-44f0-4685-8e93-c95709e1da71',90,76,250,0,'2025-07-02 12:43:44.589','2025-07-18 05:16:08.058','248352114-1-3'),
('a454e32e-c887-49e9-a79d-a9033acca932','6f3eb494-c4ca-431c-aab0-4a54b9aa3bf5',51,51,77,0,'2025-05-23 14:05:07.259','2025-06-07 08:55:09.675','644106987-1-1'),
('a45698d1-6b2d-40bb-9a16-7da2f57e6acf','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:21.014','248135683-1-91'),
('a456bf32-e765-4dd1-a55f-f51734a4de0d','618e1331-42cc-4157-b66f-62404be9162b',110,139,67,0,'2025-10-14 09:22:04.937','2025-10-22 07:00:50.606','808922349-1-3'),
('a4570fa1-6b61-41c6-8e55-fb2463941161','a34e86a8-520f-45c7-9873-449302cce2c8',97,215,8,0,NULL,NULL,'221574787-1-3'),
('a4581fb8-e25a-4bfd-a2de-2b3dab2078f3','6ec87888-8b87-4bf1-adae-d5b6742225d9',204,98,25,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-6'),
('a45b0743-11d6-423c-9852-3571d10d8561','10d4880d-aab8-4452-8088-45f0cec9ee21',42,115,109,0,'2025-07-12 09:20:38.791','2025-07-22 13:23:15.210','644344492-1-1'),
('a45bfae0-bd0e-427b-9ccf-f175f949dcf4','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-40'),
('a45d838e-4b18-4282-b395-87feb4f00d87','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-63'),
('a45f44d2-02ed-4f22-9295-7d5b692c4f86','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-60'),
('a4635cfb-5922-4ea8-839f-64ac10021293','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-25'),
('a465daa9-36c6-4d1a-8e46-509c4bfc2a65','c1f2b5e0-5126-4601-a7fb-9b003f6d59c6',80,80,77,0,'2024-03-23 08:36:09.438','2024-04-03 18:54:55.086','319533001-1-1'),
('a467e791-f98b-4525-89ca-f75127e916b4','0fbc8a59-8a38-472e-bcd7-358dfbdaa902',84,100,95,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-2-5'),
('a467e99d-c8ef-44db-b0da-36b5a5fc07d3','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-9'),
('a46a8307-2770-40f0-af41-16079a9fed05','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-122'),
('a473d402-ea5f-44fe-822d-0dda7bc9f5d1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-212'),
('a4741367-d9ca-448b-ab1e-cd1474aca987','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:13.726','248284003-1-11'),
('a4753825-c7c8-4e6f-bbaf-05284a5a2e8a','0bd42145-fdd8-4793-a5cd-a2e404d37142',140,47,6,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-21'),
('a477ba27-f805-42cf-9be8-f05aee1894bf','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',74,53,101,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-2'),
('a47a9be2-9e79-4a2e-9efb-2f212a7a406e','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-14'),
('a47cc8f2-afc9-40cb-ad4a-a77be3b20ada','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',196,70,92,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-11'),
('a47e55a7-94db-471b-8868-761010cd77c4','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-10'),
('a47e7dd9-f0c7-4b33-bcf1-1f4153f0418d','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-2-4'),
('a486733b-ca49-49d0-a740-9739afe8e9e2','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-2'),
('a488fe84-2425-41fb-891e-fe0c222a388e','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-14'),
('a48eba20-7ffa-44e6-bcc9-8e276238a908','c671dc61-dbc8-400b-822b-b699e7404616',185,90,75,0,'2024-12-01 06:48:24.692','2024-12-07 20:48:05.906','465313266-1-2'),
('a493ea2a-ed82-4bc0-ac2a-709c6e02c256','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',95,49,55,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-3'),
('a4942b82-05a5-4425-a803-a20b9f77e1f8','b55602e5-8dff-4702-941e-3ee46c8104e1',0,0,0,0,'2025-02-27 16:45:44.002','2025-03-10 13:01:45.189','745935889-2-3'),
('a49581ca-f686-4b8c-8bee-dc8c2496d4c7','53025d92-f019-4f5d-9b69-68a3b09bb7bc',43,208,4,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-19'),
('a496a6cd-fbe7-4291-b5c6-10862a575553','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-70'),
('a4980100-dc19-48bc-9c48-fca87fa2c481','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-6'),
('a4a29067-8b36-4f8e-9c9f-6f370a085857','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-3'),
('a4a7645e-c668-425f-b0c3-3b34f319cd37','cf5c6387-b585-4f33-a565-829b3e46fd0b',94,25,239,0,'2025-06-27 17:12:29.093','2025-07-04 21:24:47.648','478261120-1-1'),
('a4a8d156-b5c2-4b8c-bc02-e8be007739fa','638172c9-793e-4ec5-9ad2-cf82bf06eca7',110,100,6,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-3'),
('a4a9c6ae-d936-4b73-9965-090073aef188','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-81'),
('a4b1fd97-674a-4fca-bb4b-350da1080f38','7afc8da4-5eda-4e4e-b6ca-e7b2aa75e00a',98,98,70,0,'2025-04-11 13:41:57.197','2025-04-23 08:12:45.151','371102325-1-4'),
('a4b5e232-f019-4540-8fbe-27a1a3b8926b','c02ffcbf-98bf-4c9a-9545-ddfcb6da67da',73,73,74,0,'2025-04-21 06:13:14.704','2025-05-03 08:05:38.336','221804377-1-2'),
('a4b7386f-9331-4106-8f9d-0f5969a76823','0cc39437-8ee1-47ea-87c2-b9fe770c2259',157,187,10,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-1'),
('a4b78659-c0c0-4a9a-9f96-e6a9dc28073b','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-60'),
('a4bbd8d2-e5bf-4229-86f6-da78148dc0e9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:22.014','248135683-1-215'),
('a4bc5a2e-3955-494a-abd4-a6af615582e1','8deacde5-3bb8-4300-9f05-ea02527065c5',30,198,158,0,NULL,NULL,'449181756-1-5'),
('a4bf72ab-b82c-484c-b85a-c9c921b13738','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-54'),
('a4c1e245-a53f-4e2e-84fe-2f75053467c6','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-12'),
('a4c24c8d-5703-49c2-a9cd-8f602fe75bf0','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-4'),
('a4c62f45-63be-4b9b-bc44-5bbf855f4a3c','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,215,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-12'),
('a4c7752c-8437-440b-a4ac-a66f900d4966','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.013','2025-08-27 05:41:45.747','910632087-1-13'),
('a4cdec37-3973-4f12-91d4-dc9887ccac7d','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-35'),
('a4cec02b-b471-4266-884f-d65047e7f8ed','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.648','734499902-1-17'),
('a4d15f39-3e5f-44f0-87f8-deb6390ce7bb','5b059fff-d93e-4d14-9124-dafac1695757',95,163,15,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-3-2'),
('a4d16e60-6260-4f70-9a0a-2acaf1eeeb21','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.213','412574307-1-1'),
('a4d31f1b-a4ce-4f21-b843-2ff21392cb9e','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-36'),
('a4d7ae69-ea71-4139-8ca9-db686e1f6cfc','a5626ae2-9a5a-4401-9095-a368c22814f1',31,20,20,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-20'),
('a4dec16d-0bb1-45f1-91b8-f07ec299d70e','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-6'),
('a4e2049c-530a-492d-b99d-17fd8d807c5e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-100'),
('a4e3e253-a031-4843-a7a1-8e8c9b1c0d4c','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',93,94,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-4'),
('a4e74e29-95da-4046-ad7d-b4649b36aaee','b4b901d3-9cd2-4740-9982-7eb46cabc80e',97,70,185,0,'2025-05-23 14:05:54.830','2025-06-03 13:20:22.991','37142091-1-2'),
('a4ebc0ff-5eac-4883-9281-2658c9726296','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-75'),
('a4ec0759-ac5f-4f93-89f5-f80ff245b6e9','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-24'),
('a4ec5933-342c-4085-a98a-bb3b8b44502b','3c1cb08f-5b16-41b5-872a-3dbcbd15c877',95,65,80,0,NULL,NULL,'910323683-1-2'),
('a4edb759-ef55-4e67-b9b3-abb5e08cd49a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-149'),
('a4ef6aa6-7084-4428-af7e-be0c4c012a2d','03ad506f-f86b-4dbc-952f-52b01e2467fa',180,142,6,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-43'),
('a4f14de8-137d-4dca-9627-afcd4e8ed582','173bf365-8e09-4aa5-90c7-1bdda2c188b1',98,123,67,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-1-3'),
('a4f1ce32-4c6a-492f-bc52-d4e4d3c27f9a','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-20'),
('a4f30140-91aa-4329-94eb-11476ae21c42','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-17'),
('a4f5b2a4-e863-4cd5-86dd-db9f2afd2ee7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-60'),
('a4f6fa1c-68a0-4825-9c98-24dae1ee7a63','ee746bfd-05a6-49f4-9eca-b7da110692d7',3,158,198,0,NULL,NULL,'428172853-7-4'),
('a4f7edd1-cdf4-4f4d-b4ff-3c61b39c298a','796fef16-71d1-4946-b8ba-54f687adf598',180,95,9,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-20'),
('a4f80e0a-4e5e-44aa-8e24-fca1fdc35a14','a07bcb7a-9868-44db-9691-88f2fc3163bd',55,50,95,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.774','644877864-2-2'),
('a4f816d2-9738-4784-baad-e9fd94e53216','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-99'),
('a4fad5bc-4d18-4b1e-94bf-c73c158c0415','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-10'),
('a4fd3c2f-0426-4693-bc7e-f8e46b4b6151','81d0dc47-7670-4778-9132-e810a9a4d368',63,90,10,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-7'),
('a4feef98-6d65-420f-a4ed-b8b6845c0649','7a221082-1858-44f3-b094-3a693cf4ef01',51,51,76,0,'2024-12-28 21:42:15.499','2025-01-07 19:30:37.794','221883606-1-3'),
('a502bb07-0dfc-4b8a-8489-95b9450751ce','b78519ec-4b79-400f-a709-a1f09256d30d',44,65,6,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.983','750125400-1-32'),
('a502c0b1-8762-44b5-ba43-b8a7cd1fca69','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-54'),
('a50488ee-a5e9-43bf-a235-d186651fe263','8625abf2-719d-4d7f-b206-16948b318b8b',230,75,100,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-17'),
('a5058f4e-29d4-43b2-95b0-e988c3afbb1f','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',80,80,76,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-2-4'),
('a506aceb-cba4-464d-9a83-b5b411f38f47','8c2422b1-01c5-4a6d-9049-4906bf144020',90,200,29,0,NULL,NULL,'74532359-1-2'),
('a50aa0b5-1ca9-4f0a-809f-24af30f6d0d1','b628ce1b-6b78-4402-9d3f-96ac8321b505',52,10,220,0,'2025-10-20 07:18:02.414',NULL,'817682643-5-2'),
('a50c30c5-66c8-4bb6-8a77-b9d490446a9f','cc81edcd-ad63-47e1-a989-8ed1f6097722',123,73,7,0,NULL,NULL,'37151088-1-5'),
('a50d5c0b-9555-4b38-8c56-6ffad6bebae9','f68d0980-0e5a-43f8-a0a9-37a8fd050188',0,0,0,0,'2025-03-24 16:01:48.403','2025-04-05 10:58:03.788','248475044-1-2'),
('a50deb27-a276-4a51-8ab5-d001d221a96b','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-2-5'),
('a50e12ab-5001-4dd0-b579-ab03cdaaeb43','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-12'),
('a50f931f-9400-4094-9e64-7a87ce0ee18c','86de9321-5059-496b-85e7-43b068bba29c',51,51,77,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-2-2'),
('a50fa94b-96dc-472b-88ec-1dd94f1d7990','ef0789c3-230c-45b9-8414-11958c24d45e',56,83,101,0,'2025-07-08 11:31:29.130','2025-07-21 10:22:31.990','675629833-2-2'),
('a5102cfc-0d50-4108-9191-bbb75b32d6fb','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-11'),
('a510a990-39c7-4ef0-938a-23e91ddd5d91','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-3'),
('a51484e3-47ee-4bcd-9aec-e5b6e1ab2808','1fa0d27f-c4dc-4c7f-b202-ba5d273805ee',0,0,0,0,'2024-11-15 17:06:46.420','2024-11-27 08:20:07.312','745936573-1-2'),
('a5175c04-b244-4c93-9641-595efb5ed5da','bfba3c80-32b5-4b72-8dbc-a208cd17eeda',0,0,0,0,'2025-08-27 19:39:52.135','2025-09-06 17:54:24.940','221251932-1-6'),
('a51d79d8-2d73-46ef-a706-c21a2962785c','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.514','412903480-1-3'),
('a51f7b14-cf3c-415e-9a3e-4d9ae76c94fe','4bf4c188-ebf9-429a-8ede-d43489efe0cb',35,35,202,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-2-4'),
('a5209209-62b8-4f70-b7f0-8614b9a663b0','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-60'),
('a5255544-5a30-4719-b88f-ea358c934089','fc62f08c-a4dc-4f3a-b1bc-a39834539515',51,51,68,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.759','515956879-1-12'),
('a52759b4-9881-4438-a8ba-96fd61d0dfdf','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-49'),
('a5275f74-d0ef-4e85-b730-217a71b69120','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-3'),
('a52c3a53-dd38-4aff-badc-2daecf45fe2a','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-55'),
('a52ce655-366a-4c37-9068-3072c00391da','173bf365-8e09-4aa5-90c7-1bdda2c188b1',98,98,67,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-1-4'),
('a5337251-4cac-4870-8ce4-e23fcb479cb9','f0485a78-951c-4f89-bddf-b2003f0bf783',25,43,75,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-43'),
('a537f546-3101-4650-a759-14235517448d','0009aeec-e682-465c-b701-363a3ef377a6',50,27,50,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-60'),
('a53a0691-e1c9-4056-b278-95bc3456e44a','a8240df2-bc04-464c-afdc-dd0bdbe1643d',0,0,0,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-4-17'),
('a53a2434-93b5-471d-b6fe-1188a2967606','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-7'),
('a53a563b-119e-434c-8ddd-04ea25c25f1a','145acb30-1c39-4fcb-b4a1-ded11d8b7586',95,70,103,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-1-7'),
('a53dabe4-3795-49a4-9d0c-f03a08f312aa','1d2ec7e2-f735-46a1-96be-3994af90aaac',195,160,29,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-9'),
('a53e1ec4-c7a8-4f28-9a7b-7239b6639e3a','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-14'),
('a5456584-851d-4359-835f-90ef6ee53762','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-20'),
('a5477ea7-b081-4563-9431-5af15062cf90','b0a7ad0c-b46e-4dae-be4a-303537beeaf8',0,0,0,0,'2025-01-04 10:47:45.156','2025-01-08 20:28:24.025','428490126-1-2'),
('a54936d5-944d-40f2-b3e5-6f5510f81d65','a29194f3-32bd-431e-8e88-ee7de37b7b46',51,51,77,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-3-2'),
('a54d4d9d-b1df-465c-895d-beccdfd531dc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-229'),
('a5505d33-2101-4746-805f-9916458e9812','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',64,163,4,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-13'),
('a5506967-0e89-443f-87c1-47d6a6f70af3','71739720-3bf4-4e85-a052-44d40ca1db0f',0,0,0,0,'2025-04-30 14:29:27.263','2025-05-10 20:13:32.865','478662278-1-5'),
('a550e895-9247-43a0-bba9-136cb8f176bc','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-4'),
('a5511417-e070-48b9-b475-582ab1f91b89','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:40.759','248135683-2-36'),
('a552fa8d-8048-46d5-a19e-0b0beec631ad','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-10'),
('a55349c5-be3e-4544-9607-fd7d2ba4a0de','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-8'),
('a555809e-f4d6-4c7b-bd8d-cd6d90f71ee0','3d740bd3-88dc-482c-bec6-f4b0fae42557',85,110,55,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-7'),
('a557248f-6203-419f-a8ec-b71b15d9b739','f736ebb0-2344-4b12-b853-5ab586355287',51,51,77,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-2'),
('a5590f9d-6f57-493e-b5ae-accd5db49947','a3c10ccb-9b91-412f-ae75-fe3fe1a6ab51',60,41,41,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-3-2'),
('a559bd39-0daa-4c5c-962d-c41c51b364a4','426edf33-c45d-4446-b38c-af56172acc0a',85,75,70,0,'2025-02-13 20:43:33.268','2025-02-25 17:03:41.023','449448008-1-3'),
('a55ac4cd-a1f7-4d2d-b118-614e2a496def','24b375d8-76fe-446e-b328-26e7a51cec10',100,90,80,0,'2025-08-27 19:40:22.423','2025-09-03 19:37:53.203','644880161-1-3'),
('a562045b-8458-4fde-9e01-ca3896e87a06','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:23.043','248135683-1-11'),
('a566a705-b7f1-4295-b5c9-e1a743f1c2d1','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',180,80,70,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-9'),
('a569a3d5-383e-42fb-8f63-a46bfb40c04e','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-8'),
('a569adb0-8592-4e20-b6ec-4486224f72ee','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.800','2025-08-25 07:06:53.264','982561254-3-1'),
('a569b785-3cf0-4117-90d2-ecb2eb41ff67','510115d1-e038-41e5-900d-014ceefd89e8',106,106,8,0,'2025-05-24 17:55:24.778','2025-06-04 19:39:30.245','268418662-1-2'),
('a569d021-1036-448d-90e7-036ebc90c9b2','1bc30bdc-dbe8-46e6-b9da-ced1339173a8',45,45,10,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-1-3'),
('a56aa8c3-90c9-4060-ad77-a576c7470b3f','f702dc4e-af8e-41dd-8ba7-0b404624d574',0,0,0,0,'2025-01-11 15:20:09.430','2025-01-19 14:52:25.259','750704426-1-2'),
('a56c888c-f27d-41a7-ac33-aaf720d956c7','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-3'),
('a56ca500-2696-4bad-bac6-a6c9e3ed77e3','1fa4834f-6874-4d5a-80f2-1b8fe854abcb',51,51,77,0,'2025-07-12 09:20:25.398','2025-07-24 06:22:57.917','817918521-1-1'),
('a56d9d2b-5009-4498-9663-7cbcc0f4d152','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.697','2025-08-22 10:59:14.820','223853931-1-8'),
('a5744200-fbf3-408a-b944-b231e63a4e06','1916ae7f-80e5-4993-b31a-1869332c7d71',37,230,37,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-3-4'),
('a57480dd-2aee-4ff9-bb24-f7cd3363bd00','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',167,216,18,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-8'),
('a579768a-9547-4ee7-b62e-5b4aca22c814','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-71'),
('a57de992-3012-4fbc-b898-46c1abb93a11','60fb62a4-8365-4095-8f73-1e4ce71568c0',45,104,73,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-3'),
('a582ee11-f602-4439-9092-190634f58885','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-65'),
('a5872d5e-69da-4ea7-ad4b-e3275bdb9ffe','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-44'),
('a588abc8-b0c1-4aa8-b39a-9b13892f7ff0','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-114'),
('a58ab17e-d315-4f08-a064-2476f6eeb5f6','8966cba6-713b-4094-b1bc-e0e0d0f8334c',50,50,82,0,'2024-11-21 10:29:10.267','2024-12-14 14:37:46.208','126561228-1-5'),
('a58f5e48-1499-4731-ae3d-106c73b54d09','511dd59f-0532-4fbe-850c-9fb40dcb2a8c',240,93,63,0,'2024-09-19 18:27:21.673','2024-09-28 07:10:38.860','982118676-1-4'),
('a59081d4-cd0d-48f7-8c07-787dd0970c8c','c6fb119a-d102-44f8-a309-82df366c405f',70,70,85,0,NULL,NULL,'478739679-4-4'),
('a59424fe-61d5-4e52-a653-107e6506748f','fed28e47-8397-440d-8404-a285a8bdefbd',132,203,11,0,NULL,NULL,'011399882-6-2'),
('a5972970-b033-4d2d-9503-00e1250161ab','a455ba66-b417-4781-a6f2-6fce1b8bab23',60,8,212,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-16'),
('a59a062b-7f79-4ed4-9761-65f1f2c43cbe','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-15'),
('a59bbf36-76f6-4cc3-ba2a-0fc1dada1e72','78c5f4f6-2307-4b72-8615-22388f9576b2',0,0,0,0,'2025-03-24 16:01:43.923','2025-04-05 17:48:11.560','478325717-1-2'),
('a5a07c03-6b9a-4a7f-8574-b82173de634a','f88c3e53-b711-4bcb-aa3d-9543580054cd',50,202,8,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-18'),
('a5a41e31-ffff-4ef8-975f-d55a0c97f4e9','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-5'),
('a5a6c7dc-bea8-4967-88f2-e5d394e151ae','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,90,70,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-1-5'),
('a5a73418-90af-441d-bffb-534a586082cb','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-13'),
('a5a7d06a-d57e-4c50-8890-f9f034c156c1','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-28'),
('a5aa4de6-8032-46b2-a68d-7928ba2dc54d','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-4'),
('a5b02735-dab6-4a85-a516-c242d7bf31e0','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',210,25,11,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-41'),
('a5b08cba-b41c-41b4-8bdc-e0e1ff366149','692498cf-64f2-4260-8e57-e8b680a64cdd',181,200,26,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-1-3'),
('a5b2d04a-201b-4125-aa62-80d7987e43ec','0009aeec-e682-465c-b701-363a3ef377a6',220,107,7,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-61'),
('a5b34b39-4909-4ab3-ad7b-7fd1bd5fc573','bf3c6d76-210c-4d83-8776-c792b4de5d83',94,202,28,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-5'),
('a5b6c023-076a-4b91-86a0-08dc3dc0af3e','dd2ab40f-13ae-47ba-b1c8-ba73ba248b05',180,200,32,0,NULL,NULL,'47856812-4-1'),
('a5b93cbd-9c09-4eaf-b89b-f663bf265f7c','a87576e3-14e1-46a8-99c7-1d48360995f5',73,44,43,0,'2024-08-31 13:26:37.525','2024-09-08 18:51:02.007','223275516-1-11'),
('a5c41b78-9a1c-4852-bd24-104993419ccb','8132d4f6-fb04-49dc-9449-05b8d519868b',92,65,131,0,'2025-05-24 17:55:19.369','2025-06-05 20:02:48.161','428704278-1-4'),
('a5c81945-8b78-4176-825e-8fe14985ed23','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-15'),
('a5c8f148-592a-4351-a2d2-b3a5b4948e1e','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',8,134,190,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-8'),
('a5caa9ef-e15c-49c1-85fe-d350766ae98a','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-14'),
('a5d0a68d-d0f0-4f1a-ace4-e37afd9e94e8','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-2-4'),
('a5d755b8-8e17-4772-b35f-ad393fd4ad1c','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',47,16,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-25'),
('a5d77336-efba-4f73-a8da-d42ec652129f','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',72,68,18,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-6'),
('a5da6148-2aa4-4379-bfae-bfde0914ea8b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-19'),
('a5de72e7-048f-4309-bcec-027b84063da9','a322199e-9388-4cdc-a475-2497cf269eef',245,15,65,0,NULL,NULL,'501589922-1-23'),
('a5e42bf1-13fd-4f46-ab91-0b64c38e2890','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-52'),
('a5e8ad67-cfb7-450d-a9db-61e844c4f675','7b379856-328b-48a5-b13a-c96f1024ab32',0,0,0,0,'2025-04-21 06:13:27.195','2025-04-30 07:24:50.248','478548963-1-1'),
('a5ed13a4-5f91-415b-ab93-b54f5b71729a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-70'),
('a5f434d6-31a9-48a8-81e3-6911d0eaef24','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-28'),
('a5f49be5-03aa-43c2-a68b-29891d1fe5e7','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-66'),
('a5f72ef2-e7ae-449b-823d-21f21add4a7f','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-10'),
('a5fa7102-5909-4668-80a7-25fd336a795b','affb2ea6-71a0-4d35-9267-d30788f4e193',97,166,5,0,'2025-03-13 12:21:17.153','2025-03-24 16:02:44.915','221624652-3-3'),
('a5fd45d6-e405-47c8-a849-840a66dc44f7','c9b410bf-c39f-4d56-97b6-272196df3cc6',58,52,52,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-4'),
('a602393e-46d5-4903-960d-c2e7173cb922','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-8'),
('a60a6f9b-3500-4a74-86d5-75afe038eaab','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-1'),
('a60b64a6-9f81-45a0-8df5-d953380114e1','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-4'),
('a60d795b-8ce9-493e-9644-48350ba6f72a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-159'),
('a60f9d66-f279-4af5-a8a2-7b2d31c44163','c46208e2-2c19-421b-bced-7443bbea66ef',57,80,110,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-2-3'),
('a610733c-04d6-477e-8e72-1703918110fe','767f6a12-5e00-41d1-992e-56b1d6a8b714',63,85,66,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.058','982843761-2-2'),
('a61380de-3dd4-47cf-94b3-ac4eca5cf968','d8e303a8-8046-475f-835c-016b3dbd77bc',72,77,5,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-4-3'),
('a61501de-b566-486f-8663-277a4ee693e7','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-3'),
('a6152b18-c214-44db-aab2-dd611be0f6d8','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-11'),
('a618fb5c-3ef9-411f-9025-923cb2048fa7','e84654c8-e309-4ec3-aa52-1952869a8173',61,61,85,0,'2025-02-03 18:19:39.936','2025-02-11 17:09:18.216','910638892-2-5'),
('a61ddd98-0b64-4b9e-9dea-b34ec32ec412','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-9'),
('a61e9689-857e-4e93-a6d6-fde6c4c77503','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',71,26,44,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-9'),
('a62153aa-ca36-48c5-92f9-5a3a65d0ca4a','be66decf-7f30-4b07-b179-31985aca45a6',51,51,80,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.887','478659791-2-1'),
('a621d23f-bff7-4c4e-98db-222a51637fa9','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-26'),
('a624760d-eb2a-4532-b734-539f05e142d3','fb58f438-30e4-4e01-af6e-6378e27a11fe',75,19,48,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-16'),
('a626e42e-e99f-4514-aade-b2598823ee8d','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-16'),
('a6279b01-759e-41c1-842a-334853bdb485','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-14'),
('a62aabe5-e574-428b-a0b3-30261c4dcdbd','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-5'),
('a62c6764-3151-455a-b338-2654e0dd8cd7','0655c66e-ad8e-4f89-af46-bcfa9a272b8b',95,225,70,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-1-4'),
('a634e1fc-1597-4439-98c6-6a1afc2d27eb','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',217,66,48,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-2'),
('a63659d2-cf09-495c-b415-8a85ef3ba362','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,55,6,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-29'),
('a637e0fc-613b-4398-8e5a-00bab22bcc4c','a455ba66-b417-4781-a6f2-6fce1b8bab23',57,5,224,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-17'),
('a63b1f66-9414-4a86-a0ee-5eb70d5f066d','0045cf50-baa2-4fa7-a3b7-47eb972ef774',51,50,76,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-1-2'),
('a63b84c1-b2b3-45ac-8dda-5a6e12562754','da8440da-e3c4-4852-854d-19123cbe7e56',0,0,0,0,'2025-05-09 18:43:57.347','2025-05-21 08:16:23.972','151258703-1-3'),
('a63bf496-e2bd-454a-b128-45a8c1845044','055c6f8b-9b1b-4daf-8b1c-5ee2ad6db7d4',56,82,101,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-1-2'),
('a63c8a4c-3ce5-4f69-80e8-073159fc3a79','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-16'),
('a63e8abc-3f0f-43ad-820f-d432cd78ac6d','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-31'),
('a63fb151-506f-49a3-ab0e-fc2d8c2e91a9','df3b19de-7db5-480e-801a-a689b8d2eda0',100,123,65,0,'2025-10-25 08:58:58.836',NULL,'74521183-4-4'),
('a64017d2-9c0b-4dc3-a2f0-33e5420a9ef0','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',5,67,93,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-24'),
('a646e495-e82a-432c-971e-9c3db31913fc','a5626ae2-9a5a-4401-9095-a368c22814f1',82,205,2,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-21'),
('a64cf565-f8c4-452f-b3ce-954669a8991a','5e372d49-2995-43b9-8175-cfd3bd1f09b8',104,72,65,0,NULL,NULL,'37198203-1-5'),
('a64ed0c1-6990-409e-905c-d687e9e60918','c718bd33-40e6-413f-9c77-4b72f9839344',137,62,78,0,'2025-10-08 14:44:20.307','2025-10-20 06:33:02.574','765484490-2-1'),
('a64f87bd-7055-4f92-a1f0-2120550668c8','e0dbbf5d-76ca-46d1-aada-413e8b306150',1,1,1,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-2-2'),
('a651c87e-a73e-49ef-a754-006d1569b569','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-24'),
('a6551195-5238-4430-946f-2793465e4a51','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-14'),
('a6558117-aee5-4e90-9732-61c2ffc290c8','be99e41f-406c-4044-b60a-ad33dea43bd8',73,73,30,0,NULL,NULL,'319400399-1-2'),
('a655d024-39de-46d0-bcfd-c96041822bbf','e1601d35-cc40-41a5-8e8e-8005a1281654',112,12,33,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.841','428752676-8-11'),
('a6562149-03dc-4733-b15d-26beb1c73e39','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-86'),
('a656c4af-0229-40ce-bf2c-a8252082ad3b','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',43,21,181,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-7'),
('a65d5469-1b8d-4468-b558-2edc406835ad','4dd2214a-d123-40a1-9fac-e86f897ef467',54,76,101,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-1-1'),
('a6607f43-5725-4552-8069-bb44cd9492ea','333b3000-8c9f-463c-be8e-d21ba57a8f50',51,51,77,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-2-3'),
('a661ef8b-e806-48fb-87a1-0cd0fda385b1','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-6'),
('a6634165-54be-4688-8c0c-8ef2717fae33','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:23.687','248135683-1-164'),
('a664659a-dbeb-43f8-808e-25db74dca488','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-21'),
('a669b8b4-80c3-44f1-9919-4431e8319538','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-16'),
('a66a7d0a-2087-49d4-a505-bfcf71e53a76','546ad3d0-25c2-43dd-9443-e48b8e5b6530',85,100,5,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-7'),
('a6708c71-8453-459b-93b9-86265f62746d','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-14'),
('a6712f5d-0d22-427e-a105-195fd0c14c6a','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-21'),
('a671691c-9c58-4219-874c-2c32b3d85c2e','b11a7688-4046-43cf-8820-625309aed56f',102,105,65,0,'2025-09-02 14:48:30.710','2025-09-10 07:23:42.948','011255060-1-4'),
('a67447e7-821d-424a-9a58-8e30cb959e4e','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',51,51,77,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-11'),
('a6774911-3a17-433a-96f4-4efc757ccc27','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.496','2024-12-24 12:30:21.380','735736030-1-6'),
('a67ae9e0-eeea-47c9-a255-9070ca3e41ae','badecae3-eda2-41b7-b1c4-0a0ea4e409cc',52,101,72,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-1-2'),
('a67b0502-61eb-4f72-8d49-2ffde4e7e21a','661b31b6-5864-4d50-94ae-a24ef9908dbb',95,80,70,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-4'),
('a67c96a8-a09b-400e-87e0-dcc11a8929d0','07a1f778-de68-4dd9-b9d9-2b1657caa71f',0,0,0,0,'2024-04-27 08:45:28.603','2024-05-08 21:08:02.490','478686372-1-1'),
('a6844aa2-6f09-408e-b69f-4d9876602a68','6fcd8160-ca06-46ab-a691-51de5c394793',110,121,5,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-19'),
('a6865583-3b7f-446c-b9ca-fe5d85b0de30','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-37'),
('a689fa38-69fe-47c4-a577-bd91d04372da','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-37'),
('a68a5d4d-ce30-464b-a44e-6611ce37e3da','886e0e1a-c599-47ba-bacc-c329212cc55b',6,214,59,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-21'),
('a68acc2c-5d7a-4067-b435-92c15a9f93f1','49b0262b-aeb4-40b0-bdcc-b5461a64c972',39,30,20,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-3'),
('a68c97ec-ceaa-43a7-96fb-8730140a7389','c7711311-d9e2-44ab-9529-bf35ca0a141b',211,26,38,0,NULL,NULL,'613592756-6-9'),
('a6902b75-7e56-4d5e-982f-0ecf0a0b8fdd','b7df853c-c210-4f4b-bcc5-e0189a8ebe0b',100,200,80,0,'2025-01-06 13:08:12.164','2025-01-10 16:33:51.205','911398945-1-4'),
('a6929587-6444-4374-920b-92bdf0e40329','6af11c78-d8b6-44e2-99d3-cd7f615e9176',109,80,93,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-2-3'),
('a693657b-eb68-4d5b-a26f-6ba71d018723','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-16'),
('a695ca9b-ee21-4c3e-84aa-8cc66c6b28b7','379323a0-114c-452e-9499-778f51675cf1',51,51,77,0,NULL,NULL,'221383692-1-1'),
('a69c90d9-692b-4364-b702-8338a264e868','c891230b-a98b-467c-9f5a-6b1fd89f1dde',58,108,15,0,'2025-06-14 12:48:25.371','2025-06-23 09:30:00.019','982578025-1-1'),
('a69f2b95-e1e3-4704-bcae-f01c11095611','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.570','745508995-1-7'),
('a6a51936-a804-4979-a5a4-2dd306bba2ae','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-9'),
('a6a54bc4-8e5b-4929-ba61-b6c48464091e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-31'),
('a6a5e547-32fc-40e7-86ca-b753dce8e972','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.062','223441694-1-120'),
('a6a69c1e-c2d6-4f8d-88a2-4caa80e8a453','6d3c54e3-0b3c-4bf4-bdff-b28c7ce0ec03',56,83,101,0,NULL,NULL,'675346042-1-3'),
('a6a6d368-f6d1-4e13-ae23-b0c335f7f8ba','995dfcaf-53b8-4dad-ac21-6f4ba521c6d6',110,64,11,0,'2025-10-25 08:59:25.499',NULL,'478544570-2-3'),
('a6b26c5b-6fc5-4bcc-8db9-57dfb734ece5','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-84'),
('a6b55eed-d258-405e-9ba5-30d8e20c7bfc','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-22'),
('a6b5c171-418f-47f4-9cb1-bbbecace5657','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-8'),
('a6b6e6b1-3042-41f3-b121-0fe96aed7a18','2173be11-c6d0-41b5-81d8-89c770354a7a',10,20,30,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-1-3'),
('a6ba38cc-96a8-4794-94d5-8a66c817a45a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-82'),
('a6bbec73-953b-4afb-8677-8aa99a0af476','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-11'),
('a6bc440e-2af8-47b2-b982-e3a627d1901f','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,12,0,NULL,NULL,'501168544-1-16'),
('a6c71363-5613-43e7-a970-cfe3cccd60b1','b63291e7-9a9c-4942-9e5c-792e1279180f',56,7,207,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-3'),
('a6c7e634-f236-4ddc-9220-59bb87ace071','66f8d34c-0c41-46f5-98bb-500adbb6f636',58,4,82,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-15'),
('a6c9f5f0-2f2f-4a94-a1c0-92dafa70101e','0bafd109-abe8-42a8-b45f-d5053eae132b',15,133,20,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-8'),
('a6c9fa2d-6bc7-4413-a473-6b1415f4b5a1','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-1-1'),
('a6cbb426-c93a-4d46-8536-07f81ee4be63','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-34'),
('a6cd28ce-bbf8-49fa-9352-8dc411fdb62d','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-6'),
('a6cef5ab-a37f-4995-88db-f49b0f716154','e0478821-943b-4eac-98b7-c417fdf27e29',51,51,77,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-4-4'),
('a6cf5983-2ef5-4a53-b664-3b78c6aa676a','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-17'),
('a6d19879-5027-46f5-8103-52a86674ee68','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-4'),
('a6d1d6c1-55b3-4e96-8acd-a2a85f5f2a82','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',34,48,240,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-4'),
('a6d27f75-8519-42e8-b635-26579eb45295','d9566919-c3d1-4b43-9f35-08efcf51aa33',0,0,0,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.258','478245028-7-2'),
('a6d40abd-e946-4086-bc00-343e078c55d0','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',212,90,9,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-24'),
('a6d565e3-279f-4d1a-a2ae-9d207da019ff','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-13'),
('a6d847d6-68df-4e68-885b-1e50027d992e','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',16,110,7,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-28'),
('a6de60d5-136d-4be7-92f9-0ddfbf60ec0c','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-8'),
('a6e1e4b6-e34f-4d1d-a961-a9bc683616be','3535d433-eb38-4879-84b4-dbf8410809cd',210,56,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-35'),
('a6e53190-7d0e-4040-b157-35edc38cb861','5d93f9db-58ed-48cd-adb5-3427b2b7061b',0,0,0,0,'2025-09-18 15:48:33.491','2025-10-02 06:12:12.650','221996027-1-1'),
('a6e67a09-0b7f-488b-a1f7-3a4b61205b38','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-140'),
('a6e6d07d-febf-4b76-8584-c9bc385a4f1e','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-99'),
('a6e78008-ab8a-4ec6-a667-5e5df4c67303','97cf290b-486e-4260-be59-cd584543918f',78,37,127,0,'2025-08-21 07:15:30.112','2025-09-04 21:03:50.131','437880840-2-1'),
('a6e8c898-3517-4afd-92f0-84ec766b7d83','709a4a0a-91a8-46c2-873e-83b3fb46498b',13,116,215,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-1-1'),
('a6e9019f-5f0b-413b-8687-953d8b04323f','ec15369a-d405-4e36-84e6-106dfcf78af1',62,62,76,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.647','644377995-4-1'),
('a6ee31ee-fe41-4764-ac9b-f64988c15282','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-116'),
('a6f047ab-39d4-4925-868e-2663c70eebe7','9affc7b1-09c4-4e84-b48b-d0c117c421b0',136,101,19,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-26'),
('a6f0a1b0-1976-471d-a265-10ad12a1ff28','ca6f8e10-2fc3-4758-88b3-5193a7471753',40,37,68,0,'2025-08-25 12:31:54.926','2025-08-30 18:25:03.280','371684650-2-1'),
('a6f4f097-e50d-46e6-8a77-f94274c9aac1','bedd9b20-bb73-4dc2-b799-5a1a172888ca',120,100,70,0,'2025-01-11 15:20:27.109','2025-01-17 11:00:29.595','501588943-1-1'),
('a6f57371-32f7-4ef0-8ec4-408508175d30','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-17'),
('a6f71d8e-0f66-4a4d-bf41-cec6580f0135','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-105'),
('a6f9f67f-e46f-402f-8227-00d185a72915','ae1c857a-94b3-411f-9eda-b4b89f2608d9',53,77,102,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-1-3'),
('a6fb8c90-7967-4fb1-a7a8-b996ca795240','b2cc240f-bde3-400a-bbec-a61085853dd5',93,55,101,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-8'),
('a6fefceb-d14b-4fce-84fb-1ab84c3648aa','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-14'),
('a7010771-ec75-46f1-9c24-c0e79f5e4057','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',50,206,6,0,NULL,NULL,'531240111-1-4'),
('a70340e4-7b46-4a6b-be2f-0d19d08a48c1','3f45b858-208a-4009-b717-75d6afa7fc00',51,50,76,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-1-2'),
('a7047cb2-2246-4550-a412-cf46f2d45056','c1a31a07-5113-4703-99ff-14d4a90ef1ba',70,60,30,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-20'),
('a7061731-4993-465c-b50c-1a1185d12ede','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-5'),
('a70b7ed3-81b9-471a-885b-145c41a2cde3','577ac94f-b889-4af9-8d01-96034f38a36e',103,60,8,0,NULL,NULL,'478739679-2-2'),
('a70f0613-cbfe-4bcb-8d8b-aa3c9bae5908','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-4'),
('a70fe611-8f94-4a0d-aa0b-bf22c8f9c12c','6cee1429-9935-4eae-be32-dc630b6d70e8',200,92,30,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-26'),
('a710fdcb-26be-4556-b6a7-2bd76f18b523','1892069c-11f7-4d29-83b8-c0202a08220c',19,30,14,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-1-1'),
('a7116a4d-4ba4-462c-957a-12b7f9c7d4b7','a455ba66-b417-4781-a6f2-6fce1b8bab23',81,2,202,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-18'),
('a711bb9c-eda5-46ed-9327-d084c3631ecd','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.145','2025-04-01 09:23:33.516','478861689-2-5'),
('a7127d15-febd-47fd-a533-cc76253190eb','5a89fae8-525a-4de4-8188-2f4d7c892e74',48,7,219,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-14'),
('a7128426-306a-46af-90cc-6833975d7cbc','9e64e803-864a-49e5-97c3-c6b70116e171',97,99,40,0,NULL,NULL,'613362697-4-1'),
('a712d82d-72f5-4968-96ea-6c30092953c5','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-2-7'),
('a71326e2-36ae-4e8a-aa67-d732e612cc3e','a5506c59-0e9f-48a6-9b69-13a5163cf994',100,82,57,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-13'),
('a714daba-ad7b-45d3-8d3b-4d1ec5aed70e','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-22'),
('a7157b59-073c-445a-9341-2f444986be91','f0485a78-951c-4f89-bddf-b2003f0bf783',47,41,58,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-45'),
('a7188a2a-1067-4aa3-9b92-d603ac9e598c','91ea3c10-8c22-491e-b87c-0ed70a1b566e',204,98,70,0,'2025-04-15 16:01:53.400','2025-04-25 09:51:49.424','371376503-1-2'),
('a71e0910-2abb-42c8-a412-f56a0082ecc0','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',48,10,64,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-9'),
('a71f6240-85f8-4bea-8f72-2d89973a5ad4','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-8'),
('a72002e6-4af1-45e7-93db-0ca7876c3334','8c14a8a8-cbf6-4164-b5d9-66d11db192a6',32,28,22,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-2-6'),
('a72026f0-4d36-4c54-a17a-22a8a5207cc0','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',65,96,100,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-4'),
('a7202812-904f-4dc0-a842-f00b346ce590','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-28'),
('a7205583-916d-416d-96d7-a0a92b1eca5b','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-15'),
('a7209311-3d9b-46a9-a591-0a8ef4cecf09','349275ec-e320-40aa-a5b5-1c57b1cf65f0',97,209,7,0,'2025-10-22 13:07:06.149',NULL,'505724535-2-2'),
('a723febd-b192-42e3-a487-bb5342c05e49','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-5'),
('a725cbc9-0cf9-4c57-b80a-f91c63ef8f54','05af1df3-9a36-4be2-8bd1-773d59e1605a',60,61,92,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-11'),
('a726a0fd-2639-4bfe-99ba-0234586433f3','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-16'),
('a7275eaf-b4e7-436c-98e1-f556999cfffd','f38f268d-7a32-4f0d-a462-8692167d1d01',203,95,85,0,'2025-08-21 07:15:02.972','2025-09-02 06:52:12.482','478935366-2-2'),
('a727eaf4-ef03-4891-8a21-08632df74fa4','5632f22c-493f-4a5e-afdf-13268c32b047',47,20,67,0,NULL,NULL,'528640995-1-6'),
('a7296ffc-40fe-43b6-8674-e89aae1d6c6b','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-20'),
('a729ff61-3123-483e-b83e-baeefb4d18f8','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',59,6,210,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.764','745873539-2-8'),
('a72dca6d-8dd2-47a8-83dd-fd5b011831cc','af69c5a3-87d3-4548-a650-720b69a4fc69',76,58,36,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-10'),
('a72e8ee1-01ca-41f7-9455-a926fb932bdc','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-11'),
('a72f946f-8459-4e80-b4a7-9736682380f3','30c704c1-8589-442d-9b6e-d7f4eee7d4e3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-3-6'),
('a7324f87-f00f-4b6b-a420-605ca790811e','009d2ad6-5f92-49bd-8463-3fa964f7693f',82,56,100,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-1-3'),
('a737e6ae-4243-43c4-8b77-08449a53ef18','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-124'),
('a73b7d04-8221-40bf-a13e-448044f46b21','b23cf296-f843-4492-9697-0fd43d657771',24,80,10,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-12'),
('a73c6fd1-b9a1-4d32-8418-730b1d03816c','e6b2195b-f5ef-42c2-8ba4-0de51fa35962',100,70,80,0,'2025-01-20 11:21:21.000','2025-01-31 12:16:08.870','734460411-2-3'),
('a7427e0e-2d6e-4139-99d3-12328474c0e5','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-12'),
('a7433ffa-abcd-41ce-ad74-9f7e45cdb16d','ee5b3100-b151-4127-ab59-479d31aad576',0,0,0,0,'2024-11-15 17:06:22.252','2024-12-01 12:28:05.546','745334668-1-1'),
('a74354c0-852f-4467-b4fd-9f21e44b2f98','e0431245-c2c2-477c-a418-a601b6fbebb8',52,170,7,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-31-2'),
('a7441381-2fd7-4ee7-8215-e1bcabfff062','4a592bc4-f8db-45e9-83f7-6c3990c1cffd',110,56,82,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-3-1'),
('a746c4d9-23df-47a3-b91b-abf3d82d4885','6ca0cbb5-8b45-46fa-9e41-2771ad9644cf',93,113,65,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-2-3'),
('a74795b9-5540-4ac6-8182-373b77e50420','7f7994e8-0c66-45a1-8846-76386ada2b59',76,46,46,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-2-3'),
('a7490f72-0a2d-4f0a-b94d-b1db761728e6','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-68'),
('a74ac1d8-1f40-4a21-af64-9afca2fc8f01','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-1'),
('a752ab93-e0c6-4537-a522-9f8e4090bd09','606b177a-2516-4ee8-8a97-7fcc5be07957',50,35,203,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-1-3'),
('a752e8e2-6956-4197-a18d-5f2ebbe34933','0009aeec-e682-465c-b701-363a3ef377a6',70,80,80,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-62'),
('a7564ccf-9c0c-41b2-ad09-960cb46ac6d0','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-31'),
('a757c8ec-f185-4c40-87d0-bb5e969bb0fb','c4917d94-8c91-4f12-8ebf-b803c0150f37',250,240,6,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.491','598412225-2-3'),
('a75b97c7-0ec9-4ca6-ac5c-e9ee331e880f','f1aaaa95-2d25-4f45-b026-0107ca13ac62',88,63,63,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.457','616724751-1-6'),
('a75be4a3-46bc-4f75-a333-c9f5c30575f5','0a43887a-12ae-4e51-9586-f10e42c3bca6',38,23,207,0,NULL,NULL,'011399882-1-3'),
('a75f482a-f0fc-4308-b2ee-e59de954cecf','3f3bf1d2-c329-4e73-b2a6-5aa55d893969',85,65,75,0,'2024-12-23 12:00:35.871','2025-01-08 20:28:51.875','449329901-1-3'),
('a75fb721-7088-49b6-a834-da17ca74f4f9','40c4dd8f-39f2-485c-9dca-60d32029c90d',235,94,80,0,'2024-03-31 17:55:12.689','2024-04-12 07:16:47.839','982547993-1-5'),
('a75fedb6-589f-4dcc-9079-37fe6cb3066e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:13.258','248284003-1-37'),
('a763ed0b-5c83-4d1f-a8fe-f73d1242172a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:15.056','248284003-1-119'),
('a7646e80-a902-46f8-a857-b7711c315f00','db6bdbaa-a89f-4ef8-8ba3-88c9315a24f0',84,84,11,0,NULL,NULL,'371105450-3-2'),
('a766db67-258f-4933-a4e6-824710b3df2c','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',63,89,17,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-42'),
('a767a233-4dce-4759-8bfc-3bbdaf3019b4','7c09f776-ffb6-47c8-8828-61389547804e',80,82,73,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-21'),
('a76fc49b-c369-4c76-9443-fd4c7b04a9d6','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-7'),
('a77466b5-d955-44e6-a27a-adb17c29ac3a','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-9'),
('a7772eb0-249f-4494-abb8-4a3f21010bc8','154621b1-ffa6-4119-be67-ecb1d2de0d10',70,62,91,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-1-3'),
('a777f96e-9ba6-49d1-b249-74f7a0dd84cb','e6dbec74-0616-4752-8816-29db541e12d1',100,160,68,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-2-4'),
('a7794172-a2c3-4396-9cbd-5ee98a42759e','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-26'),
('a779d931-465b-46b5-b7cc-8f3e42e6934e','5255e75f-2972-4ac2-8063-49e650a876c7',55,55,77,0,'2025-04-15 16:01:34.960','2025-04-26 17:56:02.363','613112731-2-2'),
('a77bc552-5a3f-4c7f-957c-f61c62feb7d4','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-23'),
('a77c1627-a7d9-454c-b92f-30773b6a0d4f','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-20'),
('a77cb230-a9fb-4a1f-87c6-e28bbde1892c','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.455','745724680-1-36'),
('a77cc4ef-a167-4d42-badf-4a6ca930064d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-102'),
('a77e3ff7-2ef7-4ed1-a008-fd59c6f8d1e8','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-5'),
('a7820a3b-bc88-46f5-84f4-ca0d5f6b9d3e','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-56'),
('a78675df-3882-4bb3-89c1-5b5913d68078','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-38'),
('a786768f-7ca2-4a5d-a94b-44b167a5cd4f','86a60767-7224-490d-9d65-38533eedf53b',93,60,77,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.631','644243216-4-4'),
('a78755da-9961-4537-b745-1bdb7bb2b2f0','ef950bcd-c030-42d5-bca8-173f8ff8e8f2',36,52,75,0,'2025-04-28 07:40:50.293','2025-05-05 09:10:18.502','613725694-1-1'),
('a78824e2-d0e2-4181-a6ff-53e9ad0be38b','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-19'),
('a788862a-71e9-4673-b0cb-88c15fd3e3db','a7f92057-6250-4045-97ed-482e9da4c648',232,95,70,0,'2024-12-07 09:45:06.875','2024-12-10 12:36:11.155','501167444-1-3'),
('a78a059a-f89d-4867-9f34-a412a34cf3d4','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-23'),
('a78b1202-827e-40cf-8f86-f0b41820a897','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',190,90,40,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-7'),
('a78d1617-5229-423c-99d6-d8aefe1f86d5','73f0ed30-ea86-4dfb-b0e9-bfb3d380810c',57,77,101,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-2-2'),
('a78f4d97-991f-4b90-8566-d998db4a7ecd','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-97'),
('a78fc28e-ee1e-4359-ace9-617a9d8b12db','19f8d788-357e-4bae-a0cc-714638359cc7',30,11,180,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-7'),
('a7909440-7651-4c52-8050-d8c7e79e5d1b','6f883022-1eea-4faa-b6c6-489aa1c8866e',100,140,5,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-5'),
('a7914114-ec1b-42cc-a26a-3cd6b94acdf4','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-5'),
('a7922117-6db4-4e1c-aeea-e11fc92d2a42','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-21'),
('a7937158-7a5d-4944-b8b9-2297050822e7','d83c40d1-4df5-4c97-bc83-28837db95b2b',67,14,45,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-49'),
('a794f82c-bb50-4458-9bfd-1c299f31b537','cdfdd10a-5aff-42b9-befe-02fb27016fe2',120,120,80,0,'2024-10-23 14:11:56.802','2024-11-04 08:40:24.634','614345013-1-4'),
('a795b00c-8535-4647-bcb1-b2672cb01cf8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-61'),
('a795f21b-4d16-426d-96fe-bfe450d0ae3d','15838be9-2a38-4e80-b613-df9538785c9f',41,81,5,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-3'),
('a79d4a48-6bd6-4c2d-9e8f-beb0f9866111','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-12'),
('a79de6c3-ba17-478b-b564-fc9d359065b5','c2733454-d8f3-40a8-a705-b4d31da5c848',97,169,8,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-2-2'),
('a79e59b6-12eb-4c4f-a2d4-d4f9d4c80ddf','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-7'),
('a7a0dcd4-d868-4595-baec-4672e6fcc761','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',197,50,8,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-14'),
('a7a6cd5e-d203-4dc4-b20c-b43f252425bd','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-5'),
('a7aad14b-dbb5-47d1-91e1-3eefdeed071d','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-14'),
('a7ace7f7-5925-41e1-8544-8dce90936feb','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',69,43,15,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-122'),
('a7adc4c6-0be6-4684-8a0f-6bc9124787cd','a34ddd24-f4f6-4725-847a-abf5fa275d11',52,76,102,0,'2025-08-25 12:31:54.926','2025-08-30 18:25:03.280','371684650-1-1'),
('a7af8554-e393-4d70-9151-ef17ed8039b8','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',170,60,12,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-25'),
('a7afbc4c-c1b8-4cdb-b300-f8bd9c8b6d3a','3535d433-eb38-4879-84b4-dbf8410809cd',210,56,4,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-33'),
('a7b1c502-5d05-4b46-9b56-b55ae7392035','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',160,200,27,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-15'),
('a7b422ce-8f01-40ff-b66e-0ba479477601','af69c5a3-87d3-4548-a650-720b69a4fc69',16,62,90,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-42'),
('a7b47552-dc5b-4e6d-b0f2-fa9f52c3f482','32611eab-fe9f-4168-b970-d430359cb03a',48,75,48,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-3-2'),
('a7b4bdfd-c40c-4aa2-8be2-87d7c2b24c16','516b7da8-60b0-423e-ad0b-ba7b65a9acd7',70,101,50,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-2-3'),
('a7b8bc9c-6ad8-4122-a822-20abf67839d2','cd01ade5-adb2-455a-8f90-b396a501cae7',5,96,206,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-4-3'),
('a7b94374-7916-4f2b-8624-1af281455b29','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-20'),
('a7bb4dde-b254-493e-a217-2b8fab53b159','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-3'),
('a7bc6a16-7581-4e36-8b59-c89f4540ef94','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-5'),
('a7c03008-e4cf-42c1-9b4c-b15149d712d3','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-48'),
('a7c0adf3-25b9-465b-8f49-774fb09b1d5c','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-3'),
('a7c389d9-0606-4998-8b4e-fb6d0073a637','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-77'),
('a7c9326a-43d2-495f-b956-9d6eca4dfd04','d157292a-9b96-4a01-b210-9211e153e2de',82,55,102,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-3-1'),
('a7c95fe5-9d73-4998-92bb-0ca10455077c','18014a19-7e61-4998-9ca3-020a7d8a9ac3',43,39,39,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-2-2'),
('a7ca70d9-4017-4d36-b3dc-a631d21e8027','0365be5a-cb94-4992-8e8d-cb784930b2e7',120,125,85,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-10'),
('a7ca7c17-7636-434f-9092-50aaac3e47b6','676266f3-03e6-4ff9-92c5-07a1b81bc27d',95,95,82,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-6'),
('a7ca8e9b-a821-42cb-8142-94c6004f0f71','5aebc1d3-a23d-4e5a-a294-e71b1c0ce1e9',205,95,75,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-3-2'),
('a7cb6d81-b125-45f6-9980-7ee06f8d1d7d','eebe5042-de81-4afa-b4a6-4517e07ad579',91,80,75,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-4'),
('a7cc7699-223f-47f9-87de-755a73cd752f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-133'),
('a7d2ae1f-edf0-48d3-a1db-2c66f1ffa74a','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.081','2025-09-10 07:24:12.131','371180149-1-3'),
('a7d56dd0-dcdd-42b9-80de-058b9eed9ddf','54f49f0e-3750-48ef-be0e-ae8f72989d98',0,0,0,0,'2024-09-19 18:27:15.225','2024-09-28 12:18:48.558','982542299-1-5'),
('a7d61afb-4501-4dd0-91e3-f739741d84b1','e3bf303e-a53b-492e-b877-e5f3df36d63c',110,57,83,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-5-2'),
('a7d714bd-161c-4fb3-8e00-975c078bd70b','8b91c5e7-c071-4573-88e3-5264c5dc164a',51,51,77,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-3-3'),
('a7de395d-fe89-4c25-84df-a7b3da092697','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-6'),
('a7dff806-a036-47fd-88f2-7202725c979b','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-15'),
('a7e1790c-b15d-4049-8759-4aee97033218','db7058ef-de6e-444b-b25a-dfa474ba7bcf',58,56,41,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-10'),
('a7e20cd4-2b8c-40a7-aaa8-1158e6e8149a','c4194c78-4d66-480b-af6f-490c87805b3d',92,68,167,0,'2025-06-21 04:34:00.573','2025-06-28 21:53:36.042','675592889-1-3'),
('a7e23070-3d19-4d99-a0d5-d578c58be348','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',16,161,94,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-9'),
('a7e3b587-7862-43d0-b9d4-308801cdf249','c442462d-01c0-4b46-b4d7-c51ee072bc62',83,57,101,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.403','221432350-3-2'),
('a7e6d035-d893-405a-9230-a01c2e77c105','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-205'),
('a7e83787-1973-402d-a519-f3db38f9ccbe','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-8'),
('a7e8cf7c-9d6b-4e66-8c51-09c5e1101628','82ac2d58-053d-41f5-a402-9275c56203f9',39,14,211,0,NULL,NULL,'428172853-4-14'),
('a7ef3d91-9948-4315-ab04-ebe8f9754159','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-34'),
('a7ef989a-3a25-4947-9de2-e13e619492ff','05af1df3-9a36-4be2-8bd1-773d59e1605a',80,65,21,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-12'),
('a7f2df54-757d-4332-a69e-e510d293dd51','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-4'),
('a7f90c66-1f1c-4c0f-8988-73d48ff459b1','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-27'),
('a7ff369b-8851-4fa7-a1d3-92262eda2bf7','8be2c2d6-a463-45ae-938a-90a949953910',134,72,96,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-3-4'),
('a8034331-77d5-4138-92be-4f359db951da','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-19'),
('a803545b-5dd5-47e2-86fd-c5638ca6dde7','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-72'),
('a8072292-ffff-4d19-a798-0ef99a326f0d','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-50'),
('a80800ad-6cdf-4e33-b43b-d4df81c9104c','6503d97b-1348-469f-841f-5227a221f60c',63,63,24,0,'2025-07-08 11:31:30.466','2025-07-21 10:22:28.740','517205085-1-5'),
('a8084f7f-a051-4772-8ee5-8b6b53a6ea65','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:50:24.280','248135683-1-120'),
('a80d3e18-8de6-43ad-ae72-3926cfc3b5e9','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-193'),
('a810756b-2c62-498c-8bc7-5b654e8f09a8','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-32'),
('a81099ac-0483-498c-8af4-92286a68e57a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-135'),
('a811043f-eecd-4feb-b09a-1a12da0f5431','354f4bd6-093b-4fa1-b444-b083fcea7323',0,0,0,0,'2025-05-28 19:08:50.514','2025-06-06 17:37:23.725','786398335-1-1'),
('a8136aef-3ca0-4efe-a825-9fc7b9e1a5e4','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-31'),
('a81ad274-1423-4314-9943-ed1601bc76ab','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-57'),
('a81d22ac-28e7-4b97-af79-aa3e1ad4ccfb','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-66'),
('a82205d7-654d-4b76-9908-51244da876db','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-43'),
('a8277ada-257a-49be-b9cb-a2090a3ccab2','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-15'),
('a828e1bb-9c88-4ebd-9ca2-877fcae21ddc','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',58,21,97,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-4'),
('a82b1c30-4f96-4f2f-bc8a-626c91390ad9','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',83,17,46,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-43'),
('a82bb4b0-3a5b-4f4e-b1fd-7109f70ab876','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-2'),
('a82cfbb8-b29f-4c84-95c7-6c53b1ff3036','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-28'),
('a82e4217-d448-4668-bf83-a3a34cbbe5a6','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',50,58,49,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-6'),
('a832fcd2-d591-455a-890a-54c555071b7b','609832c2-2dd2-4701-a14f-9db6c69653b0',51,51,78,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-2-4'),
('a835ccb8-110a-4e8b-a22b-75d0d6dff06d','46d1512a-2bfb-476d-a224-9390f3e194f2',168,66,1,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-21'),
('a83722b6-1f4b-4567-b77f-4a5d88525aff','ca5e1c09-5457-4dae-9c4c-cc9c5f9c4705',90,70,97,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.285','598280715-4-5'),
('a8374ea7-ff85-4557-a035-31b9341226aa','bf560fb2-0b91-485a-bf70-cae59896df3f',170,95,15,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-5'),
('a83b313f-f69a-49dc-bf08-aee568a77ed3','aac14300-6986-4534-a4f3-10fc8ae7728e',0,0,0,0,'2025-09-02 14:49:07.192','2025-09-12 19:47:03.465','428239917-1-1'),
('a83f84d7-1a08-4f72-ada8-70de672925f7','567568b0-7a28-4c3d-8e81-1b43d87b6ba4',76,50,126,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-1-1'),
('a840cede-8ed9-4694-9fea-ba44fec27605','e9dbfd33-c34f-4a2e-aff6-18956dfc778b',50,50,95,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-3-3'),
('a8447fa5-02b8-4de6-922c-cc5bed4b2555','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-83'),
('a846617f-8e7a-43ed-9cf2-9db79d6fe75f','53eba6e6-9870-466d-85b5-c7b32bf33173',95,75,105,0,'2024-12-01 06:47:51.833','2024-12-12 07:41:43.505','027517327-1-4'),
('a84eaea5-8002-4a31-af8b-7041746fb95c','04791454-cdb4-4c8a-bf80-d6f2c33e4300',105,105,10,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.319','338411614-1-3'),
('a84f1b4c-fc69-4032-90cd-51fdc9ee953e','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-1'),
('a85246b2-a5ee-4d22-8f4f-906c411ed23f','7c09f776-ffb6-47c8-8828-61389547804e',182,122,7,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-4'),
('a85362e3-0a8d-4359-b773-4f965c91941a','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-14'),
('a854d5ba-7786-4ab7-9c6d-8ec79397b65b','d5fa404d-79a5-4cee-80e5-d721647dd05f',57,76,102,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-5-2'),
('a85cc6c1-272f-4b2a-b9e7-56a3ee18edb6','bf2fbd97-6d0f-4724-b25e-47e019854e49',158,198,3,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-16'),
('a85dea48-df97-4a0b-9f4b-bc85a273831f','4bd3461b-c38f-4c43-90a6-39aacd24cc83',85,85,60,0,NULL,NULL,'976462703-1-9'),
('a860d4da-d8d0-4e42-bbda-c05a1e855faf','ee623458-4a98-41d0-a385-199504c6175f',196,6,96,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-2'),
('a861238d-ccfd-4ab8-8d06-693bd0cc5a44','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.870','223337181-1-92'),
('a866b8d4-3b98-4287-b92b-264960d9abc1','8625abf2-719d-4d7f-b206-16948b318b8b',150,187,6,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-18'),
('a86d5720-04db-454d-a378-68408a8e23d3','b07a55d1-cbb0-4473-8e2f-a91320826dbd',95,75,230,0,NULL,NULL,'910510042-1-2'),
('a87324ab-8c51-4d91-99f7-a93fd6f44ea1','395fbbe9-753a-43cd-a397-22c019814296',32,53,51,0,NULL,NULL,'221893262-1-2'),
('a8736fe3-32ae-45c4-968a-81a955b3a0f3','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-145'),
('a873ec9e-9d21-4958-987c-ec1f25952817','546ad3d0-25c2-43dd-9443-e48b8e5b6530',23,43,12,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-26'),
('a878285b-b774-46bb-aaf7-f36bf2fc312c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-29'),
('a87d5a02-e26d-49a1-86ca-7b72725bd02c','c1d25f90-d493-406d-a430-9b65b4f44c5e',4,78,203,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-11'),
('a87da62e-53a1-429a-9e95-392f9947ed11','8cf4139e-7d57-4a28-9a02-b3da51835a61',50,50,6,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-4-2'),
('a87ddded-d776-4b94-bbe2-54ac5453fb67','d83c40d1-4df5-4c97-bc83-28837db95b2b',28,45,12,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-50'),
('a87f5127-0def-4f5d-8a56-2a04325ce06f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:16.105','248284003-1-62'),
('a883387f-24c3-4904-a01b-5660fa21b088','f3909b2b-cc14-43fa-b752-696dc15ac199',27,21,13,0,'2025-05-16 16:33:33.977','2025-05-21 18:42:26.744','43758285-1-4'),
('a88381a3-1d5f-4ab8-ac1e-06aa35b57202','71739720-3bf4-4e85-a052-44d40ca1db0f',0,0,0,0,'2025-04-30 14:29:27.263','2025-05-10 20:13:32.865','478662278-1-2'),
('a88425a7-70c4-467e-acd2-71fcd90823c2','1f5509c7-65f9-4d35-999a-3947d455485e',90,70,90,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-1-2'),
('a885522c-8bd0-4075-be41-a0a4a7bd489f','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-4'),
('a886d82b-0093-4dae-8e92-31214020be8d','a89f5cb0-4036-440c-b388-8ef641d6f3b9',19,55,67,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-10'),
('a888aec2-0884-42cc-9165-0b9ff6386ec4','bf1660ef-4ae9-46c0-a691-5e04c6c2cc30',0,0,0,0,NULL,NULL,'614927187-6-1'),
('a8894958-08be-4ac0-99fb-e0f610a46d7a','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',68,52,14,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-26'),
('a88957f8-531b-49b5-a5f9-f4b94a79fa34','6c7f7eb0-0e54-462f-9045-071cf525c2ed',185,43,7,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-5'),
('a88b9df0-08a8-422e-886f-183157e32459','470e5bf8-985b-4b51-9441-9efa4da41c0c',75,75,90,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-1-2'),
('a88bab75-f720-44cb-a228-feff7b188448','43eb4ebc-39fe-4f7a-aacd-fbcec67995f5',100,72,56,0,'2025-07-02 12:43:24.501','2025-07-23 06:18:10.676','644298759-1-1'),
('a88effc6-ac0c-4a50-aa1c-c79f78ea5611','a0a4be0b-f2b9-429e-92f5-4a10e11028b5',250,100,80,0,'2025-01-06 13:08:16.787','2025-01-10 09:45:15.068','910405441-1-2'),
('a8914189-9422-4224-9371-bb06fbe0a5e8','7c7686b8-8f65-4271-acac-1585b7485563',116,40,90,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-9'),
('a89370f8-4463-456f-bc1f-0f42e67e3f31','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-103'),
('a89573b4-f86b-403c-b5c3-2d8925453adc','a5626ae2-9a5a-4401-9095-a368c22814f1',80,205,4,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-22'),
('a895c3d9-0900-4821-9905-6bdd378344b9','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',66,32,128,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-12'),
('a8975997-43bb-44c4-93ec-fa5777fc76dd','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-39'),
('a897a3af-1f03-4ead-aeed-23fb4a731978','163cdf6f-a5e9-47e6-9ea0-4ea02a32d244',70,65,70,0,'2025-02-09 09:51:36.271','2025-02-18 09:36:12.669','910586114-1-3'),
('a89a7f1d-76d1-47dd-ba6b-6b5c67e1d511','0bf540a1-4e97-4b5e-bff2-523992ba0522',51,51,77,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.062','505948491-1-3'),
('a89a8bf2-9a41-4258-94b8-e15e7fad5a89','047bf09d-242b-472b-97f8-46901b73eea9',16,50,7,0,NULL,NULL,'428905379-1-7'),
('a8a1c24a-9b84-4d13-8c0c-dbf8c7777972','a705de61-d772-4a7d-92e2-87f1e616ec0a',45,22,202,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-3-4'),
('a8a256ef-8e65-4579-8555-40e58ec7c8c0','4869c334-4618-49fb-9d03-99d95654d12a',84,90,4,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-1'),
('a8a41528-2cf9-4a27-920b-90e8466853dd','aa113c34-9fed-4b54-9803-35911009db78',215,93,71,0,NULL,NULL,'910781464-1-4'),
('a8a43ca2-0c48-4f0a-bece-1896608b1c29','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.014','2025-08-27 05:41:45.747','910632087-1-1'),
('a8a53e85-96cc-47cb-98dd-854c64016b8d','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-26'),
('a8a55367-8164-4390-9d6d-82dc7f285a68','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-67'),
('a8a85d3b-397f-46db-b946-c1f3d10c16b8','2ea7f945-fdbd-4103-b8f5-8c2aeb402519',73,73,76,0,'2025-04-15 16:01:18.799','2025-04-28 11:59:03.141','644334455-1-3'),
('a8a9b8c0-0573-4d27-b0ca-a7972359ddb4','da71f37c-3d3d-4e2d-af5d-70af9d403edc',46,46,54,0,'2025-10-25 08:58:53.630',NULL,'598479723-1-3'),
('a8af1351-ef3e-4833-8feb-ea495f2dd3d3','7c7686b8-8f65-4271-acac-1585b7485563',81,71,32,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-4'),
('a8b0ce06-166f-43a5-bd99-e277b654a854','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-3'),
('a8b181b4-19aa-4c8a-a2f7-9242bcb8cb8d','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.739','2024-12-05 16:17:27.151','163548367-1-13'),
('a8b18d77-b994-457f-993c-cf118b4e464a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-84'),
('a8b41cee-75fa-4927-8cad-d65a229fd5d9','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-30'),
('a8bacfdd-8034-48da-b0ac-44b8ae4d4554','7e89be5b-8c27-4449-8aa1-7cad96813301',95,75,60,0,'2025-10-02 06:45:52.445','2025-10-16 15:47:14.752','428391947-1-3'),
('a8bc3bdd-786d-4bac-a4db-5a40ae1189a9','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-2-1'),
('a8c12710-954f-480c-865c-7ed78762a6f0','504660da-c27b-41a4-aa56-e6293172b9c3',106,68,16,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-8'),
('a8c2cf34-fb54-4782-9a0a-effa84b0ffba','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-22'),
('a8c84aaa-cbd2-4e77-97e7-9ae97c01af3e','88ec1b69-5cc3-47af-8aa3-9c3043171516',71,100,60,0,'2025-10-14 09:22:23.462','2025-10-25 09:00:24.655','478589258-1-1'),
('a8c9667f-533f-4ec9-8530-56dacf5468e4','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-25'),
('a8ccdf32-b6c5-4a21-91dc-ceb4a9eacbbf','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-135'),
('a8d3a8a3-75ad-482d-b1fd-c2322af19b9a','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-14'),
('a8d8257f-2da9-4575-948f-7e4cb0cdd718','afdf27e1-0689-4491-868f-ab5e614758ec',255,100,70,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-5'),
('a8d951a7-7c49-40c9-ac33-e67e039a27b6','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-15'),
('a8da3d05-6142-4c52-8bdb-bdd54ccafd71','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-5'),
('a8da7fa4-f3a3-4b6c-a848-be9762cdcae7','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-40'),
('a8dafbd1-3da3-4080-8cd1-6f46fb6ee0cf','63f52e46-9697-4d08-a5bf-28ba3fea6518',161,71,74,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.763','371913094-1-2'),
('a8dcdc43-a6f6-440f-81f8-4da8d168972a','aee64134-9c4a-4a5e-a933-2ec271b9144b',92,180,7,0,'2025-10-22 13:06:53.604',NULL,'613721320-1-3'),
('a8df8df2-e9e3-4918-bc0b-5a5da90c0272','80b59b98-1b2d-4d14-b5eb-0824fc273750',203,80,100,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-2-2'),
('a8e229b5-4c8b-489e-9820-2608f1b2abb3','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-69'),
('a8e4919f-a2d5-4ca4-9a9f-5c4f3bff2100','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:37.479','248135683-1-185'),
('a8e6cfa1-1cd6-4589-a5d3-6c8884793686','3535d433-eb38-4879-84b4-dbf8410809cd',55,45,13,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-8'),
('a8e7cf7f-a6ba-4c70-b673-cb8d80c41f02','f54ed30a-dd95-4143-9b02-ef07b59c72dd',51,51,77,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-5-3'),
('a8ea7a1d-f5d2-4c07-aa5f-dce19c715f6a','89c0955f-36cb-42a2-814a-51d922ff9309',85,70,75,0,'2025-02-15 13:31:46.337','2025-02-26 08:36:44.285','982475389-1-2'),
('a8ebf933-c0d7-4a14-974a-89945da19804','9bb570a5-52bb-4bbc-a797-b2a052d8260c',80,80,65,0,'2024-06-10 13:50:55.810','2024-06-10 13:50:54.112','3198601-1-2'),
('a8edbd04-870c-4124-a5d5-e52b23d4af8e','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-38'),
('a8f57dad-9693-4a11-8b4c-7bc9ed1a5a10','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',43,25,200,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-5'),
('a8f8b309-547e-463e-a66e-aebb662132e7','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',120,33,10,0,'2024-06-08 08:00:17.836','2024-06-20 20:15:56.065','428138926-1-44'),
('a8fa80bc-e167-4b66-8c89-d29967e658ac','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-227'),
('a8fa964b-9383-4796-9d4e-5355f2278aea','4301b768-4818-4e74-a6d0-12a33474f5c6',8,59,221,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-20'),
('a8fc4431-fc5d-4d08-ad09-41e5051f158c','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,300,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-11'),
('a8febad2-3526-4b25-bf35-12aafd16f00f','d94a498b-a4f2-481d-bbd3-eae08b47ab9e',92,101,80,0,'2025-06-11 13:14:40.852','2025-06-17 16:07:08.386','644703173-1-2'),
('a8ff30ed-b5f7-40f0-8085-00ada73994c7','4ef00d68-6112-4db2-8e3c-b639b689fc4a',0,0,0,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-1-3'),
('a903eecc-ab1b-4b16-9ceb-6b5a0987455d','58f9d367-338f-4f26-923c-11e9b56748d1',98,197,8,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-2-3'),
('a904cd90-dc61-4882-b2f9-6916c25e4387','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-3'),
('a9061158-d429-445a-a9f2-309329a797f0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-95'),
('a9074fa4-f452-41c5-8164-0f74d786b823','aa7913d9-4692-46ea-94b6-16deac482855',230,95,65,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-2'),
('a907ae59-d2ce-4c6a-ad45-b148d6378bdd','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-5'),
('a9096d9e-e919-42a9-b6bf-2d63df8ea5ab','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.396','745390643-1-9'),
('a90af2e5-5a60-435f-aa2a-3f438311256c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.844','2025-06-04 07:00:07.030','22391500-1-35'),
('a90d37b1-bb87-4c90-8848-28140f1a8c32','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-28'),
('a90f92c1-274a-44b0-9615-b80414afd5bb','11d9d1c3-aa53-4d51-a735-2be58bc6aeef',0,0,0,0,'2025-07-08 11:31:23.368','2025-07-23 06:12:43.036','982632860-1-2'),
('a9125816-a54d-4d6e-9e76-2c2d557ed441','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-2'),
('a9135f66-04ea-43cb-b579-0f9b159fd8c2','808a4f1b-793f-4a15-808d-00c26a26c166',38,72,50,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-1-19'),
('a915d70b-c380-4911-83b4-0f8df0783e37','b7fbd54c-bcc0-4613-9901-d06327048472',81,203,2,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-8'),
('a918f2ce-0056-440e-8f23-9d6c0bea41a0','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-15'),
('a91c1da4-86db-4a76-806a-bf64931825b4','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-26'),
('a91c9a4c-d2c4-4cbd-a5f2-290e1996cee1','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-70'),
('a922dc5d-b66f-454d-b13a-dfbd51c5a61c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-76'),
('a927d340-74d3-4410-ab29-a4531a9b837f','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-12'),
('a929dad4-5c80-43c2-8d80-bfa22224b3ab','e8dc151e-1148-4a48-ac2a-d4fb2c761969',103,48,12,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-9'),
('a92a4cc5-9fe9-4778-bad7-e4529c533c7d','64d193ea-3b9c-4bcf-8123-2e3e1e9f99aa',0,0,0,0,'2024-05-10 18:49:30.182','2024-05-29 11:17:10.734','315903894-1-3'),
('a92b15be-5177-41f9-9371-680f99952e1d','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-7'),
('a92b30f8-8f9e-4847-b17c-c82b8facb1d9','b4183fd9-691f-4e50-aa3e-1185b3e78cff',200,50,48,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-1'),
('a92b5a97-fa74-440d-bc8b-72a16dfdb20f','c51cf533-511d-4f61-a94c-3e48074db45d',81,26,204,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-13'),
('a92ce172-ef3f-4c98-9823-2e23e886e1a3','46967417-5579-4330-96d2-b8546922819a',76,25,11,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.893','428561353-1-7'),
('a933a7e5-0efa-4b66-a110-d6b418553681','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-240'),
('a934c0c0-264d-43f4-8bf5-9bbb3b0e79b7','3eed9084-6b01-41fc-95ec-7c048c3eb076',75,143,15,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-1-1'),
('a9386314-e114-498a-969c-1ad74c5a2d05','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-4'),
('a93adcaa-0b5b-4463-99eb-5f562ee3eb81','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-243'),
('a93e9216-2101-40b1-bdac-98fc888cb2b7','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-10'),
('a941ff8e-570f-4729-80c6-cf679f14a61c','5eedf7e1-129e-4ada-8cbd-d63340cf856b',0,0,0,0,NULL,NULL,'959475359-2-2'),
('a943a49c-6493-4725-a759-edc9f533f3c9','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-3'),
('a944303d-3222-4586-80f8-2405c05814de','2f7618fe-770e-47b7-b995-adcc1e476b1a',61,50,204,0,'2025-08-27 19:39:39.433','2025-09-08 05:17:41.191','221407228-1-2'),
('a94632e0-e122-40f7-9339-ca3d92efa9a6','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.899','248383650-1-15'),
('a9469d7c-5ad1-4606-b401-e6cdb727d027','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',73,54,100,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-9'),
('a948ec32-51f2-41d9-9552-8e70bfe1bef9','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-3'),
('a949608c-2d43-4b07-8c84-b575fa89571f','6f4fc091-c0aa-4c30-9c42-a45f1be9d67f',90,80,75,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-2-1'),
('a94dfd71-f2cb-4448-873d-f26727f406d0','903702b3-6f90-4c5b-84bc-cee636b31ae3',52,24,83,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-18-1'),
('a951515a-ddec-4a78-99ab-7c4e5f711f4a','e6bddda4-b1df-4be7-bbd5-63cc4b197736',75,80,68,0,NULL,NULL,'42857810-1-14'),
('a95333ec-13d4-484f-b3ed-bb6515b44d25','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-20'),
('a9545d09-be3f-4910-8ef3-ba4ed0deb287','7fa60ad1-fd9a-4550-964c-dbeaa07775b2',77,45,45,0,'2025-03-27 15:06:18.682','2025-04-04 17:24:41.799','613529206-1-1'),
('a9576209-a53c-431e-a733-32b0a15b2529','c71d8705-4675-43e1-be22-4ac642637a94',103,10,202,0,'2025-10-20 04:18:21.633',NULL,'312422305-7-1'),
('a9578918-d240-4e38-b1f5-943e58798a56','5dcc9ef8-8356-40ee-8dea-7d614cc219e2',75,74,52,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-2-3'),
('a957d941-0c99-404c-b0ff-f80252b75cb6','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.388','412315808-1-20'),
('a9597e20-f0bf-4837-b79a-d10d5285f924','aa52ce79-9594-403f-a912-011d1f6e5822',60,59,90,0,NULL,NULL,'248100721-1-1'),
('a959abb1-4e74-4e84-a7f7-694e69715698','04f841ce-9ab3-4610-9d1d-bdd9d9518084',0,0,0,0,'2025-03-13 12:21:24.843','2025-03-23 16:15:52.675','268615271-1-2'),
('a960be0f-f5e9-401e-ad50-414f0b3b17ec','426884c2-84a9-4add-aa92-e432769e1f8e',56,82,100,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-2-2'),
('a963b4ad-ecf0-4d6a-81cf-dec88e2d3f32','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.093','248211803-1-88'),
('a964769d-c3bb-45b4-8f0c-e6e6d0673d88','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-66'),
('a9663f29-3c7c-4ccc-83e1-99f126c11842','f74c2051-67d0-4745-92d4-11fa5c0564c6',61,43,43,0,'2025-01-22 09:07:23.522','2025-01-29 13:30:45.157','248188933-1-1'),
('a96750cd-f261-43da-9722-4832e4e1df58','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-4'),
('a969d1fd-871c-4e50-81fd-3b7eee0e9251','90531b95-eb66-4c07-9e68-b2c510b7b356',85,80,80,0,'2025-03-13 12:21:33.912','2025-03-22 07:37:16.803','748330948-1-2'),
('a96b2236-606e-40fe-b308-765635df2b9e','3aca7d6d-09cb-4903-812e-7535a083b09c',230,100,70,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-1'),
('a96cc0e9-ba90-4ab3-85d6-9723681a732b','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-10'),
('a970470d-ed96-4594-a160-4a9875bf3c19','2499a4db-dc20-496c-b47b-f4ad48cab92a',57,75,100,0,NULL,NULL,'221584314-1-3'),
('a97534c2-a4d2-4313-89a9-599b30aae536','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',60,15,135,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-70'),
('a9796c83-b54e-4fb6-85de-16c27465ff6e','c9be6ff4-b867-49bf-9dad-f44d6eebbb47',78,50,50,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-2-2'),
('a97fd458-1d75-4530-a59e-d773fe2d8477','bd7ec8be-4215-4dc6-b7a7-0bdad2bd0193',90,5,203,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-3-3'),
('a981b796-38a0-42e1-9253-860d03f9da66','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-191'),
('a9835b3a-9c87-4883-8975-22a54287841c','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',90,20,16,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-8'),
('a98388a0-fb33-40e7-94ff-c421150e0437','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.407','412411011-1-7'),
('a983fa6e-85b4-4c91-ac8e-a64b1634e9cb','8625abf2-719d-4d7f-b206-16948b318b8b',180,135,4,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-19'),
('a9856243-6354-4b2f-bc60-f9ea5ac52d23','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-7'),
('a986d5a7-01ec-44d1-95fd-6b223ac915a7','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-3'),
('a987a257-0403-42a0-a539-ff1d65d5688d','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',113,13,130,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-2'),
('a98855c4-e006-4449-94aa-d92f9649e3c0','24886f99-c4f1-4e3a-b8ea-1b00c2870261',135,65,94,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-1-4'),
('a9892289-c48a-4a36-b90e-1a2aaa241ba4','08042e48-f41f-42af-a51b-44a9a14cedf4',57,198,30,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.625','614659832-1-4'),
('a98dd014-23e6-4d04-914b-0a9a554886ba','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-31'),
('a98e4405-20d4-4ffc-8a1a-ed0f128e4206','66f8d34c-0c41-46f5-98bb-500adbb6f636',46,19,59,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.958','910825747-1-16'),
('a98e9dcc-c765-405d-a322-319b5b1bd7a0','7af3ae82-b2fc-46d3-aefd-cf6046c49f14',119,27,200,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-2-2'),
('a98fd4f7-ce9b-4641-bdad-4b3902e05a79','307d6f4e-5065-4492-a18f-04b925d71f98',53,72,101,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-1-3'),
('a992349f-25de-4869-8eaf-889955fa77eb','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-12'),
('a9936892-ebda-4fb9-bdcc-22fd7b76e692','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-3'),
('a994b8d0-e143-4b0f-a3c8-720c1cfb80df','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.894','2025-04-23 08:12:49.637','248186638-1-53'),
('a994bd05-3daa-4c53-b570-f2cbfd716a42','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-2'),
('a9959089-d34d-4bc6-8505-c73ed718836b','e61598fe-7aa1-415b-a90b-24911081c3c7',160,200,26,0,'2025-02-20 12:14:55.664','2025-03-04 15:38:32.599','982558117-1-1'),
('a997736f-4312-444a-b5eb-c164bcba78e2','310d0b22-749c-4142-8372-39c495364b11',95,80,65,0,'2025-01-10 08:54:37.951','2025-01-15 10:30:26.528','428754067-1-3'),
('a99bd5b2-2c1b-4986-a12e-4c0d7928339a','df315e40-f7b8-4524-810a-6c390c475673',245,95,75,0,'2024-03-23 08:36:11.360','2024-04-03 18:54:49.659','6148124-1-3'),
('a99edeae-4630-4e6a-bb9f-bf1ffa660b56','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-67'),
('a99f9c39-3419-4ac6-bae6-24ae4511a7b9','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-4'),
('a9a1559f-8e1a-4b29-87a5-24de0931135e','7615d0a2-cfd2-4c2b-955b-2f1fa4697aca',100,43,45,0,'2024-11-08 17:37:48.235','2024-11-22 21:21:57.745','449193323-1-3'),
('a9a26910-4d62-454c-8c66-78a5e72e8cbc','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-9'),
('a9a2f6d2-fabc-4dd1-9263-e93a59a5a58a','642202df-ca75-465e-8036-f34da2dad54d',68,98,66,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-10'),
('a9a49201-b5c5-45ed-8edf-67ed4b21e303','b44449c8-5efa-4085-bd2d-0a3594587af9',48,40,91,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-4'),
('a9a9acf9-3256-468d-bfbd-3e42fbc61299','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:18.386','248284003-1-171'),
('a9abcf02-449d-4c23-add0-78f87b42bb33','7c09f776-ffb6-47c8-8828-61389547804e',56,71,96,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-13'),
('a9b2ef71-9616-41f3-aa27-3c702470bc6c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.341',NULL,'22330381-1-178'),
('a9b443ed-ba95-40c8-a13e-67d2010bf341','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-6'),
('a9b4b6e0-121b-4554-90d1-893f9b7680d0','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-40'),
('a9b7bcda-4b70-4f6c-914a-190f8bc6c459','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-24'),
('a9b881fa-4d3c-462a-9226-c669ee82ce12','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-7'),
('a9bc0de9-550d-449d-9173-670f0906bec5','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-3'),
('a9be8d91-2eeb-4626-a7bb-5687d6778924','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-151'),
('a9c3974b-3c6c-4d5e-b814-5ddfc51f2265','7ba47169-83ca-49a6-98fc-6ef1a1990eac',86,52,24,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-18'),
('a9c45f76-9e5c-49bb-aeec-0828bf1bb42a','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.285','319212544-2-7'),
('a9c4c63f-6c9c-48c8-b946-65202aa08f2d','04a41e24-7197-4701-a8ce-c4a0dd073b19',99,125,65,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.468','319645924-1-3'),
('a9c662e1-208c-4067-8905-c283498a2cd4','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-5'),
('a9c701f9-9e1d-4b22-8aab-be03612034f1','1ee10629-f1ed-4f00-b3e7-b0eabc56a71b',230,95,65,0,'2025-03-08 13:46:23.570','2025-03-17 14:53:57.989','910572875-1-3'),
('a9c82c1f-0034-4f86-920c-a0096b4d7968','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-31'),
('a9c917b7-a581-492d-950a-3af195f4de80','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-25'),
('a9c9a38b-c5d3-452f-8285-d9f67677d97a','a2996a96-e222-4190-85da-afc912411ba4',7,55,204,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-5-3'),
('a9caaa01-cd37-4b77-bc3b-3c4c6e538889','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-12'),
('a9cdd5a7-8751-4e1b-bd20-d0e55a57dd36','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-1'),
('a9ce39eb-33e3-43bc-b0c8-0657d3259255','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-6'),
('a9d3a51c-1559-472b-a235-2b51b347948e','5b74d54f-5e67-4524-a1ee-59011b82f249',0,0,0,0,'2025-04-30 14:29:15.473','2025-05-12 09:08:09.366','412731497-1-2'),
('a9da6e4e-f7a1-4e01-ac68-ba88cec1eee8','88efd6f4-86cc-4f4e-9e39-520afe44f05f',55,80,20,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-2-4'),
('a9daa959-f0b2-4653-9836-859635400c59','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',90,35,23,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-19'),
('a9dc0aaa-a77a-4980-8a85-19fe760b6d18','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-36'),
('a9de58e5-5f6c-42ac-b7a2-1b394aed1438','6574c9d2-e75a-488d-85d7-f96203442cc9',0,0,0,0,'2025-01-26 10:54:43.764','2025-02-07 11:19:13.804','478120731-1-2'),
('a9dfe03f-685e-40a0-bca0-6682a4dfb3fa','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-36'),
('a9e057fe-264e-4717-b421-53a4da92a139','ee9427cd-f686-462b-908f-bafd53b0dc81',0,0,0,0,'2024-09-28 16:26:39.561','2024-10-12 15:51:02.378','745175736-1-6'),
('a9e398e1-f54d-41c4-8959-f80399823d4a','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.637','248186638-1-46'),
('a9e4fd60-0a5d-4a15-a36d-361f5c57df93','6cc7f745-bdd3-46a3-b5f4-b7ab581a51ad',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-6-1'),
('a9ead5be-7269-460d-b7e9-aabca7072875','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-5'),
('a9ec26a2-8907-4bd0-87af-d8dbe6a3b272','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-21'),
('a9ee7968-06c8-4733-b0a2-081e0c428c2e','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-7'),
('a9efb969-4ac3-44c1-ad7e-a0327a794885','6cee1429-9935-4eae-be32-dc630b6d70e8',100,105,10,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-27'),
('a9f03dcf-844b-43d3-bb56-332386ceb8bb','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-86'),
('a9f4e713-3218-4a92-b74f-cb68725f4d46','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',230,100,70,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-26'),
('a9f692b8-77de-4b30-b77b-d8427c99812c','7cf524b9-0e83-4963-bfc3-863110305d5f',202,82,28,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-2-5'),
('a9f8b5cd-4e71-4659-aa94-7502f30b75b7','a5acb255-ac93-4787-ba1d-85dba2a83a25',100,75,65,0,'2024-12-23 12:00:19.041','2025-01-09 13:53:41.050','73427297-1-4'),
('a9f92f35-6019-4f53-8829-920549d8ce90','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-20'),
('a9fb634f-7eb0-4a7e-9c62-2ffe954ae105','ecc8a619-473d-44b7-bc3f-58005b885517',65,119,99,0,'2025-09-30 07:39:35.702','2025-10-03 06:54:27.923','644783664-1-1'),
('a9fbe0c2-a4e2-4bae-b025-bfab3edbfbde','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-32'),
('a9fec7c3-c024-4e1f-9a38-bea1e0820c94','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-68'),
('aa037a7f-abc6-42ad-a136-94f3bcd0bde2','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-6'),
('aa0a7f63-74d4-4fc6-a9fd-7a62f8e754ad','fb58f438-30e4-4e01-af6e-6378e27a11fe',195,72,44,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-17'),
('aa0caa46-abe4-4eb2-ba36-9bcfc2c6fce3','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-9'),
('aa12e2b7-3de9-410c-9d6a-b2ccf81445f0','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-56'),
('aa135a94-1ca0-46b6-a769-222345d41e03','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-204'),
('aa1891b0-41c7-42e4-8470-3c02743c6991','6d6387c1-6c6d-4152-b1f6-64a868887602',80,34,70,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-5-3'),
('aa189a24-609f-49f6-995f-626c31112872','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-6'),
('aa1ef1db-2c3c-40c7-96e2-49541e00e012','8d05832d-fc40-44ef-a024-a5cac327a362',77,77,51,0,'2025-09-16 16:29:04.383','2025-10-04 13:57:40.404','478906000-3-3'),
('aa1f2e07-7cc8-4b8f-ae04-928ea3bc781e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-132'),
('aa2033e6-1e32-4764-8e79-ddc4a972bdbc','d2498eae-06de-4965-ad29-62155b9a8992',72,80,65,0,'2025-02-03 18:19:05.467','2025-02-13 13:19:35.146','976126416-2-5'),
('aa22a10c-15e3-48b0-8cb3-513fbf601112','ef0789c3-230c-45b9-8414-11958c24d45e',56,83,101,0,'2025-07-08 11:31:29.130','2025-07-21 10:22:31.990','675629833-2-3'),
('aa23f5ad-e4a0-4958-abe3-8cb391c3a810','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-11'),
('aa26576a-b9bb-4578-a184-f0de0e3f4a8d','e0431245-c2c2-477c-a418-a601b6fbebb8',5,211,46,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-31-1'),
('aa26ddf3-d49f-4ab5-a299-14a2f6f96e57','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-63'),
('aa28464a-9a95-491c-ad1c-cd3dc6252b40','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-5'),
('aa2bb075-2291-4851-b926-749324d08859','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-5'),
('aa2bc2fc-ee49-4c48-9b12-860dc157568a','efb12d78-a6d9-4ac9-acee-1e0a5f965fbb',94,69,198,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-2-3'),
('aa2cfeee-2229-47a5-8f2a-24526603e3a8','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-7'),
('aa2d00f4-2c26-4698-b750-75d14deb4a5c','0365be5a-cb94-4992-8e8d-cb784930b2e7',80,90,95,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.724','675644991-1-8'),
('aa2dda8e-81b3-4118-9a36-22b8e5ad1f2f','42b2ca3a-9313-4b97-901b-3859e34b21e1',94,11,7,0,'2024-10-02 09:27:13.600','2024-10-08 09:24:39.306','750845897-1-12'),
('aa2e0b37-81cd-485a-9698-096b0fd3da5c','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.341','2025-08-02 17:36:11.137','598668612-2-3'),
('aa32c77f-c4a6-442f-8701-26deffd9e914','7fbc0cac-4c11-4144-b578-3223cd9dd90a',50,62,9,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-4'),
('aa332bc5-010d-4cbb-9ee1-39fad1f5e4e3','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-8'),
('aa33ec1e-a859-452b-ae3b-f23be43a0ec0','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-36'),
('aa351253-030d-4e7f-bb1e-fc6e0a11dff5','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-28'),
('aa352907-a888-4488-92c5-c583b4d3f5c7','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-6'),
('aa357ac4-5e68-4061-b9ff-96de659ca981','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-24'),
('aa386eb0-dd7b-401b-bf7c-dd6b900c7370','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-9'),
('aa38a8d2-5469-4b9d-9adc-679d1c8cc333','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',80,77,54,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-6'),
('aa3aaaea-0426-434e-aea7-91098ee9c394','a332a69a-5e15-4331-97b8-4dbbd334c8f6',73,53,101,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-2-3'),
('aa3c1e0b-9663-42fc-8341-827f243b70a1','1ab745bc-cedc-4993-8852-79017b1ed8a3',235,100,65,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-2'),
('aa42c3b1-4d62-4e10-8523-4a301426e8d8','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',112,12,33,0,NULL,NULL,'428437129-1-11'),
('aa459404-4a7c-4243-b578-9e91107f5edb','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',240,97,70,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-6'),
('aa4c7dc1-15d2-40e7-a0f8-b9cb53aca268','546ad3d0-25c2-43dd-9443-e48b8e5b6530',53,9,125,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-3'),
('aa4e7c9f-1ef5-4908-94a8-a25f2672fb15','410d238f-8bdf-4cf3-81b7-a69f07022dc2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.768','478185886-4-4'),
('aa51e9ec-95d7-4fe6-bf21-d0b9189849bd','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-9'),
('aa538756-24cf-4de5-aea9-d0f9852bfe83','dd610824-86db-4c6a-b135-c31ab1618fac',75,65,80,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-3-3'),
('aa54b142-6fc1-48e9-8fbb-49bd5270d4f0','cde2b645-2cf4-4ca6-9d59-ef733217c501',85,80,70,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-12'),
('aa57f2b7-e3c8-4b38-8920-fd4379fa6f05','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-85'),
('aa58d37e-bc09-4a40-ba5e-c6a4238c93ff','03ad506f-f86b-4dbc-952f-52b01e2467fa',200,90,29,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-44'),
('aa596a31-ac7b-4555-98ca-faa52c54880e','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',16,55,61,0,NULL,NULL,'478739679-3-8'),
('aa5a2011-b430-4cc7-ab6c-810b5d2ecfb3','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-8'),
('aa5bf755-4258-45ee-b24b-9cd9f32f0e46','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-6'),
('aa5e0a05-fc37-40be-86e9-006645322c1d','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-7'),
('aa602761-34d8-472b-99c9-e416b8539e33','9f402231-48f4-4e54-b1bd-d47b91ae696f',0,0,0,0,'2024-11-25 08:29:01.481','2024-12-03 21:17:16.301','465891539-1-3'),
('aa62c59f-b0ef-4177-8b8e-b6b20bc4fba7','aa7913d9-4692-46ea-94b6-16deac482855',0,0,0,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-10'),
('aa67057b-dd43-4225-8fa1-0003404672e3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-19'),
('aa6870d2-710f-4602-a194-21074dee2247','5c0848ce-c79c-43de-adfc-f4532526d6bb',202,45,25,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-2-3'),
('aa692fc5-7787-478b-8e79-24adece1d02f','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-8'),
('aa6a8e0c-8d3e-48f1-b946-4d9e950922e4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-19'),
('aa6e67cf-a9a2-4e6e-8483-7ca34e0f30f6','41a97f13-3141-42bc-acfc-50b87c2de9f2',0,0,0,0,'2025-01-22 09:07:18.972','2025-01-30 10:57:03.703','745302940-1-1'),
('aa7550c6-8d07-4b17-8b51-0e413b2f2f8f','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-15'),
('aa76d583-ae34-4771-b82b-e19bf6312a84','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-13'),
('aa7811eb-f4ec-4b5b-b2e9-fe96f57bb6d2','df4ae67d-ca3e-4cdd-b49d-c5f3efda583f',72,7,123,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-3-2'),
('aa782301-d0af-41b7-8f91-fd88c679aca9','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.039','2025-07-24 06:26:53.166','248883377-1-27'),
('aa7b3ef2-07ca-4f48-8029-2966c65b0a01','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-32'),
('aa7d9ffa-1fcb-4487-bfbc-58c8e0692aec','f40a0d73-cdd0-4306-be92-7a5aa4952f45',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-4-1'),
('aa7e20f3-df86-4575-be73-f0ca6c00f262','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-3'),
('aa7e81b2-e9bd-4064-bb35-2f4825bf7ae1','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-52'),
('aa819ae1-e74c-483a-a351-d2eadbca1da8','b78519ec-4b79-400f-a709-a1f09256d30d',58,10,258,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-5'),
('aa83e159-0a92-4cd4-a71f-2ecca7adf4f9','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-21'),
('aa8763ad-d285-4194-ae20-13b61696ade1','a135c145-15f3-450a-819b-e82b427bc978',76,100,52,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-5'),
('aa8a2a17-c011-4f17-af43-5445695c024f','7dfebef4-94d9-4648-8095-fca79abe0bd8',0,0,0,0,'2025-05-16 16:33:26.421','2025-05-23 14:07:04.991','745423192-1-1'),
('aa8acfd2-af30-4163-892e-a3ab02d5061d','fb58f438-30e4-4e01-af6e-6378e27a11fe',237,95,75,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-18'),
('aa8b76fe-d8e0-4bae-a46e-cb5c6be51b48','fef5bf4d-01ee-4073-99a2-5cff1b560073',77,56,103,0,NULL,NULL,'371117320-3-3'),
('aa8d6e1e-85bd-44b6-a5fd-4d85108796a7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-93'),
('aa8d7b3f-cde9-4bf0-a10d-9590eb00fed3','ae8b0589-4bee-4cda-9dbe-1fb3b25105e7',76,52,101,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-2-4'),
('aa8e7f4c-e276-4912-9f54-b56f092160f2','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-13'),
('aa8f4257-fde0-43e9-9e47-5e235461cdf8','a7c0e479-2722-40ba-bd18-c64a1b76d170',75,93,93,0,'2025-10-22 13:07:10.734',NULL,'011766113-3-3'),
('aa9080d5-a0c5-4299-bb14-14e6d1f0ad66','5ee00c1a-30c4-4631-928f-5c95f22101d5',73,92,118,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-1-3'),
('aa91e14c-b735-4e00-99c7-dd27ece0eb38','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',100,200,33,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-4'),
('aa9371d2-56e7-414b-8392-dd2836ec4994','443751fc-e739-4620-b6a4-3b4b39d4da52',103,108,7,0,NULL,NULL,'428163052-1-4'),
('aa949475-fa7e-4afc-8b89-086933d7e65b','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-42'),
('aa94eb74-d081-4ce3-b17c-d78a9399b17b','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-7'),
('aa956b10-5cc6-4ae8-8296-b42c29f8291d','91d10b70-a38a-4473-a688-7e33b18968e3',84,122,7,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-2-5'),
('aa9aae91-5042-4f7d-8eee-75cb08fca3df','94241ada-8d18-456b-b4cd-1abce195d23d',56,72,107,0,'2025-09-18 15:48:30.584','2025-10-02 13:31:44.360','011131883-1-1'),
('aa9affa5-65b5-4892-a4d5-c9208879e2b5','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-1'),
('aa9c1885-c519-4ee1-ad16-6f91e4f4aeb7','11685268-d8ee-4474-adbb-41d1ceac04e0',145,90,70,0,'2024-09-10 10:47:00.013','2024-09-18 16:13:00.028','52817450-1-3'),
('aa9e038f-d75f-4e12-8e06-580936bcbae3','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-3'),
('aaa00c01-dd3f-4453-93ff-561fea63c97f','330e6f68-483a-4357-959c-dce6efe61d45',100,65,75,0,'2025-07-02 12:43:26.635','2025-07-23 06:17:56.348','428173598-1-1'),
('aaa04fd6-6e48-42e7-8544-c3152cb29658','4d21a562-4444-42f3-8ddd-8d2f41fb562e',95,181,70,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-2-2'),
('aaa54107-fd2e-4714-81af-0300531a9bd1','cee76706-8686-4b5f-b415-fa5d54173ed1',65,85,75,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-5-3'),
('aaa78da3-fbe5-4398-a9c5-81fe25421d30','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.239','2025-05-01 09:52:28.275','371672954-3-4'),
('aaa7de77-2099-4726-aba8-5e3284915ee9','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-79'),
('aaa93c69-9be8-4189-8cdd-0fed04fdf51f','b23cf296-f843-4492-9697-0fd43d657771',215,54,4,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-13'),
('aaab2fb6-5f9d-4b71-a2ff-7d53a2c29997','92f4338e-023b-42d8-a569-19b0439633e2',115,93,68,0,'2025-03-08 13:46:08.990','2025-03-18 18:33:04.535','644130393-1-2'),
('aaabf223-22a1-4a55-b5b6-465f3014e223','db3b2126-0e8b-4d3b-85f6-d470edff075d',0,0,0,0,'2025-03-11 18:06:02.855','2025-03-17 23:30:53.310','982431907-2-2'),
('aaacd325-0bcd-4edc-8cce-449c468cf900','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-3-5'),
('aaad06ec-bb36-47c0-88c6-bd34095364af','0dc117f7-5e70-4621-87f8-335baf3c4f19',54,185,6,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-2'),
('aaaf98a0-3bcf-4d1e-a175-3ae088202f84','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-55'),
('aab1c281-d80c-4ffc-8bc2-0abe62465034','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-13'),
('aab766ad-5c1b-4f2b-bbbf-1c067ac5c5a4','0946c018-5896-43db-97d4-34199264b7d9',240,10,105,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-1-4'),
('aab90835-ca41-4a62-a3a1-9f0beb69c121','7d462544-6e96-45df-8230-5dcbcd269f64',0,0,0,0,'2025-03-08 13:46:16.569','2025-03-17 14:54:20.815','644971564-1-3'),
('aab9635b-0a95-4483-b8fe-ad30bae4adee','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-3'),
('aac17458-353a-4905-b8be-4f959aa86052','b24ac076-2cd6-405e-ad7a-aeb921ff12e4',0,0,0,0,'2024-05-29 10:12:08.202','2024-06-11 14:05:08.568','412741555-1-1'),
('aac3adcd-bebb-4cf5-9c1e-9c042a92ce24','546ad3d0-25c2-43dd-9443-e48b8e5b6530',95,56,65,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-57'),
('aaca4a13-ac3a-405d-ac32-6fbbddd390ef','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-19'),
('aacbcdcc-4de8-4822-83da-7150584f16c2','b6319fbc-ac5b-4323-8326-06724cade598',91,100,53,0,'2024-04-08 08:57:41.781','2024-04-29 09:07:28.433','982984016-1-4'),
('aacdb5ec-ee4e-4bc8-b3e7-3c26b6d8f2cf','7f11042b-3945-4eb3-b37e-a822894de6f5',34,218,8,0,NULL,NULL,'478777575-1-7'),
('aacef131-8458-4236-8554-9dfebb0eea59','61693d6d-1ccb-4968-9461-6ef1bf43aac5',75,80,80,0,'2024-11-21 10:29:11.924','2024-12-14 12:00:59.316','112270991-1-4'),
('aad63108-d221-43ec-a818-c5621626b915','a87576e3-14e1-46a8-99c7-1d48360995f5',240,25,30,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-12'),
('aad6a47f-b955-4e7c-b2e5-9a68ef3c4391','7defd633-f7ab-424d-8029-028d1b045752',208,44,6,0,NULL,NULL,'501119446-1-24'),
('aad6d17f-f7fb-45fb-bf56-ef52bd1fa49a','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,80,80,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-9'),
('aadac38a-d1e0-472b-a02d-d418f5591a8b','a40ab67c-f6c6-4228-b875-7adeb6366544',120,116,67,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.872','371120278-4-4'),
('aadb15f0-f5f8-465e-872a-15e289f474b2','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-3'),
('aadb7ced-5681-4a74-a9e8-db71dd17b2b5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.249','223823107-1-216'),
('aadc8b2c-0c36-4bd3-a0c2-389c233985fd','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-94'),
('aade72cf-35d3-45c9-b7bf-cd4282130cbb','852cb596-91b3-432f-8aee-ec6a804f3a01',34,100,17,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-17'),
('aae40185-cd9a-413b-a145-ef06432e7a18','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-78'),
('aae46684-85e1-4ec2-af76-9c66cf543c1f','e97539d8-0d26-42a2-bfcf-9866d5bd205b',46,7,111,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-7'),
('aae8b24c-fc29-49d1-a7c0-1788c2650f77','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',265,63,13,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-123'),
('aae9579f-e92a-488c-8fd0-1994265372ba','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',170,65,41,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-57'),
('aaeb86cc-dc86-4fe3-9be9-2ce725953467','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-8'),
('aaee0503-3731-4982-b911-d1e5e5677256','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-6'),
('aaee2e73-3259-4c9b-8b26-f995cf48a495','1b72736d-38b2-4d16-8ad9-6c6e005c6913',0,0,0,0,'2025-07-02 12:43:30.831','2025-07-21 18:56:12.310','412550726-1-3'),
('aaf001d2-4fe0-42a2-9f95-928e4fe739b9','4bb8ca2c-be9e-4749-88d9-feef807e2707',52,92,76,0,NULL,NULL,'644104537-2-2'),
('aaf35765-fda5-4da6-949e-73e6cac63430','00d82761-31c4-446b-a04b-97ce66aab4e6',97,30,20,0,'2024-08-31 13:26:35.084','2024-09-09 15:17:32.717','982918194-1-3'),
('aaf70d65-c84c-48f2-bdaf-3efe2876a63f','e401ce6d-1f41-4077-903f-4deb32a0813e',70,80,90,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-3-4'),
('aaf8be5b-53c4-4441-bd96-d97940e4d3be','2027d4e3-00a8-4050-97b9-4dcf16140122',100,98,65,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-4'),
('aafcb653-4cd9-46df-9d28-52d8d840e1ef','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-41'),
('aafe313b-9c61-4643-b7f9-f2b4e7006048','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-40'),
('aaff4621-b9c8-4dbf-82eb-f6d0aaa8e536','db31505d-890a-49a3-ab5c-a703df1962b6',30,56,80,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-4-2'),
('ab00ad08-6de6-478d-bf96-8d87494a2922','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-43'),
('ab019840-1dc6-4bb9-af53-a44f7652ffe7','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-67'),
('ab0fa436-68ca-4669-9de2-4b9f6a3f2556','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-95'),
('ab102149-76cd-439d-b1ca-cd320c4df33d','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-60'),
('ab152259-26a0-4da7-99d7-2448fce6d5e3','4f763765-223a-4b0a-a837-f4f5a6fd119e',65,92,70,0,'2024-09-27 14:05:27.642','2024-10-08 17:09:39.128','449769276-1-3'),
('ab162417-de76-4d2f-88f1-dd39743e2a80','fae6909c-01c0-4f09-ac49-1ff3954779b4',185,45,42,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-6'),
('ab17ced5-5852-44e9-ae3f-7e33a58a14e1','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-45'),
('ab1bffe4-7544-41d6-9ede-a4b2f41e84aa','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-8'),
('ab1c76c5-2231-45e7-9c79-bb449f58eefe','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-7'),
('ab1cf45f-3b65-432b-9156-980ec141b2c7','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-14'),
('ab223e9f-3e8e-4d47-9ace-837306991c5b','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-19'),
('ab24abaa-5598-49ba-8ad5-1ef876f38525','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.886','2025-02-08 15:04:54.363','412586892-1-58'),
('ab2af218-749c-40aa-8a85-8fc9aa14a345','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.093','248211803-1-89'),
('ab2c4da3-13e2-48c3-9cc3-1852ee8587ae','7f827719-d0a9-4910-9aef-532cd3731df7',10,50,215,0,NULL,NULL,'745995046-2-16'),
('ab2d87b8-1c2e-408c-819d-c945a79a034d','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',86,30,190,0,NULL,NULL,'47816855-2-8'),
('ab2f6bf8-c9b5-4ed1-b585-1b8ca0fb01d2','a8240df2-bc04-464c-afdc-dd0bdbe1643d',63,10,218,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.683','745782616-4-10'),
('ab2f6f62-6ca1-4e63-aa99-74dc9740b12a','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-40'),
('ab30d68f-7a0f-44d6-b927-6e82b25306ad','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:38.164','248135683-1-189'),
('ab3242d3-4ccc-48fd-ad3f-a87e00c4b598','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-5'),
('ab329db4-b657-4bd7-830f-2fac256a8026','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-71'),
('ab34a199-95b6-41ad-82d6-5bc3c7023eb8','b78519ec-4b79-400f-a709-a1f09256d30d',80,51,64,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-7'),
('ab3653b1-7a5b-44ed-bd5c-cd1121dba04b','2ab41284-325e-4735-a02e-0af4784fee90',71,41,43,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-15'),
('ab37685b-7ad6-4d5c-b0ae-78ba6aff2ac4','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.062','223441694-1-152'),
('ab3acabf-6532-4512-bcba-1c14528cd9e7','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.897','2025-01-29 14:46:41.486','248135683-2-77'),
('ab3f2ab7-9982-43b4-869f-5ad525ccdd31','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-17'),
('ab401d8a-131b-4e65-b8ed-ea4c45be1082','a5626ae2-9a5a-4401-9095-a368c22814f1',250,55,12,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.583','42845475-1-23'),
('ab408e24-35d6-4edc-a8f0-a74b5f0b4c1a','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-41'),
('ab439e1d-8353-436b-8019-cd6ec2e97c2e','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-10'),
('ab467e5f-a1a5-4ebe-b23d-dfb76ab16ae1','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-63'),
('ab46c880-786b-433c-af42-03f7c12647f6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:38.643','248135683-1-88'),
('ab487c21-84d6-42d2-9f88-b70e67b623c8','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-5'),
('ab4a16b9-618c-43fb-89bf-b9e6fe9596ca','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.392','734447528-1-27'),
('ab4addf9-1ede-486f-9748-6ba2b2c91fbb','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-34'),
('ab4af871-f1a5-4d9a-b4a6-34c4b25f989e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.062','223441694-1-15'),
('ab4d6173-fe90-4dde-9f06-1cfd49997aa8','ca6f8e10-2fc3-4758-88b3-5193a7471753',84,7,142,0,'2025-08-25 12:31:54.926','2025-08-30 18:25:03.280','371684650-2-2'),
('ab4dd81f-10a7-4436-a731-856301777e42','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-105'),
('ab4e7e95-cb33-414f-b7f6-5a5faf6a5778','c90aef9b-b83f-489b-afc9-92320b0dc24c',60,60,45,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-5-4'),
('ab51b36e-37e3-4e48-8101-2b7cf886350d','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-8'),
('ab5342c3-fad1-4fce-8b90-ca58e06f2efb','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.353','248614196-1-3'),
('ab5922a1-664d-48ef-9905-6341abb067a1','fb58f438-30e4-4e01-af6e-6378e27a11fe',32,40,39,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-19'),
('ab5a3631-07b4-490f-8b54-1287c9076cf7','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',70,105,105,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-12'),
('ab5aae98-2e93-4955-975f-dfc304a96345','a52a8f1e-fcc3-47df-b282-9601c50b05d2',190,8,49,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-3-4'),
('ab64538a-6030-4022-a76a-216efef1c542','4a5c62d6-a67d-4715-b664-2917d2d2adbc',0,0,0,0,NULL,NULL,'614941926-4-1'),
('ab66c5ba-7aec-4200-8631-981f177e5ccd','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-69'),
('ab673b81-d151-459c-8599-06ed1051ef09','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-7'),
('ab6a65c7-955b-41a1-b45d-666c5e4e83a4','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',53,29,15,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-3'),
('ab6e77cd-fc03-43c8-9e8b-035455900a17','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.363','412586892-1-9'),
('ab6fb908-e2f5-4a85-bcd1-7af1c39d42a3','f609ca05-b6ae-4dcf-ba26-864d6a39966b',51,51,76,0,'2025-05-28 19:08:51.904','2025-06-06 17:37:19.862','221989961-1-3'),
('ab78959a-ace9-404a-a75e-b89802214e4f','256006bd-b235-4d94-b138-40c9fa05eaf1',99,14,172,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-2-4'),
('ab7b17b5-5083-4fef-840e-67b1a56519b3','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-6'),
('ab7d2fb1-ccc5-4b5c-b8a2-0a1a37fee8eb','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-6'),
('ab7da9ee-b8e0-4836-b2cc-c6c876084da9','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-17'),
('ab7e4593-3ddb-4fca-a6d0-5c273aece9dc','38ea6d71-f51a-43ce-a3ea-967bdd9f527d',95,257,80,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-1-3'),
('ab7fc92b-9345-43b3-9c36-6b74d9d0a5e1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-76'),
('ab800aea-6ee4-4711-8a0b-89045d287c84','5d03f819-f7e6-4cdd-aa5d-ca38ac9f6b4c',0,0,0,0,'2025-07-02 12:43:27.646','2025-07-22 10:19:34.420','501423957-1-1'),
('ab81e834-4c2e-4dac-ac45-ad6c0c148e50','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',150,92,8,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-25'),
('ab8319df-b374-40e4-b210-5512c79c47fd','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-3'),
('ab86ad4e-34e3-4f96-83fe-e5d48ebf56a5','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.560','371696812-2-2'),
('ab872776-bb68-4ebe-8f7a-e96ac06ee184','aed57dfb-3aa2-4f6a-849f-51424a18ca86',28,25,18,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-6'),
('ab87b02c-185a-495a-9d80-cb1efadfb2be','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',200,103,4,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-45'),
('ab8bd5c1-cc8e-4055-b1aa-78cc55507231','4e4af127-4320-4f89-92fe-1163834e6b38',151,80,90,0,NULL,NULL,'449888594-1-2'),
('ab8d746f-a108-47bd-a73c-06b29a3b9967','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',76,47,19,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-35'),
('ab8f4f12-bd54-4492-b0fd-bc097c781b77','5c57ba4b-63d2-4267-82b7-2687078d3e3c',81,108,56,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-2-2'),
('ab9112d6-bb2a-45cb-986e-c459c89891f7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-164'),
('ab911a7c-e857-4757-9b51-46a5929c4955','e2c96f59-d7d0-4a7e-957d-cc8dd004bf39',8,101,190,0,NULL,NULL,'59884902-2-1'),
('ab936032-f8ee-46a0-ab96-d9f6e3d0ed0c','1087586e-034f-4ec1-9828-d61ce37a1821',53,23,110,0,NULL,NULL,'478153975-1-4'),
('ab944ee0-6898-469d-9f51-8f9430c06c82','6060763f-09fd-4b23-9d16-0641dc9c453d',161,200,4,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-7'),
('ab952fd5-29f2-4866-95ef-3854e413b296','3535d433-eb38-4879-84b4-dbf8410809cd',6,42,214,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-32'),
('ab96656b-5f9e-458d-99c3-06b2d0bbf9a9','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.997','223963997-1-7'),
('ab96d446-7bdc-42fd-8b9c-c30deb95946f','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.816','2025-07-03 11:20:12.743','223422825-2-13'),
('ab9786bb-3674-4f06-90a8-f7763307b8af','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-5'),
('ab979b37-0416-4670-8a14-ca83bedd1091','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-90'),
('ab999986-6467-4a46-9d45-61eb48f64288','b80a687d-56a1-4f89-95ec-335dbcb599d3',0,0,0,0,'2024-10-17 13:41:10.385','2024-10-22 13:52:03.553','97677559-1-1'),
('ab9a35e3-43d7-4e11-b78e-49fed1617140','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,60,9,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-51'),
('ab9addab-fe9b-43ae-9111-fef3fac17e59','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-3-4'),
('ab9bf936-7c2a-454b-99dc-c699f0ce6186','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-7'),
('ab9fb01f-e9ca-4a88-abaf-7960e08d62b8','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',58,62,85,0,NULL,NULL,'808384982-1-6'),
('aba2413b-a676-4dd1-ac9a-124b0f117538','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-87'),
('aba32315-ae53-4858-b347-1a9fbe27869e','6ec853bb-abac-4ef5-a04a-072663abe372',0,0,0,0,'2025-05-09 18:43:43.429','2025-05-21 19:38:37.567','745991962-1-1'),
('aba52cb7-b96d-49c1-a446-4eedc72ec626','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-96'),
('aba7a7d5-ee34-4387-97f1-0d3ebcbb38d9','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',120,100,68,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-9'),
('aba81d82-e92c-40fe-b9ab-1628d0b8d11d','04dff17a-2b9a-4f35-a082-5684dfe5706f',195,15,3,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-12'),
('abab8a12-2a52-432a-8555-93a7b90ab2e7','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-185'),
('abad7e86-ddeb-4501-be0e-7a688d587103','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-11'),
('abae1e25-8e50-451c-b372-f5f93bc1020a','2ee29e0d-5d75-451c-93a9-a55038d6d101',0,0,0,0,'2025-02-03 18:18:43.137','2025-02-14 10:41:18.327','74534951-1-4'),
('abb05a7a-4e2b-4448-acaa-9c5f706ed34a','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',43,8,210,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.764','745873539-2-9'),
('abb2fe3f-516e-4567-b7ec-37d3151ae45c','d900f244-58b1-48aa-aa17-83c60fa8fafc',28,180,200,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-5-1'),
('abb42431-adf3-4f4d-8d44-bc47e39782cc','53025d92-f019-4f5d-9b69-68a3b09bb7bc',130,206,5,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-20'),
('abb4633b-c2ab-4e74-9640-cc5630d28a2f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-119'),
('abb59442-0d81-469a-9415-4ec2cf99b50b','c2097eeb-dbb1-47f0-8cca-48457994d308',92,102,70,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-3-3'),
('abbc0dcc-77d0-4c17-9026-cf4c960d49ad','69545533-7407-43ed-aa87-ace1a5f77648',34,18,8,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-5'),
('abbc6c51-f595-43e1-8edb-261d7a8a5ed2','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-64'),
('abbc9932-0caa-4071-a7c5-31c2ed4d25e6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-99'),
('abbe6235-4472-45f3-b38e-fc01b7d777c6','91bd5cab-6fcd-41cb-966e-9b9d6f32b15f',7,77,128,0,NULL,NULL,'221196305-1-3'),
('abc038a7-6783-4fe7-a6ad-3d56b56eab59','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-197'),
('abc0985f-d869-42bf-9ec2-c4114b8de65d','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-45'),
('abc0df50-3cf4-4c9e-9425-c60d01172fc3','a4b67ff6-faf9-4a12-8e79-94df38007116',51,204,34,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-4-2'),
('abc1765a-571b-47e0-8155-eacd79e319c5','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-31'),
('abc19648-3d4f-42ff-876d-14def215bb9d','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-157'),
('abc4dd10-d91d-4363-8fa5-7e0d83b716e2','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-7'),
('abc7025e-8340-4314-8af7-97f6f21c15ae','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-49'),
('abcd6879-6bc4-46f2-be01-d3546f5f0a36','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-166'),
('abce66ef-1c69-4560-94cc-aed06b4e7759','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-14'),
('abd1c83f-d04b-4bba-bd80-f485e4594fda','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-8'),
('abd3180e-1da2-488a-af83-cf5c57beed87','4a37c431-7317-431b-8aa0-05bfbd0b8456',0,0,0,0,'2024-06-08 08:00:19.084','2024-06-20 20:15:47.637','449627061-1-4'),
('abd45e64-3611-4a0a-bddb-b7da30206b96','ad2443f8-53d8-489a-843c-af0350c2b5fe',26,49,75,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-3-2'),
('abd50787-508b-423a-a574-16a8c10558a8','d4f91387-af40-4672-a65c-7ea6e96f76b2',70,168,8,0,NULL,NULL,'478350685-7-9'),
('abd6822f-0946-4996-b3ae-54f284634bbb','6f44b113-5917-40cb-9c98-9456f8c03518',10,20,150,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-7'),
('abdc3177-efd1-4601-8272-ebdde97fd278','54615f37-dc23-4fec-a058-63bc43066248',51,51,77,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-2-5'),
('abdd2638-e154-492a-8916-1046d21bf4d7','2595f24d-a640-4e24-9f79-2fb9e7f5696d',50,50,55,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-1-2'),
('abdd3bdb-88ad-4c0a-bdd5-3215cc455c75','cd8df407-b5df-41b3-9552-a349d4e71404',55,55,78,0,'2025-04-28 07:40:24.988','2025-05-10 20:12:30.472','613431273-2-2'),
('abe23eb4-9323-4d2b-bc03-54358a7b491c','b586b800-5234-4efe-8034-338d0734dfab',0,0,0,0,'2025-01-20 11:21:16.733','2025-01-31 12:16:25.732','478250269-1-2'),
('abe41994-ee4f-40a8-806a-24ae4aaf0b39','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-97'),
('abe50430-6ca2-43a2-ba25-07eb58936c5e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-97'),
('abebde57-c19f-499c-bd8b-d9862f6d6346','42781ec4-0202-4d59-947c-1921f95a4539',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-3-4'),
('abee360f-fc29-42d0-93a5-a71a2f710883','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-96'),
('abee98df-6137-43e2-b4a6-f60bb2d8aeac','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-29'),
('abf083c0-27ad-4a07-a0f8-b691c3aedd89','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:17.169','248284003-1-139'),
('abf34022-86d1-44bf-bf95-962eb7a5b143','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-3'),
('abf52652-f2d6-49d2-9368-73eac7af6e66','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-21'),
('abf759e9-77a4-47df-9361-2a9ef3ca1d70','5d66409e-1cf5-41df-82d4-6465db6f6598',105,194,75,0,'2025-09-18 15:49:04.451','2025-09-30 06:44:37.463','371155650-1-1'),
('abf8289c-0f58-41b2-b956-72e4540e5a96','d8b997b4-f874-47ea-b9fd-067dee0368c2',51,51,77,0,NULL,NULL,'515128101-1-2'),
('abf8c8ee-b66a-479c-99e6-886fb701e8a8','5df6ebd9-9f42-42e8-b325-2e290291826a',110,37,215,0,'2025-08-27 19:40:06.874','2025-09-05 08:50:58.370','437154123-1-3'),
('abf8f021-ea73-4a3b-b214-7de14d55ec02','7a3874a9-db61-4cfe-8c48-f341a8247a1c',85,20,20,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-3'),
('abf91e87-8e0b-4a75-946a-47cb13658b6c','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',30,30,20,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-4');
INSERT INTO `shipmentpart` VALUES
('abf99cf5-ff23-45d2-b17e-2025f438c59e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-56'),
('abfb42fe-505f-4862-af30-e0aac15c8330','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',128,59,8,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-8'),
('abfc3078-0157-4c91-a4d4-04b82a44ea51','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-72'),
('abfc519c-b566-42c8-b099-c50a3799dbf2','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-12'),
('abfe65d4-8bb2-4eb7-bf46-a112a09d1274','927ceb65-f6d3-4068-b0ea-1412cfd0a754',85,53,49,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-3'),
('ac03bbe0-3f27-42bd-8132-3d9de54fc3fb','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',98,80,129,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-8'),
('ac04e7fa-4d2c-487a-91e4-8fd8d22ea933','b274def2-5938-4339-9718-1812b0cc9acb',0,0,0,0,'2025-10-20 07:18:17.165',NULL,'598373943-1-1'),
('ac07bd95-406b-4766-aab2-af849537b392','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-1'),
('ac08531f-2abe-4e9f-93b2-198bbb6cb0a6','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',80,4,206,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-13'),
('ac115acf-b2bf-4f45-a62c-b589a46e9c99','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-5'),
('ac123e82-2d16-4f42-b9f6-bba1724fcf25','4127ee40-0e2b-4246-87af-80c9d221472d',110,83,70,0,'2025-08-21 07:14:56.642','2025-09-01 16:56:53.496','598961970-1-1'),
('ac12a067-f1dc-4d84-9558-dc621650675f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-32'),
('ac14f964-855c-4fe1-b7af-5cee8757d59b','824d6217-b971-4993-8029-722e4fdadc9a',90,62,61,0,'2025-08-27 19:40:12.363','2025-09-04 06:16:45.735','644826740-1-3'),
('ac154c8a-67b2-4ac5-9e65-fc12ba81acec','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-29'),
('ac1722fa-65d3-4f56-a64d-824d58fefa1e','57604baf-e8cf-4035-aab3-ed4bab52522f',47,61,18,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-8'),
('ac1763d7-d8cc-4654-bb3f-7c9b3e840601','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-24'),
('ac17f43e-4761-41d6-b69a-454fd1d1c9cb','d0512e6f-47bb-4d5b-9300-eec57f981f59',0,0,0,0,'2024-11-25 08:28:31.042','2024-12-05 16:18:43.895','478618410-1-1'),
('ac18e3d3-2924-40cf-b038-ecde3285d7bf','0ac2a48d-48c9-41d2-91a2-b574a94542b0',3,33,96,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-3'),
('ac1adf86-4082-42f4-bc5d-6a42cdc809b4','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-30'),
('ac1cc8e8-2310-41de-b423-9bb91cf5a51c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-35'),
('ac1d6aba-b09f-414f-852f-231f300bc9d7','c98f6188-56c5-4870-be97-be71cf95f62e',80,53,53,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-29'),
('ac1fa660-1419-4f1f-b54f-f19b5b73b545','b1e25181-d908-4fcb-b5f4-98f1985c7698',96,50,50,0,NULL,NULL,'644303406-4-1'),
('ac236220-0294-4c58-bf40-dff244ad89fe','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-16'),
('ac23eb48-4dcc-45a6-a6dd-e950bc9eef32','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-115'),
('ac24ac71-3367-4c03-9f3a-811666914001','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-96'),
('ac2520c3-fcaf-4b87-aaba-7eedf66108d1','c8a2a15e-4279-4904-a725-a9d44306abad',57,57,33,0,'2024-11-02 08:42:34.242','2024-11-09 18:54:14.451','412441586-1-8'),
('ac275906-93a6-40ff-b396-9d8716273e86','60265db6-b4a8-4ae7-8ba1-2177955c5b94',55,76,103,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-1-3'),
('ac27aab2-e22c-4905-9312-a81f8a857737','b5604942-4711-4185-9f16-590acfefb52b',110,199,40,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-1'),
('ac286bc5-2871-475f-8aa6-d06b495efac7','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-8'),
('ac29ba44-84e3-400d-88d8-8362d23bbc21','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-124'),
('ac29d997-75c2-465e-94e8-edcc889719bf','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-5'),
('ac2b01e3-9a27-4742-9a86-efb6d71b454f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:17.928','248284003-1-177'),
('ac2df1a4-b5ff-4871-b675-84e8cf8f08bd','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-8'),
('ac2f0ecc-a9f2-4851-a8a7-125303f75808','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-9'),
('ac34b7d1-4509-4db7-aac5-670893285d9c','c7ec2251-b2e5-4bd2-ab66-88acea94c958',120,121,75,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-2-3'),
('ac36344d-d385-4647-9b09-ba3963c2f91d','642202df-ca75-465e-8036-f34da2dad54d',228,50,10,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-4'),
('ac37573c-ff93-4ba1-ab48-ff76f06c1392','6ece3da6-36dd-4090-9715-e7c90799e5fd',53,76,102,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-3-1'),
('ac39fcd1-4e15-49b2-9fb3-3618ecbfd6bf','220fed8f-f96e-4af5-867b-ac05d11bda6f',81,6,81,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-9'),
('ac3c0227-ce90-4a5f-b233-923be317bee1','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-3'),
('ac484b8f-fa9d-483c-9438-4a65755770b2','baace365-1a71-416b-8d76-9200d2fa2407',90,26,200,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.170','644832811-5-4'),
('ac48b20e-9db6-4286-b442-e38b67c35f78','c6978e84-285d-4839-8eb7-18796d2859ca',0,0,0,0,'2025-01-26 10:54:26.977','2025-02-10 14:15:56.720','221752631-1-1'),
('ac48b49e-48ab-4e92-b608-9ee0a0b1c82f','372213fa-c2e3-4293-b83a-0a8cb1587967',96,145,65,0,NULL,NULL,'765864813-1-4'),
('ac4a7c9e-57ba-4c00-8e4c-c1d4a87e5d48','e6d585c4-5882-4c57-becf-3e10261357b1',7,195,59,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-33-1'),
('ac501e8f-bbf9-40ce-a6f2-db28499e7b38','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-36'),
('ac5139e7-5aa1-4312-85e0-118cd3cce9bd','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-31'),
('ac53fca0-e986-4f79-8f20-a9c80a7c143d','795d2f7a-ffa2-4492-98f6-4e205fe5de73',78,100,58,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-1-3'),
('ac5588da-d5ab-4842-883f-9919e0ba51fe','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-22'),
('ac59153a-2d56-48c8-a1bd-856e40873223','582920d8-061b-4cd8-a756-49a9a3248cb5',206,31,36,0,'2025-06-11 13:14:34.755','2025-06-19 08:55:52.973','644796086-1-2'),
('ac5b9833-98ad-4f7f-979d-5e6c395afae2','8ca62177-fd4f-4b97-8db9-1855dac0207f',190,100,40,0,'2025-07-19 07:52:32.811','2025-07-26 08:30:20.850','248549362-1-2'),
('ac614117-8a8f-4fff-b243-84da2c12e3bb','fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f',44,8,96,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.526','910772127-4-4'),
('ac624482-c31a-4342-b8cd-30d7b046d2bf','309be9c3-ebca-44d8-be99-f31ff6faaaa1',80,80,75,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-2-1'),
('ac626d2e-c0b9-4c46-8283-7a664cdcfcab','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-25'),
('ac6869f5-3919-4cc9-881d-59be8a40ec5e','77c075a1-c114-427c-b6fb-f1d092d89d6c',100,76,53,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-2-3'),
('ac6a1806-0f45-4d63-8bb4-7268dfb534f1','2fb19f98-3e7f-4224-baf7-2836d72e91ba',109,69,73,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-4'),
('ac6ba5bd-fa60-4965-9128-60ae82c2ad60','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.062','223441694-1-213'),
('ac711ba2-d8c8-4914-b3d1-65272ab44ede','7908530c-18a1-4a83-b5c2-fdea91117bbe',235,100,60,0,'2024-03-31 17:55:03.269','2024-04-15 11:37:34.889','449178440-1-2'),
('ac727e07-26c4-471c-8410-7073025e98f0','477f5d1d-406c-4147-a6bd-205816f5db0a',0,0,0,0,'2024-09-28 16:27:08.203','2024-10-10 11:34:51.670','982799609-1-3'),
('ac7da189-3d3d-4c77-b8ab-b5f6e56bb5e7','886e0e1a-c599-47ba-bacc-c329212cc55b',88,4,204,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-22'),
('ac7f6188-60ec-42de-ad5d-2375409084b4','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-22'),
('ac802046-c869-4fe7-9040-5a7cdfe489da','d22d7227-b6be-4a20-978b-11fabd469cb9',45,32,32,0,'2024-05-17 09:42:09.160','2024-05-28 16:23:12.626','126274786-1-4'),
('ac802d62-c10f-406d-a7e6-adbf495b7c20','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',70,205,29,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-11'),
('ac891bd7-d86c-4257-bc9d-2706c67ce554','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-98'),
('ac89997d-6534-49aa-a00d-0bea1c31a646','4a61ce4d-fdd5-4745-a2db-47455ed6b156',97,120,80,0,'2025-09-26 12:39:37.123','2025-10-10 21:29:51.184','437649696-2-2'),
('ac8c9875-3228-4446-b88c-056b2230b225','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.341','2025-08-02 17:36:11.137','598668612-2-1'),
('ac8c9d8b-495f-4e03-82c1-08e2cb408eb6','5e6bc612-6c7a-4f9c-8252-00151bafb04f',48,40,233,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-5'),
('ac8d8ca8-d20c-4dce-bfad-8338da4648c8','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-5'),
('ac8e0fcf-7e12-4ffe-ac78-9c4eb697fe6c','bf3c6d76-210c-4d83-8776-c792b4de5d83',94,202,28,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-7-6'),
('ac8e118b-c7f9-435e-ac24-6fde730c398f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-17'),
('ac8f7e6b-1cf0-4830-8991-8f9b779ade9e','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-30'),
('ac911ff1-0d11-4070-bea1-f0a6d8c9547e','9d7979f3-a35a-4a64-97d1-4ba973786029',40,14,135,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-12'),
('ac91ac55-0299-4478-88f6-fe67182e92a6','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-83'),
('ac9296e6-85c9-46c9-90dc-eed079e44541','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-11'),
('ac93dba7-c546-4b6e-8dfc-5f096054b8fe','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',112,56,80,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-13'),
('ac9c3ebd-cd67-4c60-b118-564370661f70','8671fe0e-66f9-4cd3-92c1-b4cc827cf293',100,160,70,0,'2025-10-22 13:06:42.959',NULL,'644589662-2-5'),
('ac9e9f88-eac7-4b05-9e94-4e972089e338','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',95,18,162,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-4'),
('ac9eb8e1-e448-4112-88dd-ad3c3c138c69','73de3918-2f08-47da-b796-b97c2383ecec',52,52,46,0,NULL,NULL,'221407742-2-1'),
('aca16369-80fe-429f-9dad-e60f5aa571b5','46d1512a-2bfb-476d-a224-9390f3e194f2',51,51,4,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-22'),
('aca45a75-aebc-413c-8252-aa6f118f5eff','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,110,110,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-7'),
('aca491a6-431f-41c1-aff7-c492ffaef0c4','d8896502-ee1b-4969-b484-104bc8965f47',50,15,10,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-5'),
('aca4b4ae-cd38-4a8f-9248-0d1eabe6efeb','d0f1019a-0cb9-4fff-9f33-5af28e47634f',96,186,6,0,'2025-05-09 18:44:17.177','2025-05-19 20:26:37.031','644113100-1-4'),
('aca5a027-e914-4290-ac8b-e509064da7c0','3cd9c83f-509e-4b69-a8a0-bb45f200c3d4',56,102,77,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-1-2'),
('aca61c61-e694-43b3-87dd-2cda9aad0a1e','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-19'),
('aca761ea-52a4-4c0a-ad41-282d2e6cd89b','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-3'),
('acac347f-46a3-456a-b1c7-6d7fd3d1abd8','a769cd75-8095-4eeb-999c-d1a749589a77',95,232,64,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-21'),
('acaf565f-a161-43ec-a72c-c314440cbc68','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,75,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-3'),
('acb0f0c3-b0e7-40f6-95f2-c48f9c636cb0','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-26'),
('acb73a45-8bac-42e6-b97d-4a68ac85eb4b','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-56'),
('acb7f06b-415a-464b-b943-d33859d7b854','f0485a78-951c-4f89-bddf-b2003f0bf783',75,26,43,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-46'),
('acb8828b-5177-4157-9af0-fa33d7bddcf5','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-70'),
('acb9199a-c8f0-4520-a392-65c9a87ac152','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-8'),
('acbb50fd-2dc3-41a8-8962-a67c21f20455','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-14'),
('acc0a4a2-060f-4198-af77-a87defc2d2f8','c9b410bf-c39f-4d56-97b6-272196df3cc6',195,17,120,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-5'),
('acc1ee4b-8888-4efa-b866-286bc605b85e','ae48a731-1e1e-4791-81d2-4d8761a3651e',106,58,80,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.758','644968450-3-1'),
('acc24ccf-cc7a-4248-bc3b-e8fb8b0f4670','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-16'),
('acc329cc-a07c-4995-bb78-fdb3523c1b6c','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.062','223441694-1-193'),
('acc50115-f1d9-4d64-a3f4-9b0fe88ef453','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-16'),
('acca7b48-d904-49c5-9c8d-ac9b0b87a9b2','1ee10629-f1ed-4f00-b3e7-b0eabc56a71b',230,95,65,0,'2025-03-08 13:46:23.570','2025-03-17 14:53:57.989','910572875-1-4'),
('accf0677-9c9c-40b4-8389-a81669d14191','f95bdefb-9393-4e36-a67f-177a26978136',26,200,90,0,NULL,NULL,'803703209-1-2'),
('accf7923-5896-4705-a8d1-c214fa34c46a','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-4'),
('acd009b3-4a34-457c-9b8d-6417afdbf253','03ad506f-f86b-4dbc-952f-52b01e2467fa',112,32,8,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-45'),
('acd1f070-484d-4e6a-a237-87b6f74a832d','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-19'),
('acd21e75-f914-48a7-9d62-6ca6e210afa2','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',76,39,42,0,NULL,NULL,'011548428-4-12'),
('acd3c392-2cb7-4177-a352-6191589137e6','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-1'),
('acd501c8-08b1-4079-aae3-310fc8539a5e','0a8285d0-d3db-4298-8e41-62c5429f150a',128,84,16,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-18'),
('acd70637-c2eb-4d4d-a68e-dce22ec2ab17','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.956','223734808-1-56'),
('acd7b7e7-0165-4b7d-b2a9-baf9176b7a27','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.715','2025-05-21 08:16:54.198','745817440-2-3'),
('acda2334-8a3d-497b-9f77-d8cf00c164bc','8199fa34-7302-41aa-ac5d-0e057503fe32',95,278,60,0,'2025-10-06 07:10:14.815','2025-10-15 08:25:23.453','478749881-1-5'),
('acdad122-5db0-4be2-8726-c822b5985251','d8896502-ee1b-4969-b484-104bc8965f47',195,95,62,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-6'),
('acdcb946-1a38-4934-ae97-4a2249af13f5','5032b9d1-12b3-43c9-be24-f1af560c5e03',0,0,0,0,'2024-11-15 17:06:26.238','2024-12-01 12:27:55.685','745445888-1-1'),
('acde9573-cef0-46c8-a644-e75e623f7475','494fd125-9e91-4803-a945-381b0444857c',83,95,95,0,NULL,NULL,'449983232-1-3'),
('acdead5c-e117-4700-af93-8e83952dea54','217455d9-4668-4753-ad89-562e50f0bc65',101,56,82,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.063','505948491-2-1'),
('ace54901-d9c3-48f7-a00e-d1b86e5d07bc','3bc08a9b-6927-40c1-bcc0-c1c07c409f89',51,51,77,0,NULL,NULL,'221963489-1-2'),
('ace5d97d-0032-4fe1-9f23-7228651be1de','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-23'),
('ace65a03-a569-4971-8490-165c74fd5815','f63639f3-aa59-4a10-98a8-8b3cc509b6f9',30,90,28,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.371','517447554-2-2'),
('ace6dfac-da5f-4e0c-87f3-d4dc76e0a018','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-60'),
('ace9d32e-15c8-43d2-a59d-6ffe7e382ba4','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-96'),
('aceddb8f-b79a-445c-845a-0f8fd9c391af','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-27'),
('aceebe79-160a-4ca3-ac36-8c923ec0c0da','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.099','982405831-1-5'),
('acf24582-8f62-42e3-bdcd-4b05da1c3f0f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:39.287','248135683-1-145'),
('acf2e629-705a-4854-849b-81e474bd2ff3','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-4'),
('acf4da0d-7fea-4ff2-90cc-4591542831bb','af69c5a3-87d3-4548-a650-720b69a4fc69',60,13,93,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-32'),
('acf9ff64-0c97-4df2-a90c-1cd7a1407347','e4ac663b-0089-49de-bec8-f0e4c8fde7a4',161,93,13,0,'2025-10-06 07:10:27.538','2025-10-17 06:13:01.460','371865484-1-1'),
('acfe70c3-4367-49cc-bd7e-33f5b61622fe','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',42,11,215,0,NULL,NULL,'338991013-1-6'),
('acff1490-0bd7-4ab8-ae8a-dfd7030c6878','9abed32a-1a8a-471f-8e0e-fa085f4225fe',34,34,74,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-5-1'),
('ad01e62f-3a18-4616-a485-8efa092da13b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-76'),
('ad05d6c6-a1d6-45ef-9dfb-9055ae7f69fc','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-23'),
('ad0948f4-7cd2-402c-bfd9-36f8922ea356','9edb0c9e-c517-46ac-b46f-908df1462d7c',13,91,205,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.569','598320188-5-2'),
('ad0ee841-8f37-41d8-babc-4d45c2c60531','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-9'),
('ad11ec13-7041-46c7-ae0a-c9aed922e652','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',207,108,8,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-6'),
('ad16b507-4e68-4965-87e9-1b9353c53800','af69c5a3-87d3-4548-a650-720b69a4fc69',13,200,98,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-23'),
('ad17e278-52cb-4004-a39f-378fb40cc7bc','d4b48666-94f9-40d1-8fe1-059d7aa569f6',230,95,68,0,'2025-02-09 09:51:56.373','2025-02-15 10:17:42.131','633870078-1-2'),
('ad18f81c-17fe-4dc9-b2ca-75b94e62f5ae','d77c1e4e-c306-49d5-a8dc-4ae4f2dfa986',245,97,60,0,'2025-01-11 15:20:10.779','2025-01-19 14:52:20.190','449558519-1-3'),
('ad19dda1-2464-44bb-8533-d0689be040cb','87758232-82f4-41bc-a8c1-71f044bd69f4',115,68,101,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-6'),
('ad1bc334-eec6-4669-b0ec-183a359fa47e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-163'),
('ad2468fe-5494-4518-9982-408ccb58aa23','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-17'),
('ad255570-cbc2-4565-8700-e8b89a8b90de','5a768734-74b4-44fa-8896-4be9106b7b5b',71,100,183,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-3-3'),
('ad26118f-8e1a-420d-92f6-9d066c63388d','397c6c0c-2b5f-44b0-8b19-823a5a63374e',0,0,0,0,NULL,NULL,'412980691-1-2'),
('ad267b21-cd3f-46d0-b585-dc2025168a02','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-50'),
('ad2738b7-5f9c-44bf-9d90-ca4de9e19a01','f0938bac-d786-4f9e-9ea3-f5f0f10d7670',40,30,60,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-4-1'),
('ad29a93f-adcb-419b-9c7e-898329ae2601','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-15'),
('ad2d37cd-d965-45a1-af8b-9b385197d2b5','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-70'),
('ad2d586a-c1c8-4b23-a3fe-9c0b31ffc1cd','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-17'),
('ad2f7ce5-923b-40c4-afe0-b7cebfb2e190','53924259-8949-4b83-8f78-011a92bfc95a',73,37,38,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-1-4'),
('ad3199b9-2704-4c8c-b6a6-fb6f69e9f404','642202df-ca75-465e-8036-f34da2dad54d',120,7,250,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-15'),
('ad32dea3-89a3-478c-962e-a8ef8a2d7140','5cbb6c75-8a55-4d2a-bbcf-444624bb5962',56,103,83,0,'2025-10-25 08:59:15.286',NULL,'505414907-2-1'),
('ad3bc330-9d83-47a7-86db-60a4a01305e7','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-82'),
('ad3d649e-6a0e-4c06-83e6-c25df706e830','1dff9484-7b74-4dd3-bde2-e304e871a006',115,57,70,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-6'),
('ad3dd5c6-9cb9-4f15-bf97-1983259da916','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-93'),
('ad3e6e45-bd09-4dbb-a6df-eb317f65c6c9','0bd42145-fdd8-4793-a5cd-a2e404d37142',130,20,12,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-15'),
('ad3fb707-b6a6-47dc-9651-c013a0c585e3','1146c60f-37ae-4960-9ff1-39c79125711e',87,73,76,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-7'),
('ad3fc671-6fc5-4eed-b949-a17298c4b452','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-94'),
('ad42043a-6244-4be1-a3e5-5af2672f8bde','fb58f438-30e4-4e01-af6e-6378e27a11fe',200,20,15,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-20'),
('ad43bbc9-84ee-4128-93ac-0a2b68cd3fbf','b7fbd54c-bcc0-4613-9901-d06327048472',51,205,8,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-14'),
('ad43fac6-13ff-448a-afe6-5b2c3d6cafd6','4da5ac02-2da4-493f-ad0f-88044a96633f',93,195,60,0,'2025-10-09 05:39:55.569',NULL,'046517356-2-4'),
('ad450c9e-dcc5-4b3c-97b6-cc3781d35f9b','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-1'),
('ad455975-1f40-4e6c-a0cb-77de26697616','fcdb68c7-3f48-4ca6-807f-23c014d6a46c',56,82,110,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-4-3'),
('ad48023f-9be1-49b3-8310-91bfd4c6a47c','bd176b24-f129-40d4-8c33-6b35eded0fad',41,8,101,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-7'),
('ad4acaed-fe94-4e77-8395-d0df5cd54cab','a21a956a-a1fa-49f8-b944-749b652df74d',0,0,0,0,'2025-03-24 16:02:11.404','2025-04-01 09:23:29.356','745837821-1-1'),
('ad4ba77b-e460-4b5c-ac85-d7ccaf20ac75','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-48'),
('ad4edd0e-5bb4-453b-8a44-71966b50fa7b','54707b39-45b5-4671-a451-066aaf860052',211,55,116,0,'2025-08-21 04:15:25.653','2025-09-04 21:03:33.162','65754067-1-1'),
('ad4f6b29-68ec-4a42-835f-ba1fa5734f6f','aac7bb1a-b209-4bf1-a4b8-672a611be401',55,50,5,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-2-2'),
('ad4f6e2f-3991-4cd0-8139-16561c6c6cc7','c29e76a4-89ba-4143-8fad-01a2910620ee',210,15,15,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-24'),
('ad534691-b714-430a-a5f8-0253289d7d5a','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-7'),
('ad53bc1c-b817-4ecb-a3de-63af1c9f5d8d','555b2841-46e8-45eb-9191-165bb36234f5',65,90,80,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-5'),
('ad5551ab-f144-44e7-a0c0-b247a4708649','e1e33996-1f56-4589-8cb3-6163af9d398d',95,70,162,0,'2025-06-21 04:33:47.207','2025-06-30 08:56:30.724','695394738-3-1'),
('ad62c801-a1b2-4028-bc13-ef16bb7d5929','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-2-6'),
('ad62ebcf-bd54-4b78-a446-debad9b31ba5','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-9'),
('ad668e93-2dde-4189-a608-c36da54d71cd','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-16'),
('ad6ad677-dcd9-49a5-a8c7-cd387c984ba8','5cbb6c75-8a55-4d2a-bbcf-444624bb5962',56,103,83,0,'2025-10-25 08:59:15.286',NULL,'505414907-2-2'),
('ad6b55e1-f93b-41ba-aca8-680d20e3a80e','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-15'),
('ad6e69ae-d522-4b96-b3f7-bdc73c231490','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-175'),
('ad6f8650-3f92-4b62-8b44-af9995689b30','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-7'),
('ad72fa98-50d2-4168-a014-50cc65995fd3','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',41,30,30,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-29'),
('ad73ad4a-2e14-4a8b-b6cb-652457cc0f39','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:40.382','248135683-1-134'),
('ad759a1a-6683-497f-a3eb-bff05a27b71a','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-5'),
('ad775aff-40dd-44c0-a659-c757f2f3c81b','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-7'),
('ad795b41-75a5-47c9-b580-b12af3354ce6','661b31b6-5864-4d50-94ae-a24ef9908dbb',85,90,70,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-5'),
('ad7bb70a-4580-4b4e-b45c-f7a7c1685a63','c530f905-27f0-487c-bf56-8ae218e8420d',71,46,13,0,NULL,NULL,'478153975-3-1'),
('ad7d40a9-93be-453b-9b22-51d5d8ffd56b','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',14,10,88,0,NULL,NULL,'478702481-4-1'),
('ad7d7c13-7ad3-41ed-b173-f64f4bb8ee4c','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-21'),
('ad847b5c-caf0-4394-864f-7d1b93a3c776','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,73,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-6'),
('ad881497-f011-4c4d-a9c5-915e0eb12264','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-25'),
('ad8d8dc8-9ea8-4238-8894-c7ed82d42fef','546ad3d0-25c2-43dd-9443-e48b8e5b6530',90,180,2,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-13'),
('ad905662-0ae1-47e5-910d-00b72a02a655','429b3448-0e29-43d6-8ad9-a760a9c747f1',57,76,101,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.990','675885408-1-3'),
('ad936e50-5cf9-4902-8544-b50c95174c8c','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-4'),
('ad94b955-27e1-4529-a571-6d930e83e8a8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-41'),
('ad94f4b5-1255-4984-9ea9-95306a2a939b','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',227,45,5,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-46'),
('ad9595a8-4466-46aa-b71d-1cbcb1907e09','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.640','2025-07-26 08:29:57.892','412218985-1-11'),
('ad987b9f-3587-4c86-bce8-6bd1f9a4a1c2','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-16'),
('ad98b694-c403-4095-b7da-b0e18a4964dd','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.466','011195834-4-5'),
('ad99a938-5e0b-4ed5-afbd-a349c03ea816','f0485a78-951c-4f89-bddf-b2003f0bf783',45,45,76,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-47'),
('ad9a560e-c184-48fd-9733-fe4eab9e9e25','7672c2eb-09af-4e1b-a31f-afac027ef11d',117,117,85,0,'2025-05-24 17:55:34.026','2025-06-03 09:41:18.079','019113818-1-3'),
('ad9d4a8e-a627-4c19-9be9-7526fa79365c','069a8d78-f134-4e20-9ea0-85d75f0f25bb',39,18,65,0,'2025-10-08 14:44:20.307','2025-10-20 06:33:02.574','765484490-1-1'),
('ad9db45d-06e4-476e-95be-21f84a088f52','afcdd189-4513-4f98-ba10-d072597768c3',0,0,0,0,'2025-03-13 12:21:23.215','2025-03-23 16:15:57.285','221892935-2-4'),
('ad9eff9e-f7e7-449f-a4b9-f7f7d612ee47','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-17'),
('ada5352f-7622-457b-b5f7-cefdb57f7237','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-9'),
('ada5520d-9438-4f6d-9f4c-fdefe355e8af','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',102,57,71,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.334','231211138-1-7'),
('ada64be5-6677-480f-a047-a0ec5020a5cc','89252f53-ec5b-4147-a609-055aae4459d1',133,133,8,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-9'),
('ada79589-905d-44d2-af44-28cd7a3d8689','af69c5a3-87d3-4548-a650-720b69a4fc69',60,46,14,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-17'),
('adaa78d5-0af0-4549-bafc-326c3e610bde','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-9'),
('adb26315-bbbc-4842-b3c2-0f3b028ba5ca','1b975dd0-98b9-4adb-88bc-962d71cc7b22',195,110,63,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-8'),
('adb2e9df-28db-4b21-ba37-ce716fe454d5','145fbc2d-f2aa-4de5-8885-821f4b79c3dc',57,76,102,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-1-2'),
('adb8e673-0ada-4cfe-a854-24e45d045b72','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-68'),
('adbd3da4-9edf-43bb-a8f4-f2ca9c00fef2','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-6'),
('adc4a247-90e6-4c11-ae32-3ff976baead0','ba4d79b7-2f50-472d-b8a3-175425785005',230,90,75,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-7'),
('adca967c-d69e-485e-a8ff-05e09532293b','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-9'),
('adcbd580-77ba-4608-a82c-e953748cfc20','5ea4b207-b05c-4931-bbd1-648b6933aae5',44,64,10,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-11'),
('add16f29-35a7-43f6-953f-6051fe3337bd','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-10'),
('add2bc9b-0a76-4cb0-890a-af9fec0e31d7','45749935-27bb-4063-9e4a-59a9d1cdc880',62,57,84,0,'2025-05-16 16:33:15.349','2025-05-25 19:11:38.702','221686815-1-1'),
('add3195a-5321-4b7c-b4d2-5ea6b1474474','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-68'),
('add9a2aa-021b-41e0-b5da-9983bc183cc0','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-20'),
('addb9db3-b8ff-4dfe-ae15-aa4e17c1b87d','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-15'),
('addc6d6f-15bd-4c9b-bbc7-7949e82a6d78','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-118'),
('ade25828-dff9-46f1-bb10-f905c5449710','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-43'),
('ade2ea47-68d8-4f5b-876d-662c8d5255e8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-127'),
('ade52887-f193-430a-980a-607949388691','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-5'),
('ade57670-ee04-4c4c-8c36-9a31073489c7','397c6c0c-2b5f-44b0-8b19-823a5a63374e',0,0,0,0,NULL,NULL,'412980691-1-1'),
('ade89777-c38c-4479-85c2-638adab2fbda','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-21'),
('adea83f3-a962-4a80-90bc-4bb957c47a32','0ca7b5c8-7608-49bc-9057-d56d835fbea5',80,5,126,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-12'),
('adee0c21-482a-4071-b53c-56ae59889a89','bc27f6fb-29e7-4868-a1a7-34e9df8d2c77',0,0,0,0,'2025-07-02 12:43:22.406','2025-07-23 06:18:24.906','41295798-1-1'),
('adf011bd-29ab-4ba7-8b46-29925e0e6fd2','84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102',70,90,70,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-15-3'),
('adf186d0-03c2-478a-b201-81868d8c5561','2d715c9d-be1d-4641-83a0-5f2fc0061517',52,76,101,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-1-3'),
('adf27591-0b3b-46b7-8351-094f5459cafe','b2cc240f-bde3-400a-bbec-a61085853dd5',104,188,14,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-9'),
('adf2a9ab-52a1-42b3-8f31-828bf01ee21c','e3d66a78-847e-4f74-898a-eb776d784d39',60,40,15,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-11-1'),
('adf2c581-a9f8-4df5-88ce-8fd291f66823','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.326','223249369-1-20'),
('adf64739-e9ae-4307-b3bc-daf138cb9a6a','ef603b58-9644-4d43-9c77-58a606dadcf8',82,111,56,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-5'),
('adf657a4-15ae-4957-8e5c-3ae643a4bdce','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-4'),
('adfca2eb-5f2d-4abe-ad50-9963dda06d37','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-91'),
('adfeea6c-b35f-41af-9e58-94f592ec6d05','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-68'),
('adff183c-b086-4570-a4b2-3bbed06e80dd','5c0848ce-c79c-43de-adfc-f4532526d6bb',91,201,28,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-2-4'),
('ae016561-0350-4146-a068-32f95884d07a','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-58'),
('ae04bf85-352f-4696-8534-30e185a98e42','354f4bd6-093b-4fa1-b444-b083fcea7323',0,0,0,0,'2025-05-28 19:08:50.514','2025-06-06 17:37:23.725','786398335-1-2'),
('ae073da1-3e6b-4daf-9407-27d3944dc11a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-115'),
('ae0bdd53-1580-419e-8c06-ea990556214e','e54055a2-3c9c-4738-a808-7a4a31877ef1',79,46,46,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-25'),
('ae0cd3e2-62fb-4cfc-a1a8-51cb377bb2b1','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-1'),
('ae0f5335-8a7b-46c3-a8c2-fc955993e6bd','8199fa34-7302-41aa-ac5d-0e057503fe32',95,278,30,0,'2025-10-06 07:10:14.815','2025-10-15 08:25:23.453','478749881-1-4'),
('ae10ec00-c07d-4e89-b1c6-cea049d6f64b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-71'),
('ae11bde2-ae0c-4b27-aa22-ded97773146c','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-25'),
('ae12929b-80cf-4bed-a8a8-84d7f1ce23b2','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-24'),
('ae15177d-46ba-473c-a242-8f87a2aff761','4b7d844c-2267-4af1-a242-7783f63d638a',92,93,68,0,NULL,NULL,'644234384-1-3'),
('ae15e7ab-4346-43f0-843f-61c0c3d5a35e','4127ee40-0e2b-4246-87af-80c9d221472d',110,110,70,0,'2025-08-21 07:14:56.642','2025-09-01 16:56:53.496','598961970-1-3'),
('ae15ed82-0a00-4f09-ab9d-b0c84dd1141c','63e03482-af1b-4b30-9c93-56be1e53f6c5',85,245,100,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-3-4'),
('ae16f617-c365-4e16-a76b-7efd495b6e7a','cc9e4990-6f0a-4a2b-9332-771ed4bcf88b',51,51,77,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-6-2'),
('ae1783ad-c75f-4d33-9ae6-5b23305667b3','d1fd3f4f-4bf3-47b0-a693-da45e125c822',1,1,1,0,'2025-09-16 16:29:31.132','2025-10-01 08:00:26.782','478816988-2-1'),
('ae190d64-571d-4524-8052-a02811802cf6','baace365-1a71-416b-8d76-9200d2fa2407',90,26,200,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.170','644832811-5-5'),
('ae1aa411-bd0d-4210-b819-c11a9489f6b8','da71f37c-3d3d-4e2d-af5d-70af9d403edc',46,46,54,0,'2025-10-25 08:58:53.630',NULL,'598479723-1-2'),
('ae2073a0-0d12-462a-a323-4a76ce292bf9','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.290','2025-01-17 11:00:24.008','478945094-1-29'),
('ae2b30f2-475a-4fa5-b5b2-af34ab60d0a4','ebb978cd-58c7-4bbd-8316-d3317348da3c',91,95,65,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-2-2'),
('ae2c6d9b-efd7-49d0-aa2b-e5ff00061a55','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-7'),
('ae2f8a17-2abc-434e-8779-e6222de2bd99','e163d910-3bea-4675-a310-ead7083f02b8',48,50,17,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-9'),
('ae313abc-fbf1-4b8c-ab04-f4d73fe7e751','afd7f71c-d1fc-484f-b72d-f986503df4f7',92,72,65,0,NULL,NULL,'703266692-1-14'),
('ae328126-3e5b-4458-b178-57dc338bb5dd','7fbc0cac-4c11-4144-b578-3223cd9dd90a',60,230,5,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-9'),
('ae32fa7a-8a50-4bd6-9f39-f8dd4faf8588','4dd2214a-d123-40a1-9fac-e86f897ef467',54,76,101,0,'2025-10-02 11:20:36.447','2025-10-15 08:32:41.217','486609627-1-2'),
('ae3408ab-de91-4aab-ad7b-ca0bc28a7929','fd815e63-b567-45f7-a40f-07ef81c2b7ea',126,127,7,0,'2025-06-21 04:33:56.316','2025-06-29 15:02:31.408','221758948-2-1'),
('ae3474be-bd9a-4fb6-a94f-3e9dc76883b1','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-40'),
('ae38cc0c-7464-4fff-a600-1f90f526ee51','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,30,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-46'),
('ae3aa675-19c5-4609-8a8d-0a1873414c29','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.637','248186638-1-55'),
('ae3aba51-ef2c-4a7c-9657-2dbe2636d401','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-79'),
('ae3d9f3e-92ad-4bd1-9c86-47577a701138','baa0c4fa-32af-4807-b14b-e9e9f404f5a0',170,30,77,0,'2024-03-23 08:35:58.941','2024-04-04 12:48:01.104','268437547-1-1'),
('ae3fbc66-3265-4234-ad7a-af00e1b25d8f','d1606eb5-933c-4e61-b7ea-5f79b332691c',91,28,201,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-5'),
('ae409bc0-1514-44fd-9132-f4b93510dbed','61557b6b-0b26-45ed-a3c0-a245ea1dc158',170,130,15,0,'2024-08-07 15:02:47.801','2024-08-16 19:22:01.168','614908568-1-4'),
('ae44b2d8-46b2-4b2b-b744-14bd51e5600e','78b4e116-f5c7-4057-880a-bac3a92d60d6',100,100,85,0,'2025-08-14 08:21:51.796','2025-08-19 19:34:38.051','437713339-1-3'),
('ae48e771-1c0d-4a23-ae71-536395eb5c4b','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',56,81,101,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-4'),
('ae4c8272-9c29-4c88-b190-194a90d50371','6302f68c-26c4-4a31-853e-80b9d1ba59ee',90,26,9,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-28'),
('ae50cabc-f8a9-49d4-9dc5-487c4488841c','859ce399-c54b-4755-9400-79822660b5df',51,50,76,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-3-2'),
('ae5577e2-e135-4949-a936-614bf72de973','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-8'),
('ae56ad13-6b71-4bef-aa32-7a2ca72c6a29','6c41692f-48c1-489b-ab41-f12954fafe5d',85,100,53,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-1-1'),
('ae5ac200-8d6c-459f-89ec-2d707fa8f8d7','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-4'),
('ae5d1f51-b78b-468a-8b74-d9af0358f9fa','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',180,200,23,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-2-7'),
('ae5d580e-0f63-4e1f-b169-902c4bf80542','2bda1156-1214-4bc5-a111-951e80f8844e',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-1-1'),
('ae5f606c-fe19-44a9-ae01-2e1cd651c8e8','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-8'),
('ae628929-c2ad-453d-afda-92715f5654a8','6c23f9f6-3497-47dd-84cc-1eb6d89bd740',100,65,85,0,'2025-05-24 17:55:38.201','2025-06-03 09:41:07.360','31925609-1-1'),
('ae66f3e5-3518-4f60-bc66-4039a1ac4767','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',157,247,10,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-5'),
('ae6d7b4f-7485-4891-a275-5081df119abc','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-16'),
('ae6fb5ec-f6de-4f88-aad8-a8da7b9cde41','b2136a6c-8d9e-47f5-a1a7-112a9000127a',0,0,0,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-3-1'),
('ae781d80-ab46-462b-a184-bd4a309ff2d7','6c43de3c-5454-4dc3-8fc2-6cd719969299',21,10,205,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-5'),
('ae783b1a-d378-4728-9974-2113fc65c2d8','e6b643b2-ddca-48ec-b553-690e29e71879',230,90,70,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-11'),
('ae7cded8-21ee-4b63-9429-259e9a489982','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-23'),
('ae7eeacf-9a9d-4c18-ac0a-a7f2a4c2878b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-34'),
('ae804bde-a040-4183-a0ee-7917c5e5fd01','45624052-e478-4c53-92ab-2b7ad134bf8b',99,189,70,0,'2025-08-25 12:32:00.331','2025-08-30 18:25:59.309','437306380-1-2'),
('ae8053f6-ae28-4829-bdbd-d8fe5ab916f7','19c23553-d606-4be4-a362-65912f3179a8',94,65,80,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-4'),
('ae814268-f07d-495e-878b-a9df547a9f62','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-53'),
('ae89074c-7ee8-403a-9ad5-070e6029b5ed','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-15'),
('ae8a7aa2-6b6a-41fb-88d5-7765329e8968','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-12'),
('ae8ce382-8398-4421-b1c5-d749486ae299','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-8'),
('ae8d79ef-5498-4bb1-b589-c8bf090002b9','1087586e-034f-4ec1-9828-d61ce37a1821',23,20,97,0,NULL,NULL,'478153975-1-5'),
('ae8f10a4-12d5-4110-944f-7c44fefb0489','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-5-5'),
('ae8f7b41-616a-40e5-bce6-34a5b9e5f4b0','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-5'),
('ae9498fb-0716-461b-9a8c-77991fa036f0','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-84'),
('ae97cab7-fe2a-4b31-a45b-175940110d75','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',96,93,65,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-2-5'),
('ae97e4a1-161f-4700-bec2-d5c40247551a','0dc117f7-5e70-4621-87f8-335baf3c4f19',55,7,146,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-10'),
('ae999945-12b0-4788-8573-979219e1acf4','ac9c542d-e46f-415f-ba83-e9a5fd0736a4',60,100,100,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-2-3'),
('ae9aaab4-1af6-43d2-8eb9-d166f0863071','d5fa404d-79a5-4cee-80e5-d721647dd05f',57,76,102,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-5-3'),
('ae9b75ea-9ea2-4336-8573-c16c1da534fb','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-12'),
('ae9d5534-df52-473d-9287-3bfe0ff0d727','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.637','248186638-1-43'),
('ae9e78a8-4be3-4621-a9c2-e2a97dee25d3','ef3b3bb7-232d-4dcc-ad9d-e1acf0cf5838',0,0,0,0,'2025-10-14 09:22:19.406','2025-10-25 09:00:02.399','478520504-2-3'),
('ae9f079d-e286-4e87-b493-7e338822c148','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-16'),
('aea0899b-c3c0-40a3-811b-85803aaf777c','73256cf8-06a7-4cfa-9c09-c8d9868f54d7',230,95,85,0,'2025-01-11 15:20:32.280','2025-01-15 21:05:45.883','910728512-1-3'),
('aea11c04-181b-493c-812b-ec044fbcca43','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',168,127,4,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-16'),
('aea3d3fb-b42c-4084-9d19-4b8a917c66a7','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,6,224,0,NULL,NULL,'644104537-5-10'),
('aea40319-a632-41b1-a8eb-3b6de1bd7dbe','b6915aed-4e89-4306-9a9a-4de67394d422',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-7-1'),
('aea47eb8-7a71-4b96-a931-39875d272f5f','b6d04ed2-f29f-400a-ba86-37b36b0830b2',46,18,128,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-12'),
('aea4bc83-bbc2-4f52-89d5-d6338ad82073','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-18'),
('aea837d3-8fc5-4c0f-9611-20031d5b89c0','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',68,7,210,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-79'),
('aeaf30de-66f1-45b3-b5b9-662e3368523c','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-16'),
('aeaffe58-6a5e-48f7-b325-8fe33a7f02c8','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',238,100,63,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-4'),
('aeb3689a-6aba-40ef-9b76-a220b1ee2dd6','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',42,33,11,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-10'),
('aeb3e039-ef96-4391-bfba-35fb3c384bf7','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-6'),
('aeb7248a-bcb2-4806-8801-6dd1a2ab0ec9','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-19'),
('aeb7c24b-88d4-46fb-bb7b-174d54165292','7af3ae82-b2fc-46d3-aefd-cf6046c49f14',106,7,123,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-2-3'),
('aeb86e45-745d-426f-ac7c-6361eeae8550','c5686ee6-2537-4ca8-91b5-7a63652f7dcd',96,14,161,0,NULL,NULL,'221394764-3-3'),
('aeb87027-b2be-4de6-9286-0a00cec05387','2758ecf1-d2f6-40d7-98ab-d6b498789fd9',56,82,100,0,'2025-08-07 16:52:40.666','2025-08-21 08:12:35.793','613601743-1-4'),
('aebc3d41-d40e-419b-96d2-9091b3b0236d','cd338320-b04d-4520-adba-f892a82d945a',20,50,50,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-3'),
('aec24ddd-2758-4159-9c05-0245e9881fbc','cc106216-d7b7-4181-b434-bfb55ef8591d',30,83,200,0,'2025-10-08 17:43:50.390','2025-10-17 20:57:20.132','614901187-6-1'),
('aec4215a-244b-481c-a78f-7de3a6ede1ce','159c73ed-083b-4d67-98ca-6adcfc554962',15,117,143,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-13'),
('aecfc2d0-6553-4f0d-9cd0-5a75759e4f54','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-8'),
('aed0c405-36cd-4601-abfe-608a0f3482e2','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-2'),
('aed0f4a4-7988-48fc-a7a4-2ce5f8cb997d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:20.006','248284003-1-104'),
('aed2ecc1-f139-47e9-9e6a-ce15cfbd9d4e','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-5'),
('aed3c3ea-02f5-4c73-9657-88b23f58cfcc','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-26'),
('aed8fee9-7575-4255-b19f-fd339ad88622','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-23'),
('aed9a496-193a-40e7-90b2-0a8618c9ca2d','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-5'),
('aede19e8-dc2e-43c7-a1a2-cbe63d3b3df2','a2fe1c58-2fa6-4ab3-9db3-e2746fb8e9ab',0,0,0,0,'2024-04-27 08:45:27.409','2024-05-08 21:07:56.622','478979004-1-1'),
('aedf9c1f-108b-47c5-ac9d-cc9988924d69','3952cb22-55e9-4578-a751-ee8895e55cf5',51,51,77,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-2-2'),
('aedfe4fa-f849-4ecf-af41-af4c7da7b309','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-136'),
('aee5a8d5-c463-404f-87db-2da918104293','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-32'),
('aee86b2d-9b47-4a93-ab80-d33a84e89261','22dec2c6-2a18-400c-b218-7284acdd139e',82,57,109,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-2-4'),
('aee9dca1-5821-45d4-b02d-fb43323a9014','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-85'),
('aeee0f50-409a-42bc-bc03-153434f11823','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-3'),
('aeee5387-c58d-4b53-93e1-ef47cdc47904','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-30'),
('aef11923-5cd3-4bcf-9085-44f94cc30e71','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-224'),
('aef3db6e-2f82-480d-bf93-bfcbd6abc8db','5e418100-d855-48c0-ac4b-19a956b8ef44',70,96,236,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.502','583643470-1-1'),
('aef6320d-6196-4915-b660-e188f4886677','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.679','2025-10-17 06:13:07.090','221801165-1-3'),
('aef6cfb9-afa6-40b5-855b-c504ccb30f40','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-6'),
('aef7da41-aff8-4017-9fa3-9ee6b6113f59','3ea0fc9a-f0a3-42d3-821f-f15859ccac41',95,85,72,0,'2025-03-13 12:21:26.278','2025-03-23 16:15:49.033','338426911-1-2'),
('aef8fa86-7cfb-491f-8d87-8812739930f6','1499adf0-273b-4001-aaf5-3741d7cad731',51,51,77,0,'2025-10-08 17:44:18.017','2025-10-20 06:32:55.985','221854185-1-2'),
('aefdd8a7-b368-4e78-ac3c-7d4228ba25e3','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.176','2025-04-07 17:30:11.059','64448364-2-1'),
('af08823b-f72d-4fa5-ae6b-664066e44d09','186c3fe1-8981-42c5-824f-091f5394d4a8',104,74,8,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-1-1'),
('af09abd5-b3f8-4716-86cc-3abfbc38aee2','8b903902-c3bc-4e33-ba59-0a5aa28db73c',202,37,107,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-4-2'),
('af0c1071-80b6-41f5-9d90-879283315c81','afd7f71c-d1fc-484f-b72d-f986503df4f7',80,63,21,0,NULL,NULL,'703266692-1-5'),
('af0d2fb2-2776-4e2b-bb40-e9daaf392ea7','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.307','2025-02-08 15:04:24.327','223249369-1-101'),
('af0d8396-8109-4b5a-8098-1c36a7e6d6e2','e89e7d75-4967-4c63-9f73-981469e531af',190,9,9,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-32'),
('af0d899c-1439-41e5-bd8a-0798fe305abc','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-8'),
('af0f0068-90ba-4b67-9939-5f2ee2a65522','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',105,75,57,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-8'),
('af0fc365-1396-4ee9-a36b-bde27f639a5a','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-9'),
('af11480d-af38-4596-b3b7-49e0f9877386','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-4'),
('af12ed0b-61fa-4d3e-ab72-d38ea27cda34','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-14'),
('af13f559-85e5-4adc-85d3-d641fd2cdd72','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-2'),
('af162df8-3325-4e39-80c9-476abeae13a5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-38'),
('af18f6dd-650f-4da7-8160-f9c232940d54','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-9'),
('af1aba05-e17a-4f6e-b0a4-aba14ac1b688','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-6'),
('af1c717b-0793-45a5-80ee-36e47c4053f5','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.116','22164822-4-4'),
('af1ca362-63ed-4bc6-b925-e8f815e2b5be','01ef32a0-1284-4a83-aa87-7a3d88e6cae4',79,202,1,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.790','745251111-1-3'),
('af1cc266-5062-4030-a9ad-62c182228ade','b500f3e3-149c-4c27-a97e-11ac0175c96b',60,43,22,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-24'),
('af1e18b8-0cc1-4382-bb4f-4152660c1d6b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',120,13,68,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-27'),
('af203327-b252-4710-a010-2e3be4ccce33','94d4fd15-f663-40b8-8ec9-f93a5cde757c',93,13,57,0,NULL,NULL,'614364554-5-8'),
('af2161a4-7550-41c3-803c-f854f8ac36a6','6a2ec622-2e09-4123-a527-4a4179b4fa14',59,72,96,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-2-2'),
('af251680-8662-42ed-815d-9a16aee66ecf','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-30'),
('af2534a9-686f-41ac-8c58-c94b8f4f638a','09dc037d-a191-4930-9334-d1263bbdc959',0,0,0,0,NULL,NULL,'959626673-1-3'),
('af26a6a5-8ebe-4f64-a02f-ba8bb24699bc','9d62bebe-af83-4e4a-9fb3-8a3ebe7c5907',0,0,0,0,NULL,NULL,'614601595-1-3'),
('af2a0e70-eed1-4e72-903c-86f1fbd053cf','220fed8f-f96e-4af5-867b-ac05d11bda6f',58,102,74,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-3'),
('af2f8081-1039-4c8b-9a6f-8cb6175b2bbf','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.496','2024-12-24 12:30:21.380','735736030-1-2'),
('af310926-475d-45f3-a4b5-8f02482e5d5c','d22d7227-b6be-4a20-978b-11fabd469cb9',170,100,75,0,'2024-05-17 09:42:09.160','2024-05-28 16:23:12.626','126274786-1-5'),
('af32c57f-1768-4bc6-ba48-a011ad168acb','351157cf-15d1-4ac1-ad90-0df56b569eab',80,94,93,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-4-4'),
('af33eade-b61c-4462-8f8c-ac529a180192','9993c1cf-ce00-41b9-b30a-a98be061c70b',80,80,90,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-2-1'),
('af358adc-31b8-437e-aa79-5a0dcee5979d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:19.468','248284003-1-147'),
('af375039-dbb1-40e0-aa26-51559b11b73b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-40'),
('af3a584a-d272-4538-ad36-ef45423cc9d1','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-10'),
('af3a7ac9-4d26-4484-a767-2bcb7c29326b','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-13'),
('af3b6909-bcf4-413f-976f-7dbbd0343976','542ded3e-3de4-4742-954c-bc3a0ca8d406',62,57,83,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-2-2'),
('af3c081e-951e-4be8-bc6e-ced4ddf679ca','5c487410-f906-4e14-a077-9f060026719e',22,20,15,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-10'),
('af3ed363-d4b0-4d59-aa76-f5632e9f0a0f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-171'),
('af3f68c5-b5cf-4768-8356-9b4f0b1005f9','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:42.170','248135683-2-90'),
('af40313e-47a4-4441-866f-c69540575f16','159c73ed-083b-4d67-98ca-6adcfc554962',134,33,33,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-14'),
('af42d6b9-6673-4e84-a326-67cca8065487','628d9615-d14d-4eba-9099-0780016f2dec',93,183,7,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-1-4'),
('af48c826-8546-4d72-83c3-428282ccc157','fdf16f88-69c1-48dc-8781-5ef64e6edbfa',0,0,0,0,'2025-02-23 12:39:19.931','2025-03-05 14:40:41.541','745523335-1-3'),
('af49e08a-554c-461f-b1b0-0f7bb0ea5c8d','9218bba1-6810-48e8-a437-5cb03537fefb',30,116,200,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-10-1'),
('af4ac84e-06ba-49ec-b27c-a4b90f6a9d7c','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-37'),
('af4b6efa-5d7d-4b3a-98f0-0f1ab3e92c77','7defd633-f7ab-424d-8029-028d1b045752',208,61,7,0,NULL,NULL,'501119446-1-22'),
('af4bc78f-1dd2-41e4-a8ab-fd6a4728d5a9','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',53,85,105,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-28'),
('af4edf64-a250-4c3d-bacf-bed396692c3b','aed0c1e4-00b7-4884-bc19-3d932afa6442',45,45,75,0,NULL,NULL,'478350685-5-2'),
('af522f52-fba4-4d07-93cf-9cd0c08d01d4','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.363','412586892-1-53'),
('af538d48-1ed2-48dd-a1e2-aca1128439aa','6503d97b-1348-469f-841f-5227a221f60c',85,100,245,0,'2025-07-08 11:31:30.466','2025-07-21 10:22:28.740','517205085-1-2'),
('af544ffd-851f-4460-8862-40b5d4814326','a7d8e541-ac8e-49b2-b360-317f8114fc5d',45,45,70,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-3'),
('af546148-d243-4e7e-9deb-b92dcc3fcfa3','6a2d762e-11cd-4fca-b32d-cdba41391e25',34,216,8,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-13'),
('af561669-3539-4050-bb38-8b956f65062d','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-10'),
('af562f4b-3a90-4260-be04-dffe58017cb1','9114ad70-d53e-4d1f-89c7-30585d0a43de',70,70,50,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.591','146630568-1-31'),
('af56809d-4d15-495b-896e-91502e583b9f','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-10'),
('af5a6891-a45b-4c5b-9707-10b07be4146d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-64'),
('af5b797b-eefb-4cc4-9c7b-44dff1ac0aec','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-36'),
('af5fad0b-629b-41ed-bcde-906cc5cb42c7','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-36'),
('af616549-19ea-479d-bd2f-195cde20f52e','51130bdb-f938-4bc4-8f49-46c9b089489c',80,80,90,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-7'),
('af61fb97-8466-4242-81d1-7b2efd1c3c8e','702c1aff-1a98-44f0-9dce-efad71572432',49,54,70,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.137','745233031-2-24'),
('af6318dc-4cce-4904-83e3-9ec0e36c564d','b1e25181-d908-4fcb-b5f4-98f1985c7698',96,50,50,0,NULL,NULL,'644303406-4-3'),
('af68cac5-b716-4ef9-80cb-b50d36a20b78','6c43de3c-5454-4dc3-8fc2-6cd719969299',46,17,55,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-6'),
('af68ebdc-5dcc-4410-8afc-b46f00f549c8','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-4'),
('af6b1903-4b9a-4f8d-9ec4-3f83fcaaa74c','392e6688-b280-4b27-9b5a-97925f3d9c8b',145,75,75,0,'2024-12-07 09:32:10.924','2024-12-19 14:54:06.615','107870370-1-2'),
('af6b5136-1a26-418c-8a29-16e978240a07','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-125'),
('af6cc698-c36c-4f85-8c5e-f2ff9117c061','0dfacf6a-8dcc-415a-9e14-a7dfd830c72d',0,0,0,0,'2024-08-31 13:26:49.464','2024-09-07 15:54:00.265','31912550-1-3'),
('af6d94cf-15d4-4a03-ae40-1ff55fd3641c','04dff17a-2b9a-4f35-a082-5684dfe5706f',205,42,5,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-13'),
('af6e7748-6e07-49de-8856-1d81ca2cda3f','1b975dd0-98b9-4adb-88bc-962d71cc7b22',158,197,3,0,'2025-03-13 12:21:16.118','2025-03-29 21:27:29.605','412970240-1-14'),
('af7066a2-eda2-4eb9-85d5-74f39b5e7130','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-30'),
('af7195d2-ed37-443c-af64-5ca2624d74fd','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',150,60,10,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-47'),
('af746be5-808a-4bf0-bc5f-6f91b681033b','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',107,14,4,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-48'),
('af768d13-d475-49e3-a0e6-0d51c804d08e','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-22'),
('af775e1c-abec-4498-89c7-0385cf0b1875','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-6'),
('af78010f-43ef-4222-ac54-cabb4fa60d22','7b8fb2b2-4189-4069-ae75-d1c721d42b09',51,51,77,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.040','221900850-2-2'),
('af7d1cf6-5850-4fdf-aadc-8fd07106a0b6','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-26'),
('af800b33-4beb-419e-84f3-4446dd29f043','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-5'),
('af826f6a-cd6e-4dd5-9723-77cf5961560f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-228'),
('af85a118-16e9-4827-bf19-43c43e3ed21c','b0b9fe77-55c6-4043-8628-b0ea2c868cef',100,100,65,0,'2025-10-20 07:18:18.094',NULL,'6442594-2-4'),
('af85f4ce-a5b8-42d2-a980-df433294885b','7ba47169-83ca-49a6-98fc-6ef1a1990eac',210,38,22,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-19'),
('af88656d-4eb4-4307-8a21-00456d371d90','8ec552f9-6d17-49a2-bd58-983becb1bdd6',180,200,26,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-3-1'),
('af898372-1f67-4903-a99e-f34736e2653e','dd674d12-6366-44f2-9aab-4044248c2020',58,30,39,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.134','644847294-3-2'),
('af8a1052-7669-47dd-a23c-180d3b77f7cb','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-82'),
('af8ce04c-70b3-4f9f-b029-bba3a20977de','a29194f3-32bd-431e-8e88-ee7de37b7b46',51,51,77,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-3-3'),
('af8efdab-83d2-4fb3-a221-f310f0d16f05','c389fd95-9357-4fac-a819-48a512bbe294',93,93,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-2'),
('af932703-9c6d-4743-8091-06c09c56db85','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-20'),
('af946608-b6a5-4149-88a4-f0c51fb5b094','173da7e9-9f08-4f80-bd79-f624a6af761d',30,30,191,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-9'),
('af95fbcd-1cdf-4460-95d8-83d2397a0774','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-4-2'),
('af96a3ca-e271-4fa5-9638-e72f63a355d6','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-24'),
('af99ae2a-b843-47f5-8f3d-8c14b86a1e92','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-162'),
('af9a2a9b-cc00-48d6-95e1-4150e14654e7','7852e0fb-6de3-4daa-9882-f74fa24083a7',15,110,210,0,'2025-05-14 17:03:44.747','2025-05-27 07:54:03.769','613464926-2-4'),
('af9ac611-1b2f-413f-9dd6-e67388e9f3d3','9bdf29e0-66ce-4558-9d38-95b5c9b769ec',97,237,70,0,'2025-09-26 12:39:05.490','2025-10-07 14:12:30.489','371400028-1-2'),
('af9bbf52-281e-4532-9cdc-2acbbef973b1','b5b0b7ac-87b6-4580-b7a9-4105fadd6d34',100,100,70,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-4-1'),
('af9c7d52-3b49-4a85-a942-44c19cb9db09','d9c96ce5-7311-4159-8c51-6a1a744d0c49',106,39,7,0,'2024-11-25 08:28:48.881','2024-12-05 16:17:13.323','501760253-1-7'),
('af9cd795-730a-4bef-9fba-db724602a8e9','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-43'),
('af9d77e2-4aea-40d8-ab21-88ab8fd6ebc6','6883e1aa-61cc-4415-a95f-c2a814c5b3ce',0,0,0,0,NULL,NULL,'140421350-1-3'),
('afa21994-852e-4474-acbb-98d9c5a504f2','46d1512a-2bfb-476d-a224-9390f3e194f2',203,80,2,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-23'),
('afa8294f-159f-4c0e-bb16-d6023e0508d2','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-25'),
('afb0dd71-8e70-4a48-897c-b0419eb7af93','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-32'),
('afb168a8-e7c5-4756-81cd-754544aa4ded','8d63ddf2-2a6e-45d5-9ceb-635a8d8500ba',53,100,73,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-3'),
('afb2164a-8001-4c82-b857-eecbb6a6c0b8','66111de3-4db5-4d79-9d26-01d8fabb833a',100,82,57,0,NULL,NULL,'02713231-1-5'),
('afb2629d-456d-433a-9e18-35bf9184a72b','75f25529-9277-4e91-a652-fd6f38803841',67,135,304,0,'2025-10-25 08:59:18.908',NULL,'644799923-1-1'),
('afb717ae-3175-4d59-ac4d-061d7211cceb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-141'),
('afb99e2d-e93b-4b84-b560-97b3e3d12adb','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-152'),
('afbb00ac-70d9-4484-a37a-1524f151eaa0','b1de6876-ce39-4ca1-a8ba-f0fd299e6dd2',100,91,7,0,'2025-05-16 16:33:18.487','2025-05-25 19:11:22.723','745405587-1-2'),
('afbf2661-d1a8-4712-818d-4a3368961a47','79f2695b-370d-43a2-931b-972ba627ccf5',67,100,100,0,'2025-09-02 14:48:47.214','2025-09-12 06:55:55.906','437854000-1-2'),
('afc04e3c-8ee5-406e-ac00-c670f92f66a7','2881c493-0a0a-403e-bf7b-36c55e85e85c',210,108,8,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-5'),
('afc10540-a466-4443-adff-79a6b4132ce4','d83c40d1-4df5-4c97-bc83-28837db95b2b',105,67,7,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-52'),
('afc20eb7-b671-4161-aa44-249c6aacdbef','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-40'),
('afc37d1f-3cb4-45cf-9f50-ce6520c50753','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',95,75,95,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-9'),
('afc828eb-7555-4f9a-a59b-139bcbe44ee5','de5b9e9e-def0-4a43-8da4-04266bcc83f7',75,95,70,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-3'),
('afc8575e-424d-4aa8-8b44-d66e4de0cddc','8b903902-c3bc-4e33-ba59-0a5aa28db73c',202,37,107,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-4-3'),
('afcc471a-f638-4b4e-ab77-9b7beb6c8c4a','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',225,96,75,0,'2024-08-07 15:02:59.362','2024-08-15 10:31:04.498','976577497-1-5'),
('afcd0abc-6d3a-47f2-9989-bc6e4c27c1d5','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-29'),
('afce2815-ee21-4722-a49b-02148b6efb7b','7c09f776-ffb6-47c8-8828-61389547804e',38,63,42,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-19'),
('afd04c4e-4982-4339-8cdd-a4f87ea01e39','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',196,47,7,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-2'),
('afd12940-9343-40f3-9c83-eeab4d6aefc3','0a0fd393-4e83-4aac-88d0-f5285741c782',51,51,77,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-1-1'),
('afd31fe7-01d0-43da-abdf-258755553745','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-16'),
('afd44141-5d6f-4438-ab3e-3f9a2d773baf','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-1'),
('afd5e57a-3971-4efa-99eb-296876ef189b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-149'),
('afd94aa8-81f4-4ceb-96db-8db7adfe039c','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-29'),
('afddc2aa-5a9b-4b9b-948d-d955f3182008','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-14'),
('afe10616-f053-4c92-8471-24921eafe57b','02c1cca2-b7ec-44f3-90c7-3e935d2e255f',83,110,100,0,'2025-02-20 12:15:12.935','2025-02-28 12:04:36.224','478142620-1-2'),
('afe25c88-b49e-44e5-a85d-c476717cbc09','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-2'),
('afe2fc13-c51c-413d-9edc-5d6435a4666a','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',93,6,202,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-74'),
('afe85062-57e5-47aa-af4d-3aeae19bebc1','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-17'),
('afed7c08-5a96-42d3-b4ec-ae562eaab60d','9eeecdac-d023-4ee9-8639-dc9b22642c27',7,16,66,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-4-6'),
('afee4c86-af40-4d41-a419-6eede2c811fc','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-50'),
('afeedc27-5389-4272-9fc0-01e57be2242a','b07ae607-4e74-446a-afa8-eacbba5e3668',82,100,57,0,'2025-10-20 04:18:21.633',NULL,'312422305-6-2'),
('aff02f09-dc1d-410f-8f1e-8728ed2dacbd','c2ddad80-9393-4fee-af04-55166ef5c607',90,4,210,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.051','745946644-3-3'),
('aff0c704-1947-45b6-b5bc-506d2b6646a1','b63291e7-9a9c-4942-9e5c-792e1279180f',46,5,210,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-5'),
('aff1aefb-2f86-4c95-8ee7-a3292e83c57c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-156'),
('aff6e3c8-7e07-47fa-ad32-9736d640ce7b','b78519ec-4b79-400f-a709-a1f09256d30d',80,208,6,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-1'),
('aff902fd-796d-40ab-9ef0-adaba98617bf','66f8d34c-0c41-46f5-98bb-500adbb6f636',32,8,180,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-17'),
('affb0212-abea-43c6-b80d-61a4f7a660c6','8bdf2fd9-df04-4cf3-9e65-a87dd36dc1ab',94,70,235,0,'2025-06-14 12:48:27.807','2025-06-22 09:25:55.839','982681083-1-3'),
('affbaba2-8d24-4d2f-969c-f75a609ce236','9505974b-8c77-45d9-ab90-d648d60640dd',0,0,0,0,'2025-02-09 09:51:22.491','2025-02-19 18:37:19.839','745498790-1-3'),
('affc92ff-04c5-40b2-be73-7d5ee16bdd5e','43e258f2-7cc3-4e63-be4e-0b2929334761',120,200,28,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-8-3'),
('affeb892-6a60-4a91-bf3c-c1c82c029426','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-18'),
('b001275c-1cd6-4194-af3e-4b26c1e71906','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-157'),
('b00196f5-0f52-43ab-8b0e-e7ef6a8c0f3c','d0f4bba7-0b87-482c-9828-9f24f37e6ed6',107,213,7,0,'2025-10-02 11:20:32.262','2025-10-11 16:34:04.338','221837026-3-3'),
('b001df9c-15bd-48ca-bfac-0f7a2e693ef2','b463387a-754c-4c53-ade6-f7e850173707',57,76,102,0,'2025-08-22 20:28:51.360','2025-09-01 15:17:14.159','808935275-1-4'),
('b00261aa-aef8-4a21-943e-7d603b63fc65','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-20'),
('b0076365-28b0-436b-bdfe-18559ef08395','c3322872-ddf3-4e40-b549-9fc0bcd0e3f2',96,96,70,0,'2025-09-18 15:48:34.720','2025-10-02 06:12:04.731','437101296-1-4'),
('b008a438-2d72-4655-9dc9-93f8bd3fa0ab','4884cae4-94a5-47ee-83b6-52077e4376b5',0,0,0,0,'2025-03-08 13:46:13.183','2025-03-18 18:32:44.433','644567515-1-1'),
('b0095edb-567c-4ede-aaa7-f8a2e469a822','c7fce8c7-acfd-4c12-8db5-81618a4b211d',130,37,34,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-23'),
('b00ad68f-a476-4663-9110-b03d796d30d0','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-67'),
('b00dff5e-d447-4d70-8a5e-43377a12ce4b','4d63984a-5ff1-4253-abe8-286bd84e3528',100,200,30,0,NULL,NULL,'478350685-1-9'),
('b00e2571-73a3-4f12-9d81-d8e8386f2090','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-31'),
('b00feac5-b199-4983-99f9-7797502d9200','574519af-b90a-45b7-9c99-63bd11d5c2f6',77,55,101,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-3-4'),
('b011389e-afa1-4e2f-825d-6a3bce5caa43','fae6909c-01c0-4f09-ac49-1ff3954779b4',90,65,70,0,'2024-12-07 09:32:04.271','2024-12-20 14:35:08.090','449446169-1-2'),
('b0123ee7-5cfc-40d6-8449-a69899140507','97cf290b-486e-4260-be59-cd584543918f',43,43,52,0,'2025-08-21 07:15:30.112','2025-09-04 21:03:50.131','437880840-2-2'),
('b01443a9-023d-4724-969d-5e492c5ef79a','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-14'),
('b0186518-75ee-45b6-b023-8e1853579654','0263f7f0-6c1a-4beb-ab78-25d69142647c',79,2,214,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-18'),
('b01ace83-c4d3-4f3c-a23b-2237ea3699b7','bd2a6d61-a2dc-49d3-a1f2-858d2724dbb7',80,70,65,0,'2025-09-02 14:48:42.201','2025-09-10 17:06:01.025','613108463-4-1'),
('b01be828-870b-4f76-b150-a45bf3ab752f','220fed8f-f96e-4af5-867b-ac05d11bda6f',58,102,74,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-1'),
('b01cc7fa-0313-46dd-9c27-ae4732532799','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-11'),
('b01cc8df-70a4-40b2-bd03-feaed2f1c748','dc390da6-4128-4077-b3a7-07f6a89a5beb',64,8,68,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-13'),
('b0202697-29d2-4a4a-9002-17f7fe1db3cd','b367aad0-f419-47d0-a902-3531114180e3',94,118,85,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-3-4'),
('b020d7b8-e874-40ef-9f83-39c429e29f84','5ea4b207-b05c-4931-bbd1-648b6933aae5',90,90,5,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-12'),
('b0220b84-f278-43e1-ab60-e27c73e91603','d810a4fe-529a-401c-897d-31b505128e43',0,0,0,0,'2024-11-15 17:06:28.456','2024-11-27 15:33:01.817','478355116-1-3'),
('b023d8ed-7916-4d70-926b-acea17c6d32d','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',210,91,2,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-126'),
('b024ff29-d116-4d54-a23e-acd0c31b5fa2','39981e5e-e36e-4c44-b5a0-d150be8ce263',52,98,72,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.532','465237157-1-1'),
('b0267a78-3173-4147-b157-879c54c4dee9','d0382f9c-aaf0-441c-b336-44000b89634d',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-4-2'),
('b02694c1-db49-438a-80fb-3f9ab319cea1','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',238,100,63,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-1'),
('b0279952-be39-4349-8129-12a8023178b9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-52'),
('b029574c-f9b8-4152-aec3-bc056ffbae21','f45571a9-812c-4870-9a5d-3dc263fdeb52',51,51,77,0,NULL,NULL,'221351976-2-1'),
('b02b0a6a-d72a-4f10-ab7d-bc5a80d0fb50','3535d433-eb38-4879-84b4-dbf8410809cd',17,55,45,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-14'),
('b02eea28-cc91-4379-95dc-aee3d325be7b','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-6'),
('b03020cb-3c70-49a9-b968-0ff2b2f9b619','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-5'),
('b0397172-6a27-43c4-8a02-7ca4058c20ee','abd1d92d-bf39-4c91-8d61-ddc273b6427f',86,86,8,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.736','437917777-1-4'),
('b03cb1ea-ed22-494b-a0a4-b6a1115baea6','d51dfe2b-0b6e-41ff-9db1-89b8770b0e0e',70,121,3,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.476','221746261-3-1'),
('b03daac3-884d-48b5-b6d1-29b4194f22e8','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',92,90,41,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-4'),
('b0423339-2aea-4ac3-8afe-c0facd093b8d','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-119'),
('b04501af-efd9-44f4-92cf-a340cb7f082d','52761b62-b6c3-4071-b8ca-91a2938d2743',0,0,0,0,'2024-12-07 09:32:19.692','2024-12-19 09:32:46.035','735442629-1-2'),
('b04715d0-560e-4ae3-8a44-115ff7c6f6eb','a519c64d-516b-461d-9301-4c4b7157309b',100,80,65,0,'2025-08-21 07:15:21.101','2025-09-04 06:17:02.024','428659303-1-4'),
('b05285e7-eea1-481f-ac54-8f925d26fdc0','a87576e3-14e1-46a8-99c7-1d48360995f5',165,125,44,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-13'),
('b0528869-8e42-423d-9f23-d2e1adb26e13','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-77'),
('b0551263-113d-420e-b9e3-90a8b8f76bf9','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-24'),
('b056dd57-d321-4f17-bba3-4f2b328a09c0','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-11'),
('b059c2ff-4644-4340-a05c-d7542a6209a2','53025d92-f019-4f5d-9b69-68a3b09bb7bc',180,200,4,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-21'),
('b05a36c2-e3e7-4721-916c-827085989ad9','a29c5d4e-5806-445a-b142-4d6423d465a6',200,96,6,0,'2025-06-27 17:12:18.862','2025-07-08 11:48:36.117','221368256-1-3'),
('b05d2ae1-4515-4823-bcef-cf2d98d92e36','8a9beb26-658b-4990-84a0-177e0cc073c2',220,66,95,0,'2025-02-15 13:31:50.856','2025-02-24 17:29:21.268','081581964-1-1'),
('b05d403c-7830-494e-ad17-ee5c3be8618a','55155cc4-3303-4c8d-8138-cd049d9c0cad',126,28,204,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-10'),
('b05df668-537f-4ed2-9365-1182c79fac9a','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-6'),
('b0622bb6-0f7c-466f-9e41-52dddb13dcef','e4b0c3bf-b6ca-4dbd-b07b-7b76a9789f43',62,62,76,0,'2025-07-12 09:20:37.140','2025-07-22 13:23:20.100','644721676-2-1'),
('b063e5d6-8007-44c6-835b-7a51cc55ba4d','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-69'),
('b0646e6c-6a4f-4f12-b2f0-c103a6ddfb37','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-3'),
('b064e96e-bf1a-4aaf-a87a-3c275c327468','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.201','118176933-1-16'),
('b066e678-d79c-4c3a-8e57-c4ced12e324e','96449af3-c272-4a90-b77d-0790552dd455',95,200,75,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-20'),
('b073d5e5-0397-4ab8-883d-d75a24673b3c','d32b552c-b92e-4e30-9bd2-aacbb0b4e77b',110,57,82,0,'2025-04-30 14:29:04.719','2025-05-13 09:06:30.362','745291553-1-2'),
('b078afc3-8ed6-47fe-b4e0-49a5362a6afd','e2de9cd4-e8e6-48b8-aa91-52920db0471a',112,82,57,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-6'),
('b07a6b30-e20a-4946-b3a9-0ec56560ebb1','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-13'),
('b07f06b9-44ae-4496-a469-6a93062df49c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:40.961','248135683-1-4'),
('b07fce7d-8ca2-43f7-9133-1091f0cab21c','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-29'),
('b0802b94-8db4-440e-897d-8f4bf7636692','40065c78-de90-4058-907e-6af9c5da2b57',37,30,195,0,'2025-10-08 17:43:29.333','2025-10-17 06:15:16.790','803441454-1-2'),
('b0834278-39a9-4a5a-88b8-4ca4d5cb1498','ee1d8657-8b0f-401a-9ab8-400b6456fe99',150,75,75,0,'2025-10-22 13:06:41.295',NULL,'598719647-3-3'),
('b083fcb4-c373-465a-ae83-3a87c5c6e16e','c8c71d91-2b37-4436-9ed8-0951d1d5f455',0,0,0,0,'2024-04-08 08:57:38.396','2024-04-29 09:09:14.834','412157634-1-2'),
('b0847f46-19dd-4daf-93f3-780e01ce8840','314fa812-1e42-49bc-9f1a-c855a0494377',28,42,96,0,'2025-01-11 15:20:25.959','2025-01-17 11:00:34.042','962168012-1-1'),
('b086abc0-8665-4493-bdc3-0264c343a0bb','2e2e32d1-cc1c-4c29-8671-60555cb57d3a',98,198,7,0,'2025-05-24 17:55:36.535','2025-06-03 09:41:12.981','437869312-1-1'),
('b08853ee-ec11-4f7e-8598-a00ddbc3b1fa','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-18'),
('b088fa9c-efa1-4012-a445-54161dce60b1','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-4'),
('b089ce14-01e3-4692-9467-8001d3e728ec','da0fcca5-1a59-4418-a46f-294dbac77c7f',0,0,0,0,'2025-05-16 16:33:10.884','2025-05-27 07:54:25.413','47876427-3-2'),
('b089f14a-ba45-4c42-96aa-4b747eb7c510','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-72'),
('b08c6e60-8785-40b1-8983-ee2aae8079aa','38dae227-f2c9-475f-bf36-c9eafe154a88',43,58,21,0,'2024-10-23 14:11:52.661','2024-11-04 08:40:37.608','910926193-1-3'),
('b08fa134-cca5-4f63-a881-5419927dda1f','a4795240-7137-43ca-a2b8-d82742643bf6',95,90,10,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-5'),
('b092c32c-66b5-4a50-a8ea-85fe57494f9a','0511ebb6-7f60-4bc5-a2d3-4d5b19269e5a',35,103,213,0,NULL,NULL,'531481098-1-3'),
('b093e87d-024e-4b85-a7b6-c62076b89ebb','702c1aff-1a98-44f0-9dce-efad71572432',39,80,16,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-2-11'),
('b09b69e5-fa2a-4b8a-ad21-197990141b9c','5ba52abd-bd4f-4d1d-b36d-0b46860bd62b',176,101,3,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-4-2'),
('b09ba9a1-f641-477e-bdb1-ac39889bc39e','4d63984a-5ff1-4253-abe8-286bd84e3528',117,130,17,0,NULL,NULL,'478350685-1-10'),
('b09d4101-1184-4259-aa34-a71d65451334','a363a1f5-57d5-4dbe-90b7-854ff5427932',0,0,0,0,'2025-04-30 14:29:20.303','2025-05-10 20:14:00.361','319829855-1-6'),
('b0a16d6a-a94c-4aeb-8946-e4a76e095136','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-24'),
('b0a5e9b1-fcb1-4200-8ef7-773818cac38e','9547b618-8081-409b-9076-efd2957a9e1c',50,43,19,0,'2025-02-23 12:38:56.568','2025-03-08 13:58:32.384','982402434-2-5'),
('b0a5ed98-0d5f-4873-b791-4fe70dc1dbef','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-17'),
('b0a6e0bc-8d59-4afb-b207-d80aba57ca75','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-18'),
('b0a91636-e036-4201-a94b-c7c20b94d0b6','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-6'),
('b0ab747c-ecda-4269-9fb3-b0923460a178','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-2'),
('b0ad14a7-ffbd-4754-b3cc-81452a9eddfc','e8b58cc1-698b-4364-ae95-f00b90174c08',51,86,19,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-12'),
('b0ad494c-f1c8-4a93-9df2-618ded4a97d8','5d074556-ce95-4ffc-8684-279dc37597f0',160,54,56,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-9'),
('b0b1aa3d-826b-45ad-b135-7076b6de50d6','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-18'),
('b0b8429f-d68c-452d-9f31-f16dd446c6bc','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-60'),
('b0bd6fed-359e-415a-86e2-4742f2ea590b','3da17157-28be-4bae-8dcc-745d0e93e591',63,210,5,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-33'),
('b0bec13a-a0dc-45d5-bc20-92bc803b2e2d','9b274431-45b4-4bea-9a3a-47a596873335',65,80,75,0,'2025-01-04 10:47:38.056','2025-01-11 07:53:51.697','517512652-1-3'),
('b0bf68b6-4bcb-4de9-a701-06e01871c1c7','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-7'),
('b0c4b170-0994-4fa0-b1c6-99cb3f4a8972','fa893fcd-0aa2-4b0d-8cfb-f1438b36cac6',0,0,0,0,'2025-07-02 12:43:56.180','2025-07-16 16:50:59.613','371655670-1-1'),
('b0c5fc53-38df-413d-b436-0b35d7c294c4','6250b44c-f7fa-458b-9059-f4fe88176786',51,51,77,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-2-2'),
('b0c71911-f2c8-4a6e-ba0f-6203e1f5c2f9','9a29c89b-7a06-4e63-88ef-c40eed097432',70,80,80,0,'2025-10-25 08:58:54.706',NULL,'371737204-1-3'),
('b0cb04f3-8df1-445c-bdaf-9b88709a136d','009cf10e-8302-46d8-a79f-46e58ad814bd',0,0,0,0,'2024-09-27 14:06:11.092','2024-10-07 14:02:36.786','750951041-1-3'),
('b0cf7100-944e-47c3-9db9-ae272c73515b','32c3a303-b84c-41ee-a5cc-be771a19b1d1',52,75,101,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-1-2'),
('b0cfce25-0a93-4151-8430-8e124fdc58e1','3c7929e9-636a-403f-ba4c-04d76c585d38',0,0,0,0,'2024-03-31 17:55:11.600','2024-04-12 07:16:54.576','478263896-1-1'),
('b0d080f0-d3b6-492b-ac5d-b04cf5607e07','c98f6188-56c5-4870-be97-be71cf95f62e',225,58,4,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-10'),
('b0d21b46-4344-4ca1-8784-4d009529e901','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-16'),
('b0d28704-eb32-4133-9e19-9f4500399863','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-4'),
('b0d3b5bb-773a-4e29-8365-55c3ba37e5a7','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.066','745180441-1-11'),
('b0d6f47b-6034-4bc8-a45c-6a582c6494e9','e110e2a5-8fc4-41d8-85e2-8eeeedf6f348',0,0,0,0,'2025-09-01 11:06:00.100','2025-09-08 14:12:35.867','59840179-1-1'),
('b0d74531-f1b9-422c-bf55-3bb32f1b5ff5','7d35f4ea-7482-4542-8fde-94664de7709a',85,85,9,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-3-4'),
('b0d8ee2f-fcec-405c-9feb-ea0c06024d63','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.794','2024-10-08 20:46:31.147','745972164-1-39'),
('b0dadbd1-3922-450c-b559-f2b60a93870d','a455ba66-b417-4781-a6f2-6fce1b8bab23',218,7,50,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-19'),
('b0dd4171-b77b-4cce-b71e-50ddc0c3758b','fdf057bd-458c-4a9d-a013-560eb90dde7f',87,87,7,0,'2025-09-16 16:29:13.364','2025-10-04 13:36:32.358','437712381-3-3'),
('b0df6fcc-5538-4527-b4d9-12bdc582c35b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:41.574','248135683-1-70'),
('b0e0246b-3b13-4fa9-ad2b-e81a0c99c220','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:20.898','248284003-1-57'),
('b0e0bc6c-2457-42d0-8937-fe8add83d39c','bf2fbd97-6d0f-4724-b25e-47e019854e49',41,41,47,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-17'),
('b0e3a3b2-b4cc-484b-9bb6-d8688bb9ffa5','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-4'),
('b0e5732d-6d91-48ca-b883-2a84daffce26','bb888d28-6c88-45b3-99a6-a8c19e287f7e',52,58,96,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-2-3'),
('b0e5fd82-a34e-48f6-9204-43050a89cfff','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-13'),
('b0ea987c-df8c-4d23-be27-5cbc35da4e94','b1b4317e-ddca-49f3-b171-24c1b0186c6b',67,46,110,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-2-2'),
('b0ecdbac-658b-4489-916e-84d0748fed74','69acd97e-52c0-45ae-adf5-ee013e52776f',90,200,26,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-18'),
('b0ede884-9eef-42d4-a4ff-adabaa812b9b','4ac8027d-d5db-4a57-916c-23dd357c98aa',52,30,30,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-4'),
('b0f0eb6d-edf0-4972-b14c-233cd8f9d285','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-75'),
('b0f249a8-1700-4e8d-8dd4-102119cf89d6','b3f001df-2f2a-4776-a3b3-cdfa1a154531',100,70,85,0,'2025-01-22 09:07:20.142','2025-01-30 09:59:36.200','910796066-1-2'),
('b0f2f878-f13d-45dc-a7e8-28f542f77d51','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-99'),
('b0f4c5a6-33a2-4331-a041-eff968330137','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-50'),
('b0f69c11-e0be-46c5-81ae-4a1aad41abba','520b7195-189b-492f-9da1-ba698952b5ad',73,53,101,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-1-3'),
('b0f888e0-770f-4fad-af96-b96cd4a36421','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-99'),
('b10288a3-bc44-46ae-bf4e-c315addb51c6','d9b1c3ef-83ef-4aa4-a68d-db1d57a35912',52,91,75,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-3-2'),
('b1045c06-7582-406a-b7c0-c8fcef199ccc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.482','2025-10-15 20:04:54.630','41246036-1-113'),
('b10791e9-2836-4dc8-9288-307cc3724a73','795d2f7a-ffa2-4492-98f6-4e205fe5de73',107,187,7,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-1-4'),
('b10c2f69-8cc0-4e4e-bdca-ed205cfadb72','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-26'),
('b10f972c-074d-45cb-bd57-dd629a1dcb40','4a37c431-7317-431b-8aa0-05bfbd0b8456',0,0,0,0,'2024-06-08 08:00:19.084','2024-06-20 20:15:47.638','449627061-1-5'),
('b10fd5d5-d6d0-4bc7-81ec-ca73c597f4b4','fbc3ad5b-35bb-4508-8b32-91a16a619b88',40,40,65,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-5-1'),
('b110a39d-6d8a-4698-bd23-d73069aa5087','e651dfd2-8ff7-4e44-beb8-c9d204f8bcaf',82,57,101,0,'2025-10-06 07:08:42.286','2025-10-13 06:39:58.734','675412794-3-1'),
('b1131956-6998-4b3c-ad3e-8c7cda42c826','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-10'),
('b114a7de-851e-4de0-8e57-2c316490613c','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',84,53,48,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-5'),
('b11a01e3-280f-4114-93dc-bfd6aebe20da','9e08c127-dbad-42d7-a9bf-569bebc6cd6a',0,0,0,0,'2024-08-31 16:53:35.119','2024-09-02 08:33:22.120','478778231-1-3'),
('b11b96f5-09b2-4c7b-84d4-8efced04bb69','f0485a78-951c-4f89-bddf-b2003f0bf783',45,70,28,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-48'),
('b11e633d-eeaa-45d0-9341-6c2929f5750b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-56'),
('b11fb522-fea2-4eaf-b58a-20b0bd2b2e5c','dee29ffa-4412-42a5-8890-fec581f571eb',89,39,88,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-1-1'),
('b1264856-f121-41f1-8063-4a01726859ba','d480cabc-7c33-4fa1-b0ec-3268dd289dd4',98,183,80,0,'2025-10-02 06:45:31.719','2025-10-14 09:35:39.190','765564339-3-1'),
('b12e8f1c-357f-4668-a77c-5bd1ae2cbef0','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-18'),
('b1310ae0-d979-4aca-90bf-b497e610f926','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-12'),
('b1369b06-7694-48d7-92b1-20b8d10d72f9','e7f31a78-648d-4a5e-9111-1bf7db38dd79',120,20,77,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-24'),
('b138e8bf-8123-4069-be12-e4f16e8b1ca1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-236'),
('b1390771-c0e6-4dc7-b7bf-f90e63063b0c','daa88a63-2ece-4786-a082-938c1a50dfc2',100,80,70,0,'2025-02-15 13:31:41.746','2025-02-27 16:43:01.175','910759399-1-3'),
('b13b514a-ffb4-432b-a17a-74f8d7d7baac','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.292','2025-03-11 18:02:05.551','412107970-1-109'),
('b13eb5cc-8008-4a6c-aab8-611b0415b18f','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-15'),
('b144404b-0f49-478f-95b5-d88b29162773','8c6d3954-b4ff-4e4e-9adf-d9dfddf0789f',0,0,0,0,'2024-09-28 16:27:22.068','2024-10-09 08:37:14.648','478807426-1-4'),
('b14d8dff-cb79-4467-b10a-cbd9e58dfc5f','0c05a97a-db7c-44bd-92d4-cae9f277481f',25,43,50,0,NULL,NULL,'598697614-1-3'),
('b1532d9c-f8ad-437a-9e58-c9407fdf0013','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-23'),
('b15455fa-490b-4800-b904-0976f6db929e','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-39'),
('b154d7be-43c3-4e7a-95ab-dd9f6f86a3fa','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',111,82,56,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-9'),
('b1567a09-d81f-4df2-b192-dc3a54816f26','e8dc151e-1148-4a48-ac2a-d4fb2c761969',230,62,6,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-10'),
('b156a9b4-9e66-44bd-8d84-184cd10f12a0','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:43.561','248135683-2-57'),
('b1589a07-0ee4-4988-9ab5-3ada581087ae','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-70'),
('b15a239d-8c23-411c-a395-8970aff856f6','83e81175-cef2-4f5e-adbe-8ca02a747efd',90,90,5,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.948','478687899-1-10'),
('b15ac312-25d2-452f-b9d8-524e3bb62c42','aed57dfb-3aa2-4f6a-849f-51424a18ca86',95,95,65,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-4'),
('b15c8c2b-2d42-4784-a1fc-5f0974d4633f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:21.268','248284003-1-14'),
('b15cf906-5e3c-4e10-8ef2-236b93434240','d83c40d1-4df5-4c97-bc83-28837db95b2b',56,92,13,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-53'),
('b1613e4a-ff6e-45eb-8801-28d8f23b39d2','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.206','745715303-1-2'),
('b161db19-9377-4ec9-9375-41384d386a6e','19c6a32c-4384-451a-aaa5-dfc264ab827b',55,7,208,0,'2025-07-12 09:19:05.509','2025-07-18 06:24:15.341','517895646-1-16'),
('b161f3d3-e5dc-4601-8c05-12b90f5dab1c','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-98'),
('b168bb82-1195-45c4-9dec-3dbe0dbec6cf','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-32'),
('b16953a6-906b-4ad3-8bdf-3d2215d2d0a5','b4035fe5-266c-42fa-8614-d1d476373fac',30,58,38,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-2-3'),
('b16aac78-d14f-432c-b309-8ab8f12cf57c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,12,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-127'),
('b16e1489-5d22-439b-8b60-96707dbdf8df','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-17'),
('b16f69fe-4552-4196-b06f-43cc0bce4058','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-8'),
('b1731387-1f70-4b14-bc00-0fc11391da87','cc5bb1da-ef5f-4230-9665-417835fd707a',51,33,200,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-4-2'),
('b174c6f5-afec-434d-a5b3-87764f119e08','d83c40d1-4df5-4c97-bc83-28837db95b2b',64,45,19,0,'2024-07-30 14:58:39.145','2024-08-05 19:56:58.911','916836796-1-54'),
('b174d62d-d985-40a7-8010-04f0e07b2637','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-19'),
('b17555fb-bdc9-4a2a-8ae4-212e2029af92','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.250','2025-02-25 09:59:06.491','478763903-2-35'),
('b17588a2-1348-471f-80dd-360b04a917ae','c31d214e-54b8-4bd2-9ef1-5341759d62d7',51,51,77,0,NULL,NULL,'644563405-3-2'),
('b1770abf-8929-4086-b820-21ecedcfb31e','9866a947-9974-4053-8415-4518842488fe',105,15,18,0,'2024-09-28 16:27:03.012','2024-10-10 11:35:03.199','126371651-1-30'),
('b178e152-1122-4a66-a466-df77444af53f','1fe5a3c4-700c-4065-9fa2-a479e3a6c022',51,51,77,0,'2025-06-21 04:34:09.409','2025-06-28 16:00:51.711','437133708-1-1'),
('b17b0a36-af98-417b-8d27-4ba46d301da1','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.569','221339460-2-62'),
('b17b70c4-2434-482e-ac44-c99973b25904','ba0c3ae6-ffe6-4d66-b8c1-36ba1218bdf3',143,27,199,0,'2025-07-26 07:40:26.443','2025-08-04 06:40:09.551','428761245-3-1'),
('b17be21a-eb01-45cd-a456-8aef610660af','8a9beb26-658b-4990-84a0-177e0cc073c2',220,66,95,0,'2025-02-15 13:31:50.856','2025-02-24 17:29:21.268','081581964-1-2'),
('b17c0f00-1642-4bd5-b15a-d3c0f20271a6','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-4'),
('b17e5cb6-e46b-46dc-bf08-4f7d9373d55b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.863','2025-07-24 18:00:53.302','223444495-1-221'),
('b17f4f69-7180-42d8-a3b7-670f0d3e2271','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-13'),
('b1810f90-1ead-4d14-8645-d8eeced66f5c','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-13'),
('b1823cec-0794-41cd-8762-63052a85685c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-104'),
('b182464f-e244-498b-936d-997a7f808280','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',70,212,8,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-9'),
('b182f6b9-56f2-4003-a919-fb6aafbf763d','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-18'),
('b1830ecd-5d85-4409-9a65-f6c2e991bf38','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-121'),
('b186f401-922e-470f-af1f-b11718f4b991','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-5'),
('b187830c-f7ea-4b37-99aa-92288c4386e1','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-7'),
('b188f81b-bfb5-4377-8c1b-2cc61bbe6592','220fed8f-f96e-4af5-867b-ac05d11bda6f',44,11,145,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-10'),
('b18d2b23-a078-4d52-a5ad-fef007c965a5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-100'),
('b1925d01-e32b-4456-8ee7-15e808b2544e','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-71'),
('b19349c3-5a05-4d4c-96c0-b7a28342569f','546ad3d0-25c2-43dd-9443-e48b8e5b6530',95,56,65,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-56'),
('b197a8c8-69de-4710-9820-3941d556ec55','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-28'),
('b197ebd8-22ce-4849-a98e-fa127f5f8952','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-25'),
('b19db784-bdf9-415c-b0dd-88a9fe0b99bf','282c672e-d571-4ce6-b74f-e497f4350382',28,30,56,0,'2025-10-22 13:07:10.733',NULL,'011766113-1-1'),
('b19de65c-ebaf-4dad-85cc-c200f51658ea','676266f3-03e6-4ff9-92c5-07a1b81bc27d',72,98,55,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-7'),
('b19f2341-9757-4ac3-8970-6c53cdcea21f','ad4c9233-fa72-4eb4-9b9d-d39b59b3ab0e',10,20,100,0,NULL,NULL,'47816855-3-5'),
('b1a38a1f-170e-44b7-842d-c6dfbbc4b02c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-18'),
('b1a473e1-a1cc-4039-9d8f-5e1878450c4f','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-14'),
('b1a6eb6f-5d2f-4dcc-9687-46b92e610a36','db31505d-890a-49a3-ab5c-a703df1962b6',30,56,80,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-4-3'),
('b1ad6477-626d-4365-bcc2-3848a3a48bbb','5089704a-e90b-41d3-a4fd-0f97ee26031a',97,197,6,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-4'),
('b1ae96bc-46c6-465f-98cf-e7a78abbdc4e','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-21'),
('b1af2439-8ded-4581-8cc9-10dad103feb2','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-18'),
('b1b16cb5-0f07-41c5-bec6-d2d05775a878','b2c78cf5-c58c-4553-bd14-49e83916894c',49,49,73,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-5'),
('b1bd7a32-e6f4-4794-8081-9b3dcf557bb6','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',84,65,93,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-4'),
('b1c49e2d-948d-41af-b285-b4dd827089a6','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-36'),
('b1c726f0-e025-4a8d-9026-3cf9c2a309d0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-149'),
('b1c87976-4df6-4092-81b0-42b7db6083b3','c98f6188-56c5-4870-be97-be71cf95f62e',225,59,4,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-11'),
('b1ca698d-3eaf-476c-8966-05b8b6afce8c','3fc759d9-3801-490b-bbad-23f2ff290b97',92,61,215,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-2'),
('b1d071cd-c12c-499e-a140-3543f5aec461','546ad3d0-25c2-43dd-9443-e48b8e5b6530',90,180,2,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-9'),
('b1d12f67-57b5-475d-b09f-e5aab5d8d1cf','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',79,55,200,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-5'),
('b1d5adc1-bd6f-4a73-a800-623b6ff27875','7b2d4551-a99f-4fb6-8215-e7af3afe860e',90,27,200,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.124','486184665-1-8'),
('b1d663a2-9b8a-4deb-ad43-ad78edc5fb12','080cca92-65c6-455b-b12b-18f90f342599',51,50,76,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-1-2'),
('b1d6ecaa-518b-47b5-8874-1e24acb1678f','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',85,212,38,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-2'),
('b1d8048e-311c-42e9-a1dd-2ddc80556682','e5d51f05-c16e-4b7a-89e1-c0a1d7b98700',96,70,197,0,'2024-08-31 13:26:55.425','2024-09-07 07:22:44.091','976893568-1-14'),
('b1de4419-ab2e-4168-9a21-591603a8d1bc','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-87'),
('b1dfa137-1275-468c-9691-56dcf1212aa1','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-72'),
('b1e0195c-437b-4e99-b8f1-c5947d3ec3a3','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-117'),
('b1e07cda-6a62-4683-9bad-46d3935a5134','6d0390ef-65ce-4154-a607-d67e51938ed2',90,190,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-5'),
('b1e1bed4-42c3-4e1a-99da-650732c2522b','9114ad70-d53e-4d1f-89c7-30585d0a43de',44,39,39,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-32'),
('b1e63a18-116a-42a9-b513-6c8acfe40ae6','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-18'),
('b1e6bd0f-c09e-43b4-b43d-8e3470863307','38bc7e3b-95ee-4744-9059-2f872050d26e',0,0,0,0,'2025-07-08 11:31:13.291','2025-07-24 18:03:06.213','412574307-1-2'),
('b1e6dbd5-c1c6-4ff2-80e5-853c84c0744a','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-12'),
('b1edecc8-2696-414e-b823-9dad9c48624b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.160','223254418-1-72'),
('b1ef1ba2-d11e-4da2-9c3d-8e19864b3326','49c326ab-5b3b-49e7-a781-28760709b5be',33,33,21,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-17'),
('b1ef3d91-c275-4a3b-ae92-920373d28ba5','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-15'),
('b1efac3f-5200-44d6-8338-468f930c54fb','14694410-5bbd-4c16-aaf3-3218e9c86c9d',0,0,0,0,'2024-05-29 10:12:13.202','2024-06-11 14:04:50.980','449445608-1-4'),
('b1f13103-7e39-43a5-ae9b-4e88b7362422','016dfb52-0431-472b-8ea9-e510a1937e2e',97,29,202,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-1-6'),
('b1f34f91-73f7-47e3-b433-84ea370d244f','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-1-1'),
('b1f5af61-ac37-48c0-a331-f97bbe3a0a12','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-70'),
('b1f6518e-c5e6-4e46-a0c3-eb5f60d7e337','67ccfa3d-f741-465a-883e-090e37617e92',92,85,115,0,'2025-04-15 16:01:14.814','2025-04-28 11:59:28.218','745639167-1-2'),
('b1fa29f5-df44-4128-a1a0-728aee0ae404','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.749','223422825-1-164'),
('b1fb5fd9-4ee3-4b73-a788-1d6762d23cc6','995dfcaf-53b8-4dad-ac21-6f4ba521c6d6',100,118,67,0,'2025-10-25 08:59:25.499',NULL,'478544570-2-4'),
('b1fc6d6e-29e7-47a0-b335-cb0eeecfa7db','e89e7d75-4967-4c63-9f73-981469e531af',31,36,30,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-33'),
('b1fd0200-9e2d-4997-806e-8edbe6dbec45','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-19'),
('b1fdca9a-92a4-4743-9643-ec64b4135cac','afdf27e1-0689-4491-868f-ab5e614758ec',255,100,70,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-6'),
('b1fe9779-9975-408e-8918-53158a0e1183','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-1'),
('b1ffc439-a83e-4914-8a9a-034b49d92970','d83c40d1-4df5-4c97-bc83-28837db95b2b',250,60,3,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-55'),
('b204c2f7-05ef-4613-84e2-5357c817c326','9b790a64-be97-41ec-8330-fe02190f5b10',85,95,240,0,'2025-07-26 07:40:23.594','2025-08-04 10:55:07.811','517867004-1-1'),
('b204f1ac-5741-4575-ba13-a40015e1e188','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-66'),
('b2099664-09bf-4167-b9f1-a5a194df300e','0009aeec-e682-465c-b701-363a3ef377a6',142,84,4,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-65'),
('b20a1ce6-ba83-4185-9b0d-5887b5b2524b','159c73ed-083b-4d67-98ca-6adcfc554962',30,110,204,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-15'),
('b20ebb32-8d2d-450f-a174-02cf2b94d04a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-146'),
('b2100141-bfa5-419f-9e3d-63eeac319d00','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-25'),
('b2132759-3cf8-498a-b36d-8f66e292a8bb','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-2'),
('b2137617-04c4-4bcd-a56e-826a6b5cad66','a89f5cb0-4036-440c-b388-8ef641d6f3b9',71,106,53,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-13'),
('b2146812-d614-46c1-8219-14c0ed063b2d','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-23'),
('b21a275c-0ce2-4aa9-a5b1-48860a7d9601','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-1'),
('b21a2f3f-73ec-4537-80f2-61b2958f1edb','ef01ae16-c169-4e19-9b74-47dd619d784e',51,51,77,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-2-2'),
('b21ae65a-54f0-4cdf-8c6d-38d553a33ebd','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',58,45,17,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-49'),
('b21b10d5-b4e8-4e43-bf20-c9521475f7b8','66f8d34c-0c41-46f5-98bb-500adbb6f636',60,8,212,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-18'),
('b21c9c28-d3f8-4834-aa87-a51cf005ed32','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-73'),
('b21eac1f-f3d2-4baf-b67c-5783d46b8123','46d1512a-2bfb-476d-a224-9390f3e194f2',152,98,112,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-24'),
('b21ed812-0a34-4670-95dc-485793c246c7','1d561668-0f20-4753-86b3-33f1b10746d3',51,51,77,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-2-2'),
('b220c022-9f80-4a1d-b8ad-98c316a6ac9f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:42.099','248135683-1-25'),
('b22219dd-21a3-4fcd-9151-021b8714ed70','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-99'),
('b222206b-ef92-431f-8cdd-06c3674a40e8','86ee035e-15bb-41c0-a091-2eb029703094',95,65,100,0,'2025-09-16 16:29:41.052','2025-09-30 06:16:32.277','644469726-1-3'),
('b22352f2-52ff-4b77-9080-14dadc7f9131','9866a947-9974-4053-8415-4518842488fe',43,16,16,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-31'),
('b2263fd6-537a-4c52-8a38-78f6392c8dcf','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-10'),
('b229cd08-0f48-41d1-9b72-1a009df1c001','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',18,44,65,0,NULL,NULL,'47816855-2-4'),
('b22acee0-5c85-47cd-8569-bcd5b12fcf88','d1606eb5-933c-4e61-b7ea-5f79b332691c',40,33,228,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-6'),
('b22df16f-2591-4dfa-835e-e65c75566ed3','bd176b24-f129-40d4-8c33-6b35eded0fad',207,78,2,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-13'),
('b23029b9-d6c6-42ff-a7ad-44a207f23420','a135c145-15f3-450a-819b-e82b427bc978',73,50,19,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-20'),
('b2311025-eab6-4ec7-986d-2e1523aad9d6','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-30'),
('b2341813-3288-4681-b652-e2d75c3d608c','bf2fbd97-6d0f-4724-b25e-47e019854e49',45,12,143,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-18'),
('b23a035f-26d1-4ce7-97a0-44aa6ae3a760','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-67'),
('b23a04ee-7426-40fa-9f31-af4206cdd3f6','3e68a7e1-b64d-4ae8-830f-cb72c4eec04f',52,36,70,0,'2025-10-09 08:39:52.750',NULL,'011940661-2-5'),
('b23bac50-dee6-4c11-a813-e050264a94a4','b23cf296-f843-4492-9697-0fd43d657771',106,80,56,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-14'),
('b240bcfc-ab67-46ec-9ce4-52f3f0654e61','f59aba8d-2f5e-4816-b322-ff557edd32f8',30,40,58,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-2-3'),
('b2417a02-51d0-4cfa-8e3b-caedeb3b166a','5b94f16d-f4d8-4466-bc90-5a88e45dee7e',137,95,70,0,'2025-07-12 09:20:18.079','2025-07-25 10:49:11.537','976747802-1-5'),
('b2421b05-c9e4-4324-b7f1-327d17020e3a','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-17'),
('b243d2d5-1f1d-4b90-9ccf-ec7eae5cdb50','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',106,208,8,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-3'),
('b243eb57-0c0a-45d8-99a6-771c0db43445','069f2e83-6248-4f1e-84fc-29bae52379f4',60,65,85,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-1-3'),
('b2449929-533c-4c91-b0b1-2998a271d854','81ff8563-ab6e-4bad-a81d-a451ba94d6a6',65,77,90,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-2-4'),
('b2457fa4-abc4-4850-b61d-bdfeb07120d7','bd176b24-f129-40d4-8c33-6b35eded0fad',209,49,17,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-16'),
('b245846c-b4f8-40d2-aa3c-af466513c8d6','8625abf2-719d-4d7f-b206-16948b318b8b',52,63,10,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-20'),
('b2472dae-87e2-4f5c-abe5-cd276ee3831c','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-3'),
('b249813a-5f87-4fb7-a0c0-8a9a3929167d','3bd671c9-374e-4431-93c3-1d44ad60103d',85,85,54,0,'2024-07-02 08:19:51.226','2024-07-16 05:11:54.166','614134006-1-3'),
('b24c869b-673a-4423-a600-33f1cd84de11','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-13'),
('b250d619-6fb7-4a8c-a0f9-2c4072ce81ec','28a006d0-78f4-4519-9b69-fe1363cd8176',80,61,90,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-1-6'),
('b251fb44-7eec-4476-8631-e871024101de','723a1ddc-811a-4899-bb4b-577c7b163262',75,65,70,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-5'),
('b2527d14-29e3-4f36-bd54-1cea88d4ef96','8ccf1da0-f5a6-43c4-a953-8d0167d86614',90,107,70,0,'2025-04-30 14:29:07.522','2025-05-13 09:05:57.394','923436295-1-3'),
('b254467f-1f03-4712-b06c-d7d7623122c1','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-23'),
('b257b643-45aa-4233-8e8a-ce79d3263906','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',57,96,11,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-26'),
('b259de04-4e24-4d7f-b69c-ec4588b15c4d','37bd2ed5-d318-464e-a715-446bcc4a4d10',57,84,63,0,'2025-07-17 09:33:44.977','2025-07-22 21:00:34.495','221949733-1-6'),
('b25e3c36-9776-4791-b2ae-4cb1a0af387f','8db511a4-512c-43a9-a77b-c2c5b692a613',0,0,0,0,'2024-11-12 16:15:52.038','2024-11-22 21:23:24.063','745661183-1-2'),
('b2619c55-000b-44fc-b350-099a932bc78e','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-3'),
('b2625a96-9545-49f3-b9fa-911dbf70b224','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-12'),
('b263442b-dac5-49b9-8e69-93236c589fc2','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-28'),
('b265b7e3-4f57-4f37-b618-4784e552e4b8','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-7'),
('b266a264-e580-4914-8508-906a93edd573','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-6'),
('b26ece6a-d3f9-41d4-8705-888ba6d730de','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',75,25,202,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-13'),
('b272a175-d3c3-4abd-9bb7-84acfe45cec9','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.235','2024-08-31 18:14:18.175','478693155-1-8'),
('b272b4f3-9884-4b9b-bf87-7e214eeb5a68','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',50,11,104,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-10'),
('b27cfb0c-6b7b-4aa5-b752-164ea0c8d14c','d4f91387-af40-4672-a65c-7ea6e96f76b2',52,8,172,0,NULL,NULL,'478350685-7-10'),
('b27d05b3-38b1-479f-972c-169017220b4f','0d90ef6d-e963-4a99-bbbe-e4ca67429574',97,13,183,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-6'),
('b27e5a9d-0a91-4fdc-b803-66f02c760fe5','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-1'),
('b27f33b9-2813-4f56-9ad6-d16276dd2874','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-76'),
('b2828087-4a7e-4dfa-85e4-d873d3ad84f3','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-15'),
('b28445cd-19fb-4edf-a990-347aba58d64b','0005db85-41ab-4616-bf3c-3a7fe7d9315c',83,83,7,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-1-2'),
('b2873dc5-be1e-4885-b1b7-e4ae1255b8a0','6818bb9a-7b67-4c84-b61d-688315d496d3',78,81,24,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-2-2'),
('b289e5ca-61ea-4e84-baf4-f20b7bc5ae49','074ea43f-46eb-4c8b-a2cc-11fd81b03760',65,93,198,0,'2025-03-27 08:02:46.623','2025-04-08 15:37:36.306','644206771-1-3'),
('b28a10f5-2366-418e-ad22-fdde08a0015f','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',113,55,10,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-17'),
('b28b1ca7-0307-4b25-8389-3056fb01493c','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-10'),
('b28cbded-45d8-4636-a1a1-2cd0cdde61d5','7c09f776-ffb6-47c8-8828-61389547804e',121,47,15,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-5'),
('b290755b-2e5c-4943-ade6-f59195488fa4','33fe2a4c-8ca3-4525-8c60-5c58c8ca73c4',0,0,0,0,'2025-10-13 10:18:24.242','2025-10-16 06:56:36.734','412157183-1-1'),
('b2917137-17a5-4d4f-a4f4-40ebbd9ba350','d0ade823-74de-4507-8f72-ff3352af4bbf',124,58,27,0,NULL,NULL,'428407424-1-4'),
('b29bdd86-13f5-459d-a72f-2ba347eb7206','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-116'),
('b29cc600-dd75-4dac-b61d-603c78967a33','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-128'),
('b29d035a-4c62-409d-8aff-1bd0da33b32f','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-28'),
('b29d4ff2-cc81-4ad4-a9f9-5a7b9fefbb44','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-56'),
('b2a47a1e-5a94-4ced-967d-eac3437c0925','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-3'),
('b2a5e536-2351-440c-bd2e-3bcde0b588e2','e1b3ad5f-d394-4b3f-969d-622465857d95',8,209,59,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-32-1'),
('b2a793ed-2fa0-422d-8909-d2da028c2a6f','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-7'),
('b2a9b858-f4b5-49b5-8961-507faff66345','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-26'),
('b2ab8278-5ad8-416f-bc19-53c6355d9006','bd3596c4-ba42-44fe-9a53-14cf56f1f7ce',49,64,204,0,NULL,NULL,'598697614-5-2'),
('b2ae471d-1554-449b-9d9c-2b48076a675c','d2ff9c8d-4639-441a-9d87-f69bec139d50',95,80,240,0,'2025-05-28 19:09:12.965','2025-06-05 12:35:03.972','517337381-1-1'),
('b2af3bfa-27cb-4d47-9a27-acf2c49aa449','af69c5a3-87d3-4548-a650-720b69a4fc69',60,13,93,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-31'),
('b2af53df-d973-4286-8930-a166837f7823','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-3'),
('b2af7f93-5c2c-4c3c-bbaf-13635b174912','80d556fc-ff56-4376-b860-2fe31b4dd1b9',0,0,0,0,NULL,NULL,'478196073-1-1'),
('b2b10e19-3e60-469d-945c-4b73738abfe5','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-11'),
('b2b56b38-99a0-466b-b6f2-83ece9ed536b','b586b800-5234-4efe-8034-338d0734dfab',0,0,0,0,'2025-01-20 11:21:16.733','2025-01-31 12:16:25.732','478250269-1-3'),
('b2b70484-4915-45ee-940f-7b1f0d3d5bc5','6d2958d8-12ca-41bd-a12b-58082d5c955f',106,5,84,0,NULL,NULL,'614364554-3-8'),
('b2ba86ea-3efd-4348-8bfb-d6832cc22da3','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-6'),
('b2bb33c3-631b-42fc-a80d-c97da7b583cc','642202df-ca75-465e-8036-f34da2dad54d',49,53,10,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-6'),
('b2be6047-73db-4938-bc2e-f6018a57cd86','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-25'),
('b2be7662-2d46-4d4e-aeac-889a4cd2e648','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-19'),
('b2c17b7c-c5ca-430a-86a2-c6a847e45de0','886e0e1a-c599-47ba-bacc-c329212cc55b',10,137,193,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-23'),
('b2c375dc-4bd3-4813-b4f9-de716d111e68','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-37'),
('b2c90974-e907-4488-9594-03a661cfacad','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-84'),
('b2c9cd80-6d99-4638-b100-da913ec57181','f306c88d-a372-49d5-8c36-fb790846352a',0,0,0,0,'2025-09-12 17:16:38.132','2025-09-25 14:05:03.151','478798827-1-1'),
('b2d00480-0376-48b1-bbe7-30c2d4319a6a','9a6b1e5d-c0f1-41dc-840d-52aa575f82eb',51,51,77,0,NULL,NULL,'221584314-3-1'),
('b2d0fcba-c6b1-4eed-b627-d70152e29891','44e1fa3e-186d-4e5c-800b-0ed503636ed5',75,54,35,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-2-1'),
('b2d23a6b-2372-44a1-ad3e-47e34b5d976a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-32'),
('b2d7b55e-4e99-46c8-aa4a-e1c0e713849c','9dc96b19-247b-4a97-bb0e-de1393132cd9',0,0,0,0,'2025-02-09 09:51:26.401','2025-02-19 08:38:48.550','01921294-1-1'),
('b2dcd3b7-ceaa-4730-816e-53de485811d4','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-7'),
('b2e70a5f-a1a0-4034-b419-980a7261d763','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-33'),
('b2e76e60-b48f-4744-9023-958479d806ae','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-1'),
('b2eae994-ff7f-40d6-a8b1-154e0bd4f949','6a2d762e-11cd-4fca-b32d-cdba41391e25',38,38,45,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-14'),
('b2ebecd7-8e39-4cef-97fa-8bef1d75f624','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-3'),
('b2edbc3c-7677-4f76-84ef-07086e65c6c1','e1ea146e-dd39-4b5a-b0e2-af130a4ab837',55,73,102,0,NULL,NULL,'644726352-2-2'),
('b2ee6701-84af-491a-97d3-34041416659a','c67def51-fe24-4885-9519-ba2b028c3f47',30,33,194,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-2'),
('b2f12c5c-462a-4db9-b1c4-e3a041f0cc2f','d0f1019a-0cb9-4fff-9f33-5af28e47634f',51,51,78,0,'2025-05-09 18:44:17.177','2025-05-19 20:26:37.031','644113100-1-2'),
('b2f30714-038b-4114-bf2b-cf10027f5e0f','4ae9c5f7-6cb9-4957-b510-4e19119dcafb',101,76,53,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-1-3'),
('b2f3c55c-f597-4563-ba9b-fd16e064f710','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-3'),
('b2f3d382-f254-433f-a206-27e50254317b','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-4'),
('b2f909dc-dfc7-41ff-af85-1dd7bac37f75','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-4'),
('b2f96308-2b6a-4234-b8c9-7cf154f958a7','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-125'),
('b2fee0d3-9c8c-4c1e-878e-cb2d1d48c776','a87576e3-14e1-46a8-99c7-1d48360995f5',60,50,50,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-14'),
('b2ff6aee-c074-4360-9cae-2bcafaa8a5b3','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.946','478124503-1-3'),
('b3003653-1d77-4595-8044-fe370bacfec1','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-4'),
('b303acfd-1f31-4a54-839b-031b03826ee3','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-2-5'),
('b30690ec-53a9-4e81-8293-5fd0ef5bbb24','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-19'),
('b307a6ab-bc25-463b-83b6-19513f2afa85','0d161dde-9057-490d-aa97-f0e28819ff37',72,58,95,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-1-2'),
('b30f8a8a-6c65-4543-9f41-1385844c7eb1','d83c40d1-4df5-4c97-bc83-28837db95b2b',160,29,15,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-57'),
('b3119e52-b5d9-446e-ad82-ec1b1b8af614','465d80fd-910d-4efd-b69a-ac5b10f5964b',68,41,94,0,'2025-04-15 16:01:16.815','2025-04-28 11:59:07.352','644887691-1-4'),
('b314e857-508f-4518-afbf-5a4cc3da7a98','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-9'),
('b31cf659-c413-4b03-865f-b2fb5937bfb8','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-62'),
('b31d9faf-1a45-4989-8c78-a63b26e693e9','83a4a2ab-63b4-468e-9809-edf00bbd2679',80,80,95,0,'2025-05-09 18:44:21.970','2025-05-19 20:26:27.501','570417524-1-1'),
('b31ec755-f274-432d-8d59-eca8d0f720f0','8e9264a7-ea7b-413f-be45-63b66a8c7b11',100,100,80,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-5-7'),
('b3215703-071f-4293-bd44-55f01864211c','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-19'),
('b3242d36-5d01-4760-b572-0e109bd4874d','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',11,11,67,0,NULL,NULL,'47816855-2-23'),
('b327834d-1008-448a-8f56-08a607baa267','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',152,51,7,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-18'),
('b329ef76-c887-42c1-a8fc-c14aa685e577','7311f1e0-e2be-43dc-9e40-f94a010e8939',163,31,10,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-42'),
('b329fef3-e88d-4a93-9d4f-fa52a1c1f0e0','d83c40d1-4df5-4c97-bc83-28837db95b2b',100,100,5,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-58'),
('b32a9f1b-4fad-48f4-830b-05e04ccd7a1a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-42'),
('b32c41d4-f9b2-47ca-b99a-50e56363453a','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.757','2025-02-13 13:19:23.876','478484020-1-3'),
('b32fcd09-3dab-4dfa-9a65-27b20a9832f7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.750','223422825-1-28'),
('b330f2f2-88e4-48d1-b2ce-ed731fb4a752','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-3'),
('b331fbc3-115e-40a8-83fc-0d1ac6da718c','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-26'),
('b3330677-ec7f-4920-81ae-0f2b6a0a634c','46d1512a-2bfb-476d-a224-9390f3e194f2',212,50,8,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-25'),
('b334f133-080d-497b-a232-4d6bd1ed2e49','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-24'),
('b33a9ff4-c726-48f8-b79b-b2744473b4f6','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-37'),
('b33aa0fa-d10a-4e16-8b10-bdc550b7ea4b','c98f6188-56c5-4870-be97-be71cf95f62e',162,200,4,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-27'),
('b3417da2-e1ef-4ba4-b8dc-459bab8ef582','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',50,56,73,0,NULL,NULL,'531240111-1-11'),
('b34640a3-21d6-4123-9751-e587476c1ce2','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:42.697','248135683-1-161'),
('b3495ab9-8437-4b5c-9b29-ef7f342d3c66','9affc7b1-09c4-4e84-b48b-d0c117c421b0',50,50,80,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.902','412280381-1-48'),
('b34b60f9-9cdd-4e59-ac34-a61ddd3521bd','87fb12aa-62c2-4fad-b01b-4807ecd8cb5a',72,182,16,0,'2025-10-22 13:07:06.149',NULL,'505724535-3-1'),
('b34bfe58-d1c2-40ba-bf7e-31c1528a5f9f','0bafd109-abe8-42a8-b45f-d5053eae132b',20,20,122,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-9'),
('b34d9ace-1d76-41e5-9572-c90e4ecad338','94d4fd15-f663-40b8-8ec9-f93a5cde757c',4,66,231,0,NULL,NULL,'614364554-5-9'),
('b34e8929-7f1a-4bcb-b860-7919b9777062','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-29'),
('b34ec4f8-9f45-41af-872b-447fd8942439','215b7f43-1974-4003-9af2-0e2b300284d4',67,101,70,0,'2025-10-25 08:59:10.092',NULL,'644522996-1-1'),
('b3522c58-8dc5-4e39-8818-1f91f2a855ee','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-1'),
('b3524ea6-20b4-4484-b66c-2660e9c9bf9f','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',61,210,7,0,NULL,NULL,'531240111-1-7'),
('b35399de-ba9e-42b8-a10f-06a6b3a40b86','950eb8aa-72e9-4405-9031-9182cf1b215e',165,129,19,0,'2025-08-07 16:52:35.986','2025-08-21 08:12:57.335','478525280-1-4'),
('b353faca-aa55-4c3b-94e8-d3f8ff3cd64a','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-5'),
('b3558e07-504f-4c57-b7e6-18dddce5475c','edef2f29-fe9b-4fa0-8465-53614e2f2468',72,95,60,0,NULL,NULL,'478412191-3-4'),
('b357cb7a-46ad-4826-b369-41c62c967c68','9affc7b1-09c4-4e84-b48b-d0c117c421b0',85,98,80,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-5'),
('b35a8b53-9189-4b2b-a220-21b8490aca46','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-9'),
('b35a8e4b-3d84-4963-b3e5-2be7f20bc841','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',243,70,94,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.259','449208438-1-6'),
('b35b9d9e-af39-4e3e-acae-9c816a5aa956','edbe04eb-c7b4-48d9-a408-e4287108a690',0,0,0,0,'2025-03-08 13:46:17.759','2025-03-17 14:54:13.276','745983500-1-1'),
('b35e53c8-0d25-4830-852b-cf2ce98281db','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-95'),
('b35e9b56-d732-4231-8754-8141fe37697f','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-19'),
('b3626317-025a-4cc6-9e71-8238aaede0dc','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-94'),
('b3641afb-b722-49af-b913-aec9302f5ee9','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.229','478361652-1-3'),
('b364688a-343a-407e-9159-4d66da9800a9','cf16ee0b-0882-4d38-9eca-1e0888101309',80,95,95,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-3-6'),
('b36abbe9-3aa4-4f80-bd01-c12dd60d4640','1b8f328c-9952-41e3-aa69-f843fde86e4a',45,18,43,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-2-4'),
('b36b7323-3298-498c-9b63-bf8876bc7a9c','1ea964d7-2e9b-469f-bd3d-af7e4d9f0853',80,230,100,0,'2025-09-16 16:29:16.090','2025-10-03 14:58:06.531','478603328-2-3'),
('b36fdfe3-6dcb-4e39-889f-e69f790a7b6a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-19'),
('b3714a73-3f8b-4a39-888d-3a78d62cdc06','19c6a32c-4384-451a-aaa5-dfc264ab827b',86,3,207,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-17'),
('b3756043-f435-435a-925a-82fc048f4c05','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-6'),
('b37703d7-07ab-421d-b113-186b06d0323f','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-29'),
('b377998b-907a-4bc9-aee4-fe26a1837faa','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-28'),
('b37bcf60-224f-4a98-990b-3304005a7851','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-77'),
('b37d46ee-21a0-46cf-b29f-85cfb2079bb6','3444d780-425a-4b22-97b8-3d121d545fb0',90,225,70,0,'2025-10-14 09:22:03.828','2025-10-22 07:00:55.246','910129924-1-1'),
('b37e889d-4fd0-44b3-8731-809383dc8fe6','84931d79-be4a-4fda-a683-426c1f8b5d7b',80,65,100,0,'2025-10-20 07:17:56.783',NULL,'598387436-2-2'),
('b37e8c07-d489-477f-98d5-c18002f9d200','30cc08c3-1c49-4272-a534-8826f5e06885',72,99,95,0,'2025-04-28 07:40:38.026','2025-05-06 11:25:38.562','817893403-1-1'),
('b38043b7-e6e7-4a8b-8833-ea05c2ad2352','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-11'),
('b3808c98-e0ed-43ee-8120-05cec4955caa','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.515','412903480-1-4'),
('b381396f-e0e7-401a-8a1e-f936559ecce4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-153'),
('b38199cc-f247-455f-8521-a97416c95432','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-1'),
('b383bb50-e4b1-4747-a181-914961d1c623','e6b2195b-f5ef-42c2-8ba4-0de51fa35962',100,70,240,0,'2025-01-20 11:21:21.000','2025-01-31 12:16:08.870','734460411-2-1'),
('b3870765-91cc-4bd2-b847-1046c9972bc3','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-9'),
('b3871d36-1702-441b-8d46-3109f640c7f4','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-79'),
('b3884a05-deec-4636-9322-44a877827e50','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-20'),
('b38955b2-a1c8-48bd-ac29-ad12a4124eb3','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:43.690','248135683-1-184'),
('b38d033b-3127-4b6e-ba1f-4b4f9bc98c09','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',91,107,9,0,NULL,NULL,'428437129-1-8'),
('b38da47c-14c1-4473-9670-eff0d3625947','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-7'),
('b38fc2e9-6fe8-4fce-9f9e-ceced14768bf','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-201'),
('b391e51d-02bf-4e7d-8970-65b01763cf6c','20a73c4e-790b-494f-b4a7-c61766021e4b',7,92,205,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-1'),
('b391e7b5-962a-4aab-a56b-8790557a5e55','b628ce1b-6b78-4402-9d3f-96ac8321b505',52,26,224,0,'2025-10-20 07:18:02.414',NULL,'817682643-5-3'),
('b393553a-20fc-4590-9759-57681699e47b','e6cd7c35-daff-4ce2-a38e-7b089abac876',0,0,0,0,'2025-09-02 14:48:51.471','2025-09-12 06:56:06.375','644424764-2-1'),
('b399827b-9fbe-4c65-8151-137c0e3fea2c','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.900','248383650-1-16'),
('b39c96b0-9ba9-4c85-8b61-043ea35a5c61','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-33'),
('b3a0ebb7-5ff3-41d7-9eca-76942315c07e','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-2'),
('b3a27f95-67a6-497c-aa7b-0aee94312289','31900e3f-390a-457e-a430-7ea622f3b170',0,0,0,0,'2024-05-29 10:12:17.439','2024-06-10 13:50:34.308','745455914-1-5'),
('b3a307fd-879d-40b6-b1c2-9d65ff00b127','8f1b3fd1-9289-4cd5-ad84-508968f285df',90,90,42,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-2-4'),
('b3a3bf3c-8c1a-4132-99ce-ae42847ec430','0a43887a-12ae-4e51-9586-f10e42c3bca6',42,28,195,0,NULL,NULL,'011399882-1-4'),
('b3a3f7ea-ba78-4210-8f75-23dd903563f8','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-10'),
('b3a7b61b-a136-4799-b8f6-08ef887a4814','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',50,206,6,0,NULL,NULL,'531240111-1-5'),
('b3ac7cbd-e691-4b49-b09d-90a1e0066a67','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-10'),
('b3acc353-56ea-4342-83c5-0cf09a43ae8a','6f8fd929-0228-4fd9-a182-83fe855d3f5c',100,86,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-17'),
('b3b0895a-bd32-44fc-932d-bcfba9237546','8e90da7c-ed37-421e-b127-043653dff96c',124,74,6,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-3-1'),
('b3b14862-5b82-4d67-811d-664010fa8537','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-142'),
('b3b1ea86-ff30-4f9f-864f-6e5d03a6e2c8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-44'),
('b3b2c6db-bd24-4162-914f-61389fd8cf0d','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-4-12'),
('b3b3b7f6-1d7f-4052-8a97-fed3567dc64d','8e39c973-c918-4ebc-bd24-9e7fc61de240',47,60,8,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-8'),
('b3b41fed-5700-4b5e-8736-9ce3861208b5','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-10'),
('b3b43a15-b569-47c9-92ce-549f59881920','546ad3d0-25c2-43dd-9443-e48b8e5b6530',20,13,155,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-46'),
('b3b4f188-db56-40d0-9d82-79f43f010c8f','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-149'),
('b3b56a76-5dfd-45cd-bb59-10016592b932','aa113c34-9fed-4b54-9803-35911009db78',92,94,74,0,NULL,NULL,'910781464-1-1'),
('b3b989eb-07eb-4005-bb00-475841917d69','f3414f51-92da-4967-b108-6baad5cdd798',34,210,6,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-13'),
('b3ba043c-7e03-440c-957e-d28fb07ebbc6','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-43'),
('b3bace32-46a6-4a99-b218-d24ea9d1d48e','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-72'),
('b3bd4506-dc70-410a-baf8-b02661feb0db','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-9'),
('b3be4c1b-e263-43b3-9f89-4dfc99126099','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-12'),
('b3c01cab-85b7-4813-bb50-b8ce3cb226ac','733d947b-4145-4080-8edd-87c33f93d60e',95,92,60,0,'2025-10-20 07:18:07.350',NULL,'59856960-1-5'),
('b3c17229-5785-4a91-a888-db3e2387514e','9c776356-2e24-4ef2-8e40-54bae883ae2c',95,197,60,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-2-3'),
('b3c8400c-866c-4242-a27a-c4c4dcd1d7e0','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-32'),
('b3c958d7-df8e-46ce-a34c-6a86cc239f62','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-3'),
('b3ca79a6-2c09-4373-8c29-0ccc05e69e2d','dcfba104-f23e-437a-8a27-fd4802b38b82',92,96,76,0,'2025-07-29 12:58:45.007','2025-08-07 14:06:10.844','598585736-1-4'),
('b3cab687-af73-4417-8019-b60b2a325720','2ae78cf8-53c6-4be4-bf8b-eeea900b63c8',88,63,163,0,'2025-10-22 13:06:41.295',NULL,'598719647-2-2'),
('b3cc858b-c782-4f24-8916-e03c6916d331','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-23'),
('b3d16f77-0e15-4ef1-953b-df437b0e2698','46d0563d-1067-44bc-9c0a-d69fee69b215',100,200,30,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-1-1'),
('b3d1db30-4b56-4118-8eb7-6b51636812a6','546ad3d0-25c2-43dd-9443-e48b8e5b6530',53,10,105,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-5'),
('b3d64875-82e5-45e0-b926-f44084c2a0db','4133b64d-8906-4cf9-aeb9-479ffee87338',98,7,190,0,NULL,NULL,'695734625-1-3'),
('b3d7e7b1-d2d9-4715-bb0c-d83fa5b6c282','6d0390ef-65ce-4154-a607-d67e51938ed2',72,52,100,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-20'),
('b3d84f3d-1bad-46c9-add1-a8ca43c65c1a','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-17'),
('b3dc86ad-003a-4148-a883-c352ac23eedc','03ad506f-f86b-4dbc-952f-52b01e2467fa',102,105,85,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-47'),
('b3e2a13e-881a-410c-9fdb-c7683ff42204','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.357','745297087-3-8'),
('b3e745bc-43b1-4418-ab76-cdc4b7fc6468','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-9'),
('b3e92de2-5869-4847-8578-e5398abe769f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-184'),
('b3eb6915-ece2-482e-9cdd-15825e942c62','565f6966-f194-4d7c-8b20-64502045078d',74,50,17,0,NULL,NULL,'478350685-2-13'),
('b3ed07a9-a7c7-40c8-89bb-c663a0fd7a62','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-73'),
('b3eda35b-89e7-498d-8740-5cc751ff1b76','9950fe74-2437-4188-83e7-37a1e09fa6f7',85,6,85,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-7'),
('b3ee1b81-5cda-46a1-a2c5-d210db2eddac','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:44.236','248135683-1-93'),
('b3f2ac5a-9305-4219-8fd7-e2617eb650ff','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-246'),
('b3f2ffc7-87be-4c6e-b2cc-a879f3de024a','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-15'),
('b3f41b43-6f98-4d61-b9f3-0471fd2cefb9','4869c334-4618-49fb-9d03-99d95654d12a',44,209,4,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-3-22'),
('b3f6605b-7bf5-413b-8021-2d9c62691a5f','a918ff1e-42da-4211-9742-133995470138',68,107,65,0,NULL,NULL,'808690841-3-4'),
('b3f773fb-a243-4ec5-b292-acd93fba78e2','0e92c59b-93d0-4308-91ce-3965bb186203',220,42,29,0,NULL,NULL,'428180919-1-13'),
('b3f8c6b6-b912-4b92-bd65-817f8638661e','193f8529-9851-484d-b59f-72470c97132f',44,43,75,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-1-2'),
('b3f9195b-4728-47e5-bdf5-97ace4d3281d','457dff53-59ea-40e0-bd36-d823bc862d01',195,92,70,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-1-4'),
('b3fccb0b-6114-4a47-9988-986ba2b00519','0ca7b5c8-7608-49bc-9057-d56d835fbea5',81,51,100,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-20'),
('b3fce217-d838-489e-bdc2-924ec6237e5b','259a2afd-5891-4f23-8c79-b97916a49048',51,51,77,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.773','644877864-1-1'),
('b3fe0a0c-91e9-4df7-95cb-8ffad64b123e','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-8'),
('b3ff3d85-3c07-4056-bb19-ec91848cd2b0','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',63,89,17,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-50'),
('b403ecf4-6cc0-4fe3-804c-2d1030d6cee9','886e0e1a-c599-47ba-bacc-c329212cc55b',180,200,4,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-24'),
('b4045459-7f7e-4ae2-a6bf-b72c4fef91b3','bfde6081-8376-4df9-8f57-774c35ed9954',105,125,70,0,'2025-10-22 13:06:44.530',NULL,'959658567-2-3'),
('b40ab8ca-e65b-412a-9d94-b2f7d3939fab','503ad8da-9a8d-4ce8-9358-85ef86ef590f',105,97,70,0,'2025-10-20 07:17:55.584',NULL,'531380104-1-3'),
('b40fc467-dc79-41ab-80d7-cdc491152cde','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',200,12,23,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-5'),
('b41078e1-1cec-4754-85d6-38e86608e0dc','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-22'),
('b4110dc0-60c1-4ea2-b6f0-f27743413ad3','c39409f6-eabb-4d89-8cfa-a6402efc79a6',103,75,72,0,'2025-07-17 09:33:45.878','2025-07-22 17:22:09.793','531737045-1-4'),
('b41279fe-4735-4f75-b098-d3e9caf3e29c','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-82'),
('b4144b91-3bdd-4002-9109-b0d4d7545a80','7f189b87-2a91-465f-92fc-e3e25024c53d',65,56,101,0,'2025-07-19 07:51:55.144','2025-07-30 08:02:19.539','613813844-1-2'),
('b414ed82-811b-4d13-a973-cb9a160574bd','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',80,78,100,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-6'),
('b415ceab-17e5-42ca-b63e-bcc64304e3cf','6dd63c3c-43ca-49f0-9b2c-7b78a1c3be43',85,120,125,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-1-2'),
('b41a3065-06ed-4a46-a334-7fac0a5f44b6','958237a8-ec72-44d8-b7fe-5cff9027bc0b',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-3-1'),
('b41b3f18-c5f7-4c68-999f-60a6cf060750','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-54'),
('b420ec66-3b7b-43d7-8c1d-78eaff0f05d6','4fee46a2-3558-4ad0-b22f-8e6a38950750',0,0,0,0,'2025-03-27 15:06:22.210','2025-04-04 17:24:33.515','478650682-1-1'),
('b4211df1-2aa9-4dd9-aacd-7c74e54880db','a5ccb673-2961-4748-b867-0c0cedc7d251',52,52,57,0,NULL,NULL,'221196305-2-1'),
('b42164ac-9aa7-4b4a-8749-ace32adf5db2','2d31d975-945d-40e2-ac83-79cfc9b0b5f3',200,95,65,0,'2024-05-17 09:42:53.805','2024-05-28 16:23:04.287','449279198-1-3'),
('b42230e7-9ade-4e7c-a52e-dd99df8a2f80','21f98131-6f1a-474e-afcf-0edc5f8749a7',0,0,0,0,'2024-09-27 14:06:02.999','2024-10-07 14:02:49.696','750926872-1-3'),
('b4226ae5-7754-4e52-9a2e-7a52972ce8f5','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-31'),
('b422f932-3bc1-42d2-a577-c8d31648507c','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-53'),
('b4238d8e-740b-4a61-ae30-f3b5c5d2bf41','e6bddda4-b1df-4be7-bbd5-63cc4b197736',91,59,11,0,NULL,NULL,'42857810-1-15'),
('b4266386-d063-4647-9783-6ff922afd8f2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-163'),
('b427ed33-c7a5-46c0-b98e-a5f5a9df2be0','393a3e6b-f235-486c-87ca-8b44a4bf1559',0,0,0,0,'2024-11-23 08:32:18.098','2024-11-28 16:59:19.376','478530755-1-2'),
('b42b3e5a-bf70-463e-87cd-14540764250a','440f0df5-c4a0-4820-ae8b-616a711aff4d',100,94,80,0,'2025-10-14 09:22:09.057','2025-10-23 06:20:07.502','644257752-1-1'),
('b42eaf72-18bc-48ce-8c4e-08a628c88333','ee9fb715-b428-43a4-bbcb-69a220329347',85,180,70,0,'2025-09-06 07:20:45.019','2025-09-12 22:09:23.092','371304914-1-1'),
('b43336a7-7f2c-4148-8bec-ae64ffa40495','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-5'),
('b436ce90-35f8-4ca7-a132-d46bce5ec35e','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.684','248243194-1-58'),
('b436dce1-0097-4da1-bed2-181ab73951dd','546ad3d0-25c2-43dd-9443-e48b8e5b6530',25,40,8,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.042','655919587-1-33'),
('b43a27ad-505f-4fd5-a951-adfdb4305a2d','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',76,129,6,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-8'),
('b43d31c4-1ace-49da-87be-42ed308f010a','bf8b314b-c9bf-495a-a5d4-e261174c043d',70,55,89,0,NULL,NULL,'531481098-3-3'),
('b43ecd52-a5c5-40a4-9e11-c073316a06a9','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-18'),
('b43ff074-7b7a-4262-8536-bdcaf9afd822','d42ff6bb-7a1f-4711-9eb9-3593301b840b',90,15,13,0,'2024-03-30 10:54:56.698','2024-04-04 12:48:41.646','982592763-1-3'),
('b442e72e-6283-4b80-8da5-f375cf816944','7c09f776-ffb6-47c8-8828-61389547804e',208,97,30,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-3'),
('b4431e36-1b47-4f3b-81b2-b639cfc47183','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-8'),
('b446d404-b524-4cff-9976-6c4c8950e1fa','510115d1-e038-41e5-900d-014ceefd89e8',94,162,6,0,'2025-05-24 17:55:24.778','2025-06-04 19:39:30.245','268418662-1-3'),
('b44a6e57-0e10-4063-b8ac-32e456b18b2d','c98f6188-56c5-4870-be97-be71cf95f62e',72,16,130,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-19'),
('b44bf217-abfb-4c7c-a973-2e9700340ac4','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-7'),
('b44dcc6f-fde6-4645-bdaa-5c4f82896d81','0ca7b5c8-7608-49bc-9057-d56d835fbea5',45,10,66,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.459','91062607-1-5'),
('b44dfd37-b30a-43c9-86b6-f935f4ae4cf1','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-77'),
('b4517d60-1ab0-45d6-8dec-5e95e9090310','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-5'),
('b451cb3f-0818-4ae2-8d98-b8daffb80a1a','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-29'),
('b45297e9-3949-48b5-8dce-ff12ceacca2b','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.229','478361652-1-6'),
('b452cbee-bbb5-448f-b394-62d4a9ecb5fa','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',83,70,110,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-4'),
('b4536892-f0ca-4c32-acd0-2c9ab8c8fa2a','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-5'),
('b456195b-bf9f-4e7b-bade-acf2aefebf46','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-2'),
('b457abbf-03b9-4e5a-8030-a8f7af8349b9','35f2a33e-b201-4279-b8cb-8deee264e5ac',82,109,55,0,'2025-10-14 09:22:22.488','2025-10-25 09:00:18.615','011804405-1-1'),
('b45a7b0d-89c2-4471-929b-7a4225d44bd7','5e6bc612-6c7a-4f9c-8252-00151bafb04f',29,95,202,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-2-6'),
('b45d4688-5b4e-4046-ad9a-d82a1d90b0d3','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-19'),
('b4606bb0-e8df-40d0-9c1f-f6956dad4c4b','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',132,50,65,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.753','976521198-1-7'),
('b46273bd-3f90-4549-8a71-45fa65d61546','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-7'),
('b462969e-2ded-4992-8fd8-4184ea981911','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-20'),
('b46738e9-a092-494e-8f25-6c7c84766811','55f6b49c-3b1c-4cdc-83c8-9d8baff8ce03',0,0,0,0,'2024-09-28 16:27:29.260','2024-10-08 07:57:43.399','745656343-1-3'),
('b46e1bb8-28a2-4f58-a3e6-d385e00cdb6f','fe542976-fc97-4189-a192-853285ba7bc6',56,105,82,0,NULL,NULL,'478892203-5-2'),
('b46e8f10-92d0-4d29-bddb-23f71307c567','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-49'),
('b4734a27-18b3-4f14-9933-18a024719742','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-98'),
('b4745502-db2c-4b37-8994-fac42c7c58df','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-9'),
('b47f7f57-3301-4e65-afb7-983752d7c3f0','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-30'),
('b483c82b-9962-4b46-a3e2-acf2c4d08c6e','6ec87888-8b87-4bf1-adae-d5b6742225d9',53,27,74,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-18'),
('b485b4cb-86f2-46ca-87ca-7cdd0c24e3f7','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-6'),
('b488a52f-1d33-4371-8e82-3e869be11289','7f24de6c-6cf3-451a-af7e-90bc8c30aebe',51,51,77,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-2-3'),
('b4890874-97dd-40e8-8ee5-7fdb3cbb03c2','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-27'),
('b48a0882-b044-4087-9a63-a741179258be','6f44b113-5917-40cb-9c98-9456f8c03518',44,13,204,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-8'),
('b48cc6e7-ddbf-4265-a520-394e3e16a422','b7f8578a-5d13-4fa2-9e0d-d1cb8e9d7c01',78,85,75,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-6-3'),
('b498b42f-5d6f-4866-a10d-a736a57f6531','5cc511ac-d64a-4fef-86ed-1703c5e7eb90',0,0,0,0,'2025-03-08 13:46:06.876','2025-03-19 12:35:53.698','655583517-1-4'),
('b4a08e2b-4d87-42b8-a3aa-28778fe2489e','ed1855d3-2d98-4083-a304-8244bd80e6a8',100,100,71,0,'2025-04-28 07:40:47.424','2025-05-05 09:10:30.650','8176511-1-2'),
('b4a194e0-f8b2-415a-902a-b948549dfc5f','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',63,44,35,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-5'),
('b4a1e1cb-6b5b-4d02-9568-4fd793b1abfe','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',49,63,15,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-129'),
('b4a37d9a-dd65-424d-ba77-b6e11b640925','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-73'),
('b4a3d14f-6a93-4502-aa27-495b2f8b7ddd','00c1fd23-178e-4add-8ff7-f9f4e9131927',53,100,74,0,'2025-06-11 13:14:48.239','2025-06-17 16:02:01.069','91074356-1-3'),
('b4a4f6b2-e830-48cc-aa84-f8de0fe8fc2c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-32'),
('b4a663db-30c9-48f5-aeba-dfa54f10c811','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-23'),
('b4a68cf2-00e5-41ba-b291-a795671a6796','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-166'),
('b4a74c08-018e-424e-919a-9bdf446fec7c','7d4c646b-2f7c-4c82-80d6-942de18c5cc2',0,0,0,0,NULL,NULL,'598697614-3-1'),
('b4a983a0-7093-44dc-a734-2bffb854cf04','2652ccec-4069-4b11-b5b6-cbdf95122b6d',40,40,45,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-2-3'),
('b4ad4499-2b75-4ba9-8573-48380bf2abc2','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-27'),
('b4afbc66-c1d5-4277-8c1b-0e944c185ce5','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',20,184,6,0,NULL,NULL,'531240111-1-9'),
('b4b0855c-e1e5-4479-94b9-082bd81518fd','b33c0371-be03-4af2-8c49-7adc620602f6',56,76,102,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-2-1'),
('b4b1b5f6-5c45-4d44-bd29-dee5f34516c5','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-5'),
('b4b58b20-f9d7-4d5f-8262-6705c6010e5f','2e2e32d1-cc1c-4c29-8671-60555cb57d3a',51,51,77,0,'2025-05-24 17:55:36.535','2025-06-03 09:41:12.981','437869312-1-3'),
('b4bbcf18-fbf4-4d19-855c-1d8a1196c10a','9064014f-b213-4017-8a26-f5ee2179876f',0,0,0,0,'2024-12-07 09:32:37.434','2024-12-17 19:51:15.615','735637082-1-3'),
('b4c331a3-fbe2-4d44-a6e8-214133dbfc93','dbc7afbd-247d-4124-8935-6a9a1df416de',93,96,70,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-3-3'),
('b4c3852f-ceb0-4af6-a252-2eb0e14fae9a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.821','2025-07-03 11:20:12.750','223422825-1-153'),
('b4c38ae3-b202-4f57-b44d-a32154a0b63d','21b92c18-fe01-4738-a64f-22357aa1711b',55,30,73,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.272','01914447-1-1'),
('b4c3c307-301d-4cc5-9d17-71001ebe2723','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.990','478644410-1-8'),
('b4c8bfe4-6063-4443-84f2-bc3c4dfe3805','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-162'),
('b4c90ffa-39c2-477a-a847-212834cecc6f','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',75,25,202,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-14'),
('b4d0d5b5-5d9b-4a4d-b681-9a25a8ef240b','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-7'),
('b4d40b68-8436-4a0f-8e4f-8baed50c5d77','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-3'),
('b4d4c1cc-de58-4c1a-8516-aa122b71c755','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-8'),
('b4d5b4b5-fefb-454f-a6bc-58d306b109de','c1a31a07-5113-4703-99ff-14d4a90ef1ba',230,40,50,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-19'),
('b4daf8e7-8460-4fe2-a0f5-7db2a293065c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-94'),
('b4dc9ed7-43b4-4ca4-a834-58f92b1b8ae2','b397ad04-cf36-49de-98e6-e6b8a1432616',0,0,0,0,'2024-04-27 08:45:31.204','2024-05-08 21:07:30.507','478572714-1-4'),
('b4e0d091-6191-4126-8fdd-185c67384630','6ec87888-8b87-4bf1-adae-d5b6742225d9',163,32,2,0,'2025-10-14 09:22:15.246','2025-10-23 06:19:40.265','478164511-2-4'),
('b4e18970-001d-4a7c-b820-71eb9d0a5b43','4f1322e1-f99f-471c-a1ad-eacb9b1a766c',50,240,4,0,NULL,NULL,'011548428-4-13'),
('b4e19560-f89c-4abd-8175-8bd2f7013534','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-36'),
('b4e1f21b-c070-4e2c-9860-b2fbf9376377','08af242e-dc62-496d-980d-0f589dcdea60',57,93,170,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-3'),
('b4e39ac3-f05e-4caf-8349-246cee4a01a0','c900d790-eeff-48b9-9f2b-48972c98ac32',110,9,207,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-5-13'),
('b4e451b8-f98f-4c75-889f-996f8cba4a7b','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-78'),
('b4e93071-dc76-4439-919b-dd0dd1d12060','9edacfd6-2410-4f77-8d5a-c2a9ad0ae4af',83,185,8,0,'2024-12-28 21:42:21.102','2025-01-07 10:35:46.500','248209461-1-2'),
('b4eb98f2-e361-4a60-8add-aafa57a16da8','ba21f0ec-8f24-4b9e-9a8e-22b2194606be',51,51,45,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.231','644547865-3-3'),
('b4f177d1-e88f-4e40-a2ab-635efd7b12fb','53924259-8949-4b83-8f78-011a92bfc95a',80,90,38,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-1-3'),
('b4f250fe-8844-4b50-a41e-91009f7ecd55','b78519ec-4b79-400f-a709-a1f09256d30d',44,9,128,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-14'),
('b4f40003-55ff-4697-a024-677e6d1c4ce9','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-88'),
('b4f65fab-5c2e-4516-b040-dd2b76976009','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-51'),
('b4f923b9-73ca-4f69-a047-938ef87317c2','03ad506f-f86b-4dbc-952f-52b01e2467fa',86,66,66,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-48'),
('b4fafb9c-c120-4cb9-9e4e-bb82cdb4ff43','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-90'),
('b4fd8c8b-433d-4e83-9228-85c5a587d7e8','31a46914-f0d0-42bc-9a57-838b3227c099',91,240,60,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-2-2'),
('b502a6a2-e58e-4e85-94cc-9672dd43efb5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-70'),
('b503114a-89ba-40fe-a19c-b9bf74971e57','a769cd75-8095-4eeb-999c-d1a749589a77',205,42,95,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-24'),
('b506635f-536c-4389-9c04-c118ae4b3578','597a9de3-517b-438b-bc68-5db3df76109b',65,66,86,0,'2025-01-26 10:54:39.096','2025-02-07 11:19:27.865','127927013-2-1'),
('b5081afb-c0b7-4df4-9b3d-8f4fb515a855','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-12'),
('b50a140b-5f4d-4b6c-8e11-8403677c554e','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-24'),
('b50ef7ee-97aa-4ff2-b6bc-4ac65afffc4f','a5626ae2-9a5a-4401-9095-a368c22814f1',210,52,8,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.584','42845475-1-24'),
('b50f184a-4919-445b-94b0-337007f116ea','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-30'),
('b510931e-dc7e-4b19-98c7-1d7614e30100','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-2'),
('b511d6a2-78c3-42a8-aac2-d8c3fe1e1007','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-66'),
('b513efc6-d36d-4a29-93dc-7d18bd386645','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-2'),
('b51848aa-2c55-41e8-adff-438a0f3bca70','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.746','735553146-2-1'),
('b51877eb-5e00-4b88-b04f-78b6b25f7c8d','d249af0f-08a7-4145-9b4b-f81577563c6c',57,62,83,0,'2025-09-01 11:06:17.057','2025-09-10 05:45:14.565','221345365-3-2'),
('b519b86e-3374-43d0-b229-785a5ddb91f3','5e372d49-2995-43b9-8175-cfd3bd1f09b8',85,75,70,0,NULL,NULL,'37198203-1-6'),
('b51b4517-d80f-4a83-82b3-73a60e9cfff2','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-6'),
('b51b7aa0-7d7c-45dc-912e-708d4978a906','bd19b448-d5df-4f2c-bacb-4f45d6ea0ce9',47,47,75,0,'2025-10-06 07:10:20.821','2025-10-17 06:12:44.721','598131456-1-2'),
('b51bf9d4-d77c-45ea-a5bc-fd2dd78a1c71','50748e2f-3de5-4f3f-88ae-d8093198e2a8',225,80,100,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-4-3'),
('b51f79ff-f1bf-481c-9193-d3848e25da9b','50577563-264a-47c3-ad7f-93a3a9e59474',0,0,0,0,'2024-09-27 14:05:56.660','2024-10-07 14:03:13.193','614460765-1-2'),
('b5219366-cf60-4ca9-933d-7aad0636ca70','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-91'),
('b522ac89-bcb7-4d0d-902f-51e25d76bd41','d9a1e971-aa20-40ed-a8c1-d1b718ae07dc',65,63,87,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.036','505850944-2-3'),
('b524196c-755e-4ca2-8888-a618d2009d10','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-5'),
('b52a0fa0-5b8c-4af8-ae8a-072e7aac7ab4','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-52'),
('b52d083d-18df-485c-b468-d5f587183288','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-129'),
('b52d5fc5-3aba-44a2-9263-6e416056e0f4','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-152'),
('b52ed1e3-3cd9-4fa6-8469-61b7db8394e0','fb9b5fa4-a2fc-4d6a-96d9-e247c36e725c',97,73,117,0,'2025-09-18 15:48:57.470','2025-09-30 06:45:08.498','598493196-1-4'),
('b52fde9f-2a4e-42f1-964b-df0f60c6dc1d','5b4bf6ef-1cff-47f3-b8b9-c0a4af9ad9c1',96,14,157,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-3-1'),
('b53001ca-b760-46cb-855e-19eceb5675ef','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-41'),
('b53138ba-739d-453f-8a16-3f83468a0d8e','642202df-ca75-465e-8036-f34da2dad54d',68,98,66,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-11'),
('b539162d-780d-49a1-8a22-6bba5aff1501','41a755a7-afba-440a-a117-478fbfdbfd19',32,93,272,0,NULL,NULL,'478545195-1-3'),
('b53e56df-d2d1-4e5a-85aa-37b379cdbb74','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-42'),
('b53e5746-0587-4cae-9360-fb077d2b80d7','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-63'),
('b5404c36-fb4c-4262-a4a8-fc15036b82eb','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-8'),
('b5422b8f-e684-4a6e-b3a8-d1e7674d9757','a6b7e463-b550-4e80-81cf-84b6fe9fd920',206,97,70,0,NULL,NULL,'371118280-1-3'),
('b54630d6-d72c-486a-986c-ae46ebf89f28','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-10'),
('b547b204-181f-45da-ae3b-fdaef9262305','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-13'),
('b54a0882-cad6-4dfa-a9f9-246900d21199','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-12'),
('b54acb8e-db8e-4373-9b38-048db590f1a5','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-2'),
('b5564c8b-fef0-43a0-9002-32360eabae11','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-94'),
('b5574053-a089-4854-b1e4-33696b42115e','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-11'),
('b5595903-42fd-4ea4-81d6-1b021a4ab23b','7f4b7a21-dc50-4266-900e-ea705e2d3a34',80,200,27,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-2-2'),
('b55ea26c-ae86-4880-a0e0-91d2002cdaeb','702c1aff-1a98-44f0-9dce-efad71572432',54,140,8,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-2-15'),
('b55f762a-9958-4df3-83a7-cb7d4e0300ef','7b5051e7-035b-47a2-8be8-18b0ed228a6b',43,43,76,0,'2025-10-08 17:43:40.882','2025-10-17 06:14:39.891','598492066-1-1'),
('b55fa39b-8933-472a-bca0-74d2e157dace','346c41d0-7f77-45cf-8572-ddf0fc62cce2',99,148,60,0,'2025-10-08 17:44:04.955','2025-10-20 06:32:03.725','644301613-1-4'),
('b560d395-d85c-40fb-b290-38d260c43a2f','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',210,80,9,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-29'),
('b561764d-95f5-4430-b9b4-a78b95741fd3','ae48a731-1e1e-4791-81d2-4d8761a3651e',106,58,80,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.758','644968450-3-2'),
('b5652a9d-58fb-4bff-b491-159c00af77f7','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',158,198,3,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-30'),
('b5664fec-fb5e-4e8a-a198-67865fcebb28','39e3c574-5864-47ea-a675-a89e703a9be1',78,200,29,0,'2024-11-08 17:37:39.631','2024-11-23 08:31:57.523','982292057-1-2'),
('b5677f4e-3e53-49a2-bd2a-087abee6085a','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',168,36,28,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-14'),
('b56876a5-3771-4e70-829c-e45f76af45e1','6d0390ef-65ce-4154-a607-d67e51938ed2',12,203,12,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-14'),
('b568c263-fa4a-4462-9640-89834ac50723','f88c3e53-b711-4bcb-aa3d-9543580054cd',56,82,100,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-7'),
('b569b67b-2e5c-4779-9eba-728979a09c56','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-24'),
('b56acfc0-43b2-418a-b189-64f6b2a35c0a','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-48'),
('b56df401-ea97-4d3d-b2ef-afc11585d068','b1b4317e-ddca-49f3-b171-24c1b0186c6b',93,15,181,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-2-3'),
('b570d8ae-8b94-45f4-afd1-667e51af93a6','5c990e83-628f-443e-afbe-ea1650122f59',70,40,43,0,'2024-05-17 09:42:07.068','2024-05-29 11:18:15.876','126649227-1-6'),
('b57157eb-4f73-4f6b-bbff-2a1c49806484','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.499','2024-05-23 11:42:38.764','223631242-1-11'),
('b5724f09-c564-4806-a550-2c81ec389d9e','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',244,54,17,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-19'),
('b57273fb-63b7-4d0a-8390-4c7d1e4c662c','7dbfac68-a166-481d-9984-d7ec9291dc46',85,57,101,0,NULL,NULL,'808690841-2-9'),
('b57440c3-ccd6-4768-ab64-4ed784e08394','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-2'),
('b576c958-289a-4342-9a86-6ea4871434d0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-33'),
('b576ec1a-69ae-44d1-bb6f-94ce845cce02','4cb853fb-ed75-4081-be82-d68d6aa556bb',93,66,70,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-1-4'),
('b577e011-dcae-4906-8830-7e50993130a9','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-54'),
('b580ebee-f1a0-45e8-84f9-a75947b4d2b1','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',105,70,55,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-20'),
('b5894fa2-da18-498d-ae74-94356682f19c','66f8d34c-0c41-46f5-98bb-500adbb6f636',79,23,105,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-19'),
('b58d2793-43d2-4832-9b7a-9c4507c5219a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-17'),
('b58d992f-b3e6-4e13-afc7-7b8f6345b03f','e89e7d75-4967-4c63-9f73-981469e531af',90,55,11,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-34'),
('b58ddccb-d9ac-4953-be1c-860e8b6fdf83','47f3a1d5-0b4f-435a-b749-ec541d7ea229',0,0,0,0,'2025-06-11 13:14:41.931','2025-06-17 16:02:39.682','412217714-1-1'),
('b590891d-b5b7-4639-b430-21778484ea92','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.324','2025-01-12 11:17:43.261','735293129-1-12'),
('b5914436-9bf7-473e-a36e-d53fdaa625a8','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',60,61,230,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.402','478906000-1-7'),
('b595eb08-084b-4c8b-8331-9aa4b3e0bc6a','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-9'),
('b598ad2d-1feb-4a6f-b6ea-eaa6df0a5ad9','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-91'),
('b59cf889-9f14-4def-8610-4d0a14d8b2e0','8e61c899-09db-407c-9715-f3b856731f08',51,51,77,0,'2025-10-25 08:58:56.097',NULL,'486741087-2-3'),
('b5a27a4e-c6cb-43e3-bd52-446e04265386','7abac5ea-430a-4a29-8caf-3523ed6ac8af',61,65,87,0,'2025-03-24 16:01:56.075','2025-04-02 18:56:28.188','380497843-1-2'),
('b5a59c98-8ab8-4bc3-be2a-abe124f0dc35','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-17'),
('b5a70836-d076-48f0-bc81-9eb9f9e6ce00','03ad506f-f86b-4dbc-952f-52b01e2467fa',104,32,9,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-49'),
('b5afe70a-2b37-4b98-8789-e1b1196447cf','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-164'),
('b5b1444d-ccec-47be-8b57-8a50be61ae1d','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-20'),
('b5b1da20-59d6-484d-906e-aad48aae5f89','20f24d72-3cfb-43b0-9073-f7bf755859fd',51,51,77,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-2-1'),
('b5b29e9c-b83d-4eed-bb1b-622f7a7c373f','ac73d19b-52b7-42a0-83e3-a4d8491f56b1',35,25,20,0,'2025-10-08 17:44:13.128','2025-10-20 06:32:30.114','644717952-1-5'),
('b5b3e14e-ac09-450d-bfcf-aac1bb4950f4','e7f31a78-648d-4a5e-9111-1bf7db38dd79',75,44,13,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-25'),
('b5b7ae45-012a-431b-aeb8-6e6a4bacf5ff','5b2204f6-3f44-4f80-b0ad-ab8671541c1f',53,65,81,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-3-6'),
('b5c1a4bc-d241-43b3-bd38-7e629d1fa341','57d135c5-d90d-4ca0-8fcf-df33df4d6be0',0,0,0,0,'2024-12-07 09:32:14.925','2024-12-19 14:53:56.125','735977134-1-5'),
('b5c87f58-6ffc-40ee-a920-98ae943c1bb2','9a19deea-8c60-4c1c-923e-00c7ad1fc71c',0,0,0,0,'2025-09-01 11:05:42.853','2025-09-05 12:00:02.684','412968518-1-4'),
('b5c89f0c-2188-4ec9-b20c-de5f4c784b47','69acd97e-52c0-45ae-adf5-ee013e52776f',102,55,85,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-30'),
('b5c933e7-fb7a-42d7-872d-494d0c5b7b8d','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-64'),
('b5cc754c-d5a5-41ec-b774-91adf70bff6f','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.632','478784133-2-17'),
('b5cc7787-4c3e-47a5-9771-26cb32f5181b','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-7'),
('b5d02846-c76b-4cbe-9627-78827144dd15','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-23'),
('b5d07cdc-3e0c-4639-8b88-e3799e762753','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.236','2024-08-31 18:14:18.175','478693155-1-2'),
('b5d2710f-2014-46e2-ae7b-6d615c93fdfc','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-12'),
('b5d646ca-0e72-4965-911d-f2b4f25eecd0','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-49'),
('b5d73762-a751-4e73-9b1b-9989133e6b34','49c326ab-5b3b-49e7-a781-28760709b5be',44,23,141,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-19'),
('b5d89865-ded5-46e1-9ddc-836d17780703','e54055a2-3c9c-4738-a808-7a4a31877ef1',72,48,13,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-26'),
('b5db6be9-522d-48b3-b0db-f3839ae28c42','55155cc4-3303-4c8d-8138-cd049d9c0cad',128,12,123,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-11'),
('b5dd786d-139b-4a7e-aa0e-0b67a27986ac','77ef7941-3e4d-45e3-af8a-a47e8d0ff2bb',0,0,0,0,'2025-10-22 13:06:57.242',NULL,'745942521-1-2'),
('b5e0ab70-8cef-47ec-9d2b-bc4832ffaaef','ade60a0a-c34f-4d91-ab5d-457a76ceaa2f',31,31,31,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-3-1'),
('b5e3e74f-5650-49ed-b031-7b055303fa77','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-13'),
('b5e3fb7e-d88b-4a54-8b2f-6383292767a2','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-52'),
('b5e4334c-2866-42b6-902e-3b3f391c63b1','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:44.588','248135683-2-2'),
('b5e90a05-c833-4a29-a487-437eeebbb667','f0485a78-951c-4f89-bddf-b2003f0bf783',40,40,75,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-49'),
('b5e9c412-eb6c-4e01-a9ac-4f8f26ca338e','772f9214-dac7-4754-9d2f-2d3b2818852f',61,64,85,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-5-5'),
('b5e9eaac-6ee1-4c02-a743-40a56a1a6508','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-6'),
('b5edc826-687a-4d4b-a4c4-4ac2394fc6c0','5ea4b207-b05c-4931-bbd1-648b6933aae5',21,13,39,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-13'),
('b5eed08e-a4f8-4dbe-8eb9-51b5536a578e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-37'),
('b5efd09b-e68e-43d8-a076-586c45f01b59','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-6'),
('b5f4c638-4e0d-4e11-a66b-8a3111d7d030','6250b44c-f7fa-458b-9059-f4fe88176786',51,51,77,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.758','644968450-2-4'),
('b600a073-6c01-489c-8324-527c29f999de','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-44'),
('b604de2a-26f3-43f7-b1c4-48beb8931b6b','779a6028-a955-4e90-ac62-796d1a85282a',81,57,109,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-2-2'),
('b609e075-ea03-47e2-af6a-87738157183f','53a40750-ae01-4461-a12d-633dc7c9cfea',105,122,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-2-3'),
('b60b2814-4fd2-4aa6-bafe-d18c7b2c4dfa','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:22.246','248284003-1-151'),
('b60b5aa6-3b2d-4f46-8ab3-3faa776f3276','fea9db7a-edb9-4a21-8dcd-5d30d009e820',90,200,30,0,NULL,NULL,'140284101-2-2'),
('b60bf12a-d73f-4389-8a94-f8d90e4f6b88','8809d2f7-18c1-42c1-aed8-715d42bf5e65',20,92,155,0,NULL,NULL,'976462703-2-3'),
('b60c5eca-7a21-44b9-8591-d97c6909cc25','38d02296-46cb-405f-9d09-5974d7326df2',0,0,0,0,NULL,NULL,'371258376-3-2'),
('b60ce40d-5bb2-4042-b2bc-71a990de8e47','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-71'),
('b60d153f-ad75-494b-80bb-00a11c3e0015','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:44.911','248135683-1-241'),
('b60d4ba2-8d69-4777-ac19-8d50e47fc0b8','fb2833ed-b33f-4336-b2e5-bb576edd765a',0,0,0,0,'2025-02-20 12:15:00.168','2025-03-04 15:38:06.964','982342488-1-2'),
('b6101d3b-d99b-4185-a795-47b84cfb1594','8626895a-fadc-48b2-8114-1f4670cf1280',0,0,0,0,'2024-03-23 08:48:19.964','2024-04-03 18:54:35.867','478227571-1-3'),
('b610ac92-0e8c-405f-aa90-b4375f86c2b6','803574ae-1ef3-4704-8432-986beb633506',122,187,16,0,NULL,NULL,'614364554-4-6'),
('b611c5c2-2c9f-4c3e-8389-f7d1c615083c','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-3'),
('b616ef00-ef18-4e3b-94e0-72166926e3fb','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-17'),
('b6174b8e-3cb4-4b33-b5c2-694879912ec4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-27'),
('b61a00cf-8385-43eb-a5c9-ce92848ef1a0','13df3a21-76d6-4b0c-a169-76303e61ea4a',55,84,103,0,'2025-10-20 07:18:00.494',NULL,'765472156-1-1'),
('b61fc104-b950-4dfe-affb-e730a533eb79','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-25'),
('b61ff0e9-5030-49af-9c7a-64761063c94c','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-20'),
('b6202810-dc8b-4afb-9d57-b8fad2658adc','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-29'),
('b6212389-ed3d-40b6-a2ed-29590983d602','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',47,9,160,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-11'),
('b6216cf2-f88f-478e-992c-525fcc2fd924','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-25'),
('b6258da0-5e6e-40ae-8582-c81b21b23126','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-10'),
('b62a8032-695c-4a57-88c1-e63e943d6be4','984f1373-fcdf-438b-b771-54cf2b74c91b',46,46,76,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-1-4'),
('b62cbbe4-eb47-474a-a1b7-18b021546e80','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-33'),
('b62f1f37-1072-48fe-aa23-58e0246a1f42','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-5'),
('b6320e6e-c569-4bc6-8ad9-021b68739b35','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-123'),
('b6322148-50af-43f0-b803-d0fe943da5f1','79959af5-d58d-46f0-8817-b67d0c98e5f7',82,56,101,0,'2025-05-16 16:33:17.437','2025-05-25 19:11:27.053','613168811-1-2'),
('b6366569-867a-4d8c-947a-12e8025485e1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-243'),
('b63ac95f-5a04-44b4-b631-f932d1f2e1ef','1bb5f42b-00cd-4103-97bd-b2cd24afaea0',41,43,75,0,'2025-07-19 07:51:58.812','2025-07-30 08:02:01.464','371408514-2-4'),
('b63b6e34-2fa3-430d-8de7-48aa5f106458','afd23420-c1c3-4468-a9b1-5a8f4274d064',81,5,90,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-4-3'),
('b63e1081-2197-44e9-9403-fae0cb9f9725','05af1df3-9a36-4be2-8bd1-773d59e1605a',240,51,9,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-17'),
('b63e5a20-23c8-493a-96f6-bcfac1fd85b0','d1606eb5-933c-4e61-b7ea-5f79b332691c',40,26,200,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-5-7'),
('b63f9b6b-6247-4795-b766-e9a48cfaa797','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-144'),
('b64445a6-690e-4e4a-93cc-a3b5cf83bd87','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-27'),
('b649d2b2-31a6-4c24-9416-6d85170c98a1','9a74cdae-acbf-459b-836a-29ba929835b2',56,48,58,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-11'),
('b64a7f23-e847-44d4-a255-d5621be4cf2e','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-69'),
('b64bd589-9968-4dd0-8778-e7e805afce57','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-7'),
('b64c019e-d8a2-47b2-ab2f-8b729046da7e','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-15'),
('b64da388-0201-4f2e-8127-d4c8ae3e16b5','546ad3d0-25c2-43dd-9443-e48b8e5b6530',110,65,100,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-53'),
('b6530f04-bcfb-4e9f-8fd1-56a5b8016755','c5bf586e-b048-4ee7-b750-d82fc394b66b',0,0,0,0,'2024-05-08 18:43:39.740','2024-05-17 09:44:40.129','449354047-1-3'),
('b6536f92-e48d-4c1c-a346-4dfe37d8d9b3','bd7ba9b5-8269-4522-b579-d69c949c4a64',102,112,10,0,'2025-04-25 16:57:07.814','2025-05-02 06:58:52.817','478800752-1-2'),
('b6541326-7b5f-4b4a-87b7-7874db1e4df8','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-7'),
('b65939b4-3e1f-4059-9c49-8fad04bbaedd','943d063f-08bd-4675-85e3-b9d53ebf2480',106,72,55,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-1'),
('b65aebd4-15c4-4115-95b7-e74dba74dd31','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-112'),
('b65affbf-31e0-40bb-aa9f-c10b655aaaa2','de1f00a6-1eab-4c60-8290-f52139448250',86,61,65,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.159','644653229-5-6'),
('b65e17fe-df45-400c-a254-00fa087c9533','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-5'),
('b65fc991-443b-4faf-9aed-a51e01bf41e9','a3bbc87a-f769-48ca-8f56-60b6a63ae632',74,53,100,0,'2025-09-24 11:01:21.468','2025-10-02 11:12:24.133','644590959-2-2'),
('b6604239-058e-464d-9b3e-d264f38e8ea2','e89e7d75-4967-4c63-9f73-981469e531af',68,93,93,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-35'),
('b6611f7d-8248-402f-be54-a5a8efa3eb76','a4795240-7137-43ca-a2b8-d82742643bf6',64,6,95,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-4'),
('b663ec74-35bf-4cd4-9782-dae3970826de','83e81175-cef2-4f5e-adbe-8ca02a747efd',43,12,204,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.948','478687899-1-11'),
('b664f47b-0873-4832-8c79-ecee5e232037','9248be40-4180-48bc-9c4e-50a1e7dee4f1',206,28,34,0,'2025-08-07 16:52:32.057','2025-08-21 08:13:08.183','613373885-1-3'),
('b66c1698-2812-4949-ae94-38880d103529','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-128'),
('b66d86e0-4bb7-4d0f-81c9-9f66e3c649ba','c2a3eb30-4a97-42f8-8728-73449ef0f928',97,200,7,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-2-3'),
('b66e31e1-e908-4975-9211-21111a5ef24c','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-17'),
('b673fc08-1262-4f22-844f-d35a4c78ee08','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-54'),
('b6789ae2-4ceb-48d6-8fec-ad5573099764','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.637','248186638-1-2'),
('b678de3a-d4ae-47ef-a840-f4c3ac596c5f','869ce9df-955c-40b9-9988-140f26d3b591',52,53,77,0,'2025-05-09 18:44:03.273','2025-05-20 16:56:07.118','371394707-1-3'),
('b67d53a1-70d9-4d64-9a48-bf6a73622a93','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-38'),
('b67dba2d-19e8-43de-8865-f5c93fb9de6a','5c759086-0cd7-497c-a83e-a2162d4b099c',57,59,86,0,'2025-06-21 04:33:45.448','2025-07-01 09:00:53.543','248630618-1-3'),
('b67e8857-37a3-437a-864b-da0f7eac6650','2bd0a09e-a059-491a-8464-25f9d0457185',90,68,97,0,NULL,NULL,'127991361-1-6'),
('b681de29-b7df-4fa1-a880-33bccce24528','0bc24e77-b11a-40c8-a7ef-6a7f438e4054',95,165,80,0,'2025-09-06 07:20:21.563','2025-09-16 06:34:12.520','920821712-1-2'),
('b6829f3f-e4b0-4264-af1b-6ea2068a71e9','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-92'),
('b68306b2-6308-4847-b696-8ffab3b2f085','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-30'),
('b684e4c4-6398-4c3e-8a31-e812222dd168','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-5'),
('b686aa65-0ef5-468c-800b-28864da625be','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-24'),
('b68726bc-3f4e-4b89-96e8-0d634d231e49','e6bddda4-b1df-4be7-bbd5-63cc4b197736',70,46,15,0,NULL,NULL,'42857810-1-16'),
('b6890b8c-0542-40be-baf4-a0f2e3d791c9','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.478','412716766-1-66'),
('b6899b2a-20ad-455f-b328-be13e2aecda7','b63291e7-9a9c-4942-9e5c-792e1279180f',42,6,210,0,'2025-10-22 13:06:42.033',NULL,'776312220-4-4'),
('b68ed798-56c5-49a5-ab11-ceccd494edc6','69acd97e-52c0-45ae-adf5-ee013e52776f',48,11,77,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-3'),
('b692c05b-eefe-49c2-aa74-6a0e351a8c0e','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',51,51,77,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-10'),
('b698d51d-33e5-4aee-bd1a-5bdf72e7de25','324e00ef-45d5-469e-89bf-811dd1160a35',34,23,230,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-1-3'),
('b6991695-8701-42f3-a066-2880e4098d9d','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-6'),
('b69b27a5-5737-4100-a555-330af2fafe8a','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-18'),
('b69b32aa-c023-455f-9bb8-8ca93dbacfc4','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-50'),
('b6a17d1c-709c-4f32-b9fd-8d853abaf6c1','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-100'),
('b6a79670-307e-4281-90de-bfaba3b7f789','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-22'),
('b6a85e6c-f3d4-4513-a701-874cb237f688','ed097511-c426-4ff2-b940-1f98b2a1f4f6',45,16,8,0,'2025-10-22 13:06:56.700',NULL,'910152598-3-11'),
('b6a87dc8-1709-4820-bef0-f8522c58a209','fff846e6-362b-483f-ba3a-df216849c545',90,53,5,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-11'),
('b6ab6471-bfdd-4b96-8cf3-722f1f5c41a1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-105'),
('b6b0242d-655e-4a7a-a26e-b790986fbb33','0976117a-ad1d-4f63-9831-bac0228939d6',53,100,73,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-1-1'),
('b6b37c4f-a260-4bc9-9d3c-4971915c72ed','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-8-10'),
('b6b9ef40-2112-4b65-b63f-8b9f032efa88','10c74187-d842-43db-b580-a7937f5edf5d',42,75,121,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-1-1'),
('b6c15939-373c-40ce-8d73-2fef9b3ff6dc','af69c5a3-87d3-4548-a650-720b69a4fc69',207,31,9,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-26'),
('b6c24c6a-cb3f-49e2-8d22-9e1a36fbe1b5','c95052ea-b7b2-4b0e-a216-a7e7b2acd860',160,200,27,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-3-1'),
('b6cc4a70-78bc-439e-a779-455bae56299d','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',58,49,9,0,NULL,NULL,'428413605-1-14'),
('b6cd8345-cd71-4050-9b13-e1669f493861','5aac8c34-51ea-4438-b73e-7d54bf02d518',72,7,136,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-9'),
('b6d0d53f-f17a-46fb-a610-366cd7f00f6f','7cf524b9-0e83-4963-bfc3-863110305d5f',214,37,25,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-2-6'),
('b6d6bacb-ab54-46f6-9d83-d70d6b3ff8c6','6302f68c-26c4-4a31-853e-80b9d1ba59ee',40,35,20,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-29'),
('b6dcaf2d-6a7d-4476-b345-c8d3e4e08d72','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-39'),
('b6dd0b88-9cec-469d-943c-9d9cb0291681','2edecaba-33e1-4db0-93ac-b909e6bae465',130,206,15,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.024','613108463-1-2'),
('b6de47b2-eadf-4183-97f2-833ccd9decd3','4bd3461b-c38f-4c43-90a6-39aacd24cc83',52,45,45,0,NULL,NULL,'976462703-1-10'),
('b6e0e5a2-c950-4f2d-8573-b8a9c53f51ce','2694c763-03c7-478b-85c3-a639c728d0e7',95,117,65,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-1-3'),
('b6e3ef24-6221-4e45-b2ae-7795f8bcc56e','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-22'),
('b6e4d079-4c6a-431d-934f-078b0083bdc5','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.354','2025-01-08 20:29:02.152','735384295-1-1'),
('b6e68099-25fa-4418-bb1d-31b665161b1a','3ad5cc89-9af6-481f-a031-0d475e3ff3c6',51,51,76,0,'2025-02-20 12:14:57.922','2025-03-04 15:38:15.828','22186590-2-2'),
('b6e8811e-253f-45e1-b544-ee2db1f01c4b','642202df-ca75-465e-8036-f34da2dad54d',84,24,132,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-1'),
('b6e8e7a8-d9ae-4a3d-99d9-8c233f6fd35e','55155cc4-3303-4c8d-8138-cd049d9c0cad',51,60,245,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-12'),
('b6eae127-c4a5-4b47-9152-26f6f742d79d','1a0ccb48-0abc-46b0-b34e-fac7901a5459',0,0,0,0,'2024-05-29 10:12:14.769','2024-06-10 13:50:44.710','449557088-1-1'),
('b6eb7fb3-d33a-4ccd-afa7-dceaedd4d32e','c0b8ae62-d997-4cae-91fe-c5c498f7132e',240,91,60,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-7-4'),
('b6ebed56-7e43-49ed-b778-88502e564172','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-7'),
('b6ece828-c376-443e-896b-60728e1077f1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-36'),
('b6ee449d-4ad8-444e-8d05-1eb41d540a33','7cf524b9-0e83-4963-bfc3-863110305d5f',202,82,28,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-2-7'),
('b6f1fab3-4841-4a30-aca4-e831d88b11bc','daf32ec4-3098-4d67-9b7d-722264422db6',0,0,0,0,'2024-03-31 17:55:18.634','2024-04-17 10:15:44.136','614289770-1-1'),
('b6f2419b-47a6-470f-8ecf-bcc46e925c2e','a769cd75-8095-4eeb-999c-d1a749589a77',57,190,20,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-8'),
('b6f30bdb-6893-4655-9db2-7dbffe1feb09','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.515','412903480-1-5'),
('b6f4722b-1e93-4d75-8daf-26866c0aaebb','e86f2f3d-8f0b-4894-8c39-9063af830231',217,43,8,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-14'),
('b6f5115f-388e-4766-8263-4bb0b8daecb6','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-16'),
('b6f5a9e4-9cb0-4f7c-91f5-4f5dd8ec3120','3ffe199c-d990-49fa-8892-2e9910fe8713',100,70,100,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-6'),
('b6f8b3ac-954e-4404-94be-42926636e724','5c0848ce-c79c-43de-adfc-f4532526d6bb',91,201,28,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-2-5'),
('b6fb1438-ad23-4216-8d54-4e0d76b6b1ec','eaf79fa6-fb83-4bd2-8b30-12eb31ce55fe',200,43,47,0,'2025-01-20 11:21:27.444','2025-01-28 20:45:17.186','44932987-1-1'),
('b6fb6826-5772-47bc-8829-5df6506d0318','5089704a-e90b-41d3-a4fd-0f97ee26031a',65,63,86,0,'2025-09-11 06:34:33.878','2025-09-19 12:34:16.375','817915882-1-7'),
('b6fc62c0-b623-425b-85e8-e169f5198237','b2c78cf5-c58c-4553-bd14-49e83916894c',49,46,5,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-9'),
('b6fcb19b-2847-4ee7-8ae7-d8dae3bff80d','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-4'),
('b700b1dc-0221-456b-bf12-38f602aa1386','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-21'),
('b7063da3-254e-4461-a664-74bab4cd1e69','b2b08b3a-7fa8-4d9e-87fa-3d14d9e48b46',52,52,77,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-2-1'),
('b7076f81-52c9-4f61-8832-5f28b0fb9d9e','4c8d5858-b6e9-4d61-8150-28923e7ac277',70,107,98,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-1-4'),
('b7083f61-b44e-4fd5-ba0a-1e87d1d749b4','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-28'),
('b708a9dd-b00b-4aec-9b95-86490a3eff61','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-27'),
('b70c3a76-cb58-493e-ab1f-c3d33b6f8d28','0349c9da-6831-48b3-8a88-899c2d5fb3e6',205,13,50,0,'2025-09-16 16:29:16.090','2025-10-03 14:58:06.531','478603328-1-1'),
('b711bb40-c25f-4079-bbd8-5335dd7fa105','799bc5d0-1455-4c7a-861e-3a5784065f51',61,64,86,0,'2025-03-27 08:02:56.176','2025-04-07 17:30:11.059','64448364-2-7'),
('b7166a39-ab27-4faa-bf08-8e488b4daccc','6d0390ef-65ce-4154-a607-d67e51938ed2',71,31,190,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-15'),
('b7170950-78f7-484a-bc73-80c79ad50ba8','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-29'),
('b717d5b1-d1a8-4987-bd56-69b313f24b69','159c73ed-083b-4d67-98ca-6adcfc554962',30,30,103,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-16'),
('b71f7961-fe43-4bd1-a0fe-81a86013cbda','03f3236c-f2ae-4e6e-afe1-dbad801907b2',37,52,84,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.652','531250587-1-5'),
('b7225d42-d304-4d83-a482-ba8ac0383dcd','7dad2fb3-b825-4f27-a68d-4543cd478c32',86,16,163,0,'2025-07-19 07:52:13.331','2025-07-28 12:02:44.192','515103460-1-2'),
('b72a468b-97fb-4012-8c52-c9aa928aadd7','511dd59f-0532-4fbe-850c-9fb40dcb2a8c',240,93,63,0,'2024-09-19 18:27:21.673','2024-09-28 07:10:38.861','982118676-1-3'),
('b72cf000-983b-4ad8-a11e-8289b3152517','e8b1acb9-b5a9-427d-bfb7-a350a1724a71',230,69,95,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-5-5'),
('b72d47c3-41ba-4596-bcc2-0a7ddd99a5f3','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-2'),
('b72d8cc7-d348-447c-a703-a0f5bd79af31','8625abf2-719d-4d7f-b206-16948b318b8b',50,40,56,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-21'),
('b72db926-8fc8-4aec-afe8-7218e23485a5','e65249b7-09e7-4653-bd04-1233b551b8c8',95,100,65,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.175','319316615-1-5'),
('b72dc979-88ed-4a5e-a805-8b0ef01cd663','e6bddda4-b1df-4be7-bbd5-63cc4b197736',40,19,24,0,NULL,NULL,'42857810-1-17'),
('b72e8e9b-1682-4bf1-84e1-77a229cf9683','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-14'),
('b730f795-50ca-4abb-96dd-8127cd69edd3','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-9'),
('b73331e8-0611-41bd-aaeb-e3b2499d2b6d','6d6387c1-6c6d-4152-b1f6-64a868887602',80,34,70,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-5-4'),
('b7334781-eaef-433d-98da-ac1b87e7be2b','0bd42145-fdd8-4793-a5cd-a2e404d37142',60,42,17,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-27'),
('b7384b98-bea4-42e8-b2bb-a9a9694e94a3','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.397','745390643-1-2'),
('b738af85-043e-49c8-a4fb-64a1eaed4319','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-15'),
('b7399070-1211-4602-9804-aa924e1d4e08','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-88'),
('b73c7dc5-e02d-43d0-b6a8-9500b089ea9d','e6bddda4-b1df-4be7-bbd5-63cc4b197736',225,95,63,0,NULL,NULL,'42857810-1-18'),
('b73ed5bb-5cae-4848-865d-68bb78e5af6f','31a46914-f0d0-42bc-9a57-838b3227c099',80,70,85,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-2-3'),
('b7414765-91d7-4e16-bd10-a7e8ca7eeda9','d83c40d1-4df5-4c97-bc83-28837db95b2b',54,65,18,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-59'),
('b7480afb-ef9d-41f6-a6cf-47a3969b6eb5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-101'),
('b7507d85-9333-49e5-8280-d5181ab8af3f','811c4fc3-106d-4a51-b8c0-eaa09c5918da',51,51,76,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-1-3'),
('b751b901-ea9a-4813-9824-d1e110d31f0e','9d9df441-0469-46e7-baad-366a3096e9a0',85,95,95,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-2'),
('b752937c-a664-4dab-a0d7-3050c81c7276','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',0,0,0,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-20'),
('b7550186-689b-456d-886c-ead0ba8bab08','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-2'),
('b756dd40-a0cf-4a09-9da2-097956e31267','bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1',80,80,70,0,'2024-10-23 14:11:46.938','2024-10-31 12:05:38.042','501848451-1-3'),
('b7575345-2ef7-4bca-b4a3-a43ba6f0d13f','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-21'),
('b7584c7d-e89e-40f1-b224-b7241a75de52','ac2f272f-90f1-4d84-b5c2-1892af4e2892',68,98,100,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-2-3'),
('b75a23cb-50f4-4597-9d79-e3edee7bf9d3','31efbfbc-2eef-474b-8cd0-b552d5c60b72',41,25,198,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-2-7'),
('b75a3a34-aba7-4315-859e-e2c4d4f9ccc2','904ccae0-124e-44d4-aea2-8615bcf196d5',0,0,0,0,'2024-12-13 14:49:23.227','2024-12-21 10:34:20.584','735905073-1-1'),
('b75adea6-7dce-4d55-8f18-2e232e7c8641','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-18'),
('b75c6128-43e3-451f-82fb-b02e7dc7850f','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-10'),
('b7601b76-3fda-4a88-ac26-ec971ce93d96','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-3'),
('b763209b-c2c1-463a-bd97-6637912c019e','69acd97e-52c0-45ae-adf5-ee013e52776f',87,73,92,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-25'),
('b7647fc1-19a7-4b2f-8c76-6c42cb6749de','4e657178-c2e2-44b1-b8d2-8753d5a94776',0,0,0,0,'2025-02-27 16:45:26.582','2025-03-13 09:28:33.936','449704156-1-1'),
('b7661db7-4e63-4360-956c-e4a819c015ae','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',107,120,11,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-13'),
('b76834c9-bc33-4187-a491-5808d065ec6f','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-67'),
('b769eb57-59d2-48ba-855a-fc3c91d91a24','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-31'),
('b76daf73-6f9e-42e9-b7a3-3ca865b87dbb','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-13'),
('b7706494-a44e-4ed7-875f-9355be5bb71e','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-52'),
('b77228eb-13aa-4706-9dc6-2dfdc7abc42f','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-23'),
('b772545e-3531-48ed-ac4f-56a5e6e326ab','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-7'),
('b77405df-d055-4910-92a0-d085a7494dc2','00d33439-2cbf-47d7-9bad-43659e6a874b',243,95,70,0,'2024-10-23 14:11:48.201','2024-10-31 12:13:55.505','501256266-1-1'),
('b7748426-126f-4871-83a5-47685baa6b51','f7b7d96f-ed14-446a-9420-7f44bcbbed32',230,65,95,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-2-3'),
('b77b551a-024c-48b3-8f12-6d96e26a339f','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-24'),
('b77e320b-13d9-43ad-accd-d81d4d66cd8d','2cd4a34d-b6c6-4763-b5c3-e6e3a65bc819',127,30,240,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-1-10'),
('b780a3aa-dfd1-462f-80a9-d336dec84c45','126dd53d-77d9-4431-9b96-782895f21d66',70,96,93,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-2-4'),
('b7827fa5-76f3-4930-a7bc-6603797d38b0','20537384-b1b6-4420-8bec-9c3970109280',60,59,89,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-1-2'),
('b784dac9-63fb-404a-af65-dfcd95cc8c2b','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-44'),
('b7865523-a04e-4771-aff9-f587355c8ef8','f68f848d-9773-4521-8431-b7efe576a9ea',37,235,110,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-1'),
('b793059b-adab-4881-bcc3-b133beae1a48','5478abc5-9d64-4211-bae8-54bf5172ebc0',100,17,13,0,NULL,NULL,'982268643-1-4'),
('b793a338-a0c0-4883-9628-5f9aaa89eccd','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-53'),
('b7979f01-afb2-4d1d-813b-9186186e065b','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-65'),
('b797fb4f-e675-4578-93a4-83517c123985','c5bf586e-b048-4ee7-b750-d82fc394b66b',0,0,0,0,'2024-05-08 18:43:39.740','2024-05-17 09:44:40.129','449354047-1-4'),
('b79a2e6d-7f98-47f8-90d5-1f8e9ee219f7','899dcf64-71c3-423e-92a1-60d82839fc84',230,95,70,0,'2025-02-03 18:19:38.677','2025-02-11 17:09:24.437','501934466-1-1'),
('b7a19059-eacc-4c35-aa27-d16e1056b38d','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-15'),
('b7a208f2-783c-4257-bb0c-8992e2e24250','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-42'),
('b7a20ea2-21c0-49b8-b0dc-efbb62d25e01','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-6'),
('b7a68cb0-4f8b-4f97-a1e0-39a998d5a41e','26efefb1-0454-4e31-9029-81e2ef22d726',51,51,77,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.462','613191069-1-1'),
('b7aa579f-68de-4dd7-8eac-c43295777723','ecc8a619-473d-44b7-bc3f-58005b885517',98,94,65,0,'2025-09-30 07:39:35.702','2025-10-03 06:54:27.923','644783664-1-2'),
('b7ac3216-9557-49f3-8249-a0974c6c8032','a4f356be-d4f4-498c-9119-e35100832eb1',100,120,70,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.015','982314530-1-2'),
('b7aef3e8-16e2-427e-80b7-1da10bffad91','a4795240-7137-43ca-a2b8-d82742643bf6',50,45,10,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-3'),
('b7affead-3238-4817-b6ff-93478d88f6f2','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-7'),
('b7b000b1-068c-4a82-b036-0c73787e6896','4fbca2c8-eff9-4cd9-93ea-b4599cec2502',65,80,95,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-2-1'),
('b7b3618e-44f4-491a-9202-5116fdce98e6','141eb86b-6a27-4ef2-9554-ac0a117fe5e1',0,0,0,0,'2025-08-27 19:39:58.291','2025-09-06 07:19:22.991','371201111-1-1'),
('b7b658ad-5e0c-4cda-b1fd-c87a40467d2e','49c326ab-5b3b-49e7-a781-28760709b5be',230,70,95,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-3'),
('b7b70fb5-4ae3-4488-83ce-9b17c2dd6e4f','9d7979f3-a35a-4a64-97d1-4ba973786029',34,14,185,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-23'),
('b7b8b3e2-3a16-41c2-8999-a2b6a19a99fb','e7f31a78-648d-4a5e-9111-1bf7db38dd79',53,67,210,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-26'),
('b7b8c973-f1a1-46a5-a31c-ef2a60fdae20','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.990','478644410-1-5'),
('b7bdc484-4a9a-4657-b6d6-e0247bdf7160','75a1a1fd-c682-41a7-ae5e-306627043bc3',56,66,102,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.025','613108463-2-5'),
('b7bf53b5-ec25-4bcc-b322-763de345091b','3aca7d6d-09cb-4903-812e-7535a083b09c',215,30,22,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-6'),
('b7bff41b-fcc3-4037-9f48-27c69a483f3b','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-9'),
('b7c05f73-122a-4fce-b8ae-63e82ec4569d','7539ec51-cdb8-4879-b280-a64290bb512f',51,66,9,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-6'),
('b7c273dd-01c7-45e1-9724-54870e4d28ea','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',200,67,97,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.754','976521198-1-8'),
('b7c30aca-7144-495e-9717-87ee26aab049','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-14'),
('b7c58b6f-1c85-42f7-b46d-3507c48acd7f','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-7'),
('b7c66130-7be7-452c-9286-923d14e35f99','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-26'),
('b7c6f62b-533b-426f-9258-28d249a41e19','ca2466d1-9a83-4f57-8f76-f5ddce302e04',102,20,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-22'),
('b7c7edaf-1703-4a55-ae48-4cc4c315d084','3ec26908-d18e-42fc-bdca-909ed5ad501d',51,51,78,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-1-1'),
('b7c84c42-cd67-4916-ab74-35f25a5311d8','63147202-2ef0-4eee-b5d2-5c980e242412',45,45,77,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.036','531445058-3-3'),
('b7c891db-2b6b-4fac-a790-52dc09380c55','c512880f-476f-401f-801a-a1fa72ec0ad0',193,91,26,0,NULL,NULL,'478892203-4-3'),
('b7caa008-7a1f-4a3e-ae58-35176291fbdd','b3352d57-7c75-4049-975a-d578fdf73ca8',183,60,90,0,'2024-12-28 21:42:32.073','2025-01-06 20:09:19.066','478368190-1-3'),
('b7cc3bf9-73a8-44a0-9f7f-4a48be35d152','c67def51-fe24-4885-9519-ba2b028c3f47',53,19,150,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-3'),
('b7ccdc0a-b47d-4f5a-bd34-e12e8d9e4b81','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-6'),
('b7cf30d2-2d12-471e-8027-0b9f7a14bc1e','477f5d1d-406c-4147-a6bd-205816f5db0a',0,0,0,0,'2024-09-28 16:27:08.204','2024-10-10 11:34:51.670','982799609-1-4'),
('b7d0348e-2129-459a-b93f-bc935c8be4af','a6b43cce-9603-4922-8e0b-e00b9b4acc5c',38,38,38,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-2-2'),
('b7d20fe0-4ca8-41d8-978b-1a8ffb911407','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-16'),
('b7d23fcd-743d-41a9-954e-c85b1fab27fe','6facbe4f-6c71-450d-841e-ed1b4a628d10',0,0,0,0,'2025-03-24 16:02:08.954','2025-04-01 09:23:37.885','478168461-1-2'),
('b7d8c018-4009-43b0-80b0-8fda4db5e0ec','6302f68c-26c4-4a31-853e-80b9d1ba59ee',93,68,14,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-30'),
('b7dcf04d-05b3-4fea-bb56-f5ec60e905a7','6fcd8160-ca06-46ab-a691-51de5c394793',110,121,5,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-20'),
('b7dcf0d5-c13e-4c66-b14d-5aa40203e9ca','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-62'),
('b7df0564-9f94-456d-ac3a-3eaee5dbcbf9','3cd9c83f-509e-4b69-a8a0-bb45f200c3d4',56,102,77,0,'2025-08-22 20:28:52.769','2025-09-01 11:14:08.686','598427868-1-3'),
('b7df5fc7-2fde-45c8-a6f4-23320002c0e1','baf388d4-d2ac-46ba-bea3-c55d74a75aca',65,55,100,0,NULL,NULL,'613868869-5-2'),
('b7e429e1-187c-49e5-902c-6893eebdf877','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-2'),
('b7e573c1-db9c-4719-96f1-8470ca59e8a0','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-16'),
('b7e92b45-ad58-49dc-a4c6-2230d39ae63c','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-8'),
('b7ebd1c1-e970-4e37-99a7-ea36fca4d8fc','b6d84db2-2032-4e62-a65a-a88b6552bf46',0,0,0,0,'2025-04-30 14:29:05.619','2025-05-13 09:06:18.176','745639343-2-1'),
('b7eebab0-8622-4a29-bd3f-f3274a96b77c','a4795240-7137-43ca-a2b8-d82742643bf6',45,11,6,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-8'),
('b7eec452-93fb-40e7-8809-5d0529364b53','808a4f1b-793f-4a15-808d-00c26a26c166',38,72,50,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-1-20'),
('b7ef69fb-5dfd-4434-a1df-ca95b3a26d2b','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',153,15,6,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-27'),
('b7efa63c-38f8-451c-bee2-0a596a048244','71ba9c84-1ca2-4b89-9c5c-55fa5932cdde',0,0,0,0,'2025-09-12 17:16:57.327','2025-09-24 06:51:22.785','478774501-1-2'),
('b7f0798e-e68a-43b6-a047-2e4c94f6c717','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.467','412173308-1-60'),
('b7f0acb3-5361-446b-85b4-938ccc7cff6b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-228'),
('b7f59e43-8132-47d8-8d14-9a3690f82e56','08882e71-602e-4d88-8809-3db420ce48df',44,76,120,0,'2025-07-02 12:43:25.535','2025-07-23 06:18:04.215','644330933-1-1'),
('b7f6473c-cb89-4c9f-8b0a-7e80d79392b4','6d7b0b6c-ea00-4551-8f7d-3d248946ff1b',51,50,76,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-1-2'),
('b7f65c02-75d2-488e-bc34-f69a7b4a1dec','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-3'),
('b7f76d56-efc0-4845-bef5-710b363cb82f','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-34'),
('b7fa3042-ea2f-4cc9-afb8-d275e9e4cf92','1d2ec7e2-f735-46a1-96be-3994af90aaac',57,83,100,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-7'),
('b7fdb341-7d7f-4797-9414-f536f43c3220','4b51564c-325d-4963-87a2-4ba35ab8b434',130,173,15,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-2-4'),
('b7fe1e43-d67b-49f0-bde0-1bf1697a40ff','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,100,117,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-1'),
('b7ff4aaa-ff83-4d2f-8690-073fb8340eec','ef603b58-9644-4d43-9c77-58a606dadcf8',82,111,56,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-2'),
('b8000a9f-7bb4-4751-984a-0f4b3cfaa292','c51cf533-511d-4f61-a94c-3e48074db45d',69,81,127,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-4'),
('b8000e00-21ef-410e-9eba-94b052dc355e','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',190,142,8,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-21'),
('b8006fc7-20dd-42a8-8400-30aab44abd2b','76fc0420-d453-4e15-aaa0-2fc45178a4a7',70,82,94,0,'2025-04-21 06:13:38.053','2025-04-28 11:59:44.002','64451300-4-4'),
('b80111d3-1f08-428f-9d3b-eda3fdcb7b96','5cced97c-42f9-4f09-9ce2-eab123493da6',98,193,8,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-4'),
('b806691f-6ef0-41d4-9660-0143ada4b1d5','1f36ce1a-bab2-496c-b0c6-3376128b07f2',0,0,0,0,'2025-02-23 12:39:22.317','2025-03-05 14:40:13.059','127343940-2-1'),
('b8067e4e-faf3-4e72-96b7-fb99289b9b96','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-13'),
('b8077216-7dc0-4d17-8486-34b1ff201435','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-93'),
('b808f54b-fc5b-4b89-872d-1bdf2bf3b397','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',51,59,117,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-11'),
('b809243f-41b5-4148-830d-026560e260a1','e0543c7a-5972-4240-aa38-f23558126c19',0,0,0,0,'2025-09-11 06:34:34.943','2025-09-20 19:00:06.128','745545386-1-3'),
('b819433c-c060-4b14-98b5-bfd6a7878758','46d1512a-2bfb-476d-a224-9390f3e194f2',67,11,10,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-26'),
('b81a2a79-5011-42ff-a9e2-27ea534d05f4','04dff17a-2b9a-4f35-a082-5684dfe5706f',201,55,6,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-14'),
('b81b1a00-2e2d-4827-b217-1aa8a5d4bda1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-92'),
('b81b6f52-5998-4b04-a31f-c39de64eab0f','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-11'),
('b81e4b87-cede-48ee-bb91-e9ee45b25187','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-7'),
('b81fb965-1467-4302-8b3b-354fd7e8edca','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-78'),
('b8205aa0-4edd-46a6-a291-e91f0d444c9d','e89e7d75-4967-4c63-9f73-981469e531af',95,55,14,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-36'),
('b8261b49-d817-4337-a316-728529405052','cd8df407-b5df-41b3-9552-a349d4e71404',55,55,78,0,'2025-04-28 07:40:24.988','2025-05-10 20:12:30.472','613431273-2-3'),
('b82b056d-f959-4bd3-b3c4-ffaee702b1c5','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-8'),
('b82bc4e9-6c57-4868-8dc8-cd653ed1781d','5e418100-d855-48c0-ac4b-19a956b8ef44',70,55,15,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.502','583643470-1-9'),
('b82fa655-9c8a-497e-98b5-03b77cbbd89c','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-13'),
('b8309a43-ccac-4b03-80d4-f7fd34c419e6','6cef5b53-f812-4e21-87b8-9c3bfdc6543c',78,55,102,0,'2025-08-07 16:52:30.676','2025-08-21 21:29:19.691','598665171-1-2'),
('b832fa33-699b-4364-9b1d-3b176db40607','cb24f977-2bb3-4346-b90c-e4f6ee8b9032',203,90,95,0,'2024-09-28 16:27:38.376','2024-10-08 07:57:35.037','428360379-1-3'),
('b83342cc-6041-48f8-982b-4577993e36ee','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-109'),
('b833b03a-1bf6-4efb-a30e-0360c28123da','bb9f6535-af97-4e17-af79-099a643ce967',52,85,104,0,'2025-08-22 20:28:42.931','2025-09-03 06:11:37.804','338829299-2-3'),
('b833d258-2b52-470e-8e1a-c5bc067cc91c','ba35c585-5a41-49a0-931f-21e6c034471c',45,22,56,0,'2025-05-28 19:08:46.383','2025-06-07 14:07:59.723','517278082-1-2'),
('b8396350-2d7e-4352-b9c3-b0af05abd08f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-34'),
('b8399b94-c270-41fe-8eb0-165ebf18128c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-65'),
('b83c501c-3da2-4d4b-8309-a11d1efc256c','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-10'),
('b83d4f99-e5f6-4aa4-b0bb-cc7546e7c56b','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-45'),
('b84202f1-04f7-4c35-a1b8-dff4ab61c8bd','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-3'),
('b84356b5-8182-4809-9950-7a4b94e08e2c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-34'),
('b8439bc0-de49-4f89-9737-e3effb78406a','23f3477c-f11c-4298-947d-16df3b5cde8d',91,93,80,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-1-5'),
('b8446c8c-e078-4b9d-8b29-53cfae61a02a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-141'),
('b8466f89-3f23-4b1f-aada-872893ffdcbc','6fcd8160-ca06-46ab-a691-51de5c394793',101,2,200,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-21'),
('b8468238-27c5-4e2f-bfd8-63eec80d61e6','b67fa3d3-0b05-469c-a42b-d477847d9d21',92,60,107,0,'2025-09-12 14:16:54.076','2025-09-24 14:32:37.478','531893295-1-1'),
('b8490f58-b0a8-4849-ba68-a5863a53a911','bdc15b51-242d-450f-a47e-a75e07f475a4',30,14,26,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-11'),
('b849bfd5-bf95-4138-8549-bdee830e71c1','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-8'),
('b8518710-5278-4a74-989f-652afc1bb8e1','64e90639-a7e3-48b3-a6b7-5d04f87bdc30',40,41,61,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-3-1'),
('b851da1f-29b1-4461-a2cc-2c58eba3f3d6','acbdd21f-746f-4630-82bb-eac5e391f704',228,88,98,0,'2025-02-13 20:44:02.437','2025-02-24 13:33:20.162','786254351-1-1'),
('b85aa72a-47e3-4f3d-9762-a2e8fdd62494','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-46'),
('b85b560a-fdc0-4776-be98-b24d57e69ebf','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',52,70,14,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-14'),
('b85be4f3-2dd5-46eb-915c-c38ac6b1a133','d2f8d58d-42ad-4705-b1e8-a666af927fa3',214,44,6,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-14'),
('b85c5d3a-e027-4c26-a0f1-d0eeb1eafead','e178636b-b1d9-4260-aa1b-879946fa7f5d',16,65,88,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-17'),
('b85d04cb-c8e4-49e9-8680-02414eed63fa','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-24'),
('b85d29a9-4f05-43ca-92de-775189ec2e3f','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-38'),
('b862bc7a-1d18-4d1a-ab37-fa5ad631c0fa','bdc0c5ca-f162-4477-b2c0-e1aff46c190f',208,46,12,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-24-1'),
('b8639b77-49c3-4653-af0b-5a0bd967b2b4','4ced19c3-d724-4c04-81f5-38ec0a0161d6',95,95,70,0,'2024-12-23 12:00:50.893','2025-01-03 19:31:52.612','501212768-1-3'),
('b868a217-bf66-4b27-8ad1-e8944053cc23','c2117654-a5f8-4afd-97d4-1653f53e4764',140,190,26,0,NULL,NULL,'614789435-1-3'),
('b86a6eea-f76a-4908-9e42-5edbd57644e4','3aca7d6d-09cb-4903-812e-7535a083b09c',215,54,73,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-2'),
('b86afd22-6a35-4023-ae4f-4980f4673e64','8f501b28-7e24-4062-b6f1-a5ff7b1353fc',56,76,102,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-2-2'),
('b86b7d07-1c6c-46fd-a822-9148cd1726a9','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-42'),
('b86f5acd-e5be-4eec-bb0f-11718242bc5d','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-107'),
('b8712fa1-2a14-462c-9bfd-172aad30b605','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-3'),
('b8740ac9-ef9b-4e29-9294-d6a812b87e9c','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-15'),
('b874db52-f06a-4d5f-89bc-a11bb10a4765','1f8ed22c-646c-4405-8477-3cfc46f95401',31,13,21,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-4'),
('b875d188-1a38-4fbc-aa2e-fec872a746fb','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-91'),
('b8776cc9-f884-40c4-93b3-e745f105115e','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-4'),
('b877a6f3-52ad-4bab-afcf-601a0d497e82','f6534c5f-f6d6-4e0b-b8df-9db7fa49aa22',31,31,31,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-3-3'),
('b8816fcf-3926-4895-b7d5-1d7329e6fe6d','795d2f7a-ffa2-4492-98f6-4e205fe5de73',74,74,47,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-1-5'),
('b882e8f8-4a9b-4742-9e61-76008eaa4448','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-33'),
('b8848f63-e80c-47af-887f-6f7363c7b2b5','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-4'),
('b885f801-5b98-4ed1-a7cc-116cc31c1628','b02788c1-0146-4977-9654-9a5bfdaa0079',51,51,47,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-5-1'),
('b886b37f-2f02-4be9-a999-8f695fe78e4c','735a4cf4-d192-4bae-9d7b-24bd5111fa3f',100,72,53,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.121','644550858-2-2'),
('b889527a-440e-4b21-8364-a895c5d23d2b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-16'),
('b889835d-f998-48e7-92e0-ff80bedf9c3f','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.216','2024-12-20 14:35:25.910','478949141-1-8'),
('b88ab184-3451-4a40-a73b-7456bcfd2626','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-10'),
('b88bd396-90b7-478b-ba6e-0e674e06f658','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-11'),
('b88c54f6-6f77-403b-ac09-303283cc7812','b8cb209c-3d60-466f-8346-01810d5816ec',8,54,208,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-6'),
('b88cd55d-416e-439c-a11e-a79ab8378686','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.902','2025-01-29 14:51:45.518','248135683-1-128'),
('b88d555a-e5ab-4f93-8177-f78aafe9cb92','2440cedd-7420-40bc-a7e1-396d5c9a8e14',56,76,104,0,'2025-07-12 09:20:30.608','2025-07-23 06:22:20.772','371628660-1-2'),
('b88f3943-d167-4420-bd66-1ceea1c0bfbc','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:46.124','248135683-1-130'),
('b890cd57-8129-4f85-9372-00dae841c97e','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-5'),
('b89199c9-4da2-41c9-b987-f99fc8b82908','aed0c1e4-00b7-4884-bc19-3d932afa6442',80,60,54,0,NULL,NULL,'478350685-5-3'),
('b891cb50-0ef3-42e3-8ae7-9de8ebe364c2','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-124'),
('b8920d3f-60b1-4cf2-a9b8-ee517b1429fd','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-91'),
('b89ac620-4d76-4b00-8bab-49732b187735','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-7'),
('b89d4d23-5f3e-4a0a-8f5f-9452e2aba86f','1f88d51e-8d4e-4e6f-91be-d98044cd5087',95,65,226,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.554','91059017-1-1'),
('b89e8a4e-08d9-4c23-93e2-92ba3e7e1095','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-30'),
('b8a008b3-f559-4fb9-bfa3-088c236c1ef5','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,215,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-11'),
('b8a04aa7-7d2e-4bfe-adee-a1b3609485d2','15c24f0b-669e-4030-a60a-786363379a1f',105,105,70,0,'2025-02-23 12:39:29.466','2025-03-04 15:54:31.452','976439318-1-3'),
('b8a1c0fb-c235-4bdf-b9f7-bb7d56a825c5','7360cf59-fdde-4259-88ae-e20574f2ab94',50,75,75,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-1-2'),
('b8a4d1ae-7c53-4b49-8469-935703f6a527','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-10'),
('b8a53de4-d6e0-4000-a211-0dd75d24b569','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-8'),
('b8a9d41b-c103-451e-acfe-cd5bbc007ef8','bd3596c4-ba42-44fe-9a53-14cf56f1f7ce',38,33,11,0,NULL,NULL,'598697614-5-3'),
('b8af417a-7aed-4993-a2f9-790d26d96c72','625679d3-a5da-4163-9694-2783eb2a2db8',51,51,76,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.552','221257971-2-1'),
('b8b107be-24ce-48c9-a9c8-8f443739e281','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-17'),
('b8ba257f-a64d-47dc-b9b4-31749520407b','1868aea0-f631-4deb-85f5-8aa25773bef0',220,52,6,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-16'),
('b8bab83b-cba4-4c90-bf33-e9f586c2c06d','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-31'),
('b8c69b34-d8ab-4d8e-a0f2-52e1c1dcab10','b2b08b3a-7fa8-4d9e-87fa-3d14d9e48b46',76,130,6,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.747','351330330-2-2'),
('b8c7384e-6126-464f-8305-62d3ae0c187a','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-16'),
('b8c7bc72-03a8-4491-b194-f86d31a09dbc','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-1'),
('b8c89714-66de-4d30-8e16-59a9344944cd','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.815','745645972-1-1'),
('b8c8a287-df02-4a08-9a9a-04c5caa5a7c7','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.873','910775394-1-11'),
('b8c93444-a2c1-4e1f-bf75-55d55091ca3c','3f45b858-208a-4009-b717-75d6afa7fc00',51,50,76,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.115','22164822-1-3'),
('b8cadb13-94dd-4532-936b-0df48b0817c8','f172365f-f290-4f0f-866a-e7d90edf8d5e',70,66,38,0,'2025-02-03 18:19:56.067','2025-02-11 09:34:09.386','614339204-4-1'),
('b8ce8f1b-cee4-4d10-83fc-e3b02ed787f8','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-2'),
('b8d215a6-89dd-491b-99ed-f9d7f7f89a3d','796f74f1-a123-4566-9122-ee642d251917',51,51,77,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-1-4'),
('b8db6ac6-262e-49b0-b345-49c24d5a0b73','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-72'),
('b8dba580-40c5-48ed-969a-ab6b16a5ea69','a8240df2-bc04-464c-afdc-dd0bdbe1643d',6,43,215,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.683','745782616-4-11'),
('b8de0816-f592-4a93-89cf-f22b910cdd41','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-113'),
('b8e0c462-6247-48e7-92bb-8a64772e45f7','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-2'),
('b8e148af-d2c0-4961-9990-50f7c2c4b0ff','4f47afc1-f513-4c2c-9163-77830c49042a',105,80,70,0,'2024-10-17 13:41:08.940','2024-10-23 13:04:28.384','910943161-1-2'),
('b8e1765b-7feb-46c8-b9e5-831c8bc237fd','f52b306c-3f53-46f5-8bed-8c43d5e71dd8',60,60,90,0,'2025-07-02 12:43:29.741','2025-07-21 18:56:17.647','644377995-5-4'),
('b8e3ade0-3dc2-4dea-a1d9-0e6f4886710b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-45'),
('b8e41d81-b530-4682-95d0-81989b8c009d','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',230,63,6,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-51'),
('b8e4de5b-506e-4ec6-ab28-18a83a63ff84','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-8'),
('b8e7af43-67df-4bc4-aeb5-c8a16d7491a2','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-49'),
('b8eacec3-e280-4618-aaa6-8ef52d2c77ec','9bb570a5-52bb-4bbc-a797-b2a052d8260c',245,100,70,0,'2024-06-10 13:50:55.810','2024-06-10 13:50:54.112','3198601-1-3'),
('b8ebd96d-66c4-40e5-9273-65fb7a9e3110','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-2'),
('b8ebe0ab-9b6c-43b0-8fad-61e3abb21025','4248435a-86e0-4cf9-9c9e-c779eca78500',57,60,230,0,'2025-03-27 08:02:45.328','2025-04-08 15:37:42.158','644653229-1-7'),
('b8f15b42-3e07-4caa-9235-b75bb73bd43b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-226'),
('b8f8f00e-f067-486b-85dc-3b99bdc0a6d7','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-13'),
('b8f90625-040f-4bcc-be43-62e8bf5bddd1','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-24'),
('b8fb6208-a3c9-4641-a124-4485a4e2f73a','6c43de3c-5454-4dc3-8fc2-6cd719969299',4,83,113,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-4-7'),
('b8fc2d7c-93ed-4b59-bce4-a4fac72e6f0c','324936f5-0640-4048-8641-e1550a228838',50,65,14,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-13'),
('b90357a0-8db5-401f-bf95-ce278eff83b7','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-2'),
('b907db9c-6797-4bf5-8ff9-9eb59dc71499','91b1853c-0746-4c2d-89d6-c2fe0be8f025',90,75,65,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-3-4'),
('b9081412-df9a-4bcb-bebe-f3c778a62dde','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-11'),
('b908744e-670a-4c39-a91f-e7076a97e448','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-6'),
('b9092614-cec5-42a2-adcb-7ef958daf13d','2eee4732-1804-4c17-a865-bc66f2ed3520',48,48,243,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-6'),
('b90d13a7-81a7-4344-9c2b-751dd36e32c3','49c326ab-5b3b-49e7-a781-28760709b5be',92,22,10,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-14'),
('b912aa60-ab73-4f77-9fd4-f3e6311e7c65','080cca92-65c6-455b-b12b-18f90f342599',51,50,76,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-1-3'),
('b9139a1a-2616-4cf5-9c73-268ee99300ce','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-2'),
('b915f0c2-24b0-4a4f-ad57-6d938b53b401','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-7'),
('b916fce1-82c5-4272-8c59-6751e3d21346','7d07052e-d89f-4ebc-be55-2d8ac162c8cd',97,89,78,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-1-4'),
('b91737ed-98a2-4276-855a-7bf1c263f007','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-8'),
('b920b1b0-dff7-4f83-80b4-1066a052ba36','40065c78-de90-4058-907e-6af9c5da2b57',45,40,155,0,'2025-10-08 17:43:29.333','2025-10-17 06:15:16.791','803441454-1-3'),
('b921e5e4-dc06-44d8-a45e-c2cab3c698b0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-22'),
('b923f790-dd64-4a72-872d-94d257132ebc','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-29'),
('b925de0b-2ff2-47d5-8cc4-a4107a3d76a9','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:30.166','248284003-1-172'),
('b928bd1d-2828-4726-9687-f607403f14ef','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-2'),
('b92dbf33-62c9-407f-bc6a-f1dd710a05dc','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-15'),
('b9354dfa-d87f-40aa-a836-d685bcae797d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-184'),
('b93602c9-cb81-4cce-814e-83824e21f9f4','23916ed8-c0d3-4f6d-b7d5-f8117e883299',31,20,75,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-5'),
('b93616c9-1cc2-492f-a863-0346e5125dd2','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:23.668','248284003-1-107'),
('b937eaa0-9533-4615-92b4-d44f48aa442c','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-5'),
('b938db1c-1152-4f42-9c2b-8d9000c9192c','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-10'),
('b93a8e38-26fc-474b-a60a-7eb48b6a5738','afd7f71c-d1fc-484f-b72d-f986503df4f7',80,50,40,0,NULL,NULL,'703266692-1-3'),
('b93c009c-cf28-4964-85d4-3d2d806679f0','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-6'),
('b93e4dcb-0ed0-42e1-9ac5-7a5171a56949','49c326ab-5b3b-49e7-a781-28760709b5be',65,85,63,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-36'),
('b93ec4c3-ee94-46fe-be47-89290e6dba5d','a9828fad-e20e-4e73-98f6-917c06f178f5',50,50,22,0,'2024-03-30 10:54:55.588','2024-04-04 12:48:48.669','982189682-1-5'),
('b93f3023-c9b1-4135-b0b8-82e09da1f118','434f2fa4-2957-4f35-86b4-5df68d237b53',52,52,53,0,'2025-08-07 16:52:56.179','2025-08-19 19:34:10.946','644658399-2-1'),
('b93fd32f-4acf-48aa-89ea-f57fabeca071','a07bcb7a-9868-44db-9691-88f2fc3163bd',55,50,95,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.774','644877864-2-1'),
('b9417f8e-1bf9-44ec-8609-7ca61380b6d1','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.355','2025-01-08 20:29:02.152','735384295-1-6'),
('b9458d3a-964f-4851-a0b9-707ddcf63b54','1a0092aa-0e7f-4ae1-a9af-04b09f018c3e',0,0,0,0,'2025-02-18 16:37:15.249','2025-02-25 09:59:06.490','478763903-1-6'),
('b947cd33-5b83-4fd7-9c15-d6fa8a3d001d','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',8,125,235,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-12'),
('b94a3b41-c797-4247-b5ab-85263e74a26c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-107'),
('b94a88e7-6a15-41cc-b4ab-b582d255000a','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.094','2024-09-13 16:38:54.587','412871738-1-74'),
('b94bc475-08dd-406e-b0ea-7e6a652c770a','3535d433-eb38-4879-84b4-dbf8410809cd',107,91,50,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-5'),
('b94e2800-f560-433d-b2b8-54ee3631b28b','d83c40d1-4df5-4c97-bc83-28837db95b2b',51,61,12,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-60'),
('b94e6f87-baeb-4ea5-87d0-7a90f65822c5','8173a4b9-15fd-4a7c-89f4-c9f0540e10aa',109,203,8,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-4-4'),
('b94fa984-7337-4dcd-81b1-8b43720ac08b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-185'),
('b9533a5a-d811-45cd-a671-6f46355d2daf','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',73,112,125,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-10'),
('b9533e57-f09f-4085-8078-b484b0553899','ece7deff-9b91-4dbb-b51f-0ec52d0d40c8',105,75,130,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-3-6'),
('b954c255-7cfd-4ecf-bd66-b6407059eb63','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-23'),
('b955a476-ef91-422c-9bc6-2560df024c06','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-14'),
('b9573f12-7206-4fc1-8f21-597cc4f4db66','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-81'),
('b95adcf6-65dc-4bdd-89f7-2ca7c3f4a6c5','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-28'),
('b96881a4-59b9-443a-8283-19619f32128d','9affc7b1-09c4-4e84-b48b-d0c117c421b0',60,45,60,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.902','412280381-1-52'),
('b968c1dd-d059-4756-96d8-c078ac2809cb','ca7ffbfc-f9b9-48bc-8115-521efee8b6ac',0,0,0,0,'2024-05-08 18:43:10.229','2024-05-23 08:25:33.815','745850370-1-3'),
('b9694f1e-812f-4067-ad47-7afa7f397884','19c6a32c-4384-451a-aaa5-dfc264ab827b',30,201,163,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-18'),
('b96d4765-b513-4f7f-a239-c6d55f586b6a','525a1f01-65a7-452a-a205-48074153f5d1',44,51,51,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-3-1'),
('b96daac5-81b0-48ff-8e6a-1e7ed817d433','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.008','478945094-1-9'),
('b96f288a-beed-469e-af66-6d8cb8669281','b78519ec-4b79-400f-a709-a1f09256d30d',27,210,18,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-16'),
('b973535e-8570-47d8-87cc-6b7420b21d35','f65bc971-0655-4e60-a4f2-19d36f14946d',100,85,240,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-2-4'),
('b9766e0f-aadb-4246-be06-5abcbc15245b','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.341','478322325-4-25'),
('b976cfb3-3a72-4581-8e54-683a5d056f3c','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-10'),
('b976d574-505b-4b1b-ac5c-5cf97f0ad7dd','a4fbce4a-8063-462d-aef4-150b13a4ea25',51,51,76,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-4'),
('b97e5430-f301-4945-a3fe-92797fa03517','4f368ea0-3216-4d5d-b412-e65605d1c4e8',103,83,65,0,'2025-10-06 07:10:10.171','2025-10-15 08:24:46.846','808396862-1-1'),
('b980c0ae-d697-4dde-934e-3fc513681b61','bd9f1765-f44d-464e-abbf-bc23221a0925',0,0,0,0,NULL,NULL,'614927187-5-1'),
('b9812f01-1da2-4a41-b709-f6617e8e31d6','e6bddda4-b1df-4be7-bbd5-63cc4b197736',87,48,9,0,NULL,NULL,'42857810-1-19'),
('b9860fa3-d978-4190-b0a2-fa6c7ece0112','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-102'),
('b987950d-29ce-4589-96c4-5f5b92a1a06d','546ad3d0-25c2-43dd-9443-e48b8e5b6530',97,4,1,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-23'),
('b98a4b3d-edbf-43bc-abcc-9a2ef4ae7540','543dfe18-75e0-4198-9d24-c6d0458898e8',65,72,98,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-5'),
('b98b748f-1175-4c1b-b73b-b2acbf4c7d49','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-5'),
('b98c4626-f092-4a96-abfc-e724c6676b87','758108f7-d046-46e1-87ee-e7b73410ab42',0,0,0,0,'2024-04-08 08:57:50.699','2024-04-25 22:08:01.981','478281011-1-1'),
('b98d80dc-74d9-4f2f-9571-5f06329a49b1','2694c763-03c7-478b-85c3-a639c728d0e7',65,95,95,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-1-4'),
('b98e87ee-20dd-4ee6-b022-487a44bd338a','73669d80-682e-4907-9777-0f955189f4bc',120,100,65,0,'2024-03-18 07:30:48.607','2024-03-22 07:34:46.866','501901219-1-4'),
('b98eb40d-f523-4586-8dc5-c07696e2c10f','0dfa8c17-2a67-40e3-83b8-3d8d909e832b',180,90,60,0,NULL,NULL,'47865425-1-2'),
('b98f9669-db6c-4af7-8186-9d172ad2b71c','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-9'),
('b990a5ad-0fce-4fad-897c-97e5cab9db97','5603bee7-2924-427f-8ac2-cc504126f908',100,215,70,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-2-3'),
('b998c01d-d78a-4ac2-a677-b41097c3f298','be305b23-f28b-48dc-8c0b-c8aaccb68d10',0,0,0,0,'2025-01-06 13:08:22.836','2025-01-09 10:06:09.562','73558075-1-2'),
('b998f77b-a1e1-46c5-8307-bc67b3342aa4','6f8fd929-0228-4fd9-a182-83fe855d3f5c',38,18,8,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-18'),
('b999ee58-b235-4cb7-9f85-a4bd88fa94b1','ff722e98-0fc4-4e7a-aa12-76012685646b',100,110,70,0,'2025-07-29 12:58:29.427','2025-08-08 15:21:01.746','437609907-1-1'),
('b99ea41d-63bf-46f8-8ba4-bfea7b0bab64','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-16'),
('b99f138f-d529-4ffb-914a-f0f2d4a96a53','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:45.397','248135683-2-8'),
('b9a485b5-2636-42f6-bef8-1d83b29e6240','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-103'),
('b9a641fc-046c-41e6-bc75-e7afd0d56fa8','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-4'),
('b9a69a0f-8f45-464e-a087-f5c354c2ab39','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-1'),
('b9a6e901-3089-4dd6-a8be-bd2ca00a782d','46d1512a-2bfb-476d-a224-9390f3e194f2',198,107,3,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-27'),
('b9a7732e-00c6-4c63-aa9f-6616fcd82a47','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-94'),
('b9ad05ae-8d6a-4c64-9083-af202d5b9b20','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-5'),
('b9ad9375-099c-4a6b-a854-f921b3e863e7','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.213','2024-06-21 09:39:19.257','163401674-1-8'),
('b9ae4d1e-043a-47ce-9568-8754d89dc137','7ffb0d70-74ce-430c-ad2b-f58b98fff449',47,66,68,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-2-1'),
('b9b01766-e23c-476f-859f-9d4ad7eefd88','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-86'),
('b9b15f02-3d23-4c86-846e-42ccc09c1987','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-66'),
('b9b3f3a8-82e6-448e-910d-0a2435c532a9','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-233'),
('b9b7081d-2a7e-47ee-8ecb-3b487aec13ab','69ea6974-d387-4458-bf21-972299a4ce67',35,25,10,0,'2025-09-11 06:34:16.553','2025-09-17 16:03:51.803','437529604-1-3'),
('b9b79517-84c6-44b2-be28-2605f75fe27e','9ea68f31-7756-4447-84dc-16ea42994b2c',42,43,95,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-2-4'),
('b9b943ab-29f6-4175-9496-1bd8000e6572','b2cc240f-bde3-400a-bbec-a61085853dd5',65,53,7,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-10'),
('b9c32dfb-0953-4078-81c8-90f8fa53eb89','91eefa74-23bd-4d2f-b604-3135beb41a9e',105,106,7,0,'2025-10-14 09:22:08.585','2025-10-22 07:00:08.036','221105277-1-3'),
('b9c342f2-f5f9-4012-a392-e005e0e5c9cd','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',80,52,18,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-52'),
('b9c3836d-79ea-4240-9658-366674536662','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-190'),
('b9c39c6e-0926-4f10-92f5-a63f0d97d317','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-6'),
('b9c4c5f8-d932-494f-a207-494a68ba27c3','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',180,200,4,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-2'),
('b9ca56ec-90de-42b0-8376-fd88a92819fd','904ba84e-2a4d-4a46-9ec4-7fcbbbdd4913',0,0,0,0,'2025-03-06 10:32:00.597','2025-03-16 15:00:17.707','745987581-1-3'),
('b9ca721f-6ae3-4697-9361-47d85d669af6','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',11,40,203,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-5'),
('b9cb72a2-8c92-4412-945f-02fc78e8dc4c','c4917d94-8c91-4f12-8ebf-b803c0150f37',34,7,216,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.491','598412225-2-4'),
('b9cbb5ad-7ddf-4f0f-a2c8-4c7730ffb37f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-139'),
('b9d0f22a-92ee-4584-8114-05b800ff74a2','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-14'),
('b9d1195c-28ef-482a-9809-65ca7850b7e7','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-5'),
('b9d169eb-caf9-4ec3-aeee-74d879efee03','f11fa07a-9aee-45ee-9bf1-964d6f5ae88f',0,0,0,0,'2025-05-28 19:08:49.094','2025-06-06 17:37:40.880','644771270-2-2'),
('b9d364ca-6ead-4747-8214-99a5975f9b7c','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-91'),
('b9d8d4f3-4c34-49a1-b986-b41b5d28bff4','3da17157-28be-4bae-8dcc-745d0e93e591',80,75,80,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-6'),
('b9dcd187-ed73-4e03-ba76-5cddd40a64b8','8b9be79c-034c-4491-9980-ad94bae49b22',170,90,16,0,NULL,NULL,'501873907-1-7'),
('b9e0a62d-a40f-423e-b79a-99b54700829f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-99'),
('b9e16cd6-cdff-4370-9d03-694ef06e1900','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-15'),
('b9e4b9a0-6039-4b0c-8c02-5e5fa83eeb89','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-12'),
('b9e92f78-caba-41ba-8cc7-6479a3066447','0deeebaf-efdc-4c4d-8020-24722ff30282',52,51,73,0,'2025-08-22 20:28:38.630','2025-09-03 06:11:58.365','437870707-1-3'),
('b9ea6166-ecfb-4c76-b8de-da75ea1f7302','bf2fbd97-6d0f-4724-b25e-47e019854e49',46,13,67,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-19'),
('b9edb67f-27f3-4fa7-9b04-b5e381380790','798dd250-3594-4da1-8def-ce51d07ef0ef',100,125,65,0,NULL,NULL,'745249761-3-2'),
('b9ef3953-6ae1-4d09-95b3-512175ad3ded','78bc1f73-54ce-4835-834d-a9fdc8205009',40,40,45,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-1-2'),
('b9ef63bd-1dc4-48a6-ab04-1f410a0586f7','490c2bb4-adcc-46dd-b62c-c66daac6662f',0,0,0,0,'2024-04-08 08:57:32.780','2024-04-30 22:31:16.671','412679110-1-3'),
('b9f2f058-e7cd-4e1b-8cd5-d2774b7de871','aa7913d9-4692-46ea-94b6-16deac482855',90,60,70,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-3'),
('b9f6804b-723e-476a-a406-4f7647d7e795','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-65'),
('b9fb3043-4729-4de8-b6dd-0b7b46635958','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-6'),
('b9fd5e3b-bc2c-4082-86d6-5a87c85ac9cf','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-3'),
('b9fe27bf-0df4-46a2-8b60-41a12542153f','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-69'),
('ba00f1b3-ee36-4b6e-b43e-f5cd35eafe92','534b92d0-013c-428d-99ac-08117a624aee',48,28,18,0,NULL,NULL,'351183541-2-6'),
('ba01d874-5326-449d-94bd-3be99fd274c8','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-6'),
('ba0358de-acf5-4bce-90e4-0a71729e8e61','45624052-e478-4c53-92ab-2b7ad134bf8b',24,23,15,0,'2025-08-25 12:32:00.331','2025-08-30 18:25:59.309','437306380-1-4'),
('ba059219-6b22-47f2-b10c-b08e6b672f3d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-56'),
('ba067846-08e7-4725-89e1-cd6aa430492e','c71f39fb-d5e3-408c-ba59-55a9dcf4158c',0,0,0,0,'2024-12-01 06:48:12.766','2024-12-10 12:35:44.768','44920682-1-3'),
('ba072ffb-86cd-474d-a9d5-b927e6db6223','4bb6e32c-05e5-4b75-a1e5-32aa0e4ddc2c',56,76,102,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-2-2'),
('ba09f13a-26ed-4ca4-981b-e69f7fe1b95b','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-17'),
('ba0bae51-f454-433a-86fb-9dc3a9a490b1','ae991996-4699-46b6-814d-8a6d951bcedc',70,98,164,0,'2025-06-27 17:12:26.311','2025-07-07 06:55:17.755','371749484-1-2'),
('ba0c3d11-a9a6-4a33-a522-de2aa554dec2','1146c60f-37ae-4960-9ff1-39c79125711e',120,121,70,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-8'),
('ba0ce63e-b2f1-451a-bd59-520125866dd7','6fcc55d3-2339-4d12-b5e2-e156727c33f9',94,29,228,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-9'),
('ba0f355d-574f-49bd-b96f-de01b252f737','fc33e6e7-779b-41c9-8d72-c26a1d995b78',110,205,25,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-10'),
('ba1036ee-59f8-4066-a4a6-e0947491a613','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-10'),
('ba10c539-1858-465a-91aa-b1a660129f68','15c51264-1610-44fe-b2b3-1798f688353e',57,82,101,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-1-3'),
('ba14b112-c0bf-48a5-85ee-ddb3e9578555','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.004','478409459-1-9'),
('ba15c362-2889-471b-b4a3-3398eda03b58','7cb14de8-95ba-4b58-a436-4d9a3ee3c7d6',72,54,103,0,NULL,NULL,'644104537-3-3'),
('ba1771ce-e6c0-4c61-9391-fc258f2772d4','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-12'),
('ba187a2d-edb0-423f-878f-b440b8cce7e1','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-7'),
('ba190be5-f9da-45db-8300-aceb69ca8007','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-37'),
('ba1b5f1c-13a8-4e16-b7a1-4234e6241d0c','8076bb41-df9d-4c3e-b002-8df21ddafb0a',80,85,63,0,'2024-09-06 12:28:00.235','2024-09-13 16:38:28.325','449281517-1-5'),
('ba207b96-a12a-48a5-b14c-0305b09d79a6','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-18'),
('ba220b09-8533-4dc2-86cb-05a60f8625b9','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-11'),
('ba224568-b263-4f48-adff-75ac00040f00','6ae0233f-f2c2-44bf-9706-7274e4c923e9',122,90,90,0,'2025-03-27 08:02:37.202','2025-04-09 12:54:30.745','412149383-1-16'),
('ba22677a-484d-461c-aa78-ed07e58de33c','edc484d1-e2ee-46d0-8ca4-5adc2c03d85f',75,125,12,0,NULL,NULL,'598891928-3-5'),
('ba22fad9-79b9-460e-bcbc-695a9e7ea606','b2c78cf5-c58c-4553-bd14-49e83916894c',53,46,8,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-1'),
('ba2316c8-b9e4-4b2c-af81-d6e12f8cd1ba','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-62'),
('ba2523f3-f356-492a-ab39-6c18bdf085cd','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-29'),
('ba28b74f-0f1c-4c14-a529-4a588b781ac9','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',110,106,90,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-6'),
('ba2f6528-2d48-4b8b-a1ca-c5af4363b8f9','4c8d5858-b6e9-4d61-8150-28923e7ac277',101,70,85,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-1-1'),
('ba319ec3-1fa4-4608-853d-7add69ea0bed','6f7a6469-dc9b-4d75-903c-d0c86a5d5d92',100,200,23,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.730','486181220-2-3'),
('ba32f67a-85c3-45ba-859d-bc76f4eed1ea','53025d92-f019-4f5d-9b69-68a3b09bb7bc',86,206,2,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-22'),
('ba368f75-da54-4a6d-b05a-45b06aec3c76','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-19'),
('ba380f3c-ce01-4f26-a24b-0bad1909c646','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-7'),
('ba39a7d8-8c59-492f-a8aa-632fea8d5f14','6fcd8160-ca06-46ab-a691-51de5c394793',101,2,200,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-22'),
('ba39adf5-18d7-4508-b175-e9f5552787ba','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-3'),
('ba3abc70-9916-4b17-b02b-0fb1a8accaad','109642dc-0833-423c-9fee-ee29a1e3c5a9',51,51,77,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-1-2'),
('ba3f20c9-49de-4bac-8b1d-32248a656e81','42b7553c-1533-4400-b356-4c6840431f4b',206,94,29,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-2-5'),
('ba3fe6b4-8efe-4226-b2fd-999f56fb03c0','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,50,6,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-30'),
('ba44df79-a539-49d5-a0d7-780d329dedb9','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-6'),
('ba47eeac-e58c-49aa-baf2-fd6d9d881650','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-10'),
('ba4812f9-4de8-4fe4-8a13-0def7317167c','cad27d48-d66c-419b-82d8-6b69b7fb1590',95,100,70,0,NULL,NULL,'515967328-1-1'),
('ba4b8c4a-0818-4111-8f35-3620ae182549','702c1aff-1a98-44f0-9dce-efad71572432',5,57,224,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-2-1'),
('ba4d5ddf-b131-4ece-9c5c-3c98716b0900','a1cd1c1a-930b-4527-9f89-812389e0038c',15,27,73,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-3-3'),
('ba4dffcd-82c8-472f-82c3-a30a6e5e6d0d','3c259a66-c790-405c-9ea1-ff6223397b52',11,11,160,0,NULL,NULL,'598891928-1-1'),
('ba4fa585-e5d8-41a7-a8b7-4788991a4af8','a95b7647-1261-4cf3-9745-195f5db6c429',0,0,0,0,'2025-02-27 16:45:24.199','2025-03-13 09:28:41.588','64418413-1-2'),
('ba50288e-bc8c-44f9-8fda-49d484feb6ff','6114a732-dc0c-474c-bbb4-76211cbefcb1',40,40,25,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-2-3'),
('ba50ef97-da66-4d6e-beb2-abeafbf662c1','4c0ca6e8-9805-4e5f-834e-d4cd8f62c746',75,70,85,0,'2025-10-22 13:06:44.530',NULL,'959658567-1-2'),
('ba512e43-e19d-4f8c-b369-b3ed97290b30','03ad506f-f86b-4dbc-952f-52b01e2467fa',120,200,25,0,'2024-07-30 14:58:35.621','2024-08-07 08:41:51.552','126200859-1-50'),
('ba524c0c-c207-4938-a3a2-e11d777335ea','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-13'),
('ba527481-5e1d-499e-96e9-c0569483b140','d809dcad-16de-4109-80cf-c313d807e1b1',0,0,0,0,'2025-06-21 04:33:51.632','2025-06-29 18:30:43.910','338840422-1-2'),
('ba58015f-24b7-435f-99f5-847698826b80','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-2'),
('ba5ab0c9-64c7-4787-b847-1fc4645a183b','778350cd-5627-457e-9aa3-334a2ccc6781',105,65,95,0,'2025-05-28 19:09:05.719','2025-06-05 12:35:52.359','817213476-1-6'),
('ba5df7e4-48cd-462d-81d3-f14c62320261','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-47'),
('ba5eda24-f337-4922-b68b-07134224452f','aaaede6c-998a-4b2e-af14-68241c67cfbe',0,0,0,0,'2024-03-31 17:55:00.055','2024-04-17 10:16:28.647','478125476-1-2'),
('ba5f97ef-4cc7-4a0e-9893-1eb1e2015d90','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.512','2025-01-09 13:53:34.834','735561469-1-42'),
('ba6387d1-3171-4ead-9f2e-2112e533c7bb','5eba22cf-1a50-447a-819c-d6f78b038912',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-3-1'),
('ba65ec97-768a-4681-8ae1-a6d01e3e96a0','fc853fcb-c51c-4c07-b20a-ac57fdd1a81e',123,98,70,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-5-4'),
('ba678d90-3272-441a-af07-6f306dba8724','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-13'),
('ba68f70b-beaa-4aef-851f-c8682164318b','416e7e24-9084-4530-b3a2-2808d9f33e37',100,122,65,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.165','371514006-2-3'),
('ba691e60-5d07-4131-9927-e3eb1cb2ffad','55bdd77a-dfa4-4c83-bd2b-4709d2c3ad56',0,0,0,0,'2024-09-03 15:28:30.945','2024-09-14 19:01:44.723','982666330-1-3'),
('ba691f3c-a7bb-4828-b41a-aceb442699ad','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-54'),
('ba69a24d-13f0-4e0b-9a0d-efdbab0474d3','dd1cd3de-f760-4608-b546-c1d5ff28b9df',45,49,46,0,'2025-09-02 14:49:10.791','2025-09-12 19:47:17.959','465181388-2-3'),
('ba6bebaa-c496-4ffc-b1c0-6bbff1be6b05','0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4',96,179,15,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-1-3'),
('ba6c2392-4072-4e92-b3d2-5bddbf223634','7defd633-f7ab-424d-8029-028d1b045752',30,90,15,0,NULL,NULL,'501119446-1-19'),
('ba7165e9-3181-4dee-ad6e-75171eb755cb','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',25,75,202,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-15'),
('ba74cd55-9b9b-4238-9ed9-adc0df46ca2f','7cd28b4a-73b1-4827-aaee-b29989b9d9b7',0,0,0,0,'2024-06-08 08:00:28.405','2024-06-20 20:15:30.824','74594122-1-1'),
('ba75a7de-72d2-42ea-bc6d-c950466f5f42','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-1'),
('ba7cf0a9-939d-4ee9-a587-cec90779e261','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',63,43,17,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-130'),
('ba7e98ed-a214-48f4-a69e-6b289b44f515','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.091','412139250-1-4'),
('ba7f8f77-2159-4aa9-a8c6-5a2056d841cf','1d4ca092-dba9-43de-817d-e927b71167f3',160,200,30,0,'2025-05-14 17:04:01.482','2025-05-21 15:30:07.918','74568874-1-1'),
('ba7fdf0a-a403-4b21-b190-665993443ee8','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-2'),
('ba811a3d-43fa-4888-8619-bcfa769c2116','58a96255-8ed4-4ea8-9672-6758dedc8bdb',64,84,57,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-2-2'),
('ba8336eb-4b6b-489f-bb07-0616388d4c7f','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-41'),
('ba857297-6167-4ec7-9221-d1aea0646fd0','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-104'),
('ba86d736-059a-43ed-9e66-c3f6ad2ca63e','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',60,54,50,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-6'),
('ba886920-4bd8-4236-a2b8-0672ea585339','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-55'),
('ba8b81f5-97f4-40ef-9e6a-984d803f9807','d2f8d58d-42ad-4705-b1e8-a666af927fa3',13,41,64,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-15'),
('ba8f5d55-7f8a-47f3-b5e5-cd1a26217d12','2b3a0cfe-c787-418f-bf8b-5ce003d288ff',75,57,103,0,'2025-02-03 18:18:31.057','2025-02-14 15:00:35.915','221952785-1-3'),
('ba94dfb7-fba8-4b2b-a75e-de65d6a4d85a','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-12'),
('ba950f02-b853-4f56-afc6-8e9df2f1da91','249d1f3a-1f6d-4acc-ad1e-40e713130f9e',80,95,82,0,NULL,NULL,'59898054-2-5'),
('ba951cd4-952c-4cde-b59c-3e2400adc561','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-11'),
('ba95ba8d-dbfe-4cda-9494-2e113ce3fc99','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-4'),
('ba9744f2-8d14-4c84-837c-aa4d55387047','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',52,52,99,0,'2025-10-08 17:43:46.256','2025-10-17 06:14:23.899','380453463-1-6'),
('ba9d2153-9ffe-4d4d-9a96-ce270b28ab2a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-200'),
('ba9db819-1567-4f47-8ff8-38274660a4d5','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-19'),
('baa66b3d-d666-448f-b6f2-c0cb90f92316','9212dfa8-08b3-4e92-93bd-a594eaf017b6',50,13,68,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-9'),
('baa7be14-3c7c-4c83-9d10-e629fc63fdd5','4884cae4-94a5-47ee-83b6-52077e4376b5',0,0,0,0,'2025-03-08 13:46:13.183','2025-03-18 18:32:44.433','644567515-1-3'),
('baa82696-1a61-466a-a769-14cb560f6b67','e25fa2b4-56ea-4fab-ba4c-8d2a6e911d81',95,183,7,0,'2025-05-24 17:55:28.655','2025-06-04 19:39:17.567','745761149-4-5'),
('baa9648b-0e5f-439e-8546-9b897b6ea69c','2bd41fb6-a948-4fbd-8c3b-c76f4f5f863f',96,199,7,0,'2025-05-23 14:05:14.640','2025-06-06 17:36:06.346','221433158-1-3'),
('baac5497-3884-4cf1-bca7-4cab59f0f05f','159c73ed-083b-4d67-98ca-6adcfc554962',185,33,33,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-17'),
('bab024c8-2857-4210-b478-ac16b75d1c9f','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-32'),
('bab777e2-9302-43f0-8d07-b9698021edcd','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.145','2025-04-01 09:23:33.516','478861689-2-2'),
('bab7e8ee-56e2-4a8c-9d17-0d7461c1d75f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:58.383','248135683-2-94'),
('bab9cf63-fc9e-48e3-8447-c2e82fd8a0c3','07da2870-e24f-466e-b1d2-42f3d97a5278',26,180,200,0,'2025-03-11 18:06:01.697','2025-03-18 17:00:21.789','982134567-1-1'),
('baba2979-c89a-4279-83de-7a800596a0ee','1ab745bc-cedc-4993-8852-79017b1ed8a3',80,56,110,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-6'),
('babda926-7cf5-45f1-b60f-de0cd13f4426','fc33e6e7-779b-41c9-8d72-c26a1d995b78',101,34,195,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-8'),
('bac963cc-72b8-43c6-bf5a-af28f2970447','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-4'),
('bad3b67e-c5fc-43db-9a50-e76e9d825d68','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-8'),
('badafe58-cf9b-41c5-a277-a727f6516715','4c827ccc-5373-4bb5-b088-bc5d1ef4f91c',92,160,75,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-1-3'),
('badb639b-06c6-48e0-9bea-fee6b06ce41d','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',260,131,13,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-53'),
('bade82bb-ccb2-4176-b4b9-c16545cabbb8','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-27'),
('bae13bbd-9fb2-431a-a6f4-b59b987839b5','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-15'),
('bae2c021-297b-45d8-8d82-3eee267b6dc9','d2f8d58d-42ad-4705-b1e8-a666af927fa3',90,2,205,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-16'),
('bae47684-839a-49df-a35d-b5fb4cb78dbd','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-9'),
('bae64784-c5e9-40f0-8286-663e9f9246e4','c195a62e-5db3-43dc-8b1a-fdf97d29c5cc',0,0,0,0,'2025-05-09 18:43:51.030','2025-05-21 15:29:59.752','644340759-1-1'),
('bae6d870-23fe-4977-bee7-a30f77a3d875','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-52'),
('bae769f5-dd5a-4289-97fe-520203fec7f4','1ab745bc-cedc-4993-8852-79017b1ed8a3',70,80,85,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-3'),
('bae9f730-a0b3-41f9-9a0c-978fc1fdb658','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.302','223444495-1-22'),
('baee7cd8-bda2-4a98-abcd-42f14943c8b1','89b10d5c-c483-44ad-9784-dd0d3532446b',85,85,8,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-5'),
('baeef091-ab38-41d0-883b-4903abbc3294','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-13'),
('baef5270-a548-4702-88a0-618bf2dda2d0','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-6'),
('baf0251c-7626-40b7-a046-20275f83ae37','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',41,97,90,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-6'),
('baf288e4-7977-42ed-8fc0-280cff064d72','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-6'),
('baf5d871-f7e4-45e8-97fd-9e2e91b50f81','417d5128-140e-4a55-b497-de9ff93db63e',103,72,80,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-2-4'),
('baf93ae1-13c0-4223-877d-6aba815dd28a','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-8'),
('baf9760e-b473-4cf3-9f57-e4b087289872','71186865-547c-4404-a1d3-c309f2152015',115,115,80,0,'2025-10-14 06:22:07.545','2025-10-22 07:00:39.223','412722649-1-3'),
('bafa94be-d2a7-4541-959c-ae5e002b8e9c','f19d17e8-3693-4608-ae1e-de8ed9283ccd',0,0,0,0,NULL,NULL,'61440092-4-1'),
('bafab43e-524c-46af-a0ff-8731182bbdf6','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',45,35,210,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-8'),
('bafba40f-729b-4297-a2f1-2c1aef48ad86','e2de9cd4-e8e6-48b8-aa91-52920db0471a',60,80,90,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.420','449693252-1-7'),
('bafdb3fa-1c40-483d-b0c6-fed2da41a10b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',200,160,4,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-30'),
('bb0568fc-6057-4a31-8407-f41e89a3170d','ce4976ba-e974-4470-8acc-c28f5a58a2e9',24,27,95,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-5'),
('bb090f7b-00e5-4452-a581-0db0758ebc7f','c4e2b920-2753-46a8-80dc-96f38b4d715e',70,209,100,0,'2025-07-26 07:41:46.736','2025-08-02 17:35:57.649','437672074-1-1'),
('bb0cfb56-6b0e-4d55-94ae-34a47b0f02d6','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',70,82,100,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-11'),
('bb0e4158-1d96-4dcb-9963-0b6985f95ce0','a5626ae2-9a5a-4401-9095-a368c22814f1',80,80,70,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.584','42845475-1-25'),
('bb148b98-d557-4517-aff9-253d2d35b83d','a5626ae2-9a5a-4401-9095-a368c22814f1',150,15,8,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.584','42845475-1-26'),
('bb17e22e-13f6-407a-96e0-1c54e75041dc','de51c756-e550-4e76-bf53-8a55d85b9133',83,57,102,0,'2025-08-21 07:15:07.969','2025-09-03 05:43:30.663','515171044-1-1'),
('bb1edd50-976d-41d5-a925-83b1c62a0408','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-42'),
('bb1f74fa-1f00-4a0d-94ad-92631db5db39','fd815e63-b567-45f7-a40f-07ef81c2b7ea',51,51,77,0,'2025-06-21 04:33:56.316','2025-06-29 15:02:31.408','221758948-2-2'),
('bb2167f3-48d1-45c0-b05f-ffe3011a9050','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-5'),
('bb239aa5-699d-4cf7-a793-cedfec9f39bb','8c3a9387-2db4-400b-95fa-11aef6c745f6',217,44,24,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-13'),
('bb2a9c54-434e-45f5-ace0-f5b64bf6ee00','abd1d92d-bf39-4c91-8d61-ddc273b6427f',40,40,43,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.737','437917777-1-5'),
('bb2add59-4458-4408-ab6d-bf1eb856ea4e','9e08c127-dbad-42d7-a9bf-569bebc6cd6a',0,0,0,0,'2024-08-31 16:53:35.119','2024-09-02 08:33:22.120','478778231-1-1'),
('bb2c7a27-f429-4996-bcdc-9d1a0bdb70f0','f9e43273-b7fb-4f2a-a82e-67f60793eff9',61,123,171,0,'2025-04-11 13:41:43.126','2025-04-24 15:02:05.019','745767667-1-5'),
('bb330be5-41d3-44d2-93ed-8f06a9801a98','eb8d4344-e18d-4390-80cf-728c7ac06212',0,0,0,0,'2024-03-16 14:34:18.928','2024-03-26 16:09:00.986','734391005-1-2'),
('bb35003d-69fb-493a-99db-9b5903d4a41b','cb7dcc1c-0a37-4356-938e-da743c917af2',78,98,65,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-2-2'),
('bb36972e-a286-456f-985b-fad49ed61439','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-44'),
('bb377837-7982-49b8-8e17-ae2983f7d841','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-27'),
('bb3d3b06-7baf-4ab4-aac2-c3c6c406aa27','18ff6e80-17c4-4d04-8763-3c38edeb9f2e',96,65,178,0,'2025-08-27 19:40:02.797','2025-09-06 07:18:57.693','598548833-1-2'),
('bb3da7b8-309a-49a0-bf38-3562ec1a6609','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',108,30,205,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-14'),
('bb3e5e52-88cf-41ce-b262-b7309abf8d7b','0d069b83-aba7-488f-87c2-de268881778b',43,43,73,0,'2025-10-08 17:43:18.482','2025-10-15 08:12:51.780','598754271-1-1'),
('bb431830-52a5-401b-a24a-f03146be8d66','56f86587-7355-4e49-9eb5-727edc1be570',108,13,39,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-13'),
('bb4943fd-fb6e-41d0-92f8-b444131315b6','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.496','2024-12-24 12:30:21.380','735736030-1-4'),
('bb49f40e-1a10-4f60-9328-a3b01dd0b413','56f86587-7355-4e49-9eb5-727edc1be570',205,30,90,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-14'),
('bb49fa91-a78c-414e-b95d-7a2df7e80a03','c29e76a4-89ba-4143-8fad-01a2910620ee',95,65,240,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-2'),
('bb4afcdb-8917-4c93-a07c-879861f56316','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-51'),
('bb4b13ef-5182-4eb5-9197-d189068ad86d','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-19'),
('bb4d1c7f-6a92-460a-8fca-d3c9309d6129','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-41'),
('bb4fc07b-9aa2-489f-a64e-6d4dbc6d2690','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-2'),
('bb537624-a531-4a08-a7a7-f76d40f9d09b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-150'),
('bb54b95a-ba66-4b14-b397-f482c1393ba4','542181c6-dabf-4cbd-b756-74abe3440744',103,113,9,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-3-11'),
('bb54db70-8cdb-4112-afcb-a5467c9e5216','d44dbc96-5757-49c3-a29c-45760bde9a9f',82,56,103,0,'2025-08-14 08:21:17.680','2025-08-27 05:38:11.984','982496646-1-1'),
('bb59da55-0181-466d-858f-c02265e333a5','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-31'),
('bb5b4544-b203-4368-8ca0-803b88671bea','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-2'),
('bb5d433d-0695-4ffe-a112-672307a76960','5ea4b207-b05c-4931-bbd1-648b6933aae5',222,47,5,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-14'),
('bb5ee8a8-aa3b-4452-a234-0fbde4aec0f4','a45dfc88-22f7-4e59-99af-31e8399ea126',53,91,73,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.032','808146332-1-2'),
('bb602b64-acf0-4c63-8efb-9314d3124e06','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-7'),
('bb69b46b-9141-47a7-ac07-8eafeda1e3b5','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',39,4,204,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.362','478678748-1-21'),
('bb6de84d-9347-4c03-a622-f881bd1a3b0a','e54055a2-3c9c-4738-a808-7a4a31877ef1',187,114,24,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-27'),
('bb6f8281-d76b-4f7b-8883-0eb9707483ac','a58974d4-6673-4e6a-aefe-45d928cd20dd',90,202,70,0,'2025-04-21 06:13:40.051','2025-04-26 17:54:55.474','745252636-1-2'),
('bb72f6f2-da54-45b5-b99e-b17231bcd1d8','36dd80b4-449c-4041-8f6c-8ecd754e0237',95,240,75,0,NULL,NULL,'910181635-1-3'),
('bb738df2-fd71-400a-8871-9e35ca91538f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-54'),
('bb73dd44-d94f-42f2-91a7-ec396dab3fa9','404bb5c9-911f-4abe-ae27-d9f8c7b4f704',0,0,0,0,'2025-07-19 07:52:16.841','2025-07-28 12:02:29.778','745712790-1-5'),
('bb767f40-6c3a-42cb-a8e6-2a6655636c25','df1b54b0-5079-4ed1-ab6e-71b44edd62c9',0,0,0,0,NULL,NULL,'598314012-1-1'),
('bb786c54-f710-45d9-92b4-761c62e788fd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-25'),
('bb804421-5db3-4d04-ba39-4284433a278b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-60'),
('bb8173f0-3551-4a2a-a42b-d54c11e3b65e','f99c8b1d-3c5b-4297-b1a6-3cf221af487c',25,160,200,0,NULL,NULL,'011399882-5-1'),
('bb81dbdb-9fcc-42f2-a432-33e5538c9dc7','95ce5cf2-ec3c-4eda-9744-acbeb74d1b7a',51,51,77,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-1-3'),
('bb85055e-a60b-4dd9-bc6c-d7c1a91e1513','64e3ab53-43e9-4065-b2d1-99c9cd2365cf',120,70,100,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.471','428182749-2-3'),
('bb865192-1cd2-4b48-a6b2-3881103a3711','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-49'),
('bb8b2d52-d3b2-4fd3-87ce-8218569dbdc7','0c4e75d5-e342-41c3-949e-5ca8657ec836',30,30,145,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-1-8'),
('bb8b60e1-1bad-493c-aaf0-5d0d7f13fbae','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-3'),
('bb8cfec9-e67b-4258-b360-68f9cdcf4b16','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-7'),
('bb8d411a-d99d-45ce-964b-9ebf4657fd23','c1bfa9af-ef39-44a9-9789-3e9b58704cb8',101,76,52,0,'2025-09-11 06:34:27.965','2025-09-19 12:34:35.875','808886614-1-2'),
('bb9552e1-7001-4572-8b16-6d769e5f1bad','ef48e289-c687-4471-9ec3-801128f5816d',98,158,70,0,'2025-09-11 06:34:32.338','2025-09-19 12:35:04.384','371681337-3-2'),
('bb957d45-2514-47ef-bd00-591f536816cf','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-20'),
('bb97b6a6-b0aa-4161-9bce-f7c3d94a48dd','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-5'),
('bb9d302d-5262-47df-90d6-8e936563ac16','dd8fae0b-e8d9-477c-8204-5d1b7cf83f03',0,0,0,0,'2025-03-27 15:05:13.893','2025-04-08 15:34:45.071','478697529-1-1'),
('bb9ee6b9-c9f2-413c-8be0-08d5807fedc2','60fb62a4-8365-4095-8f73-1e4ce71568c0',68,76,90,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-6'),
('bb9f0de7-e3d1-43c4-adcf-6373c7cd9eb5','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-5'),
('bb9f5abc-9241-4c87-ad6b-0802c9dd8d6c','7db89a30-9c15-4696-a11c-dcd45c5887b2',100,205,28,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-4-4'),
('bba1acc7-1a16-46d1-96a8-cd06de171502','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:59.062','248135683-2-6'),
('bba5bdbe-ad3f-4752-9e1c-3090d1171e81','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-21'),
('bba6943d-10bc-430c-ade7-32b388e78558','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-35'),
('bbaa3aa6-c06f-4cc6-9f7b-224480bf450b','993b0ba7-688d-4747-bc27-d84b8f88b2a2',63,68,93,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-2-3'),
('bbaad1c6-5d30-432b-a6ff-f6b776cf1cd4','0bd42145-fdd8-4793-a5cd-a2e404d37142',140,52,6,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-22'),
('bbab04d2-9837-48ed-8067-f47907a1682e','7311f1e0-e2be-43dc-9e40-f94a010e8939',220,40,5,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-43'),
('bbabb8fd-d65a-4e37-9ecc-6b509997b3a6','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-9'),
('bbaf294f-9b23-4f91-aab1-965834f43966','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.587','412871738-1-75'),
('bbaf8f6d-263c-4525-91de-15db17851bf7','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-11'),
('bbb0a850-75fa-4204-8278-13fd275d5f26','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-10'),
('bbb1e473-e968-4f63-9311-ad76a9b08ae2','2659414c-d45d-4920-a302-a8db660bf2cc',75,57,102,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-1-3'),
('bbb75e30-70ec-4692-a69a-583248cfb605','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.167','478431848-4-4'),
('bbb7975d-9a60-4077-be0b-4bf70d38caba','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-19'),
('bbb8c26c-05a2-487f-b890-4cb62a3835ef','f2f23bcb-ff07-4d90-8d67-e4076cc3147d',0,0,0,0,'2025-06-27 17:12:19.903','2025-07-08 11:33:53.274','657405652-1-1'),
('bbbbd11d-40f6-4c5f-94ab-67809910426f','c5027968-9a23-442a-bebc-9b8745408960',141,168,5,0,NULL,NULL,'982759064-4-1'),
('bbbdde7f-6861-4107-abbd-130a0509bbed','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-56'),
('bbbe1652-918e-4f1c-b235-f9fe1f8d7952','7c09f776-ffb6-47c8-8828-61389547804e',38,63,42,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-20'),
('bbbe5997-3497-4244-b697-db8b856aa86c','064e955b-72f7-4dfe-903d-af71b421e048',56,101,81,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-4'),
('bbbfce77-d647-4c01-8e84-4042564a48d4','4f4d6062-861c-437c-a07e-84ed7315136a',0,0,0,0,'2024-09-27 14:06:47.253','2024-10-05 11:44:33.143','478392276-1-2'),
('bbc35bfe-c350-4460-9262-a51b619e5074','1ca8cf8a-cb77-4d12-8753-3efe7142a30a',138,138,7,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-1-1'),
('bbc3a65f-3dd4-4aa7-aa41-0dda4337732b','b28511d9-75df-4f6a-b1fb-ce18b7027a2a',0,0,0,0,'2025-02-09 09:51:39.841','2025-02-17 21:43:20.918','745536465-1-3'),
('bbc76e92-3460-418e-8806-95dfe9c645ac','a361978a-91c3-4886-8ed2-fa3da0ccd62c',0,0,0,0,'2024-04-23 10:31:51.729','2024-04-26 17:00:11.405','982728095-1-1'),
('bbc85530-e714-42b4-8191-4489ebccfde5','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-46'),
('bbc8a4f2-b25b-432e-8aba-a326229e005e','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',200,124,31,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-22'),
('bbc8c067-1b2f-410f-b1e3-7ce1de4d6b11','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-2-27'),
('bbca3d87-3f9c-47b1-8e80-ba4095c717c2','ac2f272f-90f1-4d84-b5c2-1892af4e2892',70,98,78,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-2-4'),
('bbd0bf93-2807-46b0-a405-ce75018a929f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-103'),
('bbd0da98-98d4-4df8-80db-baa87a923fc2','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-40'),
('bbd2b307-a7e6-4539-86ad-95962f2e1786','6462971d-cc28-4d17-bc64-76be43b74356',50,50,85,0,'2025-10-06 07:10:06.409','2025-10-15 08:24:27.667','011811088-1-1'),
('bbd477a7-caed-4bec-96ea-88b2a82e1cc6','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',75,80,80,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-6'),
('bbd508ca-abdd-436f-b4a2-6f6efe1303c8','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-59'),
('bbd65a03-4c05-4fbb-b341-83021c024f4d','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-17'),
('bbd735a3-108c-4fcd-a589-6048045ba083','40d58b2c-a3e8-4cab-a242-12a641f6f94c',103,230,70,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-2-4'),
('bbd85967-1a6f-4ef6-bd07-376c04cd6b2d','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-60'),
('bbdb85eb-2e7a-4113-b9a8-0ab7fd23086a','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-1'),
('bbdbf0bf-1c41-4934-aaf9-11e2a823e6a1','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-19'),
('bbdf1a24-2484-40f1-a3df-84ba9bf6b357','135906fa-fceb-45b1-a401-83de82461319',60,60,6,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-6'),
('bbe42741-bf34-4b43-81c6-28c5465caf92','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-8'),
('bbe4479f-1915-4735-b781-09d6a7ed816e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-21'),
('bbe55dce-1c9b-499b-a6a0-126fe9716006','f0485a78-951c-4f89-bddf-b2003f0bf783',50,50,19,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-52'),
('bbe8a426-7b94-4c35-acf7-08b0a38cdaed','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-19'),
('bbebb9a6-778b-443e-af60-06e60b1b83f2','caa392fc-03c5-421c-a7db-8ae0f3aa70cb',160,106,58,0,'2025-09-11 06:33:55.311','2025-09-17 16:03:19.864','011697836-2-1'),
('bbec1e3e-88d0-4685-a6d4-61f0c2d0952e','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',40,30,30,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-131'),
('bbeef3f9-c943-4e82-9726-ffd10d481037','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.515','412903480-1-6'),
('bbf360a3-21da-4130-ac2a-59abe11e321f','090b9a06-aee0-4c02-b626-f3e2002f0fce',89,218,3,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-23'),
('bbf474e6-cd20-43e1-90f2-62983c1053ad','56444780-7901-46c9-a902-b20a8f5d4449',107,181,7,0,'2025-05-16 16:33:27.780','2025-05-23 14:07:00.550','33850305-2-3'),
('bbf8b069-3b45-4710-a8a3-5359cdce4e0d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-119'),
('bbf9185e-a478-4e40-b05a-6c8354ec2b66','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-31'),
('bbfa1472-4b86-40d5-8e8a-a2cfd9f72581','504660da-c27b-41a4-aa56-e6293172b9c3',0,0,0,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-10'),
('bbffb1eb-af78-4eca-848e-2d7559fbe4ad','a45dfc88-22f7-4e59-99af-31e8399ea126',60,56,84,0,'2025-09-24 11:02:10.438','2025-10-05 12:15:55.033','808146332-1-9'),
('bc001394-0eaf-43f4-8039-cec084d39f97','bd5cd96b-f90b-435c-9dd2-b569c97d608c',0,0,0,0,'2025-02-27 16:45:17.909','2025-03-14 11:07:25.073','478644533-1-1'),
('bc0021c9-bd06-49d4-8abd-9234ad95373c','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-3'),
('bc00b3b0-c65c-4236-90ed-99a6f6d0e218','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-19'),
('bc03473c-85e6-4c9a-9544-b6bb77ace3b6','eda2bfa9-32de-4996-9c79-f610f66e73c8',51,51,78,0,'2025-05-23 14:05:15.841','2025-06-06 17:35:55.146','22142813-3-3'),
('bc041cac-3848-479d-9eac-fe5147c32c79','439a468d-6cbc-43e8-aa94-cfa411e4fd3a',57,82,105,0,'2025-05-09 18:43:58.858','2025-05-21 08:16:17.501','613910788-2-4'),
('bc0860f6-158a-4ddf-80e9-9a54ca96ffef','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-13'),
('bc116372-4333-426c-acc0-063bc9528740','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-183'),
('bc12ad82-ae69-466d-aacd-7d23841dbc25','f0485a78-951c-4f89-bddf-b2003f0bf783',9,94,252,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-53'),
('bc188af1-cc54-42d3-9de9-5cddd5fac773','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-14'),
('bc18c613-322a-41dc-8e8f-9c2403637be9','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-2'),
('bc1969cb-9e44-498a-a750-2cfc8d192e67','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.871','2025-05-01 09:51:59.250','223823107-1-165'),
('bc1e0ff7-425e-4a82-a188-e45ce83686e5','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.271','248450889-1-12'),
('bc1e30df-7912-4b50-873e-2b29ba2c8726','7d35f4ea-7482-4542-8fde-94664de7709a',43,43,80,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-3-1'),
('bc25fb47-51e7-41bf-afb4-422222761ae5','76c6ae05-c99a-474b-bc3b-0972208c5f48',85,57,110,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-3-3'),
('bc299e56-8d16-4bcd-9499-bbcc2cb90e12','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-58'),
('bc2bd089-f8a0-419f-a938-64a76d932db1','08bd7f4d-e194-4aac-a4e4-084be05bac9f',76,56,102,0,'2025-10-22 13:06:41.295',NULL,'598719647-1-2'),
('bc2da9d8-76ba-4156-941a-40ad3edb3ef4','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-127'),
('bc32f011-ad4c-4ff5-9242-1f3fa54513a0','437681da-5841-43b7-be0e-a63388bbbd07',183,95,60,0,'2025-10-22 13:06:52.544',NULL,'786146097-3-3'),
('bc3465f9-59d5-4919-b316-8d0ec0422427','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-10'),
('bc35c483-a1bc-4bd6-840b-41e0b57d3dec','9505974b-8c77-45d9-ab90-d648d60640dd',0,0,0,0,'2025-02-09 09:51:22.491','2025-02-19 18:37:19.839','745498790-1-1'),
('bc36bceb-3147-489b-b6ac-ff5d837518f0','f33b1ee8-3c07-40eb-af52-f06451c11031',133,20,210,0,'2025-10-22 13:07:10.734',NULL,'011766113-6-2'),
('bc36f29f-0b6d-4295-8123-f9645aa7d368','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-175'),
('bc3a89e4-139b-455b-9cf1-3133d6e6f3b4','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-4'),
('bc3ebfba-4227-4805-8a5a-8e0915113456','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-195'),
('bc42e0cf-456c-4f41-99b0-6b339a73e402','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-27'),
('bc468d10-83ff-492c-a219-9d25b9f1b224','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-6'),
('bc48a408-8709-42f5-9862-02a76fbd3781','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-63'),
('bc4bdf7f-6a4f-41aa-8e7c-cd1d2c196a45','a3aecf30-a742-454b-89ec-e63250e0fce2',0,0,0,0,NULL,NULL,'412811389-1-1'),
('bc4ec5d1-c8d4-4696-ac3d-f8f1fc8ec7ad','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-217'),
('bc4eda55-5302-416a-ad34-ba33399e6cbf','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-20'),
('bc5107f2-1552-4f81-a290-12aba4c9d26d','e3ad38ad-67b7-48ef-acdc-c2e13831e843',95,80,68,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-4'),
('bc52a80c-8866-4846-bf70-995ddf109173','9d7979f3-a35a-4a64-97d1-4ba973786029',180,200,37,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-1'),
('bc544a4f-2074-45d6-a196-f474ad5950ea','88a9c5d3-54c8-466d-99b5-bc55e66e9b6b',51,51,76,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-3-3'),
('bc54894c-c628-41aa-813f-8dd36233b12d','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',98,122,70,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-1-5'),
('bc54bb83-0cf3-46dd-ad59-45d5c1aa9c2f','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.936','268163356-1-7'),
('bc54f7d0-6070-4e99-84e0-ff73913ff347','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-6'),
('bc563e7a-02c5-4af5-b4a9-d6c1d37bce66','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-51'),
('bc57c75e-d831-4636-b15d-f97b016ec6a0','6b01f96d-6320-41d4-8c8c-5d73f62d279e',65,52,80,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.087','598425779-2-2'),
('bc58596c-ac24-4791-960e-a8ec9df13f4e','e178636b-b1d9-4260-aa1b-879946fa7f5d',10,90,90,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-18'),
('bc5a4472-4486-42f1-9fa5-ed0c8146dfa6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-77'),
('bc5f133f-59fe-4881-bd1f-b8f12bf35f3d','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.834','735561469-1-40'),
('bc5f56a7-4188-4dbf-a43b-b9c5953a8f33','87758232-82f4-41bc-a8c1-71f044bd69f4',77,78,70,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-1'),
('bc5fbfc0-506c-4128-9682-5fc58ef8d1c7','5aa6dfc9-0298-4963-b30c-27c1590e17f7',0,0,0,0,NULL,NULL,'614932526-1-1'),
('bc619625-7d4d-4e6a-96c1-74585f2838a5','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-42'),
('bc61cd51-be2d-4673-83d5-3d3efbd50312','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.257','163401674-1-31'),
('bc625f7c-9166-48be-9754-2a6bc08c62ba','d0179e0b-1e47-4301-add1-8a61b9197115',51,51,77,0,'2025-07-26 07:41:47.970','2025-08-01 13:39:23.236','675124573-2-2'),
('bc63d618-be9e-48af-af8c-912d8142d6a0','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',47,60,65,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-31'),
('bc6421eb-458a-4cc4-8f48-0b14066d7afd','0bb0742e-7cb0-41f9-9c79-ffced4e0a7d5',1,1,1,0,'2025-09-16 16:29:25.293','2025-10-03 06:54:34.215','41268257-1-1'),
('bc64445d-49fd-4d56-88e1-8067eee12ab7','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-31'),
('bc6724dd-e410-434d-b8b3-1c9dd8f9c421','2eae9c9c-f388-424c-8ff7-83973bc6ec96',0,0,0,0,'2024-09-27 14:06:28.567','2024-10-05 18:18:20.361','501243340-1-1'),
('bc680732-1ff4-4192-94db-ff3bdfe802bf','2fb19f98-3e7f-4224-baf7-2836d72e91ba',103,104,75,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-5'),
('bc6b02e1-9d38-4c5a-87d0-1acd3b450089','9a29c89b-7a06-4e63-88ef-c40eed097432',65,100,122,0,'2025-10-25 08:58:54.706',NULL,'371737204-1-2'),
('bc6cad8e-4ad0-41f3-9937-7bdd96f7b79b','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-18'),
('bc716e13-bb05-40c9-986c-ce655bebf917','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-76'),
('bc72813f-fe49-4557-a004-06c1bad7a024','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.444','478681299-1-37'),
('bc7451fe-5df3-418f-925c-076e2bb84b03','edef2f29-fe9b-4fa0-8465-53614e2f2468',100,65,95,0,NULL,NULL,'478412191-3-7'),
('bc75e4ba-a52b-4c78-b1c9-5b65b7f64e0e','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-3'),
('bc784e3c-3fe3-4d1a-a94b-6b76a5a77f7b','cde2b645-2cf4-4ca6-9d59-ef733217c501',303,55,3,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-13'),
('bc78f603-1285-4811-81b9-6ee45474b6b8','56444780-7901-46c9-a902-b20a8f5d4449',65,65,7,0,'2025-05-16 16:33:27.780','2025-05-23 14:07:00.550','33850305-2-2'),
('bc7d0d32-8c2f-4454-be5b-95a17493f069','e89e7d75-4967-4c63-9f73-981469e531af',200,80,4,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-37'),
('bc7d7464-888b-4c7d-af1c-f3237f837019','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-105'),
('bc8076c9-ba9c-4232-bb63-3b882db37b23','d9f8d303-c2bd-4794-8f6f-028cc186a4ef',200,163,27,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-1-1'),
('bc8151bb-93aa-4ca7-91e2-c8bf88e99b82','087c4197-e286-433e-86d3-969922843b35',0,0,0,0,'2024-11-12 16:15:56.181','2024-11-22 21:23:11.520','126421974-1-2'),
('bc830752-6d71-42d9-a397-075b5a983c73','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-1-1'),
('bc83ef26-abda-43ea-84e6-edb149f2cadf','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-39'),
('bc8b0c60-3f1f-4f22-8630-4d0f65ca2f92','3ad5cc89-9af6-481f-a031-0d475e3ff3c6',76,122,6,0,'2025-02-20 12:14:57.922','2025-03-04 15:38:15.828','22186590-2-1'),
('bc8ee418-5154-42de-8c49-074393ccfa2c','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-44'),
('bc90a432-1f7e-48b2-8dfd-d459ee8d4002','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',28,28,216,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-16'),
('bc93a1ce-e4a8-45ee-9fd7-ed3e91f48026','b4183fd9-691f-4e50-aa3e-1185b3e78cff',93,85,85,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-16'),
('bc96425f-fcba-4b5b-9fa1-5f84a0c89db0','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',67,17,45,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-11'),
('bc972634-7ad3-4177-b013-f68aa8e0aaa5','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-95'),
('bc99324e-bb57-4ac9-be85-51644995d938','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-143'),
('bc9a1baf-dfe7-4dfd-9099-d365c2cf0cd2','69acd97e-52c0-45ae-adf5-ee013e52776f',255,86,73,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-24'),
('bc9a2cbd-ccd3-433b-96b1-f4c67219bd42','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-2'),
('bc9a5434-8880-46a0-9ed8-05159c45a408','56f86587-7355-4e49-9eb5-727edc1be570',87,52,14,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-15'),
('bc9b1f79-5741-4be9-9238-43afb00f0bd1','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-54'),
('bca186be-9a4b-420e-b951-b4444511d81e','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.145','2025-04-01 09:23:33.516','478861689-2-4'),
('bca4806d-323e-4863-9356-3174893e5121','e685dec0-77f5-4777-a591-8b659322473d',0,0,0,0,'2024-10-23 14:11:49.290','2024-11-04 08:40:50.986','745519015-1-1'),
('bca827f0-da56-4d45-b98f-beadb05b3886','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',125,40,115,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-132'),
('bcae210f-13d1-49aa-a3c6-e5c0179f6a98','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-161'),
('bcb0c9d0-c7e5-4ed8-9e69-9d6493987460','b1412704-b0a3-458a-a5d4-ae0a217b9f18',75,80,75,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-1'),
('bcb0e51a-17e8-4203-abd6-0be191a99af3','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-38'),
('bcb1410b-b4bf-4571-b1d5-53004c3f9d70','9486e3cb-00fd-42aa-a1a2-44d5da68af36',53,76,101,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-4-1'),
('bcb1dd86-64cd-4278-9924-eb46108c2ea6','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:31.124','248284003-1-80'),
('bcb29e95-41d4-43d0-92ca-b7de38f0df7f','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-14'),
('bcb87e7c-9d62-4879-ba86-c3ae66cad5b9','bbc20f00-196f-40b1-9f3a-f3929d7454df',57,82,102,0,NULL,NULL,'50552381-2-4'),
('bcb8a414-23c5-4886-8f78-96afa695e7d6','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-5'),
('bcbab388-7af0-4ca5-b9d5-4ba3047a9ed6','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-4'),
('bcbacf25-8ccb-45c1-a48d-906a54c66543','376f6b8d-92e3-4ec4-991a-cb710a079011',106,225,8,0,'2025-03-27 08:03:10.862','2025-04-05 13:45:44.467','437791163-1-1'),
('bcbc7d4a-0c8a-4486-80b4-32d6543d8859','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-13'),
('bcbe3e52-aa23-4b55-9c93-c3d5320f54ef','97822927-c1df-4d43-a654-b387762a0a87',0,0,0,0,'2024-05-10 18:49:59.391','2024-06-04 14:25:13.634','412726953-1-1'),
('bcbe62f5-b7a4-4b2b-9d15-ecdabcf41ae7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-110'),
('bcbf3fee-cb02-40aa-acd9-c41d8cd32852','68a82262-4794-40bc-b3bc-eba8f7ad4a03',45,45,78,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-1-1'),
('bcbf7ca1-8875-4882-b82c-5705bd49e106','39981e5e-e36e-4c44-b5a0-d150be8ce263',52,98,72,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.532','465237157-1-2'),
('bcbfe7f4-ce3e-4408-8bf6-4d0bd3cc13ab','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-60'),
('bcc1d421-aed6-448d-b719-6618a1e613ca','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-41'),
('bcc398a6-23fb-404a-8773-5693a308bc56','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.167','478431848-4-1'),
('bcc51a83-8c38-4fc2-b551-9b111746f6da','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-17'),
('bcc5b0fd-e346-40de-a5a6-8abbc9b76587','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,8,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-133'),
('bcc95e41-d190-41ef-bd85-e8525201a1b2','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-3'),
('bcca0c8c-943a-44c0-acc9-39c8661d14a0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-116'),
('bcca2ea7-5c64-48f2-bad2-713ae3284c05','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.981','2024-09-14 19:01:35.933','853766753-1-60'),
('bcced0ca-b75a-4d9c-b2b0-42ad8ffb1cb8','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.591','371716908-3-5'),
('bccfbea6-dabf-4896-9e1f-f8c35e583c39','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-7'),
('bcd09cae-4374-45d8-990f-e2f936ac9f4f','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-19'),
('bcd329ff-ed9d-40d0-a178-b2a9f489a5e8','88611d6c-52ed-4192-8e9a-11fd1beb3641',0,0,0,0,'2025-10-22 13:06:45.437',NULL,'478168587-1-2'),
('bcd6aa48-52d0-4e5f-ae62-cb61a8d3cfb3','d1ff62ca-dd36-471d-b7fb-b4ee11e88b9a',0,0,0,0,'2024-03-16 14:34:28.534','2024-03-23 06:41:49.776','745481313-1-1'),
('bcd9fa4d-d234-4047-8aed-04961fcaeb6e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-51'),
('bcda4327-4b29-4adc-ba91-c5d0bf58b784','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-20'),
('bcdc5bbf-ac76-45c0-b103-e097e0e1a9f7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-206'),
('bcdda0fe-8462-4491-898d-ae17aec1356b','0bd42145-fdd8-4793-a5cd-a2e404d37142',137,65,17,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.451','517901924-1-14'),
('bce0190c-ede1-4724-b03e-bf53799d348d','a48f4957-ffc5-4309-808e-9eba40503ea8',83,83,7,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-4-2'),
('bce26705-18b1-455d-8a35-591d06c366be','3da17157-28be-4bae-8dcc-745d0e93e591',50,15,75,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-25'),
('bcea1bd4-733d-4f8c-b567-598104009095','9e4a49fb-9de6-411a-80d8-1cbb68b072b7',56,82,100,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-1-1'),
('bceda381-dd3b-4549-9227-72e5b4a26072','9e5026fe-8d17-45e7-be7e-1fd39ec1f746',6,97,199,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-2-3'),
('bcf75f42-e426-4275-826a-f767f33d7718','0bb5d71a-48ab-403f-9eb4-a71c550b29ad',28,214,38,0,'2025-03-11 18:06:01.698','2025-03-18 17:00:21.789','982134567-2-3'),
('bcf8dfae-3590-4437-9eee-62191fcf3421','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.551','221257971-1-3'),
('bcfa228b-ed4c-4e1d-8b91-b62f859eafee','0a8285d0-d3db-4298-8e41-62c5429f150a',260,53,10,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.340','428499287-1-19'),
('bcff76ca-0d61-4836-aeb3-5abe2195bb99','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-83'),
('bd026d4a-8cb7-402d-b9f2-c5c09033dcc3','df713518-2930-40b6-8d4d-ddc4bcddbec8',55,55,35,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-6'),
('bd02fefb-16f6-4930-8136-0c3ed91df447','36962bfe-f2be-4a19-89f1-05a5fec42d74',0,0,0,0,'2025-02-23 12:39:28.240','2025-03-04 20:47:35.346','478545295-1-1'),
('bd062e5b-bb54-4c39-b4a9-5fa678a8f209','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-4'),
('bd0680b7-4014-4c09-9efa-9b96a25fb4f3','6d0390ef-65ce-4154-a607-d67e51938ed2',47,43,41,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-29'),
('bd0a90c5-2bdb-4e94-bac5-a068198b7820','7c806225-7e85-418f-bc1f-06b62bb4fc85',0,0,0,0,'2025-02-23 12:39:26.996','2025-03-04 20:47:46.448','428131786-1-2'),
('bd17bd94-5526-44ed-ad22-c9bdba987c5f','0d1a3e09-3b1a-4b24-bfd8-967ad3171dee',94,255,65,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-1-2'),
('bd1d02a0-6896-4479-b358-b0dd692a07a8','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',40,38,38,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-25'),
('bd1dbdf5-ac5a-4319-865e-5fd875beff9d','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-9'),
('bd1f168c-e241-4a8a-8fd2-91fc1bc9ebc1','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-7'),
('bd1f6077-16e9-43bf-af11-afc9aaa67176','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-18'),
('bd258107-657b-47e5-8b0e-aaf57b24b8b2','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-7'),
('bd283216-b7f8-45c5-9cc5-a0c38d721426','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:46.695','248135683-1-200'),
('bd287ffd-3d27-4d25-9c52-c366b8574b2f','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-41'),
('bd28912c-6f4b-48ee-a4b4-b3727b1022f3','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-57'),
('bd2937d0-fff2-4d58-b571-627a74f4d5c5','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-86'),
('bd294351-a893-4942-8f02-b2dc45a44b88','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-208'),
('bd2bafd4-b82a-4830-93e2-5e1436d594bd','1403890b-ce7b-4c03-ae31-2b9f3b40dd11',62,56,82,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-1-6'),
('bd2c4993-5e9b-4db3-bb3f-bf45cd99d9b3','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-5'),
('bd2c853d-e7aa-4a5f-9bd7-dca92823621e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-106'),
('bd2cc59d-3edb-417e-a1ee-50290649e3a9','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-4'),
('bd2d0ec4-379a-4a65-ab35-25c911700ceb','1b975dd0-98b9-4adb-88bc-962d71cc7b22',5,203,79,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-9'),
('bd2e2d28-0b98-4c61-9893-762e5ae0eafa','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-21'),
('bd2e6bac-02a2-4ba9-ac0f-f818d2c3af69','de8a2a10-9ee2-444a-a28e-efaf3ff1c953',100,94,70,0,'2025-10-20 07:18:16.076',NULL,'644664237-3-2'),
('bd31fd5f-25ce-4ec4-a305-f58b391c837b','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-7'),
('bd334c5e-ef72-4dc6-bde3-559761603ecd','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-28'),
('bd347dae-94cd-408d-9142-89a363835b18','3014e299-cf0b-48b7-8c7d-d69d3f855cf1',120,120,65,0,NULL,NULL,'428372230-2-1'),
('bd367250-a21d-491e-9265-78f3c9803203','dcfb227c-7cb0-4907-b275-857ab6f52d86',51,51,77,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-3-2'),
('bd36d9b5-a0ee-48ef-b8e8-0af5ef275e0f','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.669','2024-07-30 14:55:02.492','027336842-1-54'),
('bd3a2fbe-ba9f-43f2-a8f7-4687ce6e4b70','5114defd-dd85-45fa-a3af-522574ed305c',0,0,0,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-7'),
('bd3b1383-54c0-42c2-bc28-a36966bd32fc','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',22,50,70,0,NULL,NULL,'428413605-1-15'),
('bd3b4907-19c3-4d18-b30e-16a36ee07a35','0a11d915-2e8f-42c2-b468-0ee6b5857269',75,57,102,0,NULL,NULL,'221919629-1-2'),
('bd3d0a7a-fca1-4bb7-8fb4-9142f17ac9e9','87ff1c1d-6f61-4bcb-8968-134ecbc5c8ec',65,60,86,0,'2025-03-27 08:03:01.257','2025-04-07 11:35:28.501','644535273-2-2'),
('bd3f7827-1d35-4635-b42e-5ad4484490dc','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-45'),
('bd4220fa-8728-4b56-a37f-3492808ab07d','ede9284e-0f42-4aa6-a16a-754961f9be43',75,82,67,0,'2024-09-28 16:26:55.303','2024-10-10 16:32:52.344','449197003-1-5'),
('bd4367ab-2c37-453b-bfd7-f5ba8aa76ce9','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-10'),
('bd448ef9-a99d-43cd-a35b-5a223b1e4db3','b7fbd54c-bcc0-4613-9901-d06327048472',140,48,12,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-12'),
('bd49845d-2171-4e92-a7c3-c2a81a96a549','e21ff554-3cc5-400e-a57d-15fa271de157',45,45,45,0,'2025-07-19 07:52:01.012','2025-07-29 13:55:22.241','221443179-3-2'),
('bd4c5377-c26e-41e1-888b-f42b32887cad','1e3387e0-d504-452c-a710-5a45b72c57f8',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-2-1'),
('bd4d028a-aee7-4d35-8fb6-4eab088eef7c','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-18'),
('bd4d7988-a23f-4e7f-89fd-0a270df4a767','5ea4b207-b05c-4931-bbd1-648b6933aae5',202,90,1,0,'2024-11-21 10:28:58.427','2024-12-16 21:29:16.112','428958532-1-15'),
('bd4dfa4c-3442-4903-b098-8cbf0a786532','6c41692f-48c1-489b-ab41-f12954fafe5d',85,100,53,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-1-2'),
('bd4e18c3-173e-4808-adf6-79f33142b51d','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-53'),
('bd4e89db-bfef-49d1-a618-b0ef0d11fac1','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-29'),
('bd4f8849-1089-4c7f-9e12-889ea6132dd9','b8e1c00e-2430-4417-9a2f-f583e3a37b18',85,90,8,0,'2025-04-15 16:01:32.250','2025-04-26 17:56:06.990','613786429-1-4'),
('bd521fd4-9d11-460c-aea1-5b58227f5b16','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-2'),
('bd531cfb-d9f9-407d-b48d-a01d129a24ad','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-33'),
('bd56313e-ff2b-4eb1-8eb9-86c2e50afb4b','b16d43b1-d66b-4008-bf2d-25090caa2cd0',52,67,80,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-1-6'),
('bd61c360-43de-4421-9e99-bb23f6343981','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',78,93,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-5'),
('bd64e0ff-f7b0-4607-a40b-8eb633dd5c28','af69c5a3-87d3-4548-a650-720b69a4fc69',47,68,10,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-16'),
('bd6b17ea-c56d-448a-aac0-eb3f20905c14','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-218'),
('bd73342e-6aba-4e66-b1b7-1cebfd90ca89','0fc25d41-fe66-4797-a304-92adc29b59c1',90,90,60,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.174','910594430-1-3'),
('bd7570b7-a5bd-4bc8-93a1-343749c34265','4301b768-4818-4e74-a6d0-12a33474f5c6',8,59,221,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-21'),
('bd759dcb-d1c5-4f06-91c8-acd9d7e04933','3da17157-28be-4bae-8dcc-745d0e93e591',165,35,35,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-1'),
('bd76863c-a9c6-4c4d-93c5-fa6411cce000','055c6f8b-9b1b-4daf-8b1c-5ee2ad6db7d4',56,82,101,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-1-3'),
('bd784b68-6f60-4a34-8168-5159ef081516','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-5'),
('bd791364-ef76-4ee3-b08b-e7f361866e53','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-2'),
('bd796cac-7594-4fd0-823f-f120fe55f559','4bd3461b-c38f-4c43-90a6-39aacd24cc83',30,93,207,0,NULL,NULL,'976462703-1-11'),
('bd7994e8-e71e-49a5-a563-56a4dcd39782','090b9a06-aee0-4c02-b626-f3e2002f0fce',94,94,6,0,'2025-08-21 07:15:20.573','2025-09-03 19:36:36.851','750717756-1-31'),
('bd7d2649-ffa6-427f-b4b1-692088d71bdd','2173be11-c6d0-41b5-81d8-89c770354a7a',115,115,65,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-1-4'),
('bd7fe9b1-e77a-41dd-83c4-e142175aba8a','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-34'),
('bd806870-348c-4d70-a2c0-67c522d80313','94265c38-053f-43ac-95e5-6d1b08ae3c22',70,39,70,0,'2025-03-27 15:05:06.420','2025-04-08 15:35:11.107','517887763-1-6'),
('bd813ee0-7ae3-43a5-b48d-536c757671ca','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-4'),
('bd87fc5e-400e-46aa-859d-8120909901e7','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',55,52,40,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-2'),
('bd891b40-7fff-4281-83b3-9cb89d5f900d','f7d75b9e-91a3-4e2f-bea6-42d2a60d7d13',0,0,0,0,'2024-03-18 07:29:38.371','2024-03-29 17:56:37.662','745193877-1-1'),
('bd89a045-2d42-456a-a19f-2cb98e2fc5b9','d4aaf1b1-4e37-4571-b354-b8933674055c',18,15,101,0,'2025-10-08 17:43:24.011','2025-10-15 08:13:18.159','910995300-1-3'),
('bd8ae2a0-fcac-4a98-abd8-8fc96e8ec210','71452714-b180-4e00-b2a8-b6fefa0c5650',77,44,44,0,'2025-02-09 09:51:58.173','2025-02-15 05:22:04.063','268145141-1-7'),
('bd8dffef-1c7a-4d52-b392-cba99508767d','089780c6-b58e-4ac0-92d2-370a4fcea327',201,42,80,0,'2025-08-21 07:15:15.580','2025-09-03 07:07:54.141','803828322-1-2'),
('bd8e8943-3d7f-4681-a9e1-47e43f236a24','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-66'),
('bd903378-29b7-4f1e-a20c-5875a33ee5d6','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-1'),
('bd90768e-8ff2-4112-abe3-9f044d7dddf8','adb117df-07fe-463d-8c5c-78ac6b66268e',51,51,77,0,'2025-07-12 09:20:31.829','2025-07-23 06:22:15.027','817838997-2-2'),
('bd9a3c4b-2d25-4815-a446-f1aef5c03ae4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-38'),
('bd9cad59-b374-442f-ba23-da178a1a53f7','6209b244-b9f2-4a67-9557-164b1c37e032',57,33,79,0,'2025-10-22 13:06:52.544',NULL,'786146097-4-2'),
('bd9ebcbd-16a7-451f-b55b-166ce2d48933','f2fcb1d4-582c-4733-a9cf-5fbb98d7f185',50,34,70,0,'2025-10-22 13:07:10.734',NULL,'011766113-5-2'),
('bda39d41-4cd1-4001-82b7-bcb366694f6d','8ae18186-b64f-4b09-b81f-8095d536895f',112,82,56,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-6'),
('bda4cc1e-e3b7-4a2b-bdb1-af5b6a872162','081140e6-a4e4-4c40-817a-e779fe364e99',0,0,0,0,'2024-09-27 14:06:37.992','2024-10-05 11:44:48.003','745744183-1-1'),
('bda51aee-d549-495c-a5f2-20dfffee003d','f4824372-5bf5-402e-88a0-74bc50efeac1',61,65,86,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-2-3'),
('bda8f647-ccfb-428f-9043-3ea6039c553c','0a0fd393-4e83-4aac-88d0-f5285741c782',51,51,77,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-1-2'),
('bda92b33-84a7-4e16-8e7e-efdc9b45d179','18182670-9b6a-4987-802a-7e1c83c732bc',54,76,101,0,NULL,NULL,'504809900-1-2'),
('bdabc5ec-100e-4c2b-a941-5184954d82e9','6f883022-1eea-4faa-b6c6-489aa1c8866e',86,9,97,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-6'),
('bdac3466-2fc9-4a66-ac2d-6fa471aa8301','2ae835d1-b59e-4847-94e9-a2ddd98d1c93',230,65,90,0,'2024-11-08 17:37:41.335','2024-11-23 08:31:53.168','982644032-1-2'),
('bdad4a4c-e112-4375-80a3-3eabaa2fd9ad','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.359','2024-11-12 16:17:08.742','982194447-1-3'),
('bdb2a8f6-0ad6-4759-b6d4-887efcccea50','8ec304ac-bf41-40b1-83e5-e7da60bed6bb',76,101,52,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-1-2'),
('bdb2bb36-10ed-4699-a758-cc04638f766a','a3d20b6b-adad-4184-9827-5458c1315c2e',0,0,0,0,'2024-04-27 08:45:34.979','2024-05-08 21:07:19.873','126889614-1-11'),
('bdb2f6a9-0f9e-40c4-954a-bbe2b21be6ff','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-187'),
('bdb4ffda-c190-496d-b224-05b6bc8f8d21','92eefcaf-225d-4459-b297-1d8d499b03f7',0,0,0,0,'2024-12-18 09:31:24.380','2025-01-10 16:33:03.833','735272751-1-2'),
('bdb7ffd5-1d4f-445f-84d8-2bd103449b37','b31ae358-4cb7-4d8a-bac0-dff0a61dcd39',90,75,75,0,'2024-12-07 09:32:22.880','2024-12-18 16:37:07.052','910950688-1-1'),
('bdba25f4-9575-43dc-9a52-74c119e2f8de','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-81'),
('bdbac91a-4f78-474d-af02-ac176fa63635','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-26'),
('bdbad95a-c960-4fb0-a3b0-0c7f7f84f5f1','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',225,90,70,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-7'),
('bdbba938-2064-480f-b173-ba437971e599','9e058fdd-3a61-4ae7-b65f-865d643df084',0,0,0,0,'2025-03-24 16:01:42.948','2025-04-05 17:48:17.433','745968655-2-1'),
('bdbe79fc-4529-49a0-ac23-9e0f8a7e0616','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-245'),
('bdc24211-d82f-4e4f-b4df-ce5a3738c516','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-29'),
('bdc3d369-abf1-40f6-8b53-68710f8017b5','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-96'),
('bdc6346d-a9ec-440e-90e4-a69039ecb5dd','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-25'),
('bdc8c80d-516f-4471-8e21-fdeb7416251e','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-8'),
('bdca21ba-4d6c-493c-b81f-c8ce9628cde1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:47.798','248135683-1-35'),
('bdcd03a8-0431-4f0f-8b6a-b2283b14d604','542181c6-dabf-4cbd-b756-74abe3440744',102,202,28,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-3-12'),
('bdce8a46-c0d1-4517-8a21-a1b2c6806f3b','fb315394-4cb2-4ee4-9b83-42589f739871',0,0,0,0,'2024-11-12 16:16:09.017','2024-11-21 12:39:35.617','745286096-1-5'),
('bdd0e7f4-c358-4a79-9d75-4ed47ec986d9','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-5'),
('bdd14d8c-1ab7-42e8-a00c-6caa5bbb790f','46d1512a-2bfb-476d-a224-9390f3e194f2',201,78,2,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-28'),
('bdd1e1f0-ca3a-4e45-ac22-8653478129f6','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.551','221257971-1-4'),
('bdd3e0d4-ad05-498d-85e9-d1244c06bc28','d3ca8205-b3cd-470b-b1bc-6965c6463c92',10,115,73,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-6-1'),
('bdd4a081-3e93-4b77-a34d-2d335d89e15a','c996a4f6-ce8c-4372-9ffb-2f23eb0aec76',55,220,116,0,'2025-04-15 16:01:47.703','2025-04-25 12:44:06.842','644901751-1-1'),
('bdd5300b-31c0-4ba0-bdec-a8dc392d6346','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-11'),
('bdd5a5b7-4622-4042-bc31-8b14b68b2428','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-9'),
('bdd651b0-dc21-4ab4-aab6-eff5a7978449','fb58f438-30e4-4e01-af6e-6378e27a11fe',70,25,25,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-21'),
('bddb1ab3-c4a6-48d0-a1d5-6ca31473abd2','ab5b4f35-151d-4c91-bde5-2423bc506836',0,0,0,0,'2024-09-24 09:07:28.130','2024-09-26 15:55:12.342','976494428-1-1'),
('bdddd5e6-8399-4e84-a5d4-46e7a73e16e7','b2d959b5-31fa-467a-8e1f-cefc0166a15f',92,23,201,0,'2025-07-12 09:20:41.418','2025-07-22 13:22:57.741','803961620-1-3'),
('bdde7452-6aa0-4ac9-834b-f30f3d7596a0','064e955b-72f7-4dfe-903d-af71b421e048',37,48,32,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-2'),
('bddf5df2-804a-4fef-a035-3bdd5857ae04','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-21'),
('bde285ae-b7af-4d87-8756-e019d2d44040','ac2b9be2-c0bb-4704-9314-44e3ed793e24',9,102,170,0,'2025-08-14 10:05:27.420','2025-08-27 19:34:52.034','334873891-1-5'),
('bde66276-c782-46dc-a468-a8b48d8c4cb7','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-1'),
('bde6803f-7f0b-47bf-beb3-37b55617ad45','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-5'),
('bdebbe32-ceb5-4a1f-a267-0d29517f3a91','ab321622-fb0a-46b0-b51b-4c72aa09efcf',90,13,120,0,'2024-12-01 06:48:00.757','2024-12-12 07:41:13.909','501622058-1-2'),
('bdec45e6-06a1-4c72-b4d1-a4537248e92a','8c3a9387-2db4-400b-95fa-11aef6c745f6',145,48,8,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-14'),
('bdf1d560-5c59-44a1-9116-4b91cdfd6a58','9b4b6b13-3aa7-4711-906c-6d3c3ffa947c',85,70,70,0,'2025-03-11 18:06:00.588','2025-03-18 22:20:43.950','982999114-1-4'),
('bdf4a1ca-9ded-4f8c-aaa9-fb7afe7ef23a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-66'),
('bdf6c08b-9077-40cc-904a-502510f7a3be','143d151b-b558-4cdd-aa6d-149292132a3b',240,80,105,0,'2024-11-25 08:29:07.180','2024-12-03 21:16:46.789','614350153-1-1'),
('be019bc2-9ade-411a-85fd-9a1c0b9f38a8','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-5'),
('be01ca84-912e-42a2-ac91-3c4438545adf','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-2-18'),
('be0416cb-a963-4b45-99c3-9882cf002fc6','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:46:59.784','248135683-2-16'),
('be0639db-c140-4e3f-bebb-c4422e68eade','9f37ed98-135e-45e0-b26e-3af7dded2b24',85,106,56,0,NULL,NULL,'613592756-2-4'),
('be08b501-f26b-4b41-810c-6768907a334a','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.578','2025-02-14 10:41:28.342','221859569-2-3'),
('be0cc888-61c9-4646-ac2d-34e07e75fbcc','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-155'),
('be0d29bf-ecb6-4318-b3a2-fdc79220eb0b','ddf610d0-9aea-487f-b0f3-3e66ddc80ad7',0,0,0,0,'2024-05-08 18:43:20.667','2024-05-21 18:45:51.098','478202878-1-3'),
('be0e2d69-5c19-4611-bfc8-10536aa20cad','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.257','248890689-1-22'),
('be13eee4-af61-40c4-b9b7-db4daa904958','fcb6bf61-126e-4607-bf5e-9fc3c22c1a65',53,53,6,0,'2024-11-12 16:16:15.341','2024-11-20 16:18:53.915','910352489-1-3'),
('be144a28-8b90-40c3-99f5-b8998655902d','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.820','223853931-1-93'),
('be1b8fee-7916-4a5b-b20b-08083eacbc44','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-4'),
('be1d7268-7ccb-4199-b314-4c7a14aada6c','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-14'),
('be1e1608-fc05-4d5e-a2ba-f62654655085','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',83,13,58,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-31'),
('be1e2c13-daa3-40c0-9ce1-26cfa024dfc0','af5d5630-8fd3-45cf-a8b1-5cfa78eb6363',0,0,0,0,'2025-03-24 16:02:10.145','2025-04-01 09:23:33.516','478861689-2-6'),
('be25b02d-74ab-4add-90d6-4cd91146fd2b','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-12'),
('be27522f-88f8-4c2d-8f6b-b060731e54b3','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-28'),
('be27d6bc-4b68-44a9-886c-c550c6cc9a8b','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-48'),
('be28bbe3-4106-48ef-982f-2f9bfd3e04bc','59abcbf6-72f2-4d32-b4c6-de60ef28c0bb',100,118,60,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.981','221191139-2-2'),
('be292c2d-ca60-41e4-b317-7890e0a864e7','19515d6a-9050-47c6-96a9-cd430edba1b6',94,84,50,0,'2025-10-06 07:10:09.041','2025-10-15 08:24:39.146','745906720-1-2'),
('be2ca7ae-9ca7-4d64-8835-bef097ca6288','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-33'),
('be2e33df-e592-470c-ada3-f65aaea31fa1','8b4543e8-c3ef-483e-92b5-3623066138c6',110,100,72,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-5'),
('be2ef183-79d4-4171-ace5-6e344da4312d','a7d8e541-ac8e-49b2-b360-317f8114fc5d',58,58,45,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-1'),
('be2f3496-682c-4209-9d44-9a3a66c2c159','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-9'),
('be2f70d1-7b56-454f-a69c-2c2fb100b4f3','42b2ca3a-9313-4b97-901b-3859e34b21e1',60,45,35,0,'2024-10-02 09:27:13.600','2024-10-08 09:24:39.307','750845897-1-13'),
('be31e44d-326a-4a25-8234-0fc9baf94880','af69c5a3-87d3-4548-a650-720b69a4fc69',90,220,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-24'),
('be32f3f4-1bc7-4074-973a-07e7d5b8313d','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-66'),
('be33b426-2e2b-414c-aeed-8f375b4088e5','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-21'),
('be3632f3-b796-4346-b2ce-c93618c62263','f4f18af6-44b4-4cc2-bf41-cb9ac30bd2ea',56,80,100,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-1-2'),
('be3873ed-db09-4f15-945b-73d9368c515b','c8a2a15e-4279-4904-a725-a9d44306abad',154,27,27,0,'2024-11-02 08:42:34.242','2024-11-09 18:54:14.451','412441586-1-15'),
('be4086a4-9d1c-46a7-aeb1-117e566e5e49','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-77'),
('be40faee-44e8-41c1-84dc-88289e6fadc3','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-138'),
('be415abb-fd2f-4743-9811-27cdb0eaa57f','773a03db-e7d2-4d33-865e-511989e51e2e',51,51,77,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-3-2'),
('be47f93c-7220-434b-bfc2-6d7fc40114c4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-134'),
('be489531-16bf-4792-b48e-5985cd9e6fd1','af1a3f38-e83c-49d2-a38d-c1fbc58d5223',65,95,97,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-2-2'),
('be4905b5-2a84-4295-b359-07c9d1581590','193ecb2d-124e-4d60-bf94-e2e26992e689',79,99,65,0,'2025-09-12 17:17:03.245','2025-09-23 14:04:12.228','614553524-1-1'),
('be4cec06-e305-47f3-a646-2913c08d6806','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-4'),
('be4e0901-576c-41a5-9c89-9c9690020c1c','1b77dc1d-c5b1-4ecb-9f88-6aa896bd187f',56,30,30,0,'2025-03-08 13:46:03.535','2025-03-20 18:08:01.971','221396383-1-2'),
('be51872b-1906-4484-8a0c-0633fa41a4e5','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-21'),
('be528066-7113-48ab-9511-272a348eb25a','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-28'),
('be52d4bf-c8d0-4c5f-b6f9-364230b584a1','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-23'),
('be54b1ff-6c01-4873-a313-4e27a554e60e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:28.155','248284003-1-155'),
('be5503ba-e468-4da3-94b4-bbbde186862b','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',25,25,75,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-11'),
('be58fb2d-1d2f-4313-bc78-1e96f7338108','5c990e83-628f-443e-afbe-ea1650122f59',210,40,12,0,'2024-05-17 09:42:07.069','2024-05-29 11:18:15.876','126649227-1-7'),
('be5ce6cc-f4be-4661-83a7-936a9a6f5e45','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-7'),
('be5f78f8-8169-453f-a5b5-5d8a49f12bb6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:48.317','248135683-1-178'),
('be5f935b-0ca4-4b7c-b692-5c07fe09f239','c90aef9b-b83f-489b-afc9-92320b0dc24c',60,60,45,0,'2025-08-07 16:52:28.118','2025-08-21 21:29:33.155','745191568-5-5'),
('be600e1c-6c2a-4253-b12b-15c681ec7851','637ecf55-0f47-4302-8766-1e0faf2d9852',112,92,65,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-2-2'),
('be60911a-085a-4d73-8f66-c4b635d53b8e','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.927','47836811-1-13'),
('be687acd-1928-4071-ad12-e146611a8a79','6fcc55d3-2339-4d12-b5e2-e156727c33f9',47,47,60,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-1'),
('be68b378-cddb-4b79-8e81-c531d7156a38','1af1707e-6f50-4bfd-9d87-6154e16f9966',59,50,53,0,'2025-10-20 04:18:21.633',NULL,'312422305-1-1'),
('be68e323-ba7e-4980-a3f1-efc4fcba1ac2','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-29'),
('be693d04-4335-440c-8ebd-e8e84580dd2e','0263f7f0-6c1a-4beb-ab78-25d69142647c',110,13,190,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-19'),
('be70e537-de4c-440d-8ae3-a97dba831e9a','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-15'),
('be726c67-99b5-4ff5-a5d8-d3772274d159','278b14ca-f435-4dc6-be59-91b5fafa1288',180,200,4,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-1-3'),
('be764bbd-623c-438b-81be-8eff8189faca','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-43'),
('be78edab-1d74-40d1-9123-5b246e5be3af','66e1ab99-3a78-4281-ad4a-dc9559acac64',38,28,14,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-2-1'),
('be7c53d7-811c-403a-a75c-6d5cd9230cf8','9f336aba-6a26-47d1-a23b-9448c37dd4f9',51,51,77,0,NULL,NULL,'505355748-2-2'),
('be7c6104-f97f-4a63-90a5-89e1cdbe92f4','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-18'),
('be7dc054-8283-4c67-a7b0-cd7a95ae14d8','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-43'),
('be8201e5-3563-4da6-a3d8-719431652e87','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-12'),
('be843cc1-64cb-4fba-9906-418c0f09f91c','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-13'),
('be89ecfb-0762-41a4-9b59-f17793b82238','0bafd109-abe8-42a8-b45f-d5053eae132b',16,16,200,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-10'),
('be8db267-2c78-45f4-af71-e53c99cbd094','04dff17a-2b9a-4f35-a082-5684dfe5706f',140,190,8,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.052','412119334-1-15'),
('be8ed2de-a654-45c5-99e2-e9dcb0338109','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-86'),
('be9074a0-bc62-4b23-921b-f844c8ebffb4','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.637','248186638-1-48'),
('be90f655-9c15-4c2d-b6f2-f1cc9af01c48','e67a7dee-52ea-4fa1-b8b6-ffe08ce0750f',52,59,97,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-4-3'),
('be924197-7d1f-4a3a-bd85-168f19fb0ea4','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-22'),
('be92570c-69ec-41f4-bd46-e4dfe4cfaf38','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-78'),
('be93a6d3-d85f-4df4-926e-f1220cdf1ec9','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-27'),
('be9a2d54-7332-41bf-aaa5-c619a9c2851b','3cb4049f-f049-43eb-aed9-c5807606078d',0,0,0,0,'2025-04-15 16:01:12.913','2025-04-28 18:15:37.519','231348651-1-2'),
('be9ac83d-541d-493e-83db-121bb7081b80','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-2'),
('be9d56f5-01eb-462f-ad94-17d30081239f','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',200,100,12,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-21'),
('be9f53b0-3fe9-4404-a1bd-f0a80c66527e','96449af3-c272-4a90-b77d-0790552dd455',105,80,130,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-23'),
('bea232e6-5ff9-4a08-9a51-9311f417d4c7','9d935c6e-5911-403e-b53a-08f90bd2dad0',85,70,70,0,NULL,NULL,'449224087-1-1'),
('bea25a2f-06c0-4fd2-8ea9-d8d1df935fcf','bd29119a-537e-44bb-96fd-8130d2d111e5',79,72,8,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-3-2'),
('bea4fbac-e566-43f0-aeb6-08b3b2b6409b','ee61e5e1-72ff-47ae-9d5b-8dfebeaad0e3',110,171,65,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.635','31979626-2-6'),
('bea6f0c8-72d4-453c-b2a2-b4fdd023686c','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.056','2025-09-08 05:17:31.693','478505417-1-9'),
('bea76c5a-d1ec-4885-9abe-75991804a2c2','799578e0-81b2-4f3d-bdb4-0d1be54d3eb2',0,0,0,0,'2025-10-02 03:45:36.095','2025-10-15 08:20:36.362','412797306-1-1'),
('bea979ad-e144-4be6-8448-dd85071ff705','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-25'),
('bead1bda-78af-4e4c-939a-96e947ec0c01','e98a8dba-7836-4c3e-99ff-5d8e5dd92672',32,45,15,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.714','437250812-4-2'),
('beb7712f-fc36-4629-96e3-eef60f1c0e63','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-16'),
('beb8e794-a942-4817-bb66-8108b9dabbfe','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.834','735561469-1-6'),
('beb94fa3-f793-47b9-a556-71d0454aea8a','138edf36-d166-4335-8560-d9873886e31c',108,196,17,0,NULL,NULL,'745189997-1-19'),
('beb9ad8c-a4a5-4dfd-b2fc-28b2cd0530c0','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-15'),
('beba33c3-f54d-483a-a9ef-db99d32a4add','6aadeef6-4393-4005-8da5-51ca4e422dfd',100,80,75,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-12'),
('bebd1d21-e834-4527-b25a-99f15a420138','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-107'),
('bec0ac61-f26f-4721-b39a-046538860ba8','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:29.185','248284003-1-72'),
('bec235dc-91d6-45a2-926a-28ddc90a23af','3d9dc8df-4878-4a07-9d09-865db592b020',0,0,0,0,NULL,NULL,'319928581-1-1'),
('bec5043c-39b5-499e-bf6a-1b3175c04a33','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-15'),
('bec5513c-5279-465a-a179-0dabe4bcfb00','f88c3e53-b711-4bcb-aa3d-9543580054cd',89,201,29,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-2'),
('beca083c-ad1d-430b-86f0-d56d045b3e7a','ff190dbb-143b-4c29-bab6-8f312e4deb63',0,0,0,0,'2024-06-08 07:59:58.648','2024-06-22 11:11:09.220','478642368-1-4'),
('becb93fc-bd60-4909-918e-adf406fab738','ae89ec40-3826-4229-b966-6415fc238b56',60,60,20,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-2-3'),
('bed258c1-9996-4053-92ec-8e5a382a38c0','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',92,115,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.427','319911664-1-1'),
('bed35f78-e36e-442d-9cf5-3b9fe1b24eb6','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-79'),
('bed498ba-2896-4617-9c7a-34753d4df0cb','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',225,58,6,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-54'),
('bed6fa42-6b99-4d3e-a43a-b29cba4a52aa','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-34'),
('bed7483f-fa9c-4f2d-a179-1e82680e63e2','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-8'),
('bed834e9-bd8f-4ba5-a426-26971e0ff6e0','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',240,100,70,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-4'),
('bed9ad70-864d-401f-b104-19bf6f3da251','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-1'),
('beda9f5d-6272-48c4-9976-e82225d5613c','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-29'),
('bedaa84c-d8b6-4059-8650-7a3ec350cf2d','6d0390ef-65ce-4154-a607-d67e51938ed2',120,200,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-7'),
('bedd95b1-506b-43be-ba8c-757d177e7fac','cf13fd34-bd50-4310-937b-eee4652efc14',0,0,0,0,'2025-01-22 09:07:11.020','2025-02-01 16:36:30.863','478224735-1-3'),
('bede7cd2-3e14-4e8c-b227-27db6172d2cf','9affc7b1-09c4-4e84-b48b-d0c117c421b0',180,85,93,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-2'),
('bede8e1c-4616-4f84-9d3b-270ce13ddb4b','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',107,120,11,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-15'),
('bedeca3f-44ed-48fb-bd0d-ebae118bf20f','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-7'),
('bee11ba4-c747-4d2d-8236-a684f7f67154','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-2'),
('bee63beb-7bd8-43a0-a27f-d5dbba93dc77','ae89ec40-3826-4229-b966-6415fc238b56',96,98,70,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-2-4'),
('bee6a4c8-0f7b-4d03-875a-b8940c061642','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:33.306','248284003-1-118'),
('bee6d0a2-8623-47fd-8d6e-1df77ef4ce3b','03ad506f-f86b-4dbc-952f-52b01e2467fa',180,40,35,0,'2024-07-30 14:58:35.622','2024-08-07 08:41:51.552','126200859-1-51'),
('bee6d9f5-79b2-4d62-ba16-44889f948874','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-15'),
('bee6f2ec-8a3c-4c11-a11e-9edcf5a2cc36','0ea49f4b-5c5b-433d-8eb4-379379e4da2b',0,0,0,0,NULL,NULL,'478778771-1-3'),
('beeb6707-cd84-4ac5-ba26-42cecd071c65','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',200,124,31,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-23'),
('beec3427-818a-48f8-a666-a8e3170e3b87','3bd671c9-374e-4431-93c3-1d44ad60103d',77,88,80,0,'2024-07-02 08:19:51.226','2024-07-16 05:11:54.166','614134006-1-4'),
('beefc75c-4413-402a-a666-efcc62cb24b7','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-5'),
('beefdf44-65e5-4ab0-bba9-93a0f1cb3df6','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-95'),
('bef04003-e3c6-43c2-b2f8-6e08b6e00909','0a11d915-2e8f-42c2-b468-0ee6b5857269',75,57,102,0,NULL,NULL,'221919629-1-3'),
('bef3d158-d65f-4367-abc2-003235b8d180','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-97'),
('bef52781-6a26-4902-acbb-5128c0ab09a1','866f9922-8932-4f88-9ae8-4b3b087f0b0e',96,196,6,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-1-4'),
('bef60465-9c22-45f1-a1ab-3e4926e669bb','1c55b4e5-54ce-4848-a88a-545a632bcd68',45,45,15,0,'2024-08-21 14:53:10.288','2024-09-02 08:33:34.976','428225143-1-3'),
('bef6dbf5-924a-4f81-af32-49ad24a3b8cb','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-104'),
('bef79eb1-0877-4dcf-99f8-8f983ac6fe60','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-59'),
('befc5a8e-93f4-443f-8bc9-27fba1c038fb','cbcb5140-359c-450c-9f33-8e0b01b62f63',130,70,112,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-3-4'),
('bf020a30-a569-441a-ab9d-48adc53eb690','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:36.085','248284003-1-180'),
('bf024995-39f4-4557-b4c3-b2d5aa9f4611','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-11'),
('bf03bfd0-f162-4677-8a08-1b7fff756253','d12ce78c-a7c1-4937-be74-17b603729cee',11,87,87,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-3-4'),
('bf03d9b7-ba7f-4373-ab88-95550ad27442','ac9c542d-e46f-415f-ba83-e9a5fd0736a4',65,90,100,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-2-5'),
('bf05f5c7-05d6-4651-95e4-160b4f04e594','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-1'),
('bf0935fc-dd4b-429b-897a-a46cf07fcde4','2a9e974b-aed6-4ac1-b9ec-1a2cb64ca83c',0,0,0,0,'2025-01-06 13:08:26.306','2025-01-08 18:08:26.831','478705604-1-4'),
('bf110cb7-5324-4292-a022-bf514c15161b','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-93'),
('bf18f27e-e6c5-456d-b4ae-188a5ac7d8b5','071937e2-ebd0-43fb-b59b-78c49e4d3953',54,80,30,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-1-1'),
('bf19200f-7c4a-4d24-82fe-6f879b1dca9d','25be168a-4585-492d-82aa-e07d73f7229c',73,75,85,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-1-1'),
('bf1ad296-0bbf-47c5-85f6-ad8a98a18df1','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-22'),
('bf1bc1b0-cc3a-4316-b465-8ca52483660f','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-41'),
('bf209e88-5ee3-4968-9f7d-6b6d9a80ea5e','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-139'),
('bf246f4e-0b59-4e83-ad33-aef05d701ec1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-32'),
('bf2638e6-97aa-40ba-a20c-c75dc1014aa2','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',97,97,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-4'),
('bf27f5c5-80d0-40f9-9b35-43ea4773585b','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-13'),
('bf2aa424-e377-40f9-a759-86c5805f932c','ca2466d1-9a83-4f57-8f76-f5ddce302e04',201,9,120,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-4'),
('bf2bc492-2506-472a-a7f5-f3c2da99ad12','ed1855d3-2d98-4083-a304-8244bd80e6a8',86,100,73,0,'2025-04-28 07:40:47.424','2025-05-05 09:10:30.650','8176511-1-4'),
('bf2d9e46-86a7-4396-882f-409678c1c927','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-9'),
('bf34c793-68b4-413a-9dce-52e1be169c31','f2e4d8de-fef4-4eaf-9df5-a9679e2d6715',0,0,0,0,'2025-02-27 16:45:35.181','2025-03-11 15:31:48.143','41279166-1-2'),
('bf352d01-a905-4bd3-bb42-ae6cd7d8ab6c','58eb6d5c-4d1a-48bf-9795-37762dac8785',33,33,188,0,NULL,NULL,'613868869-1-1'),
('bf3b61d7-d81b-4001-99a9-b029c6ce0e48','62a8ed11-5b75-4aa0-85e3-55f45545c40b',95,65,222,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-1-2'),
('bf3bab32-d11a-412b-84ce-eb0b06685158','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-9'),
('bf3d7f43-cc67-496a-8129-f2694d5d5fda','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:32.638','248284003-1-88'),
('bf3efb1f-616f-4616-8601-5619735e7b4e','79ad6fda-b632-4017-881b-cf66bff0c375',212,115,56,0,NULL,NULL,'011399882-3-1'),
('bf43175d-e918-4dd3-a7b4-a264f4407d73','4ef00d68-6112-4db2-8e3c-b639b689fc4a',0,0,0,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-1-2'),
('bf463b7c-509e-4ca7-97e9-9c55f85b3f0f','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.068','858708990-1-10'),
('bf46af79-944d-4b8d-9d6f-4caf30de31c2','6a2d762e-11cd-4fca-b32d-cdba41391e25',68,13,45,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-15'),
('bf47f56f-d848-4ac1-bde8-0041526b127e','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-20'),
('bf4aef93-1359-4c81-8278-0439a854b819','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.867','2024-09-15 23:12:06.203','223867751-1-74'),
('bf5037f6-1c5f-4c0c-882d-b9a333e507cc','5c6d6c79-765d-40aa-a4a8-a3e725f44ec3',78,53,86,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-1-2'),
('bf5219e8-bbde-4aa3-901b-a2d7ce580a61','a6c12d5f-9151-4818-a6da-99773bbe3f36',52,51,57,0,'2025-03-08 13:46:10.990','2025-03-18 18:32:54.341','644890175-1-3'),
('bf52795a-7eae-400f-9e25-d4ee6e135353','57dab073-4b3b-40f6-b274-8bed0e1e1e8e',0,0,0,0,NULL,NULL,'613137842-3-5'),
('bf557a87-7b21-4999-b6d6-dbff8d4f3acf','8baea4cf-59e6-4595-a565-1754d9ca8bb7',93,65,93,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-2'),
('bf57cf70-57a8-4765-9a52-b2f7832f59f0','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-5'),
('bf597fc5-9e46-4c73-9dc1-9740ffae5a75','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',141,198,9,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-2'),
('bf5b3947-0d08-49df-b969-706d37f9bc2f','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-108'),
('bf5ba1c2-4330-4de6-b642-5d2c30d2b708','46d1512a-2bfb-476d-a224-9390f3e194f2',94,64,38,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-29'),
('bf5db487-245b-485d-8ab9-bf703c4f2685','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.743','223422825-2-28'),
('bf5ff766-9fe7-4bde-828a-4d25e59c0f78','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-3-5'),
('bf60883c-96cf-4771-be93-9d08c6e5ab8b','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-27'),
('bf672da9-e5a1-40fb-8c94-79c368da0132','7e9077fd-3ffc-4968-8b44-b2d19585952a',0,0,0,0,'2024-11-02 08:42:27.980','2024-11-11 19:55:44.992','745778561-1-4'),
('bf675f4e-131c-4893-bcaa-d796b9c910be','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:48.849','248135683-1-235'),
('bf6922b3-e435-428e-a362-775208b98a26','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',140,167,8,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-15'),
('bf6ca8d8-694a-4684-bf54-dab3b5a9fd83','93aa21e5-fa9e-47a0-aea0-166deeae3117',85,97,75,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-3-3'),
('bf6f6569-8d0f-4082-8060-c6957cfe5233','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-35'),
('bf6f6b45-0886-4dc9-b27f-a7ad2f22a949','c98f6188-56c5-4870-be97-be71cf95f62e',110,208,8,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-15'),
('bf6fad43-b297-4513-a1d4-3c35d7121838','159c73ed-083b-4d67-98ca-6adcfc554962',185,33,33,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-18'),
('bf701168-03ed-4c9d-8911-9ca9eb7c026e','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-47'),
('bf746f01-d9a4-43ce-b078-1ff6b6040efa','dda90efc-8994-493f-aa04-04ea47eb90d7',66,26,200,0,'2024-11-15 17:06:33.617','2024-11-27 15:32:46.318','449801040-1-3'),
('bf75f9b3-8724-4d1b-be49-fbaeb30d66e7','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-26'),
('bf768ff1-b3f4-46b3-998e-1615d01c3fdc','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-14'),
('bf778d40-fdc3-4c31-8942-9256557696bc','1146c60f-37ae-4960-9ff1-39c79125711e',25,21,97,0,'2025-09-16 16:29:19.773','2025-10-03 09:15:59.030','478335843-2-9'),
('bf7a3661-2c54-4eb6-96f4-d1d60ef472e7','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,300,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-10'),
('bf823981-281d-4c1a-940b-4acc6640b3c4','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.069','858708990-1-2'),
('bf869533-e82d-4cef-a6be-7ce4f3d66a52','773a03db-e7d2-4d33-865e-511989e51e2e',51,51,77,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-3-1'),
('bf8c44de-b590-4182-a336-a5eb4f7716cc','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-75'),
('bf8e1283-245b-426d-9961-1b7ef44a7c15','796fef16-71d1-4946-b8ba-54f687adf598',78,43,43,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-21'),
('bf8e96f4-405c-4ef4-997c-be4f506adc3b','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-15'),
('bf8e9b6c-3049-4b9a-9d33-36869bf13718','d48dec8a-c7d4-4ff4-afc6-cca047d2de32',110,30,208,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-2-1'),
('bf916000-57ef-44c0-b629-8d3ca4f49fd3','c530f905-27f0-487c-bf56-8ae218e8420d',46,12,143,0,NULL,NULL,'478153975-3-4'),
('bf94ceb5-87aa-42a4-b7e5-90a361729091','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-31'),
('bf96d917-fb0f-4ed5-b128-20923c966297','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-16'),
('bf98d551-cfe6-47b1-bc28-a6b5daed4b2d','37344bde-d918-41e0-a71e-d46212dfd17f',40,40,70,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-1'),
('bf990232-22ed-496c-8d6d-7ba5622a1f7e','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-6'),
('bf9a02f6-91c7-4290-a4ad-c93be2b6275a','c900d790-eeff-48b9-9f2b-48972c98ac32',48,11,210,0,'2025-01-20 11:21:38.774','2025-01-27 21:00:28.158','428718727-5-14'),
('bf9a9d74-a292-4c37-8e38-37056b38d895','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-2'),
('bfa14b5a-18f1-4fef-9c1f-19d832dda968','2edecaba-33e1-4db0-93ac-b909e6bae465',44,26,205,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.024','613108463-1-1'),
('bfa1b320-7392-4ce7-8aac-3fe3ed87f6b1','d790c4af-3dcd-4c2f-bac7-cd5516a41cfd',96,160,15,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-3-3'),
('bfa38577-0563-4002-baba-43001e9e0916','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-113'),
('bfa8299a-328d-41ba-8e82-d2f8db73d038','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-27'),
('bfac0de5-77a6-4775-a5b4-434874a4cea6','4869c334-4618-49fb-9d03-99d95654d12a',58,11,251,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-16'),
('bfadd62d-113b-4e4d-81b2-656d3710fcbc','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-22'),
('bfaf804c-9888-4d5c-80e4-b6b62b187fe5','faeed55b-96a4-4881-b45b-9ca34af87762',100,137,70,0,'2025-10-08 17:44:11.185','2025-10-20 06:32:22.650','644742878-2-2'),
('bfb258e9-3fbd-4706-af27-57df5f8d60c2','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',80,78,102,0,'2025-02-13 20:43:42.872','2025-02-25 17:03:19.994','449693939-1-1'),
('bfb805a8-ae09-4b03-b77f-aa90751d1d66','043a68b3-cbde-4c54-b5a1-246e3bc84742',51,51,76,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-1-3'),
('bfba50d9-86d0-49bc-a44b-054cc8fcffa4','e0478821-943b-4eac-98b7-c417fdf27e29',51,51,77,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-4-5'),
('bfba5e26-d086-4631-9f93-070586a1afb1','8c84c11f-8810-47ad-aa22-9fb50bc05d1a',98,147,65,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-4-4'),
('bfba948a-de96-4460-b5d4-44785a9b2da0','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-4'),
('bfbbdfeb-acde-49a4-9e7c-1fd4bf14c620','943d063f-08bd-4675-85e3-b9d53ebf2480',106,72,55,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-8'),
('bfbda95f-4e93-460c-abba-b90ea0f61452','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.362','73589256-1-10'),
('bfc29528-9c18-432e-b5a6-fa3f3850e9f3','767f6a12-5e00-41d1-992e-56b1d6a8b714',63,85,66,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.058','982843761-2-1'),
('bfc63cfc-15aa-4eb5-8027-e607a4bea832','53025d92-f019-4f5d-9b69-68a3b09bb7bc',91,202,6,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-23'),
('bfca6bfb-e22e-4d90-959a-b4773711fb18','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.928','47836811-1-4'),
('bfd10f8e-bebd-4593-bd77-84772f2b199d','5ea4b207-b05c-4931-bbd1-648b6933aae5',222,100,65,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-28'),
('bfd49d9b-668d-4374-8584-b570902eaf53','8e6246d2-0976-47a0-a7c6-8176e4065305',100,217,81,0,'2025-09-18 15:49:00.938','2025-09-30 06:44:54.100','644153988-1-3'),
('bfd66db6-dfeb-400b-950b-dcefe87709a9','5dc0d88b-7ff1-416a-932b-9af0149bafd3',57,83,110,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.247','437431907-1-4'),
('bfd9b366-1d0c-4bac-83b6-a1243369200c','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',95,61,75,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-4'),
('bfdb231b-31ee-4415-b497-c13a3008b49e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-145'),
('bfdb25a2-da14-4440-a8f8-739be6be5f81','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-17'),
('bfdce1f0-2314-421c-9a06-975d53874b0a','845879e8-205b-444b-9d29-1e0a6fa08784',90,4,202,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-4-6'),
('bfe05c48-8cc6-4fe2-aaca-03509c3df2e7','a1a870ec-e099-4836-8b0b-44c3b1c8bf3e',52,100,82,0,NULL,NULL,'613362955-2-2'),
('bfe31b00-e0a4-4c65-a59c-f96726cb2171','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-98'),
('bfe82eed-0fc7-4c0a-8cab-f72bd9c50543','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-7'),
('bfe86467-7f9b-440e-afdc-34afeeccb7b4','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-67'),
('bfe8e022-564b-43f1-a4ff-96d419047d6a','3b92a39e-82f3-477a-9384-ce2b85988711',77,56,101,0,'2025-07-19 07:52:14.501','2025-07-28 12:02:39.073','598211009-1-3'),
('bfebab43-80c7-48a3-bf1f-f657a8c4f42a','e9a1f912-3164-4801-8ff9-6ae0ec7c5310',63,57,85,0,'2025-10-09 08:39:54.291',NULL,'221920880-1-6'),
('bfec41f8-86d1-4913-ac85-2e86263c5f10','bd176b24-f129-40d4-8c33-6b35eded0fad',42,8,109,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-6'),
('bfeeb248-01d1-485a-b927-6d8bb16b16fa','04fb64d2-7678-40dd-8131-83cf0774a2fc',80,85,100,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-1-2'),
('bfefb031-61c7-4827-ab9c-ddecdfd5841a','a94a556a-77a8-41f7-8103-f5eed51f9a91',57,60,85,0,'2025-02-23 12:39:03.931','2025-03-08 13:57:38.797','221966080-1-2'),
('bfefd15c-960b-4e48-99b2-a707115ced80','365e39ee-f73c-4477-836f-a2b97cf0bbad',45,72,25,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-1-2'),
('bff70f98-279b-44a1-a40f-35e50850ed7b','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-1'),
('bff9a572-143a-4747-8b11-308833010570','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.138','2025-01-11 14:13:34.118','248284003-1-113'),
('bff9fb09-7ef4-44da-ad37-4cfb0458f1a0','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',95,61,75,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-5'),
('bffb5a96-d2b1-435a-93cf-af5ea1f14238','af69c5a3-87d3-4548-a650-720b69a4fc69',110,180,36,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-2'),
('bffc94c3-b084-4948-bbcd-c77a9290c8f8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-85'),
('bffd1f71-d252-4a23-8852-e2b1a04a701a','a3bf1b4b-19f0-4547-abec-82eb48474c5f',55,56,79,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-3-4'),
('bffd80b9-aa81-4a78-9313-0e86820551f2','e1170d04-f8eb-407c-ad59-267ac93c8240',117,118,85,0,'2025-07-19 07:52:22.321','2025-07-26 21:25:05.739','478854135-2-3'),
('bffe2d8f-cd0a-4008-9ab2-f45f72aebb09','e830aa5f-63b9-42a5-9f64-be3d447ed226',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-9-1'),
('c00116cb-f3a9-4810-b6cc-d8a146f5bac8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-73'),
('c0023836-5356-4522-a3bc-73af03836911','0e92c59b-93d0-4308-91ce-3965bb186203',100,135,8,0,NULL,NULL,'428180919-1-2'),
('c0051c5b-8352-4602-ad8c-abad7db55812','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-37'),
('c00533cb-69d6-4475-a940-5b5bd19acfb8','bd176b24-f129-40d4-8c33-6b35eded0fad',43,19,60,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-2'),
('c009eb93-80e4-4f2f-9641-fba85db1d4bc','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.287','412746738-1-153'),
('c00b32f6-9986-4a1f-8a5c-8a07db0b0043','677e3a06-ca47-4aec-a732-695c796dff2c',230,95,70,0,'2025-03-08 13:46:20.372','2025-03-17 14:54:04.693','750498273-1-1'),
('c00bcac5-f798-415c-aaf8-640eacb99c7a','9a6b1e5d-c0f1-41dc-840d-52aa575f82eb',226,98,7,0,NULL,NULL,'221584314-3-3'),
('c00c07e6-ebe6-4e6e-a0d7-ec01947d089b','5a89fae8-525a-4de4-8188-2f4d7c892e74',54,68,54,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-1'),
('c00c246f-2908-4b2f-bfdd-0a99da0b1e02','d99137dc-6f13-4775-bb48-143abf0f1149',0,0,0,0,'2024-11-12 16:16:07.353','2024-11-21 19:12:19.312','734525943-1-1'),
('c00de703-3cbb-4914-b643-1ded084f5586','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:49.824','248135683-1-43'),
('c00e5c0d-de38-4212-8542-1d2ff43acaf0','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-4'),
('c00f4ff9-1a6f-4cf3-a6e3-0c743d872e3c','6f387dd8-0e1f-4464-b3b9-04f820af1d90',94,182,8,0,'2025-06-21 04:34:12.471','2025-06-27 21:58:31.744','613990020-1-1'),
('c0129519-bed2-45e4-befd-09c28b3f884b','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',53,26,223,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-7'),
('c013eb98-141c-4359-8ccc-74cc85eb0011','b78519ec-4b79-400f-a709-a1f09256d30d',86,2,212,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-25'),
('c013fe90-3c8e-4b81-8ad8-2660cac911e5','a4fbce4a-8063-462d-aef4-150b13a4ea25',51,51,76,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-5'),
('c0182b44-a9b8-4023-8b72-1bc89281a737','090862ad-b2db-4f65-8ab5-ccad7f6f4211',51,51,77,0,'2025-07-08 11:30:55.096','2025-07-26 16:11:35.048','221904119-1-2'),
('c01ab897-8f27-401f-b25e-1bf55159d5fe','7af3ae82-b2fc-46d3-aefd-cf6046c49f14',106,7,123,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-2-4'),
('c01fd2b1-c888-4157-b7aa-110c262b9800','e86f2f3d-8f0b-4894-8c39-9063af830231',77,47,47,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-15'),
('c0203343-b206-4a95-9ce2-e9e2790f91c7','fc8faca6-fdc1-4e86-afea-1df42ea048fe',57,50,105,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-3-1'),
('c020c40b-2e5c-4b0e-a237-050f03614c1b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-130'),
('c021ba81-9529-4d98-9c95-1028ddcecd54','05080db1-19d9-4b80-afe8-cefbbc63d170',51,51,47,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-1-1'),
('c022ed8a-6e54-41e1-aa63-2be53fc32f9d','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:00.481','248135683-2-46'),
('c0258b28-3fae-4c53-818d-222b70964a5c','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-36'),
('c0262a01-1553-499c-8dd9-c176fd1f77a1','a8240df2-bc04-464c-afdc-dd0bdbe1643d',63,9,170,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.683','745782616-4-12'),
('c02b86a2-b6a8-4271-9e3c-4937ab31fba4','24781fe5-c8a9-48cf-a94a-3c61efb0a699',200,160,30,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.673','412225517-1-6'),
('c02bd944-5dde-432e-b1de-5143f0fba35b','5dc0d88b-7ff1-416a-932b-9af0149bafd3',57,83,110,0,'2025-05-16 16:33:13.166','2025-05-26 06:37:44.248','437431907-1-5'),
('c02dd775-e65e-469f-bcd2-34494e8aefd8','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-93'),
('c02e55f2-73e4-43e2-8412-fa2084ae64d8','9affc7b1-09c4-4e84-b48b-d0c117c421b0',33,33,32,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-36'),
('c02fd75f-2114-4815-a061-ff9364bb0606','46713d18-2118-4e36-895b-ca71ee9f55d0',28,22,10,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-3-1'),
('c0300002-5342-418d-b53e-94a15f9d3133','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-75'),
('c030076e-1c2b-4f73-bd1b-5c44ef78bb2e','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-4'),
('c0324f01-b1c9-4588-9082-872414062a01','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.898','735793543-1-2'),
('c03493ca-75d5-433c-a307-f1979980553a','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-19'),
('c034a268-9051-415e-b514-1b62de78ab73','9866a947-9974-4053-8415-4518842488fe',77,46,46,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-32'),
('c036b4e7-94a0-4911-b1be-19a6d90f72fc','1575d82c-3b40-4cd5-9eff-caa45101c1d2',69,208,99,0,NULL,NULL,'3718332-1-2'),
('c038e616-0a28-4b40-ac79-80ad06938ba9','ee4fa9d5-c840-4b56-915f-a8eff865c451',93,120,80,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.266','644593040-2-3'),
('c039da03-cbce-46b3-a69c-ac6e8fc1edb1','687ef888-f53d-4ec2-b170-8d3d356fa1e2',124,104,55,0,NULL,NULL,'745105230-1-3'),
('c03a8656-290e-499c-af57-c8819b49e9cb','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-17'),
('c03aa1a8-7405-4acf-8cc0-fc743a1fca35','a307363c-9911-4bec-ab96-f2419bd7e6fe',92,60,60,0,NULL,NULL,'9823833-1-3'),
('c03af4ee-cad9-43e2-bde3-2406b8e386bf','edc484d1-e2ee-46d0-8ca4-5adc2c03d85f',98,10,186,0,NULL,NULL,'598891928-3-1'),
('c03cd77e-4847-484d-8074-141d7e7589e3','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-21'),
('c0407532-8f60-4908-9d54-777dd961585c','3da17157-28be-4bae-8dcc-745d0e93e591',30,103,201,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-10'),
('c043ebd9-1d28-4c5d-8ffb-9b7876874539','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-8'),
('c047d83e-ed95-4e8f-bd52-95104301dc2d','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-4'),
('c049cc9b-d32f-4119-aae4-b9a15484e936','03ca7074-b3ba-47f8-82e1-c187f85fc01d',85,57,61,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-1-4'),
('c04c4c14-8063-4062-8a44-9d15a14dbcd6','c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4',100,93,65,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-2-2'),
('c0508993-634c-4a83-8248-e13fa7db2eda','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-135'),
('c053e1ab-dcf2-4219-b504-471057e360ad','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-23'),
('c056093f-acf5-40aa-b0f8-808505a4ab18','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:34.946','248284003-1-181'),
('c056f3b3-6700-463c-8404-af6feedc0c72','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-7'),
('c057708a-4d0c-43ec-b140-37d12c3ab3d6','c08c5699-9501-4ce8-81b0-c32d990db7f3',86,2,210,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-26-1'),
('c057e61a-2927-4c19-9986-2f360000171a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-110'),
('c060c865-0824-451e-b292-20c649ce94bf','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:50.407','248135683-1-61'),
('c062949a-852b-458b-b3b4-8254fd3532e7','6fc71087-3b34-4761-a094-a0f038c41be7',210,54,65,0,'2025-03-27 15:06:17.555','2025-04-05 13:45:20.919','319141495-1-1'),
('c06617eb-d0b9-4f28-83f0-5d8158dc0574','d83c40d1-4df5-4c97-bc83-28837db95b2b',93,93,12,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.911','916836796-1-61'),
('c06790da-7ddf-47a2-8004-240a561a269f','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.492','027336842-1-55'),
('c06afbd6-3798-4f2c-ad53-f66878938d15','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-144'),
('c06c57cb-5649-460d-b1b3-aedd0654c455','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-8'),
('c070c8d1-c273-4151-9b67-016cc86ac4fa','2652ccec-4069-4b11-b5b6-cbdf95122b6d',75,62,172,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.713','437250812-2-4'),
('c07369b3-eb91-4435-8c13-5eac8a3a6c4b','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-44'),
('c074c14f-4fa2-4b62-9c82-fb112773bf50','da2a6994-498e-4ee7-b19e-3acf02f6cb3a',85,169,65,0,'2024-12-01 06:48:20.004','2024-12-07 20:48:15.986','614396499-2-2'),
('c07a3b7e-8e9d-43fa-84db-5a0c9e46c8fc','f0485a78-951c-4f89-bddf-b2003f0bf783',46,33,33,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-54'),
('c07a5982-d59c-4bd7-ad6c-4c4bc677db8f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-14'),
('c07c0daf-f858-4394-b4ad-423d271b660f','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-18'),
('c07dd882-f105-405c-9995-2dc380b57c91','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-123'),
('c07df6ed-0632-4337-b0f0-d2e9e44d5700','7a081169-1e01-44a4-9ec7-439661c10583',60,61,90,0,'2025-07-19 07:51:54.173','2025-07-30 11:05:09.004','644500765-1-1'),
('c0846881-aa10-41c5-a239-8ebdadf00a99','72b133d5-cf9f-4ffc-91ba-95b1bc6c10b9',0,0,0,0,'2025-05-09 18:44:06.119','2025-05-20 16:27:47.262','428414858-1-2'),
('c08475e4-6ea0-4bdc-ac0a-874baef75f8e','d83c40d1-4df5-4c97-bc83-28837db95b2b',27,14,67,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.912','916836796-1-62'),
('c08478a7-47f1-44f9-a221-a59fc088427d','49b0262b-aeb4-40b0-bdcc-b5461a64c972',55,4,209,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-19'),
('c085e143-379f-46f0-8b33-cc283b33179b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-51'),
('c08816aa-c5b0-4a79-8cf4-e6b48a06d171','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-40'),
('c08bd6b3-6170-4606-a6b1-68e9ef968c15','e178636b-b1d9-4260-aa1b-879946fa7f5d',13,64,89,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-19'),
('c08db6d4-ac38-4b76-859b-f79cf370c73d','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-82'),
('c08e975e-1efd-45b1-8f8c-df1f029a29df','ed660ffe-c741-4eb1-b890-c5a2f52b1f9b',76,56,103,0,'2025-10-20 07:18:10.105',NULL,'59874048-2-1'),
('c0914f07-b436-4fa3-b112-95aafc953c10','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-80'),
('c0934b7e-5c52-4a17-87ac-30a43a754cbe','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-12'),
('c0938418-66ae-4ed8-ae5b-13b18231918b','7544d141-ad78-4111-8cf3-83517131e050',100,212,35,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-2-4'),
('c0945e97-b950-47ba-a355-8634c8708420','badecae3-eda2-41b7-b1c4-0a0ea4e409cc',52,101,72,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-1-3'),
('c0948c3d-7908-4b50-ae81-27043625f381','700df4c9-3ebc-4f9d-b86c-5154441b3df9',105,215,70,0,'2024-12-01 06:48:18.232','2024-12-09 14:21:02.895','478380707-1-3'),
('c09631f3-5b47-4cea-8e0c-968d41b984a0','372e1bc8-6cab-4d95-850a-8adaef911ece',95,38,18,0,'2025-08-14 07:05:52.297','2025-09-01 11:08:22.515','478417862-1-2'),
('c09eb5a0-a4c5-4a4c-a8db-e59a645673e7','bd176b24-f129-40d4-8c33-6b35eded0fad',206,46,32,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-15'),
('c0a12177-140e-4cde-9943-1d9b1a377ee8','f134a126-2407-4b60-9673-09787c6564ab',213,92,60,0,'2024-10-17 11:51:20.558','2024-10-23 22:15:47.687','517914097-1-3'),
('c0a681dd-0833-44d1-818a-6a0a2414ba62','96449af3-c272-4a90-b77d-0790552dd455',54,78,103,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-8'),
('c0a6b2cb-dfc4-40ce-b91f-39e4b7046387','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-32'),
('c0a93f14-fba4-4628-96f4-1bc2c487bbe5','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-9'),
('c0ab2dd6-bd77-4c6f-8652-d10cd7735e34','1146c60f-37ae-4960-9ff1-39c79125711e',65,62,40,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-2-10'),
('c0ad44b9-40d3-442f-9735-981acbabe687','b5601e46-e9fc-4d1c-8c4d-4e974d336768',70,75,95,0,'2025-08-22 20:28:47.159','2025-09-01 16:06:08.982','745853192-2-3'),
('c0adadc0-e734-42a1-a895-8c6e1a0e3eb4','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-21'),
('c0add652-9e21-4ffe-b51c-f6a49656369f','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-11'),
('c0ae5752-eb1d-43f8-9b74-cb5edb5542c0','59b0092d-145d-40f5-a623-67f07fc4accc',82,56,109,0,'2025-04-21 06:13:22.496','2025-05-02 07:03:10.003','910316067-1-2'),
('c0ae5e1f-59e5-468a-95eb-866cc5935fb1','df67e72f-ee1a-43ca-8c93-6ee51977a7ea',103,56,80,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-2-1'),
('c0aede67-83e6-4819-9ab4-27de1879ffef','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-66'),
('c0b327d4-fda4-405d-b5b3-0f3e8ef4e060','788a8b56-add3-49ff-b48f-4809da260c0e',0,0,0,0,'2024-10-02 09:26:42.921','2024-10-09 11:10:47.116','126377805-1-4'),
('c0b3979e-1ad4-41b3-a7e6-c1ab50edd863','ce43478a-bedd-4537-b06a-c1e76d9d50ff',94,70,225,0,'2025-02-23 12:38:57.638','2025-03-08 13:58:16.672','703870981-1-1'),
('c0b53c39-2aa0-4a37-a867-2e7c95862294','4869c334-4618-49fb-9d03-99d95654d12a',58,205,4,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-15'),
('c0b56774-13f1-4542-9244-67614ac3b25e','7fee7544-b544-4623-b92a-7a80075349b3',123,100,60,0,NULL,NULL,'478514572-1-5'),
('c0bb681e-bd58-439e-a1f0-aafa310b839e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:50.994','248135683-1-236'),
('c0bd363a-3c19-4ab3-81fa-1f4e45644261','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:52.079','248135683-1-95'),
('c0bd604f-4979-4737-b8e4-4ba12f24908a','0263f7f0-6c1a-4beb-ab78-25d69142647c',53,13,86,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-20'),
('c0c3568b-cfe7-4ad9-8a6f-beac8c107363','d83c40d1-4df5-4c97-bc83-28837db95b2b',67,14,45,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.912','916836796-1-63'),
('c0c3efec-6e42-4801-84ed-560fe6c22230','b754c285-0492-447c-9c5d-43237c2e442e',80,85,80,0,'2025-01-11 15:20:21.030','2025-01-19 14:51:43.991','982817887-2-3'),
('c0c630e7-83a0-4101-b159-3e18cd78f8d8','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-71'),
('c0c6f5db-fd75-400b-a07e-1ecdd158f3c5','0a43887a-12ae-4e51-9586-f10e42c3bca6',79,55,200,0,NULL,NULL,'011399882-1-5'),
('c0c70e54-e7b4-4a77-886f-20d4e32d3e2f','a7d8e541-ac8e-49b2-b360-317f8114fc5d',45,45,70,0,'2025-08-14 10:05:19.080','2025-08-27 05:41:35.524','486552581-1-4'),
('c0cb2caa-0f8b-437e-a977-dc8d72f1f754','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-20'),
('c0cbf6a8-2444-43da-baaf-5744e2935445','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-10'),
('c0cc8941-1e49-4cee-9b76-6442a2349053','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-36'),
('c0ce0b6c-755d-4866-8814-52b442108da1','52738b5a-1f07-46d3-8ee3-d780d57c3457',53,53,77,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.380','221485829-1-1'),
('c0cf90e3-9061-4bcb-88f2-6ecc6f8367aa','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:52.715','248135683-1-83'),
('c0cff5e5-e88d-4654-8468-f72b4e692238','0f23c0c9-bd53-4204-a005-d8f2b3211f59',0,0,0,0,'2025-05-28 19:09:06.903','2025-06-05 12:35:47.781','37159654-1-2'),
('c0d396e2-7932-412c-9320-6515cbcdd2f6','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',100,83,54,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-16'),
('c0d3efae-dcf8-4eab-8c98-804fe8947d5b','6b29fcf3-79cd-49b9-b2fa-ca1518066509',32,27,197,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-7'),
('c0df31a8-2d8f-4c45-baf5-9969722b157c','01ef32a0-1284-4a83-aa87-7a3d88e6cae4',31,31,41,0,'2025-05-14 17:03:51.446','2025-05-23 14:07:58.791','745251111-1-4'),
('c0dfde3c-a101-4134-89f8-9d0ea35a75f7','367f3a5e-bb59-4b08-ac77-fb45fbe38388',100,103,68,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.931','808450440-1-6'),
('c0e29066-e999-4bb5-bd09-99253392fd47','a01912f8-693e-42b8-a248-694a4ecac68c',98,110,65,0,'2025-10-20 07:18:12.638',NULL,'531606130-3-4'),
('c0e4e2f4-6a11-4824-94f1-488dc0b24e5e','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-23'),
('c0e5bed0-3105-4182-949d-43cdb1c89de3','d645cbb0-c670-4201-90d0-24c118165584',69,31,82,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-5-2'),
('c0ea2e56-2be6-43a9-b65b-eee2a9a77cc5','437681da-5841-43b7-be0e-a63388bbbd07',183,95,60,0,'2025-10-22 13:06:52.544',NULL,'786146097-3-4'),
('c0ea746e-9b05-4f36-ba73-49edaacc16fb','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:01.065','248135683-2-102'),
('c0ecfc1c-fe08-47d0-8ed3-9ad6762401d2','1d2ec7e2-f735-46a1-96be-3994af90aaac',50,64,65,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-4'),
('c0edd9cc-7e14-44c7-99a5-1c91f1fa6150','5d6d56f2-d81e-47d5-835d-916b91abc6a0',200,38,38,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-2-2'),
('c0f1bf60-a532-4c24-9818-c27698663671','84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102',94,223,75,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-15-4'),
('c0f2ca8a-c6de-47bf-a3af-e943fe36b96e','9486e3cb-00fd-42aa-a1a2-44d5da68af36',53,76,101,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-4-3'),
('c0f329cf-bd51-42b9-9459-4e230a8a1c86','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-17'),
('c0fabd64-5fd7-489d-bbc9-4f0ec43d7e0b','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-5'),
('c0fd8827-133b-4363-a7c6-426ceb770146','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-86'),
('c0fdc09d-ba4c-46f6-ba4f-1902e4df5d4f','a135c145-15f3-450a-819b-e82b427bc978',110,240,85,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-1'),
('c0ff224f-dbdc-4e5f-9923-9cd8c9b2a137','324936f5-0640-4048-8641-e1550a228838',57,16,85,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-14'),
('c0ff6435-bc8b-4065-8459-f3b09409a4cd','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-6'),
('c0ffe20a-20e4-4da3-8cb2-34d40a1dbb15','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-51'),
('c102644b-df3e-4a87-8413-e4daa2855f40','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.452','2025-07-15 19:43:15.075','437222135-1-1'),
('c1045655-dd36-4d47-85b6-e48aeb2bfdf2','d5a7698b-6388-43e0-8603-5c9b362cc6d2',75,100,100,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-3-2'),
('c1056131-4b6a-4446-ae35-6c0a507697f2','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-37'),
('c10772ca-bd54-4221-93d6-a0a398ef7666','582920d8-061b-4cd8-a756-49a9a3248cb5',91,202,30,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-1-3'),
('c108b452-d139-488e-bb18-ea9432359fc1','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:53.209','248135683-1-217'),
('c113acf1-2554-4f15-88fc-1452d7ce7405','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-109'),
('c114d80b-8c81-4a61-8ae6-702f3534d85a','f9861f37-efe2-4e3a-930c-f694c4e10c6f',227,63,57,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-11'),
('c1181677-967f-45a8-887d-472a7ae1569d','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-11'),
('c119f91e-f62d-4928-ae05-796f3ebda5d7','3aca7d6d-09cb-4903-812e-7535a083b09c',90,50,20,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-19'),
('c11ae64e-097b-4231-b2b7-ac2baa095cf7','b78519ec-4b79-400f-a709-a1f09256d30d',57,13,171,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-17'),
('c1217be9-5f7a-4cde-9a12-93268429f60a','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-3'),
('c122df7e-2812-4eeb-ae4f-33efa859dcf6','ece4ba5e-e243-49ff-970a-1ff0579ad2f3',0,0,0,0,NULL,NULL,'745505506-4-3'),
('c1261f4c-a4d8-4bdc-8c34-60e3190e3689','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-34'),
('c126fd8f-7984-4db7-b29e-5ac92654bad1','d1bf45f5-0074-4f90-aa36-647a6e5b5b53',40,85,126,0,'2025-04-11 13:41:52.989','2025-04-23 17:45:39.776','613853408-1-3'),
('c12e0d3d-e081-4dba-9846-89e252c65661','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:02.622','248135683-2-34'),
('c12f2f5c-a87a-4057-8ce1-06701804a778','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-40'),
('c12f55fb-3126-42f3-9b8f-41916105ce52','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-45'),
('c1335654-d34b-4fb0-ac4e-f4e379eb3614','c1a31a07-5113-4703-99ff-14d4a90ef1ba',73,91,18,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-15'),
('c133c178-4dfb-4716-9493-987ffb5b43ba','324936f5-0640-4048-8641-e1550a228838',57,13,84,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-15'),
('c13e8a2c-2c52-4e75-ae5f-0c25be5fd0b8','e3de85d3-eec0-4038-99df-48935e9c3c8e',80,70,70,0,'2024-10-11 16:09:22.261','2024-10-22 13:51:40.148','976898541-1-6'),
('c147cc22-db81-40d6-b0ff-cc2eccf2d4ee','74c3f7a9-c212-44f0-813c-a9066ac926fa',96,202,7,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-1-3'),
('c1480a18-6c82-4534-b9e2-ae052b10c962','27e2ce5a-dade-42bf-b4bd-0468323a08cf',65,100,75,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-1-4'),
('c1486920-c943-4c7b-bbfa-decc33bd58d7','e5351842-f251-412a-b144-4f748b1a9359',132,93,65,0,'2025-10-25 08:59:08.075',NULL,'351519592-3-2'),
('c14c2669-c10b-4e40-bcdb-c35b2c233e10','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-55'),
('c14dc3e2-da5e-46d2-9906-1277b7a7685e','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-6'),
('c15054eb-0ef0-4141-b795-acf1c81f8a02','665094cd-94cc-4442-bbb3-4b6f02758361',9,60,222,0,'2025-10-02 11:20:37.539','2025-10-15 08:32:47.505','745970479-1-3'),
('c150d21e-f619-43cb-8db6-27b08ae2ee20','b6d04ed2-f29f-400a-ba86-37b36b0830b2',101,211,6,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-13'),
('c15166ca-cb97-40ae-a4c6-1e03c1601222','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-13'),
('c155e89e-24de-44be-82c9-2b7136a260ee','a2ac6ecd-d628-499b-b74b-a3bf267f0117',223,70,95,0,'2024-10-02 09:27:03.623','2024-10-08 09:24:59.189','910990360-1-3'),
('c1575e6a-aaa5-4437-ba11-3b1d57d4cfb5','946088d6-5f79-474b-a7dc-acd8e48b3b24',7,87,87,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-3-1'),
('c1599658-18cd-4fb1-b514-360d4627cbf8','158455d3-2130-4d98-9534-cb36e6c15df9',70,150,100,0,'2024-10-23 14:11:45.968','2024-10-30 18:10:11.200','61480625-1-5'),
('c15a3a68-9d84-4a40-8a13-a5ce93e09222','dc4dd227-7e65-4643-a55f-0cbabe1845f4',42,42,27,0,NULL,NULL,'428172853-6-4'),
('c15ed6c1-5d72-4775-8b4a-522282e37602','06cfd546-43d2-48d8-af81-05265ddc6733',130,91,45,0,'2025-10-22 13:06:52.544',NULL,'786146097-1-2'),
('c1600458-ddf0-43fc-a74f-2483eb341757','42345ca6-ef3a-446c-b13f-224500a189ad',60,68,96,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-2-3'),
('c160c961-7f74-4e20-aa54-69f7e451817f','4d63984a-5ff1-4253-abe8-286bd84e3528',95,128,15,0,NULL,NULL,'478350685-1-11'),
('c164e033-b0db-4ec8-bd11-b3c5322a9cff','6a2d762e-11cd-4fca-b32d-cdba41391e25',36,36,209,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-16'),
('c165b20f-d915-4e9d-861c-8d700fd3f699','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-7'),
('c166ab28-82d0-4d7d-b336-77004c4c2d03','5c990e83-628f-443e-afbe-ea1650122f59',180,90,25,0,'2024-05-17 09:42:07.069','2024-05-29 11:18:15.877','126649227-1-8'),
('c1692bc6-12f0-48ed-ac36-26d6f1b961db','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-10'),
('c1697839-449b-41f8-a6e5-bd30fa80b83a','c2733454-d8f3-40a8-a705-b4d31da5c848',75,45,124,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-2-3'),
('c16d87bb-4531-442e-b8c0-be14ea7bfe51','651813ec-1db0-4bd9-808a-90b2d23efacd',120,75,95,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-2-2'),
('c1709052-ccb6-4fe1-82da-d52e28ea4f81','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:53.926','248135683-1-99'),
('c1778c60-b19b-48c2-a29c-05a4e363e036','ba1b4d1e-5020-4d16-9959-9afa0def8c5e',27,85,50,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-6-7'),
('c1788082-214c-4837-858a-b187f146aa08','28fbd6ee-0261-4092-ba41-590598774e35',75,85,180,0,NULL,NULL,'786729785-1-3'),
('c17a2ed1-7355-4265-9b8d-0c080e70cc91','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-24'),
('c17ae8e6-4b7e-496d-8271-10cdde7c264b','cacb1c7a-8595-43bb-b1ca-40b46c29dc4d',94,70,182,0,'2025-06-11 13:14:43.208','2025-06-17 16:02:34.544','976765698-1-2'),
('c17d33b8-d088-4827-8590-10fee2eed0fd','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',63,62,78,0,'2024-09-06 12:28:27.824','2024-09-12 10:53:41.136','655200069-1-10'),
('c17da1d5-fd62-457a-b4ad-e12c46e178f8','8e39c973-c918-4ebc-bd24-9e7fc61de240',102,73,52,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-9'),
('c18001d8-b4d4-4d4f-b21e-e82a25ac38fb','8076bb41-df9d-4c3e-b002-8df21ddafb0a',100,20,15,0,'2024-09-06 12:28:00.235','2024-09-13 16:38:28.325','449281517-1-6'),
('c18129b3-2735-4f35-ad9f-c268f1e6f692','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-5'),
('c1831abf-60fe-43d5-802a-bc8d8ccc25a1','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-24'),
('c1833af5-c8f2-4b2c-8a3a-802bb81787b8','da854db4-c9fe-4508-a673-92723239b20f',0,0,0,0,NULL,NULL,'412346984-2-3'),
('c18bbb54-15ba-424c-9f89-8283d6751de9','0976117a-ad1d-4f63-9831-bac0228939d6',53,100,73,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-1-2'),
('c18c35c6-96e3-47f8-806a-e4d0b982e3b2','e05413f2-5977-46d0-9d34-bb6b98ce2e4f',97,98,70,0,NULL,NULL,'371456634-1-3'),
('c1919864-6184-4014-be08-718d6c92c41a','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-48'),
('c198d1cb-2d2b-4082-aa00-a50620543bc1','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-2'),
('c19d6b68-5f1b-4d72-8f09-5577e49f2974','ca2466d1-9a83-4f57-8f76-f5ddce302e04',21,155,141,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-11'),
('c19e20db-d526-464b-8e8f-aee293c94a52','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-109'),
('c1a0cd32-1764-488f-99be-89274f9f3cc9','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.706','2025-09-23 14:04:07.289','221225501-1-1'),
('c1a209d4-e973-44fd-a335-b6b7f4b62c49','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-1'),
('c1a3aace-0c32-4df6-a6ea-cb7de1216d48','6ece3da6-36dd-4090-9715-e7c90799e5fd',53,76,102,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-3-2'),
('c1afb9d4-4d22-492d-ab2e-a865705b37a1','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-62'),
('c1b33124-6338-44b2-868e-b24ccd9a03b7','8d77ac35-40ae-4d32-8c64-07f636272862',76,100,53,0,'2025-10-06 07:10:11.239','2025-10-15 08:24:52.146','745810889-1-2'),
('c1b5dba7-bca7-4aa9-8a8f-8f31c9845702','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-55'),
('c1b61a6b-afcf-4136-a60e-87b066222367','5338996f-0387-40ed-ac42-1d89b6d6d1fe',236,110,80,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-1-2'),
('c1b62a56-57bf-41d7-89c0-686017c8ffc7','6b455790-a8b4-4d0a-a014-f3587ba053d1',30,30,213,0,'2025-06-21 04:33:42.544','2025-07-02 06:17:15.323','69529713-2-1'),
('c1b6497c-180b-4c9d-92fd-ee1bbd33c797','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-18'),
('c1b9accd-824b-4449-b73c-ed123d77e1e2','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-30'),
('c1b9b1d1-6143-4aca-99c4-ebfe6d24b5b4','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-99'),
('c1bb9e02-1332-428b-9eee-885710582d2a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-7'),
('c1bc1d9d-4c7a-4dba-9865-5edf206cbd1a','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-5'),
('c1bcff01-ee50-468f-aaac-22d11b6c8ead','9b274431-45b4-4bea-9a3a-47a596873335',93,225,65,0,'2025-01-04 10:47:38.056','2025-01-11 07:53:51.697','517512652-1-2'),
('c1bd31ad-4b11-4932-b57e-f272131f2df2','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-79'),
('c1bf6fd4-d657-42db-b8d9-34cfb85ae59b','220fed8f-f96e-4af5-867b-ac05d11bda6f',47,38,33,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-22'),
('c1bfc172-38a8-4b4d-8a4f-c1afe5861b26','6302f68c-26c4-4a31-853e-80b9d1ba59ee',95,60,30,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-31'),
('c1c004c0-8ea2-4346-8c7b-d6b0f6b4704a','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',54,81,103,0,NULL,NULL,'478702481-4-2'),
('c1c3521e-4ed3-437f-aec1-a276be2fd4bf','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-8'),
('c1c8dd7a-8d80-4c08-b5ca-4aed399d7627','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',86,58,8,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.071','412586204-1-136'),
('c1cb80b7-5154-42f3-a709-86062730dcd3','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-72'),
('c1cb8a71-e61c-464e-beec-7fc64ac500f8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',156,54,6,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-137'),
('c1cbc069-5e0b-4c83-91f9-231ca6ea3f41','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-3'),
('c1cefa7f-9ef0-4883-90ae-f3a009570d5f','3c1c7892-5b0f-43f6-a6f0-8f933b1d36d9',75,105,228,0,'2025-04-30 14:29:06.541','2025-05-13 09:06:07.341','910187142-1-3'),
('c1d23154-44c1-4017-bc99-8f2e36f20702','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',255,59,11,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-28'),
('c1d3f592-ca63-428f-b68e-e9eb16ee60ba','0a43887a-12ae-4e51-9586-f10e42c3bca6',121,190,17,0,NULL,NULL,'011399882-1-6'),
('c1d81493-15a6-4a18-815d-557d44bf4f07','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-15'),
('c1d8b3b0-b20c-48ca-ac2f-605f433d0c7b','841f7f01-a7cc-440b-859e-dea7f085dd74',180,36,200,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-7'),
('c1dc60d0-6773-44a9-add5-6b10023d68fb','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-26'),
('c1dccabf-912d-4660-a985-62855042f0bd','dde50bf6-1fed-4426-9d6e-ef17ca7f8b03',70,55,60,0,'2025-09-18 15:48:52.001','2025-09-30 18:47:48.888','478616973-2-2'),
('c1df79c7-980b-4bc3-bd50-5b2acd3a2a51','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-6'),
('c1e07083-d89c-4607-84d5-d952878efaca','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-3'),
('c1e4aa40-3719-43cf-bc27-48d1a9707966','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-84'),
('c1e61ec2-bc3c-4cf5-8de9-29d3236a9f29','546ad3d0-25c2-43dd-9443-e48b8e5b6530',50,40,15,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-49'),
('c1e78eeb-d93e-44ce-9854-0030a30d63d2','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-67'),
('c1e920f9-55fb-47d9-a54a-271eb9f75dfc','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-3'),
('c1ed0016-9189-46ce-b739-2ade71eba20b','e5351842-f251-412a-b144-4f748b1a9359',132,93,65,0,'2025-10-25 08:59:08.075',NULL,'351519592-3-3'),
('c1eee6af-451d-446d-84b9-c61d0b9ac5bc','3ee7efa6-3558-4b02-a610-7981c42e78e3',85,80,65,0,'2024-12-01 06:47:55.166','2024-12-12 07:41:31.232','614352-1-3'),
('c1ef341c-8e58-4d89-b3e4-bc2675c3b268','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-90'),
('c1f0bc25-fa9f-4490-b6b4-121e342f0f7c','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-111'),
('c1f3c768-38a3-4912-bd21-aa54b64af2ee','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-13'),
('c1f5936d-3634-4afb-832b-cd138fb1f056','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-9'),
('c1f630c8-7695-4e5b-baa1-8c929e0c1605','6c7e248f-e036-4edc-a8fa-16b68ce11026',0,0,0,0,'2024-07-30 14:58:34.744','2024-08-07 08:41:59.030','454592303-1-14'),
('c1f6d9a8-43a0-4255-853c-bb026d008c6b','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',85,61,61,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-11'),
('c1f95f0f-5565-4bd5-8500-534397a103ab','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-45'),
('c1f9620f-e55f-4790-bd6f-bc5174d89628','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-61'),
('c1fb00d4-065e-4aa0-9abf-ff3bbec37452','80b1233b-a544-4cfa-b3c0-d621b23200b4',123,123,65,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-1'),
('c1fc75c4-9af1-4623-84f4-9cfb14ff80d2','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-33'),
('c1fd0068-1d44-4c8e-aa3d-d84f97c4c28a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-106'),
('c1fef4d1-9020-4b36-b7fd-dbe690d61384','a78536c6-c5ec-4e6f-9f6a-e893d5c6bb4b',86,86,10,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-3-1'),
('c201226b-23c7-4205-8ff6-be374ff00a57','49b0262b-aeb4-40b0-bdcc-b5461a64c972',91,9,44,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-7'),
('c201fe2c-83ee-49f9-a418-99009544b2bd','64592fbb-c17a-4ef7-81fd-28e6bc8413a1',235,100,85,0,'2025-02-15 13:31:55.346','2025-02-23 09:31:03.540','897291641-1-1'),
('c202f89e-2d8d-4768-b050-f1ed04387519','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-22'),
('c2045958-54f4-41b8-bc03-31c3a35e5259','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-9'),
('c2088398-c069-4e19-8e13-2e9ad3b99a65','3535d433-eb38-4879-84b4-dbf8410809cd',13,168,56,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-27'),
('c2094d23-6409-4d65-bfa7-df344a38e33a','76950465-2d57-4238-80c7-51ba7b1cd7b9',123,228,60,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-3-1'),
('c20a8992-e77b-4b9d-8a4e-798a774790e0','368574ad-455b-429e-98df-eb01c78f0d8e',76,55,32,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-5'),
('c20d15f3-c70c-4dbf-9022-9ada7e1431ec','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-14'),
('c20df92c-4639-4d29-93d6-b4578913eec7','886e0e1a-c599-47ba-bacc-c329212cc55b',20,27,40,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-5'),
('c20ef5b8-158b-45b3-9752-fbe24309256f','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-30'),
('c21177ba-21ca-4f7c-bf89-f2ebad093bf9','cae76a5c-9c58-4a28-b642-a8f3cffa00e0',80,232,97,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-4-4'),
('c212f81e-04e8-4f70-bcff-49957bf200d1','6302f68c-26c4-4a31-853e-80b9d1ba59ee',45,45,50,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-32'),
('c214b704-4c35-4258-a107-2bbe33515b67','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-4'),
('c2159648-4101-42fc-a267-eeb4d3f0844e','50443669-b15e-4cc6-9bdf-b91285138cc0',200,160,33,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-2-7'),
('c21aacdd-43a5-4766-9cdb-5ee699baf7bf','8b053eda-bba1-4f32-b6ec-244e823db5ac',44,44,73,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-6'),
('c21b0757-c562-49ae-b18b-303f83ce5355','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-4'),
('c220e7de-9fb1-41ea-b6d5-002161fe28b0','db7058ef-de6e-444b-b25a-dfa474ba7bcf',92,92,5,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-11'),
('c2225055-b414-4343-b9e5-036bc87422e4','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-10'),
('c22714e4-9b4d-46d6-a167-f6ac2cd06fc8','d2ff9c8d-4639-441a-9d87-f69bec139d50',95,80,240,0,'2025-05-28 19:09:12.965','2025-06-05 12:35:03.972','517337381-1-2'),
('c229231a-dce5-4850-8f33-f11053999c23','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-8'),
('c22d90c5-74ac-4bd8-9efd-7effeb21a858','8ccdb1f8-160d-48df-824e-2c174e594970',103,30,201,0,NULL,NULL,'428172853-5-1'),
('c22eb28b-7e67-4fcb-97cc-a8092bcd2168','d0382f9c-aaf0-441c-b336-44000b89634d',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-4-3'),
('c22fa851-bb51-4c31-99d4-5a9a1c509e5b','c9be6ff4-b867-49bf-9dad-f44d6eebbb47',93,6,172,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-2-3'),
('c23480b3-895f-4987-8a33-f766532de529','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.355','2025-01-08 20:29:02.152','735384295-1-18'),
('c236fdfc-36e2-4f09-922d-7878c840d381','1d4d748c-8215-4966-9c01-ecb14e0334f4',0,0,0,0,'2025-02-15 13:31:37.842','2025-02-28 17:30:36.364','478885043-1-3'),
('c239d7b6-f3f3-4c5b-9cab-f6188de2f3ac','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.551','412107970-1-160'),
('c23c9bdd-a253-4ac3-8650-4714aa5f8456','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',51,51,77,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.750','61378160-1-3'),
('c23ddc32-8be7-4379-a762-cd724e070185','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-15'),
('c23f0013-fff6-4ee7-a5a3-47dfa0d673d6','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-1'),
('c2442a1f-8639-44fc-8057-9c0872a82062','9affc7b1-09c4-4e84-b48b-d0c117c421b0',100,106,10,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.902','412280381-1-50'),
('c246a232-19c4-4cd0-906f-c0707c350cb9','b4035fe5-266c-42fa-8614-d1d476373fac',96,198,7,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-2-4'),
('c247d2f3-7998-4a6d-be22-0382470575bc','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',39,63,16,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-138'),
('c24838ca-28a5-46e7-8873-df15af9b0551','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-101'),
('c24c3ba9-430d-49be-adb5-51b571997586','99f3c807-c2fa-4316-8a01-93a1eeeac0f9',90,22,203,0,NULL,NULL,'613868869-3-2'),
('c24da587-7cc4-4955-b85e-6290648345a1','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-29'),
('c24e4115-29c7-4c12-a074-706931b84861','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-32'),
('c24ecd63-d792-49ad-a20d-419aa3f1103f','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-27'),
('c24fd27a-1e94-416d-a06b-e876e60e2056','091fc5f3-cafb-4a56-8101-89c4a22e01b6',0,0,0,0,'2025-02-23 12:38:58.756','2025-03-08 13:58:12.078','517291063-1-5'),
('c2503d81-ffd6-4f76-8e5d-c86e6b387037','4a6dfde8-1755-4803-a0c7-3fa8ea5810cc',53,65,80,0,'2025-07-19 07:52:17.940','2025-07-26 21:25:24.118','598250504-1-3'),
('c25133f9-50f5-4c3a-8afb-1cb189b579c9','a5626ae2-9a5a-4401-9095-a368c22814f1',70,45,32,0,'2024-05-08 18:43:37.957','2024-05-17 18:53:05.584','42845475-1-27'),
('c2544bb3-a305-4710-9060-dac878d5bfef','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',49,10,162,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-12'),
('c257f5ac-a847-421a-941b-c41785cc6464','8625abf2-719d-4d7f-b206-16948b318b8b',180,55,13,0,'2024-05-29 10:12:16.716','2024-06-10 13:50:39.163','100972804-1-22'),
('c2596033-3487-46be-bff1-2a121bda5649','ac2b9be2-c0bb-4704-9314-44e3ed793e24',78,45,45,0,'2025-08-14 10:05:27.421','2025-08-27 19:34:52.034','334873891-1-6'),
('c25a72dd-cc2d-4d45-9580-3279ba19bc24','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-79'),
('c25aed7b-ddf7-4d0d-b53d-c4a56eb299cd','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-14'),
('c25e934d-f339-4c8b-8c7f-e3dc0066f0b2','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',70,55,112,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-2'),
('c2670070-4403-4cb2-a94a-bfe8dcde0cf4','be66decf-7f30-4b07-b179-31985aca45a6',95,235,8,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.887','478659791-2-2'),
('c26aab1d-cbcc-4dea-84be-a1c7f5ceb426','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',213,46,5,0,NULL,NULL,'501168544-1-7'),
('c26c9b46-2f64-4975-9ff9-2bb88605119e','6d91e76a-f3e3-4919-97c3-3c1c0d189689',73,53,64,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.067','982973548-1-1'),
('c26d0c8d-3caf-4455-8d29-52eaaa75ddb5','d9c8afa6-f5f8-43d5-9ac6-960a71010d4d',65,65,95,0,NULL,NULL,'982572348-1-4'),
('c2731342-6b27-4218-aebb-8c52c687c394','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-25'),
('c2731e26-3171-4bf9-a1b5-8aaa1d730e82','0ca7b5c8-7608-49bc-9057-d56d835fbea5',85,75,80,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-3'),
('c27ad8f8-888f-44a4-a0c1-a84d9f172068','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-29'),
('c27bbba1-db11-425f-bae8-25bd30028602','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:54.425','248135683-1-172'),
('c27be2b7-d8f4-48b7-9d4d-7cf50a50fd8f','7acd6dce-eb48-4bdb-a5db-f420848c1414',171,42,32,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.068','982973548-2-1'),
('c27c019a-c071-4fc4-b786-cae57e2f787d','5e418100-d855-48c0-ac4b-19a956b8ef44',55,25,55,0,'2025-09-02 14:48:55.023','2025-09-12 19:46:30.502','583643470-1-4'),
('c27efd48-0187-4604-9939-f8a3641ec2d6','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-15'),
('c2831a0a-71d3-44a2-99a1-dcbea4ddd6c5','719c1517-1488-43e8-8631-14bcd14307be',57,76,103,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-2-1'),
('c2850e9f-e13a-4f33-b2ab-c3cf12a2ca3d','d364225f-466b-4bf4-be94-78a3b92ff966',96,7,205,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-4-3'),
('c286190e-5a45-4c56-b8e6-20b16aec9b8d','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-8'),
('c286b2c8-83de-4c97-8174-f01d64452f93','6920e5cb-d019-4a3c-ac52-1b22d89def39',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-2-2'),
('c2880f2e-8629-4545-8921-d2924cfc96ff','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-133'),
('c28f274e-4812-4f34-9030-34e9bf506beb','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',55,63,15,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-24'),
('c28f92f3-4d70-4991-aeee-4fed0294c460','7dad2fb3-b825-4f27-a68d-4543cd478c32',247,8,104,0,'2025-07-19 07:52:13.331','2025-07-28 12:02:44.192','515103460-1-1'),
('c28fcf19-0d00-4b7e-bc47-6416c2584bc5','bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1',60,41,12,0,'2024-10-23 14:11:46.938','2024-10-31 12:05:38.042','501848451-1-5'),
('c28ff25f-4fc5-4520-b54d-54b99ef5b1cf','7defd633-f7ab-424d-8029-028d1b045752',196,98,15,0,NULL,NULL,'501119446-1-5'),
('c290a86a-66f4-41d2-8bd2-88315c7f9bf9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-137'),
('c290dde6-47e0-4e02-97ac-5c98e116e78a','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-100'),
('c29c58c8-0b38-4769-9da1-10f444bfb729','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-25'),
('c29cf40b-0651-4d41-8152-41db713ebed3','6105a5ad-ab0b-4b69-b796-281a85aa1c1e',57,82,110,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-3-2'),
('c2a451f4-d5f8-48a6-8289-866ed0f9aac1','3fc759d9-3801-490b-bbad-23f2ff290b97',65,56,100,0,'2025-03-24 16:02:02.573','2025-04-01 19:42:23.230','613669036-1-4'),
('c2a959c5-f747-46e9-ae31-afa4c91dc8d7','44fe0660-a6fd-46f2-b992-d99aa0539ddd',51,51,77,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-1-1'),
('c2afbe1b-d941-49c9-807c-0f23c7348369','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-8'),
('c2b128b4-8448-4d35-bf39-cd8833fd3361','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-1'),
('c2b42365-6b0d-4089-bed7-e47f32c035e2','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-2'),
('c2b4ba1a-3d23-46c0-8a92-4d5c25cff926','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-10'),
('c2b52b1f-cd94-4bb4-ac66-51caa3ec2d80','816c1e88-40bb-4ba2-8df2-ca3765e01793',56,82,100,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-3-2'),
('c2b77dfc-7857-4e35-9edc-def74cda4761','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-55'),
('c2b9e86b-c4b7-49f0-8b79-544acbe314ae','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-103'),
('c2ba4299-f83c-4ba0-a644-217a6a6f1111','0009aeec-e682-465c-b701-363a3ef377a6',46,5,200,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-66'),
('c2babc9f-f7f1-444a-bfb1-a15cff2004ad','7f7994e8-0c66-45a1-8846-76386ada2b59',76,46,46,0,'2025-01-11 15:20:19.719','2025-01-19 14:51:47.850','98274489-2-2'),
('c2bcaa81-d7eb-4cf4-be2a-1b7db0d2d841','daa88a63-2ece-4786-a082-938c1a50dfc2',100,80,70,0,'2025-02-15 13:31:41.746','2025-02-27 16:43:01.175','910759399-1-4'),
('c2bfd07f-12f7-4834-99a0-efd2eaaea242','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-3'),
('c2c72a64-c7ff-49cb-917a-2522d5abb5bb','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-11'),
('c2ca4b82-dd06-41a1-8299-9b540f5e42ac','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',83,100,70,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.394','449644504-1-9'),
('c2cec5ff-450c-4d26-9bbd-1aed6a464fa7','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-17'),
('c2d0e542-e342-4d37-af2d-88d12c68fc77','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',245,95,70,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.536','614766744-1-2'),
('c2d420d3-09fc-4e88-9226-a7f796ea6cb3','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-102'),
('c2d64f50-1d27-4a1a-bd34-f17cb3c46da4','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',10,43,140,0,NULL,NULL,'47816855-2-6'),
('c2d67904-4395-4cbf-aebb-2137f3ce39b1','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-116'),
('c2d7d337-0c85-44f8-a943-0ae12947fabc','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-6'),
('c2d963a6-eaf5-41cf-89c6-1a0ee19ffc10','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',60,58,30,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-25'),
('c2dcbb68-3a29-40e3-a199-6a0d3e41012f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-133'),
('c2de0f71-4228-4a8a-a694-e38e1936634e','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-4'),
('c2de4311-f57c-44af-8da3-dea5f9fdd37c','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-1'),
('c2e08022-7309-4e77-922e-502531d7c1b7','81610c29-0bfc-4279-b20f-0e7aaa372942',73,54,100,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-2-3'),
('c2e428a3-b231-417c-9bd2-dd00a950b4b3','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-8'),
('c2e6db7d-de96-40a5-8678-f3787b050574','ec048287-78e2-41ed-9182-4554beb97192',97,50,70,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-3-3'),
('c2e7ce55-cb0f-4d37-98a9-83f90f530fd4','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',60,97,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-5'),
('c2e9b7a5-c065-48ab-b8d0-577c60c61555','30ffce34-638e-4afb-ac90-2f44edfa9b3d',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-2-1'),
('c2ea554e-f1b4-4c6f-8872-31a5cfefad87','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-158'),
('c2eddd0c-a8ea-43f9-a7fd-6035b016ec47','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-58'),
('c2f1410b-1b27-440c-aa78-3b8f68e3b9e2','b23cf296-f843-4492-9697-0fd43d657771',106,80,56,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.984','858200454-1-15'),
('c2f1942f-2941-49be-bd33-dab08c3172f8','309be9c3-ebca-44d8-be99-f31ff6faaaa1',235,95,85,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-2-2'),
('c2f599c6-fc34-4a16-959f-b6cab2b7d4de','4b80d339-56b7-49aa-a6cd-61fd58bdaed9',63,63,75,0,'2025-08-07 16:52:56.179','2025-08-19 19:34:10.946','644658399-3-2'),
('c2f5e7a0-6848-463e-b5ae-1104ee80fd25','220fed8f-f96e-4af5-867b-ac05d11bda6f',67,15,90,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-7'),
('c2f61d5c-69ce-4d9a-9186-ffd77190e841','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-6'),
('c2fdd1fc-f1f4-40fb-9f84-dbd34d6f4c9a','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',55,44,230,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-8'),
('c2ffd1be-a421-43c3-a49b-a892e9de95f4','70c34137-1e24-4496-a1ad-0465a945d558',90,135,65,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.646','598263441-3-2'),
('c300764e-498d-48c5-8bdd-c04f3debca59','9dbc2d72-5e19-44c7-86df-bd889dde4163',0,0,0,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.704','786668251-1-2'),
('c3021428-62fa-456a-8c82-7d1467836d54','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-28'),
('c3039b94-7d06-4aa7-8050-e2f40473f673','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-154'),
('c3049660-0501-4ca7-b165-eb80ed1f22a1','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-22'),
('c304f397-b532-4cfd-bc2d-7fede1bb84dd','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-35'),
('c3069170-b273-46d5-91b5-f47ad1e87b53','f8e899ed-a330-44f0-9263-2af1e0da52d0',29,29,180,0,'2025-10-20 07:18:12.638',NULL,'531606130-4-3'),
('c306b1d6-7aeb-41c5-ba66-9fd57ffe5079','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-20'),
('c3073722-930f-47f8-9c81-c855acc18750','6dd63c3c-43ca-49f0-9b2c-7b78a1c3be43',100,93,80,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-1-3'),
('c30e8a93-2fe4-4cd4-82c2-5dbf1e5a2bee','7c09f776-ffb6-47c8-8828-61389547804e',74,40,40,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-14'),
('c30ed1f8-2cdc-4f02-bc24-696c5574496e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-59'),
('c30f7c5b-9d04-4fd2-86ac-3d7817154204','5ea4b207-b05c-4931-bbd1-648b6933aae5',230,65,95,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-25'),
('c30f8a88-6765-4e16-aa1c-1e5cef955194','1ef8b91f-e8ea-475e-b299-b11ca4ae6186',43,44,74,0,'2025-07-29 12:58:31.228','2025-08-08 14:07:53.364','371887346-1-2'),
('c3153ffd-8753-4506-a87a-0459918c72f6','6053785d-1d29-4e11-800e-efc4fb955f66',65,66,86,0,'2025-02-15 13:31:56.436','2025-02-23 09:30:56.747','127253098-2-3'),
('c31b1fda-5c6b-4941-bf4b-225d377b8aaf','63f52e46-9697-4d08-a5bf-28ba3fea6518',7,123,122,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.763','371913094-1-3'),
('c31caef7-635d-4bce-baef-0432883497a9','3842edfb-94f9-4f7c-b110-2ea10ce622e7',70,100,80,0,'2025-09-02 14:48:28.592','2025-09-10 07:23:35.121','644758410-1-2'),
('c31d13de-5994-46ec-bfa7-04237a228728','ca465cdc-1a1c-4dc9-8703-e249c099992f',0,0,0,0,'2024-04-23 10:31:48.539','2024-04-26 20:12:15.906','614859961-1-4'),
('c324183d-f6cf-46e0-b157-da0435ec734c','7defd633-f7ab-424d-8029-028d1b045752',148,10,48,0,NULL,NULL,'501119446-1-31'),
('c32823f5-843d-4a9e-b76a-8c0377ee6a0d','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-54'),
('c32ac863-bd18-484e-8915-62fc91112039','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-6'),
('c32e484f-675c-408c-895d-1da9a9d83ff4','2a5dcb8d-0e5c-4a91-9468-c2c1d10bcbdb',57,62,83,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-1-6'),
('c32f0a12-0280-4fcb-9d46-f258f831a847','a093806d-acc0-44ad-9bbb-8e86c9de22b2',94,95,80,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-1-6'),
('c32f1577-7a14-48b2-b865-e8a519e1f094','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-220'),
('c330f472-182c-467e-a4df-10ab5dd14902','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.877','412378459-1-5'),
('c3355b0b-065d-416f-bcd6-2fdf366d5d6c','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-7'),
('c336db71-5d25-4fc7-ab47-55722a6e6fb1','50c36b71-da18-4aef-bde0-b5494b1ade07',50,85,85,0,NULL,NULL,'982759064-1-1'),
('c34051be-d1b6-4738-a3da-0f55250395b9','af69c5a3-87d3-4548-a650-720b69a4fc69',59,212,6,0,'2025-03-11 18:06:04.348','2025-03-17 21:46:07.821','614143415-1-34'),
('c34840a6-48e1-476a-8d57-09e783b5d18f','090b9a06-aee0-4c02-b626-f3e2002f0fce',50,49,39,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.851','750717756-1-25'),
('c3525f27-e671-4563-bead-ca6f9cac534f','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-191'),
('c3530ba8-8cf0-47c2-9cab-1faa58aed6ab','98fdfa28-34b5-4c8c-85d4-536b18c03e3b',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-2-1'),
('c355bf2d-d621-47fe-bbe0-317fefae88d2','94d4fd15-f663-40b8-8ec9-f93a5cde757c',45,11,70,0,NULL,NULL,'614364554-5-10'),
('c356805c-6ca0-45f4-9acb-f5918cfed1a6','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',97,200,7,0,NULL,NULL,'808384982-1-3'),
('c35f10ba-bb2c-4e97-96a8-68fc8f541d9d','d50b8642-d5c2-4775-8220-5d5eec095d94',0,0,0,0,'2024-03-31 17:55:06.956','2024-04-12 07:17:21.202','428991499-1-3'),
('c35fd7ba-7572-41f1-b5c2-13573be4a27b','4a592bc4-f8db-45e9-83f7-6c3990c1cffd',110,56,82,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-3-2'),
('c36038b2-3a5d-4ab7-b387-756614210bcd','e19ff5c0-c85c-4ece-a9d0-cb1eeeb4c292',80,90,206,0,'2025-10-20 07:18:14.790',NULL,'61340935-5-1'),
('c3627d01-c67f-4fd8-88b1-d663dc66e55b','56f86587-7355-4e49-9eb5-727edc1be570',210,60,5,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-16'),
('c3698eb7-06e9-4a5d-8b87-85cb4b6932aa','646ed6b3-722f-4d60-9a63-564fc0e1d364',0,0,0,0,'2025-05-09 18:43:38.267','2025-05-22 15:23:16.748','745865715-2-1'),
('c36a926f-688a-45b1-9dcf-8cc9793914b5','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-8'),
('c36c9b03-d5c2-4a4f-8e2b-7d1d53ce2711','31aeaee6-0983-4996-af4d-a37e42a0a6e6',75,70,85,0,'2025-10-20 07:18:02.414',NULL,'817682643-2-3'),
('c36cc471-4dcf-4df8-b74c-213d46a9520b','138edf36-d166-4335-8560-d9873886e31c',50,10,217,0,NULL,NULL,'745189997-1-20'),
('c36d9fec-19a6-4a60-b770-05bc11168cc3','77cd884d-f138-4552-b446-4f7389e3ccfa',76,129,7,0,NULL,NULL,'221394764-1-2'),
('c372f925-4da5-4b44-9424-6dea8118e878','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-26'),
('c3740c7f-94eb-458e-8e88-2aff4cc0dc7c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-10'),
('c37b04fe-36de-411e-8fd2-c341db181b7e','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',85,52,104,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-5'),
('c37c0a1a-9e93-4fd0-a79b-b73c9bb82f2d','7311f1e0-e2be-43dc-9e40-f94a010e8939',230,100,90,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-44'),
('c37d55f3-6fe3-45be-8a38-520aa63bff00','f395fe5b-aa87-4cd3-bf35-762e8b234161',54,50,6,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-1-2'),
('c37ef52b-4877-4ccd-836e-748fa3af3d2e','2027d4e3-00a8-4050-97b9-4dcf16140122',100,120,65,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-1'),
('c380e43b-3c47-4891-a2e3-e2f31c24de2c','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-2'),
('c380f8ae-6124-4818-aaa7-c91ef3206dad','687ef888-f53d-4ec2-b170-8d3d356fa1e2',124,104,55,0,NULL,NULL,'745105230-1-4'),
('c38144a6-edea-40a3-8e8a-ab712294323e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.446','570899680-1-84'),
('c382ca6c-01c5-4990-9702-37189bd41414','da854db4-c9fe-4508-a673-92723239b20f',0,0,0,0,NULL,NULL,'412346984-2-4'),
('c38346ee-81a2-423c-90b8-3a0adfeda2d3','3e4d9220-ce76-450d-a76c-9787b1f4433f',54,20,75,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-7'),
('c3841866-5bf3-42c0-9853-ec22eb0b8e22','e5351842-f251-412a-b144-4f748b1a9359',35,22,45,0,'2025-10-25 08:59:08.075',NULL,'351519592-3-4'),
('c38422be-46be-4358-aa8c-cc0677287efd','05af1df3-9a36-4be2-8bd1-773d59e1605a',40,60,5,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-4'),
('c38768e2-7ea1-4587-ab98-df2a66bb690d','c1d9e685-3827-4e27-bd48-754f9c260fa1',47,56,52,0,'2025-10-06 07:08:43.135','2025-10-13 06:40:04.416','675965194-1-5'),
('c38a9dd7-040b-4f7b-84b5-172446a87745','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-8'),
('c39019ea-3cd2-4a0c-b868-8d51a04d67ad','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-18'),
('c3905338-4b30-4e5c-9766-48995dc3476f','79538137-7e32-42e5-ac0c-65c896b166aa',0,0,0,0,'2025-04-15 16:01:58.310','2025-04-24 15:01:41.798','64441153-1-1'),
('c3911966-ad7a-4316-aedf-44a021b7e33e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:37.136','248284003-1-3'),
('c392e3cb-9ccd-4f45-b61f-371bf8ba07d2','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-6'),
('c393ad0a-f24c-4b9e-919f-55f7ad220bd0','637ecf55-0f47-4302-8766-1e0faf2d9852',92,92,65,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-2-4'),
('c393b20c-5d80-4844-b5e0-19ad515ba436','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-68'),
('c39539db-61da-47e8-87bb-3627b0b01815','b78519ec-4b79-400f-a709-a1f09256d30d',67,57,50,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-8'),
('c3984ebe-ad9c-419a-a5bd-d3eef538b965','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-144'),
('c39bb57e-9bd0-4d67-aa33-70e515a89e67','d996c4f8-5b23-4215-8745-02197703fd3a',84,30,55,0,'2025-03-27 08:03:05.413','2025-04-05 22:11:34.360','37176846-1-2'),
('c39d0c7f-4e6b-485a-8b9f-6ad35d6712f6','4aed1165-da71-460e-ad92-7bbd8bca0bad',0,0,0,0,'2024-05-08 18:43:41.271','2024-05-17 09:44:35.365','982653067-1-1'),
('c3a01c81-c6e5-49bd-aab6-16c837ab458e','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-1'),
('c3a3a639-6d18-484c-820c-35d85ff62dc4','ab16c37e-6ebe-4e09-b119-440ce867c25c',75,105,120,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-1'),
('c3a783fe-5dbc-4556-ac08-3c9cca3a66c9','6fcc55d3-2339-4d12-b5e2-e156727c33f9',83,63,41,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-7'),
('c3aaba18-afde-45e1-8990-ea0337167981','0d1a3e09-3b1a-4b24-bfd8-967ad3171dee',25,30,9,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.349','644985861-1-3'),
('c3ae1815-5837-41e4-8542-2935f5834f56','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-139'),
('c3aee23a-f4ad-4211-b8c6-18d2b664148f','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-18'),
('c3b600ba-bce6-4dc2-9ef0-4b0e7eeda643','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-10'),
('c3b7a786-5346-4c82-b680-8fb3d9f501d7','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-12'),
('c3b86759-f9dc-4ff7-b984-24b71515d131','e6bddda4-b1df-4be7-bbd5-63cc4b197736',210,43,7,0,NULL,NULL,'42857810-1-20'),
('c3b8cb91-1385-468e-937a-e41cba6be9ea','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-16'),
('c3bd6328-4b67-440b-9f5e-c9f302d86887','c1b46259-b1d4-4ea2-8b60-ebbe5acfe7f9',92,94,68,0,'2025-05-28 19:08:53.194','2025-06-06 17:37:15.490','817872283-1-2'),
('c3c5bde5-50fb-47d6-b4d2-ce59418be771','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-47'),
('c3d0733e-5b0a-4ae2-aa94-eca4132ef040','90b38707-b6b2-4dd8-8fa2-ac99a8a3b95e',98,194,7,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.219','221511033-2-1'),
('c3d08dcc-32f2-4d36-af0b-32c2aa613367','fb366cd4-897a-4e3e-8964-29b80d563ca4',70,100,100,0,NULL,NULL,'613362697-6-3'),
('c3d6449e-1059-49dc-b554-a21b5df040ac','09ef7abe-b4ef-491c-951c-09430abea134',0,0,0,0,'2024-05-08 18:43:23.581','2024-05-21 18:45:40.660','478685156-1-4'),
('c3dae3a5-00a8-4f31-b4e8-b60c4c6a62bf','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.822','2025-07-03 11:20:12.750','223422825-1-148'),
('c3dc9696-301d-4e2e-88c7-31d94b477656','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-25'),
('c3dcab16-0034-4df1-9c3e-970d33fb59f4','b21c3084-fb5b-44d9-98af-afca01352020',0,0,0,0,'2024-11-02 08:42:19.360','2024-11-12 16:17:08.742','982194447-1-9'),
('c3dfb797-318e-465d-a3a7-0fddd18b16cf','6d2958d8-12ca-41bd-a12b-58082d5c955f',67,4,231,0,NULL,NULL,'614364554-3-9'),
('c3e078e4-805b-44b8-aff7-b5dd67b16982','0bd42145-fdd8-4793-a5cd-a2e404d37142',64,68,6,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-4'),
('c3e26114-dbca-4199-b5b8-eb80cf088720','a455ba66-b417-4781-a6f2-6fce1b8bab23',59,71,20,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-20'),
('c3e4b781-bc63-42da-a0b5-8613fb13e84f','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-28'),
('c3e6ce1c-1538-406b-a653-987ce5c24cdb','07d8311a-40e2-4710-8c91-98b60be2e17e',90,100,70,0,'2025-04-21 06:13:16.659','2025-05-02 17:10:53.232','501703321-1-3'),
('c3e73797-9afe-4d5d-9258-4722f35d207a','ec4d4945-f64b-4a46-a100-92d57c703e18',97,55,107,0,NULL,NULL,'531481098-4-2'),
('c3e9408f-e00d-425d-9f3d-30c7bcc8b20c','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-2-1'),
('c3eb3b24-0ae8-4f67-abc3-4b248036db07','6cee1429-9935-4eae-be32-dc630b6d70e8',100,92,70,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-29'),
('c3f02ec3-2bdc-4ab6-9fdc-45fcae749ccb','272e69ec-f8ef-4c6c-843b-c82f048d0f1e',181,201,30,0,'2025-07-12 09:20:16.837','2025-07-25 10:49:18.047','412383870-2-1'),
('c3f474ac-0b46-4ae3-8f86-ed50271042a7','416e7e24-9084-4530-b3a2-2808d9f33e37',82,75,85,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.165','371514006-2-4'),
('c3f8002a-9cbd-4767-a9e3-4054fe0eff67','9bbd96a6-b7d6-43df-a3fd-6a39a6afe5e3',70,133,6,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-3-2'),
('c3f87c1a-c60f-4565-9694-25cc4e18d686','8254b4b3-ad87-4e73-8ace-4bb7bb3bf333',100,60,165,0,'2025-09-06 01:20:30.429','2025-09-14 13:25:19.013','478161304-1-1'),
('c3f8bf84-6159-4e60-8914-865d8ddb3eb7','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-15'),
('c3fbf25f-ea31-4446-a579-5f6dcd5e7019','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-210'),
('c3fc6106-639c-46c4-9543-02aba728754d','faeed55b-96a4-4881-b45b-9ca34af87762',98,98,70,0,'2025-10-08 17:44:11.185','2025-10-20 06:32:22.650','644742878-2-1'),
('c3fcd63f-b8b0-446c-a7dd-6e4db4f909b2','227c25aa-0bca-476d-a4de-9a7600d7bdfa',9,92,181,0,'2025-10-20 07:18:10.105',NULL,'59874048-1-2'),
('c402028b-a096-4a2f-99f3-7d1b21ec0bdf','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-19'),
('c40288ba-fe01-4257-94ed-431c47a08453','7f086af4-7f94-4b2a-8e93-97605ab16c61',230,95,75,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.687','162733891-1-2'),
('c4033164-f083-4c88-8e12-80146ed9a5aa','84a978c9-68bc-4af6-a5ab-3a6551bbc294',26,19,90,0,'2025-10-08 17:44:02.656','2025-10-20 06:31:57.755','371876767-1-2'),
('c40531af-9e5f-4359-8b71-b2e4735d8850','4e14ca81-6045-430a-9e2a-f633a8c06b61',94,158,80,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-1-2'),
('c4060fc4-e9d6-47a5-af30-6948a3b2fb8a','f95c2298-a038-46f7-b507-fbf48a2c0808',0,0,0,0,'2025-09-02 14:48:34.588','2025-09-10 17:05:30.502','319388100-1-3'),
('c40a224f-1ade-45f9-b8a8-f8d3c755560d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-225'),
('c40c2b5e-1393-4783-b5c7-96281a0cfeb1','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-67'),
('c410ea78-7fdb-41ad-b6bf-9c867802b9e6','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-87'),
('c418d18b-3048-4140-938d-3a54915d0727','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,55,5,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-27'),
('c41bd1b9-7894-46f2-858a-94c71d0d5788','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-16'),
('c41d554a-9ac4-4b40-93cc-c9d3c3000354','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-44'),
('c41f947f-6e7f-4e7a-9dc2-491ecd3d77c4','97afc9fd-6855-41a0-8fbf-b8fe33aa524f',73,73,75,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-2-2'),
('c42752f7-4029-4415-8699-5b8ff470c905','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-65'),
('c42cf578-a09a-4600-9a67-dd69cbb6a543','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-11'),
('c42dff48-b949-4772-ae42-5f1c989a2c17','b1412704-b0a3-458a-a5d4-ae0a217b9f18',232,70,95,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-3'),
('c42f4f38-2acd-467a-aa7b-f38a2cbde657','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',41,80,10,0,NULL,NULL,'644104537-5-11'),
('c42f59b4-8105-46e1-97c1-c051faf49870','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-6'),
('c4342da2-eef2-48bd-977a-fcd062055d0d','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.706','2025-09-23 14:04:07.289','221225501-1-2'),
('c4352834-b7b7-44cf-b651-5d2c5c9077b7','f88c3e53-b711-4bcb-aa3d-9543580054cd',91,192,4,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.306','107623614-1-15'),
('c4358b0c-e6be-49a2-aef5-e3ca6a727035','a24499c6-56d6-4763-8efc-1e1fb174ea29',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-2-1'),
('c436d845-1c23-46ce-ab65-8f5a80e52863','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-42'),
('c43e0fec-0456-4f46-a623-dce653c65d6c','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-3'),
('c4403cde-033b-4799-bc2d-964517309354','9811dbd3-4c24-47b3-8560-c8e0f8db7d41',98,178,70,0,'2025-03-27 15:05:28.240','2025-04-07 17:19:01.106','371696993-1-1'),
('c4444645-11d7-425f-be13-1c8dfcf09547','e1757ecd-2d0b-4547-ad0b-bd5e6f7094e2',83,57,110,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-2-2'),
('c4446f9c-bad8-4e92-827f-2784de6e70a3','1459d7e7-6dec-45b7-bbb4-412603f2559c',85,95,165,0,'2025-07-08 11:31:08.900','2025-07-25 18:04:56.369','478363734-1-3'),
('c4455a7a-0742-42cf-9049-cc46c19f6984','adba09c2-3268-49b9-b2e2-a2426fbdcc6f',120,92,65,0,NULL,NULL,'976849487-1-3'),
('c445be59-673a-47eb-bdad-e5ab9697d9d4','d44dbc96-5757-49c3-a29c-45760bde9a9f',82,56,103,0,'2025-08-14 08:21:17.680','2025-08-27 05:38:11.984','982496646-1-2'),
('c44645b8-f5bd-499e-88ad-a65a175a9864','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.209','2024-10-13 10:53:22.883','248535027-1-36'),
('c4499c4d-004e-464f-8ad5-ac4be14f856a','5362cad6-3ac7-4876-8ddc-d366e2335688',250,100,70,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-2'),
('c44d3e00-85e9-44af-8f7c-f5d37a47f9ee','cc608bcd-34a3-4342-be6f-46734f0c9313',25,54,20,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-3-2'),
('c44eb277-adce-4b8a-a731-a65969aa70cf','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-6'),
('c450391a-a3b0-4c14-ac6e-28b7a11ebfbb','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-36'),
('c4512664-8191-47b3-864c-554a98c650e9','b4b0a716-b412-464e-9731-24f8bde6af44',65,85,70,0,'2024-12-01 06:48:29.054','2024-12-07 13:11:51.072','982835475-1-4'),
('c451e8ba-444a-4987-b327-a7bd4f7786eb','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.872','2025-09-08 05:04:07.658','478901590-1-10'),
('c455177f-0e9f-454b-87fe-520966036225','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,350,0,'2024-12-28 21:42:24.609','2025-01-07 10:35:32.701','248173138-1-20'),
('c4554423-7ec0-4e5f-81ae-9d708c93cd01','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-189'),
('c455f397-c836-4bf4-86d7-3b6c58b7314f','a7738d79-0b07-40ac-b644-35e9d80b368e',71,7,120,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-4-3'),
('c45a6a0d-1cbc-4ac0-88d4-9225e3594cb2','bb395081-1e96-4f04-a805-718cc5ddc9fe',70,97,147,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-3-2'),
('c45cb02e-96a5-4f26-9574-937ef3345ddb','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.371','2024-06-22 11:10:53.464','319897198-1-19'),
('c45d08e2-24ef-44cb-b802-259124f521a7','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-20'),
('c460e83a-c91f-4a0a-af1a-a4b299d3f524','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.621','478188105-1-8'),
('c462b276-b41c-4199-a9b9-72f3bd9eb4fb','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-70'),
('c462ffe5-27fd-4562-9a30-9f5dcebed809','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.408','465500768-1-1'),
('c468dfbd-7b2e-4d6d-9776-c03c8e61b317','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-10'),
('c46adb99-267d-438c-b17c-8e033298e7de','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-49'),
('c46f2592-ecee-47be-b6c9-2514f8826849','c9b410bf-c39f-4d56-97b6-272196df3cc6',203,83,29,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-6'),
('c470193d-0553-417a-a936-a79525dd1c3e','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',117,95,65,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-3'),
('c4703e03-b653-4b86-b405-cda933d4afa6','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.281','223744518-1-11'),
('c471f31b-b0e2-4dc1-8c28-7063b64f2dc0','0b843397-58bf-411e-9c45-d57a80cdcbbe',0,0,0,0,'2024-05-23 07:27:18.746','2024-05-29 11:21:56.855','449401217-1-3'),
('c474dfd1-ea47-4375-b059-923d2a1b0010','cf5c6387-b585-4f33-a565-829b3e46fd0b',99,240,64,0,'2025-06-27 17:12:29.093','2025-07-04 21:24:47.648','478261120-1-2'),
('c474fd80-6cc9-4266-b731-ab182e38023c','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-15'),
('c476220c-0c44-4514-b913-e1355ae4d54f','e910f08d-506e-4aa3-9c64-2f41a0272e86',0,0,0,0,'2024-06-08 08:00:29.777','2024-06-20 20:15:25.555','745606440-1-3'),
('c479f8e4-1b71-4887-beb6-473d29d455c7','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-3'),
('c47ce10d-0c82-4ea3-a35c-87879f55d143','e5ec1382-ead6-4ece-a830-c08623df48ce',30,98,207,0,NULL,NULL,'64471370-2-2'),
('c47f69c9-8781-4b0b-9c82-988e1f7a5cda','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-10'),
('c480523b-e9bc-471b-9100-83d2e94fd5d5','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-15'),
('c48304ee-37f9-4ed9-aca3-cefead7e3ba6','48327c16-88a6-4dd5-9dc6-0d88b77a9baa',43,43,78,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-2-3'),
('c4838c9f-76cd-435a-8fa8-09c038af0785','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-52'),
('c4851863-596f-4e2a-8e6a-da94a1627548','d15832fb-c5f0-46e6-b8ad-3b93fb8fc893',90,56,100,0,'2025-10-25 08:59:25.500',NULL,'478544570-4-1'),
('c4877da8-465c-42b1-baaa-500d42626641','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-23'),
('c48cf919-63ab-4922-a9ce-c3ce0aa8a265','5c25981f-2bdd-46eb-bd06-9a7ff6ee2869',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-2-3'),
('c490ea9d-d4a9-44f5-b2b0-da8a4cd75d54','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-8'),
('c494708e-23df-40ff-a84d-b3c10cf5131c','4aa5ea47-6bd0-4d67-b370-60ef1d25e633',70,95,230,0,'2024-12-23 12:00:28.663','2025-01-08 20:29:07.045','449665773-1-3'),
('c4954e76-1947-4946-9b5f-c94036e04431','badecae3-eda2-41b7-b1c4-0a0ea4e409cc',52,101,72,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-1-4'),
('c497265e-a8a7-4cea-a27e-348877e9b03f','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-137'),
('c4997761-8ef7-44a4-b5f2-b2fded20045c','b153c580-1fa3-4d05-aed9-d033117f4c17',76,57,101,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-5'),
('c49e834c-fddc-4ae1-9c1f-66863c4243f4','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-36'),
('c4a08286-f1a3-4606-aeef-7e9530fde746','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-230'),
('c4a21b97-c36f-42b2-b101-47d43f9bb569','d44dbc96-5757-49c3-a29c-45760bde9a9f',82,56,103,0,'2025-08-14 08:21:17.680','2025-08-27 05:38:11.984','982496646-1-3'),
('c4a47b9b-0562-479e-aed5-bbeec34f0603','15c24f0b-669e-4030-a60a-786363379a1f',95,197,60,0,'2025-02-23 12:39:29.466','2025-03-04 15:54:31.452','976439318-1-1'),
('c4a6f20a-3623-497a-8920-853198be0b3d','5c42fa66-1197-4462-860a-1846d76f1998',0,0,0,0,'2025-03-27 15:06:14.921','2025-04-05 13:45:31.240','745789797-1-3'),
('c4a7c609-0028-4dcb-8f92-c774efe45070','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-4'),
('c4a7dc6e-8431-4409-988b-77134f6338b6','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-7'),
('c4adda6a-8630-488b-8948-6f05065ff9a8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-121'),
('c4ae0a61-d43e-4420-bfa5-2e631b98eb5b','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',0,0,0,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-7'),
('c4ae18e8-a559-461b-b4ca-860bfd9506c1','6b15c83b-b714-4b1e-9181-451ecb2b94fb',60,57,83,0,'2025-08-14 10:05:53.083','2025-09-01 16:57:20.579','437573248-2-5'),
('c4ae1fd4-b87f-401a-9116-6a604f0c5247','51d9a1e7-691b-4785-b89d-ef4906698195',51,51,50,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-1-2'),
('c4b36806-d9a3-4773-8ed3-058ce40a6622','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-6'),
('c4baf035-8e2b-4984-88d6-5cee38891265','15c24f0b-669e-4030-a60a-786363379a1f',100,56,16,0,'2025-02-23 12:39:29.466','2025-03-04 15:54:31.452','976439318-1-4'),
('c4bb9227-147f-45fc-a866-f602c08f54bf','af69c5a3-87d3-4548-a650-720b69a4fc69',210,47,8,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-33'),
('c4becb1d-9d93-44a5-845e-b638480d9a74','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',51,51,77,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-3'),
('c4c63f52-c1ef-4054-97c4-09dfbf749cce','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-4'),
('c4c7517c-00d6-4ed3-9fd1-1a7e8d834a95','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-6'),
('c4c7ee73-9b33-49d6-a178-11e54f98727a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:55.331','248135683-1-110'),
('c4ca4c0e-9f03-4a84-9af3-e9bd8095ff9e','6302f68c-26c4-4a31-853e-80b9d1ba59ee',104,92,6,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-33'),
('c4ca676f-398a-4ba2-84ba-1209f9c2dc8c','e0cc17a2-4392-42a5-a637-de0f1c60c459',22,35,110,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-4-7'),
('c4cb3f4d-d1f4-471f-8905-a89abe6b7f6a','52dd3c5a-4e7b-470b-aca6-03bb538c76cf',55,97,106,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.710','437442386-1-1'),
('c4ccf7ca-f6db-4e71-b1df-2148160a50ad','2f12110a-a955-462e-9cb6-712cc6e77202',123,46,87,0,'2025-10-02 11:20:32.261','2025-10-11 16:34:04.338','221837026-1-1'),
('c4d3c0ab-79f1-40ad-a751-1ba72930f5c1','08af242e-dc62-496d-980d-0f589dcdea60',47,67,97,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-7'),
('c4d3c7d1-bf9e-4f8a-a755-b9aeaa079ca6','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,46,6,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.912','916836796-1-64'),
('c4d53367-7590-49c5-a813-82465b872734','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',17,174,20,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-12'),
('c4d6c360-5b20-42c9-b5b6-5abfdb702537','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-56'),
('c4d9b212-3a88-43a2-bd38-b0cc96a8eecb','f58e6b9f-d5af-48a2-952b-687f4ff843c8',62,20,94,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-4'),
('c4dc7836-4540-4b1f-a687-067825514ecb','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-110'),
('c4df8cc9-6494-4866-ada2-b07b1ea05911','81b00513-9ac4-4aef-8fee-fb279e70ca3e',65,48,86,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-1'),
('c4ea8245-7205-4166-8716-2de2873f8925','40e81366-8e6b-4b7f-b487-b6d23057f5a5',0,0,0,0,'2024-12-07 09:44:34.551','2024-12-16 21:29:58.927','735520226-1-1'),
('c4ec9702-3c79-46d1-9b8f-968498f7467a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-5'),
('c4ecf51d-726c-44e5-aedd-106c48ab55c4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',57,82,8,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-140'),
('c4f01378-8d66-4587-8b04-8b941c380358','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-100'),
('c4f0fda3-23ef-4f34-a6b4-47923e962eb9','8ac95ed3-d833-478a-bb81-b1337612bde0',73,106,55,0,'2024-03-23 08:36:18.109','2024-04-03 08:28:41.117','982562609-1-5'),
('c4f384a8-6be3-4f20-b2d1-c6244298e4e0','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-2'),
('c4f3abda-1c1f-4f6d-b96d-6125027e86ce','b6d04ed2-f29f-400a-ba86-37b36b0830b2',73,2,192,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-14'),
('c4f3c30c-0c0f-4d7f-b5f8-81a8f5e1739c','72142188-56e5-4fac-8fb4-f7d0f25058ff',100,179,82,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-5-2'),
('c4f692b6-c2ae-4a85-96dd-d73edc698cd5','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.239','2025-05-01 09:52:28.275','371672954-3-5'),
('c4f6c5f7-5b92-4c99-8aee-dfba70e14783','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-96'),
('c4f70e4e-e03a-436f-a764-85c8345d0285','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-2'),
('c4f84eb2-5b38-4214-920e-757e17d8b308','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-7'),
('c4f9f30d-65e0-418c-9768-6054a4b97388','1f9da85b-2a2a-408d-aa85-1cbd194ab93f',82,56,100,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.732','613393068-1-2'),
('c4fcdfe8-4ed5-4364-8b2b-e47ebf05cde7','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-72'),
('c4fd442b-4c0c-473f-b314-1e1edb3530ec','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-4'),
('c50299cd-cbb6-4250-9f96-27fa355abaa4','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-55'),
('c50542ee-6067-45e3-bd6d-0d7f54475fe0','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-7'),
('c5069e74-c308-4c36-813e-21cd64bc85c5','79538137-7e32-42e5-ac0c-65c896b166aa',0,0,0,0,'2025-04-15 16:01:58.310','2025-04-24 15:01:41.798','64441153-1-2'),
('c50cfb85-0bcf-4c5f-8a36-bf62945dd373','c563f86e-fe4d-44fb-b91a-72261e82a6fd',51,51,77,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.195','64422113-5-3'),
('c50d26eb-40e4-489f-ba97-6f4675f7729f','b2cc240f-bde3-400a-bbec-a61085853dd5',65,109,10,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-11'),
('c50f6917-22eb-4dc3-9df6-4cde6f15f963','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',59,59,80,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-8'),
('c5143542-eeda-4494-b3d9-52b66b85d7e6','f5680032-1fe3-4ad6-a948-925ccde94367',52,52,77,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.748','351330330-4-2'),
('c51499a2-5187-4052-b0ec-e5db327a892f','642202df-ca75-465e-8036-f34da2dad54d',47,6,183,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.970','20390821-1-18'),
('c515ef56-8d04-4489-a6fc-cb50be2b8850','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-17'),
('c5180507-cbcb-46ae-94f6-1bd93ad6f4d1','46d1512a-2bfb-476d-a224-9390f3e194f2',66,43,8,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-30'),
('c5191532-58e3-458d-a59b-12e3aeae6edb','0263f7f0-6c1a-4beb-ab78-25d69142647c',45,3,87,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-21'),
('c51a2221-2af4-46c8-9f41-faed0c0455a3','a3b52076-ddc0-43e7-bdcd-781801f338bb',80,80,70,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-3-3'),
('c51aa579-e38e-44e9-b68d-f5b238e02c1d','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-9'),
('c51b3593-c02a-4185-8783-fc3364939dff','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',238,112,38,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-4'),
('c51e047b-7031-49cc-90e8-16231daa7372','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-4'),
('c52465b5-899c-43b5-8bba-69b356e19dfc','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-10'),
('c5283978-1107-445b-acac-ff49ddaaa8d1','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-18'),
('c528e220-2f42-44b8-95cf-6be214c6354f','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-7'),
('c52a3423-f3ba-47d0-982e-b66cc5613e0d','c9afd200-5d14-4c16-816c-282d1b5697af',0,0,0,0,NULL,NULL,'371747945-2-3'),
('c52e1060-8868-4293-87d4-40246ed7b34d','2fe858c2-0dba-4eeb-ac43-17e48df137ca',97,97,65,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-1-3'),
('c52e93c0-6ff2-4486-a3a5-4b033fcad555','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-230'),
('c5354fed-d616-4e89-90cb-d13873277b93','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-2'),
('c536508d-abfb-40c7-8cbb-2d972d59ef82','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.492','027336842-1-56'),
('c536ecb4-8ad5-48b7-b989-b32beac92fb9','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-8'),
('c5373fb3-26aa-406f-82d7-16061fe1b732','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',207,6,38,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-16'),
('c538fb02-c8e0-4034-9f05-172e08c56da6','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-22'),
('c53963dc-ea3d-4740-8322-21fbe5170772','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-11'),
('c53c4192-d78c-463a-a7a1-6695624af57b','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-10'),
('c5422009-f4c6-459c-93ac-a0a7f749731d','6577ac74-e27b-455d-b1b6-383b13e93cb4',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-3-1'),
('c542bde3-6311-43c0-a603-aafbcf896a44','b8e1c00e-2430-4417-9a2f-f583e3a37b18',51,51,77,0,'2025-04-15 16:01:32.250','2025-04-26 17:56:06.990','613786429-1-3'),
('c542e2bb-5752-4b94-8f7c-01169c244a53','6fcc55d3-2339-4d12-b5e2-e156727c33f9',83,63,41,0,'2025-09-26 12:39:34.133','2025-10-09 15:52:46.017','412767922-1-4'),
('c5489d0c-ee58-4980-958a-53f39b00e13e','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',28,25,30,0,NULL,NULL,'504809900-2-3'),
('c54c0c92-ea24-444f-957f-3c2fef4a8f68','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-4'),
('c54d5383-e73c-433e-b744-706f43282acb','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-121'),
('c54db58e-85c9-4b82-a6b1-1ed9d9e06109','9a609c64-d5d7-47f6-a875-badc8cca1ff5',100,65,100,0,'2025-08-22 20:28:35.968','2025-09-03 06:12:11.936','644796083-1-1'),
('c54e33e1-0cd5-49e3-be2c-dda597c2dade','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',45,66,10,0,NULL,NULL,'478739679-3-9'),
('c54fc38d-f082-409d-9bef-1404d9083b81','ed05a300-3f7e-44c4-b954-a6eab482e5d7',45,95,70,0,'2024-11-21 10:29:18.363','2024-12-13 19:00:45.749','982549375-2-4'),
('c550b2b6-bfb2-4778-b3d4-622b1b9ceb60','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-44'),
('c55261ad-6bd4-4312-a11b-d4dd2477dec0','cb031967-3b3d-4215-88a7-f64c5744b388',51,51,77,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.774','644877864-3-2'),
('c553385a-3c9b-4fbf-ab88-fbe1d28b1e3b','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-50'),
('c554a065-dc4a-40f2-acd0-974765b8abec','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-30'),
('c5558783-44b3-44a9-9131-76dba9a68c8b','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-22'),
('c55683e7-53f4-4459-9208-6b5b55f4b526','d84ba499-6aea-4ff0-b177-6f8576e1fcdb',235,97,70,0,'2024-08-31 13:26:36.284','2024-09-09 08:43:26.643','982868918-1-4'),
('c55e2059-ffcf-4c69-9596-d3fae8ea2d79','7fce64f1-d9cf-4209-9183-021aff74eac4',42,43,75,0,'2025-05-09 18:44:14.647','2025-05-20 06:23:59.224','371429381-2-3'),
('c55e9a25-e6f9-4845-bacb-d6410a72800e','858bf458-b499-4eea-bf79-f32ed1c24910',0,0,0,0,'2025-02-20 12:15:08.924','2025-03-01 14:06:52.749','31929392-1-3'),
('c56056a5-ab1b-4563-bf27-3985d588a72b','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-6'),
('c5617a57-f3f2-4a93-ba67-f5c1c6959894','3a133e35-97e7-48eb-8cf2-15d2cfe04475',100,76,65,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-5'),
('c5646a42-b295-4517-be85-39e298734980','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-33'),
('c566461b-cf41-4dd4-92e8-8b0e05bbf19e','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-14'),
('c56c5d79-1290-4b1a-871a-586b5f7bbf9d','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-1'),
('c56c6622-79dc-4823-8ee3-18a64e4079e1','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-3'),
('c56e7281-a886-44e2-b179-dfb3a2a05737','84872db6-122d-4597-b24b-28898f0b0d23',70,32,40,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-2-1'),
('c5743dae-05e4-4d19-8c89-d3bf4549c554','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.272','248450889-1-13'),
('c574b33f-4456-4a22-9faf-9d60abe1257e','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-7'),
('c57576cf-16ea-4608-8618-13e4d1dc12c9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-172'),
('c5764e6a-6637-40d7-8e43-433cfc952a70','a7f92057-6250-4045-97ed-482e9da4c648',30,25,30,0,'2024-12-07 09:45:06.875','2024-12-10 12:36:11.155','501167444-1-6'),
('c5779b1d-60a5-4924-b306-87926d8766ac','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-14'),
('c578328c-d585-4230-8e9c-704730b5b33b','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',102,80,81,0,'2025-02-13 20:43:42.873','2025-02-25 17:03:19.994','449693939-1-3'),
('c57b8a20-dc23-4017-a28a-b863b5a45d70','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-76'),
('c57c3e75-2df0-4baf-9c6a-77d3552be11c','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-21'),
('c581b1ca-d46a-4a17-b203-ff0197a05b87','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-2'),
('c58377ae-16ed-403a-9471-ca1cbc6352be','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:55.947','248135683-1-117'),
('c583878a-5564-4f6e-b6b7-5f199d8b1194','7a97860c-cf43-4a19-988d-d91cf377fd10',94,238,65,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.351','644985861-7-5'),
('c58847e5-1d62-45fa-a302-ec3ada949a1d','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-28'),
('c58d9228-d91d-4562-ad80-7765495a2411','e89e7d75-4967-4c63-9f73-981469e531af',22,30,30,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-38'),
('c59097ef-d0f7-4f8b-9cee-6c1ac1b99139','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-111'),
('c592b4a9-b6aa-4eb8-b998-28ed880982cd','387c0dbb-aaca-4bdc-8257-0a8a920eca0c',96,196,6,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-2-1'),
('c59560a9-c2b6-42d9-89a9-054cb5fca946','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,35,20,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-141'),
('c59d4125-7146-49c2-8e41-dc964d6e3fdb','c080623b-df50-459f-92a8-eb2eaff4030b',70,100,55,0,NULL,NULL,'478350685-6-8'),
('c5a0c510-c75a-4e93-bc43-54dbdba67ff2','779a6028-a955-4e90-ac62-796d1a85282a',81,57,109,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-2-3'),
('c5a0dd75-864a-4d2e-b0fd-8a7bfab00507','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-76'),
('c5a2e34a-cbdb-4a44-a362-1c4608286079','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-5'),
('c5a3b8d5-ee3f-492d-a807-c4e401752b21','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-81'),
('c5abcb79-f039-4907-b46a-7fc7df682af2','555b2841-46e8-45eb-9191-165bb36234f5',100,17,13,0,'2024-10-17 13:41:06.305','2024-10-23 13:04:41.129','982498702-1-6'),
('c5ad307b-ea6b-4549-988a-4238728572c1','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.873','2025-09-08 05:04:07.658','478901590-1-11'),
('c5ada647-c72f-453f-842a-8dcf5965ae42','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-22'),
('c5ae0ca4-04db-4062-821b-1c6680c1a15a','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',235,67,95,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-29'),
('c5b023da-d55e-489a-b50c-f0b147c27ba9','7c09f776-ffb6-47c8-8828-61389547804e',180,95,7,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-6'),
('c5b184d5-60d9-45e6-8f2f-0859d903c4ac','a6b7e463-b550-4e80-81cf-84b6fe9fd920',72,99,99,0,NULL,NULL,'371118280-1-1'),
('c5b82f80-0371-4a07-9bb1-8826829e85d5','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-34'),
('c5bed145-c03c-4843-9e88-561c59901f93','8d348f39-aab0-4774-9035-903836bd3dac',6,98,200,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-2-3'),
('c5c16690-3230-44fc-a48d-f7f57c8d49ca','949e4a7a-6c6c-49da-ae9a-0534ae51f65b',57,82,101,0,'2025-10-20 07:18:14.790',NULL,'61340935-3-4'),
('c5c68106-baf2-460c-ae94-ae1a15e9d3dd','3bc08a9b-6927-40c1-bcc0-c1c07c409f89',97,238,7,0,NULL,NULL,'221963489-1-3'),
('c5c7aa45-5214-4ef3-b4e3-061f33199570','b001e9d1-a47a-4a58-a0a2-441bc4dfa691',0,0,0,0,'2025-10-22 13:07:06.827',NULL,'437540085-1-1'),
('c5ce2c34-5a45-4c2b-aeeb-3a8b235799a3','546ad3d0-25c2-43dd-9443-e48b8e5b6530',49,11,230,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-63'),
('c5cfe6e3-e95f-4be1-a463-e8dfb70d00c0','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-23'),
('c5d0a3e5-4b8d-4714-8336-85487a1d7ddd','e622181e-7708-44a9-8b12-3952b738674c',100,10,10,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-6'),
('c5d4dbe9-e97c-4dc7-802b-7f8fb9774d26','542ee35d-c24f-4975-8b8a-369163028c10',101,55,81,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-1-1'),
('c5d5562d-0148-4b42-b561-58549c3efce1','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-76'),
('c5d6d48e-1395-48f9-82a7-fdf084858e4d','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-2'),
('c5d7b230-7d7c-4205-98d2-e2d745b14e51','e8294ec7-2a5a-4a8c-80e6-f50682fbc147',96,167,5,0,'2025-04-30 14:29:03.751','2025-05-14 06:37:04.347','644739716-1-1'),
('c5dc2e70-2821-4c02-a2d1-98281c58d85c','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-17'),
('c5dc80f3-44eb-4e5f-b808-8f453373d6f0','85db759a-5e10-49be-92ff-a951a588c1a1',98,122,78,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-5'),
('c5df5576-f72f-45fc-b9b3-307788ef1963','fdf057bd-458c-4a9d-a013-560eb90dde7f',52,93,75,0,'2025-09-16 16:29:13.364','2025-10-04 13:36:32.358','437712381-3-4'),
('c5dfb7ab-bcf1-4efd-8c7f-3a30b01e2b41','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-1'),
('c5e0490a-b7ac-46da-800e-9d3b06a432df','585b23e1-d8ef-41f5-b796-16b2dd04a045',99,97,65,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-2-5'),
('c5e2454e-77df-423e-851b-43380618338d','324e00ef-45d5-469e-89bf-811dd1160a35',202,34,50,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-1-4'),
('c5e3afec-1531-41d8-aec3-25d65b32a9ac','25f4965a-c481-4fff-bd08-ac93db0c7623',90,97,65,0,'2025-10-02 06:45:37.292','2025-10-15 08:20:42.154','437694817-3-4'),
('c5e95bb0-b51b-4d0e-9879-b52070716d2e','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-5'),
('c5ea0c2f-3e6d-418c-8301-a240db581acb','5c487410-f906-4e14-a077-9f060026719e',183,40,28,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-11'),
('c5edf57f-ab01-45dd-8b02-9c4ea7f372a2','e163d910-3bea-4675-a310-ead7083f02b8',230,98,72,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-10'),
('c5ee0c44-5e2a-4589-ab70-cbed8eca2080','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-3'),
('c5ef4dac-ae29-478a-b7c8-3e27e2dd8183','ac9c542d-e46f-415f-ba83-e9a5fd0736a4',100,120,60,0,'2025-09-26 12:39:31.312','2025-10-09 09:24:37.464','64413417-2-1'),
('c5f40d5f-7958-4e95-9f6b-aea28000e258','845879e8-205b-444b-9d29-1e0a6fa08784',39,50,7,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-4-7'),
('c5f47005-efdf-4631-bcdd-02e6520216aa','cc7cbe1e-520d-412e-adc0-054062fac43b',89,100,65,0,'2025-10-25 08:59:13.605',NULL,'644769101-3-3'),
('c5fb26b5-2f8d-4c54-8343-8d80828a36fb','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-112'),
('c5ffff3a-fed5-425f-bed4-b4209ecf136f','d29f1072-25b7-40a0-807f-3d4e2938cf5c',112,56,82,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-3-3'),
('c6003967-9928-4425-bb2f-f3f332f88d7c','fb366cd4-897a-4e3e-8964-29b80d563ca4',110,100,70,0,NULL,NULL,'613362697-6-4'),
('c60531d4-eef8-4496-ab13-6ccac9dc919a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-180'),
('c60acefb-5389-4169-833a-e068bf39f033','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.447','570899680-1-83'),
('c60b1567-2d7b-4a05-b275-c951719cb946','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-2'),
('c60b20c2-8426-470b-bc9b-8a127c1e610d','6a308121-6cf9-4384-8446-08182bd669fd',46,16,69,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-12'),
('c60ea1c3-bfa3-49ba-9e82-85fc7de69ff7','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-67'),
('c60ef05f-544f-4ea0-b3cc-a1f1b87050f8','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-4'),
('c6110dab-f68e-426b-bec6-0d113e4cd7ab','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-2'),
('c6128e9a-ce45-4f42-b90e-1a9579c1e264','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-11'),
('c613fa6f-bdac-4c1c-8d48-b5017720f829','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-73'),
('c61db423-0d97-40a1-80ae-7ea86eeab558','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-25'),
('c61e682b-339d-4a4b-b4ea-bff9967014ca','504660da-c27b-41a4-aa56-e6293172b9c3',230,70,93,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-11'),
('c62021a5-6255-4355-a227-9dd316392b16','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-40'),
('c6202e52-f895-4533-bbdf-6d9e0b560b32','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-47'),
('c6242144-bfbe-43a9-88ce-f95b1932e2f7','0e690a7a-d115-4659-895f-e812d7ef4391',0,0,0,0,'2025-04-21 06:13:34.691','2025-04-28 11:59:52.921','745933378-1-1'),
('c6243c56-ae0f-48e7-a077-6d1f13baf229','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-3'),
('c6244400-7dcb-4fc2-8763-6850eb1e0298','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-34'),
('c625c9a1-aebd-4681-85df-87dd97fc5db8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:03.026','248135683-2-100'),
('c626d0d8-b74b-41fa-92af-2c1f9145b18d','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-18'),
('c62bf880-783d-4cc4-9709-7bc72a9556f0','eebe5042-de81-4afa-b4a6-4517e07ad579',105,70,120,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-5'),
('c62f2f1d-1f2d-4a6c-8920-1371814f94d9','7f11042b-3945-4eb3-b37e-a822894de6f5',40,40,45,0,NULL,NULL,'478777575-1-5'),
('c632eab9-9f00-4e8f-a1c7-77e30a8e4751','2be75c1c-2258-4665-a33a-18e6a18fc678',0,0,0,0,'2025-03-08 13:46:01.333','2025-03-20 18:08:08.052','478839575-1-1'),
('c6347aeb-5385-4ee0-9bac-803490ac7a68','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-2'),
('c6350374-c53a-4f28-8af3-2f886a5e5a9c','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-51'),
('c6357d4e-657b-4310-ab23-e782201b39f7','546ad3d0-25c2-43dd-9443-e48b8e5b6530',20,25,16,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-28'),
('c6359899-679b-4a95-b491-b7a24b4d7686','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-32'),
('c6372919-14ad-4f1b-81fe-e0bdd0cafa0a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-32'),
('c63ca06c-daeb-4d5f-b809-75488cb95f3a','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-15'),
('c643068d-489d-4aa7-bc32-be061e0090e8','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-81'),
('c64565f6-de46-4d73-9fd1-652a10cadea1','0dfacf6a-8dcc-415a-9e14-a7dfd830c72d',0,0,0,0,'2024-08-31 13:26:49.464','2024-09-07 15:54:00.265','31912550-1-4'),
('c645f531-ee21-4089-9a29-99f051821494','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-52'),
('c649de1a-6138-46b8-9eae-fed0756e0c95','9866a947-9974-4053-8415-4518842488fe',220,44,6,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-33'),
('c651b800-11c5-4bb7-9ea1-814499a23c4a','a6b7e463-b550-4e80-81cf-84b6fe9fd920',100,100,65,0,NULL,NULL,'371118280-1-2'),
('c6532054-7176-49f3-becf-3841f0a9ee7d','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-77'),
('c65410bf-6db7-43ce-8640-d11c9bc846c9','67953d65-9e42-4bd4-ba82-9abc59b5e4a6',48,124,72,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-2-3'),
('c6555068-6d79-448b-9899-155ce93c28e6','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-99'),
('c6576d28-f3b4-4862-9962-aea9755bbaae','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-23'),
('c65b2c99-18b8-4b3d-9715-75b5e5b3262b','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',200,45,5,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-31'),
('c65c8fb6-b18f-4e07-9a17-1089c27a0854','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-22'),
('c661ad6f-5358-4e55-ae0f-9d3431b4fd7e','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.262','221746947-7-7'),
('c6625ff4-2c10-4907-aff5-eff65e3ba054','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-15'),
('c662ddf5-6f4e-4ea2-ba82-2423d47bc401','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-4'),
('c6632c12-55f6-4768-94f5-e8a1a4db6567','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.288','412746738-1-12'),
('c6645a4f-ce73-4780-961b-9b51e832ee3f','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-4'),
('c664e890-a018-4ebb-b181-3cf1b3067d91','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:56.438','248135683-1-155'),
('c6680e46-8085-438d-a013-a7f5125f54ab','83e81175-cef2-4f5e-adbe-8ca02a747efd',45,45,74,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.948','478687899-1-1'),
('c66a5b6c-f3d6-48cd-90cc-3fdcd56be4b0','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-5'),
('c66bd19a-5f3d-453b-8a73-5a0674482a46','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.063','223441694-1-88'),
('c66c63c4-0bfb-4576-9ab9-89a0e31b06e0','bbc6d966-9d42-48e9-83e4-13afb85a7c33',56,75,100,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-7'),
('c66fd358-a435-43e8-a72f-8bd3add2332d','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-72'),
('c670ced4-0870-4fd4-94f2-88ee9fc5cc0d','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:04.027','248135683-2-69'),
('c67146bb-087e-4bc9-99bf-7f8d2f13e60a','f3909b2b-cc14-43fa-b752-696dc15ac199',70,95,207,0,'2025-05-16 16:33:33.977','2025-05-21 18:42:26.744','43758285-1-1'),
('c674f998-dc49-4634-b4b0-2d9f57322f96','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-11'),
('c675aebf-cfea-40b8-846c-cc9136853194','ca2466d1-9a83-4f57-8f76-f5ddce302e04',281,22,5,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-21'),
('c67636ad-d747-4a80-855b-c0c48125385a','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-23'),
('c677fc49-d44d-4b64-b0c6-192b0d869901','c46208e2-2c19-421b-bced-7443bbea66ef',57,80,110,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-2-4'),
('c67abb49-ca18-4a8d-b229-8258791544a1','6a308121-6cf9-4384-8446-08182bd669fd',228,90,65,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-7'),
('c67f9e8b-9fce-42e3-8e51-a4098daa24c7','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-17'),
('c680a68b-9681-45f7-b62d-0abc2834a070','009366cb-c1e1-44e6-beed-700377a77e26',76,130,9,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-1-1'),
('c6844c9d-e5d4-43fe-8284-d620ddae946c','1868aea0-f631-4deb-85f5-8aa25773bef0',47,211,5,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-13'),
('c6874afe-b1ea-4f62-b52e-4bfcc948e53b','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-3'),
('c68789cc-d7e2-4c01-8c41-bba559c9c55a','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-5'),
('c68895fc-1833-4ed5-aae8-a026dad7b387','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-7'),
('c68b6b84-afca-4ddd-8f51-732eb71e7058','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-186'),
('c69031f2-8282-4b80-8dcf-ee8118f4d516','5acaa9de-dec3-4088-9126-7d8862513d93',51,51,77,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-2-2'),
('c690b645-26d6-4a20-a113-aa06aeb50e47','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-9'),
('c690cd0a-566b-41c1-9282-6cc95f8a3e4a','145fbc2d-f2aa-4de5-8885-821f4b79c3dc',57,76,102,0,'2025-08-25 12:31:56.261','2025-08-30 18:25:10.391','675749315-1-3'),
('c691b486-5efe-4289-869b-8b1bd5df1a4e','a87576e3-14e1-46a8-99c7-1d48360995f5',90,62,90,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-15'),
('c6922e4e-6836-4aad-972b-b132c2dc6739','565f6966-f194-4d7c-8b20-64502045078d',39,23,85,0,NULL,NULL,'478350685-2-14'),
('c6926b5a-be6b-4aaf-b8ed-9706e96dffa8','a4e14f1e-0d5a-494d-ab38-f89b33dcd3d7',51,51,77,0,NULL,NULL,'808443666-1-2'),
('c692ac78-96a4-44e6-9ec5-5642fd8d84e4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-38'),
('c6935acd-e3a3-4ea8-8413-da3eb9018ab0','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-160'),
('c695369a-f735-4e48-94cb-d739a9f1f982','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-6'),
('c6963d5b-1920-4cd4-bf97-3d1edc09e735','5c0848ce-c79c-43de-adfc-f4532526d6bb',110,40,230,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-2-6'),
('c696e366-64a1-49a6-b45a-66a412b80a35','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-6'),
('c697ffc9-c30b-4b16-a872-86cf18473a8e','2e0ffe53-8bcb-4f86-ad33-6c510068ede7',0,0,0,0,'2024-09-10 10:47:01.331','2024-09-18 07:25:11.220','412418230-1-1'),
('c6987691-edef-4bee-b3b0-10fe66395caa','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-14'),
('c69bebe8-72d5-4571-800d-2b184778da9c','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',114,17,6,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-9'),
('c6a0a38b-6eae-486c-8033-c568532c443d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-24'),
('c6a2232f-f0c5-4670-bba9-abc6f7089522','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',95,49,55,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-2'),
('c6a25bd1-2d76-425c-bf7d-b2862dbfd0a2','3a133e35-97e7-48eb-8cf2-15d2cfe04475',230,65,97,0,'2024-08-31 13:26:51.183','2024-09-07 15:53:55.861','455726286-1-6'),
('c6a3af42-2ffe-4d2a-85d7-d6d32743e830','1f9ee26d-ee30-4f8e-ba4f-8f1f3e46bd8e',0,0,0,0,'2024-11-12 16:16:00.771','2024-11-22 21:22:31.805','248904478-1-4'),
('c6a41ba6-c9f9-4940-929a-130e2b8d9584','55c580f2-39b2-4b62-bcc9-c1c4c35132f8',0,0,0,0,'2024-10-02 09:26:40.080','2024-10-09 11:10:56.705','745283309-1-4'),
('c6a41ba7-700b-414b-a855-c61d52c8a4ce','20de256d-a63f-4ddc-9e1f-42653a455a81',102,25,213,0,NULL,NULL,'47856812-2-4'),
('c6a7d08c-89bd-42cd-9d58-fa1e92960d6a','841f7f01-a7cc-440b-859e-dea7f085dd74',96,16,157,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-8'),
('c6aa3bca-2aa5-4b48-94c9-b68bd7c3f7a8','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-6'),
('c6ad35c4-1acd-40ee-b6ce-0780d1ed1296','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-5'),
('c6adbe96-176b-4aa3-83e6-ab077486f419','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-139'),
('c6afd9a3-05aa-40a7-85f1-19c12bbe94a3','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.957','223734808-1-10'),
('c6b0dd4f-3651-4164-9914-51b3c20074a3','72fb9c80-80d1-4a22-84a3-c154b5a3cce2',56,82,111,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-2-3'),
('c6b12510-66f6-48c9-9d3c-90a9b22bfc56','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-101'),
('c6b12ac0-c984-4b67-bdbf-4d40cf3e9bfd','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-6'),
('c6b190d4-505d-4734-8981-0ca7283de984','e86f2f3d-8f0b-4894-8c39-9063af830231',82,55,10,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-16'),
('c6b38d87-a438-4ebc-b0ef-8afe99207c32','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-4'),
('c6b5d4e5-5765-49fe-a389-fe742bca30c8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:57.081','248135683-1-118'),
('c6b685b7-1e16-4e7f-994f-0a7805e41ffa','2eeeec42-3306-4154-bcd5-56e769835168',84,56,56,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-2'),
('c6b95502-801a-4d07-b4eb-bb544b23887f','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-41'),
('c6b97b32-402f-425c-b9f6-4bb0ea13d547','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',45,49,30,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-17'),
('c6c02634-cca6-469d-a4c3-5573459e665e','379323a0-114c-452e-9499-778f51675cf1',51,51,77,0,NULL,NULL,'221383692-1-2'),
('c6c1cffb-18b8-445c-8960-f6c49aa41e6f','9e55f6ba-9fbd-408f-8f31-c85b9997fd4b',98,98,70,0,NULL,NULL,'371364319-2-3'),
('c6c2e7ca-f32a-4ff4-bbc0-fe316338bc50','c71fdc71-df3e-48af-9323-d534b0931ff1',46,19,74,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-18'),
('c6d0d717-75ba-4994-9700-0e963825cebb','5020e987-e02c-4a22-9e93-59bf24e1df3a',65,103,212,0,NULL,NULL,'47856812-3-1'),
('c6d0fab4-a401-4fbd-b7e7-10ad47e7d8c3','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.800','2025-08-25 07:06:53.264','982561254-3-3'),
('c6d11ef3-d74d-416a-8bb7-0b89b352ab14','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-4'),
('c6d75e03-a2c9-4b25-ba9f-b1d1644e0ad1','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-31'),
('c6d81655-5b02-45c2-995d-8357aaeffd9f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-38'),
('c6d9a7ba-3d67-45a7-a805-3adb41c4fb99','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-62'),
('c6de24e6-f298-4984-ac4b-e1c50e55936e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.342',NULL,'22330381-1-216'),
('c6e01128-094c-41e3-a7de-fbad4734b980','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-10'),
('c6e1b567-363c-4fbd-8526-4b37cc6a63bf','a7f92057-6250-4045-97ed-482e9da4c648',232,95,70,0,'2024-12-07 09:45:06.875','2024-12-10 12:36:11.155','501167444-1-1'),
('c6e1fc54-1594-4889-a344-c193e1188ff4','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-1'),
('c6e256ff-57ab-4748-b2aa-7aa024578c53','83371e37-9c5d-4c8e-b554-692e05bd3d90',0,0,0,0,'2024-12-07 09:32:27.530','2024-12-18 14:57:34.121','745671718-1-4'),
('c6e31df8-0bfc-4cc3-87a6-547fd7c74081','3988ea20-dee7-4b87-8731-bedc6f18d112',52,35,49,0,'2025-02-15 13:31:49.694','2025-02-26 08:36:28.151','127865742-1-5'),
('c6e3be74-0b6b-4bde-81aa-1bbbb016cbe9','14fb0987-4091-41ac-acc5-918b7d5ce9a3',35,116,202,0,NULL,NULL,'371216639-1-3'),
('c6e4e043-8dc1-4cee-864b-f4684b9c27b4','fbc3ad5b-35bb-4508-8b32-91a16a619b88',40,40,65,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-5-2'),
('c6e6a884-36ff-40bb-a7d6-a2e896a78b70','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-2'),
('c6e78548-5fad-45fa-bc15-e955f8c74c48','f422a47e-9cdd-4fc1-aba9-00af56f758ff',95,60,24,0,'2025-01-06 13:08:19.026','2025-01-10 09:45:24.615','112609358-1-2'),
('c6e7b3bf-fed2-4813-a29e-6d9e579ccd67','e0996bbd-f025-42a8-985d-bdce3ee5ba6f',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.167','478431848-4-5'),
('c6e7e69f-29dd-4ca2-a500-d46f18c42a0e','d4f91387-af40-4672-a65c-7ea6e96f76b2',48,44,17,0,NULL,NULL,'478350685-7-11'),
('c6ebfcb4-e11b-41f7-9087-e1e08c90f82e','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-176'),
('c6f1d15f-11c0-40a5-a1c3-40a1bde46486','e6b76b99-49cf-45cf-8b07-4059aa89b6fd',93,168,13,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-1-3'),
('c6f30ccf-0f50-4e40-be54-91d80e705987','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-14'),
('c6f35079-fafb-4c38-b925-a451cea00e54','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',210,42,5,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-30'),
('c6f3b2f1-a8a0-46b9-8a8f-9da9436df40a','16ee37cc-f44c-4652-a3d9-37ff204f5538',0,0,0,0,'2024-05-08 18:43:19.572','2024-05-21 18:45:56.505','231455458-1-3'),
('c6f5b474-5ef2-4cfb-b1d9-2cfa12be4c71','46d1512a-2bfb-476d-a224-9390f3e194f2',211,59,16,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-31'),
('c6f8cbdf-3b98-468b-ab37-25d8484c2faf','362db1a1-2d91-4ad3-9064-53ee5a0289b5',0,0,0,0,NULL,NULL,'412751955-1-1'),
('c6fac1bf-49f8-475c-8c9c-2bdd45b732bb','cb7dcc1c-0a37-4356-938e-da743c917af2',97,178,67,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-2-3'),
('c6fc169c-a872-45b8-9baa-d2787e5cb801','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-93'),
('c6fc202e-4ec6-4bf8-8506-4251e8db2787','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-5'),
('c6fce35d-cd78-4546-8145-d5049859fb39','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-247'),
('c7012574-9853-42f0-bb4a-bf17d28a78c2','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-10'),
('c7022a86-f2be-4e5a-a3cf-e7f6b245dc4d','a89f5cb0-4036-440c-b388-8ef641d6f3b9',10,52,137,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-6'),
('c702b4c9-5fa6-4cf0-b646-bce4d5f13c01','8076bb41-df9d-4c3e-b002-8df21ddafb0a',90,90,37,0,'2024-09-06 12:28:00.235','2024-09-13 16:38:28.325','449281517-1-7'),
('c703cee2-c245-4672-b1d3-af72dff7a914','b6d04ed2-f29f-400a-ba86-37b36b0830b2',12,63,5,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-15'),
('c704cecf-9ab9-4f08-840c-40efca90fd46','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.958','223734808-1-95'),
('c70551e1-9916-4004-b7ae-aa0ceb73a54a','6cee1429-9935-4eae-be32-dc630b6d70e8',100,105,10,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-30'),
('c70efee6-649f-4826-ae2a-a76e32d6f877','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-67'),
('c710bb2c-7624-45cd-8bc6-83d510539a11','a8ccb596-deb3-44d6-a3ec-e1faeccf7e9e',53,72,100,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-5-2'),
('c71429fb-5ec8-47f3-af8d-e8aa9532812c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-205'),
('c715383b-52a1-4533-8242-59def920f500','c994a04f-2197-4b30-bd79-9b5c322eba88',95,90,75,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-6-1'),
('c7159d7a-300b-4f53-987a-6fc4af3e048b','107fdebc-b61e-48d1-9c8f-84ffa2681dcd',230,70,100,0,'2024-11-21 10:29:00.131','2024-12-15 18:03:37.216','982692076-1-4'),
('c7166f7a-0001-4d1d-91cb-f4f526d926ed','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-3'),
('c71969a7-0b86-43de-adb3-7a0cfccd5914','76c744b8-92cc-490a-9b47-df670d09d9d1',0,0,0,0,NULL,NULL,'695274055-1-5'),
('c71ad86b-6f0b-407c-bd36-60cfe9e890f1','de4ad7a3-83c4-4f92-b28e-159332b39346',81,51,51,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-2-1'),
('c71c2940-37be-4045-8abf-1ea8474acb47','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-12'),
('c72a8989-56c4-404b-8bf2-dd7f19533c4e','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-47'),
('c72e04aa-dfa5-45bf-85c6-aa71fbc805f0','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-6'),
('c72eabe5-a502-4670-be28-166a4f9fb81c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-65'),
('c72f1858-f0b6-4cd7-abcf-d6944440b773','bf52ba29-5264-4730-8413-ac5285816226',0,0,0,0,'2025-07-08 11:31:15.436','2025-07-24 18:01:00.406','47842524-2-1'),
('c730e794-5e3f-4e33-b185-2332f4ba5595','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-56'),
('c73278cc-d20d-4a18-9109-84642e0fa257','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-11'),
('c732abb7-0e52-4e80-893a-1d1985c118e5','f3e25748-9512-4873-82f0-47edea247be7',0,0,0,0,'2025-09-18 15:48:55.722','2025-09-30 18:47:32.745','896769535-1-1'),
('c7349083-5452-483a-9223-ac04cfc9a913','7f827719-d0a9-4910-9aef-532cd3731df7',260,62,11,0,NULL,NULL,'745995046-2-14'),
('c7367997-3177-46ae-91f5-b9ba09e8f600','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-10'),
('c73e7c46-94cc-4f5c-827d-3499439fa9f8','b2344382-bf60-4678-b271-01032fee96b4',8,87,87,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-2-4'),
('c73f99d4-25ce-4c75-9bf7-a414f28be0c5','159c73ed-083b-4d67-98ca-6adcfc554962',30,95,205,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-19'),
('c742f3a3-42f6-4db5-9574-07cb9ee9984e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:57.517','248135683-1-214'),
('c7454e9f-c219-4f16-93f6-8b9b1c4679dc','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.229','478361652-1-4'),
('c74a5018-bedf-435f-94e2-c9764b6b2f8f','5c487410-f906-4e14-a077-9f060026719e',175,94,55,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-12'),
('c74c97ad-b44e-4e2c-8986-4ecff8d384c7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-57'),
('c74df6da-600c-450c-a921-403831a95288','fed28e47-8397-440d-8404-a285a8bdefbd',33,31,250,0,NULL,NULL,'011399882-6-3'),
('c74e0324-195b-4ff2-83a1-fb2471d8f05a','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',36,13,126,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-9'),
('c74f3343-ae58-4d20-b2e9-b69bb889ab82','0ea49f4b-5c5b-433d-8eb4-379379e4da2b',0,0,0,0,NULL,NULL,'478778771-1-5'),
('c75054de-e7d3-4fa6-a3ab-7fb591ba98a3','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-38'),
('c7517ff2-992f-4c12-92ee-4e1fc9be6e98','a1e1c242-70b0-44fc-93ae-eb14bfdef82c',0,0,0,0,'2025-09-11 06:34:25.228','2025-09-18 07:01:50.102','657264606-1-1'),
('c7542611-4903-4588-ad52-53da1d350aba','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-4'),
('c7569826-67f8-4501-99ac-aca95b20db70','7f827719-d0a9-4910-9aef-532cd3731df7',24,46,56,0,NULL,NULL,'745995046-2-7'),
('c7575082-c151-48b8-95c4-791f21aa73f5','1086f7ce-fb42-4a68-915f-6eef7c1c791b',110,57,80,0,NULL,NULL,'695763797-1-1'),
('c7599f8a-79dc-475d-b80d-27c521db1a32','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-22'),
('c75cc015-950b-4c04-97e4-91f2078ae45c','be5c2cd1-c0fe-4540-abd0-4e5f8826610d',73,73,73,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-6-2'),
('c75f8c21-a1c2-4efc-89c5-c92f994a8dbd','af69c5a3-87d3-4548-a650-720b69a4fc69',65,145,2,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-51'),
('c7639c2b-ccf3-47d5-8ff4-562860112c33','73499d6d-d2d9-4c76-9e89-9c775fadaada',72,84,112,0,'2025-03-27 08:02:49.277','2025-04-08 15:37:20.028','81723596-1-4'),
('c763b677-1bb5-4745-a53f-55dec657ac39','7ba47169-83ca-49a6-98fc-6ef1a1990eac',50,90,9,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-20'),
('c766193c-ccfc-4eb7-9dd9-ca3c88da45f8','99f3c807-c2fa-4316-8a01-93a1eeeac0f9',99,10,223,0,NULL,NULL,'613868869-3-3'),
('c767b008-cab9-4352-95c1-da71410b0409','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-101'),
('c7691771-d71e-44ba-b23f-1443cc8204a0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-200'),
('c769c3c9-7d88-431d-9daa-493fa88f0f25','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.014','2025-08-27 05:41:45.747','910632087-1-3'),
('c76aa648-6393-41dd-af71-3acc0553df22','2c0f1e2d-ad74-4964-9781-9eb791b16ea1',50,45,53,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-1-6'),
('c76ab7be-a63b-45d2-a0aa-2bdf0aeb6374','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-147'),
('c76b21f4-17e4-4aef-949c-18a0ebf014a5','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-63'),
('c76d4c0d-08a9-48ab-9ae9-eeca8e952758','05c69f47-3c62-498d-97f8-bc1d7350f13c',53,58,97,0,'2025-06-11 13:14:44.477','2025-06-17 16:02:25.266','437256638-1-3'),
('c76ecb2a-37d3-4cf0-8f9e-ca680accd7a4','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-113'),
('c7737b4c-2a77-4b28-a0f6-789d76451ff0','20a73c4e-790b-494f-b4a7-c61766021e4b',34,182,10,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-4'),
('c7745695-fea8-4335-a483-a71075e21b28','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-64'),
('c774bb91-5673-4af1-b8b3-1dbad89a95dc','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',85,52,104,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-6'),
('c7765f67-03fe-4464-b793-3d058bb68bb5','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-24'),
('c777b899-2a75-4a25-8393-5a27885e4901','ee623458-4a98-41d0-a385-199504c6175f',45,45,40,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-3'),
('c777f6c9-00f7-47a9-a885-281dc656ee5d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-81'),
('c778d060-d936-41fb-a961-dca338d7adee','cdab8feb-4b24-4e8a-bc95-98fb1259890d',56,77,101,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-6'),
('c778e9e2-edb7-4c67-a4e9-bc4b8dc5473c','53a40750-ae01-4461-a12d-633dc7c9cfea',100,105,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-2-4'),
('c77ac146-3152-46a5-9e1f-2e74fff6b4b9','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',96,180,6,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-7'),
('c77bcbe2-8a05-4618-8832-b68842493d63','2ae78cf8-53c6-4be4-bf8b-eeea900b63c8',63,88,158,0,'2025-10-22 13:06:41.295',NULL,'598719647-2-3'),
('c77d7007-fdb9-485b-8ea4-95386c094ddb','1dcff831-1200-4173-a805-7e81be8a8855',87,87,7,0,'2025-09-18 15:48:39.770','2025-10-02 06:11:36.369','221724224-1-2'),
('c77d7db3-c929-441f-9392-bc3051dac983','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-76'),
('c77f3661-3cbc-4f3e-acdf-212d0d0baf9b','46967417-5579-4330-96d2-b8546922819a',26,82,202,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.893','428561353-1-8'),
('c77f4e22-218d-4702-b9be-d8f36e871cc1','c9afd200-5d14-4c16-816c-282d1b5697af',0,0,0,0,NULL,NULL,'371747945-2-4'),
('c7817794-0638-4de0-b76d-baa6457f1c9e','be81a593-813e-42e0-964f-fcbe3778c917',133,133,82,0,'2025-09-06 07:20:17.822','2025-09-16 06:34:26.391','371695056-2-2'),
('c785cb9f-6068-4e01-8f46-7e837071b31f','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-114'),
('c785da71-4dd7-4eef-9a25-fbc9c008a5e6','a6a0e640-2e3f-4f6c-9ae6-023e45fdcd5e',180,100,78,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-5-2'),
('c786731a-9393-42eb-9b11-3eeb59d9bbf2','49b61c2b-d092-4b6d-8c1e-caee3f39aabf',58,31,38,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-1-2'),
('c78a8a6b-e19c-4a7f-9366-9275da71881b','e6b643b2-ddca-48ec-b553-690e29e71879',112,57,84,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-12'),
('c78e1b84-5fa6-4274-8030-29439ef1aed5','e178636b-b1d9-4260-aa1b-879946fa7f5d',14,67,45,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-20'),
('c78fb077-f27f-4cf7-a86b-63812b4f6413','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-13'),
('c791adc7-520c-4664-8c71-9eff44fba663','94de2a44-5d1e-4ac4-9d26-b6d4a3d93a38',85,57,107,0,'2025-09-24 08:02:14.698','2025-10-05 09:16:08.750','61378160-1-4'),
('c7926722-3306-4370-97ef-79afeb35cd64','48662948-788b-4f09-b1a2-4177f97b1eb7',73,54,101,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-2-3'),
('c7968c57-a797-41d4-8853-0082f6b4811a','c784a732-36c9-47dc-809e-6b6a917e74dc',57,81,105,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-1-3'),
('c7971522-6535-4a63-a3c6-5f8767fa8d2e','5020733c-470f-4fc7-b42f-9a099724b4a2',240,100,75,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-2-1'),
('c7989e49-a7b5-4684-8d8f-4e8f3920834a','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',55,79,5,0,'2024-06-08 08:00:17.837','2024-06-20 20:15:56.065','428138926-1-55'),
('c79a46f2-e897-4a9c-8665-94bbacc38b42','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-37'),
('c79bfaa4-40cc-4323-af76-ad335c016481','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-65'),
('c79c5f3c-67b3-4a4c-980c-577683163eb3','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-52'),
('c79eed48-642c-4680-ace6-9d7bd1ab58ec','bff50eb6-35f0-4d46-9229-c709335da145',55,35,85,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-5'),
('c79f0397-ef10-4c84-a925-02ab25a6f5a8','5632f22c-493f-4a5e-afdf-13268c32b047',11,15,90,0,NULL,NULL,'528640995-1-3'),
('c7a1e857-3073-48a1-8267-121c0b01340b','9d7979f3-a35a-4a64-97d1-4ba973786029',39,11,72,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-8'),
('c7a21bf4-832f-457c-9588-c744435990ce','56f86587-7355-4e49-9eb5-727edc1be570',94,66,4,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-17'),
('c7a23ded-4933-42ba-9ecf-1c971dda7603','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-5'),
('c7a42fb8-6699-4b4e-953d-792271f6d752','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-6'),
('c7a4d595-5b91-4e05-87a8-05bdaac7ece0','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-78'),
('c7a5171d-18bf-475d-a3cb-60ec36e4f808','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.930','2025-08-27 19:35:01.417','531988506-2-1'),
('c7a5d8e6-f84d-4dca-8190-3530bf6de961','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-6'),
('c7a7d4dc-3f72-48f1-a06b-ccf69472db67','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.447','570899680-1-13'),
('c7a85253-1663-4d18-bf27-da3be37bc5d7','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-5'),
('c7ab3d94-00ef-4222-969d-4eeb8cc69c02','7657b93a-6861-440c-ac4e-1ea2919764f2',72,101,52,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-4'),
('c7abf760-a17b-46b9-a364-99852af24d20','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-20'),
('c7ae6f41-ad59-407c-a26b-064ebe318e1e','fd5239f9-2c7d-4b5f-8eec-c01af9d7de05',0,0,0,0,'2024-11-12 16:15:43.440','2024-11-23 15:59:26.591','74582542-1-2'),
('c7aee1d5-2976-4c05-8c9c-d59933a8fbda','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-22'),
('c7b0768d-14d3-472d-94d9-eef875a510fa','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',41,20,30,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-142'),
('c7b248e2-c4fb-48e7-8509-e0aa074f496d','2a4df356-6870-4e82-843d-6a6131e7e377',230,95,57,0,'2025-01-20 11:21:22.852','2025-01-30 09:59:58.590','98238273-1-2'),
('c7b35123-9ad4-46b1-9818-5ff43f8256cb','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',90,48,22,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-1'),
('c7b72076-56f5-410b-9449-ff192520f95d','582920d8-061b-4cd8-a756-49a9a3248cb5',91,202,30,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-1-4'),
('c7bca1a1-0d73-4d74-b354-45071ec7d231','d7a4e9f1-7636-4ee8-bc12-a2cb24189e91',101,82,122,0,'2025-02-13 20:43:42.873','2025-02-25 17:03:19.994','449693939-1-6'),
('c7c320e7-fa02-4091-bfdb-d4be02a777b8','b12d44a0-3b22-46ad-b0a6-4205c48cd9c2',200,160,30,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.806','745212688-1-1'),
('c7c35857-c05d-407d-bf42-79cf72b2e91c','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-89'),
('c7c3f5f0-4aec-4101-a83f-5d24238162cd','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-4'),
('c7c4d0e6-4ac2-45c5-9ebe-8e8d0828242e','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-38'),
('c7c4de03-2922-4ec6-abeb-eaec45e141ab','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-25'),
('c7c5a426-7b9a-4d35-9aae-d0a7363c332e','be9c2c0d-546b-4955-8cae-7e59b8476d8a',51,51,77,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-3-3'),
('c7c5e0f7-7aa7-4989-9ddb-e85d710442cb','280aa08f-620e-4d2d-a959-f7b298499b3d',43,18,67,0,'2024-10-25 11:54:28.142','2024-10-31 07:50:27.640','910163142-1-4'),
('c7c88665-3686-4e9f-9853-afef7c736f6c','14c5439d-b326-4a6c-aab5-d692d92d235f',0,0,0,0,NULL,NULL,'74520701-1-2'),
('c7ca4599-67a4-4e62-a636-8f249e0219df','7b68e44d-2397-492e-b71f-fe3fb99d892f',81,95,72,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-5'),
('c7ca6e99-7f92-487b-94d5-62028e3e2fa0','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-9'),
('c7cd0e68-8193-4929-8643-93a1459d1f96','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-11'),
('c7cd6293-dcb3-4b93-be27-72aed0a9a882','4333409c-e607-4580-98aa-64ce9862909d',97,70,226,0,'2025-09-18 15:48:52.001','2025-09-30 18:47:48.887','478616973-1-1'),
('c7d16055-cd63-4835-ae73-051cd87492c5','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:58.858','248135683-1-153'),
('c7d35acc-f5b0-402a-84c7-5a089f567255','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:04.980','248135683-2-86'),
('c7d58631-8e54-477d-b58e-3ac20698e22b','91a053e6-4d43-473e-a6c4-c685892363c6',123,123,65,0,'2025-10-02 06:45:49.211','2025-10-16 15:47:01.900','478273603-1-1'),
('c7d64a71-d69b-48fa-bb27-f8cc04edfa66','0263f7f0-6c1a-4beb-ab78-25d69142647c',37,12,21,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-22'),
('c7d7f746-a3b7-472a-ba07-e2570bcf30d5','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',50,66,125,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.470','319645924-7-12'),
('c7d8afc9-7b25-4098-b440-5e353402eadb','cc9e4990-6f0a-4a2b-9332-771ed4bcf88b',96,6,196,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-6-3'),
('c7d9a26b-d7b6-4dfd-ad2a-133f29f40314','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-5'),
('c7da23b6-9795-4c55-b8ca-3d53db310d10','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-18'),
('c7dd2c86-5d12-40a8-8918-06958ec8da86','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-86'),
('c7de59b9-1311-4482-8b6d-c27e5579bb6a','c5e0d83f-acd4-4d0f-9e00-9f237578b979',107,222,8,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-2-3'),
('c7e07aba-afd4-49ec-bfd6-542fb8328100','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-33'),
('c7e21ab8-88e1-4a58-983b-957457952201','a8362c68-9a2c-4172-ac4c-fbb0cb2ecd0a',57,60,85,0,'2025-04-25 16:57:12.224','2025-05-02 06:57:47.117','221496522-1-2'),
('c7e45a0d-e563-4cc8-9e2e-d9e8c5c90add','159c73ed-083b-4d67-98ca-6adcfc554962',98,2,197,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-20'),
('c7e7d71d-35f0-48ba-9cc6-4d35997d3125','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',50,10,130,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-67'),
('c7e86572-d100-4147-8469-7687d6cb4c8f','14ad5bdb-7df0-4df9-8328-3ee2c7a3e6ae',0,0,0,0,'2025-03-13 12:21:19.442','2025-03-24 16:02:29.861','97684781-1-4'),
('c7e90e58-68dc-438d-bdc7-8f3c818eb7a5','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:06.216','248135683-2-28'),
('c7ed6704-f987-4840-8985-b9cf59b5d28d','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-12'),
('c7f2e005-6491-4fea-950f-a5dfaebb015d','b72c306e-bff6-4c10-b59c-9ae25eb8b201',50,117,220,0,'2025-07-02 12:43:24.501','2025-07-23 06:18:10.676','644298759-2-1'),
('c7f3fa08-8552-42ee-bfd9-d38b648325f1','193f8529-9851-484d-b59f-72470c97132f',79,125,10,0,'2025-04-25 16:57:16.238','2025-05-01 09:52:28.275','371672954-1-4'),
('c7f4c347-12b3-4f39-8a4f-612065e40296','0b64224e-72c9-4a4a-bf83-c1f6476351a2',570,100,100,0,'2024-03-14 13:50:35.961','2024-03-22 07:35:41.520','412976656-1-1'),
('c7f8cc47-853e-47a1-be89-a261f62c3a3d','7f827719-d0a9-4910-9aef-532cd3731df7',10,77,97,0,NULL,NULL,'745995046-2-2'),
('c7fd1c9d-e3d7-461b-ba88-acc2c12652ee','0ca7b5c8-7608-49bc-9057-d56d835fbea5',36,5,63,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-8'),
('c8067f75-a116-4db1-92d4-1c12171517cd','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-168'),
('c806f78d-82f3-4962-b84f-3d81e1755832','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-48'),
('c80969e9-d521-483f-9c12-20cecf2ac0b1','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',34,34,160,0,NULL,NULL,'598604443-3-4'),
('c80c6b77-0136-48cb-950e-c58d55dbd905','0009aeec-e682-465c-b701-363a3ef377a6',41,90,55,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-68'),
('c80ee441-1c81-4cc8-9dc3-18825318fa12','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-115'),
('c80f09c6-26ef-4545-ad09-9d34a723f8ed','6060763f-09fd-4b23-9d16-0641dc9c453d',160,200,3,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-2-8'),
('c80f2571-6eb2-47ef-ac0b-68635e332129','70025235-c3ff-4d6e-b849-3c76df68e036',0,0,0,0,'2024-09-19 18:27:43.471','2024-09-25 12:59:16.338','745132796-1-3'),
('c8104802-2acd-42da-8740-a8fe8b4d20a3','cabd6bfc-ee9d-4ac2-b72b-1c75d12405cc',70,100,75,0,'2025-02-09 09:51:34.713','2025-02-18 17:24:08.058','455685955-1-1'),
('c810a7ef-6e53-4fdc-87ee-af4c1946adb1','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-82'),
('c81730cb-225a-46bc-aa15-a9069d729aa9','525b5c37-829f-4a61-adec-1c61536019ea',51,51,77,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.727','221940723-2-1'),
('c81a6b95-9ce4-4aab-8d50-2eecf673a50d','5603bee7-2924-427f-8ac2-cc504126f908',15,20,30,0,'2025-09-06 07:20:15.394','2025-09-16 06:34:40.141','437152964-2-4'),
('c81ac53c-20c5-4f77-a606-39d7f0a2f72f','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.003','735525138-1-6'),
('c81f96db-52f7-472e-8e64-f112af3c17fb','c29e76a4-89ba-4143-8fad-01a2910620ee',64,65,35,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.400','750496630-1-15'),
('c81fe7fb-9548-4bb8-825c-3f1baff7c39c','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',54,81,103,0,NULL,NULL,'478702481-4-5'),
('c820f92c-1817-4cc0-9b8b-2077f81ff72f','6aee7799-2e85-45ac-8d17-b03d8bb86a22',100,90,70,0,'2024-04-08 08:57:51.902','2024-04-24 09:15:02.815','315752826-1-3'),
('c822e2a6-ccda-4b26-abdc-d84231427b34','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-25'),
('c823e3c2-c973-4c9c-beb7-12f8e530751a','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-21'),
('c82685d6-9894-4fd9-bf78-db73f79f3e4f','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-8'),
('c826cc9a-5a60-45eb-b0bf-6c3f06a34b9a','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.971','20390821-1-65'),
('c829249f-3f01-491f-ad39-594c9b5c5276','1401afea-d5b8-4731-99f5-12d9863e9962',96,26,206,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-2-1'),
('c829cfc0-5fc7-4373-9b78-024c7508f54f','49577156-6988-4b1d-8a3b-01bcdb651052',375,130,35,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-1-2'),
('c82cb3cf-8083-4dfc-a904-1123de92d35c','fcc0d1fb-e7c2-481d-8e13-58a0debd1ee0',51,50,76,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-3-2'),
('c82cb40a-3be1-4eb4-a83b-28f0aafec7c5','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-15'),
('c82e07d7-b09e-478f-a92d-72d17ce640db','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-12'),
('c83019e2-ae8e-4cb3-8d9c-44aba62b3c54','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-6'),
('c8354027-3f8a-4170-af00-a5730a0761df','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-7'),
('c8366c14-1d13-4686-b712-80d5389ba451','fc33e6e7-779b-41c9-8d72-c26a1d995b78',101,34,195,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-9'),
('c839fea2-97be-4489-b350-1ac270a0a575','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-101'),
('c83d6e3f-f595-410e-8a39-8de13fa79bfc','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-2'),
('c83f993c-aaac-4eea-9c95-151ed6d30439','c4eb687d-e46c-4f7c-993c-f7f7a9998576',246,105,5,0,'2025-07-02 12:43:32.083','2025-07-21 18:01:00.871','221570854-3-3'),
('c840f990-8d61-4050-8f7f-6efe220e7da4','c527dd1d-63c2-443d-aaa4-dcf25c34e426',100,230,67,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-4'),
('c8412c8e-e634-48d6-951b-a2c389c0b398','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-11'),
('c8417ac7-1959-4a7a-8837-9fa06dae9bc3','9aa08cca-4e35-44d4-9e1c-6c316a75f032',0,0,0,0,'2025-09-02 14:48:51.471','2025-09-12 06:56:06.375','644424764-1-2'),
('c8424159-05b9-4cee-95d4-b2191c043e93','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-10'),
('c84389a8-892d-46fb-8b71-30bf7f1b38a0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-104'),
('c84887f4-2b8c-49b8-a7c6-c31a18acf475','de51c756-e550-4e76-bf53-8a55d85b9133',83,57,102,0,'2025-08-21 07:15:07.969','2025-09-03 05:43:30.663','515171044-1-2'),
('c848ea49-0bc9-451e-88e1-7899cffa1b0c','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-2'),
('c84b8742-7af4-492d-80f3-8539da008023','46a6276c-78bf-47de-98fa-547420c97e60',0,0,0,0,'2025-10-22 13:06:50.096',NULL,'959513288-1-6'),
('c85327d8-05ea-4412-a4e0-c2c43dcb7e59','c3fef76a-45d3-4c79-867a-6d5761c9fc5b',70,131,110,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-4-2'),
('c8547102-d74f-47ec-8749-535935038eed','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-53'),
('c854c538-fc26-4927-a306-3117df2cf7e8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-40'),
('c854e058-3bd2-4651-bfe3-ffceea2b04b2','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-5'),
('c854ec24-3e83-4264-bf04-f4cd0c1fc198','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-24'),
('c854ff36-8599-413d-803f-d93917b6b3e6','d7c129a1-5024-443d-aecd-2d1f690185ad',0,0,0,0,'2024-09-28 16:27:24.146','2024-10-09 08:37:08.450','478504480-1-3'),
('c85ab20d-c600-4a13-a294-4c79414c75d2','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-28'),
('c85b17a6-d423-4160-9863-77d5d3cbc3c1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-221'),
('c85c4154-5806-469e-b807-fe2a5ae55f8e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-116'),
('c862ac4d-0aec-40dc-8e17-5aa78e161ec7','0847d18a-9a33-4e74-a203-827f1fed34a9',65,52,80,0,'2025-05-09 18:43:45.730','2025-05-21 19:38:07.427','371586742-1-5'),
('c8645636-49ac-4dfc-89d1-ccaadc79b4ca','c4f62775-21a5-4d48-bba8-0a66600ad101',240,100,85,0,'2025-01-26 10:54:19.504','2025-02-10 14:16:39.412','517521279-1-1'),
('c86874b9-f8f5-44a4-83f5-d379b7346489','62f8f5e0-3dde-4a16-8b43-15d3805cff33',43,43,6,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-2-4'),
('c86c508e-23e9-4926-b847-420467cb4e59','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',82,55,100,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-2'),
('c87365b4-41d5-456f-8029-289c41b81518','7539ec51-cdb8-4879-b280-a64290bb512f',11,12,67,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-7'),
('c87480d4-963d-4797-ab6d-a1bc3bc321e3','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',55,20,37,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-32'),
('c877531f-980b-4dd0-858a-e651057db56b','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-9'),
('c87be395-1384-475e-9ad0-3a1534352d3d','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-143'),
('c88014d2-4107-43f9-a213-8bff218c868a','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-14'),
('c8806810-add2-45a4-a47c-a1af91515124','34ddd883-283e-4768-b94b-c347224b0365',35,35,35,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-2-4'),
('c880e42d-77a4-47ac-ac0f-34c6ac7900e2','bbc6d966-9d42-48e9-83e4-13afb85a7c33',56,75,100,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-8'),
('c88185b6-59d8-4287-9b02-3d9232a14052','a2ac6ecd-d628-499b-b74b-a3bf267f0117',83,85,65,0,'2024-10-02 09:27:03.623','2024-10-08 09:24:59.189','910990360-1-4'),
('c8864275-8eb6-4782-aa2c-df993e4979d5','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.466','478972804-2-29'),
('c88af967-1418-416d-b8b8-d4b69739b656','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',52,70,14,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-15'),
('c88bf732-d945-4afd-8c9b-233772d40a50','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-3'),
('c88c2a9b-50bd-478f-bc9a-40f90e8c72d0','2cfa9764-8f00-4513-b782-16d127332b90',148,148,8,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-3-1'),
('c88c32fe-32ec-40d2-9ad8-9159ac274a04','ee623458-4a98-41d0-a385-199504c6175f',67,67,10,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-4'),
('c8903b67-2679-4383-bfe8-3db8eeaed61b','7f7e8df0-7a2f-47d0-8add-150b2200e309',44,45,60,0,'2025-09-16 16:29:31.131','2025-10-01 08:00:26.782','478816988-1-2'),
('c8979e27-d6d5-43eb-a348-6bf875e8d390','a769cd75-8095-4eeb-999c-d1a749589a77',163,185,7,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-23'),
('c897d002-efc0-42f6-ae0d-8f1879ef3628','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',140,100,75,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-9'),
('c899862c-b129-4a83-8e6a-ea683df75a90','83a4a2ab-63b4-468e-9809-edf00bbd2679',165,110,80,0,'2025-05-09 18:44:21.970','2025-05-19 20:26:27.502','570417524-1-5'),
('c89989ca-9bc6-4be2-aa81-aa3595f6e7bb','546ad3d0-25c2-43dd-9443-e48b8e5b6530',62,47,27,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-58'),
('c89ac804-c332-4f79-bf0a-cbf3142a0791','37344bde-d918-41e0-a71e-d46212dfd17f',7,70,70,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-5'),
('c89b6e0a-1d8c-42a7-9d49-c3c11c1d8021','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',75,25,202,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.367','910756975-5-16'),
('c89def51-99ed-4dd2-86d2-6c389dcb3ada','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',106,29,205,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-7'),
('c8a040a9-21f0-40ce-a1bb-714b011e0669','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.323','73547719-1-20'),
('c8a1587e-bec2-4dfa-a0bc-ad07a4576828','6d2958d8-12ca-41bd-a12b-58082d5c955f',231,6,67,0,NULL,NULL,'614364554-3-10'),
('c8a1d039-8f62-49f7-b18e-7fb525367a3d','904ba84e-2a4d-4a46-9ec4-7fcbbbdd4913',0,0,0,0,'2025-03-06 10:32:00.597','2025-03-16 15:00:17.707','745987581-1-1'),
('c8a2ac4a-da99-43a3-a843-df6895479993','841f7f01-a7cc-440b-859e-dea7f085dd74',157,16,96,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-9'),
('c8a52484-962c-4bb7-b9fd-d87f8e272082','43ff4e79-db72-41e0-ba63-8999dc250518',51,51,77,0,'2025-04-15 16:01:30.380','2025-04-26 17:56:11.033','613420026-1-2'),
('c8a67e6f-0e22-41ff-9fd1-090ca3f09882','2fe858c2-0dba-4eeb-ac43-17e48df137ca',96,66,187,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-1-1'),
('c8aa4893-68c1-4714-9d56-d21fa2edaed2','335647d7-7267-48c7-855a-609b33fe42db',57,60,85,0,'2025-02-03 18:18:41.578','2025-02-14 10:41:28.342','221859569-2-4'),
('c8aaadbd-5ec1-43c4-92c5-54f6d8cd840d','91a053e6-4d43-473e-a6c4-c685892363c6',100,120,60,0,'2025-10-02 06:45:49.211','2025-10-16 15:47:01.900','478273603-1-4'),
('c8ac32f5-4ded-4528-87ff-89892c6c84e1','e6bddda4-b1df-4be7-bbd5-63cc4b197736',210,42,8,0,NULL,NULL,'42857810-1-21'),
('c8ad148b-294a-4d7d-9858-77ef081450d3','fcd67c6a-44c1-42d0-bb18-f0aad3734594',66,160,30,0,'2025-10-08 17:43:31.013','2025-10-17 06:15:12.040','011428040-1-2'),
('c8ad9dd0-2bd5-4afc-989f-47d277005e88','a7f92057-6250-4045-97ed-482e9da4c648',130,120,8,0,'2024-12-07 09:45:06.875','2024-12-10 12:36:11.155','501167444-1-5'),
('c8af0d7d-3cee-4163-b5fe-c6744b018490','8157b818-4170-444e-80f6-034d8ed1efe0',61,76,58,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-2-2'),
('c8b2617b-080f-40b9-a7b5-6191d5455a7b','140facd2-f55a-4a12-95ae-07ab47a00128',82,265,5,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-1'),
('c8b2a33f-b35e-4ad0-af41-1127a1d7240f','2538536e-94b0-499f-8945-6d56f97c2bf1',95,185,76,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-2-3'),
('c8b85191-6b8f-4f7d-9b64-edf4da921e86','71b1f991-8cca-4d20-9909-8155787417b3',112,7,200,0,'2025-10-22 13:06:51.724',NULL,'371290223-1-3'),
('c8b98d08-9e12-4416-8c64-1665642dd0f5','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.100','982405831-1-2'),
('c8ba8a74-353c-41c0-80e7-3bbf917d8a49','81cf8302-05ed-437e-980c-e6831dbcc1a3',48,51,80,0,'2025-07-02 12:43:39.481','2025-07-18 17:08:45.020','371282604-2-1'),
('c8bbac7e-5ced-43de-b89e-04eba4fe7908','42888d44-3ff9-4755-a225-81bce5a680f8',180,200,33,0,'2025-08-21 07:14:58.361','2025-09-01 16:56:57.990','745294810-1-1'),
('c8bcc44e-9742-40e6-9245-c45e94ec932d','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-16'),
('c8c21d32-34f0-46f7-abcc-5e8391eb6f39','d9c8afa6-f5f8-43d5-9ac6-960a71010d4d',65,65,95,0,NULL,NULL,'982572348-1-3'),
('c8c6a771-0a0e-42b8-99e0-c2599dd94ccd','9affc7b1-09c4-4e84-b48b-d0c117c421b0',111,111,90,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-9'),
('c8c6ea96-18a5-46a2-b004-a510baf5ccfc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:39.218','248284003-1-22'),
('c8c88171-0e7b-4f6c-8fa0-036a762e8fd0','cc7cbe1e-520d-412e-adc0-054062fac43b',65,90,73,0,'2025-10-25 08:59:13.605',NULL,'644769101-3-4'),
('c8c98277-77a4-4db3-af98-b67103c1f99c','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',118,68,12,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-27'),
('c8cb16c7-0ba3-46a2-b447-03f3e9deb326','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.873','910775394-1-16'),
('c8cbc883-641d-4c9f-8b97-875ec07eb9d8','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-10'),
('c8cbd252-da81-4bfe-9acf-1c07c6e7ab65','0340b9d6-4a45-46d6-8874-35243695e9d8',51,205,36,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-1-1'),
('c8cd33d0-4a34-4941-9450-af9980712176','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-24'),
('c8cdbbb9-7f3e-4f2b-b958-2c1ff7f43fbc','2440cedd-7420-40bc-a7e1-396d5c9a8e14',56,76,104,0,'2025-07-12 09:20:30.608','2025-07-23 06:22:20.772','371628660-1-4'),
('c8cfbbf9-d835-4a0a-a8e5-d1a1f347a551','2c8ef13d-f9a7-4e40-be91-cb7c4602862c',100,160,80,0,'2025-10-20 07:17:52.514','2025-10-27 09:24:10.270','896155892-1-3'),
('c8d4b649-5329-4fbe-85bf-096af29b5f0b','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-21'),
('c8d735f7-aedf-4106-b5fa-e60753f3208c','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-21'),
('c8db832e-7b90-4700-a42d-fe3dd6de39b4','de96d6e9-4c52-4152-a1e9-a093b5886b34',59,57,85,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.262','221746947-7-8'),
('c8dbc6e7-82c6-4dc7-b859-3672d1f4fb4f','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',85,58,19,0,NULL,NULL,'501168544-1-14'),
('c8e03bb4-0d9c-4220-b2e9-1a5fd73465fe','57604baf-e8cf-4035-aab3-ed4bab52522f',58,94,14,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-9'),
('c8e1d9f1-09b5-4bc0-bf1d-2c8e220b665a','bf2b943e-1619-48d0-af42-7235615e23cb',54,73,100,0,'2025-10-25 08:59:18.908',NULL,'644799923-2-6'),
('c8e3fd75-7dbf-4dc3-b819-436a3f9c7e24','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-7'),
('c8e711ee-a83c-4ee5-93f2-af8ad0ff373d','282bbf45-2136-4253-bc67-64c0148d8397',230,90,60,0,'2024-12-18 09:31:14.767','2025-01-11 14:08:00.763','93566108-1-2'),
('c8eb74d9-d021-4f40-baec-fa79c4d00879','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.966','2025-04-26 09:16:50.958','223734808-1-17'),
('c8f27045-6b2b-4661-aeff-ccbba94fd09a','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.046','371365041-1-5'),
('c8f2c489-f0b0-4c29-9616-a3f8e7d07ca8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-149'),
('c8f60a20-a809-4047-a9ed-6159bf202f13','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-6'),
('c8faaae3-96ac-4473-8082-cdb810d36e92','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-53'),
('c8fb352a-aa66-4897-b690-574ac2c09fca','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-117'),
('c8ffdff2-09c3-46df-b4fd-f420f13dace9','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-6'),
('c9031766-526b-4ebc-afcc-e4b84a541d98','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-23'),
('c90cbe21-f5fd-48f9-ba87-2fc03ebc9e38','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.798','2025-04-08 15:36:41.479','412716766-1-73'),
('c90cd6c9-1d04-45a9-be11-efe21752e036','efbe186b-71f3-42d2-8da0-71f73ee0e288',70,90,65,0,NULL,NULL,'59884902-3-4'),
('c90f152f-3834-409a-8574-6ef4010db893','bdc15b51-242d-450f-a47e-a75e07f475a4',200,29,80,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-12'),
('c9135e54-83f9-4d62-95b5-04658130a5a1','de5b9e9e-def0-4a43-8da4-04266bcc83f7',75,97,73,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-4'),
('c9149307-696c-47ce-8424-d9dd735322db','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-13'),
('c916c691-9c7e-41d0-8dd0-25c71d667365','ab498eec-0e7c-4e6e-aa9a-7694fd8f2610',0,0,0,0,'2024-10-02 09:27:11.147','2024-10-08 09:24:43.846','478723327-1-3'),
('c9179aae-c3b8-4c22-b027-25ecce4cff32','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-31'),
('c91c903f-7690-40c9-bda6-8720645d1945','e891b961-f9b8-41f5-b49e-f492048bd8c9',43,6,108,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-9'),
('c91d7288-d0db-42bf-9fe4-871606b75ce0','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',97,97,82,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-2'),
('c921700b-ff36-4df8-80aa-705c1e132a80','1b975dd0-98b9-4adb-88bc-962d71cc7b22',45,45,77,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-5'),
('c9252d1e-7a5a-45a3-bc7e-08985258b696','61fdb129-41d2-45c8-bd04-6be51a9a4202',88,64,62,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.286','319212544-2-8'),
('c92a19ef-94d8-401e-b735-ac775698f6d8','3e4aeb48-9271-448b-8fc6-4ac81de46fb3',13,13,95,0,'2025-10-06 07:10:22.920','2025-10-17 06:12:55.921','140681782-2-1'),
('c92b79ff-d335-49a7-921a-522f3a5ca1a2','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',238,100,63,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-5'),
('c92b8e78-7b82-4d1c-b512-67201a92dcea','6cee1429-9935-4eae-be32-dc630b6d70e8',221,49,12,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-31'),
('c92e3063-1b07-431f-932d-5da7bd686160','06ecaa73-326f-4922-8428-6c87a0be1bc2',52,64,70,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-1-3'),
('c9332335-d0b7-41f4-8743-180dcab20853','afd7f71c-d1fc-484f-b72d-f986503df4f7',56,100,80,0,NULL,NULL,'703266692-1-6'),
('c933ed05-5c4d-4cfb-a58a-ee153423454d','0263f7f0-6c1a-4beb-ab78-25d69142647c',81,17,13,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-23'),
('c93738a0-9116-47e8-b9aa-9856ab97e075','a3b52076-ddc0-43e7-bdcd-781801f338bb',80,100,70,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-3-4'),
('c9380de9-e99d-464d-8ddb-7f87dabb8135','f0485a78-951c-4f89-bddf-b2003f0bf783',50,97,100,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-55'),
('c939eba5-53c9-4d13-a262-586a41a0fb64','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-2'),
('c93ec927-c442-4c7d-93e1-c5d9789bcb18','fcadc5d5-7c85-42a8-a0fe-4cd8e640291d',10,105,185,0,NULL,NULL,'478702481-4-7'),
('c940b755-3678-4c2e-807f-11a7c35988c7','6d45660b-867c-48d4-bfff-e888d7d88b72',26,80,200,0,'2025-10-22 13:06:42.033',NULL,'776312220-2-2'),
('c942435f-85fb-4135-9a07-4a1939f912cf','3987bcda-6531-4738-8815-187fd84bf71c',115,35,18,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-17'),
('c943c4cb-6e82-4488-b5ac-2a94364c10c9','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-18'),
('c94514ee-ec25-4369-b4f8-6a8ee3d67366','da45c512-a565-44f0-94fb-f2a9be01c44f',86,224,60,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-3-3'),
('c948fa17-ab36-4211-827c-92b405e116be','5ea4b207-b05c-4931-bbd1-648b6933aae5',55,199,5,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-16'),
('c94a4db5-c38e-4a4c-8854-7dc5dab00704','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-1'),
('c94b6299-334f-46fa-a98d-88446f0988b5','e7f31a78-648d-4a5e-9111-1bf7db38dd79',85,53,46,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-27'),
('c94d2429-0536-4a69-9709-c3eafe48d744','877e4ae1-48a1-402e-9b28-5eef3571383d',60,87,223,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-3-1'),
('c94e0a84-9350-46d9-85e1-3fc12f5d5deb','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',56,85,100,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-1'),
('c95a7ba3-d426-4d3b-9a1e-dca760072ead','1087586e-034f-4ec1-9828-d61ce37a1821',100,123,65,0,NULL,NULL,'478153975-1-6'),
('c95b217e-7a39-4de2-9bdb-e6ccc6e6a0ab','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-36'),
('c95c5712-d3d6-49ec-ae49-b7eb38997b8b','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-72'),
('c95d16b9-1090-470d-a73e-0f099be2b8c6','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-13'),
('c95d36b1-a867-4256-970f-6d6b58798b20','5193ad65-cd1c-41bb-8fb8-8ff7d27c9ede',0,0,0,0,'2025-05-24 17:55:20.485','2025-06-05 18:56:16.626','112189439-1-11'),
('c95e24fc-9f5f-4d61-ad69-0a8367c5a661','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-19'),
('c9658189-be69-4ceb-9994-bbc60b84fa2c','aca21297-1022-4505-a912-c540f09dcc5c',0,0,0,0,'2024-05-08 18:43:08.066','2024-05-24 07:08:00.705','478598314-1-4'),
('c9659e78-540c-4e9e-b5a4-b632053388c6','da08e17b-9c2d-4115-923a-b9a31bac47a3',51,51,77,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-3-1'),
('c96dd338-f5ac-46db-9bcf-079e7598d1b5','7d462544-6e96-45df-8230-5dcbcd269f64',0,0,0,0,'2025-03-08 13:46:16.569','2025-03-17 14:54:20.815','644971564-1-4'),
('c9715956-5186-4b28-b029-97094c64fa2f','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-1'),
('c973c37f-26e6-43d7-bcc9-a78bb85c50d3','8e90da7c-ed37-421e-b127-043653dff96c',40,59,30,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-3-2'),
('c9762cdb-7ed4-42e5-90be-3b9b9623e43f','a577ba46-b93a-4b80-a80a-51dacd8e6d2a',20,40,72,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-4-2'),
('c9771a0e-e57d-4e0c-87c7-868c0393fa26','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-6'),
('c9812b91-274c-485a-a7b2-650a0009d0f0','dcfb227c-7cb0-4907-b275-857ab6f52d86',51,51,77,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-3-3'),
('c9816365-05c5-4120-bdb8-86075a880161','c29e76a4-89ba-4143-8fad-01a2910620ee',45,45,44,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.401','750496630-1-13'),
('c9874bb9-78b7-45fb-8d4f-51c40c979ed8','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-64'),
('c98876a5-7ca3-401b-adcc-ba55972a95df','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-14'),
('c98f327c-9cc1-42b7-bd34-cef9eb5fd5fe','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-101'),
('c9911437-d350-46d0-8eef-97c29fadf355','af69c5a3-87d3-4548-a650-720b69a4fc69',100,53,85,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-12'),
('c993ae61-b32c-4f5b-a1b6-d58dc2d38c0a','40a691f8-942a-4652-b0f7-9d467326f3e5',44,44,74,0,'2025-08-07 16:53:07.020','2025-08-19 14:52:22.917','371660448-1-2'),
('c995b556-7f05-4a94-9ae3-91f70dcf66c8','1b975dd0-98b9-4adb-88bc-962d71cc7b22',53,72,102,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-2'),
('c9962133-3da7-4803-883c-df2115ba86aa','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-100'),
('c9989336-a06a-46a2-bb5e-66f5ff935103','bce4c0a6-f06f-418a-8c1b-131c4f5ffc22',96,198,6,0,'2025-08-07 16:52:42.307','2025-08-21 08:12:31.707','221559079-2-3'),
('c999b330-67b8-47c2-9bad-58f400052700','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-5'),
('c99ae11e-f234-4f0b-b74b-fc9ecde15ea1','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-65'),
('c99edabb-24b0-4f9b-abfc-6f255b5161c3','064e955b-72f7-4dfe-903d-af71b421e048',70,55,35,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-12'),
('c99f4096-6b44-4544-bc2c-b4e4cc746a4d','f71120f0-3dab-49a4-9919-47f817fb8a68',62,59,85,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.038','319458159-1-11'),
('c9a4098d-c9c3-4934-a063-8c12a6f404fd','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-30'),
('c9a5345f-6418-471e-b17b-d4d48ac6f41f','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-6'),
('c9a59f43-3779-473b-9cc2-e60459dbe675','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-13'),
('c9a63839-c2ae-4558-8daf-008da9ab1b98','35eeff3b-e518-487c-a326-3bee90657fcc',0,0,0,0,'2025-03-08 13:46:26.880','2025-03-15 08:58:06.593','910560938-1-4'),
('c9aa5d6b-b5b0-4e17-b47f-c2717c007b0d','5d45d3b7-ec89-496e-9005-0f361e2b578a',51,51,77,0,'2025-08-14 08:21:34.586','2025-08-25 07:11:01.392','221272241-2-1'),
('c9ab5752-8716-48ad-8751-e1e03bb1bd84','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.857','412252425-1-1'),
('c9af82b6-c6c3-425e-a398-9b6d00fbd3dc','796fef16-71d1-4946-b8ba-54f687adf598',80,70,67,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-22'),
('c9b01869-2e66-4537-8b58-190f5469f34e','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-18'),
('c9b0545b-b222-43c1-a5e2-e6b8d4e4bdd0','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',0,0,0,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-44'),
('c9b2ccae-1795-46a6-97f5-69c03e52c799','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-10'),
('c9b6f346-9998-4a6b-9dab-7e627e32ede8','2e7ad20c-d3f1-4bba-b44b-724cfa847fdd',76,53,102,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-1-3'),
('c9b902ab-67c1-44b9-9c6c-e4cffe929d44','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-8'),
('c9ba7040-8fb0-46bc-8036-99accd61748b','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,80,80,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-12'),
('c9be788b-7818-41e8-9466-99c448c39403','05250dd0-c37f-4c20-872c-06cdf609c03d',110,20,14,0,'2024-08-31 13:26:30.884','2024-09-09 15:17:41.175','982545187-1-4'),
('c9bf3154-b777-4b57-ae95-5c472adac07b','dad4faba-2e0f-4c6e-bacb-b9b8701e6bae',0,0,0,0,'2025-01-20 11:21:21.904','2025-01-31 12:16:05.012','478930985-1-1'),
('c9c256c6-8be6-42fa-9baf-8fc7eb61b17d','ad1ae03e-7e70-410b-9063-096a689882fa',62,68,86,0,'2025-10-25 08:59:08.075',NULL,'351519592-2-4'),
('c9c39445-6d48-4e13-87a5-981dba479612','a8ccb596-deb3-44d6-a3ec-e1faeccf7e9e',53,72,100,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-5-3'),
('c9c48354-e36e-444e-969a-01b2ca2bfc1c','00d33439-2cbf-47d7-9bad-43659e6a874b',30,25,25,0,'2024-10-23 14:11:48.201','2024-10-31 12:13:55.505','501256266-1-4'),
('c9c8d3f9-4fbe-440c-910d-1da31fa24ca0','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-19'),
('c9ca7d8b-6754-4287-ad41-679759fcb078','ce4976ba-e974-4470-8acc-c28f5a58a2e9',40,40,68,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-4'),
('c9cce5a2-62cd-4dd2-94f0-946bcd2098a9','00309240-1237-48cf-8533-21b60a560393',296,86,70,0,'2025-08-14 08:21:15.981','2025-08-27 05:38:22.526','428326285-1-3'),
('c9cfcb1b-11c3-4c59-b909-be01b9d7dbaf','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-22'),
('c9cfd630-b294-4fea-b260-7e1874a06990','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-118'),
('c9d00609-b867-411e-9a3f-d0bd71a8477b','128ee3b5-4128-473f-b460-9fad52390a53',95,100,80,0,'2025-09-11 06:34:40.847','2025-09-20 19:00:31.521','478391312-1-1'),
('c9d0862f-1103-4ac6-a7f4-79ad25cf0cb2','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-102'),
('c9d5b23b-281e-4ac9-9b3d-2334755331fe','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-62'),
('c9d6da4e-d6f8-4dc8-bda4-04a741729d5b','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-10'),
('c9d6ea56-5221-4456-84f3-e8b6b8c6d792','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.971','20390821-1-60'),
('c9d765e1-f987-4712-8392-336deac8495d','7cafd5e9-2f8e-450a-a7f9-cce8f6ceda0a',111,112,70,0,'2025-09-10 10:50:33.897','2025-09-17 05:40:55.312','504780984-1-2'),
('c9dc5a37-ad9b-4251-aa41-d0c6202b3318','b1412704-b0a3-458a-a5d4-ae0a217b9f18',95,200,70,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-2'),
('c9de8b0b-e8a8-467c-91d9-6fc7885f2ea0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.823','2025-07-03 11:20:12.750','223422825-1-235'),
('c9e2645a-80f6-4f25-bca5-59092cb1867c','9c9ed202-3936-4137-8d05-f95328f6c3e6',0,0,0,0,'2024-12-07 09:32:02.893','2024-12-20 14:35:12.849','478675012-1-1'),
('c9e3f242-a721-40b0-b0a2-f80acccc5ec2','80b1233b-a544-4cfa-b3c0-d621b23200b4',97,100,60,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-5'),
('c9e4b912-ed34-4df5-a194-901a3f3975dd','6aadeef6-4393-4005-8da5-51ca4e422dfd',230,45,12,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-13'),
('c9e507cd-4652-476d-b071-56fe89e8a349','7311f1e0-e2be-43dc-9e40-f94a010e8939',62,40,18,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-45'),
('c9e8fae8-132a-4b5c-8933-ec71a8b0acba','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-38'),
('c9eb5da3-6826-4434-8366-4735869b5e33','6ec853bb-abac-4ef5-a04a-072663abe372',0,0,0,0,'2025-05-09 18:43:43.429','2025-05-21 19:38:37.567','745991962-1-3'),
('c9ec054b-2b46-4305-8283-1bffe281f6af','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-9'),
('c9ec472c-a40a-4aaf-afb2-6df3357a4c7e','bdfd88ca-d4c5-4cbd-86eb-8cf9184c97e8',51,7,140,0,'2024-11-02 08:42:42.000','2024-11-09 18:53:44.547','614707427-1-8'),
('c9f47c9a-18ea-43be-8e2a-b055e1d3997f','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-17'),
('c9f4a797-50f7-43fe-97f5-9a2d30913c0e','4869c334-4618-49fb-9d03-99d95654d12a',40,40,42,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-2'),
('c9f55b33-32cf-4c87-af1f-beea48f38ab3','d83c40d1-4df5-4c97-bc83-28837db95b2b',106,47,9,0,'2024-07-30 14:58:39.146','2024-08-05 19:56:58.912','916836796-1-65'),
('c9fa1a81-3fae-4dcf-9921-2d504235459f','3da17157-28be-4bae-8dcc-745d0e93e591',28,15,183,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-35'),
('c9fa935d-4210-48b3-8779-afc9a857bf46','1dff9484-7b74-4dd3-bde2-e304e871a006',83,23,15,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-7'),
('c9fdca38-6bc0-4af3-a862-fb2cc7258fd4','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-90'),
('c9fed56c-a3c7-4dbe-bd09-82d8431210a7','3da17157-28be-4bae-8dcc-745d0e93e591',30,103,201,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-5'),
('ca00b053-ed86-45a6-b4b2-0dd84fff9674','46d1512a-2bfb-476d-a224-9390f3e194f2',141,48,12,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-32'),
('ca018846-b3ef-47dc-88f8-b7a19a9bb624','9241117c-53b5-42db-82a8-c617058ead5e',0,0,0,0,'2025-06-11 13:14:45.639','2025-06-17 16:02:11.633','644531622-1-1'),
('ca02515a-500b-4eca-9429-6657c24420f3','acf4e1e8-26b1-4665-86d6-6ba473790be4',100,230,70,0,'2025-03-13 12:21:20.698','2025-03-23 16:16:07.965','910948770-1-1'),
('ca032c26-4605-4855-ac28-72d5b2a9f39a','6cee1429-9935-4eae-be32-dc630b6d70e8',200,92,30,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-32'),
('ca04dcd0-b0df-41ee-8114-9d6fb28e210e','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-92'),
('ca0873eb-50a1-4f88-8fd1-86d447131581','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-66'),
('ca0c12a2-7fe0-4c69-8f96-00cf5fd4494b','f3414f51-92da-4967-b108-6baad5cdd798',57,9,210,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-14'),
('ca0d5893-a6a4-4251-83b8-60cf1e3c7d2e','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-21'),
('ca0faec2-701a-4653-ab4c-ff58ed3c3ab6','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-119'),
('ca177243-6df2-4324-94b2-5b3851d6dd5f','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:38.846','248284003-1-187'),
('ca190e6d-4ffc-4321-ac8a-98512b0613b5','c37afb63-e442-499b-a52e-405f6d0d0685',235,80,95,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-1'),
('ca1a821c-9f39-44df-83b8-0a42b83f4c6d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-30'),
('ca1ab076-410d-4036-9c61-ae82518b0435','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.435','2487154-1-41'),
('ca1d28b2-0f41-489f-b226-b7580ae6518f','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.763','735814007-1-5'),
('ca235ab8-0bcf-485b-89df-1fc4f974b063','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-6'),
('ca28849f-36e4-4901-ad2b-9169c78f0b4d','1d2ec7e2-f735-46a1-96be-3994af90aaac',80,80,58,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-12'),
('ca2d2f84-27ff-47b3-b013-117ab37735a7','8b4543e8-c3ef-483e-92b5-3623066138c6',205,115,40,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-6'),
('ca2e2a60-78bf-4ec7-a535-35635a710c12','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-93'),
('ca2fb101-a146-4d5b-812e-d9efd8bb9204','7fbc0cac-4c11-4144-b578-3223cd9dd90a',45,5,50,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-18'),
('ca37e664-a1ec-412d-a28c-1d47614f3b49','a5930c87-7c64-481e-8b65-e1185a1c5e54',0,0,0,0,'2025-03-13 12:21:23.214','2025-03-23 16:15:57.285','221892935-1-2'),
('ca391d96-186d-4be1-8cf8-958a25d8a7d3','fc62f08c-a4dc-4f3a-b1bc-a39834539515',57,62,83,0,'2025-09-12 17:17:11.018','2025-09-23 14:01:45.759','515956879-1-4'),
('ca3d1816-aa28-498d-88ba-c776b94101f8','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.272','2024-09-12 10:54:58.871','223337181-1-120'),
('ca3e0cc6-0587-42d4-943a-4ab3586e7979','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',93,93,39,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-11'),
('ca3e6ab1-ca5d-4b13-b253-1020411dda88','4e8fbb6c-dbca-46fd-ac66-4ab67a1ede2d',0,0,0,0,'2025-10-08 17:43:42.968','2025-10-17 06:14:34.211','745863981-1-1'),
('ca3f15ad-4a60-4db6-8297-08f0694944a0','6c37c9bf-2092-4fce-bbd6-41f3729ab98c',77,108,65,0,NULL,NULL,'808696925-2-3'),
('ca41c543-4a06-4a09-bf4a-5cea46c0662b','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-91'),
('ca468800-57dd-4f01-9cd9-fc2010841d1b','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-8'),
('ca47881b-984c-4fcf-a02f-c545391c11c3','bd677618-e7e5-44fa-a9cd-fbcd285461e8',0,0,0,0,NULL,NULL,'614496263-2-1'),
('ca47fd8b-2a79-42d6-9c6e-e067de177b98','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-15'),
('ca482355-a798-4a9a-ba1e-28b7481b7d4d','490c2bb4-adcc-46dd-b62c-c66daac6662f',0,0,0,0,'2024-04-08 08:57:32.780','2024-04-30 22:31:16.671','412679110-1-4'),
('ca4bde0a-6261-45a2-a9af-a83e7971ab29','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-16'),
('ca52708b-4074-40a4-8e50-0ef82e64395d','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.288','412746738-1-53'),
('ca543fdf-781b-46a3-aa8d-d313aa481317','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-144'),
('ca578a56-8195-4247-857b-8f47992b42b7','19dfa4b0-04e4-4abe-b71f-85b70cbef06e',51,50,76,0,'2025-01-26 10:54:22.648','2025-02-10 14:16:21.329','221390997-2-2'),
('ca579689-2cd0-4938-8955-0d0859904e80','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-165'),
('ca607adf-a4cf-4be5-b86c-f0bcba3779fe','b3a07109-bca7-4f19-b233-bd610e191f78',0,0,0,0,'2024-12-13 14:49:21.807','2024-12-21 21:13:09.807','248203029-1-3'),
('ca6129ea-cff7-4f0b-b287-a1f24331d0ed','89fe3e03-76ff-4301-9cc1-97e41acbc489',64,65,85,0,'2025-10-06 07:10:21.387','2025-10-17 06:12:49.749','644606140-3-2'),
('ca6141e4-fb24-4e75-908b-0746b174a60f','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.750','223422825-1-240'),
('ca62e57f-268b-4f9a-b75d-c13175651181','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-32'),
('ca66ba98-6bb8-49cc-aef4-77ea46b9b0ed','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-101'),
('ca6936c2-9df8-4854-a435-a4382877bb27','0fc25d41-fe66-4797-a304-92adc29b59c1',30,25,20,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.174','910594430-1-4'),
('ca6bee0f-3b58-4938-b9bf-591c04349ab9','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-10'),
('ca6d873a-da16-4a05-9992-caf6fdfc413e','5632f22c-493f-4a5e-afdf-13268c32b047',20,27,3,0,NULL,NULL,'528640995-1-7'),
('ca708067-c0a0-4c5d-b004-c201823f032b','6ae0233f-f2c2-44bf-9706-7274e4c923e9',65,85,95,0,'2025-03-27 08:02:37.202','2025-04-09 12:54:30.745','412149383-1-13'),
('ca72b1e8-9113-4a49-940e-a55bddddc47c','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',220,59,6,0,NULL,NULL,'501168544-1-4'),
('ca79e190-f59a-49b3-a1dc-5516cdd439f2','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-4'),
('ca7ab9b5-3cab-4119-8ebd-e661375f33f2','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-9'),
('ca7b4fc7-5081-470e-9fa9-646c4dacc55b','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-48'),
('ca7bb2c0-e7fb-4d8d-8eb5-724946eddc60','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:38.456','248284003-1-170'),
('ca7efda6-4a9c-401b-84fb-20f67c36afcf','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.355','2025-01-08 20:29:02.152','735384295-1-16'),
('ca7f4680-178c-4176-9b01-e7d7ed51be9a','318cde76-8ade-4948-8a1a-03f459b25500',0,0,0,0,'2025-09-01 11:05:43.743','2025-09-08 05:04:26.574','371280361-1-2'),
('ca7f5c54-d41f-4e67-84e1-5928483061e1','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-35'),
('ca837d5c-3821-4796-8e86-9163490f4ca6','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-27'),
('ca86d720-6e74-444a-abfc-0e9b517f30a6','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-20'),
('ca889ae1-e166-467a-9e24-9ac87b8d3348','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-11'),
('ca88ae1a-076c-4bfb-b21d-6a3efe6eb011','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-158'),
('ca902714-5a27-44ba-8254-af378a22512b','c389fd95-9357-4fac-a819-48a512bbe294',95,95,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-5'),
('ca9143a3-7654-4edd-a8b8-23bcf4d9dfa6','00dcbf70-c001-40af-9195-3caa85499670',53,72,100,0,'2025-09-16 16:29:37.463','2025-09-30 06:16:22.258','644422105-1-1'),
('ca91a20f-6186-4b7e-9661-8d60b511f435','0009aeec-e682-465c-b701-363a3ef377a6',50,27,50,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-69'),
('ca932dc9-7877-498b-b61d-d61e574c75c8','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-21'),
('ca9590ad-8fe4-4940-827d-ef485363cf1a','140facd2-f55a-4a12-95ae-07ab47a00128',47,33,205,0,'2024-11-25 08:28:34.914','2024-12-05 16:18:24.624','248955969-1-4'),
('ca9d9359-0a33-46c3-8963-791d32267507','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-7'),
('caa04eee-cd91-4387-b0d0-50d269cc9c6e','ae5a9e85-8de3-4d9a-843c-7199666778cb',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-4-6'),
('caa5d7f5-89b0-42ec-adea-b9b28d7cbc88','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-27'),
('caa655e3-54fd-41f4-9109-4852f97bf19c','27e2ce5a-dade-42bf-b4bd-0468323a08cf',65,100,75,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-1-5'),
('caa677d6-4e83-4bda-b0a1-0fff2122c401','d2be0913-8bad-4bc5-b776-f2050b939197',230,65,95,0,NULL,NULL,'982759064-5-4'),
('caa6c567-91d2-4efe-b270-d2228fb5abc6','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-49'),
('caa7c3c6-cf26-4227-b20a-307d11105a1b','7fbc0cac-4c11-4144-b578-3223cd9dd90a',61,230,5,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-27'),
('caa8df5c-14bf-475b-8ca9-e0a712d1b371','c51cf533-511d-4f61-a94c-3e48074db45d',102,196,10,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-8'),
('caa9dcb4-58c9-4e29-b864-1171602bec72','ca2466d1-9a83-4f57-8f76-f5ddce302e04',21,155,141,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-10'),
('caae5736-9eb3-44e8-9fc6-1d0dbe64ad78','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-26'),
('caaffebd-8b67-4ef1-a143-d4e840ead021','090b9a06-aee0-4c02-b626-f3e2002f0fce',52,59,210,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-32'),
('cab1bb80-34f5-46b3-a29b-9328e3340558','173da7e9-9f08-4f80-bd79-f624a6af761d',59,48,63,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-3'),
('cab4c7ac-62c8-4b63-8be3-aa0522569c03','9affc7b1-09c4-4e84-b48b-d0c117c421b0',105,203,6,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-43'),
('cab5048f-24a1-421f-bb51-d9e6d958f350','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-1'),
('cab5f052-1556-4b6b-b2a8-e92efce3236d','35108694-a340-4204-a046-217b0f92915a',131,131,15,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-1-3'),
('cab66481-324e-46bf-bfa0-09484d3754f7','35107d19-3a55-4de2-9393-cd2790b9c947',51,51,77,0,'2025-09-18 15:48:42.059','2025-10-02 06:11:24.118','437527391-1-1'),
('cab79032-21d2-40d4-bd9a-1c4d433d76d7','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-78'),
('cab7df97-d227-4e31-a6b8-92021e60ff3c','d0c01cd8-8089-48cb-8f1d-e521fc5f8acd',0,0,0,0,'2024-05-23 07:27:21.845','2024-05-29 19:00:18.557','745303298-1-4'),
('cab96f12-83e0-4d95-89eb-d0f62b962df0','be58b061-d13b-4150-9b6b-40941540f77e',95,67,75,0,'2025-07-12 09:19:02.178','2025-07-19 09:39:02.149','982708819-1-3'),
('cab97adb-96a1-4cf5-8e80-e500cb7e86f7','3268c72f-f164-49fe-b81b-8e7dba188814',106,216,40,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-2-3'),
('cabbe796-2d8c-4aef-9457-3481fc458719','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-27'),
('cabfd994-6961-4f88-95ab-d5a2f053bc08','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-6'),
('cac33f52-e9b5-44b8-be07-32b9ab13d61b','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',71,17,57,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.629','614659832-36-11'),
('cac4c267-7529-463d-a2e4-5ecd9795ee62','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-11'),
('cac78e66-76bb-45ad-8762-307c4d34bbeb','064e955b-72f7-4dfe-903d-af71b421e048',50,18,52,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-11'),
('cac92fee-4bfa-4372-a7bc-01498f3ec6d3','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-5'),
('cacb77a9-5f98-4081-b9c7-65a8daa9f0ee','d2f8d58d-42ad-4705-b1e8-a666af927fa3',36,24,100,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-17'),
('cacf6d65-0fab-4e85-8f2b-e7e95fe323e7','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-3'),
('cad0167a-f145-4362-980d-c3da29373448','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-5'),
('cad0e618-882b-4cfe-a366-e82eca1b42fc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:40.288','248284003-1-16'),
('cad3c78a-a046-47c1-b224-6caa87237b14','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:06.644','248135683-2-25'),
('cad6000d-4951-4013-8458-c1964181facd','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-3'),
('cad7d6bb-130d-4788-9c60-5699cd0c6e5f','dd6fdf61-e650-45bb-980e-83d576bfac38',230,67,90,0,'2024-03-23 08:36:28.333',NULL,'982425071-1-3'),
('cad8de44-3ac4-4e05-ade3-068b7278d7c6','faebcca0-46de-45fa-9329-665a09e1afc7',44,43,82,0,'2025-07-19 07:52:15.651','2025-07-28 12:02:34.929','371944289-1-2'),
('cadc53da-b4f6-46e8-b1a2-6847521ed1b8','81b00513-9ac4-4aef-8fee-fb279e70ca3e',67,76,60,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-2'),
('cae366a6-3762-44f4-9402-c52f90b111b5','38d02296-46cb-405f-9d09-5974d7326df2',0,0,0,0,NULL,NULL,'371258376-3-4'),
('caeba710-5526-48a0-8284-5f54c0cd0168','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.466','478972804-2-30'),
('caec885e-9726-44e0-8314-ce2bdb7cb6fa','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-33'),
('caf494e6-7cfb-482e-9a17-1ecdafd40290','0fad58f3-27a0-40f4-87e4-10112791f0ab',51,51,97,0,'2025-10-25 08:59:08.075',NULL,'351519592-1-3'),
('caf8b3c1-d992-4ac1-ad32-8d9cd97b7a41','27521c3b-da87-4890-b3ba-9b928cf6d336',76,56,102,0,NULL,NULL,'598967733-3-2'),
('cafe98b5-5c1f-4489-ba26-0fa2218676d2','6a2d762e-11cd-4fca-b32d-cdba41391e25',67,44,17,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-17'),
('caffbda3-f5dd-4dd0-b8d7-9e12203e640d','c235570b-ba36-480e-b52e-0e61d9b2b427',94,140,75,0,'2025-10-08 17:43:38.512','2025-10-17 06:14:44.871','371365427-1-1'),
('cb014383-e241-45e3-a406-adfe64d02bb1','0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4',52,52,70,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-1-4'),
('cb0684bc-5f22-4c15-870f-fc3243fcf4d7','70c34137-1e24-4496-a1ad-0465a945d558',90,205,65,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.646','598263441-3-3'),
('cb073af3-67fa-4d62-9793-8788f5fbd30c','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-2'),
('cb080257-d911-406b-b500-631bd890ae5b','d12ce78c-a7c1-4937-be74-17b603729cee',83,152,15,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-3-5'),
('cb099330-656b-4fda-92d0-e66e070e72e2','719f1147-b9ed-45c5-99c0-b1467885c18b',43,44,78,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.166','371514006-3-3'),
('cb1050b5-557e-4062-96d9-fd45a144297e','e7fecc3e-c40e-4f6c-ad90-02decc79e30f',160,198,32,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-4-1'),
('cb16e03f-3dc8-4960-aced-0b033e3a9e4b','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',60,42,16,0,NULL,NULL,'47816855-2-2'),
('cb1702bc-0a4f-45cb-892a-7443c7f541d4','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-47'),
('cb175a40-ff29-4a9b-850c-c91d48027028','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-26'),
('cb185fde-81dc-4bc5-8345-427aea69c1df','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-121'),
('cb18bdd0-d1f0-401d-a784-6c5d8cd277ea','81b6844f-9988-4a82-aa1c-b69b75b17ba7',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-2-3'),
('cb1bd0fa-855b-4d55-a25e-f9a59c22f968','8d8f5e69-a32f-4bc3-91b6-8db313adc977',103,75,245,0,NULL,NULL,'504960523-1-2'),
('cb1ed6a9-25ae-4113-868a-472ac8728ff5','10ad24a8-579a-4070-b518-bffa0ba09e26',53,230,37,0,NULL,NULL,'428905379-3-5'),
('cb2298e9-ce0b-417d-b012-14290db30402','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-15'),
('cb2410b1-a72f-4760-a0ba-87fad65492a2','6a308121-6cf9-4384-8446-08182bd669fd',90,58,12,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-18'),
('cb2575a4-8f55-4072-bd6e-dc936988bd5d','c29705d3-33f0-4fbb-ad6b-a8458c43b3d0',110,57,82,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-2-3'),
('cb28f2b2-975c-4116-90d0-5da8fd162462','e86f2f3d-8f0b-4894-8c39-9063af830231',58,160,14,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-17'),
('cb2a8bf9-b426-45e5-86e4-d249b272f8f3','b2c78cf5-c58c-4553-bd14-49e83916894c',48,47,47,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-20'),
('cb2d76c2-d9b4-4e09-bcaf-2d99f1241273','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',60,40,28,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-26'),
('cb2d8575-503c-4e37-a14c-1aaec72b24c6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-224'),
('cb31fd28-6b8b-44a9-8b64-5d24b6cdf184','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-18'),
('cb3638b8-67ed-4a0c-a5fb-e599f1b25323','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-24'),
('cb3747dd-dc28-4ed3-a0a4-8367a56dd377','6753c87e-8760-47c1-a5b7-e683dedab57d',180,202,30,0,'2025-05-14 17:03:44.747','2025-05-27 07:54:03.769','613464926-1-1'),
('cb37c0e1-8797-42d3-9543-85fef9240bfc','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-11'),
('cb3f2bbb-9745-42b8-8557-0cc1dcb26020','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',60,25,42,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-26'),
('cb3f4b27-ea31-47a6-8e04-3242dab6f878','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',26,35,17,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-56'),
('cb40fddb-0297-4f06-b447-171daebf9d91','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-30'),
('cb4397f6-ecb8-4804-900f-b2452b3bd6d4','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.014','2025-08-27 05:41:45.747','910632087-1-6'),
('cb48e860-414d-4149-83a1-b460db0303a6','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-5'),
('cb4d3824-7fde-400e-ac84-33700d4878c6','dca3d44c-499a-4076-b2f1-56f7b0be9260',75,90,220,0,'2025-02-03 18:18:26.436','2025-02-15 05:21:45.648','338474620-1-4'),
('cb4eb7ab-490e-405b-ac31-28729bd7473e','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',60,210,6,0,NULL,NULL,'531240111-1-8'),
('cb518fdf-d7de-4fe4-a1cc-3f793ad63ff1','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-72'),
('cb52b034-292b-4515-94eb-ec10dc802c0b','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-5'),
('cb545e1a-785e-4bef-b6e4-15f1018d4aad','607b4c5f-810b-47b0-aac2-0f9c1bde53fb',100,80,238,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-1-1'),
('cb588b4e-a7d3-49be-9d2f-079dc9ce5e35','2a4df356-6870-4e82-843d-6a6131e7e377',140,65,73,0,'2025-01-20 11:21:22.852','2025-01-30 09:59:58.590','98238273-1-5'),
('cb592423-c297-4b68-8e64-c140526b34cd','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-2-23'),
('cb5e5f04-4bab-4bd2-a5da-5809f91f84aa','bd97be19-c25e-4b62-a5ce-a4fa52c9903e',80,245,95,0,'2025-05-28 19:08:46.383','2025-06-07 14:07:59.723','517278082-2-1'),
('cb6224fd-b21d-4f83-9e83-b65604ed04cc','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-6'),
('cb6346ff-33da-4fa1-be26-26349640aff1','a4f356be-d4f4-498c-9119-e35100832eb1',100,120,70,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.016','982314530-1-4'),
('cb64e5b8-5f83-45a7-a2c0-cb743b49c76b','0437dd7d-aafa-4d57-aa20-17c1d42860e8',0,0,0,0,'2025-08-14 10:05:57.991','2025-09-01 16:57:30.127','268443203-1-1'),
('cb67c660-74be-422e-bc1f-0a898a296278','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-110'),
('cb6815bb-312b-4713-b001-d522eedf80a9','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',240,100,70,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-5'),
('cb6a15fc-eb0d-40a3-8627-826756ec649c','0bf540a1-4e97-4b5e-bff2-523992ba0522',51,52,54,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.062','505948491-1-4'),
('cb6a2eb9-5092-430e-b337-804a8676e18c','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-75'),
('cb6bb2a3-defa-463e-ba2a-8b746ffeee53','2833c015-c4a7-4e42-bcb0-6965d0bf9a2d',97,95,65,0,'2025-07-12 09:20:36.030','2025-07-22 13:23:30.418','598161990-1-1'),
('cb6cb37e-4436-4df9-a200-8873c780b903','df713518-2930-40b6-8d4d-ddc4bcddbec8',100,52,82,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-7'),
('cb6e8c71-83ca-447c-ae04-f790af0cc1b2','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-9'),
('cb6ff82b-66fc-42b1-be85-c71da7aa65ed','af53dbaa-15c4-4117-8048-34fd042df2fb',25,6,85,0,'2025-09-24 11:00:26.140','2025-09-30 18:45:14.653','531250587-2-6'),
('cb70b1b1-339c-4885-bb46-15828a7e81ef','0fad58f3-27a0-40f4-87e4-10112791f0ab',97,15,162,0,'2025-10-25 08:59:08.075',NULL,'351519592-1-4'),
('cb71ca9a-ad5d-4d41-b4c6-3abcd44f108b','4c79aefb-5f90-4b5a-9a77-80665b3ab906',0,0,0,0,'2025-01-26 10:54:25.235','2025-02-10 14:16:10.551','428633070-3-1'),
('cb72f1c6-8996-4592-9dd1-e540c573fef2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-211'),
('cb737c25-39e1-465d-b1fb-a06d2855db8d','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',240,63,100,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-21'),
('cb7b193c-3db0-48f1-a7df-f6c62da6ec37','eb8d4344-e18d-4390-80cf-728c7ac06212',0,0,0,0,'2024-03-16 14:34:18.928','2024-03-26 16:09:00.986','734391005-1-3'),
('cb7be107-edd3-41e6-a6c4-75b4df1a1335','1ecc5768-b507-40f7-a0d2-f557b0a01e35',95,19,10,0,'2025-04-25 16:57:10.447','2025-05-02 06:58:05.857','478537954-1-1'),
('cb7ee217-6a61-4d88-9645-c03e4c98d186','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.578','735785649-1-5'),
('cb80961e-4482-40ca-8b7a-dfac7905319c','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-19'),
('cb80a9e1-117f-4678-a96e-1e2e709e518e','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-2'),
('cb835496-ed8f-4043-9360-f9c4e45d26a3','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-5'),
('cb860c47-9136-4948-8c25-629484ebc5a6','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-39'),
('cb885ebf-6cf0-4d73-b4be-2c6526fd8ca7','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-18'),
('cb8df096-e549-4b59-8346-dbb61bbcaad4','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-27'),
('cb903fb7-237e-458a-8207-947737b7c7df','1c425bef-2f47-4788-87c3-d0b92aa9cb40',63,50,50,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-1-1'),
('cb9aa5e1-e434-4fd2-8d1c-63bb5bb93fb8','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-44'),
('cb9ab207-c5d6-46a4-8faf-ec6a7edc2f4d','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-10'),
('cba520c3-bdbe-41e7-a599-bf7cf1a49365','7311f1e0-e2be-43dc-9e40-f94a010e8939',52,31,14,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-46'),
('cba5982f-9f76-4dc5-b0cc-b713a6ab372a','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-2'),
('cba5b684-d8b1-4472-b18c-51e4697669eb','379323a0-114c-452e-9499-778f51675cf1',7,96,227,0,NULL,NULL,'221383692-1-3'),
('cba94ec4-1b0e-4899-b9b0-7063d391d8e1','cde2b645-2cf4-4ca6-9d59-ef733217c501',100,50,75,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-14'),
('cba99453-0974-44a3-983a-ba7e38572e6c','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-31'),
('cbab4ae5-a973-40f5-ae21-50066b1b8b0f','4c827ccc-5373-4bb5-b088-bc5d1ef4f91c',93,103,60,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-1-4'),
('cbac639d-09c4-4f1b-bd74-0e03562060c0','8c914f01-f6d0-4909-9906-64f504e70316',30,27,18,0,'2025-08-27 19:40:13.647','2025-09-04 06:16:37.995','437660658-1-5'),
('cbac9314-bd0a-44b6-bd84-ab4a77cb765c','8fc7023c-7fab-44ae-a533-006d835eddb6',44,4,208,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-19'),
('cbadae8d-5fb4-4647-98aa-28e5c0f39be9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-55'),
('cbafb467-ec98-419c-a4da-30287a1e5f78','0a8285d0-d3db-4298-8e41-62c5429f150a',210,135,13,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-20'),
('cbb0304d-9bbf-48f0-9bc7-3a27f25055f7','a918ff1e-42da-4211-9742-133995470138',84,104,70,0,NULL,NULL,'808690841-3-5'),
('cbb099fa-a171-49bf-b961-ba09ee89fb12','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',63,80,6,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-7'),
('cbb1b764-12cd-4f0c-93b7-c56e9437136c','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-54'),
('cbb28109-dcd8-4ea3-9be1-ca08079ee8d7','d30eb7b1-5ae4-4750-9c25-1fb72d0f30b7',240,95,65,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-3-1'),
('cbb375da-cdaa-45ba-b04e-1b2511f62326','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',63,45,14,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-17'),
('cbb4df25-2e37-4b95-99e5-4edcf6450b6d','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-13'),
('cbb5fe74-054f-4735-8bda-6687219fba47','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.003','2024-11-23 12:17:22.195','248143023-1-21'),
('cbb6d422-07b6-4026-94f8-b790dba1a641','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-7'),
('cbb76a70-acae-4319-a593-3dd556817f75','534b92d0-013c-428d-99ac-08117a624aee',93,93,65,0,NULL,NULL,'351183541-2-3'),
('cbbd0956-4bc5-4582-b0fd-626feea498f2','23916ed8-c0d3-4f6d-b7d5-f8117e883299',132,203,11,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-2'),
('cbc20cb9-3f09-4df9-a245-c51c77e602a6','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-38'),
('cbc2a377-4020-496d-9281-389ab82c3fc9','1b72736d-38b2-4d16-8ad9-6c6e005c6913',0,0,0,0,'2025-07-02 12:43:30.831','2025-07-21 18:56:12.310','412550726-1-1'),
('cbc71eb9-f49e-4f6e-aa11-6ae438687ff4','cf5e2f56-ede6-45c4-acb8-88a0bffb5f73',105,207,29,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.939','675139037-4-3'),
('cbc76140-169c-4141-9c00-84c09762765a','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-8'),
('cbc7cec1-5573-40b1-ae7a-4003f1f654b5','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-79'),
('cbca7e78-6c1e-403f-bd02-ae7f37333c09','6f8fd929-0228-4fd9-a182-83fe855d3f5c',108,93,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-19'),
('cbcb54d5-0fe5-40d1-8df5-cf03b24e88f6','bc27f6fb-29e7-4868-a1a7-34e9df8d2c77',0,0,0,0,'2025-07-02 12:43:22.406','2025-07-23 06:18:24.906','41295798-1-3'),
('cbcc96bb-5bb0-45ed-96c4-7a614571da05','ca2466d1-9a83-4f57-8f76-f5ddce302e04',281,22,5,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.686','382253716-1-19'),
('cbceaf5c-da1f-4e8b-94a7-1ff5817ad80e','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-86'),
('cbd0f019-118f-4bcd-a365-3f8f8b79f5db','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-33'),
('cbd117d5-fd55-4f85-92a6-171712ca3ff1','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-101'),
('cbd17e71-e56c-4917-8a23-1acb9a98ea2e','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-1'),
('cbd25e8f-de59-48cd-8e2b-b2bea5d68108','9ba4fbbf-2612-49b9-af34-b6b30652a24a',0,0,0,0,'2024-09-28 16:27:19.721','2024-10-09 08:37:19.397','745390643-1-4'),
('cbd42056-6d18-402f-a930-a41e1d1553f7','85dce3a8-9a2f-4902-a6e2-0f1045bf1c0d',51,51,30,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-2-2'),
('cbd6bd8f-b785-4963-bb85-aa4ba48e5946','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-15'),
('cbd72d58-5658-40d3-9540-6bad98c47fa7','6c43de3c-5454-4dc3-8fc2-6cd719969299',9,130,130,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.288','745907299-4-8'),
('cbd9ef6f-01e9-49bd-ad5a-cafc32127e12','abd1d92d-bf39-4c91-8d61-ddc273b6427f',51,51,61,0,'2025-05-23 14:05:08.352','2025-06-07 08:55:03.737','437917777-1-6'),
('cbd9f01a-4424-4665-8785-e83e0a3ce844','9b948fc9-34d4-413b-873a-889d552a3e54',51,52,62,0,'2025-09-10 10:50:28.012','2025-09-16 17:49:01.186','515261200-1-8'),
('cbdbfa16-d429-4dcd-9fc1-f1619417fac0','ca0dab40-6a42-4d8a-9908-04e48a98d8cc',0,0,0,0,NULL,NULL,'745883224-5-5'),
('cbdc53e6-0e33-4f03-a99e-41e6618f3c57','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-13'),
('cbdf3acb-8346-4f01-a2cb-2e0d87cfac92','d9a12366-07e8-4d5c-897d-e9877a9ebe15',51,51,77,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-3-2'),
('cbe198fd-41d1-4b7c-a774-a0308150abba','5ea4b207-b05c-4931-bbd1-648b6933aae5',115,49,50,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-34'),
('cbe23d36-b950-425a-8e7b-c1568f744fc2','b23cf296-f843-4492-9697-0fd43d657771',22,22,12,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.985','858200454-1-16'),
('cbe78cfa-a6f9-4a49-9a3d-531aa8926ae3','a705de61-d772-4a7d-92e2-87f1e616ec0a',93,28,205,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.711','437442386-3-5'),
('cbe8f246-945e-43fe-85e7-c2a042818767','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-5'),
('cbea38c7-1645-4ccf-aae8-ea075c3e4696','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-5'),
('cbebfc01-725f-40ed-a8cf-6f04790eae19','d4f91387-af40-4672-a65c-7ea6e96f76b2',13,40,168,0,NULL,NULL,'478350685-7-12'),
('cbf199e9-3677-4e65-938e-85d9d6724c59','05d4c5db-7f15-4790-9278-4411a57f7248',88,80,70,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-4'),
('cbf1c4da-7f89-44cd-819b-f9c2c1227a04','d1a94bfe-d49f-44a6-af36-335cd07624bc',83,101,57,0,'2025-04-28 07:40:54.849','2025-05-02 17:12:37.404','380417164-3-3'),
('cbf329d9-2eff-4fc5-8b2a-841b2ff0b558','1d2ec7e2-f735-46a1-96be-3994af90aaac',40,40,40,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-2'),
('cbf4e1d8-55ee-422e-81b0-9ed028a264a6','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-24'),
('cbf5b767-a892-4143-a674-8e786a9480f0','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-42'),
('cbf73f8b-a542-4ecc-977d-d0cd4c0ecb5d','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.466','478972804-2-31'),
('cbf8019b-f439-4dbd-b106-e1c498a025a7','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-13'),
('cc00155c-437b-49ef-9acb-0118e631686a','3caeee29-8112-4bd0-85c6-d8fe04eb2b45',57,60,85,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-1-1'),
('cc017a2e-519c-495b-9903-8d04bef47c82','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-5'),
('cc028d04-d291-4bf7-af23-d330ce9b2766','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-20'),
('cc04b9a9-0615-4204-bcba-f67dd71d15a7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:59.405','248135683-1-5'),
('cc0652e5-771d-4aa1-8634-ae3c95b5715d','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-32'),
('cc08351c-f090-42ad-835c-12a3100c7400','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-41'),
('cc08e095-f693-472d-8bdf-e12e91ace10f','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-19'),
('cc0a2ee7-a4fd-4661-afdd-7a827120ae13','017dc762-8784-4f7c-9562-900eb99d37cc',49,125,238,0,'2025-07-12 09:19:59.339','2025-07-29 13:54:21.901','65722132-1-1'),
('cc14b865-b6ba-4b80-8b86-0906eff35d3a','507b9bbe-ef2a-4a95-a25c-ea392d3d95e1',54,70,19,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-3-5'),
('cc15cea2-3182-4094-aca1-35cd31786422','796fef16-71d1-4946-b8ba-54f687adf598',65,40,20,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-23'),
('cc1928af-8268-424a-88c8-d969f0d164df','599860ac-efac-442f-a201-cf95773edb9e',0,0,0,0,'2024-05-29 08:53:12.992','2024-06-10 13:50:15.098','745220703-1-1'),
('cc1c7403-3b8a-4a36-9e2c-26c422ec4952','dda90efc-8994-493f-aa04-04ea47eb90d7',31,140,200,0,'2024-11-15 17:06:33.617','2024-11-27 15:32:46.318','449801040-1-1'),
('cc20951f-e7e9-4c65-a2bf-285a68d044fd','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-218'),
('cc22c102-17f5-49b8-9d76-253bc6a17f01','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-22'),
('cc236b49-3b16-4a83-8e3f-d9edfa414483','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-14'),
('cc26d68d-070f-4774-bbe8-776191167740','9edb0c9e-c517-46ac-b46f-908df1462d7c',35,106,216,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.569','598320188-5-3'),
('cc27eec7-c6fd-4fb8-a0e2-f650aee0a4ef','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',51,40,28,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-9'),
('cc286761-23a2-4aff-9ef0-7a435dbd0c38','886e0e1a-c599-47ba-bacc-c329212cc55b',86,2,207,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-20'),
('cc2b8839-6fd1-4795-9eac-9ea8486c330d','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-62'),
('cc2d3a1e-b364-4d2c-a167-1cb52e267c06','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-4'),
('cc2e2235-89bb-4765-b7d1-875675bf4881','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-23'),
('cc2f6f17-ad04-41e4-8bc2-683858208b22','05008527-fd22-4ebd-921b-be4d8555bbb8',51,51,77,0,'2025-08-14 10:05:31.015','2025-08-27 19:39:28.223','505987989-1-3'),
('cc2fcf58-99d0-4a03-b350-95d66c0e8747','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.288','412746738-1-64'),
('cc30480c-2efa-48e8-a978-49bde5a28d7e','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-3'),
('cc327db1-c457-4f8c-ad5c-853424e7280c','9f5345e8-c934-4c59-9caa-7e2a4551c5c6',11,87,87,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-3-2'),
('cc34f639-6810-450f-a536-d4b0c8e12305','05d4c5db-7f15-4790-9278-4411a57f7248',245,90,68,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-5'),
('cc364bbc-2f89-47bf-8efb-34119c8213a4','50cd18d1-456d-4a3a-9315-1c4d4ae815b9',120,120,65,0,'2025-02-09 09:51:24.840','2025-02-19 18:36:53.202','50133684-1-5'),
('cc36ff5d-46bb-4cae-9f8b-f0faac362271','82ff3bdc-91ea-4214-98c1-4dc85d6f9504',0,0,0,0,'2025-01-20 11:21:20.024','2025-01-31 12:16:13.312','221946527-1-2'),
('cc39decc-62e9-4992-ab8d-abd8685f8831','a446ee8f-4536-4399-8d47-bb110cf8b626',53,33,204,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-3-2'),
('cc3ad11e-e83b-436d-97f3-84428d463ba1','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-21'),
('cc3e0b27-f831-4ba8-a74a-c4b60d9bab94','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-57'),
('cc4124a7-a5f0-4a21-9b8f-a818c7a0aef4','82e374dc-e5cf-41a1-b1fa-0fdb48c6e735',100,103,68,0,NULL,NULL,'808855328-1-6'),
('cc413f83-ae1c-4d7a-86a0-e761924b4a3f','d735327b-ac4e-4761-98e6-d9e2e53b4b8f',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-4-4'),
('cc439d64-f779-4062-ac1d-2dc1f99fb93f','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-78'),
('cc43ae08-d9ae-4182-8099-e4a8d7e75a1b','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',0,0,0,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-27'),
('cc44a6f8-2f38-49e8-aba6-0f007d291f72','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-9'),
('cc460c2d-22cc-448f-a66c-bc46001fe26a','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-17'),
('cc4640cc-ef95-44c4-8b03-1b259e3ee562','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-197'),
('cc470bb7-f089-4283-958f-27dce4dab132','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-23'),
('cc47d81b-6644-45dc-b6a2-945b54584444','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',97,73,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-7'),
('cc496a44-e3e7-4586-9647-c68c8abc2b38','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-16'),
('cc4f533e-adf8-4ea5-bfac-246cdb1b5a58','0886662d-3f5b-4da6-acc3-7da74bb71f94',101,202,30,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-4'),
('cc503426-3f6d-4b32-ad81-78f5419add56','ce4976ba-e974-4470-8acc-c28f5a58a2e9',10,10,323,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-6-11'),
('cc511658-c793-4b2e-945d-f64709f95f2c','4301b768-4818-4e74-a6d0-12a33474f5c6',8,59,221,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-22'),
('cc51309a-b36b-493b-a870-70aa08bfd137','d83c40d1-4df5-4c97-bc83-28837db95b2b',260,50,4,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-66'),
('cc51c6bd-a544-4011-a65d-a0ecc9180367','baa0c4fa-32af-4807-b14b-e9e9f404f5a0',200,160,28,0,'2024-03-23 08:35:58.941','2024-04-04 12:48:01.104','268437547-1-2'),
('cc5431b0-24a7-4a23-a55a-f664901c7cbb','1d2ec7e2-f735-46a1-96be-3994af90aaac',80,80,58,0,'2025-09-16 16:29:23.563','2025-10-03 06:54:42.114','750363306-1-11'),
('cc556015-05ab-43b5-88e4-1b644c7328ac','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-73'),
('cc599c3e-7531-48c7-bae8-5a84c009a969','04a41e24-7197-4701-a8ce-c4a0dd073b19',99,125,65,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-1-4'),
('cc5f3e8e-6f7a-4531-928f-7f068ed4590d','00309240-1237-48cf-8533-21b60a560393',140,122,72,0,'2025-08-14 08:21:15.981','2025-08-27 05:38:22.526','428326285-1-1'),
('cc5f55c8-77b3-470b-b1d1-8aa1cad137e9','efb12d78-a6d9-4ac9-acee-1e0a5f965fbb',94,94,69,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-2-4'),
('cc65207a-8029-4e7d-9116-0d709de37888','832915ac-d62f-48db-b00f-8e585de422bb',35,73,192,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-8'),
('cc6ca041-6143-4232-920e-7c9e19bc40b3','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.201','221693523-2-2'),
('cc7059d0-02fe-44da-9e36-36dbf81e9480','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-19'),
('cc71a5ae-dd4c-43d5-8bec-a260d1cf2082','9e9d8510-86a5-49dc-924c-9ab30e855883',65,96,196,0,'2025-10-02 11:20:43.409','2025-10-17 06:16:56.789','976185606-1-5'),
('cc71e4c6-6e4a-451c-9c58-ee2f33a5d0d0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:41.607','248284003-1-89'),
('cc76b0ca-aadc-4f06-82bb-2200f5901b0f','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-5'),
('cc7873dc-5f1f-4dc9-af2f-548943fc20fb','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-145'),
('cc79959a-8ed9-4047-9cd7-6ec5e777467f','7b46bf4a-5ce1-4ec9-a494-a8f2948495dc',105,105,5,0,'2024-11-08 17:37:54.790','2024-11-21 12:40:15.277','982446186-1-4'),
('cc7ab271-9119-4446-a5a6-e6f358f7f1f2','3686d41a-cbdd-4250-b290-6122476b8f7f',0,0,0,0,'2025-08-14 10:05:44.166','2025-08-29 16:53:28.044','745241298-1-5'),
('cc8059d0-6982-4846-bf40-0e3cd6fb271b','21b92c18-fe01-4738-a64f-22357aa1711b',53,76,102,0,'2025-05-14 17:03:58.928','2025-05-21 15:30:17.272','01914447-1-7'),
('cc809ca6-b183-4760-b1cc-7d64c38ab2b9','c9b410bf-c39f-4d56-97b6-272196df3cc6',58,52,52,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-2-7'),
('cc81ea5f-aa78-4036-8344-345cb2ed4319','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-27'),
('cc82933c-6613-454c-85e2-96a4c55d0ab9','5362cad6-3ac7-4876-8ddc-d366e2335688',100,36,20,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-4'),
('cc838431-7592-427a-a7d4-25b829af84cb','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-9'),
('cc8426d2-357b-47bd-b70f-e01cc0e78179','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-4'),
('cc84a453-d3d1-4760-b091-f3c642877d1e','bd8e3f8c-38a2-4d5d-a99a-df88e12d80d7',97,56,56,0,'2025-10-25 08:58:58.836',NULL,'74521183-3-8'),
('cc8605f8-53cf-4e3b-827f-ec921b0e8766','87758232-82f4-41bc-a8c1-71f044bd69f4',115,68,101,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-5'),
('cc86a41d-77f8-44c0-97c4-ed6c9b96fdf1','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',180,40,18,0,NULL,NULL,'428413605-1-16'),
('cc86d65c-15f8-4ba2-9068-2a33d2017326','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-70'),
('cc870b44-7737-46d7-aa19-48117e0c15ed','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-4'),
('cc8cdebf-ed0e-4189-aabc-d94a2e4b1bdc','ba5911fb-48f7-4812-9cf8-75c9a9e745fb',0,0,0,0,'2025-04-25 16:57:06.397','2025-05-02 06:59:08.326','428459785-1-1'),
('cc908dfc-4127-46e0-b921-f32c004f02d5','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-49'),
('cc90fbd2-54a5-410e-8f5d-d50e05dceaea','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-55'),
('cc91227d-68c2-4b70-b888-ea9381a72a62','5b4bf6ef-1cff-47f3-b8b9-c0a4af9ad9c1',51,51,77,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-3-2'),
('cc920972-44ef-4b89-93ab-be1cc11b8429','8430af40-36c5-4b58-b933-e2ca938f7a86',177,70,120,0,'2025-04-28 07:40:16.767','2025-05-10 20:12:50.163','644282587-1-4'),
('cc9275c4-073a-4db3-a318-3589049fbaeb','158455d3-2130-4d98-9534-cb36e6c15df9',54,50,40,0,'2024-10-23 14:11:45.969','2024-10-30 18:10:11.200','61480625-1-7'),
('cc941966-a07f-4e93-907b-ef8b01d9d976','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-104'),
('cc96ae07-64d8-429b-83f0-7d0a1293fc82','601003c4-c08a-4b64-839d-d5ab37e7595b',75,102,96,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-7'),
('cc98fc3e-60c4-4383-850b-1385cce1f887','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-160'),
('cc9ba891-ab7c-450f-9e76-0ea226356fe5','0009aeec-e682-465c-b701-363a3ef377a6',165,7,60,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-70'),
('cc9cea80-0fc8-428f-87af-379da5d3f1f7','e3ad38ad-67b7-48ef-acdc-c2e13831e843',89,54,84,0,'2024-03-31 17:55:17.373','2024-04-11 06:19:45.987','44926965-1-9'),
('cc9ef3d3-4755-451e-8865-2ea1016c1f8b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-122'),
('cca03706-2347-48a8-910c-c703b1784202','2eec8f61-f0ba-4216-ba7a-88e2440d43d3',51,51,77,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-2-2'),
('cca0b393-3cc7-4df9-8f1d-9e639edcab92','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-9'),
('cca4818b-e533-42bf-ae79-1543c8b17dfc','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-9'),
('cca6dd05-2a80-40b1-92a7-bb9f1fea30ac','95b23b47-344e-4706-bc50-f1bc5ed6c00c',0,0,0,0,NULL,NULL,'598604443-2-4'),
('cca8f176-9e3b-46e1-b2fa-f49ffcd7d5bf','b5a89fbe-951c-46bc-b6d6-4131d953a51b',80,85,85,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.087','598425779-3-1'),
('ccaa2279-d1c6-4410-bc36-fbce7fb916e0','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-18'),
('ccab2b36-9f3b-42f3-b7b4-7742b04d74d0','e8b58cc1-698b-4364-ae95-f00b90174c08',84,85,6,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-7-13'),
('ccafaaf7-eec7-42bc-b464-85db9b14f7ab','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-4'),
('ccb011ce-daa3-4b8e-965b-3575361bcc57','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',51,75,17,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-37'),
('ccb2c9c4-8f3d-4c1f-9a42-dbad3248decd','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-13'),
('ccb40354-ede7-4871-bec7-f7c140366ed7','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-124'),
('ccb62bf6-7eba-450b-bab9-e4d3e7d36456','0bd42145-fdd8-4793-a5cd-a2e404d37142',135,57,15,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-23'),
('ccba531c-5cdd-4365-8c2a-6541f3efcf65','0aab1b88-d692-45bb-916e-0ea02b2888ef',70,75,70,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-1-1'),
('ccbc5d1a-cbb1-4ec7-a16f-46c1e4a7da86','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',65,18,38,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-33'),
('ccbdb3c8-6944-4ec9-aeac-c70b57de35ad','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-61'),
('ccbdb77f-8f15-4e0f-9d38-276683ca37eb','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-103'),
('ccbdcbb4-5270-47ff-9132-75d4c18f52ad','6971c3a9-6317-47dd-8a88-6da1fb0016df',46,44,212,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-2-1'),
('ccc0fe27-d01c-404a-9aca-99f3274acb42','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-119'),
('ccc4bbd0-badc-455d-ba54-be8538e6c2b7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-110'),
('ccc93607-41c2-46d7-9582-ec9b61897247','fc8faca6-fdc1-4e86-afea-1df42ea048fe',57,50,105,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-3-2'),
('cccd8e95-0ee3-4284-9bba-5aca4392a546','7ba47169-83ca-49a6-98fc-6ef1a1990eac',210,60,2,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-21'),
('ccd02f37-a179-4c45-91a9-e10578c9bd36','8625abf2-719d-4d7f-b206-16948b318b8b',93,40,4,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-23'),
('ccd26b71-1e35-4759-b10b-e3d6d6f80da2','bd3024d4-77ba-45bc-938e-d1bc61220b35',93,230,70,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-1-2'),
('ccd27423-a2dd-4a16-a932-f5c06c9a846f','eb329603-e121-4099-9308-964edd5b6713',43,43,75,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-4-6'),
('ccd441e8-1c49-489f-b14d-d1d3931d4718','9a10006b-3d87-4f21-8a80-57aedb8f97b7',178,127,100,0,'2024-11-02 08:42:22.462','2024-11-12 16:16:56.945','448805304-1-6'),
('ccd66215-1bab-4abd-ab88-e4d9d9e0deb5','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:07.463','248135683-2-39'),
('ccd6f027-8df4-4009-9c51-4d3c4c6991d4','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-6'),
('ccd8f455-1364-4679-9442-5b5f63a7b440','5d03f819-f7e6-4cdd-aa5d-ca38ac9f6b4c',0,0,0,0,'2025-07-02 12:43:27.646','2025-07-22 10:19:34.420','501423957-1-3'),
('ccda0933-a4bf-4c11-a999-4f9bc5ae8d85','f11fa07a-9aee-45ee-9bf1-964d6f5ae88f',0,0,0,0,'2025-05-28 19:08:49.094','2025-06-06 17:37:40.880','644771270-2-4'),
('ccdcf522-5402-4adc-9f82-a1916c0eee48','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-4'),
('ccdd38b1-17f2-476d-9285-0f0c3a3e9a06','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-44'),
('cce04eba-b4c9-4d68-99d4-525799111203','e622181e-7708-44a9-8b12-3952b738674c',500,10,10,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-7'),
('cce09d31-f4ee-46f7-b0de-4c2c9b75c20b','e27d44d8-bed3-424f-8cb6-c8ea504df175',0,0,0,0,'2025-08-25 12:32:03.422','2025-08-31 10:05:41.863','735271543-1-2'),
('cce127b6-0fd4-41f6-a650-1dd9ae352d25','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-1'),
('cce2bb8f-55ac-436f-b3d4-56bcac7c2bcc','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-23'),
('cce34676-2be3-4f28-a995-9f4dfbfdce0e','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-70'),
('cce3953f-8ac7-4af4-9e32-994dd2d638f2','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',85,80,60,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-28'),
('cce5ff98-a7d0-4f8a-8c30-55d216bbd642','a71e29a0-9fac-4e05-b331-b3c24249dc5b',97,208,65,0,'2025-09-24 11:01:47.721','2025-10-07 06:18:03.066','371495147-1-2'),
('cce7d0fc-93c4-4eaf-8a1f-23f4f384840a','27f50539-120a-4017-b647-afcae9da99f9',160,68,50,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-3-1'),
('cce94d02-822c-4ecb-a7f7-7c9f1b536c0f','158455d3-2130-4d98-9534-cb36e6c15df9',54,50,40,0,'2024-10-23 14:11:45.969','2024-10-30 18:10:11.200','61480625-1-8'),
('cce9f3bb-fa6a-4b52-909f-4a7e5f7d9536','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',170,38,38,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-32'),
('ccea40e1-6e92-400d-958f-9faed02595ee','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-16'),
('ccebbb67-91b8-426f-99cc-906507f5e245','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-46'),
('ccedc3bd-4cc9-4f8c-a96e-aa958858581b','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-2'),
('ccf045b0-9aea-4c00-bfc5-f5b3df498589','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-24'),
('ccf05514-c78c-4f61-b861-8d64e94e3571','9504c24b-6a37-4522-83ad-b302a5d583a5',44,11,215,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-6-18'),
('ccf38b68-b480-4835-9b5a-c88119f8d6e6','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-60'),
('ccf5b3d6-f31a-4242-bdd3-42dabfba85b9','ae9a9400-7a4a-46dd-bdca-d8a0d71d424d',70,200,95,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-3-3'),
('ccf86092-76e4-4b76-933f-8b718e2f9ae6','e4dc3d63-61cc-43d1-a994-57b58fd78884',63,65,86,0,'2025-05-25 10:54:19.838','2025-06-04 07:00:14.609','437791709-5-6'),
('ccf93b35-0452-4b2e-b42e-d887d2c35c07','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-21'),
('ccf9f774-5cc8-4b1a-a839-4a6fd440e1d4','5dcc9ef8-8356-40ee-8dea-7d614cc219e2',230,103,78,0,'2025-08-14 10:05:47.047','2025-08-31 19:20:30.340','478322325-2-4'),
('ccfa3dd0-a20e-4e1e-9f7e-a727ed08289e','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-20'),
('ccfb7655-d99a-49f7-a89f-270b3029fc37','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.904','2024-07-18 07:32:21.072','412586204-1-146'),
('ccfbbc25-fe7b-4da3-acd5-9c904aa365a8','767f6a12-5e00-41d1-992e-56b1d6a8b714',63,85,66,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.058','982843761-2-3'),
('ccfc8b06-23a5-4ef1-b3b7-87c967bb0d8a','055c6f8b-9b1b-4daf-8b1c-5ee2ad6db7d4',56,82,101,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.035','531445058-1-4'),
('cd00b17a-03be-4cc1-abed-9837e4b3c599','3535d433-eb38-4879-84b4-dbf8410809cd',53,10,45,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-10'),
('cd01e2d4-2ed0-481b-aff5-d99d04cab474','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-95'),
('cd03ac15-92c6-4628-a3ea-6ce6191006be','e1ea146e-dd39-4b5a-b0e2-af130a4ab837',55,73,102,0,NULL,NULL,'644726352-2-3'),
('cd05cbbc-9301-4ae7-8748-e64788f62524','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-3'),
('cd05e3d5-3ded-4f06-a1d4-f872470ccc69','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-7'),
('cd070967-7e87-4ebd-8d1d-98bc15c78076','af69c5a3-87d3-4548-a650-720b69a4fc69',160,200,4,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-46'),
('cd07fd1a-7d27-4e0b-b5e2-f848b2c1a559','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.845','2025-06-04 07:00:07.030','22391500-1-4'),
('cd0bc71f-57f2-4a64-b61d-b53a59b87f77','3aca7d6d-09cb-4903-812e-7535a083b09c',50,10,5,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-14'),
('cd0cdf61-7bb9-4a60-a06b-721bc125dc69','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-28'),
('cd0e8eaf-708a-48d4-9570-2f1f8b558af9','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-2'),
('cd0edcfe-6de6-4545-919a-a31209f7e655','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-182'),
('cd126831-ff0e-4b6e-a6f3-c1c6cc291205','7e556896-a771-421b-94de-44bfbf0436f8',69,107,69,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.482','80873489-1-2'),
('cd12c1c3-b054-4fec-a87a-6f06f34f79c9','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-129'),
('cd14090f-32d7-4272-b61f-d49145466aa7','d0f5d27e-51ff-470c-bc49-8beb1dcf3ff4',38,38,74,0,'2025-08-14 08:21:35.471','2025-08-25 07:10:53.527','982978293-2-2'),
('cd148d10-c3a7-4038-aef5-86178e1f5a5a','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-21'),
('cd16723c-742d-4fe8-bce0-6de018f94a85','632d93a0-7487-4d3b-915f-23bcd33985a4',0,0,0,0,NULL,NULL,'614941926-6-1'),
('cd169254-00b0-4ca8-bd90-59bbe74c3bcc','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-79'),
('cd1b82b5-6f0f-4dd8-8633-efa5dbd80a36','660a4e89-2eec-45b9-9977-7a81419e94a9',76,45,45,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-1-1'),
('cd1b9685-bb1c-4162-b6db-091e3ccdd5d5','138edf36-d166-4335-8560-d9873886e31c',63,7,151,0,NULL,NULL,'745189997-1-21'),
('cd1bff28-b496-4fc1-97f1-8471157d01c6','3987bcda-6531-4738-8815-187fd84bf71c',112,40,15,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-18'),
('cd21a131-78cd-4aea-9e78-641ef05a6ab2','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-18'),
('cd25c263-6593-45af-84c1-6475d5e0b04e','5fb48abc-0e89-4676-848a-05c84bfb094a',51,51,77,0,NULL,NULL,'613495902-2-1'),
('cd265bc8-66f8-416f-b431-69dc954f7c3c','8e02a371-acd3-4f1e-9f76-1614cdddbfda',0,0,0,0,'2025-08-22 20:28:44.259','2025-09-03 06:11:30.430','37119244-1-1'),
('cd26ef99-04b7-46cf-a237-cfbdbf6ae437','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-7'),
('cd294cd7-a936-44fa-ab69-f68215b381f7','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-23'),
('cd2d241d-3acf-44b2-a8c3-c6c1efc3598d','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',200,160,5,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-3'),
('cd32c1f2-f5b5-49fe-b0c9-396bf1a21251','6226bd29-5d06-4891-9ca0-310e4356024f',57,83,102,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-2'),
('cd3365e9-4cc2-4a10-9eef-99d54632c88a','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',120,200,33,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-47'),
('cd35b6e9-52cd-4796-8067-a5d8835f2b3d','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-5'),
('cd375a13-97d5-43db-9ad1-f407359366b5','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-24'),
('cd3e9ac5-ff98-4dfe-ae67-c53a2bcfa83f','82fc4a48-c8f4-4b24-bbc7-afa67ab79349',66,67,85,0,'2025-04-30 14:29:19.154','2025-05-12 09:07:43.431','531549696-1-10'),
('cd4506f6-bbba-4224-bc6e-95d5582e27e3','0009aeec-e682-465c-b701-363a3ef377a6',50,35,35,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-71'),
('cd473b46-642e-443c-8d5a-37aea64f5e7c','a2d857b1-bcf6-46ee-9e87-dabcdac62719',135,63,92,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-5'),
('cd4ad796-0318-4204-bba6-df9a5b4cbc56','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.360','2024-04-17 10:16:12.696','248435862-1-17'),
('cd4ae627-9efe-42a5-b47b-34aea6752dea','bd088382-ea59-4eef-9d88-602bb3f44bc6',51,51,6,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.126','428653750-1-1'),
('cd4c6c60-0b54-4165-b37e-fe866b890ac6','ee623458-4a98-41d0-a385-199504c6175f',51,51,77,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-5'),
('cd4e96cd-4897-4a1f-8133-34fc4c4791bf','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-5'),
('cd520f0a-7924-4087-9665-2bf266fd802d','8cfe9d22-5427-43f8-8477-4b5c89b07842',57,82,110,0,'2025-10-08 17:43:53.788','2025-10-17 20:57:31.178','745980941-2-1'),
('cd536e6c-2d75-4134-a995-5384630189a3','c6df5a40-83e7-435b-ab59-3e39b8d977c2',65,57,102,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.463','613191069-2-4'),
('cd62a5f4-c830-4b84-85b7-d14af78e5873','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-1-4'),
('cd63fc1f-be88-43ab-914b-8193fdc951d8','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.971','20390821-1-37'),
('cd64077b-ab92-4807-a19b-089edf64fc65','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',210,64,7,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-57'),
('cd653a7f-e55c-44ae-9209-acfc130d30b7','0009aeec-e682-465c-b701-363a3ef377a6',210,10,30,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-72'),
('cd667c4d-907f-44d9-8690-389b6bc7e7cd','da725bab-47fe-4aea-b4e3-094195e16ad2',114,100,70,0,NULL,NULL,'745509928-1-2'),
('cd69f140-e8aa-467c-8f60-9144c57d7486','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-25'),
('cd6b19ac-6a02-4e28-8bb3-10da1a464986','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-4-23'),
('cd6d0bf8-31d0-4fbe-a0cd-162936e7fc61','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-8'),
('cd743d8c-34c5-442c-aa1f-b024f1d3a319','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-51'),
('cd78ce32-778b-45c0-bf8e-9af453388818','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-13'),
('cd791d83-f67f-4e18-8ee3-e2b79603a8e2','7a3edb87-0b6e-4717-b4d7-94bb1c49be21',100,70,233,0,'2025-05-09 18:43:46.889','2025-05-21 19:37:59.629','371494792-1-1'),
('cd79ba86-4748-41f3-b05d-e92dc0fa1a7b','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-131'),
('cd7d46bf-47d1-4df5-aba3-5fef65ece7d7','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-1'),
('cd7e4a0e-2b56-4107-9a5e-bf09bff27a7e','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-14'),
('cd7f5d3b-10c4-4e42-adfc-cd8040a7c8fb','4e4af127-4320-4f89-92fe-1163834e6b38',183,80,90,0,NULL,NULL,'449888594-1-3'),
('cd807727-8d29-444f-a54c-55f3e9c6d0f8','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-6'),
('cd84047e-ae3b-430c-8fc5-ece2983ab1a9','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-134'),
('cd8431b8-30b0-4d1f-98cc-602b535b5771','f550b581-aef2-457f-bbad-307433755791',106,58,85,0,NULL,NULL,'613495902-5-3'),
('cd85359b-d6d1-4e3f-9e0e-7dd3de2dcd27','dadc5d04-be0b-4da0-980b-6007bbb7021f',77,26,127,0,'2024-12-01 06:48:14.667','2024-12-10 12:35:38.736','517764616-1-4'),
('cd88605a-83b3-4d4e-b87e-80efe693184f','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-5'),
('cd898b31-c8c5-4077-b66e-e68b5c1ed0a9','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-23'),
('cd8dd29b-76ad-4a4d-8d28-1cd617208071','afc7f97f-5b35-46dd-b4b3-504f99ecda3c',42,28,195,0,'2025-08-22 17:28:31.605','2025-09-03 19:35:06.309','011620933-6-4'),
('cd8e15ad-a91f-4e8b-aa33-9ff2bd7b9e93','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.447','570899680-1-61'),
('cd9139be-ec09-44ea-83e7-811dda8ec564','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-3'),
('cd93eeee-3d89-476e-9c7e-a01da04de67a','a705de61-d772-4a7d-92e2-87f1e616ec0a',93,28,205,0,'2025-09-11 06:34:14.468','2025-09-17 16:03:39.711','437442386-3-6'),
('cd95ad68-8d9c-4eb6-add6-9f93c1c782de','86839fae-db78-468b-ab03-dbec339ccf7a',45,45,55,0,'2025-10-25 08:58:58.836',NULL,'74521183-1-2'),
('cd963bd1-dc54-47e7-b197-54ea42f22f5c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-61'),
('cd9b0c44-2ac4-4ca2-bbc3-d498bbde916d','8f339642-bf4b-403c-9289-3a16f3a3b2e9',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-3-4'),
('cda0d326-591d-45b2-984f-d6ad8c3e9273','796f74f1-a123-4566-9122-ee642d251917',51,51,77,0,'2025-09-01 11:05:48.581','2025-09-08 11:26:52.008','505129515-1-5'),
('cda16fe3-28c4-4554-aa58-5b9ce77ab7c4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:51:59.964','248135683-1-52'),
('cda1d45f-4994-49c2-bddd-8665d24f12c7','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-3'),
('cda43b04-cf29-4a79-84ad-8d39cd519ca1','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-104'),
('cda45057-a4b5-48af-842b-04ab98e5bb0d','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-41'),
('cda452a4-080f-4fcd-9dee-11f8312c3b01','1a93f0e7-35b1-4d7d-8e2c-3a74dc8ac1d8',180,9,90,0,NULL,NULL,'59898054-1-3'),
('cda54bb3-12bb-48d2-a7ba-3089d70ace42','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-7'),
('cda5bc55-1572-4311-83a5-2b90386ea362','c1a31a07-5113-4703-99ff-14d4a90ef1ba',80,5,206,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-16'),
('cda6ad93-0a69-49d7-8ea5-78edd6081583','a307363c-9911-4bec-ab96-f2419bd7e6fe',44,44,40,0,NULL,NULL,'9823833-1-6'),
('cda815a2-c957-4613-958b-8d4d6a7852ea','97f30c95-1381-4341-ab94-c74b11d28be8',92,96,80,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-2-5'),
('cdaf32f1-ab60-4105-9101-d26fdc559ca8','5aac8c34-51ea-4438-b73e-7d54bf02d518',180,200,29,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-14'),
('cdafcef8-84ff-482f-99d4-e25640f958d4','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-16'),
('cdb448f7-89b7-482c-8698-ac888df1ba1c','686241ae-bda0-46d6-810f-2b17e9e251cb',97,97,72,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-1-2'),
('cdb4a45d-3640-4fa2-90a2-a2f9d55a4da0','f9861f37-efe2-4e3a-930c-f694c4e10c6f',100,82,56,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-12'),
('cdb4dbb7-d4a9-4916-ae7a-ce7a5f5c5d12','4ac8027d-d5db-4a57-916c-23dd357c98aa',75,43,43,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-6'),
('cdb68d15-9bad-476e-bad8-eeea6382e7cb','54d3748f-dda6-479e-918a-23bd09a831ab',102,38,218,0,'2025-10-22 13:06:44.055',NULL,'598894090-2-4'),
('cdb6d7a3-ffa5-4c6e-bfab-7c8ef0dce23f','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-34'),
('cdbabc59-702b-4acd-8ec4-1c3cb9c4a21d','0e7b8360-16df-453f-8ed7-323ac1691841',68,172,176,0,'2025-03-27 08:02:38.697','2025-04-09 06:26:20.389','644599754-1-1'),
('cdbb72bb-f567-4e58-aec1-58c6a917a75a','ca9035e1-80a3-45dc-92f0-bd7c607a8cf0',54,101,73,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-3-2'),
('cdbce61d-36c1-44fb-a867-217cfa22e306','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-23'),
('cdc89c5b-2e42-4f3c-9edd-400aad3f8855','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-52'),
('cdcad27f-d7ed-4d51-8ee9-fe0e528dc62f','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-31'),
('cdcb06cf-4816-4e3c-a156-02df98113f7b','fbc99d3f-b7ca-45f4-80c6-ac85cedc72dc',65,52,81,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.911','598444930-2-6'),
('cdccfdce-9d5f-47fa-a4f6-104cc6ceec44','2881c493-0a0a-403e-bf7b-36c55e85e85c',235,50,65,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-1-6'),
('cdce3f4f-7ffa-4ab0-aa76-4d0a827fb373','b39244ea-16b4-435c-9bb4-e2081e2736ed',103,100,70,0,'2025-07-02 12:43:25.536','2025-07-23 06:18:04.215','644330933-2-3'),
('cdcfdac1-1879-45fd-89b1-fe08b5c16991','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-201'),
('cdd1944c-55a6-4e99-812b-78ee1f61d37c','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-7'),
('cdd1fd1b-2599-4e96-8b17-f2c110ac6265','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',63,209,7,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-18'),
('cdd4b61e-295d-4f52-9632-e1caed017542','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-8'),
('cdd64f81-2ec3-4495-905a-290671f9b01b','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',60,42,55,0,'2024-10-02 09:26:32.555','2024-10-10 16:31:34.970','428736949-1-8'),
('cddb0568-10f1-4ab5-b2f6-d06fedc0c360','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-54'),
('cde4b9b5-a36c-4521-8a98-931f7f9c531f','55ba31f7-49c7-468f-b2f6-79eb12fe2db4',77,57,57,0,'2024-11-21 10:29:08.702','2024-12-14 17:25:34.448','126245978-1-2'),
('cde6c936-d9c6-4d19-9ef8-b76b1a82941c','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',165,31,13,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-22'),
('cde6ddba-13b4-43bb-a874-fe0a74c41c37','984f1373-fcdf-438b-b771-54cf2b74c91b',126,76,8,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-1-5'),
('cdec8dd0-a933-4375-bf2c-bd4b1e56048f','c71fdc71-df3e-48af-9323-d534b0931ff1',6,15,263,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-19'),
('cdf2a380-df77-4cbf-a7d1-79bb5dca792d','c1d25f90-d493-406d-a430-9b65b4f44c5e',28,43,60,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-12'),
('cdf39fa5-8b6e-40ea-abab-72ddb0dd12ae','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-14'),
('cdf9e76d-1967-447d-9cf8-5d0b1137ac07','135906fa-fceb-45b1-a401-83de82461319',56,100,80,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-9'),
('cdfe2855-7d6f-47dc-9aa5-16356f0e7ae7','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-16'),
('cdfe8d94-8255-49af-a7df-e7cda1a36662','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-83'),
('cdfecd7c-c313-4c3a-9408-070d2c491915','0803fa20-5b74-42fc-8f96-ac10c2c5324a',175,95,67,0,'2024-03-31 17:55:08.069','2024-04-12 07:17:12.019','982992264-1-1'),
('ce002da7-93bc-4d88-993c-4223596e9a0f','0fad58f3-27a0-40f4-87e4-10112791f0ab',74,80,8,0,'2025-10-25 08:59:08.075',NULL,'351519592-1-5'),
('ce003aea-f0a3-42a7-bf87-c3f8ee31a537','f2159b2b-020d-40ff-ae20-f912043ddb26',102,84,58,0,NULL,NULL,'515491042-1-3'),
('ce01979a-d5d6-415c-bac6-1c9cbb11702a','485c676d-9cb1-400e-9d2c-e8f3c85d9402',54,76,100,0,'2025-07-02 12:43:19.787','2025-07-23 14:29:13.652','644403373-1-1'),
('ce047553-3263-43b8-abc7-86d3c27a214e','565f6966-f194-4d7c-8b20-64502045078d',50,28,77,0,NULL,NULL,'478350685-2-15'),
('ce06baa5-b974-49d0-9dde-f970bf9d4ecf','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-8'),
('ce075eaf-394d-4d48-9b5a-230cee4e30e4','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-46'),
('ce084fbc-6a2e-44b4-af90-3a19538582e5','0bb5d71a-48ab-403f-9eb4-a71c550b29ad',28,100,215,0,'2025-03-11 18:06:01.698','2025-03-18 17:00:21.789','982134567-2-1'),
('ce093434-65aa-4161-8913-b9ace8a61227','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',58,98,100,0,NULL,NULL,'428413605-1-25'),
('ce0c96bc-2f3e-4c54-8d00-064ecdbd9fc4','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-67'),
('ce0cbd2d-1207-41ed-8bed-a8bf9817fbcf','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-14'),
('ce0f93d6-ce1d-4637-9824-cd4d6fc8cfd5','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-123'),
('ce10da1f-4ef4-4602-b35d-6a4b70999a9d','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-1'),
('ce11a834-9d26-445a-870b-6729d4742c7c','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-26'),
('ce13b032-f2ac-4173-aa76-ccec42832128','5b791a1b-bd6e-4eab-a014-286a1c1d2fd3',70,230,90,0,'2024-10-23 15:14:13.314','2024-11-06 15:48:43.182','517495121-1-2'),
('ce1c8124-5674-4ab3-a646-1992a4b1ff82','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-2-5'),
('ce1f319d-f16b-4cd2-8b11-ea65748043c8','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-46'),
('ce225de8-0869-4212-9adf-a20953320252','6ec87888-8b87-4bf1-adae-d5b6742225d9',123,48,9,0,'2025-10-14 09:22:15.247','2025-10-23 06:19:40.265','478164511-2-10'),
('ce232874-bb3d-461d-be63-8019ad141277','5eb53186-180d-4850-a598-783b17f41cbf',10,95,55,0,'2025-03-27 08:03:09.215','2025-04-05 22:11:15.005','976843037-1-1'),
('ce24a558-2178-47aa-b3ce-d00f457688ce','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-3'),
('ce24c28d-4c38-40e5-ae58-a6aebf772efc','724d91b5-a9e8-41cf-8697-c13640363602',101,57,84,0,'2025-09-24 11:01:59.340','2025-10-07 06:17:28.408','531309772-1-2'),
('ce2514ab-78de-49c4-ae2a-ced064a102b8','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-19'),
('ce266e91-b477-4c08-bbb1-e3c4288e0f38','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-1'),
('ce28310d-c95d-4793-a945-3af1b3c4a19c','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',76,130,7,0,NULL,NULL,'808384982-1-11'),
('ce2d47c6-ad44-40ae-9c86-990198e1dd16','8b9be79c-034c-4491-9980-ad94bae49b22',105,63,14,0,NULL,NULL,'501873907-1-8'),
('ce2e4d20-a5e6-4228-bd8d-a8c04d66202f','7d6a0094-9fa1-44da-b2cd-e402b63e9cf4',56,56,84,0,'2025-04-28 07:40:53.196','2025-05-03 08:06:05.687','221285061-1-6'),
('ce2f1a8a-f3c7-4603-b98b-eeedadadcaf8','6a343572-aa28-4029-9171-fbea51ab4941',87,87,7,0,NULL,NULL,'221963489-2-2'),
('ce2fa241-3c0f-4a76-b04f-8578fbba943b','4ed23ae8-8a3b-4ec9-a3d1-dcda8a4a2869',65,100,94,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-1-5'),
('ce2fd460-73b9-4c78-87c9-931ab89edb76','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-6'),
('ce2fd7d7-9756-4b3d-a662-90d397a55743','1d0eb855-07f2-4c64-93d6-62c6de7fce20',95,70,75,0,'2025-07-17 09:33:44.114','2025-07-22 21:00:41.428','910684336-1-3'),
('ce337d4b-d083-4b10-9809-1f71ba33b8fc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-166'),
('ce35b85d-e623-4cff-bf48-57ee62a97885','dd119eb4-d1fe-4633-a5cf-5dc72cfaad2c',0,0,0,0,NULL,NULL,'614661701-1-2'),
('ce3643e8-e1fe-4295-9808-a9f55e4c1fd1','83fa7429-792d-42a8-9ee5-5d78e3654c0f',73,30,200,0,'2025-08-22 20:28:37.272','2025-09-03 06:12:05.456','745734415-1-4'),
('ce367418-7573-41db-a368-4be69fe17d0d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:41.248','248284003-1-26'),
('ce37aead-b0f9-47d3-b84d-ab4df17888ad','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-10'),
('ce3c5e48-e3bb-4978-af93-a76611da5217','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-31'),
('ce3c7020-2eae-4130-b6a6-aed7d8562a74','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.004','2024-11-23 12:17:22.195','248143023-1-4'),
('ce3e24bc-2151-4ee2-ab6a-a0a079f5c504','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-48'),
('ce3fabe7-7f15-438a-94ab-dd5671c3156e','4869c334-4618-49fb-9d03-99d95654d12a',54,72,31,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-8'),
('ce429a95-495a-4feb-89cc-9778ad8e0eea','56ea7179-a602-4433-936e-330a27aa9423',81,201,28,0,'2025-09-26 12:39:06.062','2025-10-07 14:12:37.914','745464679-1-2'),
('ce44cc2d-7800-4716-b9c3-626be5c3a06c','8c3a9387-2db4-400b-95fa-11aef6c745f6',86,64,12,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-15'),
('ce46bde0-ebdd-4856-96ff-940b6ac0b6be','7a6b53c1-2233-441b-b593-a4ba22ec3645',60,57,85,0,'2025-02-03 18:19:43.387','2025-02-11 17:09:13.639','221987558-2-2'),
('ce471ca0-d510-4ee7-8ee6-a2a69718436c','7311f1e0-e2be-43dc-9e40-f94a010e8939',52,31,14,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-47'),
('ce472f16-0b9f-44a0-93b3-e76be29792f7','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-2'),
('ce4abed1-352d-4917-9dad-54eededb5ebf','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.905','2024-07-18 07:32:21.072','412586204-1-147'),
('ce4af375-72d0-4c39-bf47-d76e4d605d47','6fa65035-ff3a-4aac-b272-cc09a572866e',0,0,0,0,NULL,NULL,'478361746-2-1'),
('ce4c076a-862b-4a85-91af-af8b12846e74','a9e59bad-160c-4c51-b34b-7c71bb5efeb3',97,186,70,0,'2025-10-14 09:22:22.489','2025-10-25 09:00:18.615','011804405-2-3'),
('ce4e7d27-d6b1-4cd6-a31b-8e62fe390290','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.304','7347113-1-22'),
('ce4ef001-fe1c-4438-84fa-2b5ee76ca451','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-58'),
('ce4f28f4-6a60-4401-9407-1ce715146b3c','3c1cb08f-5b16-41b5-872a-3dbcbd15c877',100,80,235,0,NULL,NULL,'910323683-1-1'),
('ce51c33a-2c17-4b23-946f-4cd0c6fb92f4','fecc08df-5fbe-4e90-b90e-71dc695eccb2',0,0,0,0,NULL,NULL,'745505506-5-1'),
('ce52039c-2120-461c-ae39-e5d2d7b72422','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-4'),
('ce5551f2-801c-4681-a26c-dce7527e328e','0bd94e8e-e975-41bb-aef7-f02e8226f92b',84,63,57,0,'2025-10-06 07:10:28.679','2025-10-17 06:13:07.090','221801165-1-5'),
('ce58bd7b-7123-4d2c-a16f-65764e5d06db','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-65'),
('ce594d52-1b79-43e2-a162-27cbce60f833','c7fce8c7-acfd-4c12-8db5-81618a4b211d',30,28,24,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-19'),
('ce636622-01cc-46b3-9667-f34e2072479e','5ee00c1a-30c4-4631-928f-5c95f22101d5',73,92,118,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-1-4'),
('ce64dd3e-2080-42b1-b5e5-ee86462b805d','c45d0f8f-0a66-465e-bb56-1913286018e1',50,50,20,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-3'),
('ce671dd9-ec3f-4f8b-a709-dc2ed1bb5efa','68196a47-7977-4b73-9a24-2c24753a10b5',54,75,100,0,'2025-07-26 07:40:16.592','2025-08-05 13:52:37.524','486874151-1-6'),
('ce69d537-cd2f-47e7-be9c-b5465ae7ade5','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-20'),
('ce6a7f48-f91e-464d-a7ba-e64a79c05e18','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-137'),
('ce6f233b-8a65-4a90-83fb-2c9451641970','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-10'),
('ce6f8a47-9c77-498f-9a6a-5d193d4fb4b6','0ac2a48d-48c9-41d2-91a2-b574a94542b0',46,6,216,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-2'),
('ce70a03d-4332-4381-9a8d-d542dd6dcc12','42e47729-ba1b-4ea6-8a5e-28f3b1eef48d',0,0,0,0,'2024-08-07 15:03:00.683','2024-08-15 10:30:55.072','223210999-1-1'),
('ce71fd04-a797-4a69-a5a2-b51b5b537686','e6bddda4-b1df-4be7-bbd5-63cc4b197736',205,82,4,0,NULL,NULL,'42857810-1-22'),
('ce774446-9a9c-4c7b-8bd6-ea4ccdb97e30','0a0fd393-4e83-4aac-88d0-f5285741c782',97,7,229,0,'2025-10-02 06:45:37.291','2025-10-15 08:20:42.154','437694817-1-3'),
('ce78622c-db3d-4f60-9fa8-8620b14c6595','3da17157-28be-4bae-8dcc-745d0e93e591',35,35,107,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-2'),
('ce794ba8-ef04-429b-b381-44d12fc87899','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-76'),
('ce7ed66e-18ed-4d58-a5c6-486cfa6e2c1f','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.447','570899680-1-71'),
('ce8087c1-9fee-4971-8063-e93c97ad4e35','cd338320-b04d-4520-adba-f892a82d945a',235,70,96,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-4'),
('ce80e8fb-2bae-415d-8a0f-44b1292bb84d','8809d2f7-18c1-42c1-aed8-715d42bf5e65',62,86,128,0,NULL,NULL,'976462703-2-4'),
('ce84153c-b561-49cf-a20a-2ff6e79b2f10','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-133'),
('ce864e24-5a52-4d61-9ca6-9fe318114e68','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-44'),
('ce8c532f-1e77-46d6-9f5c-7903a4c03ff9','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',78,88,92,0,NULL,NULL,'695864567-1-1'),
('ce8f430a-404f-4f57-a7e1-797b07aab34b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-5'),
('ce8f820b-cc52-441f-959e-b70fdf3f3fdf','b44449c8-5efa-4085-bd2d-0a3594587af9',56,222,6,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-17'),
('ce8fa14c-4158-46a4-bec1-db99d1cdf8bb','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-186'),
('ce903d0f-bc84-4dbf-98a4-1cd27e09e360','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-37'),
('ce92faae-0ae4-4929-8e06-36c0d6260618','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-10'),
('ce93f60b-7c93-4e4f-be00-1042d0c61d0b','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-7'),
('ce94049d-63ff-4e5c-b38f-aed82840f794','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-79'),
('ce95aeea-7129-485c-b875-c01eb3dc7afb','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',10,18,121,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-78'),
('ce96d312-605f-40cb-8c97-b3eebbb2514c','8d062431-1a4c-4054-b1a1-188c412c0dd2',76,51,51,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.218','221511033-1-5'),
('ce9da1cf-72fa-40f4-804b-8b816d5c413f','56444780-7901-46c9-a902-b20a8f5d4449',48,50,5,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-2-4'),
('ce9dd908-e97f-4201-80b6-2955df4a29fc','05af1df3-9a36-4be2-8bd1-773d59e1605a',10,7,261,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-19'),
('ce9f637d-29f3-41e2-b1c1-92b50a58087f','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-6'),
('ce9fc517-acc7-419a-80b6-60084da86cc2','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-38'),
('ce9feffe-6ada-4059-8088-68ec57c64e13','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-2'),
('ce9ffef0-810d-4e91-ba9b-28a2ade1ebeb','684731e4-5508-435b-b127-c98ace592a5f',9,75,118,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-2-1'),
('cea37d4d-35b7-4d5a-b546-a676e01dd6a7','b4e8b5be-8fa4-4819-8d9c-1aa6cbff844d',53,77,101,0,'2025-04-28 07:40:18.914','2025-05-10 20:12:44.485','644615727-2-1'),
('cea6a07c-d872-4279-a3de-0beb4174a8a0','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-22'),
('cea86dbd-8f0a-4ed1-a9f3-211d59d1d322','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',80,80,85,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-24'),
('cea97660-13a3-4a67-9093-44cdb4c2229c','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.492','027336842-1-57'),
('cead16d9-b80a-428a-a883-c0a74af13f21','2eae9c9c-f388-424c-8ff7-83973bc6ec96',0,0,0,0,'2024-09-27 14:06:28.567','2024-10-05 18:18:20.361','501243340-1-2'),
('cead6ee6-6d33-455c-a6fe-9f0690376014','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-83'),
('ceae1ef9-34e4-4629-ab10-ab00ea5a4ae5','7539ec51-cdb8-4879-b280-a64290bb512f',39,10,55,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-3-8'),
('ceaff5ef-6a7e-4b48-a3fc-f6a290e51782','b28953a0-e299-48d8-9478-30ea8a1d9210',64,7,105,0,'2025-06-21 04:34:04.432','2025-06-28 16:00:55.750','644716997-2-1'),
('ceb31e82-cb5e-4127-af4e-b70f487f78b8','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-24'),
('ceb3dd11-0e81-47b9-bf5e-4a25de9955fb','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-68'),
('ceb710ed-7be5-4789-a016-4b501cc6f2ee','99f3c807-c2fa-4316-8a01-93a1eeeac0f9',31,20,221,0,NULL,NULL,'613868869-3-4'),
('ceb8e708-56b7-4aab-98fa-67d466fb1827','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-18'),
('ceb8f2d7-c18c-4011-82ce-1910f7383ba6','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-21'),
('ceb96c80-20c2-409b-97fe-29e36abf9c2a','6fc078bc-5513-47c3-827c-b4f5fa1c9ecd',44,44,77,0,'2025-08-07 16:52:30.677','2025-08-21 21:29:19.691','598665171-2-3'),
('cebaec39-3a7f-4b9f-b9aa-bb0e4d99c55c','701521bd-cfaf-4a40-86a1-a1856b36a16f',0,0,0,0,'2025-07-02 12:43:34.605','2025-07-21 08:01:00.374','4127825-1-8'),
('cebc95a3-4520-4e21-8d17-938aa71282c5','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-7'),
('cebde889-ad77-4a9a-af60-40480d321dad','b78519ec-4b79-400f-a709-a1f09256d30d',85,2,210,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-29'),
('cebf23d3-5055-4bae-8062-663b10a83d23','9a74cdae-acbf-459b-836a-29ba929835b2',95,95,75,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-3'),
('cec0c54e-e116-40f7-a8cf-48c66378a2a6','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-19'),
('cec6c16e-14bf-421d-82ac-250a60f4c1e1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.288','412746738-1-97'),
('cec85ddb-8b1e-448c-997d-cc81bef83093','343abbb0-3b83-4960-99bb-3b111e2a8797',70,96,96,0,'2025-10-06 07:10:07.138','2025-10-15 08:24:33.635','338730647-1-2'),
('cec900bb-f686-4506-bf63-af962c09a154','f8d35c51-b98a-46d7-8ff1-a2e47719eeca',0,0,0,0,'2025-07-12 09:20:44.468','2025-07-21 17:00:49.929','745433427-1-3'),
('cecf1e14-0eb4-47ae-8b5a-fcc311e17d33','f0485a78-951c-4f89-bddf-b2003f0bf783',40,40,75,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-56'),
('ced1e38b-a20c-4e5d-8375-f25ceef5bb2c','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-19'),
('ced46679-4c16-46f7-a0ef-9ed439228f7e','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-14'),
('ced5380c-e908-4a5d-a8d2-f279bb827904','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-6'),
('ced579a6-b4c6-4f16-9c5f-283a740a59c1','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-18'),
('ced89f44-414c-4345-a86f-df272c34ba7f','4a592bc4-f8db-45e9-83f7-6c3990c1cffd',110,56,82,0,'2025-08-15 15:02:59.127','2025-08-22 10:58:44.297','437578664-3-3'),
('cedaa7ca-95b9-4a57-8f91-9bfa1965768c','516b7da8-60b0-423e-ad0b-ba7b65a9acd7',60,101,124,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-2-5'),
('cee29c50-5722-4d4e-a570-6e72fd92b9b9','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-209'),
('cee49c5d-0158-4721-8a22-8135e4d869a4','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.873','910775394-1-14'),
('cee5ce79-96ad-4e98-a67a-58ac395892ec','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-13'),
('ceebc1ae-ccdb-4c00-90d3-7af4327809cb','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-7'),
('cef284ce-01a3-430a-8392-e8753c96b033','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',45,45,75,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.705','437591433-1-1'),
('cef5dfc6-fecf-40bd-8e08-478e60094f04','1f9f088c-b7f3-474f-8b52-75626504976e',51,35,16,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-10'),
('cf03c2c2-9b26-4d30-95af-14f331c942a5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-145'),
('cf03e3d1-bc76-451e-b88b-5acadba228d3','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-2'),
('cf067906-9882-4461-a8f4-b04f08ff54b6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-107'),
('cf09b27f-1413-4777-8bbb-6a998500ea42','80510286-f99f-4ac7-8b5a-8391d6a48f0e',0,0,0,0,'2025-02-20 12:15:15.489','2025-02-28 12:03:55.924','478775583-1-1'),
('cf0a834e-9c08-4754-a6aa-b60c1fd0731d','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-74'),
('cf0da83c-1810-4911-85f8-46b0e986eb9c','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-21'),
('cf0dc60b-438d-4c9f-82b0-a1908d87fb07','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.161','2025-04-07 17:30:05.099','223896175-1-9'),
('cf0f3efe-f892-4f63-bcf8-767fed386c4a','9114ad70-d53e-4d1f-89c7-30585d0a43de',265,110,8,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-33'),
('cf0fca90-015a-4963-a418-71093dba4a15','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-59'),
('cf13d721-e2e9-4eeb-9486-dca89a141a62','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-87'),
('cf1498de-30ae-4066-845c-88c6657004bb','d176a715-bd33-47f6-bcb7-f384e079f39a',205,36,25,0,NULL,NULL,'501724603-1-10'),
('cf17545a-4e2c-49bc-bce4-ce17d7f1bab3','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-37'),
('cf179cbb-e839-4fc1-8969-f2c5eed754da','a34ddd24-f4f6-4725-847a-abf5fa275d11',52,76,102,0,'2025-08-25 12:31:54.926','2025-08-30 18:25:03.280','371684650-1-2'),
('cf189af8-a60b-4f62-b2e9-2a2156f39125','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-2'),
('cf18ca64-c50c-49f9-a698-f0492bcd77a5','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-7'),
('cf1a53c1-1ba4-4f50-958f-e382f335a66a','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-24'),
('cf1f4603-a2b9-457f-9b0b-762eb36ec0b0','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-9'),
('cf1fe8be-e5af-4552-90a8-3ac78d8afe4e','2b5fa64e-2c3f-43be-9034-b86d4520cb36',10,122,165,0,'2025-10-25 08:59:21.121',NULL,'478485864-1-5'),
('cf21fc94-90ce-4211-bdfc-07da15fdbc9d','be1e8ea0-06c4-457e-9a04-b8e1f1e33dd7',57,60,86,0,'2025-02-23 12:38:55.408','2025-03-09 12:10:06.602','221441605-1-4'),
('cf220728-4467-45e2-9d12-c9b007061191','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-179'),
('cf24602b-81a2-49ec-8b49-e8af9068fb58','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.840','2025-09-17 16:04:00.288','412746738-1-148'),
('cf25544b-c87e-41b0-99d7-3da123f233fb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-212'),
('cf25affb-9214-428d-8ee8-29bdfe4f215b','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-84'),
('cf297397-5276-4268-8d17-f7a114b69c7d','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-8'),
('cf2aebd8-d14b-407d-a9c0-199ddcf09146','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',19,162,29,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-34'),
('cf2c33a0-362a-4cd4-8fd9-2bd4ec0b5cbd','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:00.472','248135683-1-244'),
('cf2c72c9-6917-429f-958d-80a61cc51dfb','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.825','745831913-1-14'),
('cf2d61c0-b515-4409-a7d0-4bcc7b42bb72','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-1-4'),
('cf2de029-488b-4ddd-815a-81cb78996e9b','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-26'),
('cf2ed454-d602-46f0-b017-2e3aaf269ea8','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-55'),
('cf2ed757-5505-4d9e-b295-bcab899c98d8','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:01.065','248135683-1-242'),
('cf300c8a-4a15-4ed3-865f-a7568c6f5092','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-100'),
('cf30ee5f-a3cc-4bf4-8682-217a52cda903','b3975f1f-7fd8-4aee-b297-9d023b31cc58',96,179,7,0,'2025-05-16 16:33:36.525','2025-05-21 18:42:11.094','437940825-1-4'),
('cf3135e7-6298-4831-886c-37a343ac1c49','ee5b3100-b151-4127-ab59-479d31aad576',0,0,0,0,'2024-11-15 17:06:22.252','2024-12-01 12:28:05.546','745334668-1-3'),
('cf31989f-5798-4b2a-a1ae-cdad95fe2e8f','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',78,100,120,0,NULL,NULL,'695864567-1-4'),
('cf346857-b775-482c-b4e7-442626d34743','6a46ee8d-73f0-48c2-83b2-91b6eb632698',60,41,40,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-2-1'),
('cf3489e0-f050-4fd3-b368-de9f549631f8','1d9972b9-1383-4b2a-a7f9-2e2b0b5a33e4',8,106,205,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-1-1'),
('cf37c16e-66cd-4a79-8857-37e3111c0ba6','950edd95-6cf9-4fbe-b156-c4ec6d470b3b',197,95,70,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-3-4'),
('cf38878a-7321-438d-a86c-4a47d9fb1b77','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-9'),
('cf3de4ba-6db6-4896-872a-34efa02f071f','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-142'),
('cf41a5d4-887f-4ad0-a421-c0da0e193586','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-70'),
('cf44a5cd-2946-44bd-b145-fb85971cb4a5','31521179-cdcc-4e93-a74d-a95331f89735',57,62,84,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-1-6'),
('cf47585e-e133-4038-a253-e4b5237d3315','ff41de74-17ff-4bad-989d-6f378ab50997',57,85,106,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-7'),
('cf481dde-4771-4078-a7d6-2fd44bd4d442','a1a870ec-e099-4836-8b0b-44c3b1c8bf3e',52,100,82,0,NULL,NULL,'613362955-2-3'),
('cf4a1505-f914-4927-bef1-c9b7068ce832','0cc39437-8ee1-47ea-87c2-b9fe770c2259',62,19,89,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-15'),
('cf4af816-a5b3-4ff5-ab53-bdb14fc09080','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-24'),
('cf4c4f42-ddc0-41b9-b2db-6d1d51eb81b1','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',196,47,7,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-1'),
('cf4d3bb3-0366-4740-9d7c-4ee4ef326f0b','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-3'),
('cf4d5459-36a4-4469-8a31-ccf057c563b2','61693d6d-1ccb-4968-9461-6ef1bf43aac5',57,57,62,0,'2024-11-21 10:29:11.924','2024-12-14 12:00:59.316','112270991-1-3'),
('cf4ff11f-5d28-47a4-90e3-3802db54396f','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.905','2024-07-18 07:32:21.072','412586204-1-148'),
('cf58d263-9dbc-493a-bf35-5dace9160934','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-41'),
('cf5c063d-7098-45a4-a548-58271b6a7621','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-8'),
('cf5c97c2-936d-462d-ba7b-3e6e84df18c8','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-108'),
('cf5da48a-7844-49d1-9ae4-3ff9bfc48dca','66f8d34c-0c41-46f5-98bb-500adbb6f636',158,3,198,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-20'),
('cf5e85e6-e634-41fb-b87f-738ca1d09f6f','e401ce6d-1f41-4077-903f-4deb32a0813e',42,50,19,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-3-5'),
('cf669426-d12b-4395-adbc-c31560a959f7','89252f53-ec5b-4147-a609-055aae4459d1',60,60,92,0,'2024-11-02 08:42:24.196','2024-11-11 19:55:59.632','982858369-1-8'),
('cf66f4d2-cb1a-46ab-bcf0-272c85263d26','8fc5f89e-11f8-4c78-89ff-58a50cef1eae',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.811','478150977-3-8'),
('cf67eaff-9b7a-4acc-be57-cea8c58e85e2','67ccfa3d-f741-465a-883e-090e37617e92',95,85,100,0,'2025-04-15 16:01:14.814','2025-04-28 11:59:28.218','745639167-1-4'),
('cf691575-ac6d-4443-a02c-12a95f36aca0','945d8ccc-c45e-47fc-ba3b-1163cd4e1ef9',75,61,72,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-2-4'),
('cf6e7796-f05e-41e4-9af4-b22aeda7274e','232aef2f-2a0e-4051-91eb-86b776ee4800',53,50,6,0,NULL,NULL,'428372230-1-2'),
('cf6efc1f-42df-415e-a048-8d09a546c962','c97b4464-4efd-4872-9340-ffe44fb1a770',45,45,78,0,'2025-07-19 07:52:09.001','2025-07-28 18:39:59.643','598220619-1-2'),
('cf6f3e72-926a-4e9f-b7a3-bcaaf10d04d1','b3975f1f-7fd8-4aee-b297-9d023b31cc58',51,51,78,0,'2025-05-16 16:33:36.525','2025-05-21 18:42:11.094','437940825-1-3'),
('cf6f9547-15f5-4674-b258-8884d0412b61','fb2da74d-6f1c-41a0-a2bf-4fc69a3ad46f',45,14,8,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.526','910772127-4-5'),
('cf712fc3-762c-499e-9888-714e3727c7e5','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-80'),
('cf71486a-7591-41eb-bd9b-8ad158e550ff','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-151'),
('cf7240af-5771-4504-b104-db2da5553c45','efbe186b-71f3-42d2-8da0-71f73ee0e288',90,90,65,0,NULL,NULL,'59884902-3-5'),
('cf7435d5-b43a-4a08-b57e-a2eeeb5c955c','ca2466d1-9a83-4f57-8f76-f5ddce302e04',102,20,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.687','382253716-1-25'),
('cf7715e9-42c3-4f24-8c0f-e523e84f2f70','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',250,58,11,0,'2024-07-02 08:19:59.905','2024-07-18 07:32:21.072','412586204-1-149'),
('cf77cc31-7f99-4cba-a172-b254a7d94d9c','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-4'),
('cf7a8680-e874-464a-a19f-a0a23aa6e37d','5ee1b922-dab0-4710-a670-da444e74f05d',80,95,90,0,NULL,NULL,'920359526-1-2'),
('cf7cc853-da34-4eeb-a2eb-dffee0f5fef5','e14c3817-4a53-4e54-8afc-0d865c5d7417',0,0,0,0,'2024-12-01 06:48:26.631','2024-12-07 20:48:01.866','478670997-1-1'),
('cf7eacd7-d2f1-47d3-a088-1b1917937704','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-34'),
('cf8078b8-1f0c-4e8e-9f16-2ada72e4ad58','51130bdb-f938-4bc4-8f49-46c9b089489c',200,180,28,0,'2024-03-31 17:55:20.310','2024-04-10 16:26:48.741','982533088-1-8'),
('cf837813-0b3e-40b6-bba1-224f7eef1c96','89834bf4-a4be-4296-8bac-db24c46d63fd',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-2-3'),
('cf85282a-64fb-48d6-97ac-f0bb5ca1ba5e','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.004','2024-11-23 12:17:22.195','248143023-1-20'),
('cf857aab-6396-408f-9b83-db4ba79e57dc','5fe43bb2-ed62-43ea-988a-9dfd247b1ae1',97,100,75,0,'2025-10-22 13:06:44.055',NULL,'598894090-3-6'),
('cf8581be-b4a8-436f-b990-d1780d590d54','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',70,70,75,0,'2024-07-02 08:19:59.905','2024-07-18 07:32:21.072','412586204-1-150'),
('cf87aeac-977f-4af1-9ecd-1a795ad00630','69acd97e-52c0-45ae-adf5-ee013e52776f',90,200,26,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-23'),
('cf89c36e-2ca3-43dc-a12d-97aa91c683fe','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-92'),
('cf89dbb4-ff7d-494e-8faf-201eaadc949b','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',36,110,215,0,NULL,NULL,'598604443-3-5'),
('cf8a7196-2460-4313-917c-88aecbf567aa','aac7bb1a-b209-4bf1-a4b8-672a611be401',55,50,5,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-2-1'),
('cf8b4f8b-7387-460f-9f71-c1fcb9c6369e','0b4b00f2-1292-456f-b21c-c5ff1da2d42f',0,0,0,0,'2024-04-23 10:31:44.440','2024-04-29 19:18:35.301','982292794-1-1'),
('cf8ca1fd-c567-4854-87f4-ad4e7cf715dc','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-17'),
('cf8d30ab-e44c-4383-8333-1d59fd4b544b','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-72'),
('cf8ecb29-8e1e-4d42-940f-e991e0a768f5','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-39'),
('cf901e3b-b769-4f4f-bde5-6ac5d78a0b20','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-2'),
('cf92a1b8-f959-4ccd-a485-185d1f99dd4c','1c55b4e5-54ce-4848-a88a-545a632bcd68',220,100,70,0,'2024-08-21 14:53:10.288','2024-09-02 08:33:34.976','428225143-1-4'),
('cf993326-10c7-4eac-8bb0-200a981e2b60','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.709',NULL,'223317066-1-115'),
('cf9938de-1c53-49ad-aace-67f5a0f0a796','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-22'),
('cf9b07aa-684a-4b93-a862-2ff7a21cbb42','d4b48666-94f9-40d1-8fe1-059d7aa569f6',230,95,68,0,'2025-02-09 09:51:56.373','2025-02-15 10:17:42.131','633870078-1-1'),
('cf9d4af4-fa40-4c35-83ce-152b17e8b2ec','ab45478c-7fcb-46bc-aebe-fab160a476ef',91,65,240,0,'2025-04-28 07:40:29.966','2025-05-08 07:31:19.558','248359668-1-3'),
('cf9e5f84-0ae6-48e1-a37f-8815aad3ef0e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:43.345','248284003-1-146'),
('cf9fe1fc-844c-478d-b639-0a5b4182c99e','490c2bb4-adcc-46dd-b62c-c66daac6662f',0,0,0,0,'2024-04-08 08:57:32.780','2024-04-30 22:31:16.671','412679110-1-5'),
('cfa529fc-3297-41e1-bd9a-df1dd8f91c95','99941240-15d4-450e-9d66-caf7ace9903d',62,83,57,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-2-2'),
('cfa65be8-2940-4025-a882-00888ecb2b5b','53eba6e6-9870-466d-85b5-c7b32bf33173',95,75,105,0,'2024-12-01 06:47:51.833','2024-12-12 07:41:43.505','027517327-1-2'),
('cfa74979-80e7-4e3e-afe1-e06aabeca8a9','6ab8353e-0a04-49dc-8a2e-03d40377dcf8',80,207,95,0,'2025-10-22 13:07:12.749',NULL,'437227214-1-1'),
('cfac3688-aaa1-4a8b-93f9-843ad1f48e8a','20696390-b3e2-43c8-90b6-11b5dfa19690',0,0,0,0,NULL,NULL,'786476168-1-1'),
('cfacf06c-091b-4052-9491-7c6f8064c0d5','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-53'),
('cfaeabac-249d-419a-992b-3b760de2d7d5','19dfa4b0-04e4-4abe-b71f-85b70cbef06e',196,96,6,0,'2025-01-26 10:54:22.648','2025-02-10 14:16:21.329','221390997-2-3'),
('cfaf6026-5fe6-4245-8e48-7b5e4cbd8334','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:01.683','248135683-1-132'),
('cfb320aa-6942-49a2-ae65-33c56c7f49a3','9f080024-096b-45e3-9b43-059581313d8f',60,60,90,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-2-2'),
('cfb4cfaf-72dc-47b6-8e6f-ff5d7dbe9c54','255659c7-74da-4912-b4ef-7bfff6e3c1fb',0,0,0,0,NULL,NULL,'478183761-2-5'),
('cfb6ec46-6fec-40a6-ada2-0b5ef933b3df','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.371','734936220-1-11'),
('cfb721c3-f366-4fe4-a601-eab4fb1a40ed','463d83bb-35b5-4752-b385-15883f2d24c0',43,45,140,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-1-1'),
('cfba03ec-e0eb-4864-91d9-fec4ffba865d','9a5869bd-1a85-42f0-871d-7b58033e4ff4',104,237,7,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-3-1'),
('cfba2804-9492-4427-b3f1-20b5d453c861','6ec87888-8b87-4bf1-adae-d5b6742225d9',58,92,11,0,'2025-10-14 09:22:15.247','2025-10-23 06:19:40.265','478164511-2-7'),
('cfc1809b-4218-4bf4-9d2d-d87ff19c59a2','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-15'),
('cfc624db-870c-4c03-8e31-6996d7ce5db0','9e08c127-dbad-42d7-a9bf-569bebc6cd6a',0,0,0,0,'2024-08-31 16:53:35.119','2024-09-02 08:33:22.120','478778231-1-5'),
('cfc6b6e6-a9f4-4140-b282-b3bda7826351','b78519ec-4b79-400f-a709-a1f09256d30d',36,51,20,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-13'),
('cfc9d061-7021-4abe-9452-2f6a2c9e101a','d3c3d137-f31d-4357-958b-af365fcd9dce',98,79,93,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-4'),
('cfcd74a0-1d01-4dd4-aa72-2e535395b531','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-18'),
('cfd0e0af-e9da-4c91-9378-c51bcab60ec1','9dd1fff2-f6c5-4178-8893-9bca27b3a077',50,50,50,0,'2024-03-16 14:33:49.306','2024-04-01 07:53:00.910','478609228-1-14'),
('cfd1c8b0-a126-4505-af95-936a0b509671','f0485a78-951c-4f89-bddf-b2003f0bf783',46,27,69,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-57'),
('cfd43d64-7c6c-4926-bfc8-3b09a1b51140','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-8'),
('cfd59af6-153d-450b-ae46-2a7ae5816bf7','77d5f4ad-8065-46dc-b85b-91e145b84c8a',93,52,75,0,NULL,NULL,'221410306-1-1'),
('cfd65cc8-8359-44ac-b87e-81b6bdcb8a3d','55155cc4-3303-4c8d-8138-cd049d9c0cad',78,28,205,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-13'),
('cfe222ce-b248-491e-99d6-1604bcaad2e4','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-21'),
('cfe35271-0130-4938-85e7-763337b67e7f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:03.000','248135683-1-232'),
('cfe3ad21-184c-4291-bda7-b4682652cd23','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-19'),
('cfe41ffb-fb86-47a8-811d-45e3af3b2b37','4269f867-0d44-45e3-ba30-724af57726ee',33,28,20,0,'2025-07-19 07:52:10.252','2025-07-28 18:39:55.403','371820680-1-5'),
('cfe6dd6d-c4b3-4782-950d-7c5a3cec915e','a320c384-09d8-4809-a0b1-0d8740a8df59',51,51,7,0,'2025-01-20 11:21:28.572','2025-01-28 20:45:10.314','221416475-2-2'),
('cfea2490-0ecc-4d5a-9bc4-993aa0797725','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-46'),
('cfeb4c47-331e-44a1-a84c-dbaf3c397c07','3aca7d6d-09cb-4903-812e-7535a083b09c',177,29,10,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-7'),
('cfef2b27-829c-4d4a-85d7-2ee3fc3fed3a','6bb3587c-46ce-4a7b-b153-d422b83670a2',0,0,0,0,NULL,NULL,'614443513-1-2'),
('cff1c44e-d8f0-472a-a0ac-76a676340ffc','0009aeec-e682-465c-b701-363a3ef377a6',30,21,40,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-73'),
('cff1fff4-b5d9-466a-b1d0-cf4f2dd75ed6','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-68'),
('cff3a9ed-3827-458b-b54a-ccb533ddb756','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-170'),
('cff4790b-b0c3-4cc9-8103-617a1b781dc6','e4ea4323-3b5e-49e3-9d61-fbb71b718557',0,0,0,0,'2025-03-27 15:06:20.483','2025-04-04 17:24:37.240','127945692-1-2'),
('cff58ab7-658b-4f5d-84c0-37224e63848d','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-120'),
('cff7eb3f-9298-4d77-9680-4df5aea9c782','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-30'),
('cffa98df-f069-44f5-9b69-b31aba443c16','f1d0b634-e6e0-4b6a-a561-feb245a87cb1',50,50,100,0,'2024-03-31 17:54:54.854','2024-04-17 10:16:37.203','455568872-1-3'),
('cffd0336-4277-4d0c-b675-af1ddf75cac0','14c5439d-b326-4a6c-aab5-d692d92d235f',0,0,0,0,NULL,NULL,'74520701-1-3'),
('cffd8d7f-c1e8-4200-b7cf-b0707f93a97a','c900d790-eeff-48b9-9f2b-48972c98ac32',48,208,10,0,'2025-01-20 11:21:38.774','2025-01-27 21:00:28.158','428718727-5-15'),
('d001fd98-8901-4ede-ad92-4ea00384cba6','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.051','2025-03-08 13:58:02.372','412842533-1-25'),
('d0023a2d-2072-4804-8751-ac4462267370','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-11'),
('d0044403-3dc4-4bff-8b80-01fc9604fbd0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-180'),
('d0055a1a-f2fd-4e63-a7f7-fa45138111fc','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-19'),
('d006037b-5ee9-4a72-a216-3ab4cbedc2c1','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',64,63,47,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-32'),
('d0071cb0-3a10-46fe-9c19-942a7142723e','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-31'),
('d00c9861-2adf-4f0c-a090-50b13a0e2346','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-124'),
('d00d2952-d684-4e93-8962-a8dbc922bca5','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',98,13,175,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-9'),
('d00ed54d-886f-47af-a033-b27eb387d0c8','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-58'),
('d00ffe9e-dad7-4253-a997-24343549f7e2','a08b37d8-2558-4e19-9c54-21a2b076a1c1',0,0,0,0,'2025-01-22 09:07:16.541','2025-01-31 20:06:26.727','478112159-1-1'),
('d011a5ed-734a-49f2-8636-7d8eca0b65cb','6883e1aa-61cc-4415-a95f-c2a814c5b3ce',0,0,0,0,NULL,NULL,'140421350-1-4'),
('d01aa796-dc00-476d-84b6-4621063153f5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-183'),
('d01ec93c-1ffb-4a0c-a09f-c95289b1d6a6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-104'),
('d01f8c9c-c65e-4093-ae37-00732be02551','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.653','2024-04-29 09:07:38.567','478943291-1-56'),
('d021faf3-78fe-4074-971f-c469b97c398e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:03.493','248135683-1-243'),
('d0226023-cdc2-47b8-b366-fbb37058577d','6cbcd521-31c8-4989-a580-2670a444c226',53,78,37,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-12-1'),
('d0228e32-e9f8-4b91-8580-dac90d81a107','e97539d8-0d26-42a2-bfcf-9866d5bd205b',10,10,66,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-8'),
('d02a80f4-67b0-4831-bbbb-def367c87cff','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',50,128,13,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-6'),
('d02ccb74-0873-41cb-9cda-7feaa8160277','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-238'),
('d02df0e4-6795-498c-acae-43c5a7eb83d6','c45d0f8f-0a66-465e-bb56-1913286018e1',105,70,105,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-5'),
('d033f246-4487-46a0-bcac-7292a59065a1','71452714-b180-4e00-b2a8-b6fefa0c5650',50,46,8,0,'2025-02-09 09:51:58.173','2025-02-15 05:22:04.063','268145141-1-9'),
('d03539f5-bff4-41a1-9a6e-79ea0d385192','af69c5a3-87d3-4548-a650-720b69a4fc69',13,62,95,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-49'),
('d0367d62-3c5f-4e63-8f81-f6f9e9e21795','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-26'),
('d0372c87-c6ce-4919-bdb4-1efa88083a0a','3987bcda-6531-4738-8815-187fd84bf71c',230,100,88,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-19'),
('d037ba3a-7da0-47fb-9ad6-c9157598835f','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-80'),
('d037dd95-dd37-43fa-bdeb-13fd18290f5f','00030f80-99a9-4f67-8d21-bdbff41e5d13',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.872','46558561-1-1'),
('d03c2fc4-9844-4ffe-be5a-9bec3f057a81','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-37'),
('d03e5830-9bcc-416f-992b-4d1c0dd30554','6302f68c-26c4-4a31-853e-80b9d1ba59ee',110,67,16,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-34'),
('d03ea743-9545-4e84-84bd-889a939cd7d7','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',114,47,72,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-35'),
('d03f0a13-4366-47d8-9d63-daa50e005e8e','7a3874a9-db61-4cfe-8c48-f341a8247a1c',95,75,242,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-4'),
('d040418e-92d6-4fa4-a359-55f42bcda27f','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-21'),
('d04155c0-0448-4f30-b454-ca992dff6de6','85db759a-5e10-49be-92ff-a951a588c1a1',53,8,46,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-2'),
('d0419afc-3bcc-49cd-97c7-f3123a4f4c49','619b2df9-4cdd-4cf2-8195-e3b19d37df5e',57,76,103,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-1-3'),
('d041caeb-8f8f-405f-8ec1-8fc78a554c98','0c4e75d5-e342-41c3-949e-5ca8657ec836',77,29,200,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-1-7'),
('d04235a4-167a-4903-9e89-7c30d26015dc','6d2958d8-12ca-41bd-a12b-58082d5c955f',47,10,103,0,NULL,NULL,'614364554-3-11'),
('d044cc74-cfad-4053-9005-0516dcdc18ce','8ebfb5df-a3ab-40d3-a817-7f11ab1bf9d4',0,0,0,0,'2025-05-14 17:03:57.703','2025-05-21 15:30:20.198','910593915-1-2'),
('d0468f32-47b9-4bf4-92c3-7194c00e68d4','f0485a78-951c-4f89-bddf-b2003f0bf783',61,60,86,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-58'),
('d0486112-36de-4096-98c5-6ea48388932c','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-15'),
('d04d5e55-81ef-41b8-963a-f1535b35782a','c36c4fac-54ff-4834-a9e5-af345d3a3269',44,44,74,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-1'),
('d04dfe32-cd73-4a26-b6bb-ebf095491420','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-53'),
('d04fe7f3-9703-4482-a812-b744baec4786','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-4'),
('d0535f50-8b46-4305-9412-9aaa9790311b','5d643542-ec96-4ed9-a8e8-2e7aade7f468',82,56,101,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-3-3'),
('d0543f7d-2d84-4b3c-af65-4b55cff1c2c7','43024ca8-3408-4c20-962d-cdaf0ea11687',96,94,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-6'),
('d0554c9b-7f6f-4bbd-8745-7f50f71a955e','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-105'),
('d058c400-c038-455d-a01b-c6b1a3b2b86d','0bd42145-fdd8-4793-a5cd-a2e404d37142',193,68,12,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-12'),
('d058ced4-670f-4155-8d4d-5c191923096e','e8e041d5-7390-45f3-b4cc-314402912762',0,0,0,0,'2024-05-10 18:50:14.993','2024-06-04 14:24:46.948','478261585-1-1'),
('d05ac756-8376-46de-a864-569ef2d22e3f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:08.119','248135683-2-1'),
('d065058f-2199-4569-b4b0-5406df9e6b7b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-113'),
('d0658b3a-846e-432c-ad16-844b897c310a','d3cefc8b-69da-4840-90b9-b720a1f57e19',92,55,8,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-3-2'),
('d0667284-d2ec-4637-b20e-61e627189d3a','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-47'),
('d067efa4-a7ee-45c4-ab73-362db951d257','6302f68c-26c4-4a31-853e-80b9d1ba59ee',205,27,27,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-35'),
('d069a0da-3bed-4f81-aad0-207a68cdbd30','43ec6ce8-9ec2-4648-8e6a-93c885be50d4',93,164,73,0,NULL,NULL,'478345195-1-4'),
('d069aa6a-9752-43f6-bf97-33ff50641952','7defd633-f7ab-424d-8029-028d1b045752',95,150,6,0,NULL,NULL,'501119446-1-32'),
('d06a56d1-a684-49c1-a721-bde7005ec53b','bcbbd32d-478e-47f4-97ba-0a391ba7a4db',38,38,47,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-2-5'),
('d072cd3f-bf5f-4ace-a0cb-9fd502f66125','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-80'),
('d0761508-ea0e-4d78-a83e-1d055a9b07c8','bd3024d4-77ba-45bc-938e-d1bc61220b35',65,100,65,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-1-3'),
('d0797fb1-634e-45f9-a9eb-84c7e356535c','51130bdb-f938-4bc4-8f49-46c9b089489c',200,40,25,0,'2024-03-31 17:55:20.311','2024-04-10 16:26:48.741','982533088-1-9'),
('d07bb34c-d835-4d09-8e71-808b124eff33','43024ca8-3408-4c20-962d-cdaf0ea11687',100,105,75,0,'2025-09-06 07:20:32.781','2025-09-12 22:10:21.892','598156869-2-3'),
('d07f3eab-1216-4d12-bb92-14b3c20f6ea9','07178c6e-4d40-4d5f-886c-720fb82dcfc8',0,0,0,0,'2025-02-23 12:39:22.317','2025-03-05 14:40:13.059','127343940-1-3'),
('d07fb3b9-a775-4780-b1d8-e7219e970dec','8254b4b3-ad87-4e73-8ace-4bb7bb3bf333',100,60,240,0,'2025-09-06 01:20:30.429','2025-09-14 13:25:19.013','478161304-1-2'),
('d0812db3-d585-45c7-978c-d5f43d04e69e','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.355','2025-01-08 20:29:02.152','735384295-1-3'),
('d082a008-e102-42fa-a534-edee34d491c6','af1a3f38-e83c-49d2-a38d-c1fbc58d5223',30,30,10,0,'2025-09-12 17:16:50.956','2025-09-24 14:32:48.661','644754778-2-1'),
('d08393f0-970c-43f2-b2df-4adc3c1ff367','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-90'),
('d087a812-eec1-44a1-95ad-048dfbc6e8f9','b3fb10c2-6a6c-41fc-a7eb-4920e6e670be',0,0,0,0,'2024-05-10 18:49:56.164','2024-06-04 14:25:40.001','478958320-1-2'),
('d0884cb9-ec38-41e8-ae8b-05ce4ba2073f','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.481','248707022-1-8'),
('d088b19f-2237-4ef4-841f-2583961c7f19','e54055a2-3c9c-4738-a808-7a4a31877ef1',46,40,41,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-28'),
('d088fe3d-395d-41d7-8089-e9e2c62a67ad','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-4'),
('d08b5474-926c-4114-a9af-cbb5c5e05c04','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-57'),
('d08bbb0e-152e-424e-990d-ed301db3843b','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',65,70,90,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-33'),
('d08be3fb-5883-496a-b016-15995a5da073','be305b23-f28b-48dc-8c0b-c8aaccb68d10',0,0,0,0,'2025-01-06 13:08:22.836','2025-01-09 10:06:09.562','73558075-1-1'),
('d08bf88c-c3ab-4f0d-989d-1550723b162e','e0c79669-21b8-48a9-8bfe-2f9b19cb872b',100,72,54,0,NULL,NULL,'644563405-5-3'),
('d08db274-b397-40b1-9982-c57a786d1f13','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-1'),
('d08ea518-8c64-41f4-8f7a-411f7c72de24','c557db8e-813f-4118-a776-7fcaab745fff',0,0,0,0,'2025-03-27 08:02:53.352','2025-04-08 15:37:07.395','47855592-1-3'),
('d08fd2a0-916e-4d28-bb02-d6c4c2ca9cc5','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-38'),
('d09167c2-ba5c-4c9f-8c2f-ea7e4377e116','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-11'),
('d091f0f2-f3f4-43f6-bbb3-7d51d13acd86','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-39'),
('d0937560-76a3-4a0e-a494-e56219eb67de','477f5d1d-406c-4147-a6bd-205816f5db0a',0,0,0,0,'2024-09-28 16:27:08.204','2024-10-10 11:34:51.671','982799609-1-5'),
('d0943ae7-1629-47b5-8bea-e7467c28e0e0','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',100,93,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.427','319911664-1-3'),
('d0957360-f11f-4b1d-bbb4-34f46168a08b','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-57'),
('d097dfea-4a58-4a86-8c9e-e48d55848455','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-12'),
('d09bd41e-504c-49bd-ab36-ddf002cdf452','2699bc08-3ab7-4b68-b746-fe59f26c7b2e',94,98,64,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-1-6'),
('d0a2cb62-3766-463a-9839-271f3afbb02a','aca21297-1022-4505-a912-c540f09dcc5c',0,0,0,0,'2024-05-08 18:43:08.066','2024-05-24 07:08:00.705','478598314-1-1'),
('d0a73c9a-60fb-496a-bcb0-8f81d0c4c698','009cf10e-8302-46d8-a79f-46e58ad814bd',0,0,0,0,'2024-09-27 14:06:11.092','2024-10-07 14:02:36.786','750951041-1-1'),
('d0aaa622-6ee8-4464-83cc-3b2ecdbab5e4','04dff17a-2b9a-4f35-a082-5684dfe5706f',205,42,5,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-16'),
('d0ab603a-0a86-4f7b-a343-b8f92c8b0695','14157eee-b51b-4f54-bfe5-295228432847',96,6,187,0,NULL,NULL,'221901011-1-1'),
('d0ad9f8b-5308-483e-bbc2-afab19262553','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-5'),
('d0af6f35-cf89-4593-b8f4-d9643b5682c5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-76'),
('d0b0be52-c419-42e2-93fb-8430e90c1d50','8c3a6528-ef31-4989-8531-7ec536f3c6ec',0,0,0,0,'2024-12-23 12:00:24.883','2025-01-09 13:53:30.063','74513098-2-2'),
('d0b12940-6cc8-4229-950d-03a96dcfe791','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:45.176','248284003-1-99'),
('d0b1d017-6e25-40ae-9e91-0aa2f09c7fa1','7b8fb2b2-4189-4069-ae75-d1c721d42b09',51,51,77,0,'2025-10-02 06:45:45.026','2025-10-15 20:05:17.040','221900850-2-3'),
('d0b33eb0-8975-4df8-bc14-b6ffe7dd9703','6b29fcf3-79cd-49b9-b2fa-ca1518066509',202,109,30,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-2-8'),
('d0b45a81-2213-404b-be56-0a281e53b4c3','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-30'),
('d0b5b731-c688-423b-aa8c-391cb7f14d1c','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-81'),
('d0ba195b-e578-4050-9b8c-b43bd4f8b4e0','f8e958dd-34b6-42e9-a343-6f420c122893',81,56,109,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-3-3'),
('d0be683b-d0fb-4fb6-a5cd-7655ab47bd7c','85de75ab-a905-42c9-bc61-799745d96971',68,106,93,0,NULL,NULL,'338991013-2-3'),
('d0c18b1a-66c1-421c-af7f-3d4c2b28fcd6','841f7f01-a7cc-440b-859e-dea7f085dd74',163,45,45,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-12'),
('d0c629c9-525d-4f86-933c-2aaaf228ce81','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-131'),
('d0c8eacf-4f99-4a96-b95a-43a7899dc57b','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-105'),
('d0c8f429-e899-40f8-98cc-72a8d0f61aca','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-17'),
('d0cc8670-d3a6-470d-8e10-6f04654e5ba1','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',21,30,21,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-8'),
('d0ceaa5c-3797-43cd-9f09-fadfe919c78a','f64d8576-5c28-4bc8-bb1f-11a8e0471a92',94,80,110,0,'2025-05-28 19:09:11.735','2025-06-05 12:35:08.404','644820551-5-3'),
('d0d05434-8765-464b-9234-10905424bc79','d0df6416-9f60-4c76-a984-ebbbd159d034',100,100,100,0,'2024-03-14 13:50:38.929','2024-03-22 07:36:45.078','745484472-1-1'),
('d0d0abc8-c409-4059-95c2-21b1fa6b6c81','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.069','858708990-1-14'),
('d0d2932b-db19-46a9-a9e5-fb360b10a0a2','8dc0b39c-684d-4b5b-a6e9-3bcaa00ce7ac',8,69,169,0,'2025-10-20 04:18:21.633',NULL,'312422305-5-1'),
('d0da6f86-5621-4f55-9b22-e02234551b96','757ae95f-0fed-4fbe-abbd-2a061e3c64ca',57,83,62,0,'2025-09-12 17:17:04.706','2025-09-23 14:04:07.289','221225501-1-6'),
('d0db92fd-7b66-4bd8-a994-b629e5533d7d','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',56,35,10,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-34'),
('d0dee967-be6f-4560-99ae-fab31b3db365','14c5439d-b326-4a6c-aab5-d692d92d235f',0,0,0,0,NULL,NULL,'74520701-1-4'),
('d0e22d5f-5eef-4f0f-8469-4d13bda2da1d','6ae0233f-f2c2-44bf-9706-7274e4c923e9',82,94,38,0,'2025-03-27 08:02:37.202','2025-04-09 12:54:30.745','412149383-1-14'),
('d0e7d0e0-6ad3-4fa9-bafa-9059065a64eb','b93c6331-52d1-4457-9c77-5af31d37b339',70,95,95,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-2-1'),
('d0e7face-93ab-48f4-9c93-2e07f1fa9e16','96eec285-a16a-4ef8-91c2-f330c11ec1f8',106,245,7,0,NULL,NULL,'221893262-2-1'),
('d0ec13da-70e7-402c-a8b4-177cf3a68b01','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-31'),
('d0eeb365-11db-42b8-8f61-b05cf2c691d1','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-225'),
('d0efb0bb-9b8c-47d3-a862-21de9544b367','a3bbc87a-f769-48ca-8f56-60b6a63ae632',74,53,100,0,'2025-09-24 11:01:21.468','2025-10-02 11:12:24.133','644590959-2-3'),
('d0f77ac0-5eae-432b-a31c-efcfa30b7bc0','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-96'),
('d0f9c0b5-ff91-42ef-ac8e-5560d8441cc2','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',50,214,10,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-30'),
('d0f9ebb2-0aa0-4e0a-978c-903059b501ee','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-2'),
('d100d4d8-5df7-46ed-a4c5-9206bfd2fb3c','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-15'),
('d10eb40e-8251-4094-8a34-cd9c265e6b05','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:44.766','248284003-1-111'),
('d10f1e2c-db01-46c8-a9c9-8c881b34fc51','7dcc2170-0fdb-4643-987a-624cc3fb4320',96,7,166,0,'2025-10-25 08:59:26.343',NULL,'221651438-2-3'),
('d10fa9b9-4b1f-41f4-9506-d6145702a31c','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-59'),
('d111ab1b-aac7-45ea-b274-3a78c6aa3eff','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',96,183,7,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-3'),
('d112e96f-beaa-45f7-bdc0-04d7c8e382e1','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-7'),
('d1171cff-902e-4b1c-9cf2-c6bbf3a4893e','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.551','221257971-1-5'),
('d117a24e-c63c-4a71-bfee-13468aef3405','4d21a562-4444-42f3-8ddd-8d2f41fb562e',70,96,100,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-2-3'),
('d1195cd8-30dc-4eca-adb0-7ce329d1b593','543dfe18-75e0-4198-9d24-c6d0458898e8',130,127,65,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-6'),
('d119c109-d292-4321-bb68-16ad1f2cb371','3ab2fd1d-32f0-4ec0-9f6b-d89427ef7bea',0,0,0,0,'2024-05-29 10:12:11.110','2024-06-11 14:04:55.828','614390628-1-4'),
('d11b2967-deb6-4f4e-8c3d-d8bb8a8ac4fc','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',108,108,70,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-2'),
('d11b6d6b-70d0-4271-82a1-a8d87fcf60ca','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-74'),
('d11cc30c-0f7f-44c1-ad76-ede28b839e47','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-125'),
('d11d4303-1a25-48ed-8e11-9826abd828f2','b500f3e3-149c-4c27-a97e-11ac0175c96b',60,43,22,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.068','223433822-1-27'),
('d11ed6e8-ed6a-43ec-be6f-afe62ed9dd28','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-13'),
('d120002a-5a6b-4339-8b48-7dcf588877ff','0ae8f02b-7ea0-4dc2-9ef3-568b97ca95d4',52,52,70,0,'2025-09-06 07:20:15.393','2025-09-16 06:34:40.141','437152964-1-5'),
('d120f518-495a-4350-8699-1c81de76e846','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-36'),
('d1214793-dd4b-4145-921b-5ce12ebd6df6','de366958-69a9-44da-b517-79cc4ca191e1',205,105,13,0,'2025-02-03 18:19:02.377','2025-02-13 13:19:40.212','976821188-2-1'),
('d127b37e-791e-493d-999a-5c6d7838ad6e','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-39'),
('d1292210-7240-4933-94c6-ece31b06d39e','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.937','268163356-1-5'),
('d12b124d-bb46-459a-a8d9-a76a9dd3a777','1a9c727e-5c65-4a99-b25e-b0d3ffdd2826',93,175,65,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-1-4'),
('d12dac8d-91f7-490c-928d-a145e98bdfee','c1d25f90-d493-406d-a430-9b65b4f44c5e',45,65,9,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-13'),
('d130314b-23eb-455e-b2da-39c2e1e7dc9c','92a145d8-7167-461b-8674-419e94785674',0,0,0,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-8'),
('d130cf1e-ea37-4855-b50f-a738a214eff4','49c326ab-5b3b-49e7-a781-28760709b5be',44,23,141,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-23'),
('d133f272-c97d-4074-9454-0abbdfd7503a','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',42,55,100,0,NULL,NULL,'504809900-2-4'),
('d135f643-116a-4e9e-a93d-7a96ba8e8a84','5ea4b207-b05c-4931-bbd1-648b6933aae5',228,62,5,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-17'),
('d13695cd-b23a-47d1-b166-c460dd610d74','52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63',70,99,70,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-3-2'),
('d137dabb-d65d-4617-8631-67118fa3db48','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-2'),
('d137f30c-cce2-40e8-a0d0-1a7afaa0c1a6','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-4'),
('d1391f44-db11-441d-a1bf-6822feaca119','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.905','2024-07-18 07:32:21.072','412586204-1-151'),
('d139ab5b-9010-4486-9341-cefad07b42a4','7ba47169-83ca-49a6-98fc-6ef1a1990eac',100,92,52,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-22'),
('d13a129e-622c-4993-8e8f-516e7aa3e7ef','87a6eed1-72e9-47a2-abf1-2f9ad0b45962',0,0,0,0,'2024-12-23 12:00:24.883','2025-01-09 13:53:30.063','74513098-1-3'),
('d13aa11f-846b-43b6-8bd0-0bf879b84080','b0b9fe77-55c6-4043-8628-b0ea2c868cef',74,100,65,0,'2025-10-20 07:18:18.094',NULL,'6442594-2-2'),
('d13bd3a2-9aad-4dd1-8be5-df0f7db20ea8','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-6'),
('d13c9a75-88b2-45f3-b78b-b84dea7ebcb0','a0bdaba1-0059-44ca-b369-a50cb7efc105',0,0,0,0,'2025-07-08 11:31:15.436','2025-07-24 18:01:00.406','47842524-1-1'),
('d13da14b-9b1e-4645-bfa8-f5bee3455116','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-18'),
('d13ded41-798b-46c3-aeef-5385ff61613d','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.937','2024-10-06 13:26:07.140','163229349-1-48'),
('d143d21c-06e6-4e5d-bc0b-7707a4aeb683','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-25'),
('d1451c01-82ce-4361-bab6-115107e0606a','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',85,104,53,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-28'),
('d1464fb7-7962-4e28-b92c-aa01c2a13cd1','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-26'),
('d1468567-d6d8-45bb-a1c7-56e14e539583','64592fbb-c17a-4ef7-81fd-28e6bc8413a1',235,100,85,0,'2025-02-15 13:31:55.346','2025-02-23 09:31:03.540','897291641-1-2'),
('d146d2d9-4907-4624-a44e-2f609128e21e','15848870-75a0-4294-9752-8c0da1d7da4a',35,35,35,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-5'),
('d1494a20-a68c-4c56-beb1-2ce5164899a5','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',100,70,70,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.109','412129107-1-13'),
('d149ca94-7c3a-48c0-b942-1ecca480d103','2edecaba-33e1-4db0-93ac-b909e6bae465',96,29,202,0,'2025-09-02 14:48:42.200','2025-09-10 17:06:01.024','613108463-1-3'),
('d14b27eb-8839-4b3e-ae9d-9a2d53aafe16','1d9972b9-1383-4b2a-a7f9-2e2b0b5a33e4',7,52,52,0,'2025-10-02 06:45:44.372','2025-10-15 20:05:09.396','338286320-1-2'),
('d1524bf1-5197-4ea2-9cc7-fcbff654b570','0066c2e3-ba8f-4c63-a37e-2b8d8425a42b',82,57,110,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.802','478677262-1-3'),
('d155bfb4-9e5e-43d5-809e-2897835b6582','f58e6b9f-d5af-48a2-952b-687f4ff843c8',10,50,212,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-9'),
('d159971b-a780-4a12-9c2a-c80aacdd652f','fff846e6-362b-483f-ba3a-df216849c545',102,200,5,0,'2025-09-02 14:48:57.042','2025-09-12 06:56:48.627','517903636-1-5'),
('d15f70e8-4f97-48b7-b4d0-af91c12f9878','0b263696-c301-4e53-af19-9954fc5ad107',0,0,0,0,'2025-08-07 16:52:46.856','2025-08-20 12:01:46.079','428470171-1-2'),
('d16042d8-1702-448b-a15a-4e4e125a5c23','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-4'),
('d1609ad0-5e44-4331-9219-4ed565ca8999','6114a732-dc0c-474c-bbb4-76211cbefcb1',232,74,98,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-2-4'),
('d1629e9b-b580-489e-81be-5dd19532faa2','fee6d28e-ec96-4152-8bd2-97598ebbd691',43,43,77,0,NULL,NULL,'598604443-4-3'),
('d16471b7-4f16-49ef-84c5-fc9cd15359b7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-126'),
('d1663f5c-fef2-4e14-8a45-86942a0ec590','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-3'),
('d169812e-a37a-4807-84a5-abcbb6b92afd','601003c4-c08a-4b64-839d-d5ab37e7595b',96,75,83,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-3'),
('d16dd008-c6e7-43d7-acfc-ef5d64395430','8625abf2-719d-4d7f-b206-16948b318b8b',29,61,41,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-24'),
('d1700441-46be-4c50-9bfb-8bc84b44abe6','43ec6ce8-9ec2-4648-8e6a-93c885be50d4',94,94,73,0,NULL,NULL,'478345195-1-3'),
('d171d87d-ea56-4389-9edd-f26e4bdb1a14','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:04.058','248135683-1-136'),
('d17351a2-93dd-48f9-8e8e-7a1a468ef5b4','ff722e98-0fc4-4e7a-aa12-76012685646b',100,100,70,0,'2025-07-29 12:58:29.427','2025-08-08 15:21:01.747','437609907-1-2'),
('d17411cf-675b-4cc7-a823-4e617760f3b0','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',86,88,5,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-10'),
('d1764832-1689-4c0f-917e-fde2b88eaa45','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-18'),
('d1777c3c-cf65-4bc6-93af-a1830dfbcc5d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-58'),
('d17920e1-16f9-4672-8474-054b300b7e55','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-2'),
('d1799386-9dff-4e70-90f4-0019ed266ff4','c8f396d4-65a3-4c67-8ae4-e78fccdca407',0,0,0,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.705','786668251-2-4'),
('d17a057a-8ae3-408d-841a-62b990d05558','7aeed7d9-4ae5-4fd9-aa5c-7529961da994',140,97,70,0,'2024-04-08 08:57:53.481','2024-04-24 09:14:57.411','315164103-1-2'),
('d17c682d-77d0-4d0d-918a-ac9a2b286690','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-14'),
('d1802a11-48f6-43e4-88f3-1b94884945ad','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-57'),
('d1809a5d-37c8-49b4-b2d2-e4447ddef399','e178636b-b1d9-4260-aa1b-879946fa7f5d',14,45,67,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-21'),
('d1816f77-04d6-4691-8ec9-37b8c73935a5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-157'),
('d182a221-660f-4d47-a23c-0e32ebfd8958','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-55'),
('d18474aa-f32f-4ceb-b7b8-a16b20130837','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-11'),
('d184c0ed-b354-4ad2-96a6-85be52805f60','ad3d8fcc-b247-46fd-95f4-08480bea8dd6',77,51,52,0,'2025-09-24 11:01:59.341','2025-10-07 06:17:28.409','531309772-2-3'),
('d18647cb-e7d4-4106-8337-30139a5a2843','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',160,35,35,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-4'),
('d188f76c-9a2d-4884-92ec-7c4adbbbafe9','586d8693-ffd8-45d6-9ff5-c2329cf59822',84,100,55,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-1-4'),
('d189572f-57cf-4dbe-b4a7-69472922657e','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-52'),
('d18d4414-5680-44e5-80bf-e03cad7397e0','9f400dae-8f10-4e69-a297-7b46f85782a2',0,0,0,0,'2025-03-13 12:21:47.923','2025-03-19 12:37:00.703','745471905-3-1'),
('d18df106-e2f9-4270-a55f-30482f46b39e','7360cf59-fdde-4259-88ae-e20574f2ab94',50,75,75,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-1-3'),
('d18f1510-6226-4579-a3ef-d83a19defaab','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-6'),
('d1938307-0337-4be2-9b89-8fb4fe58fd10','cbef7bb3-505d-4317-b96f-79bb7c881fdc',82,57,110,0,'2025-08-27 19:40:13.648','2025-09-04 06:16:37.995','437660658-2-3'),
('d1946657-2274-40c2-86f1-d39724ffc066','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-20'),
('d194ab8b-7b25-4344-b137-e7c5a724525a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-32'),
('d19774f9-dfed-4d24-8c05-af6c1432d02c','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-10'),
('d1991161-86c0-4929-80c1-0a1d4fdbdcd2','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-6'),
('d19923bb-72bc-41a5-9639-16e5f534e349','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-7'),
('d199b28f-e60c-413b-8493-9ba662e257b6','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-39'),
('d19cd6ba-49e2-4b57-a03b-03d77fd23997','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-22'),
('d19e367a-b089-4dde-b637-5417a99f11bb','4f705fe3-98b7-4cad-b5b7-b4778d0004a4',93,105,65,0,'2025-05-28 19:08:54.433','2025-06-06 17:37:11.377','817136073-1-6'),
('d1a22427-02c9-42da-91c5-5c88a96fac82','b5f6869c-be7c-4244-9bf9-704a745a8d2e',8,65,85,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-5'),
('d1a4e4a1-7af4-4b09-b7be-1a6ddaca9ddc','93afdce7-a081-40fc-8b48-e34cca1780b6',160,10,10,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-4-1'),
('d1a66e98-830a-42b4-ab5e-e71a3660a3eb','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-6'),
('d1a96e0a-d6a7-4fd7-9329-7080ff6c99e1','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-30'),
('d1a9da18-e1be-44ad-899f-3d507ee23693','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-109'),
('d1adfc20-af84-49a8-bb4c-eaf56330a7f2','8ab4c5c1-7ac8-42f7-9ae4-22d1a63cbb56',213,46,5,0,NULL,NULL,'501168544-1-9'),
('d1ae0374-d34e-44f7-920c-1e03ac635750','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-28'),
('d1b25d25-4279-4fcf-913a-e7bc30ecc2c6','b16256b1-d6a2-448b-a170-4c574127a57b',49,58,23,0,NULL,NULL,'745189997-3-14'),
('d1b3f0e4-0efd-4bc1-8dd7-0ae7a23b804b','3aca7d6d-09cb-4903-812e-7535a083b09c',173,90,10,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-23'),
('d1b64aba-00b0-40a9-95cf-f1c11e1ab6ae','05c69f47-3c62-498d-97f8-bc1d7350f13c',53,58,97,0,'2025-06-11 13:14:44.477','2025-06-17 16:02:25.266','437256638-1-2'),
('d1b8af03-0044-4577-9295-ffee171539c8','940732e5-0ff2-4104-8730-71ae631a2346',0,0,0,0,'2025-03-24 16:02:12.814','2025-04-01 09:23:21.072','338691111-1-3'),
('d1b9bafd-ad63-405f-91bd-6e0289fb26d9','324e00ef-45d5-469e-89bf-811dd1160a35',92,5,176,0,'2025-02-20 12:15:14.140','2025-02-28 12:04:16.511','982125625-1-5'),
('d1bd1722-c04c-44be-aedc-d4a49a6434da','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-13'),
('d1bebe46-c5d5-4e6c-8101-615e3df6c6f3','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-9'),
('d1c0d474-e307-41df-8921-e397c72d0d05','db48d2de-9b3c-4281-8b61-7cd066669b2d',107,105,77,0,NULL,NULL,'644726352-1-5'),
('d1c12924-ce32-4749-8252-b9a22deca1c4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:04.598','248135683-1-191'),
('d1c350d8-ded7-4e3c-b1e8-50bf23114638','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-127'),
('d1c4f82a-1430-414c-a209-83dc40302ec9','546ad3d0-25c2-43dd-9443-e48b8e5b6530',120,24,200,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-34'),
('d1cbca5b-9573-46a1-af30-2b7c674082cb','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-30'),
('d1cd3122-eadb-46d6-9da6-5aa1644421d3','c1d25f90-d493-406d-a430-9b65b4f44c5e',21,42,63,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-14'),
('d1ceb329-0e50-437b-b111-e11e92572b01','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-9'),
('d1cfd9a4-d458-4fe5-86e4-be417381bfe9','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.372','2024-06-22 11:10:53.464','319897198-1-20'),
('d1d0fc9f-0ed0-4cdc-82d2-d7882378225c','589cc722-7c0d-40c7-a099-7e88c8ff12e4',0,0,0,0,NULL,NULL,'745436157-3-10'),
('d1d1f341-f508-49a3-84a1-de9b9a39cb78','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:05.079','248135683-1-245'),
('d1d3d9e1-0af1-4df0-8faf-83a0cf8f96fd','e3de85d3-eec0-4038-99df-48935e9c3c8e',180,90,70,0,'2024-10-11 16:09:22.261','2024-10-22 13:51:40.148','976898541-1-7'),
('d1d4c5e0-5f23-45ba-8f6d-3c875a12e6b8','79959af5-d58d-46f0-8817-b67d0c98e5f7',82,56,101,0,'2025-05-16 16:33:17.437','2025-05-25 19:11:27.053','613168811-1-3'),
('d1d870cc-398a-420c-a10e-2c4d31053fb1','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-17'),
('d1dc26e2-2dae-40cf-ba60-c354381c8a65','2e2e32d1-cc1c-4c29-8671-60555cb57d3a',51,51,77,0,'2025-05-24 17:55:36.535','2025-06-03 09:41:12.981','437869312-1-2'),
('d1debeb8-74d8-4c72-bebb-7d77bbd739cf','0992d733-abbb-4891-8268-04764b359116',119,199,32,0,'2025-06-27 17:12:05.163','2025-07-16 07:46:09.842','745249081-1-4'),
('d1df3186-c5f2-4cd1-a25f-bab7c3d75b1b','cf5e2f56-ede6-45c4-acb8-88a0bffb5f73',115,211,12,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-4-4'),
('d1e11ebe-b49c-4294-8c38-80d0f6cb5916','a455ba66-b417-4781-a6f2-6fce1b8bab23',112,194,14,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-21'),
('d1e26778-dd61-4fd1-8adc-a0b3b3f90913','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-5'),
('d1e36ad1-c8a2-4f96-a9b4-d17f200cdb33','169583e5-aae1-401d-bbeb-1e1ae478298c',52,76,52,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-2-4'),
('d1e3ef38-7926-488d-8bbb-54bde124c8f5','87b3f634-7cb9-4342-96bb-9a0c75c1ffe9',98,98,80,0,'2025-10-20 07:18:09.468',NULL,'505332275-1-1'),
('d1e4b0dc-6d26-4f05-9300-0c230004f6fc','2833c015-c4a7-4e42-bcb0-6965d0bf9a2d',65,148,97,0,'2025-07-12 09:20:36.030','2025-07-22 13:23:30.418','598161990-1-3'),
('d1e62b78-6e58-4be1-aad8-5441da5cfba4','a7adbd9e-6dc8-4e83-8103-f0614c771f77',70,104,230,0,'2025-07-12 09:20:31.828','2025-07-23 06:22:15.027','817838997-1-3'),
('d1e95a60-1f4c-44c3-87bc-a280e47e1361','ab16c37e-6ebe-4e09-b119-440ce867c25c',90,75,100,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-4'),
('d1eb3ad5-150e-492e-8dfe-3596240f4c6a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-1'),
('d1edfd7a-3d8f-462c-b4a1-253b97c70482','b9dc5ac8-4889-4662-9cde-61ca4efefe1c',44,7,213,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-23-1'),
('d1f45068-ae05-430b-8ed6-f18ca529efdf','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-122'),
('d1f66418-1166-4520-b74f-6f6fabc05023','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-13'),
('d1f682e1-7f68-4408-9143-0b3372163360','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-98'),
('d1f738fb-bb6e-4c38-bcf3-11b62a242466','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',7,18,153,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-10'),
('d1f9e2d4-86fc-4e30-b5d1-f84c92eedaf4','9a0272fb-f864-42c8-89a2-8abe0cac90b2',83,102,57,0,'2025-07-12 09:20:40.358','2025-07-22 13:23:02.941','675799375-1-4'),
('d1fd487a-0cd7-4da6-ae63-a46479fed7b9','a98d64d2-c7c4-4514-82cc-2d1b0cb95556',66,46,66,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.645','976192214-7-16'),
('d201e276-043e-41bc-b002-0dbc7e627415','b7fbd54c-bcc0-4613-9901-d06327048472',45,33,10,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-9'),
('d2028592-6d58-4d40-ac28-3f002b6dfc98','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-5'),
('d209c4b9-31d3-488e-a27a-9e07fa387cef','9f402231-48f4-4e54-b1bd-d47b91ae696f',24,16,90,0,'2024-11-25 08:29:01.481','2024-12-03 21:17:16.301','465891539-1-1'),
('d20a224a-7749-451d-9ad7-cea6464730c1','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-7'),
('d20b27bb-f184-4bb4-8d35-9e1416e720c3','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',35,30,215,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-2-2'),
('d20c32aa-f47d-426b-8231-8db01fbb02e7','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-85'),
('d2111030-0add-4a84-99ca-233160b4efc1','845cd508-3836-4f7f-899b-bf28d0f90884',135,181,12,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-7'),
('d214e790-d783-455c-98da-9737eec2187e','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-52'),
('d215118a-3024-4cc4-b125-526a892fee86','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-15'),
('d215edf5-bf7c-4c75-b373-33b470752ee6','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',55,82,100,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-8'),
('d216c990-d876-45fd-afa8-91066cc5c18c','359880a3-777e-425a-a9fb-c44790c1fdd7',35,27,11,0,NULL,NULL,'570265257-1-5'),
('d216da65-b562-4538-8c72-b9b925a910b8','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-25'),
('d217ae8c-af86-4458-908c-2321b45e05ab','1222a6b4-7912-4b99-b20a-21960de3045b',0,0,0,0,NULL,NULL,'428310085-1-4'),
('d21adf8a-51ae-4068-bece-52d9b7393c8e','da725bab-47fe-4aea-b4e3-094195e16ad2',97,97,70,0,NULL,NULL,'745509928-1-3'),
('d21cc384-3859-4507-ad33-ff875bcd7c19','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-165'),
('d21ccab1-bcf1-4a1f-86f6-c54fb60fac85','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-33'),
('d21e6e8e-2cbf-4a77-b58d-83d299dd6cd7','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-203'),
('d2220b3b-7154-48cf-988a-d351bc218b96','186c3fe1-8981-42c5-824f-091f5394d4a8',44,24,71,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-1-2'),
('d2233930-0c58-4521-be4f-c0213f8c4019','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-35'),
('d224c68c-91a0-4b96-8406-b9c7c9c88558','4e73a077-b984-4206-b6f1-c5162fb00167',81,132,23,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-2-1'),
('d22527b8-6789-4b6d-8284-e5a5994b1f86','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.519','2025-02-15 16:08:58.971','20390821-1-63'),
('d2265e9d-92ff-492e-a075-2cfa12dc755d','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-7'),
('d22716a6-0510-4c33-8ffe-af1bd587255d','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-55'),
('d2286130-ec08-48a8-92b5-81b512a7c078','42ca0061-b4cf-49b4-9c38-32898832854c',0,0,0,0,'2025-05-09 18:44:13.417','2025-05-20 06:24:03.531','371807983-1-1'),
('d2291e65-442b-4c19-b108-32dad26cd8c3','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-4'),
('d22a4446-2bb3-41e1-a738-de900905643e','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-39'),
('d22e1f93-ce9a-403b-abc8-b0a826194fac','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-29'),
('d22ecc18-34b5-444a-acb5-95e57f080324','46cbcfc1-c51a-492f-8b61-a2472751488a',94,96,80,0,NULL,NULL,'644495739-2-3'),
('d22fb262-ab1d-4c98-a102-12b5d7882c02','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',55,82,100,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.370','517447554-1-9'),
('d231b2f7-147f-4c97-a37d-4dfe53796a09','08af242e-dc62-496d-980d-0f589dcdea60',50,56,98,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-10'),
('d233ee9f-6ce3-4d93-b1b7-0f0a71bf6209','4bbe3bc9-725c-4c0c-a425-8320cbf215b7',90,80,90,0,'2024-10-23 14:11:41.291','2024-10-30 18:09:43.450','976187023-1-5'),
('d2348e87-7be6-4ea9-93a1-4de3dd2e96bf','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-14'),
('d23678f2-4c58-4a0a-9f82-b3ed2467ce08','7d9066b1-4307-4c24-8a92-38ec5adfbbcf',92,200,26,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-4-7'),
('d2370f1b-8544-4fcd-b239-32349b02db3a','9c776356-2e24-4ef2-8e40-54bae883ae2c',105,105,70,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-2-4'),
('d2385f49-6e61-49b8-acff-fe703ddd988d','94265c38-053f-43ac-95e5-6d1b08ae3c22',60,51,14,0,'2025-03-27 15:05:06.420','2025-04-08 15:35:11.107','517887763-1-7'),
('d242016e-0656-42a4-9170-f03793705075','39e88a96-6243-4852-a38c-9846154a9d45',65,110,125,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-1-4'),
('d243cabe-cbc5-4d78-958d-faa51c953823','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-10'),
('d24a9d4c-6761-4c47-90fb-fe84dfdf4891','9064014f-b213-4017-8a26-f5ee2179876f',0,0,0,0,'2024-12-07 09:32:37.434','2024-12-17 19:51:15.615','735637082-1-2'),
('d24adb1a-d861-4216-b67f-8115bc907f3d','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-1-7'),
('d24c5e92-5fb4-4cd1-92a9-cccd8725ca30','e8302a51-2bb4-4124-bff3-50276f045168',32,57,49,0,NULL,NULL,'127991361-3-5'),
('d24de39d-c11b-4e0b-bf97-4fb6673b86d8','b44449c8-5efa-4085-bd2d-0a3594587af9',63,103,4,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-16'),
('d24e92fc-93f7-432d-a166-88837532f2bc','9d935c6e-5911-403e-b53a-08f90bd2dad0',85,70,70,0,NULL,NULL,'449224087-1-2'),
('d2512e5f-953c-4a25-b930-bed858460439','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',51,145,13,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-26'),
('d253a901-9d13-4c1c-a5f1-4ea2645368e9','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-12'),
('d2542cdf-599e-4d2c-91f4-6b93bffb117a','aadf78aa-6852-48e3-9660-062042fc3ac3',110,90,65,0,'2025-07-19 07:51:56.592','2025-07-30 08:02:13.960','127221315-1-3'),
('d25701f0-a471-42be-b6de-8884c815a2f1','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-6'),
('d25914b4-d55e-4c74-a34b-648deedda6f8','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-13'),
('d25cb900-8f8c-4d54-a6a5-3c7918fb7d60','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-58'),
('d25cc270-eacb-47b6-a763-d589471b303d','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-66'),
('d25de798-8730-41a2-8616-c3bd60b6a66a','743ccdda-3eee-4f87-8835-f0f9348b6b7e',110,56,82,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-8'),
('d2600881-9cee-453a-b2b7-ac2870afd098','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-53'),
('d260eb0f-04c9-4afd-b4a7-d25069c93ed5','5acbde88-dafc-4c21-ac17-d9730a373cef',76,53,100,0,'2025-10-02 06:45:44.373','2025-10-15 20:05:09.396','338286320-2-7'),
('d262a966-51bf-49cd-b9ab-5a3e02017f41','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-1'),
('d265701f-6b2c-4c1a-90ce-e2afa3fdaebe','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-73'),
('d2688165-cbe4-4959-85b2-100f790ae35d','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-20'),
('d26db417-f39b-4e72-8167-7fc6e179f8de','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-8'),
('d2704d5e-12c3-4197-afa7-d953a5a7f24e','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-1'),
('d2717052-df2f-47ea-be95-b54339563e94','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-110'),
('d2719bc7-8b63-49b4-be05-2e2309b275dd','5b94f16d-f4d8-4466-bc90-5a88e45dee7e',95,70,82,0,'2025-07-12 09:20:18.079','2025-07-25 10:49:11.537','976747802-1-1'),
('d274d032-314b-4dbe-a859-aa5e49a06bb7','354cc431-6494-4803-abf9-6c2c326b7a22',235,102,70,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-1-2'),
('d2754e89-0473-472e-925e-3ac6992d278a','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-64'),
('d275b447-a6d9-4dfa-b8ee-dd683bcb2850','764ab450-3216-4b55-bf26-f7163a6cf0bf',250,98,70,0,NULL,NULL,'371117320-2-2'),
('d275d714-c6b8-45d0-9189-4976c4794e40','fa880f52-10c6-402e-90f6-afd9e9dff9eb',0,0,0,0,NULL,NULL,'614941926-16-1'),
('d27787c2-47e5-494f-bc7d-81e5fddb97b3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-7'),
('d27a0094-e2ae-4fc4-9f6d-a7ddaa190a69','b4183fd9-691f-4e50-aa3e-1185b3e78cff',33,20,20,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-9'),
('d27dbc19-03c6-484a-93d7-55f577859efc','0e701d67-c6bb-4ce9-b32e-3d2255d064b5',0,0,0,0,'2024-04-23 10:31:53.400','2024-04-26 17:00:05.653','44971858-1-1'),
('d27ee85f-a711-4af3-a07a-c1a5045847c5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-126'),
('d2808275-a161-47f0-a2b8-8cfcbf9f9923','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-23'),
('d28102fd-1d57-4952-909e-f640f6be086b','3aca7d6d-09cb-4903-812e-7535a083b09c',217,45,6,0,'2024-11-08 17:37:44.278','2024-11-22 21:22:11.473','616254479-1-18'),
('d2810b45-37e0-46be-88fb-7c4defb4dcef','9c87d055-322e-433b-9fd7-b8e890d8305b',95,77,80,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-2-5'),
('d283680c-9980-48ea-8dca-0662c14990b4','1fd8e619-fda4-4a7c-b740-1071821a89a4',35,23,17,0,'2025-09-18 15:48:37.361','2025-10-02 06:11:54.487','437158505-1-3'),
('d2847a93-bd29-4dba-b185-a92311a8ea9a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-114'),
('d285e029-5bba-489b-be6c-1bd25bd6b607','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',95,70,70,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-17'),
('d288b259-bab7-43a0-9133-9d13017eef1b','b0b9fe77-55c6-4043-8628-b0ea2c868cef',100,100,65,0,'2025-10-20 07:18:18.094',NULL,'6442594-2-1'),
('d28961f2-e760-480b-83fe-f23f4fc95f4d','9950fe74-2437-4188-83e7-37a1e09fa6f7',0,0,0,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-3-8'),
('d28ac97a-0345-4599-858c-17d983ecbe57','c37afb63-e442-499b-a52e-405f6d0d0685',70,80,75,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-6'),
('d28ad0d6-eba2-4e05-8ef8-7854f440c082','404bb5c9-911f-4abe-ae27-d9f8c7b4f704',0,0,0,0,'2025-07-19 07:52:16.841','2025-07-28 12:02:29.778','745712790-1-2'),
('d28ae31d-0d30-48cd-b6e1-9b5bacc5344d','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-217'),
('d28e78ef-1c36-4c0b-ad86-e380f804d2d2','c1d25f90-d493-406d-a430-9b65b4f44c5e',18,13,153,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-15'),
('d290f544-1203-417c-947c-051c5d7c4801','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-17'),
('d2936e9e-8d3a-4b76-9267-3d6615c3ee2c','6ce91342-6292-45b3-be85-1b55deed3ecb',240,100,85,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.342','517895646-3-1'),
('d2938764-7b71-472a-88f5-a937277a9135','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-5'),
('d294a82b-1d11-476a-accb-be8625150042','927ceb65-f6d3-4068-b0ea-1412cfd0a754',37,94,94,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-4'),
('d297219e-66c4-4b14-a32d-6e98110a21e3','bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1',230,70,90,0,'2024-10-23 14:11:46.938','2024-10-31 12:05:38.042','501848451-1-1'),
('d29740fc-4153-4fa9-b410-ce665f117456','584c7d21-1cda-4d31-ace0-5cdb4484dc36',83,54,39,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-1-1'),
('d297e9e4-5cd5-45f2-b733-89836aa4762f','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-38'),
('d29be26e-5b31-49fd-8d51-13b9d6544ab2','8c3a9387-2db4-400b-95fa-11aef6c745f6',160,35,35,0,'2024-08-21 14:53:24.603','2024-08-31 08:01:45.893','501766543-1-16'),
('d29d78f0-cbcf-4b99-a5ab-a67c8953f546','1ecc5768-b507-40f7-a0d2-f557b0a01e35',65,97,97,0,'2025-04-25 16:57:10.447','2025-05-02 06:58:05.857','478537954-1-3'),
('d29e15b1-4da9-4aea-bdae-d884a8cd3bc1','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-16'),
('d29e48b0-f855-4284-8d4e-8062e5a8c69a','05af1df3-9a36-4be2-8bd1-773d59e1605a',45,40,60,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-2'),
('d29ff0cf-11af-40ee-aad1-f7e17997438a','0bb5d71a-48ab-403f-9eb4-a71c550b29ad',177,6,194,0,'2025-03-11 18:06:01.698','2025-03-18 17:00:21.789','982134567-2-2'),
('d2a29d3c-de72-4cc4-a2b0-8cd7600f21b5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-234'),
('d2a2de50-db19-4a5a-a3e7-132589cbcea6','426ef9bb-a62f-449c-94ff-8db1393b2288',93,65,220,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-1-2'),
('d2a42717-fbbb-4960-900c-e07c2d616971','e7f31a78-648d-4a5e-9111-1bf7db38dd79',208,44,7,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-28'),
('d2a54dce-9269-4e2a-ae63-5737dfde9206','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-6'),
('d2a6d38d-a021-44af-bddf-ad1999828f96','9866a947-9974-4053-8415-4518842488fe',220,44,6,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-34'),
('d2a90b92-a62b-450c-b079-87b33bdd6da4','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',93,93,39,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-12'),
('d2aab59a-9aef-4084-a2c9-7f5e48836fcc','9affc7b1-09c4-4e84-b48b-d0c117c421b0',196,102,19,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-30'),
('d2ac65c6-9f6c-4fbb-9f7d-a1701ec94e08','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',52,52,77,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-4'),
('d2ae75c1-2dcc-44e2-af12-93085900add5','6162f09a-c875-44a3-a309-7f63d0880087',85,96,76,0,NULL,NULL,'614597563-1-1'),
('d2af673b-5725-488a-97b3-29efa9ae3835','b5f6869c-be7c-4244-9bf9-704a745a8d2e',9,25,43,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-6'),
('d2b00e53-b18a-459e-b691-d0e0c0c488f3','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-12'),
('d2b02956-67cd-45b2-b2d8-4ba35dccac1a','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-16'),
('d2b158fb-935c-4069-ab76-2835f025a1ea','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-3'),
('d2b19070-c2bf-4bef-b000-84db12db05bc','d176a715-bd33-47f6-bcb7-f384e079f39a',198,158,3,0,NULL,NULL,'501724603-1-5'),
('d2b19351-701c-4a2f-8850-33f72125404e','2fb19f98-3e7f-4224-baf7-2836d72e91ba',109,69,73,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-6'),
('d2b1d8a8-b88e-4462-a781-ef0e4be39b51','9d7979f3-a35a-4a64-97d1-4ba973786029',69,2,190,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-27'),
('d2b2934c-b7f1-496a-8761-b462eecc5454','2a27075f-9e1e-4b69-ac54-3164ee2b92fc',0,0,0,0,'2025-02-20 12:15:02.102','2025-03-03 12:37:41.822','570121325-1-5'),
('d2b31671-6e29-4925-b029-964db462de53','1d11c681-3983-42da-b02d-56cdbb17ad76',75,102,57,0,'2024-11-08 17:37:56.781','2024-11-21 12:40:09.302','748663171-1-3'),
('d2bc0c92-cd02-4660-91a7-683adbfd3663','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',57,6,224,0,NULL,NULL,'644104537-5-12'),
('d2bc42c5-17c7-46a6-9e58-a0a8e3095173','1087586e-034f-4ec1-9828-d61ce37a1821',47,47,50,0,NULL,NULL,'478153975-1-7'),
('d2bf0c2a-907c-4cd3-9f26-acbe30d9f9d4','91d10b70-a38a-4473-a688-7e33b18968e3',110,110,60,0,'2025-10-14 09:22:02.950','2025-10-22 07:00:00.227','765828045-2-4'),
('d2c0df14-35ba-4140-991e-f389212a9c3a','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-32'),
('d2c22f24-bca3-4122-922e-22ad40961ac0','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-19'),
('d2c39ce7-370f-4838-ab9f-bceebb5ef41d','10487cb1-a480-4eb0-8c13-2e4f22918abd',108,263,9,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-1-3'),
('d2c8a285-c2db-4548-a118-146b0bea1d82','e89e7d75-4967-4c63-9f73-981469e531af',137,56,27,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-39'),
('d2cb5564-f2c6-4f63-b7a7-f1f0d7c97e7e','f395fe5b-aa87-4cd3-bf35-762e8b234161',54,50,6,0,'2025-04-25 16:57:21.234','2025-05-01 09:52:18.856','910245715-1-3'),
('d2cb5592-1678-402b-be92-6ca12d0e696b','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-19'),
('d2cbf58b-0ba4-4dfe-aff0-226a1c54c94d','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-6'),
('d2d009fc-7411-4bec-9899-677bd1f328e8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-143'),
('d2d131fa-650a-482b-a2e6-e32d00db87ee','c71fdc71-df3e-48af-9323-d534b0931ff1',57,6,208,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-20'),
('d2d1346c-6b0c-42ce-ac22-8c8304577cdc','c032e8ce-824c-49f7-9369-fe87698e9814',53,76,102,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-3-2'),
('d2d1ea8b-4714-4471-bbb3-4c70490ddadd','c51cf533-511d-4f61-a94c-3e48074db45d',30,198,158,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-12'),
('d2d2467d-5554-4606-abdb-a5ec216afc70','fc853fcb-c51c-4c07-b20a-ac57fdd1a81e',30,30,45,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-5-5'),
('d2d40b3c-a2cc-448d-a9be-03007cbc90ea','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-15'),
('d2d50ad4-46e8-49ca-a4ec-d799441e0b52','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-4'),
('d2d6c901-e046-4836-a4cd-2ddb772e6f06','bbf524c3-27fa-486f-bdf9-142bac6ace56',70,70,70,0,'2024-03-16 14:34:23.702','2024-03-25 10:42:32.899','976751266-1-3'),
('d2d7eaab-f47b-4b6b-ae1b-a84aec8cab9c','afd7f71c-d1fc-484f-b72d-f986503df4f7',56,100,80,0,NULL,NULL,'703266692-1-13'),
('d2dacba2-24a4-4be2-9f90-9cb88e90b747','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-49'),
('d2db25fa-0a16-43cf-b19f-a7c2026b4c40','476b43b7-da3a-41aa-b89b-f5010f41f08f',96,86,70,0,'2025-10-25 08:59:07.177',NULL,'598445423-1-3'),
('d2e15f61-700b-4cd4-9572-d3f1ca807317','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',48,25,60,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-58'),
('d2e53db5-53d8-4026-91ce-bdad48f1471a','7b5051e7-035b-47a2-8be8-18b0ed228a6b',105,7,210,0,'2025-10-08 17:43:40.882','2025-10-17 06:14:39.891','598492066-1-4'),
('d2e7af4a-ee2c-4dec-b5f4-670a533e2211','21434274-7eaf-4dfd-8965-01f28214476b',196,6,96,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-1-3'),
('d2e7de78-daf6-4203-859f-5868a50f3dc2','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-19'),
('d2e88425-f244-4255-9a59-6084e47bff7f','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,38,52,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.069','223433822-1-28'),
('d2eca477-a2e9-4afe-a096-e52d1a721173','06669ff4-2ae4-48c9-9194-ff50672e27e9',101,205,7,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.160','437400305-1-2'),
('d2f0ba6f-e53b-4b04-93b4-863850548297','a4dfd617-2e55-4758-839b-0a6e4677b231',0,0,0,0,'2024-11-08 18:02:44.999','2024-11-16 21:34:38.137','248592138-1-1'),
('d2f1df5f-2a3d-4370-bb66-bfb9b6d815f8','1087586e-034f-4ec1-9828-d61ce37a1821',95,100,65,0,NULL,NULL,'478153975-1-8'),
('d2f2db1f-3266-414d-9c19-7231171e406a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-139'),
('d2f48be3-18c5-447d-b14a-45f414e85e86','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',33,200,98,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-3'),
('d2f6a7f2-ecf0-4f74-a982-7074792c049e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:44.437','248284003-1-12'),
('d2f79b28-9e76-4749-b1c8-111117420c91','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-18'),
('d2faa695-1bee-4551-a0ec-0a90c4fd29f3','84739b29-6a1a-4fa3-979e-e1e3baef179f',0,0,0,0,'2025-05-24 17:55:22.489','2025-06-05 16:39:06.619','745808637-1-4'),
('d2fb7a81-6f1c-40e8-9a1a-afc0a60ea366','c7cb6656-a7c5-4e04-911a-935fa91c3650',0,0,0,0,'2025-08-27 19:39:47.177','2025-09-07 10:15:31.611','412109820-1-7'),
('d2fdd234-647c-4034-a8ee-2f2e7a7b4fd9','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-34'),
('d2ff85f5-6b4c-40f6-b556-3d25635b7bdb','20696390-b3e2-43c8-90b6-11b5dfa19690',0,0,0,0,NULL,NULL,'786476168-1-2'),
('d2fff0db-2fe8-4508-9f54-6da08551cbd6','a9e59bad-160c-4c51-b34b-7c71bb5efeb3',97,176,70,0,'2025-10-14 09:22:22.489','2025-10-25 09:00:18.615','011804405-2-4'),
('d302011d-a4e1-4fa0-8a1f-881ff0ef9c24','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-7'),
('d3043a59-1d87-4d24-86f5-cbdd79c313d1','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-26'),
('d30507d6-ed1b-40e9-8f8a-32cae0aec2a2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-21'),
('d307b10f-5f2c-4a8a-9fc5-432c925ac808','fb9b5fa4-a2fc-4d6a-96d9-e247c36e725c',98,155,70,0,'2025-09-18 15:48:57.470','2025-09-30 06:45:08.498','598493196-1-1'),
('d30982c4-bf81-4e8a-9585-622a8360c581','b8cb209c-3d60-466f-8346-01810d5816ec',6,43,211,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-7'),
('d312ee05-7309-42bd-930a-282b08708f8a','9a67f257-16f5-41c1-aefd-0de283426e95',148,98,83,0,'2025-09-10 10:50:16.345','2025-09-16 17:48:00.459','437355925-3-2'),
('d3138d00-0b1e-49c2-80e6-aa50f7c46c84','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.001',NULL,'221811614-2-4'),
('d315025b-2556-402e-9da4-d2a41e4a77d0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-84'),
('d3151d25-2732-450e-9e1a-fcb4283d6584','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-10'),
('d31b6a0c-6a42-4878-9230-dee90f517e21','af69c5a3-87d3-4548-a650-720b69a4fc69',48,6,211,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-36'),
('d31cd4f2-a2d0-403d-beb0-b0272fed97ea','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-4'),
('d31e2da0-7ceb-482f-8fb3-ebf56fa1466e','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-5'),
('d31f0aa2-6ea6-43dd-87b2-423a7771a451','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-6'),
('d3216ef2-7bce-465c-837e-3ce6cf030df6','9993c1cf-ce00-41b9-b30a-a98be061c70b',80,80,90,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-2-2'),
('d321f9b6-a718-45d3-ad31-aabf04eac56e','8dc747cb-b372-42a7-a610-18e2ac9a01fe',156,92,55,0,'2025-03-24 16:02:00.063','2025-04-02 16:10:21.430','982329375-1-2'),
('d323c7b6-febe-4848-9ddf-b179058cc68e','f5c772b1-e3ce-47e0-849d-c0b9b36c5c02',40,85,77,0,'2025-05-16 16:33:37.958','2025-05-21 18:42:06.781','371539784-2-2'),
('d328ce2b-cb17-4259-af7c-2022c543f22a','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-13'),
('d32b0fa0-127f-4288-b5f2-412f6f88e49a','bf1674fc-9f29-42e9-9663-93caf07e711f',52,190,105,0,'2025-04-25 16:56:57.177','2025-05-02 17:09:16.612','371122828-1-1'),
('d32cc4c6-2f3f-4ab5-883b-dc21f6560b2e','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-21'),
('d32f8b91-531a-4874-bde9-632f7252befe','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',12,123,6,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-11'),
('d3322e9b-05b7-4a36-a283-4cb9a48e9e29','a87576e3-14e1-46a8-99c7-1d48360995f5',90,80,80,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-16'),
('d33b2ff8-ef12-403d-9e02-c6b6ba00334f','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.230','644547865-2-5'),
('d3417a38-be4d-48d8-9eef-a4fed6d1edc4','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-39'),
('d3424f1f-34fc-4eec-a80c-8d9becf31fda','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-7'),
('d343ff55-c72a-43d4-878f-00e2dac507c4','40065c78-de90-4058-907e-6af9c5da2b57',70,27,200,0,'2025-10-08 17:43:29.334','2025-10-17 06:15:16.791','803441454-1-5'),
('d3468fe1-db1f-43e7-acb5-8ba65c618719','c75addbc-d2eb-41ec-9bc7-5809796551b9',230,100,60,0,'2024-03-16 14:34:21.673','2024-03-26 05:55:37.761','449343471-1-1'),
('d347c8bf-60b4-455f-9d46-4d9facbc203d','6a308121-6cf9-4384-8446-08182bd669fd',75,70,75,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-2'),
('d349bee8-7a19-4e74-9f6d-64573d815d3e','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',29,26,18,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-8'),
('d349f465-551f-46ae-b369-78ca06874e3b','bbf09810-b890-4a13-968f-4412cec77c61',70,230,103,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.394','745996696-5-2'),
('d34e88fc-bb93-413d-a516-e3943d599b9f','927ceb65-f6d3-4068-b0ea-1412cfd0a754',233,43,60,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-5'),
('d3513b34-ed0d-4980-b693-97f179f644e0','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-23'),
('d3516d07-a35c-4349-b91f-bda6024f89eb','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-10'),
('d35677cd-2a5e-42c4-922f-a00b3f1d0d46','2fb19f98-3e7f-4224-baf7-2836d72e91ba',106,99,75,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-1-7'),
('d356f5ab-e7e6-4d45-9742-70fe85869aae','048fc569-ecd0-444d-b2d3-4f1071fb8463',51,51,77,0,NULL,NULL,'351183541-1-3'),
('d35872b4-3ab2-4d42-828d-dd291596b767','67dba577-f387-4df9-95bd-9cd507ced642',0,0,0,0,'2024-11-02 08:42:46.458','2024-11-09 11:12:25.458','745127322-1-1'),
('d35eb641-fcb2-47b0-87ab-64d7e0b3324a','c98f6188-56c5-4870-be97-be71cf95f62e',88,88,16,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-12'),
('d35f3f0b-8869-40ac-a460-85528aea83c7','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-27'),
('d360b05f-ca4b-453c-afa7-8b9702a16e06','6a2ec622-2e09-4123-a527-4a4179b4fa14',59,72,96,0,'2025-05-14 17:04:00.184','2025-05-21 15:30:12.203','644319069-2-3'),
('d361f1e0-2ae1-469c-a507-e4f7cc6e3715','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',193,135,7,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-152'),
('d365568f-c7da-4f26-8dbc-f2e847b7f9c4','3665a83d-24be-4c54-a88a-abc63e2fa2ec',50,50,76,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-4-3'),
('d36572ce-3ec9-442f-b4a1-781ad992f6b6','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-6'),
('d365e824-d0c5-41de-a6c4-5e7e60d0d3e6','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.744','221341784-1-4'),
('d366d09a-138d-4930-b8b7-71af8ff06638','e178636b-b1d9-4260-aa1b-879946fa7f5d',160,200,3,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-22'),
('d3673935-c2dd-40c4-96c1-0e789a3489d7','55f6b49c-3b1c-4cdc-83c8-9d8baff8ce03',0,0,0,0,'2024-09-28 16:27:29.260','2024-10-08 07:57:43.399','745656343-1-4'),
('d368b479-f301-4747-8501-a24c6c793020','f8d90cf2-88ac-48fb-8de3-6ec17d4df359',47,13,215,0,'2025-09-10 10:50:37.829','2025-09-17 17:51:26.601','478223658-1-1'),
('d3695b43-0b6f-42f6-9a1f-16c404f1120b','5d68c437-9009-4a6b-8910-e785034e1ded',95,212,70,0,'2025-08-25 12:32:01.582','2025-08-30 18:26:03.668','278440694-1-4'),
('d3696cfc-31ee-4b63-a3a9-ae86f952127c','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-19'),
('d36bf115-30f2-4477-911f-47d4e191762f','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-14'),
('d36ddf21-f8a2-4236-8977-46397e9d01df','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',210,25,11,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-59'),
('d36e3b5e-c64e-4a05-857e-701021ff3d61','6226bd29-5d06-4891-9ca0-310e4356024f',51,51,77,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-6'),
('d370a07a-1197-48d6-80d4-38c147a07785','49b0262b-aeb4-40b0-bdcc-b5461a64c972',67,46,21,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-1'),
('d37178a1-f1e7-4232-9d3d-190d960cb3ef','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-232'),
('d3764774-af35-4324-a328-d97924b23758','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',88,62,60,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-33'),
('d3779415-74ca-43a4-9a69-a07ea0b8388f','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-30'),
('d37984b3-72d2-4d6b-a422-16d2f602d841','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-58'),
('d37a4dbf-c9b5-4b83-b02e-4b1d55cd6945','ec048287-78e2-41ed-9182-4554beb97192',97,50,70,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-3-4'),
('d37a5301-6de7-4065-a3b0-6876e18eeb8e','477f5d1d-406c-4147-a6bd-205816f5db0a',0,0,0,0,'2024-09-28 16:27:08.204','2024-10-10 11:34:51.671','982799609-1-2'),
('d37d86ec-20ec-4cd8-99e7-8bd19751a3fc','a21a956a-a1fa-49f8-b944-749b652df74d',0,0,0,0,'2025-03-24 16:02:11.404','2025-04-01 09:23:29.357','745837821-1-3'),
('d37d8934-ddf3-43b1-9ebf-22a8aac27a1a','7012b87f-b3b2-45ee-a901-be79ec1f67d9',96,195,7,0,NULL,NULL,'221407742-1-3'),
('d38039a8-7834-40bb-b43e-24a689c36475','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-3'),
('d385611a-f636-4d2e-8a80-9656b1ffbc42','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-82'),
('d3863331-3a4d-40d6-b0a9-13626f45ab5d','fc4843d8-7733-4186-b9c5-fb1602e2ec64',0,0,0,0,NULL,NULL,'011548428-7-3'),
('d38cc09e-efca-4eee-813c-9fbfdb704814','e2e1bcbe-65c1-4fa4-a6a0-8770dcb1cb67',43,44,79,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-2-3'),
('d38e44f3-0f54-4b8d-b944-b198ad874b5d','bbfd2ee8-8b41-4dad-9b78-8a62e2679cea',60,61,90,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-2-1'),
('d3901994-f697-4069-b17c-f2f7cdc626ec','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-18'),
('d392c688-8f17-493f-b263-a9b16760243d','9cec7784-226a-4c4e-91ef-982823f6722f',100,133,83,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-3-3'),
('d3964b82-f06d-4684-bf0d-f0650107ca99','151c5a73-b234-4d81-a36d-d64f6372c980',58,83,53,0,'2024-09-19 18:27:25.422','2024-09-27 16:39:59.826','98222175-1-4'),
('d397b3fd-561b-4892-b2c5-e589ccfe6939','b754c285-0492-447c-9c5d-43237c2e442e',245,60,97,0,'2025-01-11 15:20:21.030','2025-01-19 14:51:43.991','982817887-2-4'),
('d39cb9b8-978b-496b-8f72-428199817cf0','89b10d5c-c483-44ad-9784-dd0d3532446b',85,14,162,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-4-6'),
('d3a279f0-b806-43e5-b50b-318ba7893819','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-40'),
('d3a3c809-3453-46c1-8aa1-ba445f703fe7','a2d857b1-bcf6-46ee-9e87-dabcdac62719',76,53,101,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-11'),
('d3a478d8-2d08-417d-ba20-02927fae6020','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',100,150,80,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.395','449644504-1-10'),
('d3a7f31b-30f3-4071-a361-1629641788ff','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-40'),
('d3aba2d1-f298-48a9-8e60-9582e8a1ff11','5632f22c-493f-4a5e-afdf-13268c32b047',265,100,65,0,NULL,NULL,'528640995-1-2'),
('d3abda31-b837-42ba-a27e-c689cd24e330','6f39adeb-44e4-441d-991b-695b96264861',49,34,52,0,'2025-10-20 04:18:21.633',NULL,'312422305-3-2'),
('d3af5ff5-81fd-4388-92ef-e484006bec07','e67b1845-0be2-4837-a37f-becbd1706d34',100,123,75,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-6-2'),
('d3ba9e7e-af11-4993-9bcc-54347fb59ada','0ac2a48d-48c9-41d2-91a2-b574a94542b0',57,6,212,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-8'),
('d3bbe2ab-26c2-4a6a-b58e-9598a6cf0bb8','b960ab31-c1e3-421c-b7b3-012a7ab2d040',127,125,6,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-4-2'),
('d3bc78b0-88ba-4668-8cd6-f3b4aae2fe0e','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',31,31,190,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-7'),
('d3c13220-5396-4e9d-a040-8872557c8c70','58cc4f4e-30fd-497f-a627-f4f590c24899',65,57,83,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-2-6'),
('d3c1f2ed-5e54-4fd6-8b1a-21b4429846e5','606c066b-6c9f-4c5a-a289-3e2660cecc37',0,0,0,0,NULL,NULL,'517274063-2-2'),
('d3c2ef85-ea8d-43b0-aecb-7f3f234716f5','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-33'),
('d3c6a652-3af3-4745-bd13-45fc68073703','46d1512a-2bfb-476d-a224-9390f3e194f2',126,55,10,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-33'),
('d3c7370a-25c8-4d41-b5b1-a9f0207b30dd','e89e7d75-4967-4c63-9f73-981469e531af',95,59,9,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-40'),
('d3c823b9-a6d3-4bb3-ad2f-39500317a688','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-4'),
('d3c8ea1b-e583-4987-bb8a-b3de121b115d','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-1'),
('d3c8f2df-c670-4b3d-981e-e50cbac2b0fa','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',19,46,64,0,NULL,NULL,'478739679-3-10'),
('d3c8fbe1-6482-41e3-85b3-9e6fe1adc62d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:05.730','248135683-1-50'),
('d3cc35ae-1e06-49ee-9bd6-56521441575d','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-3'),
('d3cd0282-8901-48b2-9e09-a739398e0dc2','73669d80-682e-4907-9777-0f955189f4bc',230,100,65,0,'2024-03-18 07:30:48.607','2024-03-22 07:34:46.866','501901219-1-5'),
('d3ceee9c-a970-4ca2-848a-4ce16e5a7138','b56e3648-bb0d-4df7-af12-ae3aab1fcca8',70,70,101,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-3-3'),
('d3cf3443-55b2-478b-9f0a-8f81722e567e','ed1855d3-2d98-4083-a304-8244bd80e6a8',77,100,42,0,'2025-04-28 07:40:47.424','2025-05-05 09:10:30.650','8176511-1-3'),
('d3d3163d-81d5-4656-bea2-5d190659675a','b28953a0-e299-48d8-9478-30ea8a1d9210',41,90,20,0,'2025-06-21 04:34:04.432','2025-06-28 16:00:55.750','644716997-2-2'),
('d3d414ca-f29e-4a17-82bb-372a948e1340','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:09.890','248135683-2-80'),
('d3d5c814-8d23-4c94-b304-8cc9d303aefc','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-86'),
('d3db747b-0955-40c2-9fb5-a18f1d1b9b94','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-87'),
('d3db85c7-3020-4d0d-bae6-3ca78b7fc627','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-1'),
('d3dd2c29-f027-40e6-abd0-ae50d7fca8cd','7f36cce6-f7f1-4611-81da-27e098ff6a33',60,60,90,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-2-1'),
('d3df83ba-e7a5-4b51-8b2a-29ae3219229a','f5c772b1-e3ce-47e0-849d-c0b9b36c5c02',93,181,9,0,'2025-05-16 16:33:37.958','2025-05-21 18:42:06.781','371539784-2-3'),
('d3e1ad9f-cf16-4ce3-8847-a7031a69be9d','c557db8e-813f-4118-a776-7fcaab745fff',0,0,0,0,'2025-03-27 08:02:53.352','2025-04-08 15:37:07.395','47855592-1-2'),
('d3e5ce4e-8981-4d80-b58a-63461c4e3343','10f0d294-ecb6-4233-955b-e212fb4511c0',84,58,63,0,'2025-09-26 12:39:43.905','2025-10-10 21:30:12.841','22144793-1-2'),
('d3e6304e-80fb-4b1c-84b9-86803ea71c55','6fcc55d3-2339-4d12-b5e2-e156727c33f9',38,33,185,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.017','412767922-1-13'),
('d3e8b926-a570-410d-872b-afae973fcb2c','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-6'),
('d3ec94af-596f-4303-a32c-f2f5819c110c','c68da11e-578e-4c6c-8afa-d56edaa715f4',40,32,31,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-4-4'),
('d3ed4ba6-b3f5-49c6-a60d-fc5d1b0eb444','52761b62-b6c3-4071-b8ca-91a2938d2743',0,0,0,0,'2024-12-07 09:32:19.692','2024-12-19 09:32:46.035','735442629-1-1'),
('d3f3fcbe-22f1-4b64-afbf-ea67cdeb75ca','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.495','046487702-1-76'),
('d3f94db4-ab05-4ad4-b614-73e9da073249','f4018e81-dfe5-4f02-8ac8-0d56afe9c0c6',196,96,7,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-2-3'),
('d3f9513b-c59e-4334-bfd4-9fd97f99fcb6','22cdb203-e189-4693-adf6-5b2569edda9b',85,75,28,0,'2024-12-28 21:42:24.610','2025-01-07 10:35:32.701','248173138-1-3'),
('d3fad3d3-c652-47d1-8cc1-220b12b234d9','9437e5bc-0bc0-4924-adb6-d303a80c1c2a',97,112,75,0,'2025-09-06 07:20:46.209','2025-09-12 06:52:49.110','598130952-1-1'),
('d3fbefa7-83a4-4a41-bacb-14d622d5959c','632338c1-7da6-421f-99e7-3499262dffe4',86,227,57,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.086','598425779-1-3'),
('d3fcfc4e-b1cd-436d-a5e7-bc681268628a','778a1f21-7000-4e0b-bc4c-8e24c82eca0a',80,80,65,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-4-3'),
('d3fdaad5-25e0-4255-9d69-2f22c2f0b232','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-15'),
('d3ff3601-eb5f-4bab-8c0d-c144901d4541','81b00513-9ac4-4aef-8fee-fb279e70ca3e',80,77,65,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-4'),
('d4018247-6306-4cb3-b6d6-9e2f2131507c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-39'),
('d403b86f-80aa-4bb7-b5df-cad39442e6e4','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',53,53,5,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-12'),
('d403fa21-886b-480b-a200-3e9d0424a530','e98a8dba-7836-4c3e-99ff-5d8e5dd92672',98,170,70,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.714','437250812-4-3'),
('d4040a7f-c72b-44d7-b50e-d9d8dcfa0169','0dc117f7-5e70-4621-87f8-335baf3c4f19',182,195,27,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-1'),
('d405a831-c405-4f5a-b630-9b40b5eb178c','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-2'),
('d4087ac8-215c-40c4-8216-7b2fc6dddabc','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.937','268163356-1-10'),
('d408a339-6964-46e9-b026-a784fb4de0e8','5d45d3b7-ec89-496e-9005-0f361e2b578a',106,106,16,0,'2025-08-14 08:21:34.586','2025-08-25 07:11:01.392','221272241-2-2'),
('d4094e8b-69f4-421a-9887-d282aa806eda','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-219'),
('d40bd0e0-a0f1-4dc8-98ff-1155c9fac0dc','b4f5f7f7-67e7-4052-a423-6c6bcf2257a3',210,80,94,0,'2024-09-06 12:28:22.833','2024-09-12 10:54:24.707','455165840-1-3'),
('d411205a-cbce-4400-8f63-96e7b83e79e4','2b0acf8d-fc6d-4d67-9d78-65615d9ec378',61,85,90,0,'2025-08-22 20:28:39.971','2025-09-03 06:11:50.444','613528305-1-3'),
('d411fd04-5eb8-401c-804f-d6b29563035b','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-57'),
('d412f08c-ef71-49b5-b355-d56fa2433598','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-10'),
('d413f4f1-4fc7-4a39-8219-42f032a049b3','b23cf296-f843-4492-9697-0fd43d657771',152,93,74,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.985','858200454-1-17'),
('d419b85a-b627-4488-8d23-6e048a201759','81d0dc47-7670-4778-9132-e810a9a4d368',41,15,92,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-8'),
('d41bf4a7-3113-476b-b52a-70f1023ab868','0263f7f0-6c1a-4beb-ab78-25d69142647c',57,260,10,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-24'),
('d41f9c5d-a4a9-4971-afba-1e1ccc67cee1','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-49'),
('d422afa8-09a4-47f2-96ae-8063f9bde1f6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-151'),
('d422f49c-c835-4681-97d0-eff95aa668c7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-39'),
('d42356a7-73d7-4091-834a-53d2be225a62','80a4668e-063d-487a-8901-998c7c8fa9fb',93,7,183,0,'2025-08-22 20:28:39.971','2025-09-03 06:11:50.444','613528305-2-2'),
('d424849c-20af-4c96-8627-ed9dcc153c51','4ac8027d-d5db-4a57-916c-23dd357c98aa',6,92,178,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-11'),
('d426bed2-2260-4036-b256-ebf1860a4b8c','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:11.360','248135683-2-66'),
('d428a025-8f49-49b4-b416-29d2df7a53e2','0ea49f4b-5c5b-433d-8eb4-379379e4da2b',0,0,0,0,NULL,NULL,'478778771-1-1'),
('d42f65ac-fe49-46dc-8e22-819beadb3af8','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-17'),
('d430e1a9-fd8c-4117-a887-108026bf11fc','69acd97e-52c0-45ae-adf5-ee013e52776f',76,49,80,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-1'),
('d4311009-c783-4137-a462-5a8649a54389','9a5c9f09-ecda-434f-8efc-112c1bc44fbc',0,0,0,0,'2025-07-08 11:31:05.659','2025-07-25 18:05:09.591','371440688-1-4'),
('d431da57-f73e-4a2a-8ebd-d4a0185110c6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-38'),
('d434027e-a6d1-4184-838b-6454510441aa','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-3'),
('d4365c39-d1a5-48d9-b953-bc08d562569a','8d35edd1-d68f-4751-990b-5502af59bfdf',54,74,100,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-2-3'),
('d4369636-d948-4f0d-a1f5-0c61554214ed','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.140','163229349-1-49'),
('d43950e4-fa1e-49f1-8091-a2293efbcc85','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-21'),
('d43a703a-9f50-47cc-9748-83cef0a4bdaa','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-49'),
('d43c9c57-5a93-4255-9b78-caafbfc6008c','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-8'),
('d43d60a2-5382-488c-a32c-e6a818792ed5','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-25'),
('d43e4a09-3072-40c8-adbe-1930354482f2','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-28'),
('d43eddfb-7ad0-46cd-a691-15458f63ae1f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:12.551','248135683-2-37'),
('d4432e02-ee99-4afc-ae62-796c083f6064','fac0c3c7-d870-4897-a631-62a0ad9bbcfb',123,123,65,0,'2025-09-24 11:01:52.628','2025-10-07 06:17:42.399','745808994-5-3'),
('d444b8d7-d3c3-415f-a3a2-73aa190468ef','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-159'),
('d445681d-4cbd-444c-8173-24b417b545b5','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-145'),
('d449b28a-c62f-4178-a0e6-00e409b5d65c','46d1512a-2bfb-476d-a224-9390f3e194f2',38,30,20,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-34'),
('d44e35a3-fb37-4ef5-8a09-af56184f57ee','55155cc4-3303-4c8d-8138-cd049d9c0cad',78,28,205,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-14'),
('d451b3a5-efd6-4bba-a43e-e8737c65a5e8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-1'),
('d45299a5-221c-41c9-86bb-69d609339be3','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-9'),
('d4549e0e-29e0-4af7-b633-e168a7e805bf','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-26'),
('d4584600-e9b1-42d0-88a8-5abdb7af4981','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,40,60,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-69'),
('d4594722-1d7b-438d-8f7c-642304e42111','527ed217-6d76-4ec9-b760-807ad00b847a',54,73,100,0,'2025-10-02 11:20:41.358','2025-10-16 16:43:50.653','910482480-1-2'),
('d4604cb1-d451-4695-9cd4-1121eeaad82b','3e02ce04-172b-4192-bb9f-c68025b0f1da',20,10,235,0,'2025-10-22 13:07:10.126',NULL,'644312365-2-1'),
('d4613586-b400-4ad5-9e18-c39fb0ca6155','8ae18186-b64f-4b09-b81f-8095d536895f',96,198,8,0,'2024-11-02 08:42:37.112','2024-11-09 18:54:07.488','449962472-1-1'),
('d463b777-45b3-4083-a5cc-87eb330675d9','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-86'),
('d46416f4-ad01-4cbd-ad75-cd45d96d312a','109642dc-0833-423c-9fee-ee29a1e3c5a9',97,188,7,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-1-3'),
('d46cdc01-bfb2-48cb-b1c7-394f0935d74b','661b31b6-5864-4d50-94ae-a24ef9908dbb',111,111,80,0,'2025-08-15 15:03:03.937','2025-08-21 06:44:20.213','478777541-1-6'),
('d473de77-42ad-4e21-b3e2-98aa36b63816','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-8'),
('d477f453-866a-4922-b5d5-01df1937641b','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',57,83,101,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-1'),
('d47a3cd4-60f1-48af-b7d1-0488ce633cc2','a355d7a8-930d-4829-b2b0-1688db90a2ba',7,102,202,0,NULL,NULL,'786156168-2-3'),
('d47b1fad-3429-4fb1-a9ed-251a4705f20d','6588ed6d-edc3-4416-a491-7dd64da792c9',75,94,135,0,NULL,NULL,'371215833-2-4'),
('d47b38f2-9c03-4ab1-8565-92cc717f1291','0756d756-3ebb-46ec-bf88-18b98d2e8a63',84,84,53,0,NULL,NULL,'011548428-2-4'),
('d47fda70-1405-4279-8523-4f15edbd2509','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-77'),
('d48090ca-0da7-4880-be4b-77ecbb58ee3e','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-1'),
('d4869ff8-05ae-4c9b-83a9-5f02db342f2c','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-88'),
('d488bdbe-762c-477f-810b-f801880b5ffa','63054e67-332e-4621-a667-d29655c84707',0,0,0,0,'2024-09-10 10:47:02.381','2024-09-17 14:38:37.099','248573438-1-4'),
('d4892423-5a0b-4168-ab41-7fda54979a86','546ad3d0-25c2-43dd-9443-e48b8e5b6530',20,195,4,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-24'),
('d48c5069-482b-4b94-9f9f-c7972e34d325','e35b3fa1-a894-4ca6-acd1-0e3e4568c63d',51,51,43,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-4-2'),
('d48e3df7-034f-4c92-bc60-739770b87dcc','a58083af-7318-407b-8b4f-1165eecb73fa',65,65,85,0,NULL,NULL,'644495739-4-8'),
('d48f44f8-cc3e-46b7-80af-b32469e73dd8','b698562e-f03d-45ef-b2ac-535d8edcf5c4',58,71,100,0,'2025-09-12 17:16:33.587','2025-09-26 07:08:03.152','745177264-3-5'),
('d490b5f5-80ca-47b3-b8ef-fb507cbd95f2','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',57,83,101,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-3'),
('d491bc8a-937a-40b3-ae50-ed88bb68fbb3','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-8'),
('d493008d-54ae-4c13-bdfa-6fc3d2a697a1','e7f31a78-648d-4a5e-9111-1bf7db38dd79',147,55,7,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-29'),
('d496248e-cd10-47a1-8600-f6ccc75095e2','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',150,120,150,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-26'),
('d4972851-074d-4e3d-99e9-055ceed03236','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-24'),
('d49990cb-d518-4593-b86e-19ad289a8d0c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-141'),
('d49e58c7-ebaf-48b8-8370-9f7adfef611c','0009aeec-e682-465c-b701-363a3ef377a6',50,35,35,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-74'),
('d4a20c44-3621-48f7-b4ad-90fd4b551c93','8e39c973-c918-4ebc-bd24-9e7fc61de240',70,90,3,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-10'),
('d4a272dc-e5c8-4bc3-8fe8-37b388fc1522','f7c2aa49-f28b-4d98-9cd4-72731d30e9c5',0,0,0,0,'2024-05-08 18:43:09.182','2024-05-24 07:07:55.937','268163356-1-6'),
('d4a2f701-bc50-4e72-8b70-0198f84d2824','c2e59836-c823-41bf-b343-b3df9dfc91f8',65,75,10,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.408','465500768-1-10'),
('d4a50ae1-1a4f-4c14-8a48-47374f78c80d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:06.216','248135683-1-151'),
('d4a5bc07-cb38-4525-9ab9-924a82c45594','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-38'),
('d4a63ed4-c9ec-40d1-b8a4-bf70409794d4','41111b99-4330-4fbd-b14b-1061f0a8a390',52,92,75,0,'2025-10-02 11:20:39.275','2025-10-15 20:06:33.336','221282484-1-2'),
('d4a67dec-7f6c-427f-b86a-6d21f84769a7','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',94,90,70,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-1'),
('d4a769dd-6ed7-47da-be7f-4c1ca8c41a4b','8b9be79c-034c-4491-9980-ad94bae49b22',80,70,70,0,NULL,NULL,'501873907-1-9'),
('d4ab7c0c-b0e6-4794-bede-74bbd927f626','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-16'),
('d4b2a91e-1734-4715-890c-2f9d9e6d2044','01db3b45-741b-40a3-890d-f412f526963b',196,6,96,0,NULL,NULL,'221763224-1-2'),
('d4b3050e-a029-4bc4-8693-0a4d83f2276d','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-112'),
('d4ba1048-0f96-4c45-8cd7-7c5db3325b03','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-3'),
('d4bb1933-bf83-4eb8-a66f-dabcc513070b','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.482','248707022-1-13'),
('d4bd8b08-5c71-4aaa-affe-69157c086ace','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-10'),
('d4be5d7c-a738-4115-8f2d-db6b1ca8bae5','a5506c59-0e9f-48a6-9b69-13a5163cf994',205,67,45,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-14'),
('d4c22186-4393-4b65-8e14-4b940592c25e','c57b0a67-4926-4770-8317-0fdee56c0abc',0,0,0,0,'2025-01-26 10:54:17.305','2025-02-10 14:16:49.589','248746531-1-2'),
('d4c4308e-8409-4c07-90df-bbcab9804b70','73499d6d-d2d9-4c76-9e89-9c775fadaada',114,83,43,0,'2025-03-27 08:02:49.277','2025-04-08 15:37:20.028','81723596-1-2'),
('d4c5e662-fe75-4b2b-bbb0-027cb28d7484','eb595077-3d3b-4838-8e5a-3aa9e1497c48',188,65,49,0,'2024-12-28 21:42:26.877','2025-01-06 20:09:31.662','449393754-1-1'),
('d4c89a27-29da-46b8-87c6-c60ecb8cb3e4','b5dcd6f3-d8a5-4252-97a7-d791ba82e336',122,159,6,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-3-1'),
('d4c970be-1cb3-4f85-b4d0-260a7e74dede','8c3a9387-2db4-400b-95fa-11aef6c745f6',206,80,2,0,'2024-08-21 14:53:24.604','2024-08-31 08:01:45.893','501766543-1-17'),
('d4cad94a-08e4-40a3-9a49-11043f5e9998','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-45'),
('d4cdfdae-8945-427e-99f7-59ba247ce40b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:07.364','248135683-1-37'),
('d4ce5887-5c13-4dc6-b62f-9cc9061f227f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-21'),
('d4d2d00e-779c-4368-9025-938a7641b1a6','90be6683-192d-40f1-b3bd-fc6bba665fa2',0,0,0,0,'2025-05-09 18:43:52.715','2025-05-21 08:16:54.198','745817440-2-10'),
('d4d68e9b-efab-4f6f-a68b-87e2a457f3ce','f88c3e53-b711-4bcb-aa3d-9543580054cd',227,94,63,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.307','107623614-1-30'),
('d4d84450-2a9b-4513-b924-d61baece977a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-57'),
('d4ddf241-391c-4711-9c3d-72925e5995a1','158455d3-2130-4d98-9534-cb36e6c15df9',85,50,15,0,'2024-10-23 14:11:45.969','2024-10-30 18:10:11.200','61480625-1-3'),
('d4df7b54-051a-4872-ae3e-b81960defd62','3eee5b92-2a7f-4edf-af88-5ad493656745',80,70,90,0,'2025-10-25 08:58:56.097',NULL,'486741087-1-3'),
('d4e15d4a-7085-4517-9e5f-17742c1f2f42','b1e78900-6d6d-4a9b-b697-4622b372f80f',51,51,77,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-3-2'),
('d4e1b271-44ff-45d3-8056-1e3f67dc526a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-237'),
('d4e1d222-272b-49be-9784-79f1ead884a2','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-44'),
('d4e65b5b-4e28-4e28-9753-6a83ccbe3607','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-23'),
('d4e7906f-f889-4a3c-a86c-9e4d2527e887','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-221'),
('d4e90373-b4f5-426c-a7f8-ad7d0e73b7b0','8e39c973-c918-4ebc-bd24-9e7fc61de240',200,58,1,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-11'),
('d4e923fa-d901-43ee-83d8-5c5e60388716','35108694-a340-4204-a046-217b0f92915a',38,24,131,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-1-4'),
('d4edc342-b80b-4614-b3b4-b6176a1b497e','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-10'),
('d4f17284-4126-4a94-9625-1e043cdf8897','14fb0987-4091-41ac-acc5-918b7d5ce9a3',33,33,200,0,NULL,NULL,'371216639-1-4'),
('d4f385d6-8e80-4887-8284-def951926f8f','6ec87888-8b87-4bf1-adae-d5b6742225d9',23,39,86,0,'2025-10-14 09:22:15.247','2025-10-23 06:19:40.265','478164511-2-2'),
('d4f5649e-f52b-4a4f-85a9-28000ff069d3','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-6'),
('d4f5b59e-f3e5-45cc-a692-762f24f05256','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-13'),
('d4f96f88-131a-4e48-aa4b-6be7e52562df','8deacde5-3bb8-4300-9f05-ea02527065c5',81,26,204,0,NULL,NULL,'449181756-1-3'),
('d4f98114-b25d-4f8d-b1de-5d1653aa75b0','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-25'),
('d4fbbb9e-54bd-49b9-b64e-25a85f15d6ab','6fcd8160-ca06-46ab-a691-51de5c394793',59,14,181,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-23'),
('d5016ecb-2010-492d-98e1-1a1fce34c535','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-34'),
('d50216ee-8901-4e95-a37a-ca0838e13ce8','ec368b6d-2af5-4b61-bc86-98e5f6ec4ed8',90,100,85,0,'2025-08-14 10:05:25.550','2025-08-27 19:34:48.194','437700144-1-2'),
('d50aef4c-2fc6-43ec-bcee-cce06d9ceb62','3badfe11-f9f9-4b71-919e-3999791add02',63,65,86,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-1-4'),
('d50f009b-d84d-400e-8479-65bd33a06b84','4ed838d2-71d3-4d84-a945-0e0075c5f9fc',51,51,77,0,'2025-07-08 11:31:25.721','2025-07-21 14:11:19.708','675951028-1-2'),
('d5107c48-73c8-4809-aae8-994ce656a989','9a16eb49-26d3-4e07-a503-649c789c7f9b',70,96,186,0,NULL,NULL,'019225297-1-1'),
('d5120159-7f98-453e-8f3b-7f6959bd359f','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-11'),
('d51352a1-83f0-46ba-9736-736945cb06ea','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-5'),
('d5139821-5c5a-403c-bb33-3436e82585a0','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-5'),
('d5180b8f-be30-43b4-9706-128672557da2','6cee1429-9935-4eae-be32-dc630b6d70e8',120,95,70,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-35'),
('d519babd-e0ba-49e1-bbd9-2be7e38540b5','ef0f1181-3c3f-4dc6-8245-bb89aec09c30',75,94,94,0,'2025-05-14 17:03:46.983','2025-05-24 17:55:04.433','371804669-1-3'),
('d51a539f-7c79-4fa3-8a46-2cb9a47c6e91','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-42'),
('d51b058e-6f59-42e9-bfac-6a3d352d98e0','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-6'),
('d51b2d04-8906-4812-9513-9469135e4594','bf560fb2-0b91-485a-bf70-cae59896df3f',60,12,41,0,'2024-10-23 14:11:30.428','2024-10-30 11:04:20.667','50133574-1-6'),
('d51c50e7-21ef-493e-80b2-6c3b3b76e456','42d4331a-0080-4fca-8777-5a26c0e34df6',230,94,70,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.158','644711459-2-2'),
('d51db96a-0497-4f79-a148-c5dcbe109a22','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-18'),
('d51e569c-1ea9-405e-91e5-cc93bc67255d','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-5'),
('d52062a4-ffd6-45ca-878f-6be48878459a','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.821','223853931-1-48'),
('d52240a0-e945-4fd5-a087-305fadfe30d8','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-29'),
('d5225990-7a9b-4af4-87cf-be565a98667f','cbf92ce2-bacc-47f0-8a68-f0956669636e',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-4-1'),
('d52318c1-e057-4f0a-8fb9-f164dae2480a','0e92c59b-93d0-4308-91ce-3965bb186203',185,96,9,0,NULL,NULL,'428180919-1-7'),
('d527bfe0-b124-462b-aa23-b11cb54eb43d','6cee1429-9935-4eae-be32-dc630b6d70e8',200,100,28,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-36'),
('d52a7c87-82e0-46ba-85a3-6c5e6486f6b7','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-89'),
('d52c6c5c-d35f-417c-8a2b-6ebcc16b100c','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-4'),
('d52d5c61-b3cd-4ccd-95bd-8fd811f98fe4','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',57,6,208,0,'2025-09-01 11:06:02.351','2025-09-09 12:49:41.764','745873539-2-10'),
('d52e259e-62c4-4b17-9f20-6aa0188a6763','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-4'),
('d5318cbe-7ecb-4aff-9b69-c56ae1865c45','e89e7d75-4967-4c63-9f73-981469e531af',55,102,97,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-41'),
('d532475d-587a-4926-af41-79f9b45bc831','a1cd1c1a-930b-4527-9f89-812389e0038c',100,200,8,0,'2025-10-14 09:22:28.595','2025-10-25 09:00:46.788','842151692-3-4'),
('d5334a93-c7a6-4339-97c6-b17e00141be6','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',110,120,40,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-5'),
('d533c063-4901-49d8-8e4c-354678df9a2f','6098bfd6-9976-47f8-a799-df79295948c1',43,47,5,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-11'),
('d534933f-2f6f-4d32-959f-3078d7f10503','b90e2378-08a9-41c5-ace0-0fdeb3d1f8ed',0,0,0,0,'2025-02-18 16:37:06.923','2025-02-27 16:38:40.670','412241218-1-6'),
('d5351ac2-7087-4ad8-9d3c-c506598a2b33','12a4b68e-a96e-444c-b55b-5688b36532fa',83,57,100,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-2-2'),
('d536ed2e-8678-4e6c-a6c3-453b41b7302a','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-30'),
('d5372aa3-a184-42ff-a2f4-015075b34f75','0009aeec-e682-465c-b701-363a3ef377a6',80,70,70,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-75'),
('d5374e10-ce0e-4997-999f-229a8c817b28','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-4'),
('d53884d7-1c40-401f-aadb-0faae349c02d','646ed6b3-722f-4d60-9a63-564fc0e1d364',0,0,0,0,'2025-05-09 18:43:38.267','2025-05-22 15:23:16.748','745865715-2-3'),
('d53c1288-7baf-47f2-9788-f9c13335a974','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-11'),
('d540e730-2400-4e14-8022-797930bc9eec','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-39'),
('d541f11e-a62f-483f-a513-040cb4689633','1dff9484-7b74-4dd3-bde2-e304e871a006',115,57,70,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-8'),
('d54235a8-ea4c-46ef-8290-45b27dcd4356','470029a1-7c37-4412-be9f-8cae8a661f11',0,0,0,0,NULL,NULL,'644667834-2-1'),
('d5428172-8511-43dd-b3b8-1140c747ece3','11685268-d8ee-4474-adbb-41d1ceac04e0',107,70,108,0,'2024-09-10 10:47:00.013','2024-09-18 16:13:00.028','52817450-1-1'),
('d543fd7d-fdd2-430b-9cb6-bd75afa2ad3b','189b9e28-3fea-4905-9c4f-022b3f29043d',100,173,65,0,'2025-10-08 17:43:34.937','2025-10-17 06:14:56.162','531629494-1-4'),
('d546cb76-4305-4e34-8f78-7f40d8ee5cf2','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-9'),
('d547ced9-d1ea-4434-8566-93289ebe1afe','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-34'),
('d54a6f46-a5b1-4a01-aeec-9cc0018d6cc2','b8f4daca-0289-4a61-84eb-ddbde1849b43',70,101,67,0,NULL,NULL,'613868869-4-2'),
('d54b1010-e352-4d68-8326-b865963d362e','df476668-960e-4ca2-9fb7-82b6c48ec5bd',70,75,80,0,'2025-08-14 08:21:40.648','2025-08-21 08:14:02.400','982720250-2-3'),
('d54b7b2c-c1f1-4744-bc2a-22aa8ed94236','4e9b1219-3006-400c-b048-bd8852cf7690',93,70,240,0,'2025-10-08 17:43:55.637','2025-10-17 20:57:44.720','750355737-2-1'),
('d550a322-7139-442f-a5c0-31c42083f91c','6c41692f-48c1-489b-ab41-f12954fafe5d',85,100,53,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-1-3'),
('d552fdab-076a-4d51-a8ee-bbbc06844d9e','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-6'),
('d554233f-4ebc-45ec-b632-bdd5936a5de2','065a4131-ff13-4bb8-8bf0-5263586379b6',0,0,0,0,'2025-05-09 18:44:19.477','2025-05-19 20:26:32.652','371785400-1-2'),
('d55456f3-b73e-447d-98c7-981f6050e1b5','b38439c3-7c7e-4298-a4cc-7ebfb427f502',160,200,29,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-5-3'),
('d554d044-ab87-4b71-85da-266dc726f4ad','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-41'),
('d5573209-d637-4fd8-9653-7f41bef618d1','9f253cf4-84f9-4919-a792-66640cc2f4c6',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-6-1'),
('d558cea2-dc92-4cb5-b85c-4163d8b94944','280aa08f-620e-4d2d-a959-f7b298499b3d',40,31,31,0,'2024-10-25 11:54:28.142','2024-10-31 07:50:27.640','910163142-1-3'),
('d55bd9aa-f328-4dbd-8a1f-dae7ebba633e','766da20f-af1c-47a1-a9d1-61d9a22c827f',65,55,100,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.878','613809111-1-2'),
('d55f4d13-7283-422f-afdb-b4faf8aa87cc','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-49'),
('d55fd35e-ccd2-40af-9d3b-fd967b16c5a2','08af242e-dc62-496d-980d-0f589dcdea60',81,6,162,0,'2025-04-30 14:29:08.550','2025-05-13 09:05:45.760','412913992-1-4'),
('d563ee48-3a79-4a26-8eeb-72de11076ee9','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.591','371716908-3-6'),
('d5659e5b-8e1d-41d7-a4e2-bc8ae6d2029e','6baa9fe9-382e-444e-8d08-03d6a1a14ee7',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-3-6'),
('d56733b7-0f70-4724-a664-793976429565','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',70,48,15,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-29'),
('d567cc9d-4ef5-4f29-bf4e-f99aedef37c9','c8865b3c-84ce-4533-969d-adad8a2a1636',0,0,0,0,NULL,NULL,'371747945-1-3'),
('d56a92fc-2260-48bc-acec-7da199ba4812','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',94,94,63,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.175','817317858-1-4'),
('d56d1f78-4846-431b-821f-6d555bfb47ea','af69c5a3-87d3-4548-a650-720b69a4fc69',80,205,5,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-40'),
('d56dbab7-e53f-4dbd-a3b9-b900dd919c87','c86269db-8ff1-458d-8f73-ecc40c58cc09',52,77,101,0,'2025-09-11 06:34:28.436','2025-09-19 12:35:14.905','437707209-3-3'),
('d56fb26e-3b73-4b79-9947-b56a36dbaf87','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-9'),
('d56ff173-760e-4917-8b75-1a12d9d7de1f','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',51,51,77,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-10'),
('d573dcd4-dde7-4b2c-ac22-49223dd1ae9a','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-70'),
('d57429ad-8b41-4845-940b-71c20ef3541c','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-6'),
('d5762c46-511c-48a5-bf22-eb6d42b0a284','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-7'),
('d576c101-35c7-4646-a50c-82f33a289a23','98ed0c79-4eb0-4d2e-8016-7319028da995',58,86,110,0,NULL,NULL,'745505506-2-2'),
('d579bae4-c53d-489e-b02b-ef9eca04a6df','b2cc240f-bde3-400a-bbec-a61085853dd5',93,55,101,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.693','478867058-3-12'),
('d579e1b8-d28e-4b9c-8033-d7ce0bbe04b0','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.324','73547719-1-6'),
('d57e8d78-3ae2-4c69-bcc9-0c8e99a14182','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-222'),
('d580819f-f757-4bc3-ae70-71c9ee728556','61557b6b-0b26-45ed-a3c0-a245ea1dc158',230,110,86,0,'2024-08-07 15:02:47.801','2024-08-16 19:22:01.168','614908568-1-5'),
('d586e486-8801-48db-9c34-00537cc29c3d','f3d50b35-2f52-4ebf-8cc0-0cc77835375a',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-4-2'),
('d58a05f1-726c-4ae0-ac6d-bb0d7816a3cc','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.991','478644410-1-4'),
('d58a690a-c82e-4f9e-a026-4ff23c2b5c2f','66f8d34c-0c41-46f5-98bb-500adbb6f636',43,4,211,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-21'),
('d58bdfdb-e5db-4c24-86ac-5badbdb897f2','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-136'),
('d58c2b99-dd0a-4c24-95ab-90bfb08bd6ba','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-14'),
('d58c2c8e-6b63-4bc4-a2c3-a13166997e56','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-46'),
('d58e3658-6bce-4214-8269-e622f6b0cb3f','8707d5ec-fbe7-4f6b-8037-53e3bdc9e2c7',51,51,62,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-3-3'),
('d5941de0-2cf4-48cd-a9e1-59fee66d48f2','4b7d844c-2267-4af1-a242-7783f63d638a',93,93,70,0,NULL,NULL,'644234384-1-2'),
('d5947337-51d3-48ca-aa84-b6561b0e2dae','8625abf2-719d-4d7f-b206-16948b318b8b',70,10,10,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-25'),
('d594f846-bf2a-4656-a500-251e10cb9917','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.465','2025-01-19 14:51:52.810','478900175-1-5'),
('d5969de1-7a84-4c35-88f1-2f598c4d6cdb','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-11'),
('d599841a-d2e1-408a-a0e2-6c28a975402e','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-8'),
('d59cedf7-6ecc-45e0-b56b-99fb2882c941','3e68a7e1-b64d-4ae8-830f-cb72c4eec04f',52,36,70,0,'2025-10-09 08:39:52.751',NULL,'011940661-2-1'),
('d59dbdb3-6d52-4011-8729-55a97f8525ae','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',148,58,6,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-10'),
('d59dc645-cb96-4831-94aa-bc82a38897da','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.140','163229349-1-50'),
('d5a78dfd-433b-4f1b-91ba-b9d06e905ddd','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-10'),
('d5a795dd-949d-40cf-99eb-42ba5618e22d','92a145d8-7167-461b-8674-419e94785674',0,0,0,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-6'),
('d5a90c2c-8f9f-4aa8-84a0-398e2274829f','e000a722-b26c-4d4d-be3b-21152639dfc1',0,0,0,0,'2025-09-24 08:02:18.030','2025-10-05 12:16:14.638','248158562-1-5'),
('d5ace755-1388-45d1-8dd8-77b4fffc689b','9d081d24-06c5-4cee-b0ab-52ddef98e867',92,7,52,0,'2024-12-28 21:42:23.524','2025-01-07 10:35:37.747','501247386-1-4'),
('d5b4c711-fa06-44ca-ae32-181cb772459e','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-20'),
('d5b77984-12cf-47cc-b756-4a61b31d2715','8f72b70b-7145-4d62-a9c5-ef581e128182',39,58,28,0,'2025-08-25 12:32:06.771','2025-09-04 21:04:10.230','221254389-2-2'),
('d5b8789f-6a67-4696-a519-c7545f2b41f3','b4f5f7f7-67e7-4052-a423-6c6bcf2257a3',92,80,86,0,'2024-09-06 12:28:22.833','2024-09-12 10:54:24.707','455165840-1-4'),
('d5b9ca99-0c21-4f7d-a48d-e6239fcd6673','0946c018-5896-43db-97d4-34199264b7d9',245,70,105,0,'2025-10-02 06:45:24.857','2025-10-14 05:37:27.070','428696149-1-5'),
('d5baa04e-ad13-48c4-ad34-a3471589eed5','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-5'),
('d5bb6d2a-95e5-45a4-b1ab-d24099eafcf4','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-100'),
('d5bbcb09-d897-4b3f-85c0-d9ee2090d8d6','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.361','2024-04-17 10:16:12.696','248435862-1-18'),
('d5bc421c-3351-4fac-a51a-01ae0c3b0f68','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-7'),
('d5bc4ca9-e31e-413f-a354-f36f6a4df393','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-6'),
('d5becf7c-1e61-4ea0-bed7-99e2764c2334','33cb1351-2b76-4ba7-b693-d1585dbb1338',60,40,105,0,'2025-10-20 07:18:02.414',NULL,'817682643-3-2'),
('d5bf5aa8-ed82-42e3-ac96-a798ffd66365','35822066-f6a1-4175-834c-d91d818c9576',96,136,7,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.565','221345365-1-2'),
('d5c13f65-1851-4ecb-b8d6-ead242aa2409','b5639e6d-c9ce-444e-82df-307a0c24e183',0,0,0,0,'2024-05-08 18:43:14.487','2024-05-23 08:25:05.126','478805224-1-1'),
('d5c14164-abd2-4896-b920-7b0c533025af','c512880f-476f-401f-801a-a1fa72ec0ad0',111,92,12,0,NULL,NULL,'478892203-4-4'),
('d5c50713-b922-4d8b-9fde-a78c43f408cf','7d75236b-0ffb-4e2a-9b72-d8f6af6680ca',75,75,75,0,'2024-03-14 13:50:24.592','2024-03-22 10:14:41.903','982744560-1-4'),
('d5c59fb7-8813-4872-89ce-983a8677dbf0','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-67'),
('d5c6ff12-5cd9-4db0-8b23-bf95df31c632','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.991','478644410-1-2'),
('d5c86c6a-266b-4950-b788-8e307d039247','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:50.073','248284003-1-175'),
('d5c9be2e-1a31-4e0b-b0ab-3e0fbedea574','49c326ab-5b3b-49e7-a781-28760709b5be',51,50,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-16'),
('d5cb6e5a-3b45-4612-869b-b2bc19c6803b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.303','223444495-1-53'),
('d5cc03ad-dc60-4764-b13f-02f1a9e97d0c','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',240,94,68,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-29'),
('d5cc8a29-43d0-4786-8387-f089af396691','57ef4979-842b-4b07-84ef-752e1f28ee7d',28,102,200,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-1-3'),
('d5cde70f-1f25-4d46-b8dd-8addefdd4970','9e9d8510-86a5-49dc-924c-9ab30e855883',106,106,75,0,'2025-10-02 11:20:43.409','2025-10-17 06:16:56.789','976185606-1-4'),
('d5cfc446-964e-416d-b827-4f2aeedbf334','4b4ceb1e-c1bc-4beb-83d6-ea5494956958',89,12,172,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.873','46558561-2-10'),
('d5cfd788-c847-4def-b61c-510b3df6a238','1b54b52d-74d2-4b3c-bd64-5cd7ddf73cec',70,56,101,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-2-2'),
('d5d10355-5dc7-46ae-b3d3-615226518df9','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-4'),
('d5d11b82-a42e-4fe9-860d-7e3c8b343f8f','ff7a7a58-3e7d-46f0-851e-7a15e0f7a061',32,14,80,0,NULL,NULL,'478514572-3-3'),
('d5d1c28f-7a21-4e95-addf-b5ac03e6f13f','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-3'),
('d5d24ac9-ae86-438d-bfae-9ea58f2b6bf7','b3fb10c2-6a6c-41fc-a7eb-4920e6e670be',0,0,0,0,'2024-05-10 18:49:56.165','2024-06-04 14:25:40.001','478958320-1-5'),
('d5dc5dc8-cf68-4692-84f2-cff9089f9b17','42ef4d8b-8548-4e28-8dc4-0632930c5828',40,45,50,0,'2025-08-21 07:15:19.484','2025-09-03 19:36:18.881','437786734-1-2'),
('d5dfc5d6-588b-4f9f-92db-5f3c75378ba7','d3c3d137-f31d-4357-958b-af365fcd9dce',81,78,100,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-5'),
('d5e309dc-e70a-4866-af9e-44d6eac5c041','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-30'),
('d5e4c4f8-c4e4-427c-a7b4-db28535daca0','3f9da6c4-f38e-4cbe-8228-dbd5aa3c016a',0,0,0,0,'2025-04-11 13:41:18.139','2025-04-28 11:58:38.030','221106888-1-3'),
('d5e97e2b-bc72-44c3-a94b-790a7ee39139','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-2-2'),
('d5eb67dc-56b0-4bee-b9a9-b596e95e8c88','ade702d6-cdc0-4186-ba85-c931b77bcd17',223,105,6,0,NULL,NULL,'613592756-4-2'),
('d5ec0520-7945-4832-b520-f482b663f590','056a9790-92fc-4518-aea0-4e028de531b0',220,103,38,0,'2025-08-07 16:52:37.616','2025-08-21 08:12:52.703','437313362-1-4'),
('d5eef3c8-d829-4966-9350-d53b985f1608','7657b93a-6861-440c-ac4e-1ea2919764f2',72,101,52,0,'2025-01-06 13:08:06.896','2025-01-13 07:51:03.908','26896907-1-1'),
('d5f0b40d-ef95-45b1-b808-198a11e011a5','8e4621f8-e2f6-4c06-a542-51aea08e56af',100,110,70,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-3-3'),
('d5f0cd3a-eb94-4638-99d2-4484702d3d2c','378dc493-c6a4-4c83-98e1-1832a246c86e',96,199,7,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-1-3'),
('d5f124ab-184b-49e4-945d-09fac287375a','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-28'),
('d5f25c38-5257-442a-aa5f-94922be3a0fd','8e61c899-09db-407c-9715-f3b856731f08',51,51,77,0,'2025-10-25 08:58:56.097',NULL,'486741087-2-4'),
('d5fb1e05-286f-4fe5-ac4a-7f647357ed3f','73f30d95-fa52-46a8-905d-f43787819577',51,51,76,0,'2025-05-23 14:05:51.180','2025-06-03 18:26:58.008','644650618-3-2'),
('d5ffdd9c-9e15-4152-9d02-bee897f122c7','fac0c3c7-d870-4897-a631-62a0ad9bbcfb',100,54,50,0,'2025-09-24 11:01:52.628','2025-10-07 06:17:42.399','745808994-5-4'),
('d600a4f4-e8d9-41e1-91c3-ffab24cf108c','935af86a-a819-46c9-a98a-5fafcca8b463',160,200,30,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-3-1'),
('d603effc-7474-4f7c-bd39-454c2cd4ee8c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.630','41246036-1-58'),
('d606b898-4337-4a1c-9f93-5d4ea4f3549d','507b9bbe-ef2a-4a95-a25c-ea392d3d95e1',240,70,100,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-3-4'),
('d607478f-c904-4555-9eae-ba3d58e0d367','83e81175-cef2-4f5e-adbe-8ca02a747efd',14,42,201,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.948','478687899-1-12'),
('d6076255-ab2b-43bc-8de7-f3600af29294','10b7216f-e5f9-4de9-b36d-c05d44e9b3a3',57,76,101,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-1-3'),
('d60c6da8-b436-496d-bf1d-6353ce28e32e','bd19b448-d5df-4f2c-bacb-4f45d6ea0ce9',100,179,12,0,'2025-10-06 07:10:20.821','2025-10-17 06:12:44.721','598131456-1-3'),
('d60db589-5fb8-4a4e-93e5-2da9e19dfec4','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-8'),
('d60f2d5e-2f7a-4f6d-ace2-e3e27e281704','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-40'),
('d60f671c-7c28-4463-8379-5fee330360aa','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-11'),
('d60fdcf0-a1f4-4046-abe1-91876a6977a9','0602416a-017d-4286-844a-6bc37caa79a8',23,46,202,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-7'),
('d6101a9f-a418-49e7-b178-21e042586897','349275ec-e320-40aa-a5b5-1c57b1cf65f0',51,51,77,0,'2025-10-22 13:07:06.149',NULL,'505724535-2-3'),
('d610b116-b1f2-4048-bc98-ff3569cd991b','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-7'),
('d612d7ad-008e-489e-aefc-436278759dcd','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-59'),
('d6131137-97cf-4531-9f6f-67ac9d21ef2f','c3d0ff20-91e1-44ac-afa5-c3dd3f70c550',80,104,96,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.127','428653750-2-4'),
('d615114c-40c7-4032-bfd7-f63c952245e4','1dff9484-7b74-4dd3-bde2-e304e871a006',99,18,13,0,'2024-08-20 19:22:24.330','2024-09-04 07:29:55.477','449780250-1-9'),
('d61d2ac3-b676-44f6-aee9-c6996d99216e','ae2f16d8-65e8-4efb-b2a7-26877719b20a',44,209,6,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-4-9'),
('d6202008-8d6d-407a-9032-1a4694547be4','a5acb255-ac93-4787-ba1d-85dba2a83a25',240,70,100,0,'2024-12-23 12:00:19.041','2025-01-09 13:53:41.050','73427297-1-1'),
('d624ef20-de3e-4647-bb1c-1530262bc6e5','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-65'),
('d625c516-4e4b-4286-a14b-120aca1da1bb','d2deeb01-cbb5-46b5-a5f5-023f8cc21549',30,198,91,0,'2024-12-28 21:42:18.051','2025-01-07 17:28:42.441','614200423-3-2'),
('d6267ae9-3428-443a-9e09-6b3a406b163f','05e7d8d7-4b08-4d26-aa64-e3a0bd2168c2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.767','478185886-1-3'),
('d62815d9-46ee-4b9e-9d27-ffd262ce3deb','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-52'),
('d62a41ad-9775-4bc0-8d42-5a900dcb2faa','35f2a33e-b201-4279-b8cb-8deee264e5ac',82,109,55,0,'2025-10-14 09:22:22.488','2025-10-25 09:00:18.615','011804405-1-3'),
('d632f1fd-82bf-41bd-82b0-69db60044575','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',95,95,73,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-1'),
('d634b2e0-794c-46c9-bba0-407a2935a937','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',95,61,75,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-6'),
('d6358551-bc20-44a0-9dfd-15e5846eb556','89054cd3-6702-45df-aaed-cce37ad10d39',80,99,122,0,'2025-04-30 14:29:12.351','2025-05-13 09:05:13.396','531724547-1-1'),
('d63673b6-5b71-4b9c-90a0-fccf0520b6f9','c231de82-1158-487a-9949-2da564ad0152',51,51,77,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-3-2'),
('d6381678-cff6-4299-82e9-dc5e25805c5a','ff372732-deea-41b0-b130-7636de548bef',0,0,0,0,'2025-09-06 07:20:20.393','2025-09-16 06:34:16.662','745282619-2-1'),
('d6394dcc-8700-4f28-b15f-dcb6ce80a9f4','6920e5cb-d019-4a3c-ac52-1b22d89def39',64,64,87,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-2-3'),
('d63a2465-0c53-4bf4-b39f-0097df4ff7c7','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-35'),
('d63bffcd-3378-43e3-a36d-50139793d883','0e70ccfe-0887-4aff-9656-0781d621c3b4',44,44,77,0,'2025-01-22 09:07:14.262','2025-02-01 10:51:11.058','982843761-1-3'),
('d63c1ee9-ae42-4672-a1b6-6d35b3d07db4','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-17'),
('d63e2364-49df-4131-9cee-1027dbf1985b','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-17'),
('d63ede0c-a334-4826-8e1d-ec0d89d35fe3','cdccd2ca-ece0-44dd-b047-f15496470e46',226,95,66,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-4-1'),
('d6417f57-aa92-4510-86d2-398407bce65f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.304','223444495-1-116'),
('d6423405-acd5-4ef6-b837-69cd8230e25f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:07.843','248135683-1-73'),
('d642707f-ccd0-4a14-a2cf-3aa5db975ddc','159c73ed-083b-4d67-98ca-6adcfc554962',32,104,205,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-21'),
('d64487c3-0ea1-434e-9da9-e76ff9ac3b66','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',98,26,217,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-2-3'),
('d647fc01-f5f5-40d1-9c20-1cedf79905f4','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-8'),
('d6498249-c3bf-4daf-b8aa-60850ca9b532','6ece3da6-36dd-4090-9715-e7c90799e5fd',53,76,102,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-3-3'),
('d64d2798-d038-48d8-89cc-9108dc96bb7a','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-25'),
('d64e92d3-4ffc-44a9-a7b4-a9db51a3d9a6','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-90'),
('d651b0cb-2a17-4b49-a859-882adb202827','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-80'),
('d652edde-92ca-4551-9ac6-52dad77603d7','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-66'),
('d656b4bf-177c-4c23-87cd-99b07712802a','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:13.243','248135683-2-73'),
('d6598412-b317-4026-9754-626a6607d0f3','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-15'),
('d65cab9c-fdd2-4bbf-a3c9-63744387b2ce','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-57'),
('d660bc58-0a68-43ca-9074-52d5548d5d8e','fe224014-80c7-4bb7-96f9-7343154c847f',76,45,45,0,NULL,NULL,'982707795-1-2'),
('d661caf0-db08-4dff-919c-9f809f70647c','cea9e943-e299-4576-b365-f684cc2e4d11',56,76,102,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.167','371514006-4-2'),
('d6671067-c012-443d-9c79-0e91910ffe5e','00d82761-31c4-446b-a04b-97ce66aab4e6',105,65,55,0,'2024-08-31 13:26:35.084','2024-09-09 15:17:32.717','982918194-1-4'),
('d667f21a-96e2-4a9a-9dc6-e12797f5f743','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-9'),
('d66803f3-d481-45fd-89c7-d4797cd166d7','b873bb68-1139-423a-843b-cf65e9bad438',0,0,0,0,'2025-04-21 06:13:21.386','2025-05-02 07:03:20.243','412332862-1-4'),
('d66e725c-d424-415b-a694-53b704ef575d','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-1'),
('d66fade0-70f0-4f1f-afc2-8ae82a9e87ad','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',30,103,202,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-1'),
('d6716d48-e34b-4550-b41a-06ede5f1793c','9d7979f3-a35a-4a64-97d1-4ba973786029',180,198,3,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-28'),
('d674602b-fc56-423b-9f5a-1c6f59441a19','9f9f808a-df35-43e9-9547-e5a703a5fb49',100,63,65,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-4'),
('d674c3f9-62fa-40e2-ae70-fdba54c68b59','6c43de3c-5454-4dc3-8fc2-6cd719969299',111,110,5,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.288','745907299-4-9'),
('d67673c0-b234-48de-a5c4-1015a58d0f01','0263f7f0-6c1a-4beb-ab78-25d69142647c',21,12,36,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-25'),
('d678a9c5-a608-4e7e-b27f-0903211963ab','da45c512-a565-44f0-94fb-f2a9be01c44f',86,224,60,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-3-4'),
('d682abe8-e07c-4c26-a311-50ab049481c4','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',63,13,20,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-7'),
('d683a394-2f03-4b26-ba44-eb5897d46b02','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-3'),
('d683eee8-4a80-467c-8eca-f9f1abdb8cd9','5d074556-ce95-4ffc-8684-279dc37597f0',70,75,70,0,'2024-10-23 14:11:17.543','2024-10-28 18:33:26.824','449874608-1-2'),
('d68610aa-0ffb-4563-a496-f3cb50f1fdf9','d5efe2d6-e010-4287-9123-64530913fd5a',90,70,77,0,'2024-10-02 09:26:56.363','2024-10-08 17:09:24.444','501626049-1-2'),
('d68a45fe-0087-4cfd-aa09-dc016b6e93a3','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-1'),
('d68d775a-9292-4736-b05a-6ed180c1e322','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-74'),
('d68f691f-4ed9-4bc8-9419-6e5dad538e56','c51cf533-511d-4f61-a94c-3e48074db45d',30,35,40,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-14'),
('d6900c4d-e62f-4fe9-9fdc-c67d20b5a229','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-101'),
('d69032ed-5959-4713-9964-4f81c514f112','e67b1845-0be2-4837-a37f-becbd1706d34',100,123,75,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-6-3'),
('d693e35d-0e1d-462e-b068-a37c04721d2a','04dff17a-2b9a-4f35-a082-5684dfe5706f',67,11,10,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-17'),
('d6962468-415d-4210-b49e-53daf925682a','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-46'),
('d698346b-e06e-4375-8224-6bf1e8aff53c','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.004','2024-11-12 16:17:22.577','16334418-1-45'),
('d6990eed-fde1-4a9b-a32e-b291c709d725','ab1b2a39-1033-4ca2-9a3f-fda0a79bd8f8',0,0,0,0,'2024-10-17 11:51:21.661','2024-10-26 07:30:49.319','745382052-1-3'),
('d69a8285-2f86-4ac6-9f8b-2fb914f0c127','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-4'),
('d69be955-9205-4561-9f5e-a22f0d76b051','0b2aef55-3f13-481d-aea2-e04a6333fcb8',8,76,108,0,'2025-10-20 07:18:16.076',NULL,'644664237-1-1'),
('d69df3de-cb40-4e93-b754-0f24003d732a','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-4'),
('d6a3bea7-cadc-4ab9-bfbf-d0aa55789139','d8b997b4-f874-47ea-b9fd-067dee0368c2',58,76,102,0,NULL,NULL,'515128101-1-4'),
('d6a46856-f692-4101-ad39-1e43db08aea4','220fed8f-f96e-4af5-867b-ac05d11bda6f',8,47,145,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-12'),
('d6a54f8a-7898-4134-801b-0821cf8e8e07','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-24'),
('d6a70785-65cb-4ad4-b70d-433c01cac04c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',50,62,9,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-5'),
('d6a7089d-15a6-477f-8316-10aada130975','2eee4732-1804-4c17-a865-bc66f2ed3520',97,9,142,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-5'),
('d6a932ba-a932-4471-a150-f55909c7e4a0','c51cf533-511d-4f61-a94c-3e48074db45d',50,30,262,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-9'),
('d6a980fd-0bd8-45fc-b4e5-0a052059f666','c2ddad80-9393-4fee-af04-55166ef5c607',27,4,207,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.052','745946644-3-4'),
('d6aa919d-dff3-490e-9650-9020cf227f20','cacb1c7a-8595-43bb-b1ca-40b46c29dc4d',94,95,71,0,'2025-06-11 13:14:43.208','2025-06-17 16:02:34.544','976765698-1-3'),
('d6ada46e-b1f6-4c11-ba21-bba7160e9a77','5ea4b207-b05c-4931-bbd1-648b6933aae5',228,62,5,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-18'),
('d6b12273-87de-4c96-8b71-dab3aed9a2ba','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-87'),
('d6b8931a-7fb1-4218-906f-805597833e25','a455ba66-b417-4781-a6f2-6fce1b8bab23',102,16,190,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-22'),
('d6babf4d-e979-4086-960a-c4d940f8069d','2a723830-d2b5-42fb-95ad-678895eae7cd',57,232,6,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-11'),
('d6bccfb2-c53d-4b43-8aba-281afcf2411c','0511f6ab-efd5-44b5-884b-6c559b99549f',0,0,0,0,NULL,NULL,'982376655-1-1'),
('d6be7378-d977-435c-a954-16d99217b02f','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-57'),
('d6c0607c-7335-483c-890d-d31dd97ace6c','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-35'),
('d6c1d8d4-8f7d-4464-8ad8-5af768842e6e','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-5'),
('d6c509db-daba-47fe-8708-2507c8fadd89','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-63'),
('d6cbd556-980c-4ce7-a5be-8214ec9e8ae2','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-60'),
('d6cd9923-7caa-4b55-a71c-595b9ea9f71b','03eec9f2-0d55-4dca-9dfe-05855411723f',0,0,0,0,NULL,NULL,'61440092-1-1'),
('d6cdf451-4991-44a3-bb15-169a86ad6632','1086f7ce-fb42-4a68-915f-6eef7c1c791b',110,57,80,0,NULL,NULL,'695763797-1-3'),
('d6cdf48d-dfc3-4627-a837-9954d224dcd2','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',55,32,19,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-30'),
('d6ce0c57-d1f4-49b9-9f2f-2bad584738e8','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-8'),
('d6cee605-36a9-4eea-a2a5-0ab492a40666','0367240f-e4aa-4d5b-a069-fbf9bd8627bf',0,0,0,0,NULL,NULL,'74546300-1-1'),
('d6d05752-4e4e-4582-9d3c-d376e446eae6','a5506c59-0e9f-48a6-9b69-13a5163cf994',106,70,8,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.855','517558560-1-15'),
('d6d22d8e-5702-4c4e-94af-a4b50889102b','e055b714-743d-4f7b-8aab-ecb792c3533d',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-5-6'),
('d6d28c83-bfca-4c1a-a29e-e8fe323cf6b8','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-11'),
('d6d636ca-b05d-4a76-b404-9d0457248164','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.505','221639055-1-4'),
('d6da3d19-4187-4a10-bb9d-5a374ac246a9','6105a5ad-ab0b-4b69-b796-281a85aa1c1e',40,40,50,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-3-3'),
('d6da616a-ba53-4201-874d-e417d46d0c3d','824d6217-b971-4993-8029-722e4fdadc9a',90,62,61,0,'2025-08-27 19:40:12.363','2025-09-04 06:16:45.735','644826740-1-2'),
('d6dc067a-53a4-4fd1-a2df-791180755b5e','aa7913d9-4692-46ea-94b6-16deac482855',0,0,0,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-6'),
('d6ddb32c-f3b9-4886-8d85-3a0e2b0ba485','e622181e-7708-44a9-8b12-3952b738674c',75,75,75,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-8'),
('d6e08ecb-b142-4551-ab94-da0acd30866f','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-28'),
('d6e7eeba-6bed-4197-b5f4-d97aa25ef1ae','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-38'),
('d6e8fcfc-3994-4af8-90d9-33bcd8bc77b7','25f4965a-c481-4fff-bd08-ac93db0c7623',97,65,205,0,'2025-10-02 06:45:37.292','2025-10-15 08:20:42.154','437694817-3-5'),
('d6e9cff8-6556-46c1-a883-da11f41e8aef','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-179'),
('d6ea28cd-d924-417e-990a-b951e7faf16c','7ec18512-8b20-4268-a918-a8660a2e1f98',99,164,12,0,'2025-08-07 16:53:02.210','2025-08-19 14:52:38.938','910762495-1-1'),
('d6ea6de2-eda0-4924-99f6-68eda0f5e27b','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-30'),
('d6ebb392-a4db-4fa4-88f0-481127de6a64','514d2478-d2eb-4418-824a-9919e1b69fea',0,0,0,0,'2025-06-14 12:48:18.133','2025-06-26 14:18:43.099','42892944-5-1'),
('d6ee5677-2983-4032-bc4f-9669e6eb40f4','100f6b1c-3292-4714-ab15-a9db8e3e078b',0,0,0,0,NULL,NULL,'614941926-1-1'),
('d6ee9868-420f-402d-aca9-9d25226dcc54','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.864','2025-07-24 18:00:53.304','223444495-1-117'),
('d6f27d7b-e410-4f44-806b-cd34514fa129','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:46.216','248284003-1-137'),
('d6f2d563-c910-4a99-82c7-7cca126c47f7','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-77'),
('d6f47f2d-1546-496c-84c4-51b9b02aaf46','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-41'),
('d6f54588-f2b6-4371-96e6-4e21e6ae1457','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-2'),
('d6f6eab7-4622-4c60-af62-389b6f16a500','7672c2eb-09af-4e1b-a31f-afac027ef11d',117,103,85,0,'2025-05-24 17:55:34.026','2025-06-03 09:41:18.079','019113818-1-1'),
('d6f88cb2-5924-4b34-b400-6df26382eb97','2ab9cc31-ffc7-4b7f-8c7c-a0be51840f2f',0,0,0,0,'2025-02-18 16:37:12.985','2025-02-27 06:36:24.947','745130019-1-7'),
('d6f906b0-3e34-4ba8-9739-fe2fa88f5a1d','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',126,143,6,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-30'),
('d6fb669e-5d01-47b7-94c2-a35fc1bcbd91','b5a89fbe-951c-46bc-b6d6-4131d953a51b',100,10,188,0,'2025-10-06 07:10:11.982','2025-10-15 08:25:00.087','598425779-3-2'),
('d6fb7acd-98f3-478d-85cd-74a79dea6f61','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-7'),
('d6fbfbc6-777b-421c-a8dd-c31581da34b2','68468cbe-741b-47ae-be43-0aae10030ee3',86,86,8,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-2-2'),
('d7024bbf-7807-41c5-b10a-b52bb4bc9bc5','b6d04ed2-f29f-400a-ba86-37b36b0830b2',25,16,211,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-16'),
('d702fd88-e398-4fe8-8e22-1d1782ab4dce','7a3874a9-db61-4cfe-8c48-f341a8247a1c',110,110,80,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-5'),
('d704370d-ef3a-4055-b1b5-6aef27ed1da6','c5027968-9a23-442a-bebc-9b8745408960',43,6,216,0,NULL,NULL,'982759064-4-16'),
('d70676aa-f52d-4a85-9668-3cc5b61261f9','96449af3-c272-4a90-b77d-0790552dd455',110,70,50,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-21'),
('d7082929-e797-46c7-9a22-8aaf265ed161','619014ca-c3c8-4d5c-ad4c-39716a19cbbb',99,160,73,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-2-2'),
('d708354b-b362-4cc5-815e-9a341c0cf6e6','7c09f776-ffb6-47c8-8828-61389547804e',56,80,5,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-18'),
('d70b7e46-7b39-446b-b940-c8ccb0fdc709','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-12'),
('d70ccf61-4583-4385-a38c-d096fb0596e0','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-106'),
('d70fe0ed-b5ed-4d48-86a5-fc3a056945ec','8279654b-3e57-43ba-844c-f5985ec2ca90',60,95,12,0,'2025-07-12 09:19:08.718','2025-07-17 19:16:14.064','982893962-1-1'),
('d7109fbe-cd65-4a3a-8d8a-c2329b9c7323','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-66'),
('d7124812-89b8-4253-90f9-25da915661e1','ad1f60cd-e975-4bbe-b695-f54cb9cb2fa0',0,0,0,0,'2024-10-17 13:40:56.522','2024-10-25 05:44:41.570','745508995-1-5'),
('d712a2c7-7409-490e-83f1-2dfe13657d4c','8b4543e8-c3ef-483e-92b5-3623066138c6',110,100,72,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-7'),
('d7132830-9018-420e-b3b7-1e5334bf2763','6d2958d8-12ca-41bd-a12b-58082d5c955f',94,16,57,0,NULL,NULL,'614364554-3-12'),
('d71510a2-6223-4785-8f6a-f33157dd398f','c98f6188-56c5-4870-be97-be71cf95f62e',222,59,5,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-13'),
('d71582da-c88b-4c8b-bf56-07bbee944db4','215b7f43-1974-4003-9af2-0e2b300284d4',100,92,70,0,'2025-10-25 08:59:10.092',NULL,'644522996-1-3'),
('d717fe65-d5f9-4d2d-8228-6773cef06478','0a8285d0-d3db-4298-8e41-62c5429f150a',160,20,7,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-21'),
('d71cc224-98de-4c2d-a389-c1ffe3389239','476b43b7-da3a-41aa-b89b-f5010f41f08f',96,96,70,0,'2025-10-25 08:59:07.177',NULL,'598445423-1-1'),
('d71ea76f-12c6-4a62-b134-dda8a4c86520','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-7'),
('d726133c-3b2e-4f2b-a8a8-eaa07efbbcbe','677e3a06-ca47-4aec-a732-695c796dff2c',110,60,12,0,'2025-03-08 13:46:20.372','2025-03-17 14:54:04.694','750498273-1-4'),
('d726a92e-9b70-45b5-9388-b41e909ac6f1','c84d56f6-3232-4489-9c15-b7a6e87c3261',100,103,65,0,'2025-04-25 16:56:55.756','2025-05-03 06:22:22.042','598508016-1-3'),
('d727000f-99d9-472b-b10f-24ec02d310d1','c39409f6-eabb-4d89-8cfa-a6402efc79a6',96,72,97,0,'2025-07-17 09:33:45.878','2025-07-22 17:22:09.793','531737045-1-1'),
('d729ce09-5ddd-4e1b-a392-b703737c723d','f3414f51-92da-4967-b108-6baad5cdd798',68,9,215,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-15'),
('d729f3b6-36e6-4bc0-8523-0c2ae60fa872','1b975dd0-98b9-4adb-88bc-962d71cc7b22',75,185,29,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-12'),
('d72fc1cb-17fb-43b5-879a-f63f12b3bc7f','a40ab67c-f6c6-4228-b875-7adeb6366544',140,75,94,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.872','371120278-4-5'),
('d7320dbb-9ada-4de3-9136-c55fad682cd6','fe224014-80c7-4bb7-96f9-7343154c847f',95,7,195,0,NULL,NULL,'982707795-1-3'),
('d73250b1-ed36-4c8e-bb8f-748569da1dee','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-33'),
('d7331874-fbe7-4c59-aa3a-7b35c8be5521','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:14.064','248135683-2-62'),
('d7332331-f8dd-42e1-8595-68b94377f860','7f823e87-d09d-4cb4-ad0a-4393c51662c9',100,93,65,0,'2025-10-06 07:08:31.417','2025-10-13 06:39:34.718','644287826-1-3'),
('d733d9b7-9d30-4661-ac88-c46afa2f93c4','9affc7b1-09c4-4e84-b48b-d0c117c421b0',180,85,93,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-1'),
('d73676f8-1085-4f94-8b41-911e74d0ea18','0886662d-3f5b-4da6-acc3-7da74bb71f94',30,40,255,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-5'),
('d7381656-da29-41e5-bb4b-c4b2e4d4d469','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-23'),
('d73e5358-0011-441f-ae73-740f54e81b92','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-181'),
('d73e5406-152b-49e1-89fa-7d76474b3dba','cbf7e639-67ca-4872-ae7f-29e1b41a5cd0',80,75,65,0,'2024-03-30 07:11:57.221','2024-04-02 16:08:31.694','982501931-1-5'),
('d73feca0-a8f1-44a4-8bae-41ba614207c2','ef3d6208-3719-4ba5-b64e-42a9d07fc978',0,0,0,0,'2025-04-21 06:13:12.616','2025-05-03 15:28:08.996','223719427-1-4'),
('d73ff6d9-8c99-490b-8ff0-6a2cae7dec58','b6319fbc-ac5b-4323-8326-06724cade598',230,100,77,0,'2024-04-08 08:57:41.781','2024-04-29 09:07:28.433','982984016-1-5'),
('d741a5a7-53db-44ae-bbe7-915367e3bd74','b4b0a716-b412-464e-9731-24f8bde6af44',90,240,65,0,'2024-12-01 06:48:29.054','2024-12-07 13:11:51.072','982835475-1-2'),
('d745414a-2328-4c48-8de9-8e2d378ff99c','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-6'),
('d745bb08-7324-40d9-b1dc-1baaad791505','eb72fbac-991c-4275-8fee-d2dc4841a5f1',43,44,75,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-2-2'),
('d7469da5-c1fc-4df5-a81e-c0dfef3485d7','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.026','735211280-1-4'),
('d74a4c43-dc19-47a9-aa3d-2ea84fa02707','ef01ae16-c169-4e19-9b74-47dd619d784e',96,6,166,0,'2025-01-26 10:54:26.114','2025-02-10 14:16:03.738','221583384-2-3'),
('d74a94ba-f49b-4def-97f6-2cce07d969d3','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-18'),
('d750dbe5-d285-4a6e-8305-8f5fc558150b','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-4'),
('d75395dc-bfb6-4e14-91d5-a7293ac5f72c','3987bcda-6531-4738-8815-187fd84bf71c',37,34,18,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.158','75056602-1-20'),
('d755032a-a85f-44e7-bc85-3707e2c19281','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-107'),
('d7556920-2e3c-4777-a643-d8e294a18959','aee64134-9c4a-4a5e-a933-2ec271b9144b',85,85,7,0,'2025-10-22 13:06:53.604',NULL,'613721320-1-4'),
('d758d169-e8a9-48f3-995a-668acafe96b6','e266a085-e2d7-4f94-9512-fea47de5ac85',57,77,103,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-2-1'),
('d758e091-475c-4af0-a0df-a752379c85ab','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:08.365','248135683-1-169'),
('d7599230-a33e-4e31-984d-2c79f907e409','7539ec51-cdb8-4879-b280-a64290bb512f',70,127,9,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-3-9'),
('d75bade5-26b2-4357-b072-0332a9767a4e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.304','223444495-1-153'),
('d75c4c7d-7690-4711-b9df-565946d1abc0','0000e1f3-403c-4a50-abf8-32630570a116',0,0,0,0,'2025-06-11 13:14:46.907','2025-06-17 16:02:05.831','910201328-1-1'),
('d75d2a09-cbe6-477c-bb38-0fec755fc1b0','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',45,45,74,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-10'),
('d75ff03f-28e6-44fb-97f4-5a51a437d471','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-52'),
('d765180a-7954-497f-860d-e6dbe7e384ba','0a8285d0-d3db-4298-8e41-62c5429f150a',76,46,20,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-22'),
('d766dc7f-76aa-4600-84f0-00ae71c04453','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-42'),
('d767e5eb-77dd-43f0-a8fb-4d917be6d611','2fef74e1-3060-4a38-9cca-a2da9430da96',59,123,227,0,'2025-09-02 14:48:42.690','2025-09-12 06:55:35.517','613175888-3-1'),
('d7691abf-c369-456c-ac69-bfc2a8fac718','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-4'),
('d77372d7-8d6e-4c6c-85b9-6658d6bf3923','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.800','2025-08-25 07:06:53.264','982561254-3-4'),
('d777373f-f7d9-49c4-bf2a-9a857aacd633','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-153'),
('d77b6c40-346a-4b75-95f7-19548df7a390','bbc6d966-9d42-48e9-83e4-13afb85a7c33',10,42,60,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-9'),
('d7815313-b633-493c-ad41-21cb3ad548aa','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-50'),
('d785a674-318d-456b-bd1e-e894d5f3299e','546ad3d0-25c2-43dd-9443-e48b8e5b6530',42,50,9,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-30'),
('d787b21d-7c46-4183-b8ba-c1fb8c36f03d','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-58'),
('d787be43-51e7-4a60-9a89-47c6c646a644','66f8d34c-0c41-46f5-98bb-500adbb6f636',19,4,204,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-22'),
('d78809a3-e959-48db-9813-b598fd329aa0','c91edd26-ca21-49cf-967a-8ae66440af23',90,29,202,0,'2025-07-12 09:20:24.300','2025-07-24 18:03:45.377','745813483-1-1'),
('d78945b9-2abe-40ec-9a15-1d5401bceae2','7cbb49e7-8507-4950-b154-bbcd75b0a4cc',0,0,0,0,'2025-03-27 08:02:51.403','2025-04-08 15:37:12.797','745580296-1-3'),
('d78bd10a-3da8-4eb0-8aa3-1bf020d77b37','ca15fc0a-c952-4d11-8373-2c36e573d1ae',0,0,0,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-5'),
('d78d29b5-6fff-48f3-bfaf-bdf0b6e269a6','35727e24-1c8c-45f2-b4a7-bc5944f5cb5a',51,51,77,0,'2025-09-06 07:20:27.743','2025-09-15 06:12:34.941','35130528-1-1'),
('d78e172c-4b5e-4734-92ed-5a0f5b31a01a','628d9615-d14d-4eba-9099-0780016f2dec',73,117,8,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.382','982751509-1-5'),
('d78ef7c3-8f37-4cb9-b65c-de14d5ff0d53','d9f8d303-c2bd-4794-8f6f-028cc186a4ef',51,42,51,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-1-2'),
('d794fc16-c779-426f-883d-a677254b3b26','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-9'),
('d795d7cf-3f36-442c-a44a-3369b11aa688','914c35b6-7134-4163-8911-cbacbed3fcb5',114,39,224,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-9-4'),
('d795fca3-536d-453f-bd7c-82dbd80fb3a5','66ac3e8e-58c7-4a1e-bc6b-2d9b6a2a311a',130,198,14,0,'2025-04-15 16:01:26.830','2025-04-26 17:56:30.038','745770556-1-1'),
('d797ebce-015c-40b7-9539-6fbe63a61e9f','15ff9118-18a9-4a0a-a3cc-31c9c550751c',0,0,0,0,'2024-11-25 08:28:36.848','2024-12-05 16:18:18.434','449454395-1-2'),
('d7985971-769a-460b-bc83-f5e33d244246','bf2fbd97-6d0f-4724-b25e-47e019854e49',66,10,11,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-20'),
('d79bf0d0-938c-4e37-a0b3-490a24232097','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-45'),
('d79c29d5-72ab-4660-b010-f67c7384051f','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-49'),
('d79fab6c-a717-4304-80df-09ea1901f4df','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',210,28,38,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-60'),
('d7a0b6a0-fb9a-4d29-8425-3131d2a0d622','afcdd189-4513-4f98-ba10-d072597768c3',0,0,0,0,'2025-03-13 12:21:23.215','2025-03-23 16:15:57.285','221892935-2-1'),
('d7a0ebd5-4475-46cb-9d42-25b81017e4cd','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-15'),
('d7a37ee2-2a44-4943-b619-803ba98537f0','c22c54f7-1976-414b-9910-bd141ffe1913',51,51,77,0,'2025-07-12 09:20:42.738','2025-07-22 13:22:50.069','613822987-1-2'),
('d7a42dbf-d1bc-45e6-8e46-4076b2794fc2','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',105,90,38,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-1'),
('d7a7638e-8f16-4db4-be5a-fe89bd01c514','9bb1caef-a37f-4f55-86cc-6aecc99853ff',102,57,85,0,NULL,NULL,'221607575-1-3'),
('d7a8f07e-d829-4bab-8ebb-3c827583943d','f28873c5-2e62-4fdb-ada4-793997143e52',85,95,95,0,'2025-02-23 12:39:09.198','2025-03-06 14:25:32.996','449974141-1-2'),
('d7a9b876-07fe-4229-8030-dcd26e8ee3ec','b16256b1-d6a2-448b-a170-4c574127a57b',50,93,16,0,NULL,NULL,'745189997-3-15'),
('d7aa394e-c71b-4bae-b571-0f5e7ec37bb0','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-100'),
('d7aa5b7a-b802-456d-8acc-9680818a5fa9','3f466b16-fac7-4cf8-b004-d0829d6b5061',112,180,16,0,'2025-04-21 06:13:19.326','2025-05-02 17:10:36.933','43792999-1-2'),
('d7ae3be2-a50c-4809-a180-b380c46a21e3','2027d4e3-00a8-4050-97b9-4dcf16140122',100,98,65,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-3'),
('d7b22851-1091-4dce-b17f-73e545fca463','4b8db7d9-3ef4-4c05-b1ba-e427ad82676c',95,180,60,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-1-2'),
('d7b7d11e-d4c2-45e7-8ba6-bb3066ecca41','3f6d175f-15bf-42d9-bb3f-05e5f1f30d07',46,46,63,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-3-3'),
('d7baa97e-fa19-43ec-a467-c186cd0dc2e2','cc5b1253-5911-4a8d-a337-c4002b9a8b25',51,51,77,0,'2025-05-09 18:43:48.380','2025-05-21 18:37:11.087','644644143-3-1'),
('d7beaf23-f9ce-4288-a80d-adc59f1a9137','b397ad04-cf36-49de-98e6-e6b8a1432616',0,0,0,0,'2024-04-27 08:45:31.204','2024-05-08 21:07:30.507','478572714-1-3'),
('d7c161a1-3311-44c8-80f8-832235244690','031c81a1-1596-403b-80d9-8d3b2e98940a',80,70,80,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-1-3'),
('d7c220cc-fc32-43a1-bd1a-8032cce23c75','55bdd77a-dfa4-4c83-bd2b-4709d2c3ad56',0,0,0,0,'2024-09-03 15:28:30.945','2024-09-14 19:01:44.723','982666330-1-1'),
('d7c559f1-7196-4c89-a2ca-2a30e1d33e2d','53511961-4401-400e-af74-34d0e714d59c',0,0,0,0,'2024-12-13 14:49:20.437','2024-12-21 21:13:14.080','47865598-1-8'),
('d7c63554-b1e0-4d9a-bf44-92915e505d25','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-135'),
('d7c68f4e-8f9c-47a2-aeec-6eeef9d494bb','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-42'),
('d7c76c26-ae0c-487a-ab8a-4c5764d86c84','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-5'),
('d7c79824-b8f0-48e5-9fd6-28804f11b864','f3414f51-92da-4967-b108-6baad5cdd798',42,83,16,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-16'),
('d7c8f248-9e1b-426c-b127-c26fb6a8ec33','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-7'),
('d7ca1706-9fd2-4bb5-8111-983bda8c6d4a','e0dbbf5d-76ca-46d1-aada-413e8b306150',1,1,1,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-2-1'),
('d7cdae8b-4272-4b8e-9015-ae26ccf9543c','46d0563d-1067-44bc-9c0a-d69fee69b215',97,117,16,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-1-4'),
('d7cebca3-f636-4499-b6a4-cd3adc8bac51','dd4309a7-7fa7-4e88-b0b3-60c73d890d06',95,85,78,0,NULL,NULL,'695864567-1-2'),
('d7cf891c-d30a-4483-8ba1-a4c0ecb6797d','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-46'),
('d7d135d5-3dcb-4457-9fc1-4eaccdd97788','01ff323a-2bdf-41db-bd07-b6903d6c33a6',43,43,78,0,NULL,NULL,'371117320-1-5'),
('d7d29a1a-8874-4398-a73e-caaa8730d535','0009aeec-e682-465c-b701-363a3ef377a6',80,80,80,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-76'),
('d7d2eb06-6a01-4b3e-96b3-501fadce52de','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-39'),
('d7d335ef-eef6-42d4-853e-6a8a1b937157','d5a7698b-6388-43e0-8603-5c9b362cc6d2',103,90,75,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-3-3'),
('d7d3cd03-5c38-4314-b53b-6f2c24fd3254','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-83'),
('d7d56a94-737c-4b13-adf1-6ce005d404aa','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-26'),
('d7d78162-3049-4e0a-b36d-b45be6ba0b56','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:15.083','248135683-2-10'),
('d7d88429-6676-4998-b6f6-b84fc542d31d','d8896502-ee1b-4969-b484-104bc8965f47',207,95,62,0,'2024-08-31 13:26:41.456','2024-09-08 09:33:49.248','982873637-1-7'),
('d7d91358-53a4-4f7e-a81b-4071ac0a0880','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-26'),
('d7dbbb2d-14ca-43a4-bec7-364fe24b447f','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-28'),
('d7dc2b7b-ae06-42ce-a8c2-b4f89b744b0d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:09.825','248135683-1-84'),
('d7e1909f-1c77-472f-8235-37fce7076d92','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-179'),
('d7e4179f-d910-46b5-b40d-461947ff931c','2e7ad20c-d3f1-4bba-b44b-724cfa847fdd',76,53,102,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-1-2'),
('d7e5c261-1763-4adb-8156-1c112702b862','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-125'),
('d7e73401-8f88-4d8c-b73b-50ec66e34955','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-27'),
('d7e8b5c1-e21e-43f4-b853-27be57833a8b','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-75'),
('d7ec7f3f-6299-4c3e-b40d-db29e8825ef5','9866a947-9974-4053-8415-4518842488fe',67,7,16,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-35'),
('d7ed648d-160e-43f6-8116-701bb64b0e2f','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-64'),
('d7f22f11-1c5d-408a-aba7-f4a1c9d30b22','0cc31d9c-27a2-40b8-9231-c0a0d77af806',90,190,30,0,'2025-10-08 17:43:22.019','2025-10-15 08:13:05.462','745816946-1-3'),
('d7f98de1-2891-401f-9026-dd1d951f1ee5','c7fce8c7-acfd-4c12-8db5-81618a4b211d',28,28,41,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-24'),
('d7fac35b-2250-4e84-ac9a-8c2752657d71','f4fea4c5-b879-4cb4-a43b-6716692a56f0',108,4,195,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-7'),
('d7fb5fd3-8b76-4dc2-a3d6-af461ab07db4','0009aeec-e682-465c-b701-363a3ef377a6',220,80,20,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-77'),
('d7fbe1fe-b32c-460d-898f-9b21286df389','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',105,205,23,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-9'),
('d80107e5-4432-4e65-895d-3ede9f2a870a','657d3ef5-2860-42b7-aaa9-ed31823d3fa7',0,0,0,0,'2025-06-11 13:14:25.291','2025-06-24 06:24:27.010','644490677-1-1'),
('d80159a3-ae13-4909-9994-0a0698b53663','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',81,23,201,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-10'),
('d802ab8a-a22e-47fb-86aa-347e6c0165d8','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',63,44,35,0,'2025-09-26 12:39:10.669','2025-10-09 09:24:57.388','644803178-2-6'),
('d806b7b4-7d92-4b70-b6a1-e83a8332543c','291a2ff2-a042-49df-a88f-5eeac8ddabcd',56,100,80,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-11'),
('d8107dd8-d784-4bdb-92f4-a2389772d397','4b8db7d9-3ef4-4c05-b1ba-e427ad82676c',85,84,60,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-1-3'),
('d813bb3f-3236-4f22-bdf9-09b37de72e23','d52e0084-461f-4485-8b29-bc10063841de',57,62,81,0,'2025-08-14 08:21:14.556','2025-08-27 05:39:11.569','221748184-1-4'),
('d813cad1-2c6f-4eb7-aa05-8e871de327fb','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.816','745645972-1-6'),
('d8171bef-8e76-4983-a28d-208cbc039ea4','cc7dddf4-427f-4a79-9cec-d95529ff2c95',135,189,6,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-4'),
('d817dee2-7906-49be-bda9-a3b204341ea6','ea9dabd1-827a-4f9e-9b28-301e5af3a89a',0,0,0,0,'2025-03-08 13:46:12.067','2025-03-18 18:32:47.945','745124199-1-2'),
('d818a8c8-796e-4555-8cf7-5be40634843a','220fed8f-f96e-4af5-867b-ac05d11bda6f',47,12,213,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-16'),
('d818f8e9-1ad2-4a41-9ab8-356a81f8bb26','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',50,35,258,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-8'),
('d81a8213-0860-4c71-b925-f112bfc961ac','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',34,34,180,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.175','817317858-1-2'),
('d81d7a8a-bb56-4b3f-8752-4328067f5474','919abdcd-92a3-4f54-8e52-871167a8810b',75,54,31,0,NULL,NULL,'598944852-3-2'),
('d81da04e-9478-4300-8708-0337541a9282','e4b1fe83-46ab-47f4-be8d-e8b68b8d576e',51,51,77,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.134','644847294-4-2'),
('d81df0b4-e734-423d-b9da-730109771627','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-9'),
('d81e1b60-933d-403e-a44e-303b875b03a8','2022ec7e-3b20-4c57-99bb-9fd74367008e',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-1-3'),
('d81e1fb8-261f-49bf-b5b5-999eccf4eea1','189b9e28-3fea-4905-9c4f-022b3f29043d',100,97,65,0,'2025-10-08 17:43:34.937','2025-10-17 06:14:56.162','531629494-1-3'),
('d81e5532-9080-44d5-af0c-80c061c65b28','3da17157-28be-4bae-8dcc-745d0e93e591',53,73,101,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-14'),
('d821515c-3a50-4e36-b7e8-a83bbb257f1b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',128,55,8,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-154'),
('d821f444-5e3e-4610-9ad8-dbe2aebf8c0e','6ca0cbb5-8b45-46fa-9e41-2771ad9644cf',93,113,65,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-2-4'),
('d822e85a-c575-49b5-afc7-53c82c81563a','7379fb2f-7c58-439b-a1f3-7d6e91d200f2',102,56,82,0,'2025-07-26 07:40:19.253','2025-08-05 12:21:48.610','418857351-1-3'),
('d826ef7e-89e9-4713-b9e0-8bb89f384dab','6f8fd929-0228-4fd9-a182-83fe855d3f5c',100,86,57,0,'2024-09-28 16:27:14.929','2024-10-09 15:38:51.512','962908456-1-20'),
('d828b88c-84a7-41ab-8362-23bb2ca77fd3','0263f7f0-6c1a-4beb-ab78-25d69142647c',48,7,216,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-26'),
('d8295eb2-6c08-4a03-ae31-960a9c93dfed','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.298','2025-02-28 12:03:24.448','570899680-1-29'),
('d82d105b-e66b-4c44-8592-cee01ff59269','0d90ef6d-e963-4a99-bbbe-e4ca67429574',28,53,222,0,'2025-06-26 10:29:59.665','2025-07-02 11:46:45.983','750125400-2-11'),
('d82d5b0e-392f-419f-aeba-f5d5e9184695','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,6,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-18'),
('d8346838-bcc4-43a8-bf6b-18cc8fdee11a','a455ba66-b417-4781-a6f2-6fce1b8bab23',50,11,218,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-23'),
('d836dd08-e9d2-409e-9a1e-a73e645d104e','69545533-7407-43ed-aa87-ace1a5f77648',85,105,23,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-3-6'),
('d8378aca-efa1-469a-ac1c-d46dcc95992d','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-5'),
('d83ade63-6736-4f1b-9f3d-5f0e90478db2','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-21'),
('d83ce804-5fb5-42c5-bdbe-4b2c4991b8a0','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-77'),
('d8407318-ba66-4b8b-b6a7-4d7c500e4333','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-17'),
('d840dbb6-9449-4201-8e23-a678d3a7eac4','8e6246d2-0976-47a0-a7c6-8176e4065305',94,100,100,0,'2025-09-18 15:49:00.938','2025-09-30 06:44:54.100','644153988-1-1'),
('d840f88c-fc4f-4dfa-8c80-53134a60decb','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-4'),
('d8426f56-bbec-41af-a279-fb67ac2939b4','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-10'),
('d842f451-96ac-4a79-9e38-72eac0a4313d','324936f5-0640-4048-8641-e1550a228838',57,14,84,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-16'),
('d84373ac-271d-49af-b080-232a04b62063','c080623b-df50-459f-92a8-eb2eaff4030b',50,102,22,0,NULL,NULL,'478350685-6-9'),
('d84419c0-19c0-4a1b-bd0a-dd626a54480e','e4b1fe83-46ab-47f4-be8d-e8b68b8d576e',51,51,77,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.134','644847294-4-3'),
('d844bc74-989f-4432-9ab6-59aa1560bfa9','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.822','223853931-1-118'),
('d84832be-c44a-4eab-b1c2-33b4f0b4c7cb','05af1df3-9a36-4be2-8bd1-773d59e1605a',102,234,2,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-21'),
('d8486982-6596-4cdf-a06c-fb9ee6be4c7d','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',45,46,44,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-70'),
('d84c2e6c-cd2d-4857-ac58-04566660d4cc','e6f73d54-f93a-41d1-bbef-8930d53eb399',82,57,101,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-3'),
('d84ca659-8313-42ee-8c08-8159ab3143be','edef2f29-fe9b-4fa0-8465-53614e2f2468',53,102,20,0,NULL,NULL,'478412191-3-10'),
('d84ef132-96a0-47b7-a6bc-888398aebea8','7defd633-f7ab-424d-8029-028d1b045752',80,11,10,0,NULL,NULL,'501119446-1-16'),
('d853cd85-ff43-4447-821e-a075f74b583f','e8dc151e-1148-4a48-ac2a-d4fb2c761969',220,86,1,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-11'),
('d853e431-4ab4-461e-b931-738264484693','2b95b149-0eea-4aa1-8465-0650e3c52636',28,200,100,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-1-5'),
('d85673dd-2c78-4b3e-a49c-10eea4dfe27f','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-13'),
('d85f9a96-88be-4c27-b4e2-45920b9a2dee','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',100,70,70,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.110','412129107-1-10'),
('d8615ea1-bf58-4469-ac99-0e3ad75fca32','7a998775-22a3-49a7-9475-b06b4e3056af',56,110,82,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-9'),
('d8637951-3f07-43aa-a8f3-f3ef0af7807f','75edd126-ea16-4b60-87c7-d914b44daac1',21,6,205,0,'2025-02-13 20:43:40.237','2025-02-25 17:03:24.823','428103279-2-3'),
('d863c0ca-7781-472f-b942-8338edd3586d','6fcc55d3-2339-4d12-b5e2-e156727c33f9',38,33,185,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.017','412767922-1-15'),
('d86bb329-e8d8-4ead-8c64-9732c52aa6c3','980e9055-cfdb-4ddc-8971-f55eb0411264',0,0,0,0,'2024-09-06 12:28:18.065','2024-09-12 10:54:37.436','478418764-1-4'),
('d86d07dc-26cc-4911-b7dd-17940f4c7da9','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.822','223853931-1-73'),
('d86dc9f7-cd23-4e01-881e-3db1b6a7bcf9','8deacde5-3bb8-4300-9f05-ea02527065c5',81,26,204,0,NULL,NULL,'449181756-1-2'),
('d86df68b-99f8-4f52-81e8-7c61a0f60c0e','71ea246f-d48f-498e-8dd2-c5bf0cefe20b',43,65,120,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-2-1'),
('d86eba22-eadb-482d-889e-cbe0ed7060c4','6a2d762e-11cd-4fca-b32d-cdba41391e25',111,6,46,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-18'),
('d870c984-5d4e-40fb-be36-920617e93a06','af0d8b9d-a81c-4508-b89f-ebe7472ba885',0,0,0,0,'2024-10-17 13:40:58.042','2024-10-25 05:44:32.816','745645972-1-2'),
('d873e1b2-35af-414b-ac36-8871e5ef2fdc','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-39'),
('d875351e-9d5e-4cd0-828d-c0a47e99e1b8','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-39'),
('d8779899-8855-435e-a35c-3c1d620a54ad','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-6'),
('d877c097-1da8-4e2e-aef3-8c5e369a88fc','99667d92-dbf0-44c9-b845-b66e678f2675',97,6,198,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-4-3'),
('d87b5344-de79-45ac-b428-774ac81adc53','2eee4732-1804-4c17-a865-bc66f2ed3520',71,36,36,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-1-4'),
('d87cd2ed-9a69-44e4-9d5a-00cdcb5ad4a2','0b7b294b-a03f-4eeb-a10a-b4d653fe53f5',88,211,65,0,'2025-04-30 14:29:29.173','2025-05-10 20:13:29.165','598405313-1-1'),
('d87d129b-b92e-401c-99c3-1370faab30c9','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-14'),
('d87f066d-492a-433d-80ab-c8f78baf9392','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-3'),
('d8829174-cde9-49ca-a0f5-116c5f302d44','692498cf-64f2-4260-8e57-e8b680a64cdd',132,191,7,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.349','221476651-1-4'),
('d883bbf5-2732-4452-b22d-0cead54711f5','71452714-b180-4e00-b2a8-b6fefa0c5650',50,43,43,0,'2025-02-09 09:51:58.173','2025-02-15 05:22:04.063','268145141-1-8'),
('d886b34e-14ea-4e78-bf71-b9182a49d599','1b975dd0-98b9-4adb-88bc-962d71cc7b22',53,72,102,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-1'),
('d889bda2-0e36-47a9-abd0-ee89d0e4b95c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.304','223444495-1-158'),
('d88a812d-2be0-4044-9fb7-95638c99b161','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-9'),
('d88c2b41-c5bc-4c3b-a568-660380f8378a','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.626','2025-02-26 08:36:33.810','478150977-1-19'),
('d88eb319-6a46-4353-a4fd-04219640c99c','832915ac-d62f-48db-b00f-8e585de422bb',45,37,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-5'),
('d88f915a-4d45-4991-975a-379a243e4317','4edf944f-7a80-479d-a999-67219fcb4040',203,109,6,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-1-3'),
('d8908f8c-c35b-4526-9cc1-7a60178dd4dd','0511ebb6-7f60-4bc5-a2d3-4d5b19269e5a',35,103,213,0,NULL,NULL,'531481098-1-4'),
('d891791a-90c9-44e2-ab1b-e47723a5ba8b','504660da-c27b-41a4-aa56-e6293172b9c3',13,19,15,0,'2024-09-24 09:07:29.606','2024-09-26 17:27:03.900','501760708-1-12'),
('d894038c-6a24-46d1-ae02-a35d834da98d','078e5a30-43f7-4f76-873a-4dcdd248380e',64,100,75,0,'2024-05-08 18:43:22.003','2024-05-21 18:45:46.061','50119540-1-3'),
('d8967763-e4ec-49f8-bdaa-9ce797ad1051','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-26'),
('d89d5731-f3d0-406f-acc8-728431f953c6','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',53,5,89,0,NULL,NULL,'644104537-5-13'),
('d8a019c0-686b-40db-8a72-9afe93d2d6ce','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-22'),
('d8a1050f-b5e5-4939-bc21-5895fba29760','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-16'),
('d8a3669d-0b98-4442-9951-ab8a728602df','0a8285d0-d3db-4298-8e41-62c5429f150a',200,79,5,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-23'),
('d8a9d1b7-7e57-4a78-a26b-d27d6c2bb47a','94df600c-14bc-4088-b6c5-be9e0b0223ee',0,0,0,0,'2025-01-20 11:21:18.002','2025-01-31 12:16:21.240','478300434-1-3'),
('d8ac26a3-bb19-4956-a04b-f3bac1bd8ffe','14154f1c-2788-4f7f-b6f1-b56e0a99f973',93,143,17,0,NULL,NULL,'745505506-1-3'),
('d8ae2a01-ef5e-40ab-801f-e446556f20da','b33c0371-be03-4af2-8c49-7adc620602f6',56,76,102,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-2-2'),
('d8b41bee-e4c1-4c30-9f71-490f611b9668','6f8fd929-0228-4fd9-a182-83fe855d3f5c',230,72,96,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.512','962908456-1-21'),
('d8b53a5d-fb6d-45cd-a7e6-746c695c11e7','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-38'),
('d8b5a10c-e8d0-4d31-84a5-a3fff8f41093','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-83'),
('d8b95fd5-11be-494c-ae7c-ab120c63e843','0009aeec-e682-465c-b701-363a3ef377a6',95,64,100,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-78'),
('d8b97c1d-a4c7-4b08-8158-f5baa79695a4','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',26,20,17,0,'2024-12-28 21:42:28.180','2025-01-06 20:09:34.953','655935224-1-2'),
('d8bc5150-9565-4bdd-ac9c-b8d9cf8040cc','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-3'),
('d8c0302f-14cc-401f-a768-24134f81de60','b33c0371-be03-4af2-8c49-7adc620602f6',56,76,102,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-2-3'),
('d8c217a6-5204-4b3c-a07c-860b1b2d6477','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-9'),
('d8c68938-0cb5-4589-8fd5-42633880e1ce','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',45,4,211,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-2-11'),
('d8c84ad1-492f-452c-b2ca-761d352c62cc','44473b9b-ccf0-4acc-bdd8-c81f1d8d7bda',86,60,225,0,'2025-07-26 07:40:15.482','2025-08-05 14:06:23.753','478423651-1-3'),
('d8c999ef-7a40-430a-b924-105c0b2fc646','b2f8f32b-0237-432e-8bd0-32e1fb3aa55d',0,0,0,0,'2025-01-20 11:21:15.559','2025-01-31 12:16:32.601','74565941-4-18'),
('d8ca5a91-58f3-4742-900f-f69cce7a19a6','a7202744-dd74-4e29-bc02-78baa3dbbb1e',101,53,73,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-3-3'),
('d8cac164-b46c-4d15-968c-4f12297c9dc8','7afc8da4-5eda-4e4e-b6ca-e7b2aa75e00a',98,225,70,0,'2025-04-11 13:41:57.197','2025-04-23 08:12:45.151','371102325-1-1'),
('d8cb6af1-82f5-4427-a097-149ed7e7ea0c','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-31'),
('d8cc6582-3983-4cde-84a5-2f7e7607b9d1','50517437-8e4d-49e3-bf9b-a6221588b05f',0,0,0,0,'2024-05-11 08:11:37.517','2024-05-31 10:16:39.587','478319922-1-4'),
('d8cde71d-0836-4d46-913f-ccfadf720212','6a2d762e-11cd-4fca-b32d-cdba41391e25',212,9,48,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-19'),
('d8cf59b7-0c4c-4943-8536-3bee66950a2c','606c066b-6c9f-4c5a-a289-3e2660cecc37',0,0,0,0,NULL,NULL,'517274063-2-1'),
('d8d5729b-6f8f-48ed-bb22-217d1e28b73d','6162f09a-c875-44a3-a309-7f63d0880087',58,103,56,0,NULL,NULL,'614597563-1-4'),
('d8d7c3f0-4e14-4e93-9d64-cba5a80941d6','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:11.616','248135683-1-199'),
('d8d803ee-fb52-41bb-a305-d7b4423c75b0','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-18'),
('d8dbbac3-5c60-41f9-8780-450a406885a2','5b795704-7a12-43c9-be8a-1886aa6ee9e0',99,135,65,0,'2025-09-16 16:29:09.654','2025-10-04 13:57:23.933','437998346-1-1'),
('d8dc02b5-8330-4c52-ad20-23d497cd5041','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.822','223853931-1-12'),
('d8dc60d5-125e-4083-8b0c-04e7701507b0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-206'),
('d8dd8516-f352-4be9-8d1d-55be4b787722','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-7'),
('d8dff61c-b519-415e-b8a8-a71b8a702ef4','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-22'),
('d8e0e818-7460-4f11-b8d3-03f44c2eaf6e','9d081d24-06c5-4cee-b0ab-52ddef98e867',0,0,0,0,'2024-12-28 21:42:23.524','2025-01-07 10:35:37.747','501247386-1-5'),
('d8e66fe1-11c7-4663-966b-976c44ff1232','c0fe0399-dd85-4397-854c-745020ab9c38',170,120,60,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-4-3'),
('d8eb7c08-ad13-4687-86e7-c1f831be143b','f7591348-7d95-45d1-8a05-cc0376cdc4d0',74,183,9,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-8-5'),
('d8ed6241-7268-4390-9880-0dd2fea86d8f','898bffc9-631d-4f04-b4f5-ed3faa6efd68',70,100,240,0,'2025-01-20 11:21:19.102','2025-01-31 12:16:16.902','428222834-1-3'),
('d8edb20d-0a8f-4a4f-ba6c-67991296ef56','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:15.751','248135683-2-38'),
('d8f0a1df-0303-4467-ab9d-710ee9c77776','31ae1da0-0ec2-4d89-86f3-f97ab9fd9e36',59,62,89,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-1-3'),
('d8f120b7-fe11-47c9-9bf3-8f5fc8fb3e80','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-27'),
('d8f29dd6-5c17-400b-a71b-14c45819e7b0','aca0a822-86a6-4946-95ce-feb7de5fb68e',97,93,65,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-3-6'),
('d8f2a0c2-8d65-4cd7-8368-71a0d75492c8','5d03f819-f7e6-4cdd-aa5d-ca38ac9f6b4c',0,0,0,0,'2025-07-02 12:43:27.646','2025-07-22 10:19:34.420','501423957-1-4'),
('d8f2ca8c-601b-45c8-921b-d8184dccee84','bcfdaa86-6833-4592-8adc-dd341fde927c',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-3-7'),
('d8f40dc7-f1d1-495d-a1e1-7e29ee8787f0','5a89fae8-525a-4de4-8188-2f4d7c892e74',5,70,46,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-6'),
('d8f683a7-8a0e-4834-9fb5-72f900eaf109','052ad905-3da0-483a-aae7-9d36b31da379',190,41,15,0,'2024-05-10 18:49:19.453','2024-05-27 19:19:11.570','428122550-1-9'),
('d8f69540-1fd1-4287-a6ba-ecd44796fc87','9edb0c9e-c517-46ac-b46f-908df1462d7c',35,106,216,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.569','598320188-5-4'),
('d8f7b7f2-419b-45a6-b23e-65e33d2e77cb','6d7b0b6c-ea00-4551-8f7d-3d248946ff1b',186,96,6,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-1-3'),
('d8f8621d-62a8-4148-8430-6825c26a60be','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:47.728','248284003-1-145'),
('d8f8860e-4ed2-4587-83a6-79d084d4f1af','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-88'),
('d8f8ad86-79ef-4f0c-87c5-54b93f12607e','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-61'),
('d8fa888c-5ee1-4d0a-b016-4292f3d1fd3e','0f693f5f-e07a-4d7d-bef6-9bd2b8f99ae5',0,0,0,0,'2024-03-16 14:34:25.438','2024-03-23 06:42:46.025','248653667-1-22'),
('d8fb62c7-e2ee-4a95-8dc6-1806bdbcbff9','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-71'),
('d8fb9b24-d4ca-4d1f-a4c4-8dbac0bca52e','e9a2dbd0-228e-4a5f-a419-efe3b306e5f7',96,206,7,0,NULL,NULL,'221817193-2-3'),
('d8fd1353-7569-4ec4-9c8a-9735d967ac03','bd176b24-f129-40d4-8c33-6b35eded0fad',56,13,83,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-1'),
('d8fd8258-0ae5-4880-9844-2acdf05d1d95','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.928','47836811-1-10'),
('d8fd8fb4-4407-489c-b6bd-e0911bede73f','c2e59836-c823-41bf-b343-b3df9dfc91f8',90,80,90,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.408','465500768-1-13'),
('d8ff57e6-5fef-484d-b8e0-b4461401371c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.304','223444495-1-92'),
('d8ff6052-c1d9-4f93-b6ab-7a9195b22f61','04a36510-63ca-4efa-a512-48c8c5100721',0,0,0,0,'2025-04-21 06:13:09.755','2025-05-04 22:43:52.407','412411011-1-4'),
('d8ffff09-7d6d-48b5-9ad3-3470137f06cd','5acbde88-dafc-4c21-ac17-d9730a373cef',44,20,80,0,'2025-10-02 06:45:44.373','2025-10-15 20:05:09.396','338286320-2-1'),
('d90009d3-5e4b-4395-8667-43db5564a5f9','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-89'),
('d900e0e3-2d84-4540-aa05-ae16056d7642','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',63,13,20,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-8'),
('d9022e7c-0a68-42a1-8afb-569359225e8a','d55d2e95-9872-4d09-82e1-d78ed10c9ec3',0,0,0,0,'2025-02-13 20:43:39.053','2025-02-25 17:03:29.863','745959029-2-2'),
('d902d246-28d9-4136-93c0-41ef2a05ad3f','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-25'),
('d9058246-d822-484c-b9d6-972f554afb47','97b1661c-0eb2-4ba7-a6ca-ca2e302cfeb6',51,51,77,0,NULL,NULL,'50552381-1-3'),
('d9063dc6-dea3-4e6e-9797-d37e94a19173','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-5'),
('d90ccb60-0696-4024-bd6b-43d121e7a6c3','f1d0b634-e6e0-4b6a-a561-feb245a87cb1',230,100,75,0,'2024-03-31 17:54:54.854','2024-04-17 10:16:37.203','455568872-1-4'),
('d914412e-e648-4d4f-9b45-e3e5134a2730','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-119'),
('d91739ef-063e-4fc9-84c9-8f4c5083434b','0009aeec-e682-465c-b701-363a3ef377a6',62,72,103,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-79'),
('d9196f3b-1f42-4964-b3b4-05be90629d1a','e8e041d5-7390-45f3-b4cc-314402912762',0,0,0,0,'2024-05-10 18:50:14.993','2024-06-04 14:24:46.948','478261585-1-2'),
('d91b8431-795c-47ba-8f31-68281e63f9f4','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',43,36,53,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-13'),
('d91be4e5-0c1f-4479-8b91-b716f38d6001','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-57'),
('d9227bbd-a801-44a3-9441-b47d77e64df7','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-150'),
('d9258b42-dcba-4605-b201-fa97803542fd','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-5'),
('d9294b47-cffd-49cb-8478-f179b3f7ae69','00211013-0535-4518-a5a9-4baaa292122e',51,51,77,0,NULL,NULL,'644667834-1-2'),
('d92aeacf-a3b3-4433-8f63-d8495aa33dee','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-43'),
('d92b50e7-3c30-4911-ac15-0e73a640f0f2','c512880f-476f-401f-801a-a1fa72ec0ad0',90,26,190,0,NULL,NULL,'478892203-4-5'),
('d92b7b73-aa3f-46b2-9219-ffe36c918535','39e3c574-5864-47ea-a675-a89e703a9be1',78,200,29,0,'2024-11-08 17:37:39.631','2024-11-23 08:31:57.523','982292057-1-3'),
('d92bdf42-7f04-4c1b-b25e-19e50a39b1df','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.591','371716908-3-7'),
('d9375539-cf94-4694-81c5-48112fb70945','c994a04f-2197-4b30-bd79-9b5c322eba88',95,90,75,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-6-2'),
('d938cf55-ffd1-4a1d-9ba0-576aeeaf7d4c','336ebf26-5fdf-43e6-8c1a-af40be244d84',67,66,85,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-2-2'),
('d93ae3a1-af42-4100-a527-79314de5ccf1','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.272','248450889-1-14'),
('d93bb77c-9b03-4ffa-9b41-9d4da2636db5','b55602e5-8dff-4702-941e-3ee46c8104e1',0,0,0,0,'2025-02-27 16:45:44.002','2025-03-10 13:01:45.189','745935889-2-4'),
('d93ee933-a074-4b6c-a575-10dad20a831e','ca2ff828-d1c9-4075-8a8b-f7ba8d75f04d',1600,100,100,0,'2024-03-14 13:50:30.308','2024-03-22 07:36:25.455','248810550-1-1'),
('d9412421-8202-498d-873a-b3d3e994df0f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-154'),
('d9419d09-e370-4f8b-89ae-c4f21c0110e6','e0251f39-fdfb-4a10-8cd6-82c7fe45e07f',95,240,73,0,'2025-07-02 12:43:28.763','2025-07-22 10:19:20.310','319275080-1-2'),
('d94203f1-516f-4482-9b4f-03bcafd8d6a5','2a6d5636-3ebb-42ef-bc3a-347b6aaccdee',130,190,12,0,'2024-12-28 21:42:18.051','2025-01-07 17:28:42.440','614200423-1-1'),
('d942ba67-0a76-4bfb-b800-5292e83b3c5d','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-2'),
('d945902f-bfe7-4f6b-8102-3565a39c5888','9fa21250-9753-4784-b45e-6a96c940a504',124,104,70,0,'2025-09-26 12:39:08.213','2025-10-09 09:25:06.590','371716908-2-4'),
('d9490b66-f1d3-4fc9-8599-05a79cf0000e','59abcbf6-72f2-4d32-b4c6-de60ef28c0bb',100,93,60,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.981','221191139-2-3'),
('d94b3e16-c5d7-440b-aed0-61c807772290','f0485a78-951c-4f89-bddf-b2003f0bf783',64,65,85,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-60'),
('d94b7499-f333-409e-953a-03019321ed9c','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-24'),
('d94bfd58-58cc-4d82-bab2-7d3688881aac','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-76'),
('d94e2e5d-5097-44e1-abad-e8454172f141','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-5'),
('d9532541-c0a2-452d-a88d-253ed3bc81ab','2d6f3930-2db7-45ad-a3bd-8dcec84dc66f',100,200,33,0,'2025-08-07 16:52:29.397','2025-08-21 21:29:28.224','745747218-1-3'),
('d9539077-a91c-4573-80ea-d85699a8b809','a135c145-15f3-450a-819b-e82b427bc978',101,16,169,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-13'),
('d957de57-0814-488b-a929-fa0b545474af','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-71'),
('d959a61d-2203-48ed-b508-2a4e4409826f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-69'),
('d95c7c31-8f0b-4d56-9fe5-79c7fd6b264d','cc81edcd-ad63-47e1-a989-8ed1f6097722',44,44,73,0,NULL,NULL,'37151088-1-3'),
('d95d2023-70aa-489b-8c4a-03ece72e2fee','d1aedf1e-b5d5-4c6c-8c6b-7898e66abaa3',73,52,100,0,'2025-10-02 06:45:45.668','2025-10-16 15:46:43.298','465634666-1-3'),
('d95e0e46-bf00-4ddb-a045-5925d0b6f438','06036ad4-83e0-4244-a783-5ad208e02a0b',53,103,76,0,'2025-07-02 12:43:39.481','2025-07-18 17:08:45.020','371282604-1-2'),
('d9604ba3-c15b-4cc0-a3ab-94358fc32b97','980127cc-cb0b-4694-b945-70457774323b',50,40,191,0,'2025-05-23 14:05:43.401','2025-06-04 19:42:23.079','203519424-3-5'),
('d9638f1a-6095-4b81-9d13-29f4d1df485a','d3d4bfdd-72be-46ff-be79-662e22aba9f9',225,75,100,0,'2025-08-25 12:32:29.250','2025-09-20 18:54:33.575','478983907-3-2'),
('d96aa7b6-72de-48bd-951f-65800a5ce02e','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-24'),
('d9787ed5-e6fc-4a29-904e-f5ce46c53cf6','2ab41284-325e-4735-a02e-0af4784fee90',82,207,2,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-12'),
('d97a964f-bd29-46df-9c6c-bde67a1e01ac','e6f73d54-f93a-41d1-bbef-8930d53eb399',82,57,101,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-1'),
('d97b7e9c-1418-4032-a526-b9ec492e69ce','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',225,93,83,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-14'),
('d97efe37-3f7a-4214-8255-d2bbcfedfe91','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-81'),
('d97f351b-b7e3-4bba-895a-fc925fd1a62d','e8dc151e-1148-4a48-ac2a-d4fb2c761969',120,31,14,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.545','428178028-2-12'),
('d97fee30-3a44-4c24-be86-b9e486b9a715','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-108'),
('d9832c79-0497-4c12-84e0-fdd12dc43005','4d774313-0c57-42b4-b263-88ca731f6f72',55,79,101,0,'2025-10-14 06:22:27.267','2025-10-25 09:00:41.405','817288476-1-2'),
('d985aff3-4b50-4083-9071-cdeed2006bfc','0009aeec-e682-465c-b701-363a3ef377a6',85,90,8,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-80'),
('d99382cc-58cd-4bc0-83f1-9138c6d93107','81ff8563-ab6e-4bad-a81d-a451ba94d6a6',65,77,90,0,'2025-10-06 07:10:21.386','2025-10-17 06:12:49.749','644606140-2-5'),
('d9946d91-ec7a-4cac-940c-f0eacc54b7ff','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-27'),
('d9953358-dc86-4fb8-a4e5-92a11588b807','5863ff3a-c04d-4de1-9dee-bc92ece85d88',73,100,54,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-2-3'),
('d997c0a4-dd23-423b-80d2-565b435f8a71','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-27'),
('d997cf6f-a51f-425d-b75a-4315000f2681','ea8986de-3ed1-4479-87c4-cb7fd27123c1',87,87,9,0,'2025-08-14 10:05:42.926','2025-08-29 16:53:24.935','221850151-4-2'),
('d999706e-ea22-43cb-9249-48ae99e427df','c701ed0d-e722-4e4d-a783-3461ca228a9d',57,80,109,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-4-3'),
('d99b10b5-2ad3-4ab6-afbc-3211c54a1352','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-6'),
('d99ce1a7-4128-4248-b96f-1a343fca245b','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-56'),
('d99d3a59-ac12-415b-9479-a2d7c4982f77','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-50'),
('d99e9880-40a6-49fe-8b73-b12ddc5dcb5f','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-12'),
('d9a447a1-4d3f-4492-9186-7ed3bfbf758f','53924259-8949-4b83-8f78-011a92bfc95a',60,115,10,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-1-1'),
('d9a5c4d1-a63a-43e5-9e9e-60a78f150675','92a145d8-7167-461b-8674-419e94785674',23,18,13,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-5'),
('d9a8f2c4-272f-40d5-8f9f-55f06aae2bbf','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-6'),
('d9a9f3bc-1637-4609-aefa-d59cf7cdca5c','606b177a-2516-4ee8-8a97-7fcc5be07957',51,51,77,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-1-4'),
('d9ad70da-99ef-44ce-bf10-4feb75dbd021','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',70,100,75,0,NULL,NULL,'504809900-2-5'),
('d9b2342a-1aa1-4749-b3a1-4880458b8378','2694c763-03c7-478b-85c3-a639c728d0e7',95,95,65,0,'2025-08-27 19:39:53.520','2025-09-06 17:54:10.928','644975430-1-5'),
('d9b2cc23-102a-4ef4-ad9c-5401eb1d8832','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-20'),
('d9b8e487-67d3-4047-81c4-2b6186d46213','2ca96c7e-3caa-406a-be2c-51c79573e194',0,0,0,0,'2024-12-23 11:59:59.352','2025-01-11 09:48:39.309','735143086-1-3'),
('d9baac50-6b8e-4292-852b-f8b437859b42','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.663','42873500-1-11'),
('d9bd1655-06c1-4de5-a0aa-0d596e81423c','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.279','223379282-1-25'),
('d9c2468d-9e32-4eb8-aa64-69002ed16cd7','05b97ce2-a737-45d6-a444-20708de6bbba',66,51,80,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-6'),
('d9c2e8fe-b324-4a65-a23e-97f156451c21','0a4d7445-7625-47e2-9f91-e881dc6494ce',90,72,102,0,'2025-10-22 13:06:52.544',NULL,'786146097-2-3'),
('d9c436d7-1cc0-4994-9366-776eacddaba7','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-11'),
('d9c45e87-3022-4edd-b47e-70f5a47427d8','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.334','734965369-1-21'),
('d9c4769e-c83d-45fc-b873-5e6711bb8575','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-26'),
('d9c7e903-c5b6-4e74-8ac7-05fe3d4f529c','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-16'),
('d9c96183-5d3d-47e3-bf92-ce8e162056f2','12a4b68e-a96e-444c-b55b-5688b36532fa',83,57,100,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-2-3'),
('d9cc6d5e-6e05-48b7-a4d2-143f002499e7','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-5'),
('d9ce8fb2-00a7-4b2f-acb4-eed91a7a00cd','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-10'),
('d9cf2b36-18f1-47f9-b390-8ef52e2718e8','a2fe1c58-2fa6-4ab3-9db3-e2746fb8e9ab',0,0,0,0,'2024-04-27 08:45:27.409','2024-05-08 21:07:56.622','478979004-1-3'),
('d9d7339a-80f7-472a-9131-b33b8941b464','6fcd8160-ca06-46ab-a691-51de5c394793',47,8,84,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-24'),
('d9dca9ba-233c-4171-ad36-d07ec9846eda','c01d9e07-371b-45a7-a83f-217b42fc1fd5',72,100,54,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.265','644593040-1-3'),
('d9dd90ed-79e7-42ed-b0f9-5457d7f70270','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-41'),
('d9dd98d7-9c82-4ac2-ba46-935a22e7dc4e','9e55f6ba-9fbd-408f-8f31-c85b9997fd4b',97,67,227,0,NULL,NULL,'371364319-2-1'),
('d9df85a1-e79b-453f-9139-1afc2a6b9e0e','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-7'),
('d9e2c89b-fc93-42c2-bf60-1cbcb1399848','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-7'),
('d9e44024-cd43-476f-9511-938b22c4a8f0','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-6'),
('d9e68abc-13cf-4687-92ce-5377e72369e6','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-1-8'),
('d9e82669-40b3-4ce9-9754-53c47c877b14','a34e86a8-520f-45c7-9873-449302cce2c8',51,51,77,0,NULL,NULL,'221574787-1-1'),
('d9e9a346-2b0f-4eca-ac30-82201f4853a0','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:12.129','248135683-1-22'),
('d9eb725b-1708-469c-b0c1-3e42163e490c','9cc1860d-055e-43c8-9aca-a2085133ca71',75,110,110,0,'2024-11-25 08:29:14.494','2024-12-03 10:00:03.182','338678802-1-3'),
('d9eda05c-680e-46d9-b334-abfa7ca7ff61','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-18'),
('d9f089de-4852-4110-a72f-ac44f78a05d1','330c7e9f-37b4-4c76-be3d-cc5ead44c1b3',32,215,20,0,'2025-01-26 10:54:21.565','2025-02-10 14:16:27.212','428341956-1-2'),
('d9f10e7d-4580-4918-a380-7488c6c00a60','d0ade823-74de-4507-8f72-ff3352af4bbf',166,22,10,0,NULL,NULL,'428407424-1-2'),
('d9f12103-dbf1-4f86-aca0-e49a54f3d88c','b8e1c00e-2430-4417-9a2f-f583e3a37b18',51,51,68,0,'2025-04-15 16:01:32.250','2025-04-26 17:56:06.990','613786429-1-1'),
('d9f1c21d-ad4f-488e-8302-34ffcd8ad515','fa67de56-43a3-49a9-94f2-09d5fa9ec349',100,53,73,0,'2025-10-02 06:45:24.859','2025-10-14 05:37:27.072','428696149-7-1'),
('d9f2ced3-3b1c-4583-b982-47c586055754','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.991','2025-03-18 18:32:54.342','644890175-2-5'),
('d9f38202-a609-4d95-ae6c-798d6e68ce16','fcc0d1fb-e7c2-481d-8e13-58a0debd1ee0',51,50,76,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-3-3'),
('d9f4bfe9-e86c-45e2-95b9-7ed0c42db3d2','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-19'),
('d9f59c4d-ca51-4c83-a2ef-8e042cdeafd9','21597819-379c-4b5b-9810-48af5d669d4b',0,0,0,0,'2024-12-01 06:48:07.774','2024-12-10 12:36:04.970','478415751-1-4'),
('d9f63119-5dc0-493f-90c5-6d5f0cfa1010','fe542976-fc97-4189-a192-853285ba7bc6',56,105,82,0,NULL,NULL,'478892203-5-3'),
('d9f8d0fd-4fe7-43f2-ae1f-fb962288e0ea','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-13'),
('d9f905f2-86ee-45bd-998f-f682ec80b84e','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-58'),
('d9fb2ac1-be97-4969-b358-93263e4f5ac9','565f6966-f194-4d7c-8b20-64502045078d',64,55,50,0,NULL,NULL,'478350685-2-16'),
('d9fbd656-5fc3-4304-8978-8b0f5991a706','324936f5-0640-4048-8641-e1550a228838',21,46,22,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-17'),
('d9fc87db-f881-48b5-ae0e-96807d2ce80a','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-128'),
('d9fcbb3b-9e3e-4c39-9f5b-81acf4bd42c8','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.062','2024-11-09 11:12:20.375','248259363-1-7'),
('d9fda7ce-f95f-4c2f-a644-2f58e9a5113a','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-11'),
('da00f2ec-76b1-4e01-909c-056f8083a881','aea46c6f-d094-49c7-9663-2051def3cd74',58,39,30,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-3-1'),
('da013c92-1229-4a50-b738-40a369b1a15e','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-85'),
('da02253f-0a37-402f-846d-af8d0cad6c61','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-4'),
('da044895-86a0-4802-be27-09e1177fd7bb','84e96d11-c558-4787-b50a-0c3bbea0023f',0,0,0,0,NULL,NULL,'644563405-2-2'),
('da079762-ab03-48c8-8611-cfd6cd9ab8a3','c7fce8c7-acfd-4c12-8db5-81618a4b211d',64,10,10,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.872','830611219-1-25'),
('da079c76-91a9-4241-83f4-0388b0059a2c','31a46914-f0d0-42bc-9a57-838b3227c099',80,70,85,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-2-4'),
('da0a34db-6d20-4f6b-b1a7-43fee701df96','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-52'),
('da0bfa4a-ac71-40bb-8c30-633afb9c1673','085b8abe-140c-4e7a-a52b-57b804c24627',98,98,80,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-1-3'),
('da112bb4-73bd-42d6-b0e2-b9bf08f176d2','cb5cec25-5b62-4dad-a765-ec7410ef47d3',0,0,0,0,'2024-07-20 16:33:26.240','2024-07-27 08:40:46.356','428879207-1-3'),
('da126950-2eab-4374-9fe7-7d2c1afc8563','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',57,30,77,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-1'),
('da18597d-b9b3-451a-a96b-433826028b90','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-23'),
('da1bcc4d-f69a-4098-ad6a-3f67177f35bb','b4914894-38ba-4b92-a3d4-567b3e8d166f',20,126,171,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-2-4'),
('da1c324e-ea5f-4c2b-aa37-9a4454695ecb','78bc1f73-54ce-4835-834d-a9fdc8205009',82,123,8,0,'2025-08-27 19:39:56.966','2025-09-06 07:19:27.342','613391684-1-3'),
('da1c8b51-93bd-4187-aa69-ef55360e4acd','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:47.468','248284003-1-154'),
('da1ce3c7-df9c-4d7f-bc33-714e62698cf6','fdf16f88-69c1-48dc-8781-5ef64e6edbfa',0,0,0,0,'2025-02-23 12:39:19.931','2025-03-05 14:40:41.541','745523335-1-2'),
('da1d412e-9e6c-4e6a-9965-55dc0e6ddebe','39e33ee0-0790-4b60-909a-d98610bc0a69',0,0,0,0,'2025-01-20 11:21:35.774','2025-01-28 15:18:53.184','478966296-1-2'),
('da21584c-bc13-4449-8a18-7fa3ad59b881','7b46bf4a-5ce1-4ec9-a494-a8f2948495dc',75,109,51,0,'2024-11-08 17:37:54.790','2024-11-21 12:40:15.277','982446186-1-3'),
('da2166ac-3983-4d41-94b0-6e5764da1c62','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.326','2024-09-03 15:32:53.773','655307091-1-81'),
('da287d05-7fc7-4fa4-8021-3bfa6dbc193b','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-20'),
('da2e44ac-ae2f-400a-aeff-47bdb4c295dd','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,91,18,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-6'),
('da350584-aa4f-43ba-abf9-d3780b683ff2','fc6979fc-a14e-4764-a9c1-5e69d11573cb',51,52,77,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-7-3'),
('da37cec7-666a-4bff-910d-a0d9b3974c0e','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-2'),
('da37e236-de94-40bb-9524-9855aa7967d2','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-3'),
('da4123d9-2fed-43d3-acc9-0fad2205add5','9f9f808a-df35-43e9-9547-e5a703a5fb49',100,125,65,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-5'),
('da42a86a-e54e-498e-b584-86992672184a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-14'),
('da437ba1-61d2-4d7f-a06c-0026d25bed9a','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',240,70,90,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.198','982555492-1-5'),
('da46b2ac-4997-4f3d-a031-3ad633cb1923','189b9e28-3fea-4905-9c4f-022b3f29043d',97,80,70,0,'2025-10-08 17:43:34.937','2025-10-17 06:14:56.162','531629494-1-2'),
('da46d8e5-2d51-4efb-a9aa-58fbd8468ec1','e51262e7-d967-4d4c-89ce-5959d794fa71',71,91,61,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-2-3'),
('da4b8bb7-4995-4fd7-b81c-47efabc4b349','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.923','2025-09-25 06:55:47.161','223254418-1-106'),
('da4d7f60-5fb0-4c8b-8c8e-b7c941f46273','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.304','223444495-1-90'),
('da4f96ec-ff49-4ff2-9a77-4f2ea36f1001','5c487410-f906-4e14-a077-9f060026719e',138,28,39,0,'2024-08-21 14:53:19.506','2024-08-31 16:53:18.268','703183067-1-13'),
('da51b9d5-f594-46b9-8252-d535a0770a4a','f0a43129-5f51-488f-bd5f-ebd20137e40e',0,0,0,0,'2024-11-12 16:15:37.508','2024-11-23 19:56:09.399','745940979-1-4'),
('da52b846-a26e-42dc-bff4-befc02f54613','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-62'),
('da5381aa-6e67-4ce2-93f1-cf2e309cb98f','8deacde5-3bb8-4300-9f05-ea02527065c5',50,30,262,0,NULL,NULL,'449181756-1-1'),
('da566064-5604-45eb-828b-3fe95d9e033a','047bf09d-242b-472b-97f8-46901b73eea9',62,17,127,0,NULL,NULL,'428905379-1-8'),
('da56dda0-2ccb-480a-8ddc-d600a3450a59','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',160,200,30,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.259','449208438-1-7'),
('da5dd51a-0592-4b53-9eb3-ca61ad4b52b0','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-131'),
('da5fac6f-2d4e-4ba7-b28d-389bf2248078','ca1e32aa-cec8-4f14-93d0-2c97acad37ee',65,52,80,0,'2025-09-26 12:39:08.214','2025-10-09 09:25:06.591','371716908-3-8'),
('da5fb05a-fb2c-407b-92ad-f5e24a8922bf','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-5'),
('da620039-26f4-40c0-9c14-5a8f753e7d75','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.695','2024-05-23 11:41:36.078','449902693-1-20'),
('da63d7f8-6488-430d-a643-9d80a13f4203','a9ce9135-b72e-492d-a974-bd7c7ab64347',102,57,83,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-2-3'),
('da63eee3-a2ca-4ca7-84cf-e5216706ae6c','9d081d24-06c5-4cee-b0ab-52ddef98e867',49,193,7,0,'2024-12-28 21:42:23.524','2025-01-07 10:35:37.747','501247386-1-1'),
('da64ed75-6315-4588-b6fe-b22711677665','3f5d6e3d-9766-4dd9-bc8f-e78f86e9e176',0,0,0,0,'2024-05-13 13:11:46.129','2024-05-29 18:59:01.872','126938963-1-9'),
('da697dc9-aba6-4cc5-b601-3c8b2dd89e6d','d48dec8a-c7d4-4ff4-afc6-cca047d2de32',113,140,7,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-2-3'),
('da69fcf5-cd22-45a6-ae6a-c7cb90132e0e','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-72'),
('da6b4120-1311-4b46-87fe-a0a8527be334','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.873','2025-09-08 05:04:07.658','478901590-1-7'),
('da6f900f-3939-4d33-b226-215e19c0e868','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-62'),
('da6f999b-7b24-46c3-b567-f33893234708','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-40'),
('da71df6d-7ff6-4195-9a95-f1c8784de2d0','6883e1aa-61cc-4415-a95f-c2a814c5b3ce',0,0,0,0,NULL,NULL,'140421350-1-5'),
('da71fcbd-1ad9-4bcc-b515-4a3b3b9f2ea9','fcd5b9e3-a767-489e-81ee-c8f7b3fbb1cf',0,0,0,0,'2025-09-02 14:49:05.749','2025-09-12 19:46:57.040','644391223-2-1'),
('da73255d-521a-4da6-ac0c-1c69e35b1ff4','a1b5bcba-4550-4a5b-91d4-912ad7be4749',0,0,0,0,'2024-08-07 15:02:55.747','2024-08-15 13:56:04.655','745799900-1-2'),
('da746c28-f288-4bba-8392-185035c600b9','4e2fd6bf-5f94-4ac0-9445-fed3d566f08f',80,80,8,0,'2025-10-22 13:06:54.380',NULL,'613568438-1-4'),
('da781ef0-742e-4f57-b18f-10a15085efa2','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.822','223853931-1-76'),
('da782f4d-7248-4d89-90bc-e813ae1a8591','3ffe199c-d990-49fa-8892-2e9910fe8713',115,115,70,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-4'),
('da7b9018-ae1c-414e-b12b-e56e8a2bb6be','0bd42145-fdd8-4793-a5cd-a2e404d37142',215,25,10,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-17'),
('da7ea9c9-5d40-4439-b2f4-566ed10b6846','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-4'),
('da7ecab7-cf0e-4d47-ad64-b56bceaa4d7d','721ec873-4d95-4408-83ba-db107635ba55',0,0,0,0,'2024-12-23 12:00:26.402','2025-01-09 13:53:26.326','73529249-1-3'),
('da802d53-09ca-4932-8bc8-018719aafd26','aee64134-9c4a-4a5e-a933-2ec271b9144b',52,70,80,0,'2025-10-22 13:06:53.604',NULL,'613721320-1-2'),
('da80b2bc-5952-4f10-945c-8978e496c7e5','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',46,198,8,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-9'),
('da80e40d-d305-4af4-bfc4-41c38e4d4d0f','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-32'),
('da83b1e3-699d-4a09-9b2d-394730342e8b','886e0e1a-c599-47ba-bacc-c329212cc55b',4,43,210,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-18'),
('da872817-82ec-4229-9923-67de67a63f7a','499d0b9c-415e-4469-9571-09b4cb8f3559',52,201,107,0,'2025-04-15 16:01:49.383','2025-04-25 09:51:57.803','644653549-1-1'),
('da88c7a8-fa4c-4cb8-97f5-77fc08612c0c','97e2aa48-61f5-4871-a432-6b4e926e3487',190,105,6,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-4-3'),
('da8a200f-fa85-4948-8dab-25f19878b6d2','7dbfac68-a166-481d-9984-d7ec9291dc46',85,57,101,0,NULL,NULL,'808690841-2-6'),
('da8a763d-a073-4c92-bc20-b58407625db9','8c3a9387-2db4-400b-95fa-11aef6c745f6',48,39,38,0,'2024-08-21 14:53:24.604','2024-08-31 08:01:45.893','501766543-1-18'),
('da8e482a-c3d6-44b4-83bb-ed8e02ef837b','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',100,70,70,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.110','412129107-1-11'),
('da91b465-7ceb-4a70-a90e-9abf0590c294','903795d1-74c0-4123-a09d-00392e52b276',56,81,101,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-3-3'),
('da934c7a-d406-432b-a0a0-6d350bb5c4ab','a3bf1b4b-19f0-4547-abec-82eb48474c5f',105,40,43,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-3-5'),
('da943ae4-5351-44d5-ade0-d1a3bffb2d75','89054cd3-6702-45df-aaed-cce37ad10d39',80,99,84,0,'2025-04-30 14:29:12.351','2025-05-13 09:05:13.396','531724547-1-3'),
('da96a7bb-1d14-4abe-b706-fee20e792ef9','dd6fdf61-e650-45bb-980e-83d576bfac38',230,67,90,0,'2024-03-23 08:36:28.333',NULL,'982425071-1-4'),
('da97a7a5-53a5-4eab-93d2-6f701a5f5406','24e0b87c-b953-4c9a-b3d6-0e79a700836b',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-1-2'),
('da9bb169-3d6a-4369-aed4-73bcd908911f','1a0ccb48-0abc-46b0-b34e-fac7901a5459',0,0,0,0,'2024-05-29 10:12:14.769','2024-06-10 13:50:44.710','449557088-1-2'),
('da9e3933-3f64-4185-9dcb-41ab607332fa','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-1'),
('da9fa9f6-7858-4c0a-a99d-98ac07c8a291','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-94'),
('daa1cb63-ec8d-4503-a178-4d222c4a767e','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-17'),
('daa46efb-2bd0-4085-a7b7-7c2c529deca9','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-28'),
('daa70114-c621-491a-b174-715ee5c7b391','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-39'),
('daa7b5cb-f000-4ea2-bccb-31c0c0f20fb1','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-1'),
('daa8d93c-af27-4901-a1a6-ad2136cb64f2','6e7cb94f-e7b0-449c-8458-dffd274f8115',44,43,82,0,'2025-07-29 12:58:48.867','2025-08-07 07:12:44.161','371191289-1-2'),
('daaa6454-ce90-4e1e-af36-9004eb1fc76b','a2d857b1-bcf6-46ee-9e87-dabcdac62719',76,53,101,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-9'),
('daacf23c-a975-4bdb-9adb-b9eb73c5c28d','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-84'),
('daad3b98-3c1e-4310-a8c9-2a9299758cdb','f95bdefb-9393-4e36-a67f-177a26978136',31,40,216,0,NULL,NULL,'803703209-1-1'),
('daae6b89-bf00-4dcb-a889-5c0c7692a389','1841d5a2-cb6e-457a-aa34-68a1f7f98613',0,0,0,0,'2024-10-17 13:41:07.517','2024-10-23 13:04:35.248','923419994-1-5'),
('dab43cda-1ea6-4b7e-8b3b-d17079bd0db2','450834d7-78a2-4ef2-8bf7-ea6da90710d6',51,51,77,0,'2025-08-15 15:03:00.925','2025-08-21 16:37:01.898','437427529-1-3'),
('dab63e2b-23f6-44cb-93c6-f04155b931d9','1a865eff-de9e-4c81-8ad4-8c96ddfa18ff',104,119,70,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.302','371194748-1-2'),
('dabc1eb0-a634-4231-bd3e-1f6db0968903','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-59'),
('dabd8eac-1eeb-4f20-bec6-6ee50295ea5e','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',70,55,112,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-11'),
('dac59607-ff3e-4e3b-bde8-c6bc2679adab','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-39'),
('dac96066-b9a0-4d9a-873a-7c4d6392465d','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-9'),
('dace2d73-7226-4148-a065-fe9597213fee','4f7a399b-99eb-492f-9f15-315d8c3e5341',0,0,0,0,'2024-10-02 09:26:52.695','2024-10-08 20:17:48.669','12630810-1-1'),
('dad2bb6a-ff22-4f74-af1f-10f73f4e3a53','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-44'),
('dad3c7b3-a00b-4739-bc0a-6c4ba78287c1','3014e299-cf0b-48b7-8c7d-d69d3f855cf1',95,104,65,0,NULL,NULL,'428372230-2-3'),
('dad42175-4874-4a97-81da-76d1084a2b71','eae44c12-6eeb-4042-97c1-e6abf8051619',15,10,50,0,'2025-01-11 15:20:14.700','2025-01-19 14:52:05.854','982685222-3-5'),
('dad4c7ee-90f2-4a99-ae46-dfa762993ece','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-108'),
('dae07550-f829-4621-936d-12a956cc7c81','60186ff8-7392-48f6-bc4d-fcd01f0921b9',0,0,0,0,NULL,NULL,'319928581-2-1'),
('dae27a04-bcdd-4dd1-914f-f44e6828ba79','4adb1f2c-bfd9-4028-a225-f24a5b67490f',107,48,170,0,NULL,NULL,'657680010-1-1'),
('dae2d899-850b-4013-929d-4fb7dbdef8ed','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.857','248625081-1-9'),
('dae5a6e7-be47-41f8-ba64-47366257a87c','4140c031-d713-4eab-a9d3-c8f897ea7b76',70,90,75,0,'2025-10-06 07:10:18.721','2025-10-16 08:43:32.985','613787861-1-3'),
('dae75553-3bf2-40ca-b5ed-9b97055b9b41','a6c77233-c870-4a4b-ab0e-76861ad31465',60,40,51,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-3'),
('dae93014-c4e6-4351-b4e3-5c8e947a68c1','f0e43964-75b3-4eaa-8941-9cb4fed72d4c',0,0,0,0,'2025-04-11 13:41:47.605','2025-04-23 17:45:52.850','478919360-1-4'),
('dae98660-9f22-4eb2-9355-36ff877ea84c','6f008251-c003-4235-8950-f5ecedfd319a',70,97,97,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-1-3'),
('daeb2da8-e83c-4f0c-b632-c41bd2f20df3','5aac8c34-51ea-4438-b73e-7d54bf02d518',35,90,200,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-11'),
('daef3594-e9a6-40ec-99a8-b672c970b859','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-104'),
('daf38154-cebe-407a-811e-9f7af6f966e6','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',0,0,0,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-31'),
('daf3bfb5-139e-4d9c-854e-444f4f5e2545','0ca7b5c8-7608-49bc-9057-d56d835fbea5',46,7,132,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-7'),
('daf7796b-3c1a-4161-a110-15581ad56390','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-122'),
('daf77cc9-8a1c-4c13-8077-8cf3472ba57c','0e98e045-892d-4ac8-948b-d28c498ee21b',53,53,6,0,'2025-10-08 17:43:55.637','2025-10-17 20:57:44.720','750355737-1-1'),
('daf8ec47-f587-464a-ba8a-6edf9ba59470','fb7f5404-7747-4ee9-8237-cc5fb56ccdfb',70,92,230,0,'2025-03-27 15:05:24.364','2025-04-08 15:34:40.663','248853188-1-5'),
('daf90df4-c7a4-4647-9032-6f399d130900','542ee35d-c24f-4975-8b8a-369163028c10',101,55,81,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-1-2'),
('dafd6af4-1a57-4c26-81b4-0fdcf6864da5','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-1'),
('db09fb4b-e594-4d22-b387-308dad7c9b81','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',63,45,14,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-19'),
('db0a0d46-99da-4df0-8f83-74f54c103075','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-10'),
('db0b044e-4926-4ea0-98ef-30c913769ff9','9505974b-8c77-45d9-ab90-d648d60640dd',0,0,0,0,'2025-02-09 09:51:22.491','2025-02-19 18:37:19.839','745498790-1-4'),
('db0bc668-c7d5-40a6-b116-e4f05ef12ad4','c84d56f6-3232-4489-9c15-b7a6e87c3261',93,70,158,0,'2025-04-25 16:56:55.756','2025-05-03 06:22:22.042','598508016-1-1'),
('db121165-0795-4554-b632-61bc3dfc43bc','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-11'),
('db12d0cc-aca8-4598-a94f-3e078ee717ff','a4ca10e4-d4df-4d73-9e89-3d09edabcda3',39,39,44,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-3-1'),
('db1308f4-6547-4f8e-b355-7c6184611cc9','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.161','223254418-1-144'),
('db15d849-f4ce-49d9-922a-c42fdf40b0df','159c73ed-083b-4d67-98ca-6adcfc554962',142,12,196,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-22'),
('db161e44-cd87-4108-bd81-1d4b5671a8fd','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-5'),
('db164f88-4243-40a1-8c0c-ed23b8a20dfd','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-42'),
('db1bd481-ddcb-49ae-a54a-573e840b0e7d','1892069c-11f7-4d29-83b8-c0202a08220c',222,38,33,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-1-2'),
('db1fb336-3ed6-4781-b55c-127f07859841','1f47f4f7-d248-416a-a50f-29dc04cd5570',140,170,6,0,'2024-03-30 10:55:00.100','2024-04-03 08:28:11.225','982320922-1-3'),
('db20e690-0e6e-4da9-bcad-076c1778eb94','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-14'),
('db22c406-5222-4d39-9371-a756d47365d9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:12.897','248135683-1-94'),
('db24464c-2611-4cf4-aa92-8f9a89f15bfe','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-58'),
('db26befe-5a3c-4356-92de-f34993f9de2e','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',42,24,197,0,NULL,NULL,'598604443-3-6'),
('db278b23-a31f-4ffd-9fd1-83b7eb5775ef','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',38,40,22,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-5'),
('db2a2008-a0ef-4278-8587-4d6a9b04cdf0','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-5'),
('db2b25b7-f77d-49c3-8750-c6a6e1f0b809','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',42,54,16,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.909','976819499-1-23'),
('db2d1cc9-6e30-4bfc-9d21-9968081de975','0d48730c-8663-4e88-9620-5a9ce6221fdd',0,0,0,0,'2024-05-08 18:43:29.978','2024-05-21 18:45:16.795','734782763-1-9'),
('db2d4bbe-c9b0-4902-a5df-ee3c6748040a','8465c9cb-ffbe-4de2-aaad-a9d0c676a4d5',84,57,61,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-2-2'),
('db2e472b-cd41-40bc-8f5a-e338b3718e66','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.280','223379282-1-52'),
('db2f4007-6135-496e-871e-c84ce4188f33','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-36'),
('db303d29-fa9b-4a42-9a9c-65cb892c6fe1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.698','2025-08-22 10:59:14.822','223853931-1-89'),
('db32193c-4c97-46a1-beff-4399242e66d6','b367aad0-f419-47d0-a902-3531114180e3',124,68,40,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-3-5'),
('db327f2a-f3be-4f11-a089-1e17b3caab60','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-129'),
('db32f209-e12a-4c62-ba7b-e13531fa1a41','baf388d4-d2ac-46ba-bea3-c55d74a75aca',65,55,100,0,NULL,NULL,'613868869-5-1'),
('db348af1-e40b-4d86-a957-c88f7d63f41d','9212dfa8-08b3-4e92-93bd-a594eaf017b6',90,54,102,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-10'),
('db3520af-1cef-4a4e-a051-b6c4d2ca1ab3','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',53,54,48,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-1'),
('db352e20-4bb7-45c6-b44c-0416e7c96152','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-16'),
('db3b0037-cf73-4e31-811a-fb1b3e8074ab','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-16'),
('db3c3f37-1cb4-4f2b-ac49-79adf64a437c','852cb596-91b3-432f-8aee-ec6a804f3a01',45,50,215,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-5'),
('db3cd353-5573-4aa2-aa62-bcaf6997e9d9','42fd5395-333e-41d9-b425-bed94ac92dbf',68,65,85,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-2-4'),
('db3df6fa-bbed-4a5f-bbf4-8c22153d0039','8baea4cf-59e6-4595-a565-1754d9ca8bb7',92,94,65,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-4'),
('db3e8d2e-4340-468e-a85a-49b74e075458','b586b800-5234-4efe-8034-338d0734dfab',0,0,0,0,'2025-01-20 11:21:16.733','2025-01-31 12:16:25.732','478250269-1-1'),
('db3f4f55-e6fe-4775-a56a-eb6457f40712','4a90547c-6b75-4ad7-a83c-cf7308b5af24',43,26,198,0,NULL,NULL,'598138099-1-4'),
('db40c3f7-109a-41b7-a83b-46c43e412f58','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-8'),
('db46bb5c-b478-4dbe-86c8-a88f7789a2cf','5ea4b207-b05c-4931-bbd1-648b6933aae5',184,37,37,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-27'),
('db4a403b-3c0b-4309-9329-a9f9fdccc7d3','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-9'),
('db503893-52b0-452d-92f5-85022d28a023','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-63'),
('db529778-11e0-406c-bdf6-bc141ce3ab6c','3da17157-28be-4bae-8dcc-745d0e93e591',63,209,7,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-30'),
('db52d196-cd80-4a09-8f01-b8e97a4bb0af','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',62,117,7,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-61'),
('db53c277-3b21-4671-8e32-c08f242894c1','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-25'),
('db54feeb-9396-4ce6-a415-0ed14705f962','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-16'),
('db55ef72-44e5-43d5-a29c-3c2b0683c440','59466ba9-2ada-4521-948e-2d8e3bf18415',200,95,60,0,'2024-11-08 17:37:37.662','2024-11-23 23:45:30.499','982455918-1-3'),
('db59d13d-b258-4502-81c3-feb251c50324','19c23553-d606-4be4-a362-65912f3179a8',94,65,80,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-2'),
('db5d2142-3e5f-459a-ba6b-68cd5944ac89','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-202'),
('db5e2d73-4775-4796-8c30-e0b40326d780','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-63'),
('db62d567-7090-4e47-a311-9f490fc83742','735a4cf4-d192-4bae-9d7b-24bd5111fa3f',100,72,53,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.121','644550858-2-3'),
('db6459c2-a1f0-4b46-9ecf-d2c8a6ea8cf5','8ceabc6f-ce46-40c7-8fcc-4d00d4a393f1',22,54,78,0,'2025-09-30 18:45:00.314','2025-09-30 18:45:08.706','745653378-2-3'),
('db6d572d-2118-470b-b418-cd4c1ec89bac','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',81,81,3,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-7-13'),
('db730b47-30ec-4462-8865-0a997d34b2f5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-34'),
('db7670fa-3edf-4b67-9faa-08511a80cf33','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-6'),
('db785282-cf0f-48c7-86a6-d34d72d1447e','3f3bf1d2-c329-4e73-b2a6-5aa55d893969',84,87,53,0,'2024-12-23 12:00:35.871','2025-01-08 20:28:51.875','449329901-1-5'),
('db799a0f-b771-4911-8444-35ec01766c6c','766da20f-af1c-47a1-a9d1-61d9a22c827f',36,36,36,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.878','613809111-1-3'),
('db79ccb7-ff9b-4112-bf74-1fbebd23fe56','189abf96-e9a7-40c5-8f3b-f18d6182c1ae',0,0,0,0,'2024-12-28 21:42:38.559','2025-01-06 07:00:46.251','735565748-1-7'),
('db7ba0cd-5c8f-4fd6-b7da-9b0535525dda','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-59'),
('db7e7936-7603-498f-8de4-e9bf95a1e800','1ef4f8a1-1bfc-4a22-a73d-ea3d6c3b2539',0,0,0,0,'2024-08-31 16:53:36.918','2024-09-02 08:33:17.515','412903480-1-7'),
('db8162b2-f406-44c1-9800-41d8af8c0ef1','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-3'),
('db83cdd2-005b-4d84-a1cb-fb5ff08be530','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-31'),
('db83ebf6-d752-46d4-8015-5e0a76f6dedb','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-31'),
('db84d908-63ed-41b7-a5b2-54b251c9fd61','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.900','248383650-1-17'),
('db8a424e-5499-4af7-96fb-a5154b93beb6','0fe6d0bb-346d-4029-b0c9-5d01dca21872',0,0,0,0,'2025-02-03 18:18:32.727','2025-02-14 15:00:22.989','478370539-1-1'),
('db8d22b3-9075-4bcb-b400-bee8ccf33f41','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-2'),
('db8f3fd4-b7b6-4fb0-bffc-1298739f67d7','e8302a51-2bb4-4124-bff3-50276f045168',56,32,80,0,NULL,NULL,'127991361-3-3'),
('db8fee55-b7b6-41e9-9fc3-6311c021978e','a48f4957-ffc5-4309-808e-9eba40503ea8',93,163,7,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-4-3'),
('db91ac26-20fb-40f7-842d-39b95d4830c8','b2cc240f-bde3-400a-bbec-a61085853dd5',89,65,9,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.694','478867058-3-13'),
('db923dc9-64e3-4d10-ae5b-8104a253e002','528790b2-5c45-40f7-9e16-481e1a644ff1',0,0,0,0,'2025-09-06 07:20:35.293','2025-09-12 22:10:03.961','412380161-1-2'),
('db932206-d1ab-4087-8245-670184a8548d','9bdb28e0-34f9-4183-9232-5dbb14529176',0,0,0,0,'2025-02-27 16:45:16.849','2025-03-14 11:07:30.043','644823609-1-2'),
('db95e39c-6cc5-4f5f-94fa-3d5fe47ce0ee','cbf68d77-8563-4d27-83fa-23f08cf671b7',31,31,31,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-2-2'),
('db96a361-cfaa-44fc-923b-e7c43944d44a','37a97bfc-766a-4865-bc4c-1c02e1ff86e2',102,70,85,0,'2025-07-19 07:51:59.890','2025-07-29 18:00:33.036','531445058-2-5'),
('db96b19a-9e9e-40ff-9dbd-1b35ef72643c','b16256b1-d6a2-448b-a170-4c574127a57b',50,10,72,0,NULL,NULL,'745189997-3-16'),
('db96f0b4-4634-43ff-a20a-c54d9dfa4a6d','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-24'),
('db9a5bf5-f634-4f2d-84c9-092657b2bfdf','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-114'),
('db9e2542-63f9-42c0-89b7-0e4a99a3df67','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-48'),
('db9fd9a1-f57c-4a5f-af1a-a1daa3f62314','9d62bebe-af83-4e4a-9fb3-8a3ebe7c5907',0,0,0,0,NULL,NULL,'614601595-1-4'),
('dba23b62-26ed-490f-85cb-f5c009abafcc','ad97a379-cef7-47ad-bc47-f47aad13ee11',54,100,73,0,'2025-10-02 06:45:47.958','2025-10-16 15:46:55.231','644547865-2-6'),
('dba2fc25-2d71-4f5b-b79e-e789afca7c58','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',100,15,10,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-5'),
('dba38639-d95e-4aa5-99b2-9feb8930a59b','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-15'),
('dba5b811-02ed-4789-a4cc-e44abbc3d291','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-6'),
('dba6c4dc-2ece-41fb-ba66-52a04dae82d8','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-14'),
('dba77bbf-7ffa-49d6-bc1f-9f8eda3b3987','9114ad70-d53e-4d1f-89c7-30585d0a43de',200,120,140,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-34'),
('dba82f8a-4c2a-4e28-bb9c-9fca2cd43ec3','a519c64d-516b-461d-9301-4c4b7157309b',100,85,235,0,'2025-08-21 07:15:21.101','2025-09-04 06:17:02.024','428659303-1-1'),
('dba8c9e8-cd23-40ff-86e9-dc8204fd6da4','587301bb-f6b8-4a3a-b86e-0eb042e85611',0,0,0,0,NULL,NULL,'248510237-1-1'),
('dba8d498-4d0c-4782-8ce2-0698ebf6d65e','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-5'),
('dba96ca8-ef40-4b83-9a92-a5bbb3810c95','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-5'),
('dbabbaa4-d9e6-4af7-890e-c0dc84db972f','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-91'),
('dbaeb781-0e9e-499d-8bbe-b1879e9e8f3b','cb7dcc1c-0a37-4356-938e-da743c917af2',97,173,67,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-2-4'),
('dbb2f91e-beb8-4dcc-8732-af0cf79d299e','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-92'),
('dbb7d823-234c-4f1a-b860-d467396044ea','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-213'),
('dbb9b64e-8cfa-4ae4-9aeb-c9df8ece2804','ac73d19b-52b7-42a0-83e3-a4d8491f56b1',98,157,65,0,'2025-10-08 17:44:13.128','2025-10-20 06:32:30.114','644717952-1-3'),
('dbb9f17a-55d5-4b22-a486-9e3537871058','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',34,15,75,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-22'),
('dbbc7e07-b04b-424a-9f65-033b92aff61b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:13.604','248135683-1-221'),
('dbbcd0d0-79ba-4e13-8974-4e25de04b277','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',110,207,7,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-4'),
('dbc0d876-e02b-4eee-b64e-934085ee55f7','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-71'),
('dbc1d2a4-ed14-4956-88bc-f512d7e900da','b458ebf7-66fa-45cc-b0b9-12f05086077e',96,178,7,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-1-3'),
('dbc46496-44ae-4e10-a62b-2cb9361c9ca1','e7f31a78-648d-4a5e-9111-1bf7db38dd79',75,18,54,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-30'),
('dbc4d265-e32d-441a-ba4a-7436e3c0dbc9','8625abf2-719d-4d7f-b206-16948b318b8b',108,60,47,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-26'),
('dbc5a82f-bf9c-437b-8e2f-9913421a4f66','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-33'),
('dbc6d3d6-74f2-4203-b4b5-c686ba343216','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-18'),
('dbc98079-c756-432c-ab54-bf7b2cd270f4','44136ca6-13ff-486e-8ec6-5e4b2087ec35',33,33,100,0,NULL,NULL,'531481098-2-1'),
('dbccfc02-db72-491c-a7a9-94ab5a7c1a84','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-27'),
('dbcd2b22-a6ee-4044-92d8-0f37d4efe5e3','de5b9e9e-def0-4a43-8da4-04266bcc83f7',75,97,73,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-5'),
('dbd0f2a5-037b-40ee-abf9-8e7d74e6dc8c','35d424dd-3525-4794-b87b-ac6540bba404',0,0,0,0,NULL,NULL,'614941926-3-1'),
('dbd4ec9a-5b5e-4b68-b3df-ae070a56e3b5','8deacde5-3bb8-4300-9f05-ea02527065c5',160,122,7,0,NULL,NULL,'449181756-1-4'),
('dbd6dbf7-4ca7-4039-b043-5246925e78b9','9affc7b1-09c4-4e84-b48b-d0c117c421b0',202,90,26,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-25'),
('dbd74c80-f95f-414f-aced-2cca48f27141','05b97ce2-a737-45d6-a444-20708de6bbba',66,80,51,0,'2025-08-21 07:15:06.182','2025-09-03 05:42:48.743','37146102-1-1'),
('dbd82e78-9060-4f04-ac2f-c4388359768d','de5b9e9e-def0-4a43-8da4-04266bcc83f7',75,97,73,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-6'),
('dbd83c14-50f1-4634-b28d-814c85662204','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-175'),
('dbd9cb32-ead7-4308-a469-95820164efae','0dc117f7-5e70-4621-87f8-335baf3c4f19',26,102,7,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-12'),
('dbdbbd94-3943-4f20-b3a9-a76aea484e21','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-3'),
('dbdc25b7-b2c5-4fc6-8291-242b27b81227','daa88a63-2ece-4786-a082-938c1a50dfc2',240,96,85,0,'2025-02-15 13:31:41.746','2025-02-27 16:43:01.175','910759399-1-2'),
('dbdd7018-95d2-4854-aac2-7249fc22513a','46967417-5579-4330-96d2-b8546922819a',71,71,82,0,'2024-10-11 16:09:14.210','2024-10-23 13:04:08.893','428561353-1-9'),
('dbde9891-d0d6-48c4-afc7-f955ff7d07f6','30506096-717b-49d6-916d-e53b4af1ac5b',98,118,65,0,NULL,NULL,'644303406-2-4'),
('dbe0b6b5-5c1f-4984-875b-e9b53e92cdb6','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-12'),
('dbe1a58c-4b21-4dd6-9155-0ef4f9980db7','1bf9575e-5b1a-4e14-ba69-6733f80eb41b',65,59,89,0,'2025-03-27 08:02:43.912','2025-04-08 15:37:49.807','644884110-1-7'),
('dbe965a8-d1c1-46ba-84c5-5350963e96a2','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-37'),
('dbeb1f41-9eee-4dee-bb0a-cff2cc5e77bb','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-85'),
('dbf03560-3bfe-4f95-9f70-5098b27ab0d7','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.539','2024-04-04 12:47:51.274','412565065-1-28'),
('dbf56c22-4684-4826-b9d3-c30e1990b101','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',83,83,6,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-155'),
('dbf5cfb2-3a90-4395-b511-65660e26331e','fa386a83-3d1a-4d92-b1ac-072561c781fa',147,74,60,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-4-3'),
('dbfa975a-c940-4678-a74a-33bac57a3608','28a006d0-78f4-4519-9b69-fe1363cd8176',61,83,100,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-1-7'),
('dbfc8254-ab62-40df-8107-d2c03b3ef978','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-83'),
('dc00ba3e-ed6f-453e-bc2d-3580e01d6b36','832915ac-d62f-48db-b00f-8e585de422bb',35,73,192,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-7'),
('dc015b72-67f5-498a-8340-5e0bb021eb6f','5a86c4f9-0df3-4b24-8d17-99cd94250ff2',5,85,86,0,'2025-08-14 08:21:34.586','2025-08-25 07:11:01.392','221272241-1-1'),
('dc01d775-7113-47a2-9ae3-0578b01bae16','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-71'),
('dc02f471-c906-4541-81f2-e490e938385d','56ea7179-a602-4433-936e-330a27aa9423',160,200,31,0,'2025-09-26 12:39:06.062','2025-10-07 14:12:37.914','745464679-1-3'),
('dc02feac-053c-4575-9344-0eb6aa7beaac','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-8'),
('dc04f78c-8933-4b85-b157-0ce3a6f024c7','c91b4e49-5dec-4e48-a700-0b3d54b1c284',0,0,0,0,'2024-10-11 16:09:25.417','2024-10-22 11:44:24.314','745832267-1-3'),
('dc05b939-db6e-415c-be9a-1e48f803be55','f6d35da2-4b3d-47c5-b4fd-3e3ef4395c7b',51,51,78,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-3-2'),
('dc08bf32-36f1-4ddd-a3e1-610f490fec9d','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-2'),
('dc0d0c30-aa35-4f6d-858a-35e4857bb4d0','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-140'),
('dc10c9f5-a5e4-4647-8073-599993460ff4','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-25'),
('dc10fed4-21aa-440b-a833-66db9be77a40','db1e0b9a-d829-49ba-8948-a90a863b6512',54,73,101,0,'2025-10-20 07:18:19.736',NULL,'644741916-2-4'),
('dc137a06-6e9b-491c-a55b-09020cd1a93d','da066782-1e4c-4ab0-8bc2-6aa2c6bda432',0,0,0,0,'2024-09-27 14:05:31.959','2024-10-08 09:25:30.920','412968011-1-8'),
('dc159af3-43fa-4259-9a0e-fbb20938c006','543dfe18-75e0-4198-9d24-c6d0458898e8',100,93,65,0,'2025-09-12 17:16:46.407','2025-09-25 06:48:25.771','765600734-2-7'),
('dc193597-9182-4c73-acd6-1d401ce72067','ee9fb715-b428-43a4-bbcb-69a220329347',83,34,22,0,'2025-09-06 07:20:45.019','2025-09-12 22:09:23.092','371304914-1-2'),
('dc1a0082-633d-4e8a-bacc-3731b59fff1c','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-47'),
('dc1b4e6c-6760-4708-8cdf-e400b0d0b901','2538536e-94b0-499f-8945-6d56f97c2bf1',150,120,77,0,'2025-06-26 10:29:52.886','2025-07-03 11:20:19.126','64415501-2-4'),
('dc1e61dc-dec0-4902-81d5-2153a7dd9f3b','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-14'),
('dc2177d7-8436-41cb-9084-e5dda4dd4187','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-11'),
('dc26902e-8f83-4608-a717-d9aa96f8ba7f','3d736ea3-973a-4d02-ac36-6a5148cceb76',40,73,81,0,'2025-03-27 08:02:58.697','2025-04-07 17:30:01.512','43736182-1-1'),
('dc2730d1-bb46-41ef-9fd6-14c9480c32ce','012ccc8f-38c1-4572-9fa6-9074afddb4b2',0,0,0,0,NULL,NULL,'011548428-1-3'),
('dc27d6d5-b118-4af2-9c7a-aa4ed630f832','4301b768-4818-4e74-a6d0-12a33474f5c6',44,7,215,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-23'),
('dc27ec90-2f27-41b6-bd66-32f39e7015d4','3943ece7-1eba-44a5-bbe0-8a7ab3b8fb5f',55,72,101,0,'2025-10-25 08:59:13.605',NULL,'644769101-1-1'),
('dc285fbd-116c-46f1-90ab-51e33d12a1d6','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-20'),
('dc2864a8-eb0c-4c04-b509-ec3f8b428f74','883e6aaf-ccf4-4814-b2e4-afec5f99ad33',90,70,70,0,'2025-01-06 13:08:10.045','2025-01-10 16:34:01.975','910407767-1-2'),
('dc2949ae-2cc2-47f2-94ab-c01d9dae6f9b','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:48.937','248284003-1-167'),
('dc2aa815-bedf-4894-b9c6-5680c86a732c','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-161'),
('dc2b7ddf-d3ad-420e-b68e-2b5e9a9f31e2','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-5'),
('dc2bdbb6-b927-4ae3-964d-4967db899b09','16bf292d-cc10-4c60-8e1b-eb5020fba975',0,0,0,0,'2025-04-15 16:01:51.538','2025-04-25 09:51:53.684','786276080-1-4'),
('dc2ccaa8-67d7-4e8c-b9b3-b1f86871dbaa','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-235'),
('dc32a0e7-57bd-40c7-a45f-8bac4c714906','40cc1535-c3f8-45ce-9f1e-9d2626aba589',0,0,0,0,'2025-02-20 12:15:07.622','2025-03-01 14:06:58.367','982578491-1-5'),
('dc34104a-ad22-4263-8381-6fb44c4ffb3c','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-21'),
('dc34a695-96ac-472c-8eab-39b996319588','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.540','2025-10-15 08:32:47.506','745970479-2-3'),
('dc34fadb-bc47-4a40-a779-fddaa24770b7','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-2'),
('dc3b26dc-b4d1-43dd-a114-1e47f6090c5d','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-162'),
('dc3cba37-d21b-4c8a-ae60-5deb501ff78e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-61'),
('dc420a76-29cc-4bfa-a29a-00671a06a617','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',49,46,11,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-20'),
('dc42e307-fad3-422b-9594-342f9b1bc5c7','2777fe15-f59b-4ad7-ad0f-3b140f36580d',55,77,102,0,NULL,NULL,'598604443-1-1'),
('dc4436b9-8a86-465d-bef5-25ac7aed37c7','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-14'),
('dc44a7ea-65c1-4e84-822d-d5178e451af9','01be5e85-2bcb-4117-9ad4-5f2afa75468d',75,98,95,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-5'),
('dc47bb48-642a-41c9-8e95-97e5291a7860','0340b9d6-4a45-46d6-8874-35243695e9d8',45,40,50,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-1-2'),
('dc48e83e-c6aa-4326-906e-b505a266890d','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-20'),
('dc4b97cc-3ab5-4a8a-9aa0-a192c0c229c0','a48f4957-ffc5-4309-808e-9eba40503ea8',44,44,78,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-4-4'),
('dc530bf2-83c5-4a97-ae9a-c72206a314c5','db31505d-890a-49a3-ab5c-a703df1962b6',43,68,5,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-4-4'),
('dc533a4c-1947-402e-a15f-72f28735012a','46cbcfc1-c51a-492f-8b61-a2472751488a',95,87,80,0,NULL,NULL,'644495739-2-4'),
('dc54885e-4863-46b5-b69e-863983f83d47','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-24'),
('dc57de08-a4dd-465a-ad94-468088d8b2df','d18a2419-b732-4e92-af33-acb3eabdd832',62,57,84,0,'2025-06-27 17:12:08.223','2025-07-15 19:42:51.929','221139773-2-6'),
('dc5826fe-2f34-42b2-bc23-e0b04023b5bd','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',48,105,7,0,NULL,NULL,'428413605-1-17'),
('dc585d12-99d7-418b-bf50-1c9b095d8dbe','546ad3d0-25c2-43dd-9443-e48b8e5b6530',23,207,8,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-10'),
('dc617a02-d408-4d35-822b-c4470568fa95','a4f356be-d4f4-498c-9119-e35100832eb1',100,120,70,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.016','982314530-1-3'),
('dc632619-81b9-4cbb-b730-e6d2dc22d26f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.343',NULL,'22330381-1-187'),
('dc65c003-3a51-4e13-97ed-cd12dcc55236','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-98'),
('dc6619e0-81d7-439a-b859-a5be1067ccec','516b7da8-60b0-423e-ad0b-ba7b65a9acd7',123,123,67,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-2-1'),
('dc674a21-6d6a-40b9-8e25-7e22261085d2','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-56'),
('dc6835b6-bce6-4588-8b99-d77a01a89e4c','418cc5f0-94c7-4e67-85d5-2726afa3452a',203,96,5,0,'2025-04-25 16:57:22.774','2025-04-30 14:30:39.804','613976667-1-1'),
('dc690dbd-3e45-4032-b9b1-a8bbe65c812a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:14.166','248135683-1-109'),
('dc6cc0bd-0713-4798-9713-be16eaaafa46','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',25,30,10,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-31'),
('dc7007cf-6536-49a7-9231-e24adea26afa','89834bf4-a4be-4296-8bac-db24c46d63fd',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-2-4'),
('dc707993-98aa-49ba-8fa9-fdeb0f75f85f','3da17157-28be-4bae-8dcc-745d0e93e591',35,35,107,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-3'),
('dc72cf3d-d36a-4931-a58c-3ffb22162203','e65249b7-09e7-4653-bd04-1233b551b8c8',160,65,120,0,'2024-11-25 08:29:03.351','2024-12-03 21:17:08.176','319316615-1-1'),
('dc738c14-b10a-4792-8547-1f53b930bb6a','0cc39437-8ee1-47ea-87c2-b9fe770c2259',60,17,89,0,'2025-04-28 07:40:33.088','2025-05-08 07:31:06.957','248568702-1-17'),
('dc7d4720-5085-4cc5-bd1e-ac9e3f3a830e','1499adf0-273b-4001-aaf5-3741d7cad731',51,51,77,0,'2025-10-08 17:44:18.017','2025-10-20 06:32:55.985','221854185-1-1'),
('dc838667-c74f-40b7-ab7c-6b7a5a2b2328','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-21'),
('dc847f2c-9cdf-4ad4-909a-da1477b90c54','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-17'),
('dc84a89b-2038-4f96-996f-adb281d7657f','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-22'),
('dc870863-80d6-40da-8f75-cd7a58ff165c','28161c23-3870-4fcd-a91e-97c4fb7a8fb8',0,0,0,0,'2024-03-31 17:54:56.338','2024-04-17 10:16:05.103','478593603-1-4'),
('dc8726d3-1fb0-4b1f-9d50-bbeffad0ad30','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-19'),
('dc8c9103-3044-46b5-a62a-90936ad31cee','2022ec7e-3b20-4c57-99bb-9fd74367008e',0,0,0,0,'2025-05-09 18:43:52.714','2025-05-21 08:16:54.198','745817440-1-4'),
('dc8ecd66-d207-4d26-82fa-a8bb21dc1ed6','6250b44c-f7fa-458b-9059-f4fe88176786',51,55,35,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.758','644968450-2-1'),
('dc902dcc-828e-47f7-9656-8789ce43017a','43f2900d-96f1-458b-9b9e-6777ac110ab0',0,0,0,0,'2025-01-06 13:08:20.186','2025-01-09 10:06:25.424','478643015-1-4'),
('dc93ec7b-e102-4a5a-96fd-68b5c0f15053','baf388d4-d2ac-46ba-bea3-c55d74a75aca',65,55,100,0,NULL,NULL,'613868869-5-3'),
('dc96fecf-744d-4226-988b-b8f6e8f66e3f','7311f1e0-e2be-43dc-9e40-f94a010e8939',185,70,85,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-48'),
('dc98f43e-727e-4c1a-9505-b766a2118479','2926c9ac-fdc2-49fc-8a2d-aefbc6ff6b84',107,65,93,0,'2025-05-23 14:05:46.830','2025-06-04 19:42:15.628','817303639-1-5'),
('dc993f70-8d55-4029-acc4-36a9f96b0bff','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.280','223379282-1-10'),
('dca026a3-fa55-4ea7-baff-ed4b19d57916','1b975dd0-98b9-4adb-88bc-962d71cc7b22',53,72,102,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-3'),
('dca05b0d-1ef8-43b4-b0d7-6c6798ffdc7b','7aeed7d9-4ae5-4fd9-aa5c-7529961da994',150,100,70,0,'2024-04-08 08:57:53.481','2024-04-24 09:14:57.411','315164103-1-3'),
('dcaaac70-1a2f-42e3-b7ea-dda45afe0d9c','e6bddda4-b1df-4be7-bbd5-63cc4b197736',210,30,38,0,NULL,NULL,'42857810-1-23'),
('dcab21b4-b0f4-4357-b04e-f78f942331fe','d364225f-466b-4bf4-be94-78a3b92ff966',51,51,77,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-4-1'),
('dcae283a-58db-43ec-8eea-9791c758a680','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:15.805','248135683-1-27'),
('dcae4466-e321-4617-9f86-852ce0386065','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-1'),
('dcb0ea67-ed04-4e17-af2e-fc016b7e885c','43eb4ebc-39fe-4f7a-aacd-fbcec67995f5',100,72,56,0,'2025-07-02 12:43:24.501','2025-07-23 06:18:10.676','644298759-1-2'),
('dcb46cde-6466-42f6-bdbf-c80f1cb09afe','b67fa3d3-0b05-469c-a42b-d477847d9d21',60,92,92,0,'2025-09-12 14:16:54.076','2025-09-24 14:32:37.478','531893295-1-6'),
('dcb52c7d-2bec-471b-99e0-c93b1433a110','c02a7a5d-c8b8-4c15-8213-f0898fe13e2c',43,123,67,0,NULL,NULL,'745151910-1-4'),
('dcb89a96-1317-49d6-85b7-c80c230643e9','7dbfac68-a166-481d-9984-d7ec9291dc46',85,57,101,0,NULL,NULL,'808690841-2-8'),
('dcbccfd3-0320-4782-ab1a-8f4fd25cc9c3','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-198'),
('dcbe25ee-a897-46bd-b561-8ad5767de15d','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.697','449921347-1-5'),
('dcc119d3-6cd3-4f6f-b29f-70ccce32de6c','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',195,50,22,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-18'),
('dcc2add4-829d-4af9-8ff1-136288d15d0a','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-8'),
('dcc4a35a-d84b-43b4-9a6b-d5df198866e0','855e46a4-ba64-4f07-8fbb-6964051588ec',0,0,0,0,'2024-10-11 16:09:01.061','2024-10-24 15:21:02.130','745166392-1-1'),
('dccb7bfa-0a53-4ce9-b05e-945d136d8b78','f99c8b1d-3c5b-4297-b1a6-3cf221af487c',25,180,200,0,NULL,NULL,'011399882-5-2'),
('dccd2734-fd7d-4c25-9fa9-eeb2fc385ae3','9d9df441-0469-46e7-baad-366a3096e9a0',40,73,83,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-7'),
('dccd5078-a234-45d7-8c6d-72f76c0a591e','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',95,39,30,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.536','614766744-1-6'),
('dcd10b3b-9a5f-4529-917c-497358224400','6fcc55d3-2339-4d12-b5e2-e156727c33f9',38,33,185,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.017','412767922-1-14'),
('dcd15342-28cf-4778-bb4a-4084456d0c19','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.161','223254418-1-93'),
('dcd366ea-c42c-499d-90eb-f299b293c638','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-24'),
('dcd39a19-4c3e-48f8-a7ec-fa8cd0b9147b','6f44b113-5917-40cb-9c98-9456f8c03518',44,10,204,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.226','745219309-2-9'),
('dcd3cbc9-bd40-40e6-a2c8-9a415ba7c809','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-67'),
('dcd42ad5-561c-40af-8aac-9de1f7e57dd0','cf5e2f56-ede6-45c4-acb8-88a0bffb5f73',105,207,29,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-4-5'),
('dcd4a12b-dbda-4d51-b623-6b64e8f3e4ca','e891b961-f9b8-41f5-b49e-f492048bd8c9',27,9,104,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-10'),
('dcd524eb-a739-404d-a76f-607cac07ead3','05af1df3-9a36-4be2-8bd1-773d59e1605a',20,82,52,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-10'),
('dcd9cab9-885f-40bb-898e-5f72c289a4d8','2a529661-568c-4dd3-8b4a-cd09bf85bae9',51,51,77,0,'2025-10-25 08:59:15.286',NULL,'505414907-1-2'),
('dcdd4825-0b89-452d-982e-1f5894a19a6b','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-7'),
('dcddbdb8-f375-4538-93d7-da2f23aafde7','f71120f0-3dab-49a4-9919-47f817fb8a68',8,13,110,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.038','319458159-1-12'),
('dce0e0ae-e3de-48d7-9e36-4b8f8a82f19b','7c7686b8-8f65-4271-acac-1585b7485563',151,68,8,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-6'),
('dce25105-608e-426b-ba44-57a172239694','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',14,57,136,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-52'),
('dce88aad-d90f-47d7-8020-1a3addac4a0a','41c9fde1-e7c6-4bb4-ac06-d4a26ae995e0',51,51,77,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-2-5'),
('dceb3cd9-36ee-4573-9bd1-8d32dc4a3f32','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-107'),
('dcecf265-fa38-4116-8fce-d4d9b5c43250','e6f73d54-f93a-41d1-bbef-8930d53eb399',230,60,95,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-7'),
('dcef5dd0-ce23-41eb-a949-de18bc13ea5d','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-44'),
('dcf15a2c-f8e7-47c8-8ce0-a5df2fb032b2','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-26'),
('dcf2d7f6-500c-4cf8-a9ad-0d6e88c5b71e','8625abf2-719d-4d7f-b206-16948b318b8b',205,30,7,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-27'),
('dcf3bb7e-8a60-4b35-b7c3-31806b8ef2fb','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-91'),
('dcf5ecec-e685-478c-9b90-1a456056c8ae','ee623458-4a98-41d0-a385-199504c6175f',51,51,77,0,'2025-04-11 13:41:15.463','2025-04-28 11:58:44.064','43720744-2-6'),
('dcf6894b-4ee4-4ad0-b872-f576a7aa6491','f3414f51-92da-4967-b108-6baad5cdd798',75,53,18,0,'2025-08-22 20:28:33.271','2025-09-03 12:47:01.224','478110382-2-17'),
('dcf966ef-6ca7-42c7-a478-edd6e732e4cc','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-6'),
('dcf9a1f0-692a-4351-a023-cd36022ea586','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-23'),
('dd041da9-9fd7-4b65-935c-7e2d07a3f37b','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-4'),
('dd074dbb-b23b-479f-a806-bd2f88505873','cd338320-b04d-4520-adba-f892a82d945a',20,20,10,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-5'),
('dd09dbe1-befd-46cb-9483-32043be6d679','8aa519e0-8e87-4df3-9db0-e983a4dbb36b',48,108,27,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-16-1'),
('dd0b08d0-a275-4adb-af5d-4271b1c68c2d','af69c5a3-87d3-4548-a650-720b69a4fc69',58,7,82,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-25'),
('dd0e3807-ce9b-440d-9b2e-fb7d9ff3e354','8ccf1da0-f5a6-43c4-a953-8d0167d86614',75,110,118,0,'2025-04-30 14:29:07.522','2025-05-13 09:05:57.394','923436295-1-2'),
('dd0f9338-468a-4d39-9165-22d2de314701','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-1'),
('dd127d92-4117-443f-929f-5f0a5954768f','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',78,77,63,0,'2024-09-06 12:28:27.825','2024-09-12 10:53:41.136','655200069-1-11'),
('dd13636a-b1ae-4145-928c-4078a6a1c00a','7ba47169-83ca-49a6-98fc-6ef1a1990eac',100,92,52,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-23'),
('dd140467-1ba3-4a4b-9fe7-6336abaaf444','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-93'),
('dd14a83e-fca8-4f89-b607-60eb4d49a905','43f2900d-96f1-458b-9b9e-6777ac110ab0',0,0,0,0,'2025-01-06 13:08:20.186','2025-01-09 10:06:25.424','478643015-1-3'),
('dd164889-3c22-4245-9ca3-cfdb508ada1b','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-32'),
('dd18506e-cdd4-4f1e-8b28-ea2f36fb169f','f3770a84-cf0f-40b7-84f8-b3f6344b2110',0,0,0,0,'2025-06-27 17:12:09.203','2025-07-15 19:42:47.887','98298396-1-4'),
('dd186037-0d6d-4cd9-b0cf-a58edf4ba5cb','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',51,17,59,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-2-12'),
('dd1c192a-5c38-47d5-b505-bb63fd2686dd','249d1f3a-1f6d-4acc-ad1e-40e713130f9e',80,115,95,0,NULL,NULL,'59898054-2-2'),
('dd20c1ad-10aa-48f1-b77e-e035088a9c68','af69c5a3-87d3-4548-a650-720b69a4fc69',76,58,36,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-11'),
('dd25f808-c6fc-4e35-a5b8-5a4dc9c26a24','78011c77-f958-4fc6-886f-f80a74dac952',170,70,95,0,'2025-07-08 11:31:14.083','2025-07-24 18:03:00.764','371913094-2-4'),
('dd283f1e-d8e9-4b8f-b7e9-133f201aa7d3','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-103'),
('dd2a3f3c-4475-4220-beeb-4aa7d5c15285','6ce91342-6292-45b3-be85-1b55deed3ecb',75,100,70,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.342','517895646-3-6'),
('dd2a51c5-0798-4dd6-9f3a-e3ccaba28328','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,300,0,'2024-12-28 21:42:24.610','2025-01-07 10:35:32.701','248173138-1-13'),
('dd2d4717-8dd1-48c4-adc2-2dfe399dc5a2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-5'),
('dd2dda9c-075b-4fb6-b29a-a55d9bb96898','bdc159b0-60b0-40ff-9092-421620718ec5',77,57,103,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-2-3'),
('dd2fe954-f6f0-48c4-b2de-2e04ee7da611','2b5fa64e-2c3f-43be-9034-b86d4520cb36',104,12,127,0,'2025-10-25 08:59:21.121',NULL,'478485864-1-6'),
('dd32eb46-0483-4147-9f08-f719310e4b89','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-21'),
('dd33e974-5d98-4511-b616-2f1f01f7cc3d','a87576e3-14e1-46a8-99c7-1d48360995f5',50,70,46,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-17'),
('dd389411-2c8d-4f9b-8ce4-4ee0729673a3','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-1'),
('dd3c3763-38d4-402a-b2bc-8a0495a1ba68','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-174'),
('dd3e58ec-9eb9-4b54-abfd-80b4c5dc630d','3c6c148b-48b9-42f5-a540-77250f81fc68',235,70,100,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-1-4'),
('dd4af065-61da-4ab9-84e3-9755aa866c94','0ac2a48d-48c9-41d2-91a2-b574a94542b0',61,9,98,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-11'),
('dd4bf614-b254-4acf-bfc7-b4ebcc3ccbf9','89227708-11c3-43ad-8689-12a0aeedc654',52,65,80,0,'2025-04-25 16:57:16.239','2025-05-01 09:52:28.275','371672954-3-6'),
('dd4e07c6-2962-4334-86f5-412f5b810a5c','a135c145-15f3-450a-819b-e82b427bc978',59,5,222,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-8'),
('dd4f835c-0c58-4e9c-8eca-e765c378a044','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-16'),
('dd512b86-ca05-4eb7-ad55-525725194b66','d86cea20-f09e-42e9-b019-9f7c88420816',90,80,75,0,NULL,NULL,'745105230-2-1'),
('dd527a4b-f426-409b-8e6a-71066b3bcb86','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-130'),
('dd531e8d-cd3f-4f84-a97b-b777972f46cf','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-17'),
('dd53a509-1080-4091-9294-c7c924ccdb55','f88c3e53-b711-4bcb-aa3d-9543580054cd',114,206,15,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.307','107623614-1-1'),
('dd57871d-8349-42e1-aae9-e126fb036e49','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.592','248133427-1-37'),
('dd646457-3886-44bd-96d7-eaf94cf025a3','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-23'),
('dd64b359-2bf3-4ffc-b8a5-b1e263978721','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.027','735211280-1-1'),
('dd65aec7-1980-4057-a244-6ba9921ed86a','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-8'),
('dd69ccd6-9d6e-450b-8f7e-fbdb5e332e49','148d30cf-a978-4a1a-a180-523a4124c946',0,0,0,0,'2025-02-18 16:37:14.115','2025-02-27 06:36:20.857','412252425-1-6'),
('dd6bc4d0-6c6d-4d50-9786-6f5604caca7c','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-77'),
('dd6e59d8-a661-4ec8-993d-4e73769a7ac2','1087586e-034f-4ec1-9828-d61ce37a1821',47,47,50,0,NULL,NULL,'478153975-1-9'),
('dd75b657-30e4-4424-81c5-bd9ae4a92567','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.069','223433822-1-29'),
('dd78d1ca-4517-4584-be33-7658ca67d045','49b0262b-aeb4-40b0-bdcc-b5461a64c972',71,46,21,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-2'),
('dd7ab245-7a3d-46ad-86e4-140fd36eced9','1a93f0e7-35b1-4d7d-8e2c-3a74dc8ac1d8',37,37,50,0,NULL,NULL,'59898054-1-4'),
('dd7bbbe3-f533-49fb-993c-468c16e337e2','7afc8da4-5eda-4e4e-b6ca-e7b2aa75e00a',70,30,65,0,'2025-04-11 13:41:57.197','2025-04-23 08:12:45.151','371102325-1-3'),
('dd7d0ece-b4cf-4789-897b-45da540001f1','443751fc-e739-4620-b6a4-3b4b39d4da52',235,50,65,0,NULL,NULL,'428163052-1-6'),
('dd7e57d0-5e75-4714-be8a-947eeef848d1','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-5'),
('dd84a197-f651-4409-be35-6c6bd97c2a3c','d9b1c3ef-83ef-4aa4-a68d-db1d57a35912',97,200,7,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-3-3'),
('dd86b2f3-a6be-455d-879a-b411af66ac30','83902671-5e3f-46e6-98da-fea889e40b25',33,15,205,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.351','644985861-8-4'),
('dd88b93e-e3c7-42b7-b50f-a20b217bfd17','fcd67c6a-44c1-42d0-bb18-f0aad3734594',76,180,29,0,'2025-10-08 17:43:31.013','2025-10-17 06:15:12.040','011428040-1-3'),
('dd88d373-5d32-455e-8e31-e4a9e15025f4','410d238f-8bdf-4cf3-81b7-a69f07022dc2',0,0,0,0,'2025-06-27 17:12:23.801','2025-07-07 06:56:07.768','478185886-4-5'),
('dd89f960-8aee-4cf9-836b-86abeb8f4865','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-37'),
('dd8b0246-e984-4a6b-8f70-d12e03a3933f','3f466b16-fac7-4cf8-b004-d0829d6b5061',40,40,43,0,'2025-04-21 06:13:19.326','2025-05-02 17:10:36.933','43792999-1-1'),
('dd8bc0fe-d7ca-40d6-9f35-644708bc3849','ab5b4f35-151d-4c91-bde5-2423bc506836',0,0,0,0,'2024-09-24 09:07:28.130','2024-09-26 15:55:12.342','976494428-1-2'),
('dd8c9ca7-6e93-4fce-9068-076eb65dacbc','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-71'),
('dd8f9069-01da-4ada-89bb-994846fdae2d','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-28'),
('dd91413d-c396-49ab-8458-28544edff2b1','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-21'),
('dd920a72-6dab-4acc-a8b3-b209a54181cc','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-4'),
('dd924e2a-efd5-4508-af46-14a422af78f0','44fe0660-a6fd-46f2-b992-d99aa0539ddd',86,86,6,0,'2025-09-24 11:02:10.831','2025-10-05 12:16:01.630','644243216-1-2'),
('dd9284fe-5032-4620-880a-fe8ae4961d09','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',75,67,87,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-156'),
('dd944e44-5e6b-468a-a956-ae9cff284a41','dcd864c7-ef37-45ba-880c-976ebda30365',100,123,60,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-4-3'),
('dd97703c-76b7-477d-a221-18c6b619ddea','a169957d-27f6-4e28-9598-0c6fd0080bad',0,0,0,0,'2025-08-07 16:53:05.440','2025-08-19 14:52:28.254','735159660-1-7'),
('dd97e14e-e2b0-44ca-9b5f-932f43f90ab9','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-2-6'),
('dd986de9-cc27-47b8-ab81-c3674c7783f5','a48f4957-ffc5-4309-808e-9eba40503ea8',44,44,95,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-4-5'),
('dd9d2670-bb05-47cc-91e1-808e0ef93963','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-1'),
('dd9d3f49-af80-4c2b-8229-5706c3f75cb3','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-46'),
('dd9eb3b3-fc7d-45cf-b5ff-792de0a4c84b','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-4'),
('dda27ad1-7577-4de9-a802-c87284266569','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-23'),
('dda287a6-79ae-459a-a0f8-945ab93c72e0','5a31d59d-2a39-48c6-a450-4b8e78dae401',110,215,31,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-2-6'),
('dda9a1ab-b23d-4980-8c1d-3c9a8a5bdb07','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-131'),
('ddaca046-ded0-4b89-97b6-ab607c4e862f','a08d6712-1d03-4cdf-9f9e-1098bdce8dc5',0,0,0,0,'2025-06-21 04:33:48.944','2025-06-29 20:24:30.376','231250162-1-4'),
('ddace686-857a-4391-a1c2-e04c35099468','6b40c652-4a63-49bb-8720-5b9279666fd8',220,72,90,0,NULL,NULL,'203797759-1-2'),
('ddadac0f-4eb7-4df7-a246-71dea096f383','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-8'),
('ddb1ee70-2355-42f7-b0f6-71c187f7d5a9','d996c4f8-5b23-4215-8745-02197703fd3a',72,187,98,0,'2025-03-27 08:03:05.413','2025-04-05 22:11:34.360','37176846-1-1'),
('ddb56b5e-0f22-4365-b73d-672d67718bc6','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',0,0,0,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.198','982555492-1-6'),
('ddba0320-2681-46ef-90f6-693657304deb','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-103'),
('ddbbd7f3-1dcf-471d-b8d9-724ded476729','1f8ed22c-646c-4405-8477-3cfc46f95401',0,0,0,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-5'),
('ddbe84e8-09c5-4f8f-b85d-4650d5797790','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-8'),
('ddc878e1-7eb1-430f-a384-716d47118cc5','aa0c60c5-d205-4711-92f4-64ebaf10b816',0,0,0,0,'2025-07-12 09:20:29.551','2025-07-24 06:22:38.126','745771664-1-1'),
('ddc8e429-0794-4665-b945-da56eac0a80f','fc33e6e7-779b-41c9-8d72-c26a1d995b78',101,34,195,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-2'),
('ddcb45c9-571e-47ee-93ee-4e1fc7bea5c9','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-25'),
('ddcb9562-911a-40e4-8e26-0c3ab1a44183','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.537','2025-02-27 06:36:39.868','412346704-1-33'),
('ddcd4c83-da2a-4b86-bff0-6c0664b686d6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.250','223823107-1-241'),
('ddcda930-604f-4958-b6eb-0aaeb1300689','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-28'),
('ddd051d7-8ed3-4c44-b91f-7447deb1b92c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',48,163,9,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-11'),
('ddd33f8a-fa5d-4481-86ea-0e850745740f','272262da-fcbb-404e-9836-883da7bce903',52,93,77,0,'2025-05-23 14:05:13.688','2025-06-06 17:36:20.960','221997933-1-2'),
('ddd4aed1-bd34-4274-98db-28fcc1117bf0','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-17'),
('ddd59b14-cdd3-469b-b952-5b68233604fd','e46d4680-4bdc-4c9d-ad0d-2ba7ee909c19',0,0,0,0,'2025-02-23 12:39:10.498','2025-03-06 10:33:42.242','08159662-1-2'),
('ddd74ebd-c14b-44af-a59f-5e18988cceb9','22399f1c-a89f-4887-a03f-c112be6c99b0',62,57,84,0,'2025-08-27 19:40:09.374','2025-09-05 08:50:48.511','515139511-1-7'),
('ddd88489-f67b-474c-bfe7-0ed6c88149c0','2ef10f17-04cd-4b22-8b1b-2915e55684f2',100,177,70,0,NULL,NULL,'50538335-1-1'),
('ddd8db4b-d2d6-4be0-b6ec-621e89c6064e','d75cfb47-71c3-4e08-8733-4ee17725e2e5',87,87,7,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-3-2'),
('dddfc5d5-328a-4719-a700-41c6b807ab98','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.646','24889830-1-21'),
('dde09a91-9e20-4746-95e5-2dcc3c2f29d3','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-20'),
('dde0af0f-6c03-426b-8ed2-419ce2dd91f4','d176a715-bd33-47f6-bcb7-f384e079f39a',68,15,16,0,NULL,NULL,'501724603-1-3'),
('dde0c0d5-7093-470c-93bd-ff40300fa32c','0ff914c7-1691-4651-80b7-e820501b0c32',44,56,11,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-1-2'),
('dde30883-f680-45c4-b306-0114322326d3','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-10'),
('dde327c5-5482-48e0-846e-568ceb2e9160','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-1-5'),
('dde6ba5c-1c3e-45ff-a971-b472fb8df63f','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-49'),
('dde97f6a-28f0-478f-95f3-75ccbf025eff','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-72'),
('ddefc347-c844-4f46-9e8d-5ab2dda93948','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-33'),
('ddf091e3-9d61-4eaa-a004-fc453e5c146c','8279654b-3e57-43ba-844c-f5985ec2ca90',91,95,65,0,'2025-07-12 09:19:08.718','2025-07-17 19:16:14.064','982893962-1-3'),
('ddf14a2e-ff6c-41d8-a72a-ca30dee9b4dd','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-1'),
('ddf3dd0c-020f-4ed4-bcd5-975762291a59','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',45,53,13,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-62'),
('ddf3ff42-a398-4bc4-a80a-ee8392584671','f615f536-3859-4a7f-a170-aec38565cbf5',62,57,83,0,'2025-09-11 06:34:22.518','2025-09-18 07:01:30.939','675139037-6-6'),
('ddf4a62e-6282-4bd6-a369-03752e91b364','f36f3d25-a315-4a57-bee6-dbb93d2e26b8',45,45,69,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-2-1'),
('ddf7d359-50f3-498b-bf0f-c2d39ddb731b','841f7f01-a7cc-440b-859e-dea7f085dd74',72,61,45,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-17'),
('ddf87d4f-c376-4ffe-ab64-6940d286c9da','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-4'),
('ddf9b464-7990-45f9-b032-26351de9e140','6226bd29-5d06-4891-9ca0-310e4356024f',57,83,102,0,'2025-08-27 19:39:55.729','2025-09-06 07:19:31.533','808830873-1-3'),
('ddfc891f-d9c5-45de-bb81-1a29f44bd6b2','d120a3e0-a843-4dce-81dd-8d7145713884',67,63,85,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.748','351330330-3-1'),
('ddfcea44-4a6b-4284-84ab-989c9fdc8ed8','bf29a690-2cc1-42b5-8c3c-53bcdc53ae9b',123,30,222,0,'2025-10-09 08:39:52.751',NULL,'011940661-5-1'),
('de01d21f-ff0f-4a23-93a0-2907e70e0c2f','a2d857b1-bcf6-46ee-9e87-dabcdac62719',200,57,100,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-2'),
('de0aec72-3ced-43f0-8f96-45eb9d2efda4','cd338320-b04d-4520-adba-f892a82d945a',110,55,80,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-6'),
('de0d0d53-b47b-4378-a29b-6b9b7df8e352','5362cad6-3ac7-4876-8ddc-d366e2335688',82,59,32,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-3'),
('de0d937e-ba16-4b8f-859b-c6be51d6ccea','ab1b2a39-1033-4ca2-9a3f-fda0a79bd8f8',0,0,0,0,'2024-10-17 11:51:21.661','2024-10-26 07:30:49.319','745382052-1-4'),
('de0f3661-b142-4e10-933f-6b6785330e96','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.912','2025-10-05 12:15:06.065','223441694-1-13'),
('de0f572d-053c-4eaa-abe0-348fdfe8cc4d','2c86476e-8798-4d2d-b8c8-cefed9be8666',36,105,170,0,'2025-09-06 07:20:17.821','2025-09-16 06:34:26.391','371695056-1-1'),
('de107e3f-c47d-483e-b651-13a121d23370','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.474','2024-06-22 23:00:04.354','44831715-1-5'),
('de11d770-d010-4469-abe6-4e74e61a20b0','4858773d-333a-4197-a946-bf62338fc789',0,0,0,0,'2025-02-13 20:44:03.491','2025-02-24 13:33:03.096','613633231-1-4'),
('de137f61-11c9-403c-8370-3ac87ae8645f','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.324','73547719-1-4'),
('de14258c-a5ba-4a81-a033-6654cd75fdee','f0d0f679-0435-47ac-98c0-ecc939f711dd',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.875','910775394-4-5'),
('de148cb0-74aa-410f-8856-03991226b5a4','2d1e4467-9dfe-4631-b907-0d2dcfff2ac7',0,0,0,0,'2024-09-19 18:27:38.017','2024-09-26 15:55:21.569','74532550-1-17'),
('de1970ad-9b5e-4ef5-9409-82071b551c04','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-2'),
('de1f3677-4a87-4cac-9968-622acfcffd25','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-51'),
('de203dec-d146-4758-936d-f41d3c057d55','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-24'),
('de22ea2b-98cc-4773-bf7a-c86b166acf04','f19d17e8-3693-4608-ae1e-de8ed9283ccd',0,0,0,0,NULL,NULL,'61440092-4-2'),
('de232a1d-acdf-40e3-a142-f826b5a2d10e','405c5569-3390-43f1-95ee-f006ef560059',76,51,75,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-6'),
('de23b16c-e600-49f7-a33b-94bed15e3e52','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-24'),
('de24dba0-c5d6-4be6-8f15-59a1ebb7aba8','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-29'),
('de24f7cf-26fa-44b6-89a4-b2873d0d851e','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.334','2024-09-07 15:54:04.720','745449587-1-6'),
('de25ac37-9c24-482f-bea3-95b1ccd8eb1e','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-22'),
('de26c545-5e52-4914-96d6-4f6517c21b16','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-64'),
('de288cac-92bd-4f11-b6e4-fdb9bbaf11d9','c389fd95-9357-4fac-a819-48a512bbe294',95,95,65,0,'2025-04-30 14:29:17.994','2025-05-12 09:07:52.132','817830150-1-4'),
('de2aa2d1-6267-4ef3-8b54-9d052a598a30','542181c6-dabf-4cbd-b756-74abe3440744',53,20,43,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.257','478245028-3-13'),
('de2b70b3-8125-4ce1-8bc0-6b30247548c1','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',170,136,11,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-32'),
('de2c3cb9-e825-4b80-a73f-6b2977668441','5cced97c-42f9-4f09-9ce2-eab123493da6',42,42,76,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-5'),
('de2c55e0-d095-4f5e-82dd-4a7d2c53f3ad','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-3'),
('de2d9029-ccaa-4610-8c1a-071a81d509fe','ea6ce2a5-fd42-4bc9-978d-b3714213845f',30,24,16,0,'2025-05-09 18:43:55.905','2025-05-21 08:16:34.944','976430102-1-4'),
('de30331b-07d9-4757-b73d-8cc258615af1','ecec0728-d902-4dfa-9f70-a982ced12ed7',81,56,101,0,NULL,NULL,'613362697-5-2'),
('de31d64b-9d18-4c46-9ec1-396763e059e1','e6f73d54-f93a-41d1-bbef-8930d53eb399',19,100,9,0,'2024-12-01 06:48:32.763','2024-12-07 13:11:39.842','478377442-1-4'),
('de336be2-7d12-4033-be5c-1994e7fe059b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.251','223823107-1-114'),
('de34668b-9aa9-4c4b-b466-9af34b1d831c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-26'),
('de34fac7-8205-4e27-a42b-9d9e82f5f50f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-72'),
('de36977b-5f94-4a5f-8e72-454538d75cfc','6527b162-b49b-4d52-9f03-2cf84fd6401f',120,50,50,0,'2024-03-30 10:54:59.148','2024-04-03 08:28:16.532','248902824-1-10'),
('de36b345-3ea9-4c24-a635-46e8948246f1','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-16'),
('de36d7c9-46a2-4908-a22b-19d9358c8536','41c85bf8-1324-4e58-896d-344683df7110',53,66,82,0,'2025-10-22 13:06:44.054',NULL,'598894090-1-1'),
('de3a1467-3c94-4ac3-a135-114e23f0e5c9','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,91,18,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-7'),
('de3a7621-d6ec-4d11-be76-b8f50c0d130f','52738b5a-1f07-46d3-8ee3-d780d57c3457',6,87,87,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.380','221485829-1-2'),
('de3e0d2d-cf56-4aa7-ad72-63605b96bcc3','b0b9fe77-55c6-4043-8628-b0ea2c868cef',100,100,65,0,'2025-10-20 07:18:18.094',NULL,'6442594-2-3'),
('de408285-ee19-436f-b119-6c5f60b94dcc','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-3'),
('de425957-92eb-48d5-a613-93281f697034','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-61'),
('de437f89-2f69-4bdf-a67e-ac4fcdf1f83d','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.372','734936220-1-12'),
('de456bf9-b67a-45f3-b8dc-c213ee87afac','8b91c5e7-c071-4573-88e3-5264c5dc164a',47,50,50,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-3-5'),
('de45f426-5904-4b03-9dbb-264410382dd9','1b975dd0-98b9-4adb-88bc-962d71cc7b22',0,0,0,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-19'),
('de4662bb-fd8f-41a8-8afd-3132503302bc','6f883022-1eea-4faa-b6c6-489aa1c8866e',68,68,40,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.332','455614339-2-7'),
('de479170-b521-447d-a281-536fdef766c3','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',75,70,70,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-33'),
('de4a47aa-5f64-4897-a7b3-517d358370f7','5fa653d7-dc76-4d81-960a-d297b9d1db18',56,76,101,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.982','221191139-3-1'),
('de4a4ba9-8f94-4fdd-80f8-114d164caf02','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-6'),
('de4a4dd2-0090-4d8a-8c42-58ad7d6875e0','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-29'),
('de50251e-6223-428b-b6dc-3340a1f52764','150c9863-b37f-40fe-af3f-a5e800c4d9c0',96,205,6,0,'2025-09-01 11:06:07.783','2025-09-09 12:51:01.121','644550858-1-1'),
('de516942-63fe-40e9-a1de-886a48e0124c','be5c2cd1-c0fe-4540-abd0-4e5f8826610d',73,73,73,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.031','478335843-6-1'),
('de516c18-3e8f-48bf-b661-44f7c6a61fb1','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-57'),
('de59aa03-7fe7-4359-a2aa-583b73c85c3d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-199'),
('de5a6dd7-863b-4bde-a433-3f1fb0f6b1cc','c1d9e685-3827-4e27-bd48-754f9c260fa1',65,93,93,0,'2025-10-06 07:08:43.135','2025-10-13 06:40:04.416','675965194-1-4'),
('de5f5793-d1c5-4e3f-a59d-95e7ab27e56f','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-1'),
('de63d474-745e-4c04-9c8c-b69d92e1a3c8','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.149',NULL,'505724535-1-5'),
('de6dc72c-f005-4ed2-bef2-9c55739aab24','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-8'),
('de6f03c0-8264-47ce-8d8b-bbbb5eb8cd11','b8cb209c-3d60-466f-8346-01810d5816ec',15,54,92,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-8'),
('de6fb405-3d2c-4652-864e-ab220ace4414','e9626be5-ddcd-40d5-865d-7018bc1ef9df',160,120,60,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-10'),
('de6fb7ff-084f-424e-957f-35d9ed639913','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',46,43,95,0,'2025-06-27 17:12:10.111','2025-07-14 06:05:11.367','910756975-5-17'),
('de73d7dd-ebbb-4254-9402-bfdc5dcf706e','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-157'),
('de741a93-df0a-4fb5-9c60-f5c8dcde8eea','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-5'),
('de75da59-1f20-4815-bd0d-e0dc184ae6cc','df70c0a9-acf4-4b2e-bfa3-1f813e25503d',62,57,84,0,'2025-09-11 06:34:39.386','2025-09-20 19:00:18.891','221594735-3-7'),
('de78ae66-27c0-416a-8539-bbf4e4ed23b4','49c326ab-5b3b-49e7-a781-28760709b5be',80,75,75,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-6'),
('de79caf1-92c3-424c-92fd-1284857c410c','90841100-26bb-4ce0-8b37-9712689c76c9',81,101,32,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-2-2'),
('de7c53be-c804-424f-87c6-d70006c0c87e','91eefa74-23bd-4d2f-b604-3135beb41a9e',52,51,98,0,'2025-10-14 09:22:08.585','2025-10-22 07:00:08.036','221105277-1-2'),
('de839dce-e43f-456c-af72-1ca0c8866c0c','159c73ed-083b-4d67-98ca-6adcfc554962',141,205,14,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-23'),
('de8489b7-7772-45a4-803f-81068400be36','a87576e3-14e1-46a8-99c7-1d48360995f5',0,0,0,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-20'),
('de8f3a3b-7bbf-448b-83fc-328762873dab','cde2b645-2cf4-4ca6-9d59-ef733217c501',160,50,60,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-15'),
('de906a92-495c-490b-bb61-4a82a43ea3f7','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-53'),
('de91ce3c-f5a9-4376-9d52-5a4c25151152','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.868','412346704-1-43'),
('de935701-519a-4d65-a61e-3338efbe1b42','d74ca385-6368-4855-a36e-6dacd03115f2',0,0,0,0,'2024-12-23 12:00:06.694','2025-01-11 09:47:07.034','735298003-1-6'),
('de963bbf-6c8a-4bde-8a61-d7d65e945d65','7e556896-a771-421b-94de-44bfbf0436f8',93,107,69,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-1-3'),
('de995f0a-e5c3-4b07-8843-8aed19cf9fea','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-15'),
('de9a8370-1392-476e-afcd-b68c517ea8d5','e9c9f5aa-6590-4069-abfa-cfff80831cb3',230,100,70,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-2-2'),
('de9b5ca9-2b44-4253-9fab-c27c2e27554c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-109'),
('de9cb7ff-fcd2-46cd-9505-7b30ab802120','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-209'),
('de9cea49-1d4d-4282-845b-1bdaa31aaed4','a2d857b1-bcf6-46ee-9e87-dabcdac62719',200,57,100,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-1'),
('de9fab85-8567-4a4c-800f-d0e210a15865','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-5'),
('dea1c8cf-0793-489a-a008-1be9f07f7422','6e59bf3c-4674-48eb-95d4-e38eac38066b',232,72,98,0,'2024-10-23 14:11:53.676','2024-11-04 08:40:33.502','501786631-1-3'),
('dea45921-3d76-4e07-8061-81bc3f620b71','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-110'),
('dea5782f-25bf-44d3-8e21-5d53eb5f6bf6','a3a218ea-c02b-4cec-b478-b5babd3881d0',56,72,100,0,'2025-10-22 13:07:10.733',NULL,'011766113-2-3'),
('deab53f2-2479-4a9f-bc76-3df1401bfa86','6cee1429-9935-4eae-be32-dc630b6d70e8',51,40,18,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-37'),
('deac1274-ca3d-43c7-bf27-76138d641bc1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-2'),
('dead43a5-ba49-45e2-97f3-700e1a0e3d56','7fc2bccf-14b4-441f-88c8-816117ad7eb3',0,0,0,0,'2025-08-14 10:05:47.048','2025-08-31 19:20:30.340','478322325-3-1'),
('dead717b-c7fb-4b6a-aeab-c155f491aa17','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-7'),
('deb17385-da05-4622-afb0-829b48f5e794','b23cf296-f843-4492-9697-0fd43d657771',108,110,82,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.985','858200454-1-18'),
('deb25fb0-f588-4c35-9ec2-89c2cf61dc9e','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-15'),
('debbf4d3-1405-4123-85c6-807c8620ecd1','f36f3d25-a315-4a57-bee6-dbb93d2e26b8',45,45,69,0,'2025-03-27 08:03:06.659','2025-04-05 22:11:27.084','613297420-2-2'),
('debc217a-1205-41ac-a40f-a91ba5e6c15e','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:16.408','248135683-1-218'),
('debcf00c-815a-4fe3-b3a6-52abeca3e0e9','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-5'),
('debecb45-a32d-4c23-a190-c7dc0f65aee4','ef48e289-c687-4471-9ec3-801128f5816d',98,208,70,0,'2025-09-11 06:34:32.338','2025-09-19 12:35:04.384','371681337-3-3'),
('debf3d8b-55a2-4c27-a637-833f93771847','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.873','2025-09-08 05:04:07.658','478901590-1-2'),
('dec2e149-7aa2-4f7f-8687-aecc46234dfd','06e3c58b-ddb9-437f-aa81-bab14410c601',206,100,10,0,'2025-07-29 12:58:26.267','2025-08-11 10:24:57.179','011573387-1-2'),
('dec98cc4-3660-4320-b13f-68d50c3f870d','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-40'),
('decc39b6-d7b4-4203-8adc-906d0ff60ae6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.251','223823107-1-81'),
('dece7892-0d7c-4f6d-a881-16a841600663','a7c0e479-2722-40ba-bd18-c64a1b76d170',97,95,70,0,'2025-10-22 13:07:10.734',NULL,'011766113-3-4'),
('ded6ea2a-453c-47ae-a403-964c2323b4fc','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-1'),
('ded75050-0810-456d-a39b-1190d4d17b07','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-33'),
('ded7e954-4361-45bf-b8fb-98210272852c','c442462d-01c0-4b46-b4d7-c51ee072bc62',83,57,101,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.403','221432350-3-1'),
('ded8c493-c197-4e6e-adff-c66d6b5f6885','55edfe20-2d56-4019-90e2-b6a3b334c0c3',0,0,0,0,'2025-01-11 15:20:21.029','2025-01-19 14:51:43.991','982817887-1-1'),
('ded956e3-6061-4fc8-83b7-0acfbc7bdffa','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',81,81,3,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-7-14'),
('ded98ee3-53b4-4edf-9f83-17c479ce316c','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-12'),
('dedaf8be-09bd-4df8-a376-f5129c9cca8d','e54055a2-3c9c-4738-a808-7a4a31877ef1',55,50,50,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-29'),
('dedcee23-dbd0-4181-9bec-e50fe4044ef3','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-2'),
('dedea657-2075-49a2-8877-64edc6d0d351','f7dc1792-8ed7-4b88-b7d0-c13a7e4ca6d6',230,95,70,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-2-3'),
('dee42f96-912f-446e-bbbb-2cbf2de5b587','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-175'),
('dee76dd0-d5eb-4ae1-824e-0a9b786c7e73','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-8'),
('deeaa1e8-d723-403e-ab81-03cd391cfcd3','ce43478a-bedd-4537-b06a-c1e76d9d50ff',80,80,70,0,'2025-02-23 12:38:57.638','2025-03-08 13:58:16.672','703870981-1-2'),
('def33d31-f639-4283-912e-c1a57927404d','f8da3047-bd3e-4abb-838b-cb388b449675',100,100,100,0,'2024-03-14 10:50:36.845','2024-03-22 07:16:46.497','478127271-1-4'),
('def56f63-34dd-4f92-8f50-b18f5c5e81d3','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-106'),
('def6a343-4c25-4b06-88c4-bbcfab5bbc34','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-8'),
('def7951a-dfcd-44cf-9a4d-a751eb62b778','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.140','163229349-1-51'),
('def85eca-0885-437f-9a19-89d402d97f3d','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-42'),
('def90519-da2c-4f7f-84e8-7e0df30e97fe','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-68'),
('df01a214-9612-41f9-93e4-417af95348f9','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.758','2025-02-13 13:19:23.876','478484020-1-9'),
('df070c7f-6b6b-4f08-ba08-1a2e17c8a02c','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-3'),
('df07aca0-0914-46e7-87d5-604645eb3df0','2a9e974b-aed6-4ac1-b9ec-1a2cb64ca83c',0,0,0,0,'2025-01-06 13:08:26.306','2025-01-08 18:08:26.831','478705604-1-1'),
('df0a4216-5ec7-4f96-be0c-c13cba6963d1','6b9e51b9-7e9c-47cd-801b-8bba008d0224',28,91,202,0,'2025-06-21 04:33:47.206','2025-06-30 08:56:30.724','695394738-2-2'),
('df12a5b8-960b-4ab6-918e-649506a824d5','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-72'),
('df152b48-5398-4679-9bfc-e7d5bb0acdaa','ada78d77-5143-4e72-858e-02eb9de8df81',60,68,96,0,'2025-10-14 09:22:06.514','2025-10-22 07:00:44.506','478346989-1-4'),
('df15bdac-c9cf-45d0-ad05-e7144277b797','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-69'),
('df1c6086-4ba6-4e37-800a-22d7d404fdc7','f6534c5f-f6d6-4e0b-b8df-9db7fa49aa22',123,60,7,0,'2025-09-24 11:02:21.249','2025-10-05 12:15:35.762','43774917-3-4'),
('df1c91e1-7c7c-44b9-9901-75afce0c5891','d77c1e4e-c306-49d5-a8dc-4ae4f2dfa986',245,97,60,0,'2025-01-11 15:20:10.779','2025-01-19 14:52:20.190','449558519-1-4'),
('df1fadd3-72e3-4bac-a44b-917c72587b54','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-9'),
('df21ec4e-7654-465e-bb7a-e358bbdb18de','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.150','2025-09-09 18:00:33.389','412315808-1-82'),
('df224c1d-49b2-45b8-8991-5180fb62a9ee','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-30'),
('df2419df-4e40-4345-bfb9-a054d865ff0c','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-22'),
('df256c64-672a-411c-af86-b5656fd8ac7b','6d0390ef-65ce-4154-a607-d67e51938ed2',90,190,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-1'),
('df25b5e3-5adc-4442-8385-6f48c967b400','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-132'),
('df283b4c-c159-44e5-8e84-bf432c124241','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-61'),
('df28ed60-4898-43be-97d1-b49cab668986','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-35'),
('df2a5ac0-e071-494d-8ea3-1e260b81498f','2307cead-bc16-4ee2-aff3-8245c44ff256',71,70,99,0,'2025-05-28 19:08:47.663','2025-06-07 08:54:43.928','817747938-1-5'),
('df2f26f6-d1fa-4869-96a4-d83554cb1c39','b08f1011-0521-44ed-afa8-62b0f014b52e',51,51,77,0,'2025-04-30 14:29:14.009','2025-05-13 09:05:03.014','644789157-3-3'),
('df2f7cb8-5358-48ec-a2df-0aa171db0c4a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-64'),
('df2ff86c-1a7b-46d4-9e8d-c3beaed78f03','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-92'),
('df315949-9eef-4ff1-977e-43b07a87247a','cd701be1-7ee5-44c3-b2e7-2b7e15ffe056',150,60,50,0,'2024-03-23 08:36:04.730','2024-04-03 18:55:06.259','412977083-1-2'),
('df320193-499d-41f5-a36f-5d231d1b242f','ddd6d9e2-d73d-4211-9d8f-9563302c1f30',0,0,0,0,'2025-02-27 16:45:33.997','2025-03-11 15:32:00.772','976763926-1-3'),
('df33f4f5-cf56-4605-a454-5597324cfbe4','aa52ce79-9594-403f-a912-011d1f6e5822',0,0,0,0,NULL,NULL,'248100721-1-19'),
('df37e1c7-9b0a-4668-a5dc-3400ad627f38','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-34'),
('df392b13-fccc-42ff-b188-6a077f116df6','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-11'),
('df39a5b1-4762-4e2e-aaad-569d50fb085d','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-42'),
('df3b7953-ab68-43a2-b097-9fdd4a32c302','4919b182-c4b4-43e0-bd9a-1b8ef82a5543',0,0,0,0,'2024-05-10 18:49:35.112','2024-05-29 11:17:24.597','449292416-1-9'),
('df3b8ea4-1a27-48fe-acbc-d6cc5dd6410f','cc7dddf4-427f-4a79-9cec-d95529ff2c95',179,199,3,0,'2025-09-16 16:29:07.814','2025-10-04 13:57:29.803','478677262-4-7'),
('df4045f5-b6d9-46c5-a623-23cf39c80e20','376f6b8d-92e3-4ec4-991a-cb710a079011',40,40,45,0,'2025-03-27 08:03:10.862','2025-04-05 13:45:44.467','437791163-1-2'),
('df43af28-4f33-4f2b-ab04-3f2c17921c48','ed189cd0-6bcf-4b5e-809b-d7b64ffa79ab',91,34,205,0,'2025-07-12 09:20:16.838','2025-07-25 10:49:18.047','412383870-4-1'),
('df442a88-0b2a-4874-8d9c-e0cb571c56ee','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-19'),
('df451f2e-3cf4-462c-ad0f-3f5de77f3d95','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.593','248133427-1-8'),
('df46b082-cfc2-4589-8026-0c65dfa00672','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-229'),
('df471ccb-ea9e-4c9b-a1dc-72d8cde117ae','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-8'),
('df49ac08-97c2-4ce9-8981-99749266ae1a','b7fbd54c-bcc0-4613-9901-d06327048472',38,4,206,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-6'),
('df4cfe14-c6f9-4fc8-8723-3ed8372a0b49','601003c4-c08a-4b64-839d-d5ab37e7595b',103,52,48,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-2'),
('df4dd33f-8640-4532-b805-c642bbe02d70','17868a47-2f8b-42c0-9e68-ed7885930bc4',90,10,133,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-1-4'),
('df4f628a-cf04-4848-b350-f32834835373','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.868','2024-09-15 23:12:06.203','223867751-1-86'),
('df507dfe-a488-44ca-b5ea-87abccb9f11e','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-1'),
('df511eb1-b01b-46c0-ac8d-2ae2e1f73581','b78519ec-4b79-400f-a709-a1f09256d30d',67,57,50,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-10'),
('df561c20-0f46-4c64-993d-ac360f71d84c','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.198','745531225-1-4'),
('df56223e-793c-4305-a7f7-ffce7725e89a','6d0390ef-65ce-4154-a607-d67e51938ed2',215,52,50,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-30'),
('df575c7d-07d2-4019-91fb-65572eee89cc','fbffb9d5-c273-47e9-93ff-d898c5730075',95,78,81,0,'2025-05-24 17:55:18.378','2025-06-06 17:34:14.192','644776565-4-7'),
('df57a6a9-5f64-4390-b3d0-2a10fd414d5a','3badfe11-f9f9-4b71-919e-3999791add02',60,41,40,0,'2025-04-21 06:13:41.929','2025-04-26 17:54:50.804','437982892-1-3'),
('df6a1ec1-e3a9-4c0b-bde7-9d84575ad9d0','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-12'),
('df6a542a-fa62-4c8e-be2f-ba4b325d391f','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-17'),
('df6a7f27-cb88-496a-8d91-55fe0d2c808e','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-1'),
('df6aaf81-f6ef-433c-8f19-30aaba9b7458','9114ad70-d53e-4d1f-89c7-30585d0a43de',60,23,51,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-35'),
('df6bb4e7-b94d-4538-9b5f-e12be8069605','6114a732-dc0c-474c-bbb4-76211cbefcb1',70,98,115,0,'2025-04-15 16:02:09.449','2025-04-24 15:01:23.008','644443664-2-5'),
('df6f3956-1920-46b6-a069-893422f7a62a','546ad3d0-25c2-43dd-9443-e48b8e5b6530',31,125,8,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-1'),
('df70d287-3ba7-4ce7-9379-f54cf9454ed5','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-5'),
('df71b056-b78d-408a-86ca-58a03885bd06','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-70'),
('df77449b-6f2c-4004-aff9-ab0d33cab009','5c4d9368-f975-47d0-9818-aa9d64564578',122,80,92,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-2-2'),
('df7a45fe-9a1d-4ade-a8d7-b646bdbdcd98','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-27'),
('df7a9950-4a27-4642-bb3d-b807d0c28bc5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-41'),
('df7c46f9-2471-4926-be7f-c88277ae534d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-212'),
('df815467-2857-4aef-874e-a177234e4cca','af69c5a3-87d3-4548-a650-720b69a4fc69',95,230,70,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.821','614143415-1-5'),
('df829aaa-ec99-46aa-bd91-0041362e54da','bbc6d966-9d42-48e9-83e4-13afb85a7c33',15,20,34,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-10'),
('df82bbe2-493d-4c9b-b200-94801a1cea00','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-126'),
('df86c141-7216-4cfb-a983-47ab3fa4c067','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',80,80,80,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-8'),
('df88f6f5-69e6-4de1-8ebe-79ee50aa80b5','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',45,45,74,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-11'),
('df8ec0e1-38b7-4c4e-b753-c4d3155be928','bb4c69ee-d262-4f19-8fdf-a4f70e36c2c1',230,70,90,0,'2024-10-23 14:11:46.938','2024-10-31 12:05:38.042','501848451-1-2'),
('df95da40-860d-4419-8209-36ed021a8858','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-55'),
('df99a106-7f50-4e29-b4c6-92bd68cc9b29','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-132'),
('dfa2c52c-2f79-4211-92d3-4db888627d14','7f51fd09-8523-44f2-b700-a6818ee38b39',82,7,85,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-2-1'),
('dfa5cc11-9b53-4a50-bb4a-bbdcb7568ac4','af3e2c68-d1df-455e-a5d7-0f309e2961a9',51,51,112,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-12'),
('dfa5dac9-979a-48f0-935c-9107c9cacbf7','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.744','221341784-1-3'),
('dfa65956-01e1-4884-9855-3d422bd754cb','6aadeef6-4393-4005-8da5-51ca4e422dfd',230,105,18,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-14'),
('dfa80cfc-4224-4e86-8586-e5e4de3991c3','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-121'),
('dfade264-1a81-46f3-a010-60038aa205aa','ee4dacd7-fe2f-409e-b014-e7adbfefa118',95,70,240,0,'2025-06-14 12:48:19.093','2025-06-26 08:18:44.849','910670298-1-1'),
('dfaeed0a-a879-4cdc-8089-fb9aace137c4','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-7'),
('dfb133a1-b1b1-47b7-b946-b2cc1decb8c3','aad5c1ff-942c-4e60-afcd-b7475a2421fb',85,56,60,0,'2025-01-06 13:08:17.896','2025-01-10 09:45:19.668','221943840-3-2'),
('dfb1f411-8a56-44d1-aa87-bd3095c8335c','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-81'),
('dfb583f5-c995-40bd-9abe-31bd9051fc60','c5b843e4-34ac-4cd1-bbc6-a9173074a6f9',0,0,0,0,NULL,NULL,'614496263-3-1'),
('dfbafdda-0f51-41ed-9666-349d7e4c0073','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-31'),
('dfbb00ca-f28a-4d22-93fe-56fd63a9000b','e0c27b90-eb33-4e8a-8ef3-679c60cf0ffa',0,0,0,0,'2025-03-24 16:01:46.233','2025-04-05 10:58:12.819','478559134-1-1'),
('dfbfef44-5ead-4513-a945-bcb816cf90ff','3e4d9220-ce76-450d-a76c-9787b1f4433f',54,20,75,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-8'),
('dfc29606-259a-4a7a-b4f0-764b6b17cd2b','87758232-82f4-41bc-a8c1-71f044bd69f4',115,68,101,0,'2025-07-12 09:20:20.708','2025-07-25 10:48:52.288','319116491-1-4'),
('dfc5d4c8-f25c-41d9-898b-197061614edf','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',78,68,45,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-3'),
('dfc7c813-34c6-45d2-999f-c6932b1ada4e','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-15'),
('dfc846a6-2bdd-47c7-ae68-9d625a8a7d0a','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',140,48,12,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.910','976819499-1-24'),
('dfc97900-73c3-4a0f-9fea-19a5ed6491f5','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-1'),
('dfce3bce-84de-4d0a-9da9-7b78b586b1ed','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-37'),
('dfd09d86-9c45-460c-bbd6-96546189a63a','1bea8751-eb0a-42d2-8f17-09d84a24d581',0,0,0,0,'2025-08-21 07:14:59.751','2025-09-01 16:57:01.814','319515461-1-1'),
('dfda745f-48a6-491e-86af-a710040cff7a','8e39c973-c918-4ebc-bd24-9e7fc61de240',213,50,8,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-12'),
('dfdabf2e-2954-4389-ab83-3b4200a400a8','7ba47169-83ca-49a6-98fc-6ef1a1990eac',80,75,75,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-24'),
('dfdb6792-cdaa-40b3-b934-8c94a2b3aa25','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-13'),
('dfdec0d2-9e36-4061-b7b7-c31a8d1f8f3d','a87576e3-14e1-46a8-99c7-1d48360995f5',83,70,70,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-18'),
('dfdf4a34-b2fc-4aa8-b730-8492cc74adea','5df6ebd9-9f42-42e8-b325-2e290291826a',95,15,202,0,'2025-08-27 19:40:06.874','2025-09-05 08:50:58.370','437154123-1-2'),
('dfe09e29-83f3-4142-b6fb-fc6ce6d37d5b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.967','2025-04-26 09:16:50.958','223734808-1-91'),
('dfe4fb71-c564-48a2-a47e-6c13ee8e0bde','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.206','745715303-1-3'),
('dfe5b947-9231-4309-83ae-22c23741c3a5','7db89a30-9c15-4696-a11c-dcd45c5887b2',4,160,200,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-4-5'),
('dfe68f2c-9aa3-45f4-96cf-896806be7686','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-171'),
('dfe94c17-c4aa-4978-bab6-bf8e4bf247ee','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-48'),
('dfeab939-ccc9-416a-9f30-6636caddbdc1','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',75,60,80,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-1'),
('dfed6bea-2a3a-49fe-a7fd-507ecbbfee5f','56f86587-7355-4e49-9eb5-727edc1be570',270,70,10,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-18'),
('dfef0cab-bfee-48a3-baa5-cfb81d24bd91','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:49.386','248284003-1-10'),
('dfef6e71-b042-4706-a460-4d80455790ca','f58e6b9f-d5af-48a2-952b-687f4ff843c8',88,207,0.5,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-6'),
('dff226cc-bfbf-49bf-8850-90bd2020579c','2b836e01-2f5e-4512-9cc2-9be25ec5b6b5',93,95,69,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-1-3'),
('dff7c8b0-deee-421a-b206-bb631bb619b5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-204'),
('dff9634e-4a6b-4468-81b0-7891daf43a4c','b153c580-1fa3-4d05-aed9-d033117f4c17',76,5,130,0,'2025-09-18 15:48:46.520','2025-10-02 06:11:08.157','808427332-1-7'),
('dffcd978-535b-4998-bad0-4467da3643c3','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.535','2024-03-27 11:10:49.305','7347113-1-23'),
('dffcdbde-4a3f-422b-b44d-5c6a82127bc5','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-42'),
('e000e3f9-a3c0-4f98-bc96-4c15b619d2c6','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-24'),
('e003550b-3963-4a78-b96d-2ccc68551077','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-60'),
('e00455d6-049a-4ad9-b167-624c422dfd9f','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',34,20,14,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-11'),
('e0056835-cb17-4618-922a-0574e7c93eb4','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-19'),
('e005c096-fa95-4e49-8722-38fb11ee925d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-181'),
('e0073593-4d0b-4a2b-9f2c-3c97c3ae019d','6fcc55d3-2339-4d12-b5e2-e156727c33f9',94,29,228,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.017','412767922-1-8'),
('e0078ed6-7cf9-4d96-b940-05ddffeab76f','6105a5ad-ab0b-4b69-b796-281a85aa1c1e',57,82,110,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-3-4'),
('e007a07f-ed5d-48bc-a5d9-0b40394da27b','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-22'),
('e00c3e57-1706-46ed-ae37-a1047bc70dc9','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-10'),
('e011be30-e599-4ef5-a28e-27503e3d48db','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-24'),
('e0121e47-8d25-4b0d-b616-13f941bdaf57','b2136a6c-8d9e-47f5-a1a7-112a9000127a',0,0,0,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-3-2'),
('e013e32f-39a4-4928-a6d8-767d7e7cf381','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-9'),
('e0161609-9d4c-4c12-961a-331bfc36bb9d','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',197,40,5,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.910','976819499-1-25'),
('e018f2ef-2e8c-49c8-9089-40729265962c','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-16'),
('e01cc237-786f-4cd9-86a2-fe78a4b123d7','13187572-3b08-4b7b-b6b8-ceb3cc69b5d3',107,7,237,0,'2025-10-14 06:22:21.342','2025-10-25 09:00:13.547','515463699-1-5'),
('e01db5fe-e8db-427b-990e-abe03342914b','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.057','2025-09-08 05:17:31.693','478505417-1-5'),
('e0240990-f942-4536-8c10-92f14403e794','3adbca04-ebb4-4d10-b7d0-613696f12fd4',0,0,0,0,'2024-11-02 08:42:31.015','2024-11-09 18:54:29.480','412417422-1-5'),
('e024d81d-8e1c-49fc-9b76-f15f09c846d5','5362cad6-3ac7-4876-8ddc-d366e2335688',78,55,111,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-7'),
('e028533d-a585-44aa-be0e-f1423d725f90','ded23734-c508-4194-a2ec-4f8b8510665c',51,51,77,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-3-2'),
('e0297ea9-8509-49ad-be6e-6fabb1c5ef51','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',205,56,4,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-158'),
('e02c6586-72a4-43b5-a296-a577f640f731','fe92661a-da50-4c92-b7a4-f473829f47fe',0,0,0,0,'2024-12-18 09:31:21.558','2025-01-10 16:33:08.226','73574376-1-7'),
('e02edc77-bd0a-4ce2-b363-ec77222edcac','8254b4b3-ad87-4e73-8ace-4bb7bb3bf333',85,80,75,0,'2025-09-06 01:20:30.429','2025-09-14 13:25:19.013','478161304-1-3'),
('e0370fae-d0ed-46b9-b678-82977eebd6e8','0e701d67-c6bb-4ce9-b32e-3d2255d064b5',0,0,0,0,'2024-04-23 10:31:53.400','2024-04-26 17:00:05.653','44971858-1-2'),
('e0378c67-18a3-4970-8702-72fc77686fb6','7311f1e0-e2be-43dc-9e40-f94a010e8939',230,100,90,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-49'),
('e037d276-a48a-4916-b698-48fb467e458f','3b92a39e-82f3-477a-9384-ce2b85988711',77,56,101,0,'2025-07-19 07:52:14.501','2025-07-28 12:02:39.073','598211009-1-2'),
('e038ff64-08d3-4aab-9255-1fb2eac2a27b','3ffe199c-d990-49fa-8892-2e9910fe8713',80,65,85,0,'2025-07-17 09:33:49.427','2025-07-22 08:59:55.913','524289921-1-8'),
('e03a7606-b8ea-4153-8698-e935967ae057','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-1'),
('e03da8e6-ad20-48cf-9e77-083ade4b8fd3','6ae0233f-f2c2-44bf-9706-7274e4c923e9',106,165,7,0,'2025-03-27 08:02:37.202','2025-04-09 12:54:30.745','412149383-1-8'),
('e0401111-f052-4915-b93c-237e77d5fce1','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.868','412346704-1-35'),
('e0436058-6069-49c5-bcfe-980215c0e9c7','a5506c59-0e9f-48a6-9b69-13a5163cf994',100,82,57,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.856','517558560-1-16'),
('e043d88d-28c4-44a9-91ed-2dcae0a8c9e8','574dfe37-d46d-47c7-8219-216fa7c208ab',75,47,47,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-1-3'),
('e045aa51-6153-45f3-a440-47cd43ef8edc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-48'),
('e047c937-c9e0-42d7-b8cd-7b328161044a','bbc6d966-9d42-48e9-83e4-13afb85a7c33',15,93,167,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-11'),
('e048059e-e869-4b87-90c3-2cc0122a5d14','ae22c95f-8f5a-44b8-98b4-9c9319923e2c',96,52,58,0,'2025-04-11 13:41:15.462','2025-04-28 11:58:44.064','43720744-1-2'),
('e04a992d-1166-43e0-a610-3a21895e39bb','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-17'),
('e04af1b9-423a-4188-87c5-c86014feecc8','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-41'),
('e04d3930-7119-49c0-8abf-4e4281ca350d','f0485a78-951c-4f89-bddf-b2003f0bf783',15,92,161,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-62'),
('e0501301-7118-49d7-a0d8-05541e175c97','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-82'),
('e0526c1f-5ff5-417f-83cc-14fa155b837d','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-4'),
('e052f74f-1350-40db-8d6b-64b1f1654299','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-26'),
('e0534df9-9bc5-4ef9-885a-1de98aa790cc','a6c77233-c870-4a4b-ab0e-76861ad31465',57,35,35,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-4'),
('e0545858-7cac-414f-bd29-291d0682492c','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-17'),
('e057e52e-9555-4a8d-83b7-7bbaf193cefb','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-15'),
('e05b7a80-c7bb-4a60-93fc-e331e6fbcbc1','0bd42145-fdd8-4793-a5cd-a2e404d37142',58,67,3,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-1'),
('e05c0765-ca1d-4eab-af11-7d989aaf194b','546ad3d0-25c2-43dd-9443-e48b8e5b6530',110,65,100,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-50'),
('e05daca5-00b1-4adb-b242-915e1f9cc89c','c5d03b78-19c4-44f2-a673-725e07271521',65,66,91,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-11'),
('e06116b5-dd37-41c7-99c2-f6de43d17ec4','1118c3e1-7c30-4ac9-ae0e-5dff68ee2213',56,82,101,0,NULL,NULL,'613745862-1-2'),
('e0658c5b-b796-4861-bbae-8dc88bd7647c','d627c533-b0cf-4788-b5ae-c6e60c825d52',65,61,85,0,'2025-03-08 13:46:19.276','2025-03-17 14:54:09.264','644714329-2-5'),
('e066b5d1-42ae-4e57-b04d-883186361b69','0bd42145-fdd8-4793-a5cd-a2e404d37142',210,100,6,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-13'),
('e067b248-2b5c-4a25-b016-9a55bf0849ad','7a300aa5-16cd-464e-a767-87e54338e3b5',80,65,53,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.560','371696812-2-1'),
('e0682544-2079-4e2a-bb54-12dbe76cea83','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-8'),
('e06b5719-6f88-4494-9a8d-51478320bad3','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-19'),
('e06c5810-c52d-47ea-8019-759c356442c0','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-32'),
('e06cce66-a9db-43f0-a7b6-72c76aab2bd0','5ea4b207-b05c-4931-bbd1-648b6933aae5',190,178,3,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-19'),
('e06f3071-1c14-4e58-891c-96ab594185e2','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-24'),
('e070cbfe-6d12-4032-9d3c-666bc5717912','e26651ab-2b70-4ad1-bfc1-a9fefd99fad9',56,56,84,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-3-6'),
('e07423ae-e5cb-426c-9db9-97064feee0b3','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:51.147','248284003-1-124'),
('e074b68d-7052-4f65-b497-451d92fadb0e','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',105,105,6,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-14-13'),
('e075aaa5-56d9-4b9c-abd4-3c10456dc5d9','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:51.648','248284003-1-84'),
('e0762ebe-6171-41ae-a193-0b863469520d','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-14'),
('e07945ae-fb64-4d31-a20f-adb882309afb','b23c09fe-3a88-4a0e-993f-e8cbb7ffde0f',0,0,0,0,'2024-12-07 09:32:01.395','2024-12-20 14:35:19.739','412665767-1-2'),
('e07a247c-8e99-4d1d-8039-7f03759ad00f','6cf8f42f-8f6a-4650-ae73-36d6d6c9015c',85,80,70,0,'2025-04-11 13:41:30.801','2025-04-25 21:36:15.192','644732617-1-1'),
('e07b9e49-4f37-4462-84fb-b142d2377376','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-19'),
('e07c2b31-c170-4a65-bdd9-f93ce81ab03a','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-66'),
('e07c7951-4c90-403f-8aba-5c5c0fd18d5d','7a1d10c6-318c-4046-8b6a-010e311d53c3',51,51,90,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-1-4'),
('e0810e30-3bc1-4ee7-a809-aa07f591a689','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-192'),
('e082d449-d5c1-4dcc-8efe-852ec7e06368','6f8fd929-0228-4fd9-a182-83fe855d3f5c',210,37,5,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.512','962908456-1-22'),
('e085ec86-5d68-452e-a04e-44864b2b141c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-65'),
('e0872e17-1973-4954-9a70-0b16f91bd203','a135c145-15f3-450a-819b-e82b427bc978',56,43,11,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-18'),
('e08766bc-780b-4bd3-b165-b1745269c166','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-1'),
('e08a6806-282d-4f5e-8cd9-4b751c2deb57','7d1ad103-2c0c-43b7-84f5-4f8ac2e81660',230,95,65,0,'2025-06-27 17:12:03.803','2025-07-16 16:50:48.019','268262151-1-1'),
('e08b1ac2-9224-4c9b-9851-c18efdacd64e','764ab450-3216-4b55-bf26-f7163a6cf0bf',98,205,70,0,NULL,NULL,'371117320-2-3'),
('e08b3673-825c-4047-a6f3-4df891cf1552','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-15'),
('e08beb73-96f6-499c-819e-36acf4107b0d','aa52ce79-9594-403f-a912-011d1f6e5822',75,89,60,0,NULL,NULL,'248100721-1-2'),
('e08c5075-27f7-4f77-8f78-6605786b4b48','0cc39437-8ee1-47ea-87c2-b9fe770c2259',61,22,87,0,'2025-04-28 07:40:33.089','2025-05-08 07:31:06.957','248568702-1-12'),
('e096874a-9050-4a6a-a3f5-48cf4f259ce0','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-19'),
('e099bf37-9598-4073-9c4f-f39ebe282f44','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-10'),
('e099d268-02e7-4481-b10f-a5c0b83fa46e','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-23'),
('e09a3eda-9896-49be-92ee-c2512f75fb52','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-79'),
('e09c9a73-a89a-4e2d-988f-ac46e116f9e2','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-9'),
('e09cc9e8-3524-4acf-b86c-d48397873fc8','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-29'),
('e09e5860-4a84-462e-85c9-df14cc36868a','2f648ea0-48c1-46b4-a5f2-0d0c23a5709c',151,63,2,0,'2025-10-20 07:18:04.671',NULL,'517619393-1-3'),
('e09f55a5-30be-4f0e-b1a3-e642d83ede80','89083e34-7ffe-4b68-86f0-bb6ea143c832',160,200,30,0,'2025-10-08 17:43:20.138','2025-10-15 08:12:57.977','614666366-1-4'),
('e0a05f14-94a1-40f0-8640-363da0983a86','7201b2ad-bcff-417b-a7c8-7f2da8c65235',40,31,60,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-2-2'),
('e0a49210-1bce-40b0-9828-f47324a6b11a','2bccb692-372c-403e-ac17-f092cc8d56e0',80,90,191,0,'2025-03-11 18:06:02.855','2025-03-17 23:30:53.310','982431907-1-1'),
('e0a89535-822a-427e-af05-1f293bf88295','8aea0a6a-b827-4a64-9988-5732ac25090c',0,0,0,0,NULL,NULL,'412201294-1-2'),
('e0aa52b9-70a2-4e76-9740-98e2c481bcd7','138edf36-d166-4335-8560-d9873886e31c',160,200,3,0,NULL,NULL,'745189997-1-22'),
('e0ae35a8-ca84-4801-a62e-8c71043ff74f','6b9f8196-1385-4aaa-b181-33cb3a9d6e35',91,201,5,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-2-2'),
('e0b2d4c8-6735-499b-8223-37cdf40e21fd','bd7ec8be-4215-4dc6-b7a7-0bdad2bd0193',25,50,75,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-3-4'),
('e0b940ba-fc47-4ab0-a7c9-bee7416de250','d5efe2d6-e010-4287-9123-64530913fd5a',200,100,70,0,'2024-10-02 09:26:56.363','2024-10-08 17:09:24.444','501626049-1-3'),
('e0b973e3-684a-4dad-87e4-bda8fca91343','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-32'),
('e0ba4fdd-6892-4465-94f9-b64a4e04ca80','55bdd77a-dfa4-4c83-bd2b-4709d2c3ad56',0,0,0,0,'2024-09-03 15:28:30.945','2024-09-14 19:01:44.723','982666330-1-4'),
('e0bbe1c7-2414-413c-990c-be617222a7a3','6f5b3ef6-8ec8-4e13-9be4-abdee95611c4',110,170,65,0,'2025-02-23 12:39:13.416','2025-03-06 10:33:31.427','319911664-1-5'),
('e0bc5a02-6f6c-44c5-8a8f-49656bfa46c6','04dff17a-2b9a-4f35-a082-5684dfe5706f',67,20,52,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-18'),
('e0c30ffb-7c1c-47ff-ae81-11f553ba8d2c','849056a2-595f-471f-a9d0-97a691231325',120,30,200,0,NULL,NULL,'614204771-4-1'),
('e0c6fde7-6f5c-4c22-8fb1-50f5936dec31','dfd7a962-bf2a-4456-aeb6-fbc5711ef1a5',94,181,9,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-2-3'),
('e0c9540d-f924-41d9-8804-8cd21d1643d0','ca2466d1-9a83-4f57-8f76-f5ddce302e04',241,236,20,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.687','382253716-1-5'),
('e0c9e594-e591-4167-90cb-e3d99a49d7d7','ae1008d7-d121-430f-a2b2-5b5a4a819668',0,0,0,0,NULL,NULL,'478361746-3-1'),
('e0cbb7d8-1e3a-4f9b-a52d-4914c26e6d9a','88ed24fa-a5d6-4b3f-9fe0-f610ed723cf3',70,70,97,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.469','517255345-1-3'),
('e0cdc790-46c5-444a-b207-149bce74a520','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-92'),
('e0d0f96f-73a4-465c-b43d-9de640f9cb62','b2cc240f-bde3-400a-bbec-a61085853dd5',93,55,101,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.694','478867058-3-14'),
('e0d54ef5-7b8e-41f8-a6b8-ffd8bf8dfb22','723a1ddc-811a-4899-bb4b-577c7b163262',100,227,70,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-6'),
('e0d72de1-932a-4269-97a4-eccc95b3334f','e54055a2-3c9c-4738-a808-7a4a31877ef1',203,58,6,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-30'),
('e0d7e961-0cb5-45d7-8d0e-aecdabc8d4a9','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-7'),
('e0da1333-eb0e-4ab0-8ca4-7b3af9f47443','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.490','2025-03-14 11:07:34.685','248243194-1-18'),
('e0ddd67c-a155-4ee2-bd25-ef63bbe4847f','1b975dd0-98b9-4adb-88bc-962d71cc7b22',35,11,179,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-13'),
('e0dfe6b1-8e2b-4e66-b943-57df9191b2ad','2b06d8c7-633e-4a98-bb51-6e3fea57b5d2',0,0,0,0,'2025-08-14 10:05:24.314','2025-08-27 05:41:52.198','745525130-1-2'),
('e0e06285-51e3-4912-a169-bd2674a4095a','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-31'),
('e0e08ac6-9fdd-49cb-b085-2b6bbeb164a9','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-35'),
('e0e1c89b-65ad-4b0d-8a32-236d271fae11','46d1512a-2bfb-476d-a224-9390f3e194f2',200,180,30,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.420','412395565-1-35'),
('e0e2f3c5-2f50-445f-8ad8-f35a0fda98e9','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-69'),
('e0ea41ba-8275-4415-890b-004aadcb188a','b692c464-2b7a-4151-b457-9482b72ce39c',118,43,100,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-3-1'),
('e0ec7468-fa1e-49b5-968c-09d65d5e9052','b5604942-4711-4185-9f16-590acfefb52b',201,45,26,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-3'),
('e0eeaafc-a187-4f02-aa81-ed4324ea64f1','85db759a-5e10-49be-92ff-a951a588c1a1',98,100,80,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-9'),
('e0f13610-c06f-4efc-98a1-17a7fef09bc7','61a97467-1295-4761-858d-a807036a28f9',0,0,0,0,NULL,NULL,'745141319-2-3'),
('e0f1c5dc-0342-450e-a5c4-37610e1236f9','e7aed6c5-43e3-463a-97aa-f3b033f573c9',59,20,38,0,'2024-12-28 21:42:18.051','2025-01-07 17:28:42.441','614200423-4-1'),
('e0f3357f-7367-43a8-8d46-87de4a640afd','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.505','221639055-1-5'),
('e0f6e286-6bb0-41e2-b669-f8fe46c3ff80','7fbc0cac-4c11-4144-b578-3223cd9dd90a',45,63,12,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-19'),
('e0f937bb-ac0e-462c-b76e-382be81b9199','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-28'),
('e0fcd43e-2e41-418d-b65c-3e8a075852ca','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-4'),
('e0ff2b7d-09e2-42b4-8bc1-7b990117dc69','5f1551a0-3002-4877-a790-948d5c6a3315',0,0,0,0,'2025-10-22 13:06:59.842',NULL,'223575392-1-1'),
('e0ff7681-0336-45cb-9b23-2d623f97e38e','c44eb17a-ef18-468d-b7b6-43c97fccad36',57,83,101,0,'2025-06-21 04:33:59.233','2025-06-28 21:53:40.969','675890872-2-2'),
('e102dd9f-1788-4cd7-9003-412245de0581','c2e2b4b1-9353-45c3-b8f1-d7bc259efb70',82,45,42,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-3-2'),
('e103faaf-ae7a-41c5-ba77-51b43aa623b1','7112a1a0-5ac4-4840-8d70-c104d26855cb',57,62,84,0,'2025-05-16 16:33:25.138','2025-05-23 14:07:10.169','221529516-1-5'),
('e1054165-caf5-4314-8963-3b1919e0d16e','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-25'),
('e108269e-eb70-492b-9111-d54347a0f871','700df4c9-3ebc-4f9d-b86c-5154441b3df9',105,243,70,0,'2024-12-01 06:48:18.232','2024-12-09 14:21:02.895','478380707-1-2'),
('e10f25df-31d7-4ace-8133-798dcf4e39f7','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-28'),
('e111f26b-9393-434f-b6f1-0a20398dfeb2','c231de82-1158-487a-9949-2da564ad0152',6,75,128,0,'2025-09-12 17:16:43.176','2025-09-25 06:55:41.336','221187320-3-1'),
('e11252d5-d9f5-46fb-ae63-e2e107af6948','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-1'),
('e1150105-78aa-4f43-89b2-5ecab7b3bf68','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-61'),
('e1175cb3-81d3-4faf-a91e-274189018e3d','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-26'),
('e11d1552-98cb-420a-9270-cc81a839dce3','d42ff6bb-7a1f-4711-9eb9-3593301b840b',80,85,90,0,'2024-03-30 10:54:56.698','2024-04-04 12:48:41.646','982592763-1-4'),
('e11e4754-ab84-4893-b315-ea8f93133086','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.593','248133427-1-20'),
('e11e7947-c853-4f1c-9fb1-2d388ed767ac','96449af3-c272-4a90-b77d-0790552dd455',42,95,75,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-10'),
('e11fe20e-0071-4c8b-962b-7f1a4765e4bc','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-48'),
('e120b5f4-bc65-4f5c-85e8-126b9f4bc8ad','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-17'),
('e120fb8c-72ef-4bb7-af35-b5336093b5d2','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-43'),
('e1227b80-e583-4861-87c7-b7aa60a6f5c7','05af1df3-9a36-4be2-8bd1-773d59e1605a',60,61,92,0,'2025-03-27 15:05:25.700','2025-04-07 17:19:17.059','655688103-1-14'),
('e1228a29-ef31-48c3-903d-b2a76a54a781','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-66'),
('e12f6c29-d7f3-4a9a-81ae-da612479f2bc','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-55'),
('e1335b25-ff3d-400d-a10f-fdd68b74704d','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:16.350','248135683-2-55'),
('e13a57ea-d86b-49f6-9d5e-b1d8c7d2f05c','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-18'),
('e13bf0b9-cfac-4d34-8a54-1dd8cd9c1df8','6c0dd84a-6c98-40d4-b2e2-bf00e6f5c44e',96,204,30,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-4-2'),
('e13c0636-d55c-4e8d-8422-8c9695200155','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:57.368','248284003-1-196'),
('e13c30f7-7e41-430e-bd95-325c10317bd8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-116'),
('e13e05b6-1af4-4bc0-9231-5a1e9b71b021','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-57'),
('e13ff449-92e7-412b-b43b-fa60511186f0','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-71'),
('e140865c-15a3-4859-a977-01d90757f8a7','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-20'),
('e14b0424-d47c-4ab0-94b1-f17f67186fc5','a307363c-9911-4bec-ab96-f2419bd7e6fe',92,60,60,0,NULL,NULL,'9823833-1-1'),
('e14b85eb-02a4-43f6-89a2-09d7b96279c8','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:53.066','248284003-1-97'),
('e14e10a2-c1ec-425e-82df-adacf4a64f03','edef2f29-fe9b-4fa0-8465-53614e2f2468',65,71,100,0,NULL,NULL,'478412191-3-8'),
('e14e4cf1-42a5-4d36-9047-c40b2c0ff25c','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-2'),
('e14ec487-293f-4e34-8196-796854293546','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',38,46,37,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-35'),
('e14f0677-d606-472c-b29a-12fa4c10a99b','d1c09ab5-7b1a-4956-bbe6-a055dad44720',0,0,0,0,'2024-04-27 08:45:36.986','2024-05-07 15:42:29.677','412316933-1-1'),
('e151919e-36fb-4b82-9be2-2d684acbd216','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.001',NULL,'221811614-2-6'),
('e152b23b-da10-4ffa-bd9f-245fd9ef83ee','d5a0f2f3-bcb3-4fbc-afd8-35e9c6c818c3',57,83,110,0,'2025-09-02 14:48:27.542','2025-09-09 18:10:59.563','437426295-3-3'),
('e15480d0-0dde-408d-ace1-b9811142d607','fe0dfc58-5578-4ca2-bf70-da7b36ac4e89',85,80,60,0,'2024-03-30 10:54:53.217','2024-04-04 12:49:01.227','982320208-1-2'),
('e15663f0-8f34-4d42-9115-148882e1c3d3','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-10'),
('e1566743-6b3a-4cdf-9968-53e43d5e59f9','539471d1-c2f8-4e53-ad1b-76427705641f',51,51,76,0,'2025-07-02 12:43:19.787','2025-07-23 14:29:13.652','644403373-2-3'),
('e15716ce-c62d-40aa-acd4-f071d91b9135','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-50'),
('e1576827-f60e-437c-ac93-bfaa7578767e','980e9055-cfdb-4ddc-8971-f55eb0411264',0,0,0,0,'2024-09-06 12:28:18.066','2024-09-12 10:54:37.436','478418764-1-2'),
('e15888aa-3027-4d35-93b2-a56a933e33d7','68780edd-2f5d-4394-95ba-798a89376229',200,100,29,0,'2024-10-11 16:09:02.511','2024-10-24 15:20:54.859','428226833-1-3'),
('e1595324-4403-4678-9d7a-04dd115519dd','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-56'),
('e15e17d9-ceb2-4629-b618-ebd8d98cfe74','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-6'),
('e15f36ed-6bd7-4291-8234-35241aea99b5','0ca7b5c8-7608-49bc-9057-d56d835fbea5',95,7,200,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-17'),
('e161c10a-ea87-4d2b-90b3-1984908a7bd0','c51cf533-511d-4f61-a94c-3e48074db45d',95,115,52,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.938','449728917-1-1'),
('e1631ca3-0eb2-4773-8202-fb9bd1fe7e26','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-65'),
('e1634a83-5a94-4aea-b2b6-c8fff5c89bc2','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-23'),
('e16477dd-dc58-4cb0-8460-0c62401fbd49','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-19'),
('e169e7ad-4240-4a66-ade8-2c5eb2986251','2ab41284-325e-4735-a02e-0af4784fee90',46,18,76,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.458','982844191-1-17'),
('e17004df-48d5-4922-affa-8d57ebb97fc2','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.544','2025-08-11 10:24:52.468','412173308-1-4'),
('e1758634-9e99-49f8-80b1-695c1a6924aa','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.190','163961995-1-96'),
('e17c8ad4-feb5-40e8-872f-1024cd1b0497','9114ad70-d53e-4d1f-89c7-30585d0a43de',260,40,3,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-36'),
('e17f7f04-0ce5-40af-bf9d-7d2ecd22cb6d','c5027968-9a23-442a-bebc-9b8745408960',40,31,31,0,NULL,NULL,'982759064-4-3'),
('e1805182-64d9-4599-ac0c-b5f43cabfa47','af3e2c68-d1df-455e-a5d7-0f309e2961a9',63,58,84,0,'2025-10-22 13:06:46.078',NULL,'515377519-2-13'),
('e1823fcc-5503-4816-a421-f6bc6b7189ef','cfda16e3-3e94-4fc7-b414-e5be0c5bf581',0,0,0,0,'2024-09-19 18:27:28.977','2024-09-27 16:39:50.359','982219496-1-1'),
('e18279fb-a48b-4fb9-a98d-d2e632e95094','27f50539-120a-4017-b647-afcae9da99f9',45,52,53,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-3-2'),
('e186b69b-e6be-4349-b969-fb4001f3e4e8','8460601e-2491-4cf6-a0f3-c6413c212c48',30,120,200,0,NULL,NULL,'614204771-3-1'),
('e18cbb36-f33f-4cf6-98c0-60fc98c8f166','9d7979f3-a35a-4a64-97d1-4ba973786029',55,4,215,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-18'),
('e18d15f6-6d32-4aff-a0b0-63476d7029ca','bdc15b51-242d-450f-a47e-a75e07f475a4',100,197,26,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-3-13'),
('e18e7efb-8cf6-40ab-ba50-4b9cd695acc4','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-10'),
('e1916f2d-37c4-49dd-9975-ee4d628f3393','57127d94-6fac-4e1c-ac7e-d9e37f789e3f',8,52,76,0,NULL,NULL,'614364554-1-2'),
('e19a760f-2bca-40f1-9c19-f00a4cdc7372','86e5956d-750b-4aa3-8f00-53e2db7b9f65',135,5,180,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-28'),
('e19b60e5-8e1f-47ef-8ba5-28fbda250075','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-19'),
('e19d8269-6dde-4998-bc4e-cff0fbd6127e','26275b7f-ae50-4230-8071-e1002042a4c5',123,125,45,0,'2025-01-26 10:54:38.004','2025-02-07 11:21:19.005','127530070-1-1'),
('e19e3c2a-7cf8-4bc8-98cf-6b68387c401c','7bbdae5f-e68a-4fe0-afa2-f1f09497e5cc',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-3-2'),
('e19ef04b-d6d5-43e0-8333-f51718a93726','db12873e-9297-4d2b-bd62-26a173ac80ce',86,57,107,0,'2025-10-22 13:06:52.544',NULL,'786146097-7-9'),
('e19f07a5-a868-4eca-af25-69627f88d634','78e96b5d-e785-4827-a870-bb88c819f8d6',0,0,0,0,'2025-02-13 20:44:18.368','2025-02-22 10:20:16.787','910291071-1-1'),
('e1a35678-cad0-4d83-9177-4a1439a66644','a446daf4-5d63-45bf-8b9a-016e1db9d769',87,87,7,0,NULL,NULL,'221584314-4-2'),
('e1a44d0c-9250-47b4-8683-b4baa270a495','9b4d1c30-8bcb-494d-964b-89ee11fbb5ec',51,51,77,0,'2025-09-12 17:17:01.866','2025-09-24 06:51:09.697','437319119-1-2'),
('e1a7dd60-2263-4813-b485-569a171a8e67','04dff17a-2b9a-4f35-a082-5684dfe5706f',165,40,40,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-19'),
('e1a81078-952c-4460-ada1-3f01b83ed84c','96449af3-c272-4a90-b77d-0790552dd455',105,80,130,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-27'),
('e1ab01fc-e64b-4e93-8d53-54243ff73b3c','3239bdef-e86a-44cc-82cb-b811ef7a5803',87,87,7,0,'2025-10-25 08:59:22.000',NULL,'221811614-1-2'),
('e1ab4389-a284-4f66-9ccd-c9440efede9e','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-44'),
('e1ac7d5b-c416-4879-ba83-3114e03c6a23','ff17f3bf-0b11-47b8-9bf9-410ace402e2d',63,57,85,0,NULL,NULL,'221410306-2-6'),
('e1ad0e42-7d5e-4db9-bb49-8855bba5dec7','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-18'),
('e1ae9b9d-70a5-4a96-aa89-25fec10c298b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-42'),
('e1af28aa-c999-4ab5-b1f5-1e0839cb22fc','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-133'),
('e1b2100a-f995-4d9f-81df-e9798f131578','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-129'),
('e1b8e61d-da24-408d-a156-0100bd9ea187','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-18'),
('e1bb6c4d-90f3-470d-9135-5c352a8b9a70','c5027968-9a23-442a-bebc-9b8745408960',67,10,10,0,NULL,NULL,'982759064-4-9'),
('e1bc66e4-2c06-4a72-b147-c5f5fef673e6','8625abf2-719d-4d7f-b206-16948b318b8b',145,62,7,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-28'),
('e1bee43d-e3fd-4eb3-8290-2fdb0249eaa4','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-97'),
('e1bf0b2b-442a-4bcc-9691-3727f3d72096','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.397','41245861-1-82'),
('e1c1c013-8cd2-481c-b6a3-4faad5886791','546ad3d0-25c2-43dd-9443-e48b8e5b6530',31,11,140,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-6'),
('e1c228b8-7251-4656-98d4-0f745997129b','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',124,140,7,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-32'),
('e1c746c0-8bc1-4349-948f-5e33edc54f34','f8e899ed-a330-44f0-9263-2af1e0da52d0',19,13,143,0,'2025-10-20 07:18:12.638',NULL,'531606130-4-4'),
('e1cbe9b1-8e6d-4512-8fe5-b958f84d9d7a','4d0794c2-98b6-441e-840f-79bdf1daf805',1,1,1,0,'2025-04-25 16:56:58.360','2025-05-02 17:09:11.363','517279482-1-1'),
('e1cd110a-9432-4ad7-a112-71aa16088f18','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-9'),
('e1cd74fc-e786-4758-978d-2a4b90d9f1fc','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.636','412678735-1-35'),
('e1ce9c99-9d08-4106-8986-e4d4d4d785ff','0a37d3e3-2d69-4e15-a710-09d4eae2258f',0,0,0,0,'2024-09-06 12:28:15.097','2024-09-12 10:54:41.145','027547681-1-6'),
('e1d0e5e6-59cc-47bf-b3e8-7c74ee788af5','83902671-5e3f-46e6-98da-fea889e40b25',81,9,202,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-8-5'),
('e1d1287a-731c-4b05-99b3-5d8465fb100e','0602416a-017d-4286-844a-6bc37caa79a8',135,21,7,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-6'),
('e1d26346-3426-4cf7-b937-319034485707','05c9f573-84d5-4220-9894-da21bdbad976',57,79,104,0,NULL,NULL,'47856812-1-3'),
('e1d3dd0c-f5db-43f8-9401-e8591430e551','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-206'),
('e1d5da65-9931-424a-bf1d-a2227dfed459','0cc39437-8ee1-47ea-87c2-b9fe770c2259',61,10,219,0,'2025-04-28 07:40:33.089','2025-05-08 07:31:06.957','248568702-1-23'),
('e1d720d5-1ef5-4fd7-8944-17e73bd2d94f','b698562e-f03d-45ef-b2ac-535d8edcf5c4',58,71,100,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.152','745177264-3-6'),
('e1d83049-0b08-4743-9efb-f75d5fa6917e','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',210,64,7,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-63'),
('e1d86c1c-be98-4446-9aee-92f577e98b76','40a691f8-942a-4652-b0f7-9d467326f3e5',93,154,15,0,'2025-08-07 16:53:07.020','2025-08-19 14:52:22.917','371660448-1-1'),
('e1dada2c-64e5-49c9-92f8-d12f2a3c93eb','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.839','248771792-1-40'),
('e1de1dc3-af8c-4326-8b7a-2c2f7e7d4551','6f8fd929-0228-4fd9-a182-83fe855d3f5c',65,77,85,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.512','962908456-1-23'),
('e1e09d98-e6be-4b49-81c8-d0afba6fac24','c0fe0399-dd85-4397-854c-745020ab9c38',100,97,60,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-4-4'),
('e1e18547-4712-44fc-b9bc-0af2ed26d18d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-183'),
('e1e36622-41e1-413e-ba04-c817d6545e84','7539ec51-cdb8-4879-b280-a64290bb512f',30,17,213,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-3-10'),
('e1e37344-8383-4069-8568-16d266e42b90','090b9a06-aee0-4c02-b626-f3e2002f0fce',90,80,65,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-38'),
('e1e51d9a-3973-4d8e-8f18-7851e2916a21','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-15'),
('e1eb239e-542d-43c4-a076-21dde4781ee4','d30eb7b1-5ae4-4750-9c25-1fb72d0f30b7',15,25,90,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-3-2'),
('e1ecadf2-20c9-4b39-99a7-c60fdc277e08','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',153,183,10,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-36'),
('e1ed026f-af3d-4b3d-af09-c2724ef8bd3c','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',44,6,210,0,NULL,NULL,'478893710-2-23'),
('e1f0753f-a274-4adb-bd41-1e945888b8a0','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-24'),
('e1f09241-8f2d-4a27-828e-368309aaf659','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-35'),
('e1f1ecb8-6184-42c4-8261-879d113ff09f','0e701d67-c6bb-4ce9-b32e-3d2255d064b5',0,0,0,0,'2024-04-23 10:31:53.400','2024-04-26 17:00:05.653','44971858-1-3'),
('e1f23d4b-8b12-4727-be8c-be78de1f77b1','aea18323-162d-4a93-9077-c2c03f8305d2',57,82,101,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-4-4'),
('e1f58347-b41b-4dd6-8a29-aaa47ae734b4','a4795240-7137-43ca-a2b8-d82742643bf6',110,23,9,0,'2024-11-08 18:02:55.191','2024-11-15 16:10:47.307','50156405-1-2'),
('e1f712b5-3a36-4355-9480-2890346428c4','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',102,25,9,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.065','428138926-1-64'),
('e1f8edce-0dbd-4a46-8042-32cd6ac4ec6d','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',58,50,30,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.066','428138926-1-65'),
('e1fa3de2-950f-4b8a-8b0c-c29c78518717','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-14'),
('e1fa7725-6903-476b-891e-3de49ade499c','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-28'),
('e1fab0f9-1912-425f-b108-95cc9aef3804','19515d6a-9050-47c6-96a9-cd430edba1b6',70,94,147,0,'2025-10-06 07:10:09.041','2025-10-15 08:24:39.146','745906720-1-4'),
('e1fb80b3-b734-4f0a-8a12-16a80e1b52da','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-78'),
('e1fbbe38-1649-425c-9506-8cbb56d9415e','577ac94f-b889-4af9-8d01-96034f38a36e',43,56,45,0,NULL,NULL,'478739679-2-6'),
('e1fc19e7-d699-4c89-9ef1-fbd69d5cfbf4','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-30'),
('e1ff30e5-df36-4b19-a86a-277786908c6c','79f2695b-370d-43a2-931b-972ba627ccf5',30,25,11,0,'2025-09-02 14:48:47.214','2025-09-12 06:55:55.906','437854000-1-3'),
('e201219b-f256-4ded-b33a-c0d9d082fe89','903069f9-ac21-4d89-b9a9-f79c90780780',0,0,0,0,'2024-09-28 16:26:43.973','2024-10-12 15:50:54.840','478422219-1-8'),
('e2039fe9-c2ab-4e15-92e8-26480c9344b9','2728034d-4fca-460f-994b-48aa204fcba4',33,33,185,0,'2025-10-20 07:17:57.978',NULL,'59878032-2-1'),
('e206d653-6a3c-4021-8d6b-dcc4770ccdec','704fd720-5b2c-4da2-a7ac-312e961cba30',0,0,0,0,'2024-07-20 16:33:18.224','2024-08-05 19:56:35.100','982405831-1-1'),
('e2074b86-7f23-4c48-aa8a-9f4361856594','fed28e47-8397-440d-8404-a285a8bdefbd',42,31,15,0,NULL,NULL,'011399882-6-4'),
('e2112032-8003-4ca8-8ce1-b810ee61aa0b','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',52,44,12,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-58'),
('e213c958-bcd6-4b2e-9a55-9a1507bfae09','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',46,43,95,0,'2025-06-27 17:12:10.111','2025-07-14 06:05:11.367','910756975-5-18'),
('e2181dbb-7d94-4877-b5b8-be38296f3b58','0a4aa4de-bb28-46ac-bb64-98beb5311460',85,85,8,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-1-2'),
('e21cd0da-0722-4dee-a8c1-1d58f6e70fdc','85771243-c1f1-412f-9aaa-86d33ba665c5',0,0,0,0,'2025-04-28 07:40:34.867','2025-05-07 06:08:12.703','412485805-1-15'),
('e21dabe9-834d-4640-b9fa-ad9e0b86e765','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',10,15,10,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.184','614987879-1-16'),
('e21f497d-f3d8-42f5-88f6-b88b23e7c7e3','db6038f5-6951-4cc2-bf80-1b165340ace8',115,93,80,0,'2025-07-29 12:58:40.468','2025-08-08 08:47:32.675','644644115-1-4'),
('e2218c4f-12ef-48c0-b373-92529038d614','d77c1e4e-c306-49d5-a8dc-4ae4f2dfa986',85,79,80,0,'2025-01-11 15:20:10.779','2025-01-19 14:52:20.190','449558519-1-2'),
('e2240b60-4bad-47a3-8692-0341d5c327ed','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-62'),
('e225029a-9ce8-48c8-afed-842d96dab70c','33dbb768-149e-400c-98f9-43ec0f49c85c',25,25,165,0,'2025-05-16 16:33:27.780','2025-05-23 14:07:00.550','33850305-1-1'),
('e2257f57-7a07-48fb-92de-29d6599a1fc6','5a86c4f9-0df3-4b24-8d17-99cd94250ff2',51,51,43,0,'2025-08-14 08:21:34.586','2025-08-25 07:11:01.392','221272241-1-2'),
('e229d5a2-0545-4a53-bb28-960be411fdb7','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-52'),
('e22afce1-2a9b-4a5e-b5ab-bd969a826e59','a72196c5-e3e1-4c0e-bd65-122acd3d581c',196,16,16,0,'2025-08-14 10:05:51.549','2025-09-01 11:08:13.632','478784133-1-1'),
('e22ceea0-2567-46d5-b2e2-aec22ffd0ef6','24b375d8-76fe-446e-b328-26e7a51cec10',100,196,80,0,'2025-08-27 19:40:22.423','2025-09-03 19:37:53.203','644880161-1-2'),
('e22f72e1-9f09-4e70-90b8-33346dbf242a','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-111'),
('e22fabaa-2fb7-464e-8f99-a35d9affc305','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:54.448','248284003-1-169'),
('e2305388-34c9-44b2-b3f1-5d9c301fbd97','841f7f01-a7cc-440b-859e-dea7f085dd74',77,170,71,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-1'),
('e2313d6a-d6d3-4a73-a77d-fa754cfe9d03','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-48'),
('e23292b0-c2c0-4004-a93f-6a594e8a79c0','a4982347-c05a-4357-a3f6-ce95c38e366f',0,0,0,0,NULL,NULL,'817550178-1-3'),
('e233b362-8683-442e-a253-5153fccad1bc','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-55'),
('e23743e8-3f9c-4ce4-b553-03a6ca60340d','796fef16-71d1-4946-b8ba-54f687adf598',90,60,60,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-25'),
('e238ddd9-6c79-4c1c-bb0a-b7880360506e','1c3805e9-6884-405d-bb40-3d257f12ef95',77,43,43,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-2-3'),
('e23baa42-3000-4154-9f83-3f6272ce5c37','2120ee1f-a40f-41e9-a83f-c2cbb65a0a1b',84,53,48,0,'2024-05-13 13:11:47.400','2024-05-29 18:59:20.397','126525086-1-6'),
('e23e6120-8b11-420d-b6d4-11555e1b4e4d','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-14'),
('e246cf25-ccd5-442c-81fa-488a4a286ec3','dd4f52de-9725-4567-b85b-00e3f3b1a92d',157,75,75,0,'2025-10-22 13:06:52.544',NULL,'786146097-8-1'),
('e248f5d7-d2a6-4e33-99d2-66287c26e105','b3b0a522-bdc3-4e43-8b3d-dc0c109f3ab7',80,30,204,0,NULL,NULL,'598604443-3-7'),
('e24a1ead-a5cf-44f6-be0d-a7294f706d73','32611eab-fe9f-4168-b970-d430359cb03a',95,12,170,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.221','982106314-3-3'),
('e24f1c90-0b42-4d74-b97b-46f1aa70bada','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-36'),
('e2530cd2-cc3e-4187-aa7f-886448c98f97','8e02a371-acd3-4f1e-9f76-1614cdddbfda',0,0,0,0,'2025-08-22 20:28:44.259','2025-09-03 06:11:30.430','37119244-1-2'),
('e2531932-35b9-454e-b362-f9bfc5f206a1','02c4d887-2e6c-4a21-9d40-d8ba2e9b6163',13,185,38,0,NULL,NULL,'338991013-1-7'),
('e254da8c-b6b6-4e89-b02f-e541774311cd','c5d03b78-19c4-44f2-a673-725e07271521',180,38,38,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-4'),
('e25a3ed7-5d2b-4c5b-8fe7-76f22e22f853','6aadeef6-4393-4005-8da5-51ca4e422dfd',53,75,95,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-15'),
('e25f2458-1777-4b73-9611-b9a970d90bac','cd17ebfa-c553-4d07-bd3e-071432e31a4d',115,57,219,0,'2025-08-14 10:05:32.633','2025-08-28 14:09:00.529','657153999-1-1'),
('e25f9455-48ee-4094-95fc-b910a2c72d9f','7d75236b-0ffb-4e2a-9b72-d8f6af6680ca',75,75,75,0,'2024-03-14 13:50:24.592','2024-03-22 10:14:41.904','982744560-1-5'),
('e262aad8-97ec-46ef-a1c9-8c26ffb3e673','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-2'),
('e2630b79-e692-487d-8ee3-2b42941fb435','8bff9e3a-f9c2-4823-b36c-e38dbf3ff3c8',51,51,78,0,'2025-05-24 17:55:27.320','2025-06-04 19:39:21.926','644966461-2-3'),
('e265fe80-17b1-417b-9b92-b2920a495214','b5604942-4711-4185-9f16-590acfefb52b',205,77,28,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-5'),
('e2667d5b-3895-4fcc-8a1a-61a3844096e7','532dcdc4-aacc-4c9a-9207-a316ea09350e',0,0,0,0,'2024-12-07 09:32:24.377','2024-12-18 16:37:02.165','735173063-1-3'),
('e26906db-2074-4660-8506-e0b298669bfe','f5680032-1fe3-4ad6-a948-925ccde94367',96,196,7,0,'2025-09-18 15:48:49.252','2025-09-30 18:48:07.748','351330330-4-3'),
('e2696323-14b2-4d8f-8465-55c533bfe273','b6d04ed2-f29f-400a-ba86-37b36b0830b2',67,9,197,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-17'),
('e26e2908-ddb4-43a8-b045-a017b01455a6','2027d4e3-00a8-4050-97b9-4dcf16140122',100,93,65,0,'2025-10-08 17:43:32.175','2025-10-17 06:15:07.133','644847294-1-2'),
('e26e6c0b-2c41-4243-a4aa-02e410f8b21c','3842edfb-94f9-4f7c-b110-2ea10ce622e7',95,181,65,0,'2025-09-02 14:48:28.592','2025-09-10 07:23:35.121','644758410-1-4'),
('e26e7909-ff3d-4ba0-bf57-e5c4d6542c68','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-8'),
('e272a544-6d2b-46b8-9233-34ad2d36b13c','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-25'),
('e27bca97-eacd-4953-9d9b-5ead3570b9ab','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-16'),
('e27e00fb-03c8-4b7d-a5ee-d9145213215d','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-87'),
('e27f2b8e-20f6-4b8c-872c-baa8ccc0fbfc','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-33'),
('e28197fd-11d3-4a09-904b-b09894854dcf','4fee46a2-3558-4ad0-b22f-8e6a38950750',0,0,0,0,'2025-03-27 15:06:22.210','2025-04-04 17:24:33.515','478650682-1-4'),
('e2826228-9b06-4a91-95b8-ec0d5837f4ba','93aa21e5-fa9e-47a0-aea0-166deeae3117',85,193,75,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-3-4'),
('e284495c-b76e-4468-8ef5-c0cc34fbddff','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-40'),
('e2885eeb-48c1-4a13-8f3a-79058800f7b9','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-25'),
('e2889bf5-affe-492d-ad06-49fb3f63b37f','cd4f4870-63e4-4752-9707-a1bce76ca7e4',0,0,0,0,NULL,NULL,'982376655-3-6'),
('e2892f0a-7dfd-4ad9-a207-236b285d32d0','b9dc5ac8-4889-4662-9cde-61ca4efefe1c',45,6,210,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-23-3'),
('e289ac5f-e4e8-4389-84a1-e5950a8e7e63','e0a099ee-13a7-4e80-b77d-55f860dc2f1d',0,0,0,0,'2025-02-09 09:51:13.031','2025-02-20 09:14:10.976','830905881-1-1'),
('e289e77a-3e44-406b-bfa7-6cec15eb97d7','b28b3d5c-7e4b-44f0-812b-c88b274927d2',63,57,84,0,'2025-09-12 17:16:35.272','2025-09-26 07:07:53.610','221560581-1-8'),
('e28b3245-59fb-495a-8ad4-467c20a22cf9','2d6cd8ff-fddf-499d-ad4d-717285b10f9e',38,38,76,0,'2025-07-19 07:52:08.142','2025-07-28 18:40:04.194','371857345-2-3'),
('e292e14a-bf26-4f27-bc20-b19238fbd59a','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-182'),
('e294c4f6-2c73-4abe-97ee-e55badff3791','76fbefc2-a286-43f6-ad72-bfd2c3a8078d',95,198,66,0,'2025-02-15 13:31:47.546','2025-02-26 13:43:22.913','982573889-1-2'),
('e2960c04-c958-4453-9567-52c4a3bdb4d6','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',115,115,70,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-6'),
('e296803c-faeb-46f8-aa5f-7d94a26f86f2','ee2cf480-090b-45bf-9383-709e6e5470a6',51,51,76,0,'2025-03-27 08:02:39.973','2025-04-09 06:26:25.853','22145224-2-3'),
('e29852e3-629f-48f0-9614-8a423a4c19fd','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-15'),
('e299bd19-bf00-40f2-be33-338fb454ad61','8c9180d9-d9c0-4e6f-9a20-abb4310975d2',51,38,75,0,'2025-03-27 08:03:04.685','2025-04-07 11:35:18.898','107869996-1-5'),
('e29b2ff8-3ceb-47b0-a98f-511e6f237f65','212c72a4-86e1-4bd7-904c-39a78fc6c848',85,60,56,0,'2025-01-26 10:54:51.222','2025-02-06 09:24:52.517','22140129-1-6'),
('e29b4d88-5c9a-4e13-96c6-404005912f68','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-52'),
('e29ba992-08ba-43d8-827e-169e2da830b2','646747fd-82ac-42f4-afc2-f8e1df40f0c5',35,70,15,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-2-2'),
('e2a63866-b57d-49e0-b42d-5ccd32aad7c4','bdb0624a-95e1-45f3-a4f2-5d9bbe332e1b',0,0,0,0,'2025-05-23 14:05:35.620','2025-06-05 16:38:11.077','657408169-1-1'),
('e2a662f8-2855-4505-ad71-f334aab56919','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-31'),
('e2a6d769-98d3-4506-bce4-d4a6e1c4de45','8212cfcd-8545-4bc3-81a9-78667026bebc',4,120,70,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-1-1'),
('e2a71eb4-6150-472a-887e-9fcf35bfd65d','558b4bc7-c19f-4722-8daa-e4526e281a9a',9000,100,100,0,'2024-03-15 14:41:19.149','2024-03-18 10:39:13.794','703728513-1-1'),
('e2aaf98d-090c-4863-8104-1fd33fd60904','d5c4de73-6296-47b5-9493-d4e95eb86ce9',51,51,78,0,'2025-07-02 12:43:25.536','2025-07-23 06:18:04.216','644330933-3-3'),
('e2ad7fcd-05c5-45a3-ae1e-011fdcafb515','d96280e8-5cd7-47ae-80aa-e7bc1634804d',64,84,57,0,'2025-10-14 09:22:11.332','2025-10-23 06:19:52.871','221603036-1-6'),
('e2ad8d4c-37b3-4b2e-b507-6be70673a758','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-51'),
('e2ae4cfb-dbe3-457a-a08c-fd908e2a8975','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-83'),
('e2afbd56-a20d-4d8a-85de-7b43516a234b','5c57ba4b-63d2-4267-82b7-2687078d3e3c',81,108,56,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-2-1'),
('e2b260c2-9c4e-4b1a-bddd-212d2dabc3a6','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-8'),
('e2b32151-03c8-425a-b547-d69270d97b9b','99f3c807-c2fa-4316-8a01-93a1eeeac0f9',31,40,200,0,NULL,NULL,'613868869-3-5'),
('e2b32a3b-b858-4800-813a-03452bbcd1cc','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-26'),
('e2b425d4-0246-4cfc-901a-2130763336ed','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',85,23,57,0,NULL,NULL,'644104537-5-14'),
('e2b766d9-1cdd-44bc-b86e-d091ee41de21','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-73'),
('e2b7c410-73a7-486b-9ce4-61fadf4a21b4','8799dea4-056f-41a0-bbfa-090ec5d409f2',0,0,0,0,'2025-05-23 14:05:36.910','2025-06-05 16:38:03.043','371287728-1-1'),
('e2b8eba7-2ea9-46e4-8aa0-6e3720339201','8e39c973-c918-4ebc-bd24-9e7fc61de240',230,70,100,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-13'),
('e2bf5aa5-4c40-4839-97a6-a5962f733169','37a53d90-a8ab-438d-9932-9ac6888f952f',40,40,45,0,'2025-05-24 17:55:36.535','2025-06-03 09:41:12.981','437869312-2-1'),
('e2c6fb2a-daf5-4eae-ad17-9045c4fbade2','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',55,39,21,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-36-9'),
('e2c71909-18e0-475a-b638-f8e7943ff23a','a4d36541-f637-40f4-97b9-5e1b1dfbcc91',0,0,0,0,NULL,NULL,'478350685-4-3'),
('e2c7696a-9c77-455b-98e8-d0f614336572','6fc8a59e-ad04-4aa3-b21d-1198d80f60fb',65,90,85,0,'2024-11-12 16:16:23.087','2024-11-19 17:23:16.655','902332542-1-5'),
('e2c9a6eb-d84b-4dbf-a6c6-53368465b6fa','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',57,62,83,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-5'),
('e2ca25a8-cec0-4391-ab8d-90d2b9eafcb2','5598c3c4-7b30-49fc-8997-d966fbd95fbc',202,27,43,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-3-7'),
('e2d13f66-0530-4d75-9d48-fe87a308698b','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-19'),
('e2d22c7b-8e14-4b3f-a802-e5235490cd8f','a9d9045b-a128-4ab9-b2f2-89d537b5f2af',0,0,0,0,NULL,NULL,'011548428-5-3'),
('e2d54edf-d370-4eb8-b214-1e19cca393d2','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.501','2025-02-27 16:38:59.202','118176933-1-20'),
('e2d5fdc3-8456-40bc-b043-1a7cebe4274c','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.251','223823107-1-47'),
('e2d7a577-97a9-477a-bfdc-d091ee2da6fa','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-1'),
('e2dd7f67-d837-4930-a98e-ed33a7c03927','7ba47169-83ca-49a6-98fc-6ef1a1990eac',148,50,23,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-25'),
('e2df25ac-8c43-4e6f-a11a-7d09ea1d8589','62a8ed11-5b75-4aa0-85e3-55f45545c40b',90,65,61,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.111','478302796-1-3'),
('e2e066cb-c190-42b3-9f47-38dc6e48a8c4','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-65'),
('e2e25a1d-61b3-4845-96de-8b56a43f1cdf','135906fa-fceb-45b1-a401-83de82461319',48,44,15,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-7'),
('e2e35948-1033-46b4-8e8c-3f6b39ce4a4d','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.502','2025-02-27 16:38:59.202','118176933-1-3'),
('e2e39c12-9600-451c-abb0-5bed0a253026','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.119','2025-05-02 06:59:30.684','478962763-2-24'),
('e2e47ef3-4260-4260-8183-841a9918aa34','6ff86400-74db-4fb0-8f8d-7ebd7383bc24',0,0,0,0,'2025-07-08 11:31:03.623','2025-07-25 18:05:15.056','735929791-1-2'),
('e2e4af14-2845-4471-b889-c6917a6f5109','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-49'),
('e2e4db9b-e56a-47e6-b1da-7c7d931a2884','23603e9a-f1df-45b7-910f-576bcfbf1bb0',0,0,0,0,NULL,NULL,'478981977-1-5'),
('e2e5a8d9-79e2-4064-b5f3-14074ebb26aa','6ce91342-6292-45b3-be85-1b55deed3ecb',240,100,85,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.342','517895646-3-4'),
('e2e70177-e952-4e78-9049-d4b5ee805bb4','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:17.068','248135683-1-250'),
('e2e89553-dc92-4b6e-8ae6-a90c37d65ffb','5d93f9db-58ed-48cd-adb5-3427b2b7061b',0,0,0,0,'2025-09-18 15:48:33.491','2025-10-02 06:12:12.650','221996027-1-3'),
('e2ec11fd-503d-442f-9fcb-8f3958fd4338','b5f81ffd-0a34-49a9-8ff7-1cac1067fdb2',37,26,16,0,'2025-06-11 13:14:26.407','2025-06-24 06:24:22.448','91034652-1-3'),
('e2ee1815-3b29-457c-933d-ef294c105086','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-79'),
('e2eeade5-96d4-4fae-be8d-30d7ed7a8dd8','b16256b1-d6a2-448b-a170-4c574127a57b',11,45,68,0,NULL,NULL,'745189997-3-17'),
('e2efb73b-b241-4157-8228-3aaf3ed4ecc7','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-34'),
('e2f4370c-3de0-4e29-aea2-4ad91ca077f4','f68f848d-9773-4521-8431-b7efe576a9ea',90,28,201,0,'2025-03-06 10:31:59.307','2025-03-17 14:53:39.452','982126318-1-3'),
('e2f8d1b9-574c-4e88-8826-7af275d492d9','9114ad70-d53e-4d1f-89c7-30585d0a43de',96,52,15,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.592','146630568-1-37'),
('e2fb2a13-ee21-42c6-931e-3fbc1cda4050','38111575-7990-4cd3-8e28-5bd3d062443f',57,84,62,0,'2025-08-21 07:15:21.932','2025-09-04 06:17:08.953','22137977-1-1'),
('e2fc60c8-5d69-4dcb-9922-5a8b0358d126','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-11'),
('e2fcd869-2484-4f32-93b8-49242076563b','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',75,104,14,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-31'),
('e2fef8b0-fd8b-4b64-bbf5-5daf564b67ba','c5d03b78-19c4-44f2-a673-725e07271521',80,76,40,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-5'),
('e302cb3d-aeec-417e-bda6-f3af1ed38ba2','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-9'),
('e302cd3e-c44c-4175-914c-4a0e242138a4','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-6'),
('e304f87e-e4d2-43fb-bb14-268a34ca5bc7','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-61'),
('e305cfe7-a8c4-44ee-a274-f9a89b65bf35','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-3'),
('e3076707-3538-414d-9688-e0ccbeba6869','57b80d20-6d99-44a4-b36a-4bbe6310a3c5',35,102,210,0,'2025-09-26 12:39:33.142','2025-10-09 15:52:37.871','371120278-2-3'),
('e307b057-7cfe-4b3b-b74f-cd2a21325c0c','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-26'),
('e30f1434-3195-415c-ab52-cded45aad19f','6fcd8160-ca06-46ab-a691-51de5c394793',65,83,11,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-25'),
('e31004d2-cb0a-4cd1-8dc4-2a3883c42284','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',70,83,83,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-13'),
('e311f7f1-c1e2-4fc5-8623-88d2c0d029e3','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-60'),
('e31aca40-dc55-4115-83c9-16e2f6143d00','220fed8f-f96e-4af5-867b-ac05d11bda6f',7,213,46,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-11'),
('e31bd19d-217f-4a90-b3b0-e290abc1b5ed','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-22'),
('e31d51dd-770a-41f5-88a2-bbbc5b82d281','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-2-5'),
('e31f49d9-6699-41bc-b311-023e6651d34d','b5d5b706-e95e-4c0b-a2e3-d43416e50bea',0,0,0,0,NULL,NULL,'644486114-2-1'),
('e323fbec-2808-42f3-8f47-95146d298097','9d2d299f-b0bd-451a-a318-5c7d807cea4a',85,57,110,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-3-3'),
('e3263d20-b871-4693-be7c-6629e73a4286','c1e8ae95-b005-4e76-a148-1dc517d1a512',51,51,76,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-2-2'),
('e327e1c0-79a2-41c8-88b8-d1d916e5d222','1a9c727e-5c65-4a99-b25e-b0d3ffdd2826',94,65,94,0,'2025-09-24 11:00:57.872','2025-10-02 11:12:19.040','437649706-1-5'),
('e3291f49-ca21-46cf-9d73-cbb2e9428e45','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-2'),
('e32d4330-fb92-44d5-8aff-fa3b1e6f20fe','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-57'),
('e32dbef1-a71b-47c8-a11a-83519b318df2','de5b9e9e-def0-4a43-8da4-04266bcc83f7',95,97,75,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-3-7'),
('e32f8bbf-1cf9-4602-93e7-30ac6f2e88fb','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-15'),
('e3324c49-8bea-4051-aecf-d6fce18896ca','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-48'),
('e33aa160-de78-4aed-bc7d-668828f56be1','9dc96b19-247b-4a97-bb0e-de1393132cd9',0,0,0,0,'2025-02-09 09:51:26.401','2025-02-19 08:38:48.550','01921294-1-3'),
('e33caa8f-360b-450e-a9e2-a95269d88bf7','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-18'),
('e33f48c5-d9e5-4ee9-8007-faa884ec3649','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-17'),
('e341095c-1747-48f0-a750-11758bc05f82','d5a7698b-6388-43e0-8603-5c9b362cc6d2',190,100,45,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-3-4'),
('e3426a47-9581-46d5-860c-94eed95b10d7','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-1'),
('e3451216-8927-4fe1-8485-4f8dd42efbc7','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-11'),
('e3456490-efc8-472e-be4b-83eeaf1d99a0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-177'),
('e3470a22-48e0-4543-9879-1a8fb7c7f950','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-44'),
('e34727ca-0a03-4b3f-b9ee-8402dc3bb870','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-20'),
('e348b7de-d4ce-40cf-b87a-8887fbd8c058','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-8'),
('e34b5050-248f-4e2d-ab0c-765289bcc05d','f5d940e7-9b63-45ab-ad43-351571fea934',0,0,0,0,'2025-05-24 17:55:23.643','2025-06-04 19:39:33.557','910980337-1-1'),
('e34c8a1c-ca13-47d8-bce6-4e51b0730da1','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',185,94,12,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-19'),
('e34cd6b5-9ecc-4a7a-a351-0295aa302cd2','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-80'),
('e34d457c-dd37-4ef0-8ea3-1939d6659d49','07887ea5-a86a-4ebf-8976-e7c1641f50c9',0,0,0,0,NULL,NULL,'478361746-1-2'),
('e34ef98b-6652-46c7-b8a3-61b6a38e3189','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-25'),
('e34fc906-0629-48c2-9465-aee6b0899572','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-16'),
('e35240f4-f1d2-44b1-be6d-135ab74b8cd2','6079d522-d2f5-4873-a8b9-51883a72769f',0,0,0,0,'2024-09-28 16:27:00.321','2024-10-10 16:32:44.298','248363931-1-5'),
('e354fcec-6c83-45b7-acc2-085b4400b538','c5027968-9a23-442a-bebc-9b8745408960',17,207,39,0,NULL,NULL,'982759064-4-17'),
('e35553ab-b2c4-4a06-8da5-b66c242c60fc','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-12'),
('e358203d-de0f-43b6-a714-74155666ca47','dbc13403-56ba-4ed1-99a1-ef2985435028',240,80,98,0,'2025-02-09 09:51:37.801','2025-02-18 09:36:07.880','319918133-2-2'),
('e359f50e-b944-4108-92a3-4f9f68c46341','93bf5a0c-675a-480f-8279-33ede48fd263',52,52,77,0,'2025-09-06 07:20:25.183','2025-09-15 12:30:38.020','371801847-1-2'),
('e35aed2d-4bd4-4565-a41d-5424da27794f','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-85'),
('e35ce349-f59d-4582-81f7-34d08e75e9f9','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.389','412315808-1-67'),
('e35d4136-b60c-44a5-aec5-023dbd73b32f','9b4b6b13-3aa7-4711-906c-6d3c3ffa947c',85,70,70,0,'2025-03-11 18:06:00.588','2025-03-18 22:20:43.950','982999114-1-3'),
('e35e1d70-8e4d-4a46-a3e3-e08c88992d6e','584c7d21-1cda-4d31-ace0-5cdb4484dc36',160,200,28,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-1-2'),
('e360256e-471b-44c4-b077-69ba73ff06fa','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-44'),
('e361c0eb-0a5c-4c24-812a-3db046376716','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-33'),
('e363e9a5-7be2-426a-8a38-765daeeb1fde','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-88'),
('e364decd-eb87-4843-ac32-265825dc8fc8','725b938f-4b76-4c51-af62-af86036ecfbf',190,96,15,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-3-3'),
('e3653df8-4b8e-4f2a-a233-bef2fb09bc98','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-8'),
('e36560f7-b157-495c-8145-5a15dd469126','2fe519bb-8989-4e31-9bbf-7258948724d8',90,65,230,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-2-2'),
('e36aad7f-46a1-470b-a81f-529cc19fc394','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-10'),
('e3715eba-1b07-451e-816a-c57a1a8f4244','e3bf303e-a53b-492e-b877-e5f3df36d63c',110,57,83,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-5-3'),
('e374a4f4-1f6c-433d-b3ee-9dc524de5c4e','00d82761-31c4-446b-a04b-97ce66aab4e6',85,80,58,0,'2024-08-31 13:26:35.084','2024-09-09 15:17:32.717','982918194-1-5'),
('e379957d-d49c-4df2-809f-86c717e0bc03','5bcbbc13-969b-49af-9691-435907b8a012',100,100,80,0,'2025-10-14 09:22:09.057','2025-10-23 06:20:07.502','644257752-2-2'),
('e37efc19-eddb-4158-88f7-f2985427e4a6','fcdb68c7-3f48-4ca6-807f-23c014d6a46c',56,82,110,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-4-4'),
('e381b222-dbc2-4e94-a534-a8594ec2ed33','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.408','465500768-1-6'),
('e38b3500-9e8d-4178-9e82-b6f1aec7a277','c1a31a07-5113-4703-99ff-14d4a90ef1ba',171,69,9,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-6-17'),
('e38b7f28-b3d6-478f-87e7-828de2c5a41f','29f3f8ad-a5d1-428d-9716-27aa02ff0be2',83,15,185,0,'2024-11-15 17:06:13.304','2024-12-01 12:28:29.331','455614339-1-1'),
('e38da8cd-3758-4381-b058-cda71ed22891','4f47afc1-f513-4c2c-9163-77830c49042a',226,85,90,0,'2024-10-17 13:41:08.940','2024-10-23 13:04:28.384','910943161-1-3'),
('e38dc37a-79ed-4f18-82c1-3b01045b67da','350bfbae-a0e2-41c9-a8fa-43c38d89f2f7',95,230,70,0,'2024-12-28 21:42:29.458','2025-01-06 20:09:39.525','478535316-1-9'),
('e38faea8-08fd-4396-8b0e-907e9e788f18','db6038f5-6951-4cc2-bf80-1b165340ace8',93,95,80,0,'2025-07-29 12:58:40.468','2025-08-08 08:47:32.675','644644115-1-3'),
('e38ff6f9-0503-48f2-a3c0-847e47d95c1e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-98'),
('e391585a-6377-4570-93f7-c150a92b0e2d','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-23'),
('e3923c9b-5406-4c87-b3a0-c4eef53f009c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:17.666','248135683-1-177'),
('e392f40f-a1ed-443a-a263-8dfdf8197b1e','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-19'),
('e395d067-d034-436d-8ce4-43fbc33bec8a','11db7379-d6bc-4506-8aab-d802a15b39de',75,33,86,0,NULL,NULL,'644495739-1-2'),
('e399d974-0349-4832-ba33-05ab7b37db70','94470f07-2500-47ea-83e7-2660e0c8d460',110,110,5,0,'2024-12-07 09:32:25.879','2024-12-18 16:36:57.903','982432822-1-2'),
('e39d143d-4eb3-491b-9bb8-91c21e9485f9','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-160'),
('e39d3e74-e13e-46ab-8faa-a6a377789cee','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-65'),
('e39e5d62-69e9-45f5-8f25-d1821e40f988','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-40'),
('e3a175d6-667f-42d2-9602-525f75ea3d05','cf1a1e61-f899-49cc-8a16-f8af9c1879fb',0,0,0,0,'2024-10-17 11:51:22.655','2024-10-26 07:30:35.975','745839023-1-8'),
('e3a35c28-ac80-4f8d-8234-097215fa2a4c','f7dc1792-8ed7-4b88-b7d0-c13a7e4ca6d6',157,95,70,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.079','42899153-2-2'),
('e3a36f19-af5f-4fb7-8be6-eb59906e0b8c','7bd64728-38dd-4554-a901-c9cd5700a0c6',115,63,93,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-2-4'),
('e3a6889f-7f8d-4341-ab95-9690fabb0fd2','b8cb209c-3d60-466f-8346-01810d5816ec',11,97,4,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-9'),
('e3a7595d-06e7-4174-9fa0-d9ebd689dbc5','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-34'),
('e3a9d8af-9ead-4552-9807-14593830888c','ec048287-78e2-41ed-9182-4554beb97192',102,121,65,0,'2025-10-06 07:10:13.031','2025-10-15 08:25:10.587','745538897-3-5'),
('e3aa813e-b880-41d6-9eca-b744fce9b24c','203c88d2-dc1c-4331-a546-9696fa664eba',0,0,0,0,'2024-12-23 12:00:30.355','2025-01-08 20:29:02.152','735384295-1-2'),
('e3ab3c6d-7f23-447b-b317-f05702aeae0b','6c0dd84a-6c98-40d4-b2e2-bf00e6f5c44e',114,202,17,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-4-3'),
('e3ad3131-36a1-4fab-bcb0-f95a5459c407','9114ad70-d53e-4d1f-89c7-30585d0a43de',67,11,10,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-38'),
('e3b12655-c025-4e10-9c4b-7f017821f4e9','5a89fae8-525a-4de4-8188-2f4d7c892e74',57,4,222,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-9'),
('e3b27f19-4d53-46e7-9838-bc2ead0fd6cb','f317178a-0ae3-404c-81c0-6950974197f0',0,0,0,0,'2025-02-20 12:15:20.860','2025-02-27 10:12:54.875','982742157-3-2'),
('e3b3808a-b616-4222-a7ec-5cd2b196c295','b5604942-4711-4185-9f16-590acfefb52b',201,45,26,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-2-4'),
('e3b435e5-75ab-4326-9736-50b3632cda98','f609ca05-b6ae-4dcf-ba26-864d6a39966b',51,51,76,0,'2025-05-28 19:08:51.904','2025-06-06 17:37:19.862','221989961-1-2'),
('e3b8c7d2-311c-447f-b573-133fcb32e095','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-16'),
('e3ba6fbd-c99e-48f7-9f12-950142611dfa','4a61ce4d-fdd5-4745-a2db-47455ed6b156',97,120,80,0,'2025-09-26 12:39:37.123','2025-10-10 21:29:51.184','437649696-2-1'),
('e3bbf4f7-f4e4-47c3-93c1-4ac5586babbd','9a74cdae-acbf-459b-836a-29ba929835b2',81,135,88,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-9'),
('e3c0707d-22d6-47e7-b5ed-a389f927fb16','1d30feca-cb1e-4e27-9d40-887bbe1c1494',62,57,83,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-1-5'),
('e3c07b70-420a-4d82-bc16-26273c542328','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-18'),
('e3c64428-45ab-4ffa-9eb3-abf32ed3fd86','b3975f1f-7fd8-4aee-b297-9d023b31cc58',40,40,43,0,'2025-05-16 16:33:36.525','2025-05-21 18:42:11.094','437940825-1-1'),
('e3cc4a26-bc25-4b7a-9375-72d7f0e4d5be','c2ddad80-9393-4fee-af04-55166ef5c607',3,33,183,0,'2025-10-14 09:22:13.683','2025-10-23 06:19:46.052','745946644-3-5'),
('e3cda220-9894-4077-bb62-25da65cd42c1','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-14'),
('e3ce0139-9db5-42fa-9ba5-08c1655ba339','c1d864c6-97c2-457a-ba23-bab224e0f781',88,6,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-2-1'),
('e3d0d3dc-1171-4014-b624-cc6baef4c852','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',80,60,100,0,NULL,NULL,'428413605-1-23'),
('e3d1b04f-75a1-4e9b-8e7e-53f9eb4ed409','5eba22cf-1a50-447a-819c-d6f78b038912',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-3-3'),
('e3d45b3a-ee65-491a-97d6-b725d30cd721','d5a7698b-6388-43e0-8603-5c9b362cc6d2',118,100,75,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-3-5'),
('e3d46f67-e958-4daf-be53-3a770d9cb396','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-5'),
('e3d51294-e19f-4e0f-95a6-98a5412a877f','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-9'),
('e3d81f0b-ca9a-4b51-8e38-4c0e3bf2c3b5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-193'),
('e3df8a6e-d9e2-4b79-ba5a-c81eb964fd21','afd7f71c-d1fc-484f-b72d-f986503df4f7',200,100,7,0,NULL,NULL,'703266692-1-2'),
('e3e11893-620e-4958-a6ff-7207ec50e5e2','9d7979f3-a35a-4a64-97d1-4ba973786029',57,16,80,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-7'),
('e3e5c267-23a9-4f12-a10b-10243f3cd8d7','97a1b036-0b82-4497-860d-2da51cafb6b1',62,7,106,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-4-1'),
('e3e5c31d-a785-4304-b9fe-1968386982af','0dc117f7-5e70-4621-87f8-335baf3c4f19',93,200,2,0,'2024-11-25 08:28:57.908','2024-12-03 21:23:38.196','902194722-1-8'),
('e3e665e1-9961-43b0-adac-d7256350f854','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-9'),
('e3e77c0e-c0f6-4d95-8e05-03867861c973','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-45'),
('e3e7995e-5e53-4109-9bdb-291d16abef9b','1fe5a3c4-700c-4065-9fa2-a479e3a6c022',51,51,77,0,'2025-06-21 04:34:09.409','2025-06-28 16:00:51.711','437133708-1-2'),
('e3e83e6d-d3d2-47e6-9493-ba923de932c3','6fcc55d3-2339-4d12-b5e2-e156727c33f9',38,33,185,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.018','412767922-1-12'),
('e3ea9365-e76a-4dcd-b53b-543234baaa2b','7311f1e0-e2be-43dc-9e40-f94a010e8939',70,42,4,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-50'),
('e3eacf2a-51a2-4505-85b7-c42dee9c6e24','9affc7b1-09c4-4e84-b48b-d0c117c421b0',115,87,115,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-8'),
('e3ed3ae7-70a6-46c8-b707-b9c3bb5ba611','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-24'),
('e3f37647-94c8-4a86-85ff-50a01a958970','8671fe0e-66f9-4cd3-92c1-b4cc827cf293',100,74,70,0,'2025-10-22 13:06:42.959',NULL,'644589662-2-1'),
('e3f6df66-8076-41cf-a9cf-63ae5f10ca94','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.069','223433822-1-30'),
('e3f7c55d-d890-4120-bce1-e4801f621b6c','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-138'),
('e3fa8f9f-3c39-46ad-bf09-413a00e2ecd0','6b64d1e9-ff42-44d9-84a9-30cf22738927',95,183,8,0,'2025-03-13 12:21:43.381','2025-03-20 18:08:22.871','127241743-1-6'),
('e3fc7d4c-4fe0-49e4-b855-744c16fb386b','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.468','412173308-1-10'),
('e3fcc4c1-5aaf-453f-b8ae-6d6a12627645','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-62'),
('e3fd4c65-551e-44e5-b188-7947eaab14d4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.251','223823107-1-247'),
('e3febbdb-7f06-404e-8870-9176f71219e5','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',39,68,17,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-159'),
('e3ff48b0-2fd3-4e87-9371-c1ddd4741095','1499adf0-273b-4001-aaf5-3741d7cad731',6,97,168,0,'2025-10-08 17:44:18.017','2025-10-20 06:32:55.986','221854185-1-3'),
('e3ffa52c-185f-43d1-b301-c081268e5d44','7defd633-f7ab-424d-8029-028d1b045752',270,63,13,0,NULL,NULL,'501119446-1-10'),
('e3ffe748-63f2-4fcb-99a5-c1fd517643c4','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-220'),
('e401029d-e85a-4d7a-b480-0ad1a50640c0','7aa660c9-3193-4cae-ac2e-82a288784e22',0,0,0,0,'2024-05-11 08:11:41.968','2024-05-31 10:16:29.386','478235858-1-2'),
('e4034eb2-753f-457b-9f6c-125b5b533c76','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-17'),
('e403dbdb-0887-4b00-a22e-1f4e86a3e22d','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-22'),
('e4067557-c9bb-4dd6-b26d-7ff40a4d91de','841f7f01-a7cc-440b-859e-dea7f085dd74',92,28,200,0,'2024-12-28 21:42:19.779','2025-01-07 17:28:32.755','755919446-1-5'),
('e4074c51-c85e-4e30-9993-1e0f69c061dc','5aac8c34-51ea-4438-b73e-7d54bf02d518',35,90,200,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-12'),
('e40975d4-8902-4139-ac01-b20897ac2a71','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',140,180,12,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-33'),
('e409d252-e8c7-4b89-8360-62b9e78a3746','6f2ec3a1-fc8f-415b-9328-08c608c3529f',57,84,55,0,'2025-01-26 10:54:28.815','2025-02-08 15:05:06.582','221440431-3-6'),
('e40cdbff-815d-4d70-9d86-99ad64dd2121','1efb8814-1560-4b9c-86ce-125d96c77b86',91,161,7,0,'2025-07-02 12:43:42.267','2025-07-18 11:11:44.753','613847250-1-3'),
('e4155510-633e-45db-ab44-d4d608d4a02c','6d2958d8-12ca-41bd-a12b-58082d5c955f',92,14,57,0,NULL,NULL,'614364554-3-13'),
('e41b63d9-11de-4ca6-a5ee-f0758774c75c','546ad3d0-25c2-43dd-9443-e48b8e5b6530',37,11,130,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-14'),
('e41b8afe-2956-4541-8749-1639fd6f052d','158455d3-2130-4d98-9534-cb36e6c15df9',92,94,6,0,'2024-10-23 14:11:45.969','2024-10-30 18:10:11.200','61480625-1-10'),
('e41f044a-cadc-4655-b0bd-837dcd30eecf','fed28e47-8397-440d-8404-a285a8bdefbd',31,20,75,0,NULL,NULL,'011399882-6-5'),
('e422980f-ce88-49bd-94b3-50c9251185b7','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-213'),
('e4287371-34c0-4549-bdcc-5790f237b0e6','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',48,28,75,0,'2024-08-07 15:03:04.522','2024-08-14 13:45:37.985','61428079-1-34'),
('e4297fac-95ce-41b4-bef2-5e114e060281','18f619ca-618c-4101-9b2a-2b9e3114395a',50,50,47,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-1-4'),
('e42c5465-109c-4ad5-ba8a-a37a0ce272ce','0683aa5c-fafa-459b-928d-eae1729e635e',96,98,54,0,'2024-12-23 12:00:34.321','2025-01-08 20:28:58.133','319382208-1-7'),
('e42d757e-351a-4b70-bcc9-1dcb93a9aaba','6a308121-6cf9-4384-8446-08182bd669fd',200,160,3,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-5'),
('e42f554a-8bae-40da-aeb6-adea77f99c32','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-96'),
('e4338ab3-c627-4e83-9e5c-ebc27b414423','c1d864c6-97c2-457a-ba23-bab224e0f781',186,96,6,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-2-4'),
('e4372b59-b562-426b-907f-17bdc3ad7c66','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-5'),
('e4381843-fb87-48b9-9c3d-7ef3d0d9d2ad','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',150,90,7,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-36'),
('e4390898-180c-433f-aa5e-5d69b503325f','586f2da0-5073-49f3-ba96-db59027b2e38',60,40,20,0,'2025-09-01 11:06:10.793','2025-09-09 12:51:19.836','221694221-2-1'),
('e43e3d9d-9f7a-44f9-a4e2-0e1048f240bd','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-9'),
('e43e4438-0de5-46a6-9d50-f6c7ec39bfb3','927ceb65-f6d3-4068-b0ea-1412cfd0a754',182,91,10,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-6'),
('e43f93b3-cf11-42ad-81a6-939f651b9b2d','86e5956d-750b-4aa3-8f00-53e2db7b9f65',125,66,11,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-29'),
('e4415248-6f2d-463e-9bd1-002ea2aa9016','1459d7e7-6dec-45b7-bbb4-412603f2559c',68,70,80,0,'2025-07-08 11:31:08.901','2025-07-25 18:04:56.369','478363734-1-2'),
('e441e0fa-5912-494e-b977-5e410fdb95f3','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',91,29,48,0,'2025-02-27 16:45:36.848','2025-03-11 15:31:41.674','100799933-1-8'),
('e4437fbe-448d-4986-889b-f7752aa26179','e89e7d75-4967-4c63-9f73-981469e531af',240,56,36,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-42'),
('e443fda4-8b43-452b-a0a0-ec28efb1fe0b','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-80'),
('e4449014-5b2d-4f70-9101-1df146707c4b','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-5'),
('e448fe1a-efc6-4643-8676-54f07d97fc69','138edf36-d166-4335-8560-d9873886e31c',40,14,31,0,NULL,NULL,'745189997-1-23'),
('e449b517-eb38-400e-b016-a27b12e04a4f','20258a0e-ffcd-40f0-ac30-ddc851f0dedb',95,227,70,0,'2025-08-25 12:31:57.181','2025-08-30 18:25:16.939','27829651-1-5'),
('e44b5bdc-d003-49ec-8b73-a243e1783115','8a112f94-c1ef-4860-86dc-23351280686f',70,78,80,0,'2025-07-12 09:20:19.430','2025-07-25 10:49:06.698','976114868-1-4'),
('e44ffc63-3e2c-431f-8d43-0a5001dd51bf','d2f8d58d-42ad-4705-b1e8-a666af927fa3',93,211,3,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-18'),
('e451f8d8-a95a-4221-aa48-ceb2a01d51c2','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-10'),
('e453cf54-ad0a-45c5-9b8a-c892d6b2faeb','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-35'),
('e4542546-14af-4fe7-9ac3-52099dc0b844','f702dc4e-af8e-41dd-8ba7-0b404624d574',0,0,0,0,'2025-01-11 15:20:09.430','2025-01-19 14:52:25.259','750704426-1-1'),
('e4544f54-08a2-4acb-b46d-c429fcb9bea2','7304c520-b495-463a-b8c1-16e20f69c36c',0,0,0,0,'2025-08-25 12:32:29.250','2025-09-20 18:54:33.574','478983907-1-1'),
('e45461a5-fb9b-4915-ae08-69749b93627a','8ec65c8d-3654-4122-b978-0e2729ab3484',72,37,37,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-2-3'),
('e4582f7e-ab11-4b58-acf0-537a0ed6d673','9a012a01-6709-4e0c-9806-61018f9e36fc',55,74,100,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-4-3'),
('e45ac742-4195-4c99-8bee-3e7fda311af9','78b92a41-f41a-4dfa-97b0-48b35908cf44',57,76,101,0,'2025-09-24 11:01:21.948','2025-10-02 11:12:29.840','808538086-1-4'),
('e45b2ab9-711b-4e94-b64f-5f9a924b5604','8d308ff3-fa7b-49d9-8f31-6c4b857e9aa6',0,0,0,0,'2024-10-11 16:09:19.136','2024-10-23 13:03:52.212','478244236-1-2'),
('e45c1c6e-c76a-46b2-9f6e-cd704137aa1b','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.280','223379282-1-28'),
('e45c86dc-b586-4d29-9db0-15e8c718049a','594ffc6e-6d27-406e-ac1f-b5aaa13b72ec',180,200,30,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-2-1'),
('e45f43b6-963d-4e3a-9a28-612783e3b3ad','845cd508-3836-4f7f-899b-bf28d0f90884',80,6,210,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-8'),
('e45f8754-05da-44cc-9037-0c1b07d123be','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.114','478633498-1-11'),
('e45f9949-ca4b-40c3-ad76-c5334143a5cc','ade702d6-cdc0-4186-ba85-c931b77bcd17',51,51,77,0,NULL,NULL,'613592756-4-3'),
('e46243ed-0643-4beb-81e2-264d5bbf1cf9','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-88'),
('e463af2d-c480-45c3-af12-73cbe827dddb','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-1'),
('e46c29be-d0fc-4d0f-9647-1412e80f421a','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',85,210,1,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-37'),
('e471e849-45ff-440e-8a72-8dfbbe690dcb','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-219'),
('e4739ba9-3daf-437a-aa66-0bb97471aea2','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.389','412315808-1-22'),
('e474cf7b-1e0c-4760-b5fb-138e0afddb33','ba4d79b7-2f50-472d-b8a3-175425785005',75,85,70,0,'2024-09-27 14:06:52.520','2024-10-04 16:05:12.736','449475255-1-8'),
('e47878cf-3e65-4eb3-825d-848ef83c578b','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,116,63,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-12'),
('e47e609b-0e86-47e0-8c51-469ea29ca19c','3535d433-eb38-4879-84b4-dbf8410809cd',42,12,57,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-9'),
('e480fedf-b882-4253-8da7-c86e383a66ed','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-23'),
('e48148e0-ac1e-4ee4-8e0f-d8d585a063a9','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-35'),
('e484104f-5301-4cbe-b2ff-7777661c95b5','ea57755c-d088-418b-aa98-11cf1f4f1327',0,0,0,0,'2025-02-03 18:19:28.246','2025-02-12 10:27:26.637','41291679-1-1'),
('e4851348-d163-40c3-a089-cf8e0eae042e','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-36'),
('e488bc17-b801-43fc-b3f0-4b47fb3161a2','90841100-26bb-4ce0-8b37-9712689c76c9',100,120,67,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-2-4'),
('e48933be-a4bd-4173-bcdc-8edae18e626c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-91'),
('e48b3273-3a00-4c96-95f8-7e9b6be2b4fe','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-5'),
('e495835e-7bec-4fe5-b289-d9e11b862423','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-4'),
('e496135a-c011-44d8-bd61-3a4d28bb7bd2','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-28'),
('e4984309-8b54-40ae-a015-7dd89df13a9f','714823a9-06cb-43df-a342-d1728555129e',0,0,0,0,'2025-02-27 16:45:41.170','2025-03-10 16:34:29.348','745311878-1-1'),
('e49a4743-02a5-49eb-a7b1-296e82694ccb','19c6a32c-4384-451a-aaa5-dfc264ab827b',58,5,210,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-19'),
('e49a7c76-2e4f-4b01-9267-87c6e4fece57','53d2c160-9a7b-4a8b-a9df-5c5381aa2607',65,80,90,0,'2024-10-17 13:40:59.305','2024-10-25 05:44:20.198','982555492-1-7'),
('e49b89a1-a9e3-44d8-bf32-6376df3056c1','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',73,51,100,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-12'),
('e49bac7f-2587-4ada-8435-39f68577c4c1','a4870d06-fada-4025-945f-a673e1124445',0,0,0,0,'2024-08-07 15:02:50.602','2024-08-16 04:44:21.788','745505942-1-2'),
('e49d8db3-b037-45e0-988f-ee1944feea48','b22617af-0267-4e38-bfad-26380a6b6670',63,65,86,0,'2025-10-20 07:18:16.076',NULL,'644664237-2-6'),
('e4a347d9-6851-4964-b9ed-a29b5de0bcf7','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-11'),
('e4a3dc21-7f87-4ecd-9751-04b0bbe72d4b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-172'),
('e4a569c2-dda7-44df-a086-121f4e9b4e05','0e92c59b-93d0-4308-91ce-3965bb186203',22,68,49,0,NULL,NULL,'428180919-1-11'),
('e4a65bf2-1830-40ce-a3a6-28ee00161bb8','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-24'),
('e4ac988f-7516-4d66-b19e-156980dd2613','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-28'),
('e4af7247-30b8-4852-ab08-50f2bd4a7528','330e6f68-483a-4357-959c-dce6efe61d45',125,100,65,0,'2025-07-02 12:43:26.635','2025-07-23 06:17:56.348','428173598-1-4'),
('e4b2472b-a9e9-4bbf-8daf-36c17a3ad746','73070a82-3710-4964-a5e9-55737d39af81',66,36,10,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-4-4'),
('e4b2ffc6-fe43-40ea-862f-c243489ec6b2','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',170,71,6,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-12'),
('e4b86b4c-d41d-45f2-b650-bb5dfbf11007','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.389','412315808-1-14'),
('e4ba0756-189d-408b-baf5-0e0fec1f9bbd','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-67'),
('e4ba5b5d-d310-4a79-9c82-2b441bcd7b4b','ae48a731-1e1e-4791-81d2-4d8761a3651e',106,58,80,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.758','644968450-3-3'),
('e4bb6a56-8b76-4bb6-9551-844009392bb7','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-9'),
('e4c0dc87-3703-47bf-ab2d-ff5d0af392a3','2d762184-6c8f-449d-a5e2-ee9bc3dd36a6',70,205,85,0,'2025-10-22 13:06:42.032',NULL,'776312220-1-2'),
('e4c23b4a-c911-4d1c-ae1f-70978ead1429','e86f2f3d-8f0b-4894-8c39-9063af830231',131,86,16,0,'2025-02-20 12:15:14.141','2025-02-28 12:04:16.511','982125625-4-18'),
('e4ca41cd-6764-4219-8446-4e223266d321','243bf136-94ff-4e73-8eaf-8fc7da0321d5',91,132,15,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-2'),
('e4cdadcd-5d5f-49a0-90cb-fc8631e0421b','9504c24b-6a37-4522-83ad-b302a5d583a5',45,9,216,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-6-19'),
('e4cdf48c-cd42-4b57-8613-299bbc9a14bb','fe0dfc58-5578-4ca2-bf70-da7b36ac4e89',245,98,68,0,'2024-03-30 10:54:53.217','2024-04-04 12:49:01.227','982320208-1-3'),
('e4d096a9-fde4-4d33-abd2-58c967c585c4','651813ec-1db0-4bd9-808a-90b2d23efacd',100,80,80,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-2-3'),
('e4d1fe63-d4c5-4f6f-90b8-7f5a4cfddf4b','5df23c8c-f647-451c-843a-f52228186ede',0,0,0,0,'2025-10-06 07:10:17.053','2025-10-16 08:43:48.734','412467921-1-9'),
('e4d253b3-5900-45a2-8cbc-9c1f94e207c2','6b64d1e9-ff42-44d9-84a9-30cf22738927',90,75,50,0,'2025-03-13 12:21:43.381','2025-03-20 18:08:22.871','127241743-1-4'),
('e4d3b9b7-5e6d-4431-9015-eb54f80c1ac4','6cb8915b-a169-4dff-829a-4bf790dd05cb',65,98,236,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-2-3'),
('e4d6da1f-4495-4770-8289-3892a61ad815','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-15'),
('e4d74fae-c8a8-49b6-963f-9c3e4668e268','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-36'),
('e4d90b45-ddd1-452c-853b-b348dbf051a8','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-2'),
('e4dad6b7-45f7-48f6-ab05-e8de2b0dd790','f5a238d0-24d2-4881-bd26-6ef90af90fff',100,218,67,0,'2025-08-22 20:28:45.609','2025-09-02 06:43:20.130','43714618-1-1'),
('e4db0399-3ce8-4494-ba19-55a2afed7936','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-155'),
('e4db12b7-7529-4507-bd3e-f922dc4cf546','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-56'),
('e4dcf14d-dd3f-4d07-ab62-37eea45f78b6','be0f69f9-3219-4b06-a695-344846f78ead',60,240,90,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-2-1'),
('e4dee247-0b3c-4d2e-8f98-972548f33e2f','cdab8feb-4b24-4e8a-bc95-98fb1259890d',91,200,5,0,'2025-09-02 14:49:03.108','2025-09-12 19:46:50.947','478832291-1-3'),
('e4e1adc8-aa8c-4e55-b0bc-c1135c78d4d2','9d01daf1-bc0c-44c5-af16-9b7dbb9a3065',0,0,0,0,NULL,NULL,'745505506-3-4'),
('e4e70acb-b6a6-4ea0-acb9-8f1cba1ec4f5','fb58f438-30e4-4e01-af6e-6378e27a11fe',100,83,55,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-22'),
('e4e7d8ff-24fb-42f7-9a5b-c74516781b19','81b00513-9ac4-4aef-8fee-fb279e70ca3e',269,51,95,0,'2025-09-18 15:48:40.880','2025-10-02 06:11:30.058','79354282-1-6'),
('e4e8204b-532f-4ac0-b157-eddf4e0b9985','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:55.893','248284003-1-134'),
('e4edd2e3-2640-4706-ab59-8c6c020204d8','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-11'),
('e4eeb047-4880-4611-9dea-f45c7744ca1f','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.140','163229349-1-52'),
('e4f08dbf-0567-4f75-9e38-8873ffa4e006','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-6'),
('e4f55381-8175-4f0e-853f-091699bf64bf','e89e7d75-4967-4c63-9f73-981469e531af',90,100,68,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-43'),
('e4fbae41-c8ca-4913-8f39-f034bb666870','546ad3d0-25c2-43dd-9443-e48b8e5b6530',110,65,100,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-51'),
('e4fc4e65-4111-466c-a98a-f43f09185761','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.517','478764154-6-22'),
('e4fc74d5-b7ef-43c3-9fcb-8d6984f07080','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:55.476','248284003-1-66'),
('e503066e-f109-4bb9-9cdd-eeaef9d98d03','99927850-e4e8-4e9f-ab8a-d1fc8e74a4ea',33,35,195,0,'2025-08-14 08:21:29.760','2025-08-25 07:11:32.383','982751509-2-1'),
('e50a46e4-e639-446d-8cff-7d9a0ccd61c8','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',62,94,14,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-36-15'),
('e50c9849-2952-42f5-8d96-43975c3e1995','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-38'),
('e5105f70-9c61-4e8b-bf83-d6ac33a82fe4','b15fee30-5c16-4f4f-9aec-4a574a38187e',93,80,70,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-2-3'),
('e511329a-99f2-426b-8a27-9e2e4db51461','138edf36-d166-4335-8560-d9873886e31c',50,50,67,0,NULL,NULL,'745189997-1-24'),
('e513566f-8299-44cb-9a43-9f833fc071c0','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-25'),
('e51ac558-9e6d-454e-9863-2ac1af352d46','6cee1429-9935-4eae-be32-dc630b6d70e8',52,41,18,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-38'),
('e51e0293-4dd8-4bd9-a3f7-2b13bce24caa','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.398','41245861-1-37'),
('e51f735d-3cac-4186-8283-0caf971af1cd','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-199'),
('e521afa0-89e8-46ce-805b-510f70a63fc8','372213fa-c2e3-4293-b83a-0a8cb1587967',93,98,65,0,NULL,NULL,'765864813-1-1'),
('e5227e37-8133-46fd-99ab-293b53e07b08','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',62,60,90,0,'2025-10-06 01:10:20.160','2025-10-16 08:43:25.814','248240825-1-9'),
('e524daab-1dee-4f2b-999d-a7ab77458edd','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.751','223422825-1-57'),
('e5281568-fb9e-47cb-8847-8257ea5bb5c6','c530f905-27f0-487c-bf56-8ae218e8420d',62,81,7,0,NULL,NULL,'478153975-3-3'),
('e528ce08-c044-4f0a-8815-2e99a6ece792','6c535e07-ecd4-4bf9-84d1-0972d296ac4d',57,50,50,0,'2024-10-02 09:26:32.556','2024-10-10 16:31:34.970','428736949-1-9'),
('e528dd07-4ba9-4ac9-9abf-01d461d787ea','c032e8ce-824c-49f7-9369-fe87698e9814',53,76,102,0,'2025-05-23 14:05:28.081','2025-06-05 16:38:22.844','745638060-3-3'),
('e52b2da4-de1e-4236-82f3-c995174d6333','b78519ec-4b79-400f-a709-a1f09256d30d',58,4,219,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-4'),
('e52cc384-9fc2-411a-ae97-8814dc79698d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-105'),
('e52fcdcf-ea77-4aef-b78b-6955254d25f9','07bb64ff-aec7-401e-a7a0-773145781f60',98,81,60,0,'2025-09-16 16:29:45.001','2025-09-29 12:23:06.903','644762741-1-1'),
('e5356429-b504-4bc0-a11d-50f40fa5d8ce','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-2'),
('e53bf9bc-0bc7-4ed7-a676-c653623e8220','11f42a59-ed7f-4c78-82d6-96b0c2ca4d3b',237,95,34,0,'2025-07-19 07:52:06.151','2025-07-28 18:40:09.673','478300917-1-3'),
('e53e9b9e-7814-4eac-8211-2c866f62aaad','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-9'),
('e5412847-3772-45b4-b2c6-45c9325914f4','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',120,100,55,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-9'),
('e5420e8c-5613-45a6-86d6-e7e25654002e','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-34'),
('e5423748-c103-4af2-9c79-0ddf5becf7e1','106bebb4-251d-43b7-a2ce-1f19122394a5',85,57,59,0,'2025-03-13 12:21:12.445','2025-03-29 21:27:41.676','221403218-1-3'),
('e547c83c-3d06-4892-a200-9d4e5b3a9536','a5a7d3b2-17a3-4f76-a55f-01181e93ce3d',56,82,101,0,NULL,NULL,'437335093-1-2'),
('e54bc5a3-763a-427a-957e-515f24b0cf27','7b68e44d-2397-492e-b71f-fe3fb99d892f',97,75,80,0,'2025-09-11 06:34:40.274','2025-09-20 19:00:24.411','465524926-1-1'),
('e54c2d66-4387-48a4-84d9-a7a7fbd0a2b2','f843a15a-76ad-45c1-94e1-ae04cab8ae50',126,70,23,0,'2025-02-20 12:15:03.287','2025-03-03 12:37:37.230','910599740-2-1'),
('e54daeec-afd4-47dd-90f3-8628a59c2570','4738e896-6b15-4ccf-8853-35517f47fbfe',110,83,66,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-3-4'),
('e55373dd-eab1-4f66-b9f7-2aed13823b41','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',200,84,31,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.910','976819499-1-26'),
('e553afe9-5435-489c-9af0-2c0ad52e3b58','c6d518ca-dd82-4758-b36d-2a2b91068364',125,125,6,0,'2025-09-01 11:06:17.056','2025-09-10 05:45:14.565','221345365-2-2'),
('e55b6ab3-e219-40d4-a2e6-5db1a5ef43da','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-7'),
('e5603d33-50b6-4517-8f4b-bf09c1505bdc','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-8'),
('e560f419-0e33-48c5-add5-00f13e963265','26d9dcf8-f56a-4ec1-96d4-af3945d37fa2',85,75,65,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-1-3'),
('e5651523-76ad-4cba-8a18-5390244a6b64','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-77'),
('e5652b75-a9ee-40dc-b03f-d1d5ef65013e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:56.628','248284003-1-50'),
('e567d7a7-1306-4b4b-a066-77f786410d43','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',106,223,2,0,NULL,NULL,'428413605-1-18'),
('e56902d2-f940-4d27-adf3-f93afcae7790','e54055a2-3c9c-4738-a808-7a4a31877ef1',157,70,100,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-31'),
('e56aac3e-8a59-4040-85ef-05e002bb311b','3987bcda-6531-4738-8815-187fd84bf71c',102,82,56,0,'2024-09-10 10:47:13.057','2024-09-16 17:09:39.159','75056602-1-21'),
('e56aef55-5c87-4b32-a527-2c0a32da4383','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.468','412173308-1-80'),
('e56d9d84-0953-4db5-9729-ebb6fbeb5d84','8eb817d8-4d04-4bef-b661-229b808c1d12',235,104,82,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-4-3'),
('e56e4077-643b-4dba-ab4a-73f54f5dc085','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-25'),
('e5709865-e361-4d71-bb1b-d9caaf65b12b','0009aeec-e682-465c-b701-363a3ef377a6',166,18,95,0,'2024-08-20 19:22:25.327','2024-09-03 15:32:53.773','655307091-1-82'),
('e571b392-123e-4440-9ba3-bca292398912','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-43'),
('e5759635-7588-443b-81ac-646457150319','02bf90b2-22c1-4379-854a-b43ee79e1b86',62,56,83,0,'2025-05-23 14:05:19.701','2025-06-06 17:34:50.225','221530805-1-1'),
('e575c0df-c1a2-4233-a532-d976174fa2d4','5cc511ac-d64a-4fef-86ed-1703c5e7eb90',0,0,0,0,'2025-03-08 13:46:06.876','2025-03-19 12:35:53.698','655583517-1-2'),
('e5760fa9-a437-44b0-8c63-1858d7cc4f5d','fc6979fc-a14e-4764-a9c1-5e69d11573cb',51,51,46,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-7-4'),
('e57858d7-9e78-4c2c-b78f-563629dd1879','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:18.263','248135683-1-159'),
('e57bed4c-430e-482a-81a8-0f0952e61160','fb58f438-30e4-4e01-af6e-6378e27a11fe',100,83,55,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-23'),
('e57da8d4-a7c5-4620-9a5a-113e28cd0f56','5ea4b207-b05c-4931-bbd1-648b6933aae5',220,90,1,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-20'),
('e582cba8-6db8-4284-a170-6fbd1c534cbd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-42'),
('e582d31c-77c5-4f64-8652-ceff5e3eabb7','3014e299-cf0b-48b7-8c7d-d69d3f855cf1',95,74,65,0,NULL,NULL,'428372230-2-4'),
('e58b17d6-abb3-45cd-8719-ef1b23d6ad0b','9866a947-9974-4053-8415-4518842488fe',79,47,64,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-36'),
('e58c0fb5-a4b8-4172-b2af-fdc1f82f12b2','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-20');
INSERT INTO `shipmentpart` VALUES
('e590c756-3f60-4f74-a3e6-bde103bd79c3','18ff6e80-17c4-4d04-8763-3c38edeb9f2e',96,175,65,0,'2025-08-27 19:40:02.797','2025-09-06 07:18:57.693','598548833-1-3'),
('e59242a1-4ea7-4be3-b7b1-b6be54b90268','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-20'),
('e592d818-05cd-4ed1-9ab0-7ac57ca5c5da','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-15'),
('e5953be4-d882-4884-b1fe-b982ad688cf3','7fbc0cac-4c11-4144-b578-3223cd9dd90a',61,23,90,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-3'),
('e595c32d-936d-4ca2-996c-4b57d6a60836','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.840','248771792-1-41'),
('e5968355-15e7-47ac-959f-e98d9bb72bc1','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-23'),
('e5980f61-68e6-47a2-9859-2eeaa3e84b25','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-21'),
('e5996fc4-4597-48ad-b96c-e0bbcff96340','64bc0ffd-5e98-4448-9de1-3cd0a42c9a5b',0,0,0,0,NULL,NULL,'644784213-1-1'),
('e59c93a6-9b75-442e-8d7e-766dcea2e297','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-148'),
('e59e5623-1ea0-474f-8e37-e30787bd2990','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',83,82,10,0,'2024-12-28 21:42:28.181','2025-01-06 20:09:34.953','655935224-1-9'),
('e59eede4-15c5-4525-96fe-ceeca43b9ece','84791194-3973-40cf-a14f-b0ba14808947',58,65,90,0,'2025-07-19 07:52:03.442','2025-07-29 13:55:03.111','644377360-3-1'),
('e59f4d7d-d13c-4e6a-b562-ea6d1fe19e60','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',76,25,88,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-14'),
('e5a29f0d-74bf-4aab-9aea-9047d6835c2d','3535d433-eb38-4879-84b4-dbf8410809cd',50,55,50,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-2'),
('e5a4170e-2d95-4f41-a12e-aa595c3d00a7','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-20'),
('e5a8a314-a747-45ce-9959-644db15fdd6c','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-1'),
('e5a8b7fa-975a-4409-a69e-3230bbca4bb9','a7c0e479-2722-40ba-bd18-c64a1b76d170',97,95,70,0,'2025-10-22 13:07:10.734',NULL,'011766113-3-5'),
('e5a9a209-edda-4143-83a1-ba664cfd062f','5f939d13-140e-4993-8240-7346b5193ca7',0,0,0,0,'2025-04-11 13:41:36.610','2025-04-25 09:52:43.474','47833977-1-5'),
('e5ac57a0-4baf-49c5-8552-c5891858ad12','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-69'),
('e5ade541-d054-4f10-9975-a432396536c3','0263f7f0-6c1a-4beb-ab78-25d69142647c',207,86,2,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-27'),
('e5adf899-100d-409e-9ee2-f868e1ea982c','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-13'),
('e5afa9cc-fa8e-4ab3-9b13-bc6ca3820002','69acd97e-52c0-45ae-adf5-ee013e52776f',55,46,57,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-9'),
('e5b17777-1246-43c9-9ac2-217a3dd1a9a4','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-34'),
('e5b260c2-7a34-4181-8b45-8a89bfd7288a','82218647-927a-470a-94a7-21964c18f9ae',0,0,0,0,'2024-12-07 09:32:07.433','2024-12-20 09:33:50.324','73547719-1-19'),
('e5b51862-0e9b-4a1d-866b-2dffb88c4e2c','81d0dc47-7670-4778-9132-e810a9a4d368',68,88,12,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-9'),
('e5b59dd7-feb7-4d77-be79-1458bdadbcf2','0045cf50-baa2-4fa7-a3b7-47eb972ef774',51,50,76,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-1-3'),
('e5b889c4-9906-42a8-8275-31158c2d4646','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',41,20,30,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-160'),
('e5b8e4b0-13a7-4666-ba42-70a166205f61','640b66f6-160e-4841-a704-93345a8388a8',100,170,80,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-2-2'),
('e5b9f9ad-084f-44dd-97ab-ff74731cd734','14694410-5bbd-4c16-aaf3-3218e9c86c9d',0,0,0,0,'2024-05-29 10:12:13.202','2024-06-11 14:04:50.980','449445608-1-2'),
('e5bbec2e-8fe4-42d0-bc11-b6ed1b9bfd0e','8625abf2-719d-4d7f-b206-16948b318b8b',38,50,53,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-29'),
('e5be375e-9e80-44ab-9f6a-f3a4ea182944','81610c29-0bfc-4279-b20f-0e7aaa372942',73,54,100,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-2-2'),
('e5be5bb8-7a38-4e8e-88c8-7f02ff6df627','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-67'),
('e5be6c5f-04bb-4d07-95f4-c9275c5b8ddd','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-36'),
('e5c1ab3e-b99d-40c7-834f-70146497aa9e','714823a9-06cb-43df-a342-d1728555129e',0,0,0,0,'2025-02-27 16:45:41.170','2025-03-10 16:34:29.348','745311878-1-3'),
('e5c20ecf-c19e-4c0e-a6c1-4b23644664eb','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-93'),
('e5cb221c-beb6-4fe1-aaaa-4bd2950b6e4f','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-15'),
('e5cbf33e-eb9e-4f5b-b212-073336ebb5db','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-153'),
('e5cc622f-b38e-460c-9404-55e7edd4f99b','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-74'),
('e5d0170d-1104-4a55-84a2-8a9199173d7c','ba35c585-5a41-49a0-931f-21e6c034471c',65,70,100,0,'2025-05-28 19:08:46.383','2025-06-07 14:07:59.723','517278082-1-3'),
('e5d1c6d4-4764-4542-8873-6e5bb7d07b5c','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.027','735211280-1-6'),
('e5d84529-c99f-4285-8907-0911dc94720d','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',29,47,29,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-21'),
('e5d9fe1d-5818-45c3-bad5-34fac092544a','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-54'),
('e5da2663-a4ae-486d-9967-02b44d916a87','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-20'),
('e5dbd64a-0257-4cf5-a72c-9d1b3cb5b9c1','a5626ae2-9a5a-4401-9095-a368c22814f1',160,200,3,0,'2024-05-08 18:43:37.958','2024-05-17 18:53:05.584','42845475-1-28'),
('e5dd2145-4bf4-4d79-bcfe-a3d370f96f9a','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.872','2025-05-01 09:51:59.251','223823107-1-99'),
('e5ddaac2-90d8-42b8-b99e-1c665b5c51e9','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-14'),
('e5df51ff-d59f-49a6-8af4-4ed2791d465f','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-21'),
('e5e0e979-e93e-4774-9bbd-1d6913db9fcb','253bc977-f851-4c87-a294-ed526cc3cb5c',70,70,65,0,'2025-07-12 09:20:06.898','2025-07-26 16:11:59.387','517157021-1-5'),
('e5e20b85-090e-47dd-9343-f2a6256b222a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:58.216','248284003-1-77'),
('e5e89844-8ba8-419f-ae9d-3aabfd76d903','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-19'),
('e5ea0bc9-ebf3-48db-8c67-92578e6be9e6','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-10'),
('e5f148d0-7693-47de-aeb2-93a84dee7c6e','8666b59a-6799-4590-8f8c-c2d52bf7aba0',0,0,0,0,'2024-10-23 14:11:26.895','2024-10-29 11:09:46.353','248614196-1-5'),
('e5ff2255-b00b-4871-a840-62aacf51ec2e','7f827719-d0a9-4910-9aef-532cd3731df7',18,48,70,0,NULL,NULL,'745995046-2-9'),
('e6022c2b-567d-4e53-87b2-78ac2f9372ea','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-80'),
('e602326c-d6c2-4424-abc4-e4b3d517c73e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.305','223444495-1-156'),
('e6028143-6cf0-4e8e-a9e8-88d299d50e32','b4035fe5-266c-42fa-8614-d1d476373fac',76,128,7,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-2-5'),
('e6070e1d-885d-4b10-8c64-e7ec69a90371','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-82'),
('e608a761-89dc-43c4-9589-19fe672997d3','9dad246b-72da-4bab-bec2-c2d038d9316f',0,0,0,0,'2025-07-02 12:43:52.562','2025-07-16 17:47:31.515','371398805-1-2'),
('e608e384-5729-42e4-b768-1399fc600072','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-127'),
('e60a33b6-cfe6-431d-aa58-dc08747244ca','220fed8f-f96e-4af5-867b-ac05d11bda6f',26,14,211,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-33'),
('e60bf0b3-4a73-44ba-aa84-30000d3c9ac9','4301b768-4818-4e74-a6d0-12a33474f5c6',42,7,215,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-24'),
('e60c06db-8f66-4300-bf5a-52aff8961901','9cf8adcd-9452-4ab6-b89c-c783d7e0f9a7',80,75,85,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-3-3'),
('e60d7835-720b-48b1-b0b9-6bf7475f26ef','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-76'),
('e60d81e8-c6cd-4f75-92d6-0665703a0e5e','c3ac41cc-e814-4fa6-aef1-11c9d37911f5',68,97,124,0,'2025-09-18 15:48:59.201','2025-09-30 06:45:01.426','644879098-2-2'),
('e60f399c-5e9b-4b5a-bd1e-4d1e84370b1e','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-65'),
('e60f4a64-e5c3-4e91-84f6-eba213ee0127','6bb3587c-46ce-4a7b-b153-d422b83670a2',0,0,0,0,NULL,NULL,'614443513-1-3'),
('e61422c5-1835-4da5-99b1-935723d50990','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-31'),
('e615e99a-923b-404e-8b25-4c25d49669cc','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-199'),
('e61810bb-06d0-4ba1-b242-ae40a6125152','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-17'),
('e6189586-056f-421b-9685-86e294d83381','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-32'),
('e619dc85-6f28-40ba-90f1-b4f1574fc2f2','6b64d1e9-ff42-44d9-84a9-30cf22738927',92,61,70,0,'2025-03-13 12:21:43.381','2025-03-20 18:08:22.871','127241743-1-1'),
('e61a5777-7b77-4791-aa1c-f99f5019c7d4','094f7f69-6d62-458b-a54b-5d8f9d6e9be0',75,124,7,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-1-15'),
('e61b2f6e-c352-4937-a612-d184aa1e9bc3','c8056095-e7a5-431a-b501-f612d05190af',85,60,56,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-4-5'),
('e61b4cda-aa44-4280-8f67-9b22d44f67b4','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.398','41245861-1-11'),
('e61c5ab1-d700-4bd0-9339-d5482cd1cbb3','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-62'),
('e61d4da4-143b-4854-8b33-6495c7aadd4e','f58e6b9f-d5af-48a2-952b-687f4ff843c8',216,47,35,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-2'),
('e62096c8-4569-4915-9f3a-72c5cd340f20','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',121,10,19,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-55'),
('e6275fad-1202-4c09-b8dd-01fc70c9fc52','3014e299-cf0b-48b7-8c7d-d69d3f855cf1',50,100,30,0,NULL,NULL,'428372230-2-5'),
('e62c525a-334f-4113-bbad-f90cb3e518a3','7ae41d22-a75f-4cb4-b2be-be66cfd1c95e',0,0,0,0,'2024-09-06 12:28:13.674','2024-09-12 10:54:44.776','750501209-1-26'),
('e62d5b97-3607-4a7d-b556-2840ea429532','635c77a3-b73c-4f7c-b1a9-7bfbb9a84302',95,90,115,0,'2025-05-23 14:05:48.210','2025-06-04 19:42:11.048','019868401-1-7'),
('e62fd775-7395-48c0-b279-6738206ade76','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-8'),
('e631cbf5-a577-4ca3-9b3d-e40eb7c5b3b3','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',132,62,6,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-9'),
('e632249a-c5c0-4e88-bebf-ebeda6d26ac0','a3bf1b4b-19f0-4547-abec-82eb48474c5f',56,55,79,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-3-6'),
('e635111f-94a6-49b3-b92f-95541cbc10d4','6a523df9-aa6a-469e-b3e9-10f11eec769d',0,0,0,0,'2024-12-07 09:32:21.228','2024-12-19 09:32:41.125','735326602-1-6'),
('e637465e-9669-48d7-9cfa-2507a29181fb','0cd52e7f-c464-4bba-ad3b-5ff8d4a218df',0,0,0,0,'2024-12-09 08:02:43.216','2024-12-20 14:35:25.910','478949141-1-1'),
('e63777e8-7b4a-4902-bb0b-52e5749274f3','19c23553-d606-4be4-a362-65912f3179a8',93,95,65,0,'2025-04-28 07:40:44.813','2025-05-06 11:26:25.870','817488957-1-1'),
('e63cc8ee-dd75-4208-beba-422d4df61e2b','59be4a33-464f-479e-aa6d-ad757827d4d8',104,56,79,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-1-2'),
('e63d7b48-cbab-4ef7-bb43-004dc443fae0','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-8'),
('e643e29a-32df-4f08-9e38-1c2a97f9427d','4aed1165-da71-460e-ad92-7bbd8bca0bad',0,0,0,0,'2024-05-08 18:43:41.271','2024-05-17 09:44:35.365','982653067-1-2'),
('e6470ef7-8cd3-4303-973b-895906752d70','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-21'),
('e647587a-1a30-4aa4-9824-c517c64b71d2','0009aeec-e682-465c-b701-363a3ef377a6',200,59,7,0,'2024-08-20 19:22:25.327','2024-09-03 15:32:53.773','655307091-1-83'),
('e64e7bd1-cb41-4646-b1f3-d2aff84d7bef','71452714-b180-4e00-b2a8-b6fefa0c5650',96,57,82,0,'2025-02-09 09:51:58.173','2025-02-15 05:22:04.063','268145141-1-1'),
('e6506aec-0166-45b2-a6eb-c69f089c3901','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-44'),
('e65480f1-7400-48c0-b2a5-75748021a7e5','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.468','412173308-1-104'),
('e65603c3-f913-4cbf-bfc6-22377b5b121d','8e0af130-fb4d-46ba-a038-bfa1e5b9d93f',51,51,43,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-1-2'),
('e658306d-32e6-4656-92d7-f02d09f5fc83','5632f22c-493f-4a5e-afdf-13268c32b047',265,100,65,0,NULL,NULL,'528640995-1-1'),
('e658afbc-a381-43f9-973b-7e6e81af1452','e97539d8-0d26-42a2-bfcf-9866d5bd205b',159,198,3,0,'2025-05-14 17:04:01.483','2025-05-21 15:30:07.918','74568874-6-9'),
('e65aeedf-1d68-4fc0-a338-72b3ad1170d2','9212dfa8-08b3-4e92-93bd-a594eaf017b6',41,15,106,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.682','745782616-3-11'),
('e65b624b-0b09-4f94-8a65-198fa66b1b1a','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-91'),
('e65bdb69-fa12-4d06-a0b8-5f40646d5699','fe0dfc58-5578-4ca2-bf70-da7b36ac4e89',245,98,68,0,'2024-03-30 10:54:53.217','2024-04-04 12:49:01.227','982320208-1-4'),
('e6602b38-37a2-497e-8137-6bfb053db113','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',115,147,6,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-14'),
('e6631a3e-cc2b-4c69-b996-655a9b5e078e','46d1512a-2bfb-476d-a224-9390f3e194f2',210,65,9,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-36'),
('e66437bf-8ae2-4125-b38e-403751e45013','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-27'),
('e6654ec9-d677-4beb-a39c-b86220b702da','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-16'),
('e666f7f7-1ff0-4d30-bc75-266b7eac8af2','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-30'),
('e6684aa6-12c5-43c0-9a50-9ac717ab11e3','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',200,54,7,0,NULL,NULL,'428413605-1-19'),
('e66e5680-10c6-4259-b2af-a399f571b036','f71120f0-3dab-49a4-9919-47f817fb8a68',70,120,100,0,'2024-05-23 07:27:40.062','2024-05-30 21:04:19.038','319458159-1-13'),
('e66e97f8-53f9-460c-a195-b5340101eb98','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',55,7,197,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-77'),
('e674c010-3b45-4249-ba55-af8db45a905d','e54055a2-3c9c-4738-a808-7a4a31877ef1',210,30,39,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-32'),
('e67611d9-231c-44ff-ac9d-fa117eabb47e','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-15'),
('e676fa88-b8d3-4ab9-9bf5-1db37e0b1d90','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.382','2025-07-03 11:20:02.280','223379282-1-73'),
('e676fcba-618b-4617-9f93-e6016c8562b0','9e9d8510-86a5-49dc-924c-9ab30e855883',17,10,91,0,'2025-10-02 11:20:43.409','2025-10-17 06:16:56.789','976185606-1-2'),
('e67c8533-626b-4591-b98f-0f8887159e0d','5c759086-0cd7-497c-a83e-a2162d4b099c',72,75,151,0,'2025-06-21 04:33:45.448','2025-07-01 09:00:53.543','248630618-1-1'),
('e67cb6a8-b047-4873-9240-377ec13825b1','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',94,184,11,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-3'),
('e6841622-ec8e-4fb7-a8cd-14347b470fdd','2fc9411f-e4fb-4693-93ff-1c908445be13',0,0,0,0,'2025-02-09 09:51:23.681','2025-02-19 18:37:15.207','745353139-3-6'),
('e684432f-0950-441e-afbd-ea487da8ccae','546ad3d0-25c2-43dd-9443-e48b8e5b6530',21,16,41,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-25'),
('e686f3a5-8c29-449a-a5a4-983ff46f64e7','7e3957db-7e8c-442f-a041-3490cef36986',0,0,0,0,NULL,NULL,'750919384-1-1'),
('e6871b50-4698-44f2-a7d8-c585bce2de5b','83b9571c-57fb-44d8-9d15-f074c343858c',70,80,70,0,'2024-03-14 13:50:31.260','2024-03-22 10:14:05.551','428647459-1-3'),
('e6877169-44fa-4dc8-a5df-c369aff0f0f9','c7ec2251-b2e5-4bd2-ab66-88acea94c958',112,105,75,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-2-4'),
('e68bee3b-d9ac-458a-be32-68b8839aa07e','3535d433-eb38-4879-84b4-dbf8410809cd',13,168,56,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-21'),
('e6912768-784e-4f77-9622-596047271071','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.647','24889830-1-22'),
('e6936e1f-c1bb-4b9b-ab3c-015568a13ee5','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-26'),
('e6939fcc-3b15-4a76-b3e4-abd9dab835b6','85ff7453-fb73-41cb-8885-c4edae102a71',0,0,0,0,'2024-06-08 08:00:27.415','2024-06-20 20:15:37.271','72247088-1-2'),
('e695cd36-ef87-4efa-a3fc-5ec1ee92fff4','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-46'),
('e699398c-63ba-4e0d-83b9-83fc032043cf','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-95'),
('e6a09500-7842-4097-9414-912be1ad8050','fcc16d1b-5b2d-45d3-b15b-a50d45fac779',18,67,53,0,'2025-08-22 20:28:54.261','2025-09-01 11:08:37.826','745485271-4-7'),
('e6a66db0-a0ff-4420-8556-ff2d3a965215','c84d56f6-3232-4489-9c15-b7a6e87c3261',70,93,204,0,'2025-04-25 16:56:55.756','2025-05-03 06:22:22.042','598508016-1-2'),
('e6a746cd-48b8-4f55-96c8-51e55bcebc9c','e7f31a78-648d-4a5e-9111-1bf7db38dd79',208,54,7,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-31'),
('e6af630b-91f2-46a6-845c-5d5654392253','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-54'),
('e6b00a75-efaa-4933-ba20-411bfae75b27','db6038f5-6951-4cc2-bf80-1b165340ace8',93,93,80,0,'2025-07-29 12:58:40.468','2025-08-08 08:47:32.675','644644115-1-5'),
('e6b7813b-fb1d-4f8e-9722-35a6a50e4ee4','5bd7aa2d-458f-46e9-a082-a599e9a49784',97,97,83,0,'2024-09-19 18:27:46.736','2024-09-25 12:59:09.871','449417757-1-3'),
('e6b824ec-a8e2-4de2-a555-e75a56261746','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-96'),
('e6bb4ba6-6362-47a3-b4f2-b3d52bfaa549','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-37'),
('e6bbccfd-1878-4237-88d6-c0ed0babbc9e','623e4cf7-1143-4781-9d8c-60190789f01a',0,0,0,0,'2025-04-28 07:40:26.803','2025-05-08 07:31:37.872','248968905-1-6'),
('e6be8e9a-df8a-4527-85a6-adb237e8038b','b9039b9b-ecf6-4419-a382-893676712c93',201,93,29,0,'2025-09-06 04:20:29.042','2025-09-15 06:10:10.781','598578683-1-4'),
('e6c0184d-65d2-4f65-827e-1ea1199a3049','39e88a96-6243-4852-a38c-9846154a9d45',106,245,67,0,'2025-09-26 12:39:37.828','2025-10-10 21:29:57.136','745233031-1-5'),
('e6c1a354-9b61-4a20-8503-3a54270f5dc0','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,46,6,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-70'),
('e6c6c333-f6c1-4830-a776-0a94f5307c4e','49c326ab-5b3b-49e7-a781-28760709b5be',225,60,95,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-2'),
('e6c96955-2e4d-45df-87b9-e5bc729f2cad','f218b4f3-6cc0-45e1-be6b-82fc464fdf64',0,0,0,0,'2025-01-26 10:54:46.255','2025-02-06 09:25:13.567','745129121-1-7'),
('e6caeb35-408b-4072-af75-47921bdfde39','e51262e7-d967-4d4c-89ce-5959d794fa71',55,55,81,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-2-4'),
('e6cd3c94-c59b-4636-af36-45a9e937cec0','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-43'),
('e6cdfaa2-5779-4c1f-9dae-5a31ed40ced2','a6b04dd3-2487-49d4-ad42-d8c0995db2df',53,77,96,0,'2025-02-03 18:18:28.067','2025-02-14 15:00:47.767','221970338-2-2'),
('e6cff8e0-3d21-4c5a-948c-6235522697e7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.065','223441694-1-75'),
('e6d1266a-da2f-4048-8b12-69225b5a0a35','715005c5-c41a-4f93-a5d3-17adaaa7406f',95,90,70,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-3-4'),
('e6d18d91-0336-4938-8508-0990d5aca57d','0bd42145-fdd8-4793-a5cd-a2e404d37142',87,41,15,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-19'),
('e6d72eaf-3c47-42ae-865a-73458f8d5830','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-170'),
('e6d825c7-dd35-4efe-959d-611fb94e4154','e1e33996-1f56-4589-8cb3-6163af9d398d',125,87,105,0,'2025-06-21 04:33:47.207','2025-06-30 08:56:30.725','695394738-3-2'),
('e6d8fe27-29bf-4cdc-930b-da65e4db5bed','9dad246b-72da-4bab-bec2-c2d038d9316f',0,0,0,0,'2025-07-02 12:43:52.565','2025-07-16 17:47:31.515','371398805-1-1'),
('e6da9d42-678c-4ba0-90a2-0465a6c20803','2a6df913-1df4-4e6e-bdd5-9d6f58ef881f',101,76,56,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-1-3'),
('e6db35bd-097e-493e-8a9c-461b721e1356','5df6ebd9-9f42-42e8-b325-2e290291826a',110,37,215,0,'2025-08-27 19:40:06.874','2025-09-05 08:50:58.370','437154123-1-4'),
('e6dc1b62-db05-418a-9068-2d49f87a36a0','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-87'),
('e6dd45bd-40e9-482c-ba1c-48a4c453f248','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',9,150,44,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-9'),
('e6dd8cba-a507-4623-9389-a66863aae2c3','40065c78-de90-4058-907e-6af9c5da2b57',70,27,200,0,'2025-10-08 17:43:29.334','2025-10-17 06:15:16.791','803441454-1-6'),
('e6de97ae-4097-4910-a904-a2c7d6de7c05','a04842eb-3d64-4437-879d-2eebcd3724f3',56,82,110,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-1-3'),
('e6dea85f-76e9-48cf-be43-12b400223057','faeed55b-96a4-4881-b45b-9ca34af87762',100,94,70,0,'2025-10-08 17:44:11.185','2025-10-20 06:32:22.650','644742878-2-4'),
('e6e0971c-a3f4-474b-9134-0e22d3da2684','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',42,232,8,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-38'),
('e6e531b5-1a5d-4812-a3ad-debf6e75e583','dd6da58d-be55-4ff4-9b53-edf440ca2084',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-3-1'),
('e6e6470b-9d47-4235-820f-c86fb27e5658','bd41d198-82e6-4c02-82e8-235f1305b40a',85,56,57,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-2-2'),
('e6e72c22-7e95-4ad7-9925-a01e3232ef08','ee6e5286-733a-4fa7-969f-76ebf4e3e61b',88,77,63,0,'2024-09-06 12:28:27.825','2024-09-12 10:53:41.136','655200069-1-12'),
('e6edea20-3d4f-4696-a0bc-7b0eded21858','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-65'),
('e6ef9690-8faf-4b03-b17a-1101953e1cd7','2cfa9764-8f00-4513-b782-16d127332b90',79,52,54,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-3-2'),
('e6f305f9-51f0-4bc5-b295-bf103c03d126','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-31'),
('e6f8b481-69c4-41b8-8751-56e8ce09dca7','fbe21725-aa89-4d56-9467-9cb01a9ccd14',51,40,50,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-3'),
('e6f9387f-e25e-42a1-b032-9c117ed8f76b','2ae0945f-d21b-4c2c-8cb3-1cf6a08e3c5c',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-1-3'),
('e6f98bd8-f969-4ac7-bb4e-483eb93cd853','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',83,102,54,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-46'),
('e6fbac7b-dc53-4b71-a68f-7817775841e1','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',213,60,8,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-161'),
('e6fbd37a-785a-4117-8b44-2195b81e6645','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-26'),
('e6fd3c27-1204-4679-b48b-733ff51f072f','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',40,50,28,0,'2025-09-26 12:39:10.670','2025-10-09 09:24:57.388','644803178-2-10'),
('e6fda06b-3474-440b-aa35-ae6c01c3fdd2','c6867ab4-5976-4f98-8c63-66591eb740c5',57,48,48,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-8-2'),
('e6fe73ab-ba29-4860-ac16-cd23ca154406','df1b54b0-5079-4ed1-ab6e-71b44edd62c9',0,0,0,0,NULL,NULL,'598314012-1-2'),
('e70359f0-d2e4-494a-a165-3bd6d18034eb','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:17.322','248135683-2-68'),
('e709944f-978b-4ee5-8288-922ec204965e','ac2f272f-90f1-4d84-b5c2-1892af4e2892',70,96,180,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.293','437895842-2-1'),
('e70a6fa7-5141-4f32-953b-e4d5f184fa9c','601003c4-c08a-4b64-839d-d5ab37e7595b',96,75,83,0,'2025-05-09 18:43:40.807','2025-05-22 15:22:42.523','478165569-1-4'),
('e70ca04e-dbb6-4d96-b8a4-546cf40e1cde','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-6'),
('e70dd3bb-8e70-4977-84c5-c52c9cfcb56b','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-65'),
('e71147e5-d7ac-4edc-a2d9-d9cca3447576','e3606b49-005c-4991-8685-15a34953c46f',70,205,95,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-4-3'),
('e7122e04-c9b2-48da-8ae3-37237935ebce','d3692bbe-c68f-427e-b8f5-575726bb8e24',0,0,0,0,'2025-07-08 11:30:58.678','2025-07-26 16:11:26.524','478403352-1-2'),
('e712f3ce-a1e4-499d-b23f-dc454df375b7','299c4ab9-9afc-4b58-b64a-bcf571e966bb',235,93,75,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-6-1'),
('e715919d-6a20-4b32-b165-82e1441c4b57','0903dcab-6439-4e40-b244-a20ae6942c65',53,65,80,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-1-3'),
('e716eabc-cdff-4594-bb25-89ad3aa916e0','4de2fe96-7a24-4d86-887d-dcd497fab7af',0,0,0,0,'2024-05-16 12:25:41.069','2024-05-23 11:42:34.524','412877197-1-1'),
('e7178f51-0013-4aa4-b70b-db72b20e8aa7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-134'),
('e717d4c4-fac2-40d7-87f8-e04f020f53dd','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-108'),
('e71b231e-fee5-4e25-8cc5-1e12b392ccc2','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-161'),
('e721747f-df70-40a4-8c89-be0934fd0aa8','da854db4-c9fe-4508-a673-92723239b20f',0,0,0,0,NULL,NULL,'412346984-2-5'),
('e725ade0-7dc4-40a5-972c-ead7f1947e61','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-27'),
('e7262de5-bf3c-4805-ac1d-6cabd70ee1e7','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-46'),
('e726f85b-ccc7-47e6-80d9-4f666ad04082','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-94'),
('e7293f1b-59ad-4ef5-af19-ae12f57e7a81','858bf458-b499-4eea-bf79-f32ed1c24910',0,0,0,0,'2025-02-20 12:15:08.924','2025-03-01 14:06:52.749','31929392-1-1'),
('e72987c5-2e83-4584-b0bf-5d494356f710','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-136'),
('e732ffdd-43a1-4702-b231-28e810adbc3e','48a52c80-382d-403a-8339-88f26052eec2',55,74,101,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-3-7'),
('e73368de-63a4-40c1-96a3-0b3855d28f3a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:18.875','248135683-1-219'),
('e736bb1a-47a3-435d-ba03-f7506bd994a9','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.115','478633498-1-13'),
('e738225c-741a-4f33-ad23-ed5e031e58ed','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-26'),
('e7387d66-c9ba-4556-80b8-c1e48aca492b','d176a715-bd33-47f6-bcb7-f384e079f39a',38,12,25,0,NULL,NULL,'501724603-1-1'),
('e739affa-6465-4187-9636-ea052868461d','1a929455-0b70-45da-b39a-75cee0e92908',28,203,92,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-5'),
('e73a760b-9d37-43eb-a0f3-e4c69d2a3704','227c25aa-0bca-476d-a4de-9a7600d7bdfa',9,72,123,0,'2025-10-20 07:18:10.105',NULL,'59874048-1-3'),
('e73cd1cf-3d36-4e19-87b1-1b51e1ffe8ea','9affc7b1-09c4-4e84-b48b-d0c117c421b0',0,0,0,0,'2025-08-15 15:02:52.910','2025-08-22 10:59:18.902','412280381-1-53'),
('e73faa1b-89ef-48ef-9488-712ceeb7a6b9','f7b7d96f-ed14-446a-9420-7f44bcbbed32',100,80,65,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-2-4'),
('e74083c5-0547-46cf-9d94-fe4118af8fb4','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.656','2024-12-24 12:30:30.935','478212601-1-31'),
('e74477d1-fe16-43f2-a6bf-a48a4f4dcaa6','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-38'),
('e7448f8e-5007-45eb-9bd1-f26c1ab1f942','66f8d34c-0c41-46f5-98bb-500adbb6f636',45,19,58,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-1-23'),
('e746092b-f160-449a-a577-9934ef8563fd','866f9922-8932-4f88-9ae8-4b3b087f0b0e',0,0,0,0,'2025-04-21 06:13:39.508','2025-04-28 11:59:39.132','437819954-1-5'),
('e74967e6-82ae-4359-8e6d-8c767cf70850','4673c1c0-6cae-45f1-a92b-ad858aef1ba6',62,57,85,0,'2025-10-25 08:59:26.342',NULL,'221651438-1-2'),
('e74b3c28-7a52-480d-bdda-030d08dcbb6e','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-4'),
('e74c9299-348b-4580-89c2-2d3961455eb0','4379a101-5d0c-4577-a568-55859726b74a',80,55,41,0,'2025-09-11 06:34:24.067','2025-09-19 05:17:21.991','675885408-2-4'),
('e74f073b-12ae-4297-9d6e-80f8509de674','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:19.794','248135683-1-106'),
('e751e84a-4e87-43c8-b141-5d8c030500bb','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',101,56,73,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-6'),
('e7521a0a-7335-41a7-b107-99c4f883a7be','99bbb574-412c-40b7-82ef-2a54c6e3ec1a',96,188,7,0,'2025-08-07 16:52:39.136','2025-08-21 08:12:48.733','613393068-2-3'),
('e75762ed-4bf2-4928-b22b-6a7bce33433d','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-7'),
('e757a774-2c69-4a2d-b988-5bfd935da7e2','4e14ca81-6045-430a-9e2a-f633a8c06b61',94,94,80,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-1-3'),
('e758f600-6c74-407b-9043-be53be957dd6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.752','223422825-1-128'),
('e75a7e91-83ec-4a35-8b60-b6b85ac1851e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-64'),
('e75a7efe-300d-4c0b-bdcb-bd2ed2bab52a','733638b3-f981-4c38-8cdd-5eb1c0dd6243',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-3-3'),
('e7623e92-43c6-4ec6-91cb-8a120d8bebd2','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.647','24889830-1-23'),
('e772bd8e-d171-4436-957c-2552329fd7d4','70873466-f77e-4c55-81ef-21947837cbff',90,20,16,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-5'),
('e7730a3e-2d6f-4a23-91cd-c17f890ed997','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-27'),
('e7731b89-16a7-4ed0-9561-b8688250af07','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-18'),
('e7772700-74d9-4ebc-bf18-ddbe7ad29406','37c3017a-3b7f-4780-ad61-3f55a357abcb',0,0,0,0,'2025-01-20 11:21:15.558','2025-01-31 12:16:32.601','74565941-1-1'),
('e7778c88-fa5f-4329-9282-b3ef4943d0cd','9d62738e-2143-45e9-a295-ad7123e774d8',52,72,102,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-3-3'),
('e77796eb-8df9-4813-8d44-8c3740501c7e','66f2382c-0dc4-455e-9fc9-73dedc2c67aa',64,57,84,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-1-3'),
('e77a0b98-4d7d-41eb-b0c8-dd6ddd93f3dd','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',225,58,10,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.066','428138926-1-66'),
('e77b3d72-1d93-4675-9dc1-539788cf7801','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.657','2024-12-24 12:30:30.935','478212601-1-12'),
('e77ef14d-a5fa-4192-aad5-2f32e33c12f3','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-19'),
('e781352c-06fe-4a5a-b1e7-d8f19849ef98','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-194'),
('e781a929-c56f-4a6a-bfc0-2aa23eef33fd','05c9f573-84d5-4220-9894-da21bdbad976',57,79,104,0,NULL,NULL,'47856812-1-1'),
('e782b676-2c4b-4516-bcd2-72912f7c2536','f88c3e53-b711-4bcb-aa3d-9543580054cd',75,119,96,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.307','107623614-1-28'),
('e786832e-3bfd-414c-b9fd-71f5d3367045','0c867a1e-6b53-453b-a01e-e0718e79528c',0,0,0,0,'2025-04-25 16:57:14.837','2025-05-01 09:52:31.774','644576493-1-1'),
('e7873447-f724-4607-b856-6d6c63fd2e6e','46d1512a-2bfb-476d-a224-9390f3e194f2',43,31,10,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-37'),
('e7873c4c-fb39-4388-b65d-e7419d386cc5','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',56,18,34,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-37'),
('e789ea7b-f496-496c-84f9-9b51f691e875','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-19'),
('e78a68db-9f8b-4de3-8b6d-029a14908c8c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-112'),
('e7910f14-3e2f-40b7-8a45-626a37881a27','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-4'),
('e7918e3f-4dd1-49b2-b6f5-db17992062d9','943d063f-08bd-4675-85e3-b9d53ebf2480',225,75,95,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-4'),
('e791c032-e843-403f-b9e1-716df7eb77cd','478f6b54-88d9-46c0-9d8c-85f1f5bdfca6',90,90,50,0,'2024-11-15 17:06:30.476','2024-11-27 15:32:54.358','982972858-1-2'),
('e793854b-e37f-41f3-8d58-1429d376fdc1','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-4'),
('e793c340-63eb-4626-882a-2fc56f1030b4','2547c819-405b-4d9a-a0a4-ad76db169d46',95,80,95,0,'2025-09-18 15:49:10.658','2025-09-27 10:27:57.874','598148104-1-5'),
('e79450a8-e2e2-4457-a6c1-a4b0c66dcab4','88bec1c0-e7a5-4328-b46f-29d37f4728f2',90,67,75,0,'2025-01-22 09:07:15.364','2025-01-31 20:06:31.068','982973548-3-4'),
('e7953529-ca5a-4150-bd47-fc3e6837ec49','4738e896-6b15-4ccf-8853-35517f47fbfe',107,106,66,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-3-5'),
('e79962c9-25b5-4c03-a412-4aedce33d50b','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-33'),
('e79d90bb-dfb8-4d3c-ae72-5a0513ffb4c6','8199fa34-7302-41aa-ac5d-0e057503fe32',95,240,60,0,'2025-10-06 07:10:14.815','2025-10-15 08:25:23.453','478749881-1-1'),
('e79e60b0-3e58-4dc5-9c63-ad834f127c91','1fd8e619-fda4-4a7c-b740-1071821a89a4',65,208,94,0,'2025-09-18 15:48:37.361','2025-10-02 06:11:54.487','437158505-1-2'),
('e79e6d65-7ecd-4b33-a3d0-1cf7c60ad92d','64e3ab53-43e9-4065-b2d1-99c9cd2365cf',120,70,100,0,'2025-08-07 16:53:08.601','2025-08-19 10:15:49.472','428182749-2-4'),
('e79f7ab4-f154-4c25-85d1-773e8f728dca','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-34'),
('e7a19229-d7cd-4b6f-9568-49907b994a73','8d062431-1a4c-4054-b1a1-188c412c0dd2',76,51,51,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.219','221511033-1-4'),
('e7a19c6e-b8aa-484d-8ee0-1f2c5f6145cc','291a2ff2-a042-49df-a88f-5eeac8ddabcd',68,117,91,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-13'),
('e7a48796-f971-4f7c-a423-820daa16ddef','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.752','223422825-1-173'),
('e7a55de9-b87d-4f31-b28b-7f7a749d6b1b','27bda15a-7623-4220-ac03-054c6daa64e8',82,56,110,0,'2025-04-28 07:40:48.886','2025-05-05 09:10:22.589','745411152-1-3'),
('e7ac1315-7eb6-443d-8291-3347ff906edf','f7b7d96f-ed14-446a-9420-7f44bcbbed32',151,15,15,0,'2024-12-23 12:00:47.803','2025-01-04 10:37:29.446','428390036-2-5'),
('e7aff7f6-4818-4c99-be1e-cac366bfae76','86e5956d-750b-4aa3-8f00-53e2db7b9f65',240,93,80,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-30'),
('e7b29a08-16a4-408f-95fc-77ee7c182b05','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-34'),
('e7b53aa0-b48a-4499-b245-67f9c7d61038','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',121,121,72,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-1'),
('e7b641a6-f391-4ce5-b31f-d565b72238ed','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-177'),
('e7b8526e-499e-4172-a05b-d623ec31f615','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-25'),
('e7b883d3-c747-4da6-8603-5fd6e590fd3f','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-47'),
('e7b9378c-6a75-44bb-8b52-5da01f8a166b','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-7'),
('e7b9ecaf-8f6a-4c5b-85bb-4e07c1947502','6fcd8160-ca06-46ab-a691-51de5c394793',21,10,206,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-26'),
('e7bc499b-f58c-4547-902d-0a76236ce347','03b4a2cb-abf2-4d84-85e7-366794ad4504',80,90,195,0,'2025-09-16 16:29:11.874','2025-10-04 13:57:19.734','7454878-1-2'),
('e7be1172-44bc-447a-bab8-8360a465c670','f1ee0dd6-51aa-4c77-aa3c-b62226d8f3a4',57,61,89,0,'2025-10-25 08:58:56.097',NULL,'486741087-3-6'),
('e7c1a3fc-3a4b-4ee2-95dc-7235d216c3b8','c71fdc71-df3e-48af-9323-d534b0931ff1',44,8,210,0,'2025-05-14 17:03:49.401','2025-05-24 17:54:56.887','478342417-3-21'),
('e7c1cdfb-26bc-4d12-bc66-af2edef62226','df67e72f-ee1a-43ca-8c93-6ee51977a7ea',103,56,80,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-2-2'),
('e7c60c3e-ffe6-4195-91c4-8923a54d149c','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-97'),
('e7c723b3-b45c-42a6-a5c7-56152ac7b039','cf923c2e-5afb-480c-b737-8b48ace679b6',94,162,14,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.773','371628660-2-5'),
('e7c7a45d-fef5-4327-a56b-8608f624cb26','cc500972-1de0-4a6c-b6bf-789f51e9fc9a',90,95,85,0,'2024-11-21 10:29:13.569','2024-12-14 08:24:23.415','98285799-1-1'),
('e7c84d9d-f54e-46f9-8c35-2d0ffe45eae7','49c326ab-5b3b-49e7-a781-28760709b5be',73,33,19,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-34'),
('e7cc3794-86b6-4831-b2d0-9c3455ef23ae','606b177a-2516-4ee8-8a97-7fcc5be07957',103,155,7,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-1-8'),
('e7ce5055-1060-49e1-88e3-7f67cee3e48b','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.398','41245861-1-98'),
('e7cecc3c-f724-47de-b4c1-52643692ae44','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-10'),
('e7d35873-30da-4c8e-9864-cd1094bdb6db','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-205'),
('e7d56d13-0ef5-48ce-a529-90ac3d0e4654','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-31'),
('e7d8e790-8b88-4230-865a-cc61aa8e410e','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-1'),
('e7db885d-5dcc-4fa0-8b9d-c4ba1474ff01','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-9'),
('e7dc7f85-4715-462c-9b77-54e6c6bd5013','148a8646-0bfd-4fcc-ab65-0b45431fcc16',180,200,29,0,'2025-08-22 20:28:55.961','2025-09-01 05:47:17.725','675644991-2-7'),
('e7de1670-f5d0-419d-ac15-0b38cac80fad','b95d584f-3939-4e43-8016-f4cdab736e9d',181,107,8,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-2-2'),
('e7e23608-1d9f-46c9-b6ab-aba6b1295762','725b938f-4b76-4c51-af62-af86036ecfbf',175,37,37,0,'2025-08-14 10:05:34.014','2025-08-28 18:20:02.085','598384021-3-4'),
('e7e24559-be61-4abe-9b5b-51082e6ef893','6b018a64-cfef-4075-90ae-0e3cfd1fcd4b',55,82,100,0,'2025-05-28 19:09:16.594','2025-06-04 07:25:10.371','517447554-1-10'),
('e7e4f90b-f339-49a2-ba1d-97c5ff715396','f9c33ca7-6673-4f4a-bb59-3ebf236a9842',57,83,110,0,NULL,NULL,'614364554-6-2'),
('e7e75a68-5bc9-4527-a569-ba527fe2b72d','476b43b7-da3a-41aa-b89b-f5010f41f08f',62,96,70,0,'2025-10-25 08:59:07.177',NULL,'598445423-1-4'),
('e7e7c50b-91f9-42f1-833f-244d1f2ff7fc','f64d8576-5c28-4bc8-bb1f-11a8e0471a92',80,94,94,0,'2025-05-28 19:09:11.735','2025-06-05 12:35:08.404','644820551-5-4'),
('e7e7fe40-cd2b-4567-b0fd-4cf39de0c17f','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-15'),
('e7ead0e9-a475-435c-a43b-b469c23c03da','796fef16-71d1-4946-b8ba-54f687adf598',69,65,33,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-26'),
('e7eca724-9e99-42ca-b6a4-0a0863bb6405','4d63984a-5ff1-4253-abe8-286bd84e3528',90,190,30,0,NULL,NULL,'478350685-1-12'),
('e7ed73e3-d582-441d-b2cd-8e27423e4294','7defd633-f7ab-424d-8029-028d1b045752',166,34,30,0,NULL,NULL,'501119446-1-14'),
('e7f16b34-2bfe-409e-9df3-ee5f0255aba9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:20.372','248135683-1-230'),
('e7f2c8e3-db67-40fc-8153-d84b1cd0eb36','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:21.526','248135683-1-182'),
('e7f2f7e8-4a3b-486b-90f4-af7f3eed7f8e','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-61'),
('e7f32004-90d3-49e7-a5fc-c1199175ca6e','6a2d762e-11cd-4fca-b32d-cdba41391e25',44,209,4,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.253','478483851-2-20'),
('e7f5049f-8b0e-4be5-b129-3ab8c2539d64','1dd39070-80ae-4ea2-b6be-b5e999d7884e',0,0,0,0,NULL,NULL,'765827254-1-4'),
('e7f59657-3431-4a8c-8976-685088b7e22b','01be5e85-2bcb-4117-9ad4-5f2afa75468d',101,120,80,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-6'),
('e7f795d5-1c56-4c4b-aa16-87b9bd436707','4ced19c3-d724-4c04-81f5-38ec0a0161d6',95,70,208,0,'2024-12-23 12:00:50.893','2025-01-03 19:31:52.612','501212768-1-2'),
('e7f81799-3094-4fd3-a8d9-12e503f53bfd','173da7e9-9f08-4f80-bd79-f624a6af761d',90,25,197,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-7'),
('e7f8c3ed-e753-46ab-9414-e69d4162780e','cc608bcd-34a3-4342-be6f-46734f0c9313',70,75,75,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-3-1'),
('e7fa832d-c4e3-491d-98c8-209e3497baaa','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.840','248771792-1-42'),
('e7faa5ec-7b17-4a9f-bf37-c3ae249b021b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',84,33,7,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-162'),
('e7ff5824-0009-45d0-aadf-f1b4163b3570','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-5'),
('e7ff63b9-9f0e-4227-8cee-a1ff4576eaa4','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.822','223853931-1-35'),
('e800b280-4137-4624-a4f6-3f9aaac22ec1','a61afe94-7b8e-47a4-a6a6-a1d3739c3086',65,65,85,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-2-1'),
('e80248cd-9b9f-4b4e-8855-dda949297a19','733bff01-cf6d-4939-aa79-6311531918bd',34,32,206,0,NULL,NULL,'808690841-1-5'),
('e80395ed-516f-46ed-83e1-42f0abc3ffd3','676266f3-03e6-4ff9-92c5-07a1b81bc27d',75,86,70,0,'2024-09-06 12:28:19.144','2024-09-12 10:54:33.263','45586545-1-8'),
('e80492ba-d97f-455a-8e18-133b1873ab2a','8b4543e8-c3ef-483e-92b5-3623066138c6',115,33,33,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-8'),
('e806b67a-c7fd-4b63-94fe-bbf311799194','ca2466d1-9a83-4f57-8f76-f5ddce302e04',21,155,141,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.687','382253716-1-2'),
('e8075281-2a30-4d8f-9389-a8e7ffb37387','4f65b611-3598-4b25-a13a-86ec5208990c',75,57,103,0,NULL,NULL,'221600878-1-3'),
('e80d54e7-98c7-41ce-bc88-3eebc7d93dcb','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-6'),
('e80d82a5-b0ef-4ade-9838-556d7202b628','ed9c894e-c70c-4612-9f50-d24ca23310a5',23,76,79,0,'2025-07-29 12:58:22.159','2025-08-11 12:32:33.741','437584936-5-2'),
('e80d9801-c06d-46f8-8e98-8335041a47bd','19f8d788-357e-4bae-a0cc-714638359cc7',30,30,126,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.734','478221533-1-8'),
('e80dd0f1-95ad-4759-969b-bc29fdbe7407','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-19'),
('e813572c-83ac-4f47-aaa5-e9ab5d88e6c9','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-10'),
('e813eb74-a69c-4ff4-872e-fc45ecdc3fcf','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-103'),
('e815d48e-e3fb-46ba-a19b-a046852758c4','b78519ec-4b79-400f-a709-a1f09256d30d',137,10,170,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-30'),
('e8166420-912d-4ee6-8f1a-db92cea83e6c','91fb1a96-2420-46ea-af10-b13095d4de25',0,0,0,0,'2024-10-11 16:08:59.506','2024-10-24 19:13:00.054','501339138-1-4'),
('e8175fdc-450e-40ed-92f4-cf7731d28909','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-22'),
('e8194d9a-4c2f-4d65-9115-a5e51ce0a97f','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-27'),
('e81a4f90-d5d7-47e5-b668-6084692e9253','f29b2f13-b4b2-45f4-825d-1744cb87029d',40,241,115,0,'2025-10-22 13:06:44.055',NULL,'598894090-4-1'),
('e81dc109-68f7-4b67-84bd-0a03272049e7','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',220,41,30,0,NULL,NULL,'428413605-1-20'),
('e81e9a2f-539b-46ed-82ac-cfa53e18d293','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-64'),
('e8207096-6679-4771-811d-615833e27495','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-59'),
('e820842e-b1b5-4d67-8e88-11f6fad2fb5e','0713d7c0-9688-415b-8aab-9cdef4078ba3',190,52,64,0,NULL,NULL,'613362697-1-2'),
('e822939c-349c-481b-afc9-16499c9b8ee5','46bbba6d-7306-4e50-94f8-b309b0edb518',93,230,65,0,NULL,NULL,'428905379-5-4'),
('e8232edf-df78-4af7-9f48-9e0d840570c9','2c3e9974-669a-4c11-9f6a-51823220641a',0,0,0,0,'2025-01-26 10:54:41.945','2025-02-07 11:19:17.303','412580908-1-9'),
('e82794f7-1a7b-4910-8247-9be9df5db616','86b60aaa-bb99-46c0-a4af-dcec737058c0',105,70,70,0,'2025-03-06 10:32:08.547','2025-03-14 11:07:09.096','613374971-1-4'),
('e82bf274-57b4-4af3-b801-2792af4f210c','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-1'),
('e832c57d-9436-42cf-b200-d1423bd6983b','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-135'),
('e835aa1a-9151-4267-b0b6-fde4b73bc929','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-36'),
('e835e369-bf2a-4913-917a-b1802bdbedf2','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.868','412346704-1-28'),
('e8382fc9-f527-46a1-a91e-fef50af9691a','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',5,58,214,0,NULL,NULL,'47816855-2-14'),
('e838dc7e-481d-4db9-8606-5e0ed85f8049','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-103'),
('e83bcd23-133b-4c9e-8ec6-0b9e36e1cd25','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-157'),
('e83bdbb8-bf0d-4387-adac-2c506db5d245','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',45,60,68,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.985','61428079-1-35'),
('e83d1922-bec4-40d7-803d-84ff01e88ebe','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-39'),
('e83dd335-ac45-4493-a0d2-9986fec7bb4a','a7202744-dd74-4e29-bc02-78baa3dbbb1e',101,53,73,0,'2025-07-29 12:58:35.620','2025-08-08 12:23:47.959','910825747-3-4'),
('e83df52d-173c-4cad-a66f-a0c7f431428d','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',46,43,95,0,'2025-06-27 17:12:10.111','2025-07-14 06:05:11.367','910756975-5-19'),
('e8424d79-f1bc-41c9-8f9d-624226f282e0','c8e93936-44db-470d-9141-67698e90cbca',0,0,0,0,'2025-08-27 19:39:43.057','2025-09-08 05:17:31.693','478505417-1-8'),
('e8452966-99a7-41ab-b36d-c04ac9ba763f','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:18.167','248135683-2-22'),
('e845ed24-52ec-4fe7-add0-1fafd21d1ee4','c98f6188-56c5-4870-be97-be71cf95f62e',230,65,95,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-41'),
('e848b3e6-7bb7-400c-bb98-f31d747e3f02','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',50,14,70,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-16'),
('e84bb147-415d-4c76-9522-cb1340ea0afd','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',70,100,75,0,NULL,NULL,'504809900-2-6'),
('e85008a4-cee1-4e12-bb70-eea7edcc5e04','9b4b6b13-3aa7-4711-906c-6d3c3ffa947c',95,230,65,0,'2025-03-11 18:06:00.588','2025-03-18 22:20:43.950','982999114-1-1'),
('e855bf19-4a64-476a-8686-644af4304635','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.764','223631242-1-33'),
('e8590f03-8b4b-47b3-b5ee-e2906debf37a','306f9627-2eb0-4359-b686-256ce3c09ae9',57,62,83,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-2-10'),
('e85965b3-eeea-47cd-be10-46b9ef6905b9','efbe186b-71f3-42d2-8da0-71f73ee0e288',90,90,60,0,NULL,NULL,'59884902-3-6'),
('e85a12cf-f65e-472a-a030-3dff4201a6b1','df96f137-ec2e-4a27-b5f9-d4177b6ebb5f',0,0,0,0,'2025-02-20 12:15:11.603','2025-02-28 12:04:46.694','982408783-1-2'),
('e85a8739-6315-4f3b-b2ec-a5fba651b630','0801ed40-5b92-4284-83cb-76d882539064',97,197,7,0,'2025-08-14 10:05:41.719','2025-08-29 16:53:21.383','22145441-1-3'),
('e85bd736-6fa2-4078-8e8f-c391fa86b773','903795d1-74c0-4123-a09d-00392e52b276',56,81,101,0,'2025-10-08 17:43:34.938','2025-10-17 06:14:56.162','531629494-3-4'),
('e85cd6c8-831a-4e38-8cd6-6909ba9cd538','324936f5-0640-4048-8641-e1550a228838',21,46,22,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.469','319645924-3-18'),
('e85df999-9f71-4ef0-bc0e-8e5df3a1e991','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-80'),
('e8604fdc-403f-493d-a547-96349076aaf1','a769cd75-8095-4eeb-999c-d1a749589a77',218,19,70,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-11'),
('e867dd7a-f827-44ad-9e93-136b6e7668a0','f04e4162-5716-460f-adcd-e188bf0eff7d',0,0,0,0,'2024-12-07 09:32:35.784','2024-12-17 19:51:20.541','735139102-1-12'),
('e86963ed-b2fa-427f-9adb-2a4f2b9b921d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-75'),
('e86a6bca-ddde-462e-bbc1-37c8b46d211f','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-7'),
('e86a83a4-e50d-4c14-bded-ea03be666149','bd176b24-f129-40d4-8c33-6b35eded0fad',45,92,11,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.348','478502129-5-4'),
('e86e4477-4cd8-47cd-9131-b6adfe5796d7','e891b961-f9b8-41f5-b49e-f492048bd8c9',101,198,2,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-11'),
('e86fe1f6-a28a-4362-a140-06c12c18c255','30cc08c3-1c49-4272-a534-8826f5e06885',79,95,41,0,'2025-04-28 07:40:38.026','2025-05-06 11:25:38.562','817893403-1-3'),
('e8738233-a0ca-460e-872b-d6aaaa09ebd5','73bfdb14-33f2-4c54-a1cd-4ce971013329',0,0,0,0,'2024-12-28 21:42:36.955','2025-01-06 07:00:51.972','745816008-1-1'),
('e8747890-6374-49c2-bc2b-ddcb53c013c8','b1412704-b0a3-458a-a5d4-ae0a217b9f18',185,23,150,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-7'),
('e8761a9b-04f3-45db-9d78-bd6aa39df889','fb58f438-30e4-4e01-af6e-6378e27a11fe',87,48,14,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-24'),
('e8767d88-3745-4638-81d9-5c26b1720abc','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-6'),
('e87786e4-d61c-44e8-8783-94f4d1cd8069','66332cd4-295b-49bc-83c0-d8a962432aeb',0,0,0,0,NULL,NULL,'613165111-1-1'),
('e877cdbd-d854-4b34-aa84-83b6238ffbf7','387c0dbb-aaca-4bdc-8257-0a8a920eca0c',51,51,76,0,'2025-02-18 16:37:18.075','2025-02-25 09:58:56.049','221397270-2-2'),
('e878b783-2a32-40d0-a644-7f38db96652b','fb58f438-30e4-4e01-af6e-6378e27a11fe',100,83,55,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-25'),
('e878d326-b883-4d08-a548-283f3ee57754','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-37'),
('e879e2ab-4924-4b47-809a-b692472a2501','cf77e119-18df-44ea-b969-889f91fbe2d6',44,49,118,0,'2025-06-27 17:12:10.111','2025-07-14 06:05:11.367','910756975-6-1'),
('e87bef33-1e91-4715-8df7-9eeb646cbb41','695d73bf-f5ba-45fe-bc80-b162f60a1157',73,54,100,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-3-3'),
('e87e56c5-9998-4cb6-a6fc-08fccc9af7da','fb58f438-30e4-4e01-af6e-6378e27a11fe',90,70,75,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-26'),
('e87e8b27-a31a-4a23-af72-3edd62904024','0886662d-3f5b-4da6-acc3-7da74bb71f94',101,202,30,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-2-6'),
('e87ebb15-087f-4e60-818b-b7412544be4a','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.763','2024-09-12 10:55:08.191','163961995-1-35'),
('e87f45c7-1a8f-4939-9eeb-b593d3a69921','9a997c3e-f3b7-4fbf-8029-34548bccc5ac',51,51,77,0,NULL,NULL,'808384982-1-4'),
('e8813c71-f294-4fc3-ab33-3cec84426f8a','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:18.862','248135683-2-13'),
('e8826eb7-fc26-41ee-b828-65ee35d7b8c6','f921520a-8901-4753-8918-7cdef5980f3b',64,65,85,0,'2025-09-18 15:48:53.754','2025-09-30 18:47:42.066','43725194-7-6'),
('e8859381-f499-4d78-a47e-3551738f739a','3535d433-eb38-4879-84b4-dbf8410809cd',210,45,6,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-25'),
('e885f037-fd40-435a-88e4-133221d8d3e8','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-60'),
('e8872655-9262-48db-8c13-977cd8aeb29f','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-50'),
('e890db60-7aae-498b-9009-bd5dea5d3020','9e4a49fb-9de6-411a-80d8-1cbb68b072b7',56,82,100,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-1-3'),
('e89183b9-b1bd-45de-bbab-652090198e5f','5f118d4b-0713-4860-9914-6f2ebfe8faed',65,192,105,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-3-3'),
('e8957bb9-1d32-49db-b4c0-3a1aaa979d1d','ec9eb2fd-2be5-4696-b311-7f2af1b50b6e',130,130,70,0,'2025-10-06 01:10:20.159','2025-10-16 08:43:25.814','248240825-1-2'),
('e897b005-d76a-49e0-a09b-0aec915d96d9','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-6'),
('e899c06a-47e7-4201-b531-bf1627f4e199','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-38'),
('e89de497-f3c4-4093-b73e-954bbc878eed','7ba47169-83ca-49a6-98fc-6ef1a1990eac',235,60,95,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-26'),
('e8a0d048-cc24-4b65-8b11-0ef9a11936c7','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-136'),
('e8a32484-0ef0-4fe7-b02b-98b3946711b1','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-8'),
('e8a33ad3-6c9b-4e18-8a82-7258e6a2da58','c1493a6a-47be-45c9-bb29-18fe60dc4113',51,51,77,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-3-1'),
('e8a347c8-8112-4845-84e5-1d4004a3a4c4','cb031967-3b3d-4215-88a7-f64c5744b388',187,96,6,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.774','644877864-3-3'),
('e8a47753-cf0e-466a-ab54-0d4232945389','82321952-2c8a-425f-ad1c-80144029e0cb',76,53,102,0,'2025-05-09 18:44:14.647','2025-05-20 06:23:59.224','371429381-3-3'),
('e8a78e27-2a2e-45c5-a9b0-61cef6d6c5ae','0e92c59b-93d0-4308-91ce-3965bb186203',100,56,81,0,NULL,NULL,'428180919-1-18'),
('e8a9203c-4091-4bca-9742-ca57149036f6','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-8'),
('e8aa3112-1e0f-44d1-bd33-df259255e2ca','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,50,4,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-71'),
('e8aa45d9-ae19-4dd5-8b34-845db0c9e6e9','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-94'),
('e8aa565e-595a-4f9d-846a-124296803a07','7b46bf4a-5ce1-4ec9-a494-a8f2948495dc',205,100,10,0,'2024-11-08 17:37:54.790','2024-11-21 12:40:15.277','982446186-1-5'),
('e8b01025-f96c-4ae2-ace5-1cb683d28509','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-143'),
('e8b179a5-0d6d-4406-b3ff-36448355497e','511dd59f-0532-4fbe-850c-9fb40dcb2a8c',58,83,53,0,'2024-09-19 18:27:21.673','2024-09-28 07:10:38.861','982118676-1-1'),
('e8b27755-df95-4dfa-88aa-113433ee8acb','a6c77233-c870-4a4b-ab0e-76861ad31465',93,94,6,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-5'),
('e8b29118-1cce-4d93-be6e-af593843e533','20521e80-01b0-4ff5-b7df-f8e5e1b6d933',75,75,85,0,'2024-03-31 17:55:14.998','2024-04-11 06:20:01.497','982490890-1-9'),
('e8b3bc64-8611-42b6-9f28-54de03bcd62a','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-4'),
('e8b55b37-3d75-4e3e-9d7a-7d04e81a6901','009366cb-c1e1-44e6-beed-700377a77e26',58,29,44,0,'2025-08-14 08:21:48.222','2025-08-21 08:13:40.734','437945654-1-2'),
('e8b656d0-cfae-4a87-9ae9-5d03ee58a08f','7d35f4ea-7482-4542-8fde-94664de7709a',43,43,78,0,'2025-09-06 04:20:14.069','2025-09-16 17:47:08.284','598280715-3-5'),
('e8b70576-b6d7-41cf-81c4-8aa17a3cf9d1','a7008be9-b82f-4d28-83a7-2484066afbc5',51,50,76,0,'2025-01-22 09:07:07.884','2025-02-01 17:38:17.831','221413192-1-3'),
('e8bdd2f8-0a74-4c0a-b24b-6011819c1dd6','ea1db62a-4e03-46e1-a474-0586e3474309',0,0,0,0,'2024-05-16 12:25:43.696','2024-05-23 11:41:36.078','449902693-1-21'),
('e8c05ae1-45ac-44d8-a7fb-b844b588710c','a061c475-401f-4f65-ae66-2bc9f4569248',90,95,68,0,'2025-01-04 10:47:36.816','2025-01-11 14:07:41.414','501345257-1-3'),
('e8c091cc-293f-4cd8-bbbe-90c95b76fa27','06669ff4-2ae4-48c9-9194-ff50672e27e9',51,51,76,0,'2025-05-09 18:43:44.567','2025-05-21 19:38:26.161','437400305-1-3'),
('e8c224e7-09ed-47c5-91e4-2694cbbfafdc','8b4543e8-c3ef-483e-92b5-3623066138c6',110,72,100,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-9'),
('e8c450bb-58ec-455e-9231-0352285ab565','7defd633-f7ab-424d-8029-028d1b045752',83,90,78,0,NULL,NULL,'501119446-1-4'),
('e8c465c5-9813-40d5-ac98-0b8c50b9d403','3e94adaf-47a4-41f4-aeaa-4ab8813c523b',100,203,75,0,'2025-01-26 10:54:52.426','2025-02-06 09:24:48.478','428417364-1-1'),
('e8c7c23e-3424-4993-93ab-21df049c692c','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-84'),
('e8c8366e-67f2-419e-8136-bfb6269c1c56','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.082','478449021-2-14'),
('e8cb0f62-c0ad-44aa-85fd-c27cb97fa1f1','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-75'),
('e8cde7e3-137c-422a-96ef-9e6821aabf8b','fc33e6e7-779b-41c9-8d72-c26a1d995b78',101,34,195,0,'2025-04-30 14:29:24.563','2025-05-10 20:13:45.106','412608739-1-7'),
('e8ce1de0-4872-45f1-a507-ee5e4c2e1c1d','a5506c59-0e9f-48a6-9b69-13a5163cf994',255,69,96,0,'2024-09-27 14:06:43.398','2024-10-05 11:44:39.856','517558560-1-17'),
('e8d0b563-0e1d-43a3-b391-ad5308d83966','669a028b-e136-4b22-940d-d0010d33782d',47,70,50,0,'2025-10-20 07:18:02.414',NULL,'817682643-4-1'),
('e8d56ad0-323e-4f2a-a345-e7adb6539ef1','0c6185c5-4d86-4de6-a4f2-365f095498a7',45,55,114,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-1-5'),
('e8d60a87-8d55-4d50-82bb-a2f9ab1f498d','aeeb9331-f250-4b35-89a5-471da85ec593',51,51,77,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-2-1'),
('e8d6b074-9ef2-471b-a383-9a53f12f571f','8945c2c5-f724-4f65-90d9-21087c50ff7b',98,6,208,0,'2025-07-08 11:30:55.097','2025-07-26 16:11:35.048','221904119-3-3'),
('e8da03bf-e848-4c8c-8a2b-bf275b42dc77','6ca0cbb5-8b45-46fa-9e41-2771ad9644cf',65,132,93,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-2-5'),
('e8de2676-4faa-4e58-9678-0ec478a02499','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.231','2025-05-10 20:13:13.998','223963997-1-21'),
('e8e1f33b-1717-4972-a049-bcfe1b683e49','a86a20c3-afe4-48c1-9b90-dedc8fd4448b',52,65,80,0,'2025-05-14 17:03:56.443','2025-05-23 14:07:39.190','371699257-2-5'),
('e8e31c27-536e-43ec-b064-529255c7c041','43eb4ebc-39fe-4f7a-aacd-fbcec67995f5',100,72,56,0,'2025-07-02 12:43:24.501','2025-07-23 06:18:10.676','644298759-1-3'),
('e8e3549f-bd29-489b-94be-bd91c7692658','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.232','2025-05-10 20:13:13.998','223963997-1-18'),
('e8e60e0a-e2be-4e3e-beea-42d8de4165eb','c2117654-a5f8-4afd-97d4-1653f53e4764',40,33,35,0,NULL,NULL,'614789435-1-2'),
('e8e6dbda-89fe-49e6-847f-d193fc4a2b14','090b9a06-aee0-4c02-b626-f3e2002f0fce',58,54,62,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-28'),
('e8e6ec35-3862-4e21-83fb-2a21ee992e66','a2996a96-e222-4190-85da-afc912411ba4',59,64,6,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-5-4'),
('e8e7b24d-2976-4d53-9e43-e85f4c07c8f4','c080623b-df50-459f-92a8-eb2eaff4030b',46,46,56,0,NULL,NULL,'478350685-6-10'),
('e8e824ce-3d2a-4218-87f5-689fef6d35c9','7672c2eb-09af-4e1b-a31f-afac027ef11d',59,97,85,0,'2025-05-24 17:55:34.026','2025-06-03 09:41:18.079','019113818-1-2'),
('e8e8405d-1b06-405f-9b58-3107b2115b8b','477f5d1d-406c-4147-a6bd-205816f5db0a',0,0,0,0,'2024-09-28 16:27:08.204','2024-10-10 11:34:51.671','982799609-1-1'),
('e8e8a4e4-d92c-4f65-90d6-12d871c55890','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-30'),
('e8e8ce61-e948-453f-ad00-54a3843b5557','5fb48abc-0e89-4676-848a-05c84bfb094a',51,51,77,0,NULL,NULL,'613495902-2-2'),
('e8ead0f5-a6db-4d3b-bbeb-8386e679e20d','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-13'),
('e8ec512a-3afe-453d-8f6b-90eca85ea806','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.518','478764154-6-17'),
('e8ec69ed-5a12-4062-8168-71a6e1a30513','b8cb209c-3d60-466f-8346-01810d5816ec',10,75,36,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-10'),
('e8ef7b8e-49e8-40c1-9881-1ae9b4e43243','7f086af4-7f94-4b2a-8e93-97605ab16c61',37,25,33,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.687','162733891-1-1'),
('e8f174e5-3f91-40bd-880b-f52b6147324b','d53aa3e1-bcc2-449a-a539-ff54b420b075',0,0,0,0,'2024-05-10 18:50:02.683','2024-06-04 14:25:07.582','449239758-1-2'),
('e8fac650-deee-412a-8036-5f48e0d9fc68','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-5'),
('e8fc429e-8b04-491f-8b28-051c655421f7','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-95'),
('e8fe30a4-073a-4ddd-b2c9-c265b41dcd25','1c3805e9-6884-405d-bb40-3d257f12ef95',77,43,43,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-2-4'),
('e8ff7450-fc70-4691-8682-248990b1c10c','dd610824-86db-4c6a-b135-c31ab1618fac',75,65,80,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-3-4'),
('e9006c4a-0308-4922-9a83-8ac0132b90ea','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:22.765','248135683-1-149'),
('e903a432-b9c6-4654-801a-50fa260bc7eb','808a4f1b-793f-4a15-808d-00c26a26c166',45,225,4,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-1-21'),
('e90af219-6114-4188-b44b-92d79f339ad1','4d63984a-5ff1-4253-abe8-286bd84e3528',101,28,202,0,NULL,NULL,'478350685-1-13'),
('e90b8619-6f35-4210-919b-d82fff830042','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:13:59.366','248284003-1-35'),
('e90d7f13-e78e-42a2-b2b5-368f2a15dda1','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-6'),
('e90e5f09-1987-4b20-b227-70ee6943a18d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:23.968','248135683-1-82'),
('e90fe4bb-dfb2-4529-8e80-6b988551e0c5','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-12'),
('e914f35f-6f19-4e36-96dc-bcae301e72ee','032c47f9-d4b7-4dfb-a22f-4a49cad6e438',83,110,56,0,'2024-05-17 09:42:10.588','2024-05-29 11:18:06.619','126908886-1-9'),
('e9154c33-1d8c-4fab-a546-dd1ec1bdcda6','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-73'),
('e919388a-5219-4aa2-83a6-937384d6727c','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-16'),
('e91a96f3-2957-4a4f-bc45-4c855f073931','548cb07a-2554-4af5-b38c-48fe9b55e445',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.020','478259590-1-25'),
('e91ad6db-7ea8-4cd3-85e2-92a96f661705','50517437-8e4d-49e3-bf9b-a6221588b05f',0,0,0,0,'2024-05-11 08:11:37.517','2024-05-31 10:16:39.587','478319922-1-1'),
('e91e209f-23f6-4de3-8e1a-37b7042e162a','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.232','2025-05-10 20:13:13.998','223963997-1-71'),
('e91eea87-9cad-4823-bf06-1c61fbdff9fc','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-23'),
('e91f2da5-4d8f-478e-a6cc-3f58f322b334','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-23'),
('e920c37e-99c6-4c6a-9d7b-85f0cf4220b4','b78519ec-4b79-400f-a709-a1f09256d30d',151,23,6,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-19'),
('e9216904-649c-4a2a-8005-73f1e40b80dc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:04.986','248284003-1-73'),
('e9238bf5-0638-460b-83ad-7d0f76f52eaa','a89f5cb0-4036-440c-b388-8ef641d6f3b9',15,62,61,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-11'),
('e925c011-44b7-4ebc-a434-57a389727f3f','f07d6b34-76bc-4d85-968f-15fbcddc6ee4',9,133,69,0,'2025-09-12 11:10:08.795','2025-09-16 21:26:03.630','614659832-36-6'),
('e9277d88-c1dd-4c93-b08e-dccc2ccc84fb','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',45,210,15,0,'2024-05-17 09:42:03.607','2024-05-29 18:58:51.799','428602278-1-38'),
('e927a3b9-8d4c-49c4-97cb-c135e3a4a743','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-137'),
('e928b3ba-b240-4eea-b06c-1bc60cda8b3b','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',27,25,18,0,'2024-12-28 21:42:28.181','2025-01-06 20:09:34.953','655935224-1-7'),
('e928c1b2-e121-416e-8bac-2a3ee58bbee4','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-175'),
('e92958a3-a9ec-4543-a26b-c18902f9cc10','c080623b-df50-459f-92a8-eb2eaff4030b',40,40,46,0,NULL,NULL,'478350685-6-11'),
('e929c50c-978d-450f-81af-d97986091fa9','86e5956d-750b-4aa3-8f00-53e2db7b9f65',210,43,6,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-31'),
('e92cf227-a477-4380-969c-34cc17a8f91d','7ba47169-83ca-49a6-98fc-6ef1a1990eac',75,75,50,0,'2024-03-23 08:36:13.266','2024-04-03 18:54:43.525','982630175-1-27'),
('e92d2efd-56ca-4feb-9813-20739c317dba','14154f1c-2788-4f7f-b6f1-b56e0a99f973',38,38,71,0,NULL,NULL,'745505506-1-6'),
('e92e3a8a-63e3-4c84-98f7-a856bab7e309','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-26'),
('e92ef3f5-55ad-4d20-a84e-40e620e61e74','943d063f-08bd-4675-85e3-b9d53ebf2480',106,72,55,0,'2024-12-23 11:59:50.116','2025-01-11 09:48:56.083','248315101-1-7'),
('e9344d31-5cbe-4ffb-9da3-ef6b1596e3d6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-177'),
('e9348f93-7d7e-43f0-950a-3f7d9410a3fc','5c4d9368-f975-47d0-9818-aa9d64564578',80,93,105,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-2-3'),
('e935dfc7-920b-4acd-89bc-ffb47a7d38f8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',250,58,11,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-163'),
('e93a1df5-ef23-4e99-b24a-ffd051149c30','ec4d4945-f64b-4a46-a100-92d57c703e18',97,55,107,0,NULL,NULL,'531481098-4-3'),
('e93d45df-2143-4ff7-87b5-1c5cb0d1c1f6','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',93,6,202,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-75'),
('e93f52a0-61db-4a5a-9e28-2e36ea6bf2e0','88d72258-1b0d-4a36-beeb-b6bccfe6650b',61,56,85,0,'2025-04-11 13:41:27.634','2025-04-26 17:55:36.404','221624848-3-6'),
('e9407499-b0e8-48a3-ad99-f2dd14d40f9f','cc608bcd-34a3-4342-be6f-46734f0c9313',57,89,235,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.647','644377995-3-3'),
('e94123e5-1366-4ad8-bd74-8053459d6173','b4a8ce8f-b2bc-4c61-b12d-2eff04e0c635',74,105,110,0,'2025-03-27 15:05:27.008','2025-04-07 17:19:07.220','817500904-1-6'),
('e9416e0a-527c-43a0-91d5-8cf4fa6f9e80','6f9b7de7-7ff1-42d1-ac78-df7b662a94d8',0,0,0,0,'2024-12-28 21:42:16.877','2025-01-07 17:28:52.027','735211280-1-2'),
('e9426cad-3aca-427c-b160-79b7c55a4ed0','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-31'),
('e942cb64-69df-4d45-9ae9-341cec4f00c0','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-120'),
('e9452744-45cd-4356-a5d6-7e788cd29979','a49f1f06-4de2-48f2-9925-06fb7c6f0467',0,0,0,0,'2025-02-09 09:51:08.887','2025-02-22 10:20:07.683','65556881-1-6'),
('e945f633-91ba-405e-9e74-d90dcda68130','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-22'),
('e946d8fa-15cd-4f58-90da-ff3008ed0dc1','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-10'),
('e954c927-bde0-45cc-99af-7be5db271e27','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.647','24889830-1-24'),
('e9575df5-67b1-4213-905b-2ce098f3ce27','651813ec-1db0-4bd9-808a-90b2d23efacd',120,75,95,0,'2024-12-23 12:00:38.791','2025-01-07 17:28:02.008','338822119-2-4'),
('e958d073-649a-4534-818f-feb56fe6eef7','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-127'),
('e95a101e-6301-4eaf-8b3f-71382fe49d61','9c3a47f9-66d8-43f2-9294-dd2550985e76',0,0,0,0,'2024-05-08 18:43:17.504','2024-05-21 18:46:13.114','734627626-1-24'),
('e95d3529-9fa9-46c0-b2e7-a94a0fee2070','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-16'),
('e96058b9-3fba-45c5-9e1f-2b1a125c8e17','f88c3e53-b711-4bcb-aa3d-9543580054cd',40,200,5,0,'2025-06-11 13:14:29.502','2025-06-22 09:26:27.307','107623614-1-21'),
('e9620553-08a1-41a7-9bde-2b274d0e8b58','886e0e1a-c599-47ba-bacc-c329212cc55b',151,21,10,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-25'),
('e964588f-295c-495d-b003-4964b11e43a8','6f8fd929-0228-4fd9-a182-83fe855d3f5c',111,19,35,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.512','962908456-1-24'),
('e96667b4-0cdc-40c4-81da-c18658a24fa8','2a4df356-6870-4e82-843d-6a6131e7e377',70,85,77,0,'2025-01-20 11:21:22.852','2025-01-30 09:59:58.590','98238273-1-4'),
('e96755dd-9b8c-448f-beac-5d94ca0139f9','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-90'),
('e967b01a-1e57-4ce2-84fe-f06da9ef6389','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-26'),
('e967b574-05a1-480e-bc86-c1cd53afddd6','5abaed5f-da6d-4729-8667-542ec9faa994',75,131,100,0,'2025-10-25 08:59:12.926',NULL,'371985580-1-4'),
('e9682b69-89a2-4ff4-8ec5-87d48baef9f4','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-5'),
('e96993ae-d804-4481-8c05-7ec7a4c1d9e1','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.296','745547550-4-31'),
('e96b3cb2-a30e-485e-9925-c4c6c7b1801f','adaf6062-cd20-4f54-97ae-815157ff18bb',0,0,0,0,'2024-07-20 16:33:24.172','2024-07-29 13:29:38.132','982331367-1-1'),
('e96ca679-21c1-4acb-8a10-cd2df34c4726','e6b643b2-ddca-48ec-b553-690e29e71879',207,48,38,0,'2024-09-27 14:06:49.976','2024-10-05 11:44:26.302','501667618-1-13'),
('e9706a77-8f2b-4e95-b704-44e470f5c2fe','c442462d-01c0-4b46-b4d7-c51ee072bc62',83,57,101,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.403','221432350-3-3'),
('e97171c1-4a3f-4712-ba65-e6de402ffecd','1f8ed22c-646c-4405-8477-3cfc46f95401',227,93,70,0,'2024-11-02 08:42:39.001','2024-11-09 18:53:51.251','976866527-1-1'),
('e973ff3a-ea71-4388-b0d0-9dc840fabc77','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-88'),
('e975b7fe-b4b0-47b0-8cc2-f0920a9bab09','ece4ba5e-e243-49ff-970a-1ff0579ad2f3',0,0,0,0,NULL,NULL,'745505506-4-4'),
('e97b9cf2-2bb4-4846-9340-bbf06b8e1691','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',117,100,70,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-4'),
('e97db5d7-ef59-4e07-aa4f-8daa0678dd7f','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-167'),
('e97fc16f-49f8-45fa-8a94-7b06abfcc257','177294d8-4a20-4344-9332-bcb523376954',96,141,7,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-2-2'),
('e980b694-b16b-4a71-bdb7-738e93bc7f11','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.377','2025-01-07 19:30:46.445','478681299-1-32'),
('e9887ac7-d357-440a-997b-22ce22b3da1b','4682f070-54f3-4dfb-9968-6d7ce01b22f0',42,42,76,0,'2025-08-14 08:21:32.501','2025-08-25 07:11:09.013','53111592-2-3'),
('e98d3a08-b9b2-4872-a228-a1a43102fe9f','a08b37d8-2558-4e19-9c54-21a2b076a1c1',0,0,0,0,'2025-01-22 09:07:16.541','2025-01-31 20:06:26.727','478112159-1-3'),
('e98e1b64-7fe4-4578-9132-571fe04d97cb','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.372','412842533-1-59'),
('e994af2b-fc84-47ed-badf-392e01883b1b','7b379856-328b-48a5-b13a-c96f1024ab32',0,0,0,0,'2025-04-21 06:13:27.195','2025-04-30 07:24:50.248','478548963-1-3'),
('e9975bf8-3421-4d9d-bf8e-8b628e49a002','19c6a32c-4384-451a-aaa5-dfc264ab827b',42,32,32,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-20'),
('e998de2f-73f4-4e51-834b-f397ad6f3f2c','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-36'),
('e99beefd-e56d-4751-8d57-f581720dc2f0','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-53'),
('e9a06ae3-20b1-4c5e-8a66-de7ad2fbdf3f','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-6'),
('e9a47001-608d-44e8-8e83-56f24df33d58','37344bde-d918-41e0-a71e-d46212dfd17f',7,90,90,0,'2025-10-14 09:22:02.399','2025-10-22 06:59:54.604','371183095-1-4'),
('e9a60361-b9e1-4d59-b2fd-97b178aa0e42','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-58'),
('e9a6547f-737f-4ab8-9e92-919df761a274','761bd71d-9016-4d96-bf1a-08ad73b6f468',45,76,120,0,'2025-10-02 11:20:28.084','2025-10-10 21:30:40.540','221962516-1-1'),
('e9a670e4-6341-4fcb-af6e-b7aadc8e036c','5a89fae8-525a-4de4-8188-2f4d7c892e74',42,97,7,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-21'),
('e9a9dbfe-e237-4e89-b1e8-b64fbf3568cf','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-20'),
('e9aa8259-2338-4c90-9069-39f1b58d51b4','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.968','2025-04-26 09:16:50.958','223734808-1-81'),
('e9ab6ffe-9189-4770-b6d2-38236563a72f','c1f2b5e0-5126-4601-a7fb-9b003f6d59c6',240,100,70,0,'2024-03-23 08:36:09.438','2024-04-03 18:54:55.086','319533001-1-2'),
('e9abf9cb-760f-4fc6-bd83-dd053d1488f4','8db511a4-512c-43a9-a77b-c2c5b692a613',0,0,0,0,'2024-11-12 16:15:52.038','2024-11-22 21:23:24.063','745661183-1-1'),
('e9ac46fc-49c8-419f-8e8f-77c017d9f6f4','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',156,54,6,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-164'),
('e9afae44-4d1f-4f55-82ee-8810e16d9d66','c19e66e6-a1bd-4661-913a-aea87aee7878',55,77,102,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-2-3'),
('e9b02138-57fb-4139-b02d-4923f3ca5fd3','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.647','24889830-1-25'),
('e9b2263a-5d28-4185-a96d-da5ef8973709','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.115','478633498-1-4'),
('e9b515bc-1647-44a5-9c9b-2a99ae1a6c44','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',51,51,77,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.523','515785688-1-2'),
('e9b58bf6-2a96-46d1-a369-91cb10a4cdcb','a8240df2-bc04-464c-afdc-dd0bdbe1643d',14,44,72,0,'2025-09-01 11:05:50.373','2025-09-08 14:12:31.683','745782616-4-13'),
('e9b58ddc-3bd1-4916-a195-3ff4867ae2e0','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-30'),
('e9b9f774-6bac-41b5-adfb-f1858866d14e','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-28'),
('e9befce5-e13f-4199-b068-965892d094fd','04dff17a-2b9a-4f35-a082-5684dfe5706f',207,84,3,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-20'),
('e9c08afb-85dd-4a0b-9a90-e88946e1b5bb','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.518','478764154-6-18'),
('e9c0b335-afe0-4fd2-93a2-29d9e9d2183e','e11d7cdf-9eae-4899-adac-07c70c9e6aaa',0,0,0,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-4-6'),
('e9c1854d-5c8c-4ad3-a9e1-b91f358c9e11','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-113'),
('e9c64e08-3ab8-47b8-89db-ff591e3c3a23','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-85'),
('e9c755bb-5203-4e68-ad16-33abdab54bb1','21eddb6f-56f8-423f-9b15-339f30ed9344',57,82,101,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-1-3'),
('e9d177bf-a858-4692-af43-0d910b5a7ca7','a8240df2-bc04-464c-afdc-dd0bdbe1643d',14,44,72,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-4-14'),
('e9d33b3d-0b14-4559-b0be-169a25e5447d','3da17157-28be-4bae-8dcc-745d0e93e591',25,14,207,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-31'),
('e9d8f4c4-6de1-424a-931a-c8a1324e32d6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-85'),
('e9dcb25e-23ea-43d4-8769-eaf07d832b71','f6d35da2-4b3d-47c5-b4fd-3e3ef4395c7b',126,6,126,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-3-1'),
('e9e0385d-2a8c-4ade-ae3d-fcb33908ef58','69acd97e-52c0-45ae-adf5-ee013e52776f',69,29,29,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-34'),
('e9e07b27-a7b1-4cfa-b800-99f67d585730','2a32bcc8-978d-4eab-8101-71bb799c60a6',0,0,0,0,'2025-03-13 12:21:21.983','2025-03-23 16:16:02.037','745266700-1-12'),
('e9e26028-9cce-41ac-8816-ba71eb1bddaf','9c69684d-b820-4794-97d0-0096a00b04b0',45,60,90,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-2-1'),
('e9e47157-95a6-4e6b-ae29-c0e208cd50d0','e910f08d-506e-4aa3-9c64-2f41a0272e86',0,0,0,0,'2024-06-08 08:00:29.777','2024-06-20 20:15:25.555','745606440-1-2'),
('e9e8035e-0eb6-4a4c-aff4-dd906eba0ae1','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-123'),
('e9e94257-bc63-4cff-a13a-e7246b640934','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,400,0,'2024-12-28 21:42:24.610','2025-01-07 10:35:32.701','248173138-1-17'),
('e9ea12d8-ce02-4614-8756-f16498f01cfd','cae76a5c-9c58-4a28-b642-a8f3cffa00e0',80,232,97,0,'2025-07-29 12:58:35.621','2025-08-08 12:23:47.959','910825747-4-5'),
('e9eb059e-b609-421d-8b0b-ddc589c83dec','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-249'),
('e9ebff85-0f61-4396-b312-47592148efe8','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-17'),
('e9eca6a0-0330-4c8a-b8bb-b165eafccbb9','6fcd8160-ca06-46ab-a691-51de5c394793',34,7,123,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-27'),
('e9edf7e7-3aab-4871-ad5e-e50ef377dc5e','d3bb2bf1-aaaf-4646-9e16-f444a59bbe9c',73,75,9,0,'2024-11-02 08:42:17.899','2024-11-12 16:17:16.557','982880880-1-1'),
('e9f0f72a-03e9-44bc-bad3-e8bb4d98fa6a','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-6'),
('e9f164f9-c964-4d51-80c7-f8e2b993e531','c3a4e38c-f0bb-4e39-bc2d-0416972c9efe',243,95,68,0,'2025-04-15 16:01:42.149','2025-04-25 19:39:36.235','248955283-1-8'),
('e9f30cea-e939-4f16-b562-893f7b452e56','349275ec-e320-40aa-a5b5-1c57b1cf65f0',51,51,42,0,'2025-10-22 13:07:06.149',NULL,'505724535-2-4'),
('e9f31339-4fe1-4ccd-85bf-c907a2135e8a','d249af0f-08a7-4145-9b4b-f81577563c6c',57,62,83,0,'2025-09-01 11:06:17.057','2025-09-10 05:45:14.565','221345365-3-3'),
('e9f5da2a-9852-4778-9e04-d2c562bce125','c2857335-03c3-4424-a83c-2997a4bec08c',15,92,160,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-27-1'),
('e9f74642-516a-4c69-b06e-d2cf001d19a9','edc484d1-e2ee-46d0-8ca4-5adc2c03d85f',86,41,77,0,NULL,NULL,'598891928-3-2'),
('e9f753e4-4b3b-4b83-bf53-89f6e2315a3c','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-55'),
('e9f7ebd8-d775-4aac-aa25-a7bac97bb274','eaa020c1-8c09-4fad-b3db-b90617d5827e',58,165,161,0,'2025-07-12 09:20:01.580','2025-07-28 18:39:25.813','644126759-1-1'),
('e9fc20e0-3029-4aad-8d7e-fe3dc0109235','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-95'),
('e9feb7a0-4a8f-4fb1-bc9e-4ca227e99895','c67def51-fe24-4885-9519-ba2b028c3f47',53,20,153,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-4'),
('e9ffe069-9567-4878-802d-feb5d6b443cb','e622181e-7708-44a9-8b12-3952b738674c',100,100,75,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-9'),
('ea009f0a-20c8-4640-993b-3e584cfa94a6','584c7d21-1cda-4d31-ace0-5cdb4484dc36',37,52,41,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-1-3'),
('ea02f5c8-afbc-4c98-a04f-9522a5214976','5cced97c-42f9-4f09-9ce2-eab123493da6',38,38,46,0,'2025-06-21 04:33:57.888','2025-06-28 21:53:45.120','531983278-3-6'),
('ea03224a-8ffb-4279-8abe-307aac9e32c2','9114ad70-d53e-4d1f-89c7-30585d0a43de',15,165,2,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-39'),
('ea08ab38-c862-448a-a990-8928f80e8d2a','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.903','2025-01-29 14:52:24.653','248135683-1-75'),
('ea10eb9c-f896-4b40-8063-8798869b3129','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-49'),
('ea1188db-1cd7-4433-ab4c-78a469871d71','3987bcda-6531-4738-8815-187fd84bf71c',85,55,22,0,'2024-09-10 10:47:13.058','2024-09-16 17:09:39.159','75056602-1-22'),
('ea17ea3f-cc79-41df-ace8-6dd2ed8b4646','dda90efc-8994-493f-aa04-04ea47eb90d7',66,26,200,0,'2024-11-15 17:06:33.617','2024-11-27 15:32:46.318','449801040-1-2'),
('ea194943-aca6-4ab6-a28d-c36403f049ee','eb72fbac-991c-4275-8fee-d2dc4841a5f1',163,93,15,0,'2025-09-11 06:34:32.337','2025-09-19 12:35:04.384','371681337-2-3'),
('ea1a5061-383a-4a3e-9985-61d479d65f9c','063b11a7-a58e-43d1-9f44-6bfe5d7d6042',56,56,85,0,'2025-04-21 06:13:11.412','2025-05-03 15:28:14.551','221257971-1-6'),
('ea1b9752-1be3-4e80-9a39-22c18f5a203a','35727e24-1c8c-45f2-b4a7-bc5944f5cb5a',51,51,77,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-1-2'),
('ea1dee99-66df-4e38-8443-a67921586c73','98fdfa28-34b5-4c8c-85d4-536b18c03e3b',0,0,0,0,'2025-05-09 18:43:34.436','2025-05-22 15:23:37.163','478989383-2-2'),
('ea1e3d9d-35a3-4310-b75b-e5a4f2cda9a6','28c4ae17-77a0-4b80-85e3-0cdc8efdd131',80,98,70,0,'2025-08-14 10:05:31.016','2025-08-27 19:39:28.223','505987989-3-3'),
('ea1e409a-3a8d-4b0f-98bd-65ae8831d5f6','7cbb49e7-8507-4950-b154-bbcd75b0a4cc',0,0,0,0,'2025-03-27 08:02:51.403','2025-04-08 15:37:12.797','745580296-1-1'),
('ea202350-e53e-4aaa-9675-60b99f2a1ac1','7abfcf71-6dec-4a36-866d-9fa7ec174baf',0,0,0,0,'2025-03-06 10:31:58.253','2025-03-17 14:53:44.076','745206126-1-1'),
('ea209404-98a6-4deb-9588-9309c4c95760','cc81edcd-ad63-47e1-a989-8ed1f6097722',44,44,73,0,NULL,NULL,'37151088-1-2'),
('ea20f4a6-481c-4e3c-92b8-d4ff3f80c43d','8097e799-ad15-4df9-bffc-97a238b2b292',97,185,7,0,'2025-08-14 10:05:29.929','2025-08-27 19:35:01.417','531988506-1-1'),
('ea22092f-45a9-4cd8-b2c0-eac222db6d39','2c449f22-80f5-4bb6-98f7-8a2627cc9a75',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-2-7'),
('ea277941-8e2e-46d9-a1ce-52a55c433f76','30d375fe-963d-4059-bed3-7e6e37ebd635',51,51,77,0,'2025-07-12 09:20:09.548','2025-07-26 10:05:02.451','221598709-1-2'),
('ea28df37-b75d-441a-832a-56d0c077fa0c','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-41'),
('ea28e5ee-f9a0-445f-8ee2-e97ec573ed65','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-56'),
('ea2f07a1-741b-488f-a9d1-b3b1495ce8ab','c1f2b5e0-5126-4601-a7fb-9b003f6d59c6',240,100,70,0,'2024-03-23 08:36:09.438','2024-04-03 18:54:55.086','319533001-1-3'),
('ea30d01a-51c8-40d3-af05-599508c25fdb','927ceb65-f6d3-4068-b0ea-1412cfd0a754',206,102,8,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.783','982365685-2-7'),
('ea32914a-3c9e-4455-ae8d-b5b8fcd1151d','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-75'),
('ea32f3f5-b289-4d25-97b7-1bfed861ecb9','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-60'),
('ea3308ab-a9b9-4403-b5c4-f6cf7765d046','f4824372-5bf5-402e-88a0-74bc50efeac1',61,65,86,0,'2025-03-27 08:02:46.624','2025-04-08 15:37:36.306','644206771-2-4'),
('ea35faab-705d-4e03-9bb9-6406f55adce3','f0e43964-75b3-4eaa-8941-9cb4fed72d4c',0,0,0,0,'2025-04-11 13:41:47.605','2025-04-23 17:45:52.850','478919360-1-1'),
('ea39182f-dc01-49a7-afb9-1040f790f3e5','a2181a61-c1f6-4ec0-9457-40fe06cb81b2',0,0,0,0,'2025-02-20 12:15:22.447','2025-02-27 10:12:50.052','982840804-4-6'),
('ea391a0c-0ecf-42a5-8c5e-68ecccc99691','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-2'),
('ea39e1bd-210b-4677-a5a2-725e56639eb4','4ff9c570-3b05-4434-984a-a2cc22b30e1a',85,60,56,0,'2025-01-26 10:54:27.844','2025-02-10 14:15:50.599','221362176-1-2'),
('ea3b58a8-8b2a-4e71-be6b-a48480d52fbf','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-6'),
('ea3c3dfd-98b4-44b5-b1d4-4459db7d6216','8b4543e8-c3ef-483e-92b5-3623066138c6',120,70,18,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-10'),
('ea40a568-a941-47e0-aba7-a30c635c2868','db333680-8c96-42d1-8a24-6c5ab1346079',60,60,85,0,'2024-11-12 16:16:13.047','2024-11-20 16:19:02.417','910891585-1-4'),
('ea44b658-0c64-4924-9e20-f109ee7ece65','ad9c9931-e995-44c3-aad6-baf9d05cc8a6',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-5-11'),
('ea471ddc-2b83-41a5-8ade-87586a1896f1','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-8'),
('ea4e96eb-747b-4237-84d5-c29feb32f190','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-88'),
('ea50a5ab-16cc-468f-9a19-8625ef5026fc','83e81175-cef2-4f5e-adbe-8ca02a747efd',57,78,101,0,'2025-08-21 07:15:18.950','2025-09-03 19:36:14.948','478687899-1-5'),
('ea5349be-aea4-425c-966c-cffb8b78c1e0','886e0e1a-c599-47ba-bacc-c329212cc55b',43,5,209,0,'2025-10-14 09:22:25.725','2025-10-25 09:00:35.557','478730420-1-16'),
('ea557c00-c841-4c66-9121-6be2abccf327','9e5bfcdb-8394-46db-8299-0b1d709a5608',76,100,57,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-2-2'),
('ea59ab95-0cb5-4d9f-a1b0-8cf90b333fe5','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-2-3'),
('ea5b410e-38d0-4a06-99a7-462c1702cc07','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-11'),
('ea5e2865-03e2-40ee-903a-98e0cb90bff4','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-5'),
('ea5f7848-b209-43ed-a620-1181f4a280b4','5ecc2bd3-1fb1-4c1b-9901-f80f9be07662',85,53,105,0,NULL,NULL,'47816855-1-5'),
('ea612c42-88f9-494b-8f33-39717703b3ef','f28873c5-2e62-4fdb-ada4-793997143e52',65,92,240,0,'2025-02-23 12:39:09.198','2025-03-06 14:25:32.996','449974141-1-3'),
('ea62304f-4d34-4443-aeed-3c32879fb543','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.378','2025-01-07 19:30:46.445','478681299-1-29'),
('ea6c0f4a-6d51-4189-89f3-5a64177e67a0','19c6a32c-4384-451a-aaa5-dfc264ab827b',44,6,211,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-21'),
('ea6ce538-8acf-4f04-9a60-7c42e7e62109','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-78'),
('ea70ca22-dae8-4dd2-a150-3eebe200e403','1adfa047-2b0e-42ef-824c-0c7a9252baaf',0,0,0,0,'2024-07-20 16:33:23.103','2024-07-29 13:29:48.181','449205900-1-7'),
('ea746125-ad61-46b7-984c-75947f9f2037','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-74'),
('ea80421e-97ae-43af-b311-1e19f80c79b1','bf45c546-7b61-4cb9-8ff6-a953f372662d',160,200,4,0,NULL,NULL,'745995046-5-5'),
('ea8105fb-9685-4f1d-bf17-0110d8d53a93','c0b8ae62-d997-4cae-91fe-c5c498f7132e',65,85,80,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-7-1'),
('ea815a6e-a5fe-4ea0-904a-939852e00055','bad94e15-0221-4841-abe9-40864fb6b65a',0,0,0,0,'2025-09-11 06:33:41.108','2025-09-17 16:03:15.095','412922680-1-4'),
('ea81e656-5bbe-4e7f-a78d-ad344b968508','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',163,10,8,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-165'),
('ea847929-8b0d-42a8-8d8b-464b441594e4','637ecf55-0f47-4302-8766-1e0faf2d9852',25,33,23,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-2-3'),
('ea85869b-7616-4c7a-8c02-b0ff8a3b21f6','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-3'),
('ea862e3b-c2c4-4d90-bbdd-3e5518f87846','ad2443f8-53d8-489a-843c-af0350c2b5fe',53,43,4,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-3-3'),
('ea87e262-3b7e-4249-9222-b89494649765','c1d25f90-d493-406d-a430-9b65b4f44c5e',43,4,208,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-16'),
('ea8abd2f-e70d-497a-aab0-a5109b9f1960','7fbc0cac-4c11-4144-b578-3223cd9dd90a',57,90,23,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-6'),
('ea929b09-1012-46d7-bd2c-563027f98b5a','b44449c8-5efa-4085-bd2d-0a3594587af9',58,137,78,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-1'),
('ea93485f-93f5-4de7-a9ca-8d5703cea521','9a74cdae-acbf-459b-836a-29ba929835b2',71,71,80,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-5'),
('ea94b34c-caad-4bd7-8f39-bf2781af3564','8c3a9387-2db4-400b-95fa-11aef6c745f6',70,45,14,0,'2024-08-21 14:53:24.604','2024-08-31 08:01:45.893','501766543-1-19'),
('ea954624-bda9-4aa8-afa4-df1b8fa2355c','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-19'),
('ea985ac0-479f-4242-8974-bb277619d2e5','c38b4e0b-a453-4b21-9976-65cd3cc4d509',225,122,12,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-3-3'),
('ea999656-8989-4dbc-8473-9cd462d1bc69','5a4b614c-5b92-4fed-901d-9fc1751f0e14',56,56,84,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.614','221157320-1-6'),
('ea99aba7-062d-4cbb-9c5f-4c51792c92fe','e05e901e-453f-417c-bd4c-e857b8bd2fdc',192,80,90,0,'2024-09-19 18:27:49.283','2024-09-24 20:20:45.786','449715358-1-2'),
('ea9bc79f-874d-4173-82fc-36623a6aad96','0a8285d0-d3db-4298-8e41-62c5429f150a',220,56,7,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-24'),
('ea9bf1ae-b029-419c-bc9e-74d671f4810f','fb58f438-30e4-4e01-af6e-6378e27a11fe',190,137,12,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-27'),
('ea9e41c9-f516-4adf-86d8-6564ceea4704','a455ba66-b417-4781-a6f2-6fce1b8bab23',50,7,137,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-24'),
('ea9e75c9-86b1-4540-8269-8d2d2f4af3ab','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-117'),
('ea9f108a-33ae-4638-9a5e-e14e86145ddc','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-227'),
('ea9f4e23-bc1d-4725-826f-d9e0ffbf4884','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-6'),
('ea9fc989-9c33-4e28-83e3-48f5f3b25bec','9a19deea-8c60-4c1c-923e-00c7ad1fc71c',0,0,0,0,'2025-09-01 11:05:42.853','2025-09-05 12:00:02.684','412968518-1-1'),
('ea9fd0d6-0897-4c09-a5db-6d8ef134de95','5c3f67bf-f878-4edb-843b-c0a59fc72ce2',29,59,39,0,'2025-09-18 15:49:08.791','2025-09-30 06:44:17.024','8087036-1-9'),
('eaa2d547-85dd-4787-bd0b-1b03ca76da9e','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-14'),
('eaa56da5-41c2-44a9-b1d3-cd5a7ac2acca','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-138'),
('eaa708a2-c2b8-468d-9e4b-f39ffd142e2f','5b4f3a71-6855-436a-8eb8-7d20bcbd7e9f',0,0,0,0,'2024-12-23 11:59:51.279','2025-01-11 09:48:50.086','735660192-1-6'),
('eab0cfd3-df35-47be-a248-1c177adff1e3','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-65'),
('eab1d752-9d9c-4977-a8ed-63ba49c1124f','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-5'),
('eab29d75-73ab-4c1c-b769-7e8141a09c75','0dce8613-12ad-45a6-ae96-565770f25828',76,53,102,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-1-1'),
('eab37429-43f1-46af-9ad7-66f30d5c1757','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.389','412315808-1-13'),
('eab57b4a-d919-49d4-ac35-1866a044e833','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-3'),
('eab78403-47f5-4f35-bc7d-fa23cd088851','9d935c6e-5911-403e-b53a-08f90bd2dad0',41,29,16,0,NULL,NULL,'449224087-1-3'),
('eab8a2c7-4304-46a9-a90d-8408484195d1','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-5'),
('eab9531b-c28d-44a4-8480-829dbd316112','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-28'),
('eaba1802-0c57-4c43-a1b9-3d4f4ec8d51d','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-5'),
('eabb7f1c-7125-42df-bca2-463c45bb089e','5f740c2f-b4a8-4058-8f15-0c74025f8ecd',80,80,75,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-1-4'),
('eabd7754-c833-4c88-96f6-963e4dc0d661','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-44'),
('eabd8b84-4435-49ba-ba71-a1a361ceb271','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-1-12'),
('eabee97f-3040-4fa9-97f8-ed93ee7b4dec','7ba47169-83ca-49a6-98fc-6ef1a1990eac',82,48,18,0,'2024-03-23 08:36:13.267','2024-04-03 18:54:43.525','982630175-1-28'),
('eabf6448-3a6f-49f7-b041-b1f658b638ff','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-24'),
('eac1f815-fb42-4a9a-8d88-fe8073fcdcf8','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.483','2025-10-15 20:04:54.631','41246036-1-68'),
('eac2d784-d7bc-488d-bf7f-2149b99846bd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-148'),
('eac9abf5-bf53-4f15-89af-8c5d6f3307a8','f1d0b634-e6e0-4b6a-a561-feb245a87cb1',75,75,70,0,'2024-03-31 17:54:54.854','2024-04-17 10:16:37.203','455568872-1-5'),
('eaca81fd-c544-4647-9610-ed05dcf1f13f','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-25'),
('eacaa3c7-0e22-4acd-aed1-cc5d87d680f1','26efefb1-0454-4e31-9029-81e2ef22d726',231,106,6,0,'2025-09-06 07:20:22.670','2025-09-16 06:34:07.462','613191069-1-3'),
('eacc067f-b879-4d83-bb58-143ae57e89bf','252edcd6-b24f-4df4-819b-796b920ec4bb',0,0,0,0,'2024-10-02 09:27:00.743','2024-10-08 09:25:04.325','745699153-1-11'),
('eacdbbe5-9bd2-4428-9256-4e2dd3149adf','0009aeec-e682-465c-b701-363a3ef377a6',110,90,65,0,'2024-08-20 19:22:25.327','2024-09-03 15:32:53.773','655307091-1-84'),
('eacfa8a3-156f-446f-b105-3daff4cb165b','349275ec-e320-40aa-a5b5-1c57b1cf65f0',51,51,77,0,'2025-10-22 13:07:06.149',NULL,'505724535-2-5'),
('ead31ec7-e3ca-477c-b544-d709fcfc4fef','f71f64d5-9aed-4de9-b9c3-e1093fe9daa3',87,77,70,0,'2025-10-22 13:06:52.544',NULL,'786146097-9-1'),
('ead4500f-4f68-4012-a49d-61bc707bdfe2','cd2c9d13-0b6d-4d8e-8890-bc093f7ea1c9',0,0,0,0,'2024-12-13 14:49:27.503','2024-12-21 08:19:18.498','73570714-1-1'),
('ead5174d-5395-4477-897c-7866f725301a','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-6'),
('eadb14da-c92f-4ad3-bab6-d8792e471200','c94eb154-aa18-4678-af4e-fd552ed1ec7f',85,57,60,0,'2025-01-11 15:20:13.630','2025-01-19 14:52:10.025','22130093-3-2'),
('eadcfe0f-de66-4ba9-8cca-2588130a73f6','565f6966-f194-4d7c-8b20-64502045078d',64,55,50,0,NULL,NULL,'478350685-2-17'),
('eae1b5c9-c547-4cca-ab6d-39e54dcdf66d','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-8'),
('eae491a1-1c99-4105-9b23-98d1b5a47140','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-37'),
('eae6495f-5627-4929-bc94-877a034bfedf','865c29a7-ef0d-44fe-ba23-c38a1f1287e4',56,56,84,0,'2025-04-21 06:13:33.066','2025-04-28 11:59:58.012','221941793-1-6'),
('eae90ca6-1397-4e7d-93cf-a121d59cf94d','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-4'),
('eaea55fa-4e13-4067-8359-c702a5ca6b1b','89ab7724-cadd-41e0-96e0-8d4e9adbe732',0,0,0,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.482','248707022-1-11'),
('eaea6d27-03b6-400c-8917-381459c9bb11','f9e43273-b7fb-4f2a-a82e-67f60793eff9',100,90,60,0,'2025-04-11 13:41:43.126','2025-04-24 15:02:05.019','745767667-1-2'),
('eaed594c-9c12-482c-9ad6-b28b4d728ac1','c7fce8c7-acfd-4c12-8db5-81618a4b211d',55,169,2,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.873','830611219-1-10'),
('eaf337ec-e93d-4e1b-abd1-7b6c096cca5b','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-1'),
('eaf43318-8139-4b1a-a492-920c072c14a1','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-5'),
('eaf48a32-ca63-4351-b38d-3ba378644516','22cdb203-e189-4693-adf6-5b2569edda9b',15,9,350,0,'2024-12-28 21:42:24.610','2025-01-07 10:35:32.701','248173138-1-22'),
('eaf75542-b049-4774-ba68-a9606c9d1e63','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:25.662','248135683-1-173'),
('eafe85b4-8a7f-4c5a-99cb-85c523aef12b','7f823e87-d09d-4cb4-ad0a-4393c51662c9',98,100,65,0,'2025-10-06 07:08:31.417','2025-10-13 06:39:34.718','644287826-1-5'),
('eafee2fc-a98e-4a53-a1ac-ebe1bf75b960','8cc791df-a02d-4abc-a3b6-01b16d6a7ffc',90,70,225,0,'2025-10-09 08:39:59.394',NULL,'745759881-1-2'),
('eb022425-13d8-4394-be5c-9d635681fec4','099d907a-78ad-45f7-9bbf-15b1407c1172',0,0,0,0,'2025-04-11 13:41:50.731','2025-04-23 17:45:43.580','412987652-1-1'),
('eb02a156-fdbf-4341-b4af-853abacaa977','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-63'),
('eb0589de-0cab-43a2-93d7-ae24e7a513c0','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.361','2024-04-17 10:16:12.696','248435862-1-19'),
('eb066517-c8b3-4fe2-a639-fe6c25d8ccbc','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-5'),
('eb09a1f7-8c6c-4bc3-a419-052c8f1bf2da','723a1ddc-811a-4899-bb4b-577c7b163262',57,55,35,0,'2024-12-23 12:00:37.284','2025-01-07 17:28:07.120','910485088-1-4'),
('eb1283c8-4c76-4514-92db-02bf8ae1a77f','cdfdd10a-5aff-42b9-befe-02fb27016fe2',113,105,70,0,'2024-10-23 14:11:56.802','2024-11-04 08:40:24.634','614345013-1-2'),
('eb1507de-9852-4028-9c3b-a822895643e3','58c0921d-4fa9-4aa9-b6dd-5b05cc098f70',83,70,110,0,'2025-06-21 04:33:42.543','2025-07-02 06:17:15.323','69529713-1-1'),
('eb18c36e-5a4b-4206-86a4-aa325867902e','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.593','248133427-1-9'),
('eb19cf79-9fe8-43fa-8a04-6c1373ff7ad9','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-23'),
('eb21bf42-2043-4ea1-ab6e-55357cc54c18','c1d25f90-d493-406d-a430-9b65b4f44c5e',31,31,41,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-17'),
('eb2291aa-a105-4338-bcb4-1670d85f0dbd','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.593','248133427-1-39'),
('eb24e32a-8d0d-473c-9ddb-2e273696a275','dd6fdf61-e650-45bb-980e-83d576bfac38',80,75,65,0,'2024-03-23 08:36:28.333',NULL,'982425071-1-5'),
('eb24f440-3dd4-4fe3-aa96-22eb3772e575','2e0a1462-53e2-4e2b-bef2-6301700a6b7e',102,25,9,0,'2024-06-08 08:00:17.838','2024-06-20 20:15:56.066','428138926-1-67'),
('eb259ebd-4220-4e4c-af2c-36c6e13f61c1','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-7'),
('eb2638e1-0281-4e18-b2d1-e3ebd4d76f2d','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',227,59,5,0,NULL,NULL,'428413605-1-21'),
('eb292b6a-3e42-4b90-b72d-f2768d6a1930','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-70'),
('eb2ee785-019a-452a-af1c-14c740a4f1a5','031c81a1-1596-403b-80d9-8d3b2e98940a',80,70,80,0,'2025-09-26 12:39:44.402','2025-10-10 21:30:19.168','478668622-1-4'),
('eb2f4702-59f1-43c2-bd46-d39b60851a22','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.251','2025-02-25 09:59:06.491','478763903-2-40'),
('eb316734-dad9-4760-8459-6b4ff1e3b56d','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-36'),
('eb36117b-a75c-4ee7-9408-05c737895fcc','6918492a-0685-40ae-9b38-8845d6ba2ae9',72,72,103,0,'2025-07-19 07:52:27.552','2025-07-26 14:17:14.136','644389756-1-3'),
('eb3670fb-2253-427a-93b6-356a8e59a13a','151b19d9-92ed-4dd5-aef9-d976e3d09152',87,60,223,0,NULL,NULL,'745436157-1-2'),
('eb36954c-44f5-4b76-be4c-34e9c09ca692','4ac8027d-d5db-4a57-916c-23dd357c98aa',48,37,37,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-2'),
('eb3cd328-573e-4aef-bb5d-613fdf3fe3f3','4133b64d-8906-4cf9-aeb9-479ffee87338',97,53,58,0,NULL,NULL,'695734625-1-4'),
('eb3eb669-6377-46e4-b6d5-ab5999608b1f','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',98,162,1,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-16'),
('eb42569a-836d-4722-8976-bf66b36b5241','3268c72f-f164-49fe-b81b-8e7dba188814',40,17,212,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-2-4'),
('eb45d430-2655-4b0d-a69b-97863de83556','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-79'),
('eb465425-627b-42b5-9339-a7911bd2299e','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-14'),
('eb468179-aba6-453f-8831-d623d36f1124','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-34'),
('eb46dbb0-8a10-45ed-883f-a4f05d683c5b','9114ad70-d53e-4d1f-89c7-30585d0a43de',160,84,6,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-40'),
('eb4753f6-9df6-4774-8634-2059c2257215','958e3421-c3fb-4426-8a47-54e90cedc4fa',150,150,10,0,'2024-05-13 13:11:49.679','2024-05-29 18:59:13.763','126229931-1-2'),
('eb47bfb3-d3a2-4be5-8d13-c85f49ad64af','df713518-2930-40b6-8d4d-ddc4bcddbec8',66,74,78,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-8'),
('eb488937-a66f-4183-8799-5f7205f3448c','b39244ea-16b4-435c-9bb4-e2081e2736ed',103,39,39,0,'2025-07-02 12:43:25.536','2025-07-23 06:18:04.216','644330933-2-4'),
('eb50fea2-1c4e-4c15-af2c-a08cb2cf7c3a','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',48,66,26,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-32'),
('eb510eaa-e442-48a1-872e-7633787c0e97','9866a947-9974-4053-8415-4518842488fe',70,98,53,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-37'),
('eb529db4-33a6-448f-9d22-1f63a871c7c7','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-66'),
('eb536bbb-efab-4f84-9f87-47134958da8b','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-14'),
('eb5757f6-15b2-4a81-b248-bfd3cc9efee2','96449af3-c272-4a90-b77d-0790552dd455',60,50,42,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-6'),
('eb588aef-527c-4844-ba69-285995b9c0a3','893ea818-a1bb-4e98-9cc9-c685a50870b1',0,0,0,0,'2024-11-25 08:28:13.642','2024-12-06 10:08:54.035','745991438-1-7'),
('eb591ed9-efbd-4e6a-bbcf-caf32132553b','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:26.245','248135683-1-72'),
('eb59b963-cba5-4d91-b20e-0b2c80eb1591','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-15'),
('eb5bd30f-4735-4f9c-9725-8f0582771dda','1b378fd6-fc53-481f-ab7b-e597cb46b15c',104,57,85,0,NULL,NULL,'613137842-1-3'),
('eb5c97f0-a742-43b7-985c-8e5a44d37dd6','6d0390ef-65ce-4154-a607-d67e51938ed2',79,50,50,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-24'),
('eb5e0007-d288-4dcf-b3fa-d0e2d53dc7c7','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-15'),
('eb5e5f96-7ad1-44e5-a892-9750585191b5','55c580f2-39b2-4b62-bcc9-c1c4c35132f8',0,0,0,0,'2024-10-02 09:26:40.080','2024-10-09 11:10:56.705','745283309-1-1'),
('eb5f42aa-1b2c-4c03-97ea-762de63714be','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-32'),
('eb5fbc1f-8ad2-4e95-a7df-04f5932113f7','1884a3ce-0014-4e70-adcb-69bbeb0ff6f6',48,140,99,0,'2025-05-09 18:43:48.379','2025-05-21 18:37:11.087','644644143-1-1'),
('eb61570e-8e57-4509-b8c5-07b766d468a4','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-5'),
('eb622631-55da-459d-b814-efb0b0d47c4f','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-13'),
('eb67581e-917d-4a9b-b4b9-ef83132ec235','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-117'),
('eb6d0c73-aa33-48d6-9c6d-8713934b2a7a','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-10'),
('eb6eab44-4cee-4543-9014-0fbd1f43051f','adba09c2-3268-49b9-b2e2-a2426fbdcc6f',93,55,8,0,NULL,NULL,'976849487-1-2'),
('eb74fc2b-d590-4ecf-9045-82ccfc1875a3','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-2'),
('eb761e21-f6d9-4bc9-8766-278faa102ae2','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-17'),
('eb765cc5-2579-4149-9f04-ae2c212c29f1','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-32'),
('eb767b6f-c5af-407c-9d9c-c43f58198c62','9568170e-e378-4da9-b37b-d9254993edbd',232,95,70,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-4-3'),
('eb790a59-292a-48a2-93e8-e4b34222b179','ac2f272f-90f1-4d84-b5c2-1892af4e2892',26,24,13,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.293','437895842-2-5'),
('eb7aa5ee-440b-4eba-a21b-c3feb1f15068','d3c3d137-f31d-4357-958b-af365fcd9dce',98,82,98,0,'2025-02-27 16:45:45.450','2025-03-10 13:01:39.301','15151133-3-6'),
('eb7cb5ef-f05d-4fd7-b7ff-54588b29d6bb','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-1'),
('eb801d6a-bc91-491f-8d5f-979ee294e132','4a90547c-6b75-4ad7-a83c-cf7308b5af24',90,29,198,0,NULL,NULL,'598138099-1-2'),
('eb80f14e-5664-48c1-8e25-9b95b29906f8','b5f6869c-be7c-4244-9bf9-704a745a8d2e',52,8,147,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-7'),
('eb812d9e-b8cf-41b2-8976-0b65429d9158','c0d27879-28a1-4f95-a3fe-67eeaa327a18',40,40,108,0,NULL,NULL,'982759064-3-3'),
('eb8757d4-7b40-4ffc-b49d-2b34b4b7f721','b7fbd54c-bcc0-4613-9901-d06327048472',54,17,21,0,'2025-10-14 09:22:10.152','2025-10-23 06:19:59.175','910594430-3-2'),
('eb899096-88bb-414e-98de-7d158610484f','82c2f7e6-7d17-4f07-ab88-13d96b343121',95,95,65,0,'2025-10-08 17:44:14.746','2025-10-20 06:32:43.863','644651781-1-5'),
('eb8b27d1-79ac-4a86-8003-1d3aca679be0','c512880f-476f-401f-801a-a1fa72ec0ad0',193,91,26,0,NULL,NULL,'478892203-4-6'),
('eb8cb00a-b4e2-44ef-94f2-1234f7c6c2a4','e5351842-f251-412a-b144-4f748b1a9359',108,108,65,0,'2025-10-25 08:59:08.075',NULL,'351519592-3-5'),
('eb8d7e37-918d-4dbc-87e6-ba0f7e51d312','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:19.869','248135683-2-7'),
('eb8f9d52-1d0c-48cf-91d0-fd042938f76d','9504c24b-6a37-4522-83ad-b302a5d583a5',70,22,221,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-6-20'),
('eb908f3d-c825-47ef-9f16-0d7478ad4879','df8f2fad-cf54-4954-a619-fe7d05b72e27',46,6,211,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-30-3'),
('eb942b82-7a7a-4995-87cf-20e92164af92','2b836e01-2f5e-4512-9cc2-9be25ec5b6b5',95,85,69,0,'2025-04-21 06:13:43.143','2025-04-26 17:54:46.253','478483851-1-4'),
('eb9944dc-d635-49a9-9d04-5e2f31a132dc','55ec4035-40e3-4d77-bb32-a4802c6ae143',0,0,0,0,'2024-05-10 18:50:05.514','2024-06-04 14:24:55.867','412359172-1-3'),
('eb9ba03d-cf52-4d84-b897-030315e2730f','365e39ee-f73c-4477-836f-a2b97cf0bbad',45,72,25,0,'2025-09-16 16:29:33.680','2025-09-30 07:40:09.586','371734068-1-3'),
('eb9ce46d-87cd-4e09-bd09-65647c5a45d1','8011623f-379c-4258-a4f6-ad6ee01c4e59',0,0,0,0,'2024-04-08 08:57:34.683','2024-04-30 22:31:22.201','745262490-1-6'),
('eba1b7a7-a7e0-442a-b10f-927b546bef2c','1fba091e-0fd2-499d-b5d6-6ee2a14e90ba',0,0,0,0,'2025-09-24 11:02:21.660','2025-10-05 12:15:28.864','745278745-1-11'),
('eba61356-af86-499a-a121-e90f895684b0','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-34'),
('eba744e0-cc13-4b6d-8c69-1891b342ea46','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.928','47836811-1-14'),
('eba7fdfd-09dc-4cd4-89d3-107ca748c021','21f98131-6f1a-474e-afcf-0edc5f8749a7',0,0,0,0,'2024-09-27 14:06:02.999','2024-10-07 14:02:49.696','750926872-1-1'),
('eba993f2-fa5e-42e2-9edf-a34df06a2217','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-15'),
('ebaaffc5-ad63-4d37-aead-b6c30e937b26','e945c68f-2934-46f3-87b9-fdd1b2658111',51,51,77,0,'2025-07-02 12:43:53.876','2025-07-16 16:51:17.521','221965496-5-2'),
('ebab672c-0c51-4c2e-9ff6-ab3a7676fb11','648b1063-2206-4845-a6a3-5b3089a2bafc',92,204,28,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.533','531344250-1-5'),
('ebace718-be12-454c-bf8d-93ef0eda1663','ac2b9be2-c0bb-4704-9314-44e3ed793e24',26,42,179,0,'2025-08-14 10:05:27.421','2025-08-27 19:34:52.034','334873891-1-1'),
('ebaf3b5f-13a8-41e6-b03e-327774d93e8c','c685ccef-58ed-4f1b-853f-88e58701a0f9',80,73,80,0,'2025-02-09 09:51:37.801','2025-02-18 09:36:07.880','319918133-1-1'),
('ebb03c70-8f97-4c59-9970-542645390ebf','5567c05e-4eb3-4a67-8e84-862334c1e476',9,87,87,0,NULL,NULL,'221383692-2-2'),
('ebb348c8-39ae-463c-a33c-c55195179aba','f351758e-15af-4dfc-b646-4c3a5ace9c3c',0,0,0,0,NULL,NULL,'614941926-14-1'),
('ebb7655f-0e3d-4948-804c-48f0212121ec','7defd633-f7ab-424d-8029-028d1b045752',83,90,78,0,NULL,NULL,'501119446-1-3'),
('ebbb73ab-158d-4172-b7dc-7aa37c286be8','7311f1e0-e2be-43dc-9e40-f94a010e8939',161,48,54,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-51'),
('ebbbedd3-ab1b-487c-a630-e8e1da51f32a','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-19'),
('ebbc5f41-195f-4fd0-af4f-52bb5c4143ee','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-12'),
('ebbdb903-7f4c-436f-82d6-163dbd15b52c','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-23'),
('ebbf58d2-e455-48d2-9fee-28938f10e06a','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-38'),
('ebbfafa8-8d60-4c20-b95d-b1944afea075','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',42,42,40,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-10'),
('ebc16cd2-c894-4f50-ab0f-b458e939c3c3','6b3cbdaf-e161-43f0-88e5-ebaad2122e3c',78,42,121,0,'2025-09-11 06:34:22.517','2025-09-18 07:01:30.938','675139037-2-1'),
('ebc54d74-33d9-4982-9c22-84bf45fecbb9','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',100,82,57,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.185','614987879-1-17'),
('ebc6bd71-077e-461a-a7d7-4b2bb4ca6a96','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-20'),
('ebca49f0-98df-476b-961d-425718e9f9be','5a89fae8-525a-4de4-8188-2f4d7c892e74',85,85,6,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.312','959168443-1-23'),
('ebcbc808-5200-4ee6-85a6-7c1565372a56','52b7f9f8-ed1a-4b40-b0b9-e2bbdd96ed63',70,120,120,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-3-5'),
('ebcefe0f-4472-44cf-8cd2-1cbec895d55e','2440cedd-7420-40bc-a7e1-396d5c9a8e14',56,76,104,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.772','371628660-1-3'),
('ebcfe27c-c2dc-4c40-8949-acffcf36899c','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-8'),
('ebd09f91-ebf3-4ad3-9ae2-d1c82fd67ccc','aeeb9331-f250-4b35-89a5-471da85ec593',97,7,187,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-2-2'),
('ebd20234-cdee-4908-af6f-80d5d02ee6bb','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-91'),
('ebd55865-ac32-4f6f-a487-6b9f93300b88','b199a54c-1ee6-4ba0-9fc3-a6cf20620b8a',120,20,5,0,'2024-03-23 08:36:07.606','2024-04-03 18:54:59.982','428510909-1-6'),
('ebd95fd7-4139-41ec-87c9-630751e36fa9','b92e31e4-c5b5-4f66-97df-588443afb00e',43,43,75,0,'2025-08-14 08:21:37.460','2025-08-25 07:10:47.314','371529841-1-2'),
('ebd9b226-4cb6-4de9-96e3-a809ee7f3b24','159c73ed-083b-4d67-98ca-6adcfc554962',15,117,143,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-24'),
('ebdc93b7-c0c3-4738-9ee6-b515e439ff1e','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-95'),
('ebdd20ae-c596-4f49-a26a-bb404d758046','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-17'),
('ebdd513f-b6eb-4165-8dc7-1335d447d92e','cea9e943-e299-4576-b365-f684cc2e4d11',56,76,102,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.167','371514006-4-3'),
('ebdd7654-47f3-4749-b7b2-01d952abbc75','7de47ad7-283e-4220-87dd-ec74ad29a390',71,201,27,0,'2025-07-26 07:40:26.443','2025-08-04 06:40:09.551','428761245-2-2'),
('ebdec5d5-4f23-4288-b7c7-a63d4d47202e','b661c273-9450-4ec4-b1a0-0e9ebcab1df8',30,160,200,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-7-1'),
('ebdf5db9-2952-4f42-b30c-124db5069d14','695436ef-76db-49e8-9063-c84065a6ba8b',21,12,182,0,'2025-10-20 04:18:21.633',NULL,'312422305-2-2'),
('ebe2b8b7-4878-4aca-b3c3-1a73dd5b81ed','979b930a-f53e-4986-8714-bc7b10a23a95',67,133,95,0,'2025-04-15 16:01:40.170','2025-04-25 19:39:52.517','644684600-3-4'),
('ebe30b17-8631-44b9-a441-1b6b6718f080','f0485a78-951c-4f89-bddf-b2003f0bf783',73,10,138,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-63'),
('ebe50689-4211-4ae1-8e16-0da9e6f1ef8e','706d5781-e475-41b5-9b0f-7279cf02af9e',83,64,40,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-5-2'),
('ebe7c939-32bc-44fe-825f-903a17812e4b','1a031080-df55-4ad4-b405-0eda0f569cfe',15,15,160,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-1-1'),
('ebe94a01-15f0-49ec-ab3b-89f5b4535304','1a929455-0b70-45da-b39a-75cee0e92908',211,20,118,0,'2025-07-19 07:52:28.971','2025-07-26 14:17:10.165','371514006-1-6'),
('ebeae997-306e-4c73-a203-b7f47aea0c18','75e7d3fc-2c13-46f0-a46a-88b11bcb2401',0,0,0,0,'2024-08-07 15:02:48.808','2024-08-16 19:21:54.735','478212125-1-5'),
('ebebb3e2-86d1-4cd4-8ba4-ce4198c71a64','673dd833-1d2f-4fe8-b03c-a6405c807cfc',0,0,0,0,'2025-05-23 14:05:30.461','2025-06-05 16:38:17.276','613251938-3-2'),
('ebf060cf-66a3-444c-b89a-ec8da2b9a296','05c69f47-3c62-498d-97f8-bc1d7350f13c',53,58,97,0,'2025-06-11 13:14:44.477','2025-06-17 16:02:25.266','437256638-1-4'),
('ebf73e6b-6e8c-478d-86fc-2cdbe92da550','7b6daf73-173c-42db-8fe4-eaa37f225574',0,0,0,0,'2024-11-15 17:06:08.924','2024-12-01 12:28:46.193','745824914-1-10'),
('ebf81433-1cb1-49f6-92d5-cf6db37807ef','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-12'),
('ebff6922-c3dd-4c18-b7ea-90a92eb13747','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.959','478631020-1-19'),
('ec005760-cbad-47df-bf22-bdda10d9ef5c','ebaff3b5-cd83-4700-8ecd-abc457e20f38',79,57,77,0,'2025-09-12 17:17:04.706','2025-09-23 14:04:07.289','221225501-2-2'),
('ec02cf0e-5fb6-48d7-b727-c45d0e528455','87b3f634-7cb9-4342-96bb-9a0c75c1ffe9',98,140,80,0,'2025-10-20 07:18:09.468',NULL,'505332275-1-5'),
('ec07ca68-0fb8-4795-a644-c735f2653f6f','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-2'),
('ec0c3352-b076-41f3-8c9f-53345bb20444','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',238,110,37,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-166'),
('ec0f18ff-b699-4903-89f0-23592b0ecd66','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',198,45,23,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-5'),
('ec0f6cce-8eae-4ff3-b7b4-07f38b874571','9722a553-1f9e-4d47-9697-a2ef95a51936',95,155,70,0,'2024-12-23 12:00:40.593','2025-01-07 17:27:56.920','428480095-1-3'),
('ec0f9eb1-cea9-4137-94a5-61a2d8d3a80d','20de256d-a63f-4ddc-9e1f-42653a455a81',40,34,220,0,NULL,NULL,'47856812-2-5'),
('ec104a1f-ab0d-4532-8cdf-41ac044515ba','ede92e6e-229b-4f97-ae44-56e07777e1e2',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-2-2'),
('ec109f83-531c-490f-a64a-747b754a9d70','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-30'),
('ec14a45c-5485-47c1-8834-906f46533c14','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-89'),
('ec151479-4b2d-42b7-936e-b022a83757ab','587fc7bb-d234-4c16-8ef8-7a704c2be32a',73,100,53,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-3-3'),
('ec1650c0-9d80-4619-84c8-62ee07b6d35c','69acd97e-52c0-45ae-adf5-ee013e52776f',90,27,200,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-13'),
('ec170329-3812-457a-81f9-c138bdca1f9b','df476668-960e-4ca2-9fb7-82b6c48ec5bd',70,75,80,0,'2025-08-14 08:21:40.648','2025-08-21 08:14:02.400','982720250-2-4'),
('ec17616e-898e-4637-983c-f9c2814dc518','766da20f-af1c-47a1-a9d1-61d9a22c827f',36,36,36,0,'2025-04-21 06:13:13.709','2025-05-03 08:05:43.878','613809111-1-6'),
('ec18a479-4845-4d4b-82e3-f1dcc526fd4c','089780c6-b58e-4ac0-92d2-370a4fcea327',175,123,24,0,'2025-08-21 07:15:15.580','2025-09-03 07:07:54.141','803828322-1-1'),
('ec1abe45-63a8-464d-a0a9-a206b2295ea1','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-85'),
('ec1c92c0-2f57-401e-9cf5-db7f52eeaf76','c6529ce0-eb24-4ed6-8e4f-0aff33e82729',0,0,0,0,NULL,NULL,'695635873-1-6'),
('ec1d36f3-5428-4494-8a4f-203a30c2e3c3','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-2-19'),
('ec1de765-7127-4fd6-ab87-9a4edd211691','de440f55-a69c-4eb1-b8c9-629c405b795d',43,11,185,0,'2025-10-25 08:59:01.029',NULL,'515973668-1-4'),
('ec1ef311-9a7f-451e-8ab0-852515137ab3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-63'),
('ec258cea-2a90-4d7c-ba05-560117eec5f8','b33c0371-be03-4af2-8c49-7adc620602f6',56,76,102,0,'2025-08-21 07:15:14.942','2025-09-03 05:44:44.106','598982184-2-4'),
('ec2647c5-6495-40cd-a3d4-b7d31dff759f','2ab41284-325e-4735-a02e-0af4784fee90',44,5,210,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-1-1'),
('ec26f522-9672-4f7e-849b-e0928449b967','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-100'),
('ec29acaa-337d-4c9b-bf15-ffed66303470','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',55,7,197,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-76'),
('ec29e508-3131-4e75-9cdd-84ace6693983','5c9dc5ec-c65e-41d1-9f11-c03a6d5bfbe0',80,95,95,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.465','011195834-2-7'),
('ec2b82a3-23f3-43d6-a1ef-b24e5b80645f','8add455f-cadf-462a-8446-b3feef2203eb',0,0,0,0,'2025-02-03 18:18:36.497','2025-02-14 15:00:10.497','73555265-1-4'),
('ec3219e1-2ebd-453a-901b-e5705d0cae95','bf29a690-2cc1-42b5-8c3c-53bcdc53ae9b',40,35,212,0,'2025-10-09 08:39:52.751',NULL,'011940661-5-3'),
('ec346c5b-328a-42a1-8f99-d2f1a1d184a3','e4174e33-46ef-4741-a875-241d3d31e381',55,74,100,0,'2025-08-22 20:28:35.969','2025-09-03 06:12:11.936','644796083-2-4'),
('ec37ee0a-9599-46c1-8ec7-708caf4130d5','b5f81ffd-0a34-49a9-8ff7-1cac1067fdb2',70,207,95,0,'2025-06-11 13:14:26.407','2025-06-24 06:24:22.448','91034652-1-1'),
('ec3aa71d-4c5a-401d-b5ed-28c3013b561f','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-5'),
('ec3f2035-c833-4270-9698-2110d026f227','40065c78-de90-4058-907e-6af9c5da2b57',25,98,175,0,'2025-10-08 17:43:29.334','2025-10-17 06:15:16.791','803441454-1-1'),
('ec424dfb-2a51-4f02-a69f-c7fec39314ad','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-64'),
('ec42a847-9da7-452f-baee-36d6697c6f38','84a0cbcd-d7ac-4f39-a3a5-1f9a23b39102',70,90,70,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-15-5'),
('ec486993-6e3b-4869-b879-783d6f8cf67a','278b14ca-f435-4dc6-be59-91b5fafa1288',206,111,27,0,'2025-06-26 10:30:01.217','2025-07-01 19:00:59.515','745619301-1-4'),
('ec4bce10-9686-419d-b072-875b09614fff','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-55'),
('ec4db876-6116-4e62-b87c-d9f6ff1a332c','45554c4a-4aeb-4b67-b09d-ee427b71d844',0,0,0,0,'2024-07-03 14:35:44.282','2024-07-18 07:31:41.176','478418480-1-2'),
('ec4eb726-55c8-4e3b-8f95-0ee7744f19ed','546ad3d0-25c2-43dd-9443-e48b8e5b6530',80,85,75,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-66'),
('ec556907-e5a5-4a09-b2a7-ea55f120edf8','638172c9-793e-4ec5-9ad2-cf82bf06eca7',23,15,210,0,'2025-10-25 08:58:57.609',NULL,'412939859-1-2'),
('ec55b47f-0977-4fbb-9d4f-284345c6d3ce','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-223'),
('ec58e31c-cff3-43e0-b31e-3742846549bc','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-16'),
('ec5a4860-8bf3-47cd-ab98-4705d52a3232','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-20'),
('ec5ba9b7-53b1-4bfe-928b-2a75be998c4c','a2dfc3b6-cce0-47e5-81f5-3031cdcba285',27,16,103,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-3-13'),
('ec5bea85-e066-4bae-b394-4bae40ddb656','9504c24b-6a37-4522-83ad-b302a5d583a5',162,199,4,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.290','745907299-6-21'),
('ec5e9342-0f47-4262-8e99-040d3c6e0df9','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.398','41245861-1-7'),
('ec5fee62-3803-435f-8baa-008b9cc67e96','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-29'),
('ec6398c0-8715-4e2b-96a4-fbf947e91928','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-17'),
('ec6532ea-5761-487d-9120-94884a5e9724','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.931','2024-04-29 09:07:18.398','41245861-1-95'),
('ec65b616-e740-4455-8cdb-b12b3154402b','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.540','2024-04-04 12:47:51.274','412565065-1-29'),
('ec65dc2b-91dc-4e7e-9a8c-b53ff0b7b7cb','df315e40-f7b8-4524-810a-6c390c475673',80,80,70,0,'2024-03-23 08:36:11.360','2024-04-03 18:54:49.659','6148124-1-4'),
('ec679c5a-d85e-4782-bc12-638b294fb5e4','f0485a78-951c-4f89-bddf-b2003f0bf783',57,82,109,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-65'),
('ec709236-34e5-4d02-8a88-36a64c8484df','8af3ab72-3bbd-469c-9a3a-af8e2c3ea190',97,105,70,0,'2025-10-20 04:18:21.633',NULL,'312422305-4-8'),
('ec712f72-7d25-4049-8dbc-06d24f5ced4d','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-16'),
('ec71aca3-8f98-4c43-bdaa-73c3ae403472','9b637b9c-c2ce-4522-a986-3c8fdfd10d6f',0,0,0,0,'2025-07-02 12:43:50.485','2025-07-17 14:40:44.021','478259590-5-5'),
('ec7376c3-86ca-45c6-bd0e-5c1164ff6ab8','5ea4b207-b05c-4931-bbd1-648b6933aae5',44,64,16,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-21'),
('ec77ec93-a68d-43f5-98e5-3493d3f12dbe','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-4'),
('ec7a3f4b-887d-4fbb-8e82-828ace61f071','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-9'),
('ec7b5035-012b-4a38-89f9-85df8466a5ac','e54055a2-3c9c-4738-a808-7a4a31877ef1',68,70,35,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-33'),
('ec7dfd07-c1ec-4e09-a290-193ecd0a42d0','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-2'),
('ec7e061f-0cf3-4ee8-ace1-89b983fd1a31','1d6ec1b3-cde4-421f-ac65-dbcde85085cb',0,0,0,0,'2024-08-31 13:26:58.314','2024-09-07 07:22:30.807','614508817-1-2'),
('ec845b7b-6440-46a9-a94a-838fc0e9942b','7b2d4551-a99f-4fb6-8215-e7af3afe860e',130,23,220,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.124','486184665-1-9'),
('ec848767-8ae2-4b7b-b99d-f4ffd6bc774d','6ce91342-6292-45b3-be85-1b55deed3ecb',240,100,85,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.342','517895646-3-3'),
('ec864a95-1b2c-4bea-acdd-5bdcb0b28325','6302f68c-26c4-4a31-853e-80b9d1ba59ee',45,45,50,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-36'),
('ec865d96-18f6-4db0-b0f7-6668d69ce37b','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-23'),
('ec885423-7264-4097-83f4-8712e0e484bd','88ec1b69-5cc3-47af-8aa3-9c3043171516',120,120,65,0,'2025-10-14 09:22:23.462','2025-10-25 09:00:24.655','478589258-1-5'),
('ec90f972-cc51-4e35-acae-b04e7591746e','7ff65271-3ce2-474b-9039-bb86bb4afd70',0,0,0,0,'2024-09-27 14:06:31.618','2024-10-05 18:18:15.507','027527659-1-19'),
('ec9172f0-afe8-4c5e-b0b6-91b598c53df2','5632f22c-493f-4a5e-afdf-13268c32b047',72,43,67,0,NULL,NULL,'528640995-1-5'),
('ec92683c-5123-4c65-b01b-1d7d8aef73d6','5e4d8700-ecec-4c1f-b393-843da9941edc',0,0,0,0,'2024-07-20 16:33:35.781','2024-07-25 21:24:38.399','9824380-1-1'),
('ec927fb1-ccd0-4ac2-a62a-a0e75a74763f','eb86c349-9505-40b5-b06a-f0b02ee95dd7',61,61,91,0,'2025-08-07 16:52:24.800','2025-08-25 07:06:53.264','982561254-3-2'),
('ec93d952-eac3-4490-8de8-ba9e96f16514','2ab41284-325e-4735-a02e-0af4784fee90',64,253,12,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-1-9'),
('ec9825b2-c72e-4618-b741-c495f024bf40','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-70'),
('ec9a1bac-caf2-4b52-ab42-518517c5ce3d','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-4'),
('ec9c75dc-3e02-44f1-930a-b46696f77a91','59b0092d-145d-40f5-a623-67f07fc4accc',82,56,109,0,'2025-04-21 06:13:22.496','2025-05-02 07:03:10.003','910316067-1-3'),
('ec9cd61e-30ed-4beb-86e6-23833aeb69cf','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-204'),
('ec9efd1c-7247-4ae5-8e69-eecd0cd1b7f2','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-46'),
('ec9f5ff1-bc95-4ee0-bae7-dc6ee89fb433','e7f31a78-648d-4a5e-9111-1bf7db38dd79',210,85,3,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-32'),
('eca346ce-3a15-463a-bdb9-38ebc0809be2','f351ee3d-e4b2-4153-9162-59ad1cfacfb3',65,95,240,0,'2024-11-08 17:37:50.976','2024-11-21 19:11:13.917','982966360-2-3'),
('eca4c371-3794-442c-b8f0-6fa7a23975c8','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-75'),
('eca68440-27e9-4f9b-a902-b129ac65ea95','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-111'),
('eca7c9aa-e5bf-45ee-8b3d-0994e3558ab8','8b5e9a20-db1a-4fcf-8fe9-eaab2507cebb',0,0,0,0,'2025-03-24 16:02:10.144','2025-04-01 09:23:33.515','478861689-1-3'),
('ecaaaa8b-8cd0-4828-9c87-37347cbecde3','4ee86a27-5a1b-42af-9bfa-a003dfe53a34',0,0,0,0,'2025-02-03 18:18:37.937','2025-02-14 10:41:34.361','478173801-1-5'),
('ecabcb0f-efef-4bb8-9cde-6566e8e2371d','e3de85d3-eec0-4038-99df-48935e9c3c8e',83,83,4,0,'2024-10-11 16:09:22.261','2024-10-22 13:51:40.148','976898541-1-8'),
('ecad0af3-6770-4f4f-a702-32b68ab35d41','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',4,59,231,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-4-7'),
('ecad8422-bae2-43a1-ab13-c09437535cad','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-56'),
('ecadfd1a-3359-4ea8-9944-cfdc2b4ff72a','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-37'),
('ecae580a-322b-4a59-b788-2b8975808af0','0009aeec-e682-465c-b701-363a3ef377a6',227,57,45,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-86'),
('ecba3965-2b82-40a7-a4e7-6a52daba52ba','3ab2fd1d-32f0-4ec0-9f6b-d89427ef7bea',0,0,0,0,'2024-05-29 10:12:11.110','2024-06-11 14:04:55.828','614390628-1-2'),
('ecbb27b1-524d-4ece-9539-6dfc12b113c3','cd4c86e1-c40c-4cbd-9731-a30c5e8b3004',125,70,7,0,'2025-01-06 13:08:14.396','2025-01-10 09:45:03.348','910903191-1-4'),
('ecbba064-407c-4eb6-97ca-aacc7deab6dc','ac0e91a3-bbb5-4bc1-ac9b-70ea0e312873',65,65,95,0,'2024-11-15 17:06:05.096','2024-12-01 12:29:12.435','982176810-1-7'),
('ecbc32ba-2584-4db2-92e1-cd41248356a0','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.549','735931871-1-2'),
('ecbc4819-4434-4f79-87fc-bd3e8dbb807a','02950189-cf83-4369-b3bf-5f176d94bccb',0,0,0,0,NULL,NULL,'910601621-1-1'),
('ecbd57a7-29c2-446a-8846-345c6f32d446','57d11f20-03a6-412e-bd79-62615f3c7867',70,70,9,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-2-1'),
('ecbf5d8a-3591-41cb-8e94-a0f9c782ed99','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-118'),
('ecc24e9a-fb8e-476c-87a8-5bfea9bdca20','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-1-3'),
('ecc367f8-e1d6-49ac-be06-cbba5b29a264','56d181e7-071b-403e-bd82-0351e0863d0d',50,100,82,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-3-2'),
('ecca3b71-0ca8-4278-ad61-aeb80cb1e09e','b3ac181d-7b8d-4ae0-82dd-f3712a64dba6',43,43,93,0,'2025-06-27 17:12:10.111','2025-07-14 06:05:11.367','910756975-5-20'),
('eccb5cbf-47ff-41d2-9c6a-e361eff127bb','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',82,82,6,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-11'),
('eccc2320-ce44-46d5-90be-4e2c2b078fa2','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.769','248692077-1-43'),
('ecce7857-be86-4cbd-9b27-bed4ac96e2de','795d2eda-013a-4fd7-b48b-148a85caef26',64,39,107,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-5'),
('ecd0aeff-0590-4654-9592-02085076ddf1','ae9e9c82-84c2-42de-87ba-c07292fe079d',100,95,65,0,'2025-09-18 15:48:45.318','2025-10-02 06:11:13.650','644834421-1-4'),
('ecd3e83d-cd4c-407b-8fa7-923c26eea6e8','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-28'),
('ecd3f6d0-2a20-4b1a-b184-8f8d860fb4ff','0052de50-8105-4a4a-bdcc-a55ca79dce47',77,55,101,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-1-2'),
('ecd60572-89d5-4f71-af18-c6544d3b3bf9','1780edf3-a9ab-4ef2-8624-0eec8c4453c0',47,13,60,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-2-13'),
('ecd72cf0-cb38-437c-8673-020d8eae3e45','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-87'),
('ecd795f2-a008-4bc1-8e60-8b56d501c889','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-190'),
('ecdc1e0a-b6dd-4d74-9e0b-1e5b3bdd6901','73070a82-3710-4964-a5e9-55737d39af81',80,43,20,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-4-1'),
('ecdd1489-21a4-42e5-8c2a-47dedc0b328a','7c09f776-ffb6-47c8-8828-61389547804e',85,95,230,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-23'),
('ecdf57bc-09f6-4981-87c6-42854d34a3a7','d3d5114d-4fd2-41d8-bd26-703a87e70d0e',93,64,154,0,'2025-05-16 16:33:29.348','2025-05-23 14:06:55.651','644145142-1-1'),
('ece13d98-24f9-4b8a-8305-8b32e171d17a','243bf136-94ff-4e73-8eaf-8fc7da0321d5',48,43,25,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-3'),
('ece1af10-50ce-492d-a348-db32175e2e42','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-104'),
('ece489da-8b06-42c2-be85-b8507b9d57d9','4a5b7db2-dc5e-4f39-972a-37093584e9dc',60,201,26,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-13'),
('ece99806-5b9b-4efc-a5e7-dc7ee0b174b0','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-18'),
('ece9ce8a-42e7-42a5-9e41-97491db2fc51','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.069','858708990-1-7'),
('eceaaa45-1c53-479b-981b-e4f100254265','91fb1a96-2420-46ea-af10-b13095d4de25',0,0,0,0,'2024-10-11 16:08:59.506','2024-10-24 19:13:00.054','501339138-1-5'),
('ecec8e44-ff8d-4eb1-b2ca-988487d8deff','59abcbf6-72f2-4d32-b4c6-de60ef28c0bb',100,128,60,0,'2025-09-10 10:50:44.283','2025-09-18 12:59:57.981','221191139-2-4'),
('ecee95bb-5ec6-49db-8648-0babb556b3b3','a332a69a-5e15-4331-97b8-4dbbd334c8f6',73,53,101,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-2-1'),
('ecf38965-c9cd-4a54-944d-68ad2254e3de','3b598604-d61a-4eaa-af26-59919c1f1d89',0,0,0,0,'2025-05-28 19:09:03.146','2025-06-05 12:39:51.228','65758007-1-1'),
('ecf7949a-2f3a-4a04-be36-081b7bd86a3a','3ee1444b-056f-4630-b9fc-5943a56d716e',0,0,0,0,'2025-02-18 16:37:16.637','2025-02-25 09:59:00.464','478972804-1-16'),
('ecf827d6-cdd2-45c9-b6b2-bed42d326d70','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-166'),
('ecf99a1e-28e2-46a0-a59a-4efa1121a97a','2440cedd-7420-40bc-a7e1-396d5c9a8e14',56,76,104,0,'2025-07-12 09:20:30.609','2025-07-23 06:22:20.772','371628660-1-1'),
('ecf9f4cd-02a5-464b-9b80-b63848bb4eee','6b9e51b9-7e9c-47cd-801b-8bba008d0224',30,45,209,0,'2025-06-21 04:33:47.206','2025-06-30 08:56:30.724','695394738-2-3'),
('ed007b33-525f-499a-8b44-8c7cd43fadba','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-139'),
('ed012669-0b6b-4bae-b364-fdfab4fc3d38','dfeaff4d-8e4b-4c6a-9e10-cafa0da2b0e0',23,33,20,0,'2025-09-18 15:48:45.318','2025-10-02 06:11:13.650','644834421-2-1'),
('ed01701d-978e-4e83-b674-0c2280b1f0c8','9c87d055-322e-433b-9fd7-b8e890d8305b',97,220,70,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-2-2'),
('ed026c07-dc49-4ad5-8ec4-86c3b5583a46','c29e76a4-89ba-4143-8fad-01a2910620ee',86,145,8,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.401','750496630-1-19'),
('ed0273ac-f9c4-4163-be59-6efaa4f64562','be81a593-813e-42e0-964f-fcbe3778c917',100,105,81,0,'2025-09-06 07:20:17.822','2025-09-16 06:34:26.391','371695056-2-3'),
('ed0529b8-0a3d-47f8-a9bd-691379b9144e','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-89'),
('ed0f7483-e403-4ad5-b36d-f4b525773667','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-8'),
('ed10a991-9a7f-4ac1-b5f8-039f691fdf25','f59aba8d-2f5e-4816-b322-ff557edd32f8',51,51,77,0,'2025-07-29 12:58:27.888','2025-08-11 10:25:02.853','505770346-2-2'),
('ed14d21e-5dd2-4457-90de-d793209cf825','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-96'),
('ed163c19-8f39-4a47-856b-d29980661515','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-15'),
('ed16713b-d43d-41ef-9005-c55937775a40','75250fde-3038-4f4e-a5ff-558818ce04ca',107,7,208,0,'2025-09-18 15:48:31.910','2025-10-02 06:12:19.101','437233194-3-2'),
('ed1770f1-105a-4230-8b17-60794ea08927','c1d25f90-d493-406d-a430-9b65b4f44c5e',10,135,175,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-18'),
('ed1b9cc7-87b9-4e42-8bdd-293f5b2f89d8','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-123'),
('ed22d2ff-bdd8-4508-9f76-4ce139560d63','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:00.206','248284003-1-61'),
('ed259007-1d1f-4313-8706-98d6742779e7','7e8643f3-2224-44f8-8380-7da5eea93721',232,70,98,0,'2024-03-30 10:55:02.595','2024-04-03 08:28:04.945','501668492-1-5'),
('ed29a1c7-18cd-486c-9fd1-6501146a73c8','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.840','248771792-1-43'),
('ed2a52e7-f460-4e77-9429-a0a014fc3d5f','7d18820e-1b37-4637-86c6-9360841574c3',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.056','74529534-5-18'),
('ed2a94bb-594d-453f-8464-baa2e4f6e5f3','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-142'),
('ed2c8a37-b982-4a41-8129-cfd969667c83','047bf09d-242b-472b-97f8-46901b73eea9',17,48,63,0,NULL,NULL,'428905379-1-9'),
('ed300065-3778-4e5e-8743-5de61653b653','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-47'),
('ed35ff89-8e6a-4cc5-af71-6f1e0727413b','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-21'),
('ed384d58-da72-491b-b735-dadb40640c8b','c3ac41cc-e814-4fa6-aef1-11c9d37911f5',100,100,70,0,'2025-09-18 15:48:59.201','2025-09-30 06:45:01.426','644879098-2-4'),
('ed3a34a8-a2cd-4689-be04-606a526c1886','98100d2d-7751-4a2b-bb57-54993e9529fd',33,160,200,0,NULL,NULL,'478777575-2-1'),
('ed3acecf-f4f7-4394-9dd5-83b600ad535a','0a8285d0-d3db-4298-8e41-62c5429f150a',210,86,2,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-25'),
('ed3c39ed-c05a-4973-97ae-1acbc27346f4','5733786c-8679-43e7-8510-9eaefeb26e66',96,6,196,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.745','221341784-2-6'),
('ed3cf4c3-29c2-4fc1-a6e0-6fbebdf82b59','ce3f831d-2675-4684-9557-6bae46763ee7',96,160,16,0,'2025-08-21 07:15:02.335','2025-09-02 06:52:04.840','675253974-4-3'),
('ed4a72fa-285b-423e-9d11-40b3275e8edf','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.569','2024-05-29 14:54:39.098','449394658-1-9'),
('ed4a986f-2b13-45e7-a308-ddca4ef329de','86e5956d-750b-4aa3-8f00-53e2db7b9f65',44,44,15,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-32'),
('ed4c1e07-caaa-409e-80db-7f62b4fe83a0','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-17'),
('ed52deb1-7dcd-45e9-992e-a47d482ba9c3','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.496','2025-05-02 06:57:34.636','221685294-1-7'),
('ed5a4ee3-a288-41ff-89bf-b68312945235','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-12'),
('ed5ece5b-26b9-425d-81f3-3884200df709','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-64'),
('ed60a5d2-ce11-4776-b21d-c18843f7f9bc','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.567','221339460-1-48'),
('ed62298d-95db-4a2e-be14-05cb660660f3','09ef7abe-b4ef-491c-951c-09430abea134',0,0,0,0,'2024-05-08 18:43:23.581','2024-05-21 18:45:40.660','478685156-1-5'),
('ed6301ce-f586-456f-8312-d2cd10b9fbbb','c5027968-9a23-442a-bebc-9b8745408960',45,61,15,0,NULL,NULL,'982759064-4-5'),
('ed6472ee-33d3-483c-9610-1cbfa66e7ef0','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-80'),
('ed68e71a-c75d-4cb2-bd5f-40435b80f239','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-248'),
('ed6aa2b1-3a29-4858-ac4a-9ce70568d58d','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:26.912','248135683-1-237'),
('ed6b61c0-414d-40a9-81f2-e04a297c4743','7f0b9b4e-810a-47ca-a3e5-0c3a6a9abda1',15,42,74,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.627','614659832-14-14'),
('ed6e9dde-73f5-4786-84cb-0f9b7ea81f78','e6bddda4-b1df-4be7-bbd5-63cc4b197736',75,80,68,0,NULL,NULL,'42857810-1-24'),
('ed7090aa-5608-4c2b-ba30-0852a47ea2be','e187dd68-c11f-4f0e-86e6-8f4e32053270',0,0,0,0,'2025-04-21 06:13:29.856','2025-04-30 07:24:26.145','74541057-1-6'),
('ed71a15d-d568-4a3f-ae43-055be83aad79','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-3'),
('ed732ee4-b223-4aa4-b404-884e0d931e19','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-143'),
('ed78c2a0-bf64-446f-85d7-36950ce61b27','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',34,200,160,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-5'),
('ed79940f-d7f9-47df-ab75-bbfde01a3ec6','626e7d76-e844-4c98-a946-f86b3d5e2881',74,48,101,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-1-3'),
('ed81dded-0cb5-45c4-b3d9-b1259baa93ca','169583e5-aae1-401d-bbeb-1e1ae478298c',52,76,52,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-2-5'),
('ed827387-8f07-4d1a-bf96-1a2d9387dfd8','234275dd-7dff-4ff6-8ac9-fd664b7f6308',0,0,0,0,'2024-09-28 16:27:11.982','2024-10-10 11:34:46.197','478209702-1-6'),
('ed88007e-90ab-41f4-a77f-fd8102f97c08','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-34'),
('ed8bb315-751b-4749-9279-ef2924d012fa','b5d05803-9ab4-468c-ba3c-4a0e289f571c',97,65,118,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-4-3'),
('ed8bc7a3-3d19-49bd-86d4-08a3b820662a','5fad51cb-2466-474d-9661-9f8cff4bd601',83,6,130,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-1-2'),
('ed8bcbf1-c356-4fd7-a246-aa05beb0d85b','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.858','2024-10-07 14:02:25.807','47867667-1-18'),
('ed8c4ca1-0934-495d-b39d-705f86ba3e0d','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-21'),
('ed8e895f-3711-45f4-80f9-1034e90b0d10','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:20.509','248135683-2-18'),
('ed9001e6-5dd6-4e48-9888-8f9984feeb1a','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-99'),
('ed90a37f-989c-4548-a0aa-d94ce1919885','e6b15fcf-d8d2-44ee-b679-b6020a3b2f11',100,80,102,0,'2025-09-01 11:06:18.137','2025-09-10 16:32:52.073','437840419-1-2'),
('ed93d06f-77e6-4991-a454-4f9fa09077c3','3aea33f3-e1e8-4f93-acfa-e05c9eae91cb',0,0,0,0,'2024-05-23 07:27:06.570','2024-05-29 14:54:39.098','449394658-1-10'),
('ed9671a0-6ca9-4228-9655-ffcf6dfc8dcb','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.206','745715303-1-8'),
('ed97eafc-aaf8-49b3-b2c5-eace0e01ebe6','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-139'),
('ed98460e-4bc8-42c2-baba-e04a45bb6037','1bb5f42b-00cd-4103-97bd-b2cd24afaea0',16,95,180,0,'2025-07-19 07:51:58.812','2025-07-30 08:02:01.464','371408514-2-5'),
('ed9a014b-bf40-445d-841d-898bcaee6522','1c3805e9-6884-405d-bb40-3d257f12ef95',77,43,43,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-2-5'),
('ed9c0e26-55fb-471a-b33f-6f4a4cfefcec','a455ba66-b417-4781-a6f2-6fce1b8bab23',8,52,71,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-25'),
('ed9e016c-5c7c-44b1-9cb4-fcddb5869be2','5a6f882b-c04e-49c9-9a64-cc6e9f80965b',201,82,55,0,'2024-09-28 16:27:26.592','2024-10-08 07:57:49.259','449208438-1-8'),
('ed9eeb2d-bb01-4c23-bf8b-92904dc482fd','a77e3c4e-16aa-42f7-80d0-00cc4b94f441',96,196,6,0,'2025-03-08 13:46:04.620','2025-03-20 18:07:56.615','221157320-2-3'),
('eda4b7e7-afc2-4d44-ae2a-a3df31c2ea5e','f811b922-d2ae-41ac-ab53-1d8212179217',0,0,0,0,'2024-05-08 18:43:13.475','2024-05-23 08:25:12.230','734889822-1-20'),
('eda74cba-d6bb-4a28-9757-0c671bab17ae','3cb4049f-f049-43eb-aed9-c5807606078d',0,0,0,0,'2025-04-15 16:01:12.913','2025-04-28 18:15:37.520','231348651-1-3'),
('edadf72e-c762-4b75-9708-a9e99f6887a9','021dae33-6ace-4f50-bf9b-1a91b9d7a47c',57,85,60,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-1-8'),
('edaea951-1a21-4e70-9929-2c45473b9db9','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-147'),
('edb25cc5-4259-493e-9552-28e21709d3b5','aa7913d9-4692-46ea-94b6-16deac482855',230,95,65,0,'2025-01-06 13:08:15.626','2025-01-10 09:45:09.667','976530579-1-1'),
('edb33750-c91d-486d-8b34-8c2c09d48887','8c3a9387-2db4-400b-95fa-11aef6c745f6',145,48,8,0,'2024-08-21 14:53:24.604','2024-08-31 08:01:45.893','501766543-1-20'),
('edb551fa-957d-405e-8f28-8b2345684a2f','a1550d6b-1e80-4cc0-a360-0d4fe5fd207a',0,0,0,0,'2025-03-08 13:46:07.997','2025-03-19 12:35:48.760','221944135-1-2'),
('edb59510-4579-45a9-9786-cf0504896b0b','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-65'),
('edb5b623-a7b6-451b-aaaa-b8f9bc666e6e','0a4aa4de-bb28-46ac-bb64-98beb5311460',183,105,7,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-1-3'),
('edb65bea-4b67-407c-ae7f-2e6db0b2b8f0','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-43'),
('edb6843d-6b78-42fc-88d9-ade59d8e8f3a','c98f6188-56c5-4870-be97-be71cf95f62e',60,20,40,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-14'),
('edbbf335-5638-4aca-9535-42b993bc038f','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-11'),
('edbdcdca-3f7c-43b8-8d00-3cced8e0a796','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-20'),
('edc2802a-fe60-4a67-889d-6c466cea1bde','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-2'),
('edc46858-1df2-43d3-a7f1-47abe4ee68dc','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-12'),
('edc5958c-b262-40fb-9d51-c965270fbc72','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-78'),
('edc6d0c2-88bf-43e4-8d21-89c6ca193e9d','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-91'),
('edc8718b-7b31-492a-a51d-b53b74012eec','1146c60f-37ae-4960-9ff1-39c79125711e',94,105,65,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-2-11'),
('edc90c08-fe5c-49c1-a569-e3e714cbacb6','e3de85d3-eec0-4038-99df-48935e9c3c8e',70,15,16,0,'2024-10-11 16:09:22.261','2024-10-22 13:51:40.148','976898541-1-9'),
('edcf38e3-f7a6-4725-803f-31d78be39df8','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-8'),
('edd08ecb-4097-449f-a4cb-e38a962ba941','e51262e7-d967-4d4c-89ce-5959d794fa71',55,55,81,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-2-5'),
('edd0bca5-5080-48f8-b8ac-5dacbd0b5bda','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-23'),
('edd2e8c3-255c-43a8-85b5-a5bd9a4fc166','448d1ec3-338c-4b04-9018-fab26732c500',53,52,53,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.786','644523362-1-2'),
('edd3b95e-6631-4c67-891c-d3e542174edf','19f8d788-357e-4bae-a0cc-714638359cc7',39,39,40,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-1-9'),
('edd50e93-51aa-48e0-b1c9-1fdd6e0d1821','0263f7f0-6c1a-4beb-ab78-25d69142647c',52,8,86,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-28'),
('edd5fe2d-4fd6-4367-9515-76b4b1884e1e','b0af75c0-f213-483c-af56-315ea49f16f4',0,0,0,0,NULL,NULL,'614941926-9-1'),
('edd6fd0a-fd65-4e4a-9c1d-3b270f7dc179','ab17d88e-ebaf-47c0-8475-f212320a77fa',43,78,43,0,'2025-08-22 20:28:52.770','2025-09-01 11:14:08.686','598427868-3-3'),
('edda1071-e58b-4c0d-8755-59a726c8b912','1e0e2292-bc2c-4448-980e-47ca8452bf33',60,56,86,0,NULL,NULL,'221901011-2-6'),
('edda67db-6742-48d2-8010-ea10067d503d','6ea8dfcb-31f2-4664-8ee7-faadf38806f7',72,106,56,0,'2024-12-23 12:00:16.694','2025-01-09 13:53:47.382','248213954-1-5'),
('eddc28cd-7b42-4f65-8d36-64e9c0dc52fe','64c9c810-f67d-4661-a203-36c163462a28',202,201,25,0,'2025-06-26 10:30:03.597','2025-07-01 19:00:55.755','644903033-5-1'),
('edddefb0-c3b2-49f3-8630-3ee41949ca67','368574ad-455b-429e-98df-eb01c78f0d8e',76,55,32,0,'2025-08-07 16:53:00.856','2025-08-19 19:34:02.155','598781522-1-6'),
('ede08d4f-a871-4287-b9fe-84fce68de5a6','2638267c-49c8-40a2-9cea-d01b15ec2ffa',100,92,67,0,'2025-10-08 17:44:08.106','2025-10-20 06:32:16.904','644113252-1-4'),
('ede1b2db-a0f7-4aed-9d51-d20556b4abaa','03cf9e36-bc3c-4fca-805d-25d2fa0ed6cb',215,47,7,0,'2024-04-27 08:45:29.530','2024-05-08 21:08:12.685','614725757-1-33'),
('ede4bf61-b88a-4081-9120-ff6eec0f95e5','2be304af-892c-437c-ad01-00360cd990ec',38,38,50,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-1-6'),
('ede5d994-a40e-4a79-b20b-e31b6b47d99c','d6021cbb-940e-47b8-ab42-41689446e9d8',0,0,0,0,'2025-08-14 10:05:51.550','2025-09-01 11:08:13.633','478784133-2-20'),
('ede6ce7c-671c-4fb6-995f-0110db653584','6ec87888-8b87-4bf1-adae-d5b6742225d9',58,57,53,0,'2025-10-14 09:22:15.247','2025-10-23 06:19:40.265','478164511-2-1'),
('ede9a0ba-d7e7-4233-8a9c-5b959970a0fb','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.840','248771792-1-44'),
('ede9a4b5-c3eb-46fb-ba3a-fec39023f6e2','dbe79bd8-007b-466a-bd69-a3871043b2cb',51,51,77,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-2-2'),
('edea0ee1-83aa-4657-bebc-46522682dc6b','128ee3b5-4128-473f-b460-9fad52390a53',95,100,80,0,'2025-09-11 06:34:40.847','2025-09-20 19:00:31.521','478391312-1-2'),
('edeccbcc-25d4-42e1-a6e9-00f860e0bf95','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-16'),
('edef593e-0cbf-4352-a180-ce392faf8fba','5114defd-dd85-45fa-a3af-522574ed305c',120,180,45,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-5'),
('edf22ecb-584c-46ef-9f3b-a19e894b1219','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-44'),
('edf8a006-7a23-471b-829b-065d8112474d','73620971-43fb-4c83-8c1f-8672f6a63561',0,0,0,0,'2024-05-08 18:43:36.637','2024-05-21 18:44:54.330','976942978-1-2'),
('edf9a334-472f-49f0-8b9a-bb6ecd1b08f3','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.230','478361652-1-5'),
('edfa2057-1684-46bc-bf78-09d8005f31c8','b4183fd9-691f-4e50-aa3e-1185b3e78cff',123,28,15,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-8'),
('edfb1b2e-38ba-4b70-ad28-c3619eff34b5','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-1'),
('edfbc0bc-39a3-4b9b-b64b-eaac16111777','e8493aca-04ff-44bd-b1de-df49c239b8f2',65,68,86,0,NULL,NULL,'531680148-1-9'),
('edfdb33e-495e-4c0e-a69f-4e2ae6bb89fe','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-18'),
('ee010cab-a25a-45b7-b53e-0e38260116c7','7615d0a2-cfd2-4c2b-955b-2f1fa4697aca',93,40,43,0,'2024-11-08 17:37:48.235','2024-11-22 21:21:57.745','449193323-1-1'),
('ee01519d-7197-4154-871e-84ca5e334696','859ce399-c54b-4755-9400-79822660b5df',166,12,96,0,'2025-02-23 12:39:02.551','2025-03-08 13:57:44.556','221554711-3-3'),
('ee02a99e-d1c8-457b-bf5b-96d1f61bc80e','f12eb7a4-6e0c-4b68-8911-72ebe340d603',192,35,35,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-5-1'),
('ee04687a-07e2-4b3d-a3ce-703c216ec013','318cde76-8ade-4948-8a1a-03f459b25500',0,0,0,0,'2025-09-01 11:05:43.743','2025-09-08 05:04:26.574','371280361-1-1'),
('ee0606c5-01fa-4978-9113-e3041b54008b','feb5ac99-94b7-4077-ad29-decda6b8d898',0,0,0,0,'2024-10-17 11:51:17.576','2024-10-26 07:30:12.615','745276835-1-7'),
('ee07437d-1752-4082-a492-9ae2857c20bb','f702dc4e-af8e-41dd-8ba7-0b404624d574',0,0,0,0,'2025-01-11 15:20:09.430','2025-01-19 14:52:25.260','750704426-1-3'),
('ee079f50-9aa5-495b-a276-c992badc7ceb','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.728','221940723-3-5'),
('ee09c924-3d8f-4f12-97af-4efe44b5107e','b5f6869c-be7c-4244-9bf9-704a745a8d2e',45,23,67,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-8'),
('ee09eba8-dbae-4b52-9ea3-dd9cf1fc3ae5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-228'),
('ee0aec6e-70dc-4f6a-adf8-c86a807745bd','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-101'),
('ee0d8ce6-8136-4d81-8f36-d9c8f2a6c205','8a7fb8e7-170d-43fb-87a3-8fffb16bb71e',100,78,58,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-4-5'),
('ee0f30fb-d8e7-4cb6-ac26-b3ddb9d58e48','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-90'),
('ee10e3f6-be07-42a7-9a58-db581dd14a9b','0756d756-3ebb-46ec-bf88-18b98d2e8a63',13,90,168,0,NULL,NULL,'011548428-2-5'),
('ee114b06-1089-4e80-90c7-0a7245701285','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-7'),
('ee1200c9-eca7-4535-b0be-0ccb35effd52','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-34'),
('ee12fe7e-4129-4acf-915f-a7c609eeb435','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-11'),
('ee13045e-1818-490e-a4ca-5ded82313a19','46d1512a-2bfb-476d-a224-9390f3e194f2',201,40,4,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-38'),
('ee14628c-fb44-4c06-b591-c8b19cef2a8c','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',213,60,8,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-167'),
('ee182d80-8add-46d0-a90e-d52a9120ae42','02a9c28f-9612-4397-8742-1194ba41344a',80,160,100,0,'2025-09-01 11:06:08.314','2025-09-09 12:51:12.366','43789661-1-1'),
('ee184cb7-834c-4184-9a66-dbb522b23596','26cbf4fc-64c1-46ba-a987-bf7c2715b5e6',0,0,0,0,'2025-05-23 14:05:26.970','2025-06-05 16:38:26.855','745786401-1-1'),
('ee186230-2f29-454e-bcbf-cab22069d086','4869c334-4618-49fb-9d03-99d95654d12a',56,205,6,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-14'),
('ee1c0a48-d8a9-4c08-97ec-1e9ba05365cf','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-166'),
('ee1de4ce-ffed-4efa-95d0-e71e7b5b686f','193cede3-1284-463e-9fc9-0a293facf8ab',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-1-13'),
('ee1e66eb-03b6-43d7-8ee7-1f69e6ca0284','67dba577-f387-4df9-95bd-9cd507ced642',0,0,0,0,'2024-11-02 08:42:46.458','2024-11-09 11:12:25.458','745127322-1-2'),
('ee20f52c-d236-477a-bcb9-eba80d6c8567','c564475a-2d18-4b15-a65d-9a29abfe2528',0,0,0,0,'2025-03-24 16:01:51.584','2025-04-04 17:24:25.020','976285905-2-4'),
('ee20ff16-d86e-43ee-854b-88f18b8892bf','c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4',80,100,100,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-2-3'),
('ee22d6be-e08f-4434-aa46-eead31284265','243bf136-94ff-4e73-8eaf-8fc7da0321d5',100,170,15,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-4'),
('ee22eda7-dabe-4bf2-a653-9ad8af77b8af','0009aeec-e682-465c-b701-363a3ef377a6',112,24,8,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-87'),
('ee25ddca-52e1-4486-9360-e1baabe7ad6e','085b8abe-140c-4e7a-a52b-57b804c24627',98,157,80,0,'2025-09-06 07:20:23.873','2025-09-16 06:34:01.481','437812245-1-4'),
('ee2ad29a-6c38-4929-be4a-18a1f7344470','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.485','910899167-2-22'),
('ee2d6b26-cc77-4bf9-b9e3-7018745626eb','ca15fc0a-c952-4d11-8373-2c36e573d1ae',730,133,20,0,'2024-11-25 08:28:54.110','2024-12-04 13:09:40.381','85814402-1-1'),
('ee2ecb22-64c0-406d-b52c-d3fc3f76d494','22232cf4-d16b-4672-a951-cd5eefba3067',84,63,57,0,'2025-10-02 11:20:41.989','2025-10-16 16:44:12.511','221461818-1-1'),
('ee2fc431-b7a9-4240-ad35-280aaa97df1b','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.341','2025-08-02 17:36:11.138','598668612-2-2'),
('ee317c73-012a-441e-b0fd-182eeec96044','f3414f51-92da-4967-b108-6baad5cdd798',68,151,7,0,'2025-08-22 20:28:33.272','2025-09-03 12:47:01.224','478110382-2-19'),
('ee350e0a-f089-4fbc-aaf7-8e6545c01323','527ed217-6d76-4ec9-b760-807ad00b847a',0,0,0,0,'2025-10-02 11:20:41.358','2025-10-16 16:43:50.653','910482480-1-5'),
('ee360d5e-c127-4b73-b537-d8babf3f5e8c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-114'),
('ee39b9ad-b83a-4248-a12f-fdbfc190b86f','7f11042b-3945-4eb3-b37e-a822894de6f5',159,199,4,0,NULL,NULL,'478777575-1-10'),
('ee3a4cd8-2710-464b-93f0-9ea53a2f1e7c','d3fd2829-d860-4db3-b7f1-3abcb5e87b3b',82,27,202,0,'2025-05-28 19:08:57.643','2025-06-06 17:36:52.446','745871666-2-5'),
('ee3a79f5-7f47-4c87-b899-4f903010106f','3a8806d9-8f36-4702-b4a9-c0d54762186c',90,65,70,0,'2025-02-09 09:51:32.951','2025-02-18 17:24:12.014','455757391-1-3'),
('ee3b0239-3898-46bd-b606-079e5a931ad3','9affc7b1-09c4-4e84-b48b-d0c117c421b0',85,98,80,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-6'),
('ee3d1633-66de-41bd-a8fb-9942af17e16c','77ee5c9a-b4a2-4ff2-bf2f-c8dde20a4100',51,51,70,0,'2025-04-11 13:41:34.037','2025-04-25 09:52:53.207','221234413-2-3'),
('ee3d6f32-359c-4b73-a14d-51ca701f2b48','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-20'),
('ee402dce-fef6-45a0-935d-04bd715d3ec2','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',72,155,56,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.593','45592606-1-20'),
('ee413171-ea1a-4021-97cc-cd9e366d8ad4','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-75'),
('ee419099-39f0-47ce-a32d-8a9f656ac36f','ba600219-bd53-41ab-9277-b80560376633',90,90,80,0,NULL,NULL,'598944852-5-4'),
('ee44037f-4c3c-4cd5-8569-caf3793f94ff','3735c345-c4d0-40fc-afc7-359f15617a16',100,120,70,0,'2025-01-26 10:54:30.884','2025-02-08 15:04:47.831','319206159-1-5'),
('ee4437e1-3c87-4a8f-9f12-a87b61518c1f','e2d5a5ed-1130-4ac5-91c5-60afa0aa0b15',89,212,80,0,NULL,NULL,'371105450-4-4'),
('ee444469-fa1c-42ca-b54e-42ef0caac81d','f68d0980-0e5a-43f8-a0a9-37a8fd050188',0,0,0,0,'2025-03-24 16:01:48.403','2025-04-05 10:58:03.788','248475044-1-3'),
('ee4bd415-c359-4b28-aec9-74895af7dae9','85db759a-5e10-49be-92ff-a951a588c1a1',83,83,8,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-1'),
('ee4e5b06-1094-450b-b2a5-232724fe7920','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-6'),
('ee512fdb-c946-40ba-bd8a-5fab9afd7c73','0cc31d9c-27a2-40b8-9231-c0a0d77af806',93,11,113,0,'2025-10-08 17:43:22.019','2025-10-15 08:13:05.462','745816946-1-2'),
('ee532491-91d7-4e64-982f-728c644a1d86','755cace1-2435-4a91-965d-03000a37c693',0,0,0,0,'2024-12-01 06:48:11.093','2024-12-10 12:35:50.469','735500422-1-10'),
('ee539f8b-0c13-42b2-a287-7fbbdc361472','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-34'),
('ee541b82-2210-490c-bbfb-89ebebcb5081','6dfbedc6-a895-4b7b-8eee-42c7facf37d8',57,82,108,0,'2025-06-27 17:12:10.109','2025-07-14 06:05:11.366','910756975-3-6'),
('ee545fb6-52e1-47f6-8535-748626180e91','ef0f1181-3c3f-4dc6-8245-bb89aec09c30',70,174,94,0,'2025-05-14 17:03:46.983','2025-05-24 17:55:04.433','371804669-1-2'),
('ee57221a-50e6-460e-9504-c4d47f8077de','418cc5f0-94c7-4e67-85d5-2726afa3452a',51,51,76,0,'2025-04-25 16:57:22.774','2025-04-30 14:30:39.804','613976667-1-2'),
('ee578169-d3fc-4e1d-9d2a-74561491c252','f3e25748-9512-4873-82f0-47edea247be7',0,0,0,0,'2025-09-18 15:48:55.722','2025-09-30 18:47:32.745','896769535-1-2'),
('ee5826e7-b8f0-4b9d-8ae9-d4a650ddb0fc','659262c4-86c7-45fd-b73c-5e369a55f2c0',212,115,56,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-4-1'),
('ee5cd858-5583-48e1-86c6-6f1bae39e58e','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-75'),
('ee5d1f4a-757a-4449-abae-395d842341e0','7c09f776-ffb6-47c8-8828-61389547804e',92,92,19,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-8'),
('ee5ed1a1-8b56-42a6-8a3f-08c19427e827','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-35'),
('ee5f2b74-9eda-46c1-a2d8-adf9137e1eaf','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-29'),
('ee5f5971-663f-4f27-932c-5fb5f220fd5e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-75'),
('ee630732-4cac-4827-a5c4-6d73a29bf53e','10404fd7-5aa3-43b9-8d49-f3acc0f74fa7',110,57,82,0,'2024-07-03 14:35:43.104','2024-07-16 05:11:22.185','614987879-1-18'),
('ee63e345-ede0-4edd-991a-1c7f0b59a602','144ba1fb-01a2-470c-8696-3c2576397b46',52,100,75,0,NULL,NULL,'745995046-1-3'),
('ee643382-030c-49d2-b101-baee4123e719','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.378','2025-01-07 19:30:46.445','478681299-1-1'),
('ee66931d-6cad-417e-9a39-a81b62158964','e89e7d75-4967-4c63-9f73-981469e531af',235,51,9,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-44'),
('ee6b48fa-1213-418a-b6d9-fca673f84bf0','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',43,6,209,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.783','449582137-1-39'),
('ee6d01e1-7e5c-43ff-ab12-b2b247692f00','185d3efe-5e2b-4bde-a9de-128e8f0a33e6',45,218,5,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-2-6'),
('ee6d6245-06de-47f5-bbaf-f1f4f8d1cd24','367f3a5e-bb59-4b08-ac77-fb45fbe38388',105,105,68,0,'2025-09-06 07:20:36.540','2025-09-12 22:09:57.931','808450440-1-1'),
('ee6eacd2-aa74-461d-8453-3f1e4be9eebb','a5138376-298b-4e3b-9090-12b6bb8358ed',0,0,0,0,'2025-07-08 11:31:19.833','2025-07-24 06:26:58.578','735785649-1-3'),
('ee6ef4e3-88c0-4e4f-b9b6-c4bcd3b59a55','85db759a-5e10-49be-92ff-a951a588c1a1',98,100,80,0,'2024-12-23 12:00:07.906','2025-01-09 16:52:13.614','126908301-1-10'),
('ee6f2c8c-3c31-47d6-b041-95a80cc8c7ea','b6d04ed2-f29f-400a-ba86-37b36b0830b2',40,40,40,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-20'),
('ee73b33a-072f-44e0-9893-94bd65e06e97','8e4621f8-e2f6-4c06-a542-51aea08e56af',100,120,70,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.502','12752907-3-4'),
('ee7421f5-6de7-4326-a121-51d900491ccc','a0f0e55e-c1ef-46be-886d-46957bc8deb1',0,0,0,0,'2024-12-07 09:32:29.141','2024-12-17 19:51:56.619','735318305-1-13'),
('ee74d6d3-8962-464c-a72d-64893b5e470b','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.185','478816607-1-12'),
('ee7503de-cd40-4df3-9c16-b53de8727424','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-16'),
('ee752cd0-adc7-4407-8730-54bbd9817350','dfd7a962-bf2a-4456-aeb6-fbc5711ef1a5',52,52,80,0,'2025-07-26 07:41:49.278','2025-08-01 13:39:18.206','61310831-2-2'),
('ee796bac-36ab-48b2-be8e-9584f160ba79','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-26'),
('ee7a33a4-cf45-4982-82ae-dafb03866be0','46d1512a-2bfb-476d-a224-9390f3e194f2',201,41,4,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-39'),
('ee7c30f8-c112-426d-941b-2bbe0adc7ebb','0307b62d-0514-4a49-bd0e-5c7aa0f37bef',58,12,84,0,NULL,NULL,'531240111-1-14'),
('ee8439ee-1b1f-4681-b8f8-3959ae9c10f8','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.236','2024-08-31 18:14:18.175','478693155-1-7'),
('ee86297d-fa95-4036-adcb-a98b3b728789','4301b768-4818-4e74-a6d0-12a33474f5c6',42,7,215,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-25'),
('ee864a4a-6373-4a03-ac0f-b5b48b48fa16','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-5'),
('ee8c4d28-6692-47a6-8248-16b09f3c22cf','ee297813-f7cb-430a-9796-e455917fea81',0,0,0,0,'2025-01-20 11:21:29.593','2025-01-28 20:45:04.034','412139015-1-5'),
('ee8ef721-1246-4631-a8eb-c378e4a08eb7','9866a947-9974-4053-8415-4518842488fe',70,98,53,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-38'),
('ee920ac8-c685-4d6f-95a5-b565b13c5f8f','1ab745bc-cedc-4993-8852-79017b1ed8a3',235,100,65,0,'2024-03-31 17:55:05.877','2024-04-15 11:37:26.642','449196428-1-1'),
('ee9501f1-463a-424a-b856-025bc374ecd0','5d0acf14-0e07-4b7e-b43b-0b7d4b572df5',200,160,3,0,'2024-05-23 07:27:32.042','2024-05-29 19:00:07.929','319324843-1-10'),
('ee994867-2874-43a0-9b54-d062090fc5bd','dc98b767-d53d-49c4-8e00-27331e2999f7',85,60,56,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-2-3'),
('ee9cec42-19ab-4e6a-bfb9-d5f5359090f7','a33dbb59-89b3-44c1-bbb5-026af12ad486',51,51,76,0,'2025-03-27 08:02:56.176','2025-04-07 17:30:11.059','64448364-3-2'),
('ee9dffe6-9720-4b38-a36f-cb0ab792fbca','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-11'),
('eea07fde-86a5-4732-8e6f-747dca79a8f4','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-49'),
('eea28838-3acc-4ec1-a29c-78bf72a189d2','fb3572ea-a313-4cf8-a5cb-b7056e79114f',212,70,98,0,'2025-04-15 16:02:05.143','2025-04-24 15:01:32.170','371860514-1-2'),
('eea36c47-270e-456b-9058-530db276e510','845cd508-3836-4f7f-899b-bf28d0f90884',124,242,15,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-3-9'),
('eea6fdca-038d-4ca1-9c46-1e27944340b7','2a723830-d2b5-42fb-95ad-678895eae7cd',24,88,46,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-6'),
('eeaa41b7-1c7e-4e2d-8cef-6ea0f3ed1e57','bdc159b0-60b0-40ff-9092-421620718ec5',77,57,103,0,'2025-09-18 15:48:47.860','2025-10-02 06:11:02.973','598262809-2-4'),
('eeaae3a4-7f2b-4eb9-b6a2-4788af858f58','da8440da-e3c4-4852-854d-19123cbe7e56',0,0,0,0,'2025-05-09 18:43:57.347','2025-05-21 08:16:23.972','151258703-1-2'),
('eeaffbc8-5d47-4dd8-af0e-ab7a4ff67b1e','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-48'),
('eeb1bb96-d3ee-4487-84af-d0a7e091cb48','019096b3-5c13-43b0-9be5-d87a00c3b660',57,81,107,0,NULL,NULL,'745883224-1-3'),
('eeb30106-26c1-4172-90bd-a972431d1469','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.389','412315808-1-103'),
('eeb8cf34-e989-4a07-868e-7f47c0cd96e8','625aff0c-815c-4c92-ac3f-610621b3fe4f',0,0,0,0,'2025-02-09 09:51:19.039','2025-02-19 18:37:44.613','478118994-1-1'),
('eebaf0b5-8e4e-4510-859a-c4914b510f7b','35078979-d045-4d1c-9196-16abbc7bb50d',0,0,0,0,'2024-10-23 14:11:44.839','2024-10-30 18:10:03.011','614650407-1-1'),
('eebdc4be-7758-4d09-b76c-885720c52501','5abaed5f-da6d-4729-8667-542ec9faa994',85,70,102,0,'2025-10-25 08:59:12.926',NULL,'371985580-1-3'),
('eebf6396-d3f2-48e3-ae29-9f67d054daa2','8a7fb8e7-170d-43fb-87a3-8fffb16bb71e',108,108,76,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-4-1'),
('eec05ba9-1004-4b70-b305-10f0ed5528fd','173da7e9-9f08-4f80-bd79-f624a6af761d',205,33,30,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-4'),
('eec0d7b2-ff71-4d23-99f6-9fb531bbbd8e','c080623b-df50-459f-92a8-eb2eaff4030b',58,44,44,0,NULL,NULL,'478350685-6-12'),
('eec14237-8835-4a35-a389-4fc68ca6e4bf','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-4'),
('eec34464-0a15-4765-99e7-0fd7ccb2cb51','f8d35c51-b98a-46d7-8ff1-a2e47719eeca',0,0,0,0,'2025-07-12 09:20:44.468','2025-07-21 17:00:49.929','745433427-1-2'),
('eec76ea6-4384-463f-820e-4bb28c0e1b37','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-65'),
('eec831b0-d8c5-4303-b611-db21249bff8f','c15816c3-03b0-4d1b-91d5-8de278f35c62',0,0,0,0,'2025-05-23 14:05:25.840','2025-06-05 16:38:30.974','528433255-1-2'),
('eecd4ac8-53db-4ecb-a636-739fc29d7991','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-3'),
('eecf48af-45d4-4ad7-92d3-045846886891','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-1'),
('eecf5049-5e22-48a8-b4e1-3b36d2ce00d5','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-12'),
('eed16390-9cca-4657-8c4b-817aadcb6fbc','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:00.721','248284003-1-188'),
('eed29198-c10f-42d6-8622-1543f32e03ef','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:27.872','248135683-1-138'),
('eed4ceba-0331-4930-902a-0d96594bc8d8','c98f6188-56c5-4870-be97-be71cf95f62e',50,38,20,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-31'),
('eed9365a-eb25-419f-ac39-32d26668dfa7','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:21.237','248135683-2-84'),
('eedd3fb2-6538-44de-8374-fec596b476f6','606b177a-2516-4ee8-8a97-7fcc5be07957',50,43,43,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-1-6'),
('eee26c99-c86a-4bd8-a45b-aba031afb333','336b127b-d219-49c7-8661-4258d8834fe9',51,51,77,0,'2025-04-21 06:13:38.052','2025-04-28 11:59:44.002','64451300-2-3'),
('eee35263-70bd-4d74-b1c1-6a42689e2e74','5632f22c-493f-4a5e-afdf-13268c32b047',47,77,29,0,NULL,NULL,'528640995-1-4'),
('eee5ce45-8fd8-44a8-bfb9-63a9d11e4415','60d6b6a4-d00c-4fc6-bebc-f95431e8dbc9',181,40,85,0,'2025-02-27 16:45:36.849','2025-03-11 15:31:41.674','100799933-1-10'),
('eee7d7fd-a6fe-4410-8865-bc56e9dd8612','9a4cddc0-2504-4aef-bd37-95e95a6bb8c8',0,0,0,0,'2024-06-08 08:00:03.372','2024-06-22 11:10:53.464','319897198-1-21'),
('eee820bc-09f6-423d-af5b-a1fa64bc0c5c','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-13'),
('eee86fa6-13ac-48b9-9c02-4a9b628de660','c210fbc4-5515-44a2-a4c3-49d3ba8be34d',58,92,7,0,'2025-05-14 17:03:50.404','2025-05-23 14:08:03.642','371665826-2-6'),
('eee96b10-74d3-46d7-8b1f-c97220745dca','0c0ef815-3671-40f7-abee-a0ed0e2bc413',82,4,3,0,'2025-09-16 16:29:21.952','2025-10-03 09:15:52.721','478862837-1-2'),
('eeecdb5d-5d62-4ffe-8914-a961606af594','4a5b7db2-dc5e-4f39-972a-37093584e9dc',18,142,128,0,'2025-01-11 15:20:12.390','2025-01-19 14:52:15.736','449136824-1-3'),
('eeee75a2-41f2-4446-a0b3-68ebc9de749b','7b2d4551-a99f-4fb6-8215-e7af3afe860e',40,40,220,0,'2025-08-27 19:40:16.958','2025-09-04 06:16:23.124','486184665-1-3'),
('eef5f61d-2dc7-489d-ac72-40f6f5c7fd82','7311f1e0-e2be-43dc-9e40-f94a010e8939',82,39,35,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-52'),
('eefdd2b7-483c-44a5-8b25-69548679ee6a','c19e66e6-a1bd-4661-913a-aea87aee7878',55,77,102,0,'2025-09-06 07:20:16.630','2025-09-16 06:34:33.584','598188038-2-4'),
('eefe8df3-ef39-4726-a572-230a3c52a653','09266328-401c-433b-80c2-41dd9663742a',100,57,83,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.664','221210071-1-1'),
('ef0a96fd-555a-40bb-b285-2e3ba4257ffc','35727e24-1c8c-45f2-b4a7-bc5944f5cb5a',96,188,6,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-1-3'),
('ef0b5075-af27-47fa-bcb1-4a2de6f55e96','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.786','2213375-1-4'),
('ef0b546a-5f91-422c-b492-e050185e5723','45749935-27bb-4063-9e4a-59a9d1cdc880',62,57,84,0,'2025-05-16 16:33:15.349','2025-05-25 19:11:38.702','221686815-1-3'),
('ef0bcded-3175-45cd-8e55-40d91e4d9d59','dbe79bd8-007b-466a-bd69-a3871043b2cb',51,51,77,0,'2025-09-01 11:06:22.809','2025-09-10 17:04:42.181','221573899-2-3'),
('ef0c73c4-c506-43ff-83be-fbb545d786ff','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.004','735525138-1-4'),
('ef1042c2-50fd-4486-936d-f427fcafdf76','c51cf533-511d-4f61-a94c-3e48074db45d',69,81,127,0,'2025-04-21 06:13:28.776','2025-05-02 17:09:31.939','449728917-1-7'),
('ef16b75d-0090-4b3e-9ba5-2a379964d90c','516b7da8-60b0-423e-ad0b-ba7b65a9acd7',60,101,124,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.692','478867058-2-4'),
('ef170c8d-b921-418f-9e91-469d27c5768f','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-6'),
('ef19f9cb-1ba2-475c-a2f9-18c710f98165','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-84'),
('ef1a9f0e-6d22-4a33-892a-85dbecdccadb','bbc6d966-9d42-48e9-83e4-13afb85a7c33',4,69,86,0,'2025-09-26 12:39:37.829','2025-10-10 21:29:57.137','745233031-4-12'),
('ef1f7d64-7e89-4b18-8a63-f4f300f38548','9419dc7f-432b-401b-a4af-9a875d851a21',0,0,0,0,'2025-05-28 19:08:49.093','2025-06-06 17:37:40.880','644771270-1-2'),
('ef2258aa-4cbf-4841-92eb-49d13eba7568','5f740c2f-b4a8-4058-8f15-0c74025f8ecd',45,45,45,0,'2025-09-02 14:48:39.766','2025-09-10 17:05:54.589','437626008-1-5'),
('ef25785d-1e08-44b2-97bf-a70b4469739c','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-73'),
('ef26315d-987b-4cdf-8746-99cb4623da61','b7fbd54c-bcc0-4613-9901-d06327048472',127,208,8,0,'2025-10-14 09:22:10.153','2025-10-23 06:19:59.175','910594430-3-7'),
('ef274f45-01e4-48b9-95e0-2a9f935b8c0f','cd311409-561a-426b-9028-25c2a5b0458f',0,0,0,0,'2024-11-12 16:16:03.875','2024-11-21 19:12:33.821','734109910-1-8'),
('ef2a285e-03c7-443d-8a66-cae375839c51','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,70,5,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-72'),
('ef2c938f-121b-4233-882d-4b85aedc4ab4','01db3b45-741b-40a3-890d-f412f526963b',51,51,76,0,NULL,NULL,'221763224-1-3'),
('ef2f8d0f-987e-463f-88be-1cf196572fb2','173da7e9-9f08-4f80-bd79-f624a6af761d',255,32,32,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-6'),
('ef34029e-03dc-4b87-85f7-679c46876680','c3b6b832-f48e-488a-a15b-cd5ae6f52d51',205,92,32,0,'2025-07-29 12:58:22.158','2025-08-11 12:32:33.741','437584936-3-6'),
('ef36f2be-2b54-4ac5-a21b-7083621e7d86','6a86385f-0304-4a2e-a4ec-6fce1d768ce0',68,30,45,0,'2025-01-26 10:54:29.887','2025-02-08 15:04:54.364','412586892-1-47'),
('ef39ba9a-7bd9-4801-abbe-0b8c6aa324fd','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-18'),
('ef3a9b90-4d42-42d3-a07d-a042e210a747','607b4c5f-810b-47b0-aac2-0f9c1bde53fb',100,80,238,0,'2025-09-12 17:16:47.847','2025-09-25 06:48:18.536','910972908-1-2'),
('ef3bd02a-3c9e-49ed-8e3e-2f4491cc81fd','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-16'),
('ef3d53a5-1675-4834-8278-a8e658f145ca','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-136'),
('ef3d9285-01ab-4948-96ef-16c881ca26b2','a8ccb596-deb3-44d6-a3ec-e1faeccf7e9e',53,72,100,0,'2025-05-16 16:33:27.781','2025-05-23 14:07:00.550','33850305-5-4'),
('ef3eed22-09e9-40d4-a989-32868f15aaae','df91a359-89b3-4c85-bfaf-b73d9805732b',0,0,0,0,'2024-09-03 15:28:40.130','2024-09-13 16:38:48.858','248625081-1-5'),
('ef445d01-b3ab-47c3-b829-ff77bb8f4c82','fef5bf4d-01ee-4073-99a2-5cff1b560073',77,56,103,0,NULL,NULL,'371117320-3-1'),
('ef44b3da-60cc-430d-a3e0-f757d51ca178','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.928','47836811-1-1'),
('ef44da8d-1e7d-48dd-a96d-d30fcae3efcf','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-9'),
('ef44fff0-4b64-475d-a227-e94a44509e98','42207860-48dd-4778-ac1f-e702ac193305',110,58,82,0,'2024-11-21 10:29:01.504','2024-12-15 20:07:24.367','126806100-1-3'),
('ef4f059c-71aa-46d4-a145-986d73cfeb7d','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-11'),
('ef5066b8-0304-4cd0-b598-c11e5c0565f7','e163d910-3bea-4675-a310-ead7083f02b8',23,13,15,0,'2024-10-11 16:09:10.111','2024-10-23 16:38:40.893','501163993-1-11'),
('ef562d9d-7151-4d46-b1f3-3f3d5ea49dc0','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:02.418','248284003-1-40'),
('ef59b8da-08d4-4c10-a205-0073a8914405','e178636b-b1d9-4260-aa1b-879946fa7f5d',43,43,60,0,'2025-09-12 17:16:33.588','2025-09-26 07:08:03.153','745177264-4-23'),
('ef59d81b-2f12-41b6-8d83-eb015ae67a83','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-66'),
('ef59ee02-215e-4675-a683-b3fa723c670b','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-53'),
('ef5b99e9-0ccb-4033-8d62-0e9313e2221c','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-6'),
('ef5cdfd1-7fae-40f6-9f21-6ff765f201e0','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-15'),
('ef68446e-aaeb-418b-8ce7-8708dbc522aa','7cc12a18-6858-4c55-a9a0-fa838ec5c974',52,76,101,0,'2025-03-13 12:21:28.156','2025-03-22 19:19:17.454','982834531-2-4'),
('ef686df3-47ea-464e-a726-8b25bb9178b3','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-117'),
('ef6d02d5-6955-4988-ba82-58f51ae0a0b7','c5d03b78-19c4-44f2-a673-725e07271521',85,85,105,0,'2024-05-29 08:53:18.218','2024-06-10 13:49:58.058','428839296-1-7'),
('ef72e933-7c73-43ab-8700-033d36e6fbc6','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.824','2025-07-03 11:20:12.753','223422825-1-196'),
('ef741cdc-c884-4cb2-ac07-de0f48495163','08f19940-4aad-46bc-bf72-01f66d155c84',190,33,33,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-7'),
('ef74b790-a939-499b-8e8f-38151f195499','20537384-b1b6-4420-8bec-9c3970109280',60,59,89,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-1-3'),
('ef75bb0b-a283-441b-87d2-02239839ca9c','2595f24d-a640-4e24-9f79-2fb9e7f5696d',53,76,102,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-1-3'),
('ef76e5b2-b939-4b5e-a191-fef74617e141','4abcae6f-afac-43a1-83d3-65715ac410f6',0,0,0,0,'2025-02-18 16:37:10.835','2025-02-27 06:36:36.211','478101413-1-5'),
('ef7bb708-820a-4900-b36b-c1c4e1552025','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-42'),
('ef7ec5df-3b77-4229-b4a9-6d64db04ce4d','81cf8302-05ed-437e-980c-e6831dbcc1a3',93,162,7,0,'2025-07-02 12:43:39.481','2025-07-18 17:08:45.020','371282604-2-2'),
('ef7f119b-de8e-429a-87fe-49289877f013','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,72,65,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-14'),
('ef7fe36e-b85e-46bc-ae55-5da4d8013ab3','7a3874a9-db61-4cfe-8c48-f341a8247a1c',95,164,75,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-2-6'),
('ef81a5a9-e63d-4e17-a362-306808a3baa9','94835fc4-cdbf-43fd-9e53-57c279b2f8c2',0,0,0,0,'2025-10-06 07:08:34.544','2025-10-13 06:39:39.819','745101735-3-1'),
('ef827d54-1f8e-4c30-a2c1-c8e8dbcfe009','ecec0728-d902-4dfa-9f70-a982ced12ed7',81,56,101,0,NULL,NULL,'613362697-5-3'),
('ef8484c7-f632-4b4b-9118-9372fdb1eb3d','d2f8d58d-42ad-4705-b1e8-a666af927fa3',67,5,210,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-19'),
('ef84c48a-ceef-4e87-bc5a-7465d79de3cc','dd2cca48-6895-4e89-a0cf-e5c29b1a349a',0,0,0,0,'2024-03-16 14:34:26.862','2024-03-23 06:42:26.412','745524390-1-5'),
('ef86ba83-12d9-463f-805c-66bf7f454159','70873466-f77e-4c55-81ef-21947837cbff',70,15,16,0,'2024-10-11 16:09:23.929','2024-10-22 11:44:31.799','976245604-1-6'),
('ef87e4b1-27b0-4aeb-a929-466264cc2d7d','9114ad70-d53e-4d1f-89c7-30585d0a43de',295,70,9,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-41'),
('ef898440-f464-4cf5-8d0f-ef21b1eade44','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-10'),
('ef8f571d-140c-4d57-a9f5-7ebfa406fd7b','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-4'),
('ef8f72b4-04eb-4a61-9fd5-c2f08bf4cdd7','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-8'),
('ef9475ba-1329-4d3b-b556-3e84b286d757','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.552','412107970-1-97'),
('ef94d59d-3ffc-48c7-a535-d7d17886b231','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.960','478631020-1-23'),
('ef9d530e-7d8b-47ce-9445-c346da1387b6','2b12ef88-d5a2-43d8-bd90-8a845b274c87',0,0,0,0,'2025-03-27 08:02:59.929','2025-04-07 11:35:33.345','478623446-1-5'),
('efa10058-5320-48f6-ac34-cabfae26a66b','0bd42145-fdd8-4793-a5cd-a2e404d37142',205,100,8,0,'2024-12-01 06:47:50.115','2024-12-12 07:41:51.452','517901924-1-28'),
('efa20280-6422-4ef4-9904-2092ea6991c0','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-13'),
('efa30021-2c1d-41c7-9d33-84e5a81d7edc','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.831','2024-05-08 21:07:51.840','248771792-1-45'),
('efa462a2-b13a-4f8c-9232-689336ff6f92','e2de9cd4-e8e6-48b8-aa91-52920db0471a',101,20,10,0,'2024-09-27 14:06:25.318','2024-10-06 11:10:49.421','449693252-1-8'),
('efa80c89-4177-4386-8633-e99088ef9ec5','7f97c3ea-5c24-4aa9-98e1-55704b8771df',0,0,0,0,'2025-01-06 13:08:25.126','2025-01-08 18:08:30.764','735814007-1-7'),
('efa8d2ee-7cbb-4704-9408-89a6b6d09eb5','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.294','745547550-3-9'),
('efa9e37a-c77c-464a-bd73-8dc22265e069','a769cd75-8095-4eeb-999c-d1a749589a77',65,141,20,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-7'),
('efaa69be-f261-4538-94c7-563369b7bf0c','0632e179-d700-4c40-afa6-ac6096beaffa',165,28,43,0,'2024-03-31 17:55:04.568','2024-04-12 17:26:52.449','268188607-1-14'),
('efaaecff-002e-439a-b4ec-a895e0058876','d83c40d1-4df5-4c97-bc83-28837db95b2b',235,60,9,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-73'),
('efab4be8-c13e-4a65-9733-19eb63aac11b','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-127'),
('efac9ebd-5af9-4c3c-a3e9-5fe8887fb802','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.298','734245011-1-13'),
('efaf43ed-fb26-4658-8d8e-f6f5b541359c','fea9db7a-edb9-4a21-8dcd-5d30d009e820',41,27,204,0,NULL,NULL,'140284101-2-3'),
('efaf5592-fc4d-4d82-a1f7-63f0623f3d50','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-41'),
('efb11445-f0e7-42b8-817e-530cba90d092','c0e7a980-5e04-43bd-8710-687708e2adc6',0,0,0,0,'2025-07-12 09:20:12.641','2025-07-26 08:29:57.892','412218985-1-29'),
('efb32d99-6cbc-44bb-a060-b49366d33051','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-5'),
('efb9c130-1ff3-4835-a5ec-0436ec662668','09248b84-4f19-4b1b-aed0-2d5a199314cc',85,56,60,0,'2025-01-26 10:54:22.647','2025-02-10 14:16:21.329','221390997-1-7'),
('efba51d5-8c8a-4d17-84fa-8fc557cf3f0f','c98f6188-56c5-4870-be97-be71cf95f62e',200,160,32,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-48'),
('efbad9f6-abe6-49e2-a893-770fceee1e97','0cc39437-8ee1-47ea-87c2-b9fe770c2259',50,55,133,0,'2025-04-28 07:40:33.089','2025-05-08 07:31:06.957','248568702-1-7'),
('efbb1039-4619-47cb-aaf9-edf3a94f7daa','dcd864c7-ef37-45ba-880c-976ebda30365',104,53,25,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-4-4'),
('efbf81dc-0b5b-49db-99b8-68d234e2ef87','15848870-75a0-4294-9752-8c0da1d7da4a',230,100,65,0,'2024-03-16 14:34:08.038','2024-03-29 17:57:40.500','44937818-1-6'),
('efc1be9b-4824-4898-bbe8-9dc87afe4a18','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-5'),
('efc5708e-33ce-4cbf-b308-12eb44ef64e8','e622181e-7708-44a9-8b12-3952b738674c',80,80,80,0,'2024-03-14 13:50:32.152','2024-03-22 10:14:57.066','614813890-1-10'),
('efc6ee74-3391-4158-8bf4-2d441634b5f8','f736ebb0-2344-4b12-b853-5ab586355287',64,84,57,0,'2025-10-25 08:59:00.066',NULL,'51557557-1-6'),
('efc7a164-c0ce-415a-a80d-24a4aafa72dc','5ea4b207-b05c-4931-bbd1-648b6933aae5',180,63,11,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-22'),
('efc7ab5a-7155-4bb7-8971-537512cb7e43','e6377146-fb65-4f17-bc88-b4fb6a8017d6',188,70,98,0,'2025-04-15 16:02:07.350','2025-04-24 15:01:27.378','371363007-1-1'),
('efcaaa17-3c81-4f3e-8e9c-42a1214bf534','53025d92-f019-4f5d-9b69-68a3b09bb7bc',60,15,263,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-2-24'),
('efcb74d5-48e6-4d4a-aaeb-bf9c9a84c1e7','0c8e601e-d31e-4aa5-8a79-e4a4d4aae257',205,46,46,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.646','644377995-1-5'),
('efcc2498-927a-4cbc-97dc-db71ff6fd113','8bdf2fd9-df04-4cf3-9e65-a87dd36dc1ab',94,70,235,0,'2025-06-14 12:48:27.807','2025-06-22 09:25:55.840','982681083-1-4'),
('efccaf04-9139-47f7-939c-6d5364edb9f3','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-70'),
('efce7e6d-29d4-4f73-bb86-3327e901915a','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-99'),
('efcfea5d-f5d6-4ec6-a8d0-d0834e5ce544','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-13'),
('efcffbd1-900a-4561-b065-5fea2249b127','d83c40d1-4df5-4c97-bc83-28837db95b2b',67,14,45,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-74'),
('efd0a46a-9f36-4080-90c1-9790be66997d','8d699de2-21d8-46dd-9aa9-c9ce8e6508c6',81,206,8,0,'2025-09-01 11:06:02.352','2025-09-09 12:49:41.764','745873539-4-10'),
('efd33294-7ae0-4b68-b2a8-1b6761fe0bec','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-15'),
('efd48275-16db-47d4-b9e2-0cb3d8347669','805410cd-cbdf-427c-9ebd-bc4d866bd178',60,57,88,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-2-8'),
('efd5de27-75b1-4259-902f-be02c4d7d325','0511f6ab-efd5-44b5-884b-6c559b99549f',0,0,0,0,NULL,NULL,'982376655-1-2'),
('efd65003-9008-4193-bf82-9b2cf51ec5ae','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-20'),
('efd811a9-cd6f-446b-8011-fa9c23fe79df','1de452a2-704c-42bf-9fbe-6706949cbd51',0,0,0,0,'2024-12-01 06:48:21.853','2024-12-07 20:48:10.746','735121904-1-2'),
('efdad49c-d831-4b02-a1cc-5f0ad120254a','6b9e51b9-7e9c-47cd-801b-8bba008d0224',210,15,112,0,'2025-06-21 04:33:47.207','2025-06-30 08:56:30.724','695394738-2-4'),
('efdc67b6-de51-45b3-9faa-0f63a249f927','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.958','478339779-1-5'),
('efdec8df-0b39-4ce8-ac11-9229091d45ba','9114ad70-d53e-4d1f-89c7-30585d0a43de',65,42,22,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-42'),
('efded7cb-b948-4d65-afc5-c869747537fe','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-174'),
('efe25874-7417-41b1-a652-c992bbaf9622','ca5bc843-3199-428b-a37c-746a6e34447b',62,57,83,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.476','221746261-2-6'),
('efe61ac6-ee9d-4038-877c-ad20e4a69ea8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-134'),
('efe6cd15-8d5c-4104-b681-9f4b30ea434b','f2f62ff7-9190-473e-9736-be51c4ff5bd9',1,1,1,0,'2025-07-02 12:43:15.768','2025-07-23 14:29:18.341','613512690-1-1'),
('efeaada0-6cf6-4184-963e-e4ec4fc9d4ba','6c43de3c-5454-4dc3-8fc2-6cd719969299',9,55,92,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.288','745907299-4-10'),
('efeb36b0-3780-4cab-9c65-87a8aac6caa1','e67674ec-4f16-41f6-832d-4bdbc7afcc39',0,0,0,0,'2024-09-27 14:05:53.006','2024-10-07 14:03:47.331','248864808-1-4'),
('eff19cfe-6256-41d8-a1da-94415ef2256c','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-29'),
('eff4a19f-e469-4973-9825-1c14a29149b7','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-24'),
('eff57e5e-c73c-4cc9-b431-1f375bb48bc1','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-2'),
('eff7a88c-204b-48b1-b466-09b1515e99d7','0a4aa4de-bb28-46ac-bb64-98beb5311460',45,44,86,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.393','745996696-1-4'),
('f0014d2e-8b2b-434c-9efe-5d919c1eab12','29ace2be-5a79-4f6d-84ee-48b7d7981b11',0,0,0,0,'2025-03-24 16:01:52.727','2025-04-04 09:29:51.593','248133427-1-7'),
('f00229b9-0be9-4c81-bb24-0f59e2b8fbda','8465c9cb-ffbe-4de2-aaad-a9d0c676a4d5',84,57,61,0,'2025-06-27 17:12:07.351','2025-07-15 22:27:06.361','221118460-2-3'),
('f004e029-aa73-4909-aa68-b1e9a355e05d','417d5128-140e-4a55-b497-de9ff93db63e',98,98,72,0,'2025-04-30 14:28:57.885','2025-05-14 06:38:01.059','371884796-2-5'),
('f0051c6f-c8df-46ec-8f9b-a3569975b345','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-12'),
('f005bd9d-1d3c-4dce-96c8-744a088e0181','fc8faca6-fdc1-4e86-afea-1df42ea048fe',57,50,105,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.747','22162472-3-3'),
('f0082951-ecd7-479e-acfd-cbd34716fdcf','5fad51cb-2466-474d-9661-9f8cff4bd601',51,51,49,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-1-3'),
('f00a29bb-4d1e-4762-8cd6-38ab5472e792','3d740bd3-88dc-482c-bec6-f4b0fae42557',126,130,68,0,'2025-10-06 07:10:06.063','2025-10-13 06:40:11.320','505153730-1-4'),
('f00cca68-5eee-4990-a03d-1e889fa9339b','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.540','2024-04-04 12:47:51.274','412565065-1-30'),
('f00dbdf8-c737-42d1-b478-ff53cb4e9e3f','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-8'),
('f00f0e43-37db-4f2e-a114-483b892266c4','5c21191d-62ae-48be-82f1-4e75dca1edcf',0,0,0,0,'2025-06-11 13:14:31.977','2025-06-20 08:45:23.213','817239122-1-2'),
('f0129849-a8c2-4def-9d43-3d8ce8b3d2a6','f788aa10-a028-4c0c-a2e9-596045cabb3c',0,0,0,0,'2025-08-21 07:15:12.372','2025-09-03 05:43:43.021','478151970-1-1'),
('f013f959-e63c-4bd5-ba7b-c8adc76ae72c','cf3bf9ba-92d0-47df-8c74-248b0e3c5f89',72,53,96,0,'2025-10-20 07:18:04.671',NULL,'517619393-2-2'),
('f014c0cc-2758-4ced-81b1-8807fa68c2b0','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.859','2024-10-07 14:02:25.807','47867667-1-30'),
('f01569e0-6878-4331-9330-0f6d7721c751','0cc39437-8ee1-47ea-87c2-b9fe770c2259',44,10,186,0,'2025-04-28 07:40:33.089','2025-05-08 07:31:06.957','248568702-1-20'),
('f01c9ed7-5805-432a-a0b8-517e6c960c07','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-4'),
('f01caab6-6fe9-4658-b1ed-4768135b2f88','673590fe-abc4-4c10-b391-1185378421cb',64,62,86,0,'2025-03-08 13:46:09.920','2025-03-18 18:32:58.597','64455982-1-6'),
('f021c28e-0db3-429c-ae34-500f8936c2ee','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-108'),
('f022ae57-9e41-459d-ac01-d7caf6be1fcd','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-24'),
('f02576ce-d26f-4abb-858c-83258df2c01b','1401afea-d5b8-4731-99f5-12d9863e9962',96,26,206,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-2-2'),
('f0272ed8-7dc1-4958-9ff3-6000629ce886','0cb99ceb-7431-49b8-95dd-e90ab6ef0a63',67,66,85,0,NULL,NULL,'011399882-2-6'),
('f0278a17-7515-4fdd-b999-924237e1b0ff','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.518','478764154-6-19'),
('f028b115-0272-4e35-950a-6ce085f18b82','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-75'),
('f028b457-4296-40b1-ac81-72fd2ce732dc','c29e76a4-89ba-4143-8fad-01a2910620ee',85,100,90,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.401','750496630-1-9'),
('f02abedf-d522-45e4-9420-0bbc2a06de92','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-43'),
('f02b6b0e-7faa-472d-8cea-90514ed232a8','7ba47169-83ca-49a6-98fc-6ef1a1990eac',82,48,18,0,'2024-03-23 08:36:13.267','2024-04-03 18:54:43.526','982630175-1-29'),
('f02e0c9e-f359-4278-a164-0bfc5cf65b06','7311f1e0-e2be-43dc-9e40-f94a010e8939',77,72,70,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-53'),
('f0360444-049f-468e-8906-3f1e15c5f527','dd2cca48-6895-4e89-a0cf-e5c29b1a349a',0,0,0,0,'2024-03-16 14:34:26.862','2024-03-23 06:42:26.412','745524390-1-1'),
('f0364495-0c5b-456c-89fd-c640a6a7c9dd','b1412704-b0a3-458a-a5d4-ae0a217b9f18',90,200,32,0,'2024-11-12 16:15:47.314','2024-11-23 12:17:27.924','449203445-1-4'),
('f03ce7c4-f225-46a0-8587-51bcd34d8dcc','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-10'),
('f0414e20-9a6c-46f2-b069-ad0b7667982c','a061c475-401f-4f65-ae66-2bc9f4569248',100,56,31,0,'2025-01-04 10:47:36.816','2025-01-11 14:07:41.414','501345257-1-4'),
('f04160f6-5a5a-45fc-bcd1-9cd0d13d5222','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-46'),
('f0428415-5c92-431e-b419-aac57251a625','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-2'),
('f04423ff-f162-40bb-8cf6-eab60e3460c1','d5f69841-1156-436c-9f49-515d8de25a72',0,0,0,0,'2024-12-13 14:49:10.225','2024-12-24 12:30:36.004','735525138-1-3'),
('f046e265-5edb-4628-b60a-fef752af29d0','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-95'),
('f0499963-32dc-44ce-8dac-c28aa6d4e780','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',220,48,24,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.985','61428079-1-36'),
('f04aa240-37ee-4595-8264-a7f534d55b78','0bc24e77-b11a-40c8-a7ef-6a7f438e4054',95,165,80,0,'2025-09-06 07:20:21.563','2025-09-16 06:34:12.520','920821712-1-1'),
('f04c1410-a445-4d47-bdb4-06f21ee7005c','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-15'),
('f04d149f-a827-44cc-a603-43a0e5b57709','14f83618-60e8-4433-af6b-4d52cc697880',0,0,0,0,'2024-12-07 09:32:32.388','2024-12-17 19:51:30.749','478318204-1-8'),
('f056424f-6960-4bc8-aa0c-f72530f8f165','3da17157-28be-4bae-8dcc-745d0e93e591',65,105,121,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-7'),
('f058d623-1f90-46a6-9cf9-08490fb2a888','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-27'),
('f058df01-a679-472d-8901-2952d67ecd75','9a74cdae-acbf-459b-836a-29ba929835b2',54,54,57,0,'2025-04-28 07:40:28.681','2025-05-08 07:31:29.730','412610139-1-6'),
('f05b0e38-785f-48ab-94ad-1e61a1c3fea9','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-118'),
('f05c4a87-45ab-4b78-87fc-ce5196c70d73','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-3'),
('f05e97cd-aa57-4abd-af46-2d16d00c85a6','ec15369a-d405-4e36-84e6-106dfcf78af1',62,62,76,0,'2025-07-02 12:43:29.740','2025-07-21 18:56:17.647','644377995-4-2'),
('f05edb08-dcfa-43da-ae29-21b87e1d7dd3','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-176'),
('f060da7f-5afe-40ec-99ee-e2e9cf96c161','0263f7f0-6c1a-4beb-ab78-25d69142647c',58,9,49,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-29'),
('f0625212-3980-44f2-953a-1fa4b81ccc30','debb0974-fef6-4719-b38d-dc84a3d5b117',0,0,0,0,'2024-12-28 21:42:35.090','2025-01-06 07:00:59.004','478409459-1-1'),
('f06479a3-c07c-4628-bf97-1c8e8888c728','4fe7c3b6-ef6c-4a70-8bad-36a1448321c2',153,93,15,0,'2025-05-16 16:33:32.206','2025-05-23 14:06:47.825','371521572-1-3'),
('f064efc7-a69e-40e5-9ce4-c95c74ec7d56','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-5'),
('f0693ce9-85e1-4823-97f5-4810286e106b','571f0044-97d4-451a-a63d-b045acd7a606',238,95,75,0,'2024-03-31 17:55:16.198','2024-04-11 06:19:53.270','982164642-1-1'),
('f06cc974-c17d-4bd0-a2d2-003d72aa1dad','cac592fe-4f73-47b3-b374-3028982419d4',75,80,93,0,'2025-05-28 19:09:19.363','2025-06-04 07:24:33.130','644507096-1-5'),
('f070773e-5c6d-4da8-85a8-c7036baef62c','7d07052e-d89f-4ebc-be55-2d8ac162c8cd',96,80,80,0,'2025-08-07 16:52:45.588','2025-08-20 12:01:53.270','598102662-1-5'),
('f0732dc2-f36f-4332-b2c6-3566cf59df68','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',180,200,30,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-33'),
('f0767259-033c-4cc4-8488-395bf2dc69f6','138edf36-d166-4335-8560-d9873886e31c',95,187,15,0,NULL,NULL,'745189997-1-25'),
('f07ab26c-8582-4a96-9a8a-4796ab91eaa9','23916ed8-c0d3-4f6d-b7d5-f8117e883299',42,31,15,0,'2025-08-22 17:28:31.603','2025-09-03 19:35:06.308','011620933-1-4'),
('f07b96c6-e506-4f90-8e37-899f9855b90f','433bcf46-852c-43bd-8da7-e9982ca1b956',0,0,0,0,'2024-12-13 14:49:11.657','2024-12-24 12:30:30.935','478212601-1-27'),
('f07d234d-9e0a-4e98-a4d5-aeaa0d6f0188','40ffdf4e-04c6-48e0-a01c-8341e2015d88',0,0,0,0,'2025-02-03 18:19:12.758','2025-02-13 13:19:23.876','478484020-1-1'),
('f07e3786-9d8c-416c-b760-22da2d92822b','a5626ae2-9a5a-4401-9095-a368c22814f1',210,40,7,0,'2024-05-08 18:43:37.958','2024-05-17 18:53:05.584','42845475-1-29'),
('f07e6ab8-9e08-42a1-b115-c016d2291bab','cde2b645-2cf4-4ca6-9d59-ef733217c501',150,70,90,0,'2024-10-11 16:08:57.847','2024-10-25 05:45:19.326','973510341-1-16'),
('f07efde5-d767-413a-88e4-12defbac1cba','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-110'),
('f07fccec-14f5-45d3-ac73-ba82e027de46','da08e17b-9c2d-4115-923a-b9a31bac47a3',51,51,77,0,'2025-07-08 11:31:29.129','2025-07-21 10:22:31.990','675629833-3-2'),
('f082847a-8fed-4cdc-936d-5b2e65588060','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-109'),
('f0847736-0c6c-4041-9f4b-839378bc6da4','d3ef5328-8ba8-4ae9-833c-ba4184f61d1f',53,66,81,0,'2025-08-21 07:15:11.821','2025-09-03 05:43:38.827','598876994-1-6'),
('f084b8ec-8904-4325-b051-8904b055f297','9b5b0412-ec2b-4e9a-928e-171a1ba921d1',50,50,50,0,'2024-03-16 14:33:53.477','2024-04-01 07:52:44.960','478339779-1-21'),
('f085f84e-45fa-4f6a-90f2-9f3fe11ad300','8927f16d-18c9-4c04-915b-2efa7b9707b4',107,51,75,0,'2025-07-12 09:19:01.038','2025-07-21 07:59:59.277','98275727-1-1'),
('f0861214-6084-4b08-940e-439a4e57b7d3','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',128,59,10,0,NULL,NULL,'428437129-1-6'),
('f087e885-bfad-4712-bdd4-612ff6ba1ec0','c7d91cf5-c5e4-4cdb-a668-57ec4b264e30',25,25,12,0,'2024-09-03 15:28:32.988','2024-09-14 18:52:26.605','976543269-1-34'),
('f0898fc7-103d-4357-a1e7-2238c5556afe','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-82'),
('f089df2f-ec30-4fba-900b-34683be06ab8','22e32e79-22d8-4af0-a51c-9c3d863ce3ac',30,20,20,0,'2024-11-08 18:02:46.983','2024-11-16 21:34:32.901','428538007-1-5'),
('f08e563a-e792-44a4-8221-019574070787','d6a7a759-a83e-40d0-a493-4d7567db1aba',0,0,0,0,'2025-04-05 20:39:15.914','2025-04-07 11:35:51.386','478957028-3-12'),
('f08fe9ef-7d0e-4246-a490-ab934582b447','984f1373-fcdf-438b-b771-54cf2b74c91b',50,40,40,0,'2025-02-13 20:43:46.857','2025-02-25 17:04:01.430','437969799-1-6'),
('f0907e1b-7da7-47b5-9baf-86744167e144','4f763765-223a-4b0a-a837-f4f5a6fd119e',230,67,92,0,'2024-09-27 14:05:27.642','2024-10-08 17:09:39.128','449769276-1-4'),
('f091356f-efb7-41a1-ae97-4825cc3ad2ad','bff50eb6-35f0-4d46-9229-c709335da145',115,75,8,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-2-6'),
('f0949848-8c9d-46e7-9ad3-c73400d707cb','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:29.180','248135683-1-240'),
('f095084c-5b33-4cc8-9859-9e257ecc219e','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-73'),
('f09b3497-0f27-4558-92e8-2dd436036488','3bd671c9-374e-4431-93c3-1d44ad60103d',228,86,93,0,'2024-07-02 08:19:51.226','2024-07-16 05:11:54.166','614134006-1-5'),
('f0a169b1-f75e-4a6f-b488-e426c3fb469a','d8efab7a-9dd4-4bbf-add7-d829b0f7d070',51,63,80,0,'2024-08-21 14:53:14.206','2024-08-31 19:24:01.802','750822079-1-34'),
('f0a55620-a70f-434e-bbc8-331f2fe263fc','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:29.709','248135683-1-46'),
('f0a990ef-812f-492d-92ff-c1da6dfe4311','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.873','2025-05-01 09:51:59.251','223823107-1-105'),
('f0ab1452-c14e-4adf-9fd7-eb8b86561cfc','b426d6f3-b133-4794-91a9-96e662c2e201',42,43,77,0,'2025-07-26 07:41:59.586','2025-07-31 17:46:57.303','371194748-3-3'),
('f0acf089-e093-4060-8ee6-b35060421d8e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-96'),
('f0ad0fda-29aa-4bbe-9efa-4939479b8fee','36dd80b4-449c-4041-8f6c-8ecd754e0237',100,65,75,0,NULL,NULL,'910181635-1-4'),
('f0adf11c-ecb9-4df1-b695-66c19a21ed17','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-10'),
('f0b11fb8-a006-4c03-a404-739cc8874519','4b8db7d9-3ef4-4c05-b1ba-e427ad82676c',218,85,60,0,'2025-06-21 04:33:54.756','2025-06-29 15:02:48.570','437642214-1-4'),
('f0b68fac-c816-48cd-b054-aece94760a0f','62e236c0-7e89-47ff-bcce-e2adea2cd2dd',4,88,203,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-4-12'),
('f0b8ee46-dae8-4ed6-8350-b3322065e253','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-57'),
('f0bbb50d-0566-4683-b391-0a11d3f43839','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-87'),
('f0bbefd4-0f55-4d7e-95f3-19eda22c8fab','4eb9bdad-63ac-4040-895e-79400bb9085f',0,0,0,0,'2024-09-28 16:27:33.485','2024-10-08 07:57:38.531','454880224-1-2'),
('f0be5a8c-435a-42c6-9aa6-bdcda0965c10','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-18'),
('f0beb22e-de69-435e-be80-1c78a60961d6','bd3b78bb-f2aa-46a7-8e5c-68653633f60a',60,20,20,0,'2024-10-11 16:09:07.258','2024-10-24 15:20:21.115','725500857-1-10'),
('f0beb79e-6750-4136-b5d1-9d38214bdc02','ce29df58-4e14-4d97-a9a2-c908fd7145a6',93,182,75,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-4-1'),
('f0bf91f1-27d7-44f8-96a7-f832c0ff933b','c2e2b4b1-9353-45c3-b8f1-d7bc259efb70',185,98,7,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-3-3'),
('f0bf9283-8a95-48c7-b24b-4fa3de7ab00b','19dcf78c-7561-48e7-9cd9-87c2f1416672',0,0,0,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-1-6'),
('f0c89226-e7e8-462e-9dd7-40a2c8defed8','8625abf2-719d-4d7f-b206-16948b318b8b',85,85,58,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-30'),
('f0c8923e-a7cc-41e8-90ef-2b9266889506','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-96'),
('f0cd26ec-7d2a-439f-ab29-64377c9ce0c4','6a0e9903-d145-4c98-a4ea-6bbc6d4c522b',0,0,0,0,'2024-05-08 18:43:06.853','2024-05-24 07:08:05.841','478647079-1-3'),
('f0d003ca-6335-43ba-a1ef-feb62fb5ec17','cb620780-a9a0-4812-a480-2a4cbe6c4b05',85,193,60,0,'2025-10-22 13:07:04.647',NULL,'412223405-1-3'),
('f0d1e344-02dd-4770-b7b5-9af85b7ba8c8','f0938bac-d786-4f9e-9ea3-f5f0f10d7670',96,130,6,0,'2025-10-14 09:22:20.295','2025-10-25 09:00:07.665','221210071-4-2'),
('f0d245e4-45fc-46f4-a810-f49509791191','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-3'),
('f0d33668-b944-4719-aab2-a4b75dcc3670','c4e2b920-2753-46a8-80dc-96f38b4d715e',70,95,97,0,'2025-07-26 07:41:46.736','2025-08-02 17:35:57.649','437672074-1-3'),
('f0dcd5c8-84a2-448d-9ba3-7aa3228cc5a5','259a72a2-bf47-453f-a1f2-67b32a430a12',23,25,17,0,'2025-04-21 06:13:30.830','2025-04-29 07:38:49.261','221746947-2-1'),
('f0de755e-34be-495c-81ce-5f8a237b5b59','43ec4421-df3a-48f8-ab7f-88587ceebc29',0,0,0,0,'2025-01-11 15:20:18.466','2025-01-19 14:51:52.810','478900175-1-4'),
('f0df6384-f0d7-4c87-8c83-60dcc2d94f29','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:30.264','248135683-1-157'),
('f0e08049-7e5c-4048-b7ba-2e97bfa21055','6cf15506-e6d2-496a-a50c-1bddeb987a1f',5,104,104,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-5'),
('f0e0b44c-4b27-4e6b-8011-ee50b017f997','359880a3-777e-425a-a9fb-c44790c1fdd7',125,125,60,0,NULL,NULL,'570265257-1-1'),
('f0e2c8c5-af8c-4977-9c11-b716332bc61c','4225c8eb-fb3b-4afa-8f43-d27725ded130',0,0,0,0,'2024-10-23 14:11:25.618','2024-10-29 11:09:28.115','478633498-1-15'),
('f0e4112e-41b8-4668-8231-c463e48b52ab','8baea4cf-59e6-4595-a565-1754d9ca8bb7',92,94,65,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-6'),
('f0e44aa2-1b63-4e92-8ca1-7e7731a21c73','8b053eda-bba1-4f32-b6ec-244e823db5ac',39,39,45,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-2-4'),
('f0e4935e-42eb-4c0d-854b-1ec26fe458af','6aadeef6-4393-4005-8da5-51ca4e422dfd',165,65,92,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-16'),
('f0e5637e-aa10-4079-aed5-7ad7cb05fdd2','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-32'),
('f0e61d17-0744-4b4a-be7f-d7eef8e49033','eebe5042-de81-4afa-b4a6-4517e07ad579',105,70,120,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-3-6'),
('f0e6dccf-ec90-4dfa-b4ee-10057fcba9ab','037e3664-780d-44c7-aea0-e347d4c6dde9',0,0,0,0,'2024-04-27 08:45:24.832','2024-05-08 21:07:51.840','248771792-1-46'),
('f0e76aed-afb5-4d77-bc04-8e55551a1f9e','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-6'),
('f0e78938-4c9d-473e-a2d0-58406acb3b2a','b79348bd-6b0f-4bf7-9a46-0e0654fa8fd2',87,77,70,0,NULL,NULL,'745883224-4-3'),
('f0ed3660-6f43-4623-9f0d-0b32c06e4d5a','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-82'),
('f0efc5b6-4ce0-408f-9dbc-aa178cc669f3','1ecc5768-b507-40f7-a0d2-f557b0a01e35',65,95,154,0,'2025-04-25 16:57:10.447','2025-05-02 06:58:05.857','478537954-1-4'),
('f0effc3a-48ee-42de-9aaa-dfbf05c6fb39','0e6c5167-015f-4f9a-a02d-531b8fe7af4e',57,62,83,0,'2025-07-26 07:41:58.446','2025-08-01 07:58:25.524','515785688-1-1'),
('f0f15011-36fa-4dd0-97f0-3bc9a8a69278','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.502','2025-02-27 16:38:59.202','118176933-1-31'),
('f0f18694-14d7-4e75-bf4e-3fe274984ff8','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',163,10,8,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-168'),
('f0f34cd0-56dc-4845-809d-4291ffbaabba','6098bfd6-9976-47f8-a799-df79295948c1',44,5,222,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-4-12'),
('f0f34e0e-aadd-4d42-8cec-490cf5ac966d','04a41e24-7197-4701-a8ce-c4a0dd073b19',99,125,65,0,'2025-09-26 12:39:30.674','2025-10-09 09:24:42.469','319645924-1-2'),
('f0f76381-9258-4c45-abbe-90d5d31a677c','61b448e5-30b2-4ba3-9887-bc5bbad3b9a3',106,29,205,0,'2025-08-21 07:15:00.782','2025-09-02 06:51:57.139','598463425-3-9'),
('f0f8e733-c131-4441-b984-b26279619fb8','b5d05803-9ab4-468c-ba3c-4a0e289f571c',92,100,50,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-4-4'),
('f0f94a05-35f8-45cc-b000-2c1eaf9d7211','8625abf2-719d-4d7f-b206-16948b318b8b',52,17,91,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-31'),
('f0fc8afc-9665-4b41-93b0-93412be06953','2729d92c-a5e4-4cea-97c1-7937df0f4cc7',0,0,0,0,'2025-03-27 08:02:47.802','2025-04-08 15:37:28.149','478794904-1-3'),
('f1008225-ce9f-4e3d-9c15-bb893e40e445','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:04.126','248284003-1-76'),
('f1028eb8-b51d-4f4b-afeb-be6257663029','dd119eb4-d1fe-4633-a5cf-5dc72cfaad2c',0,0,0,0,NULL,NULL,'614661701-1-4'),
('f108c382-ef17-488a-85be-b7fc064b87a7','5726ec24-a703-4e2f-a075-7e7300c7df74',51,52,60,0,'2025-07-26 07:40:27.452','2025-08-02 17:36:16.207','221967241-2-1'),
('f10a022b-390a-4a66-a486-ac5018daacc4','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-26'),
('f10c758f-8fc7-40d8-b79a-6cc3b9f75406','1146c60f-37ae-4960-9ff1-39c79125711e',127,102,65,0,'2025-09-16 16:29:19.774','2025-10-03 09:15:59.030','478335843-2-12'),
('f11288a3-55fc-44ba-9a88-b98410efc878','65813454-68c1-4594-8e4b-88515bb0ca51',62,57,85,0,'2025-07-02 12:43:36.429','2025-07-21 08:00:56.497','221102071-1-5'),
('f116c497-3986-4540-8837-a15d01ecf151','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-103'),
('f1188c97-7887-422c-8a81-5109efaa6ffe','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-229'),
('f11bffcd-78f9-413e-b9b6-b66e5ab11abb','6503d97b-1348-469f-841f-5227a221f60c',70,80,100,0,'2025-07-08 11:31:30.467','2025-07-21 10:22:28.740','517205085-1-4'),
('f11c713f-3b1a-4daf-be86-9c7938c48a48','d809dcad-16de-4109-80cf-c313d807e1b1',0,0,0,0,'2025-06-21 04:33:51.632','2025-06-29 18:30:43.910','338840422-1-1'),
('f11f9e86-8661-45c7-b7a4-a2713e837f4b','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-23'),
('f120a560-8e87-4df2-b0ae-ed2cdd2c4ab6','0f23c0c9-bd53-4204-a005-d8f2b3211f59',0,0,0,0,'2025-05-28 19:09:06.903','2025-06-05 12:35:47.781','37159654-1-1'),
('f120b216-3631-437d-bb6d-e8e41b4f4d03','b1cff223-7843-497c-84cc-9fe5a35bb323',63,84,57,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-2-6'),
('f1216258-6eba-4800-81f6-56200b0a98d9','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-13'),
('f12176b9-388b-4ff7-bc6f-e921f05cc094','57604baf-e8cf-4035-aab3-ed4bab52522f',46,54,16,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.155','745191568-3-10'),
('f12391d1-103f-4cce-b27b-e32a92a4ceb6','cecb11ce-95d6-47e3-81f8-31029465757b',0,0,0,0,'2025-07-08 11:31:00.136','2025-07-25 18:05:24.878','412378459-1-35'),
('f12879d7-4025-4595-a1e5-5bda6e859639','0837f315-9787-4faa-af33-29b55e4b0f2a',51,51,78,0,'2025-05-14 17:03:54.023','2025-05-23 14:07:47.533','644826911-1-1'),
('f129c00a-881b-4aee-a586-654a75777271','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',43,209,4,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.784','449582137-1-40'),
('f12b7429-6db1-4c63-840a-0d54abd3d6b5','b8685301-df5c-4563-ba32-b1155cff246b',96,178,5,0,'2025-04-30 14:29:02.569','2025-05-14 06:37:16.241','221947357-2-1'),
('f12f798d-1595-47ac-9923-08e4a3729fd0','a95f79e2-41cc-4cd4-a9c2-b517bc5ed98b',65,53,31,0,'2025-07-08 11:31:22.292','2025-07-23 06:46:25.846','437551575-2-3'),
('f12ff200-5019-47ef-9ea6-29a385229b7f','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.721','248103321-1-15'),
('f130f84e-228f-47f9-a867-4df274c6bc8f','8a2d498b-3504-4e53-a419-f2fb1cf04e4c',13,13,158,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.169','598954734-4-1'),
('f1327bc0-b80e-42d1-9449-57d768911fa8','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-142'),
('f132d197-c999-4b43-8ef1-da0fcec5f12e','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-6'),
('f1330dce-533f-4bd6-bd8b-67c6b4120b9b','e96fa072-6bcf-447c-8148-0204de6b7594',0,0,0,0,'2025-04-07 17:19:33.348','2025-04-08 15:34:50.056','74529534-8-16'),
('f139af1d-2fd3-4de1-bb58-73c72c596182','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-32'),
('f13c98f7-fb02-43e2-be43-1038480ec0cf','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-11'),
('f142a64c-23ad-4c9b-a6b4-f7b1a128bf65','80d556fc-ff56-4376-b860-2fe31b4dd1b9',0,0,0,0,NULL,NULL,'478196073-1-2'),
('f14452e0-ab06-43d7-85b6-fa4383ed0453','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-16'),
('f144b5df-a224-4c5e-a77f-268a7eb2e863','cecc8463-45d0-47ec-979e-e51c1cede7c1',0,0,0,0,'2024-05-16 12:25:38.043','2024-05-24 07:09:15.936','412454305-1-1'),
('f145d4f4-8f1e-45cb-950a-6581c1310424','5cc511ac-d64a-4fef-86ed-1703c5e7eb90',0,0,0,0,'2025-03-08 13:46:06.876','2025-03-19 12:35:53.698','655583517-1-3'),
('f1481667-368e-4446-a020-b210fdd9f553','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-41'),
('f14b1818-02e8-4539-8afc-bf5c3246d04a','3665a83d-24be-4c54-a88a-abc63e2fa2ec',96,196,6,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-4-1'),
('f14ce8d1-3c27-4136-9792-50b08f517935','1868aea0-f631-4deb-85f5-8aa25773bef0',48,17,147,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-10'),
('f150f184-4a0c-472b-9cb1-325b4022281a','f57ee80c-97f6-4020-9622-6597a0ebe80a',66,56,60,0,'2024-11-15 17:06:37.887','2024-11-27 08:20:28.904','734788911-3-1'),
('f150f52b-c1d3-4e36-9815-27b7a6fc2f49','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.637','412678735-1-19'),
('f154eda9-421e-41e9-89d5-3e27534ee91c','81842e70-37f5-4b79-9c69-42e4b7405864',0,0,0,0,'2024-12-01 06:48:30.916','2024-12-07 13:11:44.836','478863315-1-7'),
('f1561228-9f71-4f4e-a8af-f423d45d4e07','86e5956d-750b-4aa3-8f00-53e2db7b9f65',180,55,8,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-33'),
('f15687b5-1a18-4722-9ca1-ce03bdc0a153','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-50'),
('f158479a-759c-4573-ba3c-d5c98edfc20a','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-47'),
('f15a9ecf-f595-4b51-9f09-ca100047ac21','42d4331a-0080-4fca-8777-5a26c0e34df6',80,70,65,0,'2025-09-02 14:48:38.621','2025-09-10 17:05:35.159','644711459-2-3'),
('f15c92e1-618b-4d51-8638-f246c914fbb1','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-91'),
('f15f22fb-0a30-457a-942c-fa64c1f47291','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-77'),
('f1692c76-0193-4e38-bc1b-18c4c4f35634','733f4ba6-58a1-4c6d-bfe2-a881599fe5fa',70,100,96,0,'2025-10-22 13:06:46.078',NULL,'515377519-1-1'),
('f16e5157-76c7-4eef-83fb-72c0a55ca655','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-12'),
('f170dc6a-0210-4526-bcc2-305da3943ba4','3ecd4ca0-9443-4471-bfe6-11a270cc8e1d',0,0,0,0,'2025-02-15 13:31:48.627','2025-02-26 08:36:33.810','478150977-1-20'),
('f17234b4-9f6d-4735-9bcc-4e59d29c2189','ce0bc20e-e38f-429d-9313-f5c2e8c01178',51,52,7,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-4-2'),
('f1737a28-605d-46c7-b9d7-3d1614ac2489','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-34'),
('f176247d-fd5e-4823-9130-6cb6e1f856d1','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.472','2024-10-25 13:20:24.186','478816607-1-1'),
('f1787899-e57c-430e-ad31-6de4a415e091','f8042fc5-0122-45dd-abb3-ff92fa197c28',82,95,93,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-4'),
('f178fd11-e59d-4bb3-a20a-4f8ec46c54d0','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-91'),
('f17b356f-c359-43ca-b41b-697b79b6827e','173da7e9-9f08-4f80-bd79-f624a6af761d',90,25,197,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-8'),
('f17e5429-b931-4489-8b78-9ca264f28aec','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-46'),
('f1803fe1-a3a1-4bad-9e4e-1e1f974c842e','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:03.736','248284003-1-127'),
('f180ce51-2e4a-4a9f-9ca3-286bb72b3548','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-27'),
('f180ed0e-0825-4a86-8585-8c54eb7464d8','d8839108-c49a-4a9a-a2fc-69a3793fbcf7',51,44,38,0,'2025-09-26 12:39:30.676','2025-10-09 09:24:42.471','319645924-7-15'),
('f180f425-9028-46fa-8d8c-ad84faeacc30','f2dac157-3ba7-4b89-bc4a-f2611f23ad49',0,0,0,0,'2024-03-16 14:34:00.045','2024-03-29 17:57:47.299','734245011-1-14'),
('f1818f7e-a3f4-4324-9141-882103a7b7a4','31f154ec-bb7b-4da2-9fb5-0e78ce7d323b',0,0,0,0,'2024-04-23 10:31:47.711','2024-04-29 19:18:25.008','982372153-1-1'),
('f182514b-e431-4bba-97e1-f628cf60141f','8bdf2fd9-df04-4cf3-9e65-a87dd36dc1ab',19,17,95,0,'2025-06-14 12:48:27.807','2025-06-22 09:25:55.840','982681083-1-1'),
('f1837f92-1ce8-4d26-8f9d-e771b11360dc','ef877586-eecb-4c6f-a5bb-bea716e4c29d',75,110,200,0,'2025-10-02 11:20:33.093','2025-10-14 09:36:00.702','412989879-1-1'),
('f183aafe-c84e-4ad6-967f-92a331487db3','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-198'),
('f1858507-f4da-4a3c-b981-8b89be165606','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-12'),
('f18a4aa4-b731-4ec7-86ae-557ec0fb4760','02ca57ac-1cf6-4307-b976-a8e1f174ee9a',45,45,80,0,'2025-05-09 18:44:01.560','2025-05-20 16:56:12.129','910280020-1-12'),
('f18e71de-07c0-40d6-bea9-391416d08155','4515e824-2938-486c-92f5-4d2a3da646fc',0,0,0,0,'2025-05-23 14:05:17.010','2025-06-06 17:35:48.391','745409977-1-8'),
('f1912d80-f218-4027-9ba8-e2d5c4a2aa1f','7c09f776-ffb6-47c8-8828-61389547804e',50,55,15,0,'2024-11-12 16:15:53.774','2024-11-22 21:23:16.943','193362317-1-15'),
('f1925bf3-c2bd-48ad-90a1-869cbe811c87','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-116'),
('f193e8a6-4e1e-47de-a752-d8f56d0421fb','d83c40d1-4df5-4c97-bc83-28837db95b2b',68,50,5,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-75'),
('f194ba2b-b34c-4c0c-904a-cd91285f73b8','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-30'),
('f1958076-4860-446a-9676-a1b31e7ec06a','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-97'),
('f19844ce-0de3-47ce-9b41-abbdd639fba2','d83c40d1-4df5-4c97-bc83-28837db95b2b',196,31,7,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-76'),
('f19b0350-9ce9-4fd2-ac49-9ff191b090ae','0009aeec-e682-465c-b701-363a3ef377a6',38,33,6,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-88'),
('f19ed31a-6697-45f3-825a-08d395b3fae1','afdf27e1-0689-4491-868f-ab5e614758ec',29,55,55,0,'2024-07-30 14:58:27.890','2024-08-07 08:45:53.944','027339599-1-7'),
('f19f3908-1f15-4c26-8754-6bad11c9af26','7f827719-d0a9-4910-9aef-532cd3731df7',90,211,2,0,NULL,NULL,'745995046-2-15'),
('f1a0f001-2dda-4d21-9d7e-1f7ac137bf08','78b4e116-f5c7-4057-880a-bac3a92d60d6',85,100,106,0,'2025-08-14 08:21:51.796','2025-08-19 19:34:38.051','437713339-1-2'),
('f1a11d6e-6292-4424-b1be-f8fb5e4e97fd','520b7195-189b-492f-9da1-ba698952b5ad',73,53,101,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-1-1'),
('f1a1a116-10f0-4cf2-8f7d-25b515530bfe','52ac507d-12c7-4898-9a40-6926b3472aea',0,0,0,0,'2024-04-08 08:57:46.147','2024-04-29 09:06:43.230','478361652-1-2'),
('f1a4103c-0986-45a8-96a0-ac01f8383d90','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-35'),
('f1a67d88-fb0b-4407-aba3-11944405894f','83902671-5e3f-46e6-98da-fea889e40b25',80,3,202,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-8-6'),
('f1a6c121-9d9b-4e6e-81a2-a831ccc16448','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-27'),
('f1a778c2-44b3-47db-a586-ed4b9a7bf9e1','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-1'),
('f1a8aa11-2fff-4529-9f74-1010e2eacf27','a307363c-9911-4bec-ab96-f2419bd7e6fe',73,75,9,0,NULL,NULL,'9823833-1-9'),
('f1a8d64b-b14e-401a-9feb-e6949cebdf3f','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-123'),
('f1abc5d9-a771-411a-8cac-90d68ec12847','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.722','248103321-1-3'),
('f1ad4184-aca0-482d-ba5b-a0f4656a02b7','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.083','478449021-2-4'),
('f1aee61c-dc20-4cbc-877b-8a0a691c2818','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-92'),
('f1af74e9-d490-4d7d-90d6-f1abe218f2a9','ede92e6e-229b-4f97-ae44-56e07777e1e2',0,0,0,0,'2025-01-22 09:07:05.508','2025-02-03 10:51:44.846','745660870-2-3'),
('f1b0fa83-9b87-42a9-b805-331982bcf1f9','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-50'),
('f1b444f1-a16f-4f45-9080-e8bc86bdb19e','ae89ec40-3826-4229-b966-6415fc238b56',65,95,70,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-2-5'),
('f1b4b03f-6ec8-4309-90a1-cf8357fbe02a','c36c4fac-54ff-4834-a9e5-af345d3a3269',60,60,92,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-4'),
('f1b82a65-99d6-4b31-8a5d-3aef1c4b8b08','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-170'),
('f1bb2a4a-bd82-43d7-9436-da66cdb851d8','6cee1429-9935-4eae-be32-dc630b6d70e8',92,61,61,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-39'),
('f1bb478f-eeea-43e6-8541-fced3de3c928','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.540','2024-04-04 12:47:51.274','412565065-1-31'),
('f1bc870b-7893-49a3-ac78-bbff4ca79db4','d9d3dbe1-b477-4354-aabd-ea735c2e96f5',82,80,103,0,'2025-03-27 15:06:17.556','2025-04-05 13:45:20.920','319141495-2-7'),
('f1bcacb1-f7be-4669-b543-8e2c4aa36ed7','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-22'),
('f1beda70-4401-4755-8713-db3f05f20be5','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.344',NULL,'22330381-1-134'),
('f1bf2bb1-6fda-4ecd-a14b-def9a3794b14','3da17157-28be-4bae-8dcc-745d0e93e591',98,162,15,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-19'),
('f1bfa833-5c1b-417d-b6ee-6fa8da20c262','5e372d49-2995-43b9-8175-cfd3bd1f09b8',105,90,65,0,NULL,NULL,'37198203-1-2'),
('f1c12836-4605-4be6-a371-0f3cd70aeb0d','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-85'),
('f1c4bbab-eea6-4a7a-b683-f67b79c55d1a','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-6'),
('f1c55bda-13a5-4fea-9968-a6cc569e7f4e','5c21191d-62ae-48be-82f1-4e75dca1edcf',0,0,0,0,'2025-06-11 13:14:31.977','2025-06-20 08:45:23.213','817239122-1-3'),
('f1c705d6-b660-4aef-b0ce-2092b47fb6db','27521c3b-da87-4890-b3ba-9b928cf6d336',76,56,102,0,NULL,NULL,'598967733-3-3'),
('f1c78386-a9fd-460a-91fd-59006e6cddab','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-20'),
('f1c9370c-9c32-4d6f-93cc-05127ea0ab13','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-5'),
('f1cd6205-fb2b-49d0-a60d-36ac739e4fb7','3eed9084-6b01-41fc-95ec-7c048c3eb076',96,166,8,0,'2025-08-14 08:21:41.761','2025-08-21 08:13:58.053','982674617-1-2'),
('f1d06931-e3c8-474d-ab57-cd22fa23f2f4','d0dbf5e9-0371-49bc-89b4-a85b5e2b1cdc',0,0,0,0,'2025-05-23 14:05:38.121','2025-06-04 19:42:46.840','223186784-1-3'),
('f1d33eca-f773-475f-b2e4-03b707882f91','760f21e5-1c75-42b2-8444-f3a44aa66d10',190,100,72,0,'2024-08-21 14:53:13.136','2024-09-02 08:33:30.133','501869420-1-2'),
('f1d3414c-ae3e-4e70-84a0-3dfb3410824f','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-26'),
('f1dcc124-c7fe-4b2c-b36d-9a4323873cc0','0aecb923-20df-46e1-b50d-65f912c8cc73',59,85,57,0,NULL,NULL,'221763224-2-5'),
('f1de520e-2594-473b-8a07-71d210bde532','59e8ae39-aa12-4bea-b708-fd4e609303bb',0,0,0,0,'2024-12-18 09:31:03.909','2025-01-11 14:08:23.007','248538815-1-1'),
('f1e0f60c-3d2b-467a-86c1-da0fdf5fee0d','e7f31a78-648d-4a5e-9111-1bf7db38dd79',160,60,3,0,'2024-04-27 08:45:42.753','2024-05-07 15:42:22.460','501216728-1-33'),
('f1e17362-f584-423f-a8a1-d2c411c7b338','d9c96ce5-7311-4159-8c51-6a1a744d0c49',230,53,43,0,'2024-11-25 08:28:48.881','2024-12-05 16:17:13.323','501760253-1-1'),
('f1e20e73-4bbf-49fd-a8b0-23a83292e701','1295e4e3-5188-43f0-8021-ac4bfa726bd8',245,105,75,0,'2025-07-12 09:18:59.900','2025-07-21 08:00:02.727','982163675-1-2'),
('f1e27e07-524e-4b9f-82bc-fbbde206166b','946088d6-5f79-474b-a7dc-acd8e48b3b24',51,51,77,0,'2025-08-14 08:21:42.891','2025-08-21 08:13:45.093','43752518-3-2'),
('f1e49c89-52ce-4c8a-8c56-83c95a04fcf2','dbc7afbd-247d-4124-8935-6a9a1df416de',75,115,96,0,'2025-09-24 11:02:15.416','2025-10-05 12:16:21.134','598410676-3-4'),
('f1e70944-8406-40a5-af39-6861e476e9cb','80a5ed18-dcb4-44be-9d9b-3585c93033c0',0,0,0,0,'2025-02-09 09:51:15.471','2025-02-19 18:37:51.991','478644410-1-7'),
('f1ea9250-0acb-4b7a-8835-d891164e5b70','73f0ed30-ea86-4dfb-b0e9-bfb3d380810c',57,77,101,0,'2025-08-21 07:15:11.171','2025-09-03 05:43:34.959','598530881-2-3'),
('f1eecda7-f31c-4fc4-95fc-395476c07c83','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.540','2024-04-04 12:47:51.274','412565065-1-32'),
('f1eeff57-8f1b-4192-859c-2d71d95cd42d','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-16'),
('f1ef8e73-6f8a-4d6f-8c02-2d0f4d0129a1','44622e7b-0fdd-427c-9a36-f04079e592e0',80,81,57,0,'2025-02-03 18:19:06.939','2025-02-13 13:19:28.644','976192214-4-2'),
('f1f1acba-3062-4824-a696-b6e97116a648','b6d04ed2-f29f-400a-ba86-37b36b0830b2',80,115,7,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-18'),
('f1f64d2c-0e77-48f8-8737-5d6cf95b078b','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-31'),
('f1f7412d-db98-417e-b965-780d66a49a81','5114defd-dd85-45fa-a3af-522574ed305c',65,36,78,0,'2025-02-03 18:20:45.267','2025-02-11 09:34:14.181','4551399-1-4'),
('f1f7f30b-464d-4f09-abe2-7ab602ae22df','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:21.840','248135683-2-75'),
('f1fa9aac-a299-4c36-a968-a8a775ee1f0e','da71f37c-3d3d-4e2d-af5d-70af9d403edc',9,120,250,0,'2025-10-25 08:58:53.630',NULL,'598479723-1-5'),
('f1fe0da7-7d1b-4aa3-b7d1-cc3115dfd55c','f0485a78-951c-4f89-bddf-b2003f0bf783',46,20,35,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-66'),
('f204d04f-b6fa-41c1-8183-34561cd5d398','135906fa-fceb-45b1-a401-83de82461319',180,200,4,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.313','319585140-1-8'),
('f20c3322-38b3-4882-af07-18d3827fcae9','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-8'),
('f20e70d1-7ae1-43dc-a8c6-93faf10805af','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-15'),
('f2154267-5db9-4709-9894-9e04ecc5b94c','89c403f0-0df0-4846-a60d-70005e465597',0,0,0,0,'2024-05-08 18:43:24.846','2024-05-21 18:45:33.372','734936220-1-13'),
('f2178cae-3697-4e3a-ac5e-4e44cd81e159','b3167874-7104-4c4a-ae3f-5c62fa6ab683',0,0,0,0,'2024-10-02 09:26:58.638','2024-10-08 17:09:18.900','248383650-1-18'),
('f21f93ee-a69f-4432-a2f0-ba62663e4fb0','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-10'),
('f2244a3c-0c9b-458f-b443-a7008dbe7f31','c3cd9ef8-0b9e-430a-9e2e-4218d2e9b5ce',62,57,82,0,'2025-07-02 12:43:23.376','2025-07-23 06:18:30.728','221940723-3-6'),
('f2250650-4c0d-4f58-9a32-41f19224490d','ef5e4ede-5933-4544-8a89-60396c7bb969',0,0,0,0,NULL,NULL,'644104537-6-2'),
('f227a036-c9ec-4cb5-a248-5f18b7bd3a08','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-37'),
('f2295d4f-bc4c-4f6c-9beb-013763f589c4','8be2c2d6-a463-45ae-938a-90a949953910',97,72,96,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-3-1'),
('f23099d9-6737-4a54-be81-16dd6d433013','50577563-264a-47c3-ad7f-93a3a9e59474',0,0,0,0,'2024-09-27 14:05:56.660','2024-10-07 14:03:13.193','614460765-1-4'),
('f233b762-0e65-4086-a20b-a85afea43926','31990719-44d6-4ddb-ab93-087248d2f93c',73,158,9,0,'2025-06-21 04:34:04.432','2025-06-28 16:00:55.750','644716997-1-3'),
('f23483ed-8f69-4016-9d5d-f85409919fef','e266a085-e2d7-4f94-9512-fea47de5ac85',57,77,103,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-2-2'),
('f234ae35-a775-46dc-8f60-43fa1d4862b4','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',53,39,32,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-22'),
('f2369df8-db69-4510-bd49-dae6741e833f','211ec422-ff31-4a6d-8829-2e78be0611f7',25,37,190,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-1-3'),
('f23a0928-a1b7-4f15-8a21-d8952891e20f','ef2c0471-c7d7-40d8-ac98-3d2bf3a67976',53,76,100,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-3-3'),
('f23bcf28-e27d-4c22-b6c1-27f076cb976b','259a2afd-5891-4f23-8c79-b97916a49048',85,85,6,0,'2025-09-06 04:20:42.402','2025-09-12 22:09:32.773','644877864-1-2'),
('f23cbd23-e1d5-4cb5-badd-844859472d4f','06ebe21d-4d22-4086-bd17-376358e62902',114,14,213,0,'2025-03-27 08:02:56.175','2025-04-07 17:30:11.058','64448364-1-1'),
('f23d9fec-864a-4a92-a66c-20a52e483d30','dea8283a-585b-4d51-ae9e-b8f48f67d9a4',0,0,0,0,'2024-06-08 08:00:00.652','2024-06-22 11:10:59.991','703581635-1-9'),
('f241bdf5-b20e-4b34-aa62-bba099521a8e','2062f856-d39a-46e8-8b06-8b267e9c1d32',130,110,174,0,'2024-08-21 14:53:21.375','2024-08-31 16:53:22.846','448774640-1-3'),
('f24343b6-dcca-4054-8ff5-b6f6331d4269','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-47'),
('f243df27-7e5d-45af-ab03-818ac75afd74','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-138'),
('f243eda9-b122-4029-86d1-46f8633dc44a','546ad3d0-25c2-43dd-9443-e48b8e5b6530',160,23,16,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-39'),
('f244b83c-6ab9-457a-9d68-7c83169f6291','e4ff4eb7-5a34-4463-8d23-5359e7834ea4',220,48,7,0,NULL,NULL,'644104537-5-15'),
('f24baa9b-2e54-44bd-8e0f-b57d48da71f9','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-93'),
('f24c38cf-4251-45d9-bdf6-0b027ded0283','7fbc0cac-4c11-4144-b578-3223cd9dd90a',64,99,11,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-2'),
('f24e55bb-b2a1-48b1-88c8-791754494821','d3cefc8b-69da-4840-90b9-b720a1f57e19',225,60,93,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-3-3'),
('f24e6fd8-63ee-48c3-9c87-83fa33fdcc53','ccf6ad89-14e9-457e-b20a-be66bf3dadf6',0,0,0,0,'2025-01-26 10:54:32.124','2025-02-08 15:04:43.580','478860616-1-5'),
('f24f6b1a-4130-4519-b094-edfe2e42b994','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-79'),
('f253f930-8eea-4841-b2a1-6f53bb7ec863','3c1cb08f-5b16-41b5-872a-3dbcbd15c877',95,65,80,0,NULL,NULL,'910323683-1-4'),
('f25460b1-3fe7-4c70-b143-bfd1e96d0189','c4917d94-8c91-4f12-8ebf-b803c0150f37',205,33,33,0,'2025-09-24 11:01:56.450','2025-10-07 06:17:34.491','598412225-2-5'),
('f255063e-3190-4097-b50f-e8ef900f22e7','598c478c-2e52-414f-8119-1d47ef79bd55',0,0,0,0,'2025-01-22 09:07:12.061','2025-02-01 11:08:26.320','478365640-1-5'),
('f2582848-86cf-4fca-b1a1-27040fb1d0c7','9affc7b1-09c4-4e84-b48b-d0c117c421b0',120,33,198,0,'2025-08-15 15:02:52.908','2025-08-22 10:59:18.902','412280381-1-11'),
('f2592f3a-739a-4d04-a428-e8be0249bfa1','38d02296-46cb-405f-9d09-5974d7326df2',0,0,0,0,NULL,NULL,'371258376-3-5'),
('f25d2f78-57d0-450b-81fa-f79c7eb752b7','fa85cbb9-8618-47d9-917f-ac3054f0583b',0,0,0,0,'2024-08-31 13:26:44.958','2024-09-07 21:24:25.330','478498501-1-7'),
('f25d783d-43d1-4ebb-a312-7f47f8ddb901','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-44'),
('f25ddafd-242e-4978-869f-ae92c7a93ac1','0b5d01dd-a6f5-4588-804f-2d8e40f71f9c',0,0,0,0,'2025-05-25 10:54:16.752','2025-06-04 19:43:21.305','223923203-1-1'),
('f25fe7ef-de39-4ecd-9208-8f27b054f247','e7155058-aeb3-41e3-8a79-a84c6f8d6a0f',57,62,84,0,'2025-08-22 20:28:48.610','2025-09-01 15:17:25.096','808790233-1-2'),
('f260bc7d-68b1-4cde-939a-34639ee175aa','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-43'),
('f260e703-8be3-4750-a7ae-90dc0aae1f55','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-87'),
('f2630dae-c742-4ee0-b6bb-b1908c82dbf1','d9935e91-5c26-4669-9a9a-83060292f497',123,120,70,0,NULL,NULL,'478702481-3-5'),
('f264e666-c023-4096-847d-4e433761d267','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',100,37,59,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-76'),
('f2682931-c86e-4245-9538-d676303cbf10','8671fe0e-66f9-4cd3-92c1-b4cc827cf293',100,74,70,0,'2025-10-22 13:06:42.959',NULL,'644589662-2-2'),
('f2704ba9-9029-40b8-b27d-4665b3c58d67','fb58f438-30e4-4e01-af6e-6378e27a11fe',237,95,75,0,'2024-09-10 10:47:04.844','2024-09-17 13:50:01.592','517147933-1-28'),
('f2722337-178a-4f0d-a181-f0971c438f4b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-90'),
('f278ba27-3bb1-42df-ab2b-2e94427fcbd6','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-97'),
('f279577b-8836-4d67-828f-5e34ce48e6f8','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-28'),
('f27be1b0-9308-467f-8801-25c94cdb05f6','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-68'),
('f27e0be5-f599-4536-b91a-6c5a246ec295','4dc5b11e-0281-4118-adc1-0905c0bc701b',0,0,0,0,'2025-01-20 11:21:33.075','2025-01-28 15:19:10.126','231712628-1-12'),
('f28056d8-9ea6-4143-9076-a35b39f5052e','5ee00c1a-30c4-4631-928f-5c95f22101d5',73,92,118,0,'2025-05-09 18:43:39.685','2025-05-22 15:23:05.757','644968450-1-5'),
('f285f152-210d-482e-b39c-c6a4bff3e16e','883e6aaf-ccf4-4814-b2e4-afec5f99ad33',95,85,240,0,'2025-01-06 13:08:10.045','2025-01-10 16:34:01.975','910407767-1-1'),
('f2864078-efde-4d28-891b-95b4f8290c3a','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-95'),
('f2867689-d077-4190-b62a-0f3157a43da9','0c36ae1b-e1eb-476a-8196-505500cdac6e',57,82,104,0,'2025-03-24 16:01:49.444','2025-04-05 10:57:59.260','613508377-1-2'),
('f2869a1d-ec19-4c72-b2e1-5d269b719dac','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-42'),
('f28cdaea-6f94-468a-b292-51abf5647719','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-26'),
('f28dada6-36df-42ae-80ec-b7fb9bd5c65e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-34'),
('f292b0a9-2e26-4426-a258-2caaffb61d47','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.868','412346704-1-4'),
('f2952454-29cb-433a-8d53-9a1890b0886c','c1d25f90-d493-406d-a430-9b65b4f44c5e',43,4,208,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-19'),
('f297391f-6846-424c-8107-80c9319a4cfb','f422a47e-9cdd-4fc1-aba9-00af56f758ff',65,80,70,0,'2025-01-06 13:08:19.026','2025-01-10 09:45:24.615','112609358-1-3'),
('f298b114-861b-40d8-8d45-d4081715358c','86d2551a-e5a9-4481-a320-c328ca4c8004',0,0,0,0,NULL,NULL,'412383524-1-4'),
('f29ed8cd-6a6b-4dbf-81d1-799edcf8046e','546ad3d0-25c2-43dd-9443-e48b8e5b6530',180,28,25,0,'2024-12-13 14:49:08.600','2024-12-24 12:30:41.043','655919587-1-40'),
('f29fc75a-cf50-4bbf-8786-bbc53690fb0c','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-67'),
('f2a08b01-9256-45ae-99f3-f614a67e17b1','852cb596-91b3-432f-8aee-ec6a804f3a01',97,125,40,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-16'),
('f2a54297-ed53-454c-848f-d30af23f996c','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:30.866','248135683-1-8'),
('f2a6879a-7bdc-4712-b66c-07b4a0031184','d885da0f-8b0f-4f3a-bd54-883347401bfc',0,0,0,0,'2024-12-07 09:32:33.991','2024-12-17 19:51:26.550','735931871-1-3'),
('f2aa6ca7-dee8-4e1b-a8f6-2b2b9adbdbee','f11fa07a-9aee-45ee-9bf1-964d6f5ae88f',0,0,0,0,'2025-05-28 19:08:49.094','2025-06-06 17:37:40.880','644771270-2-3'),
('f2abd037-796d-4fed-841a-1d42ed6bb46d','3e5289c7-c298-4871-a480-51d39580b95c',57,63,85,0,'2025-10-02 06:45:45.025','2025-10-15 20:05:17.040','221900850-1-5'),
('f2acf184-a386-4f3b-9603-1ceacec6f7cc','9d7979f3-a35a-4a64-97d1-4ba973786029',44,7,192,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-22'),
('f2ad65cc-82e1-43a6-af7f-5be0d44ea2aa','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-5'),
('f2ae8a92-4ff4-4bd8-928d-90be0fb7588a','b6e835c0-7c27-47b9-91e0-ac2fbd0f5577',52,65,80,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-2-4'),
('f2b1337a-a464-401c-93ca-6aaa42f56a05','c7fce8c7-acfd-4c12-8db5-81618a4b211d',120,183,7,0,'2025-01-20 11:21:37.283','2025-01-27 21:00:32.873','830611219-1-3'),
('f2b1967d-f2b1-4b54-8543-58c36d9a8d2d','262d75b9-7166-4af3-8ca3-d7ed1d290a3e',0,0,0,0,'2025-03-08 13:46:15.470','2025-03-18 07:31:58.966','976568852-2-1'),
('f2bc05bb-230f-454b-9b59-5d2b579e5b01','0009aeec-e682-465c-b701-363a3ef377a6',200,120,5,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-89'),
('f2bd1213-f305-4fa5-a25a-41038064c552','c36c4fac-54ff-4834-a9e5-af345d3a3269',44,44,74,0,'2025-07-26 07:42:02.612','2025-07-31 13:16:43.321','505597041-1-2'),
('f2be5999-52f6-4465-92f8-299802e024f2','4cb853fb-ed75-4081-be82-d68d6aa556bb',232,94,70,0,'2025-07-19 07:52:21.011','2025-07-26 21:25:13.568','371251508-1-5'),
('f2c1b018-e7aa-4138-8cd7-9a49aee9282a','8c381124-abe0-44ea-94a9-c379625d2023',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.856','910479941-2-3'),
('f2c3b86c-5d78-4cc2-bf67-1f44d7756592','7ac04c84-54ce-46a6-9898-1b08419392f9',92,92,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-3'),
('f2c44f35-1cb0-48f0-af9a-4d7f47247313','e7f31a78-648d-4a5e-9111-1bf7db38dd79',100,60,5,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.460','501216728-1-34'),
('f2caf026-a6be-4ca4-a11d-1d932a910521','4fa06d8e-e1ca-4450-a6f5-c672fc006767',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.533','47811313-1-1'),
('f2d71a7f-8c02-4dbb-aa19-e7f9f26324ed','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-103'),
('f2dd6c8b-0d90-40bb-bafe-2f19e778d633','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-56'),
('f2df58f8-1d5b-400b-a58c-e4c97c9a2f22','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.232','2025-05-10 20:13:13.998','223963997-1-55'),
('f2e0c952-71d4-41a8-b8f0-3c704eaba510','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:06.116','248284003-1-123'),
('f2e1a55b-7d29-448e-a6de-8b0b50802c35','a02fce88-6221-42f7-a25b-9eb6e866d720',0,0,0,0,'2024-05-29 10:12:13.950','2024-06-11 14:04:45.861','614425900-1-7'),
('f2e24f99-7483-4762-9298-49f3270a7897','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-9'),
('f2e2ad73-0a81-445b-8365-9c32b920526a','f6885427-480b-4660-b34b-c410a6dc850f',81,81,7,0,'2025-06-11 13:14:39.811','2025-06-18 07:15:20.542','437414847-3-3'),
('f2e71dc7-ee8b-46ce-9cf4-e57a7d0ca209','056a9790-92fc-4518-aea0-4e028de531b0',211,43,16,0,'2025-08-07 16:52:37.616','2025-08-21 08:12:52.703','437313362-1-1'),
('f2e7b1cb-1519-47c9-b8a7-8d706e7cd867','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-17'),
('f2e8f063-8496-4b3b-9f6b-0192d7f9b527','808a4f1b-793f-4a15-808d-00c26a26c166',29,32,30,0,'2025-05-14 17:03:52.864','2025-05-23 14:07:52.050','319232330-1-22'),
('f2ed572e-d69a-4129-a37a-e88eb5b932ab','42ca0061-b4cf-49b4-9c38-32898832854c',0,0,0,0,'2025-05-09 18:44:13.417','2025-05-20 06:24:03.531','371807983-1-3'),
('f2eec8b2-95e6-45f7-ab68-62a5b5dce794','62f8f5e0-3dde-4a16-8b43-15d3805cff33',133,133,7,0,'2025-09-06 07:20:31.633','2025-09-13 09:57:06.233','371121937-2-5'),
('f2f10074-fcdf-4593-a961-e150a8d9ce0d','220fed8f-f96e-4af5-867b-ac05d11bda6f',63,5,219,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-26'),
('f2f1f635-653e-42a0-8399-8de81f8c6ac7','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-74'),
('f2f28b28-6106-4f44-a17c-ef6845ba9534','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,6,0,NULL,NULL,'478893710-2-16'),
('f2f2b395-846c-498b-b0db-2ba9f29858b5','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-11'),
('f2f351d4-efd1-4290-a0e9-b9dcb80047e4','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-21'),
('f2f9a582-e373-4821-b868-627b2e78d8e4','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-132'),
('f2fad3b2-0af9-4683-bfc1-cc5e9e70d122','7b80b57a-26bd-43ca-99b4-fb482a5dcc00',82,82,97,0,'2025-02-09 09:51:46.738','2025-02-15 16:09:43.829','127639932-1-4'),
('f3051ae4-5083-4d17-9808-4b38b81faba9','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-85'),
('f307138f-6ea4-4e12-b323-0007130b55bb','443e0969-7a02-4419-a72f-f4d9c48b7222',0,0,0,0,'2024-11-08 18:02:51.112','2024-11-16 21:34:13.030','248602682-1-5'),
('f307c6f3-1c85-47f1-a1e4-c365c8b977b0','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-80'),
('f30c8792-65ee-46d3-bae2-08a4ed2afe1e','19c6a32c-4384-451a-aaa5-dfc264ab827b',62,55,214,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-22'),
('f3107dc0-82e9-4633-b085-c91792ce271d','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-5'),
('f312429c-d5ea-4998-9597-d935f6a32e4b','daf63ffd-3987-41ae-bffe-177ce0861f23',65,80,51,0,'2025-09-24 11:01:47.158','2025-10-07 06:18:10.521','598396998-3-4'),
('f3149eee-4e3d-4086-960a-0c3a11a9666e','596c3256-9a05-4364-812a-bcf3c1f57fee',0,0,0,0,'2024-10-11 16:09:27.831','2024-10-22 11:44:09.529','745197344-1-38'),
('f319886e-6b8e-497c-b1df-248a01eb1dcb','dc192b30-06ba-4062-a95d-bdc29fd8c784',31,31,31,0,'2025-02-15 13:31:45.136','2025-02-26 21:33:25.286','319212544-3-2'),
('f31a14e5-aa70-437d-9d39-a5a72bc27baa','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-17'),
('f31d2d54-dbd7-4b9b-b1ba-38b3530de2d4','42b7553c-1533-4400-b356-4c6840431f4b',206,94,29,0,'2025-08-07 16:53:03.779','2025-08-19 14:52:33.302','613510894-2-6'),
('f31f0f72-a456-4126-acd2-eb4c8a5f4eb4','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-29'),
('f3222f29-fff1-4d1f-aace-4b81a4519e13','39e13ebb-f956-45fe-b3a6-284deb267677',54,73,101,0,'2025-09-01 11:06:21.881','2025-09-10 17:04:31.773','644513470-1-3'),
('f32385c9-a83e-42d4-9406-2a25e6ada3bc','5362cad6-3ac7-4876-8ddc-d366e2335688',230,70,100,0,'2025-02-03 18:19:17.377','2025-02-13 13:19:17.782','910645687-1-1'),
('f3239f98-01d8-4270-9dbf-a8509276dfba','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:31.885','248135683-1-212'),
('f3254be4-c698-4164-838a-81a4951461d4','a135c145-15f3-450a-819b-e82b427bc978',46,6,220,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-21'),
('f3291266-77d0-4208-bb7f-792a661f9ebe','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-7'),
('f32bcb83-39d3-4f54-9277-6adf1eae3e65','5fad51cb-2466-474d-9661-9f8cff4bd601',95,17,164,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-1-4'),
('f32e4408-17d6-4bdb-a8e5-2984ca98eb00','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-59'),
('f3324326-eb16-4b90-b9ef-558d512bb43f','7420e731-9668-481e-99f8-c3ffadbe2321',51,51,77,0,'2025-10-22 13:06:48.332',NULL,'613252288-1-1'),
('f3356b4b-fd14-4dff-89ad-1708dc6895d1','4133b64d-8906-4cf9-aeb9-479ffee87338',51,51,77,0,NULL,NULL,'695734625-1-1'),
('f337d8df-0ef5-4bd9-b4f4-fbc38e739d59','9b1dd344-e23e-43d0-a03c-7f3b62f2b24c',0,0,0,0,'2024-10-11 16:09:17.348','2024-10-23 13:04:02.940','745924426-1-4'),
('f33a8127-70a1-4123-8205-68583413e424','8ffb2633-95e1-42c6-91cc-be4266d6e2da',95,41,43,0,NULL,NULL,'449787716-1-1'),
('f33e23c2-4c9f-4231-b2aa-3b91714055b7','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.722','515129438-1-7'),
('f340964b-20ad-4254-b02c-81b4314eb4cd','7360cf59-fdde-4259-88ae-e20574f2ab94',50,75,75,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-1-4'),
('f3459c3b-0aa6-44db-8947-c199f6b560bd','dc3f18e7-09f7-4f48-a550-413323aa1fa7',203,45,11,0,'2024-10-23 14:11:54.744','2024-11-04 08:40:29.098','614458088-1-3'),
('f3462464-0ba5-46b3-8067-ac0e4d32bcc6','de3d1881-c5ca-4244-a03d-15cbe8813eef',0,0,0,0,'2024-12-23 12:00:49.563','2025-01-04 10:37:10.815','428990953-1-4'),
('f348cb61-68b4-4cb5-8481-0e596457a5cd','e7f31a78-648d-4a5e-9111-1bf7db38dd79',100,60,5,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.460','501216728-1-35'),
('f3496a8f-6f68-4800-b92c-9d02fcc9745f','5c4d9368-f975-47d0-9818-aa9d64564578',80,93,91,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-2-4'),
('f34a25e8-5de1-4c7d-913a-b86f55e681ab','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-101'),
('f34a9969-f37d-4017-9ad5-faf6b7603758','15838be9-2a38-4e80-b613-df9538785c9f',107,233,7,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-1-6'),
('f34b9bc7-7c9d-4ec0-b2cc-0206ba9eeb9a','7379fb2f-7c58-439b-a1f3-7d6e91d200f2',102,56,82,0,'2025-07-26 07:40:19.253','2025-08-05 12:21:48.610','418857351-1-1'),
('f34ffde2-f75f-42bb-84e0-623570908507','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-24'),
('f350d6e1-55d2-45f1-823e-99a2f4a5d507','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-74'),
('f35309b3-c75b-4f12-a6b8-a01ce7f2eba2','98c45b5c-2d33-4eb7-9b28-ba75cbff2674',59,55,82,0,NULL,NULL,'695530845-1-5'),
('f353ed57-ef59-4c5b-8918-d6dbca438e69','73620971-43fb-4c83-8c1f-8672f6a63561',0,0,0,0,'2024-05-08 18:43:36.637','2024-05-21 18:44:54.330','976942978-1-1'),
('f354ec97-5980-48e7-a3d2-f15562c2d732','c11958bc-ee5a-4d0e-a4d6-af494908cea9',0,0,0,0,'2024-11-25 08:29:09.075','2024-12-03 21:16:41.105','478606230-1-4'),
('f3588a46-efb0-42af-9848-5338ef55a1d8','733bff01-cf6d-4939-aa79-6311531918bd',31,108,140,0,NULL,NULL,'808690841-1-6'),
('f35a96f5-10a6-4f7f-a723-1bd0bf75ce94','9b2370ef-7858-4a40-8441-be7d5aa90ef1',0,0,0,0,'2025-07-19 07:52:04.801','2025-07-29 13:54:58.337','412647671-1-2'),
('f35c294e-1ce0-4775-ad87-dc4f435f2019','ce549e83-2baf-407b-8859-b4e281f0246e',0,0,0,0,NULL,NULL,'745557977-1-3'),
('f3606f0b-4405-42c5-ba46-841b612cdc4f','5c219d1f-ef1d-4fa5-a04f-df525aa57cc8',260,130,30,0,NULL,NULL,'428413605-1-22'),
('f361856b-d7b6-423f-9a3f-e384ada4413a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-16'),
('f363f12a-bc8a-4a6a-924d-b8341eeb717f','46cbcfc1-c51a-492f-8b61-a2472751488a',90,94,80,0,NULL,NULL,'644495739-2-5'),
('f365a203-c27e-4524-b955-7d777f8c700d','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.753','223422825-1-208'),
('f366796a-9499-48c7-8dc4-c8af9eca7919','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-90'),
('f36a613f-15d3-4969-9e6d-8d024c82303d','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-106'),
('f36fbc25-3cc5-4ac6-947a-b9ca4a9a71d0','ec1dd010-46a6-4bf1-b8da-05f4c672e2af',56,102,76,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-5-5'),
('f3701594-8ce5-4150-b1eb-9c9281d2bfee','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-40'),
('f37075fa-0998-4112-bf09-c6cb6b8d7b75','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-20'),
('f372212c-324c-4d7e-b825-026d08e7e466','722f6cda-7965-496a-81b9-31511421c775',84,55,55,0,'2025-04-21 06:13:31.855','2025-04-29 07:38:30.712','221208954-1-6'),
('f37a98e6-d5e2-4ca9-ac61-20ac9c428933','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-146'),
('f37ea2b1-3279-4ca1-bb90-30209f8903b1','eb485a7d-ef4a-4b90-80b8-e4b407bce1f2',1,1,1,0,'2025-07-26 07:40:22.090','2025-08-04 10:55:14.687','478733242-1-1'),
('f37f5559-6338-44de-8104-1c7d0948b9e5','ddd56674-a4c4-44e3-94b8-0441ec7a9fad',60,57,85,0,'2025-02-03 18:18:48.336','2025-02-13 13:19:51.326','221164226-2-4'),
('f3826173-3906-4c74-93b5-a3d062b98d55','b2dfa15b-7762-4893-a468-af7207b408cd',0,0,0,0,'2025-05-28 19:09:01.754','2025-06-05 16:38:45.486','910899167-2-21'),
('f382f989-3cf8-4c48-9331-6229757d2972','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-7'),
('f3851074-7189-49d5-b1d7-4e18003b6b4d','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.557','2025-03-01 17:30:01.496','046487702-1-19'),
('f385c8c8-ec90-4470-ab4f-593f2011ead9','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-7'),
('f3862207-76a2-4759-8bd7-41301932b470','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-28'),
('f386431d-5ed8-44c9-add7-d7ee4bfbd284','babc75f8-a544-42a0-b492-38859e331e41',85,56,60,0,'2025-01-22 09:07:21.305','2025-01-29 14:53:26.787','2213375-1-2'),
('f387a3f2-0bb1-43f7-a455-ea18fce234f4','cd338320-b04d-4520-adba-f892a82d945a',173,62,52,0,'2024-08-07 15:02:56.725','2024-08-15 13:36:45.677','976894167-1-7'),
('f387e526-5554-44c3-938e-378e95d15798','10b7be91-04db-42e1-ad19-153945c5c51a',30,62,39,0,'2025-10-02 06:45:50.856','2025-10-16 15:47:08.244','221899517-1-2'),
('f388bfcd-feba-44ab-a378-dd73f8f18baf','0a18da5e-abaa-4a82-b8ad-9c858425a606',0,0,0,0,'2024-09-27 14:05:30.232','2024-10-08 09:25:48.154','248948777-1-14'),
('f388c3d5-9da5-4b32-9c34-674d94f2fbc4','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-4'),
('f3898a3c-1e92-4c84-b055-b56cf7d549cf','ac1a5fbd-8451-400c-95df-d777e477b50b',0,0,0,0,NULL,NULL,'74520701-2-3'),
('f38cffe6-2c86-4914-a5dd-c15178d3ce2e','7e8cc16f-8fa1-45f3-a447-41a46f3bfd9c',0,0,0,0,NULL,NULL,'91055249-2-1'),
('f38d96e2-3c16-465b-bb1e-41a2fd1a2a78','8add455f-cadf-462a-8446-b3feef2203eb',0,0,0,0,'2025-02-03 18:18:36.497','2025-02-14 15:00:10.497','73555265-1-2'),
('f390bf1b-e687-422b-b56f-27c4ec07c233','d201307c-b6d4-4cf8-9e1f-1896ba9922ab',98,97,96,0,'2025-09-01 08:06:27.785','2025-09-12 19:45:52.110','412129107-1-14'),
('f39646bb-3520-4250-9271-7856eed7c70d','ddf610d0-9aea-487f-b0f3-3e66ddc80ad7',0,0,0,0,'2024-05-08 18:43:20.667','2024-05-21 18:45:51.098','478202878-1-4'),
('f39950fc-3235-4bd1-90db-9e29231d405b','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-36'),
('f39e4bb5-bac4-4017-b32f-3d7a1482966f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:32.428','248135683-1-3'),
('f39eba7f-9aa4-4a97-8331-3bd818b49768','852cb596-91b3-432f-8aee-ec6a804f3a01',97,125,40,0,'2024-11-12 16:16:06.143','2024-11-21 19:12:27.211','952470417-1-14'),
('f3a49026-5e8f-4b25-ba4e-a57ae3f7a92a','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-7'),
('f3a4ed93-ab20-4326-94ed-193e1c5d7e0d','7c7686b8-8f65-4271-acac-1585b7485563',100,221,12,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-10'),
('f3a5695e-6c06-4c1c-8f56-90f4419533d0','560a030c-37ea-4206-a1a0-0cd801f6ef34',0,0,0,0,'2025-02-27 16:45:21.801','2025-03-13 09:28:54.022','478677950-1-22'),
('f3a804b9-4c15-416f-b022-3ba20d87bc2f','ab5b4f35-151d-4c91-bde5-2423bc506836',0,0,0,0,'2024-09-24 09:07:28.130','2024-09-26 15:55:12.342','976494428-1-3'),
('f3b386cc-555e-4624-b47a-c85673c9bccd','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-17'),
('f3b40af0-7d47-427f-8403-c6459f00821d','7ca3b25f-8c08-4c50-b102-4ea800c2c2fb',37,110,70,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-1-4'),
('f3b61d5f-cc4c-496b-8756-b00317f4b29c','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-109'),
('f3b6816f-d56e-4998-b7f1-8ca7afa4b608','1b4a45d4-b5b8-418a-a43f-9acc0a3895ff',0,0,0,0,'2024-05-29 10:12:08.936','2024-06-11 14:05:02.615','449898615-1-12'),
('f3b6d1a0-e69d-4d8e-859a-27a5298f82f0','60b0be8d-f3a9-42ce-8a46-05043fe513c1',0,0,0,0,'2024-11-25 08:28:32.908','2024-12-05 16:18:31.772','248543155-1-4'),
('f3b78fd9-dfe8-4f1c-b349-bfe0692e94f8','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.327','223249369-1-58'),
('f3b7c5e7-668a-4ddc-9b25-db4c2a99f89c','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-1'),
('f3b88d46-ab21-4c83-ab25-33a573de98ae','30eed6bd-584c-4dcb-834c-7267b5ca173a',0,0,0,0,'2024-12-13 14:49:05.694','2024-12-24 12:30:47.745','735553146-1-1'),
('f3b9f8f4-eb4c-4d62-857b-90f386ced6b1','7311f1e0-e2be-43dc-9e40-f94a010e8939',228,58,6,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-54'),
('f3bba1f8-7bfe-46a3-9988-c2d6ef72055c','1b72736d-38b2-4d16-8ad9-6c6e005c6913',0,0,0,0,'2025-07-02 12:43:30.831','2025-07-21 18:56:12.310','412550726-1-4'),
('f3be75b9-b56d-4d43-ba2f-6719fdbfbcb4','a455ba66-b417-4781-a6f2-6fce1b8bab23',64,6,149,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-26'),
('f3c04217-5e1c-463c-bd68-b6fdff38d167','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-4'),
('f3c17b49-569b-4c34-8db2-b233828b788a','fea9db7a-edb9-4a21-8dcd-5d30d009e820',20,114,207,0,NULL,NULL,'140284101-2-4'),
('f3c2c7a7-be2d-43ef-9511-cfeb50d5006d','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-23'),
('f3c2e5e9-383f-450c-bb1d-55975e56b78d','3f20f646-f429-4f8b-b295-482908d0c0fe',57,84,55,0,'2024-11-25 08:28:56.020','2024-12-04 13:09:33.506','221639055-1-6'),
('f3c7c40f-ae40-4420-a3db-be9daf432411','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.378','2025-01-07 19:30:46.445','478681299-1-24'),
('f3c86ddd-3b27-4204-8caa-6f24c399919d','ceaa236b-3a68-4533-ad29-229cec3a8f6f',89,200,21,0,'2025-07-12 09:20:15.399','2025-07-25 10:49:32.407','486405325-3-2'),
('f3ca0dd5-9c96-4f4e-99e6-57cd4ba2ab65','a87576e3-14e1-46a8-99c7-1d48360995f5',90,62,90,0,'2024-08-31 13:26:37.526','2024-09-08 18:51:02.007','223275516-1-19'),
('f3cb16cf-a4d7-4974-8930-2385336d59d2','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-118'),
('f3cbcee3-a284-4b14-953e-7abaa55236e3','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-55'),
('f3cf5d94-c173-4d1d-843e-47b503a8587e','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-1'),
('f3d082b4-e7c8-4d39-b662-4513b856f049','e1757ecd-2d0b-4547-ad0b-bd5e6f7094e2',83,57,110,0,'2025-09-10 10:50:48.898','2025-09-20 07:01:59.492','745879253-2-3'),
('f3d1fbc2-17ec-4358-b3e4-4376df4105bc','217bff5f-e91b-4d47-aadb-ba0d19e7ec77',190,33,33,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.157','428718727-1-1'),
('f3d2ea2c-2b41-4699-aa19-c679546f98f5','19c6a32c-4384-451a-aaa5-dfc264ab827b',158,198,3,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-23'),
('f3d5c097-c9e9-460d-904a-8cbda46a5456','69acd97e-52c0-45ae-adf5-ee013e52776f',80,95,105,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-8'),
('f3d6a740-11a2-47b0-abfb-c53934d39b35','4ed838d2-71d3-4d84-a945-0e0075c5f9fc',51,51,77,0,'2025-07-08 11:31:25.721','2025-07-21 14:11:19.708','675951028-1-1'),
('f3d6be73-f852-45f0-b470-fd3f9f4da356','86e5956d-750b-4aa3-8f00-53e2db7b9f65',80,80,4,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-34'),
('f3d7bb74-2b7a-4f8e-9c4c-ec46fb58a488','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-21'),
('f3da9c47-b4bd-4bea-8709-9fbe8bc4ed4b','58fe4c33-e268-41af-9163-4863a4d27452',108,56,72,0,'2024-12-13 14:49:24.637','2024-12-21 10:34:11.886','127105973-1-6'),
('f3ddda8a-8292-4715-b952-08c9d092e50a','00c4d4eb-e89c-4883-b434-2cd031184f1d',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.081','478449021-1-2'),
('f3df4b9f-600b-4eb9-ac3e-0149a6f8dbfe','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.958','223734808-1-195'),
('f3df7cbc-1696-4011-a043-6ae5aa993f76','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-21'),
('f3e26435-fe96-4a2a-a296-e102253c5102','d93690ea-b22e-45dc-99a2-0e07f17da633',76,52,102,0,'2025-09-06 07:20:15.394','2025-09-16 06:34:40.142','437152964-3-1'),
('f3e30c0e-4e74-4b4a-b61f-28a86e161321','927ceb65-f6d3-4068-b0ea-1412cfd0a754',108,76,52,0,'2024-11-21 10:28:56.411','2024-12-16 21:29:23.784','982365685-2-8'),
('f3e44ff1-f800-49a7-b8e4-82906066aa70','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-6'),
('f3e570aa-aee1-4c62-91e2-b2dea36c06d9','97bacb2a-1bb4-4976-84a8-04ac9dbcefe3',73,112,125,0,'2024-10-02 09:26:45.419','2024-10-09 08:37:58.563','501307359-1-13'),
('f3e60bac-2078-4304-ad83-45750fdcbf22','6162f09a-c875-44a3-a309-7f63d0880087',85,96,76,0,NULL,NULL,'614597563-1-3'),
('f3e96bdb-f582-462e-8c48-fdf91380a62f','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-45'),
('f3ec0830-a7c9-4107-bd0c-360f12facaa1','173bf365-8e09-4aa5-90c7-1bdda2c188b1',96,102,67,0,'2025-10-08 17:43:58.407','2025-10-20 06:31:40.859','644637792-1-5'),
('f3ed0573-ab75-4228-bf0f-343ef5e25a96','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-73'),
('f3edfa71-1684-465f-bd08-927e45bbd2c6','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-4'),
('f3ef1d0d-14f8-4ac9-8160-e067d9847aee','61693d6d-1ccb-4968-9461-6ef1bf43aac5',200,75,100,0,'2024-11-21 10:29:11.924','2024-12-14 12:00:59.316','112270991-1-1'),
('f3ef811c-cb53-4e27-a62b-a6431aa98411','c45d0f8f-0a66-465e-bb56-1913286018e1',95,197,60,0,'2025-07-26 07:41:53.862','2025-08-05 13:52:32.552','976235260-1-2'),
('f3efc8cd-ff29-4491-8c2b-3d011a48e73e','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',142,62,17,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.985','61428079-1-37'),
('f3f1a9eb-071e-48af-a5cb-26ee378362e9','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-6'),
('f3f38434-e421-4975-bc8b-fb5baa7ddbc5','e67ec257-3ad4-441f-9d70-6ad4dffbd30d',85,67,64,0,'2024-11-25 08:28:26.982','2024-12-06 10:08:41.264','221437904-1-7'),
('f3f86b6b-c30e-465c-b9ce-43ff3922300e','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-28'),
('f3f97207-9e55-4a7c-bd2a-bf4417d5ef2a','c71fdc71-df3e-48af-9323-d534b0931ff1',59,6,216,0,'2025-05-14 17:03:49.402','2025-05-24 17:54:56.887','478342417-3-22'),
('f3f9f4b8-796b-4d7a-960c-29462ee12b57','36d2ccf2-df1a-405a-b3c7-cef507b73ba1',81,25,202,0,'2025-07-12 09:20:26.628','2025-07-24 06:22:52.518','478345732-1-4'),
('f3fbdb92-9872-427a-a74e-07b72a033d76','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',70,70,75,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-169'),
('f405797e-d93e-4ec1-9c62-68f2c35bb165','f9861f37-efe2-4e3a-930c-f694c4e10c6f',76,25,87,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-13'),
('f406010d-ac38-40cc-8f84-6e947d2a0812','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-62'),
('f406a418-6c29-439f-89e6-b728b9b522b4','3987bcda-6531-4738-8815-187fd84bf71c',230,100,88,0,'2024-09-10 10:47:13.058','2024-09-16 17:09:39.159','75056602-1-23'),
('f408d7bf-c512-4e5e-ae38-e41d3edd878e','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-30'),
('f40afca4-e6c1-41e7-8dc1-e7eb114e3995','1d561668-0f20-4753-86b3-33f1b10746d3',198,96,10,0,'2025-08-14 10:05:57.193','2025-09-01 16:57:24.864','221763889-2-3'),
('f40c6efc-20f6-4e60-8257-6a8d72038635','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-138'),
('f40d263e-7ee2-47c2-af7b-3268bc884d69','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-63'),
('f40e5b19-9ad4-4222-833f-6301da57b844','9cf2d55b-f29f-463e-a172-17eeb3bc4556',52,73,101,0,'2025-05-25 10:55:34.086','2025-06-03 20:09:09.258','478245028-6-2'),
('f40ebec2-4af4-4a69-a3b4-71b740e5c426','2ee29e0d-5d75-451c-93a9-a55038d6d101',0,0,0,0,'2025-02-03 18:18:43.137','2025-02-14 10:41:18.327','74534951-1-1'),
('f40f67d7-7bf7-4f04-927f-6269882e2ab7','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:33.011','248135683-1-131'),
('f4190573-d388-4d68-b2b5-0a02b25c62d8','9f1f4a12-045f-486d-8d26-612451204bcf',100,6,200,0,NULL,NULL,'745995046-4-8'),
('f41ad9fe-145b-4636-95ed-6d1e4a1ec1d7','f38f268d-7a32-4f0d-a462-8692167d1d01',90,85,92,0,'2025-08-21 07:15:02.972','2025-09-02 06:52:12.482','478935366-2-3'),
('f41cc5a9-1d32-46c7-ae26-772e1ee015d7','f4ecc80a-4079-40f2-a73b-76de718c1c5e',0,0,0,0,'2025-06-11 13:14:27.389','2025-06-22 09:26:54.562','879845359-1-7'),
('f41d059a-83ce-4db6-a1e4-f90afbf14e3e','4ac8027d-d5db-4a57-916c-23dd357c98aa',8,70,125,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.645','598263441-2-10'),
('f420ac58-c8dc-4eeb-85b8-0210e136c553','2ab41284-325e-4735-a02e-0af4784fee90',71,41,49,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-1-14'),
('f422f129-5627-4857-b709-f8d137e37159','88f7b708-0bad-4d29-a208-0fc793ad49ef',0,0,0,0,'2025-05-23 14:05:44.810','2025-06-04 19:42:18.729','817893266-1-4'),
('f426a7fb-5003-4e85-a53d-bfe05e1cf4d9','2ab41284-325e-4735-a02e-0af4784fee90',57,210,5,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-1-8'),
('f4277644-7a2b-4f6c-8c66-d6d959398f22','ba35c585-5a41-49a0-931f-21e6c034471c',80,245,95,0,'2025-05-28 19:08:46.383','2025-06-07 14:07:59.723','517278082-1-4'),
('f4277cae-2e6e-49c4-848e-291087e47dfb','ca2466d1-9a83-4f57-8f76-f5ddce302e04',124,206,7,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.687','382253716-1-3'),
('f42a4cf4-1665-4986-8676-1f1891b0709a','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-159'),
('f42d1be4-9417-41a4-b8be-c6f4cd773c6c','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-4'),
('f42dc151-c1c9-46ba-909e-74bfd531feb2','b131fb57-d712-4edc-91a4-3767a6ceb690',0,0,0,0,'2025-10-06 07:08:34.544','2025-10-13 06:39:39.819','745101735-4-1'),
('f42ea058-e8cd-4631-8361-16b059bb2223','3987bcda-6531-4738-8815-187fd84bf71c',102,82,56,0,'2024-09-10 10:47:13.058','2024-09-16 17:09:39.159','75056602-1-24'),
('f42fb784-8af0-4fde-a554-7b47eb37e3bd','04f841ce-9ab3-4610-9d1d-bdd9d9518084',0,0,0,0,'2025-03-13 12:21:24.843','2025-03-23 16:15:52.675','268615271-1-1'),
('f4309c57-84c1-4656-9a3b-1ebb300d341d','0ca7b5c8-7608-49bc-9057-d56d835fbea5',130,215,11,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-15'),
('f4317a9b-f639-406e-a357-446901b959e6','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-80'),
('f435685d-e795-4929-96bf-12635716c62f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-57'),
('f435daef-01f3-4124-8461-89b6f1f4b01d','f3448104-44bd-4193-a741-f1b06602f4c2',97,200,7,0,'2025-10-02 11:20:28.979','2025-10-11 14:59:53.186','221616369-2-3'),
('f43e4f6e-e896-4db6-a652-2b8476b498da','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-200'),
('f443a147-dec6-4622-865e-ae30c033b273','028c0bba-d7fb-4cd3-9892-3e3cf79cd778',102,52,77,0,'2025-01-20 11:21:34.362','2025-01-28 15:19:41.507','22134117-1-1'),
('f445d7ac-f020-4b7a-baed-2634566d5401','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-9'),
('f44922a3-0059-476a-8bd3-94b6db3c9e7e','8a112f94-c1ef-4860-86dc-23351280686f',53,93,10,0,'2025-07-12 09:20:19.430','2025-07-25 10:49:06.698','976114868-1-5'),
('f449234e-984c-4f18-9311-73ef3d9db704','3d059bd7-f20e-40fc-85ae-9f5fd41c6087',52,67,80,0,NULL,NULL,'371797202-1-2'),
('f44a4351-3b48-4e0c-a49f-88fc3e169b6a','a455ba66-b417-4781-a6f2-6fce1b8bab23',39,28,200,0,'2025-10-25 08:59:25.500',NULL,'478544570-3-27'),
('f4512ff8-21c2-4edb-9bab-7d5a5bb4f918','0a8285d0-d3db-4298-8e41-62c5429f150a',33,38,38,0,'2024-10-02 09:26:30.809','2024-10-10 16:32:01.341','428499287-1-26'),
('f4516046-b4f2-4c5f-a340-523777c04031','0052de50-8105-4a4a-bdcc-a55ca79dce47',77,55,101,0,'2025-09-16 13:29:02.414','2025-10-04 13:57:47.478','765501651-1-3'),
('f4520663-9c0e-49ff-be68-f0f13d13f749','51ab38e9-7405-48a7-b42b-51059955bc66',0,0,0,0,'2024-09-10 10:46:56.581','2024-09-18 16:13:07.070','248533509-1-48'),
('f452e520-d393-4c12-859d-17e2f6db2dcf','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-99'),
('f45531a9-ae16-4c1c-a8f9-71294c50b57b','7ac04c84-54ce-46a6-9898-1b08419392f9',92,81,65,0,'2025-09-06 07:20:40.132','2025-09-12 22:09:42.230','531480968-1-4'),
('f455f5f7-0ac6-4891-8b8e-148fa3d3e4ce','0263f7f0-6c1a-4beb-ab78-25d69142647c',34,8,216,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-30'),
('f45b7533-42fe-4a01-8426-e555e6fdcef9','1b975dd0-98b9-4adb-88bc-962d71cc7b22',52,16,185,0,'2025-03-13 12:21:16.119','2025-03-29 21:27:29.605','412970240-1-11'),
('f45cea1c-da53-4f12-94a6-8141a585c0a0','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-202'),
('f45e51d7-3918-4764-8493-bbdd069d73ca','bf45c546-7b61-4cb9-8ff6-a953f372662d',44,24,215,0,NULL,NULL,'745995046-5-6'),
('f45e7822-0e77-49b4-bf29-1e6033540a62','baa0c4fa-32af-4807-b14b-e9e9f404f5a0',240,120,14,0,'2024-03-23 08:35:58.941','2024-04-04 12:48:01.104','268437547-1-3'),
('f45edd9a-ca46-4ea0-928c-0f8c493c378b','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-74'),
('f46179ec-e43d-470d-88a4-8a6716000bd6','b2c78cf5-c58c-4553-bd14-49e83916894c',47,47,80,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-25'),
('f46238b0-4608-4fe8-a23a-874c6bc07eba','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-28'),
('f463026f-823c-4067-9036-68291ba76a57','9218bba1-6810-48e8-a437-5cb03537fefb',17,20,150,0,'2025-10-06 07:10:14.162','2025-10-15 08:25:17.352','644985861-10-2'),
('f463087d-6480-41f0-b751-ad8b32fdbacb','a6c77233-c870-4a4b-ab0e-76861ad31465',98,52,15,0,'2024-11-08 18:02:52.431','2024-11-15 16:11:03.078','42899153-1-6'),
('f464bdbc-7da1-4fa7-ab0a-8d80abb3902b','c08c5699-9501-4ce8-81b0-c32d990db7f3',80,5,206,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.627','614659832-26-2'),
('f46523dc-99f1-4014-9a8b-4087acf5d8e8','7bd64728-38dd-4554-a901-c9cd5700a0c6',90,90,65,0,'2025-03-27 08:02:55.283','2025-04-08 15:36:58.887','644877146-2-5'),
('f466ddd0-3149-4cb9-b611-b3123e37cac0','11cd3c1b-ae0a-4c54-901d-09fdc4b973d1',0,0,0,0,'2024-11-15 17:06:15.168','2024-12-01 12:28:22.117','24886445-1-21'),
('f4677d44-0f9a-4096-af16-7978b794f43c','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-2'),
('f4686057-ad3e-4038-ba2f-6d141816fb76','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-47'),
('f46896ed-8590-450d-bd5e-4e4f62eaf820','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',235,75,100,0,'2024-08-07 15:02:49.689','2024-08-16 04:44:27.910','976819499-1-27'),
('f468d95a-b278-4045-af42-922ffed4bfce','bd157753-3a74-47f7-b5f9-15e48e3e3a01',0,0,0,0,'2024-12-01 06:47:58.642','2024-12-12 07:41:18.899','478154934-1-4'),
('f46f75ab-ba04-4c52-b77b-579066dd8689','9e08c127-dbad-42d7-a9bf-569bebc6cd6a',0,0,0,0,'2024-08-31 16:53:35.119','2024-09-02 08:33:22.120','478778231-1-4'),
('f471650e-d460-49ef-8695-ffd8ff5a294e','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-131'),
('f472b953-4df4-4776-922a-9d9ba3ad5523','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',48,73,67,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-170'),
('f4746c4a-5a01-48c6-8bd1-451688ed7cbd','84931d79-be4a-4fda-a683-426c1f8b5d7b',95,80,270,0,'2025-10-20 07:17:56.783',NULL,'598387436-2-3'),
('f479662a-22b6-4a3e-8033-83dd0899b2a1','cdccd2ca-ece0-44dd-b047-f15496470e46',226,95,66,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-4-2'),
('f4798b0c-bcc5-4ccc-8e51-e713bf89b39a','6aadeef6-4393-4005-8da5-51ca4e422dfd',200,90,85,0,'2024-10-17 11:51:15.417','2024-10-26 07:31:35.106','45559266-1-17'),
('f47ae3a2-c3a5-4387-a5a7-b722f53c8795','bbf524c3-27fa-486f-bdf9-142bac6ace56',15,10,20,0,'2024-03-16 14:34:23.702','2024-03-25 10:42:32.899','976751266-1-4'),
('f47b7f33-446f-42a1-962e-8f2e279ef37c','e027c393-a1fe-4d6f-b265-19223be40e91',122,75,6,0,'2025-01-26 10:54:22.648','2025-02-10 14:16:21.329','221390997-3-2'),
('f47bca97-4a56-4297-8c27-8db4e1d16af3','135c284f-8acf-4424-8c84-150435648d16',103,56,80,0,'2025-01-04 10:47:31.543','2025-01-12 13:23:13.221','982106314-1-9'),
('f47c389d-f3a1-455f-beb2-d7328c54ff52','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.473','2024-10-25 13:20:24.186','478816607-1-11'),
('f47eac03-d79d-4447-b92f-8c21fc79dda2','c5027968-9a23-442a-bebc-9b8745408960',70,7,143,0,NULL,NULL,'982759064-4-6'),
('f483aea0-687b-42fd-8d0e-bde1832e0f11','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-85'),
('f4847303-caf9-446f-8418-d09068324c14','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-81'),
('f4850189-db56-46e1-b7b8-d5fe31f16ffd','82321952-2c8a-425f-ad1c-80144029e0cb',76,53,102,0,'2025-05-09 18:44:14.647','2025-05-20 06:23:59.224','371429381-3-2'),
('f4876dc7-70de-4ea5-bc5c-5dcd2070b1ab','df713518-2930-40b6-8d4d-ddc4bcddbec8',90,15,25,0,'2024-09-06 12:28:12.323','2024-09-12 10:54:49.048','162571177-1-9'),
('f494a751-d373-4a1e-a92e-3a8815dd9ec0','20a73c4e-790b-494f-b4a7-c61766021e4b',72,72,7,0,'2025-10-20 07:18:02.414',NULL,'817682643-1-8'),
('f4953e33-56de-47d8-a931-4f1125d2e6b2','a1fafb1c-77e1-426b-92b6-a2d3797b09a5',51,51,77,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-3-2'),
('f4955758-f512-4c3d-96be-534436113010','060148ce-0335-478e-89ca-1c4b342493d2',68,6,100,0,'2025-07-17 09:33:48.166','2025-07-22 08:19:40.603','910697257-1-1'),
('f498424a-3278-48cc-a271-ce0170a5a8a4','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-54'),
('f498cf7d-500f-4e6b-9440-bbf95f32ffb4','8625abf2-719d-4d7f-b206-16948b318b8b',230,100,55,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-32'),
('f49a2341-e687-41d1-8055-6b2aabce8b8c','066e4e7c-c9e0-4cdf-848e-b887b4234fe7',33,33,190,0,'2025-04-21 06:13:38.052','2025-04-28 11:59:44.002','64451300-1-1'),
('f49d9ed6-43d5-438b-855d-0e9edf98f2f3','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.473','2024-10-25 13:20:24.186','478816607-1-25'),
('f49f6a33-e2bf-4a16-84f8-e985e55c87e9','0205414b-5878-424b-a8f7-1bf9fc0d9072',61,61,91,0,'2025-04-28 07:40:41.912','2025-05-06 11:26:18.860','786820149-1-3'),
('f4a231ea-9075-452f-bea8-42a778949efe','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-140'),
('f4a42990-1627-4e4f-9c6d-4f769cd56174','2417e33b-aaab-4a2a-8654-3680addb8de4',0,0,0,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-1-10'),
('f4a70d40-7578-45b0-9ec6-123e2ab58f97','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',205,80,40,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.395','449644504-1-11'),
('f4a77c13-e5c2-44b2-bb67-7118224eb8a0','7db9549e-4f85-4b89-8419-21c1c77f04f2',58,104,171,0,'2025-07-29 12:58:20.727','2025-08-12 06:14:33.799','657301470-1-1'),
('f4ac6784-e9f9-4c52-8d6b-07ddc539af07','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-221'),
('f4aca3f1-ba40-499e-8865-e4bd74d78c3f','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.871','223337181-1-141'),
('f4aded04-0e24-4b9e-90d3-36f8dc18b19f','9a012a01-6709-4e0c-9806-61018f9e36fc',55,74,100,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-4-4'),
('f4b1648e-7e92-4a86-a467-15d79d4a56ed','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:11.056','248284003-1-163'),
('f4b5f685-ffc2-4c00-ad99-8bd7547f081d','3da17157-28be-4bae-8dcc-745d0e93e591',60,50,210,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-16'),
('f4b7ec8a-db89-49ff-afef-efa758e8470d','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-207'),
('f4b8714d-aede-428c-af87-beb539ba4427','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-32'),
('f4be3d79-398e-4601-8d5d-0c2192de6baf','fb1c9630-98f0-4c26-89d8-37346f67a1eb',83,75,75,0,'2025-09-24 11:01:52.628','2025-10-07 06:17:42.399','745808994-6-1'),
('f4c24116-8f6a-4251-b26d-4eab37ba88a4','6e7cb94f-e7b0-449c-8458-dffd274f8115',75,124,6,0,'2025-07-29 12:58:48.867','2025-08-07 07:12:44.161','371191289-1-5'),
('f4c6002d-4c1c-4220-9735-2f5c4d9b932f','6ee97c0f-b66b-4a52-8b77-b152adec9ba3',0,0,0,0,'2025-03-13 12:21:18.204','2025-03-24 16:02:37.295','745547550-3-10'),
('f4c946f9-8d42-47a0-af82-b471e0e1760f','a2f34510-a7f6-4abd-ac03-e7c577feca03',6,60,214,0,'2025-10-14 09:22:18.540','2025-10-25 08:59:56.231','478928003-3-13'),
('f4cbf12c-4e88-4975-99b2-617680743ea7','743ccdda-3eee-4f87-8835-f0f9348b6b7e',47,47,60,0,'2024-11-25 08:28:40.882','2024-12-05 16:17:58.917','501874784-1-5'),
('f4ccbc18-97a8-4840-af2d-3feb29291447','5c1630ab-9f31-4753-99de-1615c793dd9e',7,105,220,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-4-7'),
('f4d413e4-fdfa-4b12-80e5-6a72d5b22e4b','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',125,67,57,0,'2024-08-07 15:02:49.690','2024-08-16 04:44:27.910','976819499-1-28'),
('f4d4bec8-6df4-4048-8964-1a3681175c54','8c6d3954-b4ff-4e4e-9adf-d9dfddf0789f',0,0,0,0,'2024-09-28 16:27:22.068','2024-10-09 08:37:14.648','478807426-1-2'),
('f4d9b435-80cd-4dde-8dc4-6b0b79f54db2','6d45660b-867c-48d4-bfff-e888d7d88b72',16,160,126,0,'2025-10-22 13:06:42.033',NULL,'776312220-2-3'),
('f4dae7fc-7c99-4165-8406-16d3baebffbb','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-169'),
('f4e5acab-c8b2-446f-98e2-e8d315e3d76a','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-17'),
('f4e67ca7-2d35-4efb-a994-051b894b244c','ebb978cd-58c7-4bbd-8316-d3317348da3c',86,95,65,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-2-1'),
('f4e83fbd-ca22-4caa-8c85-f7331c0906bb','ca1ee87f-8496-46ba-922c-185ea077b969',0,0,0,0,'2025-04-28 07:40:31.232','2025-05-10 20:13:13.998','223963997-1-42'),
('f4e8d735-db67-423c-a6cb-c21b9f930169','e31f714c-14b3-46df-a325-7cbfccab37bf',90,38,34,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-7'),
('f4e9edab-a3ee-437d-9c4d-1e0d7a08e4b0','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-29'),
('f4ea0680-a2b0-4258-971a-da6bf50b1b1a','9d70f812-8aca-4c1c-8fd5-9d9f9fa4bcef',62,57,83,0,'2025-09-16 16:29:17.701','2025-10-03 10:12:10.833','221204525-3-2'),
('f4eb2e6d-c886-4acc-8889-241cf5064960','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:07.248','248284003-1-19'),
('f4ef93e0-b344-4b72-9ecd-e3b46831f05d','b119aac9-7601-45de-85ad-d1df9db63204',70,92,198,0,'2025-05-23 14:05:40.727','2025-06-04 19:42:36.248','371626943-1-1'),
('f4f0a168-bbeb-4a40-8645-d1c334e7ac55','72ef762d-fdc9-4544-903d-79a557b03bde',51,51,77,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.292','437895842-1-3'),
('f4f2b177-b322-4309-b9d8-bae560c8be0a','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-67'),
('f4f32e5b-4880-425b-a00e-ca13ece38937','de8a2a10-9ee2-444a-a28e-efaf3ff1c953',40,25,10,0,'2025-10-20 07:18:16.076',NULL,'644664237-3-3'),
('f4f9f6fc-7447-493d-9df7-69f116513121','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-1'),
('f4fed571-567b-4e87-b55a-4067e86afa0b','c67def51-fe24-4885-9519-ba2b028c3f47',20,17,181,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-5'),
('f4ff7291-ed3f-4073-a635-6daae43d8cc1','227c25aa-0bca-476d-a4de-9a7600d7bdfa',50,50,80,0,'2025-10-20 07:18:10.105',NULL,'59874048-1-4'),
('f5006071-bb35-4a59-a7cb-a590aff6fbc8','90841100-26bb-4ce0-8b37-9712689c76c9',100,100,67,0,'2025-10-06 07:08:40.962','2025-10-13 06:39:52.728','644194590-2-1'),
('f5007f37-ab12-446c-81db-5d744e60459c','f7591348-7d95-45d1-8a05-cc0376cdc4d0',46,67,13,0,'2025-10-14 09:22:17.427','2025-10-23 13:50:39.736','478221533-8-1'),
('f508aaab-611a-4300-adf5-e54d30e64427','7293e408-5350-4662-a08c-c196ced94e89',0,0,0,0,NULL,NULL,'478183761-4-13'),
('f50e54b5-f014-46b7-892c-5caa9e9c6345','0263f7f0-6c1a-4beb-ab78-25d69142647c',45,12,144,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-31'),
('f50fbc39-3e81-4e91-804b-f0f8e5626a7e','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-55'),
('f5117777-f052-4b4f-bbe9-f5ceb7312f35','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',154,25,25,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.784','449582137-1-41'),
('f515847c-f2b9-467d-aada-706d0be24f54','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.205','2025-03-24 16:02:37.296','745547550-4-19'),
('f5172085-325a-4684-8491-597c77f7becf','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.830','2025-06-16 20:21:15.376','750728735-1-9'),
('f51b85d7-aefd-42bb-ae00-9fb8647742fe','c399d22c-b15c-407e-a15d-e96e492fc756',83,100,100,0,'2025-10-14 09:22:25.022','2025-10-25 09:00:30.633','437321677-1-1'),
('f51e9cbe-f386-4997-a1e0-9b235de8656a','d83c40d1-4df5-4c97-bc83-28837db95b2b',212,62,5,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-77'),
('f51fc0b5-47f7-4335-91c2-b99c2c389955','7a998775-22a3-49a7-9475-b06b4e3056af',56,110,82,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-10'),
('f5212690-c96b-4240-a5d2-d36300bdbb50','ff7a7a58-3e7d-46f0-851e-7a15e0f7a061',8,93,193,0,NULL,NULL,'478514572-3-1'),
('f5218593-548c-42ef-953f-bd65ac477a24','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-12'),
('f52610cd-ddd9-42e8-be4d-37bf5747df6d','6b9f8196-1385-4aaa-b181-33cb3a9d6e35',45,45,74,0,'2025-05-09 18:44:00.189','2025-05-20 16:56:17.597','745884226-2-3'),
('f5288ce7-e986-471a-808b-ef2748b388c1','5a89fae8-525a-4de4-8188-2f4d7c892e74',45,5,217,0,'2025-10-02 06:45:38.843','2025-10-16 15:46:11.313','959168443-1-11'),
('f528fbef-af83-4977-8fb8-602891b3cbae','759af5e0-97cd-4a85-95b3-47a047225657',0,0,0,0,'2025-03-08 13:46:14.278','2025-03-18 07:32:03.079','745743577-1-5'),
('f5290de4-5c4d-4be5-b968-af14c3a86213','c94c1c59-1fb0-4cff-ac40-6f7138e5c7d4',103,100,65,0,'2025-02-13 20:43:57.526','2025-02-24 17:24:25.193','786849282-2-1'),
('f52a38d7-82e6-477f-96f2-f05bd10e77a5','6f8fd929-0228-4fd9-a182-83fe855d3f5c',248,93,10,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.513','962908456-1-25'),
('f52a5f7e-2059-45eb-bd6d-7a5b8585d1f7','627df4fc-79c7-4b5d-aa9a-72bc190d4156',0,0,0,0,'2024-08-30 15:04:27.112','2024-08-30 15:04:24.956','248618650-1-29'),
('f52ec0b1-0fc2-47b2-bed5-634992b634a1','aea18323-162d-4a93-9077-c2c03f8305d2',57,82,101,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-4-2'),
('f52eef4f-f85e-433e-ae91-d9c1c58b8ab0','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-18'),
('f5310932-c5a6-433f-bc71-2f777f40eb83','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-94'),
('f5324757-445a-481c-ad41-c68e219c21a0','b5d05803-9ab4-468c-ba3c-4a0e289f571c',97,100,65,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-4-5'),
('f53516cb-a12a-4db0-a572-ee842c6c5596','ca1414bb-a7bd-4f71-a90c-07cd47e79a45',245,95,70,0,'2024-11-15 17:06:24.251','2024-12-01 12:28:01.536','614766744-1-1'),
('f53736b3-ffc6-42c3-9a77-79a2fa142844','46d1512a-2bfb-476d-a224-9390f3e194f2',167,127,6,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-40'),
('f53a9240-ad08-4737-a44b-26e5267af574','2062f856-d39a-46e8-8b06-8b267e9c1d32',130,110,174,0,'2024-08-21 14:53:21.375','2024-08-31 16:53:22.846','448774640-1-4'),
('f53ac497-f984-436e-b10b-f99c2f0e8963','e1668dad-8f77-4f4b-ac6a-4169c3dcef69',0,0,0,0,'2025-08-14 10:05:58.728','2025-09-02 07:46:22.518','478764154-6-20'),
('f5447cf1-9a0f-49ae-a117-e0f726ffbf47','b1f55789-9a5b-474c-8ac4-8b065d55b60b',0,0,0,0,'2025-03-27 15:06:12.626','2025-04-05 20:38:56.958','745717474-2-8'),
('f544e6c7-4958-4651-9eea-bd9c40b2d20c','6fcc55d3-2339-4d12-b5e2-e156727c33f9',83,63,41,0,'2025-09-26 12:39:34.134','2025-10-09 15:52:46.018','412767922-1-6'),
('f547ab29-cf30-4bc8-b5f6-9cc87c2bec1e','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-5'),
('f5481046-0de9-4a09-ae40-baeb34bc7d66','6d0390ef-65ce-4154-a607-d67e51938ed2',160,200,26,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-4'),
('f548e7b0-1b36-45bd-9529-c9d614bbed6e','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-186'),
('f54ab7bb-6894-4c44-8b8d-21d3c2e20fd5','642202df-ca75-465e-8036-f34da2dad54d',0,0,0,0,'2025-02-03 18:19:33.520','2025-02-15 16:08:58.971','20390821-1-34'),
('f54b37ef-8331-4a04-b39c-3481f27eeb93','11bb54b9-d46e-445d-a3df-c44fe0e83c43',55,77,103,0,'2025-09-06 07:20:19.160','2025-09-16 06:34:21.592','598441020-1-1'),
('f54ebc18-7688-4c60-9303-8ab1993354d1','afcaa518-5fb0-4dee-937e-2ac1ba551c72',0,0,0,0,'2024-08-31 13:26:48.335','2024-09-07 15:54:04.720','745449587-1-11'),
('f54f537e-c4bb-4601-ae17-5f2a1cdd10c3','677e3a06-ca47-4aec-a732-695c796dff2c',70,90,77,0,'2025-03-08 13:46:20.372','2025-03-17 14:54:04.694','750498273-1-3'),
('f54f7869-79d4-403e-8386-cc1257020361','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.558','2025-03-01 17:30:01.496','046487702-1-13'),
('f54f88b7-6359-456f-bc90-53bc795e018c','676dc697-7061-41a1-a8c3-abbff4eb9699',98,98,69,0,'2025-09-11 06:33:57.374','2025-09-17 16:03:34.523','437232562-1-4'),
('f5551ff0-b3d8-4caf-b144-f7f4234e1f8b','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-59'),
('f55596ab-2466-4f6d-a03f-9d64fcea13d8','f16367d4-608c-4f9b-839e-44f160c07ff2',0,0,0,0,'2024-09-27 14:05:47.907','2024-10-08 07:16:04.690','478955837-1-16'),
('f556792e-99bb-41a6-8ff8-b8bc16a78d24','71e27182-2847-4dcc-a9fa-a946af03e68a',0,0,0,0,'2024-09-27 14:05:59.920','2024-10-07 14:03:05.575','478836905-1-4'),
('f5646a66-46af-48a0-ab9c-f0e896e74b1b','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-122'),
('f566ce54-2c22-498f-b2d1-68fcd4a56e0c','9f402231-48f4-4e54-b1bd-d47b91ae696f',0,0,0,0,'2024-11-25 08:29:01.481','2024-12-03 21:17:16.301','465891539-1-4'),
('f566d8e2-a5d0-4763-a65d-0a595d1ce994','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-109'),
('f567dfe8-9298-48c3-ab34-be5c39d83d4d','4301b768-4818-4e74-a6d0-12a33474f5c6',8,58,221,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-26'),
('f567eba4-85bf-456f-8e0a-25c59517d4e5','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-36'),
('f5687fea-f8d3-432a-a39c-1205c08a239f','08f19940-4aad-46bc-bf72-01f66d155c84',215,42,28,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-8'),
('f569b7d1-2d07-48ef-9992-11872412b663','c8c71d91-2b37-4436-9ed8-0951d1d5f455',0,0,0,0,'2024-04-08 08:57:38.396','2024-04-29 09:09:14.834','412157634-1-1'),
('f56a140a-9678-4661-9c37-a81eca1be303','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-56'),
('f56a6449-82e0-4f8d-aa48-19a734d67588','b7289916-10ec-4fda-9aca-6352d7145509',0,0,0,0,'2024-11-02 08:42:50.062','2024-11-09 11:12:20.375','248259363-1-5'),
('f56c9f56-de65-4314-9f48-b0604d16f5d1','20258a0e-ffcd-40f0-ac30-ddc851f0dedb',95,122,70,0,'2025-08-25 12:31:57.181','2025-08-30 18:25:16.939','27829651-1-3'),
('f56e6e4c-1c49-493f-841a-291cf0996cf4','e18dd217-d468-4cce-bb3c-ef35afcb8de1',189,105,32,0,'2025-07-29 12:58:39.024','2025-08-08 12:23:34.910','598444930-1-1'),
('f56e9f65-c225-447a-8c4c-04918734558a','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:08.448','248284003-1-112'),
('f571b19b-a35a-4c94-90c9-dade07de77f6','b01735c9-3a93-4f17-a2c3-6ffc83733415',0,0,0,0,'2024-07-02 08:20:00.864','2024-07-27 08:40:02.115','448153102-1-8'),
('f5762d06-cb37-44f8-9daf-34fb8a52f8e8','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-22'),
('f57781dc-65da-43f9-9c7d-156fe4b84b84','6c43de3c-5454-4dc3-8fc2-6cd719969299',48,10,196,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-4-11'),
('f57b5c6c-50f7-4bd0-9529-ac976cc4a038','a47f492e-2cab-452c-b1d9-41fc02188b9d',0,0,0,0,'2024-10-11 16:08:52.473','2024-10-25 13:20:24.186','478816607-1-13'),
('f57b8f2e-4c9f-435f-870d-df3dd9d58300','818cc8a8-dddf-4530-bc28-57dda4fdd6ca',0,0,0,0,'2024-12-28 21:42:39.991','2025-01-04 10:47:19.840','428752676-6-14'),
('f57eb962-0f6c-4d4c-81f7-013c0f473379','36ced38f-51af-4146-9bd7-7f1d6c0f4201',94,80,98,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-4'),
('f57f2bc0-60e7-4d50-a40a-deb5ef239a8c','40d58b2c-a3e8-4cab-a242-12a641f6f94c',90,75,85,0,'2025-09-26 12:39:13.890','2025-10-09 09:24:47.314','319585140-2-5'),
('f5851b21-e746-4daf-a614-64e3d550a389','6a2d762e-11cd-4fca-b32d-cdba41391e25',80,61,5,0,'2025-04-21 06:13:43.144','2025-04-26 17:54:46.254','478483851-2-21'),
('f5855e1a-98b7-48fa-95e4-01017a3a7bfb','3e68a7e1-b64d-4ae8-830f-cb72c4eec04f',13,90,168,0,'2025-10-09 08:39:52.751',NULL,'011940661-2-4'),
('f58576ff-482b-4eae-a77b-071d9fc537c0','6e112730-220a-4c2b-82cf-28a80fa0549b',1,1,1,0,'2025-08-21 07:15:17.303','2025-09-03 19:36:05.327','412252365-1-1'),
('f586bb19-5f56-448a-aeec-e48b24c252b0','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-52'),
('f587faf0-d17b-4734-8221-d7609ff39538','76087092-4086-4cd5-acc6-7f775e746dc2',98,100,65,0,'2025-10-20 07:18:03.600',NULL,'644178445-2-6'),
('f588f583-dc5e-4379-990b-d4d1dda1f3e7','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-42'),
('f58936a3-2870-4bcd-8a50-87b6ead14d88','19c6a32c-4384-451a-aaa5-dfc264ab827b',72,98,10,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-24'),
('f58a5fbd-df38-42e3-aeb3-e38a45fc6b0d','5c990e83-628f-443e-afbe-ea1650122f59',157,30,100,0,'2024-05-17 09:42:07.069','2024-05-29 11:18:15.877','126649227-1-9'),
('f58daae6-d575-4e66-a064-9cf4e2e33058','3e9ad985-6246-4d8d-9572-1013d4c7f16a',85,57,63,0,'2025-10-25 08:59:22.001',NULL,'221811614-2-3'),
('f58dbbf3-9302-4c7b-877e-1e63c1e44467','b7555f8b-c7b3-47a1-9da3-7ab0e3ce38ef',40,12,62,0,'2025-01-26 10:54:44.964','2025-02-07 11:19:08.733','428519862-2-1'),
('f5970a81-f614-4fde-b9e5-8f1b360add2e','8d3fa788-c77a-4035-9d01-ee54f43ff9d3',115,74,10,0,'2024-08-07 15:02:59.362','2024-08-15 10:31:04.498','976577497-1-6'),
('f597dbd1-1bbe-43a4-9883-f389a0759c37','2ab41284-325e-4735-a02e-0af4784fee90',135,182,6,0,'2024-11-21 10:29:03.972','2024-12-15 17:44:32.459','982844191-1-3'),
('f5982815-7ea0-4d68-896b-364ee3b14a74','e8dc151e-1148-4a48-ac2a-d4fb2c761969',61,48,16,0,'2024-12-13 14:49:17.728','2024-12-22 12:45:29.546','428178028-2-13'),
('f598b3f0-2afa-48c1-a709-02517d1cda42','f07edaf3-4ca5-419f-b3b3-4879db77fade',0,0,0,0,'2024-12-18 09:31:02.325','2025-01-12 11:17:43.261','735293129-1-13'),
('f59aa3f8-bc0a-4556-b68a-098f92903014','232aef2f-2a0e-4051-91eb-86b776ee4800',53,50,6,0,NULL,NULL,'428372230-1-1'),
('f59b4587-284b-4241-95a4-be76dbbb24cc','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-30'),
('f59b71b2-b534-4e4c-98db-fd6756307b23','7defd633-f7ab-424d-8029-028d1b045752',42,20,65,0,NULL,NULL,'501119446-1-26'),
('f59d798d-53d0-4b66-9a1c-a274a68550a5','c5027968-9a23-442a-bebc-9b8745408960',203,3,80,0,NULL,NULL,'982759064-4-12'),
('f59f1ad8-d9bb-42bd-b0e3-780ec5ca1983','8157b818-4170-444e-80f6-034d8ed1efe0',97,198,8,0,'2025-09-18 15:49:13.951','2025-09-27 08:39:24.169','644832811-2-3'),
('f59f7a74-7904-4b0e-9c9e-5096315a9ede','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-48'),
('f5a23d6c-9ce9-434d-baf9-92dd1e802e59','384c6719-2d91-4530-8e9e-3ddd44fc84ef',43,37,180,0,'2024-12-07 09:32:05.761','2024-12-20 14:35:02.738','248421874-1-4'),
('f5a564ff-10e6-4268-87cd-0edb3758fcc3','78c00f0e-6309-4c72-aab8-b64114f8cb00',0,0,0,0,'2024-06-14 12:06:04.166','2024-06-25 14:26:35.042','745502887-1-1'),
('f5a6c940-6149-4ac4-9cae-c376374c258a','a322199e-9388-4cdc-a475-2497cf269eef',0,0,0,0,NULL,NULL,'501589922-1-13'),
('f5a8e337-6ae2-4e14-8d2a-604fa9d4a9fb','e6926bc5-329d-4d61-83dd-48f9c965a5e5',77,44,122,0,'2024-11-15 17:06:39.849','2024-11-27 08:20:23.084','614990703-2-1'),
('f5aa7027-8758-4811-ac6b-00f5ba152bdd','4d774313-0c57-42b4-b263-88ca731f6f72',55,79,101,0,'2025-10-14 06:22:27.267','2025-10-25 09:00:41.405','817288476-1-1'),
('f5ab04fa-55b3-4a69-903d-1adb52668a73','e2bd03d4-b1d7-4aaf-9a81-6426a4e13a58',0,0,0,0,'2024-05-08 18:43:05.132','2024-05-24 07:08:13.556','478971881-1-8'),
('f5ab8fad-ce3a-4927-a4ed-b263ed159e40','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-120'),
('f5ad37a9-3b28-4eb9-83ba-078effffe2a7','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-18'),
('f5afaa1a-1d87-48c1-a28e-0e74d6037683','c37afb63-e442-499b-a52e-405f6d0d0685',235,80,95,0,'2025-02-09 09:51:19.901','2025-02-19 18:37:39.233','45527400-1-3'),
('f5b0eeff-71d4-4ac4-b874-6261bffc4305','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-95'),
('f5b329b0-4422-4842-badb-5a767ff2cee0','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',84,42,7,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.072','412586204-1-171'),
('f5b407a1-9b3f-4048-b75a-9969d14eb627','7b007afc-001f-46b1-8277-2ca432b6f3ae',66,52,80,0,'2025-09-24 11:01:32.010','2025-10-05 12:15:21.538','598903023-1-6'),
('f5b6b71e-6018-4bcd-9d89-1ff6ae086fe5','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-83'),
('f5b6c384-527c-4985-ae22-78eef2f9c12c','bf2fbd97-6d0f-4724-b25e-47e019854e49',56,207,6,0,'2025-07-12 09:20:33.059','2025-07-23 06:22:07.807','745212688-2-21'),
('f5b78d54-35e5-4c5e-9d64-56f08fdc1643','0cec28fd-4d59-4786-8895-12736ccf55a1',60,61,90,0,'2025-07-17 09:36:44.598','2025-07-24 09:43:16.475','644682734-1-1'),
('f5b7c7c1-4e61-4938-8e5d-60eafeb24181','7d75236b-0ffb-4e2a-9b72-d8f6af6680ca',175,75,75,0,'2024-03-14 13:50:24.592','2024-03-22 10:14:41.904','982744560-1-2'),
('f5b94755-32e5-4201-a483-dd25ebb9a739','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-14'),
('f5b95609-58b2-4e3f-98dd-e9facbb2c1ad','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-88'),
('f5ba9399-f250-41e9-9fad-32b73bb6a0ff','a5626ae2-9a5a-4401-9095-a368c22814f1',215,40,7,0,'2024-05-08 18:43:37.958','2024-05-17 18:53:05.584','42845475-1-30'),
('f5ba97fd-c8fc-4e72-9159-8605f57c0116','76fbefc2-a286-43f6-ad72-bfd2c3a8078d',96,19,13,0,'2025-02-15 13:31:47.546','2025-02-26 13:43:22.913','982573889-1-3'),
('f5bd2bae-d72a-4c06-aaff-c7b741cff4ca','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-6'),
('f5bdee38-0010-462c-add2-e40e159b1e23','5c640f3f-5ef6-4e00-9fd6-043769b51089',0,0,0,0,'2024-03-31 17:55:13.903','2024-04-11 06:21:34.868','478180584-1-6'),
('f5c0c239-6317-4a53-bbd0-d6d968fad4d8','c963e491-0fcb-4cdd-b9dd-30206dae36ee',63,68,85,0,NULL,NULL,'351183541-3-1'),
('f5c2976a-b83f-40cd-973b-4f5742f107d3','71186865-547c-4404-a1d3-c309f2152015',95,75,210,0,'2025-10-14 06:22:07.545','2025-10-22 07:00:39.223','412722649-1-4'),
('f5c30c7a-6d55-41e0-8587-825e8450b288','80807bba-285a-4a36-82ce-d97c3250e5df',205,125,70,0,'2025-10-22 13:06:52.544',NULL,'786146097-5-1'),
('f5c77679-7ebe-48d9-8f21-37652de4ac45','67953d65-9e42-4bd4-ba82-9abc59b5e4a6',7,142,142,0,'2025-02-23 12:39:05.238','2025-03-08 13:57:34.185','127659069-2-2'),
('f5c77b6d-2f3d-41fb-bb91-edbcf6cc1244','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-108'),
('f5c9affb-8445-4284-87d6-3978d6c28322','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-159'),
('f5c9e413-32a9-4328-8876-73bb061e1512','7c1529b0-a1d9-42de-89db-04929ab6f8bb',0,0,0,0,'2025-02-13 20:44:10.933','2025-02-23 09:31:30.069','858708990-1-3'),
('f5ca511c-249c-4b82-b4b4-561df7a2f4a5','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',117,100,70,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-3'),
('f5cb458e-66a2-40f5-a21a-65cc7660ca83','b5f81ffd-0a34-49a9-8ff7-1cac1067fdb2',92,95,70,0,'2025-06-11 13:14:26.407','2025-06-24 06:24:22.448','91034652-1-4'),
('f5ccc56b-91f7-4464-8ab6-67b18f64b3d6','243bf136-94ff-4e73-8eaf-8fc7da0321d5',46,75,29,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-5'),
('f5cec388-6b85-4cc1-bed7-69f6755a5dc8','7ba47169-83ca-49a6-98fc-6ef1a1990eac',210,57,6,0,'2024-03-23 08:36:13.267','2024-04-03 18:54:43.526','982630175-1-30'),
('f5d03667-a24c-413e-8989-f9f70966b781','6ae0233f-f2c2-44bf-9706-7274e4c923e9',95,95,7,0,'2025-03-27 08:02:37.202','2025-04-09 12:54:30.745','412149383-1-2'),
('f5d1bdb2-2635-41b2-9cd4-ae5e3041cfa8','f977c922-fb1f-40e8-98e2-ddd7e1448255',44,26,162,0,'2025-02-13 20:44:06.626','2025-02-23 09:31:35.498','98258846-1-1'),
('f5d24f06-00d0-402f-a70e-667c9e75f924','107fdebc-b61e-48d1-9c8f-84ffa2681dcd',70,100,65,0,'2024-11-21 10:29:00.131','2024-12-15 18:03:37.216','982692076-1-1'),
('f5d9893a-279d-4a7d-b893-7533ed4d0ebb','e7f31a78-648d-4a5e-9111-1bf7db38dd79',207,68,54,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.460','501216728-1-36'),
('f5d99475-c477-4116-a9c3-e87b8eb5637e','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-25'),
('f5dcfa57-551a-4396-a7b8-5f69e42261d2','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',9,62,182,0,NULL,NULL,'47816855-2-7'),
('f5de9ffd-20de-4005-99f4-9ef4aff4a5c5','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.378','2025-01-07 19:30:46.445','478681299-1-6'),
('f5e14893-417a-48ac-88e4-0216e258f991','de3d1881-c5ca-4244-a03d-15cbe8813eef',146,15,135,0,'2024-12-23 12:00:49.563','2025-01-04 10:37:10.815','428990953-1-3'),
('f5e1db39-c205-4fa4-9c89-81979e998858','4e9b1219-3006-400c-b048-bd8852cf7690',50,12,20,0,'2025-10-08 17:43:55.637','2025-10-17 20:57:44.720','750355737-2-3'),
('f5e316b0-95b3-48ec-8756-1f1baa56189f','db7058ef-de6e-444b-b25a-dfa474ba7bcf',105,65,6,0,'2024-10-11 16:09:08.700','2024-10-24 15:20:12.875','501981507-1-12'),
('f5ead6d2-b71a-463d-953a-760276a8324e','7f086af4-7f94-4b2a-8e93-97605ab16c61',56,102,72,0,'2024-12-01 06:47:53.634','2024-12-12 07:41:38.687','162733891-1-7'),
('f5eaf173-45b5-43e3-9ef9-e56c4c025c96','c67def51-fe24-4885-9519-ba2b028c3f47',8,25,196,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-6'),
('f5ebe85b-6213-475c-9f93-cd6f8cc4c2f1','1c55b4e5-54ce-4848-a88a-545a632bcd68',220,100,70,0,'2024-08-21 14:53:10.288','2024-09-02 08:33:34.977','428225143-1-5'),
('f5f15d95-eaec-4d27-b59f-ae2cab0a54fb','76174516-6ecb-4a7f-adb0-854020b4e986',0,0,0,0,'2025-04-25 16:57:03.275','2025-05-02 06:59:43.486','412384414-1-6'),
('f5f46e92-d448-462d-a958-0b5d4be24703','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-24'),
('f5f5ce6c-7f8c-4273-b8fb-bd37f1558842','f597d107-44bf-4b60-8613-7fa2af665356',0,0,0,0,'2025-10-02 11:20:37.540','2025-10-15 08:32:47.506','745970479-2-1'),
('f5f72771-a271-4a7e-9380-22072f1ffed9','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',111,212,6,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-17'),
('f5fa5224-7a54-43c9-a059-9d0f1ace9bdd','d4f91387-af40-4672-a65c-7ea6e96f76b2',57,8,84,0,NULL,NULL,'478350685-7-13'),
('f5fad6ee-c0d6-40da-ab62-2bbb7983866a','92a145d8-7167-461b-8674-419e94785674',80,90,47,0,'2024-12-07 09:32:50.488','2024-12-16 21:29:53.974','910120533-1-4'),
('f5fb9b4c-4313-44be-80d3-181d1059a669','7a1d10c6-318c-4046-8b6a-010e311d53c3',51,51,77,0,'2025-03-27 15:05:40.095','2025-04-07 17:18:55.363','644481653-1-5'),
('f5fc4c7c-04d6-4c68-9fb3-b84d2dd28c3e','b79348bd-6b0f-4bf7-9a46-0e0654fa8fd2',100,70,235,0,NULL,NULL,'745883224-4-4'),
('f5fe1d64-f445-4ec8-9c26-4dc057942375','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-4'),
('f6013896-35a1-4a00-87f5-19fb0d4959cd','b4b901d3-9cd2-4740-9982-7eb46cabc80e',97,101,70,0,'2025-05-23 14:05:54.830','2025-06-03 13:20:22.991','37142091-1-3'),
('f601cd0f-0c65-40f5-97d7-f696ee0f6c6a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-84'),
('f6026b2e-eb53-4844-b591-434d89ac7899','01be5e85-2bcb-4117-9ad4-5f2afa75468d',101,120,80,0,'2025-07-12 09:19:04.380','2025-07-18 06:24:51.288','745907299-1-7'),
('f6064df6-0a88-4f04-8a61-46a548575682','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-67'),
('f60bb6e2-e71b-4528-9a1e-2aee15dc26a7','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-61'),
('f60e62eb-71dc-4373-b20b-8fd95a7f2aa5','089780c6-b58e-4ac0-92d2-370a4fcea327',40,40,175,0,'2025-08-21 07:15:15.580','2025-09-03 07:07:54.141','803828322-1-5'),
('f611d97d-8d12-46d9-a324-4a7c83d8ea98','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-11'),
('f6173f7a-f558-4aed-94c1-94dbf0380134','c5027968-9a23-442a-bebc-9b8745408960',13,61,87,0,NULL,NULL,'982759064-4-10'),
('f61765c7-59a5-48a6-a732-cc8df53a65f9','b44449c8-5efa-4085-bd2d-0a3594587af9',13,16,78,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-10'),
('f618c1c0-70a0-4b12-a222-befc9daf5c03','0ea49f4b-5c5b-433d-8eb4-379379e4da2b',0,0,0,0,NULL,NULL,'478778771-1-2'),
('f6191403-41b0-4d2d-bc33-a5045bb152ad','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-23'),
('f61b2d69-10d1-4a8c-8255-948352956c5d','99667d92-dbf0-44c9-b845-b66e678f2675',51,51,77,0,'2025-09-18 15:48:53.753','2025-09-30 18:47:42.065','43725194-4-4'),
('f61bf14f-7a1d-432c-a361-ce7bcb7887fc','3570bcaa-ac5e-4b90-8759-34202e2c5a95',0,0,0,0,'2025-02-13 20:43:36.180','2025-02-25 17:03:34.985','74594372-2-6'),
('f61d7278-8606-4ff4-a866-226251291a96','101fe1dc-6f3b-4fe9-9ba4-3209e706f9e7',0,0,0,0,'2024-09-06 12:28:05.411','2024-09-12 10:55:22.231','107394609-1-29'),
('f61e777c-6fa2-4349-9c9f-6f3d27bd09af','48a52c80-382d-403a-8339-88f26052eec2',69,3,86,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.399','745808994-3-8'),
('f61ec3c0-6ae3-44b0-993b-2a03b93562e8','d5c9edc9-e34d-4552-a68d-baa81019cc01',0,0,0,0,'2025-02-09 09:51:42.962','2025-02-17 21:43:03.874','46558561-6-9'),
('f6227bdb-4f6c-411d-8346-82f198863193','32d1c391-0e5b-405f-9de8-09be33931280',0,0,0,0,'2025-02-18 16:37:05.644','2025-02-27 16:38:52.610','655644248-1-1'),
('f62dc655-c4b0-4b6e-923e-05cf122bdd8d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-142'),
('f62f739f-2e00-410b-8ff0-54e6f6da7395','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-143'),
('f62fab37-ac03-4bb5-b872-8ff5229fcf06','55155cc4-3303-4c8d-8138-cd049d9c0cad',126,28,204,0,'2025-03-06 10:32:04.578','2025-03-15 15:59:20.665','31922563-1-15'),
('f62fce82-8780-43e5-9d94-68712120a3de','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',135,238,10,0,'2024-05-17 09:42:03.608','2024-05-29 18:58:51.799','428602278-1-39'),
('f63714a0-2ed8-46fe-97b8-177fe85e347a','0160bd7d-4252-4538-9caf-86b1b4ded292',0,0,0,0,NULL,NULL,'517274063-1-1'),
('f639d43a-a7d6-4b1e-8ba6-d6dcf8c5047a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-91'),
('f63b807a-924b-4925-b178-1e86771a6a82','76a2428a-03ce-4963-840e-a672a1e50555',0,0,0,0,'2025-03-08 13:46:25.289','2025-03-15 08:58:11.901','750135738-1-10'),
('f63cbea3-2a85-4e9e-8786-2606d5c0ac3a','760f21e5-1c75-42b2-8444-f3a44aa66d10',85,95,100,0,'2024-08-21 14:53:13.136','2024-09-02 08:33:30.133','501869420-1-3'),
('f63d446b-6b26-4f3d-accc-8dc97f19257f','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-11'),
('f63eb5cd-fb6b-4de1-904c-9d272e632bea','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',0,0,0,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-4'),
('f63f7ab2-3aa3-4c66-b7e5-a99fe9b09a24','45554c4a-4aeb-4b67-b09d-ee427b71d844',0,0,0,0,'2024-07-03 14:35:44.282','2024-07-18 07:31:41.176','478418480-1-1'),
('f64376fe-72b7-40b9-a827-47cffbec1964','0009aeec-e682-465c-b701-363a3ef377a6',120,105,8,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-90'),
('f64d239c-106e-4763-8d52-71de5aca0260','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',230,95,80,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.073','412586204-1-172'),
('f64e1c09-0719-4198-964c-2ab293f98919','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:34.125','248135683-1-40'),
('f64e9231-0cd9-4c6d-b7fe-96ebc286dd59','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-1-12'),
('f653a81d-14f1-4384-9be9-18e063dc8406','06ecaa73-326f-4922-8428-6c87a0be1bc2',78,55,100,0,'2025-07-12 09:20:22.021','2025-07-24 18:03:55.704','478545457-1-2'),
('f654273a-5b93-4a54-8379-56278acea350','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-6'),
('f655cf6c-7fce-4a6b-948c-a36ca5c6e1f7','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.868','412346704-1-29'),
('f656ca77-1078-4002-96e5-295e7045ad76','090b9a06-aee0-4c02-b626-f3e2002f0fce',100,75,240,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-30'),
('f656d326-e3ec-45f6-b183-d55dace42e0c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-110'),
('f656f6a8-ae4b-40b8-9431-9f24a24104e7','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-25'),
('f657eea1-672c-4f76-b534-7de5675a54fb','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-14'),
('f658114f-64ed-4d8e-bf3c-5d73e4c38c4d','a58974d4-6673-4e6a-aefe-45d928cd20dd',87,211,70,0,'2025-04-21 06:13:40.051','2025-04-26 17:54:55.474','745252636-1-1'),
('f65a9396-cf75-4c20-a442-c9a53522fce0','b223dc88-3efb-4856-8664-46283f8ac4d5',0,0,0,0,'2024-12-13 14:49:05.696','2024-12-24 12:30:47.747','735553146-2-33'),
('f65ba801-8887-4730-b0bb-9836985ad356','81d0dc47-7670-4778-9132-e810a9a4d368',68,88,15,0,'2025-07-12 09:19:04.381','2025-07-18 06:24:51.289','745907299-5-10'),
('f6629338-7508-4bc7-b6bb-2f646581eace','74eb1177-dbbc-41ab-99b4-94c187603621',51,76,50,0,'2025-01-26 10:54:50.116','2025-02-06 09:24:57.746','22162472-1-3'),
('f664e70b-864b-4e45-94f7-373e824c3d7a','9c0a403b-3774-44a7-a51a-e2417d862ff5',0,0,0,0,'2025-08-25 12:32:29.250','2025-09-20 18:54:33.575','478983907-2-1'),
('f667d6c5-e4a8-42b9-89c2-3e8d44906aa1','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-1'),
('f66af5bf-015e-461e-9af7-e09588bab060','7fbc0cac-4c11-4144-b578-3223cd9dd90a',48,223,8,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-31'),
('f66d64c9-2be0-40d0-87fa-abf7c8ebb1b5','7311f1e0-e2be-43dc-9e40-f94a010e8939',83,58,11,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-55'),
('f66df98f-4700-4b98-be38-4eb8f25ff1d8','a769cd75-8095-4eeb-999c-d1a749589a77',300,27,12,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-12'),
('f67221d3-7f94-4e46-aa90-6246938085d8','6cf15506-e6d2-496a-a50c-1bddeb987a1f',36,92,92,0,'2025-07-02 12:43:21.222','2025-07-23 14:29:06.682','982240405-1-6'),
('f673cfaa-906e-45a4-adfc-aa0ae1469132','2eeeec42-3306-4154-bcd5-56e769835168',0,0,0,0,'2024-11-25 08:28:52.408','2024-12-04 13:09:46.997','22133183-1-10'),
('f67570df-ba07-4637-9958-6726151780af','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',50,10,150,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-10'),
('f67592d9-3eea-42ed-8a5a-3e74fb80fbd5','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-1'),
('f675981c-7f35-477c-b5cc-b2292d020c85','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-115'),
('f678f6d0-968e-4d53-8848-bcdcb4af9141','301c929a-118a-40da-840a-bd30cca73b0f',61,52,52,0,NULL,NULL,'221817193-1-1'),
('f67f1e1b-5ac8-4017-8f08-3940799bb0fd','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-119'),
('f681f629-25c7-4f7d-821d-e65ab5a6ed9b','5e048b22-34db-4d5f-9247-201f664d4e80',82,98,116,0,'2025-03-27 08:02:45.329','2025-04-08 15:37:42.158','644653229-3-5'),
('f6837bc4-f765-49b9-b9a1-a2e41cdbdb68','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-98'),
('f6845908-956d-4b8b-bc44-25e8bd31b098','c98f6188-56c5-4870-be97-be71cf95f62e',55,40,223,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-16'),
('f6863439-799b-48ff-aa96-7cffb840bb7f','9c0a403b-3774-44a7-a51a-e2417d862ff5',0,0,0,0,'2025-08-25 12:32:29.250','2025-09-20 18:54:33.575','478983907-2-2'),
('f6886aca-8dcf-4073-9ea8-373caf7758f0','35c4972e-cf76-4c25-83ec-77219621c69a',0,0,0,0,'2024-12-18 09:31:26.960','2025-01-09 16:51:53.935','735329890-1-2'),
('f68a107b-5146-40b7-975e-18b803e3efd9','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-28'),
('f6907c4c-d982-4f8e-a919-789822c7000a','45f16bc1-59db-4629-8d43-de6334e2fc13',52,64,81,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.046','371365041-1-6'),
('f69178df-b64e-4d03-9a0b-419dea2723f8','87d144ec-833f-4749-bc8a-7b5dc3b8b776',80,33,52,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-2-2'),
('f6941064-e74f-46ee-861b-91f9c6c25dd1','c399d22c-b15c-407e-a15d-e96e492fc756',83,100,209,0,'2025-10-14 09:22:25.022','2025-10-25 09:00:30.633','437321677-1-3'),
('f6962136-9d72-4fe4-a105-5bd0df09c4ef','28223dc4-584c-4860-a9ed-37d655d745d5',66,52,80,0,'2025-07-17 09:36:45.848','2025-07-24 09:42:54.056','37183091-1-6'),
('f696a624-1ecc-4492-910f-724639b83d0c','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-10'),
('f6986343-56ad-4c2c-a968-21b4521b33a5','e89e7d75-4967-4c63-9f73-981469e531af',136,57,26,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-45'),
('f698d384-0dae-4a70-90e9-218e6b0b2ce6','dc8e55e7-8dd8-4562-b3d3-152cbc87bf30',160,200,29,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.784','449582137-2-1'),
('f6998a3d-2bf3-4704-8010-5ee0f40a8963','edc08d79-62ec-4e16-9aa0-527b372f7ec8',0,0,0,0,'2024-10-23 14:11:50.359','2024-11-04 08:40:46.659','478778961-1-22'),
('f69a1730-f06f-40a4-bb71-bea32c65fe74','489fd382-992a-4062-80fa-06d0adc63c50',56,83,100,0,'2025-07-19 07:51:57.710','2025-07-30 08:02:07.303','750505145-1-1'),
('f69ae26e-01e6-41c8-808f-f0cf2cd376b9','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-68'),
('f69c42db-ea60-452b-8c8d-4d3074fc30d4','04dff17a-2b9a-4f35-a082-5684dfe5706f',95,37,17,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-21'),
('f69e2b86-6035-48c8-9da7-9de67dacdd9b','54ecc723-511d-4e08-bb59-481cabdb46bd',70,70,85,0,'2024-11-15 17:06:06.781','2024-12-01 12:28:33.543','982333020-1-3'),
('f69e91df-d4f1-4449-9493-d861b3b66b84','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-61'),
('f69e9279-0197-433e-968c-93076b95422b','7d19eaba-df15-41dc-b313-422bc8ab516b',124,70,100,0,NULL,NULL,'53182437-1-3'),
('f69fe33b-fcc7-4f43-99df-2cb1aefbe959','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-77'),
('f69fff46-50b5-4905-82fb-fbc7a8aa977e','49b0262b-aeb4-40b0-bdcc-b5461a64c972',70,43,4,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-12'),
('f6a151f5-ce6e-4a7d-b596-0b2ba6f53fd4','211ec422-ff31-4a6d-8829-2e78be0611f7',106,37,230,0,'2025-10-08 17:43:27.388','2025-10-17 06:15:22.782','011716616-1-4'),
('f6a58ad4-1a20-4a46-a416-2621a09ff69e','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-144'),
('f6a9888e-f1d6-4d02-bd1b-3162a5a80d7a','6fcd8160-ca06-46ab-a691-51de5c394793',17,10,116,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-28'),
('f6ab550c-b1f4-4fe1-9186-29d0effeb8cf','faebcca0-46de-45fa-9329-665a09e1afc7',44,43,82,0,'2025-07-19 07:52:15.651','2025-07-28 12:02:34.929','371944289-1-3'),
('f6acab52-d8e2-43ed-93ed-e63c4e1816b4','d176a715-bd33-47f6-bcb7-f384e079f39a',182,124,28,0,NULL,NULL,'501724603-1-9'),
('f6ae7000-66fb-4426-9ad1-66106dc7d046','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-6'),
('f6b27c92-f6bd-46fa-a46d-7c08c8791317','daa88a63-2ece-4786-a082-938c1a50dfc2',0,0,0,0,'2025-02-15 13:31:41.746','2025-02-27 16:43:01.175','910759399-1-5'),
('f6b5774d-60d2-4ba0-b23a-389cc2a6418a','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-20'),
('f6b6feb4-c747-4628-b0dc-96b8c49d941a','e7970481-a437-4f3d-aa64-f80785cabcb6',56,146,151,0,'2025-08-27 19:40:05.559','2025-09-05 08:51:03.383','371691350-1-1'),
('f6bb8897-e21f-4433-979b-042625938739','79dda02d-fdbe-47ab-8814-5f865669b56f',0,0,0,0,'2025-07-08 11:31:21.040','2025-07-24 06:26:53.166','248883377-1-26'),
('f6bc70be-18c4-4011-a6e8-5cd9e4133d9e','d3d4bfdd-72be-46ff-be79-662e22aba9f9',255,75,100,0,'2025-08-25 12:32:29.251','2025-09-20 18:54:33.575','478983907-3-3'),
('f6bd8d90-1f3d-4c25-b04c-ed0e14a29d74','1e93bb05-0346-452a-9f28-69769dc6bc28',0,0,0,0,'2024-03-16 14:34:10.449','2024-03-29 17:57:29.898','734957360-1-9'),
('f6bf277c-0d24-4450-b504-0c2cb1badb4b','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-47'),
('f6c679a7-bb11-4bfc-9e7e-48a56025fd2e','ce29df58-4e14-4d97-a9a2-c908fd7145a6',205,75,88,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-4-2'),
('f6c903d0-d66f-4ede-9181-084eadf2083e','95ae858f-49b3-42b7-9b2f-78a022e0217b',0,0,0,0,'2025-08-15 15:03:10.426','2025-08-20 06:14:48.112','478302796-2-2'),
('f6cc6531-cd34-4f58-8954-1e91a693fe9c','e89e7d75-4967-4c63-9f73-981469e531af',53,55,8,0,'2024-05-29 08:53:20.530','2024-06-10 13:49:53.436','319835776-1-46'),
('f6cd0597-6eb3-4a0f-9347-f2ca3a3734ff','5c21191d-62ae-48be-82f1-4e75dca1edcf',0,0,0,0,'2025-06-11 13:14:31.977','2025-06-20 08:45:23.213','817239122-1-4'),
('f6cdc0c4-2856-41c5-91da-fee476f72fa8','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-17'),
('f6ced801-afdf-4d65-843b-127fa38337ea','a5626ae2-9a5a-4401-9095-a368c22814f1',240,100,70,0,'2024-05-08 18:43:37.958','2024-05-17 18:53:05.584','42845475-1-31'),
('f6d01646-05e7-4317-bba7-2fbf7e3fc2a8','5defa65b-c736-4108-94c5-e25a26e975c6',53,77,102,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.885','371823380-2-3'),
('f6d220ce-91ef-49ae-ad59-1de95bbe855a','7360cf59-fdde-4259-88ae-e20574f2ab94',50,75,75,0,'2024-03-31 17:54:58.828','2024-04-17 10:16:21.037','100605954-1-5'),
('f6d257ce-1f96-4453-be79-db7dfa5f3f91','c1d25f90-d493-406d-a430-9b65b4f44c5e',11,59,258,0,'2025-09-26 12:39:41.767','2025-10-10 21:30:06.017','745906539-2-20'),
('f6d41b7a-968f-4275-8486-8d02f6c8cb6f','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-22'),
('f6d5b41a-333f-4255-8ea0-2ecf8cfbc684','ec52a31d-c17f-41c6-9e4b-ece376aa03b2',100,110,73,0,'2025-08-15 15:03:00.926','2025-08-21 16:37:01.898','437427529-4-3'),
('f6da7db3-7df5-4957-bcfd-5dfb6593968b','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-8'),
('f6daf673-4444-4d46-a020-27956f43525e','1087586e-034f-4ec1-9828-d61ce37a1821',123,120,60,0,NULL,NULL,'478153975-1-10'),
('f6dc0ccb-595d-4c0c-8428-d7cc433db4a5','584c7d21-1cda-4d31-ace0-5cdb4484dc36',160,200,28,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-1-4'),
('f6dfc484-c382-4ff4-9de3-8660ab494611','129708ec-ae71-4363-b219-de04734f5e75',76,101,53,0,'2025-02-27 16:45:23.019','2025-03-13 09:28:46.199','248291895-1-7'),
('f6e0364a-d233-497a-bf26-3056e8d88431','04dff17a-2b9a-4f35-a082-5684dfe5706f',40,205,7,0,'2024-10-17 11:51:18.659','2024-10-26 07:31:08.053','412119334-1-22'),
('f6e08e7d-cda6-4739-a8c6-00745bd38fdd','ac31b261-797e-4d80-b750-2e487b9e012c',75,58,102,0,NULL,NULL,'221383692-3-3'),
('f6e4f7ad-691a-4c70-a49c-47d2868a84b9','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.310','745859135-1-23'),
('f6e53afc-97cf-4bd5-ac9c-2e8a70afe225','7ca3b25f-8c08-4c50-b102-4ea800c2c2fb',163,92,15,0,'2025-05-24 17:55:30.526','2025-06-03 09:41:29.120','37152330-1-3'),
('f6e7f550-bdb8-4865-b42f-e38f11a8efa0','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-15'),
('f6e90791-abb1-4a13-a687-e0f9e4bb5b2d','dc798597-99e0-4d8d-9de5-8d8eb74d7e70',0,0,0,0,'2024-04-08 08:57:35.952','2024-04-30 22:31:30.199','745531225-1-13'),
('f6e93f39-ebdd-4ac1-90fe-5c91f477d801','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-143'),
('f6e9dd04-5d48-4f41-908e-33d334b7e712','b6b84af2-002e-42d6-8888-913741571a16',33,33,190,0,NULL,NULL,'598944852-4-5'),
('f6eebd1c-096f-4a0f-8e63-676dbd99fbe7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-54'),
('f6f1e795-be35-499f-b6e0-6c83aaf8833e','a135c145-15f3-450a-819b-e82b427bc978',110,240,85,0,'2025-03-06 10:32:01.718','2025-03-16 11:52:20.007','904863225-1-2'),
('f6f74c3d-f74f-46ed-8e37-83c157a6726c','1c781ad0-971b-440d-9ba5-b64cd40eced2',0,0,0,0,'2024-05-29 08:53:22.768','2024-06-10 13:49:48.873','47889024-1-2'),
('f6f828ea-87de-410b-95a8-76ad4b981282','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.770','248692077-1-44'),
('f6fa9b7e-b636-4c26-bfa8-08a4b90e363d','a2d857b1-bcf6-46ee-9e87-dabcdac62719',98,67,95,0,'2025-08-25 09:31:58.282','2025-08-30 18:25:21.099','278329196-1-4'),
('f6fae9be-68fb-4a92-b40c-067dd9bea452','00c4d4eb-e89c-4883-b434-2cd031184f1d',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-1-3'),
('f6fb050c-bfc8-4a91-a10d-796ec007ab0b','4f368ea0-3216-4d5d-b412-e65605d1c4e8',103,103,65,0,'2025-10-06 07:10:10.171','2025-10-15 08:24:46.846','808396862-1-3'),
('f6fdf593-22ea-4b24-9d47-1f8e53c55187','38249fb3-e3a3-4e48-a2c7-fb5905a0499e',0,0,0,0,'2024-11-12 16:16:20.264','2024-11-19 17:23:22.928','47836811-1-9'),
('f6fe26f8-974a-404b-a0d7-1bb078cf8355','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-96'),
('f703aeca-49e4-47f9-b9a1-858dd45baa8a','b44449c8-5efa-4085-bd2d-0a3594587af9',45,88,14,0,'2025-04-21 06:13:17.705','2025-05-02 17:10:43.394','248240352-1-6'),
('f703c4cb-064d-4d36-9d94-0c16d29a1d37','cd01b9d4-c1e3-4729-9470-51ea7ac1e235',0,0,0,0,'2025-02-13 20:43:50.616','2025-02-24 17:24:36.115','98222656-1-8'),
('f70b6fa5-3fe7-47c9-94fc-d86fa431be4b','9e480454-560f-4c0a-9dd2-f47ed3b8f8c5',0,0,0,0,'2024-11-15 17:06:17.219','2024-12-01 12:28:52.642','248974894-1-4'),
('f70c0dbb-1345-4bed-90cb-ffa03091cd5c','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-63'),
('f70d717d-1ebf-434c-bf3e-0cbf29bbfd58','0ca7b5c8-7608-49bc-9057-d56d835fbea5',35,9,79,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-10'),
('f70dadc4-1c48-4498-a425-c9feedcddd8a','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-62'),
('f70ea46d-69ec-4653-8149-087a7d4cf97f','0eeaeeec-d499-4938-975f-3fc74fce159f',96,6,198,0,'2025-05-23 14:05:20.990','2025-06-06 17:34:45.657','221669694-1-3'),
('f712bd59-d11b-4271-91de-e4de45712e4c','adb117df-07fe-463d-8c5c-78ac6b66268e',95,5,169,0,'2025-07-12 09:20:31.829','2025-07-23 06:22:15.027','817838997-2-3'),
('f714138d-afe8-4439-8072-a239439eafc8','ffad1b86-20c5-4d98-8921-4101b61ab763',51,51,77,0,'2025-05-25 10:54:27.062','2025-06-03 09:40:51.787','644523362-4-2'),
('f7147087-d2ae-494b-b3a4-d1daab9db022','e58965e8-e21e-47e6-9515-daba1a7d67d7',30,25,20,0,'2025-10-25 08:59:10.092',NULL,'644522996-2-1'),
('f7162283-3eef-4f28-9225-b1c0302b5215','a4f356be-d4f4-498c-9119-e35100832eb1',100,120,70,0,'2025-06-14 12:48:24.231','2025-06-23 09:30:05.016','982314530-1-1'),
('f7164082-910c-4776-818c-738aa7aa6f87','67938611-3348-4729-9ec5-9d223db4856a',63,57,85,0,'2025-09-26 12:39:46.351','2025-10-10 21:30:25.670','221621737-2-2'),
('f71906db-e403-4d2b-8823-6826d13e8a02','ebdb7f34-2e3b-4ec3-9e73-84254aca4e09',0,0,0,0,'2024-09-28 16:27:06.060','2024-10-10 11:34:57.840','478117771-1-5'),
('f71bb94f-2da6-4888-9806-92b5820ccb28','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-32'),
('f720bdbc-a77f-42f2-8b73-11f182ba5e2e','c75addbc-d2eb-41ec-9bc7-5809796551b9',70,70,75,0,'2024-03-16 14:34:21.673','2024-03-26 05:55:37.761','449343471-1-4'),
('f72259ad-380a-479c-9aaf-cd8b37dd37c7','7c7686b8-8f65-4271-acac-1585b7485563',90,51,79,0,'2025-07-29 12:57:25.960','2025-08-12 06:14:45.105','412395222-1-3'),
('f7234692-4362-4157-9771-d892954cfb5c','96cdcb33-0f5e-4163-86a5-aee3b79a2394',0,0,0,0,'2024-06-08 08:00:06.325','2024-06-21 16:18:34.775','027734999-1-9'),
('f723d8f7-c652-45f6-b18a-aa33aca2ead9','56d181e7-071b-403e-bd82-0351e0863d0d',50,100,82,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-3-3'),
('f724139a-0f5b-4c48-b457-955eb422a68c','9aa08cca-4e35-44d4-9e1c-6c316a75f032',0,0,0,0,'2025-09-02 14:48:51.471','2025-09-12 06:56:06.375','644424764-1-3'),
('f7244ea5-fa38-4b3f-92c3-135b69822fe7','9e5db7e5-162a-4425-9498-43b6da733ec0',0,0,0,0,'2024-07-20 16:33:21.098','2024-07-30 14:54:56.271','44940434-1-14'),
('f728994b-619d-4fd3-938f-9c5c5f171772','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-53'),
('f7293e23-9064-4440-9a62-78f391087770','dadc5d04-be0b-4da0-980b-6007bbb7021f',250,75,100,0,'2024-12-01 06:48:14.667','2024-12-10 12:35:38.736','517764616-1-2'),
('f72ac801-8b74-4933-bfb4-ebc6400509d3','31d86564-1634-4f25-8bb9-3f3c63bd4401',0,0,0,0,'2025-03-24 16:01:47.294','2025-04-05 10:58:08.670','465844619-1-3'),
('f72af03c-6037-4166-b485-09376af5b53c','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-86'),
('f72b2a6d-93d8-495f-aea9-76fc1b29b26e','53a925c4-4122-4bbb-9c27-7938c548bc0b',0,0,0,0,'2024-12-13 14:49:14.497','2024-12-24 12:30:21.380','735736030-1-3'),
('f72d2e77-8084-442a-818c-d9a7037ed79c','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-6'),
('f7301ac6-fde0-4529-83ab-5dc6bd92788b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-6'),
('f73053f6-c702-4c5d-94fb-6a500704cd9c','8ac0815d-6704-4e5d-a7d8-2b06b82e6d62',191,9,51,0,'2025-10-02 06:45:24.858','2025-10-14 05:37:27.071','428696149-3-11'),
('f730a908-2a83-4a14-8a9b-74cde0bd06b0','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-145'),
('f730a94c-5660-4b9c-a446-c201cb05bbc1','84e96d11-c558-4787-b50a-0c3bbea0023f',0,0,0,0,NULL,NULL,'644563405-2-3'),
('f7321316-9098-4d8a-bc19-eafedde6c757','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-47'),
('f734c9a5-664e-4f38-ae38-e05dfca8a440','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.558','2025-03-01 17:30:01.496','046487702-1-50'),
('f7359221-340b-459f-b34a-1404aedeccb8','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',200,62,50,0,'2024-08-07 15:02:49.690','2024-08-16 04:44:27.910','976819499-1-29'),
('f735a6e3-04b9-4809-a892-6a0dbb6c2f46','f2ebf9f8-8636-416b-a4c6-ecc2b579a8aa',173,130,12,0,'2025-04-15 16:01:10.273','2025-04-28 18:15:43.175','817317858-1-10'),
('f7397f93-8c22-485f-80eb-a0f971f24ced','6302f68c-26c4-4a31-853e-80b9d1ba59ee',80,70,29,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-37'),
('f73a35e3-abb9-4878-ae93-cd69f1bd3ba1','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.346','2025-04-08 15:34:50.053','74529534-2-12'),
('f73cad4f-3292-4ad1-a255-00e8a230ec6d','79349225-7b0a-4c66-808e-fac9569dba7b',30,22,10,0,'2025-09-18 15:48:59.201','2025-09-30 06:45:01.426','644879098-1-1'),
('f73d5393-6793-488b-a406-f0e4f002cfa4','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.237','745357299-1-8'),
('f73e5804-65ea-4ec6-a77d-5c315b4bfc5b','dc390da6-4128-4077-b3a7-07f6a89a5beb',75,100,120,0,'2024-12-01 06:47:57.093','2024-12-12 07:41:25.689','501488750-1-6'),
('f744c37e-a217-4bde-a60d-ec19fc84550e','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-97'),
('f74572bb-2294-4745-8d3f-5e6af23a6022','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.004','2024-11-23 12:17:22.195','248143023-1-6'),
('f745df06-9b3f-4806-b879-c4b66711881c','1f9f088c-b7f3-474f-8b52-75626504976e',60,40,40,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-8'),
('f7483861-7d8b-46c8-a986-8279bf812187','20aef7b6-2dd8-4316-8052-05ba29d6d6d3',0,0,0,0,'2025-01-06 13:08:23.936','2025-01-08 18:08:34.301','428819984-1-1'),
('f748b46c-62fc-4781-a602-e0c801a7a971','7f827719-d0a9-4910-9aef-532cd3731df7',8,142,54,0,NULL,NULL,'745995046-2-19'),
('f74a754c-ff2e-44d5-b12c-bd9a1a40dec0','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-6'),
('f74b4dd6-ac0d-463f-892c-c3daa2ccfe45','edc61a8d-2486-46ee-b1b6-c00ca7fda7f9',0,0,0,0,NULL,NULL,'614941926-13-1'),
('f74c2ad6-f714-465d-9bdb-6872f06e8052','d1102fc9-0c49-49b0-ab10-6900fbda3dbb',100,83,54,0,'2024-11-08 17:37:34.993','2024-11-23 23:45:54.029','517910414-1-20'),
('f74cbb70-db9b-4b97-9f76-4838380af98d','b8f4daca-0289-4a61-84eb-ddbde1849b43',63,98,214,0,NULL,NULL,'613868869-4-3'),
('f74ea4e1-e9f1-4e7a-9703-7b901de193c1','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-22'),
('f7508e09-3f90-4727-92a1-38b477a65596','36ced38f-51af-4146-9bd7-7f1d6c0f4201',80,94,120,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-5'),
('f75108eb-1a29-4ae8-9185-c57254707c7b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-50'),
('f751648d-afd1-4688-81f2-9de5788dc96b','8dde8102-083c-4c44-8219-82ffade775cc',0,0,0,0,'2024-12-07 09:32:12.617','2024-12-19 14:54:01.806','73598166-1-4'),
('f75bd5ae-b9c4-4e25-a7eb-db73fc6eb3db','10d63ad9-5664-4514-9fb9-770393034f69',75,75,90,0,'2024-03-16 14:33:52.023','2024-04-01 07:52:54.988','478741910-1-3'),
('f75f563b-a1f9-49ff-b41a-b05af2b0a1e8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-98'),
('f75f9f50-6314-4909-9c7c-2ac5c1e8ac2c','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-9'),
('f75fc14d-0d37-4429-87f8-46bb61231dc5','67ed4c83-26b0-4200-a1e5-df0f9961f0a0',0,0,0,0,'2024-10-23 14:11:24.093','2024-10-29 11:08:40.139','248216907-1-5'),
('f75fd195-f67a-4e94-b1fd-5f6fe2b31069','a5930c87-7c64-481e-8b65-e1185a1c5e54',0,0,0,0,'2025-03-13 12:21:23.214','2025-03-23 16:15:57.285','221892935-1-3'),
('f763a8e6-fceb-4c59-bb03-81531aa10b8b','e266a085-e2d7-4f94-9512-fea47de5ac85',57,77,103,0,'2025-10-06 07:10:15.970','2025-10-15 08:25:29.651','371508043-2-3'),
('f7665200-9ef3-4487-bbc1-069428ebdc90','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-196'),
('f76842fe-bd8f-451a-a8d9-fe01e295dfbb','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-13'),
('f76f145b-28f9-40b5-99c8-230b832f3930','a061c475-401f-4f65-ae66-2bc9f4569248',120,120,68,0,'2025-01-04 10:47:36.816','2025-01-11 14:07:41.414','501345257-1-5'),
('f76f4904-e4b5-4353-9fab-7ce2fc9ca3e2','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.004','2024-11-23 12:17:22.195','248143023-1-13'),
('f76faed8-d26f-4686-ae0b-4c92cd0276dd','7f51fd09-8523-44f2-b700-a6818ee38b39',51,50,76,0,'2025-01-26 10:54:47.584','2025-02-06 09:25:08.207','221507815-2-2'),
('f7757049-a13e-413c-96aa-cc6a03a4403f','b8e1bb70-3e44-48ea-8ac2-78178aef0fba',0,0,0,0,'2024-11-02 08:42:32.605','2024-11-09 18:54:22.601','248720273-1-4'),
('f775dfc1-6f29-4dd7-9584-1e3112569334','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-63'),
('f77659eb-d309-41a6-ba1c-47e46f46d208','8e2fd94c-00c3-4478-8b6b-5fb1929f61dd',65,66,86,0,'2025-02-23 12:39:14.598','2025-03-06 10:33:18.017','976983661-1-5'),
('f77c0739-c8a9-4717-9c47-d0c7f51d4fe5','69acd97e-52c0-45ae-adf5-ee013e52776f',181,201,32,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-17'),
('f781122e-c04c-4bca-be7a-65257a3f0b8d','5fad51cb-2466-474d-9661-9f8cff4bd601',51,51,77,0,'2025-07-17 09:36:43.478','2025-07-24 18:04:22.416','644917251-1-5'),
('f78361e9-9838-48aa-a7aa-248e269d86c9','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.311','745859135-1-10'),
('f7874552-d05e-4994-afad-d5ead829b88b','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-65'),
('f7882ad5-1ced-4c65-bbf8-d764fa509e46','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-164'),
('f78a0858-449c-48f6-acea-c90189e1f26d','064e955b-72f7-4dfe-903d-af71b421e048',57,101,81,0,'2024-10-23 14:11:43.688','2024-10-30 18:09:56.509','750450570-1-3'),
('f78b0c9d-cc7a-47d5-92f8-600d18158993','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-7'),
('f78b78eb-87f1-465f-b392-fd9ddba391f0','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.859','2024-10-07 14:02:25.807','47867667-1-40'),
('f79549c7-10df-4859-9bcf-6d6ccc9842fe','bb395081-1e96-4f04-a805-718cc5ddc9fe',97,70,187,0,'2025-05-16 16:33:30.818','2025-05-23 14:06:51.532','371579541-3-3'),
('f797f316-488c-4435-80b9-721ab5190359','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-7'),
('f7986989-3387-4fa7-ae33-8edb6ddee290','db058b15-c1fe-42e6-9e2d-cbaf9b5c9440',95,100,80,0,'2024-10-17 13:41:01.603','2024-10-24 01:09:15.395','449644504-1-12'),
('f7995495-7160-4224-8750-0fc1f0294c98','9d9df441-0469-46e7-baad-366a3096e9a0',65,92,240,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-3'),
('f79966dc-a2a7-4cc0-8ac3-40d84b2e6fb1','e7fadecc-6c0b-4f8c-b0e9-c2a3ee5c4cba',0,0,0,0,'2024-12-23 12:00:01.397','2025-01-11 09:48:35.537','735280128-1-6'),
('f79b000f-5786-4a20-ad43-ea726792b3d7','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-51'),
('f79c32b8-c200-4309-a8d0-55fd9424c098','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-45'),
('f7a2f7f1-9fe7-4981-ad99-9692581f7ac7','af69c5a3-87d3-4548-a650-720b69a4fc69',58,53,42,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.822','614143415-1-9'),
('f7a47859-fc39-4efe-b007-2fca844bb8ce','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-102'),
('f7a52dc3-8ac0-49a7-a448-52dc477fdab9','aeeb9331-f250-4b35-89a5-471da85ec593',51,51,77,0,'2025-10-02 03:45:28.247','2025-10-14 05:37:37.433','644520957-2-3'),
('f7a86559-6078-4bf5-b70a-18d5aaf8f376','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-40'),
('f7b31486-1cb7-4bdb-afe9-49858af0ea9f','b1c85abf-7d3a-462e-b9c5-1e1f7b7dc803',95,240,65,0,'2024-11-21 10:29:02.614','2024-12-15 20:07:20.068','112787965-1-3'),
('f7b4682d-cfd6-4562-a37e-d4980e8d0620','c0fe0399-dd85-4397-854c-745020ab9c38',120,60,121,0,'2025-01-20 11:21:38.773','2025-01-27 21:00:28.158','428718727-4-5'),
('f7b5eb6d-a0be-4c37-9c25-5e7950a074fd','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-79'),
('f7b9b8f3-c831-4f34-add5-0d1586f6d7b2','c3322872-ddf3-4e40-b549-9fc0bcd0e3f2',96,205,65,0,'2025-09-18 15:48:34.720','2025-10-02 06:12:04.731','437101296-1-3'),
('f7ba891f-e73b-45aa-8d16-447c21572e4f','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-31'),
('f7bdee2b-0639-48ff-85cc-0a71a051ff95','291a2ff2-a042-49df-a88f-5eeac8ddabcd',80,50,40,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-15'),
('f7c07789-f869-47f4-99cb-a878eaff9710','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-233'),
('f7c18ef0-6100-4db9-bbce-e6dbdcb0d39c','5aac8c34-51ea-4438-b73e-7d54bf02d518',38,4,185,0,'2025-10-25 08:59:03.115',NULL,'455160997-1-13'),
('f7c28fd1-a6a9-435b-b8b8-2632debb50c8','2dde6fa9-86f5-4072-acf6-d126395be890',92,228,55,0,'2025-02-03 18:19:15.977','2025-02-13 13:19:13.093','910657387-1-2'),
('f7c30c70-fb71-4ce0-9fbf-151a198b1f5f','5192d2f1-dac6-4fd2-9366-a61b24bf47fb',96,222,8,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-2-6'),
('f7c5f5ef-6746-467d-b54a-e0a49e65a067','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.558','2025-03-01 17:30:01.496','046487702-1-12'),
('f7c7d77d-c1a8-4d37-9ee3-1d3d2d76b711','51c75039-67d2-4fe3-b966-4a8e28aad039',0,0,0,0,'2024-09-10 10:47:16.661','2024-09-16 12:23:11.869','248526655-1-1'),
('f7c7e2c3-f7ad-47b7-af53-fb77834425da','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',135,43,9,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.073','412586204-1-173'),
('f7c97e39-cbb2-4609-ad5b-6db482b410f9','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-5'),
('f7cea0de-e7c0-4a56-9589-f7759e5b3e47','5525a9f7-87da-4298-9caf-21e307bb8af9',0,0,0,0,'2025-02-09 09:51:48.792','2025-02-15 16:09:39.544','478719602-1-1'),
('f7cf79b3-7a49-4c6d-b7d1-fcc39da300c3','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.237','745357299-1-6'),
('f7d22ee5-35da-4b4a-9ef6-337da4190866','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-23'),
('f7d2e740-25e4-48ce-b985-5dcd99a76b20','84a978c9-68bc-4af6-a5ab-3a6551bbc294',180,47,44,0,'2025-10-08 17:44:02.656','2025-10-20 06:31:57.755','371876767-1-1'),
('f7d3d849-8632-46cf-a235-3f5248e47489','354bac1c-ec3d-48a4-af37-546517794e7d',0,0,0,0,'2024-11-02 10:13:48.043','2024-11-12 17:05:59.335','745128598-1-2'),
('f7d4a343-b5be-46de-8d25-0843316fb23b','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-35'),
('f7db0b4b-dae9-403d-ae14-7fbd9d6ac44d','fe224014-80c7-4bb7-96f9-7343154c847f',76,45,45,0,NULL,NULL,'982707795-1-1'),
('f7db9404-6d44-4253-a1d6-117ee9f72993','9c9ece2e-cdef-44ae-9960-980614fe02aa',102,124,65,0,'2025-05-23 14:05:49.608','2025-06-03 18:27:05.775','478243785-1-4'),
('f7dd3a4f-d361-4cea-9c44-7dc0dd70957f','80510286-f99f-4ac7-8b5a-8391d6a48f0e',0,0,0,0,'2025-02-20 12:15:15.489','2025-02-28 12:03:55.924','478775583-1-5'),
('f7dd67bf-c635-4b1d-83ae-b641ebd0f828','8b91c5e7-c071-4573-88e3-5264c5dc164a',6,76,125,0,'2025-09-18 15:49:12.391','2025-09-27 08:39:30.839','437574361-3-4'),
('f7de99d3-d422-400f-a969-5b47c09a6f2b','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-94'),
('f7df0468-d77e-49d7-a6b2-4d7255985fd0','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-189'),
('f7e06dcf-52ed-44dc-8eaf-3186ca43f1d6','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-29'),
('f7e1264b-c4a2-4320-acd5-b45f3083b65f','587fc7bb-d234-4c16-8ef8-7a704c2be32a',73,100,53,0,'2025-09-06 04:20:37.728','2025-09-12 22:09:53.320','338411614-3-4'),
('f7e12ae0-0c14-4598-be76-5cff88a1c14f','5478abc5-9d64-4211-bae8-54bf5172ebc0',240,90,70,0,NULL,NULL,'982268643-1-5'),
('f7e4bf7e-e213-49bb-8be9-e52336f88464','b2c78cf5-c58c-4553-bd14-49e83916894c',29,63,83,0,'2025-04-30 14:29:10.930','2025-05-13 09:05:26.084','412284149-1-7'),
('f7e60fcd-5d6a-4006-948c-b2a9300b9562','6f5edc89-0f5d-4bf7-8539-15ef3e153ae3',0,0,0,0,NULL,NULL,'428905379-6-2'),
('f7eb79b1-f74b-4475-a41b-0dcd056bedb1','b23cf296-f843-4492-9697-0fd43d657771',182,27,200,0,'2024-10-23 14:11:38.640','2024-10-30 11:17:48.985','858200454-1-19'),
('f7ed6835-ad51-44c0-9377-c5f9d77f1517','f3d50b35-2f52-4ebf-8cc0-0cc77835375a',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-4-3'),
('f7ee3b1c-0e40-4f2a-bdf2-8a9fdfee7d0f','7311f1e0-e2be-43dc-9e40-f94a010e8939',42,42,32,0,'2024-09-06 12:28:25.212','2024-09-12 10:53:49.268','289168915-1-56'),
('f7ee6b8d-ee64-41bd-931a-cff2f1c7c39b','00c4d4eb-e89c-4883-b434-2cd031184f1d',0,0,0,0,'2025-03-06 10:32:03.179','2025-03-15 15:59:26.082','478449021-1-4'),
('f7ee7aad-cdac-4879-a1a3-c8f7a89083c9','043a68b3-cbde-4c54-b5a1-246e3bc84742',51,51,76,0,'2025-01-22 09:07:09.951','2025-02-01 17:38:05.467','221416180-1-4'),
('f7ee977e-4054-47ab-a542-8824bfc54c63','f8d90cf2-88ac-48fb-8de3-6ec17d4df359',17,85,129,0,'2025-09-10 10:50:37.829','2025-09-17 17:51:26.602','478223658-1-2'),
('f7efb2df-663f-48e0-aae8-c21a6a9b35f2','8b903902-c3bc-4e33-ba59-0a5aa28db73c',206,13,42,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-4-4'),
('f7f963e0-d02d-4356-8631-7f1837b43b10','1c793fb3-33f6-4c35-915b-01c9060252dd',0,0,0,0,NULL,NULL,'614927187-1-1'),
('f7f9fb59-1770-4a83-b038-b4ac7cdfb6b3','f59aba8d-2f5e-4816-b322-ff557edd32f8',51,51,77,0,'2025-07-29 12:58:27.889','2025-08-11 10:25:02.853','505770346-2-1'),
('f7f9fb7e-9357-419e-baef-87e34b794be0','a3e70907-d0f9-4560-b67d-f0d58115e4eb',57,62,83,0,'2025-05-23 14:05:13.689','2025-06-06 17:36:20.960','221997933-2-4'),
('f7fab6f8-5774-48e5-b47d-6c20c3972c1f','c9aaae09-abdf-47e1-b3a9-2b58eaa5c76a',196,6,96,0,'2025-03-27 15:05:07.724','2025-04-08 15:35:04.166','221668922-3-3'),
('f7fb2a6e-c3b7-42a8-bdbb-7f3f43e96e0a','209c7af2-fa23-4664-bca6-289740753354',0,0,0,0,'2025-09-10 10:50:38.399','2025-09-17 17:51:31.344','478402358-1-20'),
('f7fb8d3b-e498-4a2a-8501-a8aba7f89890','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.281','2025-09-08 05:17:27.363','73589256-1-16'),
('f7fe6e26-4bcc-48ad-a722-c94f0577304d','fbfff131-b02f-41a5-967f-a0528f7275f4',120,125,65,0,NULL,NULL,'745197948-2-3'),
('f7ff0a9b-37ce-4a1d-8fde-da59dfdf6e2b','9aee98b9-e6a3-433d-9159-2b2d7b7abfef',0,0,0,0,NULL,NULL,'478205052-1-1'),
('f800e1d4-421c-4d66-8dc3-8fb4df91013d','3e4d9220-ce76-450d-a76c-9787b1f4433f',76,23,109,0,'2025-10-08 17:43:25.705','2025-10-15 08:13:32.559','371696812-1-9'),
('f80596b5-2e89-45af-ae05-2ba99af023c1','173da7e9-9f08-4f80-bd79-f624a6af761d',205,33,30,0,'2025-07-02 12:43:48.469','2025-07-17 14:40:52.403','486724632-1-5'),
('f808d18d-dbed-4e14-9210-3d3d385f92ce','1b54b52d-74d2-4b3c-bd64-5cd7ddf73cec',70,56,101,0,'2025-10-08 17:44:00.728','2025-10-20 06:31:47.194','64422113-2-3'),
('f80aaeb7-38a3-4a1e-acf3-8c5f7ba6e79d','d1422107-1cbb-46aa-b421-a24342e51735',0,0,0,0,'2024-03-16 14:33:54.987','2024-03-29 17:58:10.538','655111652-1-33'),
('f80cc9b6-0a7e-46fa-a155-e948c7994c3a','86208c93-5d4c-4ac9-9877-ea3dae242261',0,0,0,0,'2024-03-31 17:55:09.156','2024-04-12 07:17:06.638','478281907-1-20'),
('f80e03c3-4f15-401b-8dc5-407aa712b37e','9866a947-9974-4053-8415-4518842488fe',130,73,100,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-39'),
('f810a1a8-cd0e-4967-8ef0-6555023674f1','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-35'),
('f81684c1-67d4-4d43-b0a5-41a295d362c4','8fc7023c-7fab-44ae-a533-006d835eddb6',106,192,18,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-20'),
('f8171a43-2749-404d-8166-91fc7b11ac0d','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-45'),
('f81aa672-8a93-43ef-8561-da1bfe58efa3','6da50268-00e5-4c15-b11a-81b77c3b508d',24,77,6,0,'2025-01-06 13:08:07.994','2025-01-13 07:50:58.956','501872546-2-2'),
('f81d55b9-59cf-4994-a58d-f040cf313506','5f6c50dd-12d4-4ac7-b977-3ff0181a723f',98,122,70,0,'2025-09-01 11:06:25.189','2025-09-10 17:04:36.702','428693052-1-6'),
('f81e4e03-1e9b-4fa1-9564-685c4389a469','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-38'),
('f81eac86-c99b-40bd-8b5e-e8f6039cae09','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',96,53,71,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-4'),
('f81ef69e-ceea-48c7-84a3-cc26553b05f8','60fb62a4-8365-4095-8f73-1e4ce71568c0',117,102,52,0,'2025-09-12 17:17:09.286','2025-09-23 14:03:52.098','428671806-1-7'),
('f81f9276-d075-49fa-a69a-63dbcd15f435','2dd569fa-bc2f-4ad2-9145-e5f69d1f17d5',0,0,0,0,'2025-08-27 19:39:45.873','2025-09-08 05:04:07.658','478901590-1-5'),
('f822ff52-6113-4a7b-8b15-9a1fee69f55e','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-5'),
('f8230e1b-0cdd-465a-993b-e5774b55ce9c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-6'),
('f823d190-d28d-4e2e-a7bf-82acb67a94d0','ce0bc20e-e38f-429d-9313-f5c2e8c01178',97,189,15,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.951','43783689-4-3'),
('f82aae0e-7d45-4b1f-b6b6-39b33bef5eb8','9d7979f3-a35a-4a64-97d1-4ba973786029',54,8,220,0,'2024-12-23 12:00:10.332','2025-01-09 13:53:55.006','100655378-1-21'),
('f82b4442-ee0f-4b23-b09d-ccabd3290e8e','7f11042b-3945-4eb3-b37e-a822894de6f5',70,46,17,0,NULL,NULL,'478777575-1-2'),
('f82d04e4-3933-4156-b00b-592c872729b9','da3267da-eefd-4a53-9bee-0543bff46695',57,60,85,0,'2025-02-23 12:39:06.598','2025-03-08 13:57:28.116','22164822-4-1'),
('f82f7c87-805f-4f62-892f-41deb0872d51','af0bee61-a5fb-4e01-894b-284b9c08b649',0,0,0,0,'2024-09-19 18:27:13.446','2024-09-28 16:28:24.636','982415045-1-2'),
('f8335132-9996-4878-8b4c-6cff0dc98311','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-42'),
('f834609a-2b54-4d11-8c66-4fcae4d4d43c','8add455f-cadf-462a-8446-b3feef2203eb',0,0,0,0,'2025-02-03 18:18:36.497','2025-02-14 15:00:10.497','73555265-1-1'),
('f83707c3-b0c4-453c-809e-0107f205f72c','14fb0987-4091-41ac-acc5-918b7d5ce9a3',18,40,230,0,NULL,NULL,'371216639-1-5'),
('f8371224-5163-4ca8-8085-5ed013f02a65','9021f98a-5560-40bc-8478-4da85897fec7',190,98,14,0,'2025-09-02 14:48:33.543','2025-09-10 07:23:56.170','598954734-5-5'),
('f8391221-c327-459b-87cb-945966cffd18','d0512e6f-47bb-4d5b-9300-eec57f981f59',0,0,0,0,'2024-11-25 08:28:31.042','2024-12-05 16:18:43.895','478618410-1-2'),
('f83a3378-5ac3-4a58-b74a-dee024473796','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-91'),
('f83b57d9-ad8a-44a0-96b3-1218553fa274','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-98'),
('f83efd80-7913-4ce7-bb49-49f89b9ab0b3','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-16'),
('f84122b7-8949-4acc-954e-e4b626587bfe','5b4bf6ef-1cff-47f3-b8b9-c0a4af9ad9c1',51,51,77,0,'2025-08-21 07:15:27.784','2025-09-04 21:03:46.372','221825192-3-3'),
('f843a5a8-1cd2-47a4-878f-b5a0f1c86aff','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.770','248692077-1-61'),
('f849cf73-762a-4f6b-bb6e-b2372c7d52d2','e9f3cff3-6522-4588-8488-7b4fe7443b69',52,41,16,0,'2025-07-17 09:33:47.358','2025-07-22 17:22:00.525','910772127-3-1'),
('f84ad909-6fff-4303-88ad-18d6745285a0','ea9dabd1-827a-4f9e-9b28-301e5af3a89a',0,0,0,0,'2025-03-08 13:46:12.067','2025-03-18 18:32:47.945','745124199-1-1'),
('f84bebed-adee-40db-b96e-d1ffd540cc2f','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-104'),
('f850a2d9-855c-4a46-b7da-cddbdddc6ae9','677e3a06-ca47-4aec-a732-695c796dff2c',230,95,70,0,'2025-03-08 13:46:20.373','2025-03-17 14:54:04.694','750498273-1-2'),
('f851e1a8-ad5b-4e0f-9228-04b6ea6457e9','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-38'),
('f8537711-0474-4099-9592-01406f1b2252','0bd6afc7-c317-4f22-9668-b45353a1d28e',80,100,70,0,'2025-07-26 07:40:26.442','2025-08-04 06:40:09.551','428761245-1-4'),
('f8547613-f4dc-4943-b541-640c4ab843c3','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-146'),
('f854a30d-dc43-431f-95f4-5a586c1ca643','3c7929e9-636a-403f-ba4c-04d76c585d38',0,0,0,0,'2024-03-31 17:55:11.600','2024-04-12 07:16:54.576','478263896-1-2'),
('f85722fa-fea2-4d20-bcad-e8520f049f29','b1ad26aa-377c-4129-9ebd-37c5c14ba899',56,56,85,0,'2025-03-27 15:05:09.314','2025-04-08 15:34:58.197','2213416-2-6'),
('f85965b2-6ce4-4223-8b19-79646fa1c836','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-59'),
('f85a8aa9-9b86-4f14-ae42-6720b4538931','c98f6188-56c5-4870-be97-be71cf95f62e',40,59,12,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-52'),
('f85c5f7d-d121-4ff9-a0b8-b038d91b34da','8a112f94-c1ef-4860-86dc-23351280686f',94,70,201,0,'2025-07-12 09:20:19.431','2025-07-25 10:49:06.698','976114868-1-6'),
('f85d81e3-25ae-4f55-a56b-ac13d4728924','1dca511b-afa3-445b-81b6-a7d2a5f0e746',0,0,0,0,'2025-04-11 13:41:49.719','2025-04-23 17:45:48.825','613803170-1-9'),
('f8608a74-1d31-4c4a-bad9-8639e7a5d465','8baea4cf-59e6-4595-a565-1754d9ca8bb7',30,24,25,0,'2025-07-29 12:58:41.957','2025-08-08 05:42:00.113','598157006-1-3'),
('f865d008-6ad9-4a9b-9c37-380751cad704','5b453805-1a54-4050-9ab8-c37c7500f0ae',0,0,0,0,'2024-12-13 14:49:19.067','2024-12-21 21:13:19.691','745554582-2-2'),
('f866cf2f-df49-4513-befe-97c4e82cd6b9','fe135024-cf0f-4cb0-a63a-adcd1e3b9c29',0,0,0,0,'2024-09-28 16:26:37.210','2024-10-13 10:53:22.883','248535027-1-43'),
('f869fb7f-1561-4531-a984-f696ac1b84bd','5e5de5b3-4040-4320-b4a4-779e58d5e8b9',92,15,182,0,NULL,NULL,'371903427-1-4'),
('f86dd569-26df-4f18-bc32-6ea5ee4c77f4','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-3'),
('f8700edd-5a7d-4b36-8c96-620dd590241d','6fcd8160-ca06-46ab-a691-51de5c394793',17,10,116,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.792','745251111-6-29'),
('f876e24d-6a9b-4459-a1e6-802f8acaf9ea','df67e72f-ee1a-43ca-8c93-6ee51977a7ea',103,56,80,0,'2025-01-04 10:47:35.599','2025-01-12 13:22:47.999','982979874-2-3'),
('f87a248b-a01a-4bc4-a174-e84909b34302','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-3'),
('f87a2c75-5560-4d25-a846-ea2d53c58945','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-148'),
('f87cc6ff-5bb1-4aac-92a5-9f42cc7f4521','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-6'),
('f87d8016-895a-4f11-a955-fc87b3f1a3c8','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.081','2025-09-10 07:24:12.131','371180149-1-1'),
('f87e0651-8b5b-4e53-86e3-8dd433020409','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-101'),
('f87f765e-4186-4444-8e15-d2270bd384a4','5ab06033-6474-40d0-adfb-4d7de8d9eb91',61,61,85,0,NULL,NULL,'91022025-1-1'),
('f8825d94-86dc-4d31-867f-bf10efb727c0','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-242'),
('f884e6cf-68e7-4991-8a5d-30f7987ac32c','069a8d78-f134-4e20-9ea0-85d75f0f25bb',43,48,145,0,'2025-10-08 14:44:20.307','2025-10-20 06:33:02.574','765484490-1-2'),
('f885c6ca-f928-4d57-bacd-e3e747dff1d8','27dfb765-c4cb-4b66-8d8d-2bee4ab99e9b',0,0,0,0,'2024-11-12 16:15:40.459','2024-11-23 19:56:01.017','248694668-1-11'),
('f886d7c8-ce65-45aa-8715-7be2cc5c0851','32b11ede-8890-497a-89a2-1672b3f73306',190,80,30,0,'2024-03-14 13:50:34.885','2024-03-22 07:37:35.143','982451991-1-3'),
('f8892b45-2097-41a9-b8b1-8dfcb31b5667','b8721202-54f1-436d-bc84-f671bfc36fe4',100,73,70,0,'2024-09-19 18:27:53.236','2024-09-24 16:01:08.792','517827584-1-2'),
('f88ecbc4-c654-4d10-8864-7cdd180f7a23','bd176b24-f129-40d4-8c33-6b35eded0fad',249,58,12,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.349','478502129-5-8'),
('f88ef48c-9c3a-44e7-a2f4-27341074e5fd','8d8d7e39-f8c2-4085-9ac6-93f2c29e0897',79,201,25,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.665','745276257-2-1'),
('f88f5b11-2157-459c-aa97-132ce79226b0','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-17'),
('f890363d-b814-4772-acf4-bfbd12595d83','5abaed5f-da6d-4729-8667-542ec9faa994',70,95,95,0,'2025-10-25 08:59:12.926',NULL,'371985580-1-2'),
('f891527b-42b5-4cac-b0d1-fe132fc8dc72','d735327b-ac4e-4761-98e6-d9e2e53b4b8f',0,0,0,0,'2025-02-03 18:18:51.267','2025-02-13 13:19:44.651','745303876-4-1'),
('f8960387-b0b3-4948-8ddb-ff53e3f926f5','cbb10fa8-7723-439e-b62c-2d779a114dbd',122,200,15,0,'2025-09-12 17:16:49.323','2025-09-24 14:32:55.330','614525681-4-1'),
('f8969521-eac6-4411-97ba-ccd53d44afc7','40935ae0-66fe-4084-b520-3269027d793a',0,0,0,0,'2025-02-27 16:45:27.923','2025-03-12 17:47:54.770','248915549-1-3'),
('f89795cd-b27f-4a78-9df4-a681d22c15f5','d30061b1-fef2-411a-8993-93b9bc215085',66,59,89,0,'2025-05-24 17:55:18.377','2025-06-06 17:34:14.192','644776565-3-8'),
('f89bcd1f-6bff-475e-b6b5-d3a407616e5a','a69f640a-80e0-40e7-836c-75a316391b0e',0,0,0,0,'2024-05-08 18:43:27.068','2024-05-21 18:45:23.921','734482220-1-5'),
('f89e2d8b-e783-418b-96dd-6beefc0639b7','640b66f6-160e-4841-a704-93345a8388a8',100,208,80,0,'2025-08-22 20:28:38.631','2025-09-03 06:11:58.365','437870707-2-3'),
('f8a221dc-2374-4c57-b081-f6e2d3200fa9','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:34.706','248135683-1-133'),
('f8a24b92-eeac-48d4-b391-e01cff989dbd','0b2aef55-3f13-481d-aea2-e04a6333fcb8',54,52,50,0,'2025-10-20 07:18:16.076',NULL,'644664237-1-2'),
('f8a27ea1-1371-406a-babc-b246bb2361e6','724d91b5-a9e8-41cf-8697-c13640363602',101,57,84,0,'2025-09-24 11:01:59.340','2025-10-07 06:17:28.408','531309772-1-3'),
('f8a38a32-89d2-4ad4-948d-202e2fe98ad4','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-198'),
('f8a52e4e-d0c4-4b23-85f9-5eb33038b8b8','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-60'),
('f8a6f16b-1a89-454c-a1bf-097cae3d1a64','60cada38-138f-443f-87cf-2250edc59661',53,73,100,0,NULL,NULL,'428172853-3-3'),
('f8a8e7ce-ab79-4bcb-b055-35cc5206072f','a8240df2-bc04-464c-afdc-dd0bdbe1643d',12,63,84,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-4-15'),
('f8adc55a-38f9-4b2e-a757-df94d86c7636','94df600c-14bc-4088-b6c5-be9e0b0223ee',0,0,0,0,'2025-01-20 11:21:18.002','2025-01-31 12:16:21.240','478300434-1-4'),
('f8ade5ae-022c-4a9b-8bcf-1168e47afb9b','b55078b6-f124-4390-9cba-abcd3237294b',0,0,0,0,'2025-09-06 07:20:38.901','2025-09-12 22:09:47.091','412139250-1-5'),
('f8aee100-f6d7-4949-bdfd-8ca3a76edded','1cce6802-65dc-4d50-961f-a34e4211b9d0',0,0,0,0,'2024-12-28 21:42:30.612','2025-01-06 20:09:43.908','745398311-1-22'),
('f8af2488-68f3-4594-a814-e97a0b4f342e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-154'),
('f8b3a552-dec5-467b-b5d7-004cd7be5ea7','1a6d5e8c-dad9-44d6-b68d-9f0e7bf873be',128,76,8,0,'2025-09-02 14:48:27.541','2025-09-09 18:10:59.563','437426295-1-5'),
('f8b45fc4-1a5e-4580-8f32-4efcdbb80ea5','c2e59836-c823-41bf-b343-b3df9dfc91f8',85,60,51,0,'2024-11-02 08:42:29.416','2024-11-11 19:55:08.408','465500768-1-4'),
('f8b67f9c-26bd-4bed-bd8d-35d3dcf58e2d','ad3d8fcc-b247-46fd-95f4-08480bea8dd6',77,51,52,0,'2025-09-24 11:01:59.341','2025-10-07 06:17:28.409','531309772-2-2'),
('f8b80d3c-f660-46f3-82dd-604852fa5fa5','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-22'),
('f8b9cae8-69c1-4824-bec5-affb8c9ea6ff','c5d9a910-180c-4e61-8dda-bf42d4138a8d',56,56,84,0,'2025-03-13 12:21:14.828','2025-03-29 21:27:35.583','221417545-2-3'),
('f8be737c-f9c9-4977-998b-8688a0b46df1','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',46,40,61,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-78'),
('f8be8701-3335-4797-a3e4-4691105ed38e','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-14'),
('f8beec23-a73e-46ed-9c6e-586dff2ad934','7908530c-18a1-4a83-b5c2-fdea91117bbe',65,50,50,0,'2024-03-31 17:55:03.269','2024-04-15 11:37:34.889','449178440-1-5'),
('f8c048f3-0948-4a56-a11f-1376eb53855e','e0543c7a-5972-4240-aa38-f23558126c19',0,0,0,0,'2025-09-11 06:34:34.943','2025-09-20 19:00:06.128','745545386-1-1'),
('f8c05c20-c840-4fc9-8b6f-dbac42c6f758','de4ad7a3-83c4-4f92-b28e-159332b39346',106,241,6,0,'2025-01-11 15:20:23.400','2025-01-19 14:51:36.489','221803289-2-3'),
('f8c06ab0-6f4a-4213-822b-3fbd21f3a3a1','c60203cf-3430-4f82-90d6-02084558ce46',0,0,0,0,'2025-04-25 16:57:05.118','2025-05-02 06:59:30.684','478962763-2-2'),
('f8c0b6d5-e77b-40af-ba0a-de1b7eb89ec8','ec1dd010-46a6-4bf1-b8da-05f4c672e2af',65,80,50,0,'2025-09-24 11:01:48.277','2025-10-07 06:17:47.042','598986653-5-2'),
('f8c295e8-df54-4c12-8194-5b0498379d36','50577563-264a-47c3-ad7f-93a3a9e59474',0,0,0,0,'2024-09-27 14:05:56.660','2024-10-07 14:03:13.193','614460765-1-3'),
('f8c2c64a-9be9-4d58-9b40-edd099bdd8a5','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.859','2024-10-07 14:02:25.807','47867667-1-27'),
('f8c3be94-5da0-4dbf-a7b4-1ce373c9cb24','0009aeec-e682-465c-b701-363a3ef377a6',20,26,16,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.773','655307091-1-91'),
('f8c73fa5-2619-4e32-b118-5e0e2ac73f79','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-39'),
('f8cb8633-70a4-4972-875d-55f381795887','f4b1796a-8b5c-4dbd-bda9-77443172ac8f',0,0,0,0,'2025-01-06 13:08:21.555','2025-01-09 10:06:17.575','735340001-1-36'),
('f8cd5862-c95d-4e13-a27a-b624a87a937c','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-40'),
('f8cee00a-e5f5-4a0f-8fce-dca714f46f7d','17a26aef-3edc-4baa-9cc1-e31a937771e1',100,65,75,0,'2024-12-07 09:32:18.094','2024-12-19 09:32:51.430','734626870-1-4'),
('f8d0b13b-ca47-4bf7-b9b5-e50e23eff846','1be34cec-f9da-4977-8cc5-2926d39d8ac5',0,0,0,0,'2025-01-22 09:07:13.129','2025-02-01 10:51:15.249','478449275-1-25'),
('f8d1db31-943e-45a4-a4ac-13dbe4be0637','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.069','223433822-1-31'),
('f8d37a7e-b471-44d3-a93d-9e1a64ffb4eb','fea9db7a-edb9-4a21-8dcd-5d30d009e820',45,17,210,0,NULL,NULL,'140284101-2-5'),
('f8d49199-31de-473e-a7be-fda3796a2385','4301b768-4818-4e74-a6d0-12a33474f5c6',8,58,221,0,'2025-10-25 08:59:16.419',NULL,'478450171-1-27'),
('f8d4b7f8-6d0d-4246-ae09-e6da3100a2ab','6dd5441b-271a-446f-944c-4ee5a3660fbb',0,0,0,0,'2024-11-12 16:15:58.158','2024-11-22 21:22:36.679','745629044-1-6'),
('f8d653af-dbf5-456c-98d5-86b5911ec0d5','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,3,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.073','412586204-1-174'),
('f8d71195-cb97-4d42-a2d8-d18e1ec16b3b','bdca9e48-96b4-419d-bf21-16ca73c6de14',85,59,57,0,'2025-02-15 13:31:58.894','2025-02-21 17:08:52.720','221322415-2-1'),
('f8d71b0e-678b-4acc-8633-6bc1d7a69c61','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-49'),
('f8d951ea-f430-4113-aca3-02f77af27b8e','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-92'),
('f8df28d8-d547-4495-bd03-ad2c9d12d19e','85510702-b7c6-4c86-a63c-4795fb24cb65',51,51,77,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-3-2'),
('f8e09674-cdcf-482c-9586-5aaea8513458','e787b002-b91a-4f0b-a507-be225c591706',29,84,202,0,'2025-02-20 12:14:55.664','2025-03-04 15:38:32.599','982558117-2-3'),
('f8e13fe5-2c9e-423d-8e29-3db121152421','b500f3e3-149c-4c27-a97e-11ac0175c96b',63,48,38,0,'2024-10-11 16:09:05.623','2024-10-24 15:20:31.069','223433822-1-32'),
('f8e32c54-eee8-4907-ab72-68b58e3c6110','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-57'),
('f8eafb3b-3889-44d0-a086-0aef1024ef0c','5ea4b207-b05c-4931-bbd1-648b6933aae5',230,63,5,0,'2024-11-21 10:28:58.428','2024-12-16 21:29:16.112','428958532-1-23'),
('f8efc8c7-0ca0-40bd-b974-dccf08233934','cee76706-8686-4b5f-b415-fa5d54173ed1',240,60,90,0,'2025-01-04 10:47:33.017','2025-01-12 13:23:05.907','982837523-5-4'),
('f8f492b1-089a-4a54-8695-b6ab2d42e0a2','aecafc00-84c7-44df-a04a-3bccbbec6f20',60,60,90,0,'2025-04-25 16:56:59.575','2025-05-02 17:09:06.015','644965833-4-3'),
('f8f59757-52c7-4969-8772-d04b268d7d5b','49c326ab-5b3b-49e7-a781-28760709b5be',41,41,25,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-11'),
('f8fad42e-55c5-40b6-b53a-00c13dae3b04','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.960','478631020-1-3'),
('f8fc13fe-3a2d-461d-8492-a222ebad5e7d','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-141'),
('f8fc4a2d-2f42-4c70-a4cf-50a95f156c3d','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.637','412678735-1-29'),
('f8fc4c10-d8af-4fe1-8e5b-3ddfd2dc8529','0dfa8c17-2a67-40e3-83b8-3d8d909e832b',60,105,105,0,NULL,NULL,'47865425-1-3'),
('f8ff06c1-23ad-4a6b-99a5-bc322dc0ab5a','f607b148-c0d4-4e1b-acec-1387e98b77c7',57,77,103,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-3-1'),
('f9051266-2446-437a-8370-40cf1aa2c566','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:35.253','248135683-1-209'),
('f907f405-ff1b-4245-998c-561106fb4d41','c900d790-eeff-48b9-9f2b-48972c98ac32',63,99,7,0,'2025-01-20 11:21:38.774','2025-01-27 21:00:28.158','428718727-5-16'),
('f90845f0-0032-41cf-b7f6-21d90f2e6b24','54f76545-b44c-4fcf-8097-cd39f86917de',0,0,0,0,'2025-05-16 16:33:35.188','2025-05-21 18:42:17.808','478996959-1-7'),
('f90ebb3e-da31-4db1-bc34-9db4f0045e74','36e683d2-d1fa-498f-845e-343164664c82',0,0,0,0,NULL,NULL,'412169316-1-5'),
('f90ed963-6b42-47c8-98ba-d3520c15ed78','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.500','2024-05-23 11:42:38.765','223631242-1-55'),
('f9112b7b-2b71-4535-9c02-5627bd557b2b','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',195,40,112,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.073','412586204-1-175'),
('f914c9ca-ed38-4c23-91d6-c982c775f285','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-112'),
('f918ae25-8bff-4345-adfc-34e196b7f17b','d1dd90f7-c3be-4cd5-8ecd-c3b298598a52',0,0,0,0,'2025-10-20 01:18:13.714',NULL,'41288739-1-5'),
('f91b7966-eef5-4dad-b34d-8f6b417a43be','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-68'),
('f91c6b59-db21-41e3-9879-8d5cdaa8b0f6','d4f91387-af40-4672-a65c-7ea6e96f76b2',47,25,56,0,NULL,NULL,'478350685-7-14'),
('f91dc282-c834-47e3-85f3-6f9e4d181ce8','3268c72f-f164-49fe-b81b-8e7dba188814',141,14,207,0,'2025-05-14 17:03:55.203','2025-05-23 14:07:43.162','127847689-2-5'),
('f91ee7fc-391a-42d4-ae5f-ec34bf7db1e0','6503d97b-1348-469f-841f-5227a221f60c',85,100,245,0,'2025-07-08 11:31:30.467','2025-07-21 10:22:28.740','517205085-1-1'),
('f921a8ac-5fb2-4452-a7c5-213f8742b72b','50577563-264a-47c3-ad7f-93a3a9e59474',0,0,0,0,'2024-09-27 14:05:56.660','2024-10-07 14:03:13.193','614460765-1-5'),
('f9265194-50d4-4311-8b8c-3cd56395ecb7','0ac2a48d-48c9-41d2-91a2-b574a94542b0',60,6,210,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-1-10'),
('f927aa87-ec8f-447d-a0bf-cca7733311ea','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',96,53,71,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-2'),
('f929ef81-4556-4a04-9ced-13c4f61c5d77','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-23'),
('f92ae526-c0dc-4e2c-a5f8-8394e4be0c40','e7f31a78-648d-4a5e-9111-1bf7db38dd79',73,48,30,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.460','501216728-1-37'),
('f92fc5e7-56a3-4571-a291-b30f0bfdc396','9affc7b1-09c4-4e84-b48b-d0c117c421b0',82,110,56,0,'2025-08-15 15:02:52.909','2025-08-22 10:59:18.902','412280381-1-45'),
('f9343ca5-fae7-4ecf-a6bb-061b6ec6848c','b58baa91-8050-4ea7-8247-48fa2eaf8321',0,0,0,0,'2025-02-20 12:15:04.558','2025-03-01 17:30:01.496','046487702-1-1'),
('f935aca0-acc2-4a9b-ac39-3d6f1a2a49f2','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-58'),
('f937f38b-8a9a-491f-9081-eb5a1a284c13','7d12dfd4-551e-48fe-9a53-45d3a05e659d',0,0,0,0,'2024-12-18 09:31:00.389','2025-01-13 10:45:09.519','745346486-1-10'),
('f93a9baf-be78-402d-b23f-09c01ee97fc5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-4'),
('f93d98cc-85ea-4860-842e-3a303808c7be','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-154'),
('f94082a8-c9c3-465e-8836-c5d69fede5b2','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-7'),
('f940c4ab-8de8-4af0-9c81-b31e92c9fa11','577ac94f-b889-4af9-8d01-96034f38a36e',36,64,64,0,NULL,NULL,'478739679-2-4'),
('f9465ce2-031e-4d9d-b668-d080e34a271e','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-58'),
('f946b212-56ec-4256-bc13-220b3203361d','795d2eda-013a-4fd7-b48b-148a85caef26',75,75,100,0,'2025-07-29 12:58:17.977','2025-08-12 06:14:39.676','437392386-1-6'),
('f949977d-dd2e-427d-a6fc-e57c0bd94120','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-7'),
('f949daa5-3ee4-40c4-b010-63419b70eba0','6d45660b-867c-48d4-bfff-e888d7d88b72',160,200,23,0,'2025-10-22 13:06:42.033',NULL,'776312220-2-4'),
('f94b2a84-8aa4-4c8d-ac45-8719c40159f3','f95bdefb-9393-4e36-a67f-177a26978136',26,200,90,0,NULL,NULL,'803703209-1-3'),
('f94b8833-11f2-4fe0-bef8-23237ed09129','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-27'),
('f94cd524-c57a-4a0c-b19e-e51e3db9c965','4affbb1e-1f39-4f6d-95e5-ac1d9bcd8748',90,80,85,0,'2025-08-22 20:28:50.022','2025-09-01 15:17:19.745','598758154-1-3'),
('f94ce0ae-6fb5-48b5-a230-214200d3e378','0bf540a1-4e97-4b5e-bff2-523992ba0522',85,85,6,0,'2025-08-27 19:40:18.364','2025-09-04 06:16:16.062','505948491-1-5'),
('f95099a6-c5a4-4adc-b330-8255d94d0f76','7fbc0cac-4c11-4144-b578-3223cd9dd90a',51,63,14,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-15'),
('f95117af-b29a-4aed-94c7-e55fd303f510','0c7de751-a7af-4359-ab7d-3f7f371e2f00',91,91,40,0,'2025-08-14 08:21:40.648','2025-08-21 08:14:02.400','982720250-1-1'),
('f9531d6c-5959-480b-9a48-e03a63ecf98f','e5840bf2-5934-4da2-936a-d53ee5123083',0,0,0,0,'2025-03-13 12:21:45.224','2025-03-20 18:08:17.358','745297087-3-23'),
('f9532e49-9f78-4e49-b8b0-54ebdf92532d','baab42d4-f1c7-4fba-b4c4-35a3a1c06a9b',0,0,0,0,'2024-04-08 08:57:55.849','2024-04-24 05:28:11.311','745859135-1-21'),
('f955925c-2b48-4747-81a0-a14824455f2a','657d4dc3-7d07-4079-bde2-767c428bef64',0,0,0,0,'2024-05-29 08:53:13.851','2024-06-10 13:50:10.456','745724680-1-7'),
('f9566139-174b-479a-b086-396f463d8935','847447cb-cb81-4f9f-9f95-ff50b1304b30',100,100,70,0,'2025-09-11 06:33:55.955','2025-09-17 16:03:29.946','437397407-1-1'),
('f958eba9-aceb-4211-84a7-8becb0e448d1','fecc5d14-5d99-4fe7-9369-94ddbd3d42ec',101,56,73,0,'2024-11-15 17:06:01.751','2024-12-01 12:29:00.634','982716246-1-2'),
('f95b2f32-5463-4731-be4c-793d687c2ece','fed28e47-8397-440d-8404-a285a8bdefbd',50,100,9,0,NULL,NULL,'011399882-6-6'),
('f9606dc6-3699-430f-835b-7bd05fce8e0b','247be3b8-20f7-4122-8eb4-959e49c31735',0,0,0,0,'2024-11-12 16:15:49.004','2024-11-23 12:17:22.195','248143023-1-16'),
('f960970f-e68f-4dda-8fbe-eaedc2240082','1fa0d27f-c4dc-4c7f-b202-ba5d273805ee',0,0,0,0,'2024-11-15 17:06:46.420','2024-11-27 08:20:07.312','745936573-1-4'),
('f96586ab-cd5f-4bf0-8380-884e5d6cda09','309be9c3-ebca-44d8-be99-f31ff6faaaa1',235,95,85,0,'2025-09-26 12:39:36.619','2025-10-10 21:29:43.022','817619747-2-3'),
('f965b9df-16ff-44e0-a4c1-782b22a0176a','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-1'),
('f969b960-fb1e-47cf-9097-d752a9d467bf','aed57dfb-3aa2-4f6a-849f-51424a18ca86',60,84,96,0,'2025-09-16 16:29:35.722','2025-09-30 07:39:25.872','817578021-1-2'),
('f96a8c70-8634-47a8-9573-89949533f501','85863f70-10fe-411d-ad43-60a5ba95b680',0,0,0,0,'2024-09-19 18:27:17.240','2024-09-28 09:04:10.925','982425532-1-1'),
('f96e42dd-87db-40b8-a862-6bc18c9a7a85','34a4ab26-f53a-4295-9345-9762f27ce36a',77,53,102,0,'2025-09-12 17:16:52.653','2025-09-24 14:32:43.887','478659791-1-3'),
('f96eef8c-e396-48be-ad20-3810334d3e31','d83c40d1-4df5-4c97-bc83-28837db95b2b',102,52,7,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-78'),
('f96f352b-670a-4784-bdf8-bac58e2fe436','c6ac3ab4-f108-43d7-b778-9dc81af095a9',57,62,84,0,'2025-09-01 11:06:13.508','2025-09-10 05:45:08.211','221186271-2-3'),
('f972a546-7d22-441b-bf9c-ba728f4c3c89','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-116'),
('f97482b3-c5e0-4dc5-bcdb-9cab80819480','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-190'),
('f97a226f-4bae-4810-bed0-244726f2fc4a','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-12'),
('f97e5bb3-25b9-4fd7-b382-e7b57b785778','29a0aa55-a6bd-479c-b0bd-60d0d547e6c3',0,0,0,0,'2025-01-22 09:07:04.463','2025-02-03 10:51:51.608','74520622-1-1'),
('f981c2e4-90e1-4c65-8c75-d5abfd8266d5','e2d5a5ed-1130-4ac5-91c5-60afa0aa0b15',89,199,80,0,NULL,NULL,'371105450-4-2'),
('f9836aa1-2c98-4cad-9086-c8db6533bfd5','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-2'),
('f983a2d8-6ff8-4f2a-96fb-2601a7aa0fd4','7420e731-9668-481e-99f8-c3ffadbe2321',51,51,77,0,'2025-10-22 13:06:48.332',NULL,'613252288-1-2'),
('f98840ef-48b0-42d0-8a69-1b96da5cbdd6','ba600219-bd53-41ab-9277-b80560376633',62,79,90,0,NULL,NULL,'598944852-5-5'),
('f9892423-5ca8-4e26-ae99-00eace037b0e','5897b2c7-e701-41b5-8a4e-cff8dcdba453',0,0,0,0,'2025-10-20 04:18:06.220',NULL,'412206514-1-8'),
('f98d3acc-512f-4e69-8dc1-0dcdadacd04d','af69c5a3-87d3-4548-a650-720b69a4fc69',58,6,211,0,'2025-03-11 18:06:04.349','2025-03-17 21:46:07.822','614143415-1-48'),
('f98e1a62-7494-4ade-b7a5-412d456fd71c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-69'),
('f9953705-c090-4676-b71c-4708267dcd88','b7f8578a-5d13-4fa2-9e0d-d1cb8e9d7c01',92,75,230,0,'2025-10-02 08:20:35.391','2025-10-15 08:32:34.227','745219309-6-4'),
('f99f54cc-7539-4ca5-9056-f52b33368185','a4fbce4a-8063-462d-aef4-150b13a4ea25',51,51,76,0,'2025-04-28 07:40:54.848','2025-05-02 17:12:37.403','380417164-2-6'),
('f9a1c85e-90c0-4f7c-807a-9ccf78846d27','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:11.966','248284003-1-63'),
('f9a446bb-bcdb-4f8b-b5a4-4df84a8ae367','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-69'),
('f9a4a9aa-c43a-4921-bbf6-96235d836195','6146ecf2-cb2c-49b7-a4ac-c66f5043d8ad',63,44,35,0,'2025-09-26 12:39:10.670','2025-10-09 09:24:57.388','644803178-2-7'),
('f9aad87b-ac22-416e-9b0c-acdbda50d9bc','d0f5d27e-51ff-470c-bc49-8beb1dcf3ff4',38,38,74,0,'2025-08-14 08:21:35.471','2025-08-25 07:10:53.527','982978293-2-1'),
('f9ac9d43-e613-4763-af48-b408520974d3','8e39c973-c918-4ebc-bd24-9e7fc61de240',76,39,39,0,'2024-03-18 07:29:35.019','2024-03-26 05:54:51.119','428184423-1-14'),
('f9ae9b66-cb94-492a-bce4-a20b6190047f','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-117'),
('f9b03324-07a7-4ab4-a026-3b73ac69a8c8','c0bf7590-01fb-41dc-ab63-f58f5cbecb3c',56,56,84,0,NULL,NULL,'221893262-3-8'),
('f9b471a3-4f0c-4a84-9d7c-8bd106008166','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',78,208,1,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-23'),
('f9b9d823-68bf-468f-9f6d-bfb99bb4bb9c','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-118'),
('f9bb7514-e5f8-4913-a652-6ca4adc4888f','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-14'),
('f9c59f44-ccfa-44c4-8dbc-785944d1e748','11db7379-d6bc-4506-8aab-d802a15b39de',12,9,159,0,NULL,NULL,'644495739-1-3'),
('f9c97bb8-09f5-4a85-80e5-9c3970acbdd3','514bc2cf-f411-477b-a6dc-a5ea8179a08e',0,0,0,0,'2024-05-08 18:43:31.251','2024-05-21 18:45:12.078','478681830-1-7'),
('f9c9d5be-ce3d-4476-aa39-8c8768a161d8','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-26'),
('f9ca5222-fb14-457d-8571-576102c4d521','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-36'),
('f9cacd3f-3084-4ebf-8aa3-c207465beca5','686241ae-bda0-46d6-810f-2b17e9e251cb',97,197,70,0,'2025-07-19 07:52:12.201','2025-07-28 18:39:46.873','371820872-1-3'),
('f9d27000-1214-4f26-afcd-829464fa41aa','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-12'),
('f9d2d6ea-f629-4006-b773-be62071ff241','44eb3a40-af64-4221-b013-eccbddfbef70',232,70,98,0,'2025-04-15 16:01:21.169','2025-04-28 11:58:58.862','371533444-1-1'),
('f9d2f60b-4b00-49e5-9871-ae1c23a65194','d34d77bc-841b-497c-b8af-5ef75be17896',113,176,72,0,'2025-08-22 20:28:41.457','2025-09-03 06:11:44.287','43755091-1-1'),
('f9d72366-e392-4895-b921-60d7acfc2616','aa85d51a-54f8-4467-8437-b14d6b3635dd',54,75,100,0,'2025-07-12 09:20:15.398','2025-07-25 10:49:32.407','486405325-1-3'),
('f9db4af6-16da-405f-b7ec-f38cfdf095a5','3297f200-8a0f-4ca2-92d4-4f4920f4518b',0,0,0,0,'2025-05-28 19:08:44.972','2025-06-07 14:08:05.782','745318139-1-8'),
('f9ddfd35-f077-4459-8c48-ee88cb635edb','09ec3773-11e0-4cf3-8e95-4f78f73f4e5e',74,43,44,0,'2025-04-15 16:01:55.950','2025-04-25 09:51:45.421','598127401-1-1'),
('f9de2222-e79c-42a9-9b4f-981edbcc50b9','3f000338-aa03-4e13-a6cc-483da691dd4e',0,0,0,0,'2025-02-03 18:18:46.878','2025-02-13 18:39:02.323','745582484-1-9'),
('f9deb4bd-9308-4ec7-949d-3cdaa0ec5afd','aed0c1e4-00b7-4884-bc19-3d932afa6442',45,45,50,0,NULL,NULL,'478350685-5-4'),
('f9e38276-1570-4fd9-8044-549ba9dbbacd','0366e6dc-68ed-4639-a5f2-d365e9f3a510',0,0,0,0,'2025-06-11 13:14:33.272','2025-06-20 06:50:45.664','42873500-1-13'),
('f9e4611a-fc96-494e-a48e-70651a2e5de2','acbbe273-0580-410e-886a-d42fbd46404e',92,92,4,0,'2025-01-22 09:07:06.815','2025-02-01 17:38:23.829','982495052-3-1'),
('f9e4ca72-9717-49dd-8fa2-c4b0a75a08ff','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-30'),
('f9e6fd29-7079-4485-a285-1fab4507df25','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',98,230,8,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.723','515129438-1-11'),
('f9e9389b-bfd6-462c-ba8c-6fd466179fe4','d0179e0b-1e47-4301-add1-8a61b9197115',96,6,169,0,'2025-07-26 07:41:47.970','2025-08-01 13:39:23.237','675124573-2-3'),
('f9e9711a-6e4c-47a1-ba9d-a04fe1403601','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-59'),
('f9ed4451-ab86-45b8-af44-e8c928371073','27e2ce5a-dade-42bf-b4bd-0468323a08cf',90,70,76,0,'2025-07-02 12:43:49.420','2025-07-17 14:40:48.087','478524376-1-3'),
('f9ee379d-aea0-42bf-ab09-f75b7f06726c','1e130a8e-33e6-470c-b071-f5dc107736ab',56,56,84,0,'2025-04-25 16:57:13.497','2025-05-02 06:57:34.636','221685294-1-8'),
('f9eecb89-67d7-4420-9397-be39598c1d6f','d7ff18e6-1716-4bb7-83ed-7e09ccd5c1f8',52,65,79,0,'2025-07-26 07:40:28.341','2025-08-02 17:36:11.138','598668612-2-5'),
('f9f3115f-41b3-41d5-87bc-66f0c3b33aa9','4869c334-4618-49fb-9d03-99d95654d12a',48,60,71,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-10'),
('f9f3fbd1-1793-4bf2-95e6-c4604cf57b53','f6f75423-2071-4441-a510-7a2860e937e4',0,0,0,0,'2024-03-16 14:33:58.340','2024-03-29 17:57:55.461','734579794-1-21'),
('f9f4c9e9-bf71-4c08-99dc-64824995bec0','f98de84a-b05e-4f78-aaa2-8b6679e65fa9',202,79,2,0,'2024-07-02 08:19:59.906','2024-07-18 07:32:21.073','412586204-1-176'),
('f9f5e240-eba7-4ca5-b38c-c1d9404c3b5a','b2cc240f-bde3-400a-bbec-a61085853dd5',46,17,50,0,'2025-09-10 10:50:49.422','2025-09-20 18:55:34.694','478867058-3-15'),
('f9f9b6bd-3e00-41d7-87a0-899d69b81560','d3938ba3-ca43-4636-aeb6-c4b9bb2a2f81',75,53,102,0,'2025-05-23 14:05:12.050','2025-06-06 18:15:43.166','019814367-1-2'),
('f9fdb953-dbb0-4038-8db8-043fd2fed713','859bbeae-88c6-499a-9379-f80004270427',0,0,0,0,'2025-07-29 12:58:32.899','2025-08-08 12:23:53.637','412678735-1-23'),
('fa009803-7a2a-40dd-bcac-245f00547229','f1417c30-b22f-4fcd-b376-5e24722581bc',36,40,55,0,'2025-08-21 07:15:16.653','2025-09-03 07:08:02.304','35119636-3-1'),
('fa068245-67e6-4c5e-8511-883b87830550','090b9a06-aee0-4c02-b626-f3e2002f0fce',56,218,6,0,'2025-08-21 07:15:20.574','2025-09-03 19:36:36.852','750717756-1-19'),
('fa07b3ce-1aa1-4d57-94c1-e85985ea93c3','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',170,65,41,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-79'),
('fa0bc945-6e51-4ee4-a49b-cabd3419e337','43e258f2-7cc3-4e63-be4e-0b2929334761',160,195,35,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-8-4'),
('fa0f5551-a447-48d7-9960-6dbcb21d54b0','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-147'),
('fa129925-0807-4c22-9cae-1607f3d53758','f4018e81-dfe5-4f02-8ac8-0d56afe9c0c6',51,51,76,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-2-2'),
('fa16fc62-9dd2-4b4c-96f7-b4d605b4c9c8','9866a947-9974-4053-8415-4518842488fe',245,130,20,0,'2024-09-28 16:27:03.013','2024-10-10 11:35:03.199','126371651-1-40'),
('fa176eb8-70c5-466f-a996-90b07f47c828','44f4434a-fe1d-497d-a075-b27d62c676b7',53,85,100,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-9-3'),
('fa186dcc-d6ee-4077-97ba-c74db7a6f782','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-127'),
('fa18c774-c4a4-4a01-8544-1a14a9de467b','8f1b3fd1-9289-4cd5-ad84-508968f285df',118,115,85,0,'2025-08-25 12:32:05.132','2025-09-01 11:35:05.839','478984010-2-5'),
('fa1e7b57-dc73-4c35-b915-78370dffd439','3f9da6c4-f38e-4cbe-8228-dbd5aa3c016a',0,0,0,0,'2025-04-11 13:41:18.139','2025-04-28 11:58:38.030','221106888-1-1'),
('fa209e2f-6e6b-4a85-b9b1-e51bc5fc49c6','42fd5815-f64a-4d97-ba78-6eb7f4d93af7',51,51,44,0,'2025-07-29 12:58:37.317','2025-08-08 12:23:41.501','644859309-2-2'),
('fa211a4a-f431-4b45-a79c-aef98cb0c334','ab6d3108-30a8-4fcd-b5be-9a799e904968',145,8,193,0,'2025-04-28 07:40:40.288','2025-05-06 11:26:00.016','598454821-1-1'),
('fa21ed82-9a4b-4e17-8451-fae5bad93b4a','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-40'),
('fa24543f-7a51-481c-a4d5-444e81a99e88','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:22.512','248135683-2-45'),
('fa25bbdd-0e66-489c-acb2-e15dc8379b32','e31f714c-14b3-46df-a325-7cbfccab37bf',230,70,90,0,'2024-10-25 11:54:23.068','2024-10-31 07:50:35.355','44998008-1-1'),
('fa274538-d2c2-4f0f-b1aa-2350b09538a8','291604f3-3b27-4afe-8e6a-7541e8711e03',122,120,11,0,'2025-09-12 11:10:08.793','2025-09-16 21:26:03.626','614659832-5-3'),
('fa2ac9c6-80fb-4836-b312-c8be29f58b21','61a0cf92-dde6-4f9c-a186-0f7062c38a21',52,65,80,0,'2025-09-02 14:48:34.082','2025-09-10 07:24:12.131','371180149-1-4'),
('fa2d835f-ce15-494d-84bb-b858a4a55b30','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-154'),
('fa34a173-b407-4811-9cf1-c10f10ef2de1','118a1c73-66eb-4870-b4a4-04f623a1ba0e',97,200,7,0,NULL,NULL,'221897229-1-3'),
('fa37b7a4-41d4-4b24-a745-9262ba7c545a','2a723830-d2b5-42fb-95ad-678895eae7cd',76,39,42,0,'2025-10-09 08:39:52.750',NULL,'011940661-4-12'),
('fa394243-788f-4cd8-b9c9-36a4f03d4df5','f8042fc5-0122-45dd-abb3-ff92fa197c28',100,68,82,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-5'),
('fa3c8381-d21d-4546-ad9d-d1495e72b09f','7a64edfc-282a-4a58-9236-e54ae5c290b3',178,56,37,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-1-1'),
('fa3f151c-80dc-4125-8b70-9465342cdbe9','b815ce6a-bf71-4cfc-aa5b-7389d9e1ebb3',0,0,0,0,'2025-09-11 06:34:25.017','2025-09-18 07:01:44.410','412990147-1-8'),
('fa41e980-416c-4605-bc99-ee2ad8224771','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.214','2024-06-21 09:39:19.258','163401674-1-23'),
('fa439b2d-0ad0-4514-962f-b40ea6539394','ab16c37e-6ebe-4e09-b119-440ce867c25c',75,105,120,0,'2025-04-30 14:29:09.697','2025-05-13 09:05:36.154','371601782-1-2'),
('fa4b36ac-492d-4051-9990-77e51ab57d3e','93d194c6-8c22-469f-9141-d04ae150353e',82,57,110,0,'2025-05-28 19:09:11.734','2025-06-05 12:35:08.404','644820551-2-4'),
('fa4ca025-6663-4b64-bd2e-6463d7272e13','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-72'),
('fa4d1c4f-f3ed-4f92-9824-4f2716d94d52','1dee02e9-6cd5-4591-8aab-b2e2650429fe',51,30,49,0,'2024-11-25 08:28:44.740','2024-12-05 16:17:27.151','163548367-1-4'),
('fa50aa4e-548c-45e9-978a-ef4b7a08e9cc','719f1147-b9ed-45c5-99c0-b1467885c18b',38,39,68,0,'2025-07-19 07:52:28.972','2025-07-26 14:17:10.167','371514006-3-1'),
('fa52224c-4885-4810-bb3d-83a7edb092d0','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-148'),
('fa5359f3-b4ce-430c-9bb9-5a9c9ecec4a0','5d66409e-1cf5-41df-82d4-6465db6f6598',100,177,75,0,'2025-09-18 15:49:04.451','2025-09-30 06:44:37.463','371155650-1-2'),
('fa571087-4577-43be-a939-83062876ff32','6302f68c-26c4-4a31-853e-80b9d1ba59ee',80,70,29,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-38'),
('fa57a5e1-361e-4e65-8af7-5f42b94aa42c','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-68'),
('fa599e3b-5f32-4cb6-b261-2046a94f1a76','f50b7578-5740-4ccb-887c-2f5ee3a55269',0,0,0,0,'2025-08-27 19:39:40.743','2025-09-08 05:17:35.964','478835180-1-5'),
('fa5d32eb-7e05-40a9-b3f3-725bf12a118a','100083d4-abdd-400c-b4a8-7412d2aa4866',64,65,87,0,'2025-10-22 13:07:06.149',NULL,'505724535-1-4'),
('fa626b42-d110-465a-b583-5aefb7394d26','c67def51-fe24-4885-9519-ba2b028c3f47',12,31,206,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-7'),
('fa659d81-ae86-4d33-b33b-26fe3602f798','36ced38f-51af-4146-9bd7-7f1d6c0f4201',94,94,80,0,'2025-06-11 13:14:24.223','2025-06-24 13:39:05.628','644631223-1-6'),
('fa689e67-cc1a-436b-8228-d5eb167639ae','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-14'),
('fa6afd50-f798-474e-b45a-b7a331556e5f','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:35.797','248135683-1-210'),
('fa6bbade-c64f-4915-aacb-7fbb62b624e1','bd7ba9b5-8269-4522-b579-d69c949c4a64',101,201,28,0,'2025-04-25 16:57:07.815','2025-05-02 06:58:52.817','478800752-1-5'),
('fa6c7b26-7c54-4696-bb01-30b2643591e2','96449af3-c272-4a90-b77d-0790552dd455',87,230,65,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-17'),
('fa715083-65df-4d29-b703-3a0b69b4ada7','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-1'),
('fa71a4ee-fbd8-442d-8a77-890a7b0f05fe','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-1'),
('fa73988c-d67f-45b1-9a6f-42ee8007c55d','d3cefc8b-69da-4840-90b9-b720a1f57e19',104,70,104,0,'2025-06-27 17:12:27.693','2025-07-04 21:24:55.448','976121570-3-4'),
('fa779fa0-1d93-4dd0-a74a-9c68e1d0ee10','ef603b58-9644-4d43-9c77-58a606dadcf8',83,186,7,0,'2024-11-02 08:42:11.826','2024-11-12 16:17:38.006','449666503-1-6'),
('fa787d61-0974-4160-a1c4-91b218cd2fb9','6b28fb98-9a5a-4ad1-8f37-e98350541f99',0,0,0,0,'2024-08-07 15:03:05.425','2024-08-14 11:55:07.386','248425122-1-9'),
('fa794ce4-bf49-4271-a5f7-636c8640b86e','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-25'),
('fa7ff014-94d5-4418-881a-1d9eb41465c9','0263f7f0-6c1a-4beb-ab78-25d69142647c',59,6,213,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-32'),
('fa804215-feec-472f-b88e-103c92c80b57','d3ec7007-7937-41c6-9947-c751d7edafa2',0,0,0,0,NULL,NULL,'614597563-2-41'),
('fa817727-e722-4160-b844-5824129ab82b','98028208-d659-4d91-856c-e073b5775825',0,0,0,0,'2025-03-13 12:21:18.205','2025-03-24 16:02:37.296','745547550-4-24'),
('fa8787e2-d322-4e73-b499-b6b63bb44135','8625abf2-719d-4d7f-b206-16948b318b8b',58,70,42,0,'2024-05-29 10:12:16.717','2024-06-10 13:50:39.163','100972804-1-33'),
('fa8b8614-a0c1-4c9f-b3cd-f7450eb4ef78','e2d5a5ed-1130-4ac5-91c5-60afa0aa0b15',89,89,80,0,NULL,NULL,'371105450-4-1'),
('fa8f9b56-fe7d-47a3-adb1-c1fa483fe265','39e33ee0-0790-4b60-909a-d98610bc0a69',0,0,0,0,'2025-01-20 11:21:35.774','2025-01-28 15:18:53.184','478966296-1-4'),
('fa93ec39-e1cc-4d90-8aa3-76ac64bcd6ab','56f86587-7355-4e49-9eb5-727edc1be570',0,0,0,0,'2024-10-17 13:41:05.021','2024-10-23 13:04:48.112','982691264-1-20'),
('fa98b23d-b146-4ce9-829d-838a322ca99c','788053ef-44ef-4778-affb-5333e18bdfdb',0,0,0,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-189'),
('fa9aa0cf-011b-4227-a601-6a0f7a59ac56','341315f1-fc40-40b8-b90b-8982a81a0feb',0,0,0,0,NULL,NULL,'644706970-1-1'),
('fa9ad758-3695-473e-aa78-cd7c8ca18140','b4183fd9-691f-4e50-aa3e-1185b3e78cff',30,30,8,0,'2024-11-08 18:02:48.471','2024-11-16 21:34:27.300','501428847-1-17'),
('fa9b0b8a-af69-48e3-bb0f-bef435d5a1f3','f4fea4c5-b879-4cb4-a43b-6716692a56f0',154,8,195,0,'2025-07-02 12:43:49.421','2025-07-17 14:40:48.087','478524376-3-8'),
('faa2f9a7-cf07-42d1-a9cd-5451b3f987ce','b38439c3-7c7e-4298-a4cc-7ebfb427f502',160,200,29,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-5-4'),
('faa3dbf4-7fe3-4269-a6d0-c02a1fdefad7','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-41'),
('faa72ad7-fb5e-49b9-ac07-73ea3dc99c5e','a0ed189f-42c8-4dc2-8ce9-d13f0ca7b50b',0,0,0,0,'2024-05-08 18:43:15.419','2024-05-21 18:46:29.546','734970518-1-11'),
('faa82876-2d06-47b1-a8bf-b5b536be8c17','a2f5c870-5a02-497b-a7ec-cc1c6033930a',0,0,0,0,'2025-03-27 08:02:57.162','2025-04-07 17:30:05.099','223896175-1-47'),
('faa93e68-6672-433c-a7c4-023441d7fbed','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-10'),
('faab1fea-eaf1-4d58-8e5d-126b47cc2a93','0009aeec-e682-465c-b701-363a3ef377a6',65,7,47,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.774','655307091-1-92'),
('faab7c6c-9ace-42eb-b1c8-de4adedaac70','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.139','2025-01-11 14:14:09.688','248284003-1-103'),
('faac515c-a573-4997-bbd6-37bc745fe2a4','1cb85858-5f86-4be0-b9e7-c06f3f4a2a9e',10,165,103,0,'2025-10-02 11:20:29.746','2025-10-11 15:07:33.568','598320188-2-1'),
('faad09cb-9550-4643-82bb-bfcb38c67172','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-20'),
('fab0b5bb-fcf9-43f7-b92f-77b4f02aa24f','d2f8d58d-42ad-4705-b1e8-a666af927fa3',44,6,214,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-5-20'),
('fab14857-30be-4d75-b6b3-4f371a7b5f49','6f8fd929-0228-4fd9-a182-83fe855d3f5c',11,16,193,0,'2024-09-28 16:27:14.930','2024-10-09 15:38:51.513','962908456-1-26'),
('fab14995-f523-489c-a963-2a1a1c9df42f','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-51'),
('fab1ed07-af34-4f8d-8833-3812770aa9ce','b7d7e0ab-fb74-44e9-bda0-e6dfe17e1c77',1,1,1,0,'2025-09-12 17:16:32.127','2025-09-26 07:08:08.130','644760466-1-1'),
('fab2d0a1-7e37-47ae-9fd9-3d09eda259ae','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-54'),
('fab3dbc3-63d6-4324-8c26-cd47f7696bea','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-174'),
('faba584d-fa1f-4a3e-b5c1-4fb3c693bd6c','95ca4d72-5ccf-4af1-8aaf-eea7cf0b90dc',0,0,0,0,'2025-09-01 11:06:11.151','2025-09-09 18:00:33.390','412315808-1-89'),
('faba7cbf-044f-49c3-bbaf-bdfe9a1939ca','111ec340-48ae-456c-b501-40efe003e8c0',58,73,105,0,'2025-01-26 10:54:34.244','2025-02-08 15:04:33.501','12752907-1-3'),
('fac57927-23f8-4966-af35-21e37d6a6660','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',70,12,182,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-82'),
('fac6799e-491d-484b-b1df-0b7590adbaf3','1f47f4f7-d248-416a-a50f-29dc04cd5570',200,90,28,0,'2024-03-30 10:55:00.100','2024-04-03 08:28:11.225','982320922-1-4'),
('fac6e3cb-1acd-4194-9d68-e7b99d61699c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-199'),
('facbf266-a1d3-44dd-818f-80827154f53e','5df07c2a-6df6-4fd0-81d9-b11a963bba05',64,65,86,0,NULL,NULL,'644463972-2-4'),
('facd15ef-59d8-4dbc-8d89-184532b335ac','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.203','223867751-1-98'),
('face57e3-4173-4634-8c50-ddce7e1a9554','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-160'),
('face63ec-bd55-4b7c-8a3a-620fd82d337a','d4f91387-af40-4672-a65c-7ea6e96f76b2',47,59,11,0,NULL,NULL,'478350685-7-15'),
('facf96d1-d893-4c88-bad6-00ffaa9fadc2','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-38'),
('facf9722-a552-46d5-8959-a9db8398bc47','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-25'),
('fad1179a-c9fa-4d47-8706-8b006ef222d5','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-49'),
('fad2ab93-a261-45c3-bd83-f04084c64016','b06ce133-1594-45e2-a7cc-4e4bcc8e0bd9',63,65,85,0,'2025-07-02 12:43:57.452','2025-07-15 19:43:15.075','437222135-1-5'),
('fad4b9ed-4766-4b51-af4d-f052ea2ba607','6c57b0a6-2b24-4537-92f2-a728f232a719',0,0,0,0,'2024-10-02 09:26:47.795','2024-10-08 20:46:31.147','745972164-1-1'),
('fad57ca7-9e40-4524-904a-d8a4f9ac763a','c2863bd2-f075-466a-9b3b-b9e7a14ba13c',100,220,6,0,'2025-10-20 07:18:14.790',NULL,'61340935-4-2'),
('fadaa170-871b-4fc3-921d-3050f79c2388','5f0a69e3-cb40-4269-b9f0-b93f56f93d6a',97,212,7,0,'2025-10-08 17:43:46.256','2025-10-17 06:14:23.899','380453463-1-5'),
('fadbd61e-ee35-48c6-9045-badcddc05028','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-22'),
('fadc5227-c4a0-4699-b804-6dec380551ee','93d1d37f-6e44-4ea6-b46e-463c513b5740',0,0,0,0,'2025-01-06 13:08:11.094','2025-01-10 16:33:57.732','47815812-1-12'),
('fae4241f-0ea6-441e-a92c-174083f20656','e7f31a78-648d-4a5e-9111-1bf7db38dd79',195,100,7,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.461','501216728-1-38'),
('fae4da19-d18e-4bc0-bac2-afef1a8fe7ec','6c35bb5f-22ea-4c08-8835-ff4e35dc983e',111,114,75,0,NULL,NULL,'504809900-2-7'),
('fae5a370-4604-4631-8453-1091ec9c8ee0','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.501','2024-05-23 11:42:38.765','223631242-1-18'),
('fae70444-7a89-4f8e-a913-44ebc189d79c','e19ff5c0-c85c-4ece-a9d0-cb1eeeb4c292',80,90,206,0,'2025-10-20 07:18:14.790',NULL,'61340935-5-2'),
('fae73a98-3d5a-41d4-8af1-dd037a33cc9c','d9a12366-07e8-4d5c-897d-e9877a9ebe15',168,96,7,0,'2025-07-12 09:20:00.358','2025-07-28 18:39:31.113','221121416-3-3'),
('fae84766-e0be-4c4d-8d24-03b04f1aaf71','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-67'),
('faeacaf6-7e68-458a-a22e-12881533a8da','46d1512a-2bfb-476d-a224-9390f3e194f2',104,42,11,0,'2024-10-11 16:09:11.850','2024-10-23 13:04:15.421','412395565-1-41'),
('faeaedce-b492-4b6b-96f9-b072f920a167','6302f68c-26c4-4a31-853e-80b9d1ba59ee',93,68,14,0,'2024-09-10 10:47:08.795','2024-09-16 21:14:07.194','655571326-1-39'),
('faee14e7-da8b-43ce-a25c-86d9395dd57f','2fe519bb-8989-4e31-9bbf-7258948724d8',90,65,82,0,'2025-09-06 07:20:43.652','2025-09-12 22:09:27.950','43783689-2-3'),
('faeeaf22-e524-46d4-bf6b-c4e7443d453d','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-148'),
('faf08407-f3d0-4414-b746-64d3dd4de12b','28057f32-5a03-4e03-8439-6fa92708fc37',55,47,52,0,NULL,NULL,'734230509-1-1'),
('faf17b64-8ea0-4c83-baff-61a92b985f17','1f9f088c-b7f3-474f-8b52-75626504976e',34,38,27,0,'2024-11-08 17:38:02.162','2024-11-19 17:22:04.282','223744518-1-17'),
('faf57af6-26ce-4616-ae46-f555f048a59d','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',50,14,75,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-17'),
('fafae0ab-5378-4907-ba34-e1f88e3de7c4','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-30'),
('fafc8e17-1452-42f8-8e61-fc29b45d0aec','74a88fdc-855b-48f5-8e6b-ab25edb45ad6',42,106,206,0,'2025-01-06 13:08:05.460','2025-01-13 07:51:15.784','449582137-1-42'),
('fafcb8b8-307a-4101-95c2-73e58d86ab1a','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-62'),
('fb002cd1-267a-47f8-979a-1ec970488d46','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-9'),
('fb020f50-e67f-4e14-ad3e-e1e6cc79db76','995dfcaf-53b8-4dad-ac21-6f4ba521c6d6',120,120,65,0,'2025-10-25 08:59:25.499',NULL,'478544570-2-5'),
('fb02ff11-b5af-49d7-ac37-07ae9d6c629f','3987bcda-6531-4738-8815-187fd84bf71c',40,31,30,0,'2024-09-10 10:47:13.058','2024-09-16 17:09:39.159','75056602-1-25'),
('fb037af9-29db-4dcb-9566-7439156fffcf','397a1cf4-84c1-4a22-ab7c-8c82f6b78e4d',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.491','478763903-2-9'),
('fb07167c-e25d-43a0-8a08-0d76baf68b82','1b72736d-38b2-4d16-8ad9-6c6e005c6913',0,0,0,0,'2025-07-02 12:43:30.831','2025-07-21 18:56:12.310','412550726-1-2'),
('fb091a3d-7716-4ea6-afea-df2c3f335c32','9352c514-0fdd-48fa-b56e-282bbbd800a9',0,0,0,0,'2024-05-10 18:50:13.485','2024-06-04 14:25:21.698','449921347-1-6'),
('fb09750b-0b77-4e91-9489-a77a473d9deb','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',140,47,6,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-24'),
('fb18d276-3815-4e95-b33f-3cb54b178329','796fef16-71d1-4946-b8ba-54f687adf598',78,43,43,0,'2024-03-23 08:35:56.506','2024-04-08 08:33:34.368','982944278-1-27'),
('fb1a4b53-c598-4eec-ad9f-79ffb073cad3','8d062431-1a4c-4054-b1a1-188c412c0dd2',56,106,78,0,'2024-12-13 14:49:26.077','2024-12-21 08:19:24.219','221511033-1-2'),
('fb1e973f-e7a8-498e-8dc9-a72b55fd394d','53ceca88-8b9c-46cd-b0d8-18b8ca55f1d5',96,195,6,0,'2025-01-11 15:20:16.010','2025-01-19 14:52:01.977','221264394-1-2'),
('fb209be5-92f1-4673-8ba9-79195ab94448','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-158'),
('fb21f40b-b5f0-4cd9-bf24-073751e7ff9c','e41a0db0-621b-48e7-b4d7-e8ba04bfc986',0,0,0,0,NULL,NULL,'910601621-2-16'),
('fb224ac4-0860-44f4-825e-50f6b85c9599','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.215','2024-06-21 09:39:19.258','163401674-1-64'),
('fb269c1d-57e1-44f8-8633-8d1ccd19253c','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.083','478449021-2-8'),
('fb2869e7-718c-42b0-9088-1df689d2c405','98cb02bd-7762-4c5c-a0ef-31cb8f3c04d4',127,127,65,0,'2025-01-20 11:21:40.612','2025-01-27 21:00:23.912','31951233-1-2'),
('fb2ae268-89c1-4414-9e3a-9646b6de916d','33483979-937a-4973-b2d2-b22d22f5bb38',0,0,0,0,NULL,NULL,'478183761-3-2'),
('fb2cc929-022d-4241-b9d2-4c52dc9de1c9','b7df853c-c210-4f4b-bcc5-e0189a8ebe0b',110,70,50,0,'2025-01-06 13:08:12.164','2025-01-10 16:33:51.205','911398945-1-3'),
('fb2dd773-4415-4062-abc5-4e978d21199e','0f3df944-0578-417f-8086-580114d92963',0,0,0,0,'2024-06-08 08:00:04.367','2024-06-21 16:18:39.742','248746135-1-4'),
('fb2ee589-928f-40cf-9fd2-ff561e112db2','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-37'),
('fb315746-5284-4366-824c-1ea75ddbc970','69acd97e-52c0-45ae-adf5-ee013e52776f',53,53,52,0,'2025-01-20 11:21:23.823','2025-01-29 13:32:07.559','412596038-1-5'),
('fb33a95f-e33a-4906-85a4-7d4f23ac3644','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-60'),
('fb3cd071-5495-4756-b938-0db5d5e57ea8','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-15'),
('fb3ff854-01d6-4f05-b624-125997c20841','9238ecd1-3415-4c31-9775-89dd0b8f0e6f',0,0,0,0,'2025-02-09 09:51:13.911','2025-02-19 19:03:52.735','41256945-1-11'),
('fb42d8c5-03c1-4acb-bacf-48fbb884634a','80b1233b-a544-4cfa-b3c0-d621b23200b4',40,40,44,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-6'),
('fb43a3fb-a440-404d-bd0e-b58b93d27265','8b903902-c3bc-4e33-ba59-0a5aa28db73c',35,35,190,0,'2025-06-21 04:33:44.096','2025-07-02 06:17:10.670','695249199-4-5'),
('fb4a343c-9168-4ddc-9e21-3c6d39b85a73','9114ad70-d53e-4d1f-89c7-30585d0a43de',45,56,10,0,'2024-03-23 09:06:29.121','2024-04-02 16:08:39.593','146630568-1-43'),
('fb4b3528-2ba2-4ef9-8b35-160bf1c33ea9','20caf6f2-000a-4437-a232-063502942439',57,82,62,0,'2025-06-27 17:12:22.344','2025-07-08 11:33:35.340','221686736-2-6'),
('fb4fd106-0133-4162-8aef-efca9bee694c','e98a8dba-7836-4c3e-99ff-5d8e5dd92672',98,156,70,0,'2025-04-30 14:29:23.373','2025-05-10 20:13:49.714','437250812-4-4'),
('fb51614b-cbde-48e1-98cc-2878b53b9db5','be83833f-6e73-430c-8d22-7a462cee5fde',70,85,75,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-3-1'),
('fb51c45d-3a00-4889-beeb-076c771977b6','e08d6319-1822-4277-942d-9932d60b996e',0,0,0,0,'2024-07-31 09:48:59.289','2024-08-07 08:41:42.094','248211803-1-119'),
('fb51c62e-10ae-431e-a531-55e43628894a','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-32'),
('fb53be80-ca4d-4c6a-9b7a-c3aa53e935b0','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-111'),
('fb58fbd0-f6bc-4167-89cc-3793f92f51a0','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-33'),
('fb5bd2ed-76f5-412a-829a-2ad5104a52fe','759ca728-44c4-44b4-b1c1-5a008f6f743e',190,106,50,0,'2025-09-24 11:01:21.468','2025-10-02 11:12:24.133','644590959-1-1'),
('fb5ccc36-c2f6-4237-9487-706b3f5c3948','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-114'),
('fb5df362-f11d-4a93-af82-78e9a728c053','6dd63c3c-43ca-49f0-9b2c-7b78a1c3be43',80,75,95,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.150','478824521-1-4'),
('fb5fc925-e7a2-4c47-a59c-68a5b4ac78ba','405c5569-3390-43f1-95ee-f006ef560059',65,95,70,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-1'),
('fb61c2a5-da6e-4ebb-ad5a-2e266130e0b5','b78519ec-4b79-400f-a709-a1f09256d30d',75,2,190,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-22'),
('fb640dbd-6bc7-4256-aec5-f9483b7f30ef','f3e0000e-4898-4d80-af42-141e9f4c9316',0,0,0,0,'2025-08-25 12:32:29.252','2025-09-20 18:54:33.576','478983907-5-3'),
('fb6700f0-64e8-488b-b1af-9d88d1b9f463','8fc7023c-7fab-44ae-a533-006d835eddb6',160,200,4,0,'2025-05-28 19:09:17.792','2025-06-04 07:24:40.607','478559056-3-21'),
('fb6a9eca-8787-4d03-b796-33570e8cbc4a','62b3c82a-e86b-485b-b9e4-6dbc670ceecd',66,15,7,0,'2025-09-16 16:29:04.382','2025-10-04 13:57:40.403','478906000-2-18'),
('fb6c8075-2ca3-4878-aea3-b37db1f2171c','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',180,200,34,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-50'),
('fb6ea3ed-2895-4bbd-aec3-661eb09b4fe9','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-31'),
('fb7074c4-ce58-4273-84b4-58daabe7593c','c3213c48-19cc-46a9-8e33-43ae12cb3cc1',0,0,0,0,'2024-03-16 14:34:20.311','2024-03-26 16:08:52.649','734499902-1-26'),
('fb71d540-6ae1-4621-af30-1bf281a6a1bd','392002f0-0072-4e34-8b2c-a20b4626c4e6',0,0,0,0,'2024-04-27 08:45:33.987','2024-05-08 21:07:25.067','745180441-1-7'),
('fb739bf7-0919-4271-8a61-e59403c55f88','d833e6db-bbbe-4ad3-8f94-98a7c0f84dd2',0,0,0,0,'2024-06-08 08:00:09.215','2024-06-21 09:39:19.258','163401674-1-63'),
('fb75dc85-2aaa-480a-8d77-3de8384089e9','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.869','412346704-1-8'),
('fb776841-a119-4445-ba52-b0876241754c','1212388b-af38-4c94-a2be-77d942c1cf78',0,0,0,0,'2024-12-23 12:00:45.084','2025-01-06 07:01:26.419','745766580-1-6'),
('fb77a219-3357-4c0b-91cc-923942ed8864','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',4,64,150,0,NULL,NULL,'478739679-3-11'),
('fb7b04bf-de6c-4da0-b73b-4207b3c41037','7fbc0cac-4c11-4144-b578-3223cd9dd90a',91,5,200,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-23'),
('fb7f57be-6e06-48e2-8f05-4c245d1cd54a','5901ecd9-86b3-4ddf-ac82-3fa15113d4ad',0,0,0,0,'2024-10-02 09:26:49.901','2024-10-08 20:17:54.300','478479612-1-19'),
('fb7feac6-8719-4289-9e36-15f26fa0e1f3','07bb64ff-aec7-401e-a7a0-773145781f60',98,193,65,0,'2025-09-16 16:29:45.001','2025-09-29 12:23:06.903','644762741-1-4'),
('fb824e71-aace-4ece-b9dd-8f730979bdd6','18e000a5-38d8-4f59-8d75-1b355bc090f2',0,0,0,0,'2025-10-22 13:07:09.586',NULL,'412400536-1-5'),
('fb82a2bc-9483-4f77-aeba-10d280287eb7','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-97'),
('fb844327-ca8b-4bb1-9468-e3856f06cc13','9ea68f31-7756-4447-84dc-16ea42994b2c',43,43,79,0,'2025-05-28 19:08:43.258','2025-06-07 14:08:13.740','371381951-2-5'),
('fb8571d6-6316-4aec-89ed-90713e4f52fa','4d09caa6-45de-4f3e-8599-b820c3a23785',0,0,0,0,'2024-09-03 15:28:36.095','2024-09-13 16:38:54.588','412871738-1-99'),
('fb85b1e3-bc77-4bf9-adef-d2dd348b3040','6dea2881-bc11-4637-b359-47042c58b112',100,80,100,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.333','437545074-1-1'),
('fb865bdd-91ba-44c9-84e7-5277a4636010','0602416a-017d-4286-844a-6bc37caa79a8',95,19,162,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-4'),
('fb89d7dc-ac25-4864-8c7c-0b0da1402644','ff5b1597-758b-485a-b299-4127569206b1',47,6,97,0,NULL,NULL,'750939503-1-2'),
('fb8c826e-ad10-4861-96d7-2a6103d9e377','0602416a-017d-4286-844a-6bc37caa79a8',42,38,202,0,'2024-11-21 10:29:07.206','2024-12-14 17:25:38.777','517616028-1-5'),
('fb8f9ab7-8691-4285-884b-96af4bdb0483','741d72ad-ef49-4e12-9620-317e8249941a',0,0,0,0,'2024-11-25 08:28:38.880','2024-12-05 16:18:10.062','858210128-1-6'),
('fb8faf12-5d16-4e52-9733-6102c69d6636','9f8ab7ec-acec-4d59-837b-5cad962976a2',57,85,59,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-1-1'),
('fb96359e-7865-4fc5-bdf0-2a160b4dad85','186c3fe1-8981-42c5-824f-091f5394d4a8',44,24,71,0,'2025-09-12 17:17:07.745','2025-09-23 14:03:57.119','371540742-1-3'),
('fb97f07e-a244-4c08-9773-42121ae40061','11793050-5052-4f11-8d62-da08ff8bd229',85,67,65,0,'2025-01-06 13:08:08.984','2025-01-11 14:09:23.745','221341784-1-6'),
('fb99494f-69dc-48dd-8fb3-046c06dde4f9','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-37'),
('fb9d101b-28d7-40fd-b986-d7acb4177414','b0060c9d-541b-414b-8746-14ca66ac0c3f',60,60,92,0,'2025-05-09 18:43:35.608','2025-05-22 15:23:27.973','437233015-3-8'),
('fb9f65ec-3e36-41cf-b62a-6a62fe5b1a62','2561651b-3bcb-4dc3-84a6-4b72ac7430e2',0,0,0,0,'2024-08-31 16:53:28.236','2024-08-31 18:14:18.175','478693155-1-10'),
('fba14d2e-4085-4540-8328-8eb3be8fe397','19c6a32c-4384-451a-aaa5-dfc264ab827b',46,18,73,0,'2025-07-12 09:19:05.510','2025-07-18 06:24:15.341','517895646-1-25'),
('fba28805-1743-4810-892e-89916a9574a8','d361d18b-4b93-47bb-9f0e-b3ddf5f8102e',51,51,77,0,'2025-09-01 11:05:45.933','2025-09-08 06:39:05.293','437895842-3-2'),
('fba3e658-6eac-4b27-86f4-fe6974b3e89e','619eb068-59e2-46dc-bc94-81ec4819d1f3',63,65,85,0,'2025-07-08 11:31:07.691','2025-07-25 18:05:01.480','531340061-2-6'),
('fba62ac0-91b5-40f8-a156-34535deb1af5','e4b70282-c781-4544-9aea-b8f1b71be956',63,57,85,0,NULL,NULL,'221407742-3-6'),
('fba786ba-a4c0-4947-962c-b5c27a06599b','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-56'),
('fba80a66-a10f-4a16-ba0e-4807703a7f8c','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-18'),
('fba89f56-9ff3-4e0a-8810-253239123825','243bf136-94ff-4e73-8eaf-8fc7da0321d5',48,43,25,0,'2025-09-24 11:01:48.276','2025-10-07 06:17:47.041','598986653-1-6'),
('fba9e14f-d8c8-4ee7-99fa-731a02e2d103','cecc8463-45d0-47ec-979e-e51c1cede7c1',0,0,0,0,'2024-05-16 12:25:38.043','2024-05-24 07:09:15.936','412454305-1-2'),
('fbafd67c-01c6-49aa-9414-605e15eebfb5','dcd84eae-7e44-4bb7-8097-c9ae9e3b532c',35,105,190,0,'2025-07-26 07:41:43.879','2025-08-02 17:36:06.046','371365041-2-1'),
('fbb29fef-5cb6-4962-8418-8b5b1ec4810d','bf1a5038-41f2-4421-8c5f-5546bf1e6c91',66,96,6,0,'2025-01-10 08:54:40.515','2025-01-15 05:31:03.350','221476651-3-3'),
('fbb79a4d-eee0-4a45-90e2-4dd1d6feb671','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-57'),
('fbb88b2c-095b-465d-bf66-2a5a54ae0d3a','e5ac949a-a99b-4b9f-9a4f-4f727fccb27a',52,70,29,0,'2025-09-26 12:39:13.891','2025-10-09 09:24:47.314','319585140-4-2'),
('fbc1d792-9fe7-43b2-bbca-816747a6387d','7fa9f925-05cb-43ed-8606-82ede8806312',0,0,0,0,'2024-11-15 17:06:44.151','2024-11-27 08:20:11.826','745831913-1-23'),
('fbc28646-d425-4adc-bd1f-385553a4cb87','3166ea3a-776c-48c3-91c8-684a49e8a243',105,73,6,0,'2025-08-27 19:40:40.615','2025-09-03 06:11:03.306','371421349-2-4'),
('fbc4973c-6d49-4e01-ab30-588c0a44ff29','7d5afc4d-54d4-4d61-8ae8-ece35555da95',0,0,0,0,'2024-11-02 10:13:27.314','2024-11-12 17:06:08.204','745881843-1-3'),
('fbc5239f-5b61-4fe9-9e89-25b7df798b86','8fdb1f9f-ce3b-4900-a3ad-0a817d4437e7',51,51,76,0,'2025-01-22 09:07:08.975','2025-02-01 17:38:09.630','221481972-1-1'),
('fbcc1415-6443-40a1-b6b5-d5ffb04dc3b6','1b8f328c-9952-41e3-aa69-f843fde86e4a',37,37,50,0,'2025-09-24 11:01:52.627','2025-10-07 06:17:42.398','745808994-2-5'),
('fbcc2e2c-3480-4324-b724-ccd03e516256','b15fee30-5c16-4f4f-9aec-4a574a38187e',93,80,70,0,'2025-04-30 14:29:21.613','2025-05-10 20:13:55.964','910197116-2-4'),
('fbcff7b8-f855-4a7b-928c-22bbf3af61e3','d9a1e971-aa20-40ed-a8c1-d1b718ae07dc',65,63,87,0,'2025-09-10 10:50:43.648','2025-09-17 18:54:56.036','505850944-2-4'),
('fbd28f5a-3ea6-4999-b145-a42b3eec5279','57c8b712-7ae0-4485-baeb-55a44610ba75',90,90,47,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-2-1'),
('fbd2d398-b603-49a4-856f-4f3f2e3a2702','ca4b53fd-638e-41d1-a236-22653e553702',240,80,70,0,'2024-08-21 14:53:28.676','2024-08-30 15:04:37.640','429340012-1-5'),
('fbd4b4c5-b21c-4a72-a1c1-acedb82bb5c9','79f2695b-370d-43a2-931b-972ba627ccf5',98,67,226,0,'2025-09-02 14:48:47.214','2025-09-12 06:55:55.906','437854000-1-1'),
('fbd6ad14-c041-47dd-a6f5-88779e218500','4b3a859e-83c1-4340-aef6-72aa51fdae3e',0,0,0,0,'2024-03-23 09:06:23.540','2024-04-04 12:47:51.274','412565065-1-33'),
('fbd784be-cb8f-47f1-be65-048aef06a842','4c5ba9e6-2914-4515-a9c4-be6dd42ef835',170,65,41,0,'2024-09-03 15:28:31.982','2024-09-14 19:01:35.933','853766753-1-80'),
('fbd83092-b2c8-4cd0-9058-7e500461b8ce','619014ca-c3c8-4d5c-ad4c-39716a19cbbb',81,99,98,0,'2025-07-19 07:52:23.772','2025-07-26 16:12:14.752','371998665-2-3'),
('fbd89b6e-c257-411e-a43f-b8dacbc6ab25','bec58cd8-502b-49ef-9b3d-96d1fa46d2f0',0,0,0,0,'2024-09-27 14:06:05.557','2024-10-07 14:02:43.363','478728370-1-1'),
('fbdb10c2-1d1f-4697-b210-49c9f6a3803c','98b0fc0f-1717-4b80-8567-acb020b29102',0,0,0,0,'2024-12-28 21:42:14.378','2025-01-07 19:30:46.445','478681299-1-16'),
('fbe03c6f-7276-4905-8783-8ba937fb4d5f','3731979c-f00d-4cd6-8126-64312dfd37b0',0,0,0,0,'2025-06-11 13:14:33.273','2025-06-20 06:50:45.665','42873500-2-22'),
('fbe2a43c-cae4-4a95-bd80-d09007a83340','4fafeaec-0a8e-43f2-b705-384793033ab9',0,0,0,0,'2025-02-18 16:37:04.502','2025-02-27 16:38:59.202','118176933-1-40'),
('fbe579e7-6ffc-4b0e-bae0-8bc02cd60451','b3fb10c2-6a6c-41fc-a7eb-4920e6e670be',0,0,0,0,'2024-05-10 18:49:56.165','2024-06-04 14:25:40.001','478958320-1-3'),
('fbe5f351-f22f-41b9-a87b-afc4162350a9','8df7abbd-ed3f-42e9-ab14-f865fa00f9a1',0,0,0,0,'2024-04-08 08:57:39.654','2024-04-29 09:07:38.567','478943291-1-70'),
('fbe894b1-347f-48c8-92bb-aea844c28532','372213fa-c2e3-4293-b83a-0a8cb1587967',104,167,65,0,NULL,NULL,'765864813-1-5'),
('fbef5a27-3423-454b-857f-2b3c492407be','9500ce1c-a66b-487e-9839-088fab5075dd',0,0,0,0,'2024-09-03 15:28:34.972','2024-09-14 18:52:13.622','478188105-1-5'),
('fbf8a39a-c43c-4117-a2a9-31e4c7879c7f','ac31b261-797e-4d80-b750-2e487b9e012c',75,58,102,0,NULL,NULL,'221383692-3-4'),
('fbfe9fe1-706b-4a0a-957e-6e1c0af558c0','dd0b9e6a-8793-43f0-a937-05a303bc8f45',0,0,0,0,'2025-10-09 08:39:57.710',NULL,'223317066-1-5'),
('fc05053b-50f5-4933-99df-cb9676535e50','db1d5e4b-e2b6-4d0b-9187-a12c8255d9ba',0,0,0,0,'2024-09-27 14:06:21.938','2024-10-06 13:26:07.141','163229349-1-61'),
('fc06df80-4773-4a23-9c40-92839724ad71','ca2466d1-9a83-4f57-8f76-f5ddce302e04',33,29,13,0,'2025-06-27 17:12:11.183','2025-07-14 06:05:05.687','382253716-1-7'),
('fc08c152-b84d-4e93-9769-e3934c759a4d','f3414f51-92da-4967-b108-6baad5cdd798',53,75,18,0,'2025-08-22 20:28:33.272','2025-09-03 12:47:01.224','478110382-2-18'),
('fc0aa9bc-8161-44d5-91f5-7d39c7720885','41b1ee37-8bae-49a3-81d5-d1ef90f7853a',0,0,0,0,NULL,NULL,'478881148-1-1'),
('fc0d17dd-7d20-479c-8974-1a191e745df7','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-230'),
('fc0df139-c060-45c0-b43c-252e0c5ec980','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-29'),
('fc0f9057-d9a6-449b-8a71-4f972a923e96','159c73ed-083b-4d67-98ca-6adcfc554962',94,205,28,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-25'),
('fc1128c7-a85b-49a7-a0c2-30286f31c67a','5bd101e2-5680-4bff-8ae1-8e2121e5666c',0,0,0,0,'2025-02-18 16:37:16.638','2025-02-25 09:59:00.467','478972804-2-38'),
('fc138202-d9f9-4631-a867-c56b6472845a','7fbc0cac-4c11-4144-b578-3223cd9dd90a',52,62,14,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-17'),
('fc142540-8bd5-459e-bb6c-96e3dd98bbf7','f74d165d-70a6-4c78-950c-451bd03b5925',0,0,0,0,'2024-10-02 09:27:07.065','2024-10-08 09:24:53.436','478815317-1-8'),
('fc1638a8-3eb2-4660-96d4-eba86bf1f86d','9bfaa040-9f60-4f84-8302-c3b21d7b1749',50,30,50,0,'2024-11-02 08:42:16.005','2024-11-12 16:17:22.577','16334418-1-44'),
('fc1b54a9-e189-4d34-97d7-41e5204ad8c6','dcd864c7-ef37-45ba-880c-976ebda30365',100,95,60,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-4-5'),
('fc1ca0ff-327a-4707-9593-2587801633d4','dbea80d6-6010-4ee7-a80a-da4b04f677ae',57,63,85,0,NULL,NULL,'221963489-3-5'),
('fc1cb54d-3286-47b2-9418-dc8d782e684c','30506096-717b-49d6-916d-e53b4af1ac5b',108,98,65,0,NULL,NULL,'644303406-2-5'),
('fc1e1cdd-e560-41b5-b73c-ef5b55dc5cc6','89dd67f2-7835-49d3-b564-a0c124d076f0',0,0,0,0,'2025-02-27 16:45:19.021','2025-03-13 09:28:59.436','2487154-1-43'),
('fc1e497f-47f8-48db-8cbb-1f802d1eb96b','b4d98069-3d83-4da4-8f40-7cf8dd0aa2a8',32,90,205,0,NULL,NULL,'598697614-4-4'),
('fc1f5566-861c-474c-a894-43916cdb7b23','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-167'),
('fc207afc-46a4-4737-8cb5-13da9d65e766','04ee6bf7-acb7-4abd-bbee-f34e0d21164d',121,141,10,0,'2025-05-23 14:05:10.820','2025-06-06 21:03:54.502','478233957-1-6'),
('fc2135a7-2ca1-4e8c-9988-c3c615f3049e','df3b19de-7db5-480e-801a-a689b8d2eda0',123,123,65,0,'2025-10-25 08:58:58.836',NULL,'74521183-4-5'),
('fc22d7f6-caad-4e90-b265-afa2507d2cbf','7bb97173-116d-4058-8bc9-64fda10a5901',112,164,62,0,NULL,NULL,'531575051-1-1'),
('fc24173e-5020-4a1d-ad98-c39b86c68403','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-13'),
('fc24545a-5b6d-4c18-9676-1f7d277b19ce','ccc2e1b2-94fe-411f-bb76-62d49ac3ff7e',105,29,201,0,'2025-08-27 19:39:59.903','2025-09-06 07:19:18.865','371413703-2-6'),
('fc256c9d-31ec-4630-9849-b885a8cbc8f4','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',235,103,77,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.986','61428079-1-38'),
('fc271333-6523-46b2-9686-fee693d71609','851859a8-5f92-4ac4-8dd6-6c66446b8f8b',0,0,0,0,'2024-05-23 07:27:11.942','2024-05-31 10:16:03.501','449890150-1-5'),
('fc275d5d-a80f-47db-ac13-c1f867b17e43','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',138,215,7,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-3'),
('fc28848b-e56e-48e9-a18b-c53d2b9ffe02','a3b52076-ddc0-43e7-bdcd-781801f338bb',80,100,165,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-3-5'),
('fc2b26f5-90c0-4a87-b7dd-38d44aad19e9','ad0fccfe-fec2-49fc-a475-2e6c6c3ce2b0',0,0,0,0,'2025-05-23 14:05:26.970','2025-06-05 16:38:26.855','745786401-2-1'),
('fc2c4364-65c4-47ef-b8ec-3dc3eebbc529','f0485a78-951c-4f89-bddf-b2003f0bf783',75,42,25,0,'2025-10-09 05:39:55.571',NULL,'046517356-3-67'),
('fc2f3e1d-d9f2-4c2d-9b37-0df1032d3f80','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-94'),
('fc35112d-f179-4c91-bc57-a51d248f3228','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-31'),
('fc3520fd-1e06-40b8-a137-ee0173ff9388','f9861f37-efe2-4e3a-930c-f694c4e10c6f',68,100,8,0,'2025-10-25 08:59:16.419',NULL,'478450171-4-14'),
('fc355568-7e26-4790-b5fe-a9eb4cea1b29','46d0563d-1067-44bc-9c0a-d69fee69b215',92,30,202,0,'2025-08-07 16:52:28.117','2025-08-21 21:29:33.154','745191568-1-2'),
('fc366d7e-2c00-4a19-8c74-c77f36e4702e','ee4fa9d5-c840-4b56-915f-a8eff865c451',93,110,80,0,'2025-09-18 15:49:05.772','2025-09-30 06:44:24.266','644593040-2-2'),
('fc36d756-4597-4ec1-ae27-d4c5776cd7dc','b8089750-c1ff-4b2a-ae78-78b537c54a69',57,83,101,0,'2025-07-19 07:52:01.011','2025-07-29 13:55:22.241','221443179-2-3'),
('fc385c7e-2299-4be2-8d3f-e04f59615b7e','0f6c900a-c5a8-4b91-8c57-3b604c41023d',0,0,0,0,'2025-03-13 12:21:29.773','2025-03-22 19:19:11.166','478431848-1-1'),
('fc39de31-b81a-4491-86e1-f13c97c060e7','b21eaaf4-a9a7-4894-ad11-faa0bd06fd22',35,35,45,0,'2025-03-27 15:06:13.714','2025-04-05 13:45:35.705','437591433-1-3'),
('fc3dcbc9-1c1f-4213-a41f-34026428956d','b1469323-bb39-4cdb-9a98-79772b8b5170',0,0,0,0,'2025-02-15 13:31:54.155','2025-02-23 09:31:07.586','081411095-1-9'),
('fc3e410b-b311-4865-98f1-6873bd0e45a8','ba7408a0-5dee-4d14-bcd3-4796bd3d4c66',65,58,95,0,'2025-09-24 11:00:26.659','2025-10-02 11:12:06.916','614636969-1-1'),
('fc421727-7bab-40b9-b511-73d7f6e7ccfd','4ced19c3-d724-4c04-81f5-38ec0a0161d6',18,25,30,0,'2024-12-23 12:00:50.893','2025-01-03 19:31:52.612','501212768-1-4'),
('fc42e92e-9440-43e0-9b64-1d30ade8a14c','61525b01-36fe-441b-b103-3aff2961a258',0,0,0,0,'2025-03-06 10:32:03.180','2025-03-15 15:59:26.083','478449021-2-20'),
('fc43fc2b-0318-4117-a69e-ece798940f50','adda5708-19e7-4a72-bd81-69d221efba7c',55,58,41,0,'2024-11-08 17:37:58.623','2024-11-21 12:40:04.106','428511580-1-2'),
('fc4423c3-d860-48d7-9f89-0bbfbf310510','9f402231-48f4-4e54-b1bd-d47b91ae696f',65,65,27,0,'2024-11-25 08:29:01.481','2024-12-03 21:17:16.301','465891539-1-2'),
('fc45a07a-a312-454d-a283-7c551ee736c6','f68f848d-9773-4521-8431-b7efe576a9ea',42,27,198,0,'2025-03-06 10:31:59.308','2025-03-17 14:53:39.452','982126318-1-4'),
('fc474b49-94f0-4def-a3bf-f8438b594b85','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.830','2025-06-16 20:21:15.376','750728735-1-1'),
('fc4802dc-da96-4e0b-93b4-1e8af982f6c2','9c1d4ba6-1850-4e1a-8b43-78085f9d2415',0,0,0,0,'2024-03-16 14:34:13.536','2024-03-27 11:10:49.305','7347113-1-31'),
('fc5026ce-966f-48a5-b59b-d3a7e527a237','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-69'),
('fc549092-cfe5-4c7b-9ad2-a7061cb90991','bb9fb398-3da9-4e82-8bf7-3262f9fec5db',62,57,83,0,'2025-07-08 11:31:37.361','2025-07-21 10:22:24.723','515129438-1-3'),
('fc56219c-bd84-451b-b3df-e141cb97fc7a','047bf09d-242b-472b-97f8-46901b73eea9',24,45,12,0,NULL,NULL,'428905379-1-10'),
('fc5c4428-f772-47a1-93a3-ddd502e3c5ea','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-68'),
('fc5cc792-f7c5-4fd0-a540-e2109bc633be','e54055a2-3c9c-4738-a808-7a4a31877ef1',79,46,46,0,'2024-10-17 13:41:02.667','2024-10-24 01:09:07.004','42837513-1-34'),
('fc66172b-092a-4890-adb5-7f3540999981','25960cc2-fb91-4f42-9e90-011ad226f434',102,95,65,0,'2025-09-01 11:06:19.022','2025-09-10 16:32:58.533','338737901-1-6'),
('fc6960ac-46ed-497e-8ce4-a9b471da271c','333b3000-8c9f-463c-be8e-d21ba57a8f50',96,198,6,0,'2025-04-28 07:40:36.261','2025-05-07 06:08:01.237','221867394-2-1'),
('fc6db77e-78a9-4c00-a023-99133ca6178a','b0ba6071-ff41-49c3-b032-050a49c2f294',0,0,0,0,'2024-11-15 17:06:41.785','2024-11-27 08:20:17.556','734955536-1-4'),
('fc73a488-de80-41d7-8f57-a70531ca681a','3987bcda-6531-4738-8815-187fd84bf71c',49,38,15,0,'2024-09-10 10:47:13.058','2024-09-16 17:09:39.159','75056602-1-26'),
('fc75aff4-79aa-4d4a-91e8-82952571ce00','bd3024d4-77ba-45bc-938e-d1bc61220b35',93,230,70,0,'2025-08-07 16:52:24.799','2025-08-25 07:06:53.264','982561254-1-4'),
('fc827f0d-98aa-47f9-ba48-ac77ca074fea','3471ace5-ec37-4230-b3f7-45e2c06b4427',0,0,0,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-1-8'),
('fc84c1e8-ec82-40e6-b8dc-501090f48d6a','df4ae67d-ca3e-4cdd-b49d-c5f3efda583f',43,43,47,0,'2025-07-12 09:20:34.917','2025-07-23 06:22:01.317','613814330-3-3'),
('fc84dab4-5cf4-429c-be7b-16407529f295','318a9822-d75c-463c-be8d-2b325a9fdcfd',0,0,0,0,'2024-11-12 16:16:10.984','2024-11-21 12:39:30.237','745357299-1-4'),
('fc86b3d5-c52d-4440-b8db-76b546df2461','aea18323-162d-4a93-9077-c2c03f8305d2',57,82,101,0,'2025-10-20 07:17:52.515','2025-10-27 09:24:10.272','896155892-4-3'),
('fc8acb92-729f-479c-a2ca-8441e81540b0','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-3'),
('fc8b05af-f5a8-4530-826f-98846df7e7da','2595f24d-a640-4e24-9f79-2fb9e7f5696d',53,76,102,0,'2025-05-09 18:44:15.909','2025-05-19 20:26:41.211','371528044-1-4'),
('fc8dc13e-2b2f-4c27-9f61-6cbacb8678e3','80b1233b-a544-4cfa-b3c0-d621b23200b4',66,104,8,0,'2025-09-10 10:50:28.797','2025-09-17 17:51:16.582','478474988-2-8'),
('fc9151f9-16ee-4daa-bb55-543a0443182e','6e7cb94f-e7b0-449c-8458-dffd274f8115',44,43,72,0,'2025-07-29 12:58:48.867','2025-08-07 07:12:44.161','371191289-1-4'),
('fc936ed8-104a-410c-b812-9b03330a10b7','7da317c0-1539-455b-9ba8-dd4cc07f965d',0,0,0,0,'2025-04-30 14:29:31.034','2025-05-10 20:13:24.404','478994871-1-1'),
('fc937a3f-324f-49fd-ba54-1413016362a5','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.272','248450889-1-15'),
('fc96355c-6dc7-4a59-90ec-228c99ea0f55','ad2443f8-53d8-489a-843c-af0350c2b5fe',26,49,75,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-3-4'),
('fc9c0f32-5b8a-47a0-ba71-bbe76a903f96','8c3a9387-2db4-400b-95fa-11aef6c745f6',200,160,4,0,'2024-08-21 14:53:24.604','2024-08-31 08:01:45.893','501766543-1-21'),
('fc9c715a-1e9e-4d5c-91a1-9743268ac92e','24781fe5-c8a9-48cf-a94a-3c61efb0a699',200,80,30,0,'2024-04-08 08:57:49.710','2024-04-26 17:01:36.674','412225517-1-7'),
('fc9ce541-5920-4932-a895-b29f855dd625','d2935a63-770b-4c40-a922-4ae6e53662ce',61,61,90,0,'2025-09-12 17:16:55.617','2025-09-24 14:32:31.466','011195834-4-2'),
('fc9e2635-57a4-454b-a7e9-a205cf02d7e8','b78519ec-4b79-400f-a709-a1f09256d30d',50,22,144,0,'2025-06-26 10:29:59.666','2025-07-02 11:46:45.984','750125400-1-15'),
('fc9eefc4-5531-47f0-8b67-ee4d4d57be0d','eef2cd1d-ddfa-45d5-9a8d-4a424c439b99',195,59,7,0,'2025-09-12 11:10:08.794','2025-09-16 21:26:03.628','614659832-35-3'),
('fca0af1b-f4e5-4a43-91f1-213042183d1e','c1d25f90-d493-406d-a430-9b65b4f44c5e',37,13,128,0,'2025-09-26 12:39:41.768','2025-10-10 21:30:06.017','745906539-2-21'),
('fca723c1-fc1e-495e-99bf-dd3ee9681b85','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-122'),
('fca7f368-d4ed-48a2-8d9c-1660809586cc','6edbe2b6-2493-4587-b9d0-320df9f7676b',57,60,85,0,'2025-03-06 10:32:05.829','2025-03-15 15:59:17.012','221307786-1-6'),
('fca97bc3-c6d9-4935-b1e6-3a129a1d1aa6','0c927438-769f-4fbd-a2cd-4c7de6bb54fd',0,0,0,0,'2025-08-14 10:05:58.727','2025-09-02 07:46:22.517','478764154-2-1'),
('fcab8fd5-3ad6-4656-abf8-16a98f41f21d','4ca5522a-ad85-46e8-9cf4-2569cdfb7571',55,40,40,0,'2024-08-07 15:02:49.690','2024-08-16 04:44:27.910','976819499-1-30'),
('fcad90b0-0b20-4218-a27d-9bcf14a9ed39','c29e76a4-89ba-4143-8fad-01a2910620ee',75,65,70,0,'2025-09-16 13:29:06.384','2025-10-04 13:57:34.401','750496630-1-5'),
('fcae2346-4e2c-4443-aa96-7b098f8a8a11','634dc64a-b9bb-45df-b331-ced53563559b',54,54,40,0,'2025-04-15 16:01:28.561','2025-04-26 17:56:22.723','478833375-2-5'),
('fcb13ddf-8f41-4e75-98a4-2854052d7446','362b235e-d786-4066-bf89-32d7106b3ab0',62,57,84,0,'2025-09-10 10:50:43.150','2025-09-17 17:51:46.293','221190454-2-2'),
('fcb155bd-4917-4d7a-aed0-57bcd1e1fc5c','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-49'),
('fcb2d328-f4c8-406d-951d-f77678140811','db48d2de-9b3c-4281-8b61-7cd066669b2d',95,108,77,0,NULL,NULL,'644726352-1-3'),
('fcb78b8b-917a-4fa7-91c2-4850f65e9ea8','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-21'),
('fcb85568-f59d-4366-a37c-4494fc9c9b8b','290c06b6-dac4-4dfc-ae73-602e62cbcd10',0,0,0,0,'2025-06-11 13:14:50.067','2025-06-16 20:21:19.772','248710120-1-20'),
('fcba04df-6b49-4b1f-aeea-86bcc3746912','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-63'),
('fcbe9b6d-cd9a-4d62-bf5d-f8f2af5d02a1','1fdc2fc3-f469-4075-8f5f-8422b3ba0ca1',0,0,0,0,NULL,NULL,'76913598-1-8'),
('fcbf4739-0b7e-4a48-81ba-1d8e0cdb6071','d8194e26-9b2d-4f28-bf31-062e577f118f',65,62,86,0,'2025-08-14 10:05:29.930','2025-08-27 19:35:01.417','531988506-2-2'),
('fcc19467-72a4-43c7-ac7d-8d66aabdcdb3','d176a715-bd33-47f6-bcb7-f384e079f39a',70,49,33,0,NULL,NULL,'501724603-1-7'),
('fcc1bd1a-c3ea-4e9c-84db-46627ed3642b','e9511c57-a306-4e1e-8a16-bbe40431ae5c',117,81,56,0,'2024-11-21 10:29:20.456','2024-12-13 14:13:36.041','449108957-1-1'),
('fcc23f83-91d4-41d5-a0f2-e2ed5b6e17cb','42207860-48dd-4778-ac1f-e702ac193305',110,58,82,0,'2024-11-21 10:29:01.505','2024-12-15 20:07:24.367','126806100-1-2'),
('fcc2eb18-efd8-481c-ad9f-895fa12c201a','72142188-56e5-4fac-8fb4-f7d0f25058ff',100,240,82,0,'2025-08-15 15:03:02.478','2025-08-21 16:36:49.269','437514624-5-3'),
('fcc5e5af-dc34-45ba-87a4-6a14c805c20f','b87a79f5-ab3c-4949-ba48-30ce7638421b',66,52,80,0,'2025-09-02 14:48:39.154','2025-09-10 17:05:41.390','598226174-3-8'),
('fccacc22-a195-46b0-8cdc-1a0d740df436','b95d584f-3939-4e43-8016-f4cdab736e9d',76,50,50,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-2-3'),
('fccb4388-5def-484c-a9e9-cfb4d4c94438','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-28'),
('fcccb683-d065-4417-9214-b7b501f4550a','4a6cd2a1-3ff4-474c-a65c-11e529000224',0,0,0,0,'2025-05-25 10:55:34.085','2025-06-03 20:09:09.257','478245028-2-25'),
('fccce32d-b6bd-4e34-a1f6-e29276c87b3f','c67def51-fe24-4885-9519-ba2b028c3f47',86,15,98,0,'2025-09-26 12:39:30.675','2025-10-09 09:24:42.470','319645924-6-8'),
('fcd057f7-b03d-4822-a654-b6030aa2cd4c','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-169'),
('fcd5a471-e0c9-4dff-a542-464ce301ce84','45c277bd-b0ab-4933-ac5a-f0fc24bf9e51',0,0,0,0,'2024-11-02 08:42:20.857','2024-11-12 16:17:02.601','248292815-1-5'),
('fcd6744c-65e8-4d2d-b03c-b743cd0e4f79','7f189b87-2a91-465f-92fc-e3e25024c53d',65,56,101,0,'2025-07-19 07:51:55.144','2025-07-30 08:02:19.539','613813844-1-3'),
('fcda39cc-53ca-498a-a78c-77a662ea94b2','8ec65c8d-3654-4122-b978-0e2729ab3484',57,57,8,0,'2024-11-08 17:37:56.782','2024-11-21 12:40:09.303','748663171-2-4'),
('fcdb0718-5879-4aa7-a489-7145b04cba51','e7f31a78-648d-4a5e-9111-1bf7db38dd79',56,12,86,0,'2024-04-27 08:45:42.754','2024-05-07 15:42:22.461','501216728-1-39'),
('fcddbf01-d840-4129-8d54-d1e8abbaa9a6','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-36'),
('fcdf48c8-1448-401c-92a1-1db3309605e4','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-110'),
('fce2c076-180a-4a0d-bfe4-56dfdcc4ba07','d7b20d4a-f51a-4294-af83-061ed3bd58ef',180,200,33,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-6-2'),
('fce48c92-6c93-451c-ac88-2e5dfc4a90bb','b960ab31-c1e3-421c-b7b3-012a7ab2d040',98,198,6,0,'2025-06-27 17:12:21.050','2025-07-08 11:33:41.794','221646640-4-3'),
('fce97f73-9bcc-44c5-bf94-0b65bda7666d','c3d0ff20-91e1-44ac-afa5-c3dd3f70c550',84,92,178,0,'2025-09-11 06:34:15.957','2025-09-17 16:03:45.127','428653750-2-5'),
('fcedcd76-ce94-4254-a806-bc915ae69adf','01fe43e2-6249-4c6f-ab4d-3c9816ca6976',65,95,190,0,'2025-01-06 13:08:13.435','2025-01-10 09:44:36.813','910304835-1-2'),
('fcedf0fc-1386-4be9-8e60-d5c56c9682ae','de8a2a10-9ee2-444a-a28e-efaf3ff1c953',100,110,70,0,'2025-10-20 07:18:16.076',NULL,'644664237-3-1'),
('fcef0e95-dd04-4db5-ab24-b423123c55e0','31ae1da0-0ec2-4d89-86f3-f97ab9fd9e36',59,62,89,0,'2025-05-16 16:33:20.388','2025-05-24 08:05:54.729','486181220-1-4'),
('fcf032ed-cdbf-4eb9-ba06-251211cc86f0','4eb16edb-560f-4ea6-b0f6-c060e7f1614d',57,60,85,0,'2025-02-13 20:43:59.083','2025-02-24 17:24:21.202','221693523-2-1'),
('fcf049b2-2fba-42c5-9d4e-1af329127db3','1967acf5-7c9d-42cc-a1bb-b410ffc4c3a0',0,0,0,0,'2025-06-11 13:14:51.830','2025-06-16 20:21:15.376','750728735-1-17'),
('fcf36dcb-418b-4c42-889c-424c0dfa463a','9b93bc7b-3a0b-4c4c-a6a9-6b9da9c5fd02',214,60,4,0,NULL,NULL,'478893710-2-13'),
('fcf39647-f65c-4ebc-84a9-857f85935e7c','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-14'),
('fcf77019-0309-49b3-a045-b327e55fdb53','c98f6188-56c5-4870-be97-be71cf95f62e',48,84,22,0,'2024-11-25 08:28:50.224','2024-12-05 16:17:06.733','428651654-1-21'),
('fcf908e0-d091-4ea9-b264-e9a96336c144','a41c3207-b294-4021-bd05-38e77e201434',0,0,0,0,'2025-05-28 19:08:55.882','2025-06-06 17:36:58.591','412771828-1-4'),
('fcf9364e-36ef-4ec8-9577-855cd248ece8','029e3fa1-2d05-4396-aa2e-a65ebd235719',0,0,0,0,'2024-07-02 08:19:54.334','2024-07-16 05:12:00.272','248450889-1-16'),
('fcfb8e45-828d-42a0-b7cf-e3f51e04370d','1868aea0-f631-4deb-85f5-8aa25773bef0',148,83,5,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-9'),
('fd02fec8-431a-42c7-9acc-f98ed4321a7d','b3d44065-58ae-4a75-9019-04854fbb411c',0,0,0,0,'2025-06-26 10:29:54.817','2025-07-03 11:20:12.744','223422825-2-10'),
('fd031f2a-473a-47dd-9c4a-9619ea7315d6','b17974be-5d4b-4887-b183-c28314195558',0,0,0,0,'2025-02-18 16:37:15.252','2025-02-25 09:59:06.492','478763903-4-22'),
('fd03fd6c-f1fe-45d2-9761-ce1237dd93af','405c5569-3390-43f1-95ee-f006ef560059',76,51,75,0,'2025-03-24 16:02:01.314','2025-04-01 19:42:28.384','982864044-1-8'),
('fd08e44b-7c2d-416c-9014-761e7be926c8','5cf141d8-cda3-41bd-8c52-4544a8958ff7',0,0,0,0,'2025-01-20 11:21:24.898','2025-01-29 14:47:23.676','248135683-2-81'),
('fd09d6b3-a969-4d27-a562-7cbf4d99adde','d0f58f6e-c29e-4d8d-a60b-d38d8c9eada1',204,31,31,0,'2024-12-28 21:42:28.181','2025-01-06 20:09:34.953','655935224-1-4'),
('fd0bdcc0-98ce-48e9-a4fe-1419ca21e4f7','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-24'),
('fd0bf501-a4e1-457e-bb77-ac4dc231be9b','1adddb6e-1797-44e9-a422-6da4f5bf8e9e',0,0,0,0,'2025-02-23 12:39:23.470','2025-03-04 20:48:00.141','081789192-1-21'),
('fd0cbafb-f96c-4f82-a248-3f6815bb5a8f','4d181a42-10e5-495a-b92e-ceb57447ac53',96,228,6,0,'2025-07-02 12:43:55.074','2025-07-16 16:51:04.402','221432350-1-3'),
('fd0edd17-6add-490b-afa5-a1d14176e253','343abbb0-3b83-4960-99bb-3b111e2a8797',120,160,65,0,'2025-10-06 07:10:07.138','2025-10-15 08:24:33.635','338730647-1-1'),
('fd0faf90-8edd-45ad-bb08-76063dba16a7','b5f6869c-be7c-4244-9bf9-704a745a8d2e',56,77,101,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-11'),
('fd164b50-a04a-4885-83a6-3bb07ec5394c','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-121'),
('fd189603-255c-4162-b4cb-e492ae425fc9','e514b349-2bbc-4311-94ea-10df3f123320',23,76,80,0,'2025-03-24 16:01:50.514','2025-04-05 10:57:53.233','644110179-2-1'),
('fd2325f5-3b44-40e7-a1df-59ad7f188c91','6b893fae-c5ae-430a-922a-8b76921e755b',55,84,108,0,'2025-08-14 08:21:42.890','2025-08-21 08:13:45.093','43752518-1-1'),
('fd23c95d-e586-4cf4-9b02-73fbaad123c5','cde4352b-468b-4eba-b9e5-49b1f33cf2d5',62,58,83,0,'2025-09-01 11:06:22.808','2025-09-10 17:04:42.181','221573899-1-6'),
('fd250495-c65e-4445-8f92-94c41c9ee847','e9626be5-ddcd-40d5-865d-7018bc1ef9df',120,43,9,0,'2024-09-27 14:05:43.913','2024-10-08 07:16:14.799','268368509-1-11'),
('fd2520ae-91a7-4390-b45e-bfec857290e4','c1d25f90-d493-406d-a430-9b65b4f44c5e',19,30,205,0,'2025-09-26 12:39:41.768','2025-10-10 21:30:06.017','745906539-2-22'),
('fd28516d-0d15-4477-b670-b4b5b915ba14','b5f6869c-be7c-4244-9bf9-704a745a8d2e',56,77,101,0,'2025-05-14 17:03:49.400','2025-05-24 17:54:56.887','478342417-2-10'),
('fd29104f-0798-4097-865a-9f14c9edd8b8','7ba47169-83ca-49a6-98fc-6ef1a1990eac',210,45,10,0,'2024-03-23 08:36:13.267','2024-04-03 18:54:43.526','982630175-1-31'),
('fd34cf6e-feae-4cfb-ab8e-edbeb870e0ad','561a564d-00de-4090-b3dc-dc3cb34c73c0',0,0,0,0,'2024-05-08 18:43:11.293','2024-05-23 08:25:25.620','734380041-1-34'),
('fd38fbc4-60d7-4ea3-97ff-583faed896c1','494fd125-9e91-4803-a945-381b0444857c',260,72,95,0,NULL,NULL,'449983232-1-2'),
('fd3b0ba8-7a12-44ea-8760-2866f337d1d4','565f6966-f194-4d7c-8b20-64502045078d',31,44,213,0,NULL,NULL,'478350685-2-18'),
('fd3dcbb9-04b5-4a80-97b4-6c0aeadea6ef','8212cfcd-8545-4bc3-81a9-78667026bebc',28,29,52,0,'2025-08-14 10:05:51.045','2025-09-01 11:08:06.634','31979626-1-2'),
('fd507563-5185-4181-8497-461125f618fa','0f4f434e-64aa-4e76-ab76-a30f8676f7cd',40,32,8,0,'2024-05-17 09:42:03.608','2024-05-29 18:58:51.799','428602278-1-40'),
('fd526289-cd5b-48be-b43c-2f9412f5364d','30d375fe-963d-4059-bed3-7e6e37ebd635',106,215,7,0,'2025-07-12 09:20:09.548','2025-07-26 10:05:02.451','221598709-1-3'),
('fd547f3e-52fe-47e3-9604-c5249048cc71','8e61c899-09db-407c-9715-f3b856731f08',96,197,7,0,'2025-10-25 08:58:56.097',NULL,'486741087-2-5'),
('fd58d3ea-057d-4c79-9d4a-e7606083d67a','fd627de9-a7ba-4edd-81d9-c79c6a66cc2c',0,0,0,0,'2025-04-15 16:01:45.518','2025-04-25 19:39:28.226','64434778-1-19'),
('fd5af68e-daae-4760-a406-f499dd34e58b','c6988187-77d5-478d-81f6-fc7450164295',62,68,85,0,'2025-09-06 07:20:27.744','2025-09-15 06:12:34.941','35130528-2-1'),
('fd5b7eef-c889-47e9-8b9c-eb62c267d5c0','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-31'),
('fd5da49b-83f2-4ccc-8eb9-58650a6e42d3','08f19940-4aad-46bc-bf72-01f66d155c84',254,130,38,0,'2024-06-08 08:00:26.487','2024-06-20 20:15:42.322','428341237-1-9'),
('fd5e87e9-6bc3-44f1-9662-95f57d12ae83','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-69'),
('fd5ee342-e3aa-4887-a065-50cdd14eee58','c6867ab4-5976-4f98-8c63-66591eb740c5',57,48,48,0,'2025-01-04 10:47:31.544','2025-01-12 13:23:13.222','982106314-8-3'),
('fd621032-fdd6-4fa1-a572-04764b6f1ace','bb9a5b8a-5138-4f0b-ae57-88695cf68e25',118,118,87,0,NULL,NULL,'786811264-2-5'),
('fd630d6c-7a1f-41bd-a095-f5ab3cbcf330','3c6c148b-48b9-42f5-a540-77250f81fc68',97,17,11,0,'2024-11-15 17:06:10.986','2024-12-01 12:28:39.173','976369647-1-5'),
('fd634823-6257-4cbb-a466-5600be89f515','661bf68c-7684-4ca2-b22b-42afa9f4e989',204,68,100,0,NULL,NULL,'734230509-2-3'),
('fd68391b-9a86-46f6-8274-e17bb4203d19','f1aaaa95-2d25-4f45-b026-0107ca13ac62',88,63,63,0,'2024-08-07 15:03:01.739','2024-08-15 10:30:51.457','616724751-1-7'),
('fd69b1a6-785b-4aab-8366-13a35bfb423f','d5283ace-e684-4edc-9409-0a221cb6b652',100,168,70,0,'2025-10-08 17:43:36.807','2025-10-17 06:14:50.623','644714925-3-3'),
('fd6d55e8-29db-4aef-a9f2-742a6bcae8ca','20de256d-a63f-4ddc-9e1f-42653a455a81',43,35,212,0,NULL,NULL,'47856812-2-6'),
('fd6e5c4a-a5d7-41a2-bbc2-d32fbb606f46','aaaf255b-d973-4737-94d9-7642e86777f3',240,75,95,0,'2025-01-11 15:20:17.289','2025-01-19 14:51:56.907','517205467-1-3'),
('fd6ef9d0-dbb5-43bd-aa9f-a269953c6fbe','49c326ab-5b3b-49e7-a781-28760709b5be',146,26,26,0,'2025-08-15 15:03:05.922','2025-08-21 06:44:14.714','41298450-1-33'),
('fd701992-fdf9-4a5e-8554-c960eb56047a','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-36'),
('fd7118a9-f98e-4f6c-8bf8-ea3d3c7a9d3c','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-23'),
('fd721835-b8c3-4556-9dc4-7c9916eadd35','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-75'),
('fd72581c-c5e5-4a08-b879-ec031f519a2d','cdfdd10a-5aff-42b9-befe-02fb27016fe2',182,100,67,0,'2024-10-23 14:11:56.802','2024-11-04 08:40:24.634','614345013-1-3'),
('fd74cafd-8847-43bf-b684-7e54aecc602f','64e90639-a7e3-48b3-a6b7-5d04f87bdc30',53,41,46,0,'2025-09-12 17:17:06.176','2025-09-23 14:04:02.225','745869069-3-2'),
('fd75b11e-89ae-4657-baa6-a2832a0a0a46','0009aeec-e682-465c-b701-363a3ef377a6',208,24,10,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.774','655307091-1-93'),
('fd76420b-e3ef-48b4-abc5-3a5ac08bed50','f830310d-5e03-43df-88ca-0cb960574619',0,0,0,0,'2025-03-13 12:21:36.985','2025-03-22 07:37:08.535','47811313-2-28'),
('fd788ea6-025c-433e-a9fa-e5322978e70e','10a71c5c-3ee6-4ad7-acf6-abdad6ddb70e',81,56,101,0,'2025-09-16 16:29:13.363','2025-10-04 13:36:32.357','437712381-1-2'),
('fd7ab9df-c743-48d1-9497-8d3fc56d67c9','751c7424-6653-4b97-859d-a1b3462e0b38',0,0,0,0,'2025-05-23 14:05:39.529','2025-06-04 19:42:41.195','412846685-1-14'),
('fd802960-f168-4185-9886-95e5a445ad75','feb77c04-d085-4688-a308-1871c3ac6713',0,0,0,0,'2025-09-18 15:48:36.291','2025-10-02 06:11:59.159','412955343-1-5'),
('fd82b549-c44d-48e8-9a38-5d8ca98d6b90','0ca7b5c8-7608-49bc-9057-d56d835fbea5',11,38,57,0,'2024-12-01 06:48:02.272','2024-12-12 07:41:08.460','91062607-1-9'),
('fd842a3d-b027-448f-8ee4-17059950ba5e','63be6f7f-e08d-420b-b2d7-0017a5bd021a',0,0,0,0,'2024-05-16 12:25:42.332','2024-05-23 11:42:29.141','745912057-1-16'),
('fd8562b4-afeb-4144-a49e-157c626aa0bb','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-26'),
('fd85e83d-6a99-4a01-a17b-6738572e9081','ed05e585-d956-4c40-843b-068d97923e80',185,34,110,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.218','127395599-3-1'),
('fd8efaab-980b-4410-a091-3d80089ddf89','e09a3626-bc71-4669-9faf-3f66c10fab18',72,97,99,0,NULL,NULL,'644390236-3-4'),
('fd8ff252-4516-46a4-8f88-d2da97064604','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-65'),
('fd907041-f12b-493e-8692-0792e115bd1a','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-24'),
('fd934119-8efa-4100-8e6f-f3253a3712ef','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-20'),
('fd9670ed-4ae7-4480-9959-75c052ecb3d5','b1b4317e-ddca-49f3-b171-24c1b0186c6b',42,43,75,0,'2025-05-16 16:33:16.478','2025-05-25 19:11:33.904','371396579-2-4'),
('fd98210e-9602-4e56-870e-b4450f17e78b','addb5c2f-4917-41fa-b1cd-a27dce7e3612',51,51,76,0,'2025-04-25 16:57:02.009','2025-05-02 17:08:53.475','221746261-1-3'),
('fd996107-e456-45ac-97c1-55857fc3e693','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-43'),
('fd99ae0f-fa44-4067-81ef-9fc39b977380','194c43e5-97d7-4321-8a7e-7758ae0d89ed',97,199,6,0,'2025-09-11 06:34:36.075','2025-09-20 19:00:13.570','221692379-1-3'),
('fd9a3237-caff-4394-91ff-dbacc6d8df59','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.869','412346704-1-23'),
('fd9fda94-cdfc-473e-b719-5cf4ebd509f1','d2ff9c8d-4639-441a-9d87-f69bec139d50',80,65,95,0,'2025-05-28 19:09:12.965','2025-06-05 12:35:03.972','517337381-1-3'),
('fd9ffc72-5853-424c-9121-1ac83233935c','adba09c2-3268-49b9-b2e2-a2426fbdcc6f',105,107,65,0,NULL,NULL,'976849487-1-4'),
('fda0a19d-18d1-41db-8465-12f3813dbf32','59be4a33-464f-479e-aa6d-ad757827d4d8',104,56,79,0,'2025-01-11 15:20:22.200','2025-01-19 14:51:40.132','982212726-1-3'),
('fda0dae5-ee23-4b16-a803-610e40fe892f','bd176b24-f129-40d4-8c33-6b35eded0fad',218,5,60,0,'2025-08-27 19:39:49.135','2025-09-07 10:15:27.349','478502129-5-10'),
('fda0db8f-62d1-4570-97ae-c18f90dcc4bd','db4c20e9-8323-46d7-816a-d3fa20324893',0,0,0,0,'2025-05-23 14:05:09.521','2025-06-06 21:03:59.477','248217260-1-1'),
('fda2ab5d-114a-4c50-944a-086987ed35c2','a769cd75-8095-4eeb-999c-d1a749589a77',247,60,19,0,'2025-02-23 12:39:15.927','2025-03-06 10:33:10.122','248739379-1-1'),
('fda53bf0-c56a-4ce0-89e1-6fdc4ab48a1e','f1ec09ff-2f23-4580-a513-8f5e77d85a76',0,0,0,0,'2024-04-08 08:57:44.603','2024-04-29 09:07:04.705','412800723-1-1'),
('fda67d76-998f-4e25-b040-793f8810a1bf','cc5ab5d7-2996-4596-acc7-a526b0c51d82',0,0,0,0,NULL,NULL,'371155605-2-1'),
('fda85adc-8d1f-4e35-970a-e892f5adcd80','0976117a-ad1d-4f63-9831-bac0228939d6',53,100,73,0,'2025-08-27 19:40:08.089','2025-09-05 08:50:53.464','33841628-1-3'),
('fda8baa5-c221-4ad0-a7d5-6eddcf522b43','96449af3-c272-4a90-b77d-0790552dd455',80,75,90,0,'2024-12-18 09:31:05.359','2025-01-11 14:08:16.457','911787432-1-15'),
('fda99198-7a31-43e0-89ae-7f5bf1811ece','058ec720-a3ef-43eb-a600-dd04b3b98013',57,64,85,0,'2025-10-02 08:20:38.058','2025-10-15 20:06:25.460','515747086-1-11'),
('fdad2487-acf4-403f-85c2-5f34dd768afb','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-50'),
('fdae46c4-9aee-4e34-8211-8e987cced42d','a4f80586-262d-4b64-b2a7-1534f42ebb03',0,0,0,0,'2024-05-23 07:27:03.370','2024-05-30 20:04:38.351','449234624-1-7'),
('fdb55ab0-cd2b-4136-944d-897657a38f50','f912307c-b419-4d9c-add4-84739c9e0ea5',230,65,95,0,'2024-11-08 17:37:46.313','2024-11-22 21:22:02.722','982773684-1-3'),
('fdb55dfd-c00f-4aee-90da-3eb9a4bb6b12','e3606b49-005c-4991-8685-15a34953c46f',75,80,75,0,'2025-08-14 10:05:38.309','2025-08-28 18:20:16.505','765729280-4-4'),
('fdb61c81-d87d-4f98-a7f3-b6c8c5026629','06f6cb45-16ea-42df-b2f5-fa4e25818703',0,0,0,0,'2025-09-10 10:50:49.421','2025-09-20 18:55:34.692','478867058-1-7'),
('fdb7a3c9-813a-4c38-b20c-3ef073ed9a2e','c3fef76a-45d3-4c79-867a-6d5761c9fc5b',70,131,201,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-4-1'),
('fdb7da45-297e-420b-babc-64adc5fc19e3','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.192','2025-03-11 18:02:47.568','221339460-1-58'),
('fdb9a583-a1ac-45ab-8ace-37da1508f198','4782ffd5-6563-408e-b0cc-0b514ac522be',0,0,0,0,'2025-10-20 01:17:54.702','2025-10-27 09:24:38.908','412757132-1-17'),
('fdb9a828-2aa5-4336-8702-916a47d14cab','88c87e67-b705-44f6-a1d3-32e6c3d6dfe9',62,163,7,0,'2025-01-04 10:47:40.669','2025-01-09 16:52:37.594','45592606-1-7'),
('fdbdc587-0ca3-4f4c-8006-df918ad58b84','ff41de74-17ff-4bad-989d-6f378ab50997',96,188,7,0,'2025-08-14 08:21:26.947','2025-08-25 07:11:44.075','786895232-1-1'),
('fdc300e1-2680-489e-af43-fefcd8a145d8','3e25f462-8e3b-4316-824a-96abe6ed469b',85,63,58,0,NULL,NULL,'221897229-2-4'),
('fdc4efb7-14a3-487f-8cee-d8b09806a141','6cee1429-9935-4eae-be32-dc630b6d70e8',35,35,10,0,'2024-09-10 10:47:05.701','2024-09-17 13:49:48.056','126824871-1-40'),
('fdc820a6-217e-4de7-bd25-98efa82fde6d','fbe21725-aa89-4d56-9467-9cb01a9ccd14',207,30,92,0,'2025-06-27 17:12:25.014','2025-07-07 06:55:23.558','976680764-4-5'),
('fdc8f849-1ecd-41bb-ad76-3787d7c667b2','77ebfece-7b8b-49a0-87ea-fa0f8b8e8da0',0,0,0,0,'2025-09-12 17:16:40.924','2025-09-25 06:55:47.162','223254418-1-67'),
('fdce5e66-252a-41b3-b5eb-ed8e6584fe7a','159c73ed-083b-4d67-98ca-6adcfc554962',134,33,33,0,'2025-10-09 05:39:55.569',NULL,'046517356-1-26'),
('fdd1dcff-c865-4613-9547-db381ce0334b','2a0c69e9-2aa5-4e62-baa4-854f1483430f',57,72,100,0,'2025-09-11 06:33:55.311','2025-09-17 16:03:19.864','011697836-1-2'),
('fdd1e302-a671-414a-8f7c-7c89a5034cbd','1f5d0f4b-a4cf-4f6f-9289-0f92bb54f3b4',0,0,0,0,'2025-08-14 10:05:23.014','2025-08-27 05:41:45.747','910632087-1-8'),
('fdd1f1ea-0efc-4d3e-a6e7-ef970906914d','46cf4fd0-6caa-4168-bb24-3b124a8287bd',0,0,0,0,NULL,NULL,'750836864-1-2'),
('fdd40d76-6220-48d5-ba19-64605d1d0891','0d93ec76-e105-4626-bfbc-1375be57ce07',0,0,0,0,NULL,NULL,'765738093-1-2'),
('fdd6a0a5-9e7a-4dd8-815c-53c1738a4a51','869ce9df-955c-40b9-9988-140f26d3b591',52,53,77,0,'2025-05-09 18:44:03.273','2025-05-20 16:56:07.118','371394707-1-2'),
('fdd917d6-1ea9-4b01-8953-8c6a6cac7951','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-20'),
('fdd9d52c-0d4e-4f18-9772-23faf3539d3d','2119b19f-4e91-4e8c-bb33-a5039fa5d3d2',0,0,0,0,'2025-04-07 17:19:33.347','2025-04-08 15:34:50.054','74529534-2-13'),
('fddc5d67-cf41-4c79-81c1-810ab99d6118','340fa16f-d3f8-4424-983a-576ebd7c7862',0,0,0,0,'2024-07-20 16:33:19.670','2024-07-30 14:55:02.493','027336842-1-69'),
('fddd390d-8709-4f63-9d1a-0890ec10827c','7fbc0cac-4c11-4144-b578-3223cd9dd90a',33,12,210,0,'2025-08-22 20:28:54.260','2025-09-01 11:08:37.825','745485271-1-21'),
('fddd4043-d876-4ba1-8909-8eb9116a3c63','877e4ae1-48a1-402e-9b28-5eef3571383d',60,87,223,0,'2025-04-21 06:13:20.322','2025-05-02 17:10:32.456','478783487-3-2'),
('fddee7b7-be87-474e-b1b4-5a705165f47a','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.288','412746738-1-85'),
('fde045a3-7b0d-4468-a060-a1b29a7f01a6','3c1c7892-5b0f-43f6-a6f0-8f933b1d36d9',15,17,101,0,'2025-04-30 14:29:06.541','2025-05-13 09:06:07.341','910187142-1-2'),
('fde14e39-d9ba-46ff-b44d-f700cff91cd7','37640361-f136-4df4-b3b6-feaee27509fc',36,63,73,0,NULL,NULL,'745249761-1-3'),
('fde15772-811f-4335-8b54-14034de49473','8b4543e8-c3ef-483e-92b5-3623066138c6',132,125,13,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-11'),
('fde39138-16bd-4e17-b504-9325ded9fb4b','a6e5bb34-4429-4d8f-abc9-2af5b4dd5176',0,0,0,0,'2025-03-08 13:46:22.188','2025-03-17 14:54:01.185','151236689-1-8'),
('fde4ad11-9f25-472f-aecc-65922dbf8b2d','c900d790-eeff-48b9-9f2b-48972c98ac32',175,3,198,0,'2025-01-20 11:21:38.774','2025-01-27 21:00:28.158','428718727-5-17'),
('fde751fd-617c-43c9-a387-01341f0fd1f6','7a998775-22a3-49a7-9475-b06b4e3056af',61,60,91,0,'2025-05-14 17:03:55.204','2025-05-23 14:07:43.162','127847689-4-8'),
('fde7c253-24bb-47de-b712-9571d30a4008','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-199'),
('fdebaca8-647c-4619-8f5c-3ad74ba2b764','ef950bcd-c030-42d5-bca8-173f8ff8e8f2',163,95,7,0,'2025-04-28 07:40:50.293','2025-05-05 09:10:18.502','613725694-1-3'),
('fdebd89a-5a47-42f0-883f-5078bdc40d96','078e5a30-43f7-4f76-873a-4dcdd248380e',100,100,80,0,'2024-05-08 18:43:22.003','2024-05-21 18:45:46.061','50119540-1-4'),
('fdf261b5-52bb-4f24-aec5-e35c59624d91','6ec87888-8b87-4bf1-adae-d5b6742225d9',64,7,213,0,'2025-10-14 09:22:15.247','2025-10-23 06:19:40.265','478164511-2-11'),
('fdf7df48-85b0-462e-90da-cedb6928d63f','86e5956d-750b-4aa3-8f00-53e2db7b9f65',170,55,5,0,'2024-09-28 16:26:47.602','2024-10-12 15:50:46.129','517110811-1-35'),
('fdf87549-35fa-4c7d-9c90-30454bce8cdd','ae3735d9-934e-4a61-bcc1-80bb1afcd7fc',0,0,0,0,'2025-02-03 18:18:19.188','2025-02-15 16:08:47.809','41270066-1-20'),
('fdfd7c64-59ec-4890-986f-d7f73a44ec65','31a3ac1d-cf48-4b66-be88-7fd42f8e6acd',55,52,40,0,'2025-10-25 08:59:21.121',NULL,'478485864-2-1'),
('fdfeafcb-b3c1-4658-b279-2531f548599b','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.770','248692077-1-23'),
('fe00eb89-2804-4e99-a415-b33c333158b6','5b94f16d-f4d8-4466-bc90-5a88e45dee7e',95,184,70,0,'2025-07-12 09:20:18.079','2025-07-25 10:49:11.537','976747802-1-4'),
('fe060514-9281-494f-8aae-da9471724561','9a74deda-3652-44ca-8fa0-b3116126f14c',68,235,95,0,'2025-02-18 16:37:08.207','2025-02-27 06:59:50.874','910775394-2-3'),
('fe0f32c6-d4c9-401c-8ee5-aa1b76907feb','0263f7f0-6c1a-4beb-ab78-25d69142647c',65,11,10,0,'2025-03-27 15:05:43.407','2025-04-05 20:39:10.152','910717262-1-33'),
('fe0f3b11-bff6-4719-8142-59758b77b78b','a039de33-a0b0-4710-a90b-a2a55d34c7e4',75,26,151,0,'2025-05-28 19:09:15.404','2025-06-04 07:30:22.164','371193272-1-2'),
('fe119227-196a-4ef0-9ec1-22d51657ce45','bbf09810-b890-4a13-968f-4412cec77c61',70,230,103,0,'2025-08-07 16:52:43.898','2025-08-21 08:12:27.394','745996696-5-3'),
('fe15b8a9-d872-47cb-a1a1-35c688db64c8','0dfacf6a-8dcc-415a-9e14-a7dfd830c72d',0,0,0,0,'2024-08-31 13:26:49.464','2024-09-07 15:54:00.265','31912550-1-2'),
('fe160af6-0fc6-4f8f-a6f2-c24b4344092d','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.140','2025-01-11 14:14:09.218','248284003-1-59'),
('fe163527-a3f5-4129-979b-9098adccc5a4','adda5708-19e7-4a72-bd81-69d221efba7c',57,50,50,0,'2024-11-08 17:37:58.623','2024-11-21 12:40:04.106','428511580-1-1'),
('fe1ae1e6-9341-42c5-8665-5179570ae976','5eb53186-180d-4850-a598-783b17f41cbf',95,60,195,0,'2025-03-27 08:03:09.215','2025-04-05 22:11:15.005','976843037-1-3'),
('fe1bfcd0-cba9-41ee-abdf-951eac7b5239','568e7688-3b27-40f5-9c97-8b89432bd65e',0,0,0,0,'2024-03-31 17:54:57.361','2024-04-17 10:16:12.696','248435862-1-20'),
('fe1f0c20-7de1-4291-88d9-4141e9753981','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-112'),
('fe233fb1-c9ac-4fbc-8e2e-3c7cd7abe2af','9a19deea-8c60-4c1c-923e-00c7ad1fc71c',0,0,0,0,'2025-09-01 11:05:42.853','2025-09-05 12:00:02.684','412968518-1-2'),
('fe248daf-8f17-4bab-a1ff-e1cdf19630f6','ef7e241b-dfb7-4cd5-82ae-97d400e3f824',0,0,0,0,'2025-02-23 12:39:00.052','2025-03-08 13:58:02.373','412842533-1-15'),
('fe267511-268b-4618-9163-c5f6ed794b2b','e5e0de6c-9ea8-40df-aea8-52579953728c',0,0,0,0,'2024-10-23 14:11:28.588','2024-10-29 11:09:56.722','248103321-1-11'),
('fe268751-860e-476a-a323-676a6ec1bbcd','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-184'),
('fe27c387-cc42-4bb6-a213-996cb517844a','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-1-70'),
('fe29234a-98e7-4ec1-a8d2-185e6a64cfde','de440f55-a69c-4eb1-b8c9-629c405b795d',43,11,185,0,'2025-10-25 08:59:01.029',NULL,'515973668-1-5'),
('fe2cd9cd-8c3e-47d1-b3c6-cdb5ebcb9c00','58ae4a76-4b13-4d24-b3f6-cf6235c8f02c',56,83,61,0,'2025-09-12 17:16:44.837','2025-09-25 06:48:32.381','221485829-2-6'),
('fe2e9949-78bb-40fe-bf16-cab3df94a6c4','7b4b0f31-e651-4a25-819d-b4e21db79d87',82,65,265,0,'2025-03-13 12:21:39.415','2025-03-22 07:37:04.678','449700444-1-2'),
('fe31fe0d-2295-4cf4-b9aa-73c41ef761ba','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.685','248243194-1-27'),
('fe33e63e-c9fb-4b17-a814-33c503475a37','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.262','2024-07-16 05:12:05.214','248418017-1-9'),
('fe37acca-d295-4fb0-aec7-3608d6cf0102','b90750dd-73f4-4067-b29c-e3c2b60c9fa9',0,0,0,0,'2025-08-25 12:32:28.392','2025-09-20 07:01:22.780','437452475-1-1'),
('fe37e2dd-db63-4845-ab4f-95a5d586fd68','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',170,8,15,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.986','61428079-1-39'),
('fe397265-8864-40f1-905c-7fb6b6dda1dc','e9c704c2-110c-4300-bbeb-984901945bae',91,230,75,0,NULL,NULL,'371797202-4-2'),
('fe3a40ed-8ecf-4bcb-950f-69a6dacff50b','9e5bfcdb-8394-46db-8299-0b1d709a5608',76,100,57,0,'2025-10-02 06:45:40.796','2025-10-15 08:22:16.961','221631052-2-3'),
('fe3a7486-3d7e-428b-9c70-28add7e60558','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-129'),
('fe3ba17a-54c7-41ad-b1e5-a131fc5fa34d','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-29'),
('fe3d3bae-ad72-4501-8beb-910fb543e7aa','0009aeec-e682-465c-b701-363a3ef377a6',50,99,77,0,'2024-08-20 19:22:25.328','2024-09-03 15:32:53.774','655307091-1-94'),
('fe3fb501-9571-4ee8-87cc-0fef8e89b1d2','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.474','2024-06-22 23:00:04.354','44831715-1-6'),
('fe407646-a723-47cf-9e6b-86f5cad1c897','3da7ca23-1096-4e12-bda9-57170294f0b1',250,204,43,0,'2025-04-21 06:13:36.224','2025-04-28 11:59:48.513','412977009-1-4'),
('fe41ae9f-1648-4d25-b127-1973bcc4cfbe','6d0390ef-65ce-4154-a607-d67e51938ed2',121,200,9,0,'2025-01-04 10:47:39.300','2025-01-09 16:52:42.284','455411696-1-13'),
('fe427f25-f39e-4abe-8f2d-14d26d46fa2b','b97e719d-af3a-4bd8-9b44-b4d9fa118bee',80,123,6,0,NULL,NULL,'428437129-1-9'),
('fe42d24b-0408-4666-8712-2f77f2964b92','733f4ba6-58a1-4c6d-bfe2-a881599fe5fa',96,100,70,0,'2025-10-22 13:06:46.078',NULL,'515377519-1-5'),
('fe447527-f68e-4b7d-ada8-1acef336b294','21eddb6f-56f8-423f-9b15-339f30ed9344',57,82,101,0,'2025-05-09 18:43:54.265','2025-05-21 08:16:45.804','221960678-1-1'),
('fe477d3e-ae57-4e70-85fa-9bafc3cddeaf','081140e6-a4e4-4c40-817a-e779fe364e99',0,0,0,0,'2024-09-27 14:06:37.992','2024-10-05 11:44:48.003','745744183-1-4'),
('fe4c4bea-5217-4f3b-95f8-91af5d279bfc','e0c79669-21b8-48a9-8bfe-2f9b19cb872b',100,72,54,0,NULL,NULL,'644563405-5-4'),
('fe4ff0a4-7e99-470e-bb93-4b4f813ace6b','b26bdffe-6074-44e4-aae7-a2a293013975',0,0,0,0,'2025-09-11 06:34:17.841','2025-09-17 16:04:00.289','412746738-1-118'),
('fe50f9e4-d0cf-4690-bd01-375d3d74d93b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-80'),
('fe5514b3-fc4c-408e-b74d-d95b6969f426','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-225'),
('fe59c6ac-bac3-41bd-8829-6622d5e192cd','8b4543e8-c3ef-483e-92b5-3623066138c6',70,70,80,0,'2024-10-11 16:09:04.087','2024-10-24 15:20:44.704','42851120-1-12'),
('fe5cee71-d825-4f46-ad92-290801cf58da','a023935c-7a95-4486-9593-5c3f4f5725a2',0,0,0,0,'2024-12-18 09:31:16.140','2025-01-11 14:14:12.963','248284003-1-135'),
('fe617ba6-f841-4032-b7df-8571ce29325d','7defd633-f7ab-424d-8029-028d1b045752',93,100,7,0,NULL,NULL,'501119446-1-12'),
('fe6963e0-2a95-4480-87e7-10ce391993c9','2d0a85df-04a6-444a-83dd-35a10216a654',40,120,250,0,'2025-09-06 07:20:33.991','2025-09-12 22:10:08.783','644196383-2-1'),
('fe6a71f1-aca7-4c2a-8987-9e03977ad6ec','8d585801-a119-4a76-8c31-8af2563e8b8c',0,0,0,0,'2024-11-15 17:06:19.252','2024-12-01 12:28:14.055','745978651-1-4'),
('fe6af137-25ed-4941-9b95-e72b7d60de4b','18266e4b-ba3b-4519-8abc-b90a2753c46a',72,53,100,0,'2025-10-06 07:10:14.161','2025-10-15 08:25:17.350','644985861-2-7'),
('fe6ff629-6e17-4bb1-a4d8-e176ef2683fc','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-81'),
('fe70ba69-3e2f-4ade-b6ee-ffa111ad853a','470e5bf8-985b-4b51-9441-9efa4da41c0c',80,70,215,0,'2025-07-02 12:43:51.492','2025-07-17 09:31:07.006','203151723-1-3'),
('fe751d34-82f1-47fe-8b0e-dd068e5bcfd8','3535d433-eb38-4879-84b4-dbf8410809cd',50,55,50,0,'2025-08-22 17:28:31.604','2025-09-03 19:35:06.309','011620933-3-1'),
('fe7531a1-f272-4aa1-8ac7-9cd56f06906a','a9c9e153-43b6-4a45-ab65-2b61b3662185',0,0,0,0,'2025-02-27 16:45:29.194','2025-03-11 18:02:47.570','221339460-2-9'),
('fe7553ed-50ec-4074-8de2-1ae0c6650710','e2279222-d071-4645-9dbf-0666c6bded58',51,51,76,0,'2025-02-03 18:18:23.607','2025-02-15 05:21:52.903','221132707-2-3'),
('fe756ad7-272c-4c0a-973c-5a38cee31845','4ff9b75f-d4d9-4d74-a673-b51cc7783e4a',0,0,0,0,'2024-09-10 10:47:13.917','2024-09-16 17:09:34.647','24889830-1-26'),
('fe76e636-cee6-4213-8258-b593be4a1b9c','94241ada-8d18-456b-b4cd-1abce195d23d',56,72,107,0,'2025-09-18 15:48:30.584','2025-10-02 13:31:44.360','011131883-1-2'),
('fe7c5393-db3a-469e-917b-6f8f0e433cec','5eedf7e1-129e-4ada-8cbd-d63340cf856b',0,0,0,0,NULL,NULL,'959475359-2-1'),
('fe7cb878-0069-42bd-a03c-0092062f6080','813b1641-013d-426a-be6e-0171a7e33df6',0,0,0,0,'2024-04-08 08:57:58.073','2024-04-24 05:28:03.206','745715303-1-7'),
('fe7dd239-9daf-432a-9e97-77e03c2e5192','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-1-60'),
('fe804d64-0808-4b19-9551-ba6d68d6a147','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.501','2024-05-23 11:42:38.765','223631242-1-7'),
('fe81e249-c607-4e92-a16f-97d2ccca822b','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-103'),
('fe820273-6679-4727-a012-1254ba61afb9','b44449c8-5efa-4085-bd2d-0a3594587af9',32,19,89,0,'2025-04-21 06:13:17.706','2025-05-02 17:10:43.394','248240352-1-9'),
('fe82c0e9-4d5e-4be8-96e8-c2430a486d25','153e48ad-3036-4b9d-b080-ca33f5500609',0,0,0,0,'2024-07-02 08:19:55.263','2024-07-16 05:12:05.214','248418017-1-17'),
('fe856fe0-e716-41c4-9fa8-b1571182c7e1','de840b58-ac49-4556-890a-ac7cc6e88b28',63,65,85,0,'2025-09-10 10:50:13.671','2025-09-16 17:47:38.334','437545074-3-6'),
('fe8b50ee-67ad-4bc8-98ff-0e0db71fcf97','fa1cdd6c-9b5e-4096-b1e3-e3f029e3316b',0,0,0,0,'2025-08-14 10:05:47.049','2025-08-31 19:20:30.341','478322325-4-38'),
('fe8ca3ba-d975-4a17-ac62-5a3cc45d4154','ae9e9c82-84c2-42de-87ba-c07292fe079d',100,79,65,0,'2025-09-18 15:48:45.318','2025-10-02 06:11:13.650','644834421-1-5'),
('fe912616-face-4787-92ff-56021f041ec1','089780c6-b58e-4ac0-92d2-370a4fcea327',23,206,57,0,'2025-08-21 07:15:15.580','2025-09-03 07:07:54.141','803828322-1-4'),
('fe929864-53be-44a9-a2ea-74822265eca7','05d4c5db-7f15-4790-9278-4411a57f7248',100,17,15,0,'2024-03-23 08:35:53.668','2024-04-08 08:33:40.394','449511744-1-6'),
('fe944147-b720-4237-bc22-3289928f4c0d','357ff3ff-ec23-4db1-a7cb-15e0c80b4018',0,0,0,0,'2025-03-24 16:01:54.885','2025-04-04 09:29:32.770','248692077-1-45'),
('fe963e51-f79b-4f3e-b60c-55f35c818fab','4021b8a3-2697-481d-910f-f6c53c47823e',0,0,0,0,NULL,NULL,'614927187-3-1'),
('fe97403b-3f66-4fdf-a6ec-99181995bdc4','6a277ccc-f43d-4e06-951b-d9935d25dd50',0,0,0,0,'2025-02-20 12:15:17.422','2025-02-28 12:03:49.205','982754836-1-5'),
('fe98831d-1683-4ca7-931c-1695b4fac8bd','183add61-096d-44b5-b9fa-d47003d8af59',0,0,0,0,'2024-09-06 12:28:04.297','2024-09-13 16:38:19.763','41283002-1-32'),
('fe9d1466-baa8-4545-a7d0-5318e3ee1a3a','11466b88-36e8-41c7-bbe2-bab9e9a3fbb6',220,43,56,0,'2024-05-29 08:53:17.265','2024-06-10 13:50:02.744','449837324-1-7'),
('fea108fd-40e9-4799-b233-c26f9be6e500','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-9'),
('fea1d7e4-19a0-4677-a720-b7e1e9fbb2fe','7d5afc4d-54d4-4d61-8ae8-ece35555da95',0,0,0,0,'2024-11-02 10:13:27.314','2024-11-12 17:06:08.204','745881843-1-2'),
('fea1fbce-94a4-423d-a7e1-1705c3c43011','b17fb740-73a4-4ba7-ae7f-29b65afc0763',0,0,0,0,'2024-08-31 16:53:26.420','2024-08-31 18:14:27.947','478124503-1-38'),
('fea251d6-8105-4d70-aca0-3748ec1acea9','8d35edd1-d68f-4751-990b-5502af59bfdf',54,74,100,0,'2025-08-07 16:53:02.211','2025-08-19 14:52:38.938','910762495-2-2'),
('fea4c58d-fafc-42e7-ab09-f0e7b07396a8','df1a52f5-28c8-4b9e-8632-783b5739e63e',0,0,0,0,'2025-08-15 15:02:55.699','2025-08-22 10:59:14.823','223853931-1-90'),
('fea8a13c-11c0-4846-baa4-4d39896b15ed','7a0fa0c0-e760-4227-836b-6ff41aaf28bd',5,210,42,0,'2025-07-26 07:40:15.483','2025-08-05 14:06:23.753','478423651-2-13'),
('fea952c8-1eac-44cc-a54f-f7b75e623dab','8d8d7e39-f8c2-4085-9ac6-93f2c29e0897',130,179,17,0,'2025-06-27 17:12:06.323','2025-07-16 07:46:05.669','745276257-2-3'),
('feab9958-2e84-4ff4-99d1-116673cc724a','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-114'),
('feb16bcd-5158-4cda-bc11-7b6e0682f2e0','606c066b-6c9f-4c5a-a289-3e2660cecc37',0,0,0,0,NULL,NULL,'517274063-2-3'),
('feb5c195-8b49-40e9-b0c8-188a1034eaf1','9f336aba-6a26-47d1-a23b-9448c37dd4f9',51,51,77,0,NULL,NULL,'505355748-2-1'),
('feb65d93-a407-40bb-a0f4-8d9527b4658d','7e556896-a771-421b-94de-44bfbf0436f8',105,105,69,0,'2025-07-26 07:42:01.305','2025-07-31 15:06:45.483','80873489-1-4'),
('feb73410-3855-4b4a-9227-aace7e4040f5','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-3'),
('febc94f3-f928-4167-ad66-c0548549f958','4e2c5239-19b6-4681-ba16-8b1043516644',0,0,0,0,'2025-08-07 16:53:15.821','2025-08-19 06:46:50.019','735718998-1-1'),
('fec09a2d-3a84-480f-8262-c63cc722335c','b2344382-bf60-4678-b271-01032fee96b4',51,51,77,0,'2025-10-02 03:45:29.887','2025-10-14 09:35:44.975','644445996-2-5'),
('fec12938-aa6f-4bc7-86c2-6447eda4847d','b6d04ed2-f29f-400a-ba86-37b36b0830b2',131,197,6,0,'2025-05-24 17:55:28.654','2025-06-04 19:39:17.566','745761149-2-19'),
('fec2f217-131d-4840-b54e-00e512f9f35e','67230d57-36ae-46e9-af72-e2352002aef6',97,100,75,0,'2025-06-11 13:14:37.510','2025-06-18 07:15:41.886','371823380-3-4'),
('fec6ecc0-f5ae-4880-9212-9b8e3dd00d6c','35957835-23bc-4617-8278-5233fc6ee18a',86,201,28,0,'2025-09-01 11:05:47.839','2025-09-08 06:39:11.825','351888584-1-1'),
('fec75354-b167-4008-b005-c95589bc1666','4a7ec8c7-f7d1-4726-a8d4-015b5e084963',0,0,0,0,'2025-02-09 09:51:50.654','2025-02-15 11:10:56.855','910479941-1-1'),
('fec81c4f-b640-46d2-a203-fda344f4b943','3b0e9841-c966-4b4f-b991-a5c0e86a8dde',17,77,120,0,'2024-12-23 12:00:42.473','2025-01-06 07:01:32.038','614969446-1-1'),
('fecb7972-71b6-4693-a00d-42178a64bee0','11d9d1c3-aa53-4d51-a735-2be58bc6aeef',0,0,0,0,'2025-07-08 11:31:23.368','2025-07-23 06:12:43.036','982632860-1-1'),
('fecba454-4c89-4a84-abca-1613176babfa','cb620780-a9a0-4812-a480-2a4cbe6c4b05',27,19,32,0,'2025-10-22 13:07:04.647',NULL,'412223405-1-1'),
('fecc3a2d-1ae4-438a-80d3-7318a5dfcf96','cc84d6d7-2f4c-4b5b-b43d-2e04ce3b7d14',0,0,0,0,NULL,NULL,'695274055-2-3'),
('fed2d668-587d-4d25-b8da-c310111275a6','34b45fcb-8d3f-4981-8e4a-6deb1ec8f22c',0,0,0,0,'2024-06-08 08:00:10.494','2024-06-20 20:16:43.258','248890689-1-30'),
('fed54d19-8a69-4a76-bfa7-ebd8bef483e5','059d418f-09ca-4d30-b6ea-028323d66c5e',96,64,80,0,'2025-10-25 08:59:02.132',NULL,'59841260-1-3'),
('fed61824-3a68-4f32-bd53-cec91c4d2671','4869c334-4618-49fb-9d03-99d95654d12a',43,69,4,0,'2025-05-14 17:03:51.447','2025-05-23 14:07:58.791','745251111-3-18'),
('fedafe65-6617-430f-9f76-1469a80188f6','628bab3f-b6bb-413a-b813-c97fce0cbbab',0,0,0,0,'2025-04-25 16:57:18.874','2025-05-01 09:51:59.251','223823107-1-49'),
('fedc8e1b-331f-4613-82ea-cacfcdddea43','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:36.322','248135683-1-44'),
('fee0dc14-aaaa-44ed-98fb-950716329d61','f662a07d-7080-4052-82f6-92a4f52f815a',0,0,0,0,'2025-04-05 20:39:15.915','2025-04-07 11:35:51.386','478957028-4-4'),
('fee241c6-469f-4c56-881a-4dd1bfdb2612','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.686','248243194-1-83'),
('fee67b44-1ab1-4620-b54a-1a9575367a9e','291a2ff2-a042-49df-a88f-5eeac8ddabcd',92,92,65,0,'2024-06-08 08:00:16.695','2024-06-20 20:16:09.456','42814374-1-16'),
('fee70450-a113-47f2-b0d2-c9ce847d32b4','d8d6a18d-b459-4cf1-ad6f-62787d1c812a',0,0,0,0,'2024-12-18 09:31:25.702','2025-01-10 16:32:59.286','74565294-1-2'),
('fee89cdd-ca05-4566-a6cd-59cbcaad452c','6a1ac93f-01c2-4db2-8a9a-3f1c81fe5ce2',18,44,65,0,NULL,NULL,'47816855-2-5'),
('fee8df54-0837-4820-936b-48bd092a0039','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-5'),
('fee975e5-ca42-425a-8431-b0edf1f80b86','3e9ecbc9-5b86-47a4-81b8-70e21caed934',0,0,0,0,'2024-09-03 15:28:27.869','2024-09-15 23:12:06.204','223867751-1-99'),
('feedd7f9-78d6-4be7-bd96-f9177b858cc7','dd26fff6-657c-4c20-8268-d0a466a207b9',0,0,0,0,'2024-12-23 12:00:20.513','2025-01-09 13:53:34.835','735561469-1-29'),
('feef4240-59d6-4193-8245-997eee8b0517','a47f4c39-cc27-467f-8e87-71ae0d932842',57,62,83,0,'2025-08-27 19:39:39.434','2025-09-08 05:17:41.191','221407228-3-6'),
('fef19575-9138-4369-894d-e691eaec6e44','5ba52abd-bd4f-4d1d-b36d-0b46860bd62b',145,12,8,0,'2025-02-20 12:15:06.369','2025-03-01 14:07:02.509','614741569-4-3'),
('fef1b275-3d7a-47f9-9d02-56d4cf30b997','392e6688-b280-4b27-9b5a-97925f3d9c8b',220,75,75,0,'2024-12-07 09:32:10.924','2024-12-19 14:54:06.615','107870370-1-1'),
('fef29cd7-76f1-47a7-8c4b-0fec65a0ccbc','b4b15055-f101-4d05-8ad1-045787380a20',96,96,75,0,'2025-10-09 08:39:52.751',NULL,'011940661-6-3'),
('fef764e9-5192-42e4-826f-9e5a47e85e15','980e9055-cfdb-4ddc-8971-f55eb0411264',0,0,0,0,'2024-09-06 12:28:18.066','2024-09-12 10:54:37.436','478418764-1-3'),
('fef7ef60-e3d3-4594-af97-efb0cec16ef3','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-116'),
('fef8b2c7-840a-476f-987b-8fea1efa9322','084275d2-f3c9-41dc-a923-1d1ffde48e5b',0,0,0,0,'2024-03-16 14:34:14.839','2024-03-27 11:10:13.393','734447528-1-43'),
('fef96992-019e-450d-85f0-d2991a213be8','8c20d2c3-b3a4-41fc-a624-75080aeae334',96,211,6,0,'2025-05-28 19:09:08.113','2025-06-05 12:35:24.609','644626371-2-3'),
('fefb23a0-e717-40ad-8457-335434fcdb71','c527dd1d-63c2-443d-aaa4-dcf25c34e426',16,98,18,0,'2025-06-27 17:12:16.752','2025-07-09 11:39:43.084','910473991-3-5'),
('fefc3735-d454-464e-823f-f71b3b4cdd2b','f58e6b9f-d5af-48a2-952b-687f4ff843c8',123,10,140,0,'2025-01-06 13:08:28.176','2025-01-08 18:08:22.435','98283616-1-7'),
('fefcf5cb-ae41-4d7d-b1b3-8bec3a1b76e8','8bcd3bef-44f2-4815-a2ff-2c0ee1351324',0,0,0,0,'2025-02-27 16:45:29.193','2025-03-11 18:02:47.568','221339460-1-87'),
('fefdd12f-6bb4-4b33-9fa7-9a1862d15253','659c5370-c4c7-43e5-86e2-1b6d291463aa',85,60,57,0,'2025-04-28 07:40:46.144','2025-05-05 09:10:45.600','221447673-1-6'),
('fefe0663-f81e-4023-ac22-1f2109cce7a9','93c2bcb5-e4ca-453f-93ac-555fe7a16948',0,0,0,0,'2025-02-09 09:51:21.023','2025-02-19 18:37:27.994','223385669-1-51'),
('ff007db4-6128-42b8-afd3-8101100e3671','251889cf-22d1-44af-a286-b50fb8e8d1d1',0,0,0,0,'2025-04-11 13:42:07.895','2025-04-23 08:12:49.638','248186638-1-35'),
('ff009c1a-2e3c-4f05-a38e-1af7ba1342d8','6fd1f0d4-0ef8-4666-9ea1-89547fd83616',73,55,19,0,NULL,NULL,'478739679-3-12'),
('ff025540-46e7-4c9e-b011-5c6f1fab9ecc','f748035b-c6c0-4661-888d-794e658c1cf6',61,65,85,0,'2025-03-08 13:46:10.991','2025-03-18 18:32:54.342','644890175-2-6'),
('ff067aea-73f5-4962-9284-73e061f224e5','22cdb203-e189-4693-adf6-5b2569edda9b',51,70,40,0,'2024-12-28 21:42:24.610','2025-01-07 10:35:32.702','248173138-1-1'),
('ff101a52-983b-46b1-b4b4-e37cf1d0914f','1868aea0-f631-4deb-85f5-8aa25773bef0',55,90,57,0,'2024-11-25 08:28:42.794','2024-12-05 16:17:50.344','248614567-1-1'),
('ff124a6a-eb6a-46bc-b9a1-fb52bd9f6b0f','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.686','248243194-1-80'),
('ff133d73-2402-4703-8111-acf1ea655327','9ab6f775-923e-4e3e-9fee-9f6d20dc31b8',0,0,0,0,'2024-12-01 06:48:16.408','2024-12-09 14:21:10.898','735793543-1-7'),
('ff1758ef-5398-4e92-b792-8d9e68816957','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-218'),
('ff1b3ecf-3d27-46b6-a605-0242bd7df90a','304f53dc-99b2-47c1-8bf7-0087b7b477c1',0,0,0,0,'2025-04-21 06:13:23.759','2025-04-30 14:31:03.005','478723817-1-1'),
('ff2356c4-b486-4258-931a-052dc5ee0b49','220fed8f-f96e-4af5-867b-ac05d11bda6f',67,16,87,0,'2025-06-26 10:29:57.109','2025-07-03 11:20:07.767','478507488-1-24'),
('ff2464ed-c49b-4a79-ac32-c192eb07253a','b88f8bb2-487b-41ef-bef7-0aa4ee9abd45',85,60,18,0,'2025-10-14 09:22:15.980','2025-10-23 13:50:31.470','517255345-2-1'),
('ff2b0c95-66c9-49fc-883e-3fa9a871d89d','19f8d788-357e-4bae-a0cc-714638359cc7',27,29,30,0,'2025-10-14 09:22:17.426','2025-10-23 13:50:39.735','478221533-1-10'),
('ff2be9d0-ea73-4a1f-9d7c-0d63716cde7c','5ebfa101-ef1c-4ce7-aa0e-254141f3a77a',0,0,0,0,'2025-06-11 13:14:36.126','2025-06-18 07:16:02.555','91059017-2-9'),
('ff31fcbe-bc71-4d74-a548-e522377591e4','c97b4464-4efd-4872-9340-ffe44fb1a770',45,45,78,0,'2025-07-19 07:52:09.001','2025-07-28 18:39:59.643','598220619-1-3'),
('ff32bd9f-61db-4003-8e8c-27650c64905a','4ac8027d-d5db-4a57-916c-23dd357c98aa',8,65,65,0,'2025-09-26 12:39:11.619','2025-10-09 09:24:52.646','598263441-2-8'),
('ff337dce-8a89-4fb8-8a5e-05ed882aa50d','abaac750-d7d2-4865-88da-912d20c5be99',65,40,40,0,'2025-01-26 10:54:35.308','2025-02-08 15:04:24.328','223249369-1-110'),
('ff33dc4f-c45d-4e9f-b529-6ed284831ed6','9d9df441-0469-46e7-baad-366a3096e9a0',111,111,6,0,'2025-03-27 08:02:54.071','2025-04-08 15:37:02.657','455658704-1-4'),
('ff3bb922-a3b0-4d1d-9739-971da005f8f3','a894fd1a-53cc-4791-9c3c-b659b4d01ae9',68,50,23,0,'2024-08-07 15:03:04.523','2024-08-14 13:45:37.986','61428079-1-40'),
('ff3ceacf-027e-41ab-a1d7-23fdea0f5698','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-195'),
('ff3d7514-2b65-4d5e-8957-4d68e33c7ab6','9f77a296-ba6e-4bea-91f6-fdbd98a74c43',0,0,0,0,'2025-02-15 13:31:40.299','2025-02-28 12:03:24.448','570899680-1-99'),
('ff4707da-0566-4179-aa2d-622ffba0a8ec','ae9a9400-7a4a-46dd-bdca-d8a0d71d424d',240,95,70,0,'2025-02-20 12:15:10.202','2025-02-28 16:57:08.402','982663240-3-4'),
('ff474b0a-34df-4952-820e-1ad38c95181a','f8042fc5-0122-45dd-abb3-ff92fa197c28',98,98,84,0,'2025-02-23 12:39:18.626','2025-03-05 14:40:46.219','127395599-4-6'),
('ff516d63-df42-4d17-902b-7107d0cc5e9a','2318c3b3-a656-4ca6-b48d-9732b15b2a6e',0,0,0,0,'2025-10-02 06:45:34.797','2025-10-15 08:20:29.969','75052392-1-2'),
('ff547d1a-e6c8-49fe-83a4-03b6b8341fbb','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.501','2024-05-23 11:42:38.765','223631242-1-53'),
('ff54f263-750c-48a3-a00e-52c0ba33c25c','355c276f-d00a-4957-99b9-d15a2d8a1967',0,0,0,0,'2025-10-02 03:45:41.484','2025-10-15 20:04:54.631','41246036-1-49'),
('ff559dee-0bf1-46b0-b50d-4daa4fedb744','6e8e0e30-4292-40ef-a083-ee4e395c32bc',1,1,1,0,NULL,NULL,'644883152-1-1'),
('ff5ee806-fb91-4c90-84ba-ee81f0f3541d','648b1063-2206-4845-a6a3-5b3089a2bafc',204,44,24,0,'2025-08-14 10:05:40.069','2025-08-29 16:53:17.534','531344250-1-6'),
('ff64915a-cf5f-42f7-a3f0-cd0b888fa46e','b8a20339-6657-4781-8f7a-5b991568ee89',0,0,0,0,'2025-06-26 10:29:54.825','2025-07-03 11:20:12.754','223422825-1-1'),
('ff64d5b2-135f-4fa4-96d7-243cf45099fe','0bd0f775-33a0-4024-8aab-7bc8f7cc87e9',52,45,14,0,'2025-03-13 12:21:31.498','2025-03-22 07:37:28.261','982726615-1-25'),
('ff670e7d-783e-4ec0-92b2-9a0a42d31cec','bf53d9dd-4984-4f03-86c9-3a340e075511',0,0,0,0,'2024-09-06 12:28:06.764','2024-09-12 10:55:08.191','163961995-1-48'),
('ff700f4c-6dc7-46d6-b236-fd63c7f1b3ba','80d84738-4558-4872-bcee-0d4fada9081f',53,71,100,0,'2024-12-28 21:42:39.990','2025-01-04 10:47:19.839','428752676-5-1'),
('ff72a910-13d4-4a84-9a8e-74bbab969f27','89ab7724-cadd-41e0-96e0-8d4e9adbe732',1,1,1,0,'2025-06-27 17:12:31.795','2025-07-04 21:24:20.482','248707022-1-4'),
('ff72d3d0-1163-4230-8207-1e90996f8bb2','0bafd109-abe8-42a8-b45f-d5053eae132b',20,20,122,0,'2025-09-12 11:10:08.792','2025-09-16 21:26:03.626','614659832-2-11'),
('ff762173-cbd5-4397-8afa-132a4993b6b3','e1f1b7a0-b40a-4c57-93a0-bc09b0ca3ea7',121,95,65,0,'2024-11-08 17:37:32.868','2024-11-24 13:38:17.334','231211138-1-2'),
('ff764ce2-917a-4d29-bdda-45a774d43a99','fa745738-6bf0-4e0e-9ca9-ef93214c1f2a',0,0,0,0,'2024-06-08 07:59:57.474','2024-06-22 23:00:04.354','44831715-1-7'),
('ff79d50c-3dc1-4431-8004-31768622c53c','f607b148-c0d4-4e1b-acec-1387e98b77c7',57,77,103,0,'2025-08-07 16:53:00.857','2025-08-19 19:34:02.155','598781522-3-3'),
('ff7c9fd5-041e-4150-8fce-69323797c70c','2a529661-568c-4dd3-8b4a-cd09bf85bae9',96,170,7,0,'2025-10-25 08:59:15.286',NULL,'505414907-1-3'),
('ff7d281c-cb5c-4181-a0a6-1dc273023903','afcbdaec-8a89-4777-b328-838a037ef29c',51,51,77,0,'2025-10-08 17:43:44.602','2025-10-17 06:14:29.928','221278187-1-2'),
('ff7e8df4-809c-4764-a094-6280d7babe85','74a24dca-42b5-4d40-9938-322fbaef5bcb',0,0,0,0,'2025-02-27 16:45:14.491','2025-03-14 11:07:34.686','248243194-1-61'),
('ff7fa8e3-bd2d-464a-b3dc-aeafba5ae537','788053ef-44ef-4778-affb-5333e18bdfdb',41,41,65,0,'2025-04-15 16:01:37.969','2025-04-26 09:16:50.959','223734808-1-20'),
('ff86b791-4c70-41e7-b503-a58e6d33e5f5','b8cb209c-3d60-466f-8346-01810d5816ec',11,37,38,0,'2025-10-06 07:10:17.713','2025-10-16 08:43:39.292','644407379-4-11'),
('ff86be6c-250c-402b-8ce2-bd14fe87ab9f','6c7f7eb0-0e54-462f-9045-071cf525c2ed',200,90,30,0,'2024-08-31 13:26:46.035','2024-09-07 15:54:09.866','982340056-1-6'),
('ff87e3ae-3101-4c56-9566-e28fef8109f5','5020e987-e02c-4a22-9e93-59bf24e1df3a',65,103,241,0,NULL,NULL,'47856812-3-2'),
('ff88ae93-8642-4f83-b01d-0fd4bc8517e4','cdccd2ca-ece0-44dd-b047-f15496470e46',95,69,90,0,'2024-11-08 17:37:39.632','2024-11-23 08:31:57.523','982292057-4-3'),
('ff89ea17-b282-4b6b-ad2c-85134a6c6ede','e891b961-f9b8-41f5-b49e-f492048bd8c9',121,200,2,0,'2025-07-12 09:19:04.382','2025-07-18 06:24:51.290','745907299-8-12'),
('ff8b5cc3-79df-415b-9b5e-40766d55aeff','37a18a30-af93-43da-9f9b-111b9f281d48',0,0,0,0,'2025-02-27 16:45:39.293','2025-03-11 18:02:05.553','412107970-1-150'),
('ff8b9b2c-4ba0-42f2-99d8-368f9e3a5e86','845879e8-205b-444b-9d29-1e0a6fa08784',68,89,33,0,'2025-06-27 17:12:10.110','2025-07-14 06:05:11.366','910756975-4-8'),
('ff8c1c42-5e0d-48bf-b97a-175a2c79bd32','567568b0-7a28-4c3d-8e81-1b43d87b6ba4',40,40,45,0,'2025-03-24 16:02:03.763','2025-04-01 13:27:17.361','437554629-1-2'),
('ff8df54c-f277-41a3-a333-a8c0d4f7a7c7','c1493a6a-47be-45c9-bb29-18fe60dc4113',87,7,86,0,'2025-07-29 12:58:43.407','2025-08-07 15:07:09.458','644200718-3-2'),
('ff906353-4a3c-43db-8614-f7930b44568b','b93a43a6-9fdc-465a-bdd5-9b3010d42974',0,0,0,0,NULL,NULL,'745436157-4-16'),
('ff91333d-1a3c-4408-a5b2-39f2afc87e92','384c6719-2d91-4530-8e9e-3ddd44fc84ef',182,80,65,0,'2024-12-07 09:32:05.761','2024-12-20 14:35:02.738','248421874-1-1'),
('ff93df9a-51fc-4dea-ad61-88d4248593ac','3da17157-28be-4bae-8dcc-745d0e93e591',63,9,86,0,'2025-04-28 07:40:06.230','2025-05-10 20:12:58.597','428135973-1-22'),
('ff997e86-267e-4394-8963-117eca15e298','19db5990-08cc-490d-a0ad-c3f074f46970',0,0,0,0,'2024-06-08 08:00:11.633','2024-06-20 20:16:32.527','027201624-1-29'),
('ff9ff483-6030-4358-99e2-9fd970c4066d','a8240df2-bc04-464c-afdc-dd0bdbe1643d',17,40,64,0,'2025-09-01 11:05:50.374','2025-09-08 14:12:31.683','745782616-4-16'),
('ffa07d6f-99f1-4c01-bcf6-649203a685e3','75f5e095-617b-4b50-9412-9277a32469d2',0,0,0,0,'2025-08-27 19:39:44.282','2025-09-08 05:17:27.363','73589256-1-5'),
('ffa07d9a-0308-4a11-bebb-0e76c48d512c','cc773624-f550-4a8f-b0a7-eb010a2ac209',0,0,0,0,'2024-05-29 08:53:01.497','2024-06-10 13:50:20.363','745553590-1-1'),
('ffa0eebe-9dbe-4dc0-b54a-6221f8aac659','6f5ccdbb-7eab-418a-9fee-e32424b2d0e2',0,0,0,0,'2024-09-27 14:06:14.859','2024-10-07 14:02:25.807','47867667-1-26'),
('ffa6261c-1ae3-480c-80ae-578c56e57aec','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-149'),
('ffa6e82b-9d22-40e5-971e-f9805012fd78','49feb8d9-0b19-4536-871b-47f188c33cc9',90,100,235,0,'2025-04-25 16:57:09.087','2025-05-02 06:58:24.644','15153034-2-2'),
('ffa7e9d5-170b-4fae-bcd6-3cae280b2b73','e2277705-d959-463d-9858-1ca3b6dfc8fd',86,86,9,0,'2025-06-11 13:14:34.756','2025-06-19 08:55:52.974','644796086-6-3'),
('ffa94696-f67f-4fc4-a022-da25e93d8180','f386f408-2b34-4c6a-8fb6-3bde5207d1c1',0,0,0,0,'2024-05-10 18:49:32.603','2024-05-29 11:17:16.427','315389904-1-2'),
('ffab55c2-f3c0-4666-91da-fe708f21a87d','e4adc812-005f-4266-b04a-bf35603b42f7',0,0,0,0,'2025-06-26 10:29:58.383','2025-07-03 11:20:02.280','223379282-1-21'),
('ffadb4e0-87d3-40dc-84e8-3519e1a9d7ad','565f6966-f194-4d7c-8b20-64502045078d',50,101,15,0,NULL,NULL,'478350685-2-19'),
('ffb264b9-85fb-4821-b9dc-67ee4610cb0e','d736861d-0284-411d-97d2-14b3372d31b7',0,0,0,0,'2025-05-25 10:54:17.846','2025-06-04 07:00:07.030','22391500-1-7'),
('ffb4b6a4-7527-479c-baca-4b0b5368979d','b6a3638a-59d1-4e0b-88ca-2018a76e1b9e',0,0,0,0,'2024-04-08 08:57:42.932','2024-04-29 09:07:18.398','41245861-1-66'),
('ffb64f11-6fbb-40ec-b081-41b8fabe7f87','59194091-7539-427e-b4e0-825b56ae3bd6',60,57,85,0,'2025-02-20 12:14:54.677','2025-03-04 15:38:40.040','221649442-1-2'),
('ffb9a39e-0d5b-43db-95fc-d3f0100e9459','3bc9ea92-6f4d-4a9c-bca3-f2b3b8676ad3',90,225,70,0,'2025-10-14 09:22:03.828','2025-10-22 07:00:55.246','910129924-2-1'),
('ffb9eb79-b53f-490c-b8cc-6049efc18f1d','996ed37d-c099-4569-a00e-f841c4fdaf73',0,0,0,0,'2025-08-15 15:03:08.179','2025-08-21 06:44:09.151','478824521-3-16'),
('ffbfe826-0943-4903-bf91-4e83026c04c7','30cc08c3-1c49-4272-a534-8826f5e06885',75,95,73,0,'2025-04-28 07:40:38.026','2025-05-06 11:25:38.562','817893403-1-4'),
('ffc6ca65-226b-4606-8c65-f8f47560cf30','9f9f808a-df35-43e9-9547-e5a703a5fb49',55,105,27,0,'2025-08-27 16:39:54.683','2025-09-06 07:19:38.252','745208965-2-2'),
('ffc88585-b8aa-4dd9-bd3a-40d22bee9a26','87ba2893-55a3-43aa-aec6-94581c185ade',0,0,0,0,'2025-01-11 15:20:28.291','2025-01-17 11:00:24.009','478945094-1-27'),
('ffc94095-bb79-4fca-93a3-b7e663dda9af','7c85f504-aeb0-4278-bdea-15616c0f4fb0',0,0,0,0,'2025-04-04 17:27:53.276','2025-04-07 11:35:23.400','24891590-1-2'),
('ffc94473-40b0-416e-b28e-be42faabd62e','fb9b5fa4-a2fc-4d6a-96d9-e247c36e725c',72,97,84,0,'2025-09-18 15:48:57.470','2025-09-30 06:45:08.498','598493196-1-3'),
('ffca483e-be81-4924-a268-6b48e66f9c78','d83c40d1-4df5-4c97-bc83-28837db95b2b',67,52,15,0,'2024-07-30 14:58:39.147','2024-08-05 19:56:58.912','916836796-1-79'),
('ffcd4a6f-ea62-4063-a170-e228914f4ab1','3c4d5f8e-e37b-41d5-a637-470c721812b7',0,0,0,0,'2024-05-16 12:25:39.501','2024-05-23 11:42:38.765','223631242-1-52'),
('ffcea3d9-207d-4de7-8c1c-e36c5eb160ba','73bb3ff2-f6f1-44b0-849d-9baef250ea05',51,51,77,0,'2025-07-12 09:20:11.070','2025-07-26 10:04:55.722','613262202-3-3'),
('ffcf8bd1-29e7-40ed-a540-a283a46bcbf3','c91edd26-ca21-49cf-967a-8ae66440af23',180,200,32,0,'2025-07-12 09:20:24.300','2025-07-24 18:03:45.377','745813483-1-4'),
('ffd0e62a-0124-4f58-93e4-0e92b89c0404','6a308121-6cf9-4384-8446-08182bd669fd',210,30,37,0,'2024-05-10 18:49:24.435','2024-05-29 11:17:01.506','42845711-1-22'),
('ffd1e2d6-79bc-4d18-87ef-ae554bf3b7b9','0e98e045-892d-4ac8-948b-d28c498ee21b',53,53,6,0,'2025-10-08 17:43:55.637','2025-10-17 20:57:44.720','750355737-1-2'),
('ffd4ba2c-6889-413f-883e-93499ec72c00','ede4fca4-c8fb-442c-a858-733466a9618f',0,0,0,0,'2025-10-09 08:39:56.345',NULL,'22330381-1-124'),
('ffd4cdf6-eecc-4364-9e4f-18156dc19a97','57ef4979-842b-4b07-84ef-752e1f28ee7d',10,103,110,0,'2025-10-02 06:45:34.042','2025-10-15 08:20:24.218','478339664-1-6'),
('ffd52b29-4f9b-4757-b075-1ff6255ac904','832915ac-d62f-48db-b00f-8e585de422bb',6,79,214,0,'2025-10-14 09:22:13.682','2025-10-23 06:19:46.051','745946644-2-2'),
('ffd54c10-dccd-4d4a-8219-6fe765c07a19','a89f5cb0-4036-440c-b388-8ef641d6f3b9',10,64,64,0,'2025-10-22 13:06:58.808',NULL,'4786538-1-4'),
('ffd77641-b716-476f-9a9c-6573ddeafb2b','f59aba8d-2f5e-4816-b322-ff557edd32f8',76,128,7,0,'2025-07-29 12:58:27.889','2025-08-11 10:25:02.853','505770346-2-4'),
('ffd9d4c0-b460-40e6-aa85-2bafbf0542b8','c9d26b9c-8e7f-400b-b547-df60f08be463',0,0,0,0,'2025-01-11 15:20:24.748','2025-01-17 11:00:45.960','478631020-1-1'),
('ffdab9aa-4675-43a4-9fcb-5ba4ca317722','2ca13ff1-5c52-436e-936d-b826129b5799',0,0,0,0,'2024-09-06 12:28:08.273','2024-09-12 10:54:58.872','223337181-1-150'),
('ffdc43c7-a4a4-44b4-a7c3-95c244d6b53b','acb5ef4b-4ddf-4d5d-a04b-89d840c64874',77,56,14,0,'2025-01-11 15:20:30.642','2025-01-16 09:38:38.363','478678748-1-32'),
('ffdea9ac-d152-4bcb-aff7-4808c8d1f877','97aeb5fc-c54b-449b-90bb-f92b6371c714',0,0,0,0,'2025-01-20 11:21:24.904','2025-01-29 14:52:37.817','248135683-1-228'),
('ffe0653b-9cd9-44a7-bed6-1153866c9ca5','a45f357f-3659-4821-a38c-428e3a7f88b7',0,0,0,0,'2025-07-08 11:31:16.865','2025-07-24 18:00:53.306','223444495-1-131'),
('ffe83152-cd31-4fcc-9a36-2cdb052b51f4','c8f396d4-65a3-4c67-8ae4-e78fccdca407',126,126,12,0,'2025-04-30 14:29:01.442','2025-05-14 06:37:26.705','786668251-2-3'),
('ffeaaf98-2990-43b5-9251-e380fccef815','a58e6fad-d53b-47cb-963b-e0f1c65616ed',0,0,0,0,'2025-01-26 10:54:36.824','2025-02-07 15:52:46.388','47830878-1-16'),
('ffeade5e-81f4-46c2-9c18-de780c84c06b','a86e7071-e7ac-4bfb-b9af-1cf2f20150e2',0,0,0,0,'2025-09-24 11:01:26.913','2025-10-05 12:15:06.066','223441694-1-11'),
('ffeb442a-73cd-4013-8056-8bd5a51ccb32','c8819594-7648-485f-8c3c-5627cd9da2d8',0,0,0,0,'2025-02-18 16:37:09.538','2025-02-27 06:36:39.869','412346704-1-40'),
('ffed30b9-49ad-4761-90a2-1d552090504c','45873f29-a1ab-4943-b302-bf3c4078b5cf',0,0,0,0,'2025-04-07 17:19:44.799','2025-04-08 15:36:41.479','412716766-1-25'),
('ffee6417-e728-40a2-98df-5fdbbb616f8b','2e116f09-c1b8-49f7-994a-7ed5bfd8b502',65,63,85,0,'2025-01-04 10:47:41.957','2025-01-08 20:28:29.985','982536674-1-2'),
('ffeee328-c1aa-421c-b227-784f014cfda2','6cef5b53-f812-4e21-87b8-9c3bfdc6543c',78,55,102,0,'2025-08-07 16:52:30.676','2025-08-21 21:29:19.691','598665171-1-3'),
('fff2ce90-47a0-4b88-a62b-d431e535f2fb','49b0262b-aeb4-40b0-bdcc-b5461a64c972',95,70,3,0,'2024-11-12 16:16:17.632','2024-11-20 16:18:45.533','465237157-2-9'),
('fff46c90-b5fd-41e4-83f0-13ec92f94024','cf7f91ae-875d-40a7-aa62-343d55ae5df6',0,0,0,0,'2024-07-20 16:33:51.063','2024-07-25 21:24:32.800','412603598-1-1'),
('fff4f351-5f04-43f8-9185-b9236c953c55','0803fa20-5b74-42fc-8f96-ac10c2c5324a',240,65,95,0,'2024-03-31 17:55:08.069','2024-04-12 07:17:12.019','982992264-1-3'),
('fffb9861-ee64-4b70-92f2-758f109b2e57','3dc0e4e2-34d0-4741-8f4f-5ca18dcdce31',133,80,88,0,'2024-09-27 14:06:34.644','2024-10-05 14:54:51.754','976521198-1-9'),
('fffc4bf6-8436-4c94-9db5-27cf0a1d0d3f','d87dcbf3-4bf4-4263-b602-cf7e56cd9efc',0,0,0,0,'2024-11-25 08:28:59.661','2024-12-03 21:22:56.085','478622556-1-5'),
('fffef524-06c5-4176-9dbd-b1d6aff7299d','1c203751-30ea-407a-aee5-48cf233275cf',0,0,0,0,'2024-05-08 18:43:16.482','2024-05-21 18:46:21.335','734965369-1-27'),
('ffffc024-7c93-4331-938c-7d8658ed5e71','1423feab-b10f-49d3-afa8-3310640bcebc',0,0,0,0,'2025-07-29 12:58:23.545','2025-08-11 10:24:52.470','412173308-1-107');
/*!40000 ALTER TABLE `shipmentpart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `transaction`
--

DROP TABLE IF EXISTS `transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `transaction` (
  `id` varchar(191) NOT NULL,
  `currentId` varchar(191) NOT NULL,
  `userId` varchar(191) DEFAULT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `deliveryDate` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `expiryDate` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `type` enum('SELL','BUY') NOT NULL DEFAULT 'SELL',
  `payment` varchar(191) DEFAULT NULL,
  `exchangeRate` double NOT NULL DEFAULT 1,
  `description` text DEFAULT NULL,
  `plaka` varchar(191) DEFAULT NULL,
  `soforAd` varchar(191) DEFAULT NULL,
  `soforSoyad` varchar(191) DEFAULT NULL,
  `soforTCKN` varchar(191) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `transaction_userId_fkey` (`userId`),
  KEY `transaction_currentId_fkey` (`currentId`),
  CONSTRAINT `transaction_currentId_fkey` FOREIGN KEY (`currentId`) REFERENCES `current` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `transaction_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transaction`
--

LOCK TABLES `transaction` WRITE;
/*!40000 ALTER TABLE `transaction` DISABLE KEYS */;
INSERT INTO `transaction` VALUES
('0016dac5-dc46-4ed1-8b6b-d7ad0d677bbb','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-25 07:22:40.890','2025-08-25 07:22:40.890','2025-08-25 07:22:40.890','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.948','2025-09-06 09:41:31.786',NULL),
('001a10c6-a69c-430c-b997-d78859c53363','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 12:29:59.978','2025-04-30 12:29:59.978','2025-04-30 12:29:59.978','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.829','2025-07-22 16:18:49.659',NULL),
('0037f5d9-bfc5-4af2-b400-190a33fd4feb','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 12:40:12.300','2024-10-17 12:40:12.300','2024-10-17 12:40:12.300','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:43:16.094','2024-10-17 12:43:16.094',NULL),
('0083df12-8def-4f58-8a5b-dcc872efe1c9','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-15 15:06:19.520','2025-04-15 15:06:19.520','2025-04-15 15:06:19.520','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.519',NULL),
('00d3b0c1-070d-4d8d-9b6c-8d198490e79d','d100cd88-31b8-4788-8c56-3df2fd4058aa','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-25 11:13:44.762','2024-11-25 11:13:44.762','2024-11-25 11:13:44.762','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 11:14:40.174','2024-12-27 12:23:49.328',NULL),
('00f20c08-9eb7-4654-acb4-445b801b5214','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-06 09:01:03.269','2025-05-06 09:01:03.269','2025-05-06 09:01:03.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:25:41.798','2025-05-26 13:23:22.569',NULL),
('010ab024-b3a2-4847-ba54-6008f7748c3e','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 09:07:59.747','2025-03-21 09:07:59.747','2025-03-21 09:07:59.747','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:49:23.620','2025-03-29 13:56:05.433',NULL),
('01415cc7-9cc4-4512-b73c-e7a0b99c1002','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-17 07:12:30.202','2025-06-17 07:12:30.202','2025-06-17 07:12:30.202','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.558','2025-07-01 09:19:38.995',NULL),
('01518696-eb00-47da-9bad-3af565b264ec','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:01:00.962','2025-07-01 10:01:00.962','2025-07-01 10:01:00.962','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.280','2025-07-16 14:21:29.517',NULL),
('016d871b-89b4-4a32-9016-8fb6bbe6e3b8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 08:02:28.770','2025-01-29 08:02:28.770','2025-01-29 08:02:28.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:34:53.010','2025-02-15 11:10:43.106',NULL),
('016f6298-04dd-4844-a93f-86c551f41d81','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 09:45:43.281','2025-01-13 09:45:43.281','2025-01-13 09:45:43.281','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-02-01 20:06:45.515',NULL),
('017a471e-aabf-45f3-ada4-45115bbc39f3','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-10 18:32:44.380','2024-11-10 18:32:44.380','2024-11-10 18:32:44.380','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-10 18:34:48.016','2024-12-09 08:24:38.671',NULL),
('0198f921-62bb-468c-aac1-516d594b2b2d','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:43:28.012','2024-03-23 07:43:28.012','2024-03-23 07:43:28.012','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:47:20.108','2024-03-23 08:59:18.458',NULL),
('01c52433-650a-4148-b06e-adf6e15081a5','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:19:17.298','2024-09-18 21:19:17.298','2024-09-18 21:19:17.298','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:21:17.604','2024-09-19 17:45:59.768',NULL),
('01edea34-7249-48e5-abb0-20ff1bc31f4f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 09:38:23.813','2025-10-06 09:38:23.813','2025-10-06 09:38:23.813','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.936','2025-10-14 08:52:36.780',NULL),
('01f77405-5d24-4f6a-b16d-dcd7fd1426d0','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 12:42:24.879','2025-08-01 12:42:24.879','2025-08-01 12:42:24.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:46:42.678','2025-08-14 08:02:29.760',NULL),
('022dae2b-6f5f-46da-b66f-db13298edabf','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-29 12:13:01.403','2025-07-29 12:13:01.403','2025-07-29 12:13:01.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:26:43.565','2025-07-29 12:37:20.488',NULL),
('023448ca-ee61-449f-aae8-0941f46c25fd','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 12:12:16.209','2025-07-31 12:12:16.209','2025-07-31 12:12:16.209','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.525','2025-08-23 07:55:35.247',NULL),
('0240eb30-b207-4081-ba3f-dbadca4f98e3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 14:58:13.810','2024-08-20 14:58:13.810','2024-08-20 14:58:13.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 14:58:56.464','2024-08-25 13:19:29.830',NULL),
('02431d12-7bbc-4f28-a506-891eff211d7e','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 06:37:11.967','2025-07-31 06:37:11.967','2025-07-31 06:37:11.967','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.957','2025-08-21 08:12:56.981',NULL),
('0258a85a-5637-4036-aa72-7ef7ffdfe090','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-08 08:34:50.729','2025-09-08 08:34:50.729','2025-09-08 08:34:50.729','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.629','2025-09-10 07:11:56.232',NULL),
('02903395-6a49-46b0-b7a9-617e63156ba4','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 13:26:29.154','2025-06-20 13:26:29.154','2025-06-20 13:26:29.154','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 10:26:32.761','2025-07-08 11:33:15.122',NULL),
('02a99802-c96b-4276-be2c-a87d39df7e1e','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 06:56:02.861','2025-04-22 06:56:02.861','2025-04-22 06:56:02.861','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.607',NULL),
('02b44ab8-df30-4deb-b6fe-b0d3340b5f14','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 14:37:06.348','2025-09-22 14:37:06.348','2025-09-22 14:37:06.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.694','2025-10-07 15:17:28.485',NULL),
('02ff365a-4df7-4f81-8b66-758c9a44ccb1','5f3f13d2-795f-4eba-b7bd-61428d952ca2','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-01 12:33:37.163','2025-08-01 12:33:37.163','2025-08-01 12:33:37.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.329','2025-09-14 06:51:42.880',NULL),
('03283386-8ee9-4942-ad44-1672a0740192','7487951b-3af6-4f83-a5fa-6847a10dd8c6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-12 07:40:19.401','2025-03-12 07:40:19.401','2025-03-12 07:40:19.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.567',NULL),
('0347ace5-f282-4d31-b863-d4e99884e0ae','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 14:02:02.185','2024-09-24 14:02:02.185','2024-09-24 14:02:02.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 14:03:25.749','2024-10-25 09:32:35.416','2024-10-25 09:32:35.420'),
('034c2d6d-28b3-45bb-b3e3-97ab77b1da1b','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-17 08:47:14.167','2025-09-17 08:47:14.167','2025-09-17 08:47:14.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.350','2025-09-18 15:48:17.462',NULL),
('0397dc37-03ff-4059-b530-7991a9c5054c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:21:31.669','2025-09-24 12:21:31.669','2025-09-24 12:21:31.669','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.368','2025-10-02 11:05:59.206',NULL),
('03a92e4e-28ec-4dfb-ab0d-da71f09e4f16','d89f6e4c-ad0d-4d1f-98c2-188a94803196','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-03 08:35:19.000','2025-10-03 08:35:19.000','2025-10-03 08:35:19.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.649','2025-10-10 11:50:56.303',NULL),
('03b131e3-51c4-47d7-a64a-3da0827693ca','d100cd88-31b8-4788-8c56-3df2fd4058aa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 12:14:44.232','2024-05-10 12:14:44.232','2024-05-10 12:14:44.232','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 12:34:12.875','2024-05-29 10:05:41.017',NULL),
('03cd97d5-1caa-4193-bb63-78c01a2e2b2f','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:26:57.333','2025-01-29 07:26:57.333','2025-01-29 07:26:57.333','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.684',NULL),
('03e2e753-ab2e-43e7-934b-e038b8b753db','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:04:39.081','2024-10-02 09:04:39.081','2024-10-02 09:04:39.081','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:10:43.693','2024-10-02 09:10:43.693',NULL),
('03e9a38c-e0ea-4c2c-ad70-9f3e89cfe795','c20e39e0-b2f7-4f7d-9393-8729cad35ae4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:12:48.282','2025-02-07 11:12:48.282','2025-02-07 11:12:48.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:18:24.596','2025-02-15 11:10:43.066',NULL),
('03f1aa4b-1ad0-458b-9eb3-76c8e7ef1c18','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:42:34.176','2025-02-12 13:42:34.176','2025-02-12 13:42:34.176','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.317',NULL),
('0409a6a3-7ba0-4452-ae35-e0fd75f273ea','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 17:55:15.477','2024-11-08 17:55:15.477','2024-11-08 17:55:15.477','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 17:55:51.395','2024-11-08 17:55:51.395',NULL),
('044a4a83-08cd-4ba6-9f79-3004b7ad406c','c2d4ce84-536d-4816-837f-7abbf6a7e061','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 06:25:54.953','2025-05-23 06:25:54.953','2025-05-23 06:25:54.953','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:29:06.668','2025-05-26 13:23:22.551',NULL),
('044a8626-e764-427a-b51b-e4bc29f8abf2','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-30 07:50:00.238','2025-08-30 07:50:00.238','2025-08-30 07:50:00.238','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.631','2025-09-10 15:53:16.729',NULL),
('04a7f3f4-dcb2-4a75-b3e2-d99d1367651e','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-18 19:03:17.310','2024-10-18 19:03:17.310','2024-10-18 19:03:17.310','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-18 19:03:47.065','2024-10-25 09:21:23.908','2024-10-25 09:21:23.912'),
('04be8f26-fd2b-40ec-92eb-d4afb14ba637','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-04 19:39:34.431','2025-10-04 19:39:34.431','2025-10-04 19:39:34.431','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.529','2025-10-12 21:17:18.564',NULL),
('04d7d2a6-c36b-4300-830e-b49e294bf72a','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 06:48:58.888','2025-08-21 06:48:58.888','2025-08-21 06:48:58.888','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:54:44.294','2025-08-21 08:12:57.072',NULL),
('04d7ef80-c384-4408-a1c6-a4be417a7f2c','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:41:01.708','2024-08-31 12:41:01.708','2024-08-31 12:41:01.708','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:43:37.624','2024-10-04 11:52:37.982','2024-10-04 11:52:37.986'),
('04d9598d-b400-4c61-9cb8-5276615fb3fd','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 13:38:26.871','2025-03-08 13:38:26.871','2025-03-08 13:38:26.871','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:40:53.840','2025-03-11 07:46:42.018',NULL),
('04e09133-8711-47ae-b54c-18f7db53d35f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 09:05:44.538','2025-01-02 09:05:44.538','2025-01-02 09:05:44.538','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:15:29.084','2025-01-28 15:19:34.500',NULL),
('04e60bdd-14d3-4b59-8972-f4d2ad5ecc3a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 12:48:58.487','2025-02-24 12:48:58.487','2025-02-24 12:48:58.487','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:37:32.391','2025-03-11 07:46:42.003',NULL),
('0553a2c9-d622-4154-899c-b78c6162739a','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-07 14:06:15.902','2025-04-07 14:06:15.902','2025-04-07 14:06:15.902','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.481',NULL),
('056312aa-e3e7-4519-bbe9-d08dbfaf8974','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-20 11:11:05.430','2025-08-20 11:11:05.430','2025-08-20 11:11:05.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.984','2025-09-03 06:09:36.622',NULL),
('057a0b62-2f9d-420c-ade5-6a546c4d3ee4','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 08:24:20.489','2025-09-29 08:24:20.489','2025-09-29 08:24:20.489','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.828','2025-10-01 07:56:23.230',NULL),
('0593a272-fa9a-426c-b04d-156dbc856687','d89f6e4c-ad0d-4d1f-98c2-188a94803196','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-02 14:15:59.163','2025-09-02 14:15:59.163','2025-09-02 14:15:59.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 14:33:07.556','2025-09-18 15:48:17.546',NULL),
('0596bfb4-c450-454e-9868-c04f50f1ea30','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-04 10:15:40.340','2025-09-04 10:15:40.340','2025-09-04 10:15:40.340','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.390','2025-09-19 10:00:25.400',NULL),
('05ef49e1-7598-4b65-b638-83be5d385fb3','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-10 12:18:50.965','2024-09-10 12:18:50.965','2024-09-10 12:18:50.965','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-10 12:25:58.096','2024-10-10 07:29:46.171','2024-10-10 07:29:46.177'),
('0608c3e1-95aa-49c1-a40e-c9c69a1d2bc8','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-11 08:10:03.082','2025-03-11 08:10:03.082','2025-03-11 08:10:03.082','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.469',NULL),
('061f17b6-3791-4a36-b859-b700e75ce88c','9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-06 15:07:31.153','2024-11-06 15:07:31.153','2024-11-06 15:07:31.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 15:08:59.243','2024-11-08 18:06:40.715',NULL),
('062df64c-817f-470a-8dbd-e50ee525d152','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-15 07:01:50.501','2025-05-15 07:01:50.501','2025-05-15 07:01:50.501','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.577',NULL),
('063c48f0-cbb0-4dae-a708-0ad574b96d47','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-30 14:51:41.879','2025-06-30 14:51:41.879','2025-06-30 14:51:41.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.859','2025-07-22 16:18:49.652',NULL),
('06416141-71b4-4e5d-9561-a8a07f068dc4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 11:16:47.179','2025-03-13 11:16:47.179','2025-03-13 11:16:47.179','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.439',NULL),
('06a05e06-fd23-49ed-a066-0385c76c3c3c','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 10:55:48.584','2025-10-02 10:55:48.584','2025-10-02 10:55:48.584','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.511','2025-10-17 10:53:07.429',NULL),
('06ed4b1d-6f0d-4563-b6e9-fe1b638c9d9c','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-20 11:16:04.039','2025-08-20 11:16:04.039','2025-08-20 11:16:04.039','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.935','2025-09-02 14:46:19.414',NULL),
('06f27452-01bd-408e-875e-c72920e775ad','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-25 10:46:45.328','2025-05-25 10:46:45.328','2025-05-25 10:46:45.328','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:51:31.745','2025-05-26 15:07:26.443',NULL),
('06f80f54-8596-4316-93be-c42556e6f815','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:10:33.321','2024-03-16 08:10:33.321','2024-03-16 08:10:33.321','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:14:33.445','2024-03-23 09:16:29.252',NULL),
('070273f1-ec8e-4646-9caf-fdff178d52c6','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 09:44:45.325','2024-03-12 09:44:45.325','2024-03-12 09:44:45.325','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 09:46:44.543','2024-03-14 13:43:33.497',NULL),
('070642b1-ac36-434b-8863-7763819a243d','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:53:30.122','2024-03-23 07:53:30.122','2024-03-23 07:53:30.122','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:56:25.558','2024-03-25 07:43:04.040',NULL),
('07670a73-77e6-4bec-94b1-4be3712539ff','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 09:37:07.565','2025-01-17 09:37:07.565','2025-01-17 09:37:07.565','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:50:13.401','2025-02-11 17:09:06.619',NULL),
('0769f681-1db3-4432-ba41-0084eb4abdf3','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 14:00:33.562','2025-04-22 14:00:33.562','2025-04-22 14:00:33.562','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.507',NULL),
('0785d1d8-7735-4b80-8f00-b2906e1c4a5c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 08:25:33.306','2025-09-17 08:25:33.306','2025-09-17 08:25:33.306','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.974','2025-10-14 08:52:36.818',NULL),
('07a47f12-0a89-469e-bfc4-dcf84518a454','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:16:23.174','2024-05-11 08:16:23.174','2024-05-11 08:16:23.174','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:24:02.602','2024-05-17 15:52:01.956',NULL),
('07e2d153-4b02-48f3-a9d5-84f6deab2744','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 07:18:46.008','2025-02-04 07:18:46.008','2025-02-04 07:18:46.008','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:07:02.596','2025-02-27 13:37:30.569',NULL),
('07fed9b5-dcdb-4526-b19d-6919a1bf1509','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 06:49:52.105','2025-02-25 06:49:52.105','2025-02-25 06:49:52.105','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-03-29 13:56:05.387',NULL),
('0802811b-f041-48cb-84c2-0f68fc473b66','3addc5c1-e82b-4a1a-b4af-1f66307a9108','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-27 12:36:05.467','2025-08-27 12:36:05.467','2025-08-27 12:36:05.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:45:43.672','2025-09-05 08:55:11.159',NULL),
('080a7e05-3fd7-42d8-b3e5-15e02c4885bb','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-12 12:22:20.855','2024-11-12 12:22:20.855','2024-11-12 12:22:20.855','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 12:24:12.347','2024-11-15 16:59:51.596',NULL),
('081476ec-def2-4e9b-85a8-0fdc2301ceeb','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:57:06.219','2024-05-10 06:57:06.219','2024-05-10 06:57:06.219','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:59:46.422','2024-05-10 06:59:46.422',NULL),
('0824c566-4779-4907-9138-08a9c7cb063d','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 07:08:58.293','2025-05-13 07:08:58.293','2025-05-13 07:08:58.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.106','2025-07-01 09:19:38.967',NULL),
('082a5bc6-61a5-4447-be2c-bc0ec088391c','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 07:59:59.570','2025-02-04 07:59:59.570','2025-02-04 07:59:59.570','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:32:41.996','2025-02-24 20:28:04.572',NULL),
('0848858e-3cea-45d1-87a7-4eff3a986f85','c2d4ce84-536d-4816-837f-7abbf6a7e061','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-10 10:32:03.687','2025-06-10 10:32:03.687','2025-06-10 10:32:03.687','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.243','2025-07-07 11:44:52.760',NULL),
('0895eb28-6985-4d10-b566-b86e1e20ea91','3addc5c1-e82b-4a1a-b4af-1f66307a9108','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-08 11:53:51.523','2025-10-08 11:53:51.523','2025-10-08 11:53:51.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.432','2025-10-25 08:58:44.118',NULL),
('08c8e636-b592-4b02-abee-bb056dbf1313','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 12:47:30.775','2025-08-01 12:47:30.775','2025-08-01 12:47:30.775','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.529','2025-08-21 08:12:57.035',NULL),
('09038135-2bfb-45b9-9e97-b33056a2e613','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 09:36:07.973','2025-08-27 09:36:07.973','2025-08-27 09:36:07.973','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.915','2025-09-02 14:46:19.398',NULL),
('090cae71-1e32-46f0-ab69-53dd85827892','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 09:55:56.181','2025-03-04 09:55:56.181','2025-03-04 09:55:56.181','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:32:27.236','2025-03-11 07:46:42.059',NULL),
('092d7134-2e46-4b97-ba55-232e53d19094','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:04:48.419','2024-09-18 21:04:48.419','2024-09-18 21:04:48.419','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:06:41.447','2024-09-18 21:06:41.447',NULL),
('093a622c-5e84-4f59-ae1c-28e5e051fdbc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 06:39:31.852','2024-03-16 06:39:31.852','2024-03-16 06:39:31.852','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 06:43:34.685','2024-03-16 06:48:33.477',NULL),
('09406ef0-cdd3-4fc5-b313-fd640f9d3186','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 13:01:45.082','2024-12-20 13:01:45.082','2024-12-20 13:01:45.082','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.385',NULL),
('09786f26-8fc5-4e15-ad25-72ce94049edf','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-10 10:48:31.339','2025-07-10 10:48:31.339','2025-07-10 10:48:31.339','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.882','2025-07-22 16:18:49.646',NULL),
('0980416f-97af-4301-821e-49cec9a906be','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-20 13:29:19.850','2025-01-20 13:29:19.850','2025-01-20 13:29:19.850','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.605',NULL),
('098ac6a9-1c81-4264-9c01-eb61aa032311','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-04 15:41:33.688','2024-12-04 15:41:33.688','2024-12-04 15:41:33.688','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:16:19.811','2024-12-16 18:41:52.610',NULL),
('09a3991a-db0d-46f8-964e-662651404776','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 10:17:50.404','2024-03-30 10:17:50.404','2024-03-30 10:17:50.404','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 10:21:40.061','2024-03-30 10:21:40.061',NULL),
('09aecbef-40e7-4ce6-9b11-9479c2b32565','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-30 10:44:46.522','2024-09-30 10:44:46.522','2024-09-30 10:44:46.522','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-30 10:55:58.991','2024-09-30 14:30:02.140','2024-09-30 14:30:02.148'),
('0a2a4f08-61c3-4f80-8df4-d309d9771564','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 19:16:45.558','2025-03-25 19:16:45.558','2025-03-25 19:16:45.558','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.746',NULL),
('0a3217fb-24ec-4617-a057-21e25d76a63c','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-20 07:17:48.282','2025-08-20 07:17:48.282','2025-08-20 07:17:48.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.428','2025-09-19 10:00:25.440',NULL),
('0a34c73d-9394-4d09-8370-7f8e175cc6e1','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 08:11:04.550','2025-09-18 08:11:04.550','2025-09-18 08:11:04.550','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.447','2025-10-01 07:56:23.162',NULL),
('0a4b236f-5799-4869-ab96-18d8fc936a49','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-02 08:01:25.225','2024-12-02 08:01:25.225','2024-12-02 08:01:25.225','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:00:18.509','2024-12-18 14:19:31.563',NULL),
('0a65000f-c688-41e4-8ebe-9b07c560a150','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:09:22.605','2025-09-15 06:09:22.605','2025-09-15 06:09:22.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-17 14:44:21.760','2025-09-18 15:48:17.435',NULL),
('0a8b6e0b-8a61-4fdb-82d8-9753812028b9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 13:55:12.535','2025-03-17 13:55:12.535','2025-03-17 13:55:12.535','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.178',NULL),
('0ac13369-60cf-4a05-83ad-b39930ad88b4','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-15 08:01:56.544','2025-08-15 08:01:56.544','2025-08-15 08:01:56.544','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-20 15:43:06.385','2025-08-21 08:12:56.931',NULL),
('0aceeadb-c188-4a89-ab5b-36c805413bb4','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 08:46:38.698','2024-10-21 08:46:38.698','2024-10-21 08:46:38.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 08:54:02.334','2024-11-04 13:59:37.852',NULL),
('0ad8bfbe-ed0f-4a71-9eaa-36cd5bb23c0d','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 08:13:47.786','2025-02-20 08:13:47.786','2025-02-20 08:13:47.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.330',NULL),
('0aeb4ea9-e2f7-4c21-89ce-3bf85dbfcc50','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 12:39:03.804','2025-03-13 12:39:03.804','2025-03-13 12:39:03.804','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:21:55.337','2025-03-29 13:37:01.814',NULL),
('0b320150-fb79-4969-b13f-3993c51169e9','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-20 09:33:44.978','2025-08-20 09:33:44.978','2025-08-20 09:33:44.978','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.848','2025-09-03 06:09:36.838',NULL),
('0b581733-f172-4c26-911d-23873f194acb','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 12:14:58.792','2025-04-17 12:14:58.792','2025-04-17 12:14:58.792','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.813',NULL),
('0ba8ef73-849f-4bd5-b3a6-7a7148d3db6a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 15:01:55.292','2025-02-26 15:01:55.292','2025-02-26 15:01:55.292','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:18:50.008','2025-04-02 18:57:11.117',NULL),
('0bdd6f64-8b5d-4f75-9f9e-0bda6e7994f8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:24:01.640','2024-11-15 16:24:01.640','2024-11-15 16:24:01.640','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:25:39.879','2024-11-15 16:25:39.879',NULL),
('0be2f0d7-1558-4379-93ab-a46be64724c8','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 13:10:30.950','2025-09-29 13:10:30.950','2025-09-29 13:10:30.950','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.733','2025-10-07 15:17:28.437',NULL),
('0c065eed-195c-45ca-8c25-d617907fd95f','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','1f0119e0-2853-442a-8394-39cf94fce7df','2024-11-21 06:51:39.573','2024-11-21 06:51:39.573','2024-11-21 06:51:39.573','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 06:53:49.605','2024-12-09 17:29:20.142',NULL),
('0c164e6d-30a9-42c2-99fa-432ad01eeff1','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-15 07:06:25.081','2025-05-15 07:06:25.081','2025-05-15 07:06:25.081','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.735',NULL),
('0c1b7fe2-d647-4e62-9068-1da6a074aad6','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:33:47.442','2024-05-10 06:33:47.442','2024-05-10 06:33:47.442','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:38:15.008','2024-05-10 06:38:15.008',NULL),
('0c271fd3-f8c4-4d40-a0ac-120c9464f70e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-15 15:09:34.185','2025-04-15 15:09:34.185','2025-04-15 15:09:34.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.080',NULL),
('0c2deb7f-bd37-467e-9b65-762db636b6bc','3addc5c1-e82b-4a1a-b4af-1f66307a9108','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-27 12:52:18.467','2025-08-27 12:52:18.467','2025-08-27 12:52:18.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.073','2025-09-06 09:41:31.957',NULL),
('0c6db94f-1833-4697-a2fb-17cc40298de0','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 08:31:47.965','2025-09-18 08:31:47.965','2025-09-18 08:31:47.965','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.569','2025-10-03 16:08:51.069',NULL),
('0c8cdc1a-22f2-497b-a95d-21c5046f2b4a','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 09:03:26.333','2025-01-06 09:03:26.333','2025-01-06 09:03:26.333','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.557',NULL),
('0c9609db-7915-4cdf-a571-fca7d945ea31','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-07 07:38:06.201','2025-03-07 07:38:06.201','2025-03-07 07:38:06.201','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:31:06.093','2025-03-08 13:38:16.131','2025-03-08 13:38:16.135'),
('0cb9db60-efc0-4bce-98f6-b7ab052b5f43','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 08:08:10.162','2025-07-23 08:08:10.162','2025-07-23 08:08:10.162','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.937','2025-08-21 08:12:56.895',NULL),
('0cca1172-03f5-42c5-b4b2-7320455c7a04','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-12 09:09:30.509','2025-07-12 09:09:30.509','2025-07-12 09:09:30.509','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.686','2025-07-16 14:21:29.671',NULL),
('0ccd7cf3-cc83-47f7-a4ba-5f6eab4c9981','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-10 08:01:51.177','2025-07-10 08:01:51.177','2025-07-10 08:01:51.177','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.727','2025-07-16 14:21:29.547',NULL),
('0cf5be0f-03ab-4dfb-b244-aa71d3d468db','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 09:26:48.949','2025-02-20 09:26:48.949','2025-02-20 09:26:48.949','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.529',NULL),
('0d198e30-b177-4e93-ab0f-84f0aea4fa51','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-18 07:39:14.979','2025-04-18 07:39:14.979','2025-04-18 07:39:14.979','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.409',NULL),
('0d3b6022-da3f-48c3-a744-df9ec337ac1e','b0c1192a-7d38-4b69-a901-778f65a98b9d','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-08 13:10:02.403','2025-09-08 13:10:02.403','2025-09-08 13:10:02.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 12:14:31.001','2025-09-10 12:48:00.842',NULL),
('0d3e09f7-312a-43ec-9746-8645d24a2dde','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-21 11:18:35.415','2024-03-21 11:18:35.415','2024-03-21 11:18:35.415','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-21 11:22:35.234','2024-03-30 08:49:15.180','2024-03-30 08:49:15.186'),
('0d535c28-e1b0-4ddf-b929-ca13e1276f94','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-02 09:34:15.562','2025-06-02 09:34:15.562','2025-06-02 09:34:15.562','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:34:37.125','2025-07-07 11:44:52.745',NULL),
('0d73f190-a910-4bae-a439-059bbebb4e1a','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-18 07:19:55.462','2025-01-18 07:19:55.462','2025-01-18 07:19:55.462','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.672',NULL),
('0d785148-6111-4252-8e79-872354383a3a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:38:29.837','2025-09-24 12:38:29.837','2025-09-24 12:38:29.837','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.589','2025-10-07 15:17:28.579',NULL),
('0ddcbbab-1d82-43a8-aa02-82a684f4a271','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:59:33.185','2024-05-11 08:59:33.185','2024-05-11 08:59:33.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 09:01:16.747','2024-05-15 13:00:55.823',NULL),
('0de7fb40-d871-4add-bd7e-66bd02d8a369','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 09:33:09.283','2024-08-30 09:33:09.283','2024-08-30 09:33:09.283','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 09:35:19.345','2024-08-31 13:17:51.878',NULL),
('0df61b66-5828-433a-b930-3997582cc55d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 09:33:04.069','2024-10-11 09:33:04.069','2024-10-11 09:33:04.069','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 09:34:42.709','2024-10-11 09:34:42.709',NULL),
('0e16f12a-b10c-4847-806c-af72e26f94a0','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:40:49.403','2024-12-20 12:40:49.403','2024-12-20 12:40:49.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:53:54.323','2024-12-27 12:23:49.279',NULL),
('0e257cf4-ce39-444b-b7c3-fccad30d3d51','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 14:23:30.786','2024-08-20 14:23:30.786','2024-08-20 14:23:30.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 14:29:46.724','2024-08-20 15:10:17.556',NULL),
('0e4fa964-fb2a-4f71-a3a6-0f06c3aee178','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-13 11:27:49.101','2025-06-13 11:27:49.101','2025-06-13 11:27:49.101','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.843','2025-07-22 16:18:49.619',NULL),
('0e59fd29-1409-4d2a-bb08-10b12ea2c8f6','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 06:11:31.691','2025-03-24 06:11:31.691','2025-03-24 06:11:31.691','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.381',NULL),
('0e5bf186-8e2e-4d37-b400-5aad5c33c54a','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-21 15:05:06.983','2025-08-21 15:05:06.983','2025-08-21 15:05:06.983','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.935','2025-09-03 06:09:36.638',NULL),
('0e7bf17c-6a79-4ecc-a998-65969800851f','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-04 12:55:28.647','2025-08-04 12:55:28.647','2025-08-04 12:55:28.647','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:59:40.439','2025-09-12 17:16:02.669',NULL),
('0e96a3a1-4c62-4ddc-b1f4-26e56e5ef57c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 08:54:23.082','2024-03-30 08:54:23.082','2024-03-30 08:54:23.082','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 08:56:59.849','2024-03-30 08:56:59.849',NULL),
('0ec79b5a-eda5-4062-b616-842fc5dbccc4','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-05 09:26:35.176','2025-03-05 09:26:35.176','2025-03-05 09:26:35.176','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:17:40.312','2025-03-06 10:36:11.554',NULL),
('0ee2f344-94a1-460c-bd16-9fc01916c43d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-16 08:58:29.664','2025-05-16 08:58:29.664','2025-05-16 08:58:29.664','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:51:31.745','2025-05-26 15:07:26.470',NULL),
('0f0d7e15-dbbd-4e34-b083-316b17b3147d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-14 15:06:07.503','2025-10-14 15:06:07.503','2025-10-14 15:06:07.503','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.091','2025-10-22 11:29:52.613',NULL),
('0f40897c-28c8-4ab1-8775-b64beb9dbe0e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:51:52.751','2024-12-28 14:51:52.751','2024-12-28 14:51:52.751','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:55:09.945','2025-01-06 20:08:12.969',NULL),
('0f9e90b0-17cb-4bd4-a4a1-b2ec31b6c606','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 13:36:12.321','2025-09-16 13:36:12.321','2025-09-16 13:36:12.321','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.479','2025-09-26 12:27:42.359',NULL),
('0fc035f7-204d-4f1a-a245-fc84b911638d','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:42:33.413','2024-03-16 08:42:33.413','2024-03-16 08:42:33.413','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:47:07.209','2024-03-16 08:47:07.209',NULL),
('0fce13dc-aec0-42a1-868c-df1998bdeee4','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-03 07:11:19.259','2025-09-03 07:11:19.259','2025-09-03 07:11:19.259','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.988','2025-10-14 08:52:36.833',NULL),
('0fd8396a-bd7d-435a-a6d7-dcf0825a15d1','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-11 12:15:50.897','2024-09-11 12:15:50.897','2024-09-11 12:15:50.897','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-11 12:20:21.794','2024-09-27 13:39:34.770',NULL),
('100f983e-65ed-470c-a725-deebc574ca8c','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-29 12:05:04.397','2024-08-29 12:05:04.397','2024-08-29 12:05:04.397','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-29 12:06:56.499','2024-08-31 12:57:20.218',NULL),
('10362939-84de-48b8-8114-8ceeb74cbf2c','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:55:08.511','2024-12-07 08:55:08.511','2024-12-07 08:55:08.511','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:00:18.509','2024-12-17 19:52:32.860',NULL),
('1049c315-4940-4551-92aa-2f55e871e433','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-30 07:31:17.854','2024-12-30 07:31:17.854','2024-12-30 07:31:17.854','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.506',NULL),
('108ae3af-9d9b-42de-bdec-a939bbe83858','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 11:09:46.738','2025-09-05 11:09:46.738','2025-09-05 11:09:46.738','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.438','2025-09-18 15:48:17.571',NULL),
('108cfb9b-f081-462d-b53c-1e5a0241c535','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:21:21.930','2024-09-18 21:21:21.930','2024-09-18 21:21:21.930','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:23:01.850','2024-09-18 21:23:01.850',NULL),
('10b502da-90db-462a-9cf1-a17fee3d9b44','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 12:55:17.162','2025-06-25 12:55:17.162','2025-06-25 12:55:17.162','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.931','2025-07-22 16:18:49.527',NULL),
('10d9d2d2-f710-438a-a4a9-cacbe50bb7ab','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 08:39:15.843','2025-07-09 08:39:15.843','2025-07-09 08:39:15.843','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.139','2025-07-11 08:00:02.580',NULL),
('10f398a9-48b3-42c1-8288-187a1462bdbb','c2d4ce84-536d-4816-837f-7abbf6a7e061','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-25 12:15:11.769','2024-11-25 12:15:11.769','2024-11-25 12:15:11.769','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 12:17:18.701','2024-12-17 19:52:32.946',NULL),
('10f78c32-2af7-4297-9afa-a2968cf38bb4','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-04 08:12:53.894','2025-04-04 08:12:53.894','2025-04-04 08:12:53.894','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.475',NULL),
('10fcccb4-3523-4f99-a407-c2360077f3fe','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-04 07:56:03.638','2025-07-04 07:56:03.638','2025-07-04 07:56:03.638','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:09:31.436','2025-07-08 11:33:15.198',NULL),
('110356da-61be-4ab0-9175-9c8ff9682459','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 12:06:10.622','2025-08-27 12:06:10.622','2025-08-27 12:06:10.622','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.873','2025-09-19 10:00:25.344',NULL),
('1117f026-a24d-4668-b7d2-b56cf104b622','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-10 20:30:05.927','2024-12-10 20:30:05.927','2024-12-10 20:30:05.927','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.371',NULL),
('1138473a-ca25-4eeb-a21f-661032a535ee','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-14 09:14:24.343','2024-06-14 09:14:24.343','2024-06-14 09:14:24.343','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-14 09:18:16.331','2024-06-14 09:18:16.331',NULL),
('1146e7de-2026-43af-9b14-d22181b3accb','dea91080-5383-4085-af2e-7eace2c64224','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 14:39:06.443','2024-11-21 14:39:06.443','2024-11-21 14:39:06.443','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 14:48:16.568','2024-12-09 17:29:20.109',NULL),
('11760d11-5154-43a8-ad29-86e265b203e6','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:11:09.686','2024-09-18 21:11:09.686','2024-09-18 21:11:09.686','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:15:33.877','2024-09-20 21:34:14.258',NULL),
('11babdea-d3a7-45ee-b820-1c39d3bde701','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-18 16:48:04.373','2025-08-18 16:48:04.373','2025-08-18 16:48:04.373','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.897','2025-09-03 06:09:36.604',NULL),
('11c6da7c-dbd3-487e-bb28-ac41b45df6d7','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-10 06:59:12.703','2025-03-10 06:59:12.703','2025-03-10 06:59:12.703','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-02 18:57:10.996',NULL),
('11d63f04-d1ff-483f-81d1-e0149f82d6b5','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 10:27:45.343','2025-07-08 10:27:45.343','2025-07-08 10:27:45.343','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.721','2025-07-16 14:21:29.635',NULL),
('11ee97be-b2a6-496c-ae42-7d811326f6aa','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-04 12:30:27.106','2025-04-04 12:30:27.106','2025-04-04 12:30:27.106','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.448',NULL),
('11efd54d-374f-4efc-9340-3f79f0cfb533','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-24 08:17:43.004','2025-04-24 08:17:43.004','2025-04-24 08:17:43.004','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.130',NULL),
('11f47b62-226b-4d5b-9ca3-8513be6032d6','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 08:05:40.595','2025-05-13 08:05:40.595','2025-05-13 08:05:40.595','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.642',NULL),
('1239ef2e-5f6b-4745-99f1-c693c45fc353','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 13:44:51.994','2025-03-24 13:44:51.994','2025-03-24 13:44:51.994','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:41:20.302','2025-05-03 08:06:31.735',NULL),
('124655e3-03d3-4f0f-81e0-d331028e4aa6','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 08:43:42.968','2025-01-17 08:43:42.968','2025-01-17 08:43:42.968','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.665',NULL),
('1253df5f-4414-4e5e-bddd-d03ce77697d5','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-03 14:56:18.005','2025-10-03 14:56:18.005','2025-10-03 14:56:18.005','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.449','2025-10-25 08:58:44.064',NULL),
('1265f48e-99e8-4979-be9a-f3ed43df8837','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-15 09:00:07.918','2025-04-15 09:00:07.918','2025-04-15 09:00:07.918','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.521',NULL),
('128a1ca0-d70c-4447-aed6-5da8e57c5a01','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 08:55:53.092','2025-09-22 08:55:53.092','2025-09-22 08:55:53.092','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.944','2025-10-14 08:52:36.787',NULL),
('128d51bc-f658-4905-8c8b-6a555d74e16b','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 16:38:33.190','2025-08-18 16:38:33.190','2025-08-18 16:38:33.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.504','2025-08-22 20:28:07.577',NULL),
('128f2935-759a-4e5a-b8b7-236162f544d5','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-14 15:25:33.909','2024-03-14 15:25:33.909','2024-03-14 15:25:33.909','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-14 15:27:26.595','2024-03-18 10:36:28.885',NULL),
('12ea9c63-e87d-4b27-9d9c-7b45dae21bb8','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 13:17:07.360','2025-02-24 13:17:07.360','2025-02-24 13:17:07.360','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:35:30.206','2025-03-11 07:46:41.960',NULL),
('131114b2-2e1e-40b1-a53c-f389a07bd032','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 07:04:02.180','2025-10-01 07:04:02.180','2025-10-01 07:04:02.180','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.846','2025-10-01 07:56:23.279',NULL),
('1331f4ae-4cf3-4c91-8524-985d577af1b6','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 17:45:55.792','2025-07-18 17:45:55.792','2025-07-18 17:45:55.792','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.814','2025-07-22 16:18:49.611',NULL),
('13400a1c-44a7-4f3b-8856-3e7158c1893e','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 09:00:51.021','2024-10-23 09:00:51.021','2024-10-23 09:00:51.021','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 09:02:40.846','2024-10-23 10:16:47.800',NULL),
('13673d22-bba1-4ce5-9657-2538c02e06c8','d1ba1223-4475-415e-b63f-154a9404e56e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-23 17:19:16.925','2025-05-23 17:19:16.925','2025-05-23 17:19:16.925','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.905',NULL),
('13ac9a29-b0d8-4420-8bb1-8b613dd137b8','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-23 07:18:02.211','2024-05-23 07:18:02.211','2024-05-23 07:18:02.211','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-23 07:19:34.145','2024-05-23 07:19:34.145',NULL),
('13b3f8b4-4d80-4b99-95ce-e6021a627a0b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 09:50:24.243','2025-09-10 09:50:24.243','2025-09-10 09:50:24.243','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.851','2025-09-19 10:00:25.320',NULL),
('13bf5587-6470-4c3f-97a0-72089f3eec73','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-14 13:58:34.168','2025-04-14 13:58:34.168','2025-04-14 13:58:34.168','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.143',NULL),
('13cf22a7-9720-435c-8e0e-9ca4c1a80861','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-05 10:08:29.943','2025-05-05 10:08:29.943','2025-05-05 10:08:29.943','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:21:20.141','2025-07-07 11:46:28.300',NULL),
('13f03912-2a46-423f-90fb-ad13add95052','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 08:41:37.538','2025-07-09 08:41:37.538','2025-07-09 08:41:37.538','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.156','2025-07-11 08:00:02.556',NULL),
('13f222f4-9fa5-48eb-93fc-6c0ba76a0302','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 09:46:35.914','2025-01-13 09:46:35.914','2025-01-13 09:46:35.914','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.515',NULL),
('13fad53b-48ab-4a47-b0b3-27071d7f96c7','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:15:25.327','2025-01-04 23:15:25.327','2025-01-04 23:15:25.327','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 14:53:42.276','2025-01-13 07:50:40.431',NULL),
('1408b120-3a9f-4f5b-b006-6f22b9950828','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-25 09:16:02.605','2025-04-25 09:16:02.605','2025-04-25 09:16:02.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:29:06.668','2025-05-26 13:23:22.448',NULL),
('1421d49a-6a1a-480c-9443-9dac92577d34','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:54:06.303','2024-11-12 15:54:06.303','2024-11-12 15:54:06.303','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:55:03.906','2024-11-12 16:27:09.371',NULL),
('1427aa33-57cf-42eb-aefb-f9e1087ed6d1','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-12 11:22:55.725','2025-05-12 11:22:55.725','2025-05-12 11:22:55.725','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:07:51.919','2025-06-06 02:46:03.961',NULL),
('147ac8a5-6d5a-4346-9f71-e18687501a0a','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-15 08:06:20.621','2025-07-15 08:06:20.621','2025-07-15 08:06:20.621','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.851','2025-07-22 16:18:49.559',NULL),
('1496369b-7bda-4a64-8517-b121955f3d32','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-31 12:11:57.962','2024-05-31 12:11:57.962','2024-05-31 12:11:57.962','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-31 13:01:25.779','2024-07-20 09:52:33.078','2024-07-20 09:52:33.081'),
('14a4e6eb-9243-461d-9b1c-df5851462041','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-02 15:23:45.020','2024-12-02 15:23:45.020','2024-12-02 15:23:45.020','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:50:36.282','2024-12-27 12:23:49.317',NULL),
('14b578fa-f41f-4804-bc7f-d3c060223749','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 14:37:21.877','2025-04-26 14:37:21.877','2025-04-26 14:37:21.877','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 17:54:34.477',NULL),
('14c152b5-601d-4f28-a206-1fb89f5f08ec','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-25 09:04:01.324','2024-07-25 09:04:01.324','2024-07-25 09:04:01.324','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-25 09:34:50.682','2024-08-07 14:43:39.647',NULL),
('14ef5776-d897-4ea4-ad94-a6c82b08aafb','85834865-ac23-4c00-a99b-c9551971a5a1','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-22 10:37:18.551','2024-11-22 10:37:18.551','2024-11-22 10:37:18.551','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-22 10:40:03.517','2024-12-02 09:51:49.653',NULL),
('14ffdd18-afac-42ce-92f0-5cc7ec209028','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-02 12:24:16.590','2025-09-02 12:24:16.590','2025-09-02 12:24:16.590','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.288','2025-09-12 17:16:02.710',NULL),
('15062dcd-b4cc-4c97-b2d8-1780bfdd6351','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 09:31:13.873','2025-04-28 09:31:13.873','2025-04-28 09:31:13.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.269',NULL),
('15231944-d338-42bc-bb20-a98e7dc66c2a','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 15:09:48.638','2024-12-17 15:09:48.638','2024-12-17 15:09:48.638','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.477',NULL),
('15285d1b-7e2b-4eaa-b1f9-a70cfe99d16b','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-14 15:15:30.871','2025-07-14 15:15:30.871','2025-07-14 15:15:30.871','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.425','2025-08-12 08:07:30.317',NULL),
('154ee4bd-a3e6-4ae8-83fe-374f259e59f1','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 08:18:39.139','2025-07-30 08:18:39.139','2025-07-30 08:18:39.139','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.802','2025-08-18 07:14:34.941',NULL),
('157861fb-7425-4fa1-a50c-7577da5d7c20','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:07:33.522','2025-04-09 08:07:33.522','2025-04-09 08:07:33.522','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.408',NULL),
('15800cdd-7d36-4347-b482-069d60671a10','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-27 15:55:20.596','2024-11-27 15:55:20.596','2024-11-27 15:55:20.596','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-27 15:57:56.886','2024-12-09 17:29:20.246',NULL),
('15850324-3d1e-49a1-8f54-cb5b97e1116b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 08:57:00.000','2025-08-06 08:57:00.000','2025-08-06 08:57:00.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.924','2025-08-21 08:12:57.043',NULL),
('1595e632-59cd-41b2-baa7-73d4f313ca04','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-14 12:05:09.694','2024-08-14 12:05:09.694','2024-08-14 12:05:09.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-14 12:07:17.895','2024-08-23 09:04:42.766',NULL),
('15f787ff-9355-4993-b0db-8b1cd7aa3865','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-07 11:35:54.696','2024-10-07 11:35:54.696','2024-10-07 11:35:54.696','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 11:43:33.160','2024-10-11 15:05:44.666',NULL),
('1612d0cc-cb4f-4866-bbef-b76f59c302fc','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-20 11:20:32.731','2025-08-20 11:20:32.731','2025-08-20 11:20:32.731','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.175','2025-08-25 12:11:45.763',NULL),
('161692ed-9a83-4a7e-90f6-a762d64bfb9f','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 08:10:31.163','2025-01-02 08:10:31.163','2025-01-02 08:10:31.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:31:51.796','2025-01-29 12:24:52.730',NULL),
('16a0f325-2e5d-418b-b063-7effae718f07','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-25 09:08:46.335','2024-09-25 09:08:46.335','2024-09-25 09:08:46.335','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-25 09:13:38.647','2024-10-02 10:46:19.957',NULL),
('16a9b0f4-244e-4c12-9c9f-6bfb8a6db8d2','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-14 10:35:16.004','2025-08-14 10:35:16.004','2025-08-14 10:35:16.004','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.440','2025-08-22 20:28:07.506',NULL),
('16b3a17c-1cf5-4e64-9ac7-4c6cf4075677','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-10 09:07:10.959','2025-06-10 09:07:10.959','2025-06-10 09:07:10.959','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.202','2025-07-07 11:44:52.638',NULL),
('16c62cd5-af71-4be8-935c-05864dcb58ef','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 15:28:14.440','2025-08-28 15:28:14.440','2025-08-28 15:28:14.440','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.671','2025-09-10 07:11:56.246',NULL),
('16f6f693-3ab8-48ac-b7fb-5296084616c4','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 09:10:38.547','2025-05-13 09:10:38.547','2025-05-13 09:10:38.547','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.141','2025-07-01 09:19:39.002',NULL),
('170342bf-405d-4580-a68d-91a22c016181','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:18:48.566','2024-03-30 09:18:48.566','2024-03-30 09:18:48.566','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:22:16.339','2024-03-30 09:22:16.339',NULL),
('173e451e-1c6d-454a-9a15-3e3c3e6ff708','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-26 10:26:52.509','2025-01-26 10:26:52.509','2025-01-26 10:26:52.509','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:28:31.215','2025-01-29 12:24:52.622',NULL),
('175e9ef4-9b34-4c32-804b-061ec4a7d971','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 08:17:12.908','2025-01-09 08:17:12.908','2025-01-09 08:17:12.908','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.625',NULL),
('17bf20b2-7e2c-4ca4-a5e6-934be1030687','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:30:43.523','2024-03-16 08:30:43.523','2024-03-16 08:30:43.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:33:20.137','2024-03-22 11:20:23.067',NULL),
('17c87f8b-0e5e-405b-b6a7-cf1fa97d8bef','c2d4ce84-536d-4816-837f-7abbf6a7e061','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-17 13:15:38.640','2025-06-17 13:15:38.640','2025-06-17 13:15:38.640','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.238','2025-07-07 11:44:52.787',NULL),
('17fe8da7-6cb0-443b-81ee-3db11136509a','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:02:21.663','2024-12-07 09:02:21.663','2024-12-07 09:02:21.663','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:04:36.537','2024-12-17 19:52:32.973',NULL),
('1845288f-d654-4e64-a85b-bd791a8f2ea7','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 16:03:11.419','2025-07-01 16:03:11.419','2025-07-01 16:03:11.419','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.221','2025-07-16 14:21:29.656',NULL),
('187a8833-7f41-4c4a-8ddc-1939157193d2','02756ab4-fa8a-408f-b81c-76a84dc82d6f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:56:41.873','2024-07-20 10:56:41.873','2024-07-20 10:56:41.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:58:58.786','2024-07-20 11:15:36.079',NULL),
('188892de-94ff-408f-819b-c301dbd7677f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:18:57.449','2024-11-15 16:18:57.449','2024-11-15 16:18:57.449','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:22:06.329','2024-11-15 16:22:06.329',NULL),
('188d5dff-01b7-42be-823b-ef48d3bf8ce4','e6d632ec-bc89-4254-b43c-4f7383017076','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 06:41:35.613','2025-10-01 06:41:35.613','2025-10-01 06:41:35.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.434','2025-10-04 10:45:41.692',NULL),
('188db7b6-340f-4073-95d1-b9e30d583d0f','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:07:09.667','2025-07-01 10:07:09.667','2025-07-01 10:07:09.667','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.229','2025-07-16 14:21:29.641',NULL),
('18cb18ac-e3b1-44f8-8bbd-d151e8c689e0','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 09:52:42.947','2025-04-21 09:52:42.947','2025-04-21 09:52:42.947','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.890',NULL),
('18e078c3-b983-4575-bf4d-fbbe8d3a633a','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-14 08:55:40.167','2025-04-14 08:55:40.167','2025-04-14 08:55:40.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:09:29.148','2025-04-15 09:32:18.343',NULL),
('18e493b1-7c9c-4ba3-ba21-22949d7cfea8','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 08:45:04.191','2025-02-24 08:45:04.191','2025-02-24 08:45:04.191','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.091',NULL),
('19408ece-0ac7-41b5-9893-8334763a9999','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 15:45:32.017','2025-04-25 15:45:32.017','2025-04-25 15:45:32.017','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:50:25.917','2025-04-26 07:32:55.501',NULL),
('194c48ad-7bf0-46d9-904f-efc5b7f0f7f8','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 08:50:30.775','2024-03-18 08:50:30.775','2024-03-18 08:50:30.775','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 08:52:13.195','2024-03-26 08:51:25.023','2024-03-26 08:51:25.029'),
('1952bf67-a3c1-4486-a806-d2e084e9b956','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-31 14:34:58.605','2024-10-31 14:34:58.605','2024-10-31 14:34:58.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 14:43:14.103','2024-11-04 13:48:53.866',NULL),
('19784480-0468-4766-a554-794c2f8baf0f','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-24 09:59:33.712','2024-07-24 09:59:33.712','2024-07-24 09:59:33.712','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-24 10:02:02.331','2024-08-31 13:23:22.830',NULL),
('19b9bdd9-0331-4431-969e-486b1be641ac','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-28 09:33:12.124','2025-08-28 09:33:12.124','2025-08-28 09:33:12.124','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.468','2025-09-18 15:48:17.614',NULL),
('19eaac57-08b2-4c89-9a43-c9d85c346d10','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-25 10:44:03.759','2025-05-25 10:44:03.759','2025-05-25 10:44:03.759','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:51:31.745','2025-05-26 15:07:26.450',NULL),
('19f6e9f4-1eec-4e2b-b2d0-c6a29209ef6e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 11:44:47.425','2025-02-24 11:44:47.425','2025-02-24 11:44:47.425','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:28:25.161','2025-03-12 19:01:22.496',NULL),
('1a1b7792-6108-46ff-aa89-6f25e763dc65','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 15:05:42.161','2025-02-07 15:05:42.161','2025-02-07 15:05:42.161','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:22:41.824','2025-02-24 20:28:04.537',NULL),
('1a54dded-38bd-441b-b40c-dc7760804356','92d31478-aa4f-4f7e-b6e7-95b858af9bfe','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 12:29:39.037','2024-10-17 12:29:39.037','2024-10-17 12:29:39.037','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:31:13.153','2024-10-17 14:00:00.697',NULL),
('1a63b66b-7353-41b6-a41d-94761ce9e35e','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:31:44.191','2025-04-24 08:31:44.191','2025-04-24 08:31:44.191','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.375',NULL),
('1a820931-a0df-45e6-b665-84593982956f','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 10:05:54.280','2025-09-22 10:05:54.280','2025-09-22 10:05:54.280','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.836','2025-10-03 16:08:51.158',NULL),
('1a968c5f-eec3-4beb-a73e-8cda6a79acc5','5f244b33-94ca-477b-ae15-8d3bf79ba2c8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 09:33:47.676','2025-06-26 09:33:47.676','2025-06-26 09:33:47.676','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.229','2025-07-21 09:11:57.755',NULL),
('1a9f038d-94c4-476d-ae3f-c24e7c3a1b42','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-16 15:24:59.331','2025-07-16 15:24:59.331','2025-07-16 15:24:59.331','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.278','2025-07-26 08:40:12.334',NULL),
('1aa406f9-452d-46e2-9601-2f37150ffb3d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 15:00:20.893','2024-08-20 15:00:20.893','2024-08-20 15:00:20.893','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 15:02:17.702','2024-08-23 09:05:34.585',NULL),
('1aa9ed4c-5a76-477d-8318-cd686b3a886c','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-02 11:25:32.945','2025-09-02 11:25:32.945','2025-09-02 11:25:32.945','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.168','2025-09-10 12:48:00.813',NULL),
('1ab6e4d2-df12-4c30-a05c-577565645cd9','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 14:17:57.153','2025-04-22 14:17:57.153','2025-04-22 14:17:57.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.290',NULL),
('1ad31a3a-2223-4161-9e73-6b8885717b81','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 10:21:16.287','2025-04-21 10:21:16.287','2025-04-21 10:21:16.287','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.809',NULL),
('1ae3c846-eeaf-4516-a373-eda6bf274a53','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 14:18:43.206','2024-12-13 14:18:43.206','2024-12-13 14:18:43.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:51:16.891','2025-01-07 17:06:26.365',NULL),
('1b02440c-aca9-45e5-a912-231755a7bfd1','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:42:53.864','2024-10-23 08:42:53.864','2024-10-23 08:42:53.864','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 08:49:27.047','2024-10-23 10:17:40.171',NULL),
('1b21f9ba-8320-47d5-b962-f08d83061b72','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 08:34:06.763','2025-02-26 08:34:06.763','2025-02-26 08:34:06.763','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.098',NULL),
('1b2abeaf-1e46-4c1f-9e69-de36f8a6fe1f','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-23 12:24:20.611','2025-02-23 12:24:20.611','2025-02-23 12:24:20.611','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:26:40.006','2025-03-02 04:33:53.179',NULL),
('1b501d33-19ff-4e7a-b9bd-a745952dd5dd','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 13:14:28.219','2025-10-01 13:14:28.219','2025-10-01 13:14:28.219','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.316','2025-10-06 07:21:38.238',NULL),
('1b8c5934-e486-494e-afcb-ad494fa8b92b','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-10 12:56:54.948','2025-03-10 12:56:54.948','2025-03-10 12:56:54.948','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.532',NULL),
('1b92f7c4-8b11-42b3-96f7-e608a0bf0100','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-03 15:20:38.227','2024-09-03 15:20:38.227','2024-09-03 15:20:38.227','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-03 15:23:17.726','2024-09-03 15:23:17.726',NULL),
('1bc33608-be05-4160-8a2f-3ed7f285ebfd','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-16 13:37:38.660','2025-10-16 13:37:38.660','2025-10-16 13:37:38.660','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.289','2025-10-25 08:58:43.889',NULL),
('1be8104f-0d17-4013-b22f-80ca6273bbc4','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 14:59:29.478','2025-06-26 14:59:29.478','2025-06-26 14:59:29.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.246','2025-08-25 12:11:45.743',NULL),
('1bfd838a-7803-4c85-83e6-68d141acca02','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-17 07:44:15.584','2025-07-17 07:44:15.584','2025-07-17 07:44:15.584','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.409','2025-08-12 08:07:30.325',NULL),
('1c08d1fc-f303-4c5c-92fe-8ab31037eb98','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 17:04:31.007','2025-09-06 17:04:31.007','2025-09-06 17:04:31.007','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:05:18.222','2025-09-10 12:48:00.820',NULL),
('1c19101e-6363-49c3-b344-28166bc13559','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:43:46.933','2024-09-05 15:43:46.933','2024-09-05 15:43:46.933','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:45:59.664','2024-09-06 12:41:46.710',NULL),
('1c1a06aa-17b6-49a8-b899-b7aa94389f7b','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 08:06:27.156','2025-10-02 08:06:27.156','2025-10-02 08:06:27.156','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.894','2025-10-14 09:26:33.377',NULL),
('1c1b389f-0c10-4c38-9506-fca9643eb335','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-14 09:42:16.405','2025-10-14 09:42:16.405','2025-10-14 09:42:16.405','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.479','2025-10-25 08:58:43.967',NULL),
('1c49d1dc-3353-4909-aeef-daa57c556de9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 12:58:51.516','2025-03-21 12:58:51.516','2025-03-21 12:58:51.516','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-04 09:39:42.946',NULL),
('1c4a35ca-2125-4aa8-942e-7293a5e27589','d8172c72-d29b-40c5-b0b2-0277129ff6b4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 06:41:01.163','2025-09-16 06:41:01.163','2025-09-16 06:41:01.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.487','2025-09-26 12:27:42.343',NULL),
('1c5afb47-2cf7-4e77-9e64-f57508cc6b52','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:04:53.819','2024-12-07 09:04:53.819','2024-12-07 09:04:53.819','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:12:01.171','2024-12-17 19:52:33.056',NULL),
('1c6ae4eb-c7ac-4c6c-9df5-115f7176835a','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 14:40:08.886','2025-08-01 14:40:08.886','2025-08-01 14:40:08.886','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-20 15:43:06.401','2025-08-21 08:12:57.064',NULL),
('1cb255ab-e9ca-4344-896c-72fc33b8d8eb','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-13 10:14:25.986','2024-11-13 10:14:25.986','2024-11-13 10:14:25.986','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-13 10:15:55.958','2024-12-09 08:24:38.644',NULL),
('1cb39939-57bc-44dc-87c9-73c5cc422cb7','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 11:32:48.484','2025-09-18 11:32:48.484','2025-09-18 11:32:48.484','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.329','2025-10-22 11:29:52.651',NULL),
('1ccdcd1f-e257-4b9e-9fd3-8f2d41f304c0','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-26 14:52:58.887','2025-06-26 14:52:58.887','2025-06-26 14:52:58.887','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.209','2025-07-07 11:44:52.781',NULL),
('1ccf2875-a99a-4bff-8b37-8cccea2360fe','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-27 09:02:06.591','2025-05-27 09:02:06.591','2025-05-27 09:02:06.591','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.873',NULL),
('1cfef0b9-bb98-420f-a3c7-22b053232521','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 07:41:03.385','2025-08-11 07:41:03.385','2025-08-11 07:41:03.385','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.930','2025-08-21 08:12:56.945',NULL),
('1d0c499b-261d-45f9-9c96-6de7f9c5464a','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 13:25:42.429','2025-03-08 13:25:42.429','2025-03-08 13:25:42.429','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:28:46.864','2025-03-11 07:46:42.074',NULL),
('1d249a3b-bc31-4e40-b086-db092cb2753c','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-07 07:46:18.053','2025-05-07 07:46:18.053','2025-05-07 07:46:18.053','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:21:46.729','2025-06-06 02:46:03.936',NULL),
('1d38778e-74e0-4456-bb9f-d4d1dae76057','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:42:44.467','2025-03-17 11:42:44.467','2025-03-17 11:42:44.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.839',NULL),
('1d6b1318-2713-4be1-bc85-39664ba8fa24','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:56:40.274','2024-10-23 08:56:40.274','2024-10-23 08:56:40.274','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 08:58:50.782','2024-10-23 10:17:00.201',NULL),
('1d74560d-e4f3-4b65-ba3a-4576d8117851','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 08:48:19.695','2025-08-12 08:48:19.695','2025-08-12 08:48:19.695','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:40:43.729','2025-08-15 20:59:05.001',NULL),
('1d8e47f4-e0fd-4af2-8943-e062537414d4','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-30 09:21:14.670','2025-09-30 09:21:14.670','2025-09-30 09:21:14.670','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.565','2025-10-25 08:58:43.945',NULL),
('1d98769a-dc73-4d32-a82a-b63f4cb29120','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-24 09:53:14.935','2024-07-24 09:53:14.935','2024-07-24 09:53:14.935','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-24 09:58:21.918','2024-08-07 14:46:25.727',NULL),
('1de7bb4d-6511-497b-ac73-94f7386fd3dc','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-11 13:23:50.086','2025-09-11 13:23:50.086','2025-09-11 13:23:50.086','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.597','2025-10-25 08:58:44.027',NULL),
('1df293b8-08a5-4cf8-bce8-364509576e0c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:44:44.780','2024-06-08 07:44:44.780','2024-06-08 07:44:44.780','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:46:50.278','2024-06-08 07:46:50.278',NULL),
('1dfc3df5-f5c1-43f7-abc8-cfbd56492a4b','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 08:11:42.710','2024-10-30 08:11:42.710','2024-10-30 08:11:42.710','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 08:28:52.316','2024-11-02 09:15:08.248',NULL),
('1e28c337-f62c-4cdc-98a8-a9a229dd8a10','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 07:59:30.485','2024-12-24 07:59:30.485','2024-12-24 07:59:30.485','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.610',NULL),
('1e29be05-e1a7-49ab-bca6-1b932260d899','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-01 08:52:26.120','2025-03-01 08:52:26.120','2025-03-01 08:52:26.120','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.616',NULL),
('1e29d018-01e7-44d6-b467-605e310411aa','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 09:31:39.501','2025-05-08 09:31:39.501','2025-05-08 09:31:39.501','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.577',NULL),
('1e2bbfae-0a28-4c83-92a4-b20101ef17d5','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-13 09:08:11.012','2025-08-13 09:08:11.012','2025-08-13 09:08:11.012','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.216','2025-08-25 12:11:45.770',NULL),
('1e33eef0-917b-4e4e-a814-bfcc8c102bd2','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-21 11:56:31.628','2025-02-21 11:56:31.628','2025-02-21 11:56:31.628','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:21:55.337','2025-03-29 13:37:01.758',NULL),
('1e49f0fe-2053-4310-9967-d0069ed6f7f3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-25 08:56:54.978','2025-09-25 08:56:54.978','2025-09-25 08:56:54.978','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.332','2025-10-04 11:31:40.622',NULL),
('1e575ac6-cbb8-493f-8c6b-06b29e2d395f','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 10:04:52.278','2025-07-02 10:04:52.278','2025-07-02 10:04:52.278','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-17 09:35:48.465','2025-07-17 09:36:36.397',NULL),
('1e61ad35-226b-4f1c-841f-e183666a637b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 09:20:43.011','2025-03-24 09:20:43.011','2025-03-24 09:20:43.011','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.169','2025-07-11 08:00:02.565',NULL),
('1e75dd0c-94f2-4dca-bf00-194fe5a44bda','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-17 10:50:31.504','2025-07-17 10:50:31.504','2025-07-17 10:50:31.504','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:12:50.085','2025-07-29 12:40:29.349',NULL),
('1e7c278d-1131-46ff-9848-07db30254d9d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-15 09:55:38.741','2025-04-15 09:55:38.741','2025-04-15 09:55:38.741','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.445',NULL),
('1e7e6e2f-7a3a-47d2-99ac-98d05007eb6a','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 09:03:41.047','2025-03-20 09:03:41.047','2025-03-20 09:03:41.047','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.050',NULL),
('1e956ba0-1867-4fd3-8413-0f47078eaf87','7f34d75e-284a-42ac-9cbe-a29174748991','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 09:09:06.574','2025-01-03 09:09:06.574','2025-01-03 09:09:06.574','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.558',NULL),
('1e96a345-fef9-4578-b21b-8f2ba0080503','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:53:50.210','2024-05-04 09:53:50.210','2024-05-04 09:53:50.210','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:55:24.853','2024-05-10 07:12:14.649',NULL),
('1ec3bc6e-fe4c-446b-bbde-f86617ef084e','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-10-31 18:25:48.710','2024-10-31 18:25:48.710','2024-10-31 18:25:48.710','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 18:30:24.257','2024-10-31 19:01:36.125','2024-10-31 19:01:36.129'),
('1ec66e26-9c6e-4e58-84ef-ae8e02152004','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 14:23:35.583','2025-06-27 14:23:35.583','2025-06-27 14:23:35.583','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:09:31.429','2025-07-22 07:27:54.572',NULL),
('1ecb5ae7-422d-448f-97d0-9ba1f7bf8921','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-29 10:36:06.466','2024-12-29 10:36:06.466','2024-12-29 10:36:06.466','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.626',NULL),
('1ed00ad0-f32b-4bcc-a91b-a1d1b4f69a52','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 16:51:20.549','2024-12-20 16:51:20.549','2024-12-20 16:51:20.549','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:53:54.323','2024-12-27 12:23:49.409',NULL),
('1ee08a2e-2d72-402b-954e-56175b166c46','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 16:34:01.687','2025-02-04 16:34:01.687','2025-02-04 16:34:01.687','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:22:41.824','2025-02-24 20:28:04.546',NULL),
('1ee79c69-5e86-45ab-bedd-a905b93cc489','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 09:51:51.097','2025-03-25 09:51:51.097','2025-03-25 09:51:51.097','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.407',NULL),
('1f0261e2-6d8b-4d6b-9aaf-ce60b28ac60b','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 10:37:22.056','2025-03-27 10:37:22.056','2025-03-27 10:37:22.056','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:27:22.133','2025-04-15 14:54:58.197',NULL),
('1f1d00a0-5e4f-44c9-8390-f863fa05466d','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 08:17:05.094','2025-05-13 08:17:05.094','2025-05-13 08:17:05.094','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.516','2025-07-01 09:19:38.974',NULL),
('1f443da9-ba0b-4338-b46b-424640d8bb2a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 19:51:46.217','2025-03-09 19:51:46.217','2025-03-09 19:51:46.217','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.042',NULL),
('1f589b4d-309f-4e44-94bb-5f0525f385ab','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 17:04:49.789','2025-06-27 17:04:49.789','2025-06-27 17:04:49.789','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.453','2025-07-01 09:19:39.068',NULL),
('1f6ac6c3-a2fd-4837-aa9a-4cbe27bf961f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:38:58.690','2024-05-10 06:38:58.690','2024-05-10 06:38:58.690','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:41:29.815','2024-05-10 06:41:29.815',NULL),
('1f7368e6-4e70-4ed2-8d06-7a114427daa7','b79c36e4-6b21-42c9-aa7f-8483a465c2f9','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 12:54:34.423','2025-09-16 12:54:34.423','2025-09-16 12:54:34.423','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.363','2025-09-18 15:48:17.478',NULL),
('1fc5ca19-d4a7-40f9-a3be-d347006e8706','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:59:56.665','2024-12-20 12:59:56.665','2024-12-20 12:59:56.665','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.286',NULL),
('1fcf998e-0fb2-4f3b-9ad3-01a89e8fd15f','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-15 14:19:24.429','2025-03-15 14:19:24.429','2025-03-15 14:19:24.429','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.241',NULL),
('1ffaf590-64c0-45c3-9b35-ee67f4e38598','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-25 13:00:20.665','2025-06-25 13:00:20.665','2025-06-25 13:00:20.665','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.426','2025-07-29 12:43:07.428',NULL),
('20022e97-75f7-4cfd-9d17-a6a14995a3b4','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 09:06:52.111','2025-04-28 09:06:52.111','2025-04-28 09:06:52.111','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.355',NULL),
('201b7910-20c8-4c7a-a535-b9a448bd179a','22a1dbd6-475c-4d4b-bb13-f459e3029634','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 13:49:06.481','2024-11-21 13:49:06.481','2024-11-21 13:49:06.481','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 13:50:34.617','2024-12-02 09:51:49.576',NULL),
('20260726-0c62-4af2-81f3-6c6ce653f250','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 11:42:25.424','2025-02-27 11:42:25.424','2025-02-27 11:42:25.424','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:44:26.601','2025-03-21 17:17:30.153',NULL),
('20636183-304e-4456-8d77-30a4fd252722','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-05 11:17:17.084','2025-09-05 11:17:17.084','2025-09-05 11:17:17.084','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.687','2025-10-07 15:17:28.478',NULL),
('206c984a-de8c-40b7-99f1-9c9c16e0ae29','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 07:39:54.668','2025-09-22 07:39:54.668','2025-09-22 07:39:54.668','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.860','2025-10-01 07:56:23.258',NULL),
('20800e9c-e863-495d-ac21-b0f97c5828c9','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 09:10:40.944','2025-03-21 09:10:40.944','2025-03-21 09:10:40.944','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:38:29.860','2025-04-15 14:54:58.269',NULL),
('20b99125-7f86-495e-a648-ecfd78debb0b','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-16 06:54:57.795','2024-12-16 06:54:57.795','2024-12-16 06:54:57.795','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.335',NULL),
('20c02126-10b1-495e-aafc-0fc793e8103a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 11:01:56.801','2025-03-08 11:01:56.801','2025-03-08 11:01:56.801','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:49:23.620','2025-03-29 13:56:05.453',NULL),
('20fb8dfa-5ca6-4cb3-9735-4c7956772c09','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-08 15:37:03.049','2025-10-08 15:37:03.049','2025-10-08 15:37:03.049','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-09 08:36:32.951','2025-10-09 08:39:37.006',NULL),
('210905cb-fc78-47bf-a79a-e8468da70ce9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-21 08:55:41.595','2024-11-21 08:55:41.595','2024-11-21 08:55:41.595','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 09:10:46.535','2024-12-02 09:51:49.568',NULL),
('2110ad38-bfa8-48ab-9126-b417a15b5406','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 13:21:58.986','2025-08-26 13:21:58.986','2025-08-26 13:21:58.986','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.079','2025-09-05 18:38:58.036','2025-09-05 18:38:58.035'),
('211b3086-efca-42ed-aa73-e06eb6c49df3','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 13:32:12.339','2025-02-24 13:32:12.339','2025-02-24 13:32:12.339','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:32:27.236','2025-03-11 07:46:42.052',NULL),
('211d0b81-b5bd-4ae4-bda1-63e5914ed0f0','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 10:14:32.657','2025-10-13 10:14:32.657','2025-10-13 10:14:32.657','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 10:17:43.303','2025-10-13 10:18:17.148',NULL),
('213232d9-b10c-4779-8b75-93784fb5f52d','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 13:56:17.326','2025-07-30 13:56:17.326','2025-07-30 13:56:17.326','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 09:00:56.772','2025-09-03 06:09:36.696',NULL),
('2182f4d6-e8c1-4b48-ad53-a02fed4c2474','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-28 15:25:58.534','2025-05-28 15:25:58.534','2025-05-28 15:25:58.534','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:23:33.681','2025-06-06 02:46:03.875',NULL),
('218d6cd1-bcab-49fe-ab18-e6a1a51ba633','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-20 09:13:56.638','2025-03-20 09:13:56.638','2025-03-20 09:13:56.638','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.532',NULL),
('2191d936-bea9-420e-ba98-d75619b876b2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 14:38:08.974','2025-09-24 14:38:08.974','2025-09-24 14:38:08.974','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.808','2025-10-03 16:08:51.130',NULL),
('21ae998d-c084-44b4-a400-c44faaad9d9c','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-03 08:40:21.194','2025-09-03 08:40:21.194','2025-09-03 08:40:21.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.643','2025-09-10 07:11:56.240',NULL),
('21bacc84-3aba-43e8-9f1a-21639303e802','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-09 03:46:09.600','2025-10-09 03:46:09.600','2025-10-09 03:46:09.600','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.023','2025-10-14 08:52:36.869',NULL),
('21f2938e-e2ef-4b56-a533-56001f4cf270','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-08 09:21:20.021','2025-08-08 09:21:20.021','2025-08-08 09:21:20.021','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.048','2025-09-10 12:48:00.879',NULL),
('2269d464-68c7-4c79-a893-b3823fbf2a33','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-15 08:53:34.011','2025-10-15 08:53:34.011','2025-10-15 08:53:34.011','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.224','2025-10-22 11:29:52.675',NULL),
('227057a5-d11e-4118-8283-58bac859fc8a','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 12:39:03.645','2025-08-01 12:39:03.645','2025-08-01 12:39:03.645','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.880','2025-08-21 08:12:56.938',NULL),
('228d7b5c-4bd4-472d-bedf-d22c5de894a8','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 13:38:09.917','2025-08-11 13:38:09.917','2025-08-11 13:38:09.917','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.785','2025-09-02 14:46:19.261',NULL),
('22b62e05-f566-4e51-9b5b-5b64e71dc88f','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-02 13:41:53.128','2024-12-02 13:41:53.128','2024-12-02 13:41:53.128','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:18:10.956','2024-12-17 19:52:32.930',NULL),
('22badfc0-c79f-4e70-9db9-6293fa482763','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 08:06:35.107','2025-07-18 08:06:35.107','2025-07-18 08:06:35.107','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.918','2025-08-21 08:12:57.002',NULL),
('22c88838-1dc2-4cb4-b87e-30424c3f6612','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 07:35:27.068','2025-08-29 07:35:27.068','2025-08-29 07:35:27.068','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.323','2025-10-02 11:05:59.162',NULL),
('22f02c22-1e4a-4224-848b-069bb48a2748','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:31:48.862','2024-11-12 15:31:48.862','2024-11-12 15:31:48.862','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:33:11.859','2024-11-13 12:13:44.450',NULL),
('23116335-49b1-4c27-9e9f-09513fd6bc3c','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-17 09:09:06.381','2025-09-17 09:09:06.381','2025-09-17 09:09:06.381','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.590','2025-09-24 13:41:15.117',NULL),
('2328addb-6c7e-4289-ba8c-7cbfd58f6416','7c55a7a8-40fe-4ef7-90df-f477ca185e1e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 11:43:57.148','2024-12-20 11:43:57.148','2024-12-20 11:43:57.148','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:46:54.976','2025-01-06 20:08:12.918',NULL),
('232d561f-aaf6-44b2-8f2c-c37a75d13d4f','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 08:51:24.123','2025-09-24 08:51:24.123','2025-09-24 08:51:24.123','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.855','2025-10-03 16:08:51.178',NULL),
('234ad23c-d6cf-4546-810a-3b8210a643aa','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-04 07:12:59.189','2025-09-04 07:12:59.189','2025-09-04 07:12:59.189','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.865','2025-09-19 10:00:25.335',NULL),
('23561a1c-6a58-4c24-91e1-a3335ed69e0f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:09:17.795','2024-03-23 07:09:17.795','2024-03-23 07:09:17.795','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:12:45.296','2024-03-23 09:01:55.184',NULL),
('237ca352-1f71-4f60-840e-1feaa0d329e8','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 13:23:25.852','2025-06-20 13:23:25.852','2025-06-20 13:23:25.852','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.815','2025-07-16 14:21:29.615',NULL),
('238b1100-0c7c-4c9b-82f3-5d77021b12a4','c2d4ce84-536d-4816-837f-7abbf6a7e061','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 11:52:00.248','2024-11-21 11:52:00.248','2024-11-21 11:52:00.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 12:00:02.626','2024-12-02 09:51:49.669',NULL),
('238e599f-fd9f-4b9c-a0b9-c28deffc0901','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-03 07:53:42.593','2025-03-03 07:53:42.593','2025-03-03 07:53:42.593','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.492',NULL),
('23a888ef-6281-415e-b950-e1819ea16a1a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 10:54:16.474','2025-09-24 10:54:16.474','2025-09-24 10:54:16.474','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.596','2025-10-17 10:53:07.528',NULL),
('23aefbe3-4fe0-433a-9039-8093dfff09b6','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 07:02:00.239','2025-09-15 07:02:00.239','2025-09-15 07:02:00.239','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 16:05:55.430','2025-10-03 16:08:51.024',NULL),
('23cd3f63-384f-41c2-b205-ddb9efe12407','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 14:51:01.521','2025-02-07 14:51:01.521','2025-02-07 14:51:01.521','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.276',NULL),
('23d852e3-e62b-4797-9357-cbb6ac05765d','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-29 19:27:25.857','2025-07-29 19:27:25.857','2025-07-29 19:27:25.857','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.157','2025-08-14 08:02:29.797',NULL),
('24030227-0664-45d4-90e1-5cba46654c14','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-03 17:52:14.841','2025-02-03 17:52:14.841','2025-02-03 17:52:14.841','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.544',NULL),
('2438c6b7-ffea-4550-b50d-634b9354bace','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 12:07:31.674','2025-05-07 12:07:31.674','2025-05-07 12:07:31.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.555',NULL),
('24433aaa-153a-41bb-8b5e-d49f524ecaf2','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:22:10.181','2025-06-11 20:22:10.181','2025-06-11 20:22:10.181','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.214','2025-07-16 14:29:34.156',NULL),
('246d7102-37b5-41b9-970d-cb249254bae6','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 08:06:42.636','2025-08-18 08:06:42.636','2025-08-18 08:06:42.636','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.825','2025-09-19 10:00:25.290',NULL),
('24889804-3c49-4250-8a4d-d7124139681b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 13:03:15.607','2025-06-25 13:03:15.607','2025-06-25 13:03:15.607','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.934','2025-07-22 16:18:49.589',NULL),
('24900fbc-d779-4ef6-b725-19ed9a7ff679','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-02 09:02:49.738','2025-05-02 09:02:49.738','2025-05-02 09:02:49.738','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.865',NULL),
('24ab63ca-5298-4004-b087-351be5da33e2','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-17 12:11:53.203','2025-07-17 12:11:53.203','2025-07-17 12:11:53.203','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.943','2025-07-22 16:18:49.633',NULL),
('24b6dc81-23c9-4823-a9c7-cfdb34add1b4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:29:40.505','2024-09-28 15:29:40.505','2024-09-28 15:29:40.505','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:31:40.530','2024-09-28 15:31:40.530',NULL),
('24b8909e-2de6-4bd0-99d8-d5c97f20b565','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-07 11:11:07.330','2024-10-07 11:11:07.330','2024-10-07 11:11:07.330','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 11:17:26.468','2024-10-23 14:59:13.920',NULL),
('24e5cce2-e57b-4bbe-8433-a2469de2badf','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:21:55.187','2024-07-20 10:21:55.187','2024-07-20 10:21:55.187','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:23:45.522','2024-07-20 10:23:45.522',NULL),
('24e9e168-e0b0-4142-838d-f0314d1ff48a','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 11:03:35.071','2024-11-21 11:03:35.071','2024-11-21 11:03:35.071','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 11:25:14.066','2024-12-02 09:51:49.682',NULL),
('24f92d07-13ac-4639-8a08-07d3dfc17840','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 09:40:40.050','2025-01-15 09:40:40.050','2025-01-15 09:40:40.050','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.633',NULL),
('250798c7-50f4-4a79-aa7b-22151332e974','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-15 13:52:42.549','2024-05-15 13:52:42.549','2024-05-15 13:52:42.549','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-15 13:57:09.613','2024-05-23 07:24:34.068',NULL),
('25113ccb-6f71-4766-a08f-4f31a8d8608c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-04 07:53:17.051','2025-07-04 07:53:17.051','2025-07-04 07:53:17.051','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-07 14:20:25.191','2025-07-08 11:33:15.169',NULL),
('25326b64-e5b9-420c-9da3-9e5d9f270b57','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-16 06:48:45.452','2024-12-16 06:48:45.452','2024-12-16 06:48:45.452','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.271',NULL),
('253b4ee0-5c69-4fad-a654-ef8e4fc34ff6','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 19:23:03.287','2025-03-25 19:23:03.287','2025-03-25 19:23:03.287','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.727',NULL),
('25433a2c-a3a2-44e8-80a1-70883a498e24','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 14:16:14.921','2024-12-13 14:16:14.921','2024-12-13 14:16:14.921','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.458',NULL),
('2550a3e6-3fed-4129-936b-7685ad66a6cf','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-23 14:44:43.926','2025-06-23 14:44:43.926','2025-06-23 14:44:43.926','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.798','2025-07-16 14:21:29.687',NULL),
('255392aa-38f9-4bbf-8310-a18d08984f34','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-25 10:48:22.166','2025-05-25 10:48:22.166','2025-05-25 10:48:22.166','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:52:43.535','2025-05-26 15:17:09.427',NULL),
('256dfe29-4dbf-4e7a-a927-4e1839062b01','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 12:00:23.780','2024-07-02 12:00:23.780','2024-07-02 12:00:23.780','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 12:01:25.606','2024-07-02 12:01:25.606',NULL),
('2575ee59-db9c-4779-9897-d459576c9bd5','0279a6d3-79de-4470-9728-f1654e3ba0b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:34:47.672','2024-09-05 15:34:47.672','2024-09-05 15:34:47.672','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:42:48.330','2024-09-05 16:34:54.512',NULL),
('257cd7ec-eba2-4d60-b778-eac284d91e53','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 07:54:25.842','2025-08-06 07:54:25.842','2025-08-06 07:54:25.842','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.794','2025-08-18 07:14:34.889',NULL),
('258ba511-7bf2-488b-a9c5-dbbfd9404a56','c2d4ce84-536d-4816-837f-7abbf6a7e061','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-15 07:41:26.622','2025-04-15 07:41:26.622','2025-04-15 07:41:26.622','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.578',NULL),
('25a27eb8-aaf9-49a6-a08e-a3c9d410386b','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-16 13:05:12.145','2024-10-16 13:05:12.145','2024-10-16 13:05:12.145','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-16 13:13:23.690','2024-10-17 12:52:50.277',NULL),
('25ce3f79-f985-42cd-8334-968a9f362a8c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:50:41.681','2024-10-23 08:50:41.681','2024-10-23 08:50:41.681','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 08:52:43.571','2024-10-23 10:17:34.600',NULL),
('25d6452d-d62b-4459-b7ff-ae4eb120d944','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 07:01:42.863','2024-03-16 07:01:42.863','2024-03-16 07:01:42.863','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 07:04:59.858','2024-03-16 07:04:59.858',NULL),
('25e1569b-041d-4fa6-bd7c-93db0fcc5b5f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:59:49.760','2024-08-31 12:59:49.760','2024-08-31 12:59:49.760','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 13:01:43.726','2024-08-31 13:01:43.726',NULL),
('25f96937-73eb-420e-9765-5ae762ee5355','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-06 09:04:00.742','2024-09-06 09:04:00.742','2024-09-06 09:04:00.742','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-06 09:17:05.583','2024-09-28 16:14:39.822',NULL),
('2601971a-f07f-4925-9ede-9086e271de87','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 11:55:10.700','2025-09-09 11:55:10.700','2025-09-09 11:55:10.700','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.315','2025-09-12 17:16:02.584',NULL),
('2623ffa9-b82a-4e1e-9b8c-be42a2d2f8bc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:54:02.268','2024-09-27 11:54:02.268','2024-09-27 11:54:02.268','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:55:46.238','2024-09-27 14:01:58.955',NULL),
('262f27ab-f8d8-4621-b731-2f4449db481b','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 09:26:44.694','2025-03-06 09:26:44.694','2025-03-06 09:26:44.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:24:00.109','2025-03-12 19:01:22.546',NULL),
('264389cf-0969-411d-a45c-bc272669461a','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-15 17:06:23.318','2025-04-15 17:06:23.318','2025-04-15 17:06:23.318','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.555',NULL),
('2644d8fd-6574-4dd2-9b60-df25fb0936e2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 12:10:02.190','2025-03-04 12:10:02.190','2025-03-04 12:10:02.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:17:40.312','2025-03-06 10:36:11.628',NULL),
('264cb40d-7686-414e-b7d7-66cf93edbd1a','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-02-27 09:50:10.199','2025-02-27 09:50:10.199','2025-02-27 09:50:10.199','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.466',NULL),
('267be4fa-308c-4cce-995d-b251dfd33c41','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 15:15:11.358','2025-02-13 15:15:11.358','2025-02-13 15:15:11.358','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.603',NULL),
('267f10f2-9bfc-4657-812f-21383c357281','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-04 14:30:59.051','2025-08-04 14:30:59.051','2025-08-04 14:30:59.051','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.192','2025-08-12 08:07:30.310',NULL),
('26961fe7-c038-4412-8ff2-9fcfa5824008','cc831224-5440-4e53-b6db-4965adaf2533','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 08:14:37.674','2025-10-07 08:14:37.674','2025-10-07 08:14:37.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.546','2025-10-07 15:17:28.552',NULL),
('26a9f939-8c79-4c26-84b3-beb9badf8565','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-16 09:13:50.480','2025-06-16 09:13:50.480','2025-06-16 09:13:50.480','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:29:58.548','2025-07-07 11:44:52.829',NULL),
('26b680e1-5261-4adf-9bc5-d30f4d1b94bd','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:56:42.838','2024-09-05 15:56:42.838','2024-09-05 15:56:42.838','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:58:16.999','2024-09-05 16:33:07.722',NULL),
('26c85ecf-beb5-4771-b5a2-c0275efad834','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-20 13:47:46.485','2025-01-20 13:47:46.485','2025-01-20 13:47:46.485','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:31:57.984','2025-02-27 13:37:30.551',NULL),
('26dc6111-aec3-4d0c-a9d7-2d0d03e50917','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 12:56:31.961','2025-03-21 12:56:31.961','2025-03-21 12:56:31.961','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:18:50.008','2025-04-02 18:57:11.036',NULL),
('26f24b08-095a-4867-b713-061a7ffb5ea9','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 13:01:30.838','2025-09-17 13:01:30.838','2025-09-17 13:01:30.838','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.553','2025-10-07 15:17:28.431',NULL),
('270f2319-c08d-4e7f-9b1e-7008377f2eec','3f47b50a-127d-4de1-88d7-b9c7ec06ab2b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 14:22:18.664','2024-10-30 14:22:18.664','2024-10-30 14:22:18.664','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 14:24:55.521','2024-11-02 09:30:11.163',NULL),
('272eec40-a8de-4272-8849-7481f753b1ee','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-23 07:17:28.201','2025-08-23 07:17:28.201','2025-08-23 07:17:28.201','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.118','2025-09-10 12:48:00.866',NULL),
('273244ed-4789-4f0a-b242-7fed6b5f0a6e','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:55:54.214','2024-09-27 11:55:54.214','2024-09-27 11:55:54.214','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:03:53.611','2024-09-27 12:03:53.611',NULL),
('27326c78-c9ec-4f92-b1c7-3b5f2d15a804','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 09:27:33.762','2025-10-01 09:27:33.762','2025-10-01 09:27:33.762','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.015','2025-10-14 08:52:36.862',NULL),
('27695bfd-c3a0-4b0a-9558-de8359c743d0','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 13:07:06.507','2024-09-09 13:07:06.507','2024-09-09 13:07:06.507','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 13:08:23.440','2024-09-12 12:51:39.932',NULL),
('2775f7db-fa28-4576-8e4a-a75f4536bc29','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 08:50:21.384','2025-07-24 08:50:21.384','2025-07-24 08:50:21.384','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:46:42.687','2025-08-14 08:02:29.724',NULL),
('27967847-5330-41c9-86cc-d7e7c757b77c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-22 16:04:18.408','2024-11-22 16:04:18.408','2024-11-22 16:04:18.408','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-22 16:05:41.942','2024-12-02 09:51:49.645',NULL),
('279c63cd-3c8f-4d65-913b-e863ceeec0c6','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:31:13.271','2024-11-15 16:31:13.271','2024-11-15 16:31:13.271','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:32:52.065','2024-11-15 16:32:52.065',NULL),
('27ee018c-3f7c-4b6b-b4c1-efabb0390aa9','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:18:16.325','2024-11-02 08:18:16.325','2024-11-02 08:18:16.325','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:19:17.853','2024-11-12 17:25:00.350',NULL),
('27f72bcb-ad5c-44ef-bb59-2cd5b841fd8d','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 12:41:53.860','2025-09-17 12:41:53.860','2025-09-17 12:41:53.860','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.570','2025-10-07 15:17:28.532',NULL),
('28049234-7d9e-4ab9-b03c-ee3075ea270b','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:42:50.072','2024-07-20 10:42:50.072','2024-07-20 10:42:50.072','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:46:25.543','2024-07-20 10:46:25.543',NULL),
('280ddf3e-2e6c-462d-93ec-2dc7b1693f14','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 10:00:08.435','2025-02-07 10:00:08.435','2025-02-07 10:00:08.435','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:56:21.714','2025-02-20 12:40:28.834',NULL),
('28147549-3621-4698-b320-7bfef7103946','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:24:36.934','2025-01-04 23:24:36.934','2025-01-04 23:24:36.934','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.607',NULL),
('2814e4e4-2c8e-4b87-a2b4-24407ee4c201','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 06:46:02.804','2025-04-24 06:46:02.804','2025-04-24 06:46:02.804','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.583',NULL),
('2849536d-2ff8-4c26-abd7-2e0732b0ea30','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 21:45:09.370','2025-09-16 21:45:09.370','2025-09-16 21:45:09.370','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.830','2025-10-03 16:08:51.151',NULL),
('2857eaca-113b-48ac-8fcb-47452e1c665e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-10 18:23:18.315','2024-11-10 18:23:18.315','2024-11-10 18:23:18.315','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-10 18:26:28.862','2024-12-09 08:24:38.664',NULL),
('28a7a939-e866-4710-8736-7f01f9192ceb','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:25:37.897','2025-02-12 13:25:37.897','2025-02-12 13:25:37.897','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.648',NULL),
('28b33b50-76a5-4d1c-983b-42544d44593d','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-06 10:51:20.998','2024-11-06 10:51:20.998','2024-11-06 10:51:20.998','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:53:13.958','2024-12-09 17:29:20.189',NULL),
('2905d4f1-8500-40a0-95a2-29005f790747','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-23 07:22:06.970','2024-05-23 07:22:06.970','2024-05-23 07:22:06.970','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-23 07:23:44.141','2024-05-23 07:23:44.141',NULL),
('290902a4-ba5b-4c6f-9013-ac202e54f326','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-08 08:13:15.103','2025-08-08 08:13:15.103','2025-08-08 08:13:15.103','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.951','2025-10-14 08:52:36.795',NULL),
('292b71e1-308c-4bb4-b473-744262b14c85','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:14:15.518','2025-04-09 08:14:15.518','2025-04-09 08:14:15.518','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.395',NULL),
('294df3c4-d48e-4580-a86e-baff94868044','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:52:09.570','2025-03-17 11:52:09.570','2025-03-17 11:52:09.570','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:21:55.337','2025-03-29 13:37:01.865',NULL),
('29689534-809f-4718-b01e-1ec974e025b4','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-20 11:06:36.635','2025-08-20 11:06:36.635','2025-08-20 11:06:36.635','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.873','2025-08-21 08:12:57.026',NULL),
('297d7c0f-847c-4b25-9e59-41880723b714','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-04 12:50:48.532','2025-08-04 12:50:48.532','2025-08-04 12:50:48.532','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.540','2025-09-26 12:27:42.423',NULL),
('29b0f07e-2992-4ab9-a5bc-63c5ee15cab2','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 08:18:53.906','2024-09-16 08:18:53.906','2024-09-16 08:18:53.906','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 08:20:13.431','2024-09-27 13:51:14.352',NULL),
('2a003556-cdbc-43d6-98bc-7bf40341be05','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-30 09:35:42.968','2025-08-30 09:35:42.968','2025-08-30 09:35:42.968','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.842','2025-10-03 16:08:51.164',NULL),
('2a5771c3-f0fa-4e82-8e68-ceb1fa793926','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 08:39:55.134','2024-05-29 08:39:55.134','2024-05-29 08:39:55.134','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 08:42:56.043','2024-05-29 08:42:56.043',NULL),
('2a605cca-d632-4751-ab8f-48f2db097fe7','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 13:10:31.997','2024-10-09 13:10:31.997','2024-10-09 13:10:31.997','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 13:19:00.789','2024-10-11 15:09:10.254',NULL),
('2a8e02dc-7f7d-4224-90d9-8bc5a8600550','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-14 16:20:43.185','2025-09-14 16:20:43.185','2025-09-14 16:20:43.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.525','2025-10-25 08:58:44.015',NULL),
('2a95996a-7810-4012-a068-9ab37265fb5e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 09:30:29.434','2025-03-06 09:30:29.434','2025-03-06 09:30:29.434','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.291',NULL),
('2abbc409-570b-45e1-a0c0-ff22b323636f','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-15 08:20:52.660','2025-07-15 08:20:52.660','2025-07-15 08:20:52.660','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.874','2025-07-22 16:18:49.666',NULL),
('2acce89d-1f85-4ae5-80cb-fab015a1f336','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 10:45:56.728','2025-08-05 10:45:56.728','2025-08-05 10:45:56.728','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.809','2025-08-18 08:18:50.073',NULL),
('2ad6aa4a-b640-44a3-a345-098884f1ce51','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:16:21.848','2024-08-07 14:16:21.848','2024-08-07 14:16:21.848','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:18:59.577','2024-08-08 09:26:12.516','2024-08-08 09:26:12.524'),
('2ae3a97a-0cbb-468d-8096-69e6e37ec1a0','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 21:14:27.710','2025-04-25 21:14:27.710','2025-04-25 21:14:27.710','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.088',NULL),
('2ae96b3c-6e07-4f30-b8ed-49420ca56c82','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-29 16:02:31.523','2025-05-29 16:02:31.523','2025-05-29 16:02:31.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:34:37.144','2025-07-07 11:44:52.682',NULL),
('2b0b4cf6-c4a0-4b12-a4b4-fc37f9753d89','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 17:55:54.609','2024-11-08 17:55:54.609','2024-11-08 17:55:54.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 17:56:40.530','2024-11-08 18:06:57.340',NULL),
('2b4f2e72-9303-4378-afad-f9887acd81fb','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:49:07.919','2024-05-10 06:49:07.919','2024-05-10 06:49:07.919','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:52:29.975','2024-05-11 08:08:16.867',NULL),
('2b6190e8-248a-45ec-b3f6-7c9fe5488705','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:20:55.000','2025-02-12 13:20:55.000','2025-02-12 13:20:55.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:45:33.845','2025-03-21 17:17:30.184',NULL),
('2b696186-0638-4ad9-a6b4-ba3e3dac534d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-22 08:21:17.762','2025-09-22 08:21:17.762','2025-09-22 08:21:17.762','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.549','2025-09-24 13:41:15.069',NULL),
('2b924b7a-0f54-4883-86f5-6f9d981e3a54','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 07:03:33.674','2025-09-15 07:03:33.674','2025-09-15 07:03:33.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.457','2025-09-26 12:27:42.393',NULL),
('2bc0822a-0dd7-4b47-bf95-cb8dd3c16969','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-19 10:36:35.865','2024-08-19 10:36:35.865','2024-08-19 10:36:35.865','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-19 11:34:25.883','2024-08-23 09:02:49.090',NULL),
('2c0cf482-909e-4479-a72c-fc4bda5b5327','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-21 09:06:07.336','2025-10-21 09:06:07.336','2025-10-21 09:06:07.336','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.171','2025-10-22 13:03:09.905',NULL),
('2c580659-cb63-442f-85e2-6c038975bc5a','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-12 06:35:37.032','2025-09-12 06:35:37.032','2025-09-12 06:35:37.032','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.562','2025-09-24 13:41:15.089',NULL),
('2c670f07-5a7b-4098-a448-5e3d8cea5c99','f91bb148-259f-42bb-9f08-b97a4cd49dbc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-18 10:59:24.685','2024-12-18 10:59:24.685','2024-12-18 10:59:24.685','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.265',NULL),
('2cbd9037-1e1f-4177-b593-e81c0ea9f17f','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:46:56.072','2024-09-05 15:46:56.072','2024-09-05 15:46:56.072','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:49:05.770','2024-09-05 16:37:55.198',NULL),
('2cce3032-bf4c-48b4-b8b1-d881872bd117','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:38:23.905','2024-04-07 20:38:23.905','2024-04-07 20:38:23.905','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:40:25.407','2024-04-07 20:40:25.407',NULL),
('2cd297e1-ceb3-4acd-a21b-2628d633166d','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 08:03:38.996','2025-03-25 08:03:38.996','2025-03-25 08:03:38.996','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:02:20.217','2025-03-29 13:37:01.827',NULL),
('2d10884d-f8f4-4033-94df-46afd67c9d62','31ccd2de-c68e-405f-adee-14ff1a7a1869','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 07:49:02.983','2025-10-02 07:49:02.983','2025-10-02 07:49:02.983','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.483','2025-10-21 14:19:09.844',NULL),
('2d13c71f-3f6e-498a-b02d-444e94342c3f','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 07:07:27.264','2025-09-22 07:07:27.264','2025-09-22 07:07:27.264','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.737','2025-10-03 16:08:51.055',NULL),
('2d902e3d-bcfe-4288-aad0-c27403a0f3d9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-16 11:39:18.799','2025-01-16 11:39:18.799','2025-01-16 11:39:18.799','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:48:36.714','2025-01-22 09:40:15.575',NULL),
('2dc2c630-763e-4859-a7e1-b8c24353d0d8','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-20 06:24:33.117','2025-05-20 06:24:33.117','2025-05-20 06:24:33.117','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:21:46.729','2025-06-06 02:46:03.924',NULL),
('2dd29d7f-b102-48cc-aec7-2942bdf05d99','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 13:47:55.306','2024-11-23 13:47:55.306','2024-11-23 13:47:55.306','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 14:05:31.898','2024-12-02 09:51:49.661',NULL),
('2dedfc4e-7fef-4c3f-832f-38c4bc44af91','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','89428e9c-4d02-45c3-a044-0b2a5ac2465d','2024-11-21 21:38:45.569','2024-11-21 21:38:45.569','2024-11-21 21:38:45.569','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 21:43:48.095','2024-12-02 09:51:49.592',NULL),
('2e34efc0-45a9-491d-bc9a-ab83a5bd2abc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 09:09:55.322','2025-01-03 09:09:55.322','2025-01-03 09:09:55.322','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:11:43.420','2025-01-05 14:06:53.500',NULL),
('2e5742a4-7c79-4018-9098-aa6c20bef122','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-16 07:01:36.386','2025-05-16 07:01:36.386','2025-05-16 07:01:36.386','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.601',NULL),
('2e9334d8-b01f-4fe6-b6e9-43f4dbbf42c1','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-18 07:30:03.905','2025-04-18 07:30:03.905','2025-04-18 07:30:03.905','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.021',NULL),
('2ed16491-58fe-428f-a2b8-169c1c1e4c09','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 09:58:13.627','2025-02-07 09:58:13.627','2025-02-07 09:58:13.627','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:56:21.714','2025-02-20 12:40:28.853',NULL),
('2edf2835-cb50-4e95-be59-e534e96b58c1','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:18:04.783','2025-04-17 15:18:04.783','2025-04-17 15:18:04.783','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.907',NULL),
('2eebe5b2-ccad-423b-a478-411e05d9f3b0','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-06 08:30:43.243','2025-08-06 08:30:43.243','2025-08-06 08:30:43.243','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.126','2025-09-06 09:41:31.846',NULL),
('2f32040b-30c2-45db-b1e9-d74eeced1bb4','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-07 11:44:12.440','2024-10-07 11:44:12.440','2024-10-07 11:44:12.440','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 11:45:40.884','2024-10-12 11:16:40.549',NULL),
('2fafafd2-7aa2-4f32-a102-118106732775','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:03:30.119','2024-10-02 09:03:30.119','2024-10-02 09:03:30.119','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:04:18.517','2024-10-02 09:55:18.778',NULL),
('2febf2be-c2c5-4679-be3b-8bb3d5e84c3e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:52:47.869','2024-10-23 08:52:47.869','2024-10-23 08:52:47.869','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 08:54:45.029','2024-10-23 10:17:23.315',NULL),
('301dc9af-4bba-45c8-a619-0345a9445404','d50fb551-10f1-4b7c-b65d-6eb4bef94704','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-10 14:16:43.601','2025-08-10 14:16:43.601','2025-08-10 14:16:43.601','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:45:43.665','2025-09-05 08:55:11.206',NULL),
('302046c9-c5a3-4513-ad5c-80d035aebedf','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 20:14:57.951','2025-04-22 20:14:57.951','2025-04-22 20:14:57.951','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.362',NULL),
('30380a66-ebb1-4313-90c1-bee82b8d3020','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-08 08:49:50.309','2024-04-08 08:49:50.309','2024-04-08 08:49:50.309','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-08 08:55:58.494','2024-04-08 08:55:58.494',NULL),
('3073c380-1997-4ecf-a834-95393a3a9b94','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 08:50:01.057','2025-05-14 08:50:01.057','2025-05-14 08:50:01.057','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.516',NULL),
('30bf9ffe-a2e5-43c7-a63d-b79e7716f501','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 08:02:43.360','2025-08-11 08:02:43.360','2025-08-11 08:02:43.360','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.780','2025-08-18 08:21:25.705',NULL),
('30d34d28-2337-423e-bf36-34358ad0f17e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:13:02.218','2024-10-02 09:13:02.218','2024-10-02 09:13:02.218','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:15:30.877','2024-10-02 09:15:30.877',NULL),
('3103d5e3-45f0-45f0-bee8-4657a1b2648a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-30 13:30:27.274','2025-05-30 13:30:27.274','2025-05-30 13:30:27.274','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-26 10:30:49.496','2025-07-01 09:19:38.933',NULL),
('311d1173-593e-4b3f-9dcf-4f1f8b4eab7d','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-08 14:22:28.810','2025-05-08 14:22:28.810','2025-05-08 14:22:28.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:35:45.707','2025-05-26 13:23:22.592',NULL),
('31326636-b7db-49bf-96f2-dac71d4f24a3','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 15:07:38.348','2025-01-19 15:07:38.348','2025-01-19 15:07:38.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.594',NULL),
('3134d597-d8f9-4482-8d84-50c0a9d0d88a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:47:09.690','2024-05-04 07:47:09.690','2024-05-04 07:47:09.690','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:48:57.347','2024-05-04 07:48:57.347',NULL),
('3138116b-d09c-491a-845d-bfe20be1c242','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:34:28.486','2024-09-27 11:34:28.486','2024-09-27 11:34:28.486','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:39:48.680','2024-09-27 11:39:48.680',NULL),
('316aab60-e7b7-4fa4-8dae-83eceffa98b3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:46:47.823','2024-06-08 07:46:47.823','2024-06-08 07:46:47.823','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:49:08.816','2024-06-08 07:49:08.816',NULL),
('318ab195-fe50-462d-a66b-571140953b1f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:44:48.339','2024-05-04 07:44:48.339','2024-05-04 07:44:48.339','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:46:46.327','2024-05-04 07:46:46.327',NULL),
('31a55cd5-bb6c-4db1-b23e-728e191adca7','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:47:54.118','2024-12-17 14:47:54.118','2024-12-17 14:47:54.118','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:27:59.902','2025-01-11 10:16:46.048',NULL),
('31b266e5-15a4-43a2-bb26-81e645aea8b3','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 12:02:10.367','2025-04-24 12:02:10.367','2025-04-24 12:02:10.367','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.570',NULL),
('31c2020b-4a63-4d44-9ba4-29f11e5e99b0','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 08:42:49.041','2025-08-11 08:42:49.041','2025-08-11 08:42:49.041','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.112','2025-09-10 12:48:00.777',NULL),
('31c4b552-5b84-49ce-94e6-13402e0c2bf0','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 08:40:44.803','2025-07-09 08:40:44.803','2025-07-09 08:40:44.803','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.148','2025-07-11 08:00:02.536',NULL),
('31e2a73e-5cae-4fdd-a448-ab0b6ddfd2a9','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-11 07:32:12.628','2025-09-11 07:32:12.628','2025-09-11 07:32:12.628','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-19 09:58:51.980','2025-09-19 10:00:25.379',NULL),
('31f73a23-d473-409b-9242-adc23ac1272b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 08:42:27.074','2025-03-09 08:42:27.074','2025-03-09 08:42:27.074','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-03-29 13:37:01.845',NULL),
('3201bae2-772a-433e-a0aa-fac59ad8d3f0','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:57:37.605','2024-05-29 09:57:37.605','2024-05-29 09:57:37.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 10:01:55.073','2024-05-29 10:01:55.073',NULL),
('3213e065-f201-4550-adb4-bfc465bbc119','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 12:41:55.709','2025-09-29 12:41:55.709','2025-09-29 12:41:55.709','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.668','2025-10-07 15:17:28.519',NULL),
('32343087-5632-4e89-b544-db99ffb7b44d','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-30 17:18:10.630','2025-06-30 17:18:10.630','2025-06-30 17:18:10.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:29:58.540','2025-07-07 11:44:52.814',NULL),
('324d1fcd-64b4-4f6e-826d-a97c1dc4fdbc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 09:27:35.126','2024-03-12 09:27:35.126','2024-03-12 09:27:35.126','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 09:31:12.315','2024-03-12 09:31:12.315',NULL),
('324e9aa9-3f32-478b-8757-9795783c3f79','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-07 13:31:28.090','2024-11-07 13:31:28.090','2024-11-07 13:31:28.090','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-07 13:35:53.885','2024-11-07 13:54:05.726','2024-11-07 13:54:05.730'),
('325b6ee5-6b77-44fc-bea9-b6d8c6314dd7','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 15:02:30.453','2025-02-07 15:02:30.453','2025-02-07 15:02:30.453','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.261',NULL),
('32700228-235c-47d3-b09b-0ce48e865a4c','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:04:27.248','2025-04-24 08:04:27.248','2025-04-24 08:04:27.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.488',NULL),
('3270bf67-2190-49f0-bf6a-f9bbad1d84c9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 12:47:28.095','2024-09-09 12:47:28.095','2024-09-09 12:47:28.095','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 12:49:24.696','2024-09-09 13:33:46.854',NULL),
('32797cd6-b87a-4ece-84cc-b57572469708','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:55:35.178','2024-05-04 09:55:35.178','2024-05-04 09:55:35.178','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:57:08.619','2024-05-10 07:11:14.748',NULL),
('328dfaaa-9465-40e1-a0f8-ccaf1b52a73f','4126da30-ba9b-41b7-be29-865069aa484c','d03032cd-3542-403b-975d-f781dffab494','2024-10-07 19:03:39.110','2024-10-07 19:03:39.110','2024-10-07 19:03:39.110','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 19:04:03.232','2024-10-25 09:21:27.663','2024-10-25 09:21:27.665'),
('3290a525-c928-4786-bd3b-b3845f1e9425','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 08:17:55.228','2025-07-23 08:17:55.228','2025-07-23 08:17:55.228','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.886','2025-08-21 08:12:56.952',NULL),
('3297c5f5-b636-45f7-9647-c27ab600d460','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:33:10.428','2024-12-17 14:33:10.428','2024-12-17 14:33:10.428','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:14:04.004','2025-01-11 10:16:46.015',NULL),
('329ae411-6b5c-4635-89c7-fa2e54bf4179','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-26 11:10:36.355','2025-08-26 11:10:36.355','2025-08-26 11:10:36.355','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.791','2025-09-02 14:46:19.267',NULL),
('32a8fb4b-920e-4a3f-b905-24836c3a8d50','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 11:27:46.850','2025-08-12 11:27:46.850','2025-08-12 11:27:46.850','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-24 10:58:40.903','2025-09-24 13:41:15.076',NULL),
('32a9a3b8-2f00-444f-aace-74397adb1ba0','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-20 16:06:19.222','2025-10-20 16:06:19.222','2025-10-20 16:06:19.222','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.207','2025-10-22 11:29:52.749',NULL),
('32c4f54b-5e8e-4826-8be3-c5edc59674c1','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 08:15:16.404','2025-05-13 08:15:16.404','2025-05-13 08:15:16.404','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.786',NULL),
('32d39977-60c9-4a39-9e1a-80a42255c476','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:19:23.261','2024-08-07 14:19:23.261','2024-08-07 14:19:23.261','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:22:52.395','2024-08-07 14:22:52.395',NULL),
('33079d60-1a7a-43a6-91d4-5a8e54d781b4','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-27 13:23:24.022','2025-01-27 13:23:24.022','2025-01-27 13:23:24.022','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.845',NULL),
('3357c0ce-97d5-4070-ab76-618f8b681d20','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-22 06:41:56.810','2025-07-22 06:41:56.810','2025-07-22 06:41:56.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.468','2025-07-29 12:37:20.432',NULL),
('33601d6d-91da-4a92-9183-c19fc63d9bad','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-27 07:30:12.481','2024-11-27 07:30:12.481','2024-11-27 07:30:12.481','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-27 07:31:41.783','2024-12-09 17:29:20.163',NULL),
('3399884f-a4a3-4645-ad37-3f56907bc179','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 08:08:26.915','2025-07-30 08:08:26.915','2025-07-30 08:08:26.915','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.164','2025-08-25 12:31:31.400',NULL),
('339bc130-f570-4a5a-a49b-255c6d395090','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 09:54:07.839','2025-04-21 09:54:07.839','2025-04-21 09:54:07.839','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.709',NULL),
('339de793-b401-418f-8681-b67de91964d8','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 15:48:10.828','2025-04-09 15:48:10.828','2025-04-09 15:48:10.828','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.538',NULL),
('33c25a88-9707-4490-8a89-b158136d2798','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:55:42.338','2024-04-07 20:55:42.338','2024-04-07 20:55:42.338','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:59:27.472','2024-04-07 20:59:27.472',NULL),
('33c3e18d-4a94-46e9-b117-40efe1bdc6e6','1a1f8406-8725-4744-9eab-26d8b900d3c1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 15:54:20.456','2025-02-18 15:54:20.456','2025-02-18 15:54:20.456','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:05:56.998','2025-02-27 13:37:30.614',NULL),
('33c7b3ae-5311-4f58-b112-2a2cb686b080','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-24 10:04:44.240','2024-07-24 10:04:44.240','2024-07-24 10:04:44.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-24 10:06:54.268','2024-09-05 09:27:53.742',NULL),
('33fb69f4-a550-4eb9-8de5-ff062e3f22a0','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-10 09:17:35.569','2025-04-10 09:17:35.569','2025-04-10 09:17:35.569','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.461',NULL),
('340a99cb-ba6d-4f3b-a89a-edf2ed63a1e9','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-04 15:44:06.425','2024-12-04 15:44:06.425','2024-12-04 15:44:06.425','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:16:19.811','2024-12-16 18:41:52.616',NULL),
('34179586-f1c2-4f8a-8814-7b4081e32e94','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 14:02:15.590','2025-09-18 14:02:15.590','2025-09-18 14:02:15.590','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.510','2025-09-26 12:27:42.327',NULL),
('342599cb-07a3-4001-bc1b-f7fe69a1576e','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-02 07:06:44.163','2024-12-02 07:06:44.163','2024-12-02 07:06:44.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:50:13.401','2025-02-11 17:09:06.660',NULL),
('3474da1f-428e-4c8c-b4c9-81fb79c29691','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-02 10:50:58.544','2025-09-02 10:50:58.544','2025-09-02 10:50:58.544','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.799','2025-09-02 14:46:19.274',NULL),
('348a4fca-ad42-49e7-b985-f11b6bf9be37','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 06:48:58.488','2024-03-16 06:48:58.488','2024-03-16 06:48:58.488','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 06:53:00.564','2024-03-16 06:53:00.564',NULL),
('348b31c8-6de2-44b0-9580-324b21f66689','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 06:25:24.235','2025-10-10 06:25:24.235','2025-10-10 06:25:24.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.386','2025-10-25 08:58:43.989',NULL),
('348b331b-e191-480a-9d2f-33360dc629da','d1ba1223-4475-415e-b63f-154a9404e56e','769f3044-7b21-4f0b-9fb6-6c8f6900dfd8','2024-11-14 11:14:19.674','2024-11-14 11:14:19.674','2024-11-14 11:14:19.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 11:19:58.596','2024-12-09 08:24:38.658',NULL),
('349adb35-c8d8-43f9-82e1-9fd9f5e8caa3','d100cd88-31b8-4788-8c56-3df2fd4058aa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 09:51:15.606','2025-02-24 09:51:15.606','2025-02-24 09:51:15.606','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:42:17.878','2025-03-21 17:17:30.116',NULL),
('34c9aea3-153a-4d84-ada3-4e0c604269a1','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 10:48:32.388','2024-09-24 10:48:32.388','2024-09-24 10:48:32.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 11:01:18.591','2024-09-27 13:48:48.700',NULL),
('34d5146d-e562-4ea6-8c87-b2191da54a30','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:31:25.253','2025-07-01 10:31:25.253','2025-07-01 10:31:25.253','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.208','2025-07-16 14:29:34.142',NULL),
('3500aef1-cc92-4ed4-a384-f77d3ae3258c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 08:10:13.268','2025-01-29 08:10:13.268','2025-01-29 08:10:13.268','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.576',NULL),
('353c8136-7eb9-4af5-840f-c55a17cfb270','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 09:12:07.014','2025-05-07 09:12:07.014','2025-05-07 09:12:07.014','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.474',NULL),
('354b6728-f8d2-4268-9315-6af26336761e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:45:18.514','2025-04-24 08:45:18.514','2025-04-24 08:45:18.514','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:04:46.132','2025-07-01 09:19:39.017',NULL),
('354e4c1a-282d-44d2-9f5b-bf920d2f21f0','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 08:39:03.104','2025-01-09 08:39:03.104','2025-01-09 08:39:03.104','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.652',NULL),
('3552fc9b-575d-4228-ac51-ef7226f8dd20','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-08 08:19:05.613','2025-09-08 08:19:05.613','2025-09-08 08:19:05.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.414','2025-09-19 10:00:25.425',NULL),
('3553a351-ec9c-485b-9342-3947214664ff','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:25:33.882','2024-09-27 12:25:33.882','2024-09-27 12:25:33.882','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:27:35.272','2024-09-27 12:27:35.272',NULL),
('3586dae6-a6bd-4cbe-83ff-f9e6cd33379b','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-14 08:40:53.163','2025-08-14 08:40:53.163','2025-08-14 08:40:53.163','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:46:34.306','2025-08-15 20:59:05.049',NULL),
('359d6203-c93f-4a1d-a512-2c92b8f97eef','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-18 09:13:33.060','2025-08-18 09:13:33.060','2025-08-18 09:13:33.060','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.055','2025-09-10 12:48:00.791',NULL),
('35e40203-ff64-47dc-9e32-f978c2c3d18b','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-10-31 21:52:42.374','2024-10-31 21:52:42.374','2024-10-31 21:52:42.374','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 21:55:20.339','2024-11-02 08:58:01.926',NULL),
('363394fc-90c8-442f-8b5c-0e0d11a54aea','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-04 08:02:48.538','2024-10-04 08:02:48.538','2024-10-04 08:02:48.538','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-04 08:06:23.500','2024-10-17 12:48:45.139',NULL),
('364b856a-398f-47e1-8e77-b637775e61c0','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:50:55.207','2024-05-04 09:50:55.207','2024-05-04 09:50:55.207','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:53:38.003','2024-05-10 07:11:45.865',NULL),
('36626a1c-1253-442f-923e-7fdc100e765b','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:52:53.004','2024-12-07 08:52:53.004','2024-12-07 08:52:53.004','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:55:02.750','2024-12-17 19:52:33.003',NULL),
('366455d3-7d19-4f93-b0b5-39a2c228bc0a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-07 14:23:52.823','2025-04-07 14:23:52.823','2025-04-07 14:23:52.823','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:27:58.943','2025-04-15 14:54:58.165',NULL),
('366bf278-4b54-4449-9dea-e1f8a0c9679a','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-29 08:17:31.327','2025-07-29 08:17:31.327','2025-07-29 08:17:31.327','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:22.014','2025-09-03 06:09:36.631',NULL),
('367f8351-06b0-4d4e-9f09-1e6bd4c6c251','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-31 09:50:01.043','2025-07-31 09:50:01.043','2025-07-31 09:50:01.043','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:45:43.657','2025-09-05 08:55:11.143',NULL),
('36c4eb3d-d81c-4389-955b-3ff2a0704fd1','9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-06 10:27:23.405','2024-11-06 10:27:23.405','2024-11-06 10:27:23.405','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:39:32.080','2024-11-12 16:12:16.882',NULL),
('36ef78d8-fc87-40c6-896a-06e233856f49','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 21:55:49.218','2025-07-23 21:55:49.218','2025-07-23 21:55:49.218','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.479','2025-08-15 20:59:04.917',NULL),
('3704aca3-9c5f-4d86-b2f7-35c074ba682a','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-29 14:23:04.938','2025-07-29 14:23:04.938','2025-07-29 14:23:04.938','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.529','2025-08-15 20:59:05.036',NULL),
('371b898b-baac-4ccf-948b-fef54de9f9ff','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 07:27:25.906','2025-02-04 07:27:25.906','2025-02-04 07:27:25.906','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.807',NULL),
('372e85b6-6f8d-440b-987a-81cc4a533795','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 15:36:19.359','2025-07-18 15:36:19.359','2025-07-18 15:36:19.359','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.952','2025-07-22 16:18:49.466',NULL),
('37a32e2b-44e0-412c-ad8f-864885ac5c42','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-06 15:05:29.607','2024-11-06 15:05:29.607','2024-11-06 15:05:29.607','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 15:07:06.136','2024-11-08 17:28:27.306',NULL),
('37c8c6f4-fc6f-40d7-ba81-ff4f972918f2','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:15:35.047','2024-04-23 10:15:35.047','2024-04-23 10:15:35.047','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:17:17.495','2024-04-23 10:17:17.495',NULL),
('37ccaf90-add3-40d1-8799-0acd85561372','98ea2dbd-82be-4bbe-b758-b7175c0f8659','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 08:50:56.709','2025-07-30 08:50:56.709','2025-07-30 08:50:56.709','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:03:34.156','2025-08-12 08:07:30.340',NULL),
('37de81ca-5eeb-4877-992f-6a6283010211','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-05 12:39:46.422','2025-08-05 12:39:46.422','2025-08-05 12:39:46.422','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.912','2025-09-03 06:09:36.764',NULL),
('37ed06fc-38c1-4f3d-9a3a-3b4e8110c227','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-11 08:25:39.348','2025-09-11 08:25:39.348','2025-09-11 08:25:39.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.398','2025-09-19 10:00:25.408',NULL),
('37f6f035-0434-4fdb-ae5f-e9319d6d6e34','7f34d75e-284a-42ac-9cbe-a29174748991','56323a39-e192-4016-a254-840950ca2e27','2024-11-13 13:09:09.364','2024-11-13 13:09:09.364','2024-11-13 13:09:09.364','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-13 13:17:29.297','2024-11-15 17:01:37.845',NULL),
('38058a7f-fb05-4134-8c36-300a2dc8c332','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-22 06:48:50.388','2025-05-22 06:48:50.388','2025-05-22 06:48:50.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.677',NULL),
('3814f098-34a3-4abd-81d3-a1eb2436e8cb','d50fb551-10f1-4b7c-b65d-6eb4bef94704','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-10 14:20:19.974','2025-08-10 14:20:19.974','2025-08-10 14:20:19.974','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:22.007','2025-09-03 06:09:36.720',NULL),
('383a265a-69a1-4ba0-a43b-a3b57cfe712f','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 11:06:25.003','2024-07-20 11:06:25.003','2024-07-20 11:06:25.003','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 11:08:05.357','2024-07-20 11:08:05.357',NULL),
('383c539d-6c5f-4f79-bf8c-a1c7c37eb785','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:52:36.065','2024-04-07 20:52:36.065','2024-04-07 20:52:36.065','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:55:21.319','2024-04-07 20:55:21.319',NULL),
('3847e331-9e3f-43eb-8088-37af1e4f9889','22a1dbd6-475c-4d4b-bb13-f459e3029634','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 13:44:08.186','2024-11-21 13:44:08.186','2024-11-21 13:44:08.186','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 13:47:59.553','2024-12-02 09:51:49.691',NULL),
('385282ea-b3b3-459b-81e7-8bb6f835926d','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-03 14:32:29.995','2024-07-03 14:32:29.995','2024-07-03 14:32:29.995','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-03 14:34:39.346','2024-07-03 14:34:39.346',NULL),
('385ff2b4-e41a-4a76-98f0-98670bcc4131','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 08:20:14.058','2024-09-16 08:20:14.058','2024-09-16 08:20:14.058','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 08:22:05.674','2024-10-02 09:28:49.965','2024-10-02 09:28:49.971'),
('3880fb2f-7ba9-404e-9280-002ec3ab9b4b','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-19 10:13:54.363','2025-04-19 10:13:54.363','2025-04-19 10:13:54.363','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:16:53.375','2025-05-02 17:08:29.453',NULL),
('38861571-6a37-4205-972a-45c462e84e81','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:25:41.610','2024-09-27 11:25:41.610','2024-09-27 11:25:41.610','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:29:28.441','2024-09-27 11:29:28.441',NULL),
('38a3ca35-1689-454d-b5d0-d947c43a5390','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-02 15:37:20.269','2025-07-02 15:37:20.269','2025-07-02 15:37:20.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.890','2025-09-05 16:46:48.225',NULL),
('38a935ca-6c6a-4320-9a53-a6c60586aa3f','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 16:29:48.167','2025-02-18 16:29:48.167','2025-02-18 16:29:48.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:31:57.984','2025-02-27 13:37:30.595',NULL),
('38ac00be-4c8a-4d41-b057-52232fd6db42','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-01 08:47:30.268','2024-08-01 08:47:30.268','2024-08-01 08:47:30.268','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-01 08:51:05.393','2024-08-07 20:54:59.769',NULL),
('38c91ae9-ef26-4ab7-9079-c58d861eaac1','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:57:44.461','2024-05-04 07:57:44.461','2024-05-04 07:57:44.461','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:59:30.701','2024-05-04 07:59:30.701',NULL),
('39086541-f815-4c78-89d4-db1181fa8870','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-23 09:15:32.793','2025-06-23 09:15:32.793','2025-06-23 09:15:32.793','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.839','2025-07-07 11:44:52.662',NULL),
('390bae94-d1cd-4494-94d8-600b4dbc7a79','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:30:58.905','2025-02-07 11:30:58.905','2025-02-07 11:30:58.905','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:34:53.010','2025-02-15 11:10:42.984',NULL),
('39535060-23ad-4964-a39e-f0bc048cf0ff','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-07 14:16:56.220','2025-04-07 14:16:56.220','2025-04-07 14:16:56.220','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.424',NULL),
('39586066-cd51-42cd-bf9b-d13d13cc214c','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-04 10:57:26.646','2025-08-04 10:57:26.646','2025-08-04 10:57:26.646','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.503','2025-09-26 12:27:42.366',NULL),
('39726256-2ab0-45bd-b915-bf68ac5801b6','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-28 11:05:08.129','2025-07-28 11:05:08.129','2025-07-28 11:05:08.129','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 13:52:01.486','2025-09-06 09:41:31.839',NULL),
('3972cd9e-cc0b-4198-9447-478e9d0c45a3','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-15 14:17:52.209','2024-03-15 14:17:52.209','2024-03-15 14:17:52.209','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-15 14:23:38.279','2024-04-27 08:06:27.072',NULL),
('398291ec-4e29-4bc8-96fe-7e4ea74bc503','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 13:54:55.440','2025-01-24 13:54:55.440','2025-01-24 13:54:55.440','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.718',NULL),
('39d12fab-809c-4341-8a3f-ec7e17e99bc3','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:01:46.908','2024-03-23 07:01:46.908','2024-03-23 07:01:46.908','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:09:15.304','2024-03-23 09:04:11.024',NULL),
('3a014684-db12-4d8e-ae3b-9b23d07b338b','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-27 08:25:48.160','2025-08-27 08:25:48.160','2025-08-27 08:25:48.160','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.855','2025-09-03 06:09:36.788',NULL),
('3a1b8f72-a236-42f0-b9dd-d529fd5cb163','e6d632ec-bc89-4254-b43c-4f7383017076','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-30 08:12:18.023','2025-08-30 08:12:18.023','2025-08-30 08:12:18.023','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.764','2025-09-02 14:46:19.245',NULL),
('3a2113e9-de2e-4eeb-b26f-3e0b531e3320','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 12:57:45.712','2025-03-24 12:57:45.712','2025-03-24 12:57:45.712','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.394',NULL),
('3a27edfc-e281-4bfd-969e-85a999b7d9a8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:42:48.435','2024-12-17 14:42:48.435','2024-12-17 14:42:48.435','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:27:59.902','2025-01-11 10:16:46.069',NULL),
('3a2e73c5-f7a3-4b75-8caa-92c9b5d065d0','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 13:24:43.720','2025-08-06 13:24:43.720','2025-08-06 13:24:43.720','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.197','2025-08-15 20:59:04.906',NULL),
('3a4fa721-124b-46a1-8584-585939a963ca','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:41:34.506','2025-06-11 20:41:34.506','2025-06-11 20:41:34.506','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.460','2025-07-01 09:19:38.953',NULL),
('3a7b5e52-678e-4935-9b04-0bca5598ebf3','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 13:55:40.723','2025-10-13 13:55:40.723','2025-10-13 13:55:40.723','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.372','2025-10-22 11:29:52.683',NULL),
('3a84cb44-6e97-4f4c-81c5-bc4c81b45b50','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:14:58.852','2025-04-24 08:14:58.852','2025-04-24 08:14:58.852','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.619',NULL),
('3a94f0d0-3581-43c3-86fe-38931c1c5663','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-15 14:29:02.222','2024-10-15 14:29:02.222','2024-10-15 14:29:02.222','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-15 14:30:15.768','2024-10-17 11:46:01.539',NULL),
('3ab21ca1-dff4-4537-935f-542ed3fb0397','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 09:54:25.503','2025-08-29 09:54:25.503','2025-08-29 09:54:25.503','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.930','2025-10-14 08:52:36.773',NULL),
('3ac6ea3a-4221-4e33-a678-184fddb505dd','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 16:40:31.763','2024-11-08 16:40:31.763','2024-11-08 16:40:31.763','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 16:42:22.879','2024-11-12 07:08:35.743',NULL),
('3b038ef4-bae8-4214-bea4-cdf31b8f3fb1','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 08:47:49.630','2025-06-12 08:47:49.630','2025-06-12 08:47:49.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:48:04.680','2025-06-18 08:08:50.278',NULL),
('3b0d6266-0557-42e3-ab69-0201e144f730','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 10:23:03.759','2025-04-28 10:23:03.759','2025-04-28 10:23:03.759','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.535',NULL),
('3b14ea01-b51b-4987-84a2-b7aae7594176','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 08:23:10.884','2025-09-16 08:23:10.884','2025-09-16 08:23:10.884','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.502','2025-09-24 13:41:15.011',NULL),
('3b1b2331-f648-4eff-b51d-75ddb046fce4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 08:18:51.093','2025-01-09 08:18:51.093','2025-01-09 08:18:51.093','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.619',NULL),
('3b233c7c-3e31-4a3f-9081-8d5192977270','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-29 15:30:29.191','2024-08-29 15:30:29.191','2024-08-29 15:30:29.191','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-29 15:32:27.205','2024-08-31 12:59:44.383',NULL),
('3b2eb53a-92ac-4b02-b8bc-680ddd9d3d64','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 06:43:45.821','2024-03-16 06:43:45.821','2024-03-16 06:43:45.821','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 06:45:44.754','2024-03-16 06:48:53.241',NULL),
('3b40e0f0-0b47-4168-b9e6-6e9ba634e017','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:40:55.483','2024-04-07 20:40:55.483','2024-04-07 20:40:55.483','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:43:59.522','2024-04-07 20:43:59.522',NULL),
('3b44e513-cf64-4c78-893d-247d26fb23ac','fabe2c23-b5a5-4123-a962-af519ac31d3b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-23 07:35:33.939','2025-09-23 07:35:33.939','2025-09-23 07:35:33.939','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.555','2025-09-24 13:41:15.082',NULL),
('3b46e61c-989c-4179-b870-2538a263716a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:46:25.024','2024-05-10 06:46:25.024','2024-05-10 06:46:25.024','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:49:00.682','2024-05-10 06:49:00.682',NULL),
('3b504b57-d9bd-46ac-ab17-5a37bb104e6d','e41c8c53-684c-4376-8162-2e589c44b742','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-16 11:00:22.744','2025-05-16 11:00:22.744','2025-05-16 11:00:22.744','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.148','2025-07-01 09:19:38.988',NULL),
('3bb069c5-61a4-4860-bc39-b284b0d587f0','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 16:00:45.637','2024-09-28 16:00:45.637','2024-09-28 16:00:45.637','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 16:02:45.886','2024-09-28 16:02:45.886',NULL),
('3bb8cadc-29fd-4f8a-aae6-02ca7eba64a9','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 19:37:10.419','2025-03-25 19:37:10.419','2025-03-25 19:37:10.419','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:47:28.703','2025-03-29 13:56:05.505',NULL),
('3bbeca6f-9441-45cd-9949-62734a57271f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 09:35:45.751','2024-08-30 09:35:45.751','2024-08-30 09:35:45.751','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 09:44:33.869','2024-08-31 13:07:31.209',NULL),
('3bdd1f4e-c5e7-4cab-bacb-659621328cd7','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:47:04.125','2024-10-24 09:47:04.125','2024-10-24 09:47:04.125','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:52:36.926','2024-11-02 09:24:32.516',NULL),
('3bed7848-0d13-4694-a415-6246d3d90f90','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-14 07:57:06.644','2025-08-14 07:57:06.644','2025-08-14 07:57:06.644','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.658','2025-09-05 08:55:11.106',NULL),
('3bf3ef27-e937-4db6-9f7c-e7f5447ac0c5','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-17 10:41:44.640','2025-07-17 10:41:44.640','2025-07-17 10:41:44.640','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:12:50.072','2025-07-29 12:37:20.481',NULL),
('3bf41e59-da68-4d6e-98fe-53d9d079fdbc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:45:09.292','2024-09-27 12:45:09.292','2024-09-27 12:45:09.292','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:47:02.223','2024-09-27 13:56:04.855',NULL),
('3c030b75-f853-477a-ad63-787f4ca46257','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-23 10:27:09.486','2024-12-23 10:27:09.486','2024-12-23 10:27:09.486','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.517',NULL),
('3c05f571-c30f-43ce-9765-3434cf964fd4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-15 08:37:05.001','2025-07-15 08:37:05.001','2025-07-15 08:37:05.001','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.977','2025-07-22 16:18:49.482',NULL),
('3c3ffc80-cc02-472c-a828-7c2a84d40a70','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 16:00:01.369','2025-02-18 16:00:01.369','2025-02-18 16:00:01.369','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:05:56.998','2025-02-27 13:37:30.589',NULL),
('3c6b6edd-c1ee-4ca6-b72e-03c2ed1fc53a','d92bec02-a9d2-4e8e-88e6-6b64208e6b26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-04 10:03:29.739','2025-09-04 10:03:29.739','2025-09-04 10:03:29.739','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.573','2025-09-10 07:11:56.204',NULL),
('3c6fbbad-71e8-4cc9-9ebc-943f9dd45483','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-24 10:31:39.328','2025-03-24 10:31:39.328','2025-03-24 10:31:39.328','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.585',NULL),
('3c7df9f8-0def-4188-871a-27f3aa808c82','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:04:07.376','2025-07-08 11:04:07.376','2025-07-08 11:04:07.376','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:11:58.212','2025-07-08 11:33:15.258',NULL),
('3c9359e5-b305-426a-81bd-f9a51972b474','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 07:48:49.403','2025-08-06 07:48:49.403','2025-08-06 07:48:49.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.554','2025-08-14 08:02:29.818',NULL),
('3cb1a427-f8bb-4bbe-b6f5-52b6eb173220','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-03 09:07:14.785','2025-06-03 09:07:14.785','2025-06-03 09:07:14.785','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:44:35.632','2025-06-27 08:25:57.911',NULL),
('3cb26fc9-ee21-4e8c-93f3-ec6b539d384c','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 07:57:13.076','2025-06-26 07:57:13.076','2025-06-26 07:57:13.076','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.715','2025-07-08 11:33:15.128',NULL),
('3ccc5859-5edd-45e1-883e-514581c84bad','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 12:06:28.427','2025-10-07 12:06:28.427','2025-10-07 12:06:28.427','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 12:08:55.460','2025-10-09 08:39:37.000',NULL),
('3cd6cdd8-2528-4dd2-b450-95717775b3ab','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-26 12:07:15.956','2024-08-26 12:07:15.956','2024-08-26 12:07:15.956','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-26 12:17:42.694','2024-09-09 13:36:05.608',NULL),
('3cee1a63-8a19-4ee1-aa54-b75c49826824','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-01 08:42:09.336','2025-03-01 08:42:09.336','2025-03-01 08:42:09.336','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.562',NULL),
('3cf66756-a515-4809-ba20-90f8dcaac7b1','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-13 11:55:27.329','2024-11-13 11:55:27.329','2024-11-13 11:55:27.329','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-13 12:03:04.191','2024-12-09 17:29:20.156',NULL),
('3d25e72e-f302-46d2-900a-19618ae5a408','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 15:21:51.725','2025-08-28 15:21:51.725','2025-08-28 15:21:51.725','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.664','2025-09-10 07:11:56.260',NULL),
('3d3e7611-0b4b-49c8-9b2a-ff0a36e6d508','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 08:56:04.452','2025-07-01 08:56:04.452','2025-07-01 08:56:04.452','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.690','2025-07-08 11:33:15.227',NULL),
('3d60e114-976a-4f4b-a922-7d34b2657245','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 12:22:41.673','2025-03-24 12:22:41.673','2025-03-24 12:22:41.673','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.064',NULL),
('3daf4010-67e4-43db-a376-c6309a5b694d','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:26:59.719','2025-09-15 06:26:59.719','2025-09-15 06:26:59.719','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.158','2025-10-22 11:29:52.770',NULL),
('3db674f9-60ba-4fae-992d-5f3e78ab187b','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-15 08:00:46.650','2025-07-15 08:00:46.650','2025-07-15 08:00:46.650','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.938','2025-07-22 16:18:49.534',NULL),
('3dbe2c8b-73fd-4dee-9ddb-884fb62bd0ae','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 15:26:42.470','2025-01-17 15:26:42.470','2025-01-17 15:26:42.470','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.698',NULL),
('3dd94030-8c55-421e-af64-09cbd3386355','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 08:59:22.532','2024-12-13 08:59:22.532','2024-12-13 08:59:22.532','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:24:23.701','2024-12-16 18:41:52.591',NULL),
('3deb0a9a-3140-4457-aa17-04e0b42e8aed','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-21 09:42:15.282','2025-04-21 09:42:15.282','2025-04-21 09:42:15.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.157',NULL),
('3ded57a0-a99a-4a83-a1cd-997dc15e2d6b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-21 09:36:37.533','2025-04-21 09:36:37.533','2025-04-21 09:36:37.533','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.136',NULL),
('3df0c7c1-415f-4924-b711-8b9eb4be61f9','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 14:27:05.240','2025-06-27 14:27:05.240','2025-06-27 14:27:05.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.903','2025-07-22 16:18:49.640',NULL),
('3e1288a6-4ee7-4bdb-aa3c-d64555883df8','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-02 06:24:04.256','2025-09-02 06:24:04.256','2025-09-02 06:24:04.256','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:59:40.452','2025-09-12 17:16:02.717',NULL),
('3e3f3768-8811-4a8a-82d4-a8362bce7967','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-22 11:22:13.441','2025-05-22 11:22:13.441','2025-05-22 11:22:13.441','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.918',NULL),
('3e56a9ca-30e7-49e3-b0b6-bf50266880b3','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-11 09:09:19.399','2025-01-11 09:09:19.399','2025-01-11 09:09:19.399','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.596',NULL),
('3e60111a-a059-4107-adf2-ef1358141fc0','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:26:17.180','2024-06-08 07:26:17.180','2024-06-08 07:26:17.180','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:27:08.081','2024-06-10 10:02:37.252',NULL),
('3e66b584-bb9f-467c-85bc-cf4c92ec0c27','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 10:31:56.242','2025-09-06 10:31:56.242','2025-09-06 10:31:56.242','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.343','2025-09-18 15:48:17.455',NULL),
('3e6d3186-df76-4b65-a052-9ee4d4df8bf3','27cbce83-310c-4e98-830f-7433b10c2efd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 13:25:46.573','2025-08-22 13:25:46.573','2025-08-22 13:25:46.573','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.433','2025-08-22 20:28:07.592',NULL),
('3e707cb2-0e4e-4ef2-a32b-7092258c4004','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-30 10:14:41.698','2024-09-30 10:14:41.698','2024-09-30 10:14:41.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-30 10:41:04.357','2024-11-06 15:12:27.986',NULL),
('3e7b95d2-a394-428c-b72e-2e991923d227','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:28:46.943','2025-09-24 12:28:46.943','2025-09-24 12:28:46.943','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.436','2025-09-26 12:27:42.401',NULL),
('3e8150ec-386b-4b40-bcc7-a95aac73a8d3','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 13:14:56.917','2025-02-26 13:14:56.917','2025-02-26 13:14:56.917','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-11 14:16:19.289','2025-03-15 09:47:16.097',NULL),
('3ec0f53d-c4a4-4558-b4fe-6f473189e48f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-26 07:00:01.009','2025-08-26 07:00:01.009','2025-08-26 07:00:01.009','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.589','2025-09-10 07:11:56.267',NULL),
('3eef564f-fd8e-471c-aae2-93b61b188973','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-14 08:57:15.167','2025-05-14 08:57:15.167','2025-05-14 08:57:15.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.156','2025-06-27 18:01:26.450','2025-06-27 18:01:26.449'),
('3ef93895-b441-40cc-b053-66c3c11334be','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:09:39.746','2025-06-11 20:09:39.746','2025-06-11 20:09:39.746','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.496','2025-07-01 09:19:39.053',NULL),
('3f0e3285-e89e-47c4-88ec-1cba97a5e9a8','a42d8839-caef-4422-888f-cbfdf4188c5b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-06 10:47:16.290','2024-11-06 10:47:16.290','2024-11-06 10:47:16.290','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:49:55.458','2024-11-08 17:35:48.477',NULL),
('3f1e094f-03fc-4379-ae0a-755841f21f8e','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 11:59:57.337','2025-07-02 11:59:57.337','2025-07-02 11:59:57.337','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.266','2025-07-26 08:40:12.385',NULL),
('3f4668c3-ac99-4677-8c1d-9ddb76aea43f','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:44:21.689','2025-04-24 07:44:21.689','2025-04-24 07:44:21.689','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.550',NULL),
('3f5023cc-fc80-424e-9898-fe61b706f007','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 13:51:37.158','2025-07-31 13:51:37.158','2025-07-31 13:51:37.158','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-24 13:41:15.133','2025-09-24 13:41:15.133',NULL),
('3f576c54-44ba-41ca-a4de-58fbf7227028','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-22 13:05:44.239','2025-05-22 13:05:44.239','2025-05-22 13:05:44.239','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:06:25.898',NULL),
('3fa0e308-61c7-4953-b7fd-07f6a03c8d66','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 09:59:51.613','2025-03-08 09:59:51.613','2025-03-08 09:59:51.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-02 18:57:11.124',NULL),
('3faf6cf9-e7b0-4c9b-be82-7ca72b2360cf','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-14 19:36:19.323','2024-11-14 19:36:19.323','2024-11-14 19:36:19.323','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 19:38:06.458','2024-11-19 08:14:24.657','2024-11-19 08:14:24.662'),
('3fd442a9-a8dc-45c2-97c5-435ec3798146','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-05 19:47:54.523','2025-10-05 19:47:54.523','2025-10-05 19:47:54.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.030','2025-10-14 08:52:36.883',NULL),
('40045650-1f6d-4776-9a9f-75c938188568','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-07 09:59:40.878','2025-08-07 09:59:40.878','2025-08-07 09:59:40.878','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.908','2025-09-02 14:46:19.390',NULL),
('402401b1-51fc-4e76-a385-ca3921757caa','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 12:26:07.591','2025-03-13 12:26:07.591','2025-03-13 12:26:07.591','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:18:50.008','2025-04-02 18:57:11.003',NULL),
('40449656-d26e-49ab-9b65-f867440427d0','98ea2dbd-82be-4bbe-b758-b7175c0f8659','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-01 07:50:55.536','2024-11-01 07:50:55.536','2024-11-01 07:50:55.536','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-01 07:55:05.868','2024-11-04 13:48:12.302',NULL),
('40812126-4088-4702-bb01-5a86478d80c6','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 14:22:10.445','2025-09-17 14:22:10.445','2025-09-17 14:22:10.445','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.740','2025-10-07 15:17:28.602',NULL),
('409509de-a9a8-47c7-bd07-6b4325dd55e3','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 12:06:41.736','2025-03-17 12:06:41.736','2025-03-17 12:06:41.736','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.354',NULL),
('40c234fd-f772-45e6-8f5a-1319b6de4630','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 12:53:54.210','2025-03-21 12:53:54.210','2025-03-21 12:53:54.210','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.739',NULL),
('40ef6c05-2e36-43a3-bdd5-4d597665afe9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-10 10:42:03.805','2025-06-10 10:42:03.805','2025-06-10 10:42:03.805','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 14:59:11.880','2025-06-27 08:25:57.844',NULL),
('4140be81-527a-4270-8127-f4ff99945161','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-14 19:38:20.579','2024-11-14 19:38:20.579','2024-11-14 19:38:20.579','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 19:40:13.229','2024-11-15 17:00:24.134',NULL),
('4161b417-68f8-40f3-aedf-a94ba067da3c','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-10 19:10:35.281','2024-12-10 19:10:35.281','2024-12-10 19:10:35.281','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 14:53:42.276','2025-01-13 07:50:40.497',NULL),
('41640d05-65b3-4b47-b5e6-39e90a99f2cc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-02 21:50:51.000','2025-05-02 21:50:51.000','2025-05-02 21:50:51.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.609',NULL),
('41cc67a0-6be9-43ce-8d79-f2676c8a1832','f4861afa-47df-4a6b-b9ca-da22afe273e4','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-18 14:24:30.914','2025-06-18 14:24:30.914','2025-06-18 14:24:30.914','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.255','2025-07-07 11:47:15.930',NULL),
('41d2e66b-fbd8-43d6-94bf-2607fc09b09f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-28 09:24:22.456','2025-08-28 09:24:22.456','2025-08-28 09:24:22.456','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.534','2025-09-24 13:41:15.061',NULL),
('41e2f3cc-d36c-425a-a0c8-341602f3c1d3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-07 07:25:50.112','2025-01-07 07:25:50.112','2025-01-07 07:25:50.112','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.679',NULL),
('421463e5-aecf-4e95-bcd8-1900352da420','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-15 14:27:11.364','2024-10-15 14:27:11.364','2024-10-15 14:27:11.364','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-15 14:27:54.066','2024-10-25 13:20:51.028',NULL),
('4232d470-811e-4b4b-a7ad-3125afe1e7c5','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-05 10:44:14.134','2025-09-05 10:44:14.134','2025-09-05 10:44:14.134','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 15:48:17.595','2025-09-18 15:48:17.595',NULL),
('42573958-54e2-43e6-9edc-1f18a2e23f67','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-24 09:48:49.783','2025-07-24 09:48:49.783','2025-07-24 09:48:49.783','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.460','2025-07-29 12:37:20.357',NULL),
('42714b77-3459-4112-bae2-08c422ebe575','4b494cd3-c9fc-4519-ba9e-b4261706ae49','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-06 10:39:43.063','2024-11-06 10:39:43.063','2024-11-06 10:39:43.063','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:43:51.057','2024-11-07 13:13:48.948','2024-11-07 13:13:48.952'),
('4285be1a-312c-4e84-9276-dc18a6e6b1c9','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 13:27:44.600','2025-06-20 13:27:44.600','2025-06-20 13:27:44.600','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.305','2025-07-08 11:33:15.101',NULL),
('4286692c-38f1-4582-a184-910abaca4477','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-04 07:47:52.402','2025-09-04 07:47:52.402','2025-09-04 07:47:52.402','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.832','2025-09-20 11:00:37.356',NULL),
('429a65e5-081a-4fc4-9012-5de14804f43e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 09:42:45.727','2025-02-07 09:42:45.727','2025-02-07 09:42:45.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.781',NULL),
('42c3b9cf-b9bd-495a-b900-2d9a278d8ce0','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-18 12:43:40.490','2025-08-18 12:43:40.490','2025-08-18 12:43:40.490','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.383','2025-09-19 10:00:25.393',NULL),
('42dbaca5-f1ac-489d-a86d-4767df5fa50a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 08:38:28.395','2025-02-18 08:38:28.395','2025-02-18 08:38:28.395','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:44:36.676','2025-02-20 12:40:28.860',NULL),
('42f78367-873c-4987-9e44-7030f34a19ca','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 09:01:20.697','2024-05-11 09:01:20.697','2024-05-11 09:01:20.697','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 09:02:48.789','2024-05-17 14:15:48.168',NULL),
('42fc7529-93da-4cb0-90c6-25e92efb5064','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-29 08:28:55.455','2025-08-29 08:28:55.455','2025-08-29 08:28:55.455','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.102','2025-09-10 12:48:00.900',NULL),
('430ddc1d-7f88-4918-9390-738a6dadeb6d','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 14:35:54.185','2025-04-26 14:35:54.185','2025-04-26 14:35:54.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:37:22.724','2025-04-26 16:02:30.960',NULL),
('432f790e-20a8-4c73-a417-71ee16c326dc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 10:15:42.281','2025-10-01 10:15:42.281','2025-10-01 10:15:42.281','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.643','2025-10-07 15:17:28.465',NULL),
('4336d347-273d-4db2-9728-9394e934c15a','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-29 16:51:27.860','2024-12-29 16:51:27.860','2024-12-29 16:51:27.860','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.524',NULL),
('43510534-6ab5-4845-ad52-0dd150f74e0e','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 14:49:01.284','2024-11-21 14:49:01.284','2024-11-21 14:49:01.284','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 14:50:12.700','2025-02-17 12:51:31.722','2025-02-17 12:51:31.727'),
('435239d4-f99f-4440-9a97-680f1751cfba','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:41:19.353','2024-10-24 09:41:19.353','2024-10-24 09:41:19.353','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:44:22.644','2024-12-09 17:29:20.182',NULL),
('4358a0ff-a6bf-4ac0-b5e4-c40749f4fcf4','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 11:59:41.195','2025-08-13 11:59:41.195','2025-08-13 11:59:41.195','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:45:43.648','2025-09-05 08:55:11.057',NULL),
('435e3acc-87b6-4ab0-a673-3a28f8efda46','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-28 13:18:01.705','2024-10-28 13:18:01.705','2024-10-28 13:18:01.705','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-28 13:23:02.394','2024-12-09 08:24:38.595',NULL),
('438bd6af-2d2b-4c58-99de-1dc4cc82dd73','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:25:33.031','2024-03-16 08:25:33.031','2024-03-16 08:25:33.031','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:28:18.990','2024-03-16 12:33:37.703',NULL),
('43c9bd6b-96d1-46e0-9cae-91bee99b1125','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 20:50:40.947','2025-06-16 20:50:40.947','2025-06-16 20:50:40.947','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.843','2025-07-16 14:21:29.480',NULL),
('43e120bd-6fac-468d-ac39-82a4089cc3a4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 08:38:15.542','2025-05-05 08:38:15.542','2025-05-05 08:38:15.542','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.043',NULL),
('4430d2c8-92c5-4d41-bf5b-cb8c480a2d85','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:37:52.249','2025-02-12 13:37:52.249','2025-02-12 13:37:52.249','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:24:13.847','2025-03-02 04:33:53.235',NULL),
('4432eac9-2d4c-4f3e-a337-b96ba44a5321','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 21:11:20.713','2024-11-03 21:11:20.713','2024-11-03 21:11:20.713','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 21:12:58.658','2024-11-23 18:18:11.209',NULL),
('44348a04-71c3-4927-b2bd-ef967f5b8df3','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-13 08:02:05.897','2024-06-13 08:02:05.897','2024-06-13 08:02:05.897','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-13 08:06:04.136','2024-07-02 08:24:32.206',NULL),
('444d3d2d-321b-492a-9634-a250b826fc20','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-02 09:18:59.047','2025-04-02 09:18:59.047','2025-04-02 09:18:59.047','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:35:54.444','2025-04-26 16:02:30.932',NULL),
('444f0b4a-a933-46fa-901b-8fc9719244a3','f91bb148-259f-42bb-9f08-b97a4cd49dbc','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-09 14:09:33.678','2024-12-09 14:09:33.678','2024-12-09 14:09:33.678','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:06:48.296','2025-01-11 10:16:46.060',NULL),
('44632496-ff33-4a49-bc57-649b374bb891','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-10 08:18:24.275','2025-01-10 08:18:24.275','2025-01-10 08:18:24.275','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 14:53:42.276','2025-01-13 07:50:40.438',NULL),
('4498f1e0-6661-45a1-a793-3a81b7fe4e4c','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 08:08:11.295','2025-03-27 08:08:11.295','2025-03-27 08:08:11.295','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:00:05.774','2025-04-15 09:32:18.428',NULL),
('449e47ec-5ed0-4c0b-adfd-23c9bef78971','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-25 13:36:50.430','2024-12-25 13:36:50.430','2024-12-25 13:36:50.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:15:29.084','2025-01-28 15:19:34.576',NULL),
('44ba0c49-e506-4726-a137-ba9084d3c2fe','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 13:52:47.518','2025-02-25 13:52:47.518','2025-02-25 13:52:47.518','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.483',NULL),
('44d9a193-4872-43d5-86a5-b58894d8c5ed','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 14:12:07.260','2025-01-24 14:12:07.260','2025-01-24 14:12:07.260','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:13:18.920','2025-02-15 16:08:16.799',NULL),
('451079f5-9bf5-46ef-8809-914bb376355b','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-11 12:36:06.844','2025-04-11 12:36:06.844','2025-04-11 12:36:06.844','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:38:29.860','2025-04-15 14:54:58.242',NULL),
('452223ca-abc8-4b8d-9dff-b511ba1443c6','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:59:42.937','2024-05-04 07:59:42.937','2024-05-04 07:59:42.937','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 08:01:37.198','2024-05-04 08:01:37.198',NULL),
('45346e12-ff09-44c0-9825-93a89012d504','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 14:35:21.548','2025-08-01 14:35:21.548','2025-08-01 14:35:21.548','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.637','2025-09-05 08:55:11.199',NULL),
('4553020f-7591-4a3b-8f42-d7299136a300','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-11 14:47:29.596','2025-01-11 14:47:29.596','2025-01-11 14:47:29.596','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 14:53:42.276','2025-01-13 07:50:40.465',NULL),
('455884a5-cfc9-46d4-aaff-e435cd0458cd','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-02 10:11:22.782','2025-06-02 10:11:22.782','2025-06-02 10:11:22.782','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-28 09:45:21.809',NULL),
('457b8707-4663-4a23-97ee-24250004f14f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-14 09:18:45.093','2024-06-14 09:18:45.093','2024-06-14 09:18:45.093','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-14 09:20:30.209','2024-06-14 09:20:30.209',NULL),
('457ca19c-c93a-4c55-b1ca-d134ae834efb','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 09:22:44.388','2025-08-22 09:22:44.388','2025-08-22 09:22:44.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.873','2025-09-02 14:46:19.354',NULL),
('45c3a203-00b4-4783-958c-012f5a247654','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 08:25:23.224','2024-03-12 08:25:23.224','2024-03-12 08:25:23.224','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 08:37:17.480','2024-03-14 13:46:06.856',NULL),
('45c40468-10b4-402f-b36c-3975b92d36b4','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 12:49:55.183','2025-08-21 12:49:55.183','2025-08-21 12:49:55.183','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.622','2025-09-05 08:55:11.082',NULL),
('45f6344b-e1f2-4015-ab0b-671e19719b2c','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 18:35:59.219','2025-09-05 18:35:59.219','2025-09-05 18:35:59.219','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:39:57.793','2025-09-06 09:41:31.852',NULL),
('462519ce-e919-43ef-84a0-f21ab97822dd','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 12:01:46.303','2024-05-10 12:01:46.303','2024-05-10 12:01:46.303','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 12:10:30.695','2024-05-23 07:24:53.557',NULL),
('467cfcb3-10ed-4b42-9ee8-724905493977','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:53:38.688','2024-03-30 09:53:38.688','2024-03-30 09:53:38.688','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:57:18.668','2024-04-01 16:34:18.967',NULL),
('46d2a083-37eb-4061-9df8-d30cc3336d35','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-12 06:27:14.319','2025-09-12 06:27:14.319','2025-09-12 06:27:14.319','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.453','2025-09-18 15:48:17.600',NULL),
('46d4792d-c3fc-462c-83b8-1f55419ff424','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 18:24:14.595','2025-09-05 18:24:14.595','2025-09-05 18:24:14.595','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.092','2025-09-06 09:41:31.808',NULL),
('46e408e7-7467-4d28-871b-8d3a72468d78','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-15 12:13:01.729','2025-08-15 12:13:01.729','2025-08-15 12:13:01.729','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.416','2025-08-22 20:20:00.055','2025-08-22 20:20:00.054'),
('46e4dd01-8bce-4f8f-a61f-dee6309c07f9','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:23:26.718','2025-03-17 11:23:26.718','2025-03-17 11:23:26.718','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.285',NULL),
('46e563ce-61fe-4bd3-a608-53748291c6ba','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 14:51:57.436','2025-08-13 14:51:57.436','2025-08-13 14:51:57.436','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:22.021','2025-09-03 06:09:36.689',NULL),
('46e73ad1-86cc-4419-bc65-9e88ed3356b2','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 11:52:25.537','2025-02-06 11:52:25.537','2025-02-06 11:52:25.537','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.589',NULL),
('47178418-1a5d-496c-a0fb-eca62395754c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 08:39:24.904','2025-09-17 08:39:24.904','2025-09-17 08:39:24.904','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.465','2025-09-26 12:27:42.416',NULL),
('47385510-efdb-447e-8c4d-2ab0ed7bcddd','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:27:23.252','2025-04-24 07:27:23.252','2025-04-24 07:27:23.252','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.014',NULL),
('473f1594-0834-444e-9514-5fd49ba27d58','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:26:43.252','2024-03-23 07:26:43.252','2024-03-23 07:26:43.252','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:29:47.563','2024-03-23 09:02:12.065',NULL),
('474ebff1-4c47-4372-8df4-dccf994246bf','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 09:01:40.838','2025-08-06 09:01:40.838','2025-08-06 09:01:40.838','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.522','2025-08-15 20:59:04.974',NULL),
('478d1f55-5993-43c4-a7dd-4e42a0cbb9e9','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 12:15:54.869','2025-01-19 12:15:54.869','2025-01-19 12:15:54.869','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.711',NULL),
('47c1c785-eab3-4e87-bee8-eb253403efd0','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 07:57:33.934','2024-11-02 07:57:33.934','2024-11-02 07:57:33.934','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 07:59:36.412','2024-11-04 13:48:26.786',NULL),
('47c73abe-f966-4763-9063-39fed528aea4','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-28 09:30:49.047','2025-05-28 09:30:49.047','2025-05-28 09:30:49.047','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.261','2025-07-07 11:44:52.821',NULL),
('47ce83a2-8004-4232-b705-44a50e9b8c6c','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 11:33:44.569','2025-08-26 11:33:44.569','2025-08-26 11:33:44.569','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.471','2025-09-24 13:41:14.979',NULL),
('481802da-aa99-45a1-b63b-e8180ff68db0','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:27:41.895','2024-09-27 12:27:41.895','2024-09-27 12:27:41.895','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:31:01.193','2024-09-27 12:31:01.193',NULL),
('484bd71c-5f6a-4f23-b7b9-1e75dd006c4f','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-30 05:53:35.841','2025-05-30 05:53:35.841','2025-05-30 05:53:35.841','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:34:09.617','2025-06-18 08:08:50.328',NULL),
('487ce17c-cba5-4b05-9280-9a69beaed660','7487951b-3af6-4f83-a5fa-6847a10dd8c6','672088cb-62c6-4858-b0a7-a64015547c74','2024-11-05 09:03:58.328','2024-11-05 09:03:58.328','2024-11-05 09:03:58.328','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-05 09:28:28.842','2024-11-08 17:35:27.158',NULL),
('4885aef6-f132-459a-b24b-e118a77e4a7a','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-10-31 19:19:31.148','2024-10-31 19:19:31.148','2024-10-31 19:19:31.148','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 19:22:27.547','2024-11-02 09:48:17.010',NULL),
('4887cda8-7fe4-4673-b41a-399fc3b5d7e8','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 10:52:27.405','2025-06-25 10:52:27.405','2025-06-25 10:52:27.405','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.963','2025-07-22 16:18:49.520',NULL),
('4895a9f8-1516-48a0-baea-6cb5d8fd5a4a','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-16 08:29:02.399','2025-07-16 08:29:02.399','2025-07-16 08:29:02.399','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:21:45.734','2025-08-12 08:07:30.281',NULL),
('4895ac7f-f749-42fb-810d-89ce7a4b22d5','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 09:11:38.290','2025-01-09 09:11:38.290','2025-01-09 09:11:38.290','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:50:13.401','2025-02-11 17:09:06.564',NULL),
('48a679ce-98f8-48e9-8c42-3e812a9172ca','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-15 12:55:02.605','2025-04-15 12:55:02.605','2025-04-15 12:55:02.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:35:05.126','2025-06-18 08:08:50.296',NULL),
('48b0cf6b-ede3-435f-9f2a-751d934340d0','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:53:28.350','2025-01-29 07:53:28.350','2025-01-29 07:53:28.350','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.551',NULL),
('48b4d62c-d2b1-4c19-a3f7-482036c7893f','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-14 06:39:54.582','2025-05-14 06:39:54.582','2025-05-14 06:39:54.582','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:23:33.681','2025-06-06 02:46:03.882',NULL),
('48b65677-9984-443a-84c0-4b0595eb1359','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 08:51:43.898','2024-10-02 08:51:43.898','2024-10-02 08:51:43.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 08:54:57.162','2024-10-02 08:54:57.162',NULL),
('48c6ba65-f513-4ab3-b726-a39f783801ab','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-03 15:00:11.259','2024-09-03 15:00:11.259','2024-09-03 15:00:11.259','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-03 15:11:57.597','2024-09-03 15:32:30.097',NULL),
('48d29e2e-aa91-4ac0-9599-ac6baa62c32b','47880255-08ee-4e99-940b-16038e07de55','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-05 09:07:17.446','2024-11-05 09:07:17.446','2024-11-05 09:07:17.446','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-05 10:24:03.213','2025-01-13 07:50:40.471',NULL),
('48d63165-0c89-4eda-b4de-9c2e2aa8c1e6','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-04 12:18:00.954','2025-04-04 12:18:00.954','2025-04-04 12:18:00.954','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:00:05.774','2025-04-15 09:32:18.402',NULL),
('48e99bee-e874-4839-99ac-c1f664715daa','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-09 16:45:50.876','2025-08-09 16:45:50.876','2025-08-09 16:45:50.876','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.895','2025-09-02 14:46:19.376',NULL),
('49594604-2ef1-49bb-97f2-9e41336dceb3','a42d8839-caef-4422-888f-cbfdf4188c5b','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','2024-11-28 08:30:24.578','2024-11-28 08:30:24.578','2024-11-28 08:30:24.578','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-28 08:33:37.486','2025-01-03 22:31:10.371',NULL),
('49770460-8d52-4931-a39e-186140453642','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 15:13:24.877','2025-09-29 15:13:24.877','2025-09-29 15:13:24.877','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.519','2025-10-17 10:53:07.436',NULL),
('49b85380-482c-4709-8204-22ca5d019dc4','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:18:54.761','2025-02-07 11:18:54.761','2025-02-07 11:18:54.761','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:25:54.031','2025-02-15 11:10:43.033',NULL),
('49b8e7b2-5e19-4761-8030-89f2d3fdf1f6','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 09:16:25.197','2025-08-12 09:16:25.197','2025-08-12 09:16:25.197','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.564','2025-08-21 08:12:56.966',NULL),
('49ba007d-25e0-4b07-976a-ea2dc1960d96','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-30 17:20:13.177','2025-06-30 17:20:13.177','2025-06-30 17:20:13.177','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.193','2025-07-07 11:44:52.737',NULL),
('49cdea6e-5f18-43b8-a3ed-0b8d127c518e','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 12:21:34.017','2025-08-21 12:21:34.017','2025-08-21 12:21:34.017','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 13:52:01.478','2025-09-06 09:41:31.917',NULL),
('49e93747-2eb1-415b-ba5e-22013102ef14','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-17 16:53:47.952','2025-06-17 16:53:47.952','2025-06-17 16:53:47.952','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.748','2025-07-16 14:21:29.539',NULL),
('4a1dd8d1-490d-495d-a5f5-bbd8aed6ebc2','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:00:25.637','2024-12-07 09:00:25.637','2024-12-07 09:00:25.637','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:04:36.537','2024-12-17 19:52:32.923',NULL),
('4a1fa38a-78e2-406f-bd06-3d3c3b2d8cd5','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:49:04.366','2024-05-04 07:49:04.366','2024-05-04 07:49:04.366','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:54:25.127','2024-05-04 07:54:25.127',NULL),
('4a57bb59-1671-4c28-913d-dfff43244781','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-11-14 14:11:53.591','2024-11-14 14:11:53.591','2024-11-14 14:11:53.591','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 14:14:36.907','2024-11-15 17:01:06.877',NULL),
('4a6e5c82-8ccc-41b0-bf3f-b36334bdc749','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-10 22:48:33.190','2025-04-10 22:48:33.190','2025-04-10 22:48:33.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:50:25.917','2025-04-26 07:32:55.526',NULL),
('4a87b0fd-0b10-47e8-aa6b-23e28f9d6f98','a42d8839-caef-4422-888f-cbfdf4188c5b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-19 11:36:03.745','2024-11-19 11:36:03.745','2024-11-19 11:36:03.745','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-19 11:37:33.032','2024-12-02 09:51:49.519',NULL),
('4ac07205-4bba-4063-97d9-8f0673b44c65','1a63399e-9dca-4c70-be0e-e8e8a874b582','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:49:31.317','2024-09-05 15:49:31.317','2024-09-05 15:49:31.317','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:54:27.415','2024-09-05 15:54:27.415',NULL),
('4b6e11f0-117a-421a-803a-679270502744','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 08:16:29.603','2025-10-13 08:16:29.603','2025-10-13 08:16:29.603','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.540','2025-10-25 08:58:44.099',NULL),
('4b863e49-6340-4d92-a1d6-681c3d606e35','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 09:21:11.104','2025-08-28 09:21:11.104','2025-08-28 09:21:11.104','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.755','2025-09-02 14:46:19.230',NULL),
('4b935bc6-8165-4431-8f52-8d93118250c4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-19 16:15:07.979','2025-04-19 16:15:07.979','2025-04-19 16:15:07.979','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.626',NULL),
('4b9d2ff2-100f-4753-b38a-86ed9d6f05c6','27cbce83-310c-4e98-830f-7433b10c2efd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-19 14:09:42.231','2025-08-19 14:09:42.231','2025-08-19 14:09:42.231','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.223','2025-08-25 16:32:32.219',NULL),
('4bbeaa3c-d69a-4511-bef9-e11be2c93bfa','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-06 10:24:19.868','2024-11-06 10:24:19.868','2024-11-06 10:24:19.868','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:26:51.037','2024-11-08 18:07:47.282',NULL),
('4bee2ac9-3546-469a-9ffc-aec223b786ec','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 10:54:12.836','2025-03-06 10:54:12.836','2025-03-06 10:54:12.836','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:40:51.326','2025-03-12 19:01:22.541',NULL),
('4c02d81b-893d-4d1c-a688-e48c9fe148c0','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:18:06.608','2024-06-08 07:18:06.608','2024-06-08 07:18:06.608','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:20:23.361','2024-06-10 11:59:39.842',NULL),
('4c145c2e-d715-4a32-ba16-3154e507f4e7','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-07 10:09:21.826','2024-10-07 10:09:21.826','2024-10-07 10:09:21.826','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 10:27:01.769','2024-12-09 08:24:38.631',NULL),
('4c4b0ffa-c895-49db-ba53-43e6ce9dbf39','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 06:54:42.423','2024-03-16 06:54:42.423','2024-03-16 06:54:42.423','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 06:59:17.389','2024-03-16 06:59:17.389',NULL),
('4c5451d6-31c8-4252-bae0-facc3c5808ec','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 10:40:04.540','2025-09-06 10:40:04.540','2025-09-06 10:40:04.540','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.373','2025-09-12 17:16:02.731',NULL),
('4c5e0e84-98f4-4f37-84f3-802c3adad96a','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 14:51:39.233','2024-11-21 14:51:39.233','2024-11-21 14:51:39.233','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 14:53:53.271','2024-12-09 17:29:20.094',NULL),
('4cd3d3cb-3f1d-48b9-80e8-45ee2452357f','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:09:11.710','2024-03-30 09:09:11.710','2024-03-30 09:09:11.710','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:11:56.916','2024-03-30 09:13:04.839',NULL),
('4cecd0c2-58d2-44c9-ab4e-da8a1f03db6a','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 13:04:42.086','2025-01-09 13:04:42.086','2025-01-09 13:04:42.086','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:48:36.714','2025-01-22 09:40:15.644',NULL),
('4cf3a81b-f99c-4faf-97d3-d35991c49363','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:40:44.698','2024-07-20 10:40:44.698','2024-07-20 10:40:44.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:42:26.356','2024-07-20 10:42:26.356',NULL),
('4cf5ccf9-d255-43f6-9589-ae0acd78ec88','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-14 08:08:13.623','2025-05-14 08:08:13.623','2025-05-14 08:08:13.623','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.077',NULL),
('4d2e46c1-bdcb-452f-af01-9473d9db5d97','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:27:59.932','2024-12-17 14:27:59.932','2024-12-17 14:27:59.932','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:06:48.296','2025-01-11 10:16:46.041',NULL),
('4d4d651a-a325-40bf-bac5-43656c0e7a48','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 08:08:28.554','2025-09-18 08:08:28.554','2025-09-18 08:08:28.554','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.288','2025-10-02 11:05:59.117',NULL),
('4d706973-f6f7-45ce-8730-14844dd63179','02756ab4-fa8a-408f-b81c-76a84dc82d6f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:22:20.182','2024-06-08 07:22:20.182','2024-06-08 07:22:20.182','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:23:00.664','2024-06-08 10:05:33.577',NULL),
('4d7c9b85-4022-43c1-813f-53a621e3d87e','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 07:23:47.197','2025-01-24 07:23:47.197','2025-01-24 07:23:47.197','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:32:41.996','2025-02-24 20:28:04.617',NULL),
('4d875d47-657e-4bce-9844-5fd2909c13f1','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-24 10:49:41.155','2025-06-24 10:49:41.155','2025-06-24 10:49:41.155','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:22:40.569','2025-07-26 08:40:12.426',NULL),
('4d8a62ad-f170-4b5b-8e7c-814a143733d0','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-15 14:26:37.666','2024-03-15 14:26:37.666','2024-03-15 14:26:37.666','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-15 14:28:17.728','2024-03-16 06:31:15.776','2024-03-16 06:31:15.774'),
('4e20e6bb-25a6-4025-9101-8edccd9cf651','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-23 14:41:41.883','2025-06-23 14:41:41.883','2025-06-23 14:41:41.883','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.762','2025-07-16 14:21:29.621',NULL),
('4e2ed7ba-3544-4eb2-a938-05efc8e93313','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 12:38:34.056','2025-09-23 12:38:34.056','2025-09-23 12:38:34.056','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.816','2025-10-03 16:08:51.137',NULL),
('4e3ae7e4-9872-457c-93ed-90d78e8b0a9d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 08:08:43.202','2025-03-27 08:08:43.202','2025-03-27 08:08:43.202','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.880',NULL),
('4e40b15c-d883-4bc6-90b4-a8b7dc758533','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-19 08:27:28.288','2025-09-19 08:27:28.288','2025-09-19 08:27:28.288','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.866','2025-10-01 07:56:23.176',NULL),
('4e40dec0-ef05-498a-bf4c-60fd02cc3166','853c3488-15ac-4631-aa14-318dedb447a4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-26 13:35:50.246','2024-08-26 13:35:50.246','2024-08-26 13:35:50.246','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-26 13:51:55.880','2024-09-04 07:29:12.102',NULL),
('4eea4728-a0e1-4939-907c-9b58b600f8ae','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 15:07:35.906','2024-08-20 15:07:35.906','2024-08-20 15:07:35.906','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 15:07:51.091','2024-09-07 13:25:52.251',NULL),
('4eedd803-c2eb-4c64-a1a1-e22c19942b43','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 14:49:44.385','2025-08-13 14:49:44.385','2025-08-13 14:49:44.385','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.569','2025-09-24 13:41:15.096',NULL),
('4f279425-41cc-4fd9-940e-5063e9bc78fe','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:02:33.387','2025-07-08 11:02:33.387','2025-07-08 11:02:33.387','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.326','2025-07-08 11:33:15.251',NULL),
('4f3d8570-8d32-4a3a-b44e-ef4422d28a5d','c904b27b-bbae-4aa4-8662-a377929d7338','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-03 08:36:38.663','2025-03-03 08:36:38.663','2025-03-03 08:36:38.663','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:17:40.312','2025-03-06 10:36:11.596',NULL),
('4f861fb2-0954-4278-a838-17a149be2b00','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-09 15:04:41.968','2024-12-09 15:04:41.968','2024-12-09 15:04:41.968','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.365',NULL),
('4f8da0c1-3fcb-4cdb-b5f4-f57232a61c33','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:30:49.582','2024-12-20 12:30:49.582','2024-12-20 12:30:49.582','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.291',NULL),
('4f948610-0734-4a29-b67e-03a6652cc72a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 07:19:58.088','2025-04-25 07:19:58.088','2025-04-25 07:19:58.088','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.761',NULL),
('4fa4655d-c104-4aab-a89c-457d42300bc0','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 11:33:28.314','2025-09-23 11:33:28.314','2025-09-23 11:33:28.314','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.319','2025-10-22 11:29:52.789',NULL),
('4faee337-4fd3-4e54-bf9d-7d251d9104f5','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 08:33:18.055','2025-01-03 08:33:18.055','2025-01-03 08:33:18.055','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:31:51.796','2025-01-29 12:24:52.591',NULL),
('4fd83fb1-956a-48a1-b8da-68279a2b48c7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 11:51:49.042','2025-02-24 11:51:49.042','2025-02-24 11:51:49.042','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:49:23.620','2025-03-29 13:56:05.420',NULL),
('4feb3baa-c215-47eb-aa41-c9862ac2d932','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:44:11.719','2024-05-10 06:44:11.719','2024-05-10 06:44:11.719','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:45:44.585','2024-05-10 08:25:31.168',NULL),
('4fee9b90-3dec-4899-89d6-ae9fbb2ff676','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-19 09:21:13.128','2025-06-19 09:21:13.128','2025-06-19 09:21:13.128','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 14:59:11.880','2025-06-27 08:25:57.888',NULL),
('4ffcba37-04c7-4ca0-93d4-4fe421b08f8e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 08:14:34.749','2025-01-02 08:14:34.749','2025-01-02 08:14:34.749','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.377',NULL),
('500653b3-0582-44d8-9422-0ded7990ae75','52840269-0db7-4c57-8a50-57d49049f342','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-09 05:08:27.221','2025-05-09 05:08:27.221','2025-05-09 05:08:27.221','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.503',NULL),
('50088551-8c2f-4d2d-8b49-58a815e6add2','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-16 07:44:32.357','2025-07-16 07:44:32.357','2025-07-16 07:44:32.357','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.867','2025-07-22 16:18:49.551',NULL),
('5024a2ef-9e11-4ebc-89ab-1031e5b28b39','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-12 14:20:38.909','2025-06-12 14:20:38.909','2025-06-12 14:20:38.909','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.824','2025-07-07 11:44:52.846',NULL),
('504489a9-22aa-4fa0-b046-5f6f9e6afd36','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 08:55:02.056','2024-10-02 08:55:02.056','2024-10-02 08:55:02.056','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 08:58:26.367','2024-10-02 08:58:26.367',NULL),
('50724e0d-65a3-4d85-bb8b-f6fb8b936688','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-08 07:23:54.318','2025-09-08 07:23:54.318','2025-09-08 07:23:54.318','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.793','2025-10-03 16:08:51.112',NULL),
('507311fe-16b8-497a-9d6b-bda69f8a016b','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:12:08.955','2025-04-09 08:12:08.955','2025-04-09 08:12:08.955','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.514',NULL),
('50ba41d2-d0a2-4e23-9b6a-b85355d719ab','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-19 21:29:01.000','2025-02-19 21:29:01.000','2025-02-19 21:29:01.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.058',NULL),
('51159a4a-e06c-4789-bd84-a72c1ce60b95','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 09:24:32.292','2025-01-06 09:24:32.292','2025-01-06 09:24:32.292','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.490',NULL),
('512485e7-5e5b-4c8c-b28c-ca9f6a584152','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:56:12.296','2025-04-24 07:56:12.296','2025-04-24 07:56:12.296','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.921',NULL),
('5138e549-9e38-4565-befa-a4e0b462a473','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-03 14:29:21.213','2024-07-03 14:29:21.213','2024-07-03 14:29:21.213','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-03 14:29:48.218','2024-07-03 14:29:48.218',NULL),
('51593629-7f60-4036-8bde-373ebd599f27','1a63399e-9dca-4c70-be0e-e8e8a874b582','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:39:58.665','2024-09-27 11:39:58.665','2024-09-27 11:39:58.665','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:42:30.192','2024-09-27 13:47:14.985',NULL),
('51646b2c-5f9a-428a-a5db-ccd63a55f013','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-29 13:28:11.041','2024-11-29 13:28:11.041','2024-11-29 13:28:11.041','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-29 13:28:58.232','2024-12-09 17:29:20.226',NULL),
('516bf841-16f8-40aa-b38c-aef711014b8d','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-16 08:56:35.781','2025-04-16 08:56:35.781','2025-04-16 08:56:35.781','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.002',NULL),
('517770ed-5b12-4c59-98e8-74a84f94efe7','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-23 12:03:46.657','2025-02-23 12:03:46.657','2025-02-23 12:03:46.657','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:11:56.360','2025-03-02 04:33:53.241',NULL),
('519c7a2b-96ae-4abd-b073-1cf8c43fd133','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-05 13:56:02.836','2025-01-05 13:56:02.836','2025-01-05 13:56:02.836','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:00:42.571','2025-01-07 17:06:26.326',NULL),
('51a4ddfe-9ee4-41c8-94f2-27fbc31b69e2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 10:51:35.785','2025-03-06 10:51:35.785','2025-03-06 10:51:35.785','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:35:30.206','2025-03-11 07:46:42.025',NULL),
('51a8d08b-6aad-44ea-b916-cf0716b7aa4d','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:01:21.965','2024-07-20 10:01:21.965','2024-07-20 10:01:21.965','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:02:51.200','2024-07-20 10:02:51.200',NULL),
('51cc6e97-5653-4180-a321-6a9ec48239ad','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 07:35:30.471','2025-03-04 07:35:30.471','2025-03-04 07:35:30.471','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-11 14:16:19.289','2025-03-15 09:47:16.106',NULL),
('520ac729-3738-416f-813e-c6d56af1d8c4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-26 07:23:44.594','2025-07-26 07:23:44.594','2025-07-26 07:23:44.594','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.253','2025-07-26 08:40:12.296',NULL),
('52394fe2-4b9a-4491-be58-be27c7370ae2','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:39:04.849','2025-04-17 15:39:04.849','2025-04-17 15:39:04.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.479',NULL),
('525e753a-179d-4b40-9976-722b155792d8','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:40:35.966','2025-06-16 09:40:35.966','2025-06-16 09:40:35.966','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.531','2025-07-01 09:19:39.024',NULL),
('52605aef-47cc-4f42-983c-aba917226c61','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:40:34.524','2025-09-24 12:40:34.524','2025-09-24 12:40:34.524','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.603','2025-10-07 15:17:28.558',NULL),
('52634e5a-7d34-4b96-9d47-05b36f29148a','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 17:49:46.396','2025-09-05 17:49:46.396','2025-09-05 17:49:46.396','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.064','2025-09-06 09:41:31.824',NULL),
('52b47086-15ec-477f-ada1-b755ef05f2d6','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-21 09:21:28.940','2025-10-21 09:21:28.940','2025-10-21 09:21:28.940','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.370','2025-10-25 08:58:44.056',NULL),
('52b93338-28bd-47bf-ac5f-303c5aeff434','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 07:38:14.674','2025-07-30 07:38:14.674','2025-07-30 07:38:14.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.228','2025-08-12 08:07:30.356',NULL),
('52c86c58-0eba-4428-a0d0-cfd6207804de','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 08:46:22.240','2025-04-25 08:46:22.240','2025-04-25 08:46:22.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.262',NULL),
('52dd21ca-b18b-465c-bee9-6585096f0e96','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 07:52:20.292','2025-05-08 07:52:20.292','2025-05-08 07:52:20.292','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.915',NULL),
('52e3c8d8-a3f1-4ff4-aa88-29be042aa0eb','27cbce83-310c-4e98-830f-7433b10c2efd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 20:29:25.253','2025-08-22 20:29:25.253','2025-08-22 20:29:25.253','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.209','2025-08-25 12:11:45.728',NULL),
('52eb8fd9-6948-41f4-996f-2006408cd1bf','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','89428e9c-4d02-45c3-a044-0b2a5ac2465d','2024-11-06 19:55:42.694','2024-11-06 19:55:42.694','2024-11-06 19:55:42.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 20:04:11.203','2024-11-26 12:32:54.947',NULL),
('53005910-fbf3-4618-800d-d908352115a2','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:14:08.376','2024-08-07 14:14:08.376','2024-08-07 14:14:08.376','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:16:11.617','2024-08-07 14:16:11.617',NULL),
('535e145c-03a1-414b-95ff-81e2fbd3f62b','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 08:32:08.590','2024-08-30 08:32:08.590','2024-08-30 08:32:08.590','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 08:35:28.528','2024-08-31 13:18:37.205',NULL),
('53b2be9b-58ce-4618-b7c7-205bfee6c873','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-14 19:34:44.499','2024-11-14 19:34:44.499','2024-11-14 19:34:44.499','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 19:35:43.582','2024-11-19 08:14:33.336','2024-11-19 08:14:33.338'),
('53c910c4-c251-4fd7-b821-088278a331ab','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-04 08:48:06.968','2024-11-04 08:48:06.968','2024-11-04 08:48:06.968','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-04 08:50:11.606','2024-11-08 17:26:20.141',NULL),
('53d79dc6-32f5-41d8-a80a-25249f63e654','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:15:51.067','2025-04-09 08:15:51.067','2025-04-09 08:15:51.067','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.236',NULL),
('53e1cbaa-905d-48cd-a7e8-8f9a5be8b019','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-18 08:18:52.801','2025-01-18 08:18:52.801','2025-01-18 08:18:52.801','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.612',NULL),
('53f78a39-097f-4f4f-a187-2d465cbd1c3b','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:50:43.641','2024-03-30 09:50:43.641','2024-03-30 09:50:43.641','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:53:26.624','2024-04-01 16:45:26.538',NULL),
('54163e2a-0ce2-4099-8346-89e0fd6afae6','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 09:58:44.726','2025-01-13 09:58:44.726','2025-01-13 09:58:44.726','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:48:36.714','2025-01-22 09:40:15.691',NULL),
('5424d0b6-4ce6-486f-9529-1d67554f64a1','b0c1192a-7d38-4b69-a901-778f65a98b9d','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-15 12:22:39.218','2025-08-15 12:22:39.218','2025-08-15 12:22:39.218','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.336','2025-09-12 17:16:02.626',NULL),
('5462bcf2-bf5f-4307-a41e-ab4de244f601','7a22d421-75df-4ab0-a87f-63e0a71155c0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:43:14.307','2024-06-08 07:43:14.307','2024-06-08 07:43:14.307','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:44:46.141','2024-06-10 10:14:53.807',NULL),
('548b6cef-f934-496f-a4c8-3085c0650bc5','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-22 07:38:22.686','2025-10-22 07:38:22.686','2025-10-22 07:38:22.686','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.134','2025-10-22 11:29:52.886',NULL),
('54a7176f-6e53-40ef-b2b3-738f4e8b93cd','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-19 11:10:28.005','2025-03-19 11:10:28.005','2025-03-19 11:10:28.005','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:28:09.180','2025-04-02 18:57:11.091',NULL),
('54b57d86-0b76-4517-8215-645225061412','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:52:31.855','2024-05-10 06:52:31.855','2024-05-10 06:52:31.855','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:54:19.374','2024-05-11 08:09:10.507',NULL),
('54bd6d05-8a78-412f-bccd-604e3f103b8a','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-11 18:42:34.405','2025-02-11 18:42:34.405','2025-02-11 18:42:34.405','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.172',NULL),
('54d2c6be-74c8-4d40-98f5-0f6519efa76d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 11:47:17.386','2025-03-25 11:47:17.386','2025-03-25 11:47:17.386','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:49:23.620','2025-03-29 13:56:05.352',NULL),
('54d6c712-3107-427d-853f-f27245e3fb99','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 08:17:16.496','2025-07-31 08:17:16.496','2025-07-31 08:17:16.496','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:46:42.701','2025-08-14 08:02:29.811',NULL),
('55037891-bf38-489d-a3b7-c2afe9af8749','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-15 14:13:44.129','2024-03-15 14:13:44.129','2024-03-15 14:13:44.129','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-15 14:17:32.071','2024-03-18 07:23:44.339',NULL),
('551c2933-ccc3-4e34-a24a-238d635afbe1','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 11:45:03.348','2025-09-22 11:45:03.348','2025-09-22 11:45:03.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-09 08:36:32.959','2025-10-09 08:39:37.019',NULL),
('55391962-7052-40fc-a054-b77a105f55df','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-04 15:10:33.080','2024-09-04 15:10:33.080','2024-09-04 15:10:33.080','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-04 15:12:09.270','2024-09-09 11:25:29.216',NULL),
('554dbe0c-58dc-4691-81df-86b936b79a52','4126da30-ba9b-41b7-be29-865069aa484c','d03032cd-3542-403b-975d-f781dffab494','2024-10-07 18:11:53.610','2024-10-07 18:11:53.610','2024-10-07 18:11:53.610','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 18:12:34.844','2024-10-11 08:53:39.745','2024-10-11 08:53:39.751'),
('555b3208-ebf0-42cf-8f56-52fbd4f8161c','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-19 12:17:02.641','2024-09-19 12:17:02.641','2024-09-19 12:17:02.641','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-19 12:24:13.988','2024-09-28 16:15:00.130',NULL),
('5577e80f-7480-4885-96a5-1ea90304bf2d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 14:03:07.488','2025-06-12 14:03:07.488','2025-06-12 14:03:07.488','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.740','2025-07-16 14:21:29.571',NULL),
('55797e19-3704-4cf2-8219-aa61a0020dec','338e8c09-4ca5-4617-bfc1-a0692646d475','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-02 09:26:46.793','2025-08-02 09:26:46.793','2025-08-02 09:26:46.793','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.964','2025-09-03 06:09:36.741',NULL),
('5582b4dd-a8bb-47df-b292-f4518d510608','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-15 13:32:50.569','2025-10-15 13:32:50.569','2025-10-15 13:32:50.569','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.584','2025-10-22 12:43:49.244',NULL),
('5592812d-08c0-4dfb-b737-acba8b4f7e80','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-08 08:57:45.083','2025-05-08 08:57:45.083','2025-05-08 08:57:45.083','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.512',NULL),
('5593321f-c0b2-4973-8a1b-2908091e61be','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-21 18:18:40.670','2025-07-21 18:18:40.670','2025-07-21 18:18:40.670','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.478','2025-07-29 12:37:20.439',NULL),
('559aa7d7-f272-469c-ae6a-68bbe16e9b47','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 13:26:29.660','2025-02-24 13:26:29.660','2025-02-24 13:26:29.660','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.109',NULL),
('55a2c8c0-d0f7-48b7-ae6e-3eeab310cb6b','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-05 10:29:57.467','2025-05-05 10:29:57.467','2025-05-05 10:29:57.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.652',NULL),
('55c126fd-e716-4c1e-b587-8eb51c6c57ff','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 06:52:41.631','2025-10-01 06:52:41.631','2025-10-01 06:52:41.631','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.466','2025-10-04 10:50:24.453',NULL),
('55d355a8-54f0-4144-b02f-f5c09babd8ed','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:35:51.118','2024-05-04 09:35:51.118','2024-05-04 09:35:51.118','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:37:04.639','2024-05-04 09:37:04.639',NULL),
('5609eb49-6000-4338-a5b6-ebaf0535e8e8','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-26 17:29:16.553','2025-05-26 17:29:16.553','2025-05-26 17:29:16.553','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.774',NULL),
('5627ca11-92d0-43f5-9402-37ffe49a3bb7','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-14 13:02:41.173','2025-01-14 13:02:41.173','2025-01-14 13:02:41.173','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.649',NULL),
('562ac396-ef3f-4423-a11d-5080eefef710','f16e28e8-ecf2-4674-b000-e55b2609d558','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 08:56:34.687','2024-08-30 08:56:34.687','2024-08-30 08:56:34.687','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 09:00:24.426','2024-09-08 08:56:55.784',NULL),
('5665d272-1c20-4590-98a4-6d4d9fbf1784','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:50:10.915','2024-06-08 07:50:10.915','2024-06-08 07:50:10.915','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:51:49.771','2024-06-10 10:13:46.636',NULL),
('56b22ce8-1d5b-45c5-9b25-18fda6058caa','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 08:41:29.636','2025-03-21 08:41:29.636','2025-03-21 08:41:29.636','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:38:29.860','2025-04-15 14:54:58.217',NULL),
('56c49fe3-6add-413e-a108-be447709b5da','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-30 06:44:39.203','2025-06-30 06:44:39.203','2025-06-30 06:44:39.203','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.819','2025-07-07 11:44:52.690',NULL),
('56d24767-29f9-4c2e-88ff-87f5fc1d85e7','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-11 08:11:00.959','2024-12-11 08:11:00.959','2024-12-11 08:11:00.959','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:50:36.282','2024-12-27 12:23:49.391',NULL),
('56df11ec-6fa5-404b-8fd4-15ac1fa585c3','6b16eb99-81b1-4306-b528-e41ae9bc90b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-26 13:31:23.023','2024-07-26 13:31:23.023','2024-07-26 13:31:23.023','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-26 13:33:38.691','2024-08-07 14:55:33.646',NULL),
('56df6d4f-c423-4e27-b71c-62c9e7950130','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 07:42:30.190','2025-10-01 07:42:30.190','2025-10-01 07:42:30.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.967','2025-10-14 08:52:36.810',NULL),
('56e349ce-7de5-4b4b-afd5-c9fdc8a5abaf','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-16 10:54:55.347','2025-01-16 10:54:55.347','2025-01-16 10:54:55.347','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:50:13.401','2025-02-11 17:09:06.600',NULL),
('56e7cf28-72b6-4642-b914-e1d341478124','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-22 12:47:19.569','2025-05-22 12:47:19.569','2025-05-22 12:47:19.569','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:32:31.764','2025-05-26 13:23:22.456',NULL),
('56f58bc2-a78c-43e6-afed-be9170c0ea79','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-23 22:00:07.122','2025-07-23 22:00:07.122','2025-07-23 22:00:07.122','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:12:50.079','2025-07-30 17:56:16.971',NULL),
('56fa557e-d21f-4d32-b6c0-fe805f4b34d3','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-29 07:58:38.444','2025-08-29 07:58:38.444','2025-08-29 07:58:38.444','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:46:30.865','2025-09-12 17:16:02.563',NULL),
('571abcda-4135-4ae7-9f60-47460ec5fc60','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 12:47:41.182','2025-08-18 12:47:41.182','2025-08-18 12:47:41.182','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.853','2025-09-02 14:46:19.333',NULL),
('573d1f6a-bcd7-4c0d-98d9-dc1c40ff9d9d','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 21:18:48.122','2024-04-07 21:18:48.122','2024-04-07 21:18:48.122','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 21:20:18.680','2024-04-08 10:39:17.623',NULL),
('575b8856-4c7f-4bf4-84e4-de3d36792c11','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 10:34:41.197','2025-01-09 10:34:41.197','2025-01-09 10:34:41.197','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.411',NULL),
('5762df4b-04a4-4897-a9f8-76b9f071d639','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-15 12:48:59.817','2025-10-15 12:48:59.817','2025-10-15 12:48:59.817','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.541','2025-10-22 14:07:51.573',NULL),
('57642635-5817-4cfa-bd04-db8c6ed1604d','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:01:30.000','2024-12-07 09:01:30.000','2024-12-07 09:01:30.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:04:36.537','2024-12-17 19:52:32.916',NULL),
('57664c70-313c-44a3-823c-312660687435','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 11:40:42.364','2025-08-21 11:40:42.364','2025-08-21 11:40:42.364','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:10:41.296','2025-09-05 08:55:11.221',NULL),
('5768237b-519a-40d2-a72a-c0b240222ff1','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-25 13:53:32.430','2025-07-25 13:53:32.430','2025-07-25 13:53:32.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.504','2025-07-29 12:37:20.386',NULL),
('576d8cde-6641-43af-b7eb-1082cca51287','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-20 13:23:53.738','2025-01-20 13:23:53.738','2025-01-20 13:23:53.738','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.628',NULL),
('57766e6d-3fec-4983-8709-d375d4ea075b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-11 08:27:19.441','2025-03-11 08:27:19.441','2025-03-11 08:27:19.441','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:35:54.252','2025-04-15 14:54:58.277',NULL),
('5784eecb-d6e5-4bf8-bcf8-4ca15a66ddc0','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-09 11:35:52.599','2024-11-09 11:35:52.599','2024-11-09 11:35:52.599','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-09 11:42:20.299','2024-11-12 16:07:55.137',NULL),
('57bb4b0b-3ae4-47b5-b749-e7511a1971c1','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 11:29:57.056','2025-09-18 11:29:57.056','2025-09-18 11:29:57.056','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.533','2025-10-17 10:53:07.453',NULL),
('57c0f97b-e20a-4a89-a4f0-d02b703cce8a','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 07:46:24.434','2025-07-01 07:46:24.434','2025-07-01 07:46:24.434','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.707','2025-07-16 14:21:29.502',NULL),
('57db16e6-cfb9-46a9-8b67-4de40077f724','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 11:40:59.741','2024-10-11 11:40:59.741','2024-10-11 11:40:59.741','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 11:47:05.043','2024-10-14 08:49:58.295',NULL),
('57e901aa-de61-44a5-a4fd-4993e20cf5a0','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-21 12:44:05.467','2025-08-21 12:44:05.467','2025-08-21 12:44:05.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.110','2025-09-06 09:41:31.933',NULL),
('5803cd6e-300f-4742-a00f-60a734b1f6e3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 10:49:38.598','2025-04-22 10:49:38.598','2025-04-22 10:49:38.598','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.588',NULL),
('580df4fb-341f-4a43-a8ae-3db97ee4daa1','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 13:51:36.920','2025-03-09 13:51:36.920','2025-03-09 13:51:36.920','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-03-29 13:37:01.752',NULL),
('586a35bd-b1ca-48c8-8f72-1319ee6bef0e','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-12 06:31:53.818','2025-09-12 06:31:53.818','2025-09-12 06:31:53.818','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.375','2025-09-18 15:48:17.500',NULL),
('586dbd9d-0671-43ac-8b25-4238fd37d234','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-25 14:30:46.044','2025-08-25 14:30:46.044','2025-08-25 14:30:46.044','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.532','2025-09-26 12:27:42.373',NULL),
('58807499-1181-4aaa-9971-ad5446836d42','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:15:19.493','2024-12-20 12:15:19.493','2024-12-20 12:15:19.493','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.340',NULL),
('58a9711e-f9e3-46be-9711-beb324e221d8','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 11:57:49.721','2025-01-03 11:57:49.721','2025-01-03 11:57:49.721','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:51:16.891','2025-01-07 17:06:26.358',NULL),
('58aebbef-16f2-42bd-9c1b-69c63b059fd9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:29:02.598','2024-12-17 14:29:02.598','2024-12-17 14:29:02.598','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:06:48.296','2025-01-11 10:16:46.008',NULL),
('58b0e7ae-7c23-496e-b105-5b7afd326926','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-02 15:21:50.946','2025-07-02 15:21:50.946','2025-07-02 15:21:50.946','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.184','2025-08-12 08:07:30.288',NULL),
('58b7f004-d477-4e62-a7d5-93f6ce659552','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 15:52:12.810','2025-07-01 15:52:12.810','2025-07-01 15:52:12.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.273','2025-07-16 14:21:29.509',NULL),
('58c30cae-6c96-4615-98f7-c24793933481','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-24 08:22:35.555','2025-04-24 08:22:35.555','2025-04-24 08:22:35.555','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:19:23.965','2025-06-06 02:46:03.954',NULL),
('58dec017-e22f-4466-a963-30bfa706d235','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 08:10:41.252','2025-07-23 08:10:41.252','2025-07-23 08:10:41.252','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.204','2025-08-30 08:14:47.125',NULL),
('593c44d7-9ec9-4042-9cb5-c9981a2ea61d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:55:15.603','2024-12-28 14:55:15.603','2024-12-28 14:55:15.603','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:58:26.916','2025-01-06 20:08:12.900',NULL),
('594caa77-e684-4733-b1b7-457fda68d364','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 14:56:20.877','2024-08-20 14:56:20.877','2024-08-20 14:56:20.877','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 14:56:43.761','2024-08-25 15:18:13.999',NULL),
('598e7491-d0b6-4646-8b05-b14dc361f174','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-29 10:55:30.728','2025-08-29 10:55:30.728','2025-08-29 10:55:30.728','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.161','2025-09-10 12:48:00.827',NULL),
('5a13d27a-2e49-42c9-a5aa-c112eeaac412','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 09:32:44.338','2025-01-13 09:32:44.338','2025-01-13 09:32:44.338','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.621',NULL),
('5a43bbc2-e61b-4333-97a2-15f21a7c5290','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-26 19:43:21.026','2025-05-26 19:43:21.026','2025-05-26 19:43:21.026','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.942',NULL),
('5a43d1bd-8283-4ff3-a59e-ac3ee79bede4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:16:01.794','2025-06-16 09:16:01.794','2025-06-16 09:16:01.794','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.523','2025-07-01 09:19:39.039',NULL),
('5a49a9fc-d6be-4aae-9aac-0914249dd363','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-10 12:38:09.135','2024-09-10 12:38:09.135','2024-09-10 12:38:09.135','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-10 12:39:47.877','2024-09-18 21:33:15.662',NULL),
('5a622fb6-5cd2-409b-bd73-a6e58be2cb51','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-20 09:32:55.829','2025-08-20 09:32:55.829','2025-08-20 09:32:55.829','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.203','2025-08-25 12:11:45.750',NULL),
('5a8d2144-3755-4406-839e-25417da63e2a','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-12 07:18:52.000','2025-05-12 07:18:52.000','2025-05-12 07:18:52.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:19:23.965','2025-06-06 02:46:03.900',NULL),
('5aa651cf-e32b-4a10-b2c6-27ecbf7efe22','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 09:02:57.828','2025-03-06 09:02:57.828','2025-03-06 09:02:57.828','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:14:13.813',NULL),
('5adf6e62-5643-42f9-940e-4c61d656a52a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-31 13:54:43.895','2025-07-31 13:54:43.895','2025-07-31 13:54:43.895','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.417','2025-08-12 08:07:30.372',NULL),
('5b252a25-5a2c-45b8-a766-6166a497bde6','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 11:56:19.362','2024-10-17 11:56:19.362','2024-10-17 11:56:19.362','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:04:31.175','2024-10-17 12:04:31.175',NULL),
('5b2bacdc-6c81-4555-8333-97b11579992c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 08:24:35.366','2025-09-24 08:24:35.366','2025-09-24 08:24:35.366','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.342','2025-10-25 08:58:44.050',NULL),
('5b7bb8f6-8a78-4deb-939c-42abd95814b5','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-29 12:39:53.831','2024-08-29 12:39:53.831','2024-08-29 12:39:53.831','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-29 12:41:39.981','2024-09-05 16:09:09.852',NULL),
('5b8e2095-6d07-4b4f-9e0c-c8b67aaf6027','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 13:22:26.540','2025-08-21 13:22:26.540','2025-08-21 13:22:26.540','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.816','2025-09-20 13:34:16.262',NULL),
('5b9d972f-4851-4d21-b0ae-561d85d0e338','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 09:02:51.058','2025-08-18 09:02:51.058','2025-08-18 09:02:51.058','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:42:17.236','2025-08-25 12:11:45.736',NULL),
('5babc687-7dde-4be1-bb01-9b75efdda902','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:06:40.718','2025-06-11 20:06:40.718','2025-06-11 20:06:40.718','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:34:09.617','2025-06-18 08:08:50.270',NULL),
('5bfbaa05-c0da-4c27-a841-5b78034a261f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-22 07:51:33.770','2025-08-22 07:51:33.770','2025-08-22 07:51:33.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.152','2025-09-10 12:48:00.763',NULL),
('5c47953e-f614-4fa8-be60-a971f8c35879','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:33:15.628','2025-07-01 10:33:15.628','2025-07-01 10:33:15.628','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.311','2025-07-08 11:33:15.205',NULL),
('5c5a91bc-b037-4b9f-957c-bd5fb1a6145f','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-19 13:01:00.925','2025-05-19 13:01:00.925','2025-05-19 13:01:00.925','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.716',NULL),
('5c75a252-8cf6-4af2-8f5b-8d720dc3e5a2','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 10:03:39.984','2025-02-07 10:03:39.984','2025-02-07 10:03:39.984','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:52:49.800','2025-02-20 12:40:28.821',NULL),
('5c98d62d-5f0a-4ceb-92b0-158200fd52e7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 13:59:21.246','2025-06-12 13:59:21.246','2025-06-12 13:59:21.246','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:43:25.662','2025-06-27 08:25:57.837',NULL),
('5c9b67d8-651c-4e22-ad4a-7398415527e7','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 10:27:10.278','2025-03-08 10:27:10.278','2025-03-08 10:27:10.278','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.400',NULL),
('5c9e4077-4825-479b-8bd1-f90c15081895','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-04 12:30:34.499','2024-10-04 12:30:34.499','2024-10-04 12:30:34.499','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-04 12:32:52.199','2024-10-23 16:32:46.501',NULL),
('5cb20729-b644-4634-81dc-42bf1c44f15c','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-18 14:14:03.802','2024-12-18 14:14:03.802','2024-12-18 14:14:03.802','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:52:00.230','2024-12-27 12:23:49.352',NULL),
('5ccf2a96-19c3-49b6-a651-90867bffb29c','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-19 08:07:57.446','2025-06-19 08:07:57.446','2025-06-19 08:07:57.446','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.182','2025-07-11 08:00:02.572',NULL),
('5ce7580e-f02e-4a6f-9bd5-653a3a959f9f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 09:02:32.240','2024-10-11 09:02:32.240','2024-10-11 09:02:32.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 09:32:57.732','2024-10-11 09:32:57.732',NULL),
('5d0b508d-5edf-4bf2-b9b2-f5a07cea2b72','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-29 09:06:48.794','2025-05-29 09:06:48.794','2025-05-29 09:06:48.794','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-26 09:43:12.538','2025-06-26 16:05:22.692',NULL),
('5d1481b1-b5f6-422d-98d1-5d80c8daf7fe','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-23 15:44:50.824','2025-08-23 15:44:50.824','2025-08-23 15:44:50.824','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.868','2025-09-03 06:09:36.615',NULL),
('5d2dcdf4-4799-4df3-9e0c-c71a940201ca','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-14 06:27:53.783','2025-07-14 06:27:53.783','2025-07-14 06:27:53.783','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.924','2025-07-22 16:18:49.604',NULL),
('5d49e817-57bb-436b-bf4f-426ef46cff63','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 08:25:24.519','2025-06-16 08:25:24.519','2025-06-16 08:25:24.519','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 14:59:11.880','2025-06-27 08:25:57.896',NULL),
('5d94d4a3-4e08-4035-99a7-3a406866728d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 07:28:57.800','2025-05-05 07:28:57.800','2025-05-05 07:28:57.800','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.994',NULL),
('5d967cd3-c194-4bc8-99ae-31d65618478c','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 11:14:17.922','2025-08-18 11:14:17.922','2025-08-18 11:14:17.922','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.772','2025-09-02 14:46:19.238',NULL),
('5dabf294-d7ab-422c-b291-62bc32aee268','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 13:24:27.984','2024-12-13 13:24:27.984','2024-12-13 13:24:27.984','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:26:01.811','2024-12-16 18:41:52.559',NULL),
('5de990fc-79df-43ca-a0d2-f23d781294dc','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-10 15:30:19.995','2024-08-10 15:30:19.995','2024-08-10 15:30:19.995','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-10 15:38:23.162','2024-08-31 18:15:45.034',NULL),
('5e0b7cb7-84fd-4f20-ab1c-573cf298f3ea','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-26 14:50:51.829','2025-06-26 14:50:51.829','2025-06-26 14:50:51.829','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:34:37.131','2025-07-07 11:44:52.794',NULL),
('5e0d6392-cbe3-4a64-90f0-a04cf03accb0','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:15:49.495','2025-04-17 15:15:49.495','2025-04-17 15:15:49.495','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.576',NULL),
('5e1d5d15-2c0c-428c-9272-8842f51c4bea','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-14 14:51:13.464','2025-02-14 14:51:13.464','2025-02-14 14:51:13.464','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:13:18.920','2025-02-15 16:08:16.742',NULL),
('5e2cc9bb-82d4-4079-9686-07f99f712f5e','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-01 10:39:20.234','2024-11-01 10:39:20.234','2024-11-01 10:39:20.234','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-01 10:41:52.747','2024-11-04 13:46:59.958',NULL),
('5e5c2712-8ba1-4b53-9396-330cf0883069','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-15 09:11:36.879','2025-08-15 09:11:36.879','2025-08-15 09:11:36.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.032','2025-09-10 12:48:00.770',NULL),
('5e9fbd33-ee63-4524-8092-f68b8a85f80c','d89f6e4c-ad0d-4d1f-98c2-188a94803196','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-14 06:22:56.000','2025-08-14 06:22:56.000','2025-08-14 06:22:56.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.943','2025-09-03 06:09:36.645',NULL),
('5eca54b9-6ead-4061-8073-2f0cd8dc8346','98ea2dbd-82be-4bbe-b758-b7175c0f8659','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 08:48:12.219','2025-07-30 08:48:12.219','2025-07-30 08:48:12.219','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:03:34.166','2025-08-12 08:07:30.440',NULL),
('5ef8b0c9-2f31-4f8f-8df9-f72b8568eb38','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 13:09:01.577','2025-01-29 13:09:01.577','2025-01-29 13:09:01.577','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:34:53.010','2025-02-15 11:10:43.113',NULL),
('5f2fd016-eeca-4a41-b311-fa8f07109501','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-04 10:42:58.282','2024-12-04 10:42:58.282','2024-12-04 10:42:58.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:53:54.323','2024-12-27 12:23:49.403',NULL),
('5f654163-935d-46e5-8f9a-d152a84dc0fe','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 10:21:00.540','2025-05-05 10:21:00.540','2025-05-05 10:21:00.540','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-08 07:12:24.829','2025-05-16 16:30:10.482',NULL),
('5fa5688d-c678-4a70-ad81-80f28f9fd71b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 08:51:38.092','2025-09-22 08:51:38.092','2025-09-22 08:51:38.092','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.730','2025-10-03 16:08:51.048',NULL),
('5fda7e7c-4a20-4a1e-ab1f-7ac97414effe','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 10:18:59.398','2025-02-24 10:18:59.398','2025-02-24 10:18:59.398','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.622',NULL),
('5fe36437-de00-43ea-af28-8ffa68f3a4b7','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-24 08:29:48.389','2025-06-24 08:29:48.389','2025-06-24 08:29:48.389','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:29:58.555','2025-07-07 11:44:52.731',NULL),
('5fede675-7615-4f34-a59f-ebf7a7768474','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:46:59.849','2024-08-07 14:46:59.849','2024-08-07 14:46:59.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:48:32.570','2024-08-07 15:02:35.016',NULL),
('601588a6-0cfa-4e22-bd23-695fd8cedbc6','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 10:17:37.648','2025-02-27 10:17:37.648','2025-02-27 10:17:37.648','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 10:42:46.210','2025-03-21 17:17:30.166',NULL),
('602d00a3-62d0-4044-bad8-80df398ac7df','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-18 12:42:03.213','2024-11-18 12:42:03.213','2024-11-18 12:42:03.213','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-18 12:44:06.524','2024-12-09 17:29:20.099',NULL),
('603a2d9a-4788-4c52-a635-000a5899a2cf','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 12:29:20.566','2025-01-17 12:29:20.566','2025-01-17 12:29:20.566','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.613',NULL),
('60874263-1f59-4da0-8b42-034316ac8b20','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-13 11:25:17.048','2025-06-13 11:25:17.048','2025-06-13 11:25:17.048','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.249','2025-07-07 11:44:52.718',NULL),
('60945ba0-8523-47b4-90f9-26380789b5f4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 09:19:29.117','2025-03-06 09:19:29.117','2025-03-06 09:19:29.117','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:24:00.109','2025-03-12 19:01:22.490',NULL),
('60a7cc00-f812-4d0b-9b18-8722fed0c3bb','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-20 14:15:57.118','2025-05-20 14:15:57.118','2025-05-20 14:15:57.118','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.819',NULL),
('60a9cf9c-1aa0-4fcb-87ce-dc5f3c2c8a4e','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-26 12:22:10.117','2025-08-26 12:22:10.117','2025-08-26 12:22:10.117','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.289','2025-10-22 11:29:52.844',NULL),
('60b6f448-7a13-444b-979f-1b4683778088','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 07:10:06.005','2025-01-13 07:10:06.005','2025-01-13 07:10:06.005','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-01-29 12:24:52.609',NULL),
('60c4fa31-af93-4922-9f36-2038eda74a84','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:38:14.704','2024-10-24 09:38:14.704','2024-10-24 09:38:14.704','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:41:03.749','2024-11-08 17:33:22.667',NULL),
('60c82863-d731-48e4-aa1a-e1734ea27e53','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:15:12.803','2024-05-04 10:15:12.803','2024-05-04 10:15:12.803','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:17:06.871','2024-05-04 10:17:25.356',NULL),
('60eb00e1-442e-48df-8ca7-6ff077cfdc2d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 15:36:24.382','2025-02-25 15:36:24.382','2025-02-25 15:36:24.382','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:30:21.170','2025-03-12 19:01:22.477',NULL),
('61286949-7471-4d13-ac40-68620e8fc974','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 16:26:10.649','2025-02-04 16:26:10.649','2025-02-04 16:26:10.649','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:42.996',NULL),
('61539d01-7a97-47dc-a52f-08e38271bea1','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 06:47:07.050','2024-03-23 06:47:07.050','2024-03-23 06:47:07.050','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 06:51:32.406','2024-03-23 08:59:33.045',NULL),
('618b694b-619e-4a11-884e-223c960ba4ed','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 07:26:14.599','2024-03-18 07:26:14.599','2024-03-18 07:26:14.599','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 07:27:50.360','2024-03-18 07:27:50.360',NULL),
('618e8f36-ef25-47fa-8c60-ff31a2afa958','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-28 13:16:01.190','2024-10-28 13:16:01.190','2024-10-28 13:16:01.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-28 13:17:53.979','2024-11-08 17:34:19.127',NULL),
('61968e99-0717-4b50-9919-bc09ab570a90','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-21 12:44:42.293','2025-05-21 12:44:42.293','2025-05-21 12:44:42.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.822',NULL),
('61c686fa-9a45-49f6-acc7-2126d30c3fd5','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-07 12:13:04.314','2024-11-07 12:13:04.314','2024-11-07 12:13:04.314','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-07 12:15:49.487','2024-11-13 11:00:22.847','2024-11-13 11:00:22.851'),
('61cb6f82-ebfe-4dff-9db9-ea8b9e34c6f0','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 13:06:59.337','2025-06-25 13:06:59.337','2025-06-25 13:06:59.337','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.888','2025-09-02 14:46:19.368',NULL),
('61dc0d26-c179-489b-b816-76eaadea52b7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 16:38:09.644','2025-04-08 16:38:09.644','2025-04-08 16:38:09.644','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:27:22.133','2025-04-22 13:59:28.551',NULL),
('622d2509-f187-4402-9438-a355504afbd8','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-10 14:07:32.853','2025-08-10 14:07:32.853','2025-08-10 14:07:32.853','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.476','2025-08-22 20:28:07.608',NULL),
('62660061-dab8-42e4-a220-fe290927c5f9','4b545346-8acc-42eb-84c7-be96e0cc1e19','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 14:28:16.642','2024-09-27 14:28:16.642','2024-09-27 14:28:16.642','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 14:32:17.851','2024-09-27 14:32:17.851',NULL),
('626debeb-b0f5-4917-a29d-b837ab49def3','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 17:04:20.053','2025-09-06 17:04:20.053','2025-09-06 17:04:20.053','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.350','2025-09-12 17:16:02.661',NULL),
('62887e5f-3be2-4adf-8a6d-ca946a91ca38','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:51:15.188','2024-05-11 08:51:15.188','2024-05-11 08:51:15.188','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:58:54.787','2024-05-17 14:17:34.971',NULL),
('628a3c8d-f17b-483e-b6ee-4127cb374543','f16e28e8-ecf2-4674-b000-e55b2609d558','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 07:55:16.655','2024-10-21 07:55:16.655','2024-10-21 07:55:16.655','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 07:57:27.121','2024-12-09 17:29:20.233',NULL),
('62d9fb6c-da49-429d-a7c2-d5e9274922d7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 08:30:34.034','2025-09-17 08:30:34.034','2025-09-17 08:30:34.034','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.629','2025-10-07 15:17:28.414',NULL),
('62dfeded-db4e-4049-90a6-9d5bece5dc1d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 08:34:29.252','2025-06-16 08:34:29.252','2025-06-16 08:34:29.252','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.852',NULL),
('62fd52d9-681a-4b09-b6a4-ad8783be7228','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-17 08:32:28.343','2025-09-17 08:32:28.343','2025-09-17 08:32:28.343','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.337','2025-09-18 15:48:17.448',NULL),
('63059c52-68d4-4adf-b4cb-b2ebdf12d048','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:35:54.141','2024-11-12 15:35:54.141','2024-11-12 15:35:54.141','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:36:42.041','2024-11-18 09:19:14.403',NULL),
('63390b47-d3fb-41c8-83d0-ceb6afe9a97a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 21:16:50.269','2024-11-03 21:16:50.269','2024-11-03 21:16:50.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 21:18:11.245','2024-11-06 14:20:41.350','2024-11-06 14:20:41.354'),
('63422953-1233-4362-a704-227fa4085a0d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 07:31:03.197','2025-04-21 07:31:03.197','2025-04-21 07:31:03.197','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.912',NULL),
('6352e764-3ab4-4a98-84ad-182cc9f76f47','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-04 13:00:30.667','2024-12-04 13:00:30.667','2024-12-04 13:00:30.667','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:51:16.891','2025-01-07 17:06:26.352',NULL),
('63708897-b893-4648-bc38-d461af6db3be','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:14:13.756','2024-04-23 10:14:13.756','2024-04-23 10:14:13.756','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:15:27.001','2024-04-23 10:15:27.001',NULL),
('6384cd9a-b979-4b13-857a-7e57a29a622c','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-13 10:00:23.654','2024-06-13 10:00:23.654','2024-06-13 10:00:23.654','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-13 10:14:51.241','2024-07-02 07:57:12.895',NULL),
('6387155c-d418-404f-93d1-fb0afa62e27a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 10:36:45.887','2025-03-08 10:36:45.887','2025-03-08 10:36:45.887','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-03-29 13:37:01.833',NULL),
('63b900e3-707a-4b9e-8fe6-a3ad64415c19','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 13:02:45.159','2024-12-20 13:02:45.159','2024-12-20 13:02:45.159','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.415',NULL),
('63fb4925-ea94-47fa-b8c0-57a1d5cdf19c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:33:01.200','2025-04-24 08:33:01.200','2025-04-24 08:33:01.200','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.495',NULL),
('642e0508-a6cb-489c-988c-7845a4303a6b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 08:34:04.702','2025-05-08 08:34:04.702','2025-05-08 08:34:04.702','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.885',NULL),
('6452a61a-4750-4839-a305-0f3a61453741','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 08:32:35.317','2024-10-30 08:32:35.317','2024-10-30 08:32:35.317','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 08:40:06.022','2024-11-23 12:17:03.546',NULL),
('64825000-cd1b-4e80-8b14-d2b5cf810954','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 11:47:48.764','2024-10-21 11:47:48.764','2024-10-21 11:47:48.764','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 11:52:48.478','2024-10-23 10:15:57.229',NULL),
('64991e44-103c-46de-aa8b-5e69599bc604','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 10:28:00.976','2025-01-09 10:28:00.976','2025-01-09 10:28:00.976','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.418',NULL),
('64f2766e-21b9-43d1-9bf2-b548131e7174','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 21:13:26.106','2024-11-03 21:13:26.106','2024-11-03 21:13:26.106','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 21:14:44.250','2024-11-08 17:34:46.127',NULL),
('6502a427-8464-4bab-a7bf-f1ed5b532bbb','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 09:56:35.233','2025-07-24 09:56:35.233','2025-07-24 09:56:35.233','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.499','2025-08-15 20:59:05.055',NULL),
('6526ad64-571b-42e0-bf5c-e1bcb5cd6edf','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 14:03:16.516','2025-09-16 14:03:16.516','2025-09-16 14:03:16.516','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.480','2025-09-24 13:41:14.988',NULL),
('6539b77f-eda2-40ff-9242-9916b093d03b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 08:04:51.303','2025-08-18 08:04:51.303','2025-08-18 08:04:51.303','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.426','2025-08-22 20:28:07.527',NULL),
('6549bceb-d8bb-417c-a1b7-56e65a5ce41d','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 13:40:10.916','2024-10-11 13:40:10.916','2024-10-11 13:40:10.916','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 13:41:44.899','2024-10-24 19:09:17.171',NULL),
('656a437b-7d66-4488-a700-a127311378df','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 11:58:30.176','2024-07-02 11:58:30.176','2024-07-02 11:58:30.176','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 12:00:15.624','2024-07-20 10:04:17.675',NULL),
('656de212-a243-4b73-b1d5-d4435821e59c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:45:46.010','2024-09-28 15:45:46.010','2024-09-28 15:45:46.010','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:49:01.019','2024-09-28 15:49:01.019',NULL),
('65c20400-c806-4614-9548-7fa0e48d5174','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-25 12:29:16.406','2025-09-25 12:29:16.406','2025-09-25 12:29:16.406','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:32:37.664','2025-10-03 16:08:51.199',NULL),
('65e21dd9-2c2a-4723-9457-95bbdd14bfef','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:22:57.240','2024-11-12 15:22:57.240','2024-11-12 15:22:57.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:24:21.704','2024-11-12 15:24:21.704',NULL),
('6642cdd8-e8ef-403f-a04f-3432317d1c2e','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-08 14:46:08.297','2025-10-08 14:46:08.297','2025-10-08 14:46:08.297','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.249','2025-10-22 11:29:52.813',NULL),
('665c104d-7d86-434d-915b-d1a0974a2430','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 10:06:16.797','2025-02-07 10:06:16.797','2025-02-07 10:06:16.797','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.808',NULL),
('665e29bc-419f-445e-b922-b5ac2c198f21','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-10 09:05:05.020','2025-04-10 09:05:05.020','2025-04-10 09:05:05.020','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.592',NULL),
('66705312-9063-4079-9ec3-ad9be1b96e11','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-14 11:19:55.906','2025-03-14 11:19:55.906','2025-03-14 11:19:55.906','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.798',NULL),
('669ea332-3569-47c3-b067-5c3d6b515db9','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-01 10:01:40.465','2025-05-01 10:01:40.465','2025-05-01 10:01:40.465','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.697',NULL),
('669ff61d-621d-4f5c-b768-b354b01c06fb','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:05:49.078','2024-03-16 08:05:49.078','2024-03-16 08:05:49.078','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:08:34.308','2024-03-22 11:21:09.908',NULL),
('66a74bc4-a458-4f03-818b-8e6c8e27962c','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-08 18:28:30.168','2024-05-08 18:28:30.168','2024-05-08 18:28:30.168','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-08 18:31:57.983','2024-05-08 19:11:10.468',NULL),
('66cf9681-32d0-4348-a604-3eb687695e7c','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 14:44:42.918','2025-06-26 14:44:42.918','2025-06-26 14:44:42.918','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-02 12:42:52.147','2025-07-07 11:44:52.808',NULL),
('66d7b71a-2d15-47ab-ade8-704ffe0e6a7a','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 15:12:55.479','2024-12-17 15:12:55.479','2024-12-17 15:12:55.479','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.511',NULL),
('66e325c1-0070-4ff1-a8a2-5847cb50d854','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-24 10:06:57.932','2024-07-24 10:06:57.932','2024-07-24 10:06:57.932','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-24 10:08:44.022','2024-08-07 14:44:48.910',NULL),
('66ecc916-296d-40de-8d87-a41a269bf51b','3addc5c1-e82b-4a1a-b4af-1f66307a9108','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-15 11:59:33.106','2025-09-15 11:59:33.106','2025-09-15 11:59:33.106','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.389','2025-09-18 15:48:17.517',NULL),
('671ba50c-585a-4807-88a6-f98c4d8ddc19','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:29:54.590','2024-03-30 09:29:54.590','2024-03-30 09:29:54.590','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:33:58.484','2024-03-30 09:33:58.484',NULL),
('6720636c-428a-459c-bfd8-a70394acde52','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-23 09:22:17.185','2024-12-23 09:22:17.185','2024-12-23 09:22:17.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.547',NULL),
('67291304-9364-4924-9266-f7364c5256a8','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 12:01:49.705','2025-07-02 12:01:49.705','2025-07-02 12:01:49.705','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.734','2025-07-16 14:21:29.524',NULL),
('6738cc63-29fd-46d8-861a-afb4b077dd5a','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 10:32:50.944','2024-09-24 10:32:50.944','2024-09-24 10:32:50.944','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 10:36:16.969','2024-09-24 14:01:55.936','2024-09-24 14:01:55.941'),
('67723a54-d318-430a-a250-51a065d3fcbf','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-23 07:16:11.463','2024-05-23 07:16:11.463','2024-05-23 07:16:11.463','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-23 07:17:49.399','2024-05-23 07:17:49.399',NULL),
('6781709e-243d-4193-b2b3-d207c363d151','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:12:36.377','2024-05-04 10:12:36.377','2024-05-04 10:12:36.377','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:15:08.647','2024-05-04 10:19:30.512',NULL),
('67a309c7-a26f-4619-bd94-0eb4add3ea32','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-04 12:56:27.507','2025-08-04 12:56:27.507','2025-08-04 12:56:27.507','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.978','2025-09-03 06:09:36.727',NULL),
('67f9974e-9524-480b-b4c7-ab1cd1777954','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:23:04.431','2024-08-07 14:23:04.431','2024-08-07 14:23:04.431','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:25:01.404','2024-08-07 14:25:01.404',NULL),
('68121f02-2f26-4e38-b4c8-06b8194af571','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-03 08:57:02.246','2025-03-03 08:57:02.246','2025-03-03 08:57:02.246','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:28:46.864','2025-03-11 07:46:42.080',NULL),
('6821922d-77c3-40d2-8fc2-312b35c65d78','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 10:01:25.624','2025-09-22 10:01:25.624','2025-09-22 10:01:25.624','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.714','2025-10-07 15:17:28.511',NULL),
('6824451e-8d57-4014-be9d-da0dab27eb09','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 12:32:15.037','2024-10-17 12:32:15.037','2024-10-17 12:32:15.037','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:34:27.770','2024-10-23 16:37:59.573',NULL),
('682dbc1b-7cdd-46a3-b12a-3f09c3fd594c','33cc49ad-e7a0-4ee9-9120-2a98bd963a47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-13 15:51:15.089','2025-08-13 15:51:15.089','2025-08-13 15:51:15.089','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.506','2025-08-15 20:59:05.022',NULL),
('68473fef-b016-4ebd-9bf5-e569a83c84ed','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 11:23:50.972','2025-02-05 11:23:50.972','2025-02-05 11:23:50.972','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.304',NULL),
('684e71de-23dd-4c92-a574-c0e58d9de7b6','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 08:15:41.940','2025-02-25 08:15:41.940','2025-02-25 08:15:41.940','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-13 12:35:29.140',NULL),
('68554833-28b1-4cc5-81b2-219121214ea7','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 11:47:26.199','2025-06-26 11:47:26.199','2025-06-26 11:47:26.199','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:11:44.434','2025-07-04 09:14:58.102',NULL),
('685c3839-7361-4f3e-8bb9-a7bd75e7761c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 16:54:11.521','2025-05-13 16:54:11.521','2025-05-13 16:54:11.521','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:35:05.126','2025-06-18 08:08:50.291',NULL),
('6885d28b-3a03-4bc7-af62-377782c87eda','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-16 12:05:30.706','2025-04-16 12:05:30.706','2025-04-16 12:05:30.706','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.488',NULL),
('6888337d-f7d4-49cb-92eb-218b2b20aec3','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 07:56:54.756','2025-05-23 07:56:54.756','2025-05-23 07:56:54.756','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:19:23.965','2025-06-06 02:46:03.894',NULL),
('68919322-468d-4f9a-823a-b42f1a32e07a','338e8c09-4ca5-4617-bfc1-a0692646d475','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 11:36:33.881','2024-11-21 11:36:33.881','2024-11-21 11:36:33.881','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 11:42:22.872','2024-12-02 09:51:49.512',NULL),
('689eb83c-b261-4f7a-a795-b34370b3f0b2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 15:39:42.603','2025-07-02 15:39:42.603','2025-07-02 15:39:42.603','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 11:02:54.255','2025-10-02 11:05:59.155',NULL),
('68ab4689-64c0-46b8-a3a5-841d023a4edc','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 07:07:20.775','2024-09-16 07:07:20.775','2024-09-16 07:07:20.775','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 07:21:11.518','2024-09-30 07:53:11.195',NULL),
('68e91717-ca5d-4ff2-922f-ecca40d1cc37','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 10:20:22.867','2025-03-24 10:20:22.867','2025-03-24 10:20:22.867','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.713',NULL),
('68f27537-22a3-4d25-a6b7-7b9e0ee57068','916cfed9-9aea-4249-974d-c8780eba3eae','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-24 07:47:45.304','2024-07-24 07:47:45.304','2024-07-24 07:47:45.304','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-24 08:30:33.678','2024-07-30 14:47:53.981',NULL),
('692e5159-7a12-42cc-b455-b850918f9490','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-21 11:41:54.029','2025-02-21 11:41:54.029','2025-02-21 11:41:54.029','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:03:23.298','2025-03-02 04:33:53.248',NULL),
('694a091d-0ac5-41bd-9d15-397d3e9c4856','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-04 11:22:05.954','2025-09-04 11:22:05.954','2025-09-04 11:22:05.954','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-17 14:44:21.767','2025-09-18 15:48:17.427',NULL),
('696bbda8-4a96-4168-a29d-8b82eb81c1b1','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:59:58.943','2024-04-07 20:59:58.943','2024-04-07 20:59:58.943','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 21:02:06.461','2024-04-07 21:02:06.461',NULL),
('6973ebcf-01ac-40ba-8a91-1388d7fa854f','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-03 12:28:58.474','2025-10-03 12:28:58.474','2025-10-03 12:28:58.474','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.744','2025-10-06 07:33:17.821',NULL),
('69847958-63ec-4857-86e8-174eb1c888aa','7abcec25-2b15-4504-9076-c54982acb983','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 08:08:01.684','2024-10-09 08:08:01.684','2024-10-09 08:08:01.684','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 08:20:41.252','2024-10-11 15:20:40.856',NULL),
('69a7811e-a33b-4204-ad3c-a7a4f0b1ab70','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 13:03:30.452','2025-08-11 13:03:30.452','2025-08-11 13:03:30.452','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.102','2025-09-06 09:41:31.777',NULL),
('69c1dac8-15a8-4477-b1fb-af6232227ca5','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-23 08:11:11.795','2025-06-23 08:11:11.795','2025-06-23 08:11:11.795','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.861','2025-09-03 06:09:36.668',NULL),
('69d180b0-8db0-41c7-b906-0815c4ea35c9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-12 12:47:10.937','2024-12-12 12:47:10.937','2024-12-12 12:47:10.937','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:46:54.976','2025-01-06 20:08:12.881',NULL),
('69ea3a98-f9e2-4941-8222-cddcb062810c','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 11:15:01.339','2025-02-27 11:15:01.339','2025-02-27 11:15:01.339','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:42:17.878','2025-03-21 17:17:30.158',NULL),
('6a006e8e-addb-422a-abf9-f89a941b5274','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 07:24:00.748','2024-03-18 07:24:00.748','2024-03-18 07:24:00.748','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 07:26:10.286','2024-03-18 07:26:10.286',NULL),
('6a1fe653-081a-404b-8061-3c9fa12750a7','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 14:55:11.975','2025-06-26 14:55:11.975','2025-06-26 14:55:11.975','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.298','2025-07-08 11:33:15.183',NULL),
('6a7525b9-dd02-42b4-be16-77dd92b4fcde','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-30 09:26:46.561','2024-12-30 09:26:46.561','2024-12-30 09:26:46.561','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:00:42.571','2025-01-07 17:06:26.372',NULL),
('6a9909c1-9c63-47ee-be5d-4efc2a41048d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 08:00:51.942','2025-01-29 08:00:51.942','2025-01-29 08:00:51.942','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:34:53.010','2025-02-15 11:10:43.040',NULL),
('6aff1d9c-89a5-422f-8983-e555a8835b1b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 14:13:28.280','2025-09-09 14:13:28.280','2025-09-09 14:13:28.280','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.369','2025-09-18 15:48:17.485',NULL),
('6b1d06a0-2fae-45f2-bc24-799ff01c464e','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 09:08:01.678','2025-02-20 09:08:01.678','2025-02-20 09:08:01.678','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.162',NULL),
('6b758457-8bec-479c-b675-2915861f47a2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-21 11:57:38.000','2025-08-21 11:57:38.000','2025-08-21 11:57:38.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.666','2025-09-05 08:55:11.192',NULL),
('6b8a2e84-e822-4a77-8218-87866d5dddff','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 11:45:21.122','2025-08-29 11:45:21.122','2025-08-29 11:45:21.122','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.819','2025-09-02 14:46:19.295',NULL),
('6b986d95-9004-4841-9974-f3dfa2bf7957','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-22 09:36:01.086','2025-01-22 09:36:01.086','2025-01-22 09:36:01.086','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.642',NULL),
('6bb0b020-3ca9-4a46-99e0-deaa30eb5bf6','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 11:43:06.235','2025-09-22 11:43:06.235','2025-09-22 11:43:06.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.981','2025-10-14 08:52:36.826',NULL),
('6bb54b4b-8b1b-4e25-9750-e616581a6eb7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-03 15:13:00.147','2024-09-03 15:13:00.147','2024-09-03 15:13:00.147','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-03 15:15:35.337','2024-09-03 15:15:35.337',NULL),
('6bb7e3dc-9fc8-4895-bb9a-c35e6a6850be','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 13:33:34.445','2024-12-24 13:33:34.445','2024-12-24 13:33:34.445','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.988',NULL),
('6bf16fe3-1231-498e-b7eb-798ddcbf5f1a','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-12 06:34:02.728','2025-09-12 06:34:02.728','2025-09-12 06:34:02.728','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.520','2025-09-24 13:41:15.025',NULL),
('6bf76928-22e1-4a23-9999-045ae20bcb7b','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 10:13:10.002','2025-10-13 10:13:10.002','2025-10-13 10:13:10.002','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 10:17:43.293','2025-10-13 10:18:17.139',NULL),
('6bfefcc2-5cfe-4b6e-9590-4be416c580ec','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 12:37:13.177','2025-09-29 12:37:13.177','2025-09-29 12:37:13.177','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.747','2025-10-07 15:17:28.587',NULL),
('6c1619f0-b090-4033-9353-918e85a3d8a7','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 06:55:59.970','2025-10-01 06:55:59.970','2025-10-01 06:55:59.970','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.441','2025-10-04 10:42:09.385',NULL),
('6c1651d5-9b18-4e9b-b3fe-433d2f47e40a','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 10:56:38.235','2025-08-22 10:56:38.235','2025-08-22 10:56:38.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 13:52:01.493','2025-09-06 09:41:31.770',NULL),
('6c2e57df-aedf-42ae-95f9-67ef01dd363f','73596a75-b658-4249-8c71-b0490654bc8b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-07 16:19:58.711','2025-08-07 16:19:58.711','2025-08-07 16:19:58.711','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:21:45.740','2025-08-12 08:07:30.433',NULL),
('6c682ea9-c7f9-4f90-af60-9523ff5b31a9','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:20:54.802','2024-11-12 15:20:54.802','2024-11-12 15:20:54.802','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:22:34.293','2024-11-12 15:22:34.293',NULL),
('6c7cd57f-59cc-4ef5-a3fe-f3cd6014c38d','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 07:04:58.263','2025-09-22 07:04:58.263','2025-09-22 07:04:58.263','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.674','2025-10-07 15:17:28.538',NULL),
('6c82fb0d-c343-4ed4-8dcb-3e8ab891de59','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 10:57:03.698','2025-07-24 10:57:03.698','2025-07-24 10:57:03.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.285','2025-07-26 08:40:12.356',NULL),
('6cd5b0f0-1604-46e0-8f88-f51265bf9562','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-14 07:01:07.819','2025-07-14 07:01:07.819','2025-07-14 07:01:07.819','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.895','2025-07-22 16:18:49.490',NULL),
('6d0529d7-98c0-4333-8364-3088a5f607c4','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-12 13:33:17.452','2025-03-12 13:33:17.452','2025-03-12 13:33:17.452','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.508',NULL),
('6d2ff586-2579-443f-bbd0-ce77b66971f0','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-02 13:11:41.414','2025-06-02 13:11:41.414','2025-06-02 13:11:41.414','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.781','2025-07-16 14:21:29.442',NULL),
('6d3dc1dc-f7b7-4d5f-afef-c3fccd4188f8','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-04 14:53:32.424','2024-09-04 14:53:32.424','2024-09-04 14:53:32.424','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-04 14:58:26.263','2024-09-06 11:20:38.538',NULL),
('6d489d2f-6729-41b9-bddd-18292d79f11f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-07 10:29:18.692','2025-07-07 10:29:18.692','2025-07-07 10:29:18.692','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.755','2025-07-16 14:21:29.599',NULL),
('6d72aba2-630d-4bd8-a0f9-aefc5ffaeb09','fabe2c23-b5a5-4123-a962-af519ac31d3b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-25 10:53:54.111','2025-06-25 10:53:54.111','2025-06-25 10:53:54.111','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:58:22.220','2025-06-26 16:05:22.698',NULL),
('6d96bf2b-b13c-4946-9991-02f1fa096c0a','1b51c5f7-649a-424f-ba17-cc37d6298af9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-11 08:34:42.614','2025-02-11 08:34:42.614','2025-02-11 08:34:42.614','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-29 12:00:48.102',NULL),
('6dc5d776-5828-4b85-8956-3f465af1a027','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 20:06:45.071','2024-12-28 20:06:45.071','2024-12-28 20:06:45.071','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-12 13:22:27.277',NULL),
('6dfcbafc-cbaa-4335-9fcd-45a690524551','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 08:01:46.536','2024-05-04 08:01:46.536','2024-05-04 08:01:46.536','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 08:04:10.003','2024-05-04 08:04:10.003',NULL),
('6e281418-e853-4fc9-bceb-bcaf3840956c','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-20 10:20:25.884','2025-05-20 10:20:25.884','2025-05-20 10:20:25.884','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.690',NULL),
('6e2c336c-acee-417c-9bca-8a5ed7ccddc6','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 13:20:54.165','2025-09-18 13:20:54.165','2025-09-18 13:20:54.165','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.526','2025-10-17 10:53:07.444',NULL),
('6e2f5de6-1df9-462b-84fb-56512728b7c4','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:52:34.842','2024-11-12 15:52:34.842','2024-11-12 15:52:34.842','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:53:59.213','2024-11-12 16:28:17.099',NULL),
('6e5bc871-9af3-4f74-ad96-9b46196496ed','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 07:06:01.861','2025-09-16 07:06:01.861','2025-09-16 07:06:01.861','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.370','2025-09-19 10:00:25.372',NULL),
('6e69a3cb-bab7-4a50-b59a-208d5a95dd52','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 10:08:58.104','2025-07-31 10:08:58.104','2025-07-31 10:08:58.104','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.497','2025-08-22 20:28:07.563',NULL),
('6e956d78-c7a7-40f6-910d-1a2d63e44f29','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 15:01:00.511','2025-01-19 15:01:00.511','2025-01-19 15:01:00.511','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:15:29.084','2025-01-28 15:19:34.606',NULL),
('6e9d731e-0970-483e-aae2-7509d578ddd8','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-19 14:52:32.541','2025-08-19 14:52:32.541','2025-08-19 14:52:32.541','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.353','2025-10-02 11:05:59.190',NULL),
('6ecb8ac0-1198-4641-ae01-7fe23440c4b7','98ea2dbd-82be-4bbe-b758-b7175c0f8659','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-17 13:00:34.515','2025-06-17 13:00:34.515','2025-06-17 13:00:34.515','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:21:20.148','2025-07-07 11:44:52.838',NULL),
('6eecc1c3-9a9a-4bd6-bb24-a31fee317256','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-10 10:20:16.133','2025-02-10 10:20:16.133','2025-02-10 10:20:16.133','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:28:54.810','2025-02-24 20:28:04.604',NULL),
('6f16e9e1-9d4a-4655-9935-5dc2d9f7c9b6','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-11 14:04:27.248','2024-12-11 14:04:27.248','2024-12-11 14:04:27.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.492',NULL),
('6f3a47d8-1de9-4c03-813b-8a25c1ebeba4','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-31 09:15:11.822','2024-05-31 09:15:11.822','2024-05-31 09:15:11.822','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-31 09:51:52.651','2024-06-10 14:51:05.959',NULL),
('6f70f9fc-dbd4-4d16-ba88-6ad0d18eef13','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-30 14:13:23.228','2025-05-30 14:13:23.228','2025-05-30 14:13:23.228','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.856',NULL),
('6f719b18-564c-436c-916f-daf1a3e1ad2c','6b16eb99-81b1-4306-b528-e41ae9bc90b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 08:47:47.658','2024-11-08 08:47:47.658','2024-11-08 08:47:47.658','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 08:52:19.021','2024-11-11 17:29:05.924',NULL),
('6f8a3aee-0138-4944-8f81-593be2c22481','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:22:55.797','2024-03-30 09:22:55.797','2024-03-30 09:22:55.797','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:25:39.078','2024-03-30 09:25:39.078',NULL),
('6feb9f45-6aca-4dfc-b5b3-5ea1ccf4e06d','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-05 08:26:39.731','2025-03-05 08:26:39.731','2025-03-05 08:26:39.731','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:40:53.840','2025-03-11 07:46:42.094',NULL),
('70052b3a-3314-4bc5-861d-755aa1afa887','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-05 15:14:00.770','2024-12-05 15:14:00.770','2024-12-05 15:14:00.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:50:53.387','2024-12-17 19:52:32.964',NULL),
('702afd07-e081-4ad8-a5e5-66746f6ac1ea','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-14 11:28:38.795','2025-02-14 11:28:38.795','2025-02-14 11:28:38.795','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:05:10.599','2025-02-15 16:08:16.708',NULL),
('707c695d-797b-43df-b106-9ace81ca41ac','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-17 11:46:36.520','2025-02-17 11:46:36.520','2025-02-17 11:46:36.520','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.290',NULL),
('707e104e-20ee-4292-8454-f76dd0d8679e','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-23 10:44:00.248','2025-10-23 10:44:00.248','2025-10-23 10:44:00.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.278','2025-10-25 08:58:44.036',NULL),
('707e6b04-fba1-4d71-8c47-963f5386d5b0','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 15:41:24.403','2025-08-28 15:41:24.403','2025-08-28 15:41:24.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.459','2025-10-01 07:56:23.251',NULL),
('7092fae2-9c2d-434a-82bf-e89ae4fc6d88','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 12:41:38.996','2025-02-24 12:41:38.996','2025-02-24 12:41:38.996','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:32:27.236','2025-03-11 07:46:41.967',NULL),
('7097212d-6b74-4e85-8dfa-64788dbfe459','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 09:51:39.584','2025-09-22 09:51:39.584','2025-09-22 09:51:39.584','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.726','2025-10-07 15:17:28.459',NULL),
('70ae7b68-a07f-4f4d-92ef-70fd46f53b62','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:35:30.207','2025-04-24 08:35:30.207','2025-04-24 08:35:30.207','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.893',NULL),
('70cabc87-4aa2-4124-a574-511d06ee229e','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-20 07:55:42.806','2024-11-20 07:55:42.806','2024-11-20 07:55:42.806','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-20 07:57:07.510','2024-12-09 08:24:38.588',NULL),
('70d9132d-6221-4b2f-bc4c-9d8233043a1d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 11:48:03.466','2025-01-29 11:48:03.466','2025-01-29 11:48:03.466','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:41:42.101','2025-02-20 12:40:28.867',NULL),
('70fb73ff-b085-4b69-8a4d-06c2b098b60d','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 08:12:00.296','2025-04-25 08:12:00.296','2025-04-25 08:12:00.296','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:02:30.907',NULL),
('710d77ee-0c88-48ac-95b0-f7cc9c070cf2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 09:05:25.307','2025-08-05 09:05:25.307','2025-08-05 09:05:25.307','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.569','2025-08-14 08:02:29.789',NULL),
('710f745c-0a6a-4367-8fc3-85d8727126bf','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 11:32:05.766','2025-01-06 11:32:05.766','2025-01-06 11:32:05.766','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.691',NULL),
('711a0934-1141-4544-9d7b-4a968b0f44d1','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-04 09:43:37.508','2025-09-04 09:43:37.508','2025-09-04 09:43:37.508','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.541','2025-09-24 13:41:15.053',NULL),
('711a7c1d-3504-4421-8fc8-8bc5ff021cf8','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:40:17.874','2024-12-17 14:40:17.874','2024-12-17 14:40:17.874','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:27:59.902','2025-01-11 10:16:46.090',NULL),
('7141e033-c375-4986-9b67-dc19e2e7b9a5','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 06:47:39.762','2025-01-03 06:47:39.762','2025-01-03 06:47:39.762','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:30:15.511','2025-01-29 12:24:52.639',NULL),
('718dda21-47fd-41bf-b318-ef12d6eabb61','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-07 13:32:20.770','2025-01-07 13:32:20.770','2025-01-07 13:32:20.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.743',NULL),
('719a081d-b780-42cc-82a0-4f59e6d61807','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 13:08:18.108','2024-08-31 13:08:18.108','2024-08-31 13:08:18.108','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 13:12:07.002','2024-08-31 13:12:07.002',NULL),
('71a9cc26-ce24-4693-8a52-44d4810594ed','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:35:13.501','2024-03-23 07:35:13.501','2024-03-23 07:35:13.501','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:38:27.592','2024-03-23 09:05:05.357',NULL),
('71b953f4-1e4a-4cf6-98a3-072dc83cac80','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-27 11:59:40.265','2025-08-27 11:59:40.265','2025-08-27 11:59:40.265','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.125','2025-09-10 12:48:00.798',NULL),
('71e1ca31-bfb3-4c28-901e-66396edcb14c','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 06:35:53.152','2025-05-23 06:35:53.152','2025-05-23 06:35:53.152','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.543',NULL),
('71eb55b4-585d-46d5-87b3-30a3184323f2','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 12:59:35.441','2024-08-20 12:59:35.441','2024-08-20 12:59:35.441','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 13:03:44.170','2024-09-09 15:21:35.824',NULL),
('71edf8c1-f5db-4a9c-9a79-c9295aea5017','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-30 09:29:26.096','2025-01-30 09:29:26.096','2025-01-30 09:29:26.096','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.594',NULL),
('720561c4-4e4e-4f26-91d2-6939c4060c08','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-15 13:05:40.062','2025-05-15 13:05:40.062','2025-05-15 13:05:40.062','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:29:06.668','2025-05-26 13:23:22.472',NULL),
('7212adf5-b81c-49ee-a3cd-e7961df2f7e0','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-20 16:12:54.894','2025-03-20 16:12:54.894','2025-03-20 16:12:54.894','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-03 08:05:06.036',NULL),
('72219dc4-1018-47a5-ae0e-9fc9f5dbe367','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 16:14:06.906','2025-03-24 16:14:06.906','2025-03-24 16:14:06.906','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:02:20.217','2025-03-29 13:37:01.732',NULL),
('722ff4ba-5732-4440-9fe2-423a2589a0e6','2682d67a-85fc-4f82-9b33-ed916cf1fc26','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-23 12:53:50.126','2025-06-23 12:53:50.126','2025-06-23 12:53:50.126','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.097','2025-07-01 09:19:38.960',NULL),
('72494d55-4d72-490e-ba9e-ecf5ba9c4da6','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 09:16:49.385','2025-05-08 09:16:49.385','2025-05-08 09:16:49.385','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.065',NULL),
('724a8c43-8753-404a-a347-23dd2eb58df0','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-26 14:15:40.158','2025-05-26 14:15:40.158','2025-05-26 14:15:40.158','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:39:10.035','2025-06-06 02:46:03.861',NULL),
('72621093-5ae3-4cca-91a4-c44edde496dc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-12 18:28:30.419','2025-03-12 18:28:30.419','2025-03-12 18:28:30.419','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:30:21.170','2025-03-13 12:20:53.999',NULL),
('7265f81d-111f-481f-a7cf-6e61c4f56855','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-11 08:00:12.752','2025-04-11 08:00:12.752','2025-04-11 08:00:12.752','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:35:54.444','2025-04-26 16:02:30.900',NULL),
('726a11c8-2abc-4298-b1d1-704e273d1a7e','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-11 13:36:30.241','2025-06-11 13:36:30.241','2025-06-11 13:36:30.241','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:58:22.226','2025-06-26 16:05:22.665',NULL),
('72c173c5-3839-4bc7-bef1-981c5f1c65a1','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 12:23:31.590','2025-10-07 12:23:31.590','2025-10-07 12:23:31.590','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.580','2025-10-25 08:58:43.917',NULL),
('73103580-5efa-40d7-bd48-c422eb1d6ed5','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 09:54:57.830','2025-08-12 09:54:57.830','2025-08-12 09:54:57.830','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.562','2025-08-14 08:02:29.731',NULL),
('73249b40-a9eb-4f4e-8552-8602197c1794','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 07:19:10.879','2025-06-27 07:19:10.879','2025-06-27 07:19:10.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-07 14:20:25.185','2025-07-08 11:33:15.141',NULL),
('73549dbe-cc9c-4a31-9f13-9fe7e5f6e304','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 10:13:29.704','2025-01-13 10:13:29.704','2025-01-13 10:13:29.704','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:42.956',NULL),
('739cca85-975f-4f82-ad5c-acbf766309e1','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-30 14:48:06.967','2024-07-30 14:48:06.967','2024-07-30 14:48:06.967','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-30 14:50:15.334','2024-07-30 14:50:15.334',NULL),
('739ecedf-71da-4528-9ca0-7d3e49f10ff5','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-12 06:30:33.892','2025-05-12 06:30:33.892','2025-05-12 06:30:33.892','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.091',NULL),
('739fc4ca-c4fe-4a28-baa5-52aeb63625c6','bb5832af-6faf-4b4f-86a0-0d8a47cc4626','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-01 13:40:39.811','2025-09-01 13:40:39.811','2025-09-01 13:40:39.811','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.812','2025-09-02 14:46:19.288',NULL),
('73b16b8e-4b5e-4df5-8fb0-cb58742c973c','f4861afa-47df-4a6b-b9ca-da22afe273e4','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 14:56:44.761','2025-08-13 14:56:44.761','2025-08-13 14:56:44.761','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.998','2025-09-03 06:09:36.712',NULL),
('73b8db25-fe6f-49ea-9189-f947a2253d59','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 13:25:17.101','2025-09-17 13:25:17.101','2025-09-17 13:25:17.101','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.623','2025-10-07 15:17:28.545',NULL),
('73f12f4a-b79a-4d0e-af18-c0b7b6182d4d','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-26 10:07:50.799','2025-08-26 10:07:50.799','2025-08-26 10:07:50.799','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:41:46.618','2025-09-05 08:55:11.173',NULL),
('740b60ac-5f7d-4437-b2cb-2005be0cb52f','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 08:08:23.733','2025-09-16 08:08:23.733','2025-09-16 08:08:23.733','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.382','2025-10-22 11:29:52.779',NULL),
('742928d8-96a8-4d7b-b6b6-8f986c7a692e','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-30 05:50:45.394','2025-05-30 05:50:45.394','2025-05-30 05:50:45.394','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-10 10:05:26.210',NULL),
('745673bb-5cd1-4ff4-8f5b-fc52ab167107','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-05 08:15:31.754','2024-04-05 08:15:31.754','2024-04-05 08:15:31.754','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-05 08:19:51.667','2024-04-23 09:08:07.628',NULL),
('7468c7ad-a4f2-4a29-ba8c-79518afeabfe','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 11:54:23.219','2025-09-18 11:54:23.219','2025-09-18 11:54:23.219','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.417','2025-10-25 08:58:44.002',NULL),
('7487a631-cba7-4cd5-a9cb-ca119ac57f32','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-15 14:27:59.337','2024-10-15 14:27:59.337','2024-10-15 14:27:59.337','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-15 14:28:43.670','2024-10-17 11:46:50.430',NULL),
('748dd962-a6bd-4e9d-86ab-5f942792335e','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 09:25:01.365','2025-07-02 09:25:01.365','2025-07-02 09:25:01.365','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.822','2025-07-16 14:21:29.592',NULL),
('749d155f-0645-4587-8bd6-401cb24af93a','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-10 08:06:58.450','2025-06-10 08:06:58.450','2025-06-10 08:06:58.450','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.933',NULL),
('74aa4e07-249a-4b68-8f70-0f2c30428407','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 11:39:03.797','2025-05-07 11:39:03.797','2025-05-07 11:39:03.797','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.723',NULL),
('74bace7f-c785-45da-b4d4-65a74d2de803','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-04 15:00:35.911','2024-09-04 15:00:35.911','2024-09-04 15:00:35.911','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-04 15:03:17.174','2024-09-06 09:53:22.396',NULL),
('74c88062-35d0-4bf8-8173-92f4d393b9ba','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 09:12:18.160','2025-05-08 09:12:18.160','2025-05-08 09:12:18.160','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.503',NULL),
('74dff99e-c515-4738-9806-ceb1195c2d76','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 13:28:58.218','2025-03-08 13:28:58.218','2025-03-08 13:28:58.218','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:32:27.236','2025-03-11 07:46:42.031',NULL),
('74fec10d-d970-4aac-b06e-7d16702c8111','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 06:43:04.822','2025-09-10 06:43:04.822','2025-09-10 06:43:04.822','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.853','2025-10-01 07:56:23.202',NULL),
('750c6306-bc57-4420-bb1f-1511d25df2fa','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 08:47:13.813','2025-05-23 08:47:13.813','2025-05-23 08:47:13.813','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.113','2025-07-01 09:19:38.904',NULL),
('75223950-2f88-412e-ab9a-773528fb9544','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-19 11:38:06.761','2024-11-19 11:38:06.761','2024-11-19 11:38:06.761','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-19 11:43:48.884','2024-12-09 08:24:38.624',NULL),
('7543b7d5-2d62-409e-aa8c-f3b5c8936ba1','22a1dbd6-475c-4d4b-bb13-f459e3029634','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 13:52:55.672','2024-11-21 13:52:55.672','2024-11-21 13:52:55.672','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 13:55:38.722','2024-12-02 09:51:49.540',NULL),
('758ad6bc-7034-42f2-9555-0a4e7ca6e969','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 20:24:49.841','2025-02-13 20:24:49.841','2025-02-13 20:24:49.841','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:28:54.810','2025-02-24 20:28:04.566',NULL),
('75ec4304-d1cb-46fa-abb2-faf0e450c74b','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-01 06:47:41.886','2025-09-01 06:47:41.886','2025-09-01 06:47:41.886','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:54:01.841','2025-09-05 08:55:11.179',NULL),
('75ee482c-712d-42d0-acaa-f517bf3a0a87','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 13:57:45.459','2024-12-13 13:57:45.459','2024-12-13 13:57:45.459','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.315',NULL),
('764dfbba-5a23-4531-9b5b-753295d9d968','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 12:23:55.709','2025-02-18 12:23:55.709','2025-02-18 12:23:55.709','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:37:32.391','2025-03-11 07:46:41.974',NULL),
('7659aa87-aed8-4c6c-8d6e-631aa5d581d3','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-22 14:06:53.866','2025-07-22 14:06:53.866','2025-07-22 14:06:53.866','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.314','2025-07-26 08:40:12.363',NULL),
('76612438-4870-4b65-bca2-209d015f3c6f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 07:51:01.692','2025-05-08 07:51:01.692','2025-05-08 07:51:01.692','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.583',NULL),
('766b24c0-4f61-4651-b22e-bf3d8171f1ce','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:30:00.808','2024-12-20 12:30:00.808','2024-12-20 12:30:00.808','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.311',NULL),
('7678dc5e-da41-484b-bf6a-84a8c6d537a1','73596a75-b658-4249-8c71-b0490654bc8b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-07 16:18:24.470','2025-08-07 16:18:24.470','2025-08-07 16:18:24.470','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:21:45.718','2025-08-12 08:07:30.303',NULL),
('76883aa6-c7c3-4f48-a490-e8aefe68786c','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:39:24.264','2024-03-16 08:39:24.264','2024-03-16 08:39:24.264','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:42:21.509','2024-03-16 08:42:21.509',NULL),
('7694da57-b581-4025-8603-907fcea65910','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:40:41.316','2025-04-24 07:40:41.316','2025-04-24 07:40:41.316','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.973',NULL),
('769d7321-0781-4c91-9255-71125a37cb3e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 08:12:13.765','2024-12-13 08:12:13.765','2024-12-13 08:12:13.765','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:55:09.945','2025-01-06 20:08:12.924',NULL),
('769ff3aa-713d-443e-9db0-45cba65cb3d7','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-13 22:35:19.898','2025-08-13 22:35:19.898','2025-08-13 22:35:19.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.238','2025-08-25 12:11:45.715',NULL),
('76edac79-9054-466c-ae62-aa3e86afa9a5','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-14 13:08:58.905','2025-01-14 13:08:58.905','2025-01-14 13:08:58.905','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.198',NULL),
('7704a5c4-ab31-41c0-9b3b-66e5d44bdf65','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 06:58:32.174','2024-03-23 06:58:32.174','2024-03-23 06:58:32.174','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:01:32.383','2024-03-23 10:21:11.895',NULL),
('7706e7bb-9473-4a88-bf67-e8dc25e9aa19','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-12 08:25:23.581','2025-05-12 08:25:23.581','2025-05-12 08:25:23.581','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.898',NULL),
('77395d02-f993-4999-bc0d-288cc005abce','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-25 08:02:08.889','2025-03-25 08:02:08.889','2025-03-25 08:02:08.889','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.494',NULL),
('773a2ffc-c91a-4e09-a1d3-67c7ef6d2652','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-25 20:59:41.240','2024-11-25 20:59:41.240','2024-11-25 20:59:41.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 21:01:17.282','2024-12-09 17:29:20.203',NULL),
('774452f9-4d20-4bdb-a7ad-5ebed2405ecc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 09:14:51.042','2025-03-24 09:14:51.042','2025-03-24 09:14:51.042','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:27:22.133','2025-04-15 14:54:58.156',NULL),
('774d7bf7-b0c6-47f4-b703-9213aa396bb6','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 13:04:25.653','2024-09-09 13:04:25.653','2024-09-09 13:04:25.653','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 13:07:02.922','2024-09-12 10:17:35.613',NULL),
('776ad66d-1262-4966-aa55-f4dbbd6fa8af','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-19 08:35:14.552','2024-11-19 08:35:14.552','2024-11-19 08:35:14.552','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-19 08:37:03.506','2024-12-09 17:29:20.239',NULL),
('7785855d-1da2-4a9f-a679-3b9c3b29da45','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:20:32.943','2024-04-23 10:20:32.943','2024-04-23 10:20:32.943','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:22:18.757','2024-04-23 10:28:29.295',NULL),
('7786a34e-3509-4d7f-9875-bb1c768c9644','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-28 14:00:23.414','2025-07-28 14:00:23.414','2025-07-28 14:00:23.414','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.991','2025-09-03 06:09:36.675',NULL),
('77c98232-9a08-43a7-9cc8-46b8faec7269','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-23 07:20:45.271','2024-05-23 07:20:45.271','2024-05-23 07:20:45.271','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-23 07:22:04.695','2024-05-23 07:22:04.695',NULL),
('77e178ff-fb17-41d1-9686-b084b853cb0e','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 08:02:33.618','2024-10-21 08:02:33.618','2024-10-21 08:02:33.618','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 08:10:24.792','2024-10-23 14:55:37.009',NULL),
('77ed0afa-fe34-4633-85d9-64a783b21a3b','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 18:17:51.504','2025-08-11 18:17:51.504','2025-08-11 18:17:51.504','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.538','2025-08-14 08:02:29.804',NULL),
('78200a82-c28d-4078-9f6b-d30ec58b8223','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-27 15:50:22.206','2024-11-27 15:50:22.206','2024-11-27 15:50:22.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-27 15:55:13.757','2024-12-09 17:29:20.130',NULL),
('7847e2b2-616d-4306-9075-0742600ab43a','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:03:38.084','2025-07-01 10:03:38.084','2025-07-01 10:03:38.084','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.945','2025-07-22 16:18:49.626',NULL),
('788605dd-5093-4db8-af91-b7525512f2bc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-10 07:01:23.464','2025-01-10 07:01:23.464','2025-01-10 07:01:23.464','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.173',NULL),
('788c2394-d57f-4b64-b67e-3d124e68975a','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-23 10:32:54.232','2025-08-23 10:32:54.232','2025-08-23 10:32:54.232','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.608','2025-09-10 07:11:56.225',NULL),
('788e0cef-0d65-4b6d-841a-053e3f1c897c','d50fb551-10f1-4b7c-b65d-6eb4bef94704','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-23 09:10:06.000','2025-07-23 09:10:06.000','2025-07-23 09:10:06.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:26:43.582','2025-07-29 12:37:20.417',NULL),
('78b9875b-42c6-44d8-83f0-ef21e7e3ca12','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-29 09:16:19.008','2024-07-29 09:16:19.008','2024-07-29 09:16:19.008','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-29 10:12:47.947','2024-08-28 07:26:26.828',NULL),
('78bc0c5f-bf1d-4225-8f40-52d8ddbadefc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:48:51.195','2024-08-31 12:48:51.195','2024-08-31 12:48:51.195','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:51:26.592','2024-08-31 12:51:26.592',NULL),
('78db344a-c6cc-4162-b6f3-1e114abf9af8','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 08:02:52.881','2025-08-06 08:02:52.881','2025-08-06 08:02:52.881','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 13:52:01.468','2025-09-06 09:41:31.859',NULL),
('791630ec-2427-4d61-98c5-3162988688bd','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-13 10:24:06.167','2024-11-13 10:24:06.167','2024-11-13 10:24:06.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-13 10:25:10.482','2024-11-19 15:12:12.710','2024-11-19 15:12:12.714'),
('79561af3-553a-4f9b-89d9-5561ea95b1d4','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 13:05:38.856','2025-09-29 13:05:38.856','2025-09-29 13:05:38.856','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 10:48:44.618','2025-10-17 10:53:07.604',NULL),
('796d8082-dbb8-41c2-9e22-7d14188e0a41','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 13:37:52.627','2025-08-18 13:37:52.627','2025-08-18 13:37:52.627','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.490','2025-08-22 20:28:07.600',NULL),
('79be2260-cd0b-4d88-a586-c17366c79d75','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-15 13:09:52.786','2024-10-15 13:09:52.786','2024-10-15 13:09:52.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-15 13:26:04.812','2024-10-23 15:19:47.320',NULL),
('79c67abe-4166-44d4-b19c-fd799305e68e','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-08 09:05:43.242','2024-11-08 09:05:43.242','2024-11-08 09:05:43.242','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 09:08:32.166','2024-11-12 17:10:40.671','2024-11-12 17:10:40.675'),
('79cd4b02-2665-4c38-8d3e-20ed6afc42d5','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-17 09:03:56.206','2025-02-17 09:03:56.206','2025-02-17 09:03:56.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:26:40.006','2025-03-02 04:33:53.254',NULL),
('79ebd9b8-0d68-4fe5-a904-877fe3479b81','4126da30-ba9b-41b7-be29-865069aa484c','d03032cd-3542-403b-975d-f781dffab494','2024-10-24 13:16:54.100','2024-10-24 13:16:54.100','2024-10-24 13:16:54.100','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 13:22:45.288','2024-10-24 15:19:45.935','2024-10-24 15:19:45.939'),
('79f7d5c0-45da-4aa7-a9bd-86df7b4bbdec','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-18 08:10:01.420','2025-07-18 08:10:01.420','2025-07-18 08:10:01.420','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.145','2025-09-10 12:48:00.834',NULL),
('79fe8422-8201-4da5-90d6-403eb5313921','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-14 09:20:29.879','2024-06-14 09:20:29.879','2024-06-14 09:20:29.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-14 09:22:10.238','2024-06-14 09:22:10.238',NULL),
('7a0e5433-29b6-4cfe-af30-323390ed3fe7','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 14:37:55.904','2025-08-01 14:37:55.904','2025-08-01 14:37:55.904','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.182','2025-08-25 12:11:45.700',NULL),
('7a0f69f9-cedc-4758-99d8-8460defa1634','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 09:08:22.898','2025-08-12 09:08:22.898','2025-08-12 09:08:22.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.181','2025-08-14 08:02:29.777',NULL),
('7a43f678-5d8a-45bf-b52e-4eb0c4d55774','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-07 08:23:58.728','2025-04-07 08:23:58.728','2025-04-07 08:23:58.728','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:37:22.724','2025-04-26 16:05:13.031',NULL),
('7a6520f0-ae10-4c93-b34f-b4aca8219c8a','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 07:11:16.557','2024-03-18 07:11:16.557','2024-03-18 07:11:16.557','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 07:16:55.870','2024-03-18 07:20:38.480',NULL),
('7a6e5831-3ae9-4222-a03a-751b52c6ca00','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 09:58:10.340','2025-09-15 09:58:10.340','2025-09-15 09:58:10.340','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-26 12:26:21.682','2025-09-26 12:31:30.400',NULL),
('7a817990-2237-4c39-af2e-49f7d9302363','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:52:34.463','2024-09-28 15:52:34.463','2024-09-28 15:52:34.463','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:55:33.686','2024-09-28 15:55:33.686',NULL),
('7aebf5e6-3198-4062-9232-06b2efc5b643','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-03 08:08:52.361','2025-09-03 08:08:52.361','2025-09-03 08:08:52.361','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.442','2025-09-19 10:00:25.455',NULL),
('7b36a44f-db7b-4639-bcdb-b6ffe68cb23b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:50:30.971','2024-03-23 07:50:30.971','2024-03-23 07:50:30.971','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:53:08.030','2024-03-23 09:02:42.649',NULL),
('7b3c3c41-7eba-4d3a-aeb4-d47fafccec6d','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 20:33:05.835','2025-07-18 20:33:05.835','2025-07-18 20:33:05.835','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.352','2025-07-26 08:40:12.411',NULL),
('7b61eef1-761b-404a-8ab9-752320b17cc1','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:08:28.262','2024-05-04 10:08:28.262','2024-05-04 10:08:28.262','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:10:22.425','2024-05-10 07:12:43.321',NULL),
('7b69cb84-ed18-43bf-9970-ada9a255bcc3','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-16 11:38:04.740','2025-01-16 11:38:04.740','2025-01-16 11:38:04.740','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.685',NULL),
('7b9d1ee4-14b9-4d8b-b6ce-a00819bb9c2b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 15:25:20.754','2025-08-28 15:25:20.754','2025-08-28 15:25:20.754','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.858','2025-09-19 10:00:25.327',NULL),
('7ba7fcf3-be3f-4d07-8487-ddd352bcf631','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-14 09:26:32.846','2025-05-14 09:26:32.846','2025-05-14 09:26:32.846','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.134','2025-07-01 09:19:38.939',NULL),
('7bae71e7-9aa5-478a-8125-6810dfef7161','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 12:07:33.953','2025-08-11 12:07:33.953','2025-08-11 12:07:33.953','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.112','2025-09-10 15:34:21.170',NULL),
('7bcda059-11c2-4a53-87c1-6f3088c6daa0','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 12:04:01.558','2025-10-07 12:04:01.558','2025-10-07 12:04:01.558','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 12:08:55.467','2025-10-09 08:39:36.994',NULL),
('7bed47e1-0fae-411b-a227-61ed02ea71f0','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-04 12:20:49.361','2024-12-04 12:20:49.361','2024-12-04 12:20:49.361','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:50:53.387','2024-12-17 19:52:32.956',NULL),
('7bee87f3-468a-4f1e-97e8-287a71736c36','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-11 09:05:11.488','2025-09-11 09:05:11.488','2025-09-11 09:05:11.488','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.357','2025-09-19 10:00:25.359',NULL),
('7c0df063-7eed-439c-bed9-cf7601ae7e23','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-14 08:52:11.144','2025-08-14 08:52:11.144','2025-08-14 08:52:11.144','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:09:28.751','2025-08-15 20:59:05.081',NULL),
('7c3fac5c-b737-4163-a2f6-cb4a6142284b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 15:12:45.958','2025-04-28 15:12:45.958','2025-04-28 15:12:45.958','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.684',NULL),
('7c695766-ab67-4e74-ac81-431c11b3157c','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 12:26:17.835','2025-04-08 12:26:17.835','2025-04-08 12:26:17.835','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:32:18.126','2025-04-15 14:54:58.262',NULL),
('7c8eb6d5-8b3b-4512-8d7f-ed1308111aba','a42d8839-caef-4422-888f-cbfdf4188c5b','804a2f53-7a26-4e8e-a505-7fc107953b50','2024-11-26 06:57:10.128','2024-11-26 06:57:10.128','2024-11-26 06:57:10.128','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-26 06:59:52.167','2024-12-17 19:52:32.989',NULL),
('7c8f06c0-5736-4198-938f-03fcccd391b3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-07 09:36:01.538','2025-05-07 09:36:01.538','2025-05-07 09:36:01.538','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.837',NULL),
('7c917ffb-43a0-4b09-b2e2-ee0f0f285113','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 11:53:04.628','2025-07-31 11:53:04.628','2025-07-31 11:53:04.628','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.220','2025-08-15 20:59:04.966',NULL),
('7c91ac5e-5c2f-4f5e-ae6e-1ba895930ee0','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 20:54:00.530','2024-11-03 20:54:00.530','2024-11-03 20:54:00.530','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 20:58:33.899','2024-11-08 17:31:04.468',NULL),
('7c9b67ce-b046-4554-81c8-7870ead51777','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 10:52:51.075','2025-09-24 10:52:51.075','2025-09-24 10:52:51.075','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.504','2025-10-17 10:53:07.421',NULL),
('7cc634fc-d208-4b0b-8536-88eed9b6cbba','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 13:11:54.297','2025-01-29 13:11:54.297','2025-01-29 13:11:54.297','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.080',NULL),
('7cd54b69-1ef0-47b1-8a95-1401a61076e6','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 12:06:13.466','2025-01-17 12:06:13.466','2025-01-17 12:06:13.466','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.587',NULL),
('7ceb3fd0-2408-4d97-b8f0-4655fa670fb7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:36:03.378','2024-11-15 16:36:03.378','2024-11-15 16:36:03.378','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:38:00.215','2024-11-15 16:38:00.215',NULL),
('7d21e579-9ac4-4f0d-baf8-9b9cb5eeb969','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 13:04:39.990','2024-08-31 13:04:39.990','2024-08-31 13:04:39.990','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 13:05:57.302','2024-08-31 13:05:57.302',NULL),
('7d31502d-3c38-4d6c-b5e0-c6e4cec8da49','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 20:04:16.424','2025-08-22 20:04:16.424','2025-08-22 20:04:16.424','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 20:19:45.406','2025-08-27 09:39:08.565',NULL),
('7d3cc8cd-20be-48e3-b89d-ff72c1a9d082','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 07:46:31.546','2025-08-29 07:46:31.546','2025-08-29 07:46:31.546','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.651','2025-09-05 08:55:11.185',NULL),
('7d40585d-94d9-486d-b23b-2d3ed1da7bae','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 08:52:56.405','2025-02-20 08:52:56.405','2025-02-20 08:52:56.405','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.908',NULL),
('7d609e17-61d8-4a84-bebb-bbade818fbef','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-28 15:58:42.237','2025-05-28 15:58:42.237','2025-05-28 15:58:42.237','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:19:23.965','2025-06-06 02:46:03.947',NULL),
('7d8d98ff-291c-4d49-8253-d53ee09305ea','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 13:15:00.486','2025-01-15 13:15:00.486','2025-01-15 13:15:00.486','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.578',NULL),
('7db66de1-8d3c-4ccc-9866-d024c08f11d7','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 06:22:46.194','2025-09-16 06:22:46.194','2025-09-16 06:22:46.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.377','2025-09-19 10:00:25.386',NULL),
('7dc1ba60-7e30-4ff0-8a17-16cf68300772','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-25 08:20:16.823','2025-08-25 08:20:16.823','2025-08-25 08:20:16.823','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:41:46.600','2025-09-05 08:55:11.113',NULL),
('7dc798fa-2ca7-4fd4-a589-48cc790f53d0','8d03b939-d544-45f8-8173-464bea4e67ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-04 09:20:44.427','2025-10-04 09:20:44.427','2025-10-04 09:20:44.427','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.720','2025-10-07 15:17:28.388',NULL),
('7e0871dd-bef3-40ef-a43a-4bfd2ef93e54','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-11 12:15:01.172','2025-10-11 12:15:01.172','2025-10-11 12:15:01.172','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.009','2025-10-14 09:25:26.004',NULL),
('7e55f9cc-ee84-44c0-9e6d-7e645290de37','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-05 10:49:37.354','2025-09-05 10:49:37.354','2025-09-05 10:49:37.354','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.853','2025-10-01 07:56:23.216',NULL),
('7e5f42ac-9cec-4f6c-bb31-4ddd10c765c9','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-20 08:42:58.070','2025-01-20 08:42:58.070','2025-01-20 08:42:58.070','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:52:49.800','2025-02-20 12:40:28.815',NULL),
('7e6a88a8-82f2-4b06-8c51-fc0049bc66ce','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 08:59:22.992','2025-05-07 08:59:22.992','2025-05-07 08:59:22.992','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.958',NULL),
('7e8a35ea-8211-4089-92e3-f2bd7bc78d1c','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-10 14:23:53.847','2025-08-10 14:23:53.847','2025-08-10 14:23:53.847','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.615','2025-09-10 07:11:56.175',NULL),
('7e934962-8bf6-4078-aaef-0528c9e27880','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:09:58.791','2024-12-07 09:09:58.791','2024-12-07 09:09:58.791','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:17:31.180','2024-12-17 19:52:33.030',NULL),
('7ead94cd-8c5a-494f-a2a2-1fbb4d39d691','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 08:53:01.368','2025-04-30 08:53:01.368','2025-04-30 08:53:01.368','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.822','2025-08-18 07:14:34.898',NULL),
('7ec01892-62db-40af-a454-9d0dad9129a6','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:51:34.326','2024-08-31 12:51:34.326','2024-08-31 12:51:34.326','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:54:06.155','2024-08-31 12:54:06.155',NULL),
('7ed9bd9e-2620-417b-91b1-e58659f60183','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-01 07:51:44.231','2025-09-01 07:51:44.231','2025-09-01 07:51:44.231','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.343','2025-09-12 17:16:02.646',NULL),
('7f95486a-42da-493b-be1e-298f446cd6fd','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-03 13:37:55.838','2025-01-03 13:37:55.838','2025-01-03 13:37:55.838','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:51:16.891','2025-01-07 17:06:26.284',NULL),
('7faa0eae-3d9c-4666-8246-a7087075e85e','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 07:21:24.696','2024-09-16 07:21:24.696','2024-09-16 07:21:24.696','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 07:30:16.508','2024-10-28 11:36:11.115','2024-10-28 11:36:11.121'),
('7faf6e2b-1b02-459d-af09-013bb591f2f5','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 07:52:52.734','2025-04-08 07:52:52.734','2025-04-08 07:52:52.734','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.859',NULL),
('7ff14b3d-e740-48ac-97a1-e3231b78de87','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 16:08:52.641','2025-02-18 16:08:52.641','2025-02-18 16:08:52.641','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:29:44.418','2025-02-27 13:37:30.582',NULL),
('8028ff42-abe2-4bad-a8bd-37365257a6c5','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 07:48:07.790','2024-11-08 07:48:07.790','2024-11-08 07:48:07.790','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 07:52:50.693','2024-11-16 21:16:00.229',NULL),
('803b32f6-7ee1-4142-bbe4-a6cd1525da94','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 09:47:19.559','2025-10-06 09:47:19.559','2025-10-06 09:47:19.559','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 10:48:44.605','2025-10-17 10:54:04.291',NULL),
('80530fb9-4a8b-4fb0-8b91-43f29672afb7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 09:37:42.438','2025-01-06 09:37:42.438','2025-01-06 09:37:42.438','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.451',NULL),
('805d3913-d51a-4f94-b248-179f643509ba','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:09:47.515','2025-02-07 11:09:47.515','2025-02-07 11:09:47.515','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:12:39.715','2025-02-15 11:10:43.094',NULL),
('806d9a92-9e2e-4aea-8754-6edff82f6d07','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-07 08:31:59.537','2025-07-07 08:31:59.537','2025-07-07 08:31:59.537','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:22:40.562','2025-07-26 08:40:12.349',NULL),
('8102ef67-f624-4695-bdc5-ff5fcec65a02','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 12:52:46.503','2024-09-09 12:52:46.503','2024-09-09 12:52:46.503','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 12:54:28.018','2024-09-09 12:54:28.018',NULL),
('810c292f-950a-4737-a90d-20484a943d27','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 07:59:03.928','2025-06-16 07:59:03.928','2025-06-16 07:59:03.928','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 14:59:11.880','2025-06-27 08:25:57.828',NULL),
('81333884-7a1e-4941-b2d0-db9573258fc3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 11:18:41.866','2025-03-13 11:18:41.866','2025-03-13 11:18:41.866','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.446',NULL),
('818c8e5c-5e34-4ecd-9718-f30e3d67fa19','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 08:27:54.636','2025-05-05 08:27:54.636','2025-05-05 08:27:54.636','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.899',NULL),
('81b4ab47-10b5-463e-b622-f6e9b6e1cb62','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-14 08:40:00.889','2025-04-14 08:40:00.889','2025-04-14 08:40:00.889','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.229',NULL),
('81f4d91a-8b16-4811-b596-1b5bbe7daa1c','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 12:36:55.389','2024-12-13 12:36:55.389','2024-12-13 12:36:55.389','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 12:40:16.912','2024-12-16 18:41:52.654',NULL),
('81f94233-2989-41af-ba13-e1195509d6cd','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 10:08:05.630','2025-03-08 10:08:05.630','2025-03-08 10:08:05.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:02:30.865',NULL),
('822ed85b-b7d7-4857-8777-c509a07f14d8','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 21:01:13.822','2025-06-16 21:01:13.822','2025-06-16 21:01:13.822','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.288','2025-07-16 14:21:29.649',NULL),
('824113bc-bed7-448f-bd98-56f459d7a3c2','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 06:48:03.891','2025-04-24 06:48:03.891','2025-04-24 06:48:03.891','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.892',NULL),
('829fb421-50ca-4aa7-8ea6-fe8170f2311c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-10 09:54:33.666','2025-01-10 09:54:33.666','2025-01-10 09:54:33.666','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.402',NULL),
('82a2aded-fa94-4a69-bed4-a37c4975933d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-22 09:01:47.941','2025-10-22 09:01:47.941','2025-10-22 09:01:47.941','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.464','2025-10-25 08:58:44.071',NULL),
('82d4cf55-9678-45e4-9900-b890ed2c7cf5','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-14 15:02:25.552','2025-07-14 15:02:25.552','2025-07-14 15:02:25.552','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.888','2025-07-22 16:18:49.475',NULL),
('82d89a81-6913-4d7d-af48-3ebff825da0c','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:35:38.709','2025-01-29 07:35:38.709','2025-01-29 07:35:38.709','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.591',NULL),
('82f3f29d-fc2d-43ef-9a4d-e623aafd9fa3','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 16:01:17.698','2025-03-24 16:01:17.698','2025-03-24 16:01:17.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.498',NULL),
('83266f16-f680-4f74-b9d0-586446203f36','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-09 23:30:47.228','2025-08-09 23:30:47.228','2025-08-09 23:30:47.228','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.518','2025-08-22 20:28:07.534',NULL),
('836290d9-9549-45f0-a237-fb8a8015a42b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 10:59:58.694','2025-03-13 10:59:58.694','2025-03-13 10:59:58.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:29:41.705','2025-04-02 18:57:11.023',NULL),
('8372282c-7d4f-4865-ac2b-435868b17958','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-19 10:23:12.019','2025-03-19 10:23:12.019','2025-03-19 10:23:12.019','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.389',NULL),
('837732cb-01c0-4c9c-b5d6-4bb88decf4bc','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 06:55:23.158','2024-03-30 06:55:23.158','2024-03-30 06:55:23.158','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 07:02:04.954','2024-04-01 11:32:07.556',NULL),
('83cf7a2f-937e-46a6-aa4a-46e71967fc0d','0debd19b-d90b-48a0-9568-2d01319377e0','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-20 13:09:12.380','2025-05-20 13:09:12.380','2025-05-20 13:09:12.380','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:29:06.668','2025-05-26 13:23:22.432',NULL),
('83d00694-b3d2-40c8-8486-a06eb09632b5','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 07:46:35.593','2024-11-02 07:46:35.593','2024-11-02 07:46:35.593','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 07:48:56.525','2024-11-04 13:45:03.581',NULL),
('83e70914-9d8a-4b86-96d7-b5e211ea12a7','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-04 10:54:33.727','2025-08-04 10:54:33.727','2025-08-04 10:54:33.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.920','2025-09-03 06:09:36.704',NULL),
('83f3772d-6455-4ac6-8f98-6607bb5e1541','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-23 10:24:27.792','2025-10-23 10:24:27.792','2025-10-23 10:24:27.792','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.303','2025-10-25 08:58:43.996',NULL),
('83fe7836-b904-4bd9-a5bd-517027b48ad3','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 07:52:57.964','2024-11-08 07:52:57.964','2024-11-08 07:52:57.964','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 07:57:02.631','2024-12-02 09:51:49.527',NULL),
('8421906d-647f-4b02-a9b0-25cf785400bb','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 07:50:21.579','2024-11-02 07:50:21.579','2024-11-02 07:50:21.579','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 07:53:51.130','2024-11-02 08:24:38.279','2024-11-02 08:24:38.283'),
('8431ed4b-582e-4b12-9a0a-2522fc742875','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 07:07:22.204','2024-03-12 07:07:22.204','2024-03-12 07:07:22.204','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 07:20:13.803','2024-03-12 07:39:19.473','2024-03-12 07:39:19.472'),
('8433bcbd-449c-4684-8fb7-374b84405f01','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-15 08:05:26.302','2025-08-15 08:05:26.302','2025-08-15 08:05:26.302','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:22.035','2025-09-03 06:09:36.810',NULL),
('84381775-c590-4b2d-b2d2-1eee77a18ce9','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:58:51.960','2025-01-29 07:58:51.960','2025-01-29 07:58:51.960','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:29:44.418','2025-02-27 13:37:30.608',NULL),
('84575886-734d-4e3e-b610-5ecd02cddbe1','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:33:22.300','2024-03-16 08:33:22.300','2024-03-16 08:33:22.300','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:35:03.894','2024-03-22 11:21:01.038',NULL),
('84586897-332a-42b5-ad61-f7345ad73973','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-24 08:17:10.434','2024-04-24 08:17:10.434','2024-04-24 08:17:10.434','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-24 08:23:58.915','2024-04-27 08:06:47.685','2024-04-27 08:06:47.689'),
('845cfd3b-7133-4a5d-9a55-5e8cccb20d34','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-24 08:57:31.720','2025-07-24 08:57:31.720','2025-07-24 08:57:31.720','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.236','2025-08-12 08:07:30.463',NULL),
('84671829-6c70-4455-a37b-302cd69413db','193ed304-b86e-40a4-9bce-613f799736ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-07 11:01:30.710','2024-11-07 11:01:30.710','2024-11-07 11:01:30.710','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-07 11:10:17.116','2024-11-12 16:56:22.714',NULL),
('846d11e7-1c6e-4b8f-ab90-30c550348591','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-15 20:34:35.820','2025-05-15 20:34:35.820','2025-05-15 20:34:35.820','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.664',NULL),
('847c962c-0521-4263-abf1-567d1cca6ffc','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 09:28:30.832','2024-09-16 09:28:30.832','2024-09-16 09:28:30.832','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 09:42:45.863','2024-09-28 16:13:19.621',NULL),
('847c9cdf-69f4-40fa-96ba-a0b179a598f1','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-16 07:22:08.725','2025-07-16 07:22:08.725','2025-07-16 07:22:08.725','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.910','2025-07-22 16:18:49.497',NULL),
('8492857f-6039-4e0a-98fe-763e43a932e7','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-04 15:04:21.835','2025-08-04 15:04:21.835','2025-08-04 15:04:21.835','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.407','2025-09-12 17:16:02.606',NULL),
('84947533-e878-408b-a459-63c1c85cc7f4','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-19 09:56:11.381','2025-03-19 09:56:11.381','2025-03-19 09:56:11.381','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:10.990',NULL),
('84b52d10-bd34-46f2-b7d6-147d27d3a60d','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 08:45:25.476','2024-12-27 08:45:25.476','2024-12-27 08:45:25.476','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.471',NULL),
('84c87fd9-ecd8-43d6-b82f-93489ca9aedb','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:31:50.429','2024-05-10 06:31:50.429','2024-05-10 06:31:50.429','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:33:40.638','2024-05-10 06:33:40.638',NULL),
('84d62eb1-0590-43a5-b4dd-fb706e475d4a','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-31 08:23:14.351','2025-07-31 08:23:14.351','2025-07-31 08:23:14.351','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.119','2025-09-06 09:41:31.832',NULL),
('84e32908-3cc4-4381-8e6b-a4c986d42180','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 14:11:06.470','2025-04-22 14:11:06.470','2025-04-22 14:11:06.470','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.255',NULL),
('84ea8958-2d7d-46cf-8e82-e9c1cbe78497','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:00:43.945','2024-06-08 07:00:43.945','2024-06-08 07:00:43.945','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:02:43.193','2024-06-08 07:49:52.227',NULL),
('84edfafe-5766-43d9-b4c0-93e6a23f9c0e','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-24 07:41:40.136','2024-04-24 07:41:40.136','2024-04-24 07:41:40.136','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-24 07:46:39.040','2024-05-09 06:17:16.437',NULL),
('851e18b2-bf47-49ab-9a50-0eddfba2e3d1','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:07:22.966','2024-11-02 08:07:22.966','2024-11-02 08:07:22.966','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:09:07.912','2024-11-04 09:35:14.078',NULL),
('85503000-6eb6-4519-b2e6-541421a88c6c','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-20 12:50:37.459','2025-05-20 12:50:37.459','2025-05-20 12:50:37.459','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.804',NULL),
('855a524c-3c5c-4b7c-a4a0-3513d84a528d','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 16:16:53.933','2025-07-30 16:16:53.933','2025-07-30 16:16:53.933','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.321','2025-09-12 17:16:02.570',NULL),
('856fb4c5-eb02-42df-93d9-d0a68f8019ef','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-04 18:35:28.528','2025-10-04 18:35:28.528','2025-10-04 18:35:28.528','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.583','2025-10-07 15:17:28.401',NULL),
('8572ae79-371f-4860-abfe-9d113a3ead13','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-29 13:11:20.979','2024-12-29 13:11:20.979','2024-12-29 13:11:20.979','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.308',NULL),
('8576e42b-b7d2-4d67-be8d-47a590d57f70','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 08:46:28.789','2025-01-17 08:46:28.789','2025-01-17 08:46:28.789','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.697',NULL),
('85a8729a-c681-41f3-a6ef-f84eb4855e5e','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 11:42:44.060','2024-10-21 11:42:44.060','2024-10-21 11:42:44.060','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 11:47:44.095','2024-10-31 07:50:19.186',NULL),
('85d92e9b-09f6-4367-aa27-9a7e8d47ac76','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-04 08:45:44.385','2024-11-04 08:45:44.385','2024-11-04 08:45:44.385','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-04 08:48:00.256','2024-11-08 19:43:55.907',NULL),
('85f08c9c-bdb7-407f-86bf-a257f94a8ad2','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 06:54:56.956','2024-06-08 06:54:56.956','2024-06-08 06:54:56.956','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:00:28.128','2024-06-08 07:03:37.617',NULL),
('8601e825-e6f9-4963-9e4f-4f9cf5176381','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-06 21:22:35.000','2024-11-06 21:22:35.000','2024-11-06 21:22:35.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-07 14:25:20.235','2024-11-08 06:44:36.085','2024-11-08 06:44:36.089'),
('86237122-d369-418f-8be9-1b07a2179501','223e2487-81b9-4d78-968c-522e914203d0','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-19 10:06:51.755','2025-04-19 10:06:51.755','2025-04-19 10:06:51.755','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.501',NULL),
('864bd4a1-2355-46b9-9772-9fa4c0f522a3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 08:05:00.609','2025-07-23 08:05:00.609','2025-07-23 08:05:00.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.260','2025-07-26 08:40:12.405',NULL),
('865ae8c4-b1a1-4946-a5fb-6654dc8960e4','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-16 12:57:19.401','2024-10-16 12:57:19.401','2024-10-16 12:57:19.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-16 13:00:11.241','2024-10-17 12:54:36.975',NULL),
('8663c4e3-cae5-4406-b88a-fc673cdeb5e6','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 11:04:33.916','2025-08-26 11:04:33.916','2025-08-26 11:04:33.916','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.086','2025-09-06 09:41:31.890',NULL),
('866996c8-b161-4402-981b-5757639fe6cb','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 14:57:08.538','2025-08-01 14:57:08.538','2025-08-01 14:57:08.538','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.538','2025-08-26 11:42:28.757',NULL),
('8674459b-6093-406e-874e-27c5d94e19c1','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 06:56:25.723','2025-04-26 06:56:25.723','2025-04-26 06:56:25.723','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:02:30.824',NULL),
('867aa4c6-b601-40df-90c5-0b304d599c72','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-21 07:05:28.519','2025-07-21 07:05:28.519','2025-07-21 07:05:28.519','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.432','2025-08-12 08:07:30.448',NULL),
('86d4840d-67ed-4add-8d37-9a1cc327657f','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-19 08:12:36.754','2024-11-19 08:12:36.754','2024-11-19 08:12:36.754','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-19 08:16:34.155','2024-12-09 17:29:20.122',NULL),
('86d7c655-99c8-4dd2-833b-1722c240592f','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-27 12:02:26.775','2025-08-27 12:02:26.775','2025-08-27 12:02:26.775','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.356','2025-09-18 15:48:17.471',NULL),
('86f4c29a-61f7-412e-b48e-6459bc90cc13','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:35:42.827','2025-07-01 10:35:42.827','2025-07-01 10:35:42.827','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.970','2025-07-22 16:18:49.582',NULL),
('870665a7-69f0-458d-a9f8-600cffc1c2e3','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-11 10:31:09.306','2024-12-11 10:31:09.306','2024-12-11 10:31:09.306','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.953',NULL),
('8710404d-1dd0-4a1e-bf03-81f4ae63bbe7','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-31 09:53:46.703','2024-05-31 09:53:46.703','2024-05-31 09:53:46.703','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-31 10:00:14.168','2024-06-08 06:45:21.970','2024-06-08 06:45:21.975'),
('871ada67-b092-4d66-999b-c05632d1be6f','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-04 08:51:53.885','2025-08-04 08:51:53.885','2025-08-04 08:51:53.885','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 10:05:04.234','2025-08-15 20:59:05.042',NULL),
('87567328-b309-4aa4-860c-67ef2af02250','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-25 11:19:15.641','2025-07-25 11:19:15.641','2025-07-25 11:19:15.641','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.199','2025-08-12 08:07:30.416',NULL),
('8788284b-3431-4243-8cf6-8f27b8856c35','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 08:18:05.682','2025-05-13 08:18:05.682','2025-05-13 08:18:05.682','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.149',NULL),
('87c98352-b369-49a9-834b-72b84d8ff72f','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-14 12:46:55.412','2025-06-14 12:46:55.412','2025-06-14 12:46:55.412','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:48:04.680','2025-06-18 08:08:50.311',NULL),
('87def5af-68ef-4fd3-9a7e-33f801abf384','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 07:32:02.401','2025-02-12 07:32:02.401','2025-02-12 07:32:02.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.841',NULL),
('87e2116d-e8c1-4384-9d1e-acd8a3f2ef25','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-21 18:27:10.821','2025-07-21 18:27:10.821','2025-07-21 18:27:10.821','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.329','2025-07-26 08:40:12.391',NULL),
('87e79c3f-42ff-42de-ad00-36b40d719f8b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-12 11:14:49.993','2025-05-12 11:14:49.993','2025-05-12 11:14:49.993','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.569',NULL),
('87f1f434-ef82-414f-a5b1-52377ebf1187','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 14:18:05.560','2024-11-23 14:18:05.560','2024-11-23 14:18:05.560','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 14:25:54.088','2024-12-02 09:51:49.700',NULL),
('88042485-7a5d-49cb-a682-29df08935ef1','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-24 07:22:01.067','2025-04-24 07:22:01.067','2025-04-24 07:22:01.067','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.070',NULL),
('880b4990-6b8d-4d41-a1ce-54fe45fb74af','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:23:46.898','2025-04-17 15:23:46.898','2025-04-17 15:23:46.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:05:40.653',NULL),
('881294fa-43e8-4cea-8636-97dc90cfa274','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 20:22:50.727','2025-02-13 20:22:50.727','2025-02-13 20:22:50.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:28:54.810','2025-02-24 20:28:04.553',NULL),
('884333db-cc23-416e-8e56-6cbe1751b32f','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-25 13:53:44.608','2025-08-25 13:53:44.608','2025-08-25 13:53:44.608','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 11:09:53.496','2025-09-12 11:09:53.496',NULL),
('88667877-5b1f-438a-843b-21ba874d3a2f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 10:02:02.749','2025-02-07 10:02:02.749','2025-02-07 10:02:02.749','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.699',NULL),
('8875af5c-359f-4c6a-9c55-ac257bf1a610','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:15:54.662','2024-06-08 07:15:54.662','2024-06-08 07:15:54.662','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:18:05.251','2024-06-11 07:47:16.728',NULL),
('887bff39-90aa-46c4-a79a-1c9c1f7052cb','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-08 07:32:44.453','2025-01-08 07:32:44.453','2025-01-08 07:32:44.453','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.613',NULL),
('88fab177-61b3-487e-9bf1-13fd81a8e9cb','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 13:24:50.550','2024-10-09 13:24:50.550','2024-10-09 13:24:50.550','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 13:28:18.167','2024-10-23 14:40:43.371',NULL),
('89010b71-f744-43a6-bea7-75e6734c9521','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-23 10:23:36.944','2025-08-23 10:23:36.944','2025-08-23 10:23:36.944','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.380','2025-09-12 17:16:02.724',NULL),
('894a7bb4-fe1a-46e1-b162-9d3db126b1f6','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 08:33:15.102','2024-08-20 08:33:15.102','2024-08-20 08:33:15.102','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 08:41:27.585','2024-08-23 09:01:41.859',NULL),
('894fff67-397f-4a16-857c-fe38031acceb','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-11 10:45:32.557','2025-07-11 10:45:32.557','2025-07-11 10:45:32.557','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.244','2025-07-16 14:21:29.487',NULL),
('896c9584-b829-4ac8-928d-3c764fda1e65','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:12:18.082','2025-07-08 11:12:18.082','2025-07-08 11:12:18.082','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.673','2025-07-08 11:33:15.279',NULL),
('8997ea2b-0580-431f-8b50-b39e192a726a','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:07:08.872','2024-12-07 09:07:08.872','2024-12-07 09:07:08.872','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:12:01.171','2024-12-17 19:52:32.981',NULL),
('89981b86-207f-480e-9641-34308444de31','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-07 11:58:49.929','2025-07-07 11:58:49.929','2025-07-07 11:58:49.929','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.176','2025-07-11 08:00:02.589',NULL),
('8a4a0f5f-f71d-4eab-b1f7-ea9c33dfdb4b','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 13:51:20.055','2025-07-30 13:51:20.055','2025-07-30 13:51:20.055','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.905','2025-08-22 10:54:31.756',NULL),
('8a509d48-df2b-4649-8c9c-864b6462e76c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:10:05.881','2025-04-09 08:10:05.881','2025-04-09 08:10:05.881','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.435',NULL),
('8a6fe616-6823-4336-9fb5-8721f78bc37a','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-30 10:50:54.129','2025-06-30 10:50:54.129','2025-06-30 10:50:54.129','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.337','2025-07-26 08:40:12.418',NULL),
('8a7704cf-7125-4e53-aaea-4fbe0cc63d69','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-15 13:36:16.714','2025-10-15 13:36:16.714','2025-10-15 13:36:16.714','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.147','2025-10-22 11:29:52.853',NULL),
('8a92cc23-ba26-48c0-9f9b-84967fdd3a0e','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-30 17:10:49.187','2025-06-30 17:10:49.187','2025-06-30 17:10:49.187','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:26:30.982','2025-07-07 11:44:52.668',NULL),
('8aa7c42b-193d-42b3-872a-d3263ad8532a','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:45:38.344','2024-12-20 12:45:38.344','2024-12-20 12:45:38.344','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.378',NULL),
('8b077cc5-8c11-400d-a846-75dcf5dea2f0','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:19:51.555','2025-01-04 23:19:51.555','2025-01-04 23:19:51.555','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:30:15.511','2025-01-29 12:24:52.570',NULL),
('8b24e90d-0bd7-4db0-b410-0961d20f27e2','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 09:47:07.433','2025-05-14 09:47:07.433','2025-05-14 09:47:07.433','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-06-03 14:06:32.766',NULL),
('8b6b0de6-0ba1-4a4c-b82c-5265896d20b8','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 10:04:37.199','2025-02-07 10:04:37.199','2025-02-07 10:04:37.199','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.801',NULL),
('8b70e3dc-3751-413e-8878-e703ca94a16d','a42d8839-caef-4422-888f-cbfdf4188c5b','e6cc7d42-de29-4029-bf0f-5ba2156e1e85','2024-11-06 12:19:52.693','2024-11-06 12:19:52.693','2024-11-06 12:19:52.693','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 12:35:40.686','2024-11-08 18:07:25.841',NULL),
('8b7ce3eb-1377-46da-b4f1-7bcf139f0cac','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-28 07:17:18.687','2025-01-28 07:17:18.687','2025-01-28 07:17:18.687','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.629',NULL),
('8bab14a8-3f2e-44f6-b600-e4eed1ca7051','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 07:49:41.703','2025-08-11 07:49:41.703','2025-08-11 07:49:41.703','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:46:30.873','2025-09-12 17:16:02.590',NULL),
('8bcb91eb-6f7d-4bf3-b808-98ed41be69db','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 08:15:22.342','2024-07-02 08:15:22.342','2024-07-02 08:15:22.342','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 08:17:08.538','2024-07-09 08:41:11.337',NULL),
('8c1c3ca6-df94-418b-b241-aba2fdcdef01','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-03 08:11:50.709','2025-09-03 08:11:50.709','2025-09-03 08:11:50.709','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.554','2025-09-26 12:34:50.023',NULL),
('8c3a37e3-d878-4568-9c13-bb85b87da2d4','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 10:43:37.632','2025-08-13 10:43:37.632','2025-08-13 10:43:37.632','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.527','2025-09-24 13:41:15.032',NULL),
('8c77a4ce-6b3b-456c-97db-1ee9e92e476e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-15 08:55:44.047','2025-05-15 08:55:44.047','2025-05-15 08:55:44.047','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:11:58.207','2025-07-08 11:33:15.135',NULL),
('8c7b51f6-77ff-42b3-810a-9d8570753bdb','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 09:36:57.592','2025-01-15 09:36:57.592','2025-01-15 09:36:57.592','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:30:15.511','2025-01-29 12:24:52.647',NULL),
('8c7e46a5-3027-4376-8107-d38a2cbad67f','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 06:35:20.506','2025-07-31 06:35:20.506','2025-07-31 06:35:20.506','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.911','2025-08-21 08:12:56.974',NULL),
('8c863069-6ab0-4afc-a26e-bc55f4132a27','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:29:13.751','2024-05-10 06:29:13.751','2024-05-10 06:29:13.751','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:31:42.568','2024-05-10 08:26:10.083',NULL),
('8c8dc423-3686-4437-9033-0fd907795b23','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 08:34:10.017','2025-06-12 08:34:10.017','2025-06-12 08:34:10.017','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:41:41.837','2025-06-18 08:08:50.303',NULL),
('8cbc8275-b332-4f4e-a3cd-4bc78f58c637','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 15:06:54.663','2025-06-12 15:06:54.663','2025-06-12 15:06:54.663','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.789','2025-07-16 14:21:29.434',NULL),
('8cfc0cf9-0194-417c-b572-24260493e9b8','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:47:18.786','2024-03-30 09:47:18.786','2024-03-30 09:47:18.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:50:31.527','2024-03-30 09:50:31.527',NULL),
('8d24e9d5-0458-47b9-94ae-2653a3c37b8c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-04 07:37:13.286','2024-10-04 07:37:13.286','2024-10-04 07:37:13.286','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-04 07:42:15.831','2024-10-11 15:29:10.398',NULL),
('8d320a61-9596-4ee5-8710-333a8fceb942','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-11 20:38:31.059','2025-06-11 20:38:31.059','2025-06-11 20:38:31.059','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.420','2025-07-29 12:42:47.096',NULL),
('8d5d61b4-0286-4a55-b88a-fd5a88bb72c3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 15:16:51.519','2025-07-02 15:16:51.519','2025-07-02 15:16:51.519','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.532','2025-08-22 20:28:07.490',NULL),
('8d707d40-77fa-4382-9ec2-18dc9861a92f','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 09:00:51.657','2024-03-18 09:00:51.657','2024-03-18 09:00:51.657','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 09:03:24.794','2024-03-23 10:43:15.138',NULL),
('8da2fafa-6809-42f1-a9ba-c1a1b34477b5','e6d632ec-bc89-4254-b43c-4f7383017076','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 08:15:00.839','2025-08-12 08:15:00.839','2025-08-12 08:15:00.839','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.576','2025-08-14 08:02:29.739',NULL),
('8db49782-f7e5-4f24-9145-b534a1f151bf','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 13:17:49.214','2025-02-05 13:17:49.214','2025-02-05 13:17:49.214','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.726',NULL),
('8dc9f53c-4042-4dc4-bb3d-1093d6afa7cd','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-07 12:35:26.658','2025-03-07 12:35:26.658','2025-03-07 12:35:26.658','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.587',NULL),
('8decc4b8-fcb4-45a9-91f8-7198432dc403','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 08:15:56.887','2025-08-12 08:15:56.887','2025-08-12 08:15:56.887','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.558','2025-08-21 08:12:56.988',NULL),
('8e01435b-14c5-44d4-bf53-e8d50a75047c','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-22 07:16:35.574','2025-07-22 07:16:35.574','2025-07-22 07:16:35.574','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.483','2025-08-22 20:28:07.499',NULL),
('8e301463-2545-418a-8362-62ba881558df','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 13:57:28.194','2024-10-23 13:57:28.194','2024-10-23 13:57:28.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 13:58:32.934','2024-11-12 08:04:45.938',NULL),
('8e326436-8adf-43de-82ac-04df2346065e','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-07 10:06:02.507','2025-07-07 10:06:02.507','2025-07-07 10:06:02.507','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.266','2025-07-16 14:21:29.465',NULL),
('8e62c098-acee-4914-881b-cbd573ce8fe4','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-30 07:50:09.178','2025-04-30 07:50:09.178','2025-04-30 07:50:09.178','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:32:31.764','2025-05-26 13:23:22.666',NULL),
('8e7fa7df-cd7a-46df-8725-8a6ceb538cd5','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 07:53:03.857','2025-03-06 07:53:03.857','2025-03-06 07:53:03.857','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:30:21.170','2025-03-12 19:01:22.510',NULL),
('8ea46510-aeaf-430f-8217-8a850e6c7b8b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:01:02.478','2024-10-02 09:01:02.478','2024-10-02 09:01:02.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:03:22.568','2024-10-02 09:03:22.568',NULL),
('8ea4ff4e-595e-40ea-a0ee-ecf5ab4caa2f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-10 12:27:59.244','2024-09-10 12:27:59.244','2024-09-10 12:27:59.244','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-10 12:35:24.664','2024-09-18 21:32:58.642',NULL),
('8ea56316-c2f2-4385-9fde-8d229c2654d8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 10:19:31.183','2025-05-05 10:19:31.183','2025-05-05 10:19:31.183','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.605',NULL),
('8ec94dba-2679-4e29-bc86-7a193090cf5e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 16:06:57.161','2025-02-25 16:06:57.161','2025-02-25 16:06:57.161','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.925',NULL),
('8ed9847f-edfb-4942-8cd8-12037329da1c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 13:36:26.236','2024-12-27 13:36:26.236','2024-12-27 13:36:26.236','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-01-29 12:24:52.585',NULL),
('8ee68f97-4bbb-423a-8c1f-50cd9f9e9711','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 13:34:41.705','2024-11-23 13:34:41.705','2024-11-23 13:34:41.705','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 13:36:50.927','2024-12-02 09:51:49.619',NULL),
('8ef57363-dab8-488a-a6bc-b880a819c0d5','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-17 14:04:12.674','2025-07-17 14:04:12.674','2025-07-17 14:04:12.674','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.472','2025-08-15 20:59:05.087',NULL),
('8f1195bf-9eeb-406d-9f0b-f58f501cdedc','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 13:08:30.705','2025-01-02 13:08:30.705','2025-01-02 13:08:30.705','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.521',NULL),
('8f23bb5f-9e5c-41fd-ba3d-76b96ff69f29','8d03b939-d544-45f8-8173-464bea4e67ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:34:27.245','2025-07-08 11:34:27.245','2025-07-08 11:34:27.245','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.836','2025-07-16 14:21:29.457',NULL),
('8f738a7a-ee48-4158-93c2-a85abf49c3a7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 07:54:26.516','2025-09-23 07:54:26.516','2025-09-23 07:54:26.516','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.845','2025-10-01 07:56:23.169',NULL),
('8f7c60da-6eb5-4bb2-8b72-b7d419f437fe','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 06:46:24.480','2024-03-30 06:46:24.480','2024-03-30 06:46:24.480','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 06:51:20.534','2024-04-01 11:32:28.485',NULL),
('8f7dec63-d1aa-4ce4-9c87-2b5739ff9620','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:44:42.927','2024-12-20 12:44:42.927','2024-12-20 12:44:42.927','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.359',NULL),
('8f8c908d-ece0-4d13-998e-6a98425ea215','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 09:02:24.178','2025-09-22 09:02:24.178','2025-09-22 09:02:24.178','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.449','2025-09-26 12:27:42.318',NULL),
('8fbdfeb8-ec34-4e07-84b7-564a63fd3882','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 07:33:00.386','2025-06-25 07:33:00.386','2025-06-25 07:33:00.386','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-02 12:42:52.155','2025-07-07 11:44:52.801',NULL),
('8fe180e0-1618-40ac-896e-c0e0df3d1306','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-15 09:52:10.490','2025-09-15 09:52:10.490','2025-09-15 09:52:10.490','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.396','2025-09-18 15:48:17.525',NULL),
('8ffc41da-7894-4bdf-a573-0a8304df18f7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:34:03.505','2024-11-15 16:34:03.505','2024-11-15 16:34:03.505','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:36:00.360','2024-11-15 16:36:00.360',NULL),
('9001f45e-ae6a-431f-827c-8f81b5744d2f','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:34:26.430','2024-08-31 12:34:26.430','2024-08-31 12:34:26.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:36:46.628','2024-08-31 12:36:46.628',NULL),
('9020f137-180c-47dd-9caa-b53781b37962','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-22 16:49:13.595','2025-06-22 16:49:13.595','2025-06-22 16:49:13.595','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.722','2025-07-08 11:33:15.094',NULL),
('903bb0d6-b56d-4f1e-859a-8503e4a9b7ab','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:47:27.291','2024-03-23 07:47:27.291','2024-03-23 07:47:27.291','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:49:07.504','2024-03-23 09:01:16.642',NULL),
('903e4be7-84c6-4456-a1f6-f3cc52dcc5f3','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 08:05:59.416','2025-03-24 08:05:59.416','2025-03-24 08:05:59.416','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.183',NULL),
('9041ceef-e275-4478-85b0-5b4a0d6d0557','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 12:32:23.260','2025-08-06 12:32:23.260','2025-08-06 12:32:23.260','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.133','2025-08-14 08:02:29.710',NULL),
('905583d1-b985-4ca5-aaee-ce4447806be2','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 09:08:26.063','2025-05-13 09:08:26.063','2025-05-13 09:08:26.063','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.754',NULL),
('906512fd-4255-491a-9082-8b173bade357','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:06:55.458','2024-09-18 21:06:55.458','2024-09-18 21:06:55.458','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:09:24.726','2024-09-19 17:45:37.277',NULL),
('909b92e4-a843-4330-9fb7-f9e963c5234b','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 12:12:43.059','2025-02-06 12:12:43.059','2025-02-06 12:12:43.059','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.100',NULL),
('90cb5f9f-793d-48ee-b83b-c5fffe997544','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-12 09:06:37.570','2025-05-12 09:06:37.570','2025-05-12 09:06:37.570','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.917',NULL),
('90ce85d7-5c8e-4e17-93d8-bee48e3dee99','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:56:14.568','2024-12-07 08:56:14.568','2024-12-07 08:56:14.568','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:00:18.509','2024-12-17 19:52:32.876',NULL),
('90deb6eb-7484-4448-8065-f07064cc3e42','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-29 12:26:48.260','2025-07-29 12:26:48.260','2025-07-29 12:26:48.260','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.412','2025-07-29 12:37:20.496',NULL),
('90fe5c88-be99-4483-aa56-2f7a79b3db0e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:54:49.127','2024-10-23 08:54:49.127','2024-10-23 08:54:49.127','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 08:56:20.985','2024-10-23 10:17:10.362',NULL),
('9111bee0-9b34-4b1c-8db3-c7a740d138db','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-26 11:52:09.851','2025-05-26 11:52:09.851','2025-05-26 11:52:09.851','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:21:46.729','2025-06-06 02:46:03.868',NULL),
('9121c9c6-3d2b-427d-b272-1f07af0096a2','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 07:47:42.521','2024-07-02 07:47:42.521','2024-07-02 07:47:42.521','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 07:49:51.583','2024-07-09 08:41:33.481',NULL),
('91478af9-2620-4672-aa83-fe3e516a672d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-18 13:28:36.152','2025-03-18 13:28:36.152','2025-03-18 13:28:36.152','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.805',NULL),
('914daece-1604-4731-bd3c-802f72820b11','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-18 07:01:49.104','2025-07-18 07:01:49.104','2025-07-18 07:01:49.104','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.434','2025-07-29 12:43:22.143',NULL),
('915578db-8455-465e-85bd-99ae7c131d9b','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 10:03:42.818','2024-12-24 10:03:42.818','2024-12-24 10:03:42.818','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.623',NULL),
('915f7479-1c68-49ed-9747-6dce74175e92','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 19:34:14.807','2025-01-17 19:34:14.807','2025-01-17 19:34:14.807','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.684',NULL),
('9174eb70-468d-46f8-a122-da3c4e838001','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-25 19:43:47.727','2024-11-25 19:43:47.727','2024-11-25 19:43:47.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 19:45:38.692','2024-12-17 19:52:32.891',NULL),
('918280dd-822f-4136-bc40-b007edb08b08','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 07:24:51.663','2025-04-22 07:24:51.663','2025-04-22 07:24:51.663','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.368',NULL),
('91f420a3-8325-425b-88a3-281270645d72','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 12:53:55.853','2024-12-27 12:53:55.853','2024-12-27 12:53:55.853','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:02:39.709','2025-01-07 17:06:26.289',NULL),
('9204966f-b3be-40b1-9d25-84385683e4d0','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-14 13:32:35.711','2024-10-14 13:32:35.711','2024-10-14 13:32:35.711','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-14 14:00:42.677','2024-10-17 14:12:06.594',NULL),
('92108347-220f-4035-a8af-aec09df6343d','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 10:56:07.269','2025-09-22 10:56:07.269','2025-09-22 10:56:07.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.701','2025-10-07 15:17:28.493',NULL),
('921510a9-784d-4ff9-97f0-307acc199cca','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 09:13:53.067','2025-03-21 09:13:53.067','2025-03-21 09:13:53.067','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-03-29 13:56:05.413',NULL),
('924dfa5f-eef2-4392-b26d-e126e1de1bf6','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:12:46.898','2024-11-02 08:12:46.898','2024-11-02 08:12:46.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:14:51.318','2024-11-02 09:16:02.282',NULL),
('92586972-6536-4b47-a406-bf3f6c6d2a53','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 17:00:13.908','2025-09-06 17:00:13.908','2025-09-06 17:00:13.908','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:02:33.103','2025-09-10 16:10:02.138',NULL),
('92828177-4868-448f-af04-288470576e14','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 09:22:33.589','2025-03-21 09:22:33.589','2025-03-21 09:22:33.589','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-02 18:57:11.010',NULL),
('92c3df84-80ac-4a4f-a845-27836f942997','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 16:50:35.499','2025-08-27 16:50:35.499','2025-08-27 16:50:35.499','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.657','2025-09-10 10:49:56.137',NULL),
('92d3f9d9-9dca-4ca8-8fb7-ed56c0eab759','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-11 13:02:11.867','2024-09-11 13:02:11.867','2024-09-11 13:02:11.867','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-11 13:11:44.921','2024-09-18 21:28:32.108',NULL),
('92d699cb-cd65-4b9d-aad9-32c34c740ace','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-05 14:19:27.352','2025-06-05 14:19:27.352','2025-06-05 14:19:27.352','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:21:46.729','2025-06-06 02:46:03.912',NULL),
('92f84ea7-af74-4844-81a2-1066661332de','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:43:54.523','2024-08-31 12:43:54.523','2024-08-31 12:43:54.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:45:55.360','2024-08-31 12:47:52.720','2024-08-31 12:47:52.724'),
('93173724-7d55-455b-997a-6d50c9e92081','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:17:21.437','2024-04-23 10:17:21.437','2024-04-23 10:17:21.437','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:19:00.603','2024-04-23 10:28:56.786',NULL),
('932b2bf0-1343-46a5-831c-e7918c4ec05b','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:38:18.264','2024-03-30 09:38:18.264','2024-03-30 09:38:18.264','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:44:54.240','2024-03-30 09:44:54.240',NULL),
('933bec0a-ee2d-4a65-ab84-679ab84b9989','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 15:55:34.700','2025-08-11 15:55:34.700','2025-08-11 15:55:34.700','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:22.028','2025-09-03 06:09:36.831',NULL),
('9383bf48-c770-4fdf-87cf-65d38ead463f','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-10 20:03:56.561','2025-09-10 20:03:56.561','2025-09-10 20:03:56.561','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.358','2025-09-12 17:16:02.696',NULL),
('93882535-2f0c-4f10-8652-3251c18cf4b5','5f3f13d2-795f-4eba-b7bd-61428d952ca2','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-03 08:51:06.191','2025-09-03 08:51:06.191','2025-09-03 08:51:06.191','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.106','2025-09-06 09:41:31.883',NULL),
('938857bb-d636-443b-a78a-4949cd5050d2','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 11:13:39.947','2024-09-24 11:13:39.947','2024-09-24 11:13:39.947','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 11:20:11.189','2024-10-02 09:36:54.056',NULL),
('93c6395c-8107-41af-81ed-86d48de95468','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 08:58:49.403','2024-10-02 08:58:49.403','2024-10-02 08:58:49.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:00:55.285','2024-10-02 09:00:55.285',NULL),
('93d74f9d-4d78-4336-b438-6d823caf3d24','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 13:29:14.359','2024-12-20 13:29:14.359','2024-12-20 13:29:14.359','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:51:16.891','2025-01-07 17:06:26.321',NULL),
('94090fc4-99ae-4129-929f-c5e2a80fd64b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 11:26:51.810','2025-10-02 11:26:51.810','2025-10-02 11:26:51.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.863','2025-10-03 16:08:51.185',NULL),
('941e2f45-5f62-4c87-972d-3052bf557fa8','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:45:13.467','2024-10-24 09:45:13.467','2024-10-24 09:45:13.467','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:46:49.527','2024-12-09 08:24:38.602',NULL),
('9422c79d-9f8d-41e8-abca-bd3464cd7163','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-11 13:36:59.479','2025-09-11 13:36:59.479','2025-09-11 13:36:59.479','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.800','2025-10-03 16:08:51.119',NULL),
('94316fb4-89ea-4c40-a6ee-15a9cc7993f7','d100cd88-31b8-4788-8c56-3df2fd4058aa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:14:37.256','2024-03-30 09:14:37.256','2024-03-30 09:14:37.256','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:18:26.152','2024-03-30 13:00:42.095',NULL),
('9440f9bc-d5fc-4e59-8183-c6def3c3c9d0','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-17 09:13:59.930','2025-02-17 09:13:59.930','2025-02-17 09:13:59.930','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.192',NULL),
('94946821-211a-46a9-9f02-b88cbb3f08b7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 07:49:03.469','2024-11-02 07:49:03.469','2024-11-02 07:49:03.469','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 07:50:10.910','2024-11-02 08:57:07.500',NULL),
('94b198a6-c33b-4d64-b830-f2d78852a0cf','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 12:39:41.657','2025-08-28 12:39:41.657','2025-08-28 12:39:41.657','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.921','2025-09-12 17:16:02.675',NULL),
('94e3e4bc-0199-409f-8a0a-4522f9b15c71','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 16:30:28.116','2025-02-04 16:30:28.116','2025-02-04 16:30:28.116','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:56:21.714','2025-02-20 12:40:28.847',NULL),
('94ed55ad-6c8d-4523-9dd0-4dc47ff06f8a','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 14:05:41.719','2025-09-16 14:05:41.719','2025-09-16 14:05:41.719','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.446','2025-09-18 15:48:17.586',NULL),
('94edf977-6036-44d4-b589-210ba0ce9a11','67e5a145-070e-4e0f-9c3b-09f273d6ed40','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-19 14:24:57.643','2025-08-19 14:24:57.643','2025-08-19 14:24:57.643','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 12:14:31.009','2025-09-10 12:48:00.893',NULL),
('951e7b0f-3c90-4b31-9c27-8e02a36d898c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 08:46:06.967','2024-05-29 08:46:06.967','2024-05-29 08:46:06.967','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 08:47:51.737','2024-05-29 08:47:51.737',NULL),
('95607fc2-8de6-4314-a6f3-178a396977ea','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 09:30:59.253','2025-01-06 09:30:59.253','2025-01-06 09:30:59.253','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:48:36.714','2025-01-22 09:40:15.676',NULL),
('95a4b125-0290-41c1-adb7-a16152fc053c','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 12:17:23.668','2024-10-02 12:17:23.668','2024-10-02 12:17:23.668','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 12:20:59.064','2024-10-11 16:08:27.750',NULL),
('95e244e0-73b7-4ecc-b795-b949ab4cdcc1','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 08:22:09.153','2024-10-09 08:22:09.153','2024-10-09 08:22:09.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 08:33:33.585','2024-10-30 17:48:30.381',NULL),
('95e2629b-9247-4869-9d88-300752cd2aec','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-19 14:22:08.224','2025-08-19 14:22:08.224','2025-08-19 14:22:08.224','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.539','2025-08-22 20:28:07.520',NULL),
('96249f41-7e84-4f2c-822a-8fba009f1602','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-01 06:27:38.597','2025-09-01 06:27:38.597','2025-09-01 06:27:38.597','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.296','2025-10-02 11:05:59.126',NULL),
('963b18de-3f3f-4a30-966a-ee79df80d000','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:35:30.142','2024-12-17 14:35:30.142','2024-12-17 14:35:30.142','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:14:04.004','2025-01-11 10:16:46.022',NULL),
('9664c2dc-d080-4f88-aafd-db80b1411a0e','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 08:35:00.899','2025-09-23 08:35:00.899','2025-09-23 08:35:00.899','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-24 10:50:42.862','2025-09-24 13:41:15.124',NULL),
('968edb94-d376-4d94-9e56-bc6187274b3d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-11 09:31:18.593','2025-09-11 09:31:18.593','2025-09-11 09:31:18.593','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.562','2025-09-26 12:27:42.448',NULL),
('9693567b-1e8f-406e-b4e1-4a0b141aba4f','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 13:26:24.244','2024-12-24 13:26:24.244','2024-12-24 13:26:24.244','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:11:43.420','2025-01-05 14:06:53.485',NULL),
('96a19eec-6a22-4f90-9fe9-123bf2914935','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 09:03:19.289','2025-10-06 09:03:19.289','2025-10-06 09:03:19.289','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.037','2025-10-14 08:52:36.891',NULL),
('96a6ac76-1a88-4c7b-8fa3-f051f4862f90','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-26 11:56:53.758','2025-05-26 11:56:53.758','2025-05-26 11:56:53.758','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.747',NULL),
('96c76e24-8bbd-4093-8867-7894da290b2b','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-12 14:23:58.959','2025-01-12 14:23:58.959','2025-01-12 14:23:58.959','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:41:42.101','2025-02-20 12:40:28.788',NULL),
('96cb7eb9-de72-492e-a81c-82b9ee7c06a5','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-16 06:20:43.106','2025-06-16 06:20:43.106','2025-06-16 06:20:43.106','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.812','2025-07-07 11:44:52.766',NULL),
('96cbd7d9-48ec-48b1-bc9c-199bf9c6ffa4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 14:42:58.273','2025-08-01 14:42:58.273','2025-08-01 14:42:58.273','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.623','2025-09-10 07:11:56.211',NULL),
('9714477c-633e-4781-b2a0-df0caf24bfef','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-01 08:23:22.787','2024-08-01 08:23:22.787','2024-08-01 08:23:22.787','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-01 08:46:53.633','2024-08-07 14:46:49.107',NULL),
('974af4c1-ee41-42f2-9692-e8d3a3567d25','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:09:59.860','2025-06-16 09:09:59.860','2025-06-16 09:09:59.860','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.573','2025-07-01 09:19:39.046',NULL),
('97527b16-4067-41e6-bfe1-050b067cb318','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-02 13:46:08.301','2024-12-02 13:46:08.301','2024-12-02 13:46:08.301','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:55:02.750','2024-12-17 19:52:32.868',NULL),
('9760a4b8-e0d8-4ead-9666-0f9e13cd5fa2','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-06 09:23:02.075','2025-05-06 09:23:02.075','2025-05-06 09:23:02.075','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.510',NULL),
('9766c134-7fff-451c-ba14-11333e1fe5ca','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-11-21 17:11:23.858','2024-11-21 17:11:23.858','2024-11-21 17:11:23.858','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 17:13:09.834','2024-12-02 09:51:49.558',NULL),
('97832582-aa82-408c-a8a6-6dc700c47767','0dae8190-b900-4826-9171-b2d74a2538b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 11:09:58.813','2025-02-06 11:09:58.813','2025-02-06 11:09:58.813','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.569',NULL),
('978ab776-9768-4933-8b69-b74b96b1fc4b','42b99374-3597-4c9c-b338-8bd585490a92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-17 10:56:20.679','2024-08-17 10:56:20.679','2024-08-17 10:56:20.679','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-17 11:00:33.272','2024-08-31 18:15:24.834',NULL),
('97c0ee26-a5ac-465b-ba14-b3a316aea51e','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 11:35:14.713','2025-08-05 11:35:14.713','2025-08-05 11:35:14.713','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.449','2025-08-15 20:59:05.029',NULL),
('97cfa3d6-7a9c-4259-a634-22f285b0127a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 14:12:42.613','2025-07-31 14:12:42.613','2025-07-31 14:12:42.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.964','2025-08-21 08:12:57.017',NULL),
('97df5bd4-978e-4e3e-9a30-56d0bfa8af28','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 11:58:28.409','2024-08-31 11:58:28.409','2024-08-31 11:58:28.409','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:02:01.386','2024-09-04 08:30:52.625','2024-09-04 08:30:52.629'),
('9815b16d-1bc7-4d61-bdd3-a082178c2e49','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-17 11:18:05.230','2025-10-17 11:18:05.230','2025-10-17 11:18:05.230','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.553','2025-10-25 08:58:44.091',NULL),
('984ea9fa-484e-4a72-9342-69d6c46c457d','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-12 18:38:01.631','2025-03-12 18:38:01.631','2025-03-12 18:38:01.631','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:40:02.947','2025-03-12 19:01:22.604',NULL),
('98700b2f-0784-49d9-9841-c12933c3a270','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-14 15:23:04.964','2024-03-14 15:23:04.964','2024-03-14 15:23:04.964','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-14 15:25:07.987','2024-03-14 15:25:22.602','2024-03-14 15:25:22.601'),
('987f536c-0e00-46ab-9cbe-eba6c948f9f3','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 09:16:16.544','2025-03-20 09:16:16.544','2025-03-20 09:16:16.544','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:22:28.272','2025-04-15 14:54:58.171',NULL),
('98afa4ee-188b-404c-b238-6fc06723b807','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 08:13:11.475','2025-03-27 08:13:11.475','2025-03-27 08:13:11.475','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.362',NULL),
('98e9e657-656e-402e-8b37-9376d4b48c24','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-30 07:38:51.093','2025-09-30 07:38:51.093','2025-09-30 07:38:51.093','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.549','2025-10-17 10:53:07.469',NULL),
('98fd1c06-36d5-4478-8297-c1da3a0a76c4','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 15:09:49.733','2025-08-27 15:09:49.733','2025-08-27 15:09:49.733','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.582','2025-09-10 07:11:56.183',NULL),
('99312d7e-3967-41ca-8abc-40f81e10d129','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:10:54.626','2025-04-24 08:10:54.626','2025-04-24 08:10:54.626','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.882',NULL),
('993600ef-064a-4702-91c2-e90e449e82f7','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-21 15:34:38.363','2025-05-21 15:34:38.363','2025-05-21 15:34:38.363','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.508','2025-07-01 09:19:39.061',NULL),
('9945902a-d436-4c00-9918-5cc1f7243c29','897db2b6-7b3e-46d6-bdb1-886bd9410c3a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 08:49:42.609','2025-02-12 08:49:42.609','2025-02-12 08:49:42.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.773',NULL),
('99533d85-b115-4039-aea0-3710226b0bd7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 10:29:21.665','2025-01-29 10:29:21.665','2025-01-29 10:29:21.665','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:31:57.984','2025-02-27 13:37:30.541',NULL),
('9984fe07-2482-4621-9e29-b4df5af0c93b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 10:53:17.514','2025-03-13 10:53:17.514','2025-03-13 10:53:17.514','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.143',NULL),
('99916aed-75e9-4d6d-a587-32a89bed712b','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 15:06:21.825','2024-08-20 15:06:21.825','2024-08-20 15:06:21.825','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 15:06:40.446','2024-08-25 13:34:55.072',NULL),
('99a14745-ff9e-4b8b-8784-e3b1f420f845','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-15 11:39:45.317','2025-08-15 11:39:45.317','2025-08-15 11:39:45.317','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:43:35.132','2025-09-06 09:41:31.866',NULL),
('99be0671-7643-4610-be55-47bb7b1cff25','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-14 21:50:47.000','2025-01-14 21:50:47.000','2025-01-14 21:50:47.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.632',NULL),
('99d1768d-d998-45fe-875a-4e96cf79a3ea','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-10 18:48:26.981','2024-11-10 18:48:26.981','2024-11-10 18:48:26.981','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-10 18:50:56.308','2024-11-21 14:03:08.967','2024-11-21 14:03:08.971'),
('99d85b82-c11a-4dd3-864c-3ba650c164be','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-14 15:24:14.869','2025-07-14 15:24:14.869','2025-07-14 15:24:14.869','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.293','2025-07-26 08:40:12.327',NULL),
('99db190c-c16a-4dea-8eff-4e999b8bf8ab','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-26 17:47:41.470','2025-05-26 17:47:41.470','2025-05-26 17:47:41.470','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.925',NULL),
('9a208309-1994-405a-838f-e5a0f0d6b2d3','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 12:26:11.921','2025-03-24 12:26:11.921','2025-03-24 12:26:11.921','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:27:28.803','2025-04-02 18:57:11.130',NULL),
('9a301e2e-6648-4bfc-9941-8040799b3209','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:13:17.630','2025-04-24 08:13:17.630','2025-04-24 08:13:17.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.345','2025-07-26 08:40:12.304',NULL),
('9a3eed8a-b356-429e-a082-74bbb14d4448','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-03 17:47:12.810','2025-02-03 17:47:12.810','2025-02-03 17:47:12.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:50:13.401','2025-02-11 17:09:06.582',NULL),
('9a417dac-863a-4fcb-b86e-bc95b279b19f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 12:48:24.662','2025-03-13 12:48:24.662','2025-03-13 12:48:24.662','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.334',NULL),
('9a79fca7-e62a-467c-93c2-dde2d274f5a7','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-18 07:53:42.611','2025-07-18 07:53:42.611','2025-07-18 07:53:42.611','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.487','2025-07-29 12:37:20.409',NULL),
('9ab9949b-32c8-4b0b-b3b9-29787cbf5198','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:09:17.723','2024-11-02 08:09:17.723','2024-11-02 08:09:17.723','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:10:35.168','2024-11-02 09:14:18.175',NULL),
('9acad4e3-a08a-476c-ab6a-16dcd13d07d3','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 21:09:40.948','2024-04-07 21:09:40.948','2024-04-07 21:09:40.948','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 21:14:56.395','2024-04-08 10:40:17.029',NULL),
('9acdbe1e-e9a4-4945-91d8-1bc6ab7e7a7f','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 09:54:10.454','2025-08-27 09:54:10.454','2025-08-27 09:54:10.454','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.826','2025-09-02 14:46:19.302',NULL),
('9af9a1fd-db15-430b-851e-b636bdd60296','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-22 19:00:45.825','2025-07-22 19:00:45.825','2025-07-22 19:00:45.825','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.874','2025-09-03 06:09:36.749',NULL),
('9b01c72f-0dcc-4091-a560-6428a1e5df17','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 08:25:27.077','2025-08-29 08:25:27.077','2025-08-29 08:25:27.077','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.636','2025-09-10 07:11:56.189',NULL),
('9b087f6d-5aad-49e1-9dac-efeae395e831','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-27 07:54:23.418','2025-03-27 07:54:23.418','2025-03-27 07:54:23.418','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.464',NULL),
('9b0a62cf-611a-4f5f-ac8e-27e13990e333','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 14:56:01.460','2025-08-13 14:56:01.460','2025-08-13 14:56:01.460','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.421','2025-09-19 10:00:25.432',NULL),
('9b0a647f-a2aa-42ba-91b1-4148bc3e996d','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:23:56.448','2024-07-20 10:23:56.448','2024-07-20 10:23:56.448','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:26:07.181','2024-10-04 11:52:41.965','2024-10-04 11:52:41.968'),
('9b3b3262-94d5-426d-acdf-dcd63dd5cdca','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-26 10:18:38.055','2025-01-26 10:18:38.055','2025-01-26 10:18:38.055','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-01-29 12:24:52.563',NULL),
('9b6653fb-83f6-472a-9cf8-cd72fa23a579','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-22 09:03:11.615','2025-01-22 09:03:11.615','2025-01-22 09:03:11.615','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.835',NULL),
('9b892e03-f947-417e-8488-bdf9c12548df','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 06:41:32.115','2025-05-14 06:41:32.115','2025-05-14 06:41:32.115','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:11:07.496',NULL),
('9ba92cb7-8bc6-4f89-9feb-66e30de383b0','fabe2c23-b5a5-4123-a962-af519ac31d3b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-12 16:46:34.362','2025-09-12 16:46:34.362','2025-09-12 16:46:34.362','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.272','2025-09-12 17:16:02.578',NULL),
('9baa1c38-a815-41ac-9d1b-ef2d10390086','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-01 07:33:31.497','2025-05-01 07:33:31.497','2025-05-01 07:33:31.497','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.598',NULL),
('9bd95c82-665d-4631-bcdc-e2294765d633','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-24 07:58:44.226','2025-03-24 07:58:44.226','2025-03-24 07:58:44.226','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.474',NULL),
('9be5af18-1e2f-4115-9d5b-a738767702b9','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 07:56:14.696','2025-09-16 07:56:14.696','2025-09-16 07:56:14.696','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.516','2025-09-26 12:27:42.409',NULL),
('9c177ece-1787-4704-97df-0daaefbbf421','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 07:19:39.790','2024-05-10 07:19:39.790','2024-05-10 07:19:39.790','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 07:20:01.459','2024-05-10 08:34:23.376',NULL),
('9c268661-f382-4a52-b1e4-9f131bb3858c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 15:53:45.963','2024-12-24 15:53:45.963','2024-12-24 15:53:45.963','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:55:09.945','2025-01-06 20:08:12.931',NULL),
('9c3630ea-b4ef-4f90-a5f5-95fd28a20e4e','193ed304-b86e-40a4-9bce-613f799736ab','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-25 13:18:27.280','2024-11-25 13:18:27.280','2024-11-25 13:18:27.280','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 13:20:15.784','2024-12-16 18:41:52.546',NULL),
('9c443cd3-43a8-4414-bee2-fd3ccc161696','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-04 12:38:37.238','2025-08-04 12:38:37.238','2025-08-04 12:38:37.238','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.464','2025-08-15 20:59:05.062',NULL),
('9c6df7e4-6f4b-485a-a298-82514184a0c1','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-24 08:13:39.185','2025-10-24 08:13:39.185','2025-10-24 08:13:39.185','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.252','2025-10-25 08:58:43.903',NULL),
('9c7812c1-d348-47be-bb47-b9144d76f7d9','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:27:51.941','2024-11-12 15:27:51.941','2024-11-12 15:27:51.941','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:29:19.908','2024-11-12 15:29:19.908',NULL),
('9c7c77f5-2407-404c-b630-4879f01e7802','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-22 07:42:04.937','2025-05-22 07:42:04.937','2025-05-22 07:42:04.937','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.873',NULL),
('9c7f705f-e5e6-45f1-b7f7-707aba129a05','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 14:59:30.496','2025-06-12 14:59:30.496','2025-06-12 14:59:30.496','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-26 09:43:12.529','2025-06-26 16:05:22.679',NULL),
('9c8de6f7-f83c-4772-92cf-1d66feb50658','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 12:36:01.316','2024-10-17 12:36:01.316','2024-10-17 12:36:01.316','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:37:24.020','2024-10-17 12:37:24.020',NULL),
('9ca2ccae-c67b-474b-b323-88ab05f36e0e','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-10 19:06:38.842','2024-12-10 19:06:38.842','2024-12-10 19:06:38.842','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.304',NULL),
('9cc4ce59-b727-4d83-a7e7-454e011faeb5','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-06 10:38:45.355','2025-08-06 10:38:45.355','2025-08-06 10:38:45.355','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.214','2025-08-12 08:07:30.409',NULL),
('9cc6e850-3da9-43fb-85c6-89f6715a5700','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-21 18:15:24.932','2025-07-21 18:15:24.932','2025-07-21 18:15:24.932','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.243','2025-08-12 08:07:30.386',NULL),
('9cc73e9d-3831-400f-b64e-c2ed1b3d8155','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:28:42.840','2025-01-04 23:28:42.840','2025-01-04 23:28:42.840','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.660',NULL),
('9cc98bf2-d4f2-47fe-b7e0-b1a1fea1461d','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:35:24.426','2024-03-16 08:35:24.426','2024-03-16 08:35:24.426','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:38:10.791','2024-03-16 08:38:10.791',NULL),
('9cf7a443-81dc-49a0-a221-a192989b7495','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-14 14:07:43.830','2024-10-14 14:07:43.830','2024-10-14 14:07:43.830','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-14 14:19:19.500','2024-10-17 12:51:00.936',NULL),
('9d12e50a-cab2-4dcf-b3e0-74be523951a6','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-16 11:06:40.699','2025-04-16 11:06:40.699','2025-04-16 11:06:40.699','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:16:53.375','2025-05-02 17:08:29.417',NULL),
('9d147fcc-39d4-4c65-9dd4-dfe5c384c03c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 07:44:28.300','2025-02-12 07:44:28.300','2025-02-12 07:44:28.300','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:44:36.676','2025-02-20 12:40:28.874',NULL),
('9d19da29-8542-4166-953b-d81531764028','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:15:42.041','2024-10-02 09:15:42.041','2024-10-02 09:15:42.041','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:17:41.268','2024-10-02 09:17:41.268',NULL),
('9d3cd2e2-5ad0-4665-bb37-f89bb3b9a0ed','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 11:42:36.772','2024-10-17 11:42:36.772','2024-10-17 11:42:36.772','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 11:43:41.667','2024-10-17 11:43:41.667',NULL),
('9d55feb6-af2d-404c-8544-ede985f60e0d','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-30 09:28:17.311','2024-12-30 09:28:17.311','2024-12-30 09:28:17.311','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-01-29 12:24:52.627',NULL),
('9d624494-b7d3-472c-afd0-4803ca096f33','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 15:01:33.313','2025-01-24 15:01:33.313','2025-01-24 15:01:33.313','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.724',NULL),
('9d7ce6c2-5205-4e10-92a5-d286b248b1a5','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 11:02:46.101','2025-02-27 11:02:46.101','2025-02-27 11:02:46.101','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:08:33.001','2025-03-21 17:17:30.084',NULL),
('9da19f57-3ec0-45e3-be89-f5263b7030ee','5f3f13d2-795f-4eba-b7bd-61428d952ca2','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-21 08:29:23.154','2025-09-21 08:29:23.154','2025-09-21 08:29:23.154','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.510','2025-09-24 13:41:15.018',NULL),
('9ddebd3d-e022-41e9-8080-65f521340967','c20e39e0-b2f7-4f7d-9393-8729cad35ae4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 12:40:56.206','2024-12-24 12:40:56.206','2024-12-24 12:40:56.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.655',NULL),
('9e0757f6-4b11-4bb8-9003-28399553c745','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-11 13:48:50.343','2024-09-11 13:48:50.343','2024-09-11 13:48:50.343','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-11 13:53:00.974','2024-09-20 09:46:31.249',NULL),
('9e0a39b3-1978-4fc6-99b7-0e5867358211','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:55:50.231','2024-05-04 07:55:50.231','2024-05-04 07:55:50.231','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:57:25.343','2024-05-04 07:57:25.343',NULL),
('9e0d3bd0-e0f2-43ab-86c0-c0a07fa3d45d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 21:02:23.890','2024-04-07 21:02:23.890','2024-04-07 21:02:23.890','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 21:08:24.868','2024-04-07 21:08:24.868',NULL),
('9e48b6a9-1fa6-481e-a9aa-44ff622b16e4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:56:08.421','2025-09-15 06:56:08.421','2025-09-15 06:56:08.421','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.661','2025-10-07 15:17:28.422',NULL),
('9e6af983-5700-49d6-a17c-aa1fd7ac56e2','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:20:04.800','2025-09-24 12:20:04.800','2025-09-24 12:20:04.800','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.860','2025-10-01 07:56:23.155',NULL),
('9eaf99fe-203f-4b79-83c1-9bd47b00a782','0debd19b-d90b-48a0-9568-2d01319377e0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:41:20.568','2025-02-07 11:41:20.568','2025-02-07 11:41:20.568','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.027',NULL),
('9eb06af9-1e39-4908-b048-005aacce92ef','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 13:21:29.348','2024-12-13 13:21:29.348','2024-12-13 13:21:29.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:24:23.701','2024-12-16 18:41:52.553',NULL),
('9ebaa842-0ff0-4109-bd28-48e5991c30a5','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-16 21:16:08.077','2025-06-16 21:16:08.077','2025-06-16 21:16:08.077','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.232','2025-07-07 11:44:52.773',NULL),
('9ee9e592-01ee-44ec-919b-f8b6ce597fef','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-30 11:13:25.528','2024-12-30 11:13:25.528','2024-12-30 11:13:25.528','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-10 08:54:21.157','2025-01-10 08:54:21.157',NULL),
('9f0bc916-b16d-4e9b-bc27-d4e7dd00a534','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 10:23:11.492','2025-05-05 10:23:11.492','2025-05-05 10:23:11.492','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.096',NULL),
('9f31b930-39a8-4661-8679-4ffbe3ae6d94','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-29 13:23:43.223','2024-11-29 13:23:43.223','2024-11-29 13:23:43.223','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-29 13:25:15.950','2024-12-09 17:29:20.149',NULL),
('9f410544-a5e9-4f40-b862-2e25425aad4c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-01 09:19:57.634','2024-04-01 09:19:57.634','2024-04-01 09:19:57.634','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-01 09:22:21.999','2024-04-07 20:35:10.607',NULL),
('9f4f5b8c-366c-4313-b495-f99e9a8e9d86','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-04 14:33:58.259','2025-08-04 14:33:58.259','2025-08-04 14:33:58.259','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:41:46.624','2025-09-05 08:55:11.128',NULL),
('9f9a2d1c-f31d-43f8-a251-f608195464f8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-25 11:39:15.058','2025-09-25 11:39:15.058','2025-09-25 11:39:15.058','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:32:37.658','2025-10-03 16:08:51.192',NULL),
('9fcd1196-cccb-482c-bfcd-c59181fe3c04','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 06:51:51.042','2024-03-30 06:51:51.042','2024-03-30 06:51:51.042','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 06:55:21.004','2024-04-01 11:33:01.081',NULL),
('9fd640f4-6805-4f47-846c-39ee1b02563f','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 12:55:17.217','2024-10-09 12:55:17.217','2024-10-09 12:55:17.217','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 13:09:35.918','2024-10-16 11:51:02.100',NULL),
('9fdfd695-21a6-4ee0-9d77-8b4b26dfbe85','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-06 10:00:24.403','2024-11-06 10:00:24.403','2024-11-06 10:00:24.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 10:08:47.344','2024-11-15 17:02:04.154',NULL),
('9feb4e97-2426-4001-b9f4-9cb3a92475a7','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 06:34:45.659','2025-10-10 06:34:45.659','2025-10-10 06:34:45.659','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.492','2025-10-17 10:53:07.414',NULL),
('a003b318-44c7-41be-95f4-73f4cc59d6f8','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-22 07:36:06.588','2025-10-22 07:36:06.588','2025-10-22 07:36:06.588','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.124','2025-10-22 11:29:52.872',NULL),
('a008955f-353c-4ca4-8ce9-964140b2795a','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 08:27:14.765','2025-07-31 08:27:14.765','2025-07-31 08:27:14.765','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.461','2025-08-22 20:28:07.556',NULL),
('a011efb6-0ed2-4711-b533-9d483b56c854','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 10:49:39.650','2024-03-30 10:49:39.650','2024-03-30 10:49:39.650','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 10:52:54.994','2024-05-02 19:56:35.963',NULL),
('a023ef08-df89-4da8-b85d-a72e6effbcf5','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 12:12:26.212','2025-08-11 12:12:26.212','2025-08-11 12:12:26.212','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.831','2025-09-02 14:46:19.309',NULL),
('a057cf54-fdf5-458b-8a50-90a11f395799','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-19 07:58:03.870','2025-08-19 07:58:03.870','2025-08-19 07:58:03.870','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.971','2025-09-03 06:09:36.771',NULL),
('a0850782-edcb-4681-ab6f-3257404dc0cb','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 19:59:28.406','2024-12-28 19:59:28.406','2024-12-28 19:59:28.406','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:41:42.101','2025-02-20 12:40:28.881',NULL),
('a0856733-2f3d-45b5-9bf1-0fa38466bb18','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-03 09:24:16.060','2025-07-03 09:24:16.060','2025-07-03 09:24:16.060','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-17 09:35:48.474','2025-07-17 09:36:36.383',NULL),
('a0a084bb-b314-4bfb-9c0e-91b21bf32de1','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 15:27:36.509','2025-09-23 15:27:36.509','2025-09-23 15:27:36.509','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-24 10:33:48.338','2025-10-05 16:30:49.658',NULL),
('a0b67d6e-51bb-4919-b3e5-1acdef3ae5d7','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 15:31:39.357','2025-07-02 15:31:39.357','2025-07-02 15:31:39.357','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.447','2025-08-22 20:28:07.542',NULL),
('a0f865db-4b4d-45ed-a039-09eee9857ace','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 15:09:26.934','2025-01-19 15:09:26.934','2025-01-19 15:09:26.934','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.571',NULL),
('a0fa9efb-dde6-4084-80ba-394392b3e5ea','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-21 12:11:25.980','2025-03-21 12:11:25.980','2025-03-21 12:11:25.980','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.525',NULL),
('a1131404-0f83-4c69-986c-06bf66fc7a3b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 13:28:49.891','2025-09-18 13:28:49.891','2025-09-18 13:28:49.891','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.876','2025-10-06 10:58:16.202',NULL),
('a1189552-48c0-441f-8984-5042ac5ea03b','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-25 08:43:16.382','2025-06-25 08:43:16.382','2025-06-25 08:43:16.382','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.225','2025-07-07 11:44:52.853',NULL),
('a13fec3d-a523-46ea-8a85-ccf664c38418','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 13:42:55.669','2025-05-13 13:42:55.669','2025-05-13 13:42:55.669','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.098',NULL),
('a154d6c4-9469-41ad-b769-d8a142e86182','fabe2c23-b5a5-4123-a962-af519ac31d3b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 06:32:37.092','2025-05-23 06:32:37.092','2025-05-23 06:32:37.092','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:33:44.753','2025-05-26 13:23:22.536',NULL),
('a15505c0-a1f1-48b5-99f0-0b471a57e096','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-19 08:46:46.584','2025-08-19 08:46:46.584','2025-08-19 08:46:46.584','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.939','2025-09-06 09:41:31.925',NULL),
('a15b91aa-d20e-4961-bbe3-0bcfd8dbaf4a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:17:59.095','2024-04-27 08:17:59.095','2024-04-27 08:17:59.095','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:20:18.083','2024-04-27 08:20:18.083',NULL),
('a164b730-347e-489e-baaa-17817181a7af','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-04 15:04:28.629','2024-09-04 15:04:28.629','2024-09-04 15:04:28.629','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-04 15:08:43.744','2024-09-06 11:19:51.061',NULL),
('a16fa55f-b30f-42db-92f9-bd1e146b8e42','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 11:37:36.711','2025-07-02 11:37:36.711','2025-07-02 11:37:36.711','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.957','2025-07-22 16:18:49.542',NULL),
('a189f26b-c7b7-4895-8cfb-4971c8e670bd','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-20 07:54:32.698','2024-11-20 07:54:32.698','2024-11-20 07:54:32.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-20 07:55:38.215','2024-12-09 08:24:38.573',NULL),
('a1b74a68-c23f-40cb-95e3-02091864cee9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:00:31.246','2024-11-02 08:00:31.246','2024-11-02 08:00:31.246','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:03:24.718','2024-11-02 10:25:41.017',NULL),
('a1ccf8a0-a8c0-411c-971e-05d8373d200e','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','457bf674-d75e-437d-b0a3-80642dbd988e','2024-10-09 07:31:06.315','2024-10-09 07:31:06.315','2024-10-09 07:31:06.315','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 07:32:55.863','2024-10-23 15:09:03.210',NULL),
('a1e279a2-9ad1-45e1-863b-fd4181b399e2','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:59:33.623','2025-09-15 06:59:33.623','2025-09-15 06:59:33.623','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.538','2025-10-07 15:17:28.471',NULL),
('a1eda4a3-322b-4e06-89af-14651191a789','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:13:00.212','2024-05-11 08:13:00.212','2024-05-11 08:13:00.212','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:16:11.943','2024-05-22 08:30:39.110',NULL),
('a256e3d0-3827-4575-b57a-0d0c28e674af','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-10 11:11:30.873','2025-03-10 11:11:30.873','2025-03-10 11:11:30.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:47:28.703','2025-03-29 13:56:05.473',NULL),
('a2582a81-4c36-4737-afe1-073ae4be3ca6','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:30:22.497','2025-09-24 12:30:22.497','2025-09-24 12:30:22.497','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.610','2025-10-07 15:17:28.525',NULL),
('a26ae9f0-857e-412a-ba5c-1ecac2e2775e','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-25 08:13:28.770','2025-07-25 08:13:28.770','2025-07-25 08:13:28.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.917','2025-09-06 09:41:31.801',NULL),
('a2721b3a-08c3-4f03-814e-6dd894c8a769','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 12:35:35.917','2025-06-25 12:35:35.917','2025-06-25 12:35:35.917','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.768','2025-07-16 14:21:29.579',NULL),
('a2a56ab8-69aa-44c4-aa5c-61e8f2619bb4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:14:07.604','2025-04-09 08:14:07.604','2025-04-09 08:14:07.604','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.276',NULL),
('a2c6ebff-39ec-4b2c-a4c5-4e0931bf4cb9','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 15:04:07.808','2025-01-19 15:04:07.808','2025-01-19 15:04:07.808','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:18:13.421','2025-01-28 15:19:34.540',NULL),
('a2c709ff-a92f-4d90-9f88-f56fbbcbbfff','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-28 10:08:40.362','2025-01-28 10:08:40.362','2025-01-28 10:08:40.362','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:42.970',NULL),
('a306b6d1-b16d-4d8e-abe9-f1ca4b44bafa','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:15:26.895','2024-04-27 08:15:26.895','2024-04-27 08:15:26.895','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:17:42.557','2024-04-27 09:00:50.827',NULL),
('a3114cac-303c-4007-a4fe-d9a163a96af8','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 14:00:59.332','2025-02-20 14:00:59.332','2025-02-20 14:00:59.332','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:03:23.298','2025-03-02 04:33:53.268',NULL),
('a331d611-e014-4a3c-bbe0-5ccd28203edb','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 08:12:43.453','2025-09-18 08:12:43.453','2025-09-18 08:12:43.453','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.837','2025-10-01 07:56:23.271',NULL),
('a3c0c366-954c-4d90-b2ad-b7049235211b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:48:32.097','2024-09-27 12:48:32.097','2024-09-27 12:48:32.097','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:57:12.216','2024-09-27 14:02:29.879',NULL),
('a3e50eda-1615-4e49-96e9-6e6f9fb65537','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 07:36:32.013','2025-02-12 07:36:32.013','2025-02-12 07:36:32.013','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.828',NULL),
('a3ecff2e-2e15-4e19-90b1-10d952fec83c','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-18 07:51:00.232','2025-07-18 07:51:00.232','2025-07-18 07:51:00.232','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:21:45.727','2025-08-12 08:07:30.424',NULL),
('a40c753f-47c8-426a-948c-44c777dbeda0','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-20 11:58:52.886','2025-08-20 11:58:52.886','2025-08-20 11:58:52.886','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.957','2025-09-03 06:09:36.682',NULL),
('a4210c56-f4e9-4ff9-b79a-68622de34bd5','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 14:53:11.458','2025-09-29 14:53:11.458','2025-09-29 14:53:11.458','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.182','2025-10-22 11:29:52.741',NULL),
('a4572266-1289-498e-9d4b-23c393470ac8','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:49:51.739','2024-04-07 20:49:51.739','2024-04-07 20:49:51.739','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:51:53.851','2024-10-04 11:52:49.788','2024-10-04 11:52:49.791'),
('a478cc46-4921-4901-9009-5d86e98aeb89','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 07:48:12.565','2025-05-14 07:48:12.565','2025-05-14 07:48:12.565','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.793',NULL),
('a4a0ac62-7d81-4b60-a720-13566ec79666','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 07:19:52.485','2024-03-30 07:19:52.485','2024-03-30 07:19:52.485','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 07:21:09.453','2024-03-30 07:21:09.453',NULL),
('a4a61f95-bb0e-4308-8f44-9f56e73be7cb','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-25 15:02:32.290','2024-11-25 15:02:32.290','2024-11-25 15:02:32.290','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-25 15:07:26.690','2024-12-09 17:29:20.170',NULL),
('a4b63e1a-6095-4640-a47a-9999264bd7a0','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 13:10:39.680','2025-09-18 13:10:39.680','2025-09-18 13:10:39.680','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.759','2025-10-03 16:08:51.077',NULL),
('a4eaa7e5-35a3-42b6-957b-7cb0d1aed3f3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 16:39:04.873','2025-04-28 16:39:04.873','2025-04-28 16:39:04.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.217',NULL),
('a4f910e6-a8bb-4244-a311-295b9a213dc0','73596a75-b658-4249-8c71-b0490654bc8b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 10:39:33.653','2025-08-26 10:39:33.653','2025-08-26 10:39:33.653','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:25:43.957','2025-09-03 06:09:36.817',NULL),
('a4fc3cfc-429b-4a2f-9dbe-f3887fbe1e8b','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-09 08:24:47.041','2025-09-09 08:24:47.041','2025-09-09 08:24:47.041','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.413','2025-10-22 11:29:52.824',NULL),
('a532b53f-685e-49dc-b305-1b367debf771','7f34d75e-284a-42ac-9cbe-a29174748991','56323a39-e192-4016-a254-840950ca2e27','2024-11-28 15:06:43.241','2024-11-28 15:06:43.241','2024-11-28 15:06:43.241','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-28 15:09:39.780','2024-12-17 19:52:32.995',NULL),
('a537cc77-ae30-485e-adee-6b4e6ae69468','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-08 14:36:58.351','2025-09-08 14:36:58.351','2025-09-08 14:36:58.351','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.577','2025-09-24 13:41:15.103',NULL),
('a53a11c2-e95d-4511-9849-f236c4e26df4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 11:34:17.144','2025-04-22 11:34:17.144','2025-04-22 11:34:17.144','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:50:25.917','2025-04-26 07:32:55.602',NULL),
('a541abca-98b7-4088-a55a-a011c4928168','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:02:30.479','2024-09-18 21:02:30.479','2024-09-18 21:02:30.479','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:04:41.771','2024-09-18 21:04:41.771',NULL),
('a5588f29-8b87-4842-8238-03291771ce07','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 11:02:38.893','2024-09-24 11:02:38.893','2024-09-24 11:02:38.893','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 11:11:28.394','2024-09-28 16:24:01.095',NULL),
('a58f15fc-4fac-4ea0-bc04-6874bf517e9c','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 09:49:46.543','2025-03-13 09:49:46.543','2025-03-13 09:49:46.543','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.460',NULL),
('a5e1405e-e29c-4304-94c2-12682ad2eac4','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:11:50.434','2024-04-23 10:11:50.434','2024-04-23 10:11:50.434','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:14:07.841','2024-04-26 20:11:58.287',NULL),
('a6021c1c-a440-4689-938e-3eb3590a830c','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-10 08:14:00.452','2025-07-10 08:14:00.452','2025-07-10 08:14:00.452','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.485','2025-08-15 20:59:05.069',NULL),
('a6292b21-c546-45a6-9641-d3ebe0708c3c','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 08:12:01.669','2024-03-12 08:12:01.669','2024-03-12 08:12:01.669','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 08:16:59.161','2024-03-12 08:16:59.161',NULL),
('a62a75ce-0cbd-4f59-b203-d2ec73c16bd2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 10:46:35.705','2025-03-06 10:46:35.705','2025-03-06 10:46:35.705','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:18:50.008','2025-04-02 18:57:11.029',NULL),
('a633d620-e174-4983-8d36-5e1ab7052ff2','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-26 13:29:04.305','2025-03-26 13:29:04.305','2025-03-26 13:29:04.305','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:49:23.620','2025-03-29 13:56:05.426',NULL),
('a64982cc-c2c6-43c4-bd33-06bc5a243f04','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:27:59.541','2024-05-29 09:27:59.541','2024-05-29 09:27:59.541','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:29:57.426','2024-05-29 09:29:57.426',NULL),
('a66e7f6a-a2f7-4a4b-8667-b8865a397a3f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 12:04:54.695','2025-05-07 12:04:54.695','2025-05-07 12:04:54.695','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.781',NULL),
('a674edce-0a54-4d1f-96f1-170d12ef7231','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 11:03:55.635','2024-07-20 11:03:55.635','2024-07-20 11:03:55.635','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 11:06:21.931','2024-07-20 11:06:21.931',NULL),
('a6b790d5-0670-4b04-ba31-1a205bec9f47','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-08 09:26:20.018','2025-05-08 09:26:20.018','2025-05-08 09:26:20.018','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:33:09.218','2025-07-07 11:44:52.752',NULL),
('a6c41512-694c-4a31-a5b0-de29f35bb19c','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-19 12:40:37.053','2025-09-19 12:40:37.053','2025-09-19 12:40:37.053','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.753','2025-10-07 15:17:28.445',NULL),
('a6c5151d-0829-4bd0-90f8-3271eb26e5ae','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:52:11.976','2024-12-17 14:52:11.976','2024-12-17 14:52:11.976','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:27:59.902','2025-01-11 10:16:46.034',NULL),
('a70bddb5-388a-4dfb-8c76-9de22df28bed','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-11 11:50:24.965','2025-01-11 11:50:24.965','2025-01-11 11:50:24.965','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.528',NULL),
('a74eb7dc-0a6d-42cb-8923-05bee63fe3f1','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:21:29.550','2024-05-29 09:21:29.550','2024-05-29 09:21:29.550','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:23:38.273','2024-05-29 09:23:38.273',NULL),
('a7588159-ec92-4a57-bd26-69bb6d71ca99','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-13 10:19:02.784','2024-11-13 10:19:02.784','2024-11-13 10:19:02.784','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-13 10:22:33.914','2024-12-09 08:24:38.651',NULL),
('a75a5303-603b-437a-9cb3-0fa2c00c426e','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-25 07:27:52.140','2025-08-25 07:27:52.140','2025-08-25 07:27:52.140','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.039','2025-09-10 12:48:00.858',NULL),
('a7b5bab4-da85-421a-86c7-93cf7d4df498','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-08 18:33:27.525','2024-05-08 18:33:27.525','2024-05-08 18:33:27.525','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-08 18:35:31.028','2024-05-08 18:35:31.028',NULL),
('a7cd852b-1eef-47c8-9ed4-3db46b3bb735','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-11 12:22:32.581','2025-04-11 12:22:32.581','2025-04-11 12:22:32.581','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.228',NULL),
('a7e9aaf5-907f-438a-ab52-676c04a0561a','4126da30-ba9b-41b7-be29-865069aa484c','d03032cd-3542-403b-975d-f781dffab494','2024-10-07 18:07:51.320','2024-10-07 18:07:51.320','2024-10-07 18:07:51.320','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 18:08:13.209','2024-10-25 09:21:31.041','2024-10-25 09:21:31.044'),
('a80cd388-bab0-4443-b76c-474c5e878134','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-28 13:15:13.345','2025-07-28 13:15:13.345','2025-07-28 13:15:13.345','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.441','2025-07-29 12:43:31.867',NULL),
('a8310e5b-2696-4418-86ea-70ccc1579de3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:49:22.589','2024-09-27 11:49:22.589','2024-09-27 11:49:22.589','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:53:55.511','2024-09-27 11:53:55.511',NULL),
('a8565161-984f-44f5-94f9-d2fdd1dc3441','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 06:21:18.295','2025-08-18 06:21:18.295','2025-08-18 06:21:18.295','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.866','2025-09-02 14:46:19.346',NULL),
('a8715f35-98e1-46a9-96d9-444da7d940c2','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-27 07:57:04.523','2025-03-27 07:57:04.523','2025-03-27 07:57:04.523','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.397',NULL),
('a88b4113-18df-4285-b3c0-1aa91bf02432','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-30 12:06:35.240','2025-08-30 12:06:35.240','2025-08-30 12:06:35.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:10:41.281','2025-09-05 08:55:11.166',NULL),
('a8ae9fd7-7a0c-4262-b70e-92dea87e8f58','1a63399e-9dca-4c70-be0e-e8e8a874b582','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 13:56:35.445','2024-10-30 13:56:35.445','2024-10-30 13:56:35.445','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 14:01:27.906','2024-11-05 13:51:08.393',NULL),
('a8eb34c1-3919-491f-80be-7387682c9199','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-12 09:11:52.092','2025-09-12 09:11:52.092','2025-09-12 09:11:52.092','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.524','2025-09-26 12:27:42.335',NULL),
('a8ec67e8-9dff-4a8b-8f17-7f02b9af1f6d','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-19 15:32:51.646','2024-08-19 15:32:51.646','2024-08-19 15:32:51.646','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-19 15:35:09.215','2024-08-23 09:07:06.344',NULL),
('a94dd663-94e1-4fdf-bdf6-86af27a14380','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-12 08:30:49.422','2025-06-12 08:30:49.422','2025-06-12 08:30:49.422','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:45:56.437','2025-06-18 08:08:50.284',NULL),
('a96345a8-91ca-476b-951e-3bf776333157','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-10 11:19:10.561','2025-09-10 11:19:10.561','2025-09-10 11:19:10.561','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.401','2025-09-12 17:16:02.653',NULL),
('a9e6b7e6-1b72-4ca1-af80-d0ea4dcbb07f','dea91080-5383-4085-af2e-7eace2c64224','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-11 08:20:25.779','2024-11-11 08:20:25.779','2024-11-11 08:20:25.779','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-11 08:34:00.057','2024-11-12 16:12:43.179',NULL),
('a9fab265-70cb-4be2-8ee8-1bb618a78ee1','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 08:33:22.671','2025-09-15 08:33:22.671','2025-09-15 08:33:22.671','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.563','2025-10-17 10:53:07.488',NULL),
('a9fbca69-5b52-4147-8371-04d92e8d521e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:46:59.726','2024-12-28 14:46:59.726','2024-12-28 14:46:59.726','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.977',NULL),
('aa0efccb-4501-4135-b62c-e29f71808441','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-30 10:58:54.904','2024-09-30 10:58:54.904','2024-09-30 10:58:54.904','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-30 11:04:58.243','2024-10-02 09:43:38.116',NULL),
('aa123386-7e37-497f-a776-8a9a15f44fa4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 11:36:07.572','2025-08-06 11:36:07.572','2025-08-06 11:36:07.572','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.536','2025-08-15 20:59:04.960',NULL),
('aa18f8ba-abf7-45db-a384-d7304b104a0f','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 08:40:09.678','2025-10-13 08:40:09.678','2025-10-13 08:40:09.678','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-14 08:08:57.322','2025-10-14 08:52:36.876',NULL),
('aa1949bd-9619-44e2-9265-fbd97905216c','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-15 08:10:14.204','2025-08-15 08:10:14.204','2025-08-15 08:10:14.204','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.772','2025-10-03 16:08:51.090',NULL),
('aa1a30de-aafa-46fe-a5d9-898c82920f3a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-08 08:10:58.960','2025-09-08 08:10:58.960','2025-09-08 08:10:58.960','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.838','2025-09-19 10:00:25.305',NULL),
('aa3ef434-a6da-4505-9088-8e1537caa0de','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 13:22:52.591','2024-10-21 13:22:52.591','2024-10-21 13:22:52.591','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 13:26:15.967','2024-10-23 14:53:36.482',NULL),
('aa4078d2-85cc-471a-929f-4556aa26c6bd','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 15:17:32.558','2025-10-10 15:17:32.558','2025-10-10 15:17:32.558','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-14 08:08:57.314','2025-10-14 08:52:36.743',NULL),
('aa441c4f-43f4-4ee6-9af7-58c83603d255','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 08:45:16.675','2025-09-09 08:45:16.675','2025-09-09 08:45:16.675','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.410','2025-09-18 15:48:17.538',NULL),
('aa47b6a5-e025-4b09-9a50-f497ff041c8d','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-19 10:02:09.271','2025-04-19 10:02:09.271','2025-04-19 10:02:09.271','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:05:37.061','2025-05-02 17:08:29.548',NULL),
('aa5dcf26-cf31-406f-bf66-48beb2d847c8','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-30 14:25:36.643','2024-09-30 14:25:36.643','2024-09-30 14:25:36.643','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-30 14:29:44.768','2025-02-05 10:11:46.204','2025-02-05 10:11:46.208'),
('aa7345a6-7f7a-47e1-80e3-b4ddb0d62ea7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:20:29.613','2024-04-27 08:20:29.613','2024-04-27 08:20:29.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:22:52.929','2024-04-27 08:22:52.929',NULL),
('aab11d85-1c29-4437-b00f-1acf162bf72f','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:36:46.605','2024-12-17 14:36:46.605','2024-12-17 14:36:46.605','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:14:04.004','2025-01-11 10:16:46.053',NULL),
('aacb2e50-9634-4a6e-8825-115f0c86795e','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-22 13:25:00.448','2024-11-22 13:25:00.448','2024-11-22 13:25:00.448','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-22 13:28:18.542','2024-12-02 09:51:49.533',NULL),
('aafb14b2-5e03-451b-9cdc-42eac8a15013','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:47:57.462','2025-04-24 08:47:57.462','2025-04-24 08:47:57.462','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.494',NULL),
('ab112226-a4df-41e2-b0cd-899c0f6772a6','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 08:29:48.595','2025-03-09 08:29:48.595','2025-03-09 08:29:48.595','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.494',NULL),
('ab3a7d30-7335-43ac-aa93-ef5805d27974','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 15:12:49.599','2025-08-27 15:12:49.599','2025-08-27 15:12:49.599','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.602','2025-09-10 07:11:56.253',NULL),
('ab3ee600-5d8c-4e9a-a2d3-ab7f66bb25e9','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 21:23:35.153','2024-09-18 21:23:35.153','2024-09-18 21:23:35.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 21:25:44.568','2024-09-18 21:25:44.568',NULL),
('ab4d2a43-9be4-45ae-b186-3e60b3e6b125','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-24 07:56:03.216','2024-04-24 07:56:03.216','2024-04-24 07:56:03.216','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-24 08:08:08.044','2024-05-11 08:44:34.741','2024-05-11 08:44:34.746'),
('ab84aec3-6669-44a8-b9b5-ba267aa05443','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:07:17.851','2024-05-04 10:07:17.851','2024-05-04 10:07:17.851','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:08:24.140','2024-05-10 07:13:12.002',NULL),
('ac048ce2-2da7-4d4c-8cc3-ed4dd9aec94d','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 15:10:57.478','2024-10-23 15:10:57.478','2024-10-23 15:10:57.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 15:12:10.616','2024-10-23 15:12:10.616',NULL),
('ac507f76-1d5a-4636-be5d-75cd6e601301','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-31 13:02:37.299','2024-05-31 13:02:37.299','2024-05-31 13:02:37.299','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-31 13:36:59.353','2024-06-14 11:24:18.671',NULL),
('ac703823-d155-4894-a862-cee5b5be8628','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 07:18:42.576','2024-03-16 07:18:42.576','2024-03-16 07:18:42.576','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:04:26.080','2024-03-22 11:20:39.119',NULL),
('ac721196-c4d5-4663-b124-fa702c1305f1','67e5a145-070e-4e0f-9c3b-09f273d6ed40','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-13 22:21:26.420','2025-08-13 22:21:26.420','2025-08-13 22:21:26.420','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:02:33.110','2025-09-10 12:48:00.784',NULL),
('ac7aa772-65da-4bd6-803b-7b9530eac255','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-15 08:39:38.610','2025-07-15 08:39:38.610','2025-07-15 08:39:38.610','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:25:43.934','2025-09-03 06:09:36.756',NULL),
('aca4b2e0-a08c-441a-b4c0-94def406c962','1c402ba0-2fcc-4b19-b28c-bd6071805ddd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 14:13:15.194','2025-10-02 14:13:15.194','2025-10-02 14:13:15.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.723','2025-10-03 16:08:51.041',NULL),
('acafab07-8fec-47cd-8f8e-09736b7dc1b6','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 09:50:23.293','2025-04-22 09:50:23.293','2025-04-22 09:50:23.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.876',NULL),
('acb5097f-ea37-4fdb-8be8-8e0dd97268bb','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-10 14:36:37.819','2025-09-10 14:36:37.819','2025-09-10 14:36:37.819','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.597','2025-09-24 13:41:15.140',NULL),
('acb62b57-629f-41a0-9064-98bbd15dfc0a','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:45:42.084','2024-11-15 16:45:42.084','2024-11-15 16:45:42.084','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:46:41.756','2024-11-28 09:15:27.434',NULL),
('accc8d9d-a729-486f-8952-39331b03b00d','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-29 09:37:07.951','2025-08-29 09:37:07.951','2025-08-29 09:37:07.951','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.138','2025-09-10 12:48:00.886',NULL),
('ad19c44f-e68e-4789-ae30-c02ec3c2da04','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 09:24:59.661','2025-01-15 09:24:59.661','2025-01-15 09:24:59.661','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.673',NULL),
('ad301133-d843-4978-b3aa-a5b41a7546ca','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-18 10:19:48.167','2024-12-18 10:19:48.167','2024-12-18 10:19:48.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:44:13.141','2025-01-06 20:08:12.911',NULL),
('ad477cb1-1e80-4afd-b1d9-4bf9161462e1','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 14:51:13.024','2024-10-30 14:51:13.024','2024-10-30 14:51:13.024','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 14:53:53.803','2024-11-15 16:58:24.021',NULL),
('ad60a5de-06d4-477b-8b01-1d6a0e9d54d8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 12:23:10.263','2025-03-04 12:23:10.263','2025-03-04 12:23:10.263','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:40:51.326','2025-03-12 19:01:22.574',NULL),
('ad6479e4-26bb-4f27-9763-d7e5484fba34','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-15 15:07:47.371','2025-04-15 15:07:47.371','2025-04-15 15:07:47.371','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.540',NULL),
('ad7e11a1-b415-40cc-83ce-33362dce1071','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:23:14.146','2025-02-12 13:23:14.146','2025-02-12 13:23:14.146','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:45:33.845','2025-03-21 17:17:30.127',NULL),
('ad831606-9131-44ba-9d29-8b8fd30a74b2','7f34d75e-284a-42ac-9cbe-a29174748991','56323a39-e192-4016-a254-840950ca2e27','2024-11-28 15:03:43.817','2024-11-28 15:03:43.817','2024-11-28 15:03:43.817','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-28 15:06:34.999','2024-12-27 12:23:49.265',NULL),
('ad86f44a-b35e-4439-a6b4-87d5eb6fd383','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 11:35:33.711','2025-09-24 11:35:33.711','2025-09-24 11:35:33.711','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 12:08:55.451','2025-10-09 08:39:36.985',NULL),
('ae211ecd-469c-4bd6-b8a7-64573ff8bf0e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 14:04:46.940','2025-01-24 14:04:46.940','2025-01-24 14:04:46.940','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.588',NULL),
('ae432c02-c90f-4705-b70a-184c86e7bef5','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:06:40.116','2025-01-04 23:06:40.116','2025-01-04 23:06:40.116','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-10 08:54:21.157','2025-01-10 08:54:21.157',NULL),
('ae6a39b6-0282-4e44-921c-7d8a87166d40','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-27 07:32:55.831','2024-11-27 07:32:55.831','2024-11-27 07:32:55.831','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-27 07:35:43.829','2024-12-09 17:29:20.115',NULL),
('ae830ff1-e6aa-49ed-b4ad-6ab48e38ceca','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:32:57.208','2024-05-11 08:32:57.208','2024-05-11 08:32:57.208','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:34:56.339','2024-05-11 08:34:56.339',NULL),
('aea64478-d392-4a17-b8e5-2aa742d43d23','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 14:42:47.508','2025-08-18 14:42:47.508','2025-08-18 14:42:47.508','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.928','2025-09-02 14:46:19.406',NULL),
('aeb7e036-5520-4ec0-9531-0a6d48bd6c06','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-19 09:21:18.460','2025-06-19 09:21:18.460','2025-06-19 09:21:18.460','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.458','2025-08-15 20:59:05.008',NULL),
('aebd79b9-7384-40ce-9d6e-9bc267bf24f6','93551a3a-1718-4d23-8200-422fb4f0d5b4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-03 10:12:17.757','2024-12-03 10:12:17.757','2024-12-03 10:12:17.757','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:06:48.296','2025-01-11 10:16:46.028',NULL),
('aed70b4b-9597-4100-ada7-825286786d6c','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 15:05:02.006','2025-01-17 15:05:02.006','2025-01-17 15:05:02.006','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.666',NULL),
('aef140a7-06b8-4f45-a7f0-448cd3a7eca3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:37:09.580','2024-09-27 12:37:09.580','2024-09-27 12:37:09.580','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:40:14.252','2024-09-27 12:40:14.252',NULL),
('aef25e5a-f8d7-4636-a2a4-ce8c98ca26db','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-03 14:57:12.981','2024-09-03 14:57:12.981','2024-09-03 14:57:12.981','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-03 15:00:01.310','2024-09-03 15:00:01.310',NULL),
('af0350e3-44a7-44f7-873b-3bfeaf7d0692','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:23:29.447','2024-04-23 10:23:29.447','2024-04-23 10:23:29.447','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:24:40.752','2024-04-23 10:27:57.357',NULL),
('af18289c-83a3-47bb-9f91-dd37ec6aaead','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 13:07:39.376','2024-09-27 13:07:39.376','2024-09-27 13:07:39.376','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 13:15:44.325','2024-09-27 13:15:44.325',NULL),
('af1d09f8-440b-4642-8e57-eaf8796e6ea3','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-17 11:09:59.137','2024-08-17 11:09:59.137','2024-08-17 11:09:59.137','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-17 11:11:37.482','2024-08-23 09:00:17.240',NULL),
('af2d396b-ae8d-4657-b6cb-c3293b1b03f9','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-17 07:27:50.056','2025-09-17 07:27:50.056','2025-09-17 07:27:50.056','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.425','2025-09-18 15:48:17.554',NULL),
('af54e7c5-ec4a-4734-8a3d-dd9c56f2ba68','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 14:40:14.963','2025-04-26 14:40:14.963','2025-04-26 14:40:14.963','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:41:20.302','2025-05-03 06:23:10.229',NULL),
('af572feb-f986-45e3-ba72-192a2ddce63c','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-12 10:57:55.078','2024-12-12 10:57:55.078','2024-12-12 10:57:55.078','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:58:26.916','2025-01-06 20:08:12.948',NULL),
('af6d387d-19d6-41b9-b063-36bf4da0b918','fdb96289-c48e-47a8-9fd3-37b529486551','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 10:14:39.220','2025-01-02 10:14:39.220','2025-01-02 10:14:39.220','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.477',NULL),
('af8a97b5-78ee-4259-b83e-acdd55a93f8c','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-04 06:39:57.284','2025-06-04 06:39:57.284','2025-06-04 06:39:57.284','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.919',NULL),
('af90a65e-0026-4524-926a-c9a358375802','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:36:47.437','2025-03-17 11:36:47.437','2025-03-17 11:36:47.437','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:02:20.217','2025-03-29 13:37:01.784',NULL),
('afa1f1e9-960c-4113-a279-0cfb62bbdeb6','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-24 08:08:28.701','2024-04-24 08:08:28.701','2024-04-24 08:08:28.701','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-24 08:08:56.935','2024-05-11 08:59:22.409',NULL),
('afcd628d-c601-4888-83fd-424ce106e560','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 13:32:53.515','2024-10-09 13:32:53.515','2024-10-09 13:32:53.515','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 13:36:34.975','2024-10-28 10:41:21.494',NULL),
('b01b5850-3b94-45e8-a196-b6ff11822893','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:25:24.949','2024-04-27 08:25:24.949','2024-04-27 08:25:24.949','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:27:32.096','2024-04-27 08:27:32.096',NULL),
('b084ae8d-0741-4c94-a3e9-c9c469a83c1f','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 13:59:38.360','2024-10-23 13:59:38.360','2024-10-23 13:59:38.360','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 14:04:21.146','2024-10-28 10:42:12.916',NULL),
('b096db6a-b278-4a4b-8114-635570f4e031','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 12:43:19.029','2024-09-27 12:43:19.029','2024-09-27 12:43:19.029','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 12:45:05.065','2024-09-30 07:59:24.046',NULL),
('b0b7cfad-377a-472b-9095-d78ba33f100b','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:37:40.593','2024-07-20 10:37:40.593','2024-07-20 10:37:40.593','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:40:37.768','2024-07-20 10:40:37.768',NULL),
('b1362a23-cf38-4945-a305-576f7691ced2','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-19 15:09:53.401','2025-08-19 15:09:53.401','2025-08-19 15:09:53.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.616','2025-10-17 10:53:07.552',NULL),
('b151d773-27aa-4263-b75a-6e06515c5bdc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-15 07:53:53.150','2025-04-15 07:53:53.150','2025-04-15 07:53:53.150','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.658',NULL),
('b158d0e2-0b35-40bb-8795-8a497967f371','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-16 17:26:42.418','2025-07-16 17:26:42.418','2025-07-16 17:26:42.418','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:12:50.062','2025-07-29 12:37:20.372',NULL),
('b18a6b10-4a76-4a06-bb3a-07dcc940e79d','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:30:48.768','2024-05-11 08:30:48.768','2024-05-11 08:30:48.768','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:32:48.508','2024-05-11 09:07:35.439',NULL),
('b1ae9175-501a-4235-ad0f-ba8c70aa0398','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 12:38:48.785','2024-09-24 12:38:48.785','2024-09-24 12:38:48.785','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 12:46:34.106','2024-09-27 14:05:01.919',NULL),
('b1c80d7d-422d-42a5-b63b-2eb53fa234cc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 09:54:46.901','2025-03-13 09:54:46.901','2025-03-13 09:54:46.901','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.858',NULL),
('b202142f-1a56-4c6e-bf93-0bd6c0ee0bf8','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:29:48.907','2024-04-07 20:29:48.907','2024-04-07 20:29:48.907','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:33:01.484','2024-04-07 20:34:25.049',NULL),
('b206a6f6-4125-4b15-8835-b1edce9f45cb','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 21:05:30.860','2024-11-03 21:05:30.860','2024-11-03 21:05:30.860','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 21:07:48.431','2024-11-28 08:56:17.139',NULL),
('b21fc399-0797-4bb8-b294-38b6ed9e6fbf','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 08:53:07.965','2025-02-13 08:53:07.965','2025-02-13 08:53:07.965','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.597',NULL),
('b221dcf8-ae08-4c9a-aaf2-2011e6923a92','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 15:56:00.065','2024-12-24 15:56:00.065','2024-12-24 15:56:00.065','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.963',NULL),
('b25e1390-292a-4b69-a530-cfac192716d7','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-07 07:37:55.132','2025-01-07 07:37:55.132','2025-01-07 07:37:55.132','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.059',NULL),
('b2c16d00-0dd9-4ddb-ad6e-f4676bfb7023','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 10:44:38.210','2025-08-05 10:44:38.210','2025-08-05 10:44:38.210','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.773','2025-08-18 08:31:56.078',NULL),
('b2ca928d-e26e-46ed-afee-a89ecbf97176','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-15 14:33:39.375','2025-09-15 14:33:39.375','2025-09-15 14:33:39.375','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.363','2025-09-19 10:00:25.365',NULL),
('b2cc616d-432c-424d-92fd-bbf1a29d460c','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:29:29.439','2024-11-12 15:29:29.439','2024-11-12 15:29:29.439','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:31:43.580','2024-11-24 17:08:06.438',NULL),
('b2d4ba88-1643-46b4-b677-bcad8a66b5dc','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 09:16:40.159','2025-08-05 09:16:40.159','2025-08-05 09:16:40.159','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.514','2025-08-15 20:59:04.987',NULL),
('b2d6dfe9-c7c2-411c-940a-67102080bd9b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 11:16:33.424','2025-05-14 11:16:33.424','2025-05-14 11:16:33.424','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.855',NULL),
('b2fab3b6-40e3-4d82-9a6f-49c1ee096658','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-20 13:34:18.428','2024-11-20 13:34:18.428','2024-11-20 13:34:18.428','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-20 13:36:54.028','2024-12-19 08:24:13.929','2024-12-19 08:24:13.933'),
('b330c02b-16bd-411f-a255-c1b43a4055ad','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-10 12:34:28.236','2025-07-10 12:34:28.236','2025-07-10 12:34:28.236','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.917','2025-07-22 16:18:49.504',NULL),
('b33608a9-aa8c-4900-8db2-ae93f1fde6b2','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-03 12:14:39.529','2025-10-03 12:14:39.529','2025-10-03 12:14:39.529','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.765','2025-10-03 16:08:51.083',NULL),
('b33857c7-0dc6-4041-a4f9-2dcbf0440b89','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 11:00:02.293','2025-03-06 11:00:02.293','2025-03-06 11:00:02.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:21:55.337','2025-03-29 13:37:01.771',NULL),
('b35a75ab-3a4f-46fc-ae80-036e86ada193','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 15:12:32.784','2025-07-01 15:12:32.784','2025-07-01 15:12:32.784','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.252','2025-07-16 14:21:29.495',NULL),
('b360283f-6ff3-4c05-92bb-4662a65bdf5d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-16 10:02:53.456','2025-09-16 10:02:53.456','2025-09-16 10:02:53.456','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.329','2025-09-18 15:48:17.441',NULL),
('b364cc25-40ea-4a08-aa76-ba8b915d0d10','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-06 07:59:01.071','2025-08-06 07:59:01.071','2025-08-06 07:59:01.071','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:45:43.681','2025-09-05 08:55:11.065',NULL),
('b378bdf3-ced7-4dd3-ade6-1981fed2188a','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-15 13:57:51.655','2024-05-15 13:57:51.655','2024-05-15 13:57:51.655','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-15 14:19:22.702','2024-05-29 08:57:33.611',NULL),
('b383220b-f300-4770-8820-e1c52460ae1e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 11:02:04.763','2024-07-20 11:02:04.763','2024-07-20 11:02:04.763','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 11:03:42.091','2024-07-20 11:03:42.091',NULL),
('b39f9742-79b6-49c7-8e7f-44385afd8fd8','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 13:15:20.333','2025-08-12 13:15:20.333','2025-08-12 13:15:20.333','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.164','2025-08-14 08:02:29.825',NULL),
('b3ab72b8-656a-4b48-a7d1-b9e931f10a88','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-09 08:47:26.411','2024-12-09 08:47:26.411','2024-12-09 08:47:26.411','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 14:18:40.715','2024-12-27 12:23:49.273',NULL),
('b3b46d4c-0123-44b7-b0b7-8d24875687b2','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 12:18:54.509','2025-03-24 12:18:54.509','2025-03-24 12:18:54.509','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-04 09:39:58.746',NULL),
('b3bab7cc-6404-4387-834b-e7224c4fdeb2','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-19 08:31:51.662','2025-06-19 08:31:51.662','2025-06-19 08:31:51.662','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.831','2025-07-07 11:44:52.655',NULL),
('b3f27eee-0597-4b95-920c-94d332c71e2b','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-02 11:45:04.264','2025-02-02 11:45:04.264','2025-02-02 11:45:04.264','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.087',NULL),
('b40d54f8-900f-4ceb-84c8-1bb431d94e74','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 06:39:55.484','2025-10-10 06:39:55.484','2025-10-10 06:39:55.484','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.115','2025-10-22 11:29:52.663',NULL),
('b4aad43c-6df3-4463-8eb3-0e73964ec0c7','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:19:34.689','2024-11-02 08:19:34.689','2024-11-02 08:19:34.689','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:21:24.171','2024-11-02 09:20:50.476',NULL),
('b4ae7a09-560b-468f-986c-f8b9f65dece2','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 16:04:36.318','2024-11-12 16:04:36.318','2024-11-12 16:04:36.318','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 16:06:28.506','2024-11-12 16:25:52.273',NULL),
('b4ba8197-bfeb-4caf-bb9b-72835beb777e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 09:07:33.087','2025-03-24 09:07:33.087','2025-03-24 09:07:33.087','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.479',NULL),
('b4bee072-3c7a-4073-a566-847f201ecd97','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:34:32.717','2024-08-07 14:34:32.717','2024-08-07 14:34:32.717','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:37:03.562','2024-08-07 20:51:07.106',NULL),
('b4c5be6b-e4de-4996-906d-5ef01f03b5e1','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-06 14:29:38.046','2025-08-06 14:29:38.046','2025-08-06 14:29:38.046','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.927','2025-09-03 06:09:36.653',NULL),
('b4f723d6-049a-4e45-9974-5b90d3cf82d5','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:20:00.819','2024-03-16 08:20:00.819','2024-03-16 08:20:00.819','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:22:58.557','2024-03-22 11:21:24.394',NULL),
('b4f77d67-3fe0-4665-9b51-73bedd9382b8','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 11:11:17.898','2025-03-20 11:11:17.898','2025-03-20 11:11:17.898','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.871',NULL),
('b50cd706-3d61-4b60-8a42-752fe2ff68b7','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-16 09:10:58.236','2025-06-16 09:10:58.236','2025-06-16 09:10:58.236','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:34:37.138','2025-07-07 11:44:52.647',NULL),
('b5256b58-a5bc-4558-9cd3-e1a4ab177fe6','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:38:43.169','2024-03-23 07:38:43.169','2024-03-23 07:38:43.169','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:41:47.078','2024-05-09 06:18:24.942',NULL),
('b529b830-e486-4d3b-b6cd-e596cb79c40e','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 11:50:02.089','2025-04-08 11:50:02.089','2025-04-08 11:50:02.089','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.595',NULL),
('b536e313-1725-4974-80fb-ac4b0bf21ddb','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 10:01:19.043','2024-03-30 10:01:19.043','2024-03-30 10:01:19.043','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 10:04:32.900','2024-03-30 10:04:32.900',NULL),
('b537aa1e-ade2-4acf-b1b5-d951ad41cd18','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 12:59:29.865','2025-02-06 12:59:29.865','2025-02-06 12:59:29.865','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:03:23.298','2025-03-02 04:33:53.185',NULL),
('b55db469-bdea-42a2-92fc-48fc3781a8aa','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 10:02:45.476','2025-04-26 10:02:45.476','2025-04-26 10:02:45.476','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:02:30.946',NULL),
('b56bf859-da98-46a5-9d5f-1714a77f1cd1','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 13:16:26.653','2024-12-13 13:16:26.653','2024-12-13 13:16:26.653','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:24:23.701','2024-12-16 18:41:52.647',NULL),
('b589bc28-9563-4bca-8dbc-f88324e949ea','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 07:46:05.830','2025-06-25 07:46:05.830','2025-06-25 07:46:05.830','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.189','2025-08-25 12:11:45.721',NULL),
('b59658dc-c544-4525-b304-dd4b93fd7874','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-08 07:56:17.933','2025-09-08 07:56:17.933','2025-09-08 07:56:17.933','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.495','2025-09-24 13:41:15.003',NULL),
('b5aa5ed8-a6a2-4913-8801-75e5213ddc44','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 07:01:50.723','2024-05-10 07:01:50.723','2024-05-10 07:01:50.723','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 07:02:58.849','2024-05-10 07:02:58.849',NULL),
('b5c38919-8210-440c-94eb-18e97082939f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-15 11:33:05.370','2025-08-15 11:33:05.370','2025-08-15 11:33:05.370','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.454','2025-08-22 20:28:07.585',NULL),
('b5fca2c1-3983-44c3-ad45-5e33dc0c3352','223e2487-81b9-4d78-968c-522e914203d0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-03 15:24:18.074','2024-09-03 15:24:18.074','2024-09-03 15:24:18.074','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-03 15:27:52.825','2024-09-03 15:31:45.837',NULL),
('b60e6c70-bee8-4994-b3e4-dae8c04f8a37','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:23:05.686','2024-05-10 06:23:05.686','2024-05-10 06:23:05.686','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:25:48.018','2024-05-10 06:25:48.018',NULL),
('b662983d-e8b8-44ca-9577-4e73720e09aa','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-24 14:17:03.727','2025-01-24 14:17:03.727','2025-01-24 14:17:03.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.686',NULL),
('b66aac05-ed5f-47c7-9d73-8a28e8e39c3e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 09:01:59.995','2025-05-14 09:01:59.995','2025-05-14 09:01:59.995','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:54:07.830','2025-05-26 15:07:26.455',NULL),
('b69048de-0221-4b31-bf27-fd27214c4df7','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-02 08:10:45.698','2024-11-02 08:10:45.698','2024-11-02 08:10:45.698','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-02 08:12:34.909','2024-11-02 08:12:34.909',NULL),
('b6aec35d-ffb2-47f5-9ef2-6e99c4c84a3d','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-26 11:47:20.810','2025-09-26 11:47:20.810','2025-09-26 11:47:20.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.623','2025-10-17 10:53:07.562',NULL),
('b6bdd733-d79e-4449-9d97-d8f05867d2e9','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 06:58:59.155','2024-03-12 06:58:59.155','2024-03-12 06:58:59.155','BUY','Nakit',31.9953,'',NULL,NULL,NULL,NULL,'2024-03-12 06:59:11.182','2024-03-16 14:26:21.966','2024-03-16 14:26:21.968'),
('b6cc5364-c1cb-4579-92f8-08cc84fb1b95','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-17 10:58:09.443','2025-07-17 10:58:09.443','2025-07-17 10:58:09.443','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.822','2025-07-22 16:18:49.567',NULL),
('b6dd57a5-d381-47c0-b1d2-14dd2dce635c','d1ba1223-4475-415e-b63f-154a9404e56e','769f3044-7b21-4f0b-9fb6-6c8f6900dfd8','2024-11-20 12:36:53.167','2024-11-20 12:36:53.167','2024-11-20 12:36:53.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-20 12:38:19.590','2024-11-21 10:10:22.457','2024-11-21 10:10:22.460'),
('b6e30fbe-5776-4578-bbd5-10be90b1b0cb','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 08:15:22.240','2025-07-31 08:15:22.240','2025-07-31 08:15:22.240','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.901','2025-09-02 14:46:19.382',NULL),
('b6f81672-3647-4ff3-815a-7c6d92069d37','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 20:55:29.790','2025-04-25 20:55:29.790','2025-04-25 20:55:29.790','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.980',NULL),
('b722ac84-c4ce-4efd-82a7-9505b4ece5ac','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 12:59:53.439','2024-09-09 12:59:53.439','2024-09-09 12:59:53.439','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 13:01:19.302','2024-09-09 13:01:19.302',NULL),
('b73cb378-c33e-4f9d-b46b-95661b7700ae','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-09 07:26:50.633','2025-04-09 07:26:50.633','2025-04-09 07:26:50.633','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:21:58.939','2025-05-02 17:08:29.571',NULL),
('b7685a80-79b4-4cf9-9423-6440afebe1bf','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 10:38:47.837','2025-06-20 10:38:47.837','2025-06-20 10:38:47.837','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.307','2025-07-26 08:40:12.320',NULL),
('b77603d6-5867-471a-a5e0-0ee119c517b9','338e8c09-4ca5-4617-bfc1-a0692646d475','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-10 15:12:14.439','2025-08-10 15:12:14.439','2025-08-10 15:12:14.439','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.085','2025-09-10 15:34:43.083',NULL),
('b79a27e7-635c-4783-a69a-8390671df449','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-24 11:34:17.379','2025-04-24 11:34:17.379','2025-04-24 11:34:17.379','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.105',NULL),
('b7baf84d-bdae-4b7f-bede-126d5e951e7f','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 13:44:26.194','2025-04-30 13:44:26.194','2025-04-30 13:44:26.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:48:14.424','2025-05-02 11:56:13.224',NULL),
('b7c43472-b79a-490a-9838-9fb269dbb127','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:34:12.748','2024-03-30 09:34:12.748','2024-03-30 09:34:12.748','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:38:03.364','2024-03-30 09:38:03.364',NULL),
('b7c7248d-ccda-4f97-a250-8c3720cc2cd6','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-10 06:27:10.040','2025-09-10 06:27:10.040','2025-09-10 06:27:10.040','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.303','2025-09-12 17:16:02.688',NULL),
('b7ce1eea-4722-45d9-8a2b-ed4da5e5e17f','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 06:12:36.415','2025-07-30 06:12:36.415','2025-07-30 06:12:36.415','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.142','2025-08-14 12:56:53.642',NULL),
('b7df1b63-ff2e-48c7-b69c-975a1b6618d1','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-17 10:44:21.582','2025-10-17 10:44:21.582','2025-10-17 10:44:21.582','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 10:48:44.598','2025-10-22 13:06:26.231',NULL),
('b7f871bc-e5e1-4fa7-80ab-930db6f9913e','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 09:01:43.711','2024-09-27 09:01:43.711','2024-09-27 09:01:43.711','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 09:47:08.188','2024-11-08 17:29:37.368',NULL),
('b7fc7b41-7d92-42a9-8ac7-43208f3bc1a0','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:10:47.982','2025-04-24 07:10:47.982','2025-04-24 07:10:47.982','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.590',NULL),
('b8007a88-1e1c-4961-82ac-d75de6b8e37d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 12:32:03.068','2025-03-04 12:32:03.068','2025-03-04 12:32:03.068','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:35:30.206','2025-03-11 07:46:42.037',NULL),
('b80a91dc-7d92-453b-8ec3-813192f514eb','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 15:14:43.025','2025-01-09 15:14:43.025','2025-01-09 15:14:43.025','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.003',NULL),
('b8262b95-22cb-47b7-8e23-6c5bc22505ed','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-18 11:38:41.790','2025-03-18 11:38:41.790','2025-03-18 11:38:41.790','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:47:28.703','2025-03-29 13:56:05.359',NULL),
('b83b00ad-15ed-41f5-b471-503b52d16a62','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:47:18.059','2024-03-16 08:47:18.059','2024-03-16 08:47:18.059','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:50:01.427','2024-03-16 08:50:01.427',NULL),
('b8533308-afb3-41a7-88ce-af498103b6dc','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:58:26.755','2024-09-28 15:58:26.755','2024-09-28 15:58:26.755','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 16:00:36.379','2024-09-28 16:00:36.379',NULL),
('b8718466-d2ed-4ca9-8724-4495e28fd53c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 07:04:06.456','2025-05-13 07:04:06.456','2025-05-13 07:04:06.456','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.671',NULL),
('b8c93070-cf40-4882-89b2-c13b3b327264','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 07:29:50.066','2025-02-04 07:29:50.066','2025-02-04 07:29:50.066','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:46:00.031','2025-02-20 12:40:28.794',NULL),
('b8c9a5c9-e33d-4874-b76d-6e0caea39694','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-16 09:50:10.625','2025-06-16 09:50:10.625','2025-06-16 09:50:10.625','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:21:20.134','2025-07-07 11:44:52.697',NULL),
('b8ea5102-1db5-4e54-91f9-42401d13588e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 10:26:32.912','2025-01-09 10:26:32.912','2025-01-09 10:26:32.912','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.504',NULL),
('b8f37d71-0408-4688-970b-5b88a10649b4','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-01 09:02:18.031','2025-09-01 09:02:18.031','2025-09-01 09:02:18.031','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.309','2025-09-12 17:16:02.556',NULL),
('b905d409-e23c-4547-9f2a-56b4d337089f','0dae8190-b900-4826-9171-b2d74a2538b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 11:00:51.079','2025-02-06 11:00:51.079','2025-02-06 11:00:51.079','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.283',NULL),
('b9068d63-d590-4750-83ba-e4694a0929a1','4b545346-8acc-42eb-84c7-be96e0cc1e19','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-30 14:41:31.796','2024-07-30 14:41:31.796','2024-07-30 14:41:31.796','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-30 14:45:03.117','2024-07-31 08:33:15.484',NULL),
('b965489c-bd8e-464d-b5d0-0998b2fc144f','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-13 08:06:38.081','2025-05-13 08:06:38.081','2025-05-13 08:06:38.081','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.813',NULL),
('b984932f-e26f-4a62-ae43-75f5c17a0429','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-22 06:37:11.147','2025-07-22 06:37:11.147','2025-07-22 06:37:11.147','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.898','2025-08-21 08:12:56.902',NULL),
('b9a3faa9-90cd-47a4-b89c-e6da50cdf1a9','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-05 10:55:05.398','2025-09-05 10:55:05.398','2025-09-05 10:55:05.398','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.328','2025-10-25 08:58:44.043',NULL),
('b9c8b1aa-f453-48a8-91db-a75cf664bcf2','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 09:58:18.779','2024-07-20 09:58:18.779','2024-07-20 09:58:18.779','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:00:19.620','2024-07-20 10:03:59.055',NULL),
('b9df55c7-660d-4bac-8235-4a71d3eae0b0','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:51:36.479','2024-12-07 08:51:36.479','2024-12-07 08:51:36.479','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:55:02.750','2024-12-17 19:52:32.938',NULL),
('b9edc1ec-fcf8-4895-aa6f-8cf8a0e95bd9','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-10 12:35:17.651','2024-12-10 12:35:17.651','2024-12-10 12:35:17.651','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:44:13.141','2025-01-06 20:08:12.982',NULL),
('ba03a3a3-ad70-4e1b-8049-f8505598b747','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-28 10:00:55.522','2025-01-28 10:00:55.522','2025-01-28 10:00:55.522','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.127',NULL),
('ba19340f-4502-484a-8874-4a0d2df81476','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-20 07:11:46.503','2025-08-20 07:11:46.503','2025-08-20 07:11:46.503','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.779','2025-09-02 14:46:19.255',NULL),
('ba3c5106-757b-4614-883b-6065408a440f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-11-28 10:46:56.258','2024-11-28 10:46:56.258','2024-11-28 10:46:56.258','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-28 10:49:26.014','2024-12-09 17:29:20.196',NULL),
('ba4f4645-3134-4f12-ae5f-993eccd1d929','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-07 13:02:28.923','2025-07-07 13:02:28.923','2025-07-07 13:02:28.923','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.387','2025-09-12 17:16:02.619',NULL),
('ba77c074-a5cb-4136-9f3d-438179f3c216','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 08:46:53.946','2025-07-30 08:46:53.946','2025-07-30 08:46:53.946','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.951','2025-08-21 08:12:56.853',NULL),
('ba8d57eb-ade4-4456-ac4b-07e29176f0d1','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 07:46:53.939','2024-10-21 07:46:53.939','2024-10-21 07:46:53.939','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 07:50:05.938','2024-10-25 11:57:39.545',NULL),
('ba99bb87-6da1-49f9-b5a1-266498398af0','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 07:50:57.676','2024-10-21 07:50:57.676','2024-10-21 07:50:57.676','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 07:53:34.276','2024-10-23 15:21:26.829',NULL),
('bac2bff1-b7bd-48d0-85f9-8ec8ed56aa28','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-06 15:01:06.401','2024-11-06 15:01:06.401','2024-11-06 15:01:06.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 15:05:10.007','2024-11-25 09:20:32.844',NULL),
('bad7a4b8-28e4-4b19-bdbf-7746a6ad72ce','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-13 12:43:18.409','2025-03-13 12:43:18.409','2025-03-13 12:43:18.409','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-04-15 09:32:18.469',NULL),
('bb2f6e8a-8f00-4d2e-94b1-014fce0707b5','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 10:54:05.245','2025-07-24 10:54:05.245','2025-07-24 10:54:05.245','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.188','2025-08-15 20:59:04.953',NULL),
('bb5abb80-c656-4b4d-bc3d-4aac6908aae0','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-21 08:28:26.554','2024-12-21 08:28:26.554','2024-12-21 08:28:26.554','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:02:39.709','2025-01-07 17:06:26.345',NULL),
('bb5c9d8e-88f7-4ed8-b355-91995e0b4644','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 13:34:51.087','2025-02-12 13:34:51.087','2025-02-12 13:34:51.087','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.155',NULL),
('bb5d4018-d642-46f5-9a4a-656297dd92ab','d1ba1223-4475-415e-b63f-154a9404e56e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-31 06:52:08.478','2024-12-31 06:52:08.478','2024-12-31 06:52:08.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.257',NULL),
('bb7923d7-e72a-42b0-9979-56a2513344c2','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:38:27.072','2024-05-29 09:38:27.072','2024-05-29 09:38:27.072','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:48:00.179','2024-05-29 09:48:00.179',NULL),
('bb81dc9b-6206-42c5-833c-1f29603ef550','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 20:32:07.336','2025-08-22 20:32:07.336','2025-08-22 20:32:07.336','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.196','2025-08-25 12:11:45.756',NULL),
('bbae8338-6600-44bd-87df-e910bf0028e9','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-03 12:00:15.741','2025-06-03 12:00:15.741','2025-06-03 12:00:15.741','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.842',NULL),
('bbbd2e47-e738-4784-b6f7-28af6d131fb5','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-16 07:56:15.650','2025-04-16 07:56:15.650','2025-04-16 07:56:15.650','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.542',NULL),
('bbda9554-c715-43b4-a0b6-08434178baeb','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 10:44:51.205','2025-04-22 10:44:51.205','2025-04-22 10:44:51.205','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.487',NULL),
('bbe736f7-91aa-4c68-8c32-4140f8595e93','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 13:16:27.484','2025-02-26 13:16:27.484','2025-02-26 13:16:27.484','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-11 14:16:19.289','2025-03-15 09:47:16.120',NULL),
('bc0721bc-cfb0-4638-9170-7bb63768f5c0','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 09:27:39.248','2025-07-09 09:27:39.248','2025-07-09 09:27:39.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.807','2025-07-16 14:21:29.531',NULL),
('bc235325-6023-4a31-abed-6df6f9504b93','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 14:31:59.238','2024-12-17 14:31:59.238','2024-12-17 14:31:59.238','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:14:04.004','2025-01-11 14:10:24.402',NULL),
('bc4049cb-561d-4c2e-a678-69a842183f28','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 13:36:54.996','2024-11-23 13:36:54.996','2024-11-23 13:36:54.996','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 13:38:28.325','2024-12-02 09:51:49.708',NULL),
('bc7cbf8c-0a0a-4940-b542-a35c8384387d','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 09:29:04.192','2025-01-29 09:29:04.192','2025-01-29 09:29:04.192','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:29:44.418','2025-02-27 13:37:30.602',NULL),
('bcb69d12-15a7-473c-8177-481ac16865f2','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:53:47.697','2025-09-15 06:53:47.697','2025-09-15 06:53:47.697','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.308','2025-10-02 11:05:59.140',NULL),
('bcc10368-cf0d-4fdc-b6c5-e0c365af6cb9','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 10:20:04.288','2025-08-26 10:20:04.288','2025-08-26 10:20:04.288','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:25:43.943','2025-09-03 06:09:36.824',NULL),
('bcdeaa97-0f9e-49d6-bba3-a5cdf1e1742d','fd2f8958-dabf-4d4a-a10e-62713178bf3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 14:53:25.101','2024-08-20 14:53:25.101','2024-08-20 14:53:25.101','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 14:54:54.952','2024-08-23 08:57:27.820',NULL),
('bce0217a-ef57-4267-a59b-8ed08bcd2a91','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 13:04:44.250','2025-02-13 13:04:44.250','2025-02-13 13:04:44.250','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.657',NULL),
('bd198385-d400-4ca8-a17b-0db06802f462','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 08:49:27.289','2024-03-30 08:49:27.289','2024-03-30 08:49:27.289','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 08:53:41.794','2024-03-30 08:53:41.794',NULL),
('bd1e3199-fb76-4bfb-9138-b26dd32380cd','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-14 10:23:30.945','2025-05-14 10:23:30.945','2025-05-14 10:23:30.945','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.729',NULL),
('bd269a7a-9be7-4749-9138-4ce3056e5e42','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 12:15:25.778','2025-07-18 12:15:25.778','2025-07-18 12:15:25.778','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.985','2025-07-22 16:18:49.575',NULL),
('bd3cbb33-9937-495e-a41c-880504823fdd','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-02 08:33:17.045','2025-06-02 08:33:17.045','2025-06-02 08:33:17.045','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:07:51.919','2025-06-06 02:46:03.888',NULL),
('bd431cec-5919-40fa-a31b-fc23b92dbad8','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 12:49:35.849','2024-09-09 12:49:35.849','2024-09-09 12:49:35.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 12:52:35.248','2024-09-09 12:52:35.248',NULL),
('bd840984-891b-4e30-872b-77fcf10289de','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:53:14.229','2024-12-28 14:53:14.229','2024-12-28 14:53:14.229','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:55:09.945','2025-01-06 20:08:12.937',NULL),
('bd918f7f-71db-44a3-b823-bd9f91863221','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 08:48:00.969','2024-05-29 08:48:00.969','2024-05-29 08:48:00.969','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 08:50:12.996','2024-05-29 08:50:12.996',NULL),
('bd94cfe9-08ac-4035-8754-9894e3179676','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-26 11:47:58.121','2024-08-26 11:47:58.121','2024-08-26 11:47:58.121','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-26 11:58:22.607','2024-09-09 13:33:09.031',NULL),
('bd9a4c11-8387-4313-ad0b-dda9afcae074','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 10:17:28.719','2024-12-24 10:17:28.719','2024-12-24 10:17:28.719','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.906',NULL),
('bdab6fa6-9dad-4fdc-b145-fec42d7d1304','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:08:52.897','2025-06-16 09:08:52.897','2025-06-16 09:08:52.897','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.866',NULL),
('bdba2f53-5387-4c52-ad96-5966f5ad7d2e','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 13:21:59.233','2025-07-09 13:21:59.233','2025-07-09 13:21:59.233','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.700','2025-07-16 14:21:29.585',NULL),
('bdde6e2b-2ee7-4898-bfea-5ccb69413ef4','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-16 13:25:46.694','2024-12-16 13:25:46.694','2024-12-16 13:25:46.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.565',NULL),
('bdea5120-0efd-4093-a707-745c275daead','0dae8190-b900-4826-9171-b2d74a2538b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-23 12:19:13.929','2025-02-23 12:19:13.929','2025-02-23 12:19:13.929','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.205',NULL),
('be2cac72-97cf-463e-ac44-c92ab4ff3ed7','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-09 13:29:18.354','2024-10-09 13:29:18.354','2024-10-09 13:29:18.354','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-09 13:32:49.013','2024-10-23 15:01:17.522',NULL),
('be3fd3be-b3fd-4da7-a016-fa5b85b5d1a4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:50:10.923','2024-03-16 08:50:10.923','2024-03-16 08:50:10.923','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:52:12.067','2024-03-16 08:52:12.067',NULL),
('be6b3ded-c6a2-4897-b9b1-e888be7dfa87','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 12:30:12.430','2025-08-01 12:30:12.430','2025-08-01 12:30:12.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.492','2025-08-15 20:59:04.994',NULL),
('bec30687-a7d1-4827-80f4-646305689a5d','92d31478-aa4f-4f7e-b6e7-95b858af9bfe','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-28 09:33:42.282','2025-04-28 09:33:42.282','2025-04-28 09:33:42.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 17:08:04.024',NULL),
('bf3f64e9-3b4c-47e1-a679-a120b4e00e20','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 12:54:14.164','2024-08-31 12:54:14.164','2024-08-31 12:54:14.164','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 12:56:59.959','2024-08-31 12:56:59.959',NULL),
('bf42b18d-4e10-4fda-9389-5de0cef981f2','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:35:46.166','2024-10-24 09:35:46.166','2024-10-24 09:35:46.166','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:38:04.145','2024-11-08 17:36:37.267',NULL),
('bf4a9866-9d94-41a6-bfc1-7ea46e743b29','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 09:35:03.346','2025-10-06 09:35:03.346','2025-10-06 09:35:03.346','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.901','2025-10-14 08:52:36.736',NULL),
('bf5e95c8-3e14-4a53-b847-940c2b0428cb','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 07:00:43.688','2025-04-22 07:00:43.688','2025-04-22 07:00:43.688','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.561',NULL),
('bf65883a-95cc-47b2-b59b-db742bbc8e55','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:27:18.947','2025-04-24 08:27:18.947','2025-04-24 08:27:18.947','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:07:59.860','2025-05-16 16:30:10.612',NULL),
('bf89c488-c318-453f-95ba-634d43a6b938','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 13:22:52.200','2025-02-24 13:22:52.200','2025-02-24 13:22:52.200','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 10:42:46.210','2025-03-21 17:17:30.146',NULL),
('bf967bcb-282b-4a2f-9341-d766146727b2','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 12:08:04.146','2025-02-06 12:08:04.146','2025-02-06 12:08:04.146','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:30:49.656','2025-02-15 11:10:43.073',NULL),
('bfdc564d-02b6-4a0c-a8ae-05021b8cf08f','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-05 12:03:30.248','2024-12-05 12:03:30.248','2024-12-05 12:03:30.248','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:16:19.811','2024-12-16 18:41:52.585',NULL),
('c0130e82-1970-4acf-a716-c64594e36688','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 09:20:07.251','2025-01-06 09:20:07.251','2025-01-06 09:20:07.251','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-23 16:36:15.132',NULL),
('c03db5a2-03db-4ee2-9033-e03a768c895e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 20:01:58.352','2024-12-28 20:01:58.352','2024-12-28 20:01:58.352','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.519',NULL),
('c046025f-3172-4955-9bee-e2edbe10b1c9','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-23 07:32:39.125','2025-06-23 07:32:39.125','2025-06-23 07:32:39.125','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.850','2025-07-16 14:21:29.564',NULL),
('c04bf0f2-07df-451a-af67-bee9d7d8663e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-06 10:06:48.794','2025-05-06 10:06:48.794','2025-05-06 10:06:48.794','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:06:36.411','2025-05-16 16:30:10.529',NULL),
('c053d86e-efec-4f6c-ab89-b9df98bbe86c','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 06:12:21.989','2025-09-09 06:12:21.989','2025-09-09 06:12:21.989','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.281','2025-09-12 17:16:02.547',NULL),
('c088fe04-1353-4e18-8da5-311dfd5ea88f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-18 19:47:39.261','2024-12-18 19:47:39.261','2024-12-18 19:47:39.261','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:51:46.124','2025-01-06 20:08:12.887',NULL),
('c08d60e3-7b06-4086-a3c0-84d8d723c175','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 08:47:35.553','2025-09-24 08:47:35.553','2025-09-24 08:47:35.553','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.849','2025-10-03 16:08:51.171',NULL),
('c0a10ac8-81e2-4715-8fc0-95171541e824','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-31 08:52:48.067','2024-05-31 08:52:48.067','2024-05-31 08:52:48.067','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-31 09:13:21.224','2024-07-20 09:52:27.543','2024-07-20 09:52:27.550'),
('c0bdf2b3-caed-4139-b251-faebec045956','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 15:15:34.478','2025-02-13 15:15:34.478','2025-02-13 15:15:34.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:55:34.912','2025-02-20 12:40:28.887',NULL),
('c0d2bdfb-9354-4fe1-901d-22a0964a1ecd','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 14:11:02.261','2024-12-13 14:11:02.261','2024-12-13 14:11:02.261','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.333',NULL),
('c0e47e43-f951-486e-a388-720bf7771db7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:27:22.918','2025-01-29 07:27:22.918','2025-01-29 07:27:22.918','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.782',NULL),
('c0f20f1c-8240-44ce-90dc-04040cab5461','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-18 12:13:54.650','2025-04-18 12:13:54.650','2025-04-18 12:13:54.650','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.310',NULL),
('c0f7c4c3-a1ea-4a41-94a7-6648ea6b9685','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:58:37.309','2025-04-24 07:58:37.309','2025-04-24 07:58:37.309','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.050',NULL),
('c11061bf-094a-41f8-b3c4-2d34c923799d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 11:34:14.259','2025-02-05 11:34:14.259','2025-02-05 11:34:14.259','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:14:57.493','2025-03-21 17:17:30.177',NULL),
('c128425f-f7eb-4f74-9962-fb4e7c05e84a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-31 14:21:14.570','2024-10-31 14:21:14.570','2024-10-31 14:21:14.570','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 14:34:48.615','2024-11-04 13:36:20.625','2024-11-04 13:36:20.630'),
('c12bc6bc-eeb4-4408-8d91-a300b3fde421','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 08:27:43.090','2025-09-09 08:27:43.090','2025-09-09 08:27:43.090','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.366','2025-09-12 17:16:02.597',NULL),
('c12f68e7-0da5-425b-b14b-94bb9aaa2ef0','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:24:29.216','2024-11-12 15:24:29.216','2024-11-12 15:24:29.216','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:26:06.327','2024-11-12 15:26:06.327',NULL),
('c1477569-e5af-4b46-aea8-6e12e2ae266e','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 12:02:48.332','2025-04-08 12:02:48.332','2025-04-08 12:02:48.332','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.488',NULL),
('c161e0cb-7f8f-4eb1-9239-d5b5cd9b96ef','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-03 21:18:31.683','2024-11-03 21:18:31.683','2024-11-03 21:18:31.683','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-03 21:20:09.638','2024-11-08 17:33:53.021',NULL),
('c1b7a24f-87e3-473d-b454-dddb851c765c','1b51c5f7-649a-424f-ba17-cc37d6298af9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-17 08:09:47.390','2025-02-17 08:09:47.390','2025-02-17 08:09:47.390','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:37:32.391','2025-03-11 07:46:42.100',NULL),
('c1c69d0f-f5f8-4802-9841-cf961847d140','0debd19b-d90b-48a0-9568-2d01319377e0','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-05 14:20:21.706','2025-05-05 14:20:21.706','2025-05-05 14:20:21.706','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-20 17:00:40.294',NULL),
('c1d4b6ce-aa15-409d-863a-dedbde7cd30b','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 13:52:07.192','2024-09-27 13:52:07.192','2024-09-27 13:52:07.192','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 13:58:45.968','2024-10-11 16:06:10.431',NULL),
('c1e99df5-0d9e-4fa2-997d-7e3ee1a99f8b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-03 12:42:23.484','2025-09-03 12:42:23.484','2025-09-03 12:42:23.484','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.649','2025-09-10 07:11:56.166',NULL),
('c22838c6-7231-4180-822c-7fc349cfc691','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 08:04:47.014','2025-01-29 08:04:47.014','2025-01-29 08:04:47.014','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:55:18.052','2025-02-11 17:09:06.532',NULL),
('c237d382-0a3e-482a-92be-e1f110212586','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 11:04:37.829','2025-09-05 11:04:37.829','2025-09-05 11:04:37.829','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.407','2025-09-19 10:00:25.417',NULL),
('c26a9b20-9dfb-4012-89f2-02fd2acf7924','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 08:40:52.722','2025-07-30 08:40:52.722','2025-07-30 08:40:52.722','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.172','2025-08-14 08:02:29.746',NULL),
('c26c7e32-491d-46c0-bd82-1451f6badafe','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 07:26:38.306','2025-04-21 07:26:38.306','2025-04-21 07:26:38.306','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.323',NULL),
('c26efb00-59db-401e-afa8-46e9884a0695','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:52:41.328','2024-11-15 16:52:41.328','2024-11-15 16:52:41.328','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:55:10.683','2024-11-21 10:23:19.874',NULL),
('c27544c2-9312-482a-901a-e825532d87a3','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-16 09:44:28.600','2024-09-16 09:44:28.600','2024-09-16 09:44:28.600','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-16 09:54:07.779','2024-09-27 13:36:34.937',NULL),
('c27ddc3c-e6b5-4b02-a03a-06a04dae9e2d','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-10 12:51:00.556','2025-03-10 12:51:00.556','2025-03-10 12:51:00.556','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:47:28.703','2025-03-29 13:56:05.366',NULL),
('c2a5ac21-ab98-40b5-9d6e-2a94dad94d16','b0c1192a-7d38-4b69-a901-778f65a98b9d','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-23 14:24:50.269','2025-07-23 14:24:50.269','2025-07-23 14:24:50.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:26:43.574','2025-07-29 12:37:20.393',NULL),
('c2f13ec1-379b-4d9e-bcec-00c24f2b4c99','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 10:58:20.388','2024-12-27 10:58:20.388','2024-12-27 10:58:20.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:48:36.714','2025-01-22 09:40:15.598',NULL),
('c2f5d689-9a22-42ca-9c26-b034b0ed5129','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 19:50:38.679','2025-03-09 19:50:38.679','2025-03-09 19:50:38.679','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.097',NULL),
('c304e531-ca55-4875-9de6-6d7c0ea2820b','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 07:25:13.064','2025-09-10 07:25:13.064','2025-09-10 07:25:13.064','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.617','2025-10-07 15:17:28.380',NULL),
('c31d88c3-7e4e-4b28-89f5-acbc2e011f86','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-10 18:41:47.153','2024-11-10 18:41:47.153','2024-11-10 18:41:47.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-10 18:43:47.518','2024-12-09 08:24:38.609',NULL),
('c3473edb-5e08-4c18-aec2-c12daa29df10','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:12:06.283','2024-12-07 09:12:06.283','2024-12-07 09:12:06.283','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:17:31.180','2024-12-17 19:52:32.851',NULL),
('c34ab18f-2bd6-441c-9662-d1f26dfceed1','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-17 07:54:20.331','2025-07-17 07:54:20.331','2025-07-17 07:54:20.331','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.442','2025-08-15 20:59:04.938',NULL),
('c35b91cd-1843-4d66-be96-e225d680c6b3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 16:04:40.019','2024-09-28 16:04:40.019','2024-09-28 16:04:40.019','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 16:06:32.999','2024-09-28 16:06:32.999',NULL),
('c35e9537-7146-4c70-9422-8f1fa66fbb3f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 14:38:51.936','2024-11-23 14:38:51.936','2024-11-23 14:38:51.936','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 14:40:13.807','2024-12-02 09:51:49.551',NULL),
('c36a5745-00b9-4867-b2c1-f24c48082423','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:27:22.290','2024-09-28 15:27:22.290','2024-09-28 15:27:22.290','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:29:19.755','2024-09-28 15:29:19.755',NULL),
('c36c0c86-43d2-447a-80b0-5d61f075690a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:23:08.683','2024-04-27 08:23:08.683','2024-04-27 08:23:08.683','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:25:15.157','2024-04-27 08:25:15.157',NULL),
('c3a86172-4d0f-431d-ae5a-83f497e376c4','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:46:42.131','2025-06-11 20:46:42.131','2025-06-11 20:46:42.131','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.192','2025-07-16 14:29:34.165',NULL),
('c3ac52fc-eead-43be-ab3a-69e3c43a2718','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 13:49:28.658','2025-08-11 13:49:28.658','2025-08-11 13:49:28.658','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.892','2025-08-21 08:12:56.995',NULL),
('c3d473e3-c428-47bb-8d5f-8fd25229a7de','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-22 08:56:26.766','2025-01-22 08:56:26.766','2025-01-22 08:56:26.766','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:05:10.599','2025-02-15 16:08:16.767',NULL),
('c3f67119-f96d-4bdb-975b-383137c3401c','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 08:29:22.932','2024-10-30 08:29:22.932','2024-10-30 08:29:22.932','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 08:31:37.222','2024-11-12 16:12:57.210',NULL),
('c41f924c-def3-4822-8327-09d44f4f2d88','d1ba1223-4475-415e-b63f-154a9404e56e','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-20 13:13:24.535','2024-11-20 13:13:24.535','2024-11-20 13:13:24.535','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-20 13:33:45.841','2024-12-09 08:24:38.637',NULL),
('c4270e44-4f71-4fdd-8b27-941e1e4a0461','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-02 15:28:39.744','2025-07-02 15:28:39.744','2025-07-02 15:28:39.744','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.258','2025-08-12 08:07:30.379',NULL),
('c47e6bfe-e12e-4190-89bc-b82b2b61f7ed','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 10:21:52.786','2024-03-12 10:21:52.786','2024-03-12 10:21:52.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 10:23:29.558','2024-03-14 13:39:16.499',NULL),
('c4818482-5e89-471d-a12c-e0729266a474','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 12:14:20.915','2025-03-04 12:14:20.915','2025-03-04 12:14:20.915','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:40:51.326','2025-03-12 19:01:22.460',NULL),
('c48ab019-54db-4754-a877-3b9b0cf6cc0e','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-26 07:26:09.917','2025-06-26 07:26:09.917','2025-06-26 07:26:09.917','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:34:37.117','2025-07-07 11:44:52.710',NULL),
('c49a7c1b-652a-4983-bb15-b94471f4eeb3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:25:18.529','2024-09-28 15:25:18.529','2024-09-28 15:25:18.529','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:27:14.853','2024-09-28 15:27:14.853',NULL),
('c4e7444f-7fc9-4628-8d4d-1f710d26794e','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-14 12:36:47.429','2025-06-14 12:36:47.429','2025-06-14 12:36:47.429','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-14 12:41:41.837','2025-06-18 08:08:50.319',NULL),
('c4f9c9e9-5d9d-4fa5-8a84-b9b372caac6c','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 11:00:08.544','2024-07-20 11:00:08.544','2024-07-20 11:00:08.544','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 11:01:52.903','2024-07-20 11:01:52.903',NULL),
('c53c3026-52b5-430e-9b38-837d66aac205','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-26 08:02:17.703','2025-08-26 08:02:17.703','2025-08-26 08:02:17.703','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:41:46.610','2025-09-05 08:55:11.213',NULL),
('c55c9e13-47a9-4808-8ce0-080af3f5cae4','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 08:31:01.361','2025-08-29 08:31:01.361','2025-08-29 08:31:01.361','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.779','2025-10-03 16:08:51.097',NULL),
('c57cd100-da9c-4468-9aaf-10e024a08f81','f4861afa-47df-4a6b-b9ca-da22afe273e4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 10:36:27.948','2025-07-02 10:36:27.948','2025-07-02 10:36:27.948','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.693','2025-07-21 12:03:55.923',NULL),
('c5930fac-7b12-4d36-8a3e-e1e2facc768f','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-14 08:53:53.697','2025-04-14 08:53:53.697','2025-04-14 08:53:53.697','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-28 11:52:47.981',NULL),
('c5ce9c95-d23b-4008-b316-84b96d661ab0','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 11:23:27.715','2025-09-10 11:23:27.715','2025-09-10 11:23:27.715','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.890','2025-10-01 07:56:23.182',NULL),
('c5defc90-88c7-44f5-b8ea-14bd78e93294','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 08:11:25.875','2024-07-02 08:11:25.875','2024-07-02 08:11:25.875','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 08:13:04.295','2024-07-02 08:13:04.295',NULL),
('c5e8f66f-9f1e-408d-9557-076a4878094b','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:09:08.278','2024-12-07 09:09:08.278','2024-12-07 09:09:08.278','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 16:50:36.282','2024-12-27 12:23:49.298',NULL),
('c5fdd2b8-e84b-47b2-bb99-03d9a96ad7c1','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 13:08:11.389','2024-12-13 13:08:11.389','2024-12-13 13:08:11.389','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:16:19.811','2024-12-16 18:41:52.623',NULL),
('c603ad57-d10e-4b8a-99a4-9c0b62ef576b','52840269-0db7-4c57-8a50-57d49049f342','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-09 08:35:51.122','2024-09-09 08:35:51.122','2024-09-09 08:35:51.122','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-09 08:38:07.219','2024-09-09 13:13:10.982',NULL),
('c626ed00-134f-4996-9342-90165390af7a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-14 11:31:28.344','2025-02-14 11:31:28.344','2025-02-14 11:31:28.344','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.791',NULL),
('c677fd51-01ce-43c1-ae27-be0e4185a50a','2682d67a-85fc-4f82-9b33-ed916cf1fc26','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-12 18:30:26.328','2025-03-12 18:30:26.328','2025-03-12 18:30:26.328','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.599',NULL),
('c67b1be3-22cc-4407-b47a-59819d5873ca','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 17:29:27.012','2025-03-25 17:29:27.012','2025-03-25 17:29:27.012','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.818',NULL),
('c6dc8fb2-eb78-428c-9629-0c43ea7b130b','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:57:44.310','2024-12-07 08:57:44.310','2024-12-07 08:57:44.310','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:00:18.509','2024-12-17 19:52:33.021',NULL),
('c7133096-f50f-40a2-9a12-2b20cbbc5ea0','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 08:53:43.097','2025-09-29 08:53:43.097','2025-09-29 08:53:43.097','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.597','2025-10-07 15:17:28.407',NULL),
('c728650f-ca26-48eb-a821-cf10d127192e','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-29 14:05:34.513','2024-08-29 14:05:34.513','2024-08-29 14:05:34.513','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-29 14:08:08.560','2024-09-18 21:28:52.029',NULL),
('c7496961-25d0-4588-a188-9cc8b0a86fd3','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-25 09:13:16.226','2025-04-25 09:13:16.226','2025-04-25 09:13:16.226','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.560',NULL),
('c77ad426-458d-4a78-8508-c8f4b6aa154f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 08:59:42.143','2024-03-30 08:59:42.143','2024-03-30 08:59:42.143','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:02:09.186','2024-03-30 09:02:09.186',NULL),
('c78caeda-4d5a-4a39-845d-7c508dff94ac','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-11 08:18:03.816','2025-07-11 08:18:03.816','2025-07-11 08:18:03.816','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.258','2025-07-16 14:21:29.606',NULL),
('c7fc1e4d-6df7-4c78-bbe1-be2f55a9f6a7','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 10:35:46.424','2025-08-26 10:35:46.424','2025-08-26 10:35:46.424','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:25:43.950','2025-09-03 06:09:36.661',NULL),
('c80802a9-cf1d-457b-bb29-db28eb6ddc07','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 13:59:02.021','2025-09-18 13:59:02.021','2025-09-18 13:59:02.021','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.884','2025-10-12 15:29:10.299',NULL),
('c8140d3b-a9d2-4cab-9492-f3e51618f7dc','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-21 07:03:06.805','2025-07-21 07:03:06.805','2025-07-21 07:03:06.805','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:26:43.598','2025-07-29 12:37:20.460',NULL),
('c841f7d7-1bc1-4c08-b668-b789c75c8d87','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-21 09:49:27.335','2025-06-21 09:49:27.335','2025-06-21 09:49:27.335','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.272','2025-07-26 08:40:12.379',NULL),
('c841fdd4-e1e4-4d83-8bd4-c448e1adf998','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 10:14:50.303','2025-01-13 10:14:50.303','2025-01-13 10:14:50.303','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:09:32.512','2025-01-28 15:19:34.600',NULL),
('c859b342-ae14-47b3-a517-68b2dcd22b51','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 11:53:35.843','2025-06-16 11:53:35.843','2025-06-16 11:53:35.843','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.696','2025-07-08 12:54:05.088',NULL),
('c85f222e-6a1b-408f-8848-a75301f7d516','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-05 08:52:13.017','2024-04-05 08:52:13.017','2024-04-05 08:52:13.017','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-05 09:17:49.725','2024-04-05 09:17:49.725',NULL),
('c87c37e9-026c-4736-9a44-24dc5880e9d2','338e8c09-4ca5-4617-bfc1-a0692646d475','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-22 14:43:53.884','2025-09-22 14:43:53.884','2025-09-22 14:43:53.884','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.584','2025-09-24 13:41:15.110',NULL),
('c894c0cd-d60f-4d93-9104-40c0125ba18c','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 13:31:40.807','2025-03-20 13:31:40.807','2025-03-20 13:31:40.807','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:16:41.748','2025-03-29 13:37:01.764',NULL),
('c89b4b8f-de6b-427f-b91f-4a37cd7ecda8','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 09:37:13.031','2025-03-25 09:37:13.031','2025-03-25 09:37:13.031','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 09:39:17.021','2025-04-11 07:59:38.188','2025-04-11 07:59:38.193'),
('c8a163cb-40ce-4412-a285-e69196757e58','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 10:21:09.288','2025-01-09 10:21:09.288','2025-01-09 10:21:09.288','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.483',NULL),
('c8a350b7-27e1-4f9a-8b2b-d7fcd129c4ad','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 06:33:52.325','2025-05-23 06:33:52.325','2025-05-23 06:33:52.325','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:35:45.707','2025-05-27 07:35:17.771',NULL),
('c8a63873-9a3f-499b-9595-8310fec0d223','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-30 07:33:10.117','2025-09-30 07:33:10.117','2025-09-30 07:33:10.117','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.630','2025-10-17 10:53:07.571',NULL),
('c8bc8a78-6d95-4d5a-a3ff-d60d88a7d0ef','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 08:39:15.477','2024-12-07 08:39:15.477','2024-12-07 08:39:15.477','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:50:53.387','2024-12-17 19:52:32.898',NULL),
('c90139ba-b8e0-437f-b6c2-dd050cc93de8','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 07:50:43.626','2025-04-22 07:50:43.626','2025-04-22 07:50:43.626','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.873',NULL),
('c9032507-d73d-4ce3-bedb-3c5dc1c7374b','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 08:41:19.267','2024-03-18 08:41:19.267','2024-03-18 08:41:19.267','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 08:46:38.410','2024-03-30 08:53:58.718',NULL),
('c9478fcf-f602-4c75-a361-031010bad68b','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-16 21:51:49.986','2025-09-16 21:51:49.986','2025-09-16 21:51:49.986','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.882','2025-10-01 07:56:23.264',NULL),
('c9487e80-275b-49e1-9088-86fb4e261a4c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-20 09:04:11.326','2025-03-20 09:04:11.326','2025-03-20 09:04:11.326','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:12:45.918','2025-05-02 17:08:29.516',NULL),
('c95a34d3-4c97-4af0-8be8-4690fb3ed528','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-23 11:52:57.044','2025-06-23 11:52:57.044','2025-06-23 11:52:57.044','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:06:58.237','2025-07-16 14:21:29.663',NULL),
('c98aa98e-03b3-4bb4-8307-186fe2025b68','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-31 15:33:22.843','2024-12-31 15:33:22.843','2024-12-31 15:33:22.843','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.339',NULL),
('c9945f87-ba81-4a91-b038-529470567395','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-30 06:38:28.686','2025-05-30 06:38:28.686','2025-05-30 06:38:28.686','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:07:51.919','2025-06-06 02:46:03.907',NULL),
('c9d0ee7e-2efb-4dbe-91f1-9fda6aa4f6f2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-18 08:51:28.945','2025-08-18 08:51:28.945','2025-08-18 08:51:28.945','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.025','2025-09-10 12:48:00.753',NULL),
('c9d5d608-fc08-45a2-95fb-9459592575a0','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-03 14:58:02.808','2025-10-03 14:58:02.808','2025-10-03 14:58:02.808','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.577','2025-10-17 10:53:07.503',NULL),
('ca02cd4e-098c-48a8-8f4e-9de2643bb7e7','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-02 10:47:33.314','2025-08-02 10:47:33.314','2025-08-02 10:47:33.314','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.882','2025-09-03 06:09:36.795',NULL),
('ca33622c-cb7d-4ecd-9f8a-c8b8d0906ca4','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-26 09:26:02.594','2025-06-26 09:26:02.594','2025-06-26 09:26:02.594','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.709','2025-07-08 11:33:15.219',NULL),
('ca4303bd-92bb-464b-9595-71604cf764cf','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-03 07:55:42.817','2025-03-03 07:55:42.817','2025-03-03 07:55:42.817','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:18:50.008','2025-04-02 18:57:11.137',NULL),
('ca67f2dd-59cb-4f31-85c3-4700ab426ed2','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-14 15:26:56.135','2025-07-14 15:26:56.135','2025-07-14 15:26:56.135','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:50:30.836','2025-07-22 16:18:49.511',NULL),
('ca7cf037-b176-4f0c-9877-67d9cd603d97','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-11 20:17:36.784','2025-06-11 20:17:36.784','2025-06-11 20:17:36.784','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.221','2025-07-17 17:58:07.529',NULL),
('ca866e8a-b915-43e1-82e8-5060c3e7d062','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 11:10:09.473','2025-08-18 11:10:09.473','2025-08-18 11:10:09.473','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.469','2025-08-22 20:28:07.570',NULL),
('ca8d1ee1-10cb-41f2-9c6f-bebab7a5bf8b','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 08:16:01.030','2025-05-13 08:16:01.030','2025-05-13 08:16:01.030','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:35:45.707','2025-05-26 13:23:22.528',NULL),
('cadd82f4-7b0d-4bda-b1eb-1f42b58c73c9','c2d4ce84-536d-4816-837f-7abbf6a7e061','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-05 14:24:18.933','2025-06-05 14:24:18.933','2025-06-05 14:24:18.933','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:39:10.035','2025-06-06 02:46:03.849',NULL),
('cb1538f7-5634-4710-a176-0952d6ea7940','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-02 12:47:52.104','2024-09-02 12:47:52.104','2024-09-02 12:47:52.104','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-02 12:49:35.312','2024-09-18 21:28:01.688',NULL),
('cb1b7526-449a-4a0a-a58c-bd95c6adfd17','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 11:15:29.603','2025-10-06 11:15:29.603','2025-10-06 11:15:29.603','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.195','2025-10-22 11:29:52.701',NULL),
('cb22b274-06b3-4a87-b7b6-ea5184fc1f41','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-08 06:13:31.588','2025-08-08 06:13:31.588','2025-08-08 06:13:31.588','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.859','2025-09-02 14:46:19.339',NULL),
('cb329674-def7-42c3-bac8-536bf023e212','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-17 12:43:19.099','2024-10-17 12:43:19.099','2024-10-17 12:43:19.099','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-17 12:46:40.524','2024-10-17 12:46:40.524',NULL),
('cb43b83c-b330-47e2-80fb-853fafd0ee81','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-05 13:37:18.138','2025-08-05 13:37:18.138','2025-08-05 13:37:18.138','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.251','2025-08-12 08:07:30.295',NULL),
('cb4aa280-f13e-4244-9157-4529575723f9','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 13:26:25.807','2025-03-08 13:26:25.807','2025-03-08 13:26:25.807','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:28:46.864','2025-03-11 07:46:41.951',NULL),
('cb560766-f95b-4fea-8367-f05e886ae7ec','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 08:04:05.150','2025-04-09 08:04:05.150','2025-04-09 08:04:05.150','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.422',NULL),
('cb74d095-c88d-4c99-8007-cb094d56f37a','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-24 13:42:15.652','2025-03-24 13:42:15.652','2025-03-24 13:42:15.652','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:16:53.375','2025-05-02 17:08:29.564',NULL),
('cbc98dcc-8182-4312-9da5-13c2e6ba9d9b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:21:58.413','2024-10-02 09:21:58.413','2024-10-02 09:21:58.413','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:23:42.203','2024-10-02 09:23:42.203',NULL),
('cbd5d2db-aa6d-4afc-bfa6-0b956d1e293a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 09:04:27.696','2025-08-06 09:04:27.696','2025-08-06 09:04:27.696','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.595','2025-09-10 07:11:56.218',NULL),
('cbebd1b5-e79a-4554-b737-3cb7db64e965','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-14 15:17:46.273','2024-03-14 15:17:46.273','2024-03-14 15:17:46.273','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-14 15:22:33.969','2024-03-14 15:23:00.129','2024-03-14 15:23:00.128'),
('cbfee1fa-63cf-4435-ad18-05a46fab2513','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 09:56:49.127','2025-09-22 09:56:49.127','2025-09-22 09:56:49.127','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.915','2025-10-14 08:52:36.758',NULL),
('cc045912-8359-4f18-acdb-6230e8286a36','3addc5c1-e82b-4a1a-b4af-1f66307a9108','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 08:31:32.323','2025-08-18 08:31:32.323','2025-08-18 08:31:32.323','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.858','2025-08-21 08:12:57.009',NULL),
('cc083125-de68-469b-8f2b-45a6db5e0e75','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-08 13:33:06.474','2025-10-08 13:33:06.474','2025-10-08 13:33:06.474','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.338','2025-10-22 11:29:52.626',NULL),
('cc162ffd-eba2-4574-a2fd-bb829e53d557','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-13 12:59:12.812','2024-12-13 12:59:12.812','2024-12-13 12:59:12.812','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:13:33.330','2024-12-16 18:41:52.572',NULL),
('cc19dad8-cb6b-4212-a565-e8f9109cfc13','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-06 20:16:45.378','2025-07-06 20:16:45.378','2025-07-06 20:16:45.378','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.702','2025-07-08 11:33:15.154',NULL),
('cc271262-7e18-4591-a654-1b3ad34cb34c','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-26 11:43:20.763','2025-09-26 11:43:20.763','2025-09-26 11:43:20.763','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.760','2025-10-07 15:17:28.452',NULL),
('cc34c0b6-a3ba-41c6-b0ce-c200a5b1eb51','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 08:38:23.349','2025-07-09 08:38:23.349','2025-07-09 08:38:23.349','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.163','2025-07-11 08:00:02.597',NULL),
('cc49a556-fe18-4ca4-874a-cb6dba8029c1','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 09:51:49.378','2025-05-05 09:51:49.378','2025-05-05 09:51:49.378','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-25 10:54:07.830','2025-05-26 15:07:26.434',NULL),
('cc52e06e-14c0-40a9-8fae-ca7dd507c803','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-08 11:01:39.657','2025-09-08 11:01:39.657','2025-09-08 11:01:39.657','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:59:40.446','2025-09-12 17:16:02.613',NULL),
('cc931b3f-27a3-419a-a35b-806582ca9049','5b04798d-86e0-44d7-9219-194a32dc85ff','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-08 12:38:57.211','2025-09-08 12:38:57.211','2025-09-08 12:38:57.211','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-10 06:49:18.678','2025-09-10 07:11:56.196',NULL),
('ccd584b8-f0eb-4867-9216-77ad6acfa99e','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:56:26.664','2024-12-28 14:56:26.664','2024-12-28 14:56:26.664','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:58:26.916','2025-01-06 20:08:12.943',NULL),
('ccdfe47f-769a-4687-aadc-37ec56b2ac87','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-18 11:35:50.402','2025-07-18 11:35:50.402','2025-07-18 11:35:50.402','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.950','2025-07-22 16:18:49.597',NULL),
('ccf13acd-d0e9-4de7-8803-3100cbbb97cd','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-29 10:26:32.669','2025-07-29 10:26:32.669','2025-07-29 10:26:32.669','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.439','2025-08-12 08:07:30.393',NULL),
('ccfcba36-90a9-43c1-8146-557b0f2e65f2','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 09:41:46.256','2025-05-07 09:41:46.256','2025-05-07 09:41:46.256','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:06:36.411','2025-05-16 16:30:10.548',NULL),
('cd222411-c6b5-4c10-bd9c-e36d603f9e4b','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 07:42:32.260','2025-07-30 07:42:32.260','2025-07-30 07:42:32.260','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.228','2025-08-15 20:59:04.980',NULL),
('cd8a5765-7a05-4fd2-b238-4479e09b280f','0debd19b-d90b-48a0-9568-2d01319377e0','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-05 14:22:03.881','2025-05-05 14:22:03.881','2025-05-05 14:22:03.881','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.659',NULL),
('cd93cdb0-c598-4ff6-b977-433501df22e6','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 15:02:20.025','2024-08-20 15:02:20.025','2024-08-20 15:02:20.025','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 15:03:33.531','2024-08-23 09:05:21.137',NULL),
('cd9b3782-594f-489c-95a8-c9b8e70f7394','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-05 10:37:11.102','2024-06-05 10:37:11.102','2024-06-05 10:37:11.102','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-05 10:40:06.959','2024-07-02 11:58:21.832',NULL),
('cdcb2817-82af-4e8f-b487-b0bf86dc6b13','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-14 19:32:17.771','2024-11-14 19:32:17.771','2024-11-14 19:32:17.771','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 19:34:09.081','2024-12-09 08:24:38.617',NULL),
('cdd98880-7c0d-4a99-86cf-fbf0c715d797','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 08:38:17.620','2024-12-27 08:38:17.620','2024-12-27 08:38:17.620','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.464',NULL),
('ce009b35-9a73-4e85-9223-b090c5260507','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:59:48.344','2024-05-10 06:59:48.344','2024-05-10 06:59:48.344','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 07:01:34.076','2024-05-10 07:07:44.779',NULL),
('ce00a9c7-9a6b-4bf1-b2fc-cc111e7e81f0','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-04 07:47:19.760','2024-10-04 07:47:19.760','2024-10-04 07:47:19.760','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-04 08:01:52.759','2024-12-02 09:51:49.496',NULL),
('ce3779e8-3103-4419-8e6e-ae3291cd801f','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-10 06:51:27.992','2025-04-10 06:51:27.992','2025-04-10 06:51:27.992','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.951',NULL),
('ce677bd8-734c-42fb-abbe-07a075093a30','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-05 15:30:29.557','2024-09-05 15:30:29.557','2024-09-05 15:30:29.557','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-05 15:32:33.033','2024-09-05 15:32:33.033',NULL),
('ce919e2a-9ddb-409b-84f3-c1ebb262537b','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 14:05:44.878','2024-10-23 14:05:44.878','2024-10-23 14:05:44.878','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 14:06:35.119','2024-11-12 08:06:59.113',NULL),
('ce967d78-d019-467e-89ee-d3bf9f9c15dc','afdbd570-d700-442a-b617-752921194603','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-02 13:56:26.771','2025-05-02 13:56:26.771','2025-05-02 13:56:26.771','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:46:41.011',NULL),
('ce9ac6b7-7c70-4670-9ec4-2c0b6daa13ce','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-02 11:05:46.916','2025-04-02 11:05:46.916','2025-04-02 11:05:46.916','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.415',NULL),
('ce9d5a5f-f3b9-43b7-abd9-b07a30f408be','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 08:50:16.888','2024-03-12 08:50:16.888','2024-03-12 08:50:16.888','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 08:55:46.638','2024-03-12 08:55:46.638',NULL),
('ceb09517-9247-471f-93db-f9d40b84315d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:49:16.278','2024-09-28 15:49:16.278','2024-09-28 15:49:16.278','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:51:16.314','2024-09-28 15:51:16.314',NULL),
('cecfd03c-e4fd-42bb-b783-de4cbbc9827e','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-08 17:59:18.235','2024-11-08 17:59:18.235','2024-11-08 17:59:18.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-08 18:01:23.877','2024-11-08 18:12:56.490',NULL),
('cf046700-d48c-471a-b2be-514f97fffddc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 17:20:10.394','2025-07-01 17:20:10.394','2025-07-01 17:20:10.394','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.319','2025-07-17 12:12:54.401',NULL),
('cf25138e-9e5d-4177-bf01-10f17d5ce6e2','fd2f8958-dabf-4d4a-a10e-62713178bf3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-26 10:06:48.085','2024-08-26 10:06:48.085','2024-08-26 10:06:48.085','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-26 10:26:34.679','2024-09-10 14:40:10.302',NULL),
('cf692973-4685-44e7-8ca4-ce30e0c33d38','b0c1192a-7d38-4b69-a901-778f65a98b9d','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 13:43:49.929','2025-10-13 13:43:49.929','2025-10-13 13:43:49.929','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.104','2025-10-22 11:29:52.721',NULL),
('cf6f850c-05dc-49cc-b781-5f054219791e','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 09:22:49.382','2025-05-08 09:22:49.382','2025-05-08 09:22:49.382','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.767',NULL),
('cf701b61-5ebb-4c75-a842-de030cf0698a','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-23 13:19:39.376','2025-04-23 13:19:39.376','2025-04-23 13:19:39.376','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.303',NULL),
('cf70b5b6-4436-4918-9b57-b41f715a992c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-20 07:08:05.124','2024-09-20 07:08:05.124','2024-09-20 07:08:05.124','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-20 07:16:25.167','2024-10-02 09:56:02.598',NULL),
('cf75960e-c69f-4ed5-add9-9cfa65b10394','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-15 13:28:41.135','2024-05-15 13:28:41.135','2024-05-15 13:28:41.135','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-15 13:30:42.707','2024-05-17 14:20:25.203',NULL),
('cf7c87cf-6663-4603-9b3e-9d5eac61f216','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-02 08:13:57.216','2025-05-02 08:13:57.216','2025-05-02 08:13:57.216','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.943',NULL),
('cfb069a7-1d8a-4c71-91a5-413163b553b9','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 19:55:07.012','2024-12-28 19:55:07.012','2024-12-28 19:55:07.012','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:41:42.101','2025-02-20 12:40:28.772',NULL),
('cfdcef04-cf1f-4fbb-a26c-083ae4489b50','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:44:02.810','2024-04-07 20:44:02.810','2024-04-07 20:44:02.810','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:46:49.440','2024-04-07 20:46:49.440',NULL),
('d033f695-6cb7-46e5-9dc9-39732d34a3d3','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:18:39.821','2024-09-27 11:18:39.821','2024-09-27 11:18:39.821','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:22:23.898','2024-09-27 11:22:23.898',NULL),
('d065d4e7-3ae6-45bb-86a2-0c73216a4caf','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-24 10:31:29.078','2025-06-24 10:31:29.078','2025-06-24 10:31:29.078','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.544','2025-07-01 09:19:38.920',NULL),
('d070cc0a-0896-45c3-9423-8f3db6673a21','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-21 20:51:04.076','2025-06-21 20:51:04.076','2025-06-21 20:51:04.076','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.322','2025-07-26 08:40:12.399',NULL),
('d086d20f-06fb-4b86-92cd-86f068274095','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-27 13:09:48.696','2024-12-27 13:09:48.696','2024-12-27 13:09:48.696','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.603',NULL),
('d0981b41-ee8a-4111-9e0e-73eeba0e7e9d','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-19 08:39:25.548','2025-08-19 08:39:25.548','2025-08-19 08:39:25.548','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.905','2025-09-03 06:09:36.802',NULL),
('d09d72c5-d80c-41e1-82c5-9b88977d84c0','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 11:14:52.585','2025-08-26 11:14:52.585','2025-08-26 11:14:52.585','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.403','2025-09-18 15:48:17.532',NULL),
('d0f04064-4c90-4171-9403-879b00b6c77d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 16:01:20.224','2025-02-25 16:01:20.224','2025-02-25 16:01:20.224','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:25:01.148','2025-03-12 19:01:22.503',NULL),
('d0f363dd-9f8e-4180-afa4-361a76f5862f','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 08:49:32.404','2025-09-15 08:49:32.404','2025-09-15 08:49:32.404','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.563','2025-10-07 15:17:28.565',NULL),
('d0f67199-7bd3-4c1c-aa4f-89815ed1846b','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 06:52:44.274','2024-06-08 06:52:44.274','2024-06-08 06:52:44.274','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 06:54:57.895','2024-06-08 07:10:14.076',NULL),
('d12c213b-00a2-4da8-9423-fdadb1b5b111','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 15:11:21.975','2025-01-09 15:11:21.975','2025-01-09 15:11:21.975','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:42.978',NULL),
('d1349d21-a656-4595-a8ed-cb80dda5fe2f','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-27 07:27:14.712','2024-11-27 07:27:14.712','2024-11-27 07:27:14.712','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-27 07:29:58.990','2024-12-09 17:29:20.176',NULL),
('d1816a2b-c373-419d-a4ce-09b2f4e5baff','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 13:50:25.114','2025-10-07 13:50:25.114','2025-10-07 13:50:25.114','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.495','2025-10-25 08:58:43.979',NULL),
('d19e812b-4743-48d8-91bd-894a9cb378f5','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 09:01:18.672','2025-08-06 09:01:18.672','2025-08-06 09:01:18.672','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.572','2025-08-21 08:12:57.057',NULL),
('d1a69b31-835b-4120-9df0-e5da7062916c','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-06 19:21:58.615','2024-11-06 19:21:58.615','2024-11-06 19:21:58.615','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 19:23:42.449','2024-11-08 17:30:37.371',NULL),
('d1c45082-3071-4141-adb8-07c81a456e07','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 16:06:46.474','2024-09-28 16:06:46.474','2024-09-28 16:06:46.474','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 16:08:04.701','2024-09-30 09:12:12.807',NULL),
('d1cdca57-97d7-4558-9655-0eaec0b41395','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 13:41:38.828','2025-06-20 13:41:38.828','2025-06-20 13:41:38.828','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.880',NULL),
('d1f63e37-c57c-4186-b87e-3952ccf4b785','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 09:52:19.397','2025-03-04 09:52:19.397','2025-03-04 09:52:19.397','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:35:30.206','2025-03-11 07:46:42.010',NULL),
('d22874b6-f31e-449b-904e-5125a6cedce0','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 09:15:32.372','2025-01-09 09:15:32.372','2025-01-09 09:15:32.372','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.444',NULL),
('d22b5628-1add-4819-b852-82a33194d858','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 08:06:09.827','2025-09-18 08:06:09.827','2025-09-18 08:06:09.827','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 06:41:28.873','2025-10-01 07:56:23.138',NULL),
('d2453176-5483-44f9-be76-47b0e9dbf250','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-23 08:45:14.871','2025-05-23 08:45:14.871','2025-05-23 08:45:14.871','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.121','2025-07-01 09:19:39.010',NULL),
('d250f929-b5d8-4b6d-80c9-8994abffd7e2','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 07:02:17.372','2024-03-30 07:02:17.372','2024-03-30 07:02:17.372','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 07:05:44.191','2024-04-01 11:31:27.346',NULL),
('d25670c1-5dec-4e05-b770-74500d1380d5','7bb6a552-e940-4456-bfc3-50a13013996c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-25 11:55:46.154','2025-08-25 11:55:46.154','2025-08-25 11:55:46.154','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 17:03:30.295','2025-09-12 17:16:02.634',NULL),
('d275853e-dd15-4510-83fe-b3722e1f9465','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:36:31.191','2025-06-16 09:36:31.191','2025-06-16 09:36:31.191','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-20 15:03:47.833','2025-06-27 08:25:57.904',NULL),
('d298e838-35bb-4ae8-afc3-854db98772e6','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-09 08:44:24.982','2025-01-09 08:44:24.982','2025-01-09 08:44:24.982','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.584',NULL),
('d31b03d1-8328-4017-a9fa-bc8b3490a234','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-16 10:58:54.317','2025-01-16 10:58:54.317','2025-01-16 10:58:54.317','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:31:57.984','2025-02-27 13:37:30.557',NULL),
('d320471d-2922-4258-93af-00ef6f116877','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 10:59:15.616','2025-07-08 10:59:15.616','2025-07-08 10:59:15.616','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:07:05.290','2025-07-08 11:33:15.243',NULL),
('d32138ac-7074-46bc-86f3-f6b8b786ecb4','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 11:31:51.388','2025-04-24 11:31:51.388','2025-04-24 11:31:51.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.029',NULL),
('d33398db-dc11-47dd-8795-5557b8ac95d8','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-15 13:31:02.256','2024-05-15 13:31:02.256','2024-05-15 13:31:02.256','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-15 13:39:10.489','2024-05-21 08:50:07.915',NULL),
('d35cb19b-75f8-4a3f-a4a5-41eccdb97374','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 08:17:15.051','2025-07-30 08:17:15.051','2025-07-30 08:17:15.051','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.221','2025-08-16 12:28:48.746',NULL),
('d37af71f-1bcf-41c4-ad8b-b38fc7e57fd1','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-14 08:50:09.069','2025-04-14 08:50:09.069','2025-04-14 08:50:09.069','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.382',NULL),
('d389d3b3-fa5e-490b-b24e-c3cab6762f8a','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:59:01.244','2024-05-04 09:59:01.244','2024-05-04 09:59:01.244','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:01:42.899','2024-05-10 09:10:01.022',NULL),
('d3c1489b-0e52-41eb-8491-748646cc817c','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-28 12:37:54.238','2025-08-28 12:37:54.238','2025-08-28 12:37:54.238','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.956','2025-09-06 09:41:31.896',NULL),
('d401fdfa-5b72-4759-b04d-f3f7c4bcb05d','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:40:16.204','2025-03-17 11:40:16.204','2025-03-17 11:40:16.204','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:52:32.483','2025-03-29 13:56:05.373',NULL),
('d43c8ed5-97bb-4109-970f-de4e4cd535e3','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-28 12:07:24.319','2025-02-28 12:07:24.319','2025-02-28 12:07:24.319','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:28:25.161','2025-03-12 19:01:22.580',NULL),
('d44e1c49-10ba-4c8d-8e75-a6187bfde979','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 14:36:38.283','2025-07-08 14:36:38.283','2025-07-08 14:36:38.283','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.300','2025-07-26 08:40:12.372',NULL),
('d4558c7f-4413-4970-8a4f-f68532bf6e7f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','173956a2-c232-495a-b036-4a6a36c073e2','2024-11-14 14:14:39.451','2024-11-14 14:14:39.451','2024-11-14 14:14:39.451','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-14 14:16:35.123','2024-11-15 17:04:42.483',NULL),
('d4679319-2b5f-4177-9abc-eccdabbe8a22','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 10:19:54.849','2024-03-12 10:19:54.849','2024-03-12 10:19:54.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 10:21:45.056','2024-03-14 13:37:29.593',NULL),
('d475d1ca-38f1-4235-a8ae-f184cd5bdd13','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 08:02:07.500','2024-03-12 08:02:07.500','2024-03-12 08:02:07.500','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 08:11:35.354','2025-08-25 16:20:27.586',NULL),
('d483fd4f-b646-4018-be8f-eabec1ae6a4c','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-07 16:21:49.489','2025-08-07 16:21:49.489','2025-08-07 16:21:49.489','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:22:31.992','2025-08-12 08:07:30.401',NULL),
('d4e9a8d9-3f49-481e-99f4-7ed18bf98a09','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-16 12:45:38.267','2025-03-16 12:45:38.267','2025-03-16 12:45:38.267','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-27 08:02:20.217','2025-03-29 13:37:01.852',NULL),
('d4eb9c75-5916-48c9-891b-1c103d88e1dc','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-22 14:59:09.571','2025-05-22 14:59:09.571','2025-05-22 14:59:09.571','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.911',NULL),
('d516bbe0-237e-4f39-991c-aa1aefd7f58b','3fccf827-5064-4ae4-aa49-04702eab73ec','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-23 10:25:19.420','2025-06-23 10:25:19.420','2025-06-23 10:25:19.420','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:51:21.128','2025-07-01 10:44:34.664',NULL),
('d51fef82-b73c-4286-be67-885d5600261a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-04 08:03:38.388','2025-07-04 08:03:38.388','2025-07-04 08:03:38.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:22:40.553','2025-07-26 08:40:12.341',NULL),
('d57132f4-f671-4222-9b98-9af3bfe1616e','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:27:19.447','2025-09-24 12:27:19.447','2025-09-24 12:27:19.447','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.361','2025-10-02 11:05:59.197',NULL),
('d57bb7f0-ea66-4b3f-b14c-c1ec9f50c17b','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 09:42:33.752','2025-10-01 09:42:33.752','2025-10-01 09:42:33.752','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.636','2025-10-07 15:17:28.355',NULL),
('d57db092-3c2a-440c-aaba-89729166e264','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-01 12:14:09.466','2025-08-01 12:14:09.466','2025-08-01 12:14:09.466','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-22 19:43:14.511','2025-08-22 20:28:07.513',NULL),
('d57dcddf-f93d-4725-8c3f-ac252cfb007d','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-03-18 11:40:53.210','2025-03-18 11:40:53.210','2025-03-18 11:40:53.210','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:05:37.061','2025-05-02 17:08:29.459',NULL),
('d587e27e-2786-4858-8e74-df3f64e13de2','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 10:13:20.221','2025-05-07 10:13:20.221','2025-05-07 10:13:20.221','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.936',NULL),
('d58dafe6-b11e-49d6-a83b-39a6eec35331','33cc49ad-e7a0-4ee9-9120-2a98bd963a47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 13:20:14.652','2025-08-12 13:20:14.652','2025-08-12 13:20:14.652','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:46:42.709','2025-08-14 08:02:29.703',NULL),
('d5dfd35c-63aa-4b4a-b2e1-279efa540db5','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-06 09:35:39.644','2024-09-06 09:35:39.644','2024-09-06 09:35:39.644','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-06 09:47:59.738','2024-09-28 16:24:45.177',NULL),
('d5fec6f1-dd1f-44c0-86fd-7c3882ab7c6f','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 14:12:31.666','2025-03-20 14:12:31.666','2025-03-20 14:12:31.666','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:56:05.486',NULL),
('d60f79c6-5c78-4f6e-ab91-331a453c18c5','b0c1192a-7d38-4b69-a901-778f65a98b9d','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-17 13:14:22.470','2025-09-17 13:14:22.470','2025-09-17 13:14:22.470','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 15:39:46.080','2025-09-18 15:48:17.418',NULL),
('d62f7a75-df13-477a-bf41-656ec65bd38d','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-19 07:51:32.226','2025-02-19 07:51:32.226','2025-02-19 07:51:32.226','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:08:33.001','2025-03-21 17:17:30.139',NULL),
('d64a9ef5-6fff-44f3-b6aa-e6c1fa56148e','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:05:12.160','2024-05-04 10:05:12.160','2024-05-04 10:05:12.160','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:07:06.125','2024-05-10 07:13:51.375',NULL),
('d6789bd1-415e-4d11-bf49-671a1ae29809','d3157cbd-9f22-499b-b371-4eff6e509b92','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 21:15:04.720','2024-04-07 21:15:04.720','2024-04-07 21:15:04.720','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 21:18:35.709','2024-04-08 10:39:44.448',NULL),
('d6841a42-b56a-4b50-af80-9efdbb6e8b5a','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-30 14:37:55.050','2024-07-30 14:37:55.050','2024-07-30 14:37:55.050','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-30 14:39:43.898','2024-07-30 15:20:03.393',NULL),
('d68aec90-f958-40b6-8fa6-200d72d4d422','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-28 12:03:12.098','2025-02-28 12:03:12.098','2025-02-28 12:03:12.098','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:22:38.006','2025-04-02 18:57:11.084',NULL),
('d6a2840e-eda3-4255-a466-02ce1c7dfc81','1b51c5f7-649a-424f-ba17-cc37d6298af9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-02 15:52:51.181','2025-05-02 15:52:51.181','2025-05-02 15:52:51.181','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.073',NULL),
('d6be93fc-0d35-449b-b0ae-6b99dd1e0149','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 07:05:14.283','2024-03-16 07:05:14.283','2024-03-16 07:05:14.283','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 07:07:54.363','2024-03-16 07:07:54.363',NULL),
('d6cc02aa-2420-4b97-a1b6-4202a9a8f2b9','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-11 13:13:01.723','2024-09-11 13:13:01.723','2024-09-11 13:13:01.723','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-11 13:19:53.398','2024-09-18 21:40:09.187',NULL),
('d70024a0-1b07-4316-94cc-826c00e6edd3','8b7a9e5c-33ee-48ea-80dc-618db5fa40ff','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-05 14:09:31.707','2025-06-05 14:09:31.707','2025-06-05 14:09:31.707','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.930',NULL),
('d72548fc-2357-4bae-924b-1d92a5c6e6ea','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 16:41:17.389','2025-04-08 16:41:17.389','2025-04-08 16:41:17.389','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.248',NULL),
('d7809f4e-3281-4597-b907-892c0b866c1e','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-05 10:21:57.784','2025-05-05 10:21:57.784','2025-05-05 10:21:57.784','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:52:20.267','2025-06-26 16:05:22.672',NULL),
('d781d3c4-08d8-43e0-ade5-7dcf7517ea9f','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 10:45:43.935','2025-02-24 10:45:43.935','2025-02-24 10:45:43.935','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:20:46.458','2025-03-06 10:36:11.576',NULL),
('d7c888f1-62fa-4990-ad66-ed32c861c248','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:37:44.658','2024-05-11 08:37:44.658','2024-05-11 08:37:44.658','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:40:24.881','2024-05-11 08:40:24.881',NULL),
('d7e1e7c5-549a-4a5a-992a-c680402d3c45','02756ab4-fa8a-408f-b81c-76a84dc82d6f','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-19 10:49:55.005','2024-11-19 10:49:55.005','2024-11-19 10:49:55.005','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-19 10:54:37.374','2024-12-09 17:29:20.219',NULL),
('d8227cf9-f42e-4bd9-86c5-c2d0dfd27ffb','4b494cd3-c9fc-4519-ba9e-b4261706ae49','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-16 10:06:46.923','2025-04-16 10:06:46.923','2025-04-16 10:06:46.923','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-19 10:16:53.375','2025-05-02 17:08:29.439',NULL),
('d82d8869-bdf5-42c7-81f7-2f226337f03e','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 09:30:50.436','2024-10-24 09:30:50.436','2024-10-24 09:30:50.436','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:35:16.683','2024-11-16 21:13:35.361',NULL),
('d83b4316-b99e-4d73-b673-62a64fd64f70','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:33:40.001','2025-09-15 06:33:40.001','2025-09-15 06:33:40.001','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.570','2025-10-17 10:53:07.496',NULL),
('d8447ea6-67a0-4bae-a74a-f2ee8e3a6300','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-02 10:45:28.459','2025-08-02 10:45:28.459','2025-08-02 10:45:28.459','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.236','2025-08-15 20:59:05.075',NULL),
('d8510675-9f90-481e-8d74-83af20447069','5f3f13d2-795f-4eba-b7bd-61428d952ca2','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-03 08:58:51.733','2025-09-03 08:58:51.733','2025-09-03 08:58:51.733','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.099','2025-09-06 09:41:31.941',NULL),
('d85dccb4-23fd-4930-ad06-8442ee8d0a5d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-31 11:55:21.081','2024-08-31 11:55:21.081','2024-08-31 11:55:21.081','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-31 11:58:12.258','2024-09-27 13:41:40.434',NULL),
('d86b6a5b-bbc2-4a7a-ada5-a735526af8ea','d8172c72-d29b-40c5-b0b2-0277129ff6b4','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 11:52:55.785','2025-10-06 11:52:55.785','2025-10-06 11:52:55.785','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.590','2025-10-17 10:53:07.536',NULL),
('d86f9f90-8371-4315-a8e6-5408e91bd586','afdbd570-d700-442a-b617-752921194603','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 08:44:43.430','2025-02-20 08:44:43.430','2025-02-20 08:44:43.430','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:46:00.031','2025-02-20 12:40:28.894',NULL),
('d878eaab-c8a6-4b31-aba7-cf68f78e8b79','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-12 09:07:02.027','2025-07-12 09:07:02.027','2025-07-12 09:07:02.027','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:09:23.708','2025-07-16 14:21:29.556',NULL),
('d8ad5178-9f18-4580-9a60-e12b37658b1d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-14 09:22:03.491','2024-06-14 09:22:03.491','2024-06-14 09:22:03.491','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-14 09:23:56.522','2024-07-20 09:52:59.059','2024-07-20 09:52:59.062'),
('d8ec0e1a-0779-4660-aaad-e3826e559698','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-08 18:26:08.683','2024-05-08 18:26:08.683','2024-05-08 18:26:08.683','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-08 18:28:17.595','2024-05-08 18:28:17.595',NULL),
('d93c9e41-2ce6-422a-90bd-e936621182b8','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 08:53:10.828','2025-07-24 08:53:10.828','2025-07-24 08:53:10.828','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.427','2025-08-15 20:59:05.015',NULL),
('d9508ce0-b7a1-46c9-89ab-fb6f24079830','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 07:52:29.948','2025-03-27 07:52:29.948','2025-03-27 07:52:29.948','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.441',NULL),
('d951b8eb-e6e4-4aec-a17d-f8f96db5e559','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 10:52:41.454','2025-03-20 10:52:41.454','2025-03-20 10:52:41.454','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.791',NULL),
('d96bac61-9872-4d89-a3a0-8a9cc803b929','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-04 18:26:26.147','2025-10-04 18:26:26.147','2025-10-04 18:26:26.147','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.603','2025-10-17 10:53:07.543',NULL),
('d97b4643-df8e-482b-81c3-e2eb421e2951','14e65a3f-31de-4ada-be77-7aceab16b52f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-14 14:33:23.625','2024-03-14 14:33:23.625','2024-03-14 14:33:23.625','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-14 14:42:45.600','2024-03-23 09:07:49.842',NULL),
('d9aa4a46-a6c3-4a76-8014-24935621f302','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-29 13:26:56.740','2024-11-29 13:26:56.740','2024-11-29 13:26:56.740','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-29 13:28:05.933','2024-12-09 17:29:20.212',NULL),
('d9c8052a-21c8-4668-9baf-0ea509517b02','3b80982a-28cd-44f1-8d72-59c4daf5e636','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-06 09:11:26.468','2025-10-06 09:11:26.468','2025-10-06 09:11:26.468','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.655','2025-10-07 15:17:28.594',NULL),
('d9cc4ab4-53d4-49a9-a82d-ac7e6a65fe9e','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-16 15:16:38.213','2025-07-16 15:16:38.213','2025-07-16 15:16:38.213','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.207','2025-08-12 08:07:30.348',NULL),
('d9df3236-943e-4a6f-b328-95957b2915d8','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-24 08:57:17.969','2024-10-24 08:57:17.969','2024-10-24 08:57:17.969','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-24 09:08:56.053','2024-11-02 09:25:02.997',NULL),
('da211269-5ff8-4a89-b57a-59941bc58ffa','7bb6a552-e940-4456-bfc3-50a13013996c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-23 08:30:58.241','2025-09-23 08:30:58.241','2025-09-23 08:30:58.241','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:16:48.867','2025-10-01 07:57:47.977',NULL),
('da4851ce-318d-4994-9fec-d806fdd0dcf2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-06 10:56:22.984','2025-03-06 10:56:22.984','2025-03-06 10:56:22.984','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:37:32.391','2025-03-11 07:46:42.088',NULL),
('da88713e-fe1d-4ea8-bb4a-05eeae1e9d0c','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-10 14:34:58.609','2025-02-10 14:34:58.609','2025-02-10 14:34:58.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.168',NULL),
('da88be19-da87-4683-91e2-78cf38634efa','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 10:23:42.756','2025-09-29 10:23:42.756','2025-09-29 10:23:42.756','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.908','2025-10-14 08:52:36.751',NULL),
('dadbd5fb-ada2-4cf3-af9d-994ab3e4f777','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 12:21:06.238','2024-10-02 12:21:06.238','2024-10-02 12:21:06.238','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 12:26:25.517','2024-10-11 16:07:21.215',NULL),
('dae3a1f9-cf45-481d-8126-c302c3258376','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-20 15:03:35.153','2024-08-20 15:03:35.153','2024-08-20 15:03:35.153','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-20 15:04:53.549','2024-08-23 09:04:59.407',NULL),
('db0343c4-65b4-4508-aeb5-f853f3fe5c0d','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 07:23:30.409','2025-02-13 07:23:30.409','2025-02-13 07:23:30.409','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.220',NULL),
('db1063a9-8b59-4de4-9f53-c6c68e83f9d7','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-30 14:17:34.718','2024-07-30 14:17:34.718','2024-07-30 14:17:34.718','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-30 14:19:43.772','2024-07-30 14:40:28.459',NULL),
('db5140b0-2aeb-4f60-8df5-581ebb0587f9','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-03 07:10:42.740','2025-09-03 07:10:42.740','2025-09-03 07:10:42.740','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.547','2025-09-26 12:27:42.296',NULL),
('db702f07-d1f0-4609-88af-65c14a92c84e','5f3f13d2-795f-4eba-b7bd-61428d952ca2','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-29 07:20:30.830','2025-04-29 07:20:30.830','2025-04-29 07:20:30.830','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.202',NULL),
('db7a6bd5-ff39-48ec-a52c-6765d6a0cf33','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-30 10:40:24.143','2025-06-30 10:40:24.143','2025-06-30 10:40:24.143','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.734','2025-07-08 11:33:15.235',NULL),
('db97b5c4-b410-4657-859a-1e8b1bae5492','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-12 12:35:28.398','2025-03-12 12:35:28.398','2025-03-12 12:35:28.398','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:25:01.148','2025-03-12 19:01:22.517',NULL),
('db9e286a-a28e-4e70-acd5-aa4aa07f3062','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:57:11.908','2024-05-04 09:57:11.908','2024-05-04 09:57:11.908','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:58:55.106','2024-05-10 07:13:31.663',NULL),
('dbab1ccf-525b-4fec-875c-579eb6b7adfc','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 09:52:07.635','2025-09-10 09:52:07.635','2025-09-10 09:52:07.635','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.823','2025-10-03 16:08:51.144',NULL),
('dbb33ac3-10e8-446d-81ae-3fadca7c3395','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 11:17:42.814','2025-02-05 11:17:42.814','2025-02-05 11:17:42.814','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:26:40.006','2025-03-02 04:33:53.213',NULL),
('dbd09574-df42-4ed8-9fbc-f04a551e567c','27cbce83-310c-4e98-830f-7433b10c2efd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-22 20:30:51.293','2025-08-22 20:30:51.293','2025-08-22 20:30:51.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-25 11:36:09.231','2025-08-25 12:11:45.691',NULL),
('dbef78c4-cbf7-4b8e-b38f-4649315eae20','9b0cd22f-b420-4c1b-bdf6-ca840d0b6c6a','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 13:36:51.555','2024-11-21 13:36:51.555','2024-11-21 13:36:51.555','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 13:43:10.868','2024-12-02 09:51:49.585',NULL),
('dc346560-bee8-4426-bcad-a8db833e7961','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-25 08:41:34.706','2025-06-25 08:41:34.706','2025-06-25 08:41:34.706','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.551','2025-07-01 09:19:38.981',NULL),
('dc3c7f80-5899-493b-8034-e7f381e904cf','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-09 10:54:18.737','2025-04-09 10:54:18.737','2025-04-09 10:54:18.737','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:38:29.860','2025-04-15 14:54:58.222',NULL),
('dc61d568-9c50-42e1-bbc0-acf7bff69528','8426da95-71ca-4ae9-bea1-1e7259d72f62','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-27 10:43:05.646','2025-08-27 10:43:05.646','2025-08-27 10:43:05.646','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.885','2025-10-14 08:52:36.719',NULL),
('dc7f4df1-4ee8-47bf-9b8e-d8cba1d67ac9','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-31 12:18:27.924','2025-07-31 12:18:27.924','2025-07-31 12:18:27.924','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-23 07:43:59.488','2025-09-24 13:41:14.996',NULL),
('dc90240e-55d1-4946-94c5-cb3f0a138f0e','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-23 07:27:03.359','2025-05-23 07:27:03.359','2025-05-23 07:27:03.359','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.651',NULL),
('dc93c9dd-8d27-45c7-b5e4-0924c87aa08d','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-10 08:08:04.201','2025-07-10 08:08:04.201','2025-07-10 08:08:04.201','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:29:09.360','2025-07-26 08:40:12.433',NULL),
('dc9eaa37-dda6-4148-b4ca-6b263dd61f3d','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 08:37:34.929','2024-03-12 08:37:34.929','2024-03-12 08:37:34.929','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 08:41:44.115','2024-03-12 08:48:10.269',NULL),
('dca8feae-651d-4507-b688-f50c7bccf026','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-15 14:31:21.842','2024-03-15 14:31:21.842','2024-03-15 14:31:21.842','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-15 14:37:26.968','2024-03-15 14:37:26.968',NULL),
('dce62030-b2f6-4e92-8e0d-c0afaeb27c9a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 08:35:31.654','2024-08-30 08:35:31.654','2024-08-30 08:35:31.654','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 08:50:18.499','2024-08-31 13:16:57.907',NULL),
('dd035808-013e-4f42-bd40-577f4064cbf5','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-06 17:02:37.675','2025-09-06 17:02:37.675','2025-09-06 17:02:37.675','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:04:26.017','2025-09-10 12:48:00.806',NULL),
('dd057854-2d9e-418d-8703-aef063440f76','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-05 11:12:00.635','2025-09-05 11:12:00.635','2025-09-05 11:12:00.635','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.707','2025-10-07 15:17:28.501',NULL),
('dd203f48-1fcf-4ff5-b989-5ac41b6c7608','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 13:19:43.143','2025-02-26 13:19:43.143','2025-02-26 13:19:43.143','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-11 14:16:19.289','2025-03-15 09:47:16.113',NULL),
('dd474a01-590d-4a88-adfa-1a1cb9c9a42b','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-17 10:23:45.633','2025-02-17 10:23:45.633','2025-02-17 10:23:45.633','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.297',NULL),
('dd7cae69-81f7-4466-b22d-0cbeeef7b026','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-04 14:59:13.726','2024-09-04 14:59:13.726','2024-09-04 14:59:13.726','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-04 15:00:32.069','2024-09-06 09:53:45.922',NULL),
('dd9da232-f307-420a-af55-77f4a562e4f2','1a63399e-9dca-4c70-be0e-e8e8a874b582','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:24:15.366','2024-06-08 07:24:15.366','2024-06-08 07:24:15.366','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:26:13.651','2024-06-08 07:26:13.651',NULL),
('ddb04c8e-7202-45d5-95f8-b9dcdd8bc96f','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-27 13:58:39.857','2025-01-27 13:58:39.857','2025-01-27 13:58:39.857','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.571',NULL),
('ddb4a5dc-c169-4bc3-bdfd-8c846e6d6b91','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:54:43.948','2024-07-20 10:54:43.948','2024-07-20 10:54:43.948','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:56:22.090','2024-07-20 10:56:22.090',NULL),
('dde6caa6-303a-43c6-bdd6-26e000040782','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 12:02:38.981','2025-05-07 12:02:38.981','2025-05-07 12:02:38.981','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.302','2025-10-02 11:05:59.132',NULL),
('ddf3cf16-89cb-4a87-9488-631b03767745','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 07:56:22.631','2025-05-08 07:56:22.631','2025-05-08 07:56:22.631','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.037',NULL),
('de0187b0-6a12-4ada-b072-3c3263b658af','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 15:07:39.093','2025-02-26 15:07:39.093','2025-02-26 15:07:39.093','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:28:46.864','2025-03-11 07:46:41.995',NULL),
('de04e587-e576-499b-b836-7ec1877d25b2','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','aaa4a453-cb36-4567-b88e-335acb07c024','2024-10-31 10:45:31.156','2024-10-31 10:45:31.156','2024-10-31 10:45:31.156','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-31 10:52:36.173','2024-11-12 16:12:31.414',NULL),
('de0635d0-be51-4b57-adb6-839f0fd273b7','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 09:39:43.321','2025-06-16 09:39:43.321','2025-06-16 09:39:43.321','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.727','2025-07-08 11:33:15.161',NULL),
('de334665-9c3f-4521-8307-a53671e17f75','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-28 08:40:21.085','2025-08-28 08:40:21.085','2025-08-28 08:40:21.085','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.644','2025-09-05 08:55:11.135',NULL),
('de61174f-1de5-4a40-8fbc-c81e5ea162e7','83b080d0-7549-4d18-8037-da9fac2693a3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-25 13:40:44.704','2024-12-25 13:40:44.704','2024-12-25 13:40:44.704','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.553',NULL),
('de7b896e-8d5d-4800-af43-3c921c9b53f3','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 14:58:02.919','2025-09-22 14:58:02.919','2025-09-22 14:58:02.919','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-26 12:26:21.663','2025-09-26 12:31:59.599',NULL),
('de7fa673-8211-4af0-a9c5-9f6596fe9c87','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 13:01:50.437','2024-10-11 13:01:50.437','2024-10-11 13:01:50.437','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 13:04:52.753','2024-10-11 13:04:52.753',NULL),
('de891cea-2bb4-4237-a24f-16646a44fa83','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 08:00:56.084','2025-02-24 08:00:56.084','2025-02-24 08:00:56.084','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.190',NULL),
('deb787b4-4360-4130-a87d-7985e8ef1589','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 18:19:11.007','2025-08-11 18:19:11.007','2025-08-11 18:19:11.007','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:46:42.694','2025-08-14 08:02:29.753',NULL),
('decaa291-f9a9-4327-99a3-9501a1397635','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 11:48:13.951','2025-09-09 11:48:13.951','2025-09-09 11:48:13.951','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.432','2025-09-18 15:48:17.578',NULL),
('deef2643-31b6-4bd1-86fb-094605b72604','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 12:10:53.531','2024-05-10 12:10:53.531','2024-05-10 12:10:53.531','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 12:14:38.411','2024-05-29 10:28:52.075',NULL),
('def76884-95b1-4d23-bc14-635e83dc9684','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 07:38:50.788','2025-08-18 07:38:50.788','2025-08-18 07:38:50.788','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.687','2025-09-05 08:55:11.098',NULL),
('df05a081-ceb8-42fb-b76d-b563f9bc2cfb','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 12:53:54.544','2025-09-18 12:53:54.544','2025-09-18 12:53:54.544','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.786','2025-10-03 16:08:51.104',NULL),
('df23ae38-fbbc-4512-aed7-bb8bcd156fe5','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:26:11.411','2024-11-12 15:26:11.411','2024-11-12 15:26:11.411','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:27:45.620','2024-11-12 15:27:45.620',NULL),
('df2680ef-f6c1-4455-b0b2-9bcf909588a4','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 11:13:21.505','2025-03-20 11:13:21.505','2025-03-20 11:13:21.505','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:56:05.466',NULL),
('df490d65-ea09-4c5f-b61e-d813d33f9416','52840269-0db7-4c57-8a50-57d49049f342','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-18 10:18:56.928','2024-09-18 10:18:56.928','2024-09-18 10:18:56.928','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-18 10:24:38.261','2024-09-18 20:58:11.458',NULL),
('df6055c8-61d3-48ec-bc4e-23d98d921aa7','c448c5fc-80eb-4126-b32d-05dc2d5c6cf8','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 14:43:51.207','2024-10-30 14:43:51.207','2024-10-30 14:43:51.207','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 14:46:01.231','2024-11-02 09:10:31.646',NULL),
('df65f815-71cd-4378-a1c2-cf4f426f72a4','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-17 13:30:17.765','2024-12-17 13:30:17.765','2024-12-17 13:30:17.765','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-17 17:06:48.296','2025-01-11 10:16:46.083',NULL),
('df7e970f-f693-4e32-9956-d4c76d331748','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-15 10:47:27.623','2024-11-15 10:47:27.623','2024-11-15 10:47:27.623','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 10:49:18.515','2024-12-02 09:51:49.628',NULL),
('df927d32-6d64-4d9b-ad57-2296cbaf6124','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-16 20:44:29.879','2025-02-16 20:44:29.879','2025-02-16 20:44:29.879','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:35:30.206','2025-03-11 07:46:41.988',NULL),
('df9fc561-a8e4-4440-9a04-de1dee66a9a1','47880255-08ee-4e99-940b-16038e07de55','1764a07b-eb47-4578-b6cd-f3c0d0e743be','2024-11-15 11:27:48.293','2024-11-15 11:27:48.293','2024-11-15 11:27:48.293','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 11:30:46.976','2024-12-02 09:51:49.505',NULL),
('dfa159f5-6cb6-4ca9-8162-4c8d40d14b37','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 07:55:22.080','2025-03-04 07:55:22.080','2025-03-04 07:55:22.080','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.502',NULL),
('dfa8bbb0-947d-4ae4-9a5b-5cb4eee990a0','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 07:23:14.807','2025-06-27 07:23:14.807','2025-06-27 07:23:14.807','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.774','2025-07-16 14:21:29.627',NULL),
('dfaa7d27-2fca-412c-a0a9-a855942d3c49','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-07 14:27:11.255','2024-08-07 14:27:11.255','2024-08-07 14:27:11.255','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-07 14:29:05.141','2024-08-07 14:29:05.141',NULL),
('dfe51385-f8de-4278-bb65-4b38dd725921','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-30 13:36:18.527','2024-08-30 13:36:18.527','2024-08-30 13:36:18.527','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-30 13:44:11.722','2024-08-31 13:25:04.888',NULL),
('dfe9eb04-aade-4c3c-914f-9b5fb384e905','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 09:22:12.194','2025-07-02 09:22:12.194','2025-07-02 09:22:12.194','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-18 17:45:49.991','2025-07-22 16:18:49.674',NULL),
('dff44210-741f-4192-aa50-fafc15d6a468','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 14:44:18.226','2024-12-28 14:44:18.226','2024-12-28 14:44:18.226','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:46:54.976','2025-01-06 20:08:12.893',NULL),
('e007b6dd-a9d2-41a8-8c8c-137a95ee3f41','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-07 12:33:47.286','2025-03-07 12:33:47.286','2025-03-07 12:33:47.286','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.553',NULL),
('e00db2f3-a162-4a47-9f1d-ccef8a8b9214','6133a2db-79c4-4372-9338-505db46b1847','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 09:29:10.021','2025-05-13 09:29:10.021','2025-05-13 09:29:10.021','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:35:45.707','2025-05-26 13:23:22.488',NULL),
('e00e3c26-8b61-49cd-92d3-c6fd22314665','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:44:54.507','2024-05-11 08:44:54.507','2024-05-11 08:44:54.507','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:49:08.905','2024-05-17 14:14:39.631',NULL),
('e01f6258-f3a4-44fc-8a47-725ed6e10d9c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-02 08:06:10.596','2025-01-02 08:06:10.596','2025-01-02 08:06:10.596','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:31:51.796','2025-01-29 12:24:52.748',NULL),
('e020f983-08f5-47fe-ab52-8778e73a3872','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-22 08:37:20.513','2025-08-22 08:37:20.513','2025-08-22 08:37:20.513','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.926','2025-09-06 09:41:31.816',NULL),
('e030af1c-7821-44d3-88b0-863fc2810490','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 06:48:23.058','2025-04-25 06:48:23.058','2025-04-25 06:48:23.058','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.349',NULL),
('e05d540b-a0ff-4217-bdf2-ac9eb075084f','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-25 13:47:23.786','2025-02-25 13:47:23.786','2025-02-25 13:47:23.786','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:28:46.864','2025-03-11 07:46:42.044',NULL),
('e06406a9-2cdf-4676-84e2-5f979d45e31f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-09 08:31:43.216','2025-07-09 08:31:43.216','2025-07-09 08:31:43.216','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-11 07:57:47.188','2025-07-11 08:00:02.547',NULL),
('e0650ed7-d531-4d11-bbd0-099b259f4262','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-09 08:14:17.673','2025-03-09 08:14:17.673','2025-03-09 08:14:17.673','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.454',NULL),
('e079e94c-3f97-488b-be66-57378c6c6a57','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-21 15:37:39.896','2025-05-21 15:37:39.896','2025-05-21 15:37:39.896','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.625',NULL),
('e07fd69c-98fb-4fd0-aa5e-9568c4967c37','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:43:40.035','2024-12-20 12:43:40.035','2024-12-20 12:43:40.035','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.323',NULL),
('e09bfae5-1ed5-49cd-9d71-24be71b6f0a6','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-11 13:20:09.107','2024-11-11 13:20:09.107','2024-11-11 13:20:09.107','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-11 16:11:36.295','2025-01-06 20:08:12.873',NULL),
('e0aa3449-353c-42b9-aba4-96fed1454cc6','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','fb4cc158-8685-4d60-965f-4e4ac7c4c696','2024-11-04 08:55:55.495','2024-11-04 08:55:55.495','2024-11-04 08:55:55.495','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-04 08:58:43.655','2024-11-15 16:58:44.061',NULL),
('e0b41f6a-5743-4208-a810-99d557e77a69','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:57:33.165','2024-03-30 09:57:33.165','2024-03-30 09:57:33.165','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 10:00:56.599','2024-03-30 10:00:56.599',NULL),
('e0c4ed8e-3e85-4907-8a68-b98fa5fd4032','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-22 11:09:33.815','2025-05-22 11:09:33.815','2025-05-22 11:09:33.815','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:32:31.764','2025-05-26 13:23:22.585',NULL),
('e0c5f3c3-65af-4bf4-aa5c-91f4f3e89bd5','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-23 14:09:35.995','2024-11-23 14:09:35.995','2024-11-23 14:09:35.995','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-23 14:11:18.961','2024-12-02 09:51:49.637',NULL),
('e0ca2c40-e7da-4ba5-9748-aaa9cb685ff2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-21 09:48:12.079','2025-04-21 09:48:12.079','2025-04-21 09:48:12.079','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.987',NULL),
('e0d30761-e3bf-4610-b6fc-559388e61a5d','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-29 13:18:39.443','2024-11-29 13:18:39.443','2024-11-29 13:18:39.443','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-29 13:20:47.476','2024-12-09 17:29:20.136',NULL),
('e0e3d826-e318-47e0-be14-3b0d8c08813e','fdb96289-c48e-47a8-9fd3-37b529486551','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-19 11:19:54.856','2024-09-19 11:19:54.856','2024-09-19 11:19:54.856','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-19 11:56:55.390','2024-09-28 16:13:58.088',NULL),
('e0e897ef-cc10-4269-b30e-df6b7b0685f6','e04b6588-6a22-4c59-8ad5-3cd7c3eecfb1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 08:47:21.646','2025-02-20 08:47:21.646','2025-02-20 08:47:21.646','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-20 08:52:49.800','2025-02-20 12:40:28.901',NULL),
('e10ee632-506e-40e2-be75-66d2bb89e068','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-20 10:27:49.063','2024-07-20 10:27:49.063','2024-07-20 10:27:49.063','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-20 10:36:28.834','2024-07-20 10:36:28.834',NULL),
('e11ce49b-a353-41ea-9ede-dcb81537d664','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-05 16:14:14.505','2024-12-05 16:14:14.505','2024-12-05 16:14:14.505','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:04:36.537','2024-12-17 19:52:33.048',NULL),
('e13744c2-6185-43d9-ae3a-5d38e9c0ae22','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-26 13:29:29.169','2025-05-26 13:29:29.169','2025-05-26 13:29:29.169','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:12:51.292','2025-06-06 02:46:03.828',NULL),
('e145d8b4-3205-40d1-8efa-b3ffc2f45a7a','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-29 13:03:41.007','2025-09-29 13:03:41.007','2025-09-29 13:03:41.007','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.306','2025-10-22 11:29:52.730',NULL),
('e146624b-46d6-4c69-9a4e-a3c94e51f6a3','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-01 10:05:45.873','2025-07-01 10:05:45.873','2025-07-01 10:05:45.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-16 14:24:19.201','2025-07-16 14:29:34.134',NULL),
('e1558b5d-5065-43bf-91d2-1c77bb222972','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 08:19:34.585','2025-01-13 08:19:34.585','2025-01-13 08:19:34.585','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.653',NULL),
('e167b4b8-8173-4e32-a637-c59f3d6c3c8e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-31 15:40:05.300','2024-12-31 15:40:05.300','2024-12-31 15:40:05.300','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 13:55:52.871','2025-01-07 17:06:26.295',NULL),
('e16b3367-4091-46b7-8ec5-e244976ad8e7','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 08:05:55.469','2025-01-06 08:05:55.469','2025-01-06 08:05:55.469','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.509',NULL),
('e173d798-bc38-49d2-860a-df28979d1d8f','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 06:11:38.658','2025-09-15 06:11:38.658','2025-09-15 06:11:38.658','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:09.002','2025-10-14 08:52:36.849',NULL),
('e177df83-3f2a-498b-ab85-cb591af33577','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 08:44:02.391','2024-05-29 08:44:02.391','2024-05-29 08:44:02.391','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 08:45:16.597','2024-05-29 08:45:16.597',NULL),
('e18c7881-2c1c-4c68-8839-71eed4af7a36','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-18 14:00:27.026','2024-12-18 14:00:27.026','2024-12-18 14:00:27.026','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:29:52.647','2024-12-27 12:23:49.397',NULL),
('e1aa4957-04b3-4c78-b110-5dd387fb6188','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','1f0119e0-2853-442a-8394-39cf94fce7df','2024-11-18 12:55:25.192','2024-11-18 12:55:25.192','2024-11-18 12:55:25.192','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-18 14:02:36.273','2024-12-09 17:29:20.085',NULL),
('e1c8a9d9-db92-4a1a-9baa-2a6d0034fb02','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 13:18:32.995','2025-10-10 13:18:32.995','2025-10-10 13:18:32.995','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.400','2025-10-25 08:58:44.079',NULL),
('e1e36bf7-78ef-41d9-b8e0-2586b282d012','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 10:49:16.594','2024-12-24 10:49:16.594','2024-12-24 10:49:16.594','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.513',NULL),
('e1e373da-124a-42bd-82f6-39496cd1d0ae','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-01 13:11:26.352','2025-09-01 13:11:26.352','2025-09-01 13:11:26.352','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.080','2025-09-08 16:22:57.515',NULL),
('e1e84bc1-3605-4359-b0ca-dd4ee80b3846','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-11 12:32:34.631','2025-04-11 12:32:34.631','2025-04-11 12:32:34.631','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:35:01.696','2025-04-15 14:54:58.255',NULL),
('e1fcfdfe-2d03-42da-a725-843e0576de40','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-24 10:37:22.116','2024-09-24 10:37:22.116','2024-09-24 10:37:22.116','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-24 10:46:49.870','2024-09-29 12:44:01.084',NULL),
('e2294066-3dc4-4eae-8bd1-a7bf521ea4e9','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-11 15:00:45.798','2025-02-11 15:00:45.798','2025-02-11 15:00:45.798','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:03:23.298','2025-03-02 04:33:53.324',NULL),
('e2a6d2e8-2793-4dfd-b756-bd972f160954','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-10 08:57:52.205','2025-02-10 08:57:52.205','2025-02-10 08:57:52.205','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.585',NULL),
('e2cda19c-3e38-406e-b00c-2be232c73f61','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-19 12:00:37.343','2025-03-19 12:00:37.343','2025-03-19 12:00:37.343','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.110',NULL),
('e2ee1647-071c-45b9-b183-fd8dba6a7c49','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:18:00.873','2024-11-12 15:18:00.873','2024-11-12 15:18:00.873','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:20:51.634','2024-11-12 15:20:51.634',NULL),
('e32f4e84-84b7-43db-b5a1-24647bbda924','02756ab4-fa8a-408f-b81c-76a84dc82d6f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 11:31:41.099','2024-09-27 11:31:41.099','2024-09-27 11:31:41.099','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 11:33:52.959','2024-09-27 13:46:01.433',NULL),
('e3317e35-341e-4264-ab59-c11973a68711','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 12:57:15.375','2025-02-06 12:57:15.375','2025-02-06 12:57:15.375','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:03:23.298','2025-03-02 04:33:53.145',NULL),
('e352e661-ee2b-4738-bf0a-a488a1821d7e','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-22 19:53:58.369','2025-04-22 19:53:58.369','2025-04-22 19:53:58.369','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:34:06.002','2025-04-26 16:02:30.919',NULL),
('e3ac5407-0ef2-4358-a15d-dd1012ac5048','97395954-a607-42cd-986f-68a20e6e23be','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-07 11:17:45.299','2024-10-07 11:17:45.299','2024-10-07 11:17:45.299','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-07 11:32:36.732','2024-10-11 15:11:00.844',NULL),
('e3b0097f-a2e5-4cfd-b6ec-4c3e12ce9721','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-19 12:30:50.335','2024-09-19 12:30:50.335','2024-09-19 12:30:50.335','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-19 12:33:22.495','2024-09-27 13:56:26.217',NULL),
('e3bce022-72da-4be4-9df3-3c9cc1c5bad0','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 08:03:13.272','2025-05-13 08:03:13.272','2025-05-13 08:03:13.272','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:37:54.446','2025-05-26 13:23:22.631',NULL),
('e3be469a-bb5e-4085-b52e-5df37eb8f314','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:08:54.456','2024-04-27 08:08:54.456','2024-04-27 08:08:54.456','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:12:18.850','2024-04-27 08:33:34.985',NULL),
('e3c23b7a-cac5-49f9-a21f-d646347d5d7f','dea91080-5383-4085-af2e-7eace2c64224','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-07 07:00:00.938','2025-05-07 07:00:00.938','2025-05-07 07:00:00.938','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.111',NULL),
('e3e2936d-26ea-4acc-92f8-58296f653ad1','1a63399e-9dca-4c70-be0e-e8e8a874b582','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 14:29:37.531','2024-11-21 14:29:37.531','2024-11-21 14:29:37.531','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 14:32:22.258','2024-12-02 09:51:49.601',NULL),
('e43f663f-3043-4afe-9952-8a34e0cdd117','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-25 12:26:11.333','2025-08-25 12:26:11.333','2025-08-25 12:26:11.333','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-15 15:26:04.845','2025-09-19 10:00:25.313',NULL),
('e441ccfa-4ee6-460c-98cb-cbbce63edb06','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-10 18:37:12.597','2024-11-10 18:37:12.597','2024-11-10 18:37:12.597','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-10 18:38:34.501','2024-12-09 08:24:38.580',NULL),
('e4c3a772-38f3-499b-95e1-1407ec6ae4be','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:18:54.524','2024-03-23 07:18:54.524','2024-03-23 07:18:54.524','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:25:54.964','2024-04-01 11:31:50.351',NULL),
('e4fb87f0-8dbf-463b-92bc-f5e55fe0d86e','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 09:31:31.579','2024-03-12 09:31:31.579','2024-03-12 09:31:31.579','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 09:37:48.381','2024-03-12 09:37:48.381',NULL),
('e52a2bfe-da3d-442b-a9d4-ee5111771334','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:49:57.792','2024-05-29 09:49:57.792','2024-05-29 09:49:57.792','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:55:26.714','2024-05-29 09:55:26.714',NULL),
('e55ddce2-8a93-436a-9dc7-3149428b57c3','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','d074816b-78fd-4378-91c0-3835eba28f44','2024-11-06 09:16:29.651','2024-11-06 09:16:29.651','2024-11-06 09:16:29.651','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 09:23:43.278','2024-11-15 16:59:26.186',NULL),
('e5e65e33-1f85-4a26-822a-79b8f8893dee','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-13 19:23:42.474','2025-10-13 19:23:42.474','2025-10-13 19:23:42.474','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.509','2025-10-25 08:58:43.925',NULL),
('e5f64534-d0ed-47bf-9a5f-28f7c7bff755','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 10:25:12.580','2025-02-05 10:25:12.580','2025-02-05 10:25:12.580','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:30:49.656','2025-02-15 11:10:43.053',NULL),
('e5fd05f8-1719-4efd-b99e-af42dc326114','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 20:20:55.510','2025-02-13 20:20:55.510','2025-02-13 20:20:55.510','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:22:41.824','2025-02-24 20:28:04.642',NULL),
('e5ffc3a9-e0be-4949-9e10-9f400f44e1bc','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-17 09:31:20.915','2025-01-17 09:31:20.915','2025-01-17 09:31:20.915','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.668',NULL),
('e64df038-4154-42d1-ae6c-cf0580eacae5','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:00:57.181','2024-05-29 09:00:57.181','2024-05-29 09:00:57.181','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:04:50.646','2024-05-29 09:04:50.646',NULL),
('e66d24d4-3026-4835-bcbc-e8b55ccbfbea','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:26:03.624','2024-03-30 09:26:03.624','2024-03-30 09:26:03.624','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:29:38.017','2024-04-03 11:39:19.343',NULL),
('e66eb9be-a301-40b9-a95a-dc4535fb2348','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-23 08:58:54.444','2024-10-23 08:58:54.444','2024-10-23 08:58:54.444','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-23 09:00:39.908','2024-10-23 10:16:53.438',NULL),
('e6800bb3-d2be-4399-85ef-43fb1b0adabf','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 10:43:18.858','2025-02-27 10:43:18.858','2025-02-27 10:43:18.858','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:02:40.269','2025-03-21 17:17:30.104',NULL),
('e68c12d4-cceb-4ec0-b512-3af9941f5d52','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-27 11:10:35.540','2025-02-27 11:10:35.540','2025-02-27 11:10:35.540','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:14:57.493','2025-03-21 17:17:30.134',NULL),
('e6a3d9bf-987d-4bea-9654-357f61e85dc2','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:46:44.890','2024-11-15 16:46:44.890','2024-11-15 16:46:44.890','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:47:36.142','2024-11-28 09:15:11.301',NULL),
('e6ca8fb1-96da-40ab-be58-b3fc6daf5712','d50fb551-10f1-4b7c-b65d-6eb4bef94704','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 09:11:20.378','2025-09-18 09:11:20.378','2025-09-18 09:11:20.378','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.357','2025-10-25 08:58:44.110',NULL),
('e6d7c31d-9856-44f2-b700-31c31cda6b84','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-17 15:40:44.580','2025-04-17 15:40:44.580','2025-04-17 15:40:44.580','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:25:41.798','2025-05-26 13:23:22.480',NULL),
('e6e00db2-e963-4b68-bc3d-f39316d0e9b1','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-06 07:51:32.691','2025-01-06 07:51:32.691','2025-01-06 07:51:32.691','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-11 15:02:07.378','2025-01-13 07:50:40.424',NULL),
('e6ea8c15-ab95-4896-b7b6-dda90ba80258','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 12:45:08.681','2025-09-17 12:45:08.681','2025-09-17 12:45:08.681','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.995','2025-10-14 08:52:36.842',NULL),
('e72cbf73-5393-46ac-a08f-7894f9a28f4b','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-26 14:34:08.913','2025-04-26 14:34:08.913','2025-04-26 14:34:08.913','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:35:54.444','2025-04-26 16:02:30.953',NULL),
('e73c098c-0c8f-4cce-b418-8136550f97d0','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-16 06:58:51.697','2024-12-16 06:58:51.697','2024-12-16 06:58:51.697','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:22:06.784','2025-01-29 12:24:52.615',NULL),
('e77427e1-d8c5-4df5-82dc-32df9491ac90','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-13 08:08:23.296','2024-06-13 08:08:23.296','2024-06-13 08:08:23.296','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-13 08:11:25.112','2024-07-02 08:08:45.817',NULL),
('e7747d29-b54c-49ab-8e75-7a18154418e1','fabe2c23-b5a5-4123-a962-af519ac31d3b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:09:26.964','2025-07-08 11:09:26.964','2025-07-08 11:09:26.964','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:11:58.200','2025-07-08 11:33:15.272',NULL),
('e7a12ce3-4d01-4524-a9c8-229365ac424b','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-12 11:23:41.380','2024-09-12 11:23:41.380','2024-09-12 11:23:41.380','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-12 11:29:01.832','2024-09-16 07:54:13.856',NULL),
('e7a4d40c-eff9-4bc8-b002-71d9f5e22be5','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 08:26:28.849','2025-02-13 08:26:28.849','2025-02-13 08:26:28.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:23:18.706','2025-03-02 04:33:53.311',NULL),
('e7a9e75b-f489-4848-8c83-3a362eb8d620','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-30 14:47:00.812','2024-10-30 14:47:00.812','2024-10-30 14:47:00.812','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-30 14:50:52.402','2024-12-01 12:29:36.700',NULL),
('e7f7f8e8-65f7-4b59-aceb-52eaedc372eb','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 07:26:46.942','2025-08-11 07:26:46.942','2025-08-11 07:26:46.942','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.551','2025-08-22 10:54:52.536',NULL),
('e822f076-bb1a-4efc-9025-579c8aa96cb7','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 11:07:00.943','2025-07-08 11:07:00.943','2025-07-08 11:07:00.943','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:09:31.420','2025-07-08 11:33:15.265',NULL),
('e82f47a2-6d97-4415-ad47-e95df175e641','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-13 22:47:12.644','2025-08-13 22:47:12.644','2025-08-13 22:47:12.644','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.944','2025-08-21 08:12:56.877',NULL),
('e835aded-6555-47b8-9b6c-11d62991e4f9','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-06 10:40:49.771','2025-08-06 10:40:49.771','2025-08-06 10:40:49.771','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-27 08:40:21.950','2025-09-03 06:09:36.734',NULL),
('e875f7c7-752a-43d6-8bc5-bd941580f52c','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-20 12:49:06.574','2025-05-20 12:49:06.574','2025-05-20 12:49:06.574','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.441',NULL),
('e8810a8f-b4bc-40eb-a890-6d117b05a641','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-01 12:08:47.893','2025-08-01 12:08:47.893','2025-08-01 12:08:47.893','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.461','2025-09-18 15:48:17.607',NULL),
('e8cb4493-cfb3-433a-a481-631a7ffe2d03','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-04 21:54:14.251','2025-02-04 21:54:14.251','2025-02-04 21:54:14.251','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:42.964',NULL),
('e8d1a39c-0f45-4c17-8a8e-cfb39154f66b','83b080d0-7549-4d18-8037-da9fac2693a3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 11:14:36.960','2025-02-07 11:14:36.960','2025-02-07 11:14:36.960','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:18:24.596','2025-02-15 11:10:42.989',NULL),
('e8dc38f9-ac5f-4428-a994-47395dc93fa8','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-28 10:19:16.170','2025-04-28 10:19:16.170','2025-04-28 10:19:16.170','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:32:31.764','2025-05-26 13:23:22.495',NULL),
('e8facc91-5fb6-422f-a76d-1ef6a98732cc','afdbd570-d700-442a-b617-752921194603','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-15 10:05:14.609','2025-02-15 10:05:14.609','2025-02-15 10:05:14.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.691',NULL),
('e8fe412f-487b-4397-a4a0-e557a0b899e0','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-09 06:05:54.168','2025-09-09 06:05:54.168','2025-09-09 06:05:54.168','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.272','2025-10-02 11:05:59.102',NULL),
('e90e5879-a80a-4ee2-8272-b690ae7ed02f','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-16 08:42:06.627','2025-06-16 08:42:06.627','2025-06-16 08:42:06.627','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 11:17:29.682','2025-07-08 11:33:15.212',NULL),
('e9187181-d695-4954-8f73-4069778df83c','c904b27b-bbae-4aa4-8662-a377929d7338','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-11 12:28:05.257','2025-04-11 12:28:05.257','2025-04-11 12:28:05.257','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:31:02.630','2025-04-15 14:54:58.190',NULL),
('e94bafcd-30b9-4c82-8a4d-809b6086da6d','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-24 13:45:17.878','2024-12-24 13:45:17.878','2024-12-24 13:45:17.878','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-28 14:46:54.976','2025-01-06 20:08:12.958',NULL),
('e98f4416-885b-4d3d-8ef1-b5524b26a181','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-29 09:52:16.312','2025-08-29 09:52:16.312','2025-08-29 09:52:16.312','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:05:07.677','2025-09-05 08:55:11.120',NULL),
('e9a7c50d-cadd-4b25-b3bb-01999a4f8883','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 09:31:55.417','2025-05-05 09:31:55.417','2025-05-05 09:31:55.417','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.844',NULL),
('e9b41042-e933-4309-ac68-2ba5a3d0e022','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:28:59.353','2025-01-29 07:28:59.353','2025-01-29 07:28:59.353','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:30:49.656','2025-02-15 11:10:43.020',NULL),
('e9bd4a97-ecf6-48b2-b814-06d08f0ba347','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:37:07.546','2024-06-08 07:37:07.546','2024-06-08 07:37:07.546','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:39:30.007','2024-06-08 10:02:10.996',NULL),
('e9bff3fc-8881-45e9-b6e5-618e76abda0a','1fa0780b-1d99-4c43-b5cd-ba3dfbbaedf6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 17:20:24.613','2025-03-25 17:20:24.613','2025-03-25 17:20:24.613','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:27:15.880','2025-03-29 13:37:01.821',NULL),
('e9de448a-3092-4f0a-8a84-dc6727e959ff','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 10:40:21.526','2025-03-27 10:40:21.526','2025-03-27 10:40:21.526','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.482',NULL),
('e9ec85e2-5904-4097-8bc8-7bb6fd10528c','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-08 11:41:49.846','2025-04-08 11:41:49.846','2025-04-08 11:41:49.846','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.343',NULL),
('ea06019a-7e83-4600-a432-28fa405e7cf8','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-28 20:04:31.335','2024-12-28 20:04:31.335','2024-12-28 20:04:31.335','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-03 09:09:49.753','2025-01-05 14:06:53.526',NULL),
('ea19246a-8bff-4353-81b5-bb6279abc678','338e8c09-4ca5-4617-bfc1-a0692646d475','ab532050-8a54-4cb4-9e27-59229ab24a9b','2024-11-28 12:42:22.514','2024-11-28 12:42:22.514','2024-11-28 12:42:22.514','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-28 13:15:29.681','2024-12-23 14:09:23.438','2024-12-23 14:09:23.442'),
('ea31bc2b-2df5-4bb7-a0be-6176e6608481','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-12 15:33:27.799','2024-11-12 15:33:27.799','2024-11-12 15:33:27.799','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-12 15:34:55.910','2024-11-12 15:34:55.910',NULL),
('ea379487-ffdf-46cf-980a-5e4cbeee57f6','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-30 14:06:55.363','2025-07-30 14:06:55.363','2025-07-30 14:06:55.363','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:12:15.266','2025-08-12 08:07:30.455',NULL),
('ea49a6ea-1f50-4fca-8625-40e33ca93dbb','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-25 09:47:16.630','2025-07-25 09:47:16.630','2025-07-25 09:47:16.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.544','2025-08-21 08:12:57.049',NULL),
('ea509cef-6501-4ec2-b37d-bc8044da0367','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 13:38:22.770','2024-10-11 13:38:22.770','2024-10-11 13:38:22.770','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 13:40:01.523','2024-10-11 13:40:01.523',NULL),
('ea719d80-2a2c-44b2-9f9d-cac8706b7454','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-09 06:09:27.173','2025-09-09 06:09:27.173','2025-09-09 06:09:27.173','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-12 16:46:30.880','2025-09-12 17:16:02.682',NULL),
('ea7c1235-7f12-4467-abff-ace6e95d7510','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-15 09:23:59.478','2024-10-15 09:23:59.478','2024-10-15 09:23:59.478','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-15 09:36:15.509','2024-10-17 11:50:49.854',NULL),
('ea7dbd52-d37a-4fa7-8c04-b49dbe02813f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-29 07:57:21.139','2025-01-29 07:57:21.139','2025-01-29 07:57:21.139','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.047',NULL),
('ea80a783-425d-4d18-b135-b3cbf5c0f572','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 09:02:53.215','2024-05-11 09:02:53.215','2024-05-11 09:02:53.215','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 09:04:28.079','2024-05-17 14:13:38.577',NULL),
('eb123542-fa54-4b92-b45c-c6e04733e62c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-24 08:57:36.833','2025-07-24 08:57:36.833','2025-07-24 08:57:36.833','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 09:15:13.435','2025-08-21 15:33:18.597',NULL),
('eb3886cc-8e56-4321-90ad-61530b9f2961','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 08:21:31.842','2025-05-13 08:21:31.842','2025-05-13 08:21:31.842','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.618',NULL),
('eb4d2ca5-ca59-4cbb-a9c6-4097da5af5a5','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-15 08:07:04.630','2025-09-15 08:07:04.630','2025-09-15 08:07:04.630','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.382','2025-09-18 15:48:17.509',NULL),
('eb8d9839-2d07-4052-8244-107114859ed1','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 08:52:21.299','2024-03-18 08:52:21.299','2024-03-18 08:52:21.299','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 08:59:42.538','2024-03-25 10:35:14.742',NULL),
('eb8f1d19-2a21-434a-8754-6ef7c3f48099','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-11 18:20:20.254','2025-08-11 18:20:20.254','2025-08-11 18:20:20.254','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:54:07.547','2025-08-14 08:02:29.768',NULL),
('eb94fd6b-0cae-4075-ac0a-3acc4bfae3ba','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 08:51:01.309','2025-04-30 08:51:01.309','2025-04-30 08:51:01.309','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:11:30.830',NULL),
('ebb0d255-a4a3-4977-a0d6-8e2c41926724','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 10:10:45.508','2024-05-04 10:10:45.508','2024-05-04 10:10:45.508','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 10:12:32.994','2024-05-10 09:12:14.591',NULL),
('ebfd5efc-21d9-46b5-8abf-b0828db11c58','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 11:28:00.876','2025-08-12 11:28:00.876','2025-08-12 11:28:00.876','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-20 15:43:06.394','2025-08-21 08:12:56.924',NULL),
('ec4cd655-8ae5-4b7e-9e95-bafe33d3157f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-16 09:03:11.932','2025-10-16 09:03:11.932','2025-10-16 09:03:11.932','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.362','2025-10-22 11:29:52.861',NULL),
('ec4fef07-0c9f-4232-a19c-e87d2ec316cc','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-04 23:12:26.592','2025-01-04 23:12:26.592','2025-01-04 23:12:26.592','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:26:43.612','2025-01-29 12:24:52.704',NULL),
('ec7ad01e-f0e2-48b2-96cc-4bd1ab69ff48','59868701-abe4-4705-a7e6-d91c2c69262e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-22 09:40:48.216','2025-07-22 09:40:48.216','2025-07-22 09:40:48.216','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.451','2025-07-29 12:43:42.879',NULL),
('ec8777b5-6e8f-4175-93a3-6de3d1869400','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-05 09:59:57.996','2025-05-05 09:59:57.996','2025-05-05 09:59:57.996','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:50:18.071','2025-05-28 19:05:44.741',NULL),
('eccc137e-e7dd-48e0-acca-e9a5666e82db','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-27 21:29:19.187','2025-07-27 21:29:19.187','2025-07-27 21:29:19.187','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:30:31.495','2025-07-29 12:37:20.453',NULL),
('ecfa5b6b-bd6d-4526-a039-953a9537595b','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:28:24.851','2024-03-16 08:28:24.851','2024-03-16 08:28:24.851','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:30:40.099','2024-03-16 08:30:40.099',NULL),
('ed0e8e08-5bb7-426d-9fab-96a819f5f7ff','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-05 09:19:29.624','2025-08-05 09:19:29.624','2025-08-05 09:19:29.624','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.838','2025-09-02 14:46:19.318',NULL),
('ed19ced5-6d52-4623-a1bb-d42f368faa76','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-25 07:06:57.836','2025-07-25 07:06:57.836','2025-07-25 07:06:57.836','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.972','2025-08-21 08:12:56.863',NULL),
('ed206928-a7da-44da-bf26-abb72c6fc741','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:43:12.910','2024-05-04 07:43:12.910','2024-05-04 07:43:12.910','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:44:40.135','2024-05-04 07:44:40.135',NULL),
('ed52b63f-6bad-471b-a5e8-38b48d1f65da','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-21 07:42:32.286','2024-10-21 07:42:32.286','2024-10-21 07:42:32.286','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-21 07:46:32.986','2024-10-23 14:44:02.459',NULL),
('ed569d1d-b6e4-4c8b-ad59-9af8feeb17e2','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-24 16:06:09.142','2025-03-24 16:06:09.142','2025-03-24 16:06:09.142','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:35:01.696','2025-04-15 14:54:58.235',NULL),
('ed6b1b2d-d1f5-4972-9f03-3b9b2f2b67db','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-15 16:29:03.621','2024-11-15 16:29:03.621','2024-11-15 16:29:03.621','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-15 16:31:08.697','2024-11-15 16:31:08.697',NULL),
('ed983553-2480-4fe2-8103-66c275a72690','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-14 11:44:06.884','2025-10-14 11:44:06.884','2025-10-14 11:44:06.884','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.236','2025-10-22 11:29:52.797',NULL),
('edbbe06f-8d29-4d41-adb2-8b8963f8674f','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 12:14:05.303','2025-02-06 12:14:05.303','2025-02-06 12:14:05.303','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.008',NULL),
('edc3c688-ec8c-4f87-9670-814af3fa450d','67e5a145-070e-4e0f-9c3b-09f273d6ed40','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-20 20:44:13.650','2025-06-20 20:44:13.650','2025-06-20 20:44:13.650','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.829','2025-07-16 14:21:29.449',NULL),
('eddcc736-bbbb-42ce-b151-3effa8a46120','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-25 15:41:13.887','2025-04-25 15:41:13.887','2025-04-25 15:41:13.887','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.513',NULL),
('edf12f44-f9d6-4032-ac6c-bc1c977a40ae','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-23 07:19:35.823','2024-05-23 07:19:35.823','2024-05-23 07:19:35.823','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-23 07:20:42.134','2024-05-23 07:20:42.134',NULL),
('ee129c96-22e3-4d0c-aa3a-08cf1cd0f499','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 07:40:20.385','2024-05-04 07:40:20.385','2024-05-04 07:40:20.385','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 07:43:09.980','2024-05-04 07:43:09.980',NULL),
('ee3972fa-b564-4def-b88a-567d239cd74d','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:35:22.876','2025-04-17 15:35:22.876','2025-04-17 15:35:22.876','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:45:30.739','2025-04-26 07:32:55.557',NULL),
('ee39d67c-6a4e-487d-ab63-da6efe43da84','7868f0ab-d491-44f8-9f78-15fc6f286ffa','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 15:27:37.141','2025-02-13 15:27:37.141','2025-02-13 15:27:37.141','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:22:41.824','2025-02-24 20:28:04.636',NULL),
('ee4393ac-deca-46f4-9b1c-6ed4a6d18739','70a3a4f1-e9cb-485f-aada-62059168e54e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:03:44.677','2024-06-08 07:03:44.677','2024-06-08 07:03:44.677','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:07:46.052','2024-06-08 07:07:46.052',NULL),
('ee610af9-1127-4c63-aa84-05cb443d1215','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 11:59:44.526','2024-05-10 11:59:44.526','2024-05-10 11:59:44.526','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 12:01:43.543','2024-05-29 11:00:13.006',NULL),
('ee654ac4-63c5-496d-bca1-3091eee60c92','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 13:28:39.707','2024-10-11 13:28:39.707','2024-10-11 13:28:39.707','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 13:34:39.106','2024-10-14 08:46:53.651',NULL),
('ee6a462c-8453-444e-8b33-b688e649eb82','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-26 11:54:22.334','2025-02-26 11:54:22.334','2025-02-26 11:54:22.334','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:32:27.236','2025-03-11 07:46:42.066',NULL),
('ee6d7dd4-4dbd-454d-8345-9ff1514f25c3','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-11 11:23:44.116','2025-08-11 11:23:44.116','2025-08-11 11:23:44.116','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 06:43:39.475','2025-09-18 15:48:17.621',NULL),
('ee921d04-6d70-4af8-96a2-1bbb2795cca8','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 09:51:42.014','2025-01-15 09:51:42.014','2025-01-15 09:51:42.014','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:12:38.305','2025-01-28 15:19:34.535',NULL),
('ee9c3f50-0d5e-4076-92af-d534dd7b5b03','85834865-ac23-4c00-a99b-c9551971a5a1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-13 20:29:32.727','2025-02-13 20:29:32.727','2025-02-13 20:29:32.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:32:41.996','2025-02-24 20:28:04.578',NULL),
('ee9cce28-2561-4fc5-9d12-30f0d9b961b8','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 12:33:09.763','2025-10-02 12:33:09.763','2025-10-02 12:33:09.763','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.279','2025-10-22 11:29:52.711',NULL),
('ee9d66d9-b24e-40a9-91b1-240f44ab3bb3','04673282-898f-4a7a-b3b5-7521480e5322','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-19 08:37:39.160','2025-09-19 08:37:39.160','2025-09-19 08:37:39.160','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-09 08:36:32.940','2025-10-09 08:50:16.211',NULL),
('ee9ec405-187c-4905-9f19-479319ad4327','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-15 07:22:41.583','2025-10-15 07:22:41.583','2025-10-15 07:22:41.583','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.393','2025-10-22 11:29:52.761',NULL),
('eed7bf6b-b815-4f72-ac37-67e6355d9189','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-09 13:37:12.003','2024-12-09 13:37:12.003','2024-12-09 13:37:12.003','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 12:40:16.912','2024-12-16 18:41:52.578',NULL),
('eee7e9a1-29a5-4d04-adb0-1994e944b604','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-05 11:02:51.486','2025-02-05 11:02:51.486','2025-02-05 11:02:51.486','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.014',NULL),
('eefecebe-a041-4133-97c4-d9e35e1df023','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-28 09:03:33.883','2025-01-28 09:03:33.883','2025-01-28 09:03:33.883','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.538',NULL),
('ef337f8d-205e-422c-b3ec-c59fcea470e6','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 11:08:19.991','2025-09-05 11:08:19.991','2025-09-05 11:08:19.991','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.435','2025-09-19 10:00:25.447',NULL),
('ef3c0f42-b498-4a52-b3e8-a4a165102c06','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:22:48.694','2024-09-28 15:22:48.694','2024-09-28 15:22:48.694','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:25:06.558','2024-09-28 15:25:06.558',NULL),
('ef46fb66-e0eb-423c-b3a9-57d693a1c384','1b51c5f7-649a-424f-ba17-cc37d6298af9','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-11 06:59:25.717','2025-02-11 06:59:25.717','2025-02-11 06:59:25.717','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 11:45:33.845','2025-03-21 17:17:30.197',NULL),
('ef5982d5-2d88-41bc-8fb0-f46a9e7a0b80','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-03 11:06:41.981','2025-02-03 11:06:41.981','2025-02-03 11:06:41.981','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.560',NULL),
('ef7d9aa1-44f3-4b56-a157-b6d37758a974','98ea2dbd-82be-4bbe-b758-b7175c0f8659','394112c3-f977-4fc2-b430-775e79e472ca','2024-11-06 15:09:57.151','2024-11-06 15:09:57.151','2024-11-06 15:09:57.151','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-06 15:11:52.734','2024-11-08 17:32:53.418',NULL),
('ef9d5c20-8edf-4270-bc57-1f33df3da5d8','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-03 12:48:05.495','2024-10-03 12:48:05.495','2024-10-03 12:48:05.495','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-03 12:48:46.974','2024-10-11 15:16:09.817',NULL),
('efb31970-b737-4fdf-a52d-dfda6f58d084','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 08:38:53.109','2025-04-24 08:38:53.109','2025-04-24 08:38:53.109','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.336',NULL),
('efdd12b6-7e9e-4e49-95aa-e9cfb9283b5e','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-16 14:24:32.259','2025-10-16 14:24:32.259','2025-10-16 14:24:32.259','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 10:49:30.126','2025-10-17 10:53:07.519',NULL),
('efe30531-1fe6-4383-933d-eaaa01a35215','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-10 12:19:43.145','2024-12-10 12:19:43.145','2024-12-10 12:19:43.145','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:24:23.701','2024-12-16 18:41:52.604',NULL),
('efeb92bf-0ab0-4472-b9ce-6ff61dcba845','0279a6d3-79de-4470-9728-f1654e3ba0b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 07:29:18.336','2024-06-08 07:29:18.336','2024-06-08 07:29:18.336','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 07:31:27.469','2024-06-08 09:02:26.975',NULL),
('f008b326-7afd-4733-af68-58f7b1b48835','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-10 19:49:09.296','2025-09-10 19:49:09.296','2025-09-10 19:49:09.296','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.281','2025-10-02 11:05:59.109',NULL),
('f0162704-0b98-4462-93fc-6e3db18726c8','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-18 15:56:38.195','2025-02-18 15:56:38.195','2025-02-18 15:56:38.195','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:05:56.998','2025-02-27 13:37:30.564',NULL),
('f0240432-334c-410f-8b4e-88b2ea931064','0dae8190-b900-4826-9171-b2d74a2538b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 11:15:35.662','2025-02-06 11:15:35.662','2025-02-06 11:15:35.662','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.668',NULL),
('f0301e3d-ca8b-4e5a-9bb8-3cae2a479799','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-16 09:13:54.048','2025-05-16 09:13:54.048','2025-05-16 09:13:54.048','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-28 18:45:21.684','2025-05-28 19:05:44.806',NULL),
('f038da42-0ea6-42ab-81db-215fbe8684ac','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-09 11:19:14.826','2025-05-09 11:19:14.826','2025-05-09 11:19:14.826','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:21.058',NULL),
('f041528d-ade5-4bfc-986e-8cc3041896f2','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 11:39:56.911','2025-08-06 11:39:56.911','2025-08-06 11:39:56.911','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.845','2025-09-02 14:46:19.325',NULL),
('f04ffe8e-344b-4f5a-91ad-ad63371f53ff','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 08:35:42.439','2025-09-17 08:35:42.439','2025-09-17 08:35:42.439','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.472','2025-09-26 12:27:42.311',NULL),
('f055f256-8664-427b-8c2a-04fb2bf18df7','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-15 12:01:38.724','2025-08-15 12:01:38.724','2025-08-15 12:01:38.724','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:22:32.094','2025-09-06 09:41:31.904',NULL),
('f05c50da-4e23-44a0-86dc-226d271171bc','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:17:51.140','2024-10-02 09:17:51.140','2024-10-02 09:17:51.140','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:19:33.441','2024-10-02 09:19:33.441',NULL),
('f0827d89-341c-4ca9-a4eb-c0c07dc68362','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-24 09:26:04.329','2025-06-24 09:26:04.329','2025-06-24 09:26:04.329','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-26 09:43:12.523','2025-07-02 11:46:18.217',NULL),
('f0884bf6-b6d8-48ae-980a-5a741a93d9f2','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-23 08:14:25.221','2025-07-23 08:14:25.221','2025-07-23 08:14:25.221','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 08:50:57.212','2025-08-15 20:59:04.945',NULL),
('f08ead17-5d77-40ae-823f-e5164c08e0b5','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-18 12:43:38.307','2025-03-18 12:43:38.307','2025-03-18 12:43:38.307','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:50:25.917','2025-04-26 07:32:55.564',NULL),
('f096e4ff-8b00-483b-8483-e8e9a1d015cc','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-18 11:52:32.388','2025-09-18 11:52:32.388','2025-09-18 11:52:32.388','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 15:38:20.167','2025-09-18 15:48:17.493',NULL),
('f0b1d268-0b7d-42cd-b854-63c43d7b6808','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 09:02:11.632','2024-03-30 09:02:11.632','2024-03-30 09:02:11.632','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 09:05:05.109','2024-03-30 09:08:05.590',NULL),
('f0d83eef-7073-4ea3-aed2-d2b44190d75f','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-20 12:41:48.540','2024-12-20 12:41:48.540','2024-12-20 12:41:48.540','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-20 12:49:42.096','2024-12-27 12:23:49.421',NULL),
('f0dad337-f3ff-42e3-9947-4b9e1f9ee54d','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-21 09:04:31.820','2025-09-21 09:04:31.820','2025-09-21 09:04:31.820','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.959','2025-10-14 08:52:36.802',NULL),
('f0edbff4-80e3-41bf-b6fd-086bb191f674','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-11 11:05:44.206','2025-07-11 11:05:44.206','2025-07-11 11:05:44.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-17 09:35:48.480','2025-07-17 09:36:36.390',NULL),
('f0f39e9b-fded-4920-9e5e-d1f534d2e962','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 06:54:19.919','2024-03-23 06:54:19.919','2024-03-23 06:54:19.919','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 06:58:10.855','2024-04-10 10:40:54.148',NULL),
('f0f79491-0286-4e9f-8f93-d11ec4c56eb8','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-28 08:39:49.501','2025-04-28 08:39:49.501','2025-04-28 08:39:49.501','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.123',NULL),
('f145385d-8065-48eb-a402-7fb9a8d970de','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:29:54.708','2024-03-23 07:29:54.708','2024-03-23 07:29:54.708','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:33:38.375','2024-04-02 15:58:33.453',NULL),
('f1503dea-6df4-4abb-874e-1ac65633e4a8','27cbce83-310c-4e98-830f-7433b10c2efd','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-01 13:10:19.157','2025-09-01 13:10:19.157','2025-09-01 13:10:19.157','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.805','2025-09-04 12:02:32.516',NULL),
('f183ec46-262e-4fb2-a002-dd6b5df89f19','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-02 09:19:40.680','2024-10-02 09:19:40.680','2024-10-02 09:19:40.680','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-02 09:20:06.173','2024-10-02 10:11:50.512',NULL),
('f19a0a75-2ef7-4b4e-9ed9-2427e38d77a6','bce952bd-e658-4eff-b14a-3b71ea5a5124','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-11-07 14:34:24.861','2024-11-07 14:34:24.861','2024-11-07 14:34:24.861','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-07 14:40:49.855','2024-11-12 16:10:17.450',NULL),
('f1ca63da-8c38-4f76-98c6-0fcc182e7f4c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-05 07:42:20.207','2024-04-05 07:42:20.207','2024-04-05 07:42:20.207','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-05 08:14:48.070','2024-05-11 08:44:44.214','2024-05-11 08:44:44.217'),
('f1d1027b-73f1-49d7-8f5f-a888470f85dc','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-27 10:15:18.291','2025-01-27 10:15:18.291','2025-01-27 10:15:18.291','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.753',NULL),
('f200c0bf-5381-4475-b6a2-639de8f2df7b','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-18 13:17:28.862','2025-09-18 13:17:28.862','2025-09-18 13:17:28.862','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-18 15:48:17.564','2025-09-18 15:48:17.564',NULL),
('f2ab9912-e27d-41d8-9f54-f8ac903af21f','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-11 11:37:07.023','2024-10-11 11:37:07.023','2024-10-11 11:37:07.023','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-11 11:40:53.817','2024-10-11 11:40:53.817',NULL),
('f2c12926-ce20-48b3-b4e4-3183e51e7d2f','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-24 07:13:40.401','2025-04-24 07:13:40.401','2025-04-24 07:13:40.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.060',NULL),
('f2e65e42-8ae9-4910-a9dd-5e7080641e91','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 12:30:27.333','2025-09-24 12:30:27.333','2025-09-24 12:30:27.333','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.346','2025-10-02 11:05:59.183',NULL),
('f2f9c86a-7771-4d93-af38-75db7e1c9e7f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 08:49:05.601','2024-03-18 08:49:05.601','2024-03-18 08:49:05.601','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 08:50:20.983','2024-03-30 10:34:12.418','2024-03-30 10:34:12.429'),
('f35a5f9a-85d3-4ab8-884c-564fec419de8','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-02 08:13:19.789','2024-07-02 08:13:19.789','2024-07-02 08:13:19.789','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-02 08:15:22.030','2024-07-02 08:15:22.030',NULL),
('f38a83b0-c17a-43f4-8ed9-b3659de38deb','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 08:04:22.827','2025-03-27 08:04:22.827','2025-03-27 08:04:22.827','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.929',NULL),
('f38c14d3-57b5-488e-8d2c-0c26897773f3','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-20 12:03:39.641','2025-02-20 12:03:39.641','2025-02-20 12:03:39.641','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-23 12:18:58.301','2025-03-02 04:33:53.228',NULL),
('f38f1cac-7e9c-483c-9f0f-474962ba038a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 08:40:54.724','2025-02-24 08:40:54.724','2025-02-24 08:40:54.724','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-12 18:37:42.098','2025-03-12 19:01:22.522',NULL),
('f391948a-13a2-41ad-9e3e-9f418e0fd18f','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-19 08:36:08.286','2024-12-19 08:36:08.286','2024-12-19 08:36:08.286','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-03 17:59:08.362','2025-02-11 17:09:06.637',NULL),
('f3a6e252-7f40-4d20-a8a9-b5594bcdf504','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-26 09:25:14.609','2025-08-26 09:25:14.609','2025-08-26 09:25:14.609','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-01 06:54:01.849','2025-09-05 08:55:11.072',NULL),
('f3c5dcec-e88d-4c2b-9278-e6cd55925948','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-06 11:36:34.404','2024-12-06 11:36:34.404','2024-12-06 11:36:34.404','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:17:31.180','2024-12-17 19:52:33.039',NULL),
('f3dd3479-7f40-4f37-a54c-782da08cd3bd','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-07 07:31:11.121','2025-05-07 07:31:11.121','2025-05-07 07:31:11.121','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-16 16:05:10.520','2025-05-16 16:30:10.522',NULL),
('f4206d05-379a-4bb7-8d65-cf803dcb1503','1bf50c8b-294e-4072-b9f1-99363b966bb1','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 09:47:49.661','2025-10-02 09:47:49.661','2025-10-02 09:47:49.661','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 11:02:54.263','2025-10-06 07:15:30.227',NULL),
('f44f8826-eaf5-4c78-84af-b357826e9fc3','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-15 13:06:23.289','2024-05-15 13:06:23.289','2024-05-15 13:06:23.289','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-15 13:27:03.406','2024-05-17 14:10:29.279',NULL),
('f454e4c8-c73f-4fb4-976b-c0a12a8c0385','0dae8190-b900-4826-9171-b2d74a2538b0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-06 11:07:27.235','2025-02-06 11:07:27.235','2025-02-06 11:07:27.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.676',NULL),
('f45882f6-e153-453b-a495-6b150bb77a7f','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-11 08:23:57.308','2025-03-11 08:23:57.308','2025-03-11 08:23:57.308','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:29:02.382','2025-04-02 18:57:11.104',NULL),
('f47598f5-c1d7-46dc-924f-0a644c639be8','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-07 07:34:28.021','2025-03-07 07:34:28.021','2025-03-07 07:34:28.021','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-08 13:37:32.391','2025-03-11 07:46:41.981',NULL),
('f4905cfd-e8a3-4a69-b506-484a2652afe9','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 14:50:16.437','2024-11-21 14:50:16.437','2024-11-21 14:50:16.437','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 14:51:23.296','2024-12-02 09:51:49.675',NULL),
('f4a25b1d-eb90-494a-95b7-ebbb783b4094','0debd19b-d90b-48a0-9568-2d01319377e0','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-23 19:51:48.653','2025-05-23 19:51:48.653','2025-05-23 19:51:48.653','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-24 10:58:02.722','2025-05-26 15:20:57.007',NULL),
('f4adbd75-276c-431c-8b78-b3d1c9e701de','4126da30-ba9b-41b7-be29-865069aa484c','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-05 18:23:05.397','2025-09-05 18:23:05.397','2025-09-05 18:23:05.397','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 18:27:28.072','2025-09-06 09:41:31.793',NULL),
('f4bf5506-9275-4e6f-9b0f-f315fa6a4a90','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-27 08:27:40.849','2024-04-27 08:27:40.849','2024-04-27 08:27:40.849','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-27 08:29:31.905','2024-04-29 09:55:36.599',NULL),
('f4d194dc-e95e-4ab4-9193-4ce91e104db1','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-20 12:46:12.468','2025-05-20 12:46:12.468','2025-05-20 12:46:12.468','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:31:10.164','2025-05-26 13:23:22.638',NULL),
('f4d798d2-f95c-474c-a427-511150767852','daf7fb45-7940-4f5b-8733-e2e2d6030da7','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-22 08:34:37.242','2025-08-22 08:34:37.242','2025-08-22 08:34:37.242','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-06 17:00:09.132','2025-09-10 12:48:00.852',NULL),
('f4f1b302-0449-45d9-bf79-f5c3cb4ccb15','47880255-08ee-4e99-940b-16038e07de55','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-21 07:35:25.584','2025-07-21 07:35:25.584','2025-07-21 07:35:25.584','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-16 07:10:55.351','2025-09-19 10:00:25.352',NULL),
('f4fc09fe-cb35-43bb-a828-3f6002681bf9','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:23:02.484','2024-03-16 08:23:02.484','2024-03-16 08:23:02.484','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:25:27.352','2024-03-22 11:21:37.386',NULL),
('f52b61c9-4005-4631-acf3-3675e171ed19','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-05 09:15:25.680','2024-06-05 09:15:25.680','2024-06-05 09:15:25.680','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-05 10:16:28.932','2024-07-30 15:01:50.644',NULL),
('f52c59c0-05ec-4940-92ad-be56bf4e8ee8','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:55:30.639','2024-05-29 09:55:30.639','2024-05-29 09:55:30.639','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:57:28.167','2024-05-29 09:57:28.167',NULL),
('f5397eed-2e88-456a-9b02-42569bfad97a','fbae633b-07d9-4b61-90f7-87b941010b27','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-31 13:37:33.832','2025-01-31 13:37:33.832','2025-01-31 13:37:33.832','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-07 11:48:22.096','2025-02-15 11:10:43.119',NULL),
('f5575b99-913b-4d8d-bf3a-ba9d9be83b2f','dea91080-5383-4085-af2e-7eace2c64224','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-17 15:28:56.403','2025-04-17 15:28:56.403','2025-04-17 15:28:56.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.297',NULL),
('f5934656-f1e1-4c77-a072-9423a622bad2','d7a5b03e-dc29-4fad-b4f7-81ce8f971136','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 13:32:07.990','2024-09-27 13:32:07.990','2024-09-27 13:32:07.990','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 13:42:50.141','2024-10-02 08:51:36.374',NULL),
('f5979511-e1cf-4ef2-9abe-c6b8fc247087','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-06 07:36:56.334','2025-08-06 07:36:56.334','2025-08-06 07:36:56.334','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.787','2025-08-18 07:14:34.912',NULL),
('f5b92e03-4e23-471f-9beb-3faea3668cfc','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 10:22:23.891','2025-07-08 10:22:23.891','2025-07-08 10:22:23.891','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-08 10:26:32.753','2025-07-08 11:33:15.191',NULL),
('f5d45ecc-507e-4f38-8a8c-52ff8f7d17c6','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-08 10:30:25.471','2025-03-08 10:30:25.471','2025-03-08 10:30:25.471','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.777',NULL),
('f60caf8b-c671-44e4-b4ea-d5e2452da3a2','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-24 08:27:22.681','2025-06-24 08:27:22.681','2025-06-24 08:27:22.681','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:26:30.989','2025-07-07 11:44:52.724',NULL),
('f63e54b3-2d6a-4f8f-9fb4-30543c53b61a','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-16 13:02:32.451','2024-10-16 13:02:32.451','2024-10-16 13:02:32.451','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-16 13:03:38.410','2024-10-16 13:15:56.035','2024-10-16 13:15:56.040'),
('f67bcbfd-75fd-485e-a2f3-7657d6d132e3','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-14 11:16:54.326','2025-03-14 11:16:54.326','2025-03-14 11:16:54.326','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.508',NULL),
('f67d049f-ddf2-41e1-be37-52b7b5b5efc9','e6d4faef-484c-4ce7-992c-906e05fc083e','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-29 07:58:11.005','2025-05-29 07:58:11.005','2025-05-29 07:58:11.005','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-30 18:28:07.806','2025-07-07 11:44:52.860',NULL),
('f67dda33-8c6c-46f4-822e-b97e3f493fee','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-25 17:16:56.414','2025-03-25 17:16:56.414','2025-03-25 17:16:56.414','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:40:15.277','2025-04-26 16:02:30.846',NULL),
('f6f5a7d1-99ba-430c-9f1c-edf9d94d12cf','22a1dbd6-475c-4d4b-bb13-f459e3029634','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 07:06:44.964','2025-05-13 07:06:44.964','2025-05-13 07:06:44.964','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:29:06.668','2025-05-26 13:23:22.674',NULL),
('f70513e5-109e-4ba8-84b2-2335992ce216','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 08:50:19.403','2024-05-29 08:50:19.403','2024-05-29 08:50:19.403','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 08:52:13.026','2024-05-29 08:52:13.026',NULL),
('f71b929b-6ef8-47ec-ae64-dc8ca4857ef4','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 07:05:37.744','2024-03-18 07:05:37.744','2024-03-18 07:05:37.744','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 07:09:57.196','2024-03-18 07:11:11.212','2024-03-18 07:11:11.211'),
('f741aa8b-fa80-48d9-8ea8-f9fda95aa897','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-24 12:11:49.612','2025-02-24 12:11:49.612','2025-02-24 12:11:49.612','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-27 10:42:46.210','2025-03-21 17:17:30.121',NULL),
('f79ef662-3589-43d5-8632-4618fd65245d','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-18 08:47:07.651','2024-03-18 08:47:07.651','2024-03-18 08:47:07.651','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-18 08:49:03.176','2024-03-19 13:58:39.517',NULL),
('f7a5ec52-8e61-4c0f-90bd-3d1f4e33d769','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-13 10:10:52.391','2025-01-13 10:10:52.391','2025-01-13 10:10:52.391','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:30:15.511','2025-01-29 12:24:52.736',NULL),
('f7b7eaff-5a9e-4474-98c3-a6132c48aa21','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 13:40:22.266','2025-10-01 13:40:22.266','2025-10-01 13:40:22.266','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-02 06:39:26.340','2025-10-02 11:05:59.177',NULL),
('f827e3e8-5e5c-43cd-a8ad-44bc56146a3f','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-29 09:23:42.905','2024-05-29 09:23:42.905','2024-05-29 09:23:42.905','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-29 09:27:28.205','2024-05-29 09:27:28.205',NULL),
('f852deef-d15b-477c-a9c6-d41f5d65db26','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-17 11:35:09.604','2025-03-17 11:35:09.604','2025-03-17 11:35:09.604','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-11 12:26:08.423','2025-04-15 14:54:58.203',NULL),
('f85f680a-454e-46f7-89fd-71af10ab62eb','4b494cd3-c9fc-4519-ba9e-b4261706ae49','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-03 10:58:55.190','2025-02-03 10:58:55.190','2025-02-03 10:58:55.190','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-13 20:20:47.547','2025-02-24 20:28:04.611',NULL),
('f875a593-fa55-4d8f-8a0a-c511c5058a2c','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-27 13:59:59.757','2025-06-27 13:59:59.757','2025-06-27 13:59:59.757','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-07 14:20:25.176','2025-07-08 11:33:15.176',NULL),
('f879ece9-cec3-4dfd-b77c-1d5b18fef91a','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:35:18.602','2024-04-07 20:35:18.602','2024-04-07 20:35:18.602','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:38:21.092','2024-04-07 20:38:21.092',NULL),
('f8aaea45-10ec-4f3a-afae-efcfefa6c025','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-17 12:43:29.000','2025-09-17 12:43:29.000','2025-09-17 12:43:29.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.577','2025-10-07 15:17:28.394',NULL),
('f8e26789-7a64-404b-8806-63962d92a82d','f23142ef-47ba-426c-9a22-bfb123cfac47','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-19 15:12:10.088','2025-01-19 15:12:10.088','2025-01-19 15:12:10.088','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-19 16:25:39.959','2025-01-28 15:19:34.582',NULL),
('f8e9827b-07b5-4148-872d-35ff28e90e30','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-20 12:40:40.336','2025-01-20 12:40:40.336','2025-01-20 12:40:40.336','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.635',NULL),
('f8f725a3-c639-48b7-b120-df32c618288a','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 09:29:45.337','2025-10-10 09:29:45.337','2025-10-10 09:29:45.337','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.267','2025-10-25 08:58:43.957',NULL),
('f903b196-7105-40e3-9947-6e4b8150786e','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-04 12:07:58.374','2025-03-04 12:07:58.374','2025-03-04 12:07:58.374','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-06 10:17:40.312','2025-03-06 10:36:11.582',NULL),
('f90fb703-dccc-435d-863d-5fa2f32e1e46','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-10 06:27:25.401','2024-05-10 06:27:25.401','2024-05-10 06:27:25.401','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-10 06:28:56.779','2024-05-10 06:28:56.779',NULL),
('f98dc684-0239-4767-89eb-13af885b282e','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-12 15:35:02.062','2025-08-12 15:35:02.062','2025-08-12 15:35:02.062','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 15:01:10.082','2025-08-18 08:33:57.701',NULL),
('f9900e63-635f-4df9-8bd3-b124dadad211','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-08 09:18:30.305','2025-05-08 09:18:30.305','2025-05-08 09:18:30.305','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-09 16:49:05.440','2025-05-09 17:17:20.966',NULL),
('f9a00a17-e3c7-4602-a69a-828f9656125d','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-17 09:29:21.030','2025-07-17 09:29:21.030','2025-07-17 09:29:21.030','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 06:49:01.522','2025-08-21 08:12:56.958',NULL),
('f9a596f5-34df-4f90-8931-651ab82c8b5d','a42d8839-caef-4422-888f-cbfdf4188c5b','804a2f53-7a26-4e8e-a505-7fc107953b50','2024-11-26 07:07:41.300','2024-11-26 07:07:41.300','2024-11-26 07:07:41.300','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-26 07:13:13.016','2024-12-16 18:41:52.565',NULL),
('f9dc3664-7e48-45ad-aa15-4711993165a3','3b80982a-28cd-44f1-8d72-59c4daf5e636','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-20 11:08:07.108','2025-03-20 11:08:07.108','2025-03-20 11:08:07.108','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:25:13.927','2025-04-02 18:57:11.016',NULL),
('f9e877a9-d1e4-4a33-b015-15f6e0464514','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 06:57:41.269','2025-04-24 06:57:41.269','2025-04-24 06:57:41.269','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.248',NULL),
('fa2d1b8a-6837-46cf-b8d2-8cb5ac8a55a3','c2d4ce84-536d-4816-837f-7abbf6a7e061','9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5','2024-11-21 10:35:18.069','2024-11-21 10:35:18.069','2024-11-21 10:35:18.069','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-11-21 10:48:12.095','2024-12-02 09:51:49.609',NULL),
('fa3b3963-3b36-44f3-bbcd-b32eeb120707','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-07 14:23:46.266','2025-10-07 14:23:46.266','2025-10-07 14:23:46.266','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 06:45:24.556','2025-10-17 10:53:07.478',NULL),
('fa6c0896-b2a8-4794-9ac0-b39c590088cc','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-01 09:02:19.457','2025-10-01 09:02:19.457','2025-10-01 09:02:19.457','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-07 14:59:47.681','2025-10-07 15:17:28.365',NULL),
('fa6d8849-685e-4bb9-a08c-71f848e8b3cd','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-22 15:02:58.353','2025-09-22 15:02:58.353','2025-09-22 15:02:58.353','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-03 15:04:04.714','2025-10-03 16:08:51.034',NULL),
('fa74001b-53bb-4439-86b2-6b74cd952399','fbe6fd55-96a9-4517-8757-adbf109bf9ca','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-02 14:11:26.767','2024-09-02 14:11:26.767','2024-09-02 14:11:26.767','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-02 14:18:13.249','2024-09-09 13:32:42.462',NULL),
('fa8c8e3f-aaf5-4b8f-a85d-51ba693c635e','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-08 08:43:02.235','2024-04-08 08:43:02.235','2024-04-08 08:43:02.235','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-08 08:45:40.779','2024-04-08 08:45:40.779',NULL),
('fa8db1a2-aa41-4f46-a476-f73d752aa005','b734c482-3c00-4897-ad35-bc358cd02d56','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-16 08:16:53.990','2024-03-16 08:16:53.990','2024-03-16 08:16:53.990','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-16 08:19:16.020','2024-03-22 11:20:49.898',NULL),
('fabc4219-5902-45b7-bad7-11ed737ea83e','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-08 14:33:38.042','2025-07-08 14:33:38.042','2025-07-08 14:33:38.042','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.856','2025-07-16 14:21:29.473',NULL),
('fad66a55-c881-4265-9787-8f74cbf6ee4f','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-07 09:55:13.804','2025-02-07 09:55:13.804','2025-02-07 09:55:13.804','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-15 10:11:41.018','2025-02-15 16:08:16.820',NULL),
('faff98a1-4f89-4d26-9757-f51c6bf23519','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-23 07:13:29.037','2024-03-23 07:13:29.037','2024-03-23 07:13:29.037','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-23 07:18:43.387','2024-04-01 11:32:44.727',NULL),
('fb190adc-7788-46a1-a91f-e5573f3da181','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-20 10:34:49.148','2025-10-20 10:34:49.148','2025-10-20 10:34:49.148','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-25 08:43:45.316','2025-10-25 08:58:43.935',NULL),
('fb5175c2-d773-4bf5-97c7-5deb05b88d27','59868701-abe4-4705-a7e6-d91c2c69262e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 12:00:36.206','2025-07-31 12:00:36.206','2025-07-31 12:00:36.206','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-02 12:04:14.881','2025-09-02 14:46:19.361',NULL),
('fb5fe7db-85d0-4022-80ed-ed376e522e9a','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-08-18 07:36:18.349','2025-08-18 07:36:18.349','2025-08-18 07:36:18.349','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-30 12:10:41.288','2025-09-05 08:55:11.150',NULL),
('fb6645f5-c70e-4a3c-9ce2-4f7b4ece6e13','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-04 09:30:46.669','2024-05-04 09:30:46.669','2024-05-04 09:30:46.669','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-04 09:35:08.632','2024-05-04 09:35:08.632',NULL),
('fb8176fd-c26b-4751-9221-2b326fa99860','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-24 07:48:56.702','2025-04-24 07:48:56.702','2025-04-24 07:48:56.702','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:44:23.805','2025-05-02 11:56:13.211',NULL),
('fb93c321-7df1-4719-85f8-d04e9b5dd5e4','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-19 11:45:50.253','2025-09-19 11:45:50.253','2025-09-19 11:45:50.253','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-25 16:04:06.496','2025-09-26 12:34:13.491',NULL),
('fb946f71-85bd-488f-a296-d57af2b3d738','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-02 08:13:07.171','2025-07-02 08:13:07.171','2025-07-02 08:13:07.171','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-15 14:18:27.815','2025-08-18 08:09:19.447',NULL),
('fbb90cd2-0d77-4b30-b199-234cd7cd6970','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 07:29:17.119','2025-04-30 07:29:17.119','2025-04-30 07:29:17.119','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:51:28.887','2025-05-02 11:56:13.317',NULL),
('fbc053ea-3c8a-40cb-9e99-7e102c5c99d7','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-21 09:37:46.714','2025-03-21 09:37:46.714','2025-03-21 09:37:46.714','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.369',NULL),
('fbcfae00-6e02-4be7-ac2a-253fe8ecf065','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-17 10:51:49.945','2025-06-17 10:51:49.945','2025-06-17 10:51:49.945','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-27 17:09:48.502','2025-07-01 09:19:38.914',NULL),
('fbf9e931-bed3-405f-99bf-2b7b2e2650a4','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-10 14:29:22.000','2025-10-10 14:29:22.000','2025-10-10 14:29:22.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.404','2025-10-22 12:57:59.253',NULL),
('fc1102a7-a291-4e51-83ba-647db9a1baf2','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-13 08:07:26.282','2025-05-13 08:07:26.282','2025-05-13 08:07:26.282','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-23 06:32:31.764','2025-05-26 13:23:22.645',NULL),
('fc1dc8ae-c816-4ded-8a44-895528856c76','22a1dbd6-475c-4d4b-bb13-f459e3029634','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-14 08:55:46.051','2025-01-14 08:55:46.051','2025-01-14 08:55:46.051','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-22 08:43:42.642','2025-01-22 09:40:15.591',NULL),
('fc2d8698-b5bf-4a87-8bdb-3448b7a3ea32','338e8c09-4ca5-4617-bfc1-a0692646d475','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-31 14:00:45.003','2025-01-31 14:00:45.003','2025-01-31 14:00:45.003','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-24 12:29:41.705','2025-04-02 18:57:10.983',NULL),
('fc4f33ae-15ad-4a8d-b37e-c1c511c400ac','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-05-20 06:38:06.576','2025-05-20 06:38:06.576','2025-05-20 06:38:06.576','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-12 09:16:05.714','2025-07-16 14:21:29.678',NULL),
('fc5c1228-d7f1-4cb2-8e86-518462f7abb0','3b80982a-28cd-44f1-8d72-59c4daf5e636','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-14 15:07:18.504','2025-04-14 15:07:18.504','2025-04-14 15:07:18.504','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-26 14:41:20.302','2025-04-28 07:39:38.831',NULL),
('fc5dc702-b849-473c-9519-33074632f1e0','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-05 13:57:12.747','2025-01-05 13:57:12.747','2025-01-05 13:57:12.747','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:00:42.571','2025-01-07 17:06:26.277',NULL),
('fc6c6d5a-67d5-4815-9af0-ddbc26e9f53c','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-08-10 15:27:55.265','2024-08-10 15:27:55.265','2024-08-10 15:27:55.265','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-08-10 15:30:08.757','2024-08-23 09:03:06.032',NULL),
('fc823446-1196-4612-8d24-398503f57e52','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-30 08:39:44.348','2025-07-30 08:39:44.348','2025-07-30 08:39:44.348','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-14 07:43:55.149','2025-08-14 08:02:29.717',NULL),
('fc9b7a27-0a6d-4f1d-a61b-6edc35f1c919','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-07 09:08:21.782','2024-12-07 09:08:21.782','2024-12-07 09:08:21.782','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 09:17:31.180','2024-12-17 19:52:32.905',NULL),
('fcaddd8c-cf10-4c12-988a-3938056061e1','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-07-22 14:04:01.938','2025-07-22 14:04:01.938','2025-07-22 14:04:01.938','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-29 12:26:43.590','2025-07-29 12:37:20.424',NULL),
('fcbbda4a-7d73-4217-98ee-778a6d0d0287','73596a75-b658-4249-8c71-b0490654bc8b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-05 14:01:02.754','2025-01-05 14:01:02.754','2025-01-05 14:01:02.754','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-05 14:02:39.709','2025-01-07 17:06:26.301',NULL),
('fcd06676-d348-4155-ae21-ed947f96d236','d92bec02-a9d2-4e8e-88e6-6b64208e6b26','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-09-03 11:14:32.727','2025-09-03 11:14:32.727','2025-09-03 11:14:32.727','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-05 17:48:44.932','2025-09-06 09:41:31.911',NULL),
('fd081783-6354-4e0b-80ba-4ea8ef0e0ed3','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-28 15:31:44.726','2024-09-28 15:31:44.726','2024-09-28 15:31:44.726','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-28 15:43:42.385','2024-09-30 09:50:41.880',NULL),
('fd149ce6-6967-4840-9af3-740b83bd00c5','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-07 20:47:16.868','2024-04-07 20:47:16.868','2024-04-07 20:47:16.868','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-07 20:48:53.493','2024-04-07 20:48:53.493',NULL),
('fd180be3-03fa-407c-ba45-2ad0b1b2abbd','e41c8c53-684c-4376-8162-2e589c44b742','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-10 10:00:23.466','2025-06-10 10:00:23.466','2025-06-10 10:00:23.466','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-07-26 07:22:40.576','2025-07-26 08:40:12.312',NULL),
('fd426a51-738f-415a-a764-dfce24be9424','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-23 10:19:03.273','2024-04-23 10:19:03.273','2024-04-23 10:19:03.273','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-23 10:20:29.433','2024-04-23 10:28:41.782',NULL),
('fd4d9ff0-0650-4233-9e39-feef8d060129','daf7fb45-7940-4f5b-8733-e2e2d6030da7','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-05 16:10:17.106','2024-12-05 16:10:17.106','2024-12-05 16:10:17.106','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-13 13:16:19.811','2024-12-16 18:41:52.597',NULL),
('fd7ca54b-465d-446f-a061-3dc486ca41d6','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-20 13:44:12.479','2025-09-20 13:44:12.479','2025-09-20 13:44:12.479','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.349','2025-10-22 11:29:52.599',NULL),
('fd985eca-c7f4-4ec9-9cf2-7e945a139ca4','a42d8839-caef-4422-888f-cbfdf4188c5b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-08-01 09:11:44.886','2025-08-01 09:11:44.886','2025-08-01 09:11:44.886','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-07 16:13:53.402','2025-08-12 08:07:30.333',NULL),
('fd997592-2029-49d5-b68b-e0e828f32045','6133a2db-79c4-4372-9338-505db46b1847','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-10-02 12:37:30.690','2025-10-02 12:37:30.690','2025-10-02 12:37:30.690','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-22 07:51:14.261','2025-10-22 11:29:52.636',NULL),
('fdb85b5e-3697-4876-bb3b-b24d1256ce50','3c7190b6-f6ee-4275-8958-d7af952132ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-16 10:05:16.438','2025-04-16 10:05:16.438','2025-04-16 10:05:16.438','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-25 15:41:06.232','2025-04-26 07:32:55.614',NULL),
('fdb9d180-53fa-4d37-8073-3b67fb43d6ff','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-18 10:40:29.115','2025-03-18 10:40:29.115','2025-03-18 10:40:29.115','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-03-25 19:20:46.451','2025-03-29 13:37:01.720',NULL),
('fde1454a-afb6-4c77-b7fd-af1fa8aefe03','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-09-27 13:20:38.817','2024-09-27 13:20:38.817','2024-09-27 13:20:38.817','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-09-27 13:23:29.327','2024-09-27 13:23:29.327',NULL),
('fde1646f-c298-4356-85ad-94151c4c6d74','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-04-30 08:49:35.512','2025-04-30 08:49:35.512','2025-04-30 08:49:35.512','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-30 13:55:21.569','2025-05-02 11:56:13.282',NULL),
('fde1efbc-18ec-4825-a373-fb7879826879','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-04-01 09:17:10.167','2024-04-01 09:17:10.167','2024-04-01 09:17:10.167','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-04-01 09:19:43.647','2024-04-29 09:20:52.191',NULL),
('fde2d7bc-fd36-42dd-9eec-3e8c82c5d6fb','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-05-26 09:27:22.142','2025-05-26 09:27:22.142','2025-05-26 09:27:22.142','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-05 14:19:23.965','2025-06-06 02:46:03.967',NULL),
('fe155a75-83a5-4353-a256-0e098b3ebc0f','1bf2ee62-29f3-4d32-9c25-7d51c7d34096','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-05-11 08:49:14.649','2024-05-11 08:49:14.649','2024-05-11 08:49:14.649','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-05-11 08:50:56.737','2024-05-17 14:16:33.228',NULL),
('fe3b2dfb-fe11-4901-84fc-8940cf676261','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 07:37:58.902','2025-09-15 07:37:58.902','2025-09-15 07:37:58.902','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-01 07:00:04.453','2025-10-01 07:56:23.210',NULL),
('fe4bed2f-ca61-4a73-94f1-8705a39bfb54','02756ab4-fa8a-408f-b81c-76a84dc82d6f','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-07-26 13:37:50.094','2024-07-26 13:37:50.094','2024-07-26 13:37:50.094','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-07-26 13:40:48.991','2024-07-30 14:40:02.050',NULL),
('fe4dcd3a-286c-4e2e-af24-bf6afeb3a999','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-01-15 10:56:41.423','2025-01-15 10:56:41.423','2025-01-15 10:56:41.423','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-01-26 10:31:51.796','2025-01-29 12:24:52.659',NULL),
('fe581321-cd6d-4039-bffd-96abb466661c','fabe2c23-b5a5-4123-a962-af519ac31d3b','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-06-25 10:52:26.332','2025-06-25 10:52:26.332','2025-06-25 10:52:26.332','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-25 10:58:22.233','2025-06-26 16:05:22.659',NULL),
('fea9a44a-7502-44b2-8e64-1a487a738664','98ea2dbd-82be-4bbe-b758-b7175c0f8659','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-16 13:00:18.831','2024-10-16 13:00:18.831','2024-10-16 13:00:18.831','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-16 13:02:12.043','2024-10-17 12:50:26.176',NULL),
('fee30128-e2bf-4566-a9bc-3593d0c1d8dd','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-30 08:57:16.034','2024-03-30 08:57:16.034','2024-03-30 08:57:16.034','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-30 08:59:39.049','2024-03-30 08:59:39.049',NULL),
('ff26dc3c-f00c-4741-90bd-8d5637e06602','e6d4faef-484c-4ce7-992c-906e05fc083e','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-03-27 08:10:06.051','2025-03-27 08:10:06.051','2025-03-27 08:10:06.051','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-04-15 09:07:09.163','2025-04-15 09:32:18.376',NULL),
('ff279a14-d088-4161-958d-5f2a64d7ad2f','a42d8839-caef-4422-888f-cbfdf4188c5b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-06-08 06:45:42.134','2024-06-08 06:45:42.134','2024-06-08 06:45:42.134','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-06-08 06:49:16.463','2024-06-10 14:51:43.633',NULL),
('ff3ca80c-51a2-4909-9847-2dea7c512efb','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-06-19 08:14:38.982','2025-06-19 08:14:38.982','2025-06-19 08:14:38.982','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-06-26 10:30:49.502','2025-07-01 09:19:39.031',NULL),
('ff50bd4a-2d7b-4c5c-ba59-1a6526f20b86','8d03b939-d544-45f8-8173-464bea4e67ab','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-07-31 07:30:28.562','2025-07-31 07:30:28.562','2025-07-31 07:30:28.562','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-08-21 07:01:13.866','2025-08-21 08:12:56.885',NULL),
('ff6fd546-f0ec-4c3f-82c7-94480bac2656','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-12-05 11:09:58.917','2024-12-05 11:09:58.917','2024-12-05 11:09:58.917','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-12-07 08:50:53.387','2024-12-17 19:52:33.012',NULL),
('ff7bc00c-86a1-45f1-87f3-1fa353a163d9','c2d4ce84-536d-4816-837f-7abbf6a7e061','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-24 10:34:00.750','2025-09-24 10:34:00.750','2025-09-24 10:34:00.750','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-09-24 10:40:16.984','2025-09-24 13:55:14.377',NULL),
('ff7dd1fa-4756-4cbe-a969-c5d7e5c8f80e','d89f6e4c-ad0d-4d1f-98c2-188a94803196','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-15 10:38:30.000','2025-09-15 10:38:30.000','2025-09-15 10:38:30.000','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-17 10:48:44.611','2025-10-17 10:53:07.597',NULL),
('ffaa4df2-9a43-4578-b26d-1929266d1484','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-09-14 16:33:42.278','2025-09-14 16:33:42.278','2025-09-14 16:33:42.278','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-10-13 07:14:08.923','2025-10-14 09:26:02.875',NULL),
('ffd5ac1f-6e81-46f5-87ba-4c491a320bcb','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-10-04 12:25:56.265','2024-10-04 12:25:56.265','2024-10-04 12:25:56.265','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-10-04 12:30:27.966','2024-10-23 15:08:26.454',NULL),
('ffe42dc8-6d60-4c5c-85f9-e3073e404b01','3c7190b6-f6ee-4275-8958-d7af952132ab','05135cd5-2d33-4363-b51e-c9b83a94094d','2025-04-30 12:27:54.874','2025-04-30 12:27:54.874','2025-04-30 12:27:54.874','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-05-14 16:56:37.597','2025-05-14 17:03:19.084',NULL),
('ffe8fde8-8b74-40d0-9cf8-01d44f45bc5d','47880255-08ee-4e99-940b-16038e07de55','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2025-02-12 07:47:23.225','2025-02-12 07:47:23.225','2025-02-12 07:47:23.225','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2025-02-18 16:29:44.418','2025-02-27 13:37:30.576',NULL),
('fff91ae8-891a-4ccc-8125-66e9f91bf581','4126da30-ba9b-41b7-be29-865069aa484c','51b55e5b-7487-4d8a-923e-163f04d0b1d9','2024-03-12 10:23:37.043','2024-03-12 10:23:37.043','2024-03-12 10:23:37.043','SELL','Nakit',1,NULL,NULL,NULL,NULL,NULL,'2024-03-12 10:25:16.427','2024-03-14 13:38:29.726',NULL);
/*!40000 ALTER TABLE `transaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `transactionitem`
--

DROP TABLE IF EXISTS `transactionitem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `transactionitem` (
  `id` varchar(191) NOT NULL,
  `transactionId` varchar(191) NOT NULL,
  `barcode` varchar(191) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `quantity` double NOT NULL DEFAULT 1,
  `unit` enum('C62','GRM','KGM','MTK','MTQ','LTR','MTR') NOT NULL DEFAULT 'C62',
  `price` double NOT NULL DEFAULT 0,
  `discount` int(11) NOT NULL DEFAULT 0,
  `tax` int(11) NOT NULL DEFAULT 0,
  `description` text DEFAULT NULL,
  `productId` varchar(191) DEFAULT NULL,
  `shipmentId` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `transactionitem_shipmentId_key` (`shipmentId`),
  KEY `transactionItem_productId_fkey` (`productId`),
  KEY `transactionItem_transactionId_fkey` (`transactionId`),
  CONSTRAINT `transactionitem_productId_fkey` FOREIGN KEY (`productId`) REFERENCES `product` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `transactionitem_shipmentId_fkey` FOREIGN KEY (`shipmentId`) REFERENCES `shipment` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `transactionitem_transactionId_fkey` FOREIGN KEY (`transactionId`) REFERENCES `transaction` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `transactionitem`
--

LOCK TABLES `transactionitem` WRITE;
/*!40000 ALTER TABLE `transactionitem` DISABLE KEYS */;
INSERT INTO `transactionitem` VALUES
('00109cfc-369f-4820-beac-ab027a40598c','ad19c44f-e68e-4789-ae30-c02ec3c2da04',NULL,'MAHMUT ÇELİK - 478370539',4,'MTQ',130,0,0,NULL,NULL,'e637af8d-f91f-4227-b5af-f95f10dd7e2f'),
('003183f3-b2ca-40c5-8e84-783e379bf28c','a4fc3cfc-429b-4a2f-9dbe-f3887fbe1e8b',NULL,'KADER ŞAHİN - 598719647',5.5,'MTQ',110,0,0,NULL,NULL,'bedc8bfd-1431-4017-9109-bedbb2184827'),
('003a1239-57e1-4f7b-a102-53c9dbf42e68','188d5dff-01b7-42be-823b-ef48d3bf8ce4',NULL,'SİAART MERMER - 663743560',2,'MTQ',0,0,0,NULL,NULL,'6fc699fb-c118-45cb-9d3b-8275ec921ec5'),
('0056400e-7cbc-4bab-acc0-d2f8c89cafd5','fbb90cd2-0d77-4b30-b199-234cd7cd6970',NULL,'DERMAN YATAK MURAT ÇAYAN - 412913992',6.5,'MTQ',0,0,0,NULL,NULL,'85b0f72f-07ea-48eb-90eb-1dd0abae2a87'),
('00600706-4706-4721-86e5-4d2a209a45c6','d6be93fc-0d35-449b-b0ae-6b99dd1e0149',NULL,'SELAHATTİN BAŞPINAR - 47835620',1,'MTQ',110,0,0,NULL,NULL,'683d27ef-d6a6-4b68-8486-43f1c42af547'),
('0069dcb9-a9ca-42e5-a447-3fc1096a8928','d250f929-b5d8-4b6d-80c9-8994abffd7e2',NULL,'YUSUF DURSUN - 501668492',4.5,'MTQ',120,0,0,NULL,NULL,'df272a39-1da5-45c1-8cc4-f06c8c993887'),
('006e8cbd-abf7-4351-bd7f-8ec9e45329dd','4d875d47-657e-4bce-9844-5fd2909c13f1',NULL,'MUHAMMED EL BOUCHATTAOUI - 976235260',3.5,'MTQ',130,0,0,NULL,NULL,'fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e'),
('00766c3d-5a76-4ee2-a1a2-20ac57af3867','c1e99df5-0d9e-4fa2-997d-7e3ee1a99f8b',NULL,'ERKUT PEKTAŞ - 478474988',5.5,'MTQ',140,0,0,NULL,NULL,'0f83b9ec-6ba6-4b67-812d-586619784634'),
('008cd494-aaed-4458-9a31-3f3009c7a483','7ba7fcf3-be3f-4d07-8487-ddd352bcf631',NULL,'MUHAMMET TÜRKMEN - 745952430',2,'MTQ',130,0,0,NULL,NULL,'30529cb9-4bbf-4a63-8d88-6ac4e67509cb'),
('0097dbe8-2c50-4cab-aa02-f59b2f8291c3','f3c5dcec-e88d-4c2b-9278-e6cd55925948',NULL,'SONJA HUSSAİNİ  - 982529212',4,'MTQ',100,0,0,NULL,NULL,'e3b1cbd7-aa49-4695-b628-c4b08d2b645d'),
('00aa3a6c-916c-4274-a6e1-b6d046dd5c9e','b35a75ab-3a4f-46fc-ae80-036e86ada193',NULL,'AHMET GÜVEN - 657832584',2,'MTQ',120,0,0,NULL,NULL,'486d73c0-74f0-41fc-a42f-8c39f323cc01'),
('00aae6b2-8485-4d96-8d7b-7df9e122afba','22f02c22-1e4a-4224-848b-069bb48a2748',NULL,'YATAK ODASI - 248143023',1,'MTQ',0,0,0,NULL,NULL,'48196fd5-d544-4ced-9605-49aae5ad4f08'),
('00bfe9a1-1c17-44f6-bbf5-de261aae6d9b','f008b326-7afd-4733-af68-58f7b1b48835',NULL,'SOUQİ İMANE - 976185606',3,'MTQ',130,0,0,NULL,NULL,'92ff5019-7ca9-4eef-a75a-ac187b9be39d'),
('00c55c9e-63c2-4f52-ab2f-160be5587a06','7f95486a-42da-493b-be1e-298f446cd6fd',NULL,'DİLEK GÜNEY - 26896907',2,'MTQ',0,0,0,NULL,NULL,'4895452e-4598-4194-8203-cf9f5506200a'),
('00e0f895-a274-43f1-915f-277c1ca3f9d8','4140be81-527a-4270-8127-f4ff99945161',NULL,'AMELA MULİC  - 982972858',5.5,'MTQ',100,0,0,NULL,NULL,'f0b80554-e825-487a-9ec5-ec30be5eade8'),
('00fe2a35-a21f-469a-acd3-c2f8160d96bd','7694da57-b581-4025-8603-907fcea65910',NULL,'NESLİHAN DEMİR - 371586742',3,'MTQ',110,0,0,NULL,NULL,'61630d35-0a19-4513-83ef-94b891cf12e5'),
('010c6ae9-885f-4434-a82d-930cf74d5ae4','c2a5ac21-ab98-40b5-9d6e-2a94dad94d16',NULL,'FERHAT SANUÇ - 011573387',5,'MTQ',120,0,0,NULL,NULL,'5400fc28-c829-4ccc-a810-54ae598d5606'),
('010f55b0-581b-477e-8f70-1c91f0d8287d','60874263-1f59-4da0-8b42-034316ac8b20',NULL,'SOFİA KYRİAKİDOU - 371186967',3.5,'MTQ',110,0,0,NULL,NULL,'8d2106dc-0692-4d32-a05c-11091d0b412b'),
('01230130-ade1-4776-b8e1-989bfa6571cd','562ac396-ef3f-4423-a11d-5080eefef710',NULL,'SEZGİN- FURKAN ÇULLUK - 162571177',6,'MTQ',0,0,0,NULL,NULL,'f53e9e60-357b-4a35-b093-f6db8c2a511e'),
('012e6cff-577e-452a-9019-67ca26e72fdb','7aebf5e6-3198-4062-9232-06b2efc5b643',NULL,'TAYLAN KAZAL - 371179895',3.5,'MTQ',110,0,0,NULL,NULL,'443b2d74-2924-44bf-be40-fea72295fd6c'),
('013a73e3-f5a1-41a7-9ca6-517d536e67e4','6c1651d5-9b18-4e9b-b3fe-433d2f47e40a',NULL,'ONUR ÖZÇELİK - 371695056',3.5,'MTQ',110,0,0,NULL,NULL,'06e56b2e-9b9b-4c5b-8022-4849479f4e4a'),
('016d3ecf-0bc2-4f3a-a7d5-5aac405f28e3','385ff2b4-e41a-4a76-98f0-98670bcc4131',NULL,' - 655419413',1,'MTQ',110,0,0,NULL,NULL,'35f1b0f1-bc4f-4e6f-8148-f2b91da14c77'),
('01daf449-2243-4a2d-9533-da9bf2b437bb','37f6f035-0434-4fdb-ae5f-e9319d6d6e34',NULL,'Erkan ÖZKÖKKAYA - 734788911',4.5,'MTQ',100,0,0,NULL,NULL,'8197b3b9-ae6a-4c96-ac0a-85c38b7a4871'),
('01f05e91-bc96-4719-87cf-e40450face8b','c1c69d0f-f5f8-4802-9841-cf961847d140',NULL,'KENAN SEKMEN  - 01914447',2,'MTQ',120,0,0,NULL,NULL,'97182860-1f38-433b-b884-7944ccda1a30'),
('01fc7f62-7af4-4285-a84b-ea7e51ffa2a7','385282ea-b3b3-459b-81e7-8bb6f835926d',NULL,'MERHDED AKHTARİ - 449680755',1,'MTQ',100,0,0,NULL,NULL,'ad1fc3b4-d18e-491b-969b-dea74538868b'),
('023030e7-075d-4290-bc46-4f65bec81000','b158d0e2-0b35-40bb-8795-8a497967f371',NULL,'ŞÖFÖR MEHMET - 412395222',5.5,'MTQ',0,0,0,NULL,NULL,'3dce54b1-e7aa-464d-b22d-56c831e082b2'),
('0246474c-d297-436d-b9ed-26c1872062ac','ee9cce28-2561-4fc5-9d12-30f0d9b961b8',NULL,'LAURA SCHMİTT - 613721320',2,'MTQ',110,0,0,NULL,NULL,'64f79831-49d1-48f5-a6e6-698737009565'),
('02e0e46f-8d1d-488e-84cf-904c3f36dd9f','4e40b15c-d883-4bc6-90b4-a8b7dc758533',NULL,'HATİCE GÜNGÖR - 465634666',2,'MTQ',120,0,0,NULL,NULL,'4d90aba0-8b4f-4e5c-b747-d70de9be6cb4'),
('02f1d48a-7572-47fe-9685-00c6f4e9db84','61cb6f82-ebfe-4dff-9db9-ea8b9e34c6f0',NULL,'ESRA BALTACI - 644711459',5.5,'MTQ',110,0,0,NULL,NULL,'71f0d0b2-3d17-43c7-bf48-7355e5d7675a'),
('030eca44-831e-43ea-af9b-f2dc890128fb','b5c38919-8210-440c-94eb-18e97082939f',NULL,'UMUTCAN ŞAHİNCİ - 437870707',6,'MTQ',110,0,0,NULL,NULL,'dcbe7eee-e054-430d-b60c-71cef3ff6b80'),
('034e91d9-18e7-40ec-8eee-35d84cbef32e','c4e7444f-7fc9-4628-8d4d-1f710d26794e',NULL,'INTERCASH - 412838128',2,'MTQ',0,0,0,NULL,NULL,'adb2b821-db09-48e2-aa73-097ac1069722'),
('037f9486-f04e-4857-b196-db0c5e3cd415','a88b4113-18df-4285-b3c0-1aa91bf02432',NULL,'PASS - 412315808',2,'MTQ',0,0,0,NULL,NULL,'b8568cae-1462-47fa-adc8-9f74f45d83c7'),
('038cfd81-3f9e-4620-b985-9455783c5479','1f7368e6-4e70-4ed2-8d06-7a114427daa7',NULL,'RUHİ MANAV  - 79354282',3.5,'MTQ',0,0,0,NULL,NULL,'7e6be2bc-3fb4-4348-b595-2abc3ea964a0'),
('0391dbff-4fbb-4abc-9d15-ab0e65dbd6c0','fe155a75-83a5-4353-a256-0e098b3ebc0f',NULL,'MÜLLER CYRİLL - 126525086',1.5,'MTQ',140,0,0,NULL,NULL,'dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4'),
('03c8eb22-9a08-4b53-aa42-b864816a4136','74aa4e07-249a-4b68-8f70-0f2c30428407',NULL,'SİBEL ÖZTAMUR - 817872283',3,'MTQ',110,0,0,NULL,NULL,'935f330d-55f1-4c8c-bb42-ed0f8f8433bc'),
('03ccf4f4-6cd9-4903-ad3b-4388b810392a','24900fbc-d779-4ef6-b725-19ed9a7ff679',NULL,'GÜLÇİN İSMAİLÇEBİOĞLU - 31925609',4,'MTQ',120,0,0,NULL,NULL,'4a5b9bbc-8625-4b70-95ee-60399f0043bf'),
('03f1e95b-fa43-444e-b778-c67cdf1d2ca6','3073c380-1997-4ecf-a834-95393a3a9b94',NULL,'OSMAN KILINÇ - 478205168',2,'MTQ',130,0,0,NULL,NULL,'2f2a65eb-44bb-4a5a-b907-73d6c6c49771'),
('03fd0c7d-0bb9-42f6-beea-89d2bc60d5fa','6d489d2f-6729-41b9-bddd-18292d79f11f',NULL,'METİN NEŞELİ - 478345732',6,'MTQ',105,0,0,NULL,NULL,'a97987c9-ee05-4a3f-94b1-9f85768072d8'),
('040c4bfc-b79b-4853-8971-d4948f44fc2f','b2ca928d-e26e-46ed-afee-a89ecbf97176',NULL,'HALİT SEVER - 750363306',6.5,'MTQ',120,0,0,NULL,NULL,'5d9fc79f-710b-4e63-8698-fbbd03275cc8'),
('040cea28-db96-4a81-b0f0-9867cd8b807d','3c9359e5-b305-426a-81bd-f9a51972b474',NULL,'MERVE BEKTİK - 43752518',6.5,'MTQ',120,0,0,NULL,NULL,'eb7486ef-1def-475a-94cb-2a65d39933d5'),
('0443b0ee-6e4e-4827-8e99-6055444dca2b','ee9ec405-187c-4905-9f19-479319ad4327',NULL,'ÖZCAN ŞAHİN - 644589662',3.5,'MTQ',110,0,0,NULL,NULL,'846144fe-95bb-4d2a-83ea-4552d599f458'),
('0462199a-28d1-4447-b4ea-1bfea6a4adde','fbf9e931-bed3-405f-99bf-2b7b2e2650a4',NULL,'ŞENEL KURU - 776312220',6,'MTQ',110,0,0,NULL,NULL,'6185b161-cfc2-4a8a-a2f2-c2e05c20c446'),
('0463bb87-eb39-4bd6-a165-1fb0758523f6','e441ccfa-4ee6-460c-98cb-cbbce63edb06',NULL,'donya bazaz - 982692076',4.5,'MTQ',140,0,0,NULL,NULL,'32e2befd-32f1-4bb7-a60e-635dd9c600ef'),
('04957c2d-6eea-4118-83b3-af94a650017c','993600ef-064a-4702-91c2-e90e449e82f7',NULL,'KEVSER DENİZ  - 221368256',2.5,'MTQ',120,0,0,NULL,NULL,'e24a5a16-cb38-43a9-8612-8532bd457d6b'),
('049623a4-127e-440b-b2d7-6c7cff584199','e3e2936d-26ea-4acc-92f8-58296f653ad1',NULL,'MURAT  - 163548367',4,'MTQ',110,0,0,NULL,NULL,'923a076a-9ebb-431d-9f79-3f5aa33e3231'),
('0497db86-e939-4ee7-a1f8-360b7c7d1005','60a9cf9c-1aa0-4fcb-87ce-dc5f3c2c8a4e',NULL,'NERMİN KAZAN  - 786146097',18,'MTQ',110,0,0,NULL,NULL,'d99ae93f-dd73-4f33-a6a3-1bd33e17655a'),
('04ec6964-1970-41e0-8b5a-b4dea21cd9cc','fdb85b5e-3697-4876-bb3b-b24d1256ce50',NULL,'MEHMET ORHAN - 371122828',2,'MTQ',120,0,0,NULL,NULL,'f478ae42-a366-4d1f-a16f-c78bdf279680'),
('05138263-34a9-4bf4-975e-f44a3b66e9a4','b77603d6-5867-471a-a5e0-0ee119c517b9',NULL,'NURTEN YILMAZ - 338411614',6.5,'MTQ',110,0,0,NULL,NULL,'02f21391-f1d5-4bee-b4d9-17f65a20feb7'),
('05195bab-0a87-441e-a818-fbf143e95443','e2a6d2e8-2793-4dfd-b756-bd972f160954',NULL,'BİANCA AGOSTİNHO - 221439268',2,'MTQ',140,0,0,NULL,NULL,'5e22a843-fca3-49b3-ab98-7ed84747a703'),
('051b604d-08ff-4cc7-b995-2b1f1a1a7abe','669ea332-3569-47c3-b067-5c3d6b515db9',NULL,'KADER KAVAL  - 817213476',3.5,'MTQ',110,0,0,NULL,NULL,'834b59f5-b6eb-4131-ba77-6e6e2220713b'),
('0520a834-2d67-4500-94b1-ff65cbe4853f','b3b46d4c-0123-44b7-b0b7-8d24875687b2',NULL,'TAŞLAR - 248475044',2,'MTQ',110,0,0,NULL,NULL,'bf721424-1a05-4d9c-95f0-728c336c9ab9'),
('05308c34-668f-4b4f-a41a-e2797aed8a60','056312aa-e3e7-4519-bbe9-d08dbfaf8974',NULL,'SERAP ÖZTEK - 437660658',5.5,'MTQ',110,0,0,NULL,NULL,'18ef4d21-d80d-45a3-9290-b7d6562f11b5'),
('054c9fbc-4642-49d8-b1f2-473262373b13','444f0b4a-a933-46fa-901b-8fc9719244a3',NULL,'SAMET ÖZTÜRK  - 911787432',17,'MTQ',0,0,0,NULL,NULL,'6820eacc-9bd4-4db6-87db-45adf3959c56'),
('05583cd2-318f-456a-8cdd-743ed7b465e5','c7496961-25d0-4588-a188-9cc8b0a86fd3',NULL,'ÖZGÜR GÖKÜZÜM - 22142813',2.5,'MTQ',120,0,0,NULL,NULL,'83b6fa22-325d-4428-9f65-24d93d1dbfb4'),
('058fedf6-a1f3-47f6-92fc-c3fa379f16b0','253b4ee0-5c69-4fad-a654-ef8e4fc34ff6',NULL,'MAİL BOXES ETC  - 223896175',2,'MTQ',0,0,0,NULL,NULL,'1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6'),
('05905b31-6c0e-492d-a6cc-bb087700fca6','a40c753f-47c8-426a-948c-44c777dbeda0',NULL,'TUĞBA BALIKÇI - 437154123',2,'MTQ',110,0,0,NULL,NULL,'3b6129d0-8adb-475b-a9bb-394ff6773ada'),
('05a80f24-cb84-4c9b-b37a-170515c8de67','52eb8fd9-6948-41f4-996f-2006408cd1bf',NULL,'Mustafa İlhan - 976369647',4.5,'MTQ',110,0,0,NULL,NULL,'1fb32e39-501f-48b7-ba50-860c26209b78'),
('05bf836e-651e-420a-ae41-285ee578dee9','97832582-aa82-408c-a8a6-6dc700c47767',NULL,' MUSTAFA KHALİFEH - 081982015',5,'MTQ',110,0,0,NULL,NULL,'1ee5a386-3625-40ef-8fa2-25fe7d75616b'),
('05f693cd-37ee-4c7b-ab01-984f4ccdc0f1','a7588159-ec92-4a57-bd26-69bb6d71ca99',NULL,'Ajroski ajsun - 98285799',5,'MTQ',140,0,0,NULL,NULL,'c55504b4-7a7a-439e-8e37-908ee8343a67'),
('0608d6a4-45d4-4121-889b-de8e7e17dcc1','5593321f-c0b2-4973-8a1b-2908091e61be',NULL,'GALİNA KAMERER  - 613499620',2,'MTQ',110,0,0,NULL,NULL,'8e8833ae-bbf9-4cee-9bb5-b57d59626b5b'),
('06159283-75a2-4427-9ffd-8797ec5bd000','72c173c5-3839-4bc7-bef1-981c5f1c65a1',NULL,'DİLAY MERYEM CİKU - 371737204',3.5,'MTQ',110,0,0,NULL,NULL,'0e367b6a-44c3-40e4-9097-1055385b6e27'),
('06bb25fc-c1ae-4ef0-9824-726ec39ea7a4','f041528d-ade5-4bfc-986e-8cc3041896f2',NULL,'CANSEL KUŞ - 644684020',2,'MTQ',110,0,0,NULL,NULL,'6adcfcb9-e4f0-4b7d-895c-940cb17b62dd'),
('06d15866-d1bc-47da-b29a-a5ec0b49e6d9','38a3ca35-1689-454d-b5d0-d947c43a5390',NULL,'HALİDE ÖZAY - 745208965',4,'MTQ',130,0,0,NULL,NULL,'ca923043-bfdc-4e29-9cf4-8669f6d1b498'),
('06d764f3-fa7a-43e4-9d1f-8ee54736ccb2','cc083125-de68-469b-8f2b-45a6db5e0e75',NULL,'HÜSEYİN ELİF TUNCA  - 437809521',2,'MTQ',110,0,0,NULL,NULL,'090e53a7-9f47-40c2-990b-65dbc36b9e2c'),
('06de004a-35ac-4d70-9eb3-91481dce0591','f38a83b0-c17a-43f4-8ed9-b3659de38deb',NULL,'ERDEL SİBEL - 644968450',6,'MTQ',120,0,0,NULL,NULL,'44ab156f-e89c-4eaa-b7ab-1fed4206ce92'),
('06e3c947-5545-433c-92da-78cc38f57a89','7ed9bd9e-2620-417b-91b1-e58659f60183',NULL,'AYŞEGÜL GÖKTEPE - 478774501',2,'MTQ',105,0,0,NULL,NULL,'62caace2-8a1f-47b5-b5ca-7b5356657263'),
('06f9baec-f235-4d00-a107-94076ffb7396','4fa4655d-c104-4aab-a89c-457d42300bc0',NULL,'FEYZULLAH ALTEKİN - 959513288',2,'MTQ',110,0,0,NULL,NULL,'a9e92a4f-2e0c-410b-8783-a6088e15e8db'),
('06fdf609-0e44-4b41-992e-43f671befe44','d475d1ca-38f1-4235-a8ae-f184cd5bdd13',NULL,'NAHİDE BAHÇEÇİOĞLU - 478127271',5,'MTQ',100,0,0,NULL,NULL,'c44ad438-ca7d-42db-860f-ada68ed38828'),
('071fde40-ac9d-4f32-b0f9-0da5b70145d8','cbc98dcc-8182-4312-9da5-13c2e6ba9d9b',NULL,'FAHREDDİN ÖZENC - 745283309',1,'MTQ',100,0,0,NULL,NULL,'4d4ad16a-ebbb-41f2-9d01-d167180af909'),
('07305e2c-61f6-4914-97e2-4d60d539056f','df6055c8-61d3-48ec-bc4e-23d98d921aa7',NULL,'HASAN BEY - 448805304',14,'MTQ',0,0,0,NULL,NULL,'7ff713ea-32d3-468f-b2ec-bd1dde38b6ef'),
('073628ce-ec86-4307-a2b9-d719da6620d3','b2d4ba88-1643-46b4-b677-bcad8a66b5dc',NULL,'BEKİR TEKELİ - 437700144',4.5,'MTQ',110,0,0,NULL,NULL,'80cc77d6-2140-493c-a7df-e75aa5104691'),
('074994b2-7dc6-4729-bfe5-1c209fc94cb3','987f536c-0e00-46ab-9cbe-eba6c948f9f3',NULL,'MARİNE NETO - 43720744',2,'MTQ',130,0,0,NULL,NULL,'39b9f7fd-eff8-4a6e-975f-50fa78b8d93e'),
('0759f04d-f68a-47b9-bb62-5b7aa6383ee8','7bee87f3-468a-4f1e-97e8-287a71736c36',NULL,'ÖZKAN ERDEM  - 478862837',2,'MTQ',130,0,0,NULL,NULL,'7a71a4e0-3e90-4099-bd84-f11cdef53c31'),
('075f2fc2-485f-473d-b9e7-2ef00469e90e','1ae3c846-eeaf-4516-a373-eda6bf274a53',NULL,'HATEM  - 221341784',3,'MTQ',120,0,0,NULL,NULL,'ef665960-85ce-48ac-b924-d42b48473988'),
('0779261c-c449-4396-a176-f70f1f5cf52a','7c695766-ab67-4e74-ac81-431c11b3157c',NULL,'ENES TAHİRİ - 613803170',2,'MTQ',140,0,0,NULL,NULL,'bf953636-9909-460f-8244-8ec3b177251f'),
('07819cb5-3b31-4caa-b8b1-56a8e267169f','9b087f6d-5aad-49e1-9dac-efeae395e831',NULL,'ÖZLEM KIZILARSLAN - 644650618',2,'MTQ',110,0,0,NULL,NULL,'32d385ed-3e8f-402f-80a2-9531544e451a'),
('07a3d982-ca53-4265-a673-92072f9ebd8c','3c6b6edd-c1ee-4ca6-b72e-03c2ed1fc53a',NULL,'ALMİRA - 920610594',3,'MTQ',130,0,0,NULL,NULL,'65fd407c-2335-4e5b-a51c-a9a8124139b8'),
('07a68758-2508-44c6-a46f-93762bd722ec','63b900e3-707a-4b9e-8fe6-a3ad64415c19',NULL,'HÜLYA AKKOÇ - 735384295',1,'MTQ',0,0,0,NULL,NULL,'ed280e04-bf9d-4058-a9ca-c28010e0e3a6'),
('07b6f3c1-025f-4620-aa69-98128ad73bda','32d39977-60c9-4a39-9e1a-80a42255c476',NULL,'NEVZAT KAHRAMAN - 478212125',1,'MTQ',110,0,0,NULL,NULL,'2894ebed-fc17-429a-b8af-6ed24e9d7a59'),
('07ef8c40-6a4a-4afb-b6b8-88f3388a9639','03283386-8ee9-4942-ad44-1672a0740192',NULL,'LUSYA YILDIRIM  - 748330948',5.5,'MTQ',120,0,0,NULL,NULL,'de0107fb-beb9-41b1-aa9c-f833474e8edc'),
('07fce900-54f0-40b9-b982-09aa55cf588c','63059c52-68d4-4adf-b4cb-b2ebdf12d048',NULL,'SARAH SCHNEİDER - 248904478',1,'MTQ',0,0,0,NULL,NULL,'6faddf53-18a1-4f1f-affe-7ed38ef9e524'),
('07fd9cca-8d8f-46f7-b424-6c598f0e1db8','311d1173-593e-4b3f-9dcf-4f1f8b4eab7d',NULL,'MELİSA YILMAZ - 203519424',6,'MTQ',110,0,0,NULL,NULL,'afda17ee-6395-4bb0-bbe2-3e976e5044bc'),
('08012065-c8ab-4361-bd67-dad6b434d515','0a4b236f-5799-4869-ab96-18d8fc936a49',NULL,'VAHİT FISTIKÇI - 910950688',4.5,'MTQ',100,0,0,NULL,NULL,'5e9395d5-2dff-41a1-b7d1-d080344fbc2b'),
('08334dca-11af-40e7-85c7-a03cc16657be','6821922d-77c3-40d2-8fc2-312b35c65d78',NULL,'MUHAMMET UCBAY - 011428040',2,'MTQ',110,0,0,NULL,NULL,'b1a52e0a-42f8-41be-85f8-f4189669ece7'),
('08d7dddc-9a1f-4312-8d25-e53d0efdfdd0','2acce89d-1f85-4ae5-80cb-fab015a1f336',NULL,'SEYFETTİN - 41298450',12,'MTQ',110,0,0,NULL,NULL,'8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5'),
('09389e57-1713-43a9-9054-994f07bc302c','04a7f3f4-dcb2-4a75-b3e2-d99d1367651e',NULL,'HALİL ÇELİK - 97688342',1,'MTQ',100,0,0,NULL,NULL,'2559df4c-1140-401e-a44d-4bfdd5d05129'),
('0941ab3b-3f06-47d8-a9ad-0704a2ad40f3','7468c7ad-a4f2-4a29-ba8c-79518afeabfe',NULL,'ERDEM ŞAHİN(K) - 644522996',3,'MTQ',110,0,0,NULL,NULL,'56c417cf-c265-4351-92f6-09fa93a1f112'),
('095bea2e-d9f0-43ae-8fab-c440831c8eba','b5aa5ed8-a6a2-4913-8801-75e5213ddc44',NULL,'TEKİN ÇİLLİ - 315959949',1,'MTQ',120,0,0,NULL,NULL,'8559ffd8-49b0-421d-ad48-3ec35e2083d7'),
('0970d26c-ccbb-4911-82ed-1c25ed7c5404','38058a7f-fb05-4134-8c36-300a2dc8c332',NULL,'RABİA AKKUŞ - 644507096',3.5,'MTQ',110,0,0,NULL,NULL,'5038002a-b4fa-4ffd-b9c8-c48aca58f88d'),
('09b2ecad-6e64-42c7-9abd-b66b2b14a5ce','d8447ea6-67a0-4bae-a74a-f2ee8e3a6300',NULL,'ERDEL SİBEL SSH - 644426448',2,'MTQ',0,0,0,NULL,NULL,'d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d'),
('09c9feea-8b0f-455c-9988-a3b3b70b91e2','8db49782-f7e5-4f24-9145-b534a1f151bf',NULL,'İBRAHİM TANKAZ - 478354582',2,'MTQ',130,0,0,NULL,NULL,'9944adb4-543d-4384-9dd3-6faf5055bb85'),
('09cd9cba-5fa1-4ac7-8401-aad686e671b1','71a9cc26-ce24-4693-8a52-44d4810594ed',NULL,'SEYFETTİN - 268437547',2,'MTQ',0,0,0,NULL,NULL,'e3d501f7-bb6a-427a-b83e-dcb6d20860d4'),
('09d3359d-6acd-49e1-b215-d58c95163916','00d3b0c1-070d-4d8d-9b6c-8d198490e79d',NULL,'AAAAA - 100655378',3,'MTQ',100,0,0,NULL,NULL,'7e6b3d54-6e1a-4c75-aad5-52fb31d0c647'),
('09dbf407-c909-4ff7-b8d1-c9f367654a5e','df490d65-ea09-4c5f-b61e-d813d33f9416',NULL,'EMRE DİNÇ - 52896910',3.5,'MTQ',0,0,0,NULL,NULL,'13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc'),
('09f170e9-6493-4641-a70e-559888314073','96a19eec-6a22-4f90-9fe9-123bf2914935',NULL,'SELÇUK SÖNMEZ - 371183095',2,'MTQ',110,0,0,NULL,NULL,'8634d29b-6164-4e3e-a0b9-d50827c18702'),
('09f47d2d-9ae5-44ac-a446-2927c8f575b2','77e178ff-fb17-41d1-9686-b084b853cb0e',NULL,'NURGÜL ÖZDEMİR  - 750450570',3,'MTQ',0,0,0,NULL,NULL,'371ed4dd-6766-4075-a1fd-881baaf53b96'),
('0a13b460-a13a-4663-908c-214e8934c78b','32c4f54b-5e8e-4826-8be3-c5edc59674c1',NULL,'CİHAN KÖSELER - 657734229',2,'MTQ',110,0,0,NULL,NULL,'d534081c-07c5-470c-bed4-f699f4319aa1'),
('0a168044-139f-407a-a86e-cf9b4d777c8e','e1e36bf7-78ef-41d9-b8e0-2586b282d012',NULL,'AAAAAAAAA - 45592606',5.5,'MTQ',0,0,0,NULL,NULL,'8772de92-e350-425f-a8eb-0c7d440b804f'),
('0a3fd160-d84a-4cff-9fcc-421213dd8524','0fd8396a-bd7d-435a-a6d7-dcf0825a15d1',NULL,'RAMAZAN SEVİ - 517558560',7.5,'MTQ',0,0,0,NULL,NULL,'fed099bd-765c-4045-9372-03dae428fedb'),
('0a4a9235-6547-4964-9cc0-f82c18ff7378','10b502da-90db-462a-9cf1-a17fee3d9b44',NULL,'MUSA CAN KOÇAK - 644389756',5,'MTQ',110,0,0,NULL,NULL,'50101273-0c1d-452c-b0ea-a3c2e64b8022'),
('0a4d4328-7b54-46a6-bd74-0b193e4b7019','8b7ce3eb-1377-46da-b4f1-7bcf139f0cac',NULL,'MİRAÇ SAKAR - 437969799',4.5,'MTQ',140,0,0,NULL,NULL,'aec29545-1708-47a6-a33d-352a69ad4876'),
('0ab652af-1f8a-421d-a78b-04503a2c2d83','451079f5-9bf5-46ef-8809-914bb376355b',NULL,'İSVİÇRE - 248186638',2,'MTQ',140,0,0,NULL,NULL,'a3d9ed34-0a43-46a5-88ac-b4bf44493c05'),
('0ab8d1a1-a5d1-4c8a-bbf2-397eaa8565a1','bd431cec-5919-40fa-a31b-fc23b92dbad8',NULL,'HAKAN AKDAĞ - 412418230',1,'MTQ',0,0,0,NULL,NULL,'f0b553df-a781-4ccd-a273-f9c311927595'),
('0acfcdad-96db-4ddf-8dd5-811318d52170','7db66de1-8d3c-4ccc-9866-d024c08f11d7',NULL,'YASEF İCEL - 478978353',2,'MTQ',130,0,0,NULL,NULL,'8adca791-05c7-48d5-b055-a001bdaf2f29'),
('0afdf402-e7ec-40bd-b686-ca5f50233008','eee7e9a1-29a5-4d04-adb0-1994e944b604',NULL,'MEHMET KANBEROĞLU - 976441354',3,'MTQ',110,0,0,NULL,NULL,'82f7f211-f2f7-4707-aaf2-eb58043e049c'),
('0afe0f1c-54fe-4984-935f-e5ba915bf778','e94bafcd-30b9-4c82-8a4d-809b6086da6d',NULL,'TABLO - 248209461',1,'MTQ',0,0,0,NULL,NULL,'bf2ed432-e49a-44c6-8058-51173e940f0e'),
('0b28378a-ae78-467d-b88a-dced700fcead','37a32e2b-44e0-412c-ad8f-864885ac5c42',NULL,'Gruppomino - 231429780',1,'MTQ',140,0,0,NULL,NULL,'d850bd2e-4975-4529-8b56-6564706b808f'),
('0b28e2f5-2e92-4e7d-a191-8c17c33b70b1','03b131e3-51c4-47d7-a64a-3da0827693ca',NULL,'YUSUF - 100972804',11,'MTQ',100,0,0,NULL,NULL,'3810b138-eae3-49b3-94fb-6ece3e64ea2e'),
('0b46aeb5-5206-4cb3-b9cc-c8a980585d3b','a3114cac-303c-4007-a4fe-d9a163a96af8',NULL,'BRHZAD ALİKHANİ  - 982402434',4.5,'MTQ',140,0,0,NULL,NULL,'b2a22a30-754d-42fb-a7e9-beef7ed2ae23'),
('0b51765b-8a62-4164-a679-b27c39837fdd','61286949-7471-4d13-ac40-68620e8fc974',NULL,'GÜL KAYAS ARSLANMUGÜL - 478188178',2,'MTQ',105,0,0,NULL,NULL,'63fb504d-4814-482e-9dca-ed3716a960e5'),
('0b631c4f-f72e-4104-b941-20f7b0689bbd','d1f63e37-c57c-4186-b87e-3952ccf4b785',NULL,'GHAZAL TARIK İLHAN - 644971564',2,'MTQ',110,0,0,NULL,NULL,'92ef11d7-249d-45f0-a76f-8b59e5a6399e'),
('0b66882b-b459-4af4-b932-a93d9ef31c06','f183ec46-262e-4fb2-a002-dd6b5df89f19',NULL,'MUHSİN AKTEPE - 248977442',1,'MTQ',0,0,0,NULL,NULL,'f5ff5ecc-8494-400b-acf9-c8906860204a'),
('0b69b74e-b9f1-457f-8bbf-b1d548011461','cb1538f7-5634-4710-a176-0952d6ea7940',NULL,'MUSTAFA SEVİNDİ - 517827584',5.5,'MTQ',0,0,0,NULL,NULL,'b821f1cd-d990-4100-9455-a2c619562c1e'),
('0b7a1e85-a1dd-4425-b227-19ff2885370f','eb8f1d19-2a21-434a-8754-6ef7c3f48099',NULL,'FERİDE USLI  - 982674617',3.5,'MTQ',140,0,0,NULL,NULL,'9e65ae08-29b6-4cde-954a-39f0530ce16e'),
('0b86d831-7129-4876-896d-80e43d6126f5','3b2eb53a-92ac-4b02-b8bc-680ddd9d3d64',NULL,'VOLKAN ÖZKAN - 478741910',1.5,'MTQ',110,0,0,NULL,NULL,'d14c8be1-206d-44a7-97dc-bb0f2ac15937'),
('0b9c8331-973c-4cea-be58-4146c69864af','272eec40-a8de-4272-8849-7481f753b1ee',NULL,'İBRAHİM AKIN  - 221594735',3.5,'MTQ',120,0,0,NULL,NULL,'c77c75ce-e3d2-47ae-8608-121fa3b3621d'),
('0b9ea69d-8043-4801-8332-8eca1b80f171','6d3dc1dc-f7b7-4d5f-afef-c3fccd4188f8',NULL,'SULTAN GÜNDOĞDU - 455477301',4,'MTQ',100,0,0,NULL,NULL,'049cec7b-ec44-4295-afa5-768b2786337d'),
('0bcc6dcd-770a-4ec3-aea2-05cf87b29987','4feb3baa-c215-47eb-aa41-c9862ac2d932',NULL,'AKRAMİ MUHAMMED - 449292416',5,'MTQ',120,0,0,NULL,NULL,'924b0645-442a-4c8d-bf1e-f897f1aa0792'),
('0bda8ef4-c5f9-4879-b676-a62c87b7bbeb','01415cc7-9cc4-4512-b73c-e7a0b99c1002',NULL,'ÖZKAN KUYUCU - 976121570',4.5,'MTQ',110,0,0,NULL,NULL,'8ac11872-8b52-4d38-b53d-bc95257e76e8'),
('0bdb8c5a-f539-4b20-9087-dd6470edba38','444d3d2d-321b-492a-9634-a250b826fc20',NULL,'POLAT BALKAYA - 412610139',8,'MTQ',0,0,0,NULL,NULL,'fae6865f-80a7-46a1-9f93-f722559d4617'),
('0be0b821-d9fe-4d67-a1df-83aadfdbd930','46e408e7-7467-4d28-871b-8d3a72468d78',NULL,'AYDIN SARI  - 011399882',9.5,'MTQ',120,0,0,NULL,NULL,'a8888d05-159a-4d87-90a8-88a98dc908ae'),
('0bf43239-af89-414e-af65-a4721d21c7ee','1c5afb47-2cf7-4e77-9e64-f57508cc6b52',NULL,'MUSTAFA ÜNLÜSOY - 478318204',1,'MTQ',100,0,0,NULL,NULL,'f5c275d6-254f-4e0f-9c07-7da2730731cc'),
('0c04dd3b-e0c1-4daf-9472-343563992d2e','94090fc4-99ae-4129-929f-c5e2a80fd64b',NULL,'FATMA SILA KAÇAK - 644194590',3,'MTQ',120,0,0,NULL,NULL,'8ab9b43a-c91d-4cac-9d3a-646d10808a99'),
('0c0537c9-228e-4948-ac5d-d56990a318ab','68919322-468d-4f9a-823a-b42f1a32e07a',NULL,'YUŞA SOYER - 338678802',3,'MTQ',100,0,0,NULL,NULL,'1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f'),
('0c0f0621-4a97-41b4-99b2-77a58ba5d4ec','f85f680a-454e-46f7-89fd-71af10ab62eb',NULL,'JAFARİ SAYED OMİD - 449448008',4,'MTQ',140,0,0,NULL,NULL,'82a52514-f885-46c9-bb75-54161940ec29'),
('0c106b31-7848-4fc8-be09-a281d55036f6','8aa7c42b-193d-42b3-872a-d3263ad8532a',NULL,'HİEM OMAİRAT  - 73597674',1,'MTQ',0,0,0,NULL,NULL,'c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f'),
('0c1b3026-7747-4776-80ad-d9a7cfa0e682','53d79dc6-32f5-41d8-a80a-25249f63e654',NULL,'YUSUF ALAN SSH  - 745639343',2,'MTQ',105,0,0,NULL,NULL,'311d6f09-bcb6-4e2f-a20a-8c99e7177094'),
('0ca58cd3-4d50-4bf6-9b47-21e95715b0cb','1c19101e-6363-49c3-b344-28166bc13559',NULL,'BAŞAK BEYOĞLU - 750501209',1,'MTQ',0,0,0,NULL,NULL,'1e9c1aa6-f481-4959-ba4d-d29600769920'),
('0cabbdbf-c9c9-44e9-903f-0e6726bedb83','47c73abe-f966-4763-9063-39fed528aea4',NULL,'SEVİM KAMER - 478524376',6.5,'MTQ',105,0,0,NULL,NULL,'cf1b6f71-e318-40c8-a965-e02e6fdabcb3'),
('0cb80986-a580-45a2-889d-09fd1847dda2','87c98352-b369-49a9-834b-72b84d8ff72f',NULL,'DEKORATA - 412417235',2,'MTQ',0,0,0,NULL,NULL,'abb61da9-a682-4013-a7fd-554adc61e006'),
('0cf3d0da-0091-4f6c-be3a-5aeda1f346b8','d9508ce0-b7a1-46c9-89ab-fb6f24079830',NULL,'ALİ SARI - 64441153',2,'MTQ',110,0,0,NULL,NULL,'ab5c9dd3-1a09-47c4-8748-32885c12b8b2'),
('0cf4694e-c04c-42d7-ad52-bb6a866be71c','2cd297e1-ceb3-4acd-a21b-2628d633166d',NULL,'AYHAN KAHRAMAN - 91028874',2,'MTQ',110,0,0,NULL,NULL,'a937e92a-5a9a-4b83-9ddd-3433937e9bfb'),
('0d322ae1-4dbd-41c6-b636-4850fbe859bd','a53a11c2-e95d-4511-9849-f236c4e26df4',NULL,'MUHAMMET ALTUNKAYA - 478681042',2,'MTQ',105,0,0,NULL,NULL,'ca108024-5dae-4885-b583-30c8f69c510c'),
('0d70fbb6-e3f7-478d-bb7b-e4a37d8f2c8f','fd997592-2029-49d5-b68b-e0e828f32045',NULL,'JULJANA TARLLAMİSHAJ  - 613568438',2,'MTQ',110,0,0,NULL,NULL,'0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2'),
('0d8738b5-95be-46cf-8193-25a2d02bc829','f7b7eaff-5a9e-4474-98c3-a6132c48aa21',NULL,'SALONİ - 412989879',5.5,'MTQ',0,0,0,NULL,NULL,'b481ba7a-9a27-43d3-92c1-35c2773d8b82'),
('0d996b1d-eebe-44be-bc47-1f69b5a1ba03','918280dd-822f-4136-bc40-b007edb08b08',NULL,'BERİVAN TİNTAŞ - 478994871',3,'MTQ',105,0,0,NULL,NULL,'cb3c3900-b517-4430-a11a-2f2b7755d652'),
('0dc9f36b-277b-4419-a86b-f69b592baf49','d033f695-6cb7-46e5-9dc9-39732d34a3d3',NULL,'ERSİN ÖZDEMİR - 478392276',1,'MTQ',100,0,0,NULL,NULL,'4b40049d-0967-49c8-8e4e-49b9a8e0a539'),
('0dd31998-fe28-4ec7-ac34-1e7f1fc98e67','33079d60-1a7a-43a6-91d4-5a8e54d781b4',NULL,'LEYLA TACİMOĞLU - 319212544',6.5,'MTQ',120,0,0,NULL,NULL,'ff9f8958-5781-4a16-9eff-ea176baadba4'),
('0dd7539c-4e7b-48b0-80ba-879940f0aa44','1b8c5934-e486-494e-afcb-ad494fa8b92b',NULL,'DİDEM BAKES  - 517279482',2,'MTQ',120,0,0,NULL,NULL,'46c770a5-8227-45f5-8d34-7141d1d901cd'),
('0ddeecc7-fc87-4ec5-a8c5-4f69a5a979fd','cfdcef04-cf1f-4fbb-a26c-083ae4489b50',NULL,'MURAT SABAK - 745859135',8,'MTQ',120,0,0,NULL,NULL,'5a89b7b0-e128-4e6d-96f8-3fe39b44b85f'),
('0df33c20-1163-4da7-b3f1-6755cdac8cb4','707c695d-797b-43df-b106-9ace81ca41ac',NULL,'MİYASE SARIKAYA - 221966080',2,'MTQ',120,0,0,NULL,NULL,'bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9'),
('0dfc6ce6-4443-47f1-93a5-22fbb3ba611e','69c1dac8-15a8-4477-b1fb-af6232227ca5',NULL,'ATİLLA POLAT - 478502129',7,'MTQ',130,0,0,NULL,NULL,'396cb143-14ce-480a-8762-a43699b4d2d2'),
('0e05e41b-3b0e-4f8d-9ba0-d8a675a8b39a','010ab024-b3a2-4847-ba54-6008f7748c3e',NULL,'FATMA DUMAN - 371696993',3.5,'MTQ',110,0,0,NULL,NULL,'8302f8df-382c-4f52-ab07-b0458d742a93'),
('0e31a9e5-71e5-4144-8010-1feceaaaa6ef','56e349ce-7de5-4b4b-afd5-c9fdc8a5abaf',NULL,'TALL YOANN - 221132707',2.5,'MTQ',130,0,0,NULL,NULL,'84050b65-b4a8-4360-a13e-ee8cc50aef3b'),
('0ede2188-da66-4af4-ac5f-e444298a3f65','0be2f0d7-1558-4379-93ab-a46be64724c8',NULL,'SEMİH TÜRKOĞLU - 371696812',2.5,'MTQ',110,0,0,NULL,NULL,'580415fe-7112-4432-89b1-efebbd154841'),
('0ee40cea-183b-4942-bc6d-482598738511','367f8351-06b0-4d4e-9f09-1e6bd4c6c251',NULL,'OKTAY SAMET ŞAHİN - 745782616',13.5,'MTQ',105,0,0,NULL,NULL,'aa3f39f2-a374-4662-9b70-6a623142a920'),
('0f289824-4904-4d7d-a0f0-33b5af94c39f','e0c5f3c3-65af-4bf4-aa5c-91f4f3e89bd5',NULL,'ERKAN SOYSAL - 248543155',4.5,'MTQ',0,0,0,NULL,NULL,'b54c98c3-f73e-49ce-af82-9b0bb87bd251'),
('0f38967f-0872-437d-872a-bbcdc41be4d5','1e96a345-fef9-4578-b21b-8f2ba0080503',NULL,'HATİCE BOZKURT - 734627626',1,'MTQ',100,0,0,NULL,NULL,'8c3b10ad-bfb3-4939-a407-5ebb29115ccb'),
('0f593037-9516-4f72-8138-6a419f6889ec','ea7dbd52-d37a-4fa7-8c04-b49dbe02813f',NULL,'MUSTAFA YILMAZ - 745636493',2,'MTQ',130,0,0,NULL,NULL,'a8d6af10-f6df-4fed-9267-1395f40ba8f9'),
('0f67fe09-6a80-4243-9535-888d7abef8c3','1239ef2e-5f6b-4745-99f1-c693c45fc353',NULL,'NURSELİ KÖSE  - 221285061',2,'MTQ',140,0,0,NULL,NULL,'a2313433-a437-47d9-a63c-55c129ea96e2'),
('0f8f7d25-a9ff-4721-8dc5-06472fcd69d3','25433a2c-a3a2-44e8-80a1-70883a498e24',NULL,'BOUAZZA SANNA  - 221264394',2.5,'MTQ',120,0,0,NULL,NULL,'af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b'),
('0f9b596f-86f6-4631-9d03-dd20cd7afac9','e90e5879-a80a-4ee2-8272-b690ae7ed02f',NULL,'SEMİH CENGİZ - 437551575',6,'MTQ',110,0,0,NULL,NULL,'c930eade-75ea-4464-a6c5-445be1fb2f29'),
('0fa7598f-046b-47d8-8e6e-62754c6558aa','5e5c2712-8ba1-4b53-9396-330cf0883069',NULL,'HASAN ÖZSOY - 428653750',4.5,'MTQ',120,0,0,NULL,NULL,'2a615cd5-31fe-4786-897f-defeaeff6284'),
('0fb356a8-5561-4461-92bd-ee6524f35148','8c8dc423-3686-4437-9033-0fd907795b23',NULL,'ESİN TUNCA - 982314530',4,'MTQ',140,0,0,NULL,NULL,'72e3b2db-d663-4612-b75b-d12c95d1cb5f'),
('0fc2a347-f95b-4d69-9605-8bf431117800','84586897-332a-42b5-ad61-f7345ad73973',NULL,'MURAT YALIN - 501589922',5,'MTQ',0,0,0,NULL,NULL,'8865fcd1-2596-4520-a0ad-0e0afe35a700'),
('0fc525ab-43b5-49ec-a737-888200b47ca5','3dd94030-8c55-421e-af64-09cbd3386355',NULL,'AŞKIN TUN - 127105973',2.5,'MTQ',0,0,0,NULL,NULL,'9d26f3f5-1617-4627-a308-2aea49169455'),
('1006550b-902d-45ca-821b-8cb66b5345cc','51a4ddfe-9ee4-41c8-94f2-27fbc31b69e2',NULL,'CANSU YENİLMEZER SSH - 745124199',2,'MTQ',105,0,0,NULL,NULL,'a37059bd-e77e-44ec-96b7-00e7c36b0512'),
('101b636d-8213-403b-9718-f7ccac8f211f','6dfcbafc-cbaa-4335-9fcd-45a690524551',NULL,'EMİNE AKPINAR - 231455458',3.5,'MTQ',100,0,0,NULL,NULL,'967b9ee1-7adb-4c9b-9386-f8200b05df01'),
('102c2a06-0aa7-4caa-a48f-6f503bc5d4be','c1b7a24f-87e3-473d-b454-dddb851c765c',NULL,'EROL ERDOĞAN - 151236689',3.5,'MTQ',0,0,0,NULL,NULL,'ffa71db9-462e-45b6-8298-ff1efd9c1940'),
('1039c70e-02c8-4063-9b5d-9e2a1c481c34','0596bfb4-c450-454e-9868-c04f50f1ea30',NULL,'STEFANİA KİOSKER - 371734068',2,'MTQ',110,0,0,NULL,NULL,'33cf2dd5-d360-43eb-8f3a-27e48526fd03'),
('1053007b-62a6-4c97-b4d0-c178cc60887b','0347ace5-f282-4d31-b863-d4e99884e0ae',NULL,'MUSTAFA ÖZMEN  - 501168544',4,'MTQ',120,0,0,NULL,NULL,'4648df64-b4ca-47a7-8d76-63ab12d19ffc'),
('107164b2-c964-4dde-8d04-5622ef941aed','69847958-63ec-4857-86e8-174eb1c888aa',NULL,'RIZA KUŞÇU - 725500857',6.5,'MTQ',0,0,0,NULL,NULL,'ab709265-d9c6-47a9-8b61-ea995dfc952b'),
('108a6a05-8554-446a-bab4-3dd59909186b','8576e42b-b7d2-4d67-be8d-47a590d57f70',NULL,'MUSTAFA ÇELİK - 47888654',2,'MTQ',0,0,0,NULL,NULL,'dee76d86-fa33-4f64-84d6-a8bb4fd71acc'),
('10b337fc-38b8-498a-8bc2-c60d6dc5a25b','ea31bc2b-2df5-4bb7-a0be-6176e6608481',NULL,'TUĞBA HANIM - 126421974',1,'MTQ',100,0,0,NULL,NULL,'0831e36a-bfec-49cb-862f-5d57cf563310'),
('10b4856a-dd13-40e4-80c8-3206983e62b3','ba99bb87-6da1-49f9-b5a1-266498398af0',NULL,'VOLKAN ÖZCAN - 517495121',4,'MTQ',0,0,0,NULL,NULL,'31e57ac5-fccb-463d-9767-6b43f825e71a'),
('10e137ce-4577-4e0b-b076-963e8bc808ed','36ef78d8-fc87-40c6-896a-06e233856f49',NULL,'ALİ ARSLAN  - 657153999',2,'MTQ',120,0,0,NULL,NULL,'17ff61a0-f389-446e-bb91-6ee68e1b222d'),
('1106a3fa-7f35-476c-9a6e-9d303b5f8e0c','0895eb28-6985-4d10-b566-b86e1e20ea91',NULL,'TAYFUN COŞGUN - 351519592',6,'MTQ',110,0,0,NULL,NULL,'f75aea68-ca38-4530-9ad3-ae32f05071ef'),
('11079a04-7189-49b8-83d1-459e2b651bca','e167b4b8-8173-4e32-a637-c59f3d6c3c8e',NULL,'YALÇIN BÜYÜKMURAT - 478643015',3.5,'MTQ',0,0,0,NULL,NULL,'54305dea-1aae-421b-a780-6ea6cb1e48be'),
('116d87fa-d658-4323-94f6-8b731756c563','3e1288a6-4ee7-4bdb-aa3c-d64555883df8',NULL,'EDA ABUL - 817160215',2,'MTQ',110,0,0,NULL,NULL,'f3a1ac48-b527-42d9-94b5-e4019b6f4591'),
('119d5de8-442c-4f41-8a92-5dd3d3bac005','d8227cf9-f42e-4bd9-86c5-c2d0dfd27ffb',NULL,'İBRAHİM AYIK  - 449728917',6.5,'MTQ',120,0,0,NULL,NULL,'1710853d-7394-43e0-9868-1a68f0b61796'),
('11ba403e-2469-4e7e-8b82-4d6cb78df906','c0f20f1c-8240-44ce-90dc-04040cab5461',NULL,'İBRAHİM PİLİG - 531724547',4,'MTQ',110,0,0,NULL,NULL,'85a61e83-6a63-4ba3-be2f-7f76b267dcef'),
('11bafcad-2414-4b49-9f90-dd070f782f71','0a2a4f08-61c3-4f80-8df4-d309d9771564',NULL,'ALPEREN BAYRAM - 65722585',2,'MTQ',120,0,0,NULL,NULL,'3f435f52-f9e1-4789-86ed-910c595d9e14'),
('11db78b5-8b48-4bb3-b4e9-014f148a589e','e0b41f6a-5743-4208-a810-99d557e77a69',NULL,'HUSNA ISHAGZAİ - 44926965',8,'MTQ',100,0,0,NULL,NULL,'bec65e06-6270-4da0-8ec5-c65be8d1c4e4'),
('11fce5da-832e-4afe-a151-d4ea64469322','3814f098-34a3-4abd-81d3-a1eb2436e8cb',NULL,'MARİNELA MARİNKOVİC - 505948491',2,'MTQ',110,0,0,NULL,NULL,'89c7af9b-6049-4f3e-9b7a-1672824189c6'),
('1220dbc4-1e42-4d0f-8317-29a22fdf89aa','724a8c43-8753-404a-a347-23dd2eb58df0',NULL,'FERHAT  - 750728735',2,'MTQ',110,0,0,NULL,NULL,'1c1071fa-bd95-40d4-8ed1-ab7e019add96'),
('12270d56-db67-4ffa-9b8c-c0305aa4713e','a2582a81-4c36-4737-afe1-073ae4be3ca6',NULL,'TÜLAY ÇAĞLAR - 644637792',3.5,'MTQ',110,0,0,NULL,NULL,'b87e1d8e-8fc1-4a22-a789-515797619936'),
('124a09b4-3627-4d1f-a8b9-b9da92437607','ab112226-a4df-41e2-b0cd-899c0f6772a6',NULL,'BETÜL ÇELİK - 644334455',2,'MTQ',110,0,0,NULL,NULL,'e00a4597-7f8a-4e0f-8cd9-480107421adb'),
('12889757-ebb5-4f16-a081-458f4de8804f','a003b318-44c7-41be-95f4-73f4cc59d6f8',NULL,'MURAT AKTAŞ - 412400536',2,'MTQ',0,0,0,NULL,NULL,'37d103ae-cd34-456d-bf73-1ddb563d8a20'),
('12a191d7-8096-4810-a850-6a0aa9856d3f','555b3208-ebf0-42cf-8f56-52fbd4f8161c',NULL,'SERHAT KARATAŞ  - 449197003',4,'MTQ',110,0,0,NULL,NULL,'2c4fddf4-35c6-4e66-a529-d3bcad5bb71b'),
('12b4ab18-a7d8-4eee-b0c2-d74c5dd6eb00','b536e313-1725-4974-80fb-ac4b0bf21ddb',NULL,'KÖKSAL ÇELİK - 428991499',1,'MTQ',0,0,0,NULL,NULL,'a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d'),
('12bdacab-f40d-47f8-a5a5-eec2d7332b4b','1c08d1fc-f303-4c5c-92fe-8ab31037eb98',NULL,'EREN - 412922680',2,'MTQ',0,0,0,NULL,NULL,'a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66'),
('12d40397-419f-408e-836d-8ea5d2e5db91','b21fc399-0797-4bb8-b294-38b6ed9e6fbf',NULL,'BURHAN AZEMİ - 74594372',2,'MTQ',140,0,0,NULL,NULL,'692c748c-7c37-415c-b3d9-996281a0eba4'),
('13024a31-2bde-451c-8d09-65159b789b69','e7a4d40c-eff9-4bc8-b002-71d9f5e22be5',NULL,'MUHSİN GÜMÜŞ - 910225013',4.5,'MTQ',110,0,0,NULL,NULL,'e0c4f0d4-cef1-4622-8782-650f949049ae'),
('13182225-2338-499e-b5ab-07be39a0e1c0','28a7a939-e866-4710-8736-7f01f9192ceb',NULL,'SAFİYE ÇITAK - 745959029',2,'MTQ',140,0,0,NULL,NULL,'f483e682-c963-48b9-8959-a369cedd8ffc'),
('132902de-8507-4a45-8f52-88721a8f5f3a','766b24c0-4f61-4651-b22e-bf3d8171f1ce',NULL,'SABRİNA KHODR - 735660192',1,'MTQ',0,0,0,NULL,NULL,'6f8c203a-dba4-456b-b37b-a7092a5e19a7'),
('1336a965-82cf-4724-9074-df57f36c42b8','d1c45082-3071-4141-adb8-07c81a456e07',NULL,'ERSİN - 248535027',1,'MTQ',0,0,0,NULL,NULL,'e3a57d2d-4adf-4846-9fa6-c92de9e727ae'),
('133a9e00-2178-4b42-9f64-d5013e8f6811','805d3913-d51a-4f94-b248-179f643509ba',NULL,'AAAAAA - 65556881',2,'MTQ',120,0,0,NULL,NULL,'d7273e12-dd22-4fa8-9893-2696b1178656'),
('134a6244-579a-414b-bb03-d1f8f8e9417b','740b60ac-5f7d-4437-b2cb-2005be0cb52f',NULL,'RASİM YAVUZ - 598894090',9.5,'MTQ',110,0,0,NULL,NULL,'a71c1b97-adb1-44f0-8622-8ebc242aee74'),
('138760ea-37dc-47a1-b520-aa57a21bbeee','67723a54-d318-430a-a250-51a065d3fcbf',NULL,'MEHMET ŞAFAK - 745303298',2,'MTQ',100,0,0,NULL,NULL,'7f6e46a0-6664-4624-b492-d5fe0196f1c7'),
('140d6426-562a-4e43-a688-5b2ba3c1cbbb','a674edce-0a54-4d1f-96f1-170d12ef7231',NULL,'KÖKSAL ÇELİK - 42844174',1,'MTQ',100,0,0,NULL,NULL,'c8cb8a48-a710-4ed9-befe-c11c81f0f7df'),
('140f5a98-436c-4d1d-9362-aec3eb281ab9','09038135-2bfb-45b9-9e97-b33056a2e613',NULL,'FAHRİYE KARTAL - 011255060',3.5,'MTQ',110,0,0,NULL,NULL,'93d2ab3b-6a9a-4642-becf-a89234c7ee14'),
('14139a52-1bcc-4c2b-9598-692725c70e70','ce009b35-9a73-4e85-9223-b090c5260507',NULL,'MİKAİL VUREL - 315903894',3.5,'MTQ',120,0,0,NULL,NULL,'5beae305-2b0d-4fcb-8a79-b68e23b3bcf1'),
('146e6ccc-a01a-426c-a2d8-5f7bce60674c','edf12f44-f9d6-4032-ac6c-bc1c977a40ae',NULL,'RAMİSH MİRZAYER - 449401217',1,'MTQ',100,0,0,NULL,NULL,'36cefbee-b74b-43cf-ad5c-7484e0e0f6f7'),
('148aa2bd-c605-48fb-ad20-c28d600b7f25','8d24e9d5-0458-47b9-94ae-2653a3c37b8c',NULL,'ENVER GÜLMEZ - 501981507',5,'MTQ',100,0,0,NULL,NULL,'04b906a6-7837-4515-810d-2b36aefb9873'),
('14b4a7e6-4f38-4b01-9eef-fae374f0b7c2','df7e970f-f693-4e32-9956-d4c76d331748',NULL,'AHMET ÖZDEMİR - 478622556',4.5,'MTQ',100,0,0,NULL,NULL,'aa5c731f-f0ea-43c7-9644-2e9bd7d45c48'),
('14b7c739-16d1-45b2-8777-16ddbacd1a92','2cbd9037-1e1f-4177-b593-e81c0ea9f17f',NULL,'DİE FABRİK OUTLET - 223337181',1,'MTQ',100,0,0,NULL,NULL,'6a21439d-54c9-48f3-b2b6-f67d8ade5c6b'),
('14c6f2c4-3949-489b-a982-89f2d995177d','435e3acc-87b6-4ab0-a673-3a28f8efda46',NULL,'NAZAN DENİZ - 517616028',3,'MTQ',140,0,0,NULL,NULL,'70f1d000-69a9-42e6-bbf8-0e2afa7a3f33'),
('15535786-d4bf-4768-9716-bce00f55cc43','7265f81d-111f-481f-a7cf-6e61c4f56855',NULL,'ABDÜLKERİM AKDAS - 248359668',5,'MTQ',110,0,0,NULL,NULL,'b115bb17-6ee3-4846-9e72-2f91f2abf901'),
('157ff372-03c0-46e1-8021-4ec9d2a16495','99a14745-ff9e-4b8b-8784-e3b1f420f845',NULL,'UFUK SANATÇI - 43783689',5.5,'MTQ',110,0,0,NULL,NULL,'a04ae8dd-1caf-4622-97e8-aa08c8974c93'),
('15a343e0-2699-4251-b2f0-47f1435147c8','3b038ef4-bae8-4214-bea4-cdf31b8f3fb1',NULL,'THOMAS TELAH - 982681083',4,'MTQ',140,0,0,NULL,NULL,'2c93b982-af74-4681-a002-6a0883ae7377'),
('15d8c1f8-4a18-4cd1-9a31-05b53657b0b3','c36a5745-00b9-4867-b2c1-f24c48082423',NULL,'HAKAN YAZICIOĞLU - 478807426',1,'MTQ',110,0,0,NULL,NULL,'3a570254-b092-4922-92c1-beea8773ea63'),
('16040970-0e6c-4d63-b8d3-6ab16d46506b','ee39d67c-6a4e-487d-ab63-da6efe43da84',NULL,'DONİKA - 786849282',7.5,'MTQ',140,0,0,NULL,NULL,'bdde5e4c-e62c-4ddd-9471-758e286d2013'),
('161bddf8-c0c4-454b-8a23-fc90db62e239','8ea4ff4e-595e-40ea-a0ee-ecf5ab4caa2f',NULL,'İBRAHİM KARABACAK  - 98222175',3.5,'MTQ',110,0,0,NULL,NULL,'f429c1c6-c6a3-4f80-ac7f-7e84dfe12573'),
('1632c187-fcae-438d-b25a-57bca948421a','218d6cd1-bcab-49fe-ab18-e6a1a51ba633',NULL,'DİRİL NURİ - 43792999',2,'MTQ',120,0,0,NULL,NULL,'bad05b30-4d32-46ea-a474-6a5a27c42d3c'),
('16399f40-ba95-4dea-96ad-0bfcb65b457f','2775f7db-fa28-4576-8e4a-a75f4536bc29',NULL,'NURSEL ALİOĞLU - 221272241',2,'MTQ',140,0,0,NULL,NULL,'3fc65322-0e5b-4725-b433-ff14b8fed4c8'),
('168a7983-4df9-438b-b95f-385ea7f62784','33c25a88-9707-4490-8a89-b158136d2798',NULL,'Hasan bey - 412800723',6,'MTQ',475,0,0,NULL,NULL,'d6348c7e-4b86-444e-859f-29dce263d04b'),
('16caf302-8a5e-4687-b9a2-e15e45911e09','20260726-0c62-4af2-81f3-6c6ce653f250',NULL,'ZEHRA ÖZALP - 412107970',2,'MTQ',0,0,0,NULL,NULL,'70bb5389-78e9-4cd1-b018-0133ebcdd21c'),
('16e23e6a-a89c-48f1-9841-8719acfceecf','24433aaa-153a-41bb-8b5e-d49f524ecaf2',NULL,'YAVUZ KOÇMAN		 - 910772127',5,'MTQ',110,0,0,NULL,NULL,'ac25d1b9-2250-4154-b15b-f735a6fdc731'),
('16fee049-7eb0-474f-8944-dbfeceb269bb','d0f67199-7bd3-4c1c-aa4f-89815ed1846b',NULL,'HASAN BEY - 44831715',1,'MTQ',0,0,0,NULL,NULL,'56f30890-8cd9-48d2-9a6a-3354e8a6a762'),
('1766ee20-e5e0-4bf3-9218-500f7b5825c3','cb43b83c-b330-47e2-80fb-853fafd0ee81',NULL,'BERİVAN ERTUĞRUL  - 221559079',2.5,'MTQ',110,0,0,NULL,NULL,'223bf502-0a5c-4df0-bef2-463ec95dbb4e'),
('176d178a-bc55-42d0-a11c-53f059029db7','ffe8fde8-8b74-40d0-9cf8-01d44f45bc5d',NULL,'MERAL YAZICI - 478101413',2,'MTQ',105,0,0,NULL,NULL,'b4ba97ad-fbff-40b7-8bb6-420238f15b4c'),
('1792594c-bff9-4042-80bd-05a3f94549c1','d7809f4e-3281-4597-b907-892c0b866c1e',NULL,'AHMET OKUTAN - 64415501',7,'MTQ',120,0,0,NULL,NULL,'1918bd79-b749-47cc-b3ab-efae4ee6b144'),
('17e74b60-8c2f-4c53-b492-eeb07d531d39','5aa651cf-e32b-4a10-b2c6-27ecbf7efe22',NULL,'İBRAHİM AYIK  - 449700444',3.5,'MTQ',120,0,0,NULL,NULL,'61867c22-c86f-44a9-a203-2b810c74f596'),
('17f5a94e-ac5f-465b-8f8f-2aaba055c640','1f1d00a0-5e4f-44c9-8390-f863fa05466d',NULL,'OSMAN BEY - 657405652',2,'MTQ',120,0,0,NULL,NULL,'6e41f6a8-bb92-49dc-af72-2b1e16aa490c'),
('17f6870a-3f23-4bc3-8734-c31bc5025985','932b2bf0-1343-46a5-831c-e7918c4ec05b',NULL,'BİRGÜL ÖRNEK - 268188607',3,'MTQ',100,0,0,NULL,NULL,'2630e226-f8e4-4780-bd53-00a42db1e018'),
('17fbe4fa-8616-4149-ba2e-8ab84a24c804','c80802a9-cf1d-457b-bb29-db28eb6ddc07',NULL,'SABİHA SATICI - 644520957',6,'MTQ',110,0,0,NULL,NULL,'7722797e-2c67-4213-8908-859d85e5ef36'),
('1807558d-51b2-4bf7-84de-0a9b8a4cb59f','0fc035f7-204d-4f1a-a245-fc84b911638d',NULL,'ÖZLEM GÜLER - 248653667',9,'MTQ',83.88,0,0,NULL,NULL,'e9be7295-2626-4fb3-adb1-dcad8f37101f'),
('18332138-1908-46eb-9722-11d72e1c6e06','d09d72c5-d80c-41e1-82c5-9b88977d84c0',NULL,'MEHMET ALİ ŞAHİN - 478616973',5,'MTQ',105,0,0,NULL,NULL,'a3e67de0-2821-4964-8e1b-51116009f272'),
('183cfd1f-0818-44aa-992c-b87a23f710a4','c49a7c1b-652a-4983-bb15-b94471f4eeb3',NULL,'MELİSA DEMİRTAŞ - 478504480',1,'MTQ',110,0,0,NULL,NULL,'9baf761a-5eba-4780-bfc0-003e1236dff6'),
('1870d7aa-7446-4ac4-897c-1d568da13011','1612d0cc-cb4f-4866-bbef-b76f59c302fc',NULL,'MEO JONATHON - 437452475',2,'MTQ',130,0,0,NULL,NULL,'c6094b6b-2487-4a38-ba3f-93750f2a9130'),
('18a7b37d-4b00-4d00-a50a-7401d91f764c','d781d3c4-08d8-43e0-ade5-7dcf7517ea9f',NULL,'MEHDİ HASSEİNİ - 455522020',4,'MTQ',140,0,0,NULL,NULL,'5b1a0cd4-bd43-439a-9c7e-9bde54150a22'),
('18b77c46-8191-4fe5-bd7c-2eda7b7dfe4b','54a7176f-6e53-40ef-b2b3-738f4e8b93cd',NULL,'BEKİR DOĞAN  - 478168461',2,'MTQ',140,0,0,NULL,NULL,'c8ca048a-bc13-4ec3-9715-2f7645615c63'),
('18c7f6a0-b7ff-4e6d-bf60-c426360ad14b','2ae3a97a-0cbb-468d-8096-69e6e37ec1a0',NULL,'YASEMİN KARAKOC - 976430102',3,'MTQ',110,0,0,NULL,NULL,'de4f6039-e43d-4b0d-8dd2-09c55847c5d4'),
('18cc4f83-ae28-4dee-a4cc-c594ae4e2631','788c2394-d57f-4b64-b67e-3d124e68975a',NULL,'NURGÜL ÖZER - 221191139',4.5,'MTQ',120,0,0,NULL,NULL,'a7a425bb-cfdf-4d19-a194-e17082ccd37b'),
('1921d427-5c2f-40cc-ab72-0f103819f05f','ccfcba36-90a9-43c1-8146-557b0f2e65f2',NULL,'ROHAD TOSUN  - 221529516',2.5,'MTQ',140,0,0,NULL,NULL,'712504b4-3082-4d55-b36d-6c65e190776a'),
('194ce256-4304-42e3-ad1c-32ce490974c1','f60caf8b-c671-44e4-b4ea-d5e2452da3a2',NULL,'ŞEYMA BOZDAĞ - 221940723',2.5,'MTQ',120,0,0,NULL,NULL,'910744ec-cad6-475e-ad64-324c153358ad'),
('197f2eb5-b036-4bae-ab9d-ca2641ffdf75','7b3c3c41-7eba-4d3a-aeb4-d47fafccec6d',NULL,'NATASCHA DJORDJEVİC - 80873489',4.5,'MTQ',120,0,0,NULL,NULL,'f75148df-6581-4c9c-b732-15039b1ebd7d'),
('198c378f-3892-4142-bf27-c41b44f44dae','2bc0822a-0dd7-4b47-bf95-cb8dd3c16969',NULL,'CEMAL KÖSE - 750822079',6.5,'MTQ',0,0,0,NULL,NULL,'fa60442a-c5d9-443f-9c1e-41b04158daa0'),
('19972642-2d49-482e-8d27-f6d810d22024','1845288f-d654-4e64-a85b-bd791a8f2ea7',NULL,'ONUR AKDAĞ - 65722132',2,'MTQ',120,0,0,NULL,NULL,'e16f7651-2afd-45bc-9a35-39463a07d099'),
('19cd7137-d7aa-4e4a-a1fc-b484efed879e','ffe42dc8-6d60-4c5c-85f9-e3073e404b01',NULL,'KUDRET KALK - 371804669',3,'MTQ',110,0,0,NULL,NULL,'3c78b7fc-a182-4269-8da4-db683ff8cada'),
('19f8f6e1-3930-42b1-8b7c-ee89315386ae','c5e8f66f-9f1e-408d-9557-076a4878094b',NULL,'İMDAT KILIÇASLAN - 428480095',4,'MTQ',100,0,0,NULL,NULL,'4fcf7206-6a08-4a73-833c-a5e8b873c885'),
('1a1209f3-914e-4b22-bf8c-5c8721714ff9','e5ffc3a9-e0be-4949-9e10-9f400f44e1bc',NULL,'BİANCA AGOSTİNO - 221481972',2,'MTQ',140,0,0,NULL,NULL,'a3d53642-0b85-4df2-9ed7-ec01c62f4ae3'),
('1a189055-369c-4eb4-b7f7-11d1e79ae706','9f410544-a5e9-4f40-b862-2e25425aad4c',NULL,'AHMET BAYDAR - 478943291',1,'MTQ',100,0,0,NULL,NULL,'fc7f087a-ae03-4140-970a-58c79194cdc8'),
('1a1a57fd-ea67-4bba-a3f9-df94641692e6','232d561f-aaf6-44b2-8f2c-c37a75d13d4f',NULL,'EDİSA MUSTAFSOVSKA - 675412794',2,'MTQ',120,0,0,NULL,NULL,'1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5'),
('1a1df59a-9d57-4a2c-8470-c5601cc9903e','50088551-8c2f-4d2d-8b49-58a815e6add2',NULL,'İBRAHİM YEŞİLKAYA - 598211009',2,'MTQ',110,0,0,NULL,NULL,'67dfcee1-7fd7-4c4a-bd62-3036e85f4035'),
('1a37c288-b9f5-4eb7-8d8d-c6108cbd661f','b2c16d00-0dd9-4ddb-ad6e-f4676bfb7023',NULL,'NİZAMETTİN(BEKİR) - 412280381',22,'MTQ',0,0,0,NULL,NULL,'efd7f051-bdbd-495c-ae12-ff92cadc152e'),
('1a3b7099-2416-427a-8de2-0ff53f15df6f','044a4a83-08cd-4ba6-9f79-3004b7ad406c',NULL,'CAMLAR-SALİH AK - 248217260',2,'MTQ',120,0,0,NULL,NULL,'78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c'),
('1a42e70c-2481-4448-938a-31fd1eed88a3','354b6728-f8d2-4268-9315-6af26336761e',NULL,'LATİFA KHAZROUKI - 221139773',2.5,'MTQ',130,0,0,NULL,NULL,'9d5fc36f-ed4b-4eac-8e6c-6b24348b505e'),
('1a7199c2-3201-4986-84db-98990b55cfd4','710d77ee-0c88-48ac-95b0-f7cc9c070cf2',NULL,'EZGİ YÜCEL - 437713339',3.5,'MTQ',120,0,0,NULL,NULL,'ad0e6c08-bd08-47a2-9854-d784d07275f0'),
('1a72aded-4ec3-4448-a911-0e0544ee5184','e3b0097f-a2e5-4cfd-b6ec-4c3e12ce9721',NULL,'MUSTAFA AİT - 449769276',4,'MTQ',100,0,0,NULL,NULL,'ce4c8f08-9110-4882-8b15-e54368f68914'),
('1a8119a8-e64d-40ac-8362-b0ab283bb45d','cb329674-def7-42c3-bac8-536bf023e212',NULL,'MEHMET SALDANLI - 745508995',1,'MTQ',100,0,0,NULL,NULL,'69f93507-2cdd-4907-8d7a-258e6ecfc342'),
('1a858e7f-0e7c-4e85-8476-057a0f0a9a47','0802811b-f041-48cb-84c2-0f68fc473b66',NULL,'HÜSEYİN ÇELİK - 351888584',2,'MTQ',110,0,0,NULL,NULL,'afe81c71-4f9c-44db-99e3-a9a478763539'),
('1a899483-2925-48d1-9f38-e77df45e8b9c','7b69cb84-ed18-43bf-9970-ada9a255bcc3',NULL,'ENGİN TV ÜNİTESİ  - 248269890',2,'MTQ',110,0,0,NULL,NULL,'af4e1860-0998-4434-bd62-e28f7958cebe'),
('1aaffd50-4d07-4350-a3d1-fe137d647706','d4eb9c75-5916-48c9-891b-1c103d88e1dc',NULL,'ESRA ELİŞ - 428704278',3.5,'MTQ',140,0,0,NULL,NULL,'d7c365df-3376-4073-9c58-c2c089ddf17d'),
('1ad071fe-550f-42a9-957a-bbbdc59a6c11','774452f9-4d20-4bdb-a7ad-5ebed2405ecc',NULL,'YUSUF SARIKAN - 745767667',4.5,'MTQ',130,0,0,NULL,NULL,'06e21650-25ae-4be2-b1dd-31866d6e20f9'),
('1ae76ece-2032-4553-b069-582f29fa9231','7a6520f0-ae10-4c93-b34f-b4aca8219c8a',NULL,'YILMAZ İNAÇ - 501901219',4,'MTQ',120,0,0,NULL,NULL,'f8707ecf-1dbe-4a0a-87e0-a7980b1877bc'),
('1aed83df-d7f0-4b67-81ac-cb63915e78ce','aacb2e50-9634-4a6e-8825-115f0c86795e',NULL,'KIYMET KARA - 478606230',3.5,'MTQ',100,0,0,NULL,NULL,'1d8366a7-8e61-4b91-ad70-62acf43daa32'),
('1aefc703-0508-4ba5-8545-91e8faac5ae1','9d55feb6-af2d-404c-8544-ede985f60e0d',NULL,'MUSTAFA MÜEZZİNOĞLU - 428341956',1,'MTQ',120,0,0,NULL,NULL,'515ab2de-5820-447c-8757-f2e57f2d6a69'),
('1b3b9095-49ae-42bb-b836-6e9144e269d8','b4c5be6b-e4de-4996-906d-5ef01f03b5e1',NULL,'MELİSSA KARACAKAYA - 598961911',2,'MTQ',110,0,0,NULL,NULL,'2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2'),
('1ba82b72-aad1-4815-906d-9f8fe2c55f00','9760a4b8-e0d8-4ead-9666-0f9e13cd5fa2',NULL,'BESİR FAZLİJİ - 613168811',2,'MTQ',140,0,0,NULL,NULL,'264eba0c-b5ea-449d-bd51-0689287b0593'),
('1bda2ef9-018b-4758-adc4-5081041a6d7e','27967847-5330-41c9-86cc-d7e7c757b77c',NULL,'SAİT CARCUR - 501874784',6.5,'MTQ',100,0,0,NULL,NULL,'bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e'),
('1bf7615e-0fc5-4feb-9d13-cbf1dcb58a30','5b9d972f-4851-4d21-b0ae-561d85d0e338',NULL,'EDA ÇALIŞKAN - 437539983',3.5,'MTQ',110,0,0,NULL,NULL,'9df2d9a2-447d-43e4-ba38-1e784040acf7'),
('1bfaf23e-e473-4c55-936c-ed161403b5bd','fcaddd8c-cf10-4c12-988a-3938056061e1',NULL,'BİROL ELİBOL - 437609907',3,'MTQ',110,0,0,NULL,NULL,'6eb2b7b3-1491-4ce3-ad14-6b15af827fc4'),
('1c85b787-8d45-4ccc-80d1-06a31374a9db','909b92e4-a843-4330-9fb7-f9e963c5234b',NULL,'FATMA EROĞLU  - 455757391',2,'MTQ',110,0,0,NULL,NULL,'d993ce90-f47a-45f5-b714-cf612685b50d'),
('1c9eb683-5677-44bd-97d5-64a1b6e3695e','348b331b-e191-480a-9d2f-33360dc629da',NULL,'FATEMEH HOSSAİNİ - 112787965',3.5,'MTQ',140,0,0,NULL,NULL,'de0c9db6-1fef-4c46-a93e-6a2c8ee6458c'),
('1cce64af-64e9-4540-bccb-59bbe733f97c','fbcfae00-6e02-4be7-ac2a-253fe8ecf065',NULL,'EMRAH ERAYDIN - 127552437',2,'MTQ',120,0,0,NULL,NULL,'0870a03e-86ea-4d91-bf42-aa250c0c7ee1'),
('1ccec140-d8a0-458e-b79b-25f49ecbdb0c','84edfafe-5766-43d9-b4c0-93e6a23f9c0e',NULL,'TUĞBA YILMAZ - 42845475',7.5,'MTQ',100,0,0,NULL,NULL,'0968d1cc-0ba0-445c-8f49-74a0f7b6c441'),
('1cd7b03f-cfa4-4efb-978d-16555f9cafdf','80530fb9-4a8b-4fb0-8b91-43f29672afb7',NULL,'RAMAZAN KIYMAZ - 478900175',6,'MTQ',120,0,0,NULL,NULL,'acb56e55-0830-4986-97da-b0788ca9b99b'),
('1d0f9f9f-8a4c-4f7b-b662-7e6b4bd9641b','57bb4b0b-3ae4-47b5-b749-e7511a1971c1',NULL,'GÖKKUS PİNAR - 61340935',6.5,'MTQ',110,0,0,NULL,NULL,'0d5fa9af-726d-48a9-a5d1-c407a279f76f'),
('1d195934-6347-4680-8a30-6ad4a5f545be','520ac729-3738-416f-813e-c6d56af1d8c4',NULL,'BELKISA KAPLAN - 478570794',2,'MTQ',130,0,0,NULL,NULL,'066ab857-a3c6-4a0e-95c8-a26e5b2ce708'),
('1d5164a3-6d83-450a-b58b-b1b30e64e2e9','f4d194dc-e95e-4ab4-9193-4ce91e104db1',NULL,'EMİLY RAMİREZ - 221897784',2,'MTQ',120,0,0,NULL,NULL,'d8406e1c-80d1-4795-aea9-119c8cad0252'),
('1d63661d-e0eb-4a20-8c6b-fa6d7de91d38','93173724-7d55-455b-997a-6d50c9e92081',NULL,'REZA MUHAMMEDİ - 982292794',5,'MTQ',130,0,0,NULL,NULL,'b2f9655b-0316-4ee8-b6ba-9ad1280e80a3'),
('1d73adfc-784c-4db6-9b19-bd484ae2f5d2','9d19da29-8542-4166-953b-d81531764028',NULL,'NİLÜFER YAMAN - 745972164',1,'MTQ',100,0,0,NULL,NULL,'8203fdec-99ef-4eea-b5d2-7dc3476dfcf5'),
('1df9aac0-7111-45af-b411-49d1a807ed51','7ec01892-62db-40af-a454-9d0dad9129a6',NULL,'AFERDİTA UKSHİNAS - 31912550',1,'MTQ',140,0,0,NULL,NULL,'c7dadeb7-44b2-4e53-8201-7e81393192a1'),
('1e0b080c-69cf-43a3-b4a0-196d2506384d','dbb33ac3-10e8-446d-81ae-3fadca7c3395',NULL,'SAMET KÖTEN - 976439318',3.5,'MTQ',110,0,0,NULL,NULL,'6e70fec4-ae28-4ffb-9ee0-160b7b77935f'),
('1e154a86-023d-4940-a019-ff1c839e30bc','061f17b6-3791-4a36-b859-b700e75ce88c',NULL,'Roa şerif - 902159645',1,'MTQ',110,0,0,NULL,NULL,'c551c482-a643-4cab-b50a-a3615f511791'),
('1e932293-3d2f-4547-9276-2eb809e04f68','e5e65e33-1f85-4a26-822a-79b8f8893dee',NULL,'HİLAL ZÜBEYİRLER - 515973668',2,'MTQ',110,0,0,NULL,NULL,'0e3cd4c9-294c-4ded-8194-bf22e23bc5a0'),
('1ec1e95a-f794-4c29-940f-134f05eb4ae0','0b320150-fb79-4969-b13f-3993c51169e9',NULL,'BİLGEN TATAR - 478901590',2,'MTQ',130,0,0,NULL,NULL,'f99d0c09-6369-4571-a1fa-cae7407d9134'),
('1ec4efc9-4701-43ae-aa2a-3ad988ab0a7e','f4d798d2-f95c-474c-a427-511150767852',NULL,'AYDIN İLKNUR - 745545386',2,'MTQ',130,0,0,NULL,NULL,'af1902d4-2938-44ae-80c0-795a83518ffd'),
('1f206d59-3e3b-4e06-b8b6-156d3bf50b75','23561a1c-6a58-4c24-91e1-a3335ed69e0f',NULL,'MEHMET SÜZEN - 982562609',2,'MTQ',100,0,0,NULL,NULL,'3539abdf-5c17-413b-8a00-89b58f218933'),
('1f23a3d3-82cb-442a-8606-caa9aecd30aa','eb3886cc-8e56-4321-90ad-61530b9f2961',NULL,'DEMET HANIM - 657640918',2,'MTQ',120,0,0,NULL,NULL,'cba51d7d-e0e2-4e21-acf0-8699ede8b4b3'),
('1f48469e-be43-48e0-9166-8d7ec8eee4ab','a0b67d6e-51bb-4919-b3e5-1acdef3ae5d7',NULL,'HATİCE ÖZEN - 745734415',2,'MTQ',105,0,0,NULL,NULL,'8b65f877-ccbd-4d62-80e3-2d9c4c044d3e'),
('1f59ba65-4c8c-4eae-ae75-f0737d531c5d','c41f924c-def3-4822-8327-09d44f4f2d88',NULL,'SHAHRAM RECEBİ  - 112270991',4.5,'MTQ',140,0,0,NULL,NULL,'b2f13caf-67d6-4df1-879e-de1a8b1019c1'),
('1f603b41-99f2-450a-9ed2-32a45235af81','c1d4b6ce-aa15-409d-863a-dedbde7cd30b',NULL,'ÖMER KARAMAN  - 428561353',5.5,'MTQ',100,0,0,NULL,NULL,'ce4901d8-9c95-4f4f-bc49-0904a3a413eb'),
('1f6a02c3-c33b-42a8-9fb1-1b5da21a9175','22b62e05-f566-4e51-9b5b-5b64e71dc88f',NULL,'ZELİHA AKCAN - 910120533',4.5,'MTQ',100,0,0,NULL,NULL,'966391c6-e0ee-427b-b16f-5f8b2d1477ad'),
('1f6fb6da-bf31-4ba6-9f12-f5ecad2cf3b6','db97b5c4-b410-4657-859a-1e8b1bae5492',NULL,'NİZAMETTİN ALAGÖZ  - 412970240',5.5,'MTQ',0,0,0,NULL,NULL,'54991aeb-2686-48c8-a4ae-b1b93c2336a7'),
('1faf05af-9ec5-4e82-99d3-ef8cdf46caea','3a94f0d0-3581-43c3-86fe-38931c1c5663',NULL,'HAZİNE UCA - 745839023',1,'MTQ',100,0,0,NULL,NULL,'d406bcf9-208d-4398-83bc-73bfdd569d39'),
('1fe24e8a-1627-4a33-8442-f4feff5e53ff','933bec0a-ee2d-4a65-ab84-679ab84b9989',NULL,'NURETTİN BAYRAK  - 613661947',2.5,'MTQ',110,0,0,NULL,NULL,'f4925a41-5026-4e2b-a759-10c30274e086'),
('20042483-db34-4a69-86fb-3d5b41f0ae29','13fad53b-48ab-4a47-b0b3-27071d7f96c7',NULL,'İMANE LAARİ - 22130093',3,'MTQ',130,0,0,NULL,NULL,'4c2f86c9-653c-4859-ad05-f53200e7d5ba'),
('20143e9d-972b-4453-911c-23230e034a79','38a935ca-6c6a-4320-9a53-a6c60586aa3f',NULL,'VEYSİ BALKAYA - 412252425',2,'MTQ',0,0,0,NULL,NULL,'c2a2e3f6-0c40-47f3-b43b-d69383cb87fc'),
('206d5198-8792-4f7e-b9c1-28c1619abfa1','c841f7d7-1bc1-4c08-b668-b789c75c8d87',NULL,'NURKAN AŞIR - 614529512',2,'MTQ',130,0,0,NULL,NULL,'a70ce6b0-06c6-4668-802f-b5bc4cc490ef'),
('207947bc-f33f-4eab-a56a-7e909885b163','0409a6a3-7ba0-4452-ae35-e0fd75f273ea',NULL,'BRÜKSEL - 248592138',1,'MTQ',0,0,0,NULL,NULL,'79f0fc3e-4899-4c29-8dad-eb9b646777fa'),
('2092739f-8801-437f-8e3e-2cbf04792419','6888337d-f7d4-49cb-92eb-218b2b20aec3',NULL,'ÖZGE ÖZTÜRK - 817121694',3,'MTQ',110,0,0,NULL,NULL,'46f3f6ca-c581-44b8-a4a0-2872c19288de'),
('20983344-bd58-4f8a-97d9-22ff7962fa33','ff3ca80c-51a2-4909-9847-2dea7c512efb',NULL,'MUHAMMED YUŞA YILDIRIM - 478261120',4,'MTQ',105,0,0,NULL,NULL,'b9164589-534d-4d1e-a7e0-ad53801936ef'),
('20b8344c-b7cd-4ca4-a95d-473d17203e7c','d389d3b3-fa5e-490b-b24e-c3cab6762f8a',NULL,'ZİYA DEĞERLİ - 734782763',5,'MTQ',100,0,0,NULL,NULL,'400f01f9-93ac-402c-9545-879c310ade12'),
('20dc9dec-7ee3-40a9-aed2-1d065ae9d63d','1e33eef0-917b-4e4e-a814-bfcc8c102bd2',NULL,'TÜLAY HANIM  - 455658704',4,'MTQ',110,0,0,NULL,NULL,'4df16b2c-055b-4ac8-aeb3-8ecccdbc057f'),
('2111f4f8-3eaa-48d9-b1a9-97260a939ab4','1595e632-59cd-41b2-baa7-73d4f313ca04',NULL,'RASİM EKİCİ - 614462377',3,'MTQ',100,0,0,NULL,NULL,'e0ff461d-a3df-473b-8c9d-6d28295d3169'),
('212fbb6f-c4c8-47a6-a0c8-2a7ced5c879c','a6292b21-c546-45a6-9641-d3ebe0708c3c',NULL,'MEHMET KAÇIRAN - 745484472',7,'MTQ',100,0,0,NULL,NULL,'d009c914-f7f6-4644-8a84-a30cb9311137'),
('214d7cc3-48da-4027-97cc-a40954cf3819','e9de448a-3092-4f0a-8a84-dc6727e959ff',NULL,'ATAKAN OLCAYTÜRK - 910251573',2,'MTQ',110,0,0,NULL,NULL,'d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5'),
('21aebc57-cddf-4417-add9-ced4b2f5812d','342599cb-07a3-4001-bc1b-f7fe69a1576e',NULL,'SEZER DOĞAN - 338474620',3,'MTQ',120,0,0,NULL,NULL,'cd4de4f7-a394-47c7-89e2-dd9e57ec790d'),
('21b0a00b-65c6-4ddd-8272-a1c3f491d792','19784480-0468-4766-a554-794c2f8baf0f',NULL,'HASSAN BEY - 976893568',6,'MTQ',140,0,0,NULL,NULL,'fd91d6e5-6042-45b8-8ffc-7e4151535f41'),
('21b673db-d2ce-4b3e-9e99-e5d06b12b7df','d64a9ef5-6fff-44f3-b6aa-e6c1fa56148e',NULL,'TAHRİ TATAR - 734380041',9,'MTQ',100,0,0,NULL,NULL,'8cb3e6c1-dad7-49e4-8443-0c03ea610bf7'),
('2238ad9a-e20a-4493-931f-1b0ec68091c3','1ad31a3a-2223-4161-9e73-6b8885717b81',NULL,'ELMAS KAYA - 745411152',5,'MTQ',140,0,0,NULL,NULL,'091754cf-7aa6-431a-8a90-b30fd8978287'),
('22498d33-86c4-4f62-9462-f7cda1f48535','7659aa87-aed8-4c6c-8d6e-631aa5d581d3',NULL,'GÜL KOÇAK - 437672074',3.5,'MTQ',110,0,0,NULL,NULL,'9504e4a5-303e-4819-a70c-cb5f6e9502ba'),
('228401e7-c1a1-4626-9924-36fa3ef2195c','881294fa-43e8-4cea-8636-97dc90cfa274',NULL,'VALBOANA - 786254351',5,'MTQ',140,0,0,NULL,NULL,'1510ebf8-1c9a-4576-83cb-afd76b0d011d'),
('22ccc6c9-4988-4a47-8dd4-04e79092bc7c','03a92e4e-28ec-4dfb-ab0d-da71f09e4f16',NULL,'BESTENUR ÖZKAYA SSH - 896998229',2,'MTQ',110,0,0,NULL,NULL,'2a9c7f69-97e7-4504-8e8e-9939d84f393a'),
('22db5fa7-fe6f-40ad-97de-82b63774cf75','8c7e46a5-3027-4376-8107-d38a2cbad67f',NULL,'ÖMER FARUK ÇANAK - 31934282',2,'MTQ',110,0,0,NULL,NULL,'90e758b9-fc91-49ea-ab6c-5838a25327d1'),
('22df4075-945d-4d99-824f-6c90675882f1','1a54dded-38bd-441b-b40c-dc7760804356',NULL,'FUNDA CAMDAN - 923419994',1,'MTQ',0,0,0,NULL,NULL,'9f65e17e-c684-49ab-8966-be09ed865fe2'),
('230b95f5-10e0-4a0e-b93e-63b0744f61dc','8fe180e0-1618-40ac-896e-c0e0df3d1306',NULL,'MERYEM BULAK  - 745374253',2.5,'MTQ',105,0,0,NULL,NULL,'5fc6171b-505c-485c-b075-49cfe5dd62fd'),
('231a683f-e3a0-471f-897e-cb356c59fb9d','257cd7ec-eba2-4d60-b778-eac284d91e53',NULL,'ESRA KAYA - 437514624',9,'MTQ',110,0,0,NULL,NULL,'042f3c72-dff0-4f05-808d-d871ab750191'),
('23283464-db47-4e3d-8314-687def13532f','e5fd05f8-1719-4efd-b99e-af42dc326114',NULL,'VEBİ DZELLİ - 98222656',2.5,'MTQ',140,0,0,NULL,NULL,'df564c56-1964-45d7-946b-9c1121729fa8'),
('23291972-cef0-46cd-9ca6-089aaf95dc89','213232d9-b10c-4779-8b75-93784fb5f52d',NULL,'SERHAT AGİRTAS - 515139511',2.5,'MTQ',110,0,0,NULL,NULL,'40e01302-537a-406a-a3c9-9234e4dbf8e8'),
('238701ad-b63c-4d94-aef0-913a58653fb8','26f24b08-095a-4867-b713-061a7ffb5ea9',NULL,'KAMER DUHAN ECE(K) - 644651781',3,'MTQ',110,0,0,NULL,NULL,'544de2ca-566d-4b42-80d3-8bdcf76c0ff0'),
('23a5312b-7f5c-40f9-8c48-9b8be2c0b8c1','9d147fcc-39d4-4c65-9dd4-dfe5c384c03c',NULL,'FESİH DOĞAN - 47853753',2,'MTQ',130,0,0,NULL,NULL,'ef978fdc-f16f-48d3-82b2-9c1f321e6548'),
('23b96ebc-f169-42e4-b9c1-6c3efcfc882a','5d94d4a3-4e08-4035-99a7-3a406866728d',NULL,'YEŞİM TOPKIRAN - 221960678',2.5,'MTQ',110,0,0,NULL,NULL,'6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e'),
('23e9144e-1beb-4e3b-8110-f6dc116e80d2','d33398db-dc11-47dd-8795-5557b8ac95d8',NULL,'Adil aşan - 428839296',9,'MTQ',140,0,0,NULL,NULL,'5834e5ad-035b-4bd5-ba17-95504a0c5e1a'),
('2409ebb7-faa0-4000-8324-ffc849835447','e8fe412f-487b-4397-a4a0-e557a0b899e0',NULL,'AHMED AZEEZ  - 221364325',2,'MTQ',130,0,0,NULL,NULL,'93a423f4-81fb-4690-bc1a-7b1c23ae6a8c'),
('241dfabe-f9eb-4921-b711-57ca092b1db9','cbd5d2db-aa6d-4afc-bfa6-0b956d1e293a',NULL,'ELOUAZGHİ ANAİS  - 745879253',6,'MTQ',130,0,0,NULL,NULL,'a34f5acd-e7a0-4960-a2f6-754b4e35e40a'),
('24228c21-ce01-481c-9401-242ccc4ae318','ac048ce2-2da7-4d4c-8cc3-ed4dd9aec94d',NULL,'MURAT YILMAZ - 223440405',1,'MTQ',110,0,0,NULL,NULL,'842ba9cb-4346-4cb2-a708-1b2d3e7d839f'),
('24267a9f-6d32-4550-83d6-a155801da260','e7a9e75b-f489-4848-8c83-3a362eb8d620',NULL,'VARELA FURTADO ELLİS - 982716246',2,'MTQ',120,0,0,NULL,NULL,'05621906-10fc-483c-89a6-f51e344e576b'),
('242ea00a-f6de-47e8-8204-695b281e858a','dae3a1f9-cf45-481d-8126-c302c3258376',NULL,'ESRA TEZCAN - 478778231',1,'MTQ',100,0,0,NULL,NULL,'661ddd47-5b72-400b-be6c-10d5c422f4c3'),
('2449364e-bff5-4ec4-a91d-b7f216fb52b3','c8140d3b-a9d2-4cab-9492-f3e51618f7dc',NULL,'LAİLA MANDANİ - 371887346',2,'MTQ',110,0,0,NULL,NULL,'ea220406-9a53-4462-8ddb-af10ce32ed5b'),
('244cdbba-0479-445f-b44d-ed7c674939db','6824451e-8d57-4014-be9d-da0dab27eb09',NULL,'MAOUD HABİBİ - 982765286',1,'MTQ',140,0,0,NULL,NULL,'e9cea214-9c50-4164-bc0c-ec27741915e8'),
('24bf108c-b2eb-4ce0-ad95-feef7f02afaf','d1816a2b-c373-419d-a4ce-09b2f4e5baff',NULL,'SADİJE KAMBERİ - 59841260',3.5,'MTQ',110,0,0,NULL,NULL,'4e1208ff-8f5b-4346-a832-196d997bdb96'),
('24db044c-f5e5-482c-ab2e-fa440edb390d','1ffaf590-64c0-45c3-9b35-ee67f4e38598',NULL,'GÜLŞEN KARATAŞ - 644859309',6,'MTQ',110,0,0,NULL,NULL,'b0a5049c-71ff-4a2c-8ccc-9e88362fbc14'),
('25422d8f-9d3e-4794-b53b-61c5a0c33b4d','3e6d3186-df76-4b65-a052-9ee4d4df8bf3',NULL,'FERHAT CAN - 278498481',3,'MTQ',110,0,0,NULL,NULL,'dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a'),
('254774ad-9e41-4ebe-8348-264991968697','5627ca11-92d0-43f5-9402-37ffe49a3bb7',NULL,'RUKİYE EKERBİÇER - 910638892',2,'MTQ',120,0,0,NULL,NULL,'bdb980ba-2d77-4b13-a3ae-a172bc776850'),
('25535d0a-682a-4464-975c-3e355511cb77','5665d272-1c20-4590-98a4-6d4d9fbf1784',NULL,'TUĞBA YILMAZ - 428160643',1,'MTQ',100,0,0,NULL,NULL,'0d464a57-d48d-4898-8ed5-05d911433d8e'),
('25696c97-2db1-4f7b-87c2-ebe4109ffddc','95e244e0-73b7-4ecc-b795-b949ab4cdcc1',NULL,'ÜLKÜ AKIL - 61480625',5,'MTQ',100,0,0,NULL,NULL,'f67e7508-1afa-4901-b396-faae504c1726'),
('257c8617-f9df-45f9-b5e9-0d55b8760962','ed206928-a7da-44da-bf26-abb72c6fc741',NULL,'ASLAN GÜLŞEN - 478647079',2,'MTQ',110,0,0,NULL,NULL,'b3402260-d451-4d00-8ed8-35b3af56080f'),
('258e0431-6c1d-4709-8480-7935251f0214','aa4078d2-85cc-471a-929f-4556aa26c6bd',NULL,'BEN FRİHA FATMA - 437321677',4,'MTQ',120,0,0,NULL,NULL,'bd9dba96-c9c5-4c61-b279-b74adace6799'),
('25a75d69-f8f5-4f12-97d5-e23962d3d731','f6f5a7d1-99ba-430c-9f1c-edf9d94d12cf',NULL,'L.DOUİRİ - 221997933',2.5,'MTQ',120,0,0,NULL,NULL,'fbc52807-2ea4-4332-b106-de7e103725f4'),
('25b88104-041b-4b48-9b1e-b96c21135108','41cc67a0-6be9-43ce-8d79-f2676c8a1832',NULL,'DİLAN HANIM - 486724632',3,'MTQ',110,0,0,NULL,NULL,'7a2cd810-7e27-4b3c-9394-3429f5c4d22b'),
('25bfbf28-833a-4d0b-89a9-9b4e2bdcd10b','870665a7-69f0-458d-a9f8-600cffc1c2e3',NULL,'ARİC AKA - 221350993',2.5,'MTQ',100,0,0,NULL,NULL,'ac7835d5-bf3f-4244-9351-a2bddd683e96'),
('25cbf653-3324-448d-aac1-97f5a93518ec','318ab195-fe50-462d-a66b-571140953b1f',NULL,'SEZAİ TUNÇ - 745850370',3,'MTQ',110,0,0,NULL,NULL,'b384d0a2-c272-4375-a026-2cf2910078c9'),
('25dc4dc6-2253-47df-a93f-c90089440c7e','0bdd6f64-8b5d-4f75-9f9e-0bda6e7994f8',NULL,'MÜŞERREF GONCA - 745831913',8,'MTQ',100,0,0,NULL,NULL,'1588a62a-68c3-4ab3-a790-c8924ac0f9c2'),
('25dfcb8e-b82d-4fe8-9495-3e38a5d5f03a','d57db092-3c2a-440c-aaba-89729166e264',NULL,'AYHAN ÇEKİ - 598758154',3,'MTQ',120,0,0,NULL,NULL,'4854617d-8e10-44dc-9d64-e083a9bc9ee3'),
('25e4704a-c465-42bd-8249-80c7d49aa53e','484bd71c-5f6a-4f23-b7b9-1e75dd006c4f',NULL,'FAZIL İSPANYA - 42892944',2,'MTQ',0,0,0,NULL,NULL,'f0fd560a-44c1-4908-9784-45a3c9fbd2f7'),
('25f54479-4f0f-4e45-9e8d-7f1ad61e078f','83fe7836-b904-4bd9-a5bd-517027b48ad3',NULL,'YUSUF KAYA - 501760253',2.5,'MTQ',100,0,0,NULL,NULL,'1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca'),
('25f55596-8ebb-4965-a48a-b18c7204dce4','e0c4ed8e-3e85-4907-8a68-b98fa5fd4032',NULL,'DELİL ÖZTÜRK SSH - 745786401',2,'MTQ',120,0,0,NULL,NULL,'ae582db0-f6d5-465e-936e-071de92415c4'),
('260e6716-653b-4706-adc4-2439d4f23b70','cb1b7526-449a-4a0a-a58c-bd95c6adfd17',NULL,'HOMAM AL FAJJARİ - 223575392',2,'MTQ',0,0,0,NULL,NULL,'649029c3-dc44-4148-9d1c-afdd4ca73418'),
('263ec925-c2ef-4496-9d4f-f6975f6485c4','36c4eb3d-d81c-4389-955b-3ff2a0704fd1',NULL,'MOHAMED AHDAGO - 902332542',6,'MTQ',100,0,0,NULL,NULL,'43eacd8e-c171-4b25-ae3a-3d30f999cfc3'),
('263ee315-3d05-4c54-98cc-aaa6e5b08de2','3c05f571-c30f-43ce-9765-3434cf964fd4',NULL,'HAVVA KUM - 221443179',3,'MTQ',120,0,0,NULL,NULL,'263a2887-35f1-4299-a777-21a594a634b6'),
('265ac0ff-f91a-44d1-b7dd-8bf2417921ea','b6cc5364-c1cb-4579-92f8-08cc84fb1b95',NULL,'İPEK ÇİFTÇİ - 478300917',5,'MTQ',130,0,0,NULL,NULL,'777a9d0a-ed8a-4b87-a971-1803e6a68047'),
('2670b575-8194-4bff-9f58-d3db0b058182','ee921d04-6d70-4af8-96a2-1bbb2795cca8',NULL,'İREM AKÇORA - 478930985',2,'MTQ',0,0,0,NULL,NULL,'47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506'),
('26a1f9c0-51f2-4c04-938a-4c055dad2e88','6aff1d9c-89a5-422f-8983-e555a8835b1b',NULL,'DERYA ERDOĞMUŞ SSH - 437527391',2,'MTQ',110,0,0,NULL,NULL,'cd2ecc94-5d9f-40d5-b067-7e35b5396b4b'),
('26adba2b-cb8d-437e-9cde-0842eeda4497','559aa7d7-f272-469c-ae6a-68bbe16e9b47',NULL,'MELEK IŞIK - 64418413',2,'MTQ',110,0,0,NULL,NULL,'356bdd4e-5e08-4f43-9351-bdf6b54cdbb4'),
('26ae0c4c-594e-4b89-bdb6-4336a45f94f0','aebd79b9-7384-40ce-9d6e-9bc267bf24f6',NULL,'YASİN YAMANOĞLU - 93566108',4,'MTQ',0,0,0,NULL,NULL,'36fc131d-bc86-4534-8af5-a0b5a37ff93e'),
('26d52082-1d87-4f05-b1a2-40c284c6349b','54163e2a-0ce2-4099-8346-89e0fd6afae6',NULL,'ÖZGÜR YILDIRIM - 745302940',3,'MTQ',105,0,0,NULL,NULL,'c5edc3e5-cedf-4c8b-b863-1e65c68438c6'),
('26e716dd-e71b-448a-9cc7-6582d55b1b74','79fe8422-8201-4da5-90d6-403eb5313921',NULL,'VOLKAN ÖZKAN - 478702476',1,'MTQ',110,0,0,NULL,NULL,'8c7727ab-5a57-4d7e-9785-b58268d5cdaa'),
('26f0c206-735f-48ab-a114-a61ddc82faf8','856fb4c5-eb02-42df-93d9-d0a68f8019ef',NULL,'SEVGİ ÖZÇELİK  - 765627791',2,'MTQ',110,0,0,NULL,NULL,'4d4f0208-1ac3-44ef-8887-3111a56f2a9f'),
('271a4971-f457-42bf-a0a6-7b56ab3f2d65','c4818482-5e89-471d-a12c-e0729266a474',NULL,'İSRAFİL ŞENGÖNÜL - 745297087',2,'MTQ',130,0,0,NULL,NULL,'01c7f991-854b-4e63-a448-14857c24f6f1'),
('2730e852-61a2-4f08-9ecc-3ac76df54023','108ae3af-9d9b-42de-bdec-a939bbe83858',NULL,'MERT OSMAN DEMİR(K) - 644153988',4.5,'MTQ',110,0,0,NULL,NULL,'953f3501-da44-4096-afef-f255993a1b13'),
('2772fa84-b3d8-44c1-800e-d3dcf40773ad','ee3972fa-b564-4def-b88a-567d239cd74d',NULL,'DERYA BALİ - 644178035',2,'MTQ',110,0,0,NULL,NULL,'7111120f-fafa-47e7-88da-3e0454ed201a'),
('27daa3c8-de23-4ef8-91f6-f04bae82787c','e8cb4493-cfb3-433a-a481-631a7ffe2d03',NULL,'MEDİNE ÖKDEN - 127639932',4.5,'MTQ',110,0,0,NULL,NULL,'23c7b08f-63d2-4f18-9f68-f434d59760ab'),
('27e003a7-4fdd-4e60-86ba-ddc10ac32b66','9eaf99fe-203f-4b79-83c1-9bd47b00a782',NULL,'METE KANDEMİRCİ - 01921294',2,'MTQ',110,0,0,NULL,NULL,'9a2cd9bb-ae57-461a-be14-d7858f39280c'),
('27f10b6a-2fc4-4494-b45b-792cdf71405b','618b694b-619e-4a11-884e-223c960ba4ed',NULL,'HÜSEYİN PEKTAŞ - 745193877',2,'MTQ',100,0,0,NULL,NULL,'b562fd3b-e30e-4218-a985-6517692ba823'),
('2816778c-196d-4b9d-a906-e4ff5e033500','4232d470-811e-4b4b-a7ad-3125afe1e7c5',NULL,'MAHSUN ALDEMİR(K) - 644593040',5.5,'MTQ',110,0,0,NULL,NULL,'b7777790-d6b3-4324-8c03-3534c7356952'),
('284292e9-8c6d-4f23-8cbe-f376696c58e4','de7b896e-8d5d-4800-af43-3c921c9b53f3',NULL,'SEMİH YEŞİLYAYLA - 371716908',6,'MTQ',110,0,0,NULL,NULL,'35b607a9-05e1-4a39-8d5e-e9d252bd8443'),
('285521b6-3173-43e2-9f4b-fdbf4dccb26c','9ba92cb7-8bc6-4f89-9feb-66e30de383b0',NULL,'MAİL BOXES - 223254418',2,'MTQ',0,0,0,NULL,NULL,'2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3'),
('286d5b82-6051-40fc-a450-317339712361','accc8d9d-a729-486f-8952-39331b03b00d',NULL,'YUSUF AVCI - 817915882',3.5,'MTQ',110,0,0,NULL,NULL,'e41e7781-1c17-4d37-b049-0a5e20034834'),
('28be9dce-b069-4fee-a67b-c1e38ba10715','c3f67119-f96d-4bdb-975b-383137c3401c',NULL,'FATİH ŞEKER - 910891585',4,'MTQ',100,0,0,NULL,NULL,'a69f955e-df2b-44dd-8811-569ba620bc40'),
('28c38a5c-ed7a-4a58-a623-0358485157f3','b33608a9-aa8c-4900-8db2-ae93f1fde6b2',NULL,'LEMAN TUNCER - 412467921',2,'MTQ',0,0,0,NULL,NULL,'caa25f56-3e3b-4a02-995e-9956a9ae987a'),
('28cac32b-0c53-4d52-a36a-cd9ec761f92e','773a2ffc-c91a-4e09-a1d3-67c7ef6d2652',NULL,'ARTON BERİSHA  - 982835475',3.5,'MTQ',100,0,0,NULL,NULL,'becc1835-a791-4103-9eb4-4d14db8a91fb'),
('28e7bc33-3ef9-4616-b8ac-f14dbf773b28','3e66b584-bb9f-467c-85bc-cf4c92ec0c27',NULL,'ELVAN DURSUN - 437158505',3,'MTQ',120,0,0,NULL,NULL,'121f11bb-9b5a-4db0-a1ec-87c68b1ce47a'),
('28eead71-9f92-46b8-9ff2-cc1f7de6879c','bcdeaa97-0f9e-49d6-bba3-a5cdf1e1742d',NULL,'GHASAN ALBUKAİ - 289392695',1,'MTQ',0,0,0,NULL,NULL,'86130e7b-5d28-4a62-afa7-9f16bc13cc42'),
('291914a3-d6d6-4e7e-9e02-b6bc968556a6','23116335-49b1-4c27-9e9f-09513fd6bc3c',NULL,'MEHMET ORMANOĞLU - 614636969',3.5,'MTQ',110,0,0,NULL,NULL,'78b80c42-44c2-4ec1-827a-ef8e32bcec6c'),
('292722cc-3b4b-4122-9961-64d8bfa5bab8','710f745c-0a6a-4367-8fc3-85d8727126bf',NULL,'MUHAMMET ÖZKAN - 47830878',7,'MTQ',105,0,0,NULL,NULL,'b60d9fb4-59a0-499b-a666-8d8e4d8f147a'),
('2927acdd-88b2-4bff-9ea5-ccbfc10c1b62','894a7bb4-fe1a-46e1-b162-9d3db126b1f6',NULL,'SEYFETTİN - 703183067',6,'MTQ',0,0,0,NULL,NULL,'90273c80-e292-4a76-8be5-a4c812e9f569'),
('2967a71f-cd54-4a8a-aa12-4ead2fae81c9','03cd97d5-1caa-4193-bb63-78c01a2e2b2f',NULL,'MAHMUD YUSUF ÖKDEM - 127253098',3,'MTQ',110,0,0,NULL,NULL,'1e88a712-77d4-4c0d-9244-0239da63195b'),
('297cb0a8-61e9-4567-b722-3825a8e6dfa2','03e9a38c-e0ea-4c2c-ad70-9f3e89cfe795',NULL,'MUSTAFA SAİT ÖZDEMİR - 203497868',2,'MTQ',120,0,0,NULL,NULL,'b9790373-c876-4108-aaca-1b1a5e2b9aa5'),
('298f6b70-5f3c-4263-9c96-c3bf39480d0e','a1189552-48c0-441f-8984-5042ac5ea03b',NULL,'GİZEM TIRPAN - 37140435',2,'MTQ',110,0,0,NULL,NULL,'ee15ad4a-dd6f-4a80-9660-0314bf146e8d'),
('299488a8-b331-4b5f-8143-b4d2d31c5ba7','128d51bc-f658-4905-8c8b-6a555d74e16b',NULL,'TEREZA SHARİPOVA - 808790233',2.5,'MTQ',120,0,0,NULL,NULL,'cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3'),
('299764a2-28c8-4c41-b260-635e06782c5d','b2cc616d-432c-424d-92fd-bbf1a29d460c',NULL,'PARWEZ MOHAMMADİ - 248694668',1,'MTQ',0,0,0,NULL,NULL,'57ea5801-e3e6-46ac-b5d0-a60cf4d26d01'),
('2a2829cd-422d-45bb-a680-328d8d06198d','93882535-2f0c-4f10-8652-3251c18cf4b5',NULL,'ALAA AL- AHMAD - 5312778',2.5,'MTQ',110,0,0,NULL,NULL,'a39b0448-094c-4d23-ad55-d527d7d7c69d'),
('2a7b9fd5-c9fd-41b3-bac5-8a9e95996973','5a622fb6-5cd2-409b-bd73-a6e58be2cb51',NULL,'RÜVEYDA ŞAHİN - 12771217',2,'MTQ',140,0,0,NULL,NULL,'bc141652-9c08-41a5-8abc-a2a5bb180127'),
('2a884611-30ae-422e-a457-4c8b016f758d','bb7923d7-e72a-42b0-9979-56a2513344c2',NULL,'FATMA İSAOĞLU - 449557088',4.5,'MTQ',100,0,0,NULL,NULL,'084daa7f-3636-427c-9862-03f8214bc1f5'),
('2a924db2-2617-477e-8670-410854cf09f2','d82d8869-bdf5-42c7-81f7-2f226337f03e',NULL,'MUSTAFA MÜEZZİNOĞLU  - 428538007',12,'MTQ',100,0,0,NULL,NULL,'5a45aa6b-67e0-4e93-835b-88c97d490f10'),
('2ac75432-3188-435e-b6d0-50e5ce81f9fd','9bd95c82-665d-4631-bcdc-e2294765d633',NULL,'OSMANAJ VALDRİN - 221746947',8.5,'MTQ',120,0,0,NULL,NULL,'45898089-0430-47fd-85a9-8108fa8d9a5e'),
('2b417ccf-3a81-4ea6-9e6e-78afc0a6acbc','4d4d651a-a325-40bf-bac5-43656c0e7a48',NULL,'BURCU GELİR  - 221461818',3,'MTQ',130,0,0,NULL,NULL,'4a38f569-617d-48cf-b0fc-27e25fd3884e'),
('2b4c4569-680a-46ea-880e-105783e80c72','85f08c9c-bdb7-407f-86bf-a257f94a8ad2',NULL,'DEFNE AKAY - 478642368',1.5,'MTQ',100,0,0,NULL,NULL,'967d15a7-2096-45bd-bc90-7a65319402f4'),
('2b6f4e86-10a1-45ea-a8c1-31e9f585b6f6','fc5c1228-d7f1-4cb2-8e86-518462f7abb0',NULL,'YONCA KILIÇ - 380417164',3,'MTQ',140,0,0,NULL,NULL,'fde38e03-9a98-45f7-8ebe-3ba96b9c8830'),
('2b77d0c3-0756-4e85-96dd-10a16a3d0cfa','10f398a9-48b3-42c1-8288-187a1462bdbb',NULL,'AMMAR ALANİ  - 248421874',3,'MTQ',0,0,0,NULL,NULL,'a3288f43-b0c7-494e-af3f-17eaf962b183'),
('2bc64da6-8168-485d-8e30-660cb412c39c','8bab14a8-3f2e-44f6-b600-e4eed1ca7051',NULL,'ALİ ERKOCA - 745177264',7.5,'MTQ',120,0,0,NULL,NULL,'4428b444-78f4-43f3-8d88-220442b30896'),
('2bd1439a-79db-4328-873e-31dc5f48318e','3e56a9ca-30e7-49e3-b0b6-bf50266880b3',NULL,'HİCRAN KAPLAN - 319206159',4,'MTQ',120,0,0,NULL,NULL,'39388d94-97db-4210-9b52-61151393cf23'),
('2be07b76-3677-47ad-930e-111976d2e417','a8565161-984f-44f5-94f9-d2fdd1dc3441',NULL,'VAİSE İBRAHİM - 613108463',9,'MTQ',110,0,0,NULL,NULL,'35563c2e-e808-44fd-8e6b-f1d59af96d33'),
('2ca56219-703c-4dda-bc81-7552c98bc816','4c145c2e-d715-4a32-ba16-3154e507f4e7',NULL,'SÜMEYYE KARAMAN - 428958532',10,'MTQ',140,0,0,NULL,NULL,'b1ca63ca-ed42-45cb-ae7f-983ef68f5a78'),
('2caf5faa-6266-474e-b61c-33469c1f3576','7a817990-2237-4c39-af2e-49f7d9302363',NULL,'MON NAM ALEMİ - 982799609',1,'MTQ',110,0,0,NULL,NULL,'2473140a-52f5-4b86-a285-e3de923dde5c'),
('2cc442ea-3291-46d1-a6ca-6450c31645b7','9cf7a443-81dc-49a0-a221-a192989b7495',NULL,'FARZANA SEDİGHİ - 982691264',3.5,'MTQ',120,0,0,NULL,NULL,'2ea9f592-fc79-4bd5-aeff-4c86310c8b37'),
('2cdccef3-68e9-4ffc-81d9-8099194922c8','aa123386-7e37-497f-a776-8a9a15f44fa4',NULL,'PINAR SALMA SSH  - 745332643',2,'MTQ',0,0,0,NULL,NULL,'418c37cd-497a-45d2-a47a-3b77943bfa63'),
('2ce43ed7-2282-4af1-b0ce-1a1a39675989','45346e12-ff09-44c0-9825-93a89012d504',NULL,'SANAA ARGANE - 221573899',2.5,'MTQ',120,0,0,NULL,NULL,'d6968286-4388-4d14-a075-b49d0ae8ae44'),
('2cea8e7a-cc1d-4ed8-bb10-dd2df743b4c1','a74eb7dc-0a6d-42cb-8923-05bee63fe3f1',NULL,'HÜSEYİN ÖZGÜR - 412903351',2.5,'MTQ',0,0,0,NULL,NULL,'810dc52a-159e-44ab-b7dd-937d9c4e84cf'),
('2d218f6a-edc9-4278-a705-9fe2b7ed9255','c04bf0f2-07df-451a-af67-bee9d7d8663e',NULL,'MEHMET KIRMALI SSH - 745961245',2,'MTQ',105,0,0,NULL,NULL,'3940cd3d-d2f7-46b6-8add-88c26b8f55d2'),
('2d3b142d-03ff-49ae-8acc-980e60a8c751','7a6e5831-3ae9-4222-a03a-751b52c6ca00',NULL,'HUSSRAH MUHAMAD - 745464679',2.5,'MTQ',140,0,0,NULL,NULL,'e0988cbc-88e9-4211-a047-1305ad22fb1a'),
('2d3cfa50-fc65-4a1d-9f08-3e2e8ad5f29a','516bf841-16f8-40aa-b38c-aef711014b8d',NULL,'ZELİHA ARAS - 910280020',6.5,'MTQ',110,0,0,NULL,NULL,'7458ef39-6eb9-40f5-ba04-84de030fd5d7'),
('2d425b41-1233-4a20-97db-803efd17c97e','270f2319-c08d-4e7f-9b1e-7008377f2eec',NULL,'NURİ ÖZKAN - 347986383',2,'MTQ',100,0,0,NULL,NULL,'792fcb83-3583-425f-8515-80f98a19c7f3'),
('2d6d2b1a-71f7-416d-9a5b-5945a6aa5164','fa6d8849-685e-4bb9-a08c-71f848e8b3cd',NULL,'SHİMA MAKEH VANDİ - 371865484',2,'MTQ',110,0,0,NULL,NULL,'4c9e628d-c4ff-4606-88fd-789fb9c3affc'),
('2d89d86f-89d6-4f66-ae09-a55be985d144','54b57d86-0b76-4517-8215-645225061412',NULL,'ALİ KULABEROĞLU - 478319922',1,'MTQ',100,0,0,NULL,NULL,'2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6'),
('2d99f61d-7b9b-4d0b-8199-e2bc18d9e71c','8ee68f97-4bbb-423a-8c1f-50cd9f9e9711',NULL,'DAVUT YILDIRIM - 745991438',6,'MTQ',100,0,0,NULL,NULL,'a7037727-81db-4381-841e-e0b4f6b5366b'),
('2dc655c0-836b-4e29-ac54-8abd5c42a485','f8f725a3-c639-48b7-b120-df32c618288a',NULL,'SAMET BEY - 478544570',8.5,'MTQ',120,0,0,NULL,NULL,'365ff697-3271-4de2-aa7d-b8bcf4ff9590'),
('2dd2567b-4369-4dae-bd3a-c3a8fd12b134','c046025f-3172-4955-9bee-e2edbe10b1c9',NULL,'EBRU DEMİRHAN SSH - 745433427',2,'MTQ',105,0,0,NULL,NULL,'930adcd5-da6e-48f4-89c5-29b62fffc488'),
('2dd2c9a7-7352-4485-9a10-054ffc5ea341','02431d12-7bbc-4f28-a506-891eff211d7e',NULL,'ARZU ÜNLÜ - 319515461',2,'MTQ',110,0,0,NULL,NULL,'93582d1b-031b-454d-8d8f-d69cf39f35b1'),
('2e382842-1df1-4f1f-9937-a3d30a68e0fb','cdcb2817-82af-4e8f-b487-b0bf86dc6b13',NULL,'ERKAN UYSAL  - 982271871',3.5,'MTQ',140,0,0,NULL,NULL,'9b0fdc03-2303-4892-bf4d-0d91b19ec321'),
('2e3ae670-aaf7-4703-a303-fa36af503fc8','d57132f4-f671-4222-9b98-9af3bfe1616e',NULL,'AUCHLİ ANA  - 221616369',2.5,'MTQ',140,0,0,NULL,NULL,'5a5d710b-b6aa-42ac-baf2-69abc2901c83'),
('2e4dca91-405a-41a6-bc0d-9702c72089f4','40ef6c05-2e36-43a3-bdd5-4d597665afe9',NULL,'CAFER BEY - 248630618',3.5,'MTQ',140,0,0,NULL,NULL,'21454fc9-f40e-4ffc-b94d-8c647a484482'),
('2e643594-e059-4c20-af4e-7d44ef32c1f5','0d73f190-a910-4bae-a439-059bbebb4e1a',NULL,'ROMİNA ÇÖPLÜ - 127927013',2.5,'MTQ',110,0,0,NULL,NULL,'9380973c-fd42-4ef7-a6e3-5e7f392c02da'),
('2e6d646f-72eb-427e-b254-7a18c0906566','a1eda4a3-322b-4e06-89af-14651191a789',NULL,'El osman - 412877197',1,'MTQ',0,0,0,NULL,NULL,'2d2e3588-712f-4c84-a6f5-a45bc45a416b'),
('2e737761-34b9-4074-948b-e8298c3ed51b','f2f9c86a-7771-4d93-af38-75db7e1c9e7f',NULL,'ENİ SYLEJMANİ - 449226674',4.5,'MTQ',140,0,0,NULL,NULL,'e27a6e41-2b2f-403e-91f9-f5bd285a2d96'),
('2e78bd19-f9f8-4a05-bdfb-f0190124c698','44632496-ff33-4a49-bc57-649b374bb891',NULL,'MEHMET ÇANKAYA - 449136824',6,'MTQ',130,0,0,NULL,NULL,'5eb60d14-02a3-405b-84ef-2be197850002'),
('2e7bdaa0-add5-4201-8fee-8b4cb0e17dee','bc0721bc-cfb0-4638-9170-7bb63768f5c0',NULL,'FATMA ERDEM - 598161990',3,'MTQ',110,0,0,NULL,NULL,'5fa14283-df86-4b3d-ad0f-9b686ba6117b'),
('2e7fa72b-36f9-4333-8723-729e5d380f51','1e2bbfae-0a28-4c83-92a4-b20101ef17d5',NULL,'METİN EROL - 437306380',3,'MTQ',120,0,0,NULL,NULL,'cc35ba49-88e8-4dfb-96a9-b8e77e535bd8'),
('2eda7a7f-e740-4113-ae46-053201f88de3','63708897-b893-4648-bc38-d461af6db3be',NULL,'SUNAY KURU - 478526484',1,'MTQ',0,0,0,NULL,NULL,'2956a5ed-066c-4d0f-8c48-6243c78cf6ed'),
('2edcb389-5cf9-4a40-abe9-d2899a1e44a5','974af4c1-ee41-42f2-9692-e8d3a3567d25',NULL,'DİLAN ÇELİK TOGAN - 371881042',3,'MTQ',110,0,0,NULL,NULL,'dd9776e7-4b61-4272-8e40-984a52a0303d'),
('2ee71a5a-66a0-4da5-b708-7ab5d8f4c7eb','0cb9db60-efc0-4bce-98f6-b7ab052b5f43',NULL,'FATMA ALBAYRAK - 478935366',4,'MTQ',105,0,0,NULL,NULL,'1d68877d-7e86-47a0-8436-b6e2ee888f3d'),
('2ef0f4a3-b8d0-4111-9b78-dc589ceb5b93','71b953f4-1e4a-4cf6-98a3-072dc83cac80',NULL,'KAYHAN BOZKURT - 221692379',2.5,'MTQ',120,0,0,NULL,NULL,'63bcaab6-1f45-4304-b9b2-e21172f2f74b'),
('2f0ba05a-b41b-460f-b05f-205f40739cfb','bc235325-6023-4a31-abed-6df6f9504b93',NULL,'PİPET - 248284003',1,'MTQ',0,0,0,NULL,NULL,'acc18069-a61f-4cc1-b29c-0024e5408038'),
('2f27358d-65e8-4ac3-8ad8-b28d56fb70ca','0b581733-f172-4c26-911d-23873f194acb',NULL,'SÜLEYMAN MAKAS  - 910980337',2,'MTQ',110,0,0,NULL,NULL,'0dd4a2d2-2050-49e5-b089-3c05a90162dc'),
('2f2a43a5-b359-44f0-bed0-408f4920648a','06f80f54-8596-4316-93be-c42556e6f815',NULL,'HASSAN ABDULBARİ - 44937818',4.5,'MTQ',110,0,0,NULL,NULL,'61dd2e23-34d6-44a9-9516-6e9c953b281e'),
('2f4678a2-94b2-4ff8-8910-946659d4a5d5','c53c3026-52b5-430e-9b38-837d66aac205',NULL,'MELİKE ÇALIŞKAN - 598172413',2,'MTQ',110,0,0,NULL,NULL,'ee875e8e-a522-46c6-9e27-e09a0edbc8e6'),
('2f79b023-5458-48ca-897c-55046ddbd909','1ccdcd1f-e257-4b9e-9fd3-8f2d41f304c0',NULL,'NECİP FAZIL ŞİMŞEK - 371261673',2,'MTQ',110,0,0,NULL,NULL,'b09d6f55-3ecf-4da7-9a79-8f16282c4d71'),
('2f988f0f-bb3b-4188-97d3-0fa8995eac32','328dfaaa-9465-40e1-a0f8-ccaf1b52a73f',NULL,'Yusuf AYDIN - 412169316',1,'MTQ',0,0,0,NULL,NULL,'b6bfea48-486d-4441-a306-788893764967'),
('2f989436-d8da-449d-b658-c2697af73b69','1d74560d-e4f3-4b65-ba3a-4576d8117851',NULL,'BİLGEN TATAR - 478764154',9,'MTQ',120,0,0,NULL,NULL,'826475dc-b2f5-46e9-8c2c-4ddeb82b942b'),
('2fb93a4a-ddbc-4abd-907e-2d34c75fbde3','03f1aa4b-1ad0-458b-9eb3-76c8e7ef1c18',NULL,'SÜLEYMAN KARA - 745523335',2,'MTQ',130,0,0,NULL,NULL,'e8639de3-a760-433a-8023-37feb4abcf62'),
('2fcddf76-c05b-4178-999e-428e58c0fb9d','b83b00ad-15ed-41f5-b471-503b52d16a62',NULL,'NERMİN TÜREDİ - 745524390',2,'MTQ',100,0,0,NULL,NULL,'67f5e4dc-108b-4d6d-98e1-a173056bbadd'),
('2fd33d08-0ccc-4026-89fb-317e27351c47','a3ecff2e-2e15-4e19-90b1-10d952fec83c',NULL,'AYKUT KAYA - 371660448',2,'MTQ',110,0,0,NULL,NULL,'e5a2c381-5ee4-4701-8431-c115c8a67cff'),
('2ff0e565-7ed1-4916-8fd0-98a05855dd4f','4286692c-38f1-4582-a184-910abaca4477',NULL,'HEROLİND PROVATAJ - 750496630',10.5,'MTQ',120,0,0,NULL,NULL,'37e2474e-9d12-4f0f-900d-4305b84d27f1'),
('3027808d-9c6e-4ab4-a6bd-cbd17eb5261f','bec30687-a7d1-4827-80f4-646305689a5d',NULL,'ENİSA YEKTA  - 923436295',3,'MTQ',110,0,0,NULL,NULL,'94ed4318-546d-4bfe-8ecf-e1631bc2b933'),
('3034a820-6ce0-4c67-8ae4-ebdc7dbc2b46','5024a2ef-9e11-4ebc-89ab-1031e5b28b39',NULL,'SAİT CARCUR - 501423957',2,'MTQ',120,0,0,NULL,NULL,'e9ca480a-5f90-419c-b5bf-aea2d03c7975'),
('3034aba0-8384-4fcf-8243-efcb2c4e8695','108cfb9b-f081-462d-b53c-1e5a0241c535',NULL,'LYNDA MOUSSA - 982425532',1,'MTQ',110,0,0,NULL,NULL,'13aba735-b82d-4898-a98c-4167bb80085c'),
('3068d8b2-a283-44f4-a35d-7a108c032ec1','548b6cef-f934-496f-a4c8-3085c0650bc5',NULL,'ROMARİO AVELOO (BAŞTÜRK)  - 412757812',2,'MTQ',0,0,0,NULL,NULL,'808b4ef9-a87c-49a2-938f-85cb6e7e8004'),
('3078e316-d3a9-445a-bc59-6f1690e5d893','90ce85d7-5c8e-4e17-93d8-bee48e3dee99',NULL,'OZAN YEŞİL - 735442629',1,'MTQ',0,0,0,NULL,NULL,'4f91d654-f578-426a-8133-5299ed48d624'),
('30b3c534-cc63-4801-be21-b88856a5a610','b7ce1eea-4722-45d9-8a2b-ed4da5e5e17f',NULL,'SELEN SEMERCİ - 428326285',4,'MTQ',120,0,0,NULL,NULL,'0fd9ad4b-9c17-4380-957d-18193561c45c'),
('30fa2fe8-2ffa-4397-a5cd-d445a9aeec61','b8ea5102-1db5-4e54-91f9-42401d13588e',NULL,'ALİ ÇETİN  - 982817887',4,'MTQ',130,0,0,NULL,NULL,'e74ec79a-3fe1-4dd7-9872-a4ff0f952163'),
('31650505-6b0e-4c3a-b620-5647cb4d6e3c','d9c8052a-21c8-4668-9baf-0ea509517b02',NULL,'ÖNDER KOCYİGİT - 380453463',2,'MTQ',110,0,0,NULL,NULL,'f916cbe2-16c9-422e-bd45-4fe8c62efdbd'),
('316f28b4-4ce5-41a4-91c4-5cce1cd1cb91','f096e4ff-8b00-483b-8483-e8e9a1d015cc',NULL,'HATİCE ÇETİN(K) - 644834421',3,'MTQ',110,0,0,NULL,NULL,'06e1e4d8-8efa-4bf5-b2a5-b17c829042b5'),
('317e6cb5-38f3-4868-9488-15d28e04776b','91f420a3-8325-425b-88a3-281270645d72',NULL,'FIRAT BEY - 98283616',1.5,'MTQ',140,0,0,NULL,NULL,'53c89851-ed2b-4173-80a6-867b215bbcfe'),
('318ea90e-b50d-4a68-b094-e46cf6a46ae0','d320471d-2922-4258-93af-00ef6f116877',NULL,'RUKİYE BİÇEM KAPAN - 735929791',2,'MTQ',0,0,0,NULL,NULL,'ab5fcfea-2c70-4648-a088-f39fd930c2ab'),
('31b68535-85ea-4fef-b4cf-e98edad0bfbd','519c7a2b-96ae-4abd-b073-1cf8c43fd133',NULL,'MANGAL MÖBEL - 735340001',1,'MTQ',0,0,0,NULL,NULL,'8c642f07-fecc-4e58-93cd-963c384ca41d'),
('31b80f5e-d5d1-40a7-87d6-9229b117d4be','c35b91cd-1843-4d66-be96-e225d680c6b3',NULL,'NİHAT SEMOĞLU - 745175736',1,'MTQ',110,0,0,NULL,NULL,'dbc44baf-94fa-4586-8bc2-04870b635e12'),
('31bb3c77-d7a2-407a-a37c-3eb6df496006','94946821-211a-46a9-9f02-b88cbb3f08b7',NULL,'İLKER BİLİCİ - 745128598',1,'MTQ',100,0,0,NULL,NULL,'ed79e715-5409-4641-b31c-ef0bd037b83b'),
('31c1be5e-3c5f-4d10-9ce4-fa0337aa5c4b','29689534-809f-4718-b01e-1ec974e025b4',NULL,'İLYAS GÖK - 598982184',6.5,'MTQ',110,0,0,NULL,NULL,'dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0'),
('31dec914-1a88-45db-b562-e3564a8614bb','42714b77-3459-4112-bae2-08c422ebe575',NULL,'MUKUNKU KULENFUGA - 449787716',1,'MTQ',120,0,0,NULL,NULL,'2866225f-68db-4e77-83ab-5217fbdc2e85'),
('31facf80-f307-497c-a849-69ebb3c099fc','62660061-dab8-42e4-a220-fe290927c5f9',NULL,'HASAN DOYRAN - 454880224',1,'MTQ',0,0,0,NULL,NULL,'674d4f44-d9cc-40a1-9116-92e99f843f11'),
('31fc2379-2969-4392-baf1-d8ecd0aaddf1','a9fab265-70cb-4be2-8ee8-1bb618a78ee1',NULL,'YAVUZ GÜNEŞ - 59874048',2,'MTQ',110,0,0,NULL,NULL,'6ffa5c9a-93c5-400c-b777-8b753a8d744f'),
('32305406-d545-42bb-8174-058b927d200d','28147549-3621-4698-b320-7bfef7103946',NULL,'SIDI MARİ MUHAMMED  - 221859569',2.5,'MTQ',130,0,0,NULL,NULL,'8fc185cd-9441-4a92-b878-7da80b8d6502'),
('3243dc7d-8b78-402b-8581-7acab09ea0d6','9693567b-1e8f-406e-b4e1-4a0b141aba4f',NULL,'NASTENA IROBE-POŞETLER - 248539327',1,'MTQ',0,0,0,NULL,NULL,'3753ec0d-793c-43d2-920b-d39827ee0154'),
('325dd2f3-a903-44f4-ae1d-7cae671b6e7c','af572feb-f986-45e3-ba72-192a2ddce63c',NULL,'NADİR KURUKOL - 428752676',11,'MTQ',100,0,0,NULL,NULL,'8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3'),
('3284c088-efc7-424f-ad40-a5629de2b7ce','9714477c-633e-4781-b2a0-df0caf24bfef',NULL,'HASAN ULUSOY - 976819499',9.5,'MTQ',110,0,0,NULL,NULL,'cc8347aa-14af-4bef-ac88-92a4a5c8063b'),
('3285822d-09a7-41db-a8e2-1abb11478b7f','4285be1a-312c-4e84-9276-dc18a6e6b1c9',NULL,'DÖNDÜ YÖRÜK SSH - 644458216',2,'MTQ',110,0,0,NULL,NULL,'3384ef49-434c-4b51-b74f-5e9f4a178772'),
('328b3952-405b-4de8-a391-b57d20a62b7b','1b2abeaf-1e46-4c1f-9e69-de36f8a6fe1f',NULL,'NADİR KURUKOL - 428131786',2,'MTQ',110,0,0,NULL,NULL,'36207ae6-947b-4a63-b98b-478d30a194b6'),
('32a76742-ac4f-4cc6-a729-2cc942a5bc43','6c7cd57f-59cc-4ef5-a3fe-f3cd6014c38d',NULL,'ZELİHA ÖZCAN - 598492066',2,'MTQ',110,0,0,NULL,NULL,'bb67462b-3d86-408b-993d-ee8fb3ab52e1'),
('32b27bb2-f9fa-4d04-b8f8-e7076a3ec6b3','ed52b63f-6bad-471b-a5e8-38b48d1f65da',NULL,'CENGİZ SAKALI  - 910926193',4.5,'MTQ',0,0,0,NULL,NULL,'737675a9-68eb-41a7-946f-b0dfff8d03bf'),
('32c296a5-efdf-4a57-a433-edc021044592','ccf13acd-d0e9-4de7-8803-3100cbbb97cd',NULL,'ELFRİDA RAİCEVİC  - 613510894',9,'MTQ',110,0,0,NULL,NULL,'a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa'),
('32e05210-fcbc-4375-b2d1-86b747f86ae5','9b6653fb-83f6-472a-9cf8-cd72fa23a579',NULL,'EJDER SOLAK - 47838085',2,'MTQ',105,0,0,NULL,NULL,'d6382e4c-39a7-4f1e-a322-945d02f853e0'),
('33454c01-858c-4f43-bc95-7d8144e3143d','7faa0eae-3d9c-4666-8246-a7087075e85e',NULL,'MEHMET TERCAN - 501873907',4.5,'MTQ',110,0,0,NULL,NULL,'e02cad26-f190-42d8-831b-be16442b5e99'),
('33a1ff73-7884-4f0d-9d24-b8a0d5f8713e','b360283f-6ff3-4c05-92bb-4662a65bdf5d',NULL,'UMUT ETHEM EMRE  - 437101296',3,'MTQ',120,0,0,NULL,NULL,'1916783b-4f27-42eb-9741-6293c2d89316'),
('33accd5c-aad7-4f97-b7cc-388d30a8a639','6a7525b9-dd02-42b4-be16-77dd92b4fcde',NULL,'NADİR KURUKOL - 428819984',4.5,'MTQ',0,0,0,NULL,NULL,'f87bc653-3c5c-4043-891f-2ac7f87b388a'),
('33c9c183-b840-494f-9425-9b12a6113c54','14ef5776-d897-4ea4-ad94-a6c82b08aafb',NULL,'ANTEP SOFRASI - 85814402',3.5,'MTQ',110,0,0,NULL,NULL,'c660ccad-df7b-45ce-a388-95120ceea510'),
('33cad8d3-a37d-4097-a559-1c1d70d6753a','97527b16-4067-41e6-bfe1-050b067cb318',NULL,'EURO STAR MOBEL - 107870370',3,'MTQ',0,0,0,NULL,NULL,'4ac57e98-4d31-4029-af5c-63c778250adc'),
('341fde2c-97c3-49fc-a1fa-da675f526fa3','f0301e3d-ca8b-4e5a-9bb8-3cae2a479799',NULL,'AYNUR DURSUN - 817136073',3.5,'MTQ',110,0,0,NULL,NULL,'e8420e4b-28d7-4629-acc4-88baabd1cc27'),
('3421a2e3-329c-4a9e-9264-48cd770e443a','f1d1027b-73f1-49d7-8f5f-a888470f85dc',NULL,'ÖZLEM RAMADAN - 478150977',2,'MTQ',130,0,0,NULL,NULL,'9db12415-2152-439d-bb63-bebefc3c640c'),
('34337dd8-5e48-4736-9bab-c87f1211d7ed','921510a9-784d-4ff9-97f0-307acc199cca',NULL,'ELİF KAVUCUK - 37197237',3.5,'MTQ',110,0,0,NULL,NULL,'6d4039b6-c00e-459a-95f4-bdff009aedea'),
('3444c5d3-10a6-41dd-a3f6-89d7dc9ec2a3','b965489c-bd8e-464d-b5d0-0998b2fc144f',NULL,'ÇİĞDEM MURAT - 65758007',2,'MTQ',110,0,0,NULL,NULL,'e9363e6f-11f7-400b-bc2a-13288789cb1a'),
('347c35a3-12fb-409d-974b-9c777553143c','72494d55-4d72-490e-ba9e-ecf5ba9c4da6',NULL,'JASMİNA YILMAZ - 371785400',2,'MTQ',110,0,0,NULL,NULL,'ce35486e-7680-4c8d-aa21-e602d6ada6b1'),
('34c8cee2-05e9-46e6-8621-62f7a09ff373','d7e1e7c5-549a-4a5a-992a-c680402d3c45',NULL,'AAAAAAAAAAA - 027517327',3,'MTQ',110,0,0,NULL,NULL,'d2e72d11-31ac-4049-b68e-934d4095d90d'),
('35192d7c-1290-4919-8496-5720f1da4c98','2601971a-f07f-4925-9ede-9086e271de87',NULL,'DUDU ÖZDEMİR(K) - 644754778',4,'MTQ',110,0,0,NULL,NULL,'2e594749-653d-418d-b1d8-5310f505a9c6'),
('3522a67c-ff57-4ef8-8547-b77f3b78b8f7','46d4792d-c3fc-462c-83b8-1f55419ff424',NULL,'TURGAY - 412139250',2,'MTQ',0,0,0,NULL,NULL,'4e702cc0-9353-4b47-aa7e-ecce06c5c66b'),
('35340140-5997-4a2f-a98b-fd5fab8c5448','bd1e3199-fb76-4bfb-9138-b26dd32380cd',NULL,'FATMA ALTAY - 745871666',5,'MTQ',105,0,0,NULL,NULL,'a00e37fb-9c25-4ad9-b693-543d9ddf388a'),
('3539bacd-f42b-4141-b969-24f8996afca7','6ecb8ac0-1198-4641-ae01-7fe23440c4b7',NULL,'MARA EDEN - 982240405',3,'MTQ',140,0,0,NULL,NULL,'e81fdf76-b529-423f-8485-057fd816e54d'),
('354d1f04-48f2-4538-8050-ead12c464a52','2182f4d6-e8c1-4b48-ad53-a02fed4c2474',NULL,'BİRCAN ŞAHİN - 91074356',5,'MTQ',110,0,0,NULL,NULL,'3e7bc361-1239-4318-a168-479ffa7372b0'),
('3554206b-5996-40dc-9784-cee990862faf','bdde6e2b-2ee7-4898-bfea-5ccb69413ef4',NULL,'AMANY MOUSA - 22134117',1.5,'MTQ',100,0,0,NULL,NULL,'6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc'),
('3555b937-71eb-46cb-b42b-f20a726abeef','864bd4a1-2355-46b9-9772-9fa4c0f522a3',NULL,'ONUR ÖZER - 478733242',2,'MTQ',130,0,0,NULL,NULL,'e39631a1-1e5a-43f8-9da1-b9fa1e37acf2'),
('35652697-113e-4861-b643-786a88d11b8c','806d9a92-9e2e-4aea-8754-6edff82f6d07',NULL,'ZEESHAN AHMAD FAROOQ - 486874151',2,'MTQ',130,0,0,NULL,NULL,'71f77e69-e535-4a68-a67d-b53c19b38276'),
('35a18670-a687-4b49-84c7-6790c4472110','4336d347-273d-4db2-9728-9394e934c15a',NULL,'ZEHRA OCALAN - 976192214',12,'MTQ',130,0,0,NULL,NULL,'00597150-64a3-4ed2-95da-544d8eb849d1'),
('35b62001-c9cb-4673-8ff4-afbf289e2d36','2e9334d8-b01f-4fe6-b6e9-43f4dbbf42c1',NULL,'ARZU KUZUCU - 371160737',3.5,'MTQ',110,0,0,NULL,NULL,'a53c5b62-db3a-4293-b5f7-0e5ef514b45e'),
('35bb7293-6c21-405a-bdb2-6d7429c401a0','56c49fe3-6add-413e-a108-be447709b5da',NULL,'MEHMET KILINÇ - 428173598',3.5,'MTQ',120,0,0,NULL,NULL,'69d3c95a-372c-4578-8450-8194788ac842'),
('35c07aeb-d6da-408a-ba6d-e085eed53bc5','057a0b62-2f9d-420c-ade5-6a546c4d3ee4',NULL,'ALİ AYDIN - 428391947',4.5,'MTQ',120,0,0,NULL,NULL,'c72ffa02-90ea-47e9-8464-e38059961b11'),
('35cac926-f05c-41f1-923e-17798d318908','364b856a-398f-47e1-8e77-b637775e61c0',NULL,'FATMA KURT ÇAKIR - 734936220',6,'MTQ',100,0,0,NULL,NULL,'34e0270e-97b8-4007-bdff-03282449c33a'),
('35d59a94-cb84-4428-a45b-37d460dd1d83','58a9711e-f9e3-46be-9711-beb324e221d8',NULL,'NURAY KARABURUN  - 910407767',5,'MTQ',120,0,0,NULL,NULL,'e11f564b-74bf-4751-85eb-7e44c0361b37'),
('35faa21e-220b-4f64-9a31-4b20d2082db7','6c1619f0-b090-4033-9353-918e85a3d8a7',NULL,'COŞKUN MURAT AKTAŞ  - 41246036',2,'MTQ',0,0,0,NULL,NULL,'c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8'),
('36016650-2f0e-4e46-a3cd-791a680ee52c','b1ae9175-501a-4235-ad0f-ba8c70aa0398',NULL,'MEHMET SARIKAYA - 268368509',2.5,'MTQ',100,0,0,NULL,NULL,'9c99f254-2612-4029-ac15-ffb095b93de3'),
('360fd7a4-58f1-448c-b8c5-de35c9af0443','c053d86e-efec-4f6c-ab89-b9df98bbe86c',NULL,'SERHAT TAŞÇEVİREN - 221187320',2,'MTQ',110,0,0,NULL,NULL,'00d70258-2f30-4c8b-8f72-089d4172bbd9'),
('36277dff-e5ee-4b0d-bff7-3c9be167413e','ef7d9aa1-44f3-4b56-a157-b6d37758a974',NULL,'BYTYCİ REZARDE - 982773684',3.5,'MTQ',140,0,0,NULL,NULL,'98c40a46-22d8-4470-84a1-302a19073f0d'),
('36391fd6-2609-46ba-9376-d5890117884e','9984fe07-2482-4621-9e29-b4df5af0c93b',NULL,'HÜLYA KORKMAZ - 745724851',2,'MTQ',140,0,0,NULL,NULL,'f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41'),
('3653884d-c79b-4fd8-9583-75030050700e','15062dcd-b4cc-4c97-b2d8-1780bfdd6351',NULL,'MUHAMMED NURTEREB - 412608739',5.5,'MTQ',0,0,0,NULL,NULL,'5841dd15-401b-4238-ac2d-009a61e5f5d1'),
('365ee1e0-de1c-4d94-8972-5eaa549ddf58','99d85b82-c11a-4dd3-864c-3ba650c164be',NULL,'BORAN ALBAYRAK - 598668612',2,'MTQ',140,0,0,NULL,NULL,'5c8a45fd-4f1c-4791-a236-1f8362adf868'),
('36a1846b-6380-4a33-ab01-abf953a9f99c','9041ceef-e275-4478-85b0-5b4a0d6d0557',NULL,'HAMİDİ SONİA (SSH) - 221748184',2,'MTQ',120,0,0,NULL,NULL,'250a38e7-1fe6-4161-8032-c64b33f1c604'),
('36f279c5-f27d-493d-a8d6-10b822f9b605','f5397eed-2e88-456a-9b02-42569bfad97a',NULL,'YILDIZ GÜNGÖR  - 633870078',4,'MTQ',0,0,0,NULL,NULL,'ee498557-0564-4d86-8d79-85e7c39d48e5'),
('3719693e-1e0b-43a4-8f38-f6619aae64d0','e9bd4a97-ecf6-48b2-b814-06d08f0ba347',NULL,'DERYA GÜLLER - 449627061',4.5,'MTQ',100,0,0,NULL,NULL,'2bc13cda-c525-42a2-a315-a0390ae06337'),
('37508168-aa2b-4f53-a03f-a84b1cdc3ead','fb8176fd-c26b-4751-9221-2b326fa99860',NULL,'SALİM TEKE - 371884796',5.5,'MTQ',110,0,0,NULL,NULL,'08c394f5-81b6-4f94-b6e3-4d898cb44cae'),
('37a2f191-b535-4324-a1fd-eec6cf224b24','4e20e6bb-25a6-4025-9101-8edccd9cf651',NULL,'DİLBERAY MELLO - 613199072',2,'MTQ',110,0,0,NULL,NULL,'b446493b-1082-4321-a430-c914fa49afcf'),
('37a32b8d-1395-4e4d-b52b-097c0df10fc3','194c48ad-7bf0-46d9-904f-efc5b7f0f7f8',NULL,'ESMA YILDIRIM - 478158518',3.5,'MTQ',100,0,0,NULL,NULL,'06c582f1-63bd-4b65-a2a6-e51e33713b25'),
('37ae40c2-6cd4-4958-8e60-f3d910fc096e','40c234fd-f772-45e6-8f5a-1319b6de4630',NULL,'ÇUVALLAR - 24891590',2,'MTQ',110,0,0,NULL,NULL,'39397b1a-3018-4479-9b5f-2c8efb77f6d0'),
('37ba6ab1-6f37-4958-b9f4-39a733c315de','f8aaea45-10ec-4f3a-afae-efcfefa6c025',NULL,'ÖMER GEDİK - 644113252',3,'MTQ',110,0,0,NULL,NULL,'48431447-596f-456f-9008-45bdd35c892a'),
('37f6de2c-8564-4727-8408-150c3cefa685','fa6c0896-b2a8-4794-9ac0-b39c590088cc',NULL,'AKIN COŞKUNSU - 371365427',3.5,'MTQ',110,0,0,NULL,NULL,'1aff7295-6f61-4138-b273-b03f55942801'),
('38199e28-d767-4610-96ae-b70bd7e9008b','237ca352-1f71-4f60-840e-1feaa0d329e8',NULL,'GÜLŞAH SEVİMLİ - 644721676',2,'MTQ',110,0,0,NULL,NULL,'ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b'),
('38273875-080c-4747-9d39-ba3d465b4efe','571abcda-4135-4ae7-9f60-47460ec5fc60',NULL,'BERNA YİLDİRİM - 61390448',2,'MTQ',110,0,0,NULL,NULL,'8dd05e34-9561-4afb-8daf-fd24f92ac628'),
('38304220-bdbe-4ca8-87aa-cf48dd282fdc','f391948a-13a2-41ad-9e3e-9f418e0fd18f',NULL,'YILDIRIM ASLAN - 614339204',1,'MTQ',100,0,0,NULL,NULL,'aa2cf5a9-9070-43b4-b152-2dfe60634cc3'),
('38364684-7e22-489e-87c7-7e50fca2e177','963b18de-3f3f-4a30-966a-ee79df80d000',NULL,'MERLİNDA MERDJANİ - 248849829',3.5,'MTQ',0,0,0,NULL,NULL,'220db035-3213-4ef9-ba91-2f141c43fdd5'),
('3859fd4a-c206-4224-af31-2b4351c91001','6feb9f45-6aca-4dfc-b5b3-5ea1ccf4e06d',NULL,'SÜLEYMAN MAKAS - 910560938',2,'MTQ',110,0,0,NULL,NULL,'f9e67fd0-ab8e-4143-94a8-e48dd36700d0'),
('3860c07a-e696-4068-80aa-2382a14ea0dc','a164b730-347e-489e-baaa-17817181a7af',NULL,'NRW MENDEN FRÖNDENBERG - 45586545',6,'MTQ',100,0,0,NULL,NULL,'70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90'),
('38ac79fc-b97c-45d3-b0cb-77329bdf5e16','88fab177-61b3-487e-9bf1-13fd81a8e9cb',NULL,'BURAK TÜRKEŞ - 614458088',3,'MTQ',110,0,0,NULL,NULL,'c1cea88c-608d-4453-b63a-81ba0b909940'),
('38c7072e-7523-4d2f-8251-87d97033a02e','8e7fa7df-cd7a-46df-8725-8a6ceb538cd5',NULL,'NERMİN ÇETİNAVCI - 910948770',3.5,'MTQ',120,0,0,NULL,NULL,'517e33c7-4738-4676-b2b6-9a46d48326bb'),
('390a0242-7c71-45ee-b28c-427c8150e6f1','73249b40-a9eb-4f4e-8552-8602197c1794',NULL,'MELEK IŞIK SSH - 644452767',2,'MTQ',110,0,0,NULL,NULL,'88ac5034-c866-4cfd-9646-8c2316ae0024'),
('3921eb00-c90e-43ed-9f69-b307635ed5a1','601588a6-0cfa-4e22-bd23-695fd8cedbc6',NULL,'SUMMSTOFF IMKEGENOSSENSCHAFT - 248243194',2,'MTQ',110,0,0,NULL,NULL,'8839e4d9-61c1-44f2-8680-b2634a2b4923'),
('392b19da-2c53-45fd-a887-cef405bbc5fe','bcb69d12-15a7-473c-8177-481ac16865f2',NULL,'SAİDA ELAZZOUZİ  - 221282484',2,'MTQ',130,0,0,NULL,NULL,'b051fe92-2caf-48d1-986e-2c884be9900c'),
('3934cb17-a5f1-4348-9cad-60f75f7a1fb2','74fec10d-d970-4aac-b06e-7d16702c8111',NULL,'FAHRETTİN AKISKA - 478339664',8,'MTQ',120,0,0,NULL,NULL,'7e266893-f849-462e-9a81-e6336886fc16'),
('39374b02-e5da-4802-9869-a3964792337b','e1e373da-124a-42bd-82f6-39496cd1d0ae',NULL,'AHMAD KADİ - 598578683',2.5,'MTQ',110,0,0,NULL,NULL,'eea08890-ec66-4c80-b59d-441d24154725'),
('393c87fb-04ea-48ac-8835-d8e4d08e298a','8601e825-e6f9-4963-9e4f-4f9cf5176381',NULL,'ŞÜKRAN ALP - 61482958',1,'MTQ',100,0,0,NULL,NULL,'eaa4d38e-5254-4986-b220-3a01cc9187c9'),
('3946f15b-ffc5-47dd-a392-12bf375864d2','1ec66e26-9c6e-4e58-84ef-ae8e02152004',NULL,'ADEM BÜYÜK - 371913094',5,'MTQ',110,0,0,NULL,NULL,'46b19e09-91c3-4a3b-99ec-5d708063cba6'),
('395110e6-5c3e-482b-96fc-83acfe407be4','b80a91dc-7d92-453b-8ec3-813192f514eb',NULL,' SEHER GÜNAY - 478540346',1,'MTQ',130,0,0,NULL,NULL,'72f1e393-e099-4538-86f0-2e59b27b9761'),
('395438f1-c5e5-4d73-a908-86cc71b697df','10fcccb4-3523-4f99-a407-c2360077f3fe',NULL,'MÜCAHİT SÖYLEMEZ - 47842524',2,'MTQ',105,0,0,NULL,NULL,'c7236957-4e70-458b-8d5d-c7a04c012262'),
('3966ef1f-832c-49ba-91c5-884683f477a0','84d62eb1-0590-43a5-b4dd-fb706e475d4a',NULL,'ŞENGÜL BABAOĞLU - 371304914',2,'MTQ',110,0,0,NULL,NULL,'7af2880d-3a81-482d-afb4-351d64968ae8'),
('39718cba-48d5-42f9-8b50-8be628b14d3c','3138116b-d09c-491a-845d-bfe20be1c242',NULL,'DURSUN GÜNBEYİ - 501243340',1,'MTQ',100,0,0,NULL,NULL,'af17c16d-842e-4d8c-9c05-f06402e1d75f'),
('397b7fd9-324e-4e75-8b85-99d086a70048','66a74bc4-a458-4f03-818b-8e6c8e27962c',NULL,'Ramish mirzayer - 449354047',4,'MTQ',100,0,0,NULL,NULL,'144e05b1-97f8-4419-b9c5-ec6fc2546f88'),
('3983a339-9c34-4f03-8838-2dd7a98285d5','9174eb70-468d-46f8-a122-da3c4e838001',NULL,'SERKAN DAĞ  - 982432822',1,'MTQ',140,0,0,NULL,NULL,'623aef24-2f33-4ceb-b49b-a0d41b424435'),
('39883446-acf3-4cf2-a337-27e25b5642df','cc162ffd-eba2-4574-a2fd-bb829e53d557',NULL,'ZEKERİYA AKTAŞ - 735525138',1,'MTQ',0,0,0,NULL,NULL,'70679c39-169c-46b4-9b96-b3994b9aee84'),
('3990014e-c49a-47cc-889b-07cea5e23199','e7a12ce3-4d01-4524-a9c8-229365ac424b',NULL,'ABBAS GELERİ - 517914097',3.5,'MTQ',0,0,0,NULL,NULL,'3d2878ed-86ff-4ab4-a6eb-f24022792e37'),
('39a67e36-bfc3-4da6-b56b-4b6dfe677c3a','5784eecb-d6e5-4bf8-bcf8-4ca15a66ddc0',NULL,'ŞADİYE GÖLEÇ - 61420700',2.5,'MTQ',100,0,0,NULL,NULL,'c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad'),
('39ab3325-0d5c-4f8f-b967-696c77969494','b40d54f8-900f-4ceb-84c8-1bb431d94e74',NULL,'EMRE GÖZÜM(K) - 644312365',3.5,'MTQ',120,0,0,NULL,NULL,'57d149b0-26bf-4d32-bd70-63fa29f50cd3'),
('39c017dc-f618-41aa-bbc5-1bb74af93456','267f10f2-9bfc-4657-812f-21383c357281',NULL,'CEYLAN ÇELİK - 745747218',5.5,'MTQ',105,0,0,NULL,NULL,'5b3baf2b-7f2f-4d1b-b94e-916816876346'),
('39c23f11-847e-4ea9-be22-ba89cdea8240','745673bb-5cd1-4ff4-8f5b-fc52ab167107',NULL,'SEBAHATTİN ÜNVER - 412225517',2.5,'MTQ',0,0,0,NULL,NULL,'33559e2b-89eb-400e-bccc-223d68f8842e'),
('39dc386e-d308-4c02-835c-df8bddc839fa','1ecb5ae7-422d-448f-97d0-9ba1f7bf8921',NULL,'ERDAL OCALAN - 976126416',5,'MTQ',120,0,0,NULL,NULL,'a53ce358-8681-4bd7-86f3-ca3347ae0364'),
('3a16016a-f11c-4afd-8b46-813acc189f52','ce967d78-d019-467e-89ee-d3bf9f9c15dc',NULL,'MERİÇ KARACAN  - 570417524',4.5,'MTQ',110,0,0,NULL,NULL,'7fb143cf-43fb-404b-999f-52ebf5c4af6c'),
('3a54eba9-ed72-4ec7-ba1b-987e686e0c4e','a16fa55f-b30f-42db-92f9-bd1e146b8e42',NULL,'FİRAS MACHANTAT - 750505145',2,'MTQ',110,0,0,NULL,NULL,'58d4a91c-acf5-448c-9848-3d5806828926'),
('3a6552c6-d2ce-4b1d-b320-c36e969fe21c','9b0a62cf-611a-4f5f-ac8e-27e13990e333',NULL,'(K)HÜSAMETTİN CANBOLAT - 644469726',3,'MTQ',110,0,0,NULL,NULL,'a3672ebb-5053-433e-a8e4-f57986e68156'),
('3a7b6a1f-96f9-4df4-a79f-b3787907a0ff','a4eaa7e5-35a3-42b6-957b-7cb0d1aed3f3',NULL,'BELKIS DUMAN - 478662278',2,'MTQ',105,0,0,NULL,NULL,'0aaad212-a936-42da-a38a-78f129b220bb'),
('3afb4321-1582-422f-9cf9-544cbc036452','a15505c0-a1f1-48b5-99f0-0b471a57e096',NULL,'DANİAL ARAMESHK  - 613191069',2,'MTQ',110,0,0,NULL,NULL,'dc6dd7f2-9d08-46bb-875c-df8315d9d4f3'),
('3b2fdb2a-6237-4f8e-a111-9e01e1bcf2f9','d9aa4a46-a6c3-4a76-8014-24935621f302',NULL,'NAVİD BEHBODY - 735793543',1,'MTQ',0,0,0,NULL,NULL,'cd45be95-bde1-4aa8-ba7b-b19b6cded292'),
('3b57c44b-bca4-432b-87f8-4d811d42d8eb','092d7134-2e46-4b97-ba55-232e53d19094',NULL,'FURKAN GÜNEŞOĞLU - 74532550',1,'MTQ',120,0,0,NULL,NULL,'8411debd-d339-4324-8e6e-8d3b1d031e43'),
('3b9c58cb-75d5-4c90-97b0-a711d0c527fd','55037891-bf38-489d-a3b7-c2afe9af8749',NULL,'MUSTAFA KORKMAZ - 428184423',5,'MTQ',100,0,0,NULL,NULL,'3a203b82-4de4-41c8-a1e5-3cd5ed8aa42d'),
('3bb09b33-9c92-4ea9-ab5c-c22348d94f35','79561af3-553a-4f9b-89d9-5561ea95b1d4',NULL,'MEHDİ SALİHU - 371434188',2,'MTQ',110,0,0,NULL,NULL,'26e7065e-7d7c-4b87-8fc9-8255ca593083'),
('3bf2a07f-8a88-41c7-8fe1-e0c384c38299','b5fca2c1-3983-44c3-ad45-5e33dc0c3352',NULL,'ÖZKAN ALTUN - 223867751',1,'MTQ',0,0,0,NULL,NULL,'cbed5de9-ec7b-4304-94aa-2149a3ee9549'),
('3c1be20f-5f03-4e06-bd90-52b74a216a4a','73f12f4a-b79a-4d0e-af18-c0b7b6182d4d',NULL,'RUKİYE BARUT SSH - 644625326',2,'MTQ',110,0,0,NULL,NULL,'ba172bbc-5662-4e18-8ae6-5279c6042b03'),
('3c3cc733-2260-4518-905c-543db5c2ad92','d7c888f1-62fa-4990-ad66-ed32c861c248',NULL,'DİE FABRİK OUTLET  - 223631242',6.5,'MTQ',100,0,0,NULL,NULL,'c9aeac07-5c87-4e65-8ab9-93e191b865ea'),
('3c4064f1-345c-4f1e-b892-465c2cc21ef6','99db190c-c16a-4dea-8eff-4e999b8bf8ab',NULL,'YONCA KİLİC - 675592889',3.5,'MTQ',120,0,0,NULL,NULL,'d2c84f96-5369-41cb-83f8-2768b5603c1d'),
('3c8746a8-5591-47fe-8810-258af9a39b81','90cb5f9f-793d-48ee-b83b-c5fffe997544',NULL,'?? - 268418662',2,'MTQ',0,0,0,NULL,NULL,'eb022ab2-6101-4e9c-8a86-e4148e447ef2'),
('3c9a9fdb-2abc-4d8a-a7dd-fcb163fd325b','711a7c1d-3504-4421-8fc8-8bc5ff021cf8',NULL,'SAMİ MEHDEROĞLU - 735272751',1,'MTQ',0,0,0,NULL,NULL,'d96f6453-1e25-424a-9d19-ea7d43ea1cb5'),
('3cd44567-5207-437f-85d1-de1d22100c4f','51159a4a-e06c-4789-bd84-a72c1ce60b95',NULL,'KEMAL ETKER - 478631020',9,'MTQ',120,0,0,NULL,NULL,'c4474eef-8bc5-41c6-90ed-9545793a31cf'),
('3cdcb4d8-95b7-4112-803a-5c20a53d4220','3ded57a0-a99a-4a83-a1cd-997dc15e2d6b',NULL,'KENAN BAYAR - 74568874',7.5,'MTQ',140,0,0,NULL,NULL,'c242a231-cffe-4e5d-bd32-54cf78b29c25'),
('3ceceba0-58e7-447d-b6fd-afdd86dadaf2','016d871b-89b4-4a32-9016-8fb6bbe6e3b8',NULL,'FATMA BİLGİN - 745353139',2,'MTQ',105,0,0,NULL,NULL,'e98d59d4-4583-412c-bfc4-6bec0baeab2b'),
('3cf8f422-84f0-4ef8-97d0-15fa957e7d19','fcbbda4a-7d73-4217-98ee-778a6d0d0287',NULL,'SAİT BEY - 735814007',1,'MTQ',0,0,0,NULL,NULL,'67f3e803-506e-4fab-b999-051b7a0368e2'),
('3d324e24-a7b9-497f-8549-88244c42c94b','9d7ce6c2-5205-4e10-92a5-d286b248b1a5',NULL,'TABELA - 248915549',2,'MTQ',110,0,0,NULL,NULL,'084a9df9-c2a5-4ac0-83c6-5c5c4de780b1'),
('3d4cfa47-901b-4486-8197-6ffaad15caa3','432f790e-20a8-4c73-a417-71ee16c326dc',NULL,'TÜLAY AYDIN - 428604775',2,'MTQ',110,0,0,NULL,NULL,'64b8a1ba-85de-4554-a334-d674f0951e0e'),
('3d5cdfe8-487b-4e28-8f14-20b14e0ac42b','bcc10368-cf0d-4fdc-b6c5-e0c365af6cb9',NULL,'BAHAR ORHAN - 478835180',2,'MTQ',130,0,0,NULL,NULL,'f31b5648-bfa8-453b-a0cc-3f15b30f8046'),
('3d892430-23e3-4c6c-9ffd-327805b0ce5d','576d8cde-6641-43af-b7eb-1082cca51287',NULL,'MÜSLÜM MERDANE - 74520622',7,'MTQ',120,0,0,NULL,NULL,'4f12f440-a116-4008-91df-70191ee2d9f1'),
('3da474a9-601a-4531-9be5-df342f1758f6','27695bfd-c3a0-4b0a-9558-de8359c743d0',NULL,'MEHMET DORUM - 248526655',1,'MTQ',0,0,0,NULL,NULL,'4e0cea3d-63d2-42a8-afae-666b9df651a4'),
('3dac89b3-6f93-4273-850b-76711be43e27','517770ed-5b12-4c59-98e8-74a84f94efe7',NULL,'MURAT AKTAŞ - 412842533',2,'MTQ',0,0,0,NULL,NULL,'8828af70-12d3-4a54-b004-b8bbbeafa45f'),
('3dd136b3-fa5c-40a0-99e2-58e69c5561f9','264389cf-0969-411d-a45c-bc272669461a',NULL,'DEKOR ARSLAN - 412332862',2,'MTQ',0,0,0,NULL,NULL,'d834f33a-bc33-4d29-8f11-a9b44beafabf'),
('3e442b83-b1a4-4e7f-ad67-5f2d19b942e1','669ff61d-621d-4f5c-b768-b354b01c06fb',NULL,'CANAN DİNÇ - 734245011',7,'MTQ',96,0,0,NULL,NULL,'e007fd33-7715-4011-8189-99fce010ccdf'),
('3e5a5f7e-dbd3-4c31-9926-9bf5963f5903','363394fc-90c8-442f-8b5c-0e0d11a54aea',NULL,'NECİP DELİPOYRAZ  - 910943161',4.5,'MTQ',0,0,0,NULL,NULL,'5f54cf54-9e84-4494-a263-8967ec9803e2'),
('3e718d1d-9ee2-4bff-87f7-84fdf3d16bf3','f4905cfd-e8a3-4a69-b506-484a2652afe9',NULL,'MUHTEREM KAYA - 465891539',1,'MTQ',0,0,0,NULL,NULL,'e0294a05-406d-40f2-9ebf-a0f322513cfa'),
('3ea25f19-9413-47a5-9557-8847da16e6f9','ae6a39b6-0282-4e44-921c-7d8a87166d40',NULL,'GÜLPERİ ÜNVER  - 478415751',6,'MTQ',110,0,0,NULL,NULL,'2abdc40e-c15a-4ac5-a5b1-459adbffa8dd'),
('3ea9fbce-9684-4ca4-a47a-ac4dba2d0284','24b8909e-2de6-4bd0-99d8-d5c97f20b565',NULL,'ALİM BAŞ - 50133574',4.5,'MTQ',100,0,0,NULL,NULL,'57a81540-e462-4e25-92dc-f9dd8b6a14df'),
('3eb23a6e-356a-4355-b8be-0b0886ba4746','1dfc3df5-f5c1-43f7-abc8-cfbd56492a4b',NULL,'MUHTEREM KAYA - 465500768',9,'MTQ',100,0,0,NULL,NULL,'e91ba42b-a5c5-4961-8243-6c239fcf9a75'),
('3eef93a5-5613-4040-84e2-e5cbebcf5b65','093a622c-5e84-4f59-ae1c-28e5e051fdbc',NULL,'MUHAMMET ENES KILIÇ - 478609228',7,'MTQ',110,0,0,NULL,NULL,'fcf0c01f-72e5-4298-b55c-15849b2fdb04'),
('3ef59d88-29b5-47c2-a998-4d2e69485b27','bb81dc9b-6206-42c5-833c-1f29603ef550',NULL,'JASMİNA AGA - 735271543',2,'MTQ',0,0,0,NULL,NULL,'bffb100f-3ff7-4c20-b550-4d2bd55fc67f'),
('3efea5a2-ba80-460f-bd32-02306d1c06c3','bb5d4018-d642-46f5-9a4a-656297dd92ab',NULL,'ABDUL AHMAD - 112609358',3.5,'MTQ',130,0,0,NULL,NULL,'190aceeb-f986-4f9a-b734-78ec3fc1e2f7'),
('3f10d525-ea53-4212-9813-3b8b7be7a985','7c917ffb-43a0-4b09-b2e2-ee0f0f285113',NULL,'AYHAN KOCAKAYA - 31979626',4.5,'MTQ',120,0,0,NULL,NULL,'4b0a63a8-b888-4398-b6a4-26f747429361'),
('3f1ad65b-c248-4f18-9c90-4c7b82bbf425','359d6203-c93f-4a1d-a512-2c92b8f97eef',NULL,'NİNA ÖZÇELİK - 437397407',3.5,'MTQ',120,0,0,NULL,NULL,'4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1'),
('3f7b6fa4-a61e-4ff1-81b9-f9fb66b90ce6','f0d83eef-7073-4ea3-aed2-d2b44190d75f',NULL,'BİLAL ACAR - 735143086',1,'MTQ',0,0,0,NULL,NULL,'f94d7e44-ad9c-478b-82da-bff20e93e06f'),
('3f801e3e-428e-4df4-8f02-4a31c167bbc1','07670a73-77e6-4bec-94b1-4be3712539ff',NULL,'YILDIZ KILIÇ - 221952785',2,'MTQ',130,0,0,NULL,NULL,'9b2f2551-1d35-437d-8ac4-759e5572cc4b'),
('4008434f-ea84-4c73-a23c-7b233e018300','383a265a-69a1-4ba0-a43b-a3b57cfe712f',NULL,'SEFA TÜZER - 428879207',1,'MTQ',100,0,0,NULL,NULL,'c928edbb-a731-4b55-bdfb-3f68dedd72df'),
('404a64f8-e824-4f7d-b497-293457295b93','26dc6111-aec3-4d0c-a9d7-2d0d03e50917',NULL,'FERİT YEKDA - 248284961',2,'MTQ',110,0,0,NULL,NULL,'968b133b-83c8-4a7b-8237-6fc0a98af493'),
('408496fb-71af-433a-8614-fca9e7a81956','9815b16d-1bc7-4d61-bdd3-a082178c2e49',NULL,'NİDA YİLDİRİM - 412939859',2,'MTQ',0,0,0,NULL,NULL,'ada30e7c-1819-48d8-b086-9ceffe365e0b'),
('4089a907-c4ce-48be-8ed4-578d33031dde','ccdfe47f-769a-4687-aadc-37ec56b2ac87',NULL,'AYLİN KIRLANGIÇ - 127221315',3,'MTQ',110,0,0,NULL,NULL,'96741763-bc18-47ed-be48-0c973149d4fb'),
('40b03b4d-7188-49f0-b69a-676f3ab1e0cf','94edf977-6036-44d4-b589-210ba0ce9a11',NULL,'MARTİN MARİNKOVİC - 675885408',2,'MTQ',120,0,0,NULL,NULL,'f7194f95-fa52-48ad-8c78-86a92187abde'),
('40b09761-fcf7-4b15-999e-1aef05f0d8f2','1f589b4d-309f-4e44-94bb-5f0525f385ab',NULL,'ŞAHİN DOROTHE - 98298396',2,'MTQ',140,0,0,NULL,NULL,'face1a09-2be5-4ea9-b295-ce5813e481fb'),
('40b391ec-a02e-4230-9e9c-d057a8f08780','ea49a6ea-1f50-4fca-8625-40e33ca93dbb',NULL,'İLAYDA CALINALTI - 22137977',2,'MTQ',120,0,0,NULL,NULL,'e5aec591-aa43-4db5-8228-1d08c0c983d2'),
('40d235e7-3fc4-45de-b0fb-118db96a365e','4895a9f8-1516-48a0-baea-6cb5d8fd5a4a',NULL,'FATİH KAZAR - 428182749',4,'MTQ',110,0,0,NULL,NULL,'13d25c6c-54a0-4d99-bbbe-499e98654a1c'),
('412911f4-b442-48b4-8c5d-81b286fc98bf','3bbeca6f-9441-45cd-9949-62734a57271f',NULL,'MALHA MUHAMMED - 982873637',6.5,'MTQ',110,0,0,NULL,NULL,'462436e2-17b1-4c65-8ccd-cd83b180543f'),
('41580126-0ee6-41a2-929d-d4e61bebdc35','2644d8fd-6574-4dd2-9b60-df25fb0936e2',NULL,'MADAME COURTOIS IMANE - 745987581',2,'MTQ',130,0,0,NULL,NULL,'f307f0b3-1e6f-4062-b3df-b0ccecb5eb70'),
('41cf1191-dfc8-411a-bfac-b95c14a0c339','bf967bcb-282b-4a2f-9341-d766146727b2',NULL,'SEMRA TERLEMEZ - 45527400',4.5,'MTQ',110,0,0,NULL,NULL,'bb868109-aa10-4576-90c5-cea9bda06633'),
('421492d0-bf28-4f8e-b522-13573d7e89df','87def5af-68ef-4fd3-9a7e-33f801abf384',NULL,'NAMIK KAYGIN - 478142620',4.5,'MTQ',130,0,0,NULL,NULL,'9134b63f-7d66-4eba-936c-7bc7dbbabe6a'),
('424b4303-5e78-4129-a1d8-ae8575d7772c','5d1481b1-b5f6-422d-98d1-5d80c8daf7fe',NULL,'MERYEMA TEKİN - 478958383',2,'MTQ',130,0,0,NULL,NULL,'13f14d6a-f39d-4909-acdc-fedbca6dd80d'),
('4261486f-52d5-432c-98bf-46a6254e00b6','9e0757f6-4b11-4bb8-9003-28399553c745',NULL,'SAAİD HUSSEİN - 501760708',4,'MTQ',100,0,0,NULL,NULL,'7ebe9302-39fc-46ee-b7c6-423d2cf70cd3'),
('42a1f8f0-6ae7-41a6-970f-e1e1164f6138','8b6b0de6-0ba1-4a4c-b82c-5265896d20b8',NULL,'EHSANULLAH SEDİGİ  - 982663240',4,'MTQ',140,0,0,NULL,NULL,'50aeff12-6812-447f-b3a6-0c51ad9fc878'),
('42c84ba4-077e-45e9-a779-1c66727bbf0e','0a34c73d-9394-4d09-8370-7f8e175cc6e1',NULL,'FURKAN KAYABAŞ - 221631052',2,'MTQ',120,0,0,NULL,NULL,'39b8366a-c9ba-4484-bb91-a877325d0b1c'),
('42dee816-8538-4920-8c77-aed47294d1aa','d8ec0e1a-0779-4660-aaad-e3826e559698',NULL,'AYŞE KONDAL - 478971881',11,'MTQ',110,0,0,NULL,NULL,'fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b'),
('4338bba5-bdb0-4d9f-ae25-f1985e48821b','8b077cc5-8c11-400d-a846-75dcf5dea2f0',NULL,'AYŞE TÜRKMEN  - 221507815',2,'MTQ',110,0,0,NULL,NULL,'0fef7900-6144-44c7-9378-415e663633c9'),
('4341289c-08ab-4683-97f4-256ba348d169','33fb69f4-a550-4eb9-8de5-ff062e3f22a0',NULL,'ASUDE FİLİZER - 613786429',2,'MTQ',110,0,0,NULL,NULL,'b035d749-8b47-4cef-bb6f-fb97f2480a4a'),
('4341fd6f-dacc-4f77-b27a-ace0a6085f72','9111bee0-9b34-4b1c-8db3-c7a740d138db',NULL,'MUHAMMED PERVANE  - 644531622',2,'MTQ',110,0,0,NULL,NULL,'2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf'),
('4357303b-a028-48d8-863e-a9442378f1ec','847c9cdf-69f4-40fa-96ba-a0b179a598f1',NULL,'SEPİDEH AJORLOO - 478854135',5,'MTQ',105,0,0,NULL,NULL,'32676e01-684e-4e88-b01e-02f858a6cf93'),
('435bc9bf-5096-4042-80d5-1d7dc3607f28','73b8db25-fe6f-49ea-9189-f947a2253d59',NULL,'BARIŞ ÖZTÜRK - 750355737',3.5,'MTQ',120,0,0,NULL,NULL,'bd80bdec-0c89-4c10-9849-bbafe5a44605'),
('4372963c-fed2-4947-9331-4eec535ed444','6bb54b4b-8b1b-4e25-9750-e616581a6eb7',NULL,'EMRE AKŞEHİRLİ - 478188105',1,'MTQ',110,0,0,NULL,NULL,'ec51c14f-fbdf-4aae-950c-63cb48e29c49'),
('443b96b4-afa3-4443-94be-3a13a7a303f7','f2c12926-ce20-48b3-b4e4-3183e51e7d2f',NULL,'ABUZER TEKCE - 319232330',9,'MTQ',110,0,0,NULL,NULL,'239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5'),
('4444beed-8b1b-4dad-a1e7-fefcc089223b','c9d0ee7e-2efb-4dbe-91f1-9fda6aa4f6f2',NULL,'NURDAN GÜNDÜZ - 437529604',3,'MTQ',120,0,0,NULL,NULL,'1106ac37-0c19-4da2-b605-9af60d1e2fd2'),
('4452ff0d-23f2-412a-979a-2e704db19e2d','de0635d0-be51-4b57-adb6-839f0fd273b7',NULL,'ALİ ALBAY - 517205085',5.5,'MTQ',120,0,0,NULL,NULL,'9a1969a8-0e13-466d-8869-8ce1c930334b'),
('44551d89-09fc-49e1-9f4f-94661a43632b','21ae998d-c084-44b4-a400-c44faaad9d9c',NULL,'CEM TOPYÜREK - 531870941',2,'MTQ',140,0,0,NULL,NULL,'c82a223e-bb39-4f90-9da3-ee3e7be1f915'),
('44bcebd5-1b32-4091-b1d5-71a4253c263f','525e753a-179d-4b40-9976-722b155792d8',NULL,'EL GHZİZAL CHAİME  - 221686736',2.5,'MTQ',120,0,0,NULL,NULL,'a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd'),
('44c897c0-d16f-4399-af05-13a9ab807a72','4b9d2ff2-100f-4753-b38a-86ed9d6f05c6',NULL,'EMRE ÇELİK - 278329196',7,'MTQ',120,0,0,NULL,NULL,'ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6'),
('44dbac8b-3ca2-4292-87e7-3d9de2db2b53','bbbd2e47-e738-4784-b6f7-28af6d131fb5',NULL,'KEMAL ETKER  - 47876427',2,'MTQ',130,0,0,NULL,NULL,'6245482e-e4e9-4ec3-a033-d261753e3a36'),
('44e6c6a6-6747-410e-838c-50e151e641e4','ca67f2dd-59cb-4f31-85c3-4700ab426ed2',NULL,'BURCU ASLAN - 598220619',2,'MTQ',110,0,0,NULL,NULL,'4976e309-54de-42bc-9a9b-1f542a9bd4d0'),
('44eccb40-aab7-44a2-bf0d-6693671ec3cd','3c030b75-f853-477a-ad63-787f4ca46257',NULL,'YASİN ARSLAN  - 517205467',4,'MTQ',0,0,0,NULL,NULL,'fd54b0f7-c719-44a1-9058-d59b1b5982cf'),
('44f967ce-cd6e-464f-9bfa-854efd2d6594','3270bf67-2190-49f0-bf6a-f9bbad1d84c9',NULL,'HALİT KADİM - 248533509',1,'MTQ',0,0,0,NULL,NULL,'b1ebdda3-f50f-4336-8da0-ec3f51d55410'),
('450a9c13-385d-4af3-bf1f-828de02c71c9','fc6c6d5a-67d5-4815-9af0-ddbc26e9f53c',NULL,'HALİL AYDOĞAN - 501869420',4,'MTQ',100,0,0,NULL,NULL,'ff95657a-16fe-4eda-9384-6d189d9a5bd8'),
('4514175e-0613-4bdc-89cf-1b71c361d5dd','4cd3d3cb-3f1d-48b9-80e8-45ee2452357f',NULL,'MUHAMMET EL CASİM - 248435862',3.5,'MTQ',130,0,0,NULL,NULL,'7f7fc18f-c4b7-4970-b1ed-b10790978ab2'),
('451cfd62-6c93-49e9-a690-8a778255df13','96c76e24-8bbd-4093-8867-7894da290b2b',NULL,'NAİMA BOURAJJOU - 22186590',2,'MTQ',130,0,0,NULL,NULL,'3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5'),
('4558ddae-c98c-4182-a267-3fdc0b3d8711','d6a2840e-eda3-4255-a466-02ce1c7dfc81',NULL,'İSMET LEVENT - 151258703',2,'MTQ',0,0,0,NULL,NULL,'d2110d46-cc68-4e06-8300-10a6aa3bdcd4'),
('455f64e4-1120-4bc5-b483-908d0283ebb3','c0bdf2b3-caed-4139-b251-faebec045956',NULL,'LOULOU FİRAS  - 982754836',2,'MTQ',140,0,0,NULL,NULL,'f8828112-c2c0-43e1-8300-a4fea7da05f8'),
('45a94c64-55a0-4493-9cdd-38158570683e','8a92cc23-ba26-48c0-9f9b-84967fdd3a0e',NULL,'GÖKHAN YETİŞ - 41295798',2,'MTQ',0,0,0,NULL,NULL,'3977a5d5-74d4-4a83-924b-634b068065a2'),
('45d215d7-1184-48e9-93fc-be28ebb10b52','7c0df063-7eed-439c-bed9-cf7601ae7e23',NULL,'METE BOZDAĞ 1  - 745241298',2,'MTQ',130,0,0,NULL,NULL,'f8a139f0-1f82-4b1a-8d72-56243db2d7b8'),
('45edc30b-73f5-4dbc-98e4-95eb72963274','9121c9c6-3d2b-427d-b272-1f07af0096a2',NULL,'HASAN BEY - 448153102',17.5,'MTQ',0,0,0,NULL,NULL,'c0971211-dd47-4ca0-be3b-b5119c4ec3e8'),
('4648f94a-4f77-4d48-b09e-3035af1486a1','339bc130-f570-4a5a-a49b-255c6d395090',NULL,'ERCAN VARSAK - 745318139',2.5,'MTQ',105,0,0,NULL,NULL,'89eb6491-3e20-44a2-80d5-2107251a822e'),
('4680e8d5-cb14-4f78-8109-7688bfd03a93','023448ca-ee61-449f-aae8-0941f46c25fd',NULL,'NUSRET VAROL VURAL - 598427868',8,'MTQ',120,0,0,NULL,NULL,'932af7f2-df9e-4032-b8ab-056455a1eb6f'),
('469c912b-a3ad-42ae-a6bb-5d905cec97b6','cbebd1b5-e79a-4554-b737-3cb7db64e965',NULL,'SEYFETTİN BİLİCAN - 703700559',90,'MTQ',44.45,0,0,NULL,NULL,'9ab1e698-3e9c-4902-81a7-1cc2cb0af3ff'),
('46d8c949-b4ea-49e6-bac5-9eb85f50bc7e','2b696186-0638-4ad9-a6b4-ba3e3dac534d',NULL,'NUR YILDIRIM - 745278745',2,'MTQ',105,0,0,NULL,NULL,'26dac25b-c3a4-48f3-a7c9-711fda2dbf20'),
('46f41955-9298-4b94-b527-70909d87759e','62dfeded-db4e-4049-90a6-9d5bece5dc1d',NULL,'RASİM OZAN - 437642214',4.5,'MTQ',120,0,0,NULL,NULL,'3f298ea0-796a-4ae2-a1d8-43723fc8f5e0'),
('4748daea-08f1-4ef6-96b4-7a67d2d4edc1','228d7b5c-4bd4-472d-bedf-d22c5de894a8',NULL,'HAKİF ZİNAL SSH - 644391223',2,'MTQ',120,0,0,NULL,NULL,'a6738f2f-6b68-43b0-af19-0baf0d11e818'),
('475bf315-826a-42f8-bbcc-751fae2a94c4','b9edc1ec-fcf8-4895-aa6f-8cf8a0e95bd9',NULL,'ŞEYMA ŞANLI  - 221883606',1,'MTQ',110,0,0,NULL,NULL,'f0caced4-3715-4549-a387-1a73db0a7166'),
('478e6858-c4c7-4a97-8add-3172791a214a','e8facc91-5fb6-422f-a76d-1ef6a98732cc',NULL,'BÜNYAMİN ELİF ÇİLİNGİR - 570899680',28,'MTQ',120,0,0,NULL,NULL,'4bdcdb81-8f1e-445e-a062-3fd4dadc1b21'),
('4790ce3b-33c9-431f-8f0b-6ec97f2f4e7c','9af9a1fd-db15-430b-851e-b636bdd60296',NULL,'LEPETİT CRİSTELLE - 221251932',2,'MTQ',120,0,0,NULL,NULL,'94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b'),
('47a03b7c-d96f-49bc-872c-8e1f78826cd2','f9a00a17-e3c7-4602-a69a-828f9656125d',NULL,'HÜLYA MEŞE (SSH) - 338882287',2,'MTQ',120,0,0,NULL,NULL,'7b9471cb-d4f3-4db3-8ac7-d88e488c33f5'),
('47a80733-fcea-465d-8037-ad9f649cde38','0e7bf17c-6a79-4ecc-a998-65969800851f',NULL,'(GÜLŞEN KARATAŞ) SSH  - 644423895',2,'MTQ',110,0,0,NULL,NULL,'8e9de283-057d-4b23-a2a9-ce528f93257d'),
('47ba3c04-9ae7-462f-9199-32064e88370b','bfdc564d-02b6-4a0c-a8ae-05021b8cf08f',NULL,'GÜLCAN AYDIN - 976942444',3.5,'MTQ',120,0,0,NULL,NULL,'99f2313f-189c-456e-bcf0-d0e88ae7ffbf'),
('47ddea09-393f-40ff-86e7-56cbee8a9179','8663c4e3-cae5-4406-b88a-fc673cdeb5e6',NULL,'CAN KUL  - 478161304',3,'MTQ',105,0,0,NULL,NULL,'a7f2c8a1-4d37-45da-904c-4406f86faab9'),
('47f52d9e-97e7-4a59-93a5-dab3fd07e474','748dd962-a6bd-4e9d-86ab-5f942792335e',NULL,'SANİ ALAJBEGOVİC - 644344492',2,'MTQ',110,0,0,NULL,NULL,'a3da76d9-3e08-44c3-b712-87bc2e6f90e4'),
('47face8a-79af-4c65-b9b6-8f00a9e0bf58','a541abca-98b7-4088-a55a-a011c4928168',NULL,'AYŞE ÖZSOY - 745132796',1,'MTQ',120,0,0,NULL,NULL,'8d846a6b-e2c3-45bd-928c-7238130acfdf'),
('480192b0-22cc-46cd-a452-98ff52b32ef6','ed983553-2480-4fe2-8103-66c275a72690',NULL,'YASEMİN ERKAN - 910152598',7.5,'MTQ',120,0,0,NULL,NULL,'b465c878-5c55-4a06-a58b-bd7c57228652'),
('480a2880-e87c-4835-89cc-1372401b8f5d','34179586-f1c2-4f8a-8814-7b4081e32e94',NULL,'HASAN KAYA - 64413417',3,'MTQ',110,0,0,NULL,NULL,'19e9a585-4bbd-4792-9b14-2af8605e433f'),
('4811f73c-633d-4da0-b44f-3f23d51440c3','84e32908-3cc4-4381-8e6b-a4c986d42180',NULL,'RUKEN ŞAKIR - 910187142',4,'MTQ',110,0,0,NULL,NULL,'4dcd0598-cccb-4e25-a905-d0b8bb159ce5'),
('4820d13e-77fb-42a9-bfe2-c04d11ba347b','d97b4643-df8e-482b-81c3-e2eb421e2951',NULL,'MOSTAFA RAZOUK - 146630568',15,'MTQ',100,0,0,NULL,NULL,'cd21e329-02ee-479d-aa79-d66d804db51d'),
('484e024f-4400-4d64-a0ef-06585f06ff39','42c3b9cf-b9bd-495a-b900-2d9a278d8ce0',NULL,'YAŞAR YALMAN SSH - 478816988',2,'MTQ',105,0,0,NULL,NULL,'280e9889-e4b3-48a6-9ac5-246bac1566c1'),
('48666fdd-d8c4-4c61-ba02-388ee47d053f','ea80a783-425d-4d18-b135-b3cbf5c0f572',NULL,'ALMİRA - 126229931',1,'MTQ',140,0,0,NULL,NULL,'cdc7b5f1-b03d-4f6d-88a0-251d10e85884'),
('48764c56-985a-4e61-9bab-6b987e92a773','1c4a35ca-2125-4aa8-942e-7293a5e27589',NULL,'AHMET AKAT - 817619747',6.5,'MTQ',120,0,0,NULL,NULL,'2bfb4ebc-a071-48f5-9c44-727046a13ab1'),
('48a8c6af-a6f8-4c8b-bf2e-e1315b7c1cfe','702afd07-e081-4ad8-a5e5-66746f6ac1ea',NULL,'LAMMARİ BAYA  - 98232043',2,'MTQ',140,0,0,NULL,NULL,'8327f88c-b625-4fa3-872e-273fef27e498'),
('48ab852b-556a-4c5e-baee-4add8d495936','cc19dad8-cb6b-4212-a565-e8f9109cfc13',NULL,'DRAGİ DİJANA - 675951028',2,'MTQ',120,0,0,NULL,NULL,'8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c'),
('48d58ff1-4344-4b2c-81c1-dbfb0d48de42','b3f27eee-0597-4b95-920c-94d332c71e2b',NULL,'ESTRELLA TÜMKAYA - 319918133',5,'MTQ',110,0,0,NULL,NULL,'c1e90081-d7d5-4180-8f60-a63125cea8c2'),
('48f0a0dc-63b2-4934-baad-29ebfe562dda','9fdfd695-21a6-4ee0-9d77-8b4b26dfbe85',NULL,'ŞÜKRAN ALP - 614990703',1,'MTQ',0,0,0,NULL,NULL,'b44944f3-7dd8-418b-84ab-1045b4554936'),
('490353e4-3451-48ae-9732-36774eb6786d','001a10c6-a69c-430c-b997-d78859c53363',NULL,'METE AKGÜL - 371857345',3.5,'MTQ',110,0,0,NULL,NULL,'e16c760d-d790-4586-b7cc-374c53cefd14'),
('491d5f4c-68a6-4b29-88c8-92c706d7bf8a','739cca85-975f-4f82-ad5c-acbf766309e1',NULL,'MURAT YALIN - 412330197',1,'MTQ',0,0,0,NULL,NULL,'087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3'),
('49233f5a-a981-4a90-b10a-83c299859545','c85f222e-6a1b-408f-8848-a75301f7d516',NULL,'SAMER JİNİED - 42845711',5.5,'MTQ',120,0,0,NULL,NULL,'00f85745-0785-4a7a-9691-f650a9d585f2'),
('492ad595-25c6-46ef-bbf7-9a1c25c488f7','6b758457-8bec-479c-b675-2915861f47a2',NULL,'MEHMET SEKBAN - 437840419',4,'MTQ',120,0,0,NULL,NULL,'d1cfa6cc-2247-4475-be75-54d2bdd21d0c'),
('4938dcba-7a1a-4d50-bb63-345d5d4d425f','49cdea6e-5f18-43b8-a3ed-0b8d127c518e',NULL,'SELİN URAK - 437152964',6,'MTQ',110,0,0,NULL,NULL,'d9ce2f65-7034-4114-b66f-0c1076eb90bf'),
('49450d89-1ea8-4230-b7d4-5ce907d472a4','720561c4-4e4e-4f26-91d2-6939c4060c08',NULL,'YASİN OĞUZ - 478233957',5.5,'MTQ',120,0,0,NULL,NULL,'34e042be-7f8d-4047-b3b9-96ed6829bf2f'),
('495e31cf-48e8-48a9-9b36-cbd38e8f3d28','bd918f7f-71db-44a3-b823-bd9f91863221',NULL,'NURTEN TÜRK - 745220703',2,'MTQ',120,0,0,NULL,NULL,'e8a249a9-b090-42b5-ba99-445005f2b553'),
('4962bde0-0370-4566-b708-c6075a96edf3','7c9b67ce-b046-4554-81c8-7870ead51777',NULL,'YAKUP AKYOL - 644741916',3,'MTQ',110,0,0,NULL,NULL,'f7d9721d-e27b-40dc-a48f-5d1604c92366'),
('49669853-e500-460a-9519-26338e09545b','d516bbe0-237e-4f39-991c-aa1aefd7f58b',NULL,'AAAAAAAAAAA - 382253716',9,'MTQ',130,0,0,NULL,NULL,'fe602c87-be95-4eec-b456-7556cb60d4a7'),
('496b2066-c85f-4682-a4e9-f78b67712eaf','0ba8ef73-849f-4bd5-b3a6-7a7148d3db6a',NULL,'OSMAN SÖYLEMEZ - 478325717',2,'MTQ',105,0,0,NULL,NULL,'da9eb398-85ed-41cb-b123-6ca8278d250d'),
('499b4513-ee0c-4ffd-a216-d83c0d075914','b9068d63-d590-4750-83ba-e4694a0929a1',NULL,' - 454592303',1,'MTQ',0,0,0,NULL,NULL,'b659a388-1c45-405b-a478-fa4eb2398376'),
('49a8df92-fed9-493b-bc64-31b9d3ecb279','8f7c60da-6eb5-4bb2-8b72-b7d419f437fe',NULL,'LOSİF LOUNT MİRİUTA - 982592763',3.5,'MTQ',130,0,0,NULL,NULL,'23d90d82-1e00-4325-8ee3-52a0d3809873'),
('49bf55e5-62b9-4e97-bbd0-2bd10b710191','9f4f5b8c-366c-4313-b495-f99e9a8e9d86',NULL,'OKAN EKİNCİ - 745873539',8.5,'MTQ',105,0,0,NULL,NULL,'9fe64691-2031-49a6-a917-f5af8aa63a82'),
('49db6cf2-07f3-4ebd-8042-71e7141112fb','74bace7f-c785-45da-b4d4-65a74d2de803',NULL,'FATMA EROĞLU - 455165840',5.5,'MTQ',100,0,0,NULL,NULL,'567de155-b820-4225-ac37-23f88ed0500c'),
('4a064a4a-d5c8-4c3b-a4fc-c173136f89cd','2dedfc4e-7fef-4c3f-832f-38c4bc44af91',NULL,'ADEM ÖZKAN - 976779460',4,'MTQ',100,0,0,NULL,NULL,'7714cc95-f8de-4560-8240-8168befc09b9'),
('4a397961-4fe4-4c3b-bf9f-1ac1f3fe0380','6f8a3aee-0138-4944-8f81-593be2c22481',NULL,'MİNE GÖKÜZÜM - 982992264',4,'MTQ',100,0,0,NULL,NULL,'7cae2eaf-f51c-496a-aa79-beedb60cda43'),
('4a5023b8-8487-4140-92b5-ba16c705c7e6','be3fd3be-b3fd-4da7-a016-fa5b85b5d1a4',NULL,'YUSUF YILMAZ - 745481313',4.5,'MTQ',100,0,0,NULL,NULL,'8a3a5949-7a42-4ac9-a011-34fadde1265c'),
('4a516a06-b0ff-4a65-8f94-da519ae9edaa','51cc6e97-5653-4180-a321-6a9ec48239ad',NULL,'SEVİNÇ ÖZKAN  - 614143415',12,'MTQ',0,0,0,NULL,NULL,'46a5e555-47e9-4fd4-bbf4-635d40a7d1a5'),
('4a710d1b-60a8-41e1-be66-cdbfb4e0feea','348a4fca-ad42-49e7-b985-f11b6bf9be37',NULL,'YÜKSEL KILIÇ - 478339779',7,'MTQ',110,0,0,NULL,NULL,'8a01daee-3535-4440-8996-fc7c3e2f3de0'),
('4a9014a8-84f2-496b-ad96-b655bbf927bb','b6e30fbe-5776-4578-bbd5-10be90b1b0cb',NULL,'DERYA BAYRAK - 371180149',2,'MTQ',110,0,0,NULL,NULL,'88e73e43-dac2-4ecf-ab5a-8fb52d544ece'),
('4a9591ad-8268-4c31-aae0-60c872e0ce02','18e493b1-7c9c-4ba3-ba21-22949d7cfea8',NULL,'MÜZEYYEN TEYMUROĞLU - 478677950',2,'MTQ',105,0,0,NULL,NULL,'13b7e986-8aa5-48cf-8d62-fdb2c0c334f3'),
('4a95f9e8-0040-4476-b195-185891f9921c','cd8a5765-7a05-4fd2-b238-4479e09b280f',NULL,'İLAYDA FİDAN  - 019868401',6,'MTQ',110,0,0,NULL,NULL,'f2f3813a-4330-4d7a-926d-057c1aa9190a'),
('4ae9458b-47f1-4e61-957d-87df72601eb6','5c5a91bc-b037-4b9f-957c-bd5fb1a6145f',NULL,'NİSRİN GHARİB HASSAN  - 817747938',3.5,'MTQ',110,0,0,NULL,NULL,'9304190a-dd40-4d16-b7c3-2f3a039dd301'),
('4af2e750-7f37-4074-b88a-5bfee324657c','390bae94-d1cd-4494-94d8-600b4dbc7a79',NULL,'DİE FABRİK OUTLET - 223385669',2,'MTQ',0,0,0,NULL,NULL,'5ae8d626-7580-4933-b99b-5dc0ec84d646'),
('4af5ed00-e58b-4861-a9ad-d0d5583846e0','14b578fa-f41f-4804-bc7f-d3c060223749',NULL,'BERAT - 412485805',2,'MTQ',0,0,0,NULL,NULL,'e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1'),
('4b2c392f-4779-4abb-bc8d-f4c131f15f29','280ddf3e-2e6c-462d-93ec-2dc7b1693f14',NULL,'HAKIMI MUSTAFA - 982742157',2,'MTQ',140,0,0,NULL,NULL,'8970c6df-ded4-4e10-a476-faa9d8e3a4df'),
('4b2e6725-6e33-4680-98b8-5eeedc783f08','5d0b508d-5edf-4bf2-b9b2-f5a07cea2b72',NULL,'MAZHAR BAYMAN - 644903033',10,'MTQ',110,0,0,NULL,NULL,'3fba1e1a-d3f7-4a72-b88c-284f205185ce'),
('4b3838d3-bb7e-4cd4-925f-210d9085ab70','ad86f44a-b35e-4439-a6b4-87d5eb6fd383',NULL,'MEHMET ANDIÇ - 745759881',8,'MTQ',105,0,0,NULL,NULL,'00f4949d-f6aa-4775-913c-9c6fc75113bf'),
('4b46c184-4be8-413c-b3b8-37d1ff764fb5','cf701b61-5ebb-4c75-a842-de030cf0698a',NULL,'ARZU ÜNLÜ - 319829855',2,'MTQ',110,0,0,NULL,NULL,'834f05c9-ba0b-4030-8950-1efd86d43ae1'),
('4b572050-15f7-4e45-bb33-25a61ee14d76','4a87b0fd-0b10-47e8-aa6b-23e28f9d6f98',NULL,'KADİR ÖZCAN  - 428159880',1,'MTQ',0,0,0,NULL,NULL,'1bda9f39-f27b-4736-be6f-b3d3489888ad'),
('4b6463ef-0f31-47b7-9093-1b8e3287008d','43510534-6ab5-4845-ad52-0dd150f74e0e',NULL,'CAM - 455122963',1,'MTQ',0,0,0,NULL,NULL,'d1838829-7a23-4b22-8b75-127eb7ac1cd6'),
('4b932a5c-3a17-45c8-a439-fac7a5249436','9a301e2e-6648-4bfc-9941-8040799b3209',NULL,'SAFİYE TINCA - 371194748',4.5,'MTQ',140,0,0,NULL,NULL,'2e7c73f7-d738-4447-86bd-2c43c4f79b02'),
('4babde17-282c-421f-8f7d-296da61d8306','84947533-e878-408b-a459-63c1c85cc7f4',NULL,'INNSTRABE  - 248648996',5,'MTQ',110,0,0,NULL,NULL,'17a3d3ea-9822-46c1-a225-976edf021056'),
('4beaaf54-b1db-4069-a4e5-671ddf5dd84f','dfe51385-f8de-4278-bb65-4b38dd725921',NULL,'CANSEL YILMAZ - 223275516',6.5,'MTQ',110,0,0,NULL,NULL,'9af50f14-4a22-4798-bc08-091a8f5a42ce'),
('4bf28a51-3d6e-49c6-9958-894825aa2944','c12f68e7-0da5-425b-b14b-94bb9aaa2ef0',NULL,'MURAT KARAOĞLU - 745629044',5.5,'MTQ',100,0,0,NULL,NULL,'1db28ca3-8c27-419d-877e-64aa6a075f69'),
('4c23e083-0af3-4479-8de6-811b4294048b','41640d05-65b3-4b47-b5e6-39e90a99f2cc',NULL,'SEMRA HAKAN KABİR - 745409977',2,'MTQ',120,0,0,NULL,NULL,'c62221b7-0c98-4cdc-8719-46cbd126b5d6'),
('4c3d281a-6525-4bbd-8eb6-d05392a99986','43e120bd-6fac-468d-ac39-82a4089cc3a4',NULL,'ÖMER KARAN - 478165569',4.5,'MTQ',130,0,0,NULL,NULL,'b5e4c122-6b08-49f6-87aa-e17148ba18f4'),
('4c419f2d-1aff-46b3-b494-817cb9c7a212','8a509d48-df2b-4649-8c9c-864b6462e76c',NULL,'MURAT ERKUL - 745639167',4,'MTQ',105,0,0,NULL,NULL,'a5be4396-bdd8-419f-b266-a5f1a1f8df07'),
('4c451e76-8986-4b08-800f-47997e278ed2','c5930fac-7b12-4d36-8a3e-e1e2facc768f',NULL,'GİZEM KARAVİL - 786820149',2,'MTQ',110,0,0,NULL,NULL,'72cfbd20-52f4-440a-b62e-8fdf632177d6'),
('4c47a60b-2386-4772-b057-0fe96cef02ae','628a3c8d-f17b-483e-b6ee-4127cb374543',NULL,'HACI KURBAN BAŞTÜRK  - 162733891',5,'MTQ',120,0,0,NULL,NULL,'ee55d774-0af3-44a4-a04d-c52632a73128'),
('4c497513-2a18-4e43-a65a-5062f242c9b2','d68aec90-f958-40b6-8fa6-200d72d4d422',NULL,'GÜLNAZ ATMACA - 976285905',2,'MTQ',110,0,0,NULL,NULL,'c48a406d-f6cc-43e5-ab64-0494c3458163'),
('4c7784e8-9ca6-4c48-9f7b-e258964b43f0','31e2a73e-5cae-4fdd-a448-ab0b6ddfd2a9',NULL,'AYŞE ÖZKAYA(K) - 644783664',3,'MTQ',120,0,0,NULL,NULL,'f5b8d0dc-52cc-49a9-849a-46f0c7d99c77'),
('4c812fad-2ccb-4299-b8a8-cc1809f3cf94','8e326436-8adf-43de-82ac-04df2346065e',NULL,'ELİF SIKI  - 517157021',2.5,'MTQ',120,0,0,NULL,NULL,'37e24e6c-6aac-4ee7-b2f5-433071dc1d49'),
('4c83b3d6-f36f-4159-abd6-c7c13880f8e6','5ccf2a96-19c3-49b6-a651-90867bffb29c',NULL,'REYHAN - 41286775',5,'MTQ',0,0,0,NULL,NULL,'aa4be844-95eb-452d-bd6e-d1ea66d882ea'),
('4cab4699-2bb9-4255-a1cf-6db026f79236','ef9d5c20-8edf-4270-bc57-1f33df3da5d8',NULL,'EUROMOBEL - 412395565',8,'MTQ',0,0,0,NULL,NULL,'a451f68c-dd26-4757-af49-72fa26f23f80'),
('4cc6c22e-2527-4c9e-b5e3-57bc52d18f05','58807499-1181-4aaa-9971-ad5446836d42',NULL,'GAZEL AĞAÇKIRAN - 126908301',4,'MTQ',100,0,0,NULL,NULL,'863a4d29-ce12-4697-a15e-977449f015c7'),
('4cd9784a-4e7c-4f0f-970d-f476647a05ff','726a11c8-2abc-4298-b1d1-704e273d1a7e',NULL,'CAN ÇELİK - 478507488',9.5,'MTQ',105,0,0,NULL,NULL,'16a741e3-499a-4c78-b643-f7c20a086922'),
('4d58cd31-0c25-450d-9dd9-984115800bf5','bd94cfe9-08ac-4035-8754-9894e3179676',NULL,'NURGÜL ÖZDEMİR - 75056602',9,'MTQ',0,0,0,NULL,NULL,'79bfeebe-4f74-437f-8072-2e6a2e10f67f'),
('4d625989-c309-4ab6-bcc0-0a035c0cd290','e145d8b4-3205-40d1-8efa-b3ffc2f45a7a',NULL,'DİLCAN YEŞİLMEN - 371290223',2,'MTQ',110,0,0,NULL,NULL,'751e7cfe-45c9-4ff6-a9db-f5b7e29356ac'),
('4dda2c70-e01e-40da-985e-6bb10f85f604','d8ad5178-9f18-4580-9a60-e12b37658b1d',NULL,'GÜLSEREN BAYRAM - 478912846',2.5,'MTQ',110,0,0,NULL,NULL,'a68b37ad-6908-462f-8e58-d0079fd2d77d'),
('4dde37e7-06c4-493d-9a7f-07b1cc557696','1049c315-4940-4551-92aa-2f55e871e433',NULL,'MEHMET ALİ ADIGÜZEL - 455411696',9.5,'MTQ',0,0,0,NULL,NULL,'7a6b4261-2f63-460f-b0ad-3b61cd0b29e6'),
('4dffd545-3922-4f00-a399-3e9c7a4dec3e','905583d1-b985-4ca5-aaee-ce4447806be2',NULL,'CAN DERİN - 517337381',4.5,'MTQ',110,0,0,NULL,NULL,'bbbfec16-7fc6-4768-8141-eb412f41dde7'),
('4e0e9eb7-d213-4fcd-9b7f-ec4e33479cf8','46d2a083-37eb-4061-9df8-d30cc3336d35',NULL,'TAYFUN TATLIGÜN - 8087036',2.5,'MTQ',110,0,0,NULL,NULL,'0ea00d37-52d8-4f61-9891-dd8fcc0d358c'),
('4e131a80-6ebb-4fa8-b982-f61a0858eeca','66e325c1-0070-4ff1-a8a2-5847cb50d854',NULL,'HALİL İBRAHİM BACAKSIZ - 976894167',5,'MTQ',100,0,0,NULL,NULL,'e9f2fa6f-b59c-49e1-86a0-fb4a60531062'),
('4e14bf63-1d21-494f-af5c-203417af8b11','ec7ad01e-f0e2-48b2-96cc-4bd1ab69ff48',NULL,'GÖKHAN ZÜRLÜER - 598157006',3,'MTQ',110,0,0,NULL,NULL,'effb3586-1055-4a6a-95db-95d0060cdeeb'),
('4e1c11ae-0992-4c74-9960-c12057e5535f','7d31502d-3c38-4d6c-b5e0-c6e4cec8da49',NULL,'AYDIN SARI - 011620933',13,'MTQ',120,0,0,NULL,NULL,'a3373a1a-ad36-472f-907f-b0578ee9cac1'),
('4e3418e7-566a-4304-a6a3-4f479ddc15ba','b8c93070-cf40-4882-89b2-c13b3b327264',NULL,'YASİN YAVAŞ - 910599740',5,'MTQ',130,0,0,NULL,NULL,'5063dfa2-5328-4697-84aa-52c286384d28'),
('4e361ec0-695c-4020-9674-68f563764e1a','a3e50eda-1615-4e49-96e9-6e6f9fb65537',NULL,'ASLI ALTINTAŞ - 478775583',2,'MTQ',130,0,0,NULL,NULL,'830e197e-1aa8-4f6a-9f71-58048c60d7b5'),
('4e598d07-af52-4475-bec1-b41a931114bb','0c1b7fe2-d647-4e62-9068-1da6a074aad6',NULL,'SEDAT ARSLAN - 412359172',7,'MTQ',110,0,0,NULL,NULL,'032b3134-3092-40b9-b2b2-be3390b4726e'),
('4e73afab-1a3d-44ff-9a28-5d20e1875f76','f0884bf6-b6d8-48ae-980a-5a741a93d9f2',NULL,'ÖZKAN ERDEM  - 478784133',4,'MTQ',130,0,0,NULL,NULL,'38d1c9b7-3a61-4384-ad1c-a68175a7d8e5'),
('4e7cdd53-72c0-4ce9-bd7f-b6624a0a3882','fe4bed2f-ca61-4a73-94f1-8705a39bfb54',NULL,' - 027339599',6,'MTQ',0,0,0,NULL,NULL,'368245d4-9f2d-4657-8e21-783fb08ea560'),
('4e94cbb6-b211-4132-a494-34bf32ce33ca','aa441c4f-43f4-4ee6-9af7-58c83603d255',NULL,'ALİ AKKAN - 43725194',12.5,'MTQ',110,0,0,NULL,NULL,'1965b9c6-c511-459f-8f4e-dddb4f23f943'),
('4e962716-6d28-4d30-8707-a89a708c6160','642e0508-a6cb-489c-988c-7845a4303a6b',NULL,'MİNA ANNABİ - 478278253',2,'MTQ',130,0,0,NULL,NULL,'1c14969a-f21e-4d10-ad0e-526d04fe3018'),
('4eb95325-9c24-4a32-a41e-becc185b65ad','175e9ef4-9b34-4c32-804b-061ec4a7d971',NULL,'ÖZLEM RECEP ÇANAK - 478966296',1,'MTQ',105,0,0,NULL,NULL,'f285a0e0-bae2-40c4-9bd7-33ad4420a56b'),
('4ed59d5f-a3b3-4281-ab1c-cf4edecedbac','4c4b0ffa-c895-49db-ba53-43e6ce9dbf39',NULL,'HÜSEYİN GÜNGÖRMEZ - 655111652',8,'MTQ',110,0,0,NULL,NULL,'e5520c68-91f4-4a26-99dc-18b77f9d5c29'),
('4ef8c382-06d2-4546-82fb-6caa7bec8b0c','ea06019a-7e83-4600-a432-28fa405e7cf8',NULL,'AYHAN ATEŞ - 982979874',2.5,'MTQ',140,0,0,NULL,NULL,'f64732c3-76ae-4710-b1ac-fb3732ed150b'),
('4efada18-1fad-4990-b2c1-495f8987dbc4','4430d2c8-92c5-4d41-bf5b-cb8c480a2d85',NULL,'PINAR SALMA - 745687103',2,'MTQ',105,0,0,NULL,NULL,'83523717-3c96-466b-bee7-e0dfa2259e82'),
('4f1a9564-b737-4e47-837a-82494266acc1','77395d02-f993-4999-bc0d-288cc005abce',NULL,'ÖZLEM ŞEKERCİ		 - 910884465',4.5,'MTQ',120,0,0,NULL,NULL,'57416db8-ee86-40d4-9d10-8a10779dc24c'),
('4f2cc20d-9cc5-4493-b058-634cc4811569','34d5146d-e562-4ea6-8c87-b2191da54a30',NULL,'ELA BAYRAM - 531737045',3.5,'MTQ',120,0,0,NULL,NULL,'73e11a5e-8f1e-4939-880a-7a4290068064'),
('4f2d56c5-c27a-4342-8ef5-09c30d2e3805','8710404d-1dd0-4a1e-bf03-81f4ae63bbe7',NULL,'FERHAT TUNA  - 703266692',6.5,'MTQ',0,0,0,NULL,NULL,'8cc8e2cc-149c-401c-9303-207ddf345d9d'),
('4f441bef-e077-4d67-b1ae-a7566b15e233','3bb8cadc-29fd-4f8a-aae6-02ca7eba64a9',NULL,'MURAT  - 412716766',2,'MTQ',0,0,0,NULL,NULL,'ed1c3d42-dad9-477c-953a-0f9f25eed681'),
('4f6dc16a-4e7b-4cd3-9d7a-edcbfd8af665','b6aec35d-ffb2-47f5-9ef2-6e99c4c84a3d',NULL,'AHMET GÜMÜŞ - 598387436',4.5,'MTQ',110,0,0,NULL,NULL,'c3d3518b-3207-4e42-8927-efa33c951310'),
('4fa8f733-4dc5-4c0f-8705-c261aad7248f','4bee2ac9-3546-469a-9ffc-aec223b786ec',NULL,'METİN PEKSERT SSH - 745430976',2,'MTQ',105,0,0,NULL,NULL,'70305ca6-1276-478d-974a-f8168b04c382'),
('4fc5793a-8ed0-41ac-aa46-57b92dc30b67','8a7704cf-7125-4e53-aaea-4fbe0cc63d69',NULL,'ÖZGÜR ÇEŞME - 437540085',2,'MTQ',120,0,0,NULL,NULL,'fb70c94c-78cc-4a1f-9b09-616f804975bb'),
('4fdf17bb-c6c6-4d31-9604-faeaf9b30b27','f8e26789-7a64-404b-8806-63962d92a82d',NULL,'SILA MARKET - 231712628',2,'MTQ',110,0,0,NULL,NULL,'a41f3bf5-2506-42b4-9e2a-75956dfd1aca'),
('5017b4c0-7200-424e-a274-836bbc5fd074','1427aa33-57cf-42eb-aefb-f9e1087ed6d1',NULL,'SİBEL ÇEVİK - 644631223',5,'MTQ',120,0,0,NULL,NULL,'af077b9e-3c00-4ad8-bbfa-3e1f04750a1b'),
('501eeacf-6ece-4eac-97c7-63abb8433253','df23ae38-fbbc-4512-aed7-bb8bcd156fe5',NULL,'AHMET KURT - 745286096',2,'MTQ',100,0,0,NULL,NULL,'56779a22-f184-44a7-8ac7-070b7bbde2dd'),
('50270bc6-6c79-4765-8538-2afeb37c5206','ff50bd4a-2d7b-4c5c-ba59-1a6526f20b86',NULL,'GÜLŞAH KARAKAŞ - 803828322',2.5,'MTQ',110,0,0,NULL,NULL,'1761a5cd-665b-4d31-87c9-a191cdaf4d50'),
('50d12552-7b27-4738-8dbf-12a34e77c6e5','750c6306-bc57-4420-bb1f-1511d25df2fa',NULL,'SEZER HATUN - 745249081',2,'MTQ',130,0,0,NULL,NULL,'0523ba39-5d0b-4eca-8a21-9b0b0f843b71'),
('50e19838-f5e3-43d8-a232-2bc35f0d32c2','fc5dc702-b849-473c-9519-33074632f1e0',NULL,'RASHİCA ADNAN - 73558075',1,'MTQ',0,0,0,NULL,NULL,'3c3a0ffd-2c10-4488-924d-af36cb5763bc'),
('50fc9e69-1406-4dea-b2e2-a1c32a6ab412','ddb04c8e-7202-45d5-95f8-b9dcdd8bc96f',NULL,'MEHMET ALİ ADIGÜZEL - 4551399',3.5,'MTQ',120,0,0,NULL,NULL,'72aa8e60-9a79-4342-a46f-b23239e81fb0'),
('514219d5-4bfe-4bb8-b223-23208bc0387c','0ddcbbab-1d82-43a8-aa02-82a684f4a271',NULL,'XHEMİLE KURBOGAJ - 126274786',5,'MTQ',140,0,0,NULL,NULL,'551b3f66-bfd0-40a3-aadb-9d6601e1a170'),
('515163b8-c490-4c5e-8da7-ef2fc128e204','2a8e02dc-7f7d-4224-90d9-8bc5a8600550',NULL,'EMİNE MERİÇ - 51557557',2.5,'MTQ',110,0,0,NULL,NULL,'5d4df7c0-7f38-4095-847c-3996a99d1a51'),
('51a410e8-3491-48e1-9493-9cc002996a45','a94dd663-94e1-4fdf-bdf6-86af27a14380',NULL,'NOUR MOHAMMAD YAKUBİ - 982578025',3.5,'MTQ',140,0,0,NULL,NULL,'34efce18-6122-4639-ad74-6bf11623e4ef'),
('51c868d6-1f7d-4dc8-9012-02cdb57b42d3','3df0c7c1-415f-4924-b711-8b9eb4be61f9',NULL,'CANDAN ÖZDEMİR - 371251508',5.5,'MTQ',110,0,0,NULL,NULL,'c7da4efa-976f-41bb-a365-004594890133'),
('51d922cc-2e0c-492c-b8d4-982877120ade','25ce3f79-f985-42cd-8334-968a9f362a8c',NULL,'SADIK PALA - 478633498',7,'MTQ',100,0,0,NULL,NULL,'c3ca0983-cc3b-4324-b93e-aa09860d88e6'),
('5203d207-f0ee-4d95-9d83-c39062d2dbc5','a58f15fc-4fac-4ea0-bc04-6874bf517e9c',NULL,'AHMET CELEBCİ - 478650682',2,'MTQ',105,0,0,NULL,NULL,'955fd2d1-deec-43d2-babf-7c48c40d74f0'),
('5209bae6-df3f-422f-a342-a9c4778241d0','55797e19-3704-4cf2-8219-aa61a0020dec',NULL,'MEHMET GÜL - 33841628',4,'MTQ',110,0,0,NULL,NULL,'9389f67d-2767-4619-90da-cdf983bc767b'),
('522f8652-3bb1-4706-9b36-75d778fb5b61','e2cda19c-3e38-406e-b00c-2be232c73f61',NULL,'ASLAN MURTAZALİEV - 613669036',4,'MTQ',140,0,0,NULL,NULL,'d94a3df6-39ff-47f5-91f0-f3e59a85c828'),
('525043e7-dedc-488b-a6f7-7ba15cde17e8','edc3c688-ec8c-4f87-9670-814af3fa450d',NULL,'SERHAT MOUEMİN - 675799375',2,'MTQ',110,0,0,NULL,NULL,'30b6bd7d-f466-4e5d-98b7-9c04544e31a8'),
('526547f4-1b02-432d-ad90-c752b970ef41','1c6ae4eb-c7ac-4c6c-9df5-115f7176835a',NULL,'İHSAN KUMUR - 221825192',2,'MTQ',120,0,0,NULL,NULL,'ff996f87-3846-4d01-9b30-2f9d65c79763'),
('526991d3-dbf6-4546-9eb9-be11b7204bb7','2dd29d7f-b102-48cc-aec7-2942bdf05d99',NULL,'LÖWİK WONEN - 858365882',3,'MTQ',110,0,0,NULL,NULL,'c86b331f-7141-49b9-b684-a2a68daaa635'),
('5270572c-0748-4997-9477-6c0ec70ab645','a0a084bb-b314-4bfb-9c0e-91b21bf32de1',NULL,'HANDE PALMA - 61378160',2.5,'MTQ',110,0,0,NULL,NULL,'aca1e6bd-e356-4d59-bb04-0430a246e5cb'),
('5271130a-41c6-4d35-905e-2a2a172ee783','dfa8bbb0-947d-4ae4-9a5b-5cb4eee990a0',NULL,'SUAT TURA - 371628660',3,'MTQ',110,0,0,NULL,NULL,'bdb01abd-b400-4d77-9dc6-589a2150e1ce'),
('5286a19b-8b8b-4b32-aaf9-b39df58ecc04','95a4b125-0290-41c1-adb7-a16152fc053c',NULL,'AYŞE ERDEM - 428226833',1,'MTQ',100,0,0,NULL,NULL,'f572ceaf-0b46-48ec-916f-1f64fb264425'),
('528d01e6-f762-4aba-9062-e4b12bbac5cb','83f3772d-6455-4ac6-8f98-6607bb5e1541',NULL,'İLKAY İNCE - 478485864',5,'MTQ',120,0,0,NULL,NULL,'5552132e-e408-47bc-ab37-19083b622454'),
('530077aa-a3ed-441c-974d-2339b43abc0c','383c539d-6c5f-4f79-bf8c-a1c7c37eb785',NULL,'Murat Trendyol home - 41245861',10,'MTQ',70,0,0,NULL,NULL,'c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce'),
('5311f76c-61f4-4af8-88c7-23eed5154e12','31f73a23-d473-409b-9242-adc23ac1272b',NULL,'ZEKİYE TOPATAN - 644877146',6,'MTQ',110,0,0,NULL,NULL,'df58ec64-55e5-44c2-990e-e1e6e1cdf1cc'),
('5312d890-be8b-4ec1-934d-cacc55bd69cd','ddb4a5dc-c169-4bc3-bdfd-8c846e6d6b91',NULL,'CAN GLAS GMBH - 412603598',1,'MTQ',0,0,0,NULL,NULL,'f5369bfb-80d6-4971-9b20-e83e88c077e9'),
('531b4c23-7e12-4555-bef8-20ff54b4735d','1ee08a2e-2d72-402b-954e-56175b166c46',NULL,'KISMET URDOĞAN - 478560084',2,'MTQ',140,0,0,NULL,NULL,'12e9e80a-5a59-4dbe-befb-126310a97b43'),
('5322c89b-47b4-4d85-909c-e94d012ca555','30bf9ffe-a2e5-43c7-a63d-b79e7716f501',NULL,'TCR WARENHANDEL GMBH (MARTİN CREUTZBURG) - 223853931',17,'MTQ',140,0,0,NULL,NULL,'2100dfc1-4753-442b-b0f7-5bc9cc0e593a'),
('532cb4da-35b8-4148-8044-3d855f34e114','cc271262-7e18-4591-a654-1b3ad34cb34c',NULL,'MAHMUD BİRÜKOF - 598754271',2,'MTQ',110,0,0,NULL,NULL,'5f9f6345-4b94-4cd2-9416-610df7cd46da'),
('53301f58-6e9f-4ec1-931a-7bfca36eaeda','74dff99e-c515-4738-9806-ceb1195c2d76',NULL,'DİKİŞ MAKİNASI - 655583517',2,'MTQ',120,0,0,NULL,NULL,'a51f78e6-dd8c-4785-ab21-d6f8a35cdf06'),
('5331c61f-a130-4838-a91e-38d557900e44','e4fb87f0-8dbf-463b-92bc-f5e55fe0d86e',NULL,'YAKUP EMİN GÜNEŞ - 982744560',3.5,'MTQ',100,0,0,NULL,NULL,'16d48fda-c874-40e8-a9da-275d6658ea3f'),
('533a5db7-ee4b-445a-8143-fc6086be96ca','d401fdfa-5b72-4759-b04d-f3f7c4bcb05d',NULL,'KAAN ALTINSOY - 437591433',2,'MTQ',110,0,0,NULL,NULL,'1935d2c6-346a-4632-90ac-9fab7da8d3f6'),
('535d6ec9-c40a-4ec8-924e-7edd550d48a2','d35cb19b-75f8-4a3f-a4a5-41eccdb97374',NULL,'BAHAR SARI - 478525280',2.5,'MTQ',105,0,0,NULL,NULL,'821ce6fd-2cdb-4d44-be55-13bf12a05f4c'),
('5384a593-c7a2-452c-b00c-6bf0ddc490dd','2a003556-cdbc-43d6-98bc-7bf40341be05',NULL,'SARAH KLEİN - 505153730',6.5,'MTQ',120,0,0,NULL,NULL,'dbf55493-8328-4ef5-b04e-34ca82fa458e'),
('538bd28d-db39-4dea-a3f0-710694ef77cd','110356da-61be-4ab0-9175-9c8ff9682459',NULL,'ANİL ZAMUR  - 221204525',2.5,'MTQ',120,0,0,NULL,NULL,'cc203893-33b0-4595-9231-86901a0a9cf9'),
('53a9623d-bdfe-413e-a047-3232dc196461','a4a0ac62-7d81-4b60-a720-13566ec79666',NULL,'MERYEM YILDIZ - 745957068',1,'MTQ',0,0,0,NULL,NULL,'7843425f-fb19-4fb2-a74f-b8a496a42e1b'),
('53b5d181-caa6-4cb9-b8ba-f4e1d48daca1','3cee1a63-8a19-4ee1-aa54-b75c49826824',NULL,'MANJUTHA VATHANASEELAN - 613990071',2,'MTQ',140,0,0,NULL,NULL,'19a75a47-9ec3-4217-9552-31d27faae3e4'),
('541e752a-290c-4a3f-bc2d-5424612495ac','b4f723d6-049a-4e45-9974-5b90d3cf82d5',NULL,'RAMAZAN SARIKAYA - 7347113',7.5,'MTQ',96,0,0,NULL,NULL,'e94e4dc6-f535-425e-af44-da8f01dfe89d'),
('54384e56-c795-43c0-9547-52201d4faafc','8ed9847f-edfb-4942-8cd8-12037329da1c',NULL,'GURAY SEYFELİ - 221390997',5,'MTQ',120,0,0,NULL,NULL,'2c97cb3e-43a3-4446-a336-f97bc3f68c00'),
('54388bd6-1459-472a-a3af-258dd8166631','acafab07-8fec-47cd-8f8e-09736b7dc1b6',NULL,'MERVE KARADAVUT - 437233015',8,'MTQ',120,0,0,NULL,NULL,'0d55a789-9635-407b-8c56-f61ca0500289'),
('5466e977-b97b-44e3-a534-1c34c6b772af','d0981b41-ee8a-4111-9e0e-73eeba0e7e9d',NULL,'CİGDEM DENKER  - 613391684',2,'MTQ',110,0,0,NULL,NULL,'db01aefa-720b-410d-8344-0672007b060d'),
('5484ab7c-e00d-4aeb-b20e-a60258208d24','bac2bff1-b7bd-48d0-85f9-8ec8ed56aa28',NULL,'ÖZGÜR BOZKURT - 231211138',5,'MTQ',140,0,0,NULL,NULL,'1a546dc5-d5a2-4124-a2a5-67bc24821f50'),
('5505d33b-901d-430a-9933-a5b32b4b548f','2c580659-cb63-442f-85e2-6c038975bc5a',NULL,'ERHAN ALP - 808538086',2,'MTQ',110,0,0,NULL,NULL,'b51de0f1-3985-4283-b2eb-1cbb4a0743c9'),
('550c4910-b6d4-4d2d-84bf-ccfc09c6e296','b9a3faa9-90cd-47a4-b89c-e6da50cdf1a9',NULL,'ANDREW YARBUG(K) - 644799923',5,'MTQ',120,0,0,NULL,NULL,'7e8785f1-7130-4936-8f4d-d44ffa1d9b07'),
('551ef260-a163-4be2-a5ea-766ed47d1ca3','0aeb4ea9-e2f7-4c21-89ce-3bf85dbfcc50',NULL,'YAREN ÇAKALLI - 47855592',2,'MTQ',105,0,0,NULL,NULL,'a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d'),
('55321a8a-d7b4-4515-ad95-337867a9e5b0','2575ee59-db9c-4779-9897-d459576c9bd5',NULL,'ERKAM CAMİ - 027547681',1,'MTQ',0,0,0,NULL,NULL,'63565a3e-11e9-4738-9a52-f03824d05dcc'),
('55348430-0eb1-4c21-994d-3a0a4b9299fd','a80cd388-bab0-4443-b76c-474c5e878134',NULL,'BEYZA ÇALIK - 644644115',4,'MTQ',110,0,0,NULL,NULL,'05940da7-019d-4e63-b256-fc9fbba594ab'),
('55493251-2e69-4436-b586-9c64157adb49','efdd12b6-7e9e-4e49-95aa-e9cfb9283b5e',NULL,'ÖZEN GÖKYEŞİL - 517619393',2,'MTQ',110,0,0,NULL,NULL,'0f733eb9-d262-417e-b01a-927f3219d47a'),
('559905b1-72cf-4441-b534-6fc3ecb07dc1','5e2cc9bb-82d4-4079-9686-07f99f712f5e',NULL,'SEMANUR KÜTÜKÇÜ - 750145910',4.5,'MTQ',110,0,0,NULL,NULL,'18ddc51e-7bf4-420c-99ae-7e25b7cfa32f'),
('55a52099-0af5-4644-ae3c-2a95b989f912','1f0261e2-6d8b-4d6b-9aaf-ce60b28ac60b',NULL,'RAMAZAN ALTINKAYNAK - 910163146',5.5,'MTQ',130,0,0,NULL,NULL,'6b5fec87-7926-4fa4-ae31-13921c722f9d'),
('55af2e32-4ef4-4bf8-a52d-d512d74c3dfc','5a43d1bd-8283-4ff3-a59e-ac3ee79bede4',NULL,'MUHAMMED DALKARA - 221646640',4,'MTQ',120,0,0,NULL,NULL,'c301d58c-ecdd-45ca-85ce-fb5d8517c3be'),
('55ba33dd-e6ed-47e2-8b02-b26dfe3ed8ba','2c670f07-5a7b-4098-a448-5e3d8cea5c99',NULL,'ERKAN ÇELİK  - 911398945',6.5,'MTQ',0,0,0,NULL,NULL,'36c2bf88-d916-406a-9c75-5831ceac476b'),
('55c1f520-6f1d-46f1-b5b3-5fd5a0402cf8','5f654163-935d-46e5-8f9a-d152a84dc0fe',NULL,'HÜSEYİN ÖÇAL SSH  - 745350597',2,'MTQ',130,0,0,NULL,NULL,'05c3682c-97a8-485e-84ef-f349df760f4f'),
('55ddae20-b796-4ef9-8790-a075f4ffd833','ba4f4645-3134-4f12-ae5f-993eccd1d929',NULL,'MERVE DAYI - 745869069',4.5,'MTQ',105,0,0,NULL,NULL,'57aaa2e5-1908-4468-bb27-3c3205ba5948'),
('560b390c-c2f4-4f73-822c-54c70437996d','ef337f8d-205e-422c-b3ec-c59fcea470e6',NULL,'MURAT BALTACI(K) - 644762741',3,'MTQ',110,0,0,NULL,NULL,'474a3a6a-6eed-40dd-b9a3-2ab629d2b662'),
('5633d145-f7be-4045-ae7a-6031bc9b5e8f','f67d049f-ddf2-41e1-be37-52b7b5b5efc9',NULL,'TUĞRA NUR DÜZGÜN - 644298759',2.5,'MTQ',120,0,0,NULL,NULL,'fd4a184e-d04a-45fa-af74-f7d45806dede'),
('5656031f-4a3a-4174-a775-23c63fbbcfec','af8a97b5-78ee-4259-b83e-acdd55a93f8c',NULL,'DİANA BARAKAEVA - 613554878',2,'MTQ',120,0,0,NULL,NULL,'d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689'),
('565be244-fa82-43ca-b616-d689ced3af5c','586dbd9d-0671-43ac-8b25-4238fd37d234',NULL,'MUSTAFA KELEŞ - 598263441',5,'MTQ',110,0,0,NULL,NULL,'88f84531-ef49-42b4-ba11-ad770eba8aa1'),
('567be191-9249-4ae4-9e44-a0e74f7b8418','de0187b0-6a12-4ada-b072-3c3263b658af',NULL,'FEHMİYE KESERCİ - 478839575',2,'MTQ',120,0,0,NULL,NULL,'4c2a467e-0e16-4b5c-93dc-bdb7504d2fec'),
('5682fbfe-2741-40e5-a50d-efd184c1ee38','c1477569-e5af-4b46-aea8-6e12e2ae266e',NULL,'OSMAN ASLAN - 598127401',2,'MTQ',110,0,0,NULL,NULL,'dc0e5911-5e20-4595-8d5a-e9803266613f'),
('568ac7b7-b470-4b4e-b96f-f1f048aebfcd','a0f865db-4b4d-45ed-a039-09eee9857ace',NULL,'GALATA  - 231717770',2,'MTQ',110,0,0,NULL,NULL,'8cb0e92a-0903-450a-b20f-cfe7f3f01dd1'),
('56a85c90-ae2f-4bff-9f5b-cb740baa38d2','ba19340f-4502-484a-8874-4a0d2df81476',NULL,'MEHMET KILINÇ - 428239917',2,'MTQ',120,0,0,NULL,NULL,'ebb63e9c-df73-4c86-8505-d28e8e13e10b'),
('56ce1eb3-ae6a-404a-a82b-291c1dfa4ec3','719a081d-b780-42cc-82a0-4f59e6d61807',NULL,'NATASH SALİMİ - 982196265',1,'MTQ',110,0,0,NULL,NULL,'53b6d665-2c5b-4d51-b191-51a5a0be9665'),
('56de3c2a-c2e9-4dd5-89d3-471c3d2daa6c','27ee018c-3f7c-4b6b-b4c1-efabb0390aa9',NULL,'ÖMER ÇALIK - 745127322',4,'MTQ',100,0,0,NULL,NULL,'9a626800-f140-4dfa-a7a3-96ec6cf606bd'),
('56e74045-9565-4636-aa8d-71ab6b49df36','1de7bb4d-6511-497b-ac73-94f7386fd3dc',NULL,'İBRAHİM TÜRK - 598479723',2,'MTQ',110,0,0,NULL,NULL,'5dbeb578-3815-46c4-8be9-34c6782e8dab'),
('570faca3-e526-49b4-adf0-5cb2c12b6a9e','cfb069a7-1d8a-4c71-91a5-413163b553b9',NULL,'YASMİNE  - 982824242',1,'MTQ',140,0,0,NULL,NULL,'1fa393a0-6e5c-4c85-ba8f-0b92d38af36e'),
('57194ecd-17a9-44e1-9ec9-596162422f94','56e7cf28-72b6-4642-b914-e1d341478124',NULL,'KÜBRA YAMAN - 613251938',2,'MTQ',110,0,0,NULL,NULL,'2b4a9a44-3280-41b5-a65e-97b1f532481b'),
('57288ef1-e0d0-4fc0-9c18-a353c34facc6','31b266e5-15a4-43a2-bb26-81e645aea8b3',NULL,'HÜSEYİN ÇELEBİ - 644576493',2,'MTQ',120,0,0,NULL,NULL,'8561441c-71d3-4fdc-b62c-38b9d59e21bd'),
('575e540c-671a-4f84-bc8c-1291ca2110ef','264cb40d-7686-414e-b7d7-66cf93edbd1a',NULL,'SELCAN KURU - 221208954',2.5,'MTQ',120,0,0,NULL,NULL,'2e51945e-3da1-4c02-ae97-956500db2c2a'),
('5797b386-2056-46d3-8105-23d091da0148','3deb0a9a-3140-4457-aa17-04e0b42e8aed',NULL,'SALİHA KURT - 745251111',13,'MTQ',105,0,0,NULL,NULL,'ed2477a7-3410-49d6-97b3-d4a65e4b5d22'),
('57bf02d9-8800-42c5-b585-416bc9c43df0','7ff14b3d-e740-48ac-97a1-e3231b78de87',NULL,'POLAT - 412346704',2,'MTQ',0,0,0,NULL,NULL,'bb90725b-84e6-4211-8728-367d09c14525'),
('580d78c8-7496-4b88-bc8c-f762d73230d1','25326b64-e5b9-420c-9da3-9e5d9f270b57',NULL,'RUKİYE EKERBİÇER  - 910903191',3,'MTQ',110,0,0,NULL,NULL,'3a9d845e-c0a4-45e3-bf3d-740d6536bc45'),
('58128b90-2ef7-4af3-ade2-2113b541b0d6','e1c8a9d9-db92-4a1a-9baa-2a6d0034fb02',NULL,'ERSAN SULİMANOVSKİ - 371985580',3,'MTQ',110,0,0,NULL,NULL,'ab5aecf3-3848-4bed-b17f-3f3ab2404c76'),
('5817dcfa-4600-4a60-bd8f-5fba8bfa0e09','11f47b62-226b-4d5b-9ca3-8513be6032d6',NULL,'MUHAMMED EMİN TILMAZ - 65728268',2,'MTQ',110,0,0,NULL,NULL,'072d8a33-17fa-4b64-bb6e-a1631be72033'),
('58923dcd-f722-4a48-a871-b2d1fa21e1b8','b5256b58-a5bc-4558-9cd3-e1a4ab177fe6',NULL,'YENER DOĞAN - 50119540',3.5,'MTQ',110,0,0,NULL,NULL,'30753652-c249-4370-954e-0eb227ea17aa'),
('58a01628-90b1-4a59-8a7f-d4607ae3b605','8da2fafa-6809-42f1-a9ba-c1a1b34477b5',NULL,'MERVE HANIM - 663164000',2,'MTQ',0,0,0,NULL,NULL,'671dde40-cd76-4a65-bfd7-95fafdc3618a'),
('58bfef7e-f790-4234-a96b-72587ba0c1d1','83e70914-9d8a-4b86-96d7-b5e211ea12a7',NULL,'AHMET AĞIRMAN - 371413703',5.5,'MTQ',110,0,0,NULL,NULL,'7769da2f-9686-48c6-ae96-b03c5a2ae610'),
('58e32b5f-cbc9-4818-bef8-14db8b44558c','7543b7d5-2d62-409e-aa8c-f3b5c8936ba1',NULL,'AKKAY NADİA - 22133183',2,'MTQ',110,0,0,NULL,NULL,'3c3d8662-c519-424b-a30b-3c4e5d01c1e1'),
('58eac903-88c3-4261-bdcc-b8f8a4a28257','26b680e1-5261-4adf-9bc5-d30f4d1b94bd',NULL,'BRÜHL CAMİSİ - 41283002',1,'MTQ',0,0,0,NULL,NULL,'494f3e98-90be-4c2a-94b4-33e9a0c27aaf'),
('590710ac-abc6-46c4-993e-f7c893fb8b7c','10f78c32-2af7-4297-9afa-a2968cf38bb4',NULL,'SUAT TUGAL - 644443664',7.5,'MTQ',110,0,0,NULL,NULL,'d6f95cb0-d25d-4e92-a9b7-6c2134ab5062'),
('5915c750-ec64-42ec-91f3-a0877a5744fd','deb787b4-4360-4130-a87d-7985e8ef1589',NULL,'ABBAS GHULANI  - 982978293',2,'MTQ',140,0,0,NULL,NULL,'77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92'),
('592cf859-8bf8-4d13-a9f0-168570d59b79','56b22ce8-1d5b-45c5-9b25-18fda6058caa',NULL,'NURCAN MANSUR - 478438901',2,'MTQ',105,0,0,NULL,NULL,'90e4117b-333a-4d53-b6d1-0ec61b7315b8'),
('593229ed-19fb-476a-910e-29d5a6a529dc','84671829-6c70-4455-a37b-302cd69413db',NULL,'ERGÜN GÜZEL - 193362317',9.5,'MTQ',100,0,0,NULL,NULL,'a5079bde-b9a2-41dc-aab2-fdf041c914e2'),
('5934b9d9-3560-4b01-9dfb-b7f6b7dd8b10','bd3cbb33-9937-495e-a41c-880504823fdd',NULL,'BERKAN AĞIRMAN - 91034652',3.5,'MTQ',110,0,0,NULL,NULL,'44dcdf36-5cb1-40e1-af63-fa023b3cb019'),
('5934fce3-fb5d-4c8e-8ef0-7c56543b4a29','c161e0cb-7f8f-4eb1-9239-d5b5cd9b96ef',NULL,'JALAL ASLAM - 982966360',4.5,'MTQ',140,0,0,NULL,NULL,'2fd537fd-8d71-4980-83ba-812e63488956'),
('5946ab4d-8497-4a81-a0f6-02b055c15581','bdab6fa6-9dad-4fdc-b145-fec42d7d1304',NULL,'LEJLA GUDİC  - 221758948',2,'MTQ',120,0,0,NULL,NULL,'59f8293d-670d-46aa-baa2-c4a3a969aea2'),
('598f1c08-f746-4880-96f6-57b30c86cd3d','aef140a7-06b8-4f45-a7f0-448cd3a7eca3',NULL,'GÖKBEN BEYDİLLİ - 478836905',1,'MTQ',100,0,0,NULL,NULL,'e4376e5d-056f-4fc2-8f2c-979f3991845c'),
('59ad7451-e0f3-426c-a385-329a43f38ab3','98700b2f-0784-49d9-9841-c12933c3a270',NULL,'SEYFETTİN BİLİCAN - 703624236',1,'MTQ',44.45,0,0,NULL,NULL,'332b1f22-620c-42bd-8d4b-e8acc54988be'),
('59e41148-815d-46e8-9916-96579898ac61','329ae411-6b5c-4635-89c7-fa2e54bf4179',NULL,'MURAT ŞEKER  - 478832291',2,'MTQ',120,0,0,NULL,NULL,'3012bc75-124d-4be7-b4db-cd1cbb0ff9bb'),
('5a065197-3518-493b-b363-fb6a8981e057','903bb0d6-b56d-4f1e-859a-8503e4a9b7ab',NULL,'MEHMET KARA - 412977083',1,'MTQ',600,0,0,NULL,NULL,'322aeb29-42e3-4166-8669-1fa18b704bfc'),
('5a068b00-4e64-486e-9b3e-aa3f430510c8','26c85ecf-beb5-4771-b5a2-c0275efad834',NULL,'RAMAZAN KAYHAN - 478972804',2,'MTQ',105,0,0,NULL,NULL,'4f232c8f-e293-4ee2-91bc-c04fc04ca3f9'),
('5a7cb7a4-fbef-4360-ac68-46790a195d62','75ee482c-712d-42d0-acaa-f517bf3a0a87',NULL,'EMRULLAH ŞENGÜL - 910304835',5,'MTQ',110,0,0,NULL,NULL,'723c8dbf-02f3-414f-bf79-3654c88f74e1'),
('5a892e83-be5a-46fd-b442-3ea19afff362','e3c23b7a-cac5-49f9-a21f-d646347d5d7f',NULL,'İDRİS EŞKIN - 910593915',2,'MTQ',120,0,0,NULL,NULL,'957f07fd-d732-4d5c-bc32-193dd5d6c0d6'),
('5a9990b8-fd0d-4660-84cb-051165252e6f','1a968c5f-eec3-4beb-a73e-8cda6a79acc5',NULL,'OSMAN GÖKBEKİŞ - 524289921',5.5,'MTQ',120,0,0,NULL,NULL,'08b07ff9-692e-4ca8-866e-27a96667e87f'),
('5a9df2a6-5c61-45d9-b1c3-20d9aa8a8a19','b50cd706-3d61-4b60-8a42-752fe2ff68b7',NULL,'MERAL GÖGDAS  - 221965496',4,'MTQ',110,0,0,NULL,NULL,'23c2fb27-3d69-40e0-9027-0877538a4b71'),
('5abafa3d-7edd-4b48-8f1e-9f5fb6715c8b','62d9fb6c-da49-429d-a7c2-d5e9274922d7',NULL,'OKAN CORAMAN - 745980941',5.5,'MTQ',105,0,0,NULL,NULL,'54227612-b8f2-4146-ac20-5622ca9f45c2'),
('5add329f-da10-457d-8b00-860f6ae9253c','c841fdd4-e1e4-4d83-8bd4-c448e1adf998',NULL,'HAKAN CANBAY - 74565941',2,'MTQ',105,0,0,NULL,NULL,'cffae1ee-46fd-4b78-98d7-0a0c75ec876a'),
('5ae1233f-a775-4150-b386-9eeb1faef117','1e7e6e2f-7a3a-47d2-99ac-98d05007eb6a',NULL,'PELÇİN BUZLU - 437554629',4.5,'MTQ',140,0,0,NULL,NULL,'a5641d1e-87fc-41c1-a35d-67b9939f56aa'),
('5afc74fb-60fd-430a-b755-69506d4e4f6e','ff279a14-d088-4161-958d-5f2a64d7ad2f',NULL,'FERHAT TUNA - 42814374',6.5,'MTQ',100,0,0,NULL,NULL,'150442fb-cc98-4a3d-861f-26845907dbfa'),
('5b0a729d-6e56-483c-b39a-9e73e65228b9','53f78a39-097f-4f4f-a187-2d465cbd1c3b',NULL,'FLORJEN KRASNİGİ - 982310142',4,'MTQ',100,0,0,NULL,NULL,'7bc83ab8-fd3a-4a00-a977-e067a1ad530c'),
('5b0ccfa1-0795-4fb1-8975-c5c96e668dbf','f5575b99-913b-4d8d-bf3a-ba9d9be83b2f',NULL,'SONGÜL KEKEÇ - 910197116',5,'MTQ',110,0,0,NULL,NULL,'7d8e5510-6139-402c-b2eb-e91c010cf1ea'),
('5b146ed2-48b4-4b76-beb3-ac608496debc','e5f64534-d0ed-47bf-9a5f-28f7c7bff755',NULL,'NURTEN-HASAN ÇAKMAK - 478644410',2,'MTQ',105,0,0,NULL,NULL,'b3da5f6e-e62f-4f04-9a07-a71259befc0b'),
('5b23e695-39e8-406e-84be-33e4a1d8e040','273244ed-4789-4f0a-b242-7fed6b5f0a6e',NULL,'SİBEL OĞUZ - 750951041',1,'MTQ',0,0,0,NULL,NULL,'1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1'),
('5b4b8f94-34cb-4c82-8dc7-8f7338b129ee','1117f026-a24d-4668-b7d2-b56cf104b622',NULL,'HASAN GHASEMİ - 449329901',4.5,'MTQ',100,0,0,NULL,NULL,'b00227de-ee41-4b65-a07a-229d31a6d4da'),
('5b6aa6f1-7f50-4160-a5fe-802e1cf59b75','7e934962-8bf6-4078-aaef-0528c9e27880',NULL,'İLDA TOKOVİÇ - 735520226',1,'MTQ',0,0,0,NULL,NULL,'c7aca399-e42c-4cf3-aaff-22648818fcfc'),
('5b8fe3c7-99a9-4ed0-be68-2479a817b23b','75ec4304-d1cb-46fa-abb2-faf0e450c74b',NULL,'CENGİZ WAGNER - 412968518',2,'MTQ',0,0,0,NULL,NULL,'c59eccbb-857b-4cb5-a55a-2910b58b9fb9'),
('5b93bd4e-f8ff-4a43-bbde-fb58a30b6f29','b9c8b1aa-f453-48a8-91db-a75cf664bcf2',NULL,'FARİSHTE AHMEDİ - 44940434',1,'MTQ',110,0,0,NULL,NULL,'6df88176-a01f-4232-a091-4e10895a39df'),
('5ba2d0c5-2b14-45cb-9c7a-505f7896dcb2','5c9b67d8-651c-4e22-ad4a-7398415527e7',NULL,'SEPAN MOHAMMED - 644107524',2,'MTQ',110,0,0,NULL,NULL,'4e8221f0-0ed6-4604-bd0f-45a00d3e3c89'),
('5bb5e9cf-2678-4496-9f49-cf50619bdb21','68554833-28b1-4cc5-81b2-219121214ea7',NULL,'CHİKH HAMZA GHUFRAN - 248707022',2,'MTQ',110,0,0,NULL,NULL,'2c2b9f6a-7788-4e01-831d-aa89201542d0'),
('5bd67acd-9566-4c4e-b5f2-e7cfe19378a3','f0f39e9b-fded-4920-9e5e-d1f534d2e962',NULL,'ARBESA SADRİJAJ - 982533088',5.5,'MTQ',100,0,0,NULL,NULL,'1a321f86-2bdc-4576-99e1-3d3d72eb1823'),
('5be23f71-ce3c-496c-a491-aa57343bf3e6','30380a66-ebb1-4313-90c1-bee82b8d3020',NULL,'Songül şahin - 412157634',2,'MTQ',100,0,0,NULL,NULL,'7dd8fd8d-1e65-4d72-a3a3-e995172ad367'),
('5be4f312-0e0c-410e-a0d5-10c39b49d170','8f1195bf-9eeb-406d-9f0b-f58f501cdedc',NULL,'LEYLA AYDIN - 31951233',4.5,'MTQ',110,0,0,NULL,NULL,'2f2a9416-f846-4142-bbdc-6f31920db56f'),
('5be66fda-dc99-4f69-95cb-e6ee5ea2b27a','99312d7e-3967-41ca-8abc-40f81e10d129',NULL,'HÜMEYRA ZEYREK - 37152330',2.5,'MTQ',140,0,0,NULL,NULL,'6a1719c6-6fdf-49b7-8175-c8a0ccf6b652'),
('5c0243a7-aa2c-4047-9083-0d1abb4c3ea8','c3473edb-5e08-4c18-aec2-c12daa29df10',NULL,'PATRİCA - 735139102',1,'MTQ',0,0,0,NULL,NULL,'0816b3df-4d3c-4f83-935b-999df0cfa38e'),
('5c124bf7-37be-48e7-8bdb-b57dc21aa45a','96249f41-7e84-4f2c-822a-8fba009f1602',NULL,'ÖZKAN ÖZKOŞAR		 - 910482480',2,'MTQ',130,0,0,NULL,NULL,'f4277465-32cb-4557-9e68-bc0849767854'),
('5c1ad80d-a12d-414d-843b-5936fe36e39e','48e99bee-e874-4839-99ac-c1f664715daa',NULL,'CEMAL YALÇIN SSH - 319388100',2,'MTQ',110,0,0,NULL,NULL,'0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a'),
('5c1f61a7-6013-4984-98ba-0fe8e84b903d','f08ead17-5d77-40ae-823f-e5164c08e0b5',NULL,'ROHAT KALABAŞ - 910245715',5.5,'MTQ',110,0,0,NULL,NULL,'7cc7cbc1-b825-489b-99ca-2352be2803ea'),
('5c2a8e27-f169-4e12-96fe-26cbe4d94536','339de793-b401-418f-8681-b67de91964d8',NULL,'MEHRDAND RAZMPOUR - 478962763',2,'MTQ',120,0,0,NULL,NULL,'5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0'),
('5c3e73d8-75ae-46c5-8361-4424bcc8098c','5adf6e62-5643-42f9-940e-4c61d656a52a',NULL,'SEDA KURTDİNÇEL - 745431846',3,'MTQ',105,0,0,NULL,NULL,'9a1e163d-879a-4faa-97dc-a573fdac190c'),
('5c5cc135-cb1a-4340-9295-bc660b9a46ea','711a0934-1141-4544-9d7b-4a968b0f44d1',NULL,'İVAN SLEMAN DİNO - 598410676',4.5,'MTQ',110,0,0,NULL,NULL,'a6b849e9-82a6-4209-bbf8-1190e6651471'),
('5c618720-d90e-464c-a3d2-805f624845c2','742928d8-96a8-4d7b-b6b6-8f986c7a692e',NULL,'GÖKHAN UYSAN - 42873500',2,'MTQ',110,0,0,NULL,NULL,'a7d1afe4-c6c3-4eee-998b-24b4521490d0'),
('5c66a91d-3b8d-43ee-8c65-397a72441c47','3bb069c5-61a4-4860-bc39-b284b0d587f0',NULL,'SONER DEMİRCİ - 478422219',1,'MTQ',110,0,0,NULL,NULL,'0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1'),
('5c7796d0-4f52-4e58-839f-0b7a34a486c6','38ac00be-4c8a-4d41-b057-52232fd6db42',NULL,'BAL CİHAN - 614908568',4.5,'MTQ',110,0,0,NULL,NULL,'f169361d-a98a-44cd-9be5-0d014e87b896'),
('5c7812b1-4007-40b8-ba36-7e1d36d196ca','e6d7c31d-9856-44f2-b700-31c31cda6b84',NULL,'BARLEB KASS HANNA - 644106987',2,'MTQ',120,0,0,NULL,NULL,'3a413ad6-1fa8-40a1-8617-788cf4219a4a'),
('5c7f3d4f-cc24-40e7-8e59-6c7d90c03ff2','eefecebe-a041-4133-97c4-d9e35e1df023',NULL,'ERKAN ÇEVİK - 41291679',2,'MTQ',0,0,0,NULL,NULL,'0d40e91f-6390-4121-9303-5976e9f6f226'),
('5c8a0b72-9f25-4479-8952-1713f021356f','504489a9-22aa-4fa0-b046-5f6f9e6afd36',NULL,'ÖZKAN KAYACAN - 745170376',1,'MTQ',100,0,0,NULL,NULL,'0e979831-071a-44d0-92b5-b61f986da797'),
('5ca6e923-be1b-4507-a53d-25d2d698368e','61539d01-7a97-47dc-a52f-08e38271bea1',NULL,'PINAR BARUTÇU - 6148124',4.5,'MTQ',100,0,0,NULL,NULL,'203b6560-2fe1-4637-804e-b6b6df86b59f'),
('5cb45c9a-1015-4497-9678-95b6e6b7702d','9ee9e592-01ee-44ec-919b-f8b6ce597fef',NULL,'GÖKMEN GÖNÜLTAŞ - 428754067',5,'MTQ',140,0,0,NULL,NULL,'cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96'),
('5cb8e864-7a97-42c9-ad07-8b493247aae9','f9e877a9-d1e4-4a33-b015-15f6e0464514',NULL,'GÜLDEN KARADAĞ - 745291553',2,'MTQ',105,0,0,NULL,NULL,'3e6f544c-260c-4661-9a22-59d5cb509c0a'),
('5d11322f-8e69-4648-a567-25fdc63e8ceb','a306b6d1-b16d-4d8e-abe9-f1ca4b44bafa',NULL,'SEZER BEY - 126889614',5.5,'MTQ',110,0,0,NULL,NULL,'521af45a-6561-45db-adfb-641b8fafbc92'),
('5d1db6d3-2324-4a32-bd0c-479569538b33','e7747d29-b54c-49ab-8e75-7a18154418e1',NULL,'MEDZENİTH GMBH - 223444495',2,'MTQ',0,0,0,NULL,NULL,'3c33fcf8-dece-4d1b-bc38-5ebe74c82464'),
('5d43243f-9385-435c-b92c-234660ba5a93','02903395-6a49-46b0-b7a9-617e63156ba4',NULL,'BETÜL ÇELİK SSH - 644298325',2,'MTQ',110,0,0,NULL,NULL,'56416526-a1b9-4abd-8f0b-7b4ddb02e6fe'),
('5d7a208d-63bf-419e-936f-6e32bbe4a215','ae211ecd-469c-4bd6-b8a7-64573ff8bf0e',NULL,'LEPETİT CHRİSTELLE - 221987558',2.5,'MTQ',120,0,0,NULL,NULL,'7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2'),
('5dd7fcb7-5549-498d-8bb0-743d6bcd2945','6a006e8e-addb-422a-abf9-f89a941b5274',NULL,'ABDULLAH ÇELİK - 745714095',10,'MTQ',100,0,0,NULL,NULL,'ab41b8c0-66a4-4c51-ba67-322b1df9498b'),
('5de15500-a085-48f7-9012-9e08c45f2795','5e1d5d15-2c0c-428c-9272-8842f51c4bea',NULL,' ELİF MUHCU - 127281736',2,'MTQ',140,0,0,NULL,NULL,'9c818465-8168-4f07-aaba-0d59b1260716'),
('5e1a8095-6d85-4f00-9dc1-2c3102efd888','ce9d5a5f-f3b9-43b7-abd9-b07a30f408be',NULL,'FIRAT DEMİRCİ - 982451991',2.5,'MTQ',100,0,0,NULL,NULL,'bbffe63d-9618-42a2-944f-0a4b76bb33ae'),
('5e220939-4155-4ccb-8b8f-e5c6a71e3a8f','ff7bc00c-86a1-45f1-87f3-1fa353a163d9',NULL,'AZEM SATTAR - 248158562',2,'MTQ',110,0,0,NULL,NULL,'e698509e-076f-4ac2-b2de-bd8a1dfd105e'),
('5e57908b-6575-493e-9c80-ebcd55184e89','d2453176-5483-44f9-be76-47b0e9dbf250',NULL,'GÜLÜZAR KECKİN - 745276257',3.5,'MTQ',130,0,0,NULL,NULL,'9c50c2ab-574c-478e-bfbf-37bbf5ebab18'),
('5e62e4b9-972d-4daa-ba0b-0358d436805c','09786f26-8fc5-4e15-ad25-72ce94049edf',NULL,'BERKANT YAŞA SSH  - 745712790',2,'MTQ',105,0,0,NULL,NULL,'ccc401cf-30c4-419e-b8e5-7988457d3293'),
('5ebc456e-d38e-49e6-891c-49841ada8b3f','7c8f06c0-5736-4198-938f-03fcccd391b3',NULL,'HATİCE KARABAĞCA SSH  - 745658808',2,'MTQ',105,0,0,NULL,NULL,'0cec0d02-7fac-44ec-a4bd-1669385b451a'),
('5f12899a-7340-441d-ae0f-93144e213028','24889804-3c49-4250-8a4d-d7124139681b',NULL,'ALEYNA AKAY - 644500765',4.5,'MTQ',110,0,0,NULL,NULL,'95a80c6f-f63c-41d5-917a-d2547b834cdd'),
('5f43b6ac-9a70-4115-930d-db2ff02fedac','d086d20f-06fb-4b86-92cd-86f068274095',NULL,'VEYSEL POLAT - 221362176',2.5,'MTQ',110,0,0,NULL,NULL,'3fe8ec1d-272b-4989-b3fb-4322708f7edf'),
('5f5a6f8c-6daf-4eab-a562-5c520139a0af','58dec017-e22f-4466-a963-30bfa706d235',NULL,'LABABABİD WEJDAN - 478417862',2,'MTQ',130,0,0,NULL,NULL,'2c5c126c-885b-423a-9e95-19a5f6a09a61'),
('5fafffaf-636c-444d-b4f0-134fa0ff11ca','3103d5e3-45f0-45f0-bee8-4657a1b2648a',NULL,'ALİ DİNAR - 478185886',2,'MTQ',130,0,0,NULL,NULL,'304a2496-cb37-4646-a094-9980a688ced5'),
('5fe4d972-6d7b-47a2-b947-58852035e8be','9e0d3bd0-e0f2-43ab-86c0-c0a07fa3d45d',NULL,'Özcan nazlı - 478281011',1,'MTQ',0,0,0,NULL,NULL,'3894922a-0cf2-4bd8-94ae-aac69c8c7eac'),
('6006f1b4-fe3a-434e-9be0-6cd3be464c61','6c2e57df-aedf-42ae-95f9-67ef01dd363f',NULL,'WALLA DİAB - 735718998',2,'MTQ',0,0,0,NULL,NULL,'ebaddd2d-5358-49e9-9dab-6b7795385f66'),
('6031a3a9-51bc-4e34-8eb3-ea7b1a1c14f7','ce3779e8-3103-4419-8e6e-ae3291cd801f',NULL,'REBEKKA İRMER - 644113100',2,'MTQ',110,0,0,NULL,NULL,'4c449693-e58b-4f1c-aa28-fae57056e377'),
('6040b1ca-62c7-4aa3-8588-1deb0f363421','37de81ca-5eeb-4877-992f-6a6283010211',NULL,'AYLİN AY - 371201111',2,'MTQ',110,0,0,NULL,NULL,'b9465ae1-c895-4625-887f-bd31a9dc994f'),
('604e446a-9c64-497f-a6cd-9f97dba396e7','5577e80f-7480-4885-96a5-1ea90304bf2d',NULL,'AYHAN İÇEN - 745813483',3,'MTQ',105,0,0,NULL,NULL,'95ff7b1e-98b7-452d-ab80-8e142b1b8abe'),
('6050f86b-979e-4059-bcc5-f7112456d347','ea719d80-2a2c-44b2-9f9d-cac8706b7454',NULL,'KELLY DE VOS  - 221560581',2.5,'MTQ',120,0,0,NULL,NULL,'a2c26b12-b789-4b58-b623-97d44b486663'),
('605a1fad-4596-4b3a-abd7-35d86866c780','3b44e513-cf64-4c78-893d-247d26fb23ac',NULL,'PASS - 223441694',2,'MTQ',0,0,0,NULL,NULL,'70777159-ea94-424b-8d36-a3768ef41772'),
('606e7677-e30e-4d53-8304-1aefbd667e5d','de04e587-e576-499b-b836-7ec1877d25b2',NULL,'RECEP ONAY - 465237157',9.5,'MTQ',100,0,0,NULL,NULL,'ef3b570a-0fb1-407c-87bb-aea336aed633'),
('60aa0ff1-0986-492f-981b-24200a608ca0','9383bf48-c770-4fdf-87cf-65d38ead463f',NULL,'BURHAN SAĞLAM - 976593604',3.5,'MTQ',110,0,0,NULL,NULL,'d71f7dec-d2d9-43db-b33d-4120e264d90b'),
('60c2a511-894b-4d7f-988d-13b11d6b9cbb','5762df4b-04a4-4897-a9f8-76b9f071d639',NULL,'ÇOŞKUN ŞENEL - 41288739',2,'MTQ',0,0,0,NULL,NULL,'e55441b7-eaf6-4645-ac39-b0befcc429b1'),
('6105a2fc-8266-417c-a1e5-bed7f460e27e','76edac79-9054-466c-ae62-aa3e86afa9a5',NULL,'CAN KÜREKÇİ - 910426934',2,'MTQ',110,0,0,NULL,NULL,'5363a998-3fe4-420a-85a2-b67e56e97d35'),
('61338426-9475-4d68-9e9f-3b89f04416ae','3d60e114-976a-4f4b-a922-7d34b2657245',NULL,'ÖRÜMCEK - 248692077',2,'MTQ',110,0,0,NULL,NULL,'b2d0b2c9-07c0-445f-ab95-428a8319038e'),
('613806de-6957-41f7-aa02-8ce2786fd7ff','fb6645f5-c70e-4a3c-9ce2-4f7b4ece6e13',NULL,'YUSUF ADIGÜZEL - 976942978',3.5,'MTQ',100,0,0,NULL,NULL,'33e70679-b537-4fdc-8ce5-40aa59bc19f2'),
('6153c49d-d766-4f6b-9f8b-5baa2f34d0b0','256dfe29-4dbf-4e7a-a927-4e1839062b01',NULL,'FARUK EMRE KAYA - 478418480',1,'MTQ',100,0,0,NULL,NULL,'4a5445f2-707f-4fe2-a767-f0dcae05a014'),
('617f601e-edba-4e03-966e-bbae27f541da','ab4d2a43-9be4-45ae-b186-3e60b3e6b125',NULL,'SAMER JNİED - 42857810',5.5,'MTQ',120,0,0,NULL,NULL,'b2b859ce-5c1c-47e6-b995-d5f7cd993878'),
('61895bcb-1ee9-494f-acb7-6cacbcf27475','a6021c1c-a440-4689-938e-3eb3590a830c',NULL,'DEBORAH BELOVED IDAGU - 505987989',4.5,'MTQ',110,0,0,NULL,NULL,'d79ec9de-a72a-47f5-a918-2b75ec194704'),
('61923974-5f70-41f5-8fbc-b605271fbacd','0aceeadb-c188-4a89-ab5b-36c805413bb4',NULL,'SAHDİYE BİSKİN - 614707427',2.5,'MTQ',100,0,0,NULL,NULL,'62eea1a6-1676-4355-8243-6e04f6d3e284'),
('6193da4a-180a-4108-abc3-73cd53232309','6b8a2e84-e822-4a77-8218-87866d5dddff',NULL,'FUAT HUT - 517903636',3,'MTQ',120,0,0,NULL,NULL,'7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9'),
('61b30f89-d967-4035-9893-ca1572de9bb6','5babc687-7dde-4be1-bb01-9b75efdda902',NULL,'GÖZDE TEMİZ		 - 910670298',4,'MTQ',130,0,0,NULL,NULL,'152de64e-7685-4980-ac8b-8970beb190fd'),
('622dcbdd-aa27-4690-a4c0-cd991b3a5560','324e9aa9-3f32-478b-8757-9795783c3f79',NULL,'ŞÜKRAN ALP - 614308473',1,'MTQ',100,0,0,NULL,NULL,'13c6ae04-64e7-4d5d-9d68-285118e320cf'),
('6232bb10-e973-40fb-8bb0-887b785e6840','58aebbef-16f2-42bd-9c1b-69c63b059fd9',NULL,'ZANA - 248538815',1,'MTQ',0,0,0,NULL,NULL,'0c708994-6e45-4ea2-8025-bc17c41e7542'),
('623d8ef9-664e-49d8-bd20-2906cd4e3307','8b24e90d-0bd7-4db0-b410-0961d20f27e2',NULL,'DEKORASYON - 412771828',2,'MTQ',0,0,0,NULL,NULL,'e5a42a0c-9b4d-47f2-a979-39ceffa1a73a'),
('625e149f-6e8c-47b4-afaf-c999e2b157bb','ba8d57eb-ade4-4456-ac4b-07e29176f0d1',NULL,'MÜZEYYEN ÖZDEMİR  - 910163142',4.5,'MTQ',0,0,0,NULL,NULL,'54e0df3d-9714-48db-8da6-46af349072d3'),
('628752d2-26bd-4df6-bb34-ac8a8533ca30','c36c0c86-43d2-447a-80b0-5d61f075690a',NULL,'DAVUT DEĞİRMENCİ - 478686372',1,'MTQ',100,0,0,NULL,NULL,'bb1e482d-dbc9-40c2-a5ef-9d3227196dd8'),
('628fe363-1caf-4074-bbfa-27f99550ce63','38c91ae9-ef26-4ab7-9079-c58d861eaac1',NULL,'ADEM ŞAHİN - 478685156',3.5,'MTQ',110,0,0,NULL,NULL,'2bec061f-81f9-4dda-a4e3-f9afaa7f4903'),
('62c427fa-9f0a-4e06-8545-310b42db859b','cb560766-f95b-4fea-8367-f05e886ae7ec',NULL,'NEŞE ERĞAT - 371363007',3,'MTQ',110,0,0,NULL,NULL,'9a74f51a-7e75-4db9-acdc-874ddf9e54c5'),
('62c69364-64f0-41bd-93e6-ac164a300db9','a0856733-2f3d-45b5-9bf1-0fa38466bb18',NULL,'GAMZE KOCAMAZ - 644682734',2,'MTQ',110,0,0,NULL,NULL,'5f57a0f7-857f-4662-b47b-242a72bd52b3'),
('62d3593e-c54f-437e-8f1d-1657725ef368','32a8fb4b-920e-4a3f-b905-24836c3a8d50',NULL,'BERİVAN PALAVAN - 598903023',2.5,'MTQ',110,0,0,NULL,NULL,'43632aad-d9e3-4042-a98c-3de650df2487'),
('63074aac-1cce-4cf0-92f2-5d4c25f3bea1','58b0e7ae-7c23-496e-b105-5b7afd326926',NULL,'HÜSEYİN AKBANA - 745191568',9,'MTQ',105,0,0,NULL,NULL,'147e8615-279e-4297-866d-fbccbd1231af'),
('63405143-873c-4c3a-8268-a0a29b77d9bb','4cf5ccf9-d255-43f6-9589-ae0acd78ec88',NULL,'CANAN ŞENEL - 644319069',5,'MTQ',120,0,0,NULL,NULL,'32d8dcee-9361-46e5-a98f-6e606f4ea7ca'),
('636a1596-3969-4aef-a006-033899e47ffc','682dbc1b-7cdd-46a3-b12a-3f09c3fd594c',NULL,'BİRSEN YILMAZ - 334873891',2,'MTQ',110,0,0,NULL,NULL,'9b2b97c3-e08e-424a-9a23-e7c625f3e6cc'),
('63807747-f04c-49a7-b83c-c203d1837ca4','1ab6e4d2-df12-4c30-a05c-577565645cd9',NULL,'CENNET YAVUZ - 437250812',6,'MTQ',110,0,0,NULL,NULL,'6e7511a6-da4e-49c4-b1e0-36335129a7eb'),
('6381aa08-7a44-4434-bd0d-0790a6aec6d6','435239d4-f99f-4440-9a97-680f1751cfba',NULL,'YASİN ÖKTEM  - 614352',4.5,'MTQ',110,0,0,NULL,NULL,'a5f7ed18-5a60-4872-a40a-85372a9873ed'),
('63a7055e-9078-433c-993f-8d03df38d504','846d11e7-1c6e-4b8f-ab90-30c550348591',NULL,'ÖZGÜR PİLİÇ - 517447554',5.5,'MTQ',110,0,0,NULL,NULL,'3391efb6-f905-452e-9046-16422800fd88'),
('63be9a70-1f23-4e08-ad39-f17667eb5abd','c90139ba-b8e0-437f-b6c2-dd050cc93de8',NULL,'NURŞEN ADACI - 8176511',3.5,'MTQ',140,0,0,NULL,NULL,'8aae14a6-2700-4220-893c-6329618c4b17'),
('63d52392-0b86-425d-8c0b-154e565c0f5e','faff98a1-4f89-4d26-9757-f51c6bf23519',NULL,'ROBERT HASİMOVOC - 982189682',3.5,'MTQ',130,0,0,NULL,NULL,'e34fd977-db36-4dab-bb2f-73cdf84f2f2e'),
('63e0b26b-7e04-4c05-bc7a-2fc59302dfc5','67a309c7-a26f-4619-bd94-0eb4add3ea32',NULL,'GHAZAL TARIK İLHAN - 644826740',2,'MTQ',110,0,0,NULL,NULL,'8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc'),
('63fab9cc-d5a0-4877-8ff7-cd2aa479e4c2','2814e4e4-2c8e-4b87-a2b4-24407ee4c201',NULL,'MUSTAFA MÜEZZİNOĞLU - 428459785',2,'MTQ',120,0,0,NULL,NULL,'95a5f2f5-7a3e-4a17-acdd-545ebd756dd9'),
('64065358-bb10-4f0d-bcc9-62c7769e2739','1d0c499b-261d-45f9-9c96-6de7f9c5464a',NULL,'ESKİŞEHİR - 412289507',2,'MTQ',0,0,0,NULL,NULL,'e3ac9fef-362e-47bc-802f-11dd3d8ca22d'),
('641309cd-5cda-4566-b2f9-dbe310c9ff2f','fabc4219-5902-45b7-bad7-11ed737ea83e',NULL,'HALİLOVİÇ ELMA - 371104317',2,'MTQ',110,0,0,NULL,NULL,'3b24c44b-141a-498a-a365-b5111a55d868'),
('6417fdf4-744f-4733-a6e9-a07083bcbe2c','fea9a44a-7502-44b2-8e64-1a487a738664',NULL,'SUNAİM İBESKİ - 982498702',4,'MTQ',100,0,0,NULL,NULL,'226d454f-504a-4c41-9f7c-2a37ac051991'),
('641834f3-c5cb-4216-ad61-d26072e67bef','255392aa-38f9-4bbf-8310-a18d08984f34',NULL,'BOLL TRADE - 412795154',2,'MTQ',0,0,0,NULL,NULL,'9a1b78d9-2f44-4f22-8fcc-953573cdfffe'),
('64198ae6-4df9-4663-bdf0-14397cfc7601','c7fc1e4d-6df7-4c78-bbe1-be2f55a9f6a7',NULL,'MİLLE FİERRA COELHO  LUDİVİNE  - 478505417',2,'MTQ',130,0,0,NULL,NULL,'2eb5f10e-e566-4406-9074-57c0c21bd403'),
('645d241c-3a8d-477f-b665-17fb0849bde5','7c8eb6d5-8b3b-4512-8d7f-ed1308111aba',NULL,'ÖMER KARAMAN - 428857511',1.5,'MTQ',100,0,0,NULL,NULL,'b3ae875f-7a87-471f-8393-3afab90f9796'),
('6467c341-813f-4e86-a478-f711fae8c2cf','5fe36437-de00-43ea-af28-8ffa68f3a4b7',NULL,'MAZİJA IBRAHIMOVİC - 221417499',2,'MTQ',120,0,0,NULL,NULL,'98638de6-50b2-480f-acc9-1f74364a7f92'),
('6477d897-4918-4233-8759-73757a6f4452','656de212-a243-4b73-b1d5-d4435821e59c',NULL,'SİNAN YILDIZ - 478209702',1,'MTQ',110,0,0,NULL,NULL,'22239f89-5592-49c8-b2c4-dc804b06b788'),
('649f8cfc-48db-4728-8c59-86be01485255','ee6d7dd4-4dbd-454d-8345-9ff1514f25c3',NULL,'BARAN YILDIZ - 644832811',8,'MTQ',110,0,0,NULL,NULL,'7ebc061e-668d-437b-b1f8-46651f8f4ce0'),
('64cd6bb7-0844-488f-9ff7-7ce661832d5e','62887e5f-3be2-4adf-8a6d-ca946a91ca38',NULL,'İSHOAK ABU BAKER - 126938963',4.5,'MTQ',140,0,0,NULL,NULL,'a29a2b1f-c2a8-4ac6-97a4-dad514383f7d'),
('64f006e9-6095-4b8b-a6a2-cb5b6ec209ef','1c49d1dc-3353-4909-aeef-daa57c556de9',NULL,'LEİPZİNG - 248133427',2,'MTQ',110,0,0,NULL,NULL,'c0c37a9e-a856-4546-9c17-87681e0484fc'),
('64f1af2d-41bd-4fee-afb3-f4ac13172493','1e61ad35-226b-4f1c-841f-e183666a637b',NULL,'MUSTAFA IBRYAMOV - 745907299',11.5,'MTQ',0,0,0,NULL,NULL,'6fe06ae2-3155-4059-8f77-a92d8d23543a'),
('6503ace7-80de-4d01-abf6-e4c5d88074ac','ff7dd1fa-4756-4cbe-a969-c5d7e5c8f80e',NULL,'HELİN ÖZDİL - 896155892',8.5,'MTQ',110,0,0,NULL,NULL,'f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7'),
('651e2ce9-09f9-4950-baad-b6b7e77b2340','97c0ee26-a5ac-465b-ba14-b3a316aea51e',NULL,'DİLEK KHABİL - 765729280',6.5,'MTQ',110,0,0,NULL,NULL,'9c3d7567-24b3-4c51-9c80-4065af9769a9'),
('652a061c-3265-42f9-b47e-42b584aab073','1cfef0b9-bb98-420f-a3c7-22b053232521',NULL,'MEHMET ULUIŞIK - 598614826',3,'MTQ',110,0,0,NULL,NULL,'61865f3a-d280-4338-ba54-fe634b230fbd'),
('6531fcad-f4b7-4f99-9de6-2bacc5290d1d','1ed00ad0-f32b-4bcc-a91b-a1d1b4f69a52',NULL,'AYŞE İPEKSOY - 745766580',5,'MTQ',100,0,0,NULL,NULL,'ed0857c5-779d-41e7-b628-fdfa431cfa7c'),
('654a77a9-fd61-4e6d-be71-1e830a90f0dc','e66d24d4-3026-4835-bcbc-e8b55ccbfbea',NULL,'DİYAR YEŞİLKAYA - 982547993',5.5,'MTQ',100,0,0,NULL,NULL,'47709c5a-15a6-491c-924f-a72a590fd417'),
('658d5879-3e8b-4eb4-bfe7-8cf5136a0b9d','55d355a8-54f0-4144-b02f-f5c09babd8ed',NULL,'MEHMET SENCER - 478321858',1,'MTQ',110,0,0,NULL,NULL,'905ad5bb-94b2-42ac-8672-ce8d147a9563'),
('65949c64-4685-4751-912c-71aff5a7a7c4','500653b3-0582-44d8-9422-0ded7990ae75',NULL,'ERTUĞRUL - 528433255',2,'MTQ',120,0,0,NULL,NULL,'4c96cdc2-5925-4a3e-88ac-0186ce15c8e9'),
('6597d7d8-d2e8-44b8-9271-07723c6b85c8','d4679319-2b5f-4177-9abc-eccdabbe8a22',NULL,'LEX-CERAM DESİGN - 412976656',6,'MTQ',125,0,0,NULL,NULL,'bf3734b5-7721-41e9-9cb0-212fc49e08df'),
('65c078ac-3f70-4d77-9175-1a668017bb1a','dc7f4df1-4ee8-47bf-9b8e-d8cba1d67ac9',NULL,'ENES İSMET UGUZ - 598986653',8,'MTQ',110,0,0,NULL,NULL,'3d40d0f6-e7bd-434d-934e-23f8c73df745'),
('65cc34d1-34d9-4e07-aad7-08c1de21a10d','c78caeda-4d5a-4a39-845d-7c508dff94ac',NULL,'BELLA MEUBEL - 412102597',3.5,'MTQ',0,0,0,NULL,NULL,'aae71aff-c951-458b-ba97-38d2072aa657'),
('65d98a53-313e-4c89-a9c2-0b820b565e2b','bb2f6e8a-8f00-4d2e-94b1-014fce0707b5',NULL,'ALİYE DALKAYA - 221763889',2.5,'MTQ',120,0,0,NULL,NULL,'3f10ddd5-0494-4a63-8c1b-40acc9372609'),
('65fc52a5-d5c0-4839-a557-8f9e17b2f193','edbbe06f-8d29-4d41-adb2-8b8963f8674f',NULL,'ELİF HANIM  - 455685955',2,'MTQ',110,0,0,NULL,NULL,'7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3'),
('66079477-d8dd-4765-80d5-7176680f3c27','fd081783-6354-4e0b-80ba-4ea8ef0e0ed3',NULL,'KAMEL NECBA - 745849265',1,'MTQ',110,0,0,NULL,NULL,'88e3316c-4816-449f-a946-ceba121ee2bb'),
('662345d6-7bb1-4d75-a8d1-c045fa0f317e','0df61b66-5828-433a-b930-3997582cc55d',NULL,'MEHMET ÇOBAN - 478244236',1,'MTQ',100,0,0,NULL,NULL,'a349e6ca-f1b8-46ae-908a-a7f522ecfdf1'),
('6634844d-cdb4-499b-b912-3dee32fd6fc5','f4bf5506-9275-4e6f-9b0f-f315fa6a4a90',NULL,'DARAYYA MÖBEL - 248771792',1,'MTQ',0,0,0,NULL,NULL,'9aaeab80-cfa4-4210-b789-4d7ae0454982'),
('6638cad0-288b-4c05-883b-082e9f191f56','0c2deb7f-bd37-467e-9b65-762db636b6bc',NULL,'İLKAY ÇİFTÇİ - 35130528',6,'MTQ',110,0,0,NULL,NULL,'fe9bad3a-ed39-41a0-aefb-3b353269e29a'),
('663d9bf3-c735-4f64-a311-6f564ae98f47','98e9e657-656e-402e-8b37-9376d4b48c24',NULL,'HUSSEİN NAKAL - 531606130',5,'MTQ',110,0,0,NULL,NULL,'31a9f03a-9f24-417c-b0b7-5e374d34b126'),
('665c5919-6a58-4575-816c-c3d8440628a6','66d7b71a-2d15-47ab-ade8-704ffe0e6a7a',NULL,'KÜBRA ARPA - 501588943',3.5,'MTQ',110,0,0,NULL,NULL,'e8131f06-593c-49fc-9c77-c5965295a667'),
('665dacf2-4919-42a7-8a7f-5b9fc863e4d6','3e60111a-a059-4107-adf2-ef1358141fc0',NULL,'KHALED AHMAD - 248890689',7.5,'MTQ',0,0,0,NULL,NULL,'62c72b38-75cc-4808-b1d5-7296d0000146'),
('667e4e26-7815-4f06-a031-84263aba1e66','ac721196-c4d5-4663-b124-fa702c1305f1',NULL,'RECEP DUYGULU - 675139037',8.5,'MTQ',120,0,0,NULL,NULL,'3a352d28-b0b9-4b59-9821-a77910ca2fbb'),
('668708cd-a6dd-4e52-be52-7f632058977a','a4210c56-f4e9-4ff9-b79a-68622de34bd5',NULL,'SEDA -  MUSTAFA SERCAN GUNDOGMUS  - 515829047',5,'MTQ',120,0,0,NULL,NULL,'7a1c035d-4dfb-480e-bc9c-b1a62adfa157'),
('66a8b9be-a524-4c4d-a659-2f3154e6a990','7e5f42ac-9cec-4f6c-bb31-4ddd10c765c9',NULL,'NURKAN AŞIR - 614741569',4,'MTQ',130,0,0,NULL,NULL,'755e2ad9-81c1-4538-8d82-5b3d0b23767c'),
('66cc0901-7b3d-4ab9-a776-ac639d1384e3','8c77a4ce-6b3b-456c-97db-1ee9e92e476e',NULL,'MURAT ERKUL SSH - 745898734',2,'MTQ',105,0,0,NULL,NULL,'822d89d5-a2bc-4eca-87ce-9ea0d7fb109c'),
('66ce9c2c-2d7e-4b64-8056-a6a3a0b6bd7b','884333db-cc23-416e-8e56-6cbe1751b32f',NULL,'İSMET  IRMAK - 614659832',24,'MTQ',110,0,0,NULL,NULL,'6dce8b90-0bb7-4578-ad31-082486aad8f2'),
('66d74391-1e21-4ed6-b534-347b6b57083d','82f3f29d-fc2d-43ef-9a4d-e623aafd9fa3',NULL,'MURAT KİRİKKAYA - 613529206',2,'MTQ',110,0,0,NULL,NULL,'e29cd434-988f-45c9-8c62-49efd76090dd'),
('672a9697-6a6d-4d77-8249-0e024b2f187e','262f27ab-f8d8-4621-b731-2f4449db481b',NULL,'ASHLEY BLANCO RODRİGEZ - 221417545',2.5,'MTQ',130,0,0,NULL,NULL,'89edfd24-71a4-4e25-8532-ca78ef0bdca4'),
('678237b3-e94c-4ace-b476-1c12cfa9efe6','47178418-1a5d-496c-a0fb-eca62395754c',NULL,'SÜVEYLA TARHAN - 745906539',2.5,'MTQ',130,0,0,NULL,NULL,'d5670c41-1af2-48f4-a947-753c331653a4'),
('678f44ce-63be-4b85-a0ca-457bac6c7718','56d24767-29f9-4c2e-88ff-87f5fc1d85e7',NULL,'MUAMMER SAYIN - 338822119',5,'MTQ',110,0,0,NULL,NULL,'d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9'),
('67c65354-c883-49cc-b90a-be45f12e3bbb','692e5159-7a12-42cc-b455-b850918f9490',NULL,'SEYFETTİN  - 703870981',3.5,'MTQ',120,0,0,NULL,NULL,'a04f974c-9931-40d4-ae61-21f5044fce18'),
('67fa8dc4-d545-4a8c-99c0-01d39b45718b','fb190adc-7788-46a1-a91f-e5573f3da181',NULL,'AYSUN ELİBÜYÜK SSH - 478646824',2,'MTQ',120,0,0,NULL,NULL,'26021dc0-1339-4317-be03-053c91e39d17'),
('6807833f-9716-4498-b3e9-98dd2c057a6a','85503000-6eb6-4519-b2e6-541421a88c6c',NULL,'MİHRİBAN ÖZEN - 644776565',8,'MTQ',120,0,0,NULL,NULL,'00c9f797-aeda-4640-80a8-f170a3df58f4'),
('68238042-d40a-4d6f-bdb8-ffafc0026caa','2b6190e8-248a-45ec-b3f6-7c9fe5488705',NULL,'EMEL SERPMEN - 745311878',2,'MTQ',105,0,0,NULL,NULL,'ea3c1c28-a33e-4d1d-8643-1634f428c2c7'),
('6882c24f-e37d-4c31-a11b-5395445db2b2','2550a3e6-3fed-4129-936b-7685ad66a6cf',NULL,'BAKACAK GİRAY - 613814330',2.5,'MTQ',110,0,0,NULL,NULL,'fd795bb0-de9c-492b-b14b-d82674e0098e'),
('6886e969-830a-46b7-b60e-18e6738af96d','6c682ea9-c7f9-4f90-af60-9523ff5b31a9',NULL,'NURCAN ÖZER - 745940979',3.5,'MTQ',100,0,0,NULL,NULL,'99481881-e1d7-425b-9aa3-9cb0c61cb139'),
('68cdc259-8cfe-496e-8f00-ef8cdb0bedfe','e13744c2-6185-43d9-ae3a-5d38e9c0ae22',NULL,'CEMİLE İLHAN - 817239122',2,'MTQ',110,0,0,NULL,NULL,'0bf84329-c85d-4d24-8259-d2cf5ac61459'),
('68d6627d-31b0-48c0-b1a0-f895b7003dcb','c12bc6bc-eeb4-4408-8d91-a300b3fde421',NULL,'FAİSAL İBRAHİM - 437319119',2,'MTQ',110,0,0,NULL,NULL,'49b010c9-adaf-47a9-8d72-ec98e9a40479'),
('692bb62e-3f12-4926-9fc1-5ba260926664','c2f13ec1-379b-4d9e-bcec-00c24f2b4c99',NULL,'HİLAL YILMAZ  - 2213375',2.5,'MTQ',100,0,0,NULL,NULL,'18e20c12-0084-4178-a4a0-370a754f1563'),
('6932a20d-7661-4e63-84b8-7b2196f06d54','7d3cc8cd-20be-48e3-b89d-ff72c1a9d082',NULL,'TEVFİK KÜÇÜK - 644513470',3,'MTQ',120,0,0,NULL,NULL,'c85f0d3f-5c69-47d4-9b44-822058d763b2'),
('6938ee00-6021-4035-9665-44ef3b3ea39e','1b21f9ba-8320-47d5-b962-f08d83061b72',NULL,'SANDALYE - 248291895',6.5,'MTQ',110,0,0,NULL,NULL,'2df8f21d-ed0d-434f-b04f-7522c7fbbae4'),
('6943ac08-1fbe-475c-b3d0-f52f5460d4be','ba77c074-a5cb-4136-9f3d-438179f3c216',NULL,'TOLGA KAPLAN - 598463425',9.5,'MTQ',110,0,0,NULL,NULL,'0689343a-01c3-4235-b709-f5f67e87d641'),
('694c99e7-afb0-4e31-94be-b30e50f592cf','f52c59c0-05ec-4940-92ad-be56bf4e8ee8',NULL,'DURMUŞ MEVLÜT - 614425900',3,'MTQ',100,0,0,NULL,NULL,'711413e7-9565-452a-b808-a0700618dc85'),
('695e64cc-a72f-4108-9cc0-5a8c5c8c808a','c9487e80-275b-49e1-9088-86fb4e261a4c',NULL,'BOURAS ABDELGHANİ - 501703321',3.5,'MTQ',120,0,0,NULL,NULL,'98f2dea4-caf9-419a-931c-7d9d7c9b36ac'),
('695f454f-3dce-4f38-b397-8ce9788bf4ab','92828177-4868-448f-af04-288470576e14',NULL,'BURHAN SARİKURT - 613508377',2.5,'MTQ',110,0,0,NULL,NULL,'4aefeaca-07a5-46c4-8497-55b99b83d2f8'),
('696ebd90-119b-4b0f-936e-0b8295c11913','f67dda33-8c6c-46f4-822e-b97e3f493fee',NULL,'DİANA BARAKAEVA - 613502652',2,'MTQ',140,0,0,NULL,NULL,'6f819014-9aee-49bd-a372-9beb415e27cd'),
('698aa716-7963-4cf2-92f3-dd2017485c6c','1aa406f9-452d-46e2-9601-2f37150ffb3d',NULL,'YAKUP KILIÇ - 478124503',1,'MTQ',100,0,0,NULL,NULL,'6a0da1c8-000c-4513-b226-ac4e7f8c7a30'),
('699fc176-d375-46a1-87de-eecdb5868e90','ebfd5efc-21d9-46b5-8abf-b0828db11c58',NULL,'MÜCAHİD AL - 437880840',2,'MTQ',120,0,0,NULL,NULL,'4f9d5c38-0063-4e07-b2a8-9a979cfc78c5'),
('69a2b298-9030-4091-95dc-f8383e43540b','87f1f434-ef82-414f-a5b1-52377ebf1187',NULL,'EZGİ BAŞARAN - 858210128',5,'MTQ',110,0,0,NULL,NULL,'ec7725cc-032e-4c20-b604-ec9ab99e164e'),
('69b85173-2829-40a5-9598-ba7a12c812f5','38861571-6a37-4205-972a-45c462e84e81',NULL,'ABDULLAH DEMİR - 745744183',1,'MTQ',100,0,0,NULL,NULL,'f67ccbd8-fb5a-4345-aaf5-bb5631c7c482'),
('69dbb051-71af-48d7-9e5d-0aa52408caa9','d1a69b31-835b-4120-9df0-e5da7062916c',NULL,'Emek thibaut agit - 982292057',8,'MTQ',140,0,0,NULL,NULL,'833e1960-d162-4228-ac7a-54bd28d48049'),
('69f33c27-bbee-4a6a-b3de-29f57090e899','c5defc90-88c7-44f5-b8ea-14bd78e93294',NULL,'İBRAHİM KAYA - 745823692',1,'MTQ',100,0,0,NULL,NULL,'ac0697e8-d848-40e2-afe8-1e847866ef0e'),
('69ff2ce5-65b8-4743-844d-f22b9cad5f99','ac507f76-1d5a-4636-be5d-75cd6e601301',NULL,'ALİNA GÜL - 428138926',5.5,'MTQ',100,0,0,NULL,NULL,'ae9be805-ab66-4bf7-889f-22b5fd9c7351'),
('6a09e491-0933-4d8e-9029-97b92da06215','a189f26b-c7b7-4895-8cfb-4971c8e670bd',NULL,'JELENA BARATOVİC - 126245978',1,'MTQ',140,0,0,NULL,NULL,'05161621-4074-4395-a4ac-b594dfcce0f9'),
('6a278984-6fd8-438b-90e5-5c191fe30857','cf6f850c-05dc-49cc-b781-5f054219791e',NULL,'SÜMEYRA YARİM - 371381951',5.5,'MTQ',110,0,0,NULL,NULL,'c372b398-b1ae-40ad-b0e3-91301cb6ee99'),
('6a297cae-38df-4257-a5c3-027665f121aa','b364cc25-40ea-4a08-aa76-ba8b915d0d10',NULL,'NİSA PARLAR - 437895842',4.5,'MTQ',110,0,0,NULL,NULL,'259921e5-33a8-46ab-8da6-91a44b26b420'),
('6a3579cb-2e85-4450-b816-69f27fa47b95','8e301463-2545-418a-8362-62ba881558df',NULL,'MUSTAFA KESKİN - 745976194',1,'MTQ',0,0,0,NULL,NULL,'97d3447f-3a32-459a-8bdd-d360b881a042'),
('6a663895-786d-470a-a03a-be6936b0dd8f','11c6da7c-dbd3-487e-bb28-ac41b45df6d7',NULL,'CEYLAN YILMAZ  - 982464994',2,'MTQ',140,0,0,NULL,NULL,'1b611478-1dbd-4a35-9f49-606526e2fe1b'),
('6a75d987-076a-4759-89c6-72a40b97b0b7','aa5dcf26-cf31-406f-bf66-48beb2d847c8',NULL,'FİKRİ GÜNEŞ - 501724603',2,'MTQ',110,0,0,NULL,NULL,'c41ca8d6-668a-4f0d-a4a0-76810c2ba3f4'),
('6a9a3e30-6c65-4139-8cc4-48c1a6140aa8','580df4fb-341f-4a43-a8ae-3db97ee4daa1',NULL,'SÜLEYMAN ATAR - 644653229',11.5,'MTQ',110,0,0,NULL,NULL,'4197af5f-54c3-4efd-8f7b-cdb3412520ca'),
('6aa73e6b-9306-4f3e-9328-55fec11b4d7e','16c62cd5-af71-4be8-935c-05864dcb58ef',NULL,'CEM BÜYÜKDEMİRCİ - 437545074',6.5,'MTQ',120,0,0,NULL,NULL,'d1449931-2ff8-4afa-9b0e-bdc3343cb106'),
('6aa93922-9c84-4889-8d66-66fcc7bf431e','65e21dd9-2c2a-4723-9457-95bbdd14bfef',NULL,'MEHMET GÜRKAN - 745661183',2,'MTQ',100,0,0,NULL,NULL,'39d4eef6-e838-4975-96ef-7f71258c7d3a'),
('6ad1991d-8a33-48f7-a096-dcead2af6141','61c686fa-9a45-49f6-acc7-2126d30c3fd5',NULL,'yusuf şahin - 47879897',1,'MTQ',100,0,0,NULL,NULL,'8dc371e3-6c16-4776-bb6b-6285b5a674e1'),
('6afaa6dd-c718-43e8-a5de-834b3c02fae4','66ecc916-296d-40de-8d87-a41a269bf51b',NULL,'MERVE İÇEN - 351330330',6.5,'MTQ',110,0,0,NULL,NULL,'afe0ae69-06ca-44c7-8928-75ee9c95e9f3'),
('6b0e6f43-27be-4bd7-bb92-0723afd531d6','7ead94cd-8c5a-494f-a2a2-1fbb4d39d691',NULL,'OSMAN BOZKAN - 478302796',9,'MTQ',105,0,0,NULL,NULL,'158f02f1-6bc3-4134-8f9c-7b088d6e5c2b'),
('6b1a1ee1-070f-45ee-a318-3eed01113002','20636183-304e-4456-8d77-30a4fd252722',NULL,'ÖMER VAROL(K) - 644714925',4.5,'MTQ',110,0,0,NULL,NULL,'8886c04f-f904-4e77-a2f1-25b72bcd1e91'),
('6b33152c-a915-4577-941a-9afc4ae325da','3500aef1-cc92-4ed4-a384-f77d3ae3258c',NULL,'GİZEM YAZICI  - 745582484',3,'MTQ',130,0,0,NULL,NULL,'755f29ea-0c4a-4711-8cef-0e6360e5867f'),
('6b41bbfb-a373-42f9-924c-13aea1535609','20b99125-7f86-495e-a648-ecfd78debb0b',NULL,'ATAKAN OLCAYTÜRK  - 910485088',4.5,'MTQ',100,0,0,NULL,NULL,'8259588b-b757-4856-a390-2e9ec4c403c8'),
('6b4937d9-afa4-470c-8f01-4bcbde2931b8','7bcda059-11c2-4a53-87c1-6f3088c6daa0',NULL,'BESTFULFİLLER - 22330381',2,'MTQ',0,0,0,NULL,NULL,'519c4dcc-e8d4-4545-8bfe-61ee397d5447'),
('6b4bb557-af62-401c-820c-63c8f902b746','c98aa98e-03b3-4bb4-8307-186fe2025b68',NULL,'İBRAHİM TANKAZ - 47815812',4,'MTQ',0,0,0,NULL,NULL,'97df81d0-5a59-4e29-bb48-4768b4a079cd'),
('6b4be53d-c072-44e9-a337-75dd32990867','6526ad64-571b-42e0-bf5c-e1bcb5cd6edf',NULL,'KADİR ÜZER - 371495147',3,'MTQ',110,0,0,NULL,NULL,'c25ac7c4-4bc1-4a99-bd3f-189af6d00f37'),
('6b4ef376-c44d-4373-9362-b57e6890f831','b206a6f6-4125-4b15-8835-b1edce9f45cb',NULL,'ALİ ŞİMŞEK - 982333020',3.5,'MTQ',140,0,0,NULL,NULL,'2ed09389-6872-45ef-b60f-31ff8428b5fe'),
('6b65f8dd-f72c-481f-bb57-f9840f0a0f4d','9766c134-7fff-451c-ba14-11333e1fe5ca',NULL,'AYSEL KARABULUT - 449454395',3.5,'MTQ',110,0,0,NULL,NULL,'438dd97c-f434-42d2-bc9b-5844c47dc0bd'),
('6b6c788e-03d8-464b-ab50-f0efdf198d90','b096db6a-b278-4a4b-8114-635570f4e031',NULL,' - 248864808',1,'MTQ',0,0,0,NULL,NULL,'f8fc3b49-9b9c-4432-80be-0d9ce15dac6e'),
('6b9d42a7-5a35-4ec9-84a5-cc7a05da3846','c87c37e9-026c-4736-9a44-24dc5880e9d2',NULL,'NURTEN YILMAZ (SSH)  - 338842710',2,'MTQ',110,0,0,NULL,NULL,'19b98edb-d0d6-4399-8b6c-60219add529d'),
('6be929ff-b044-45ab-a6cb-e76ea0c41242','de61174f-1de5-4a40-8fbc-c81e5ea162e7',NULL,'YUSUF BEY  - 830611219',4.5,'MTQ',0,0,0,NULL,NULL,'5e333a30-7986-4a32-be40-ecb91b558892'),
('6bf13483-c82f-42f4-9522-112b9aba345c','68473fef-b016-4ebd-9bf5-e569a83c84ed',NULL,'HAZAL ELMAS - 976983661',5.5,'MTQ',110,0,0,NULL,NULL,'d55fdc55-0652-4c3e-b972-a81ea4a847af'),
('6bf7f722-2929-4408-9d49-da207fab8515','cf75960e-c69f-4ed5-add9-9cfa65b10394',NULL,'Ruta andom - 449279198',3,'MTQ',140,0,0,NULL,NULL,'cf0a7126-8c37-496d-8b00-8c055624489a'),
('6c0debb0-a498-45c9-8d93-f12ee411b5f1','1d98769a-dc73-4d32-a82a-b63f4cb29120',NULL,'SELİM EROL - 976577497',4,'MTQ',100,0,0,NULL,NULL,'41e6c990-9769-486b-b72c-37b090f7b3d4'),
('6c3a8768-3375-47e1-85fa-eafe568dcb8a','b589bc28-9563-4bca-8dbc-f88324e949ea',NULL,'OKAY DERİNKUYU - 478984010',7,'MTQ',140,0,0,NULL,NULL,'603049b7-6bd8-4aed-a159-4c5f400607b7'),
('6c65aee0-2875-4a83-9ee5-623cd3cebc37','c11061bf-094a-41f8-b3c4-2d34c923799d',NULL,'SEBA QASEM - 976763926',2,'MTQ',110,0,0,NULL,NULL,'db3bb2fe-b7ce-413d-8d13-9d22d875adbf'),
('6c81ef90-3a66-4f81-be0c-3f15c8d0523e','6b986d95-9004-4841-9974-f3dfa2bf7957',NULL,'SEMİH ELMAS - 478173801',5.5,'MTQ',130,0,0,NULL,NULL,'b66f3ad7-e0cf-4e4e-852f-584b41ad42db'),
('6c9de171-8c43-4970-ab06-182cae377685','12ea9c63-e87d-4b27-9d9c-7b45dae21bb8',NULL,'   BEKİR - 644567515',2,'MTQ',110,0,0,NULL,NULL,'0c5baaa9-88b0-464f-9b3b-8d21de6877b8'),
('6ca4ce2e-afc0-45b4-ac98-e7f520de1bcb','5592812d-08c0-4dfb-b737-acba8b4f7e80',NULL,'ZEHRA AŞIK - 478243785',4,'MTQ',105,0,0,NULL,NULL,'50b32b06-83ec-4001-a220-a61d557cd0b9'),
('6cdbd36f-2119-45f9-a325-9d3a2c356eb5','4fee9b90-3dec-4899-89d6-ae9fbb2ff676',NULL,'HÜSEYİN CANDAN - 695249199',12.5,'MTQ',140,0,0,NULL,NULL,'7c6c2dd1-52e2-4059-a97e-d340167fe009'),
('6ce01fbf-9c40-4dc2-82fe-7cb8375edaf5','a2721b3a-08c3-4f03-814e-6dd894c8a769',NULL,'EMRE YILMAZ SSH  - 745771664',2,'MTQ',105,0,0,NULL,NULL,'9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c'),
('6d13d432-5178-4112-beed-93ae51f4a266','b79a27e7-635c-4783-a69a-8390671df449',NULL,'BEYTULLAH AKSOY - 644826911',4.5,'MTQ',110,0,0,NULL,NULL,'6f6f3f97-26d1-4eb9-9f9c-527ec752389c'),
('6d21aed1-4701-4934-9cae-984b637a4ecc','24030227-0664-45d4-90e1-5cba46654c14',NULL,'ASLI AYCİ - 73555265',2,'MTQ',0,0,0,NULL,NULL,'3ee9e633-d24c-4516-8992-e6b95c9dc558'),
('6d248fb9-0b54-43ed-9567-ff318db6e6fc','e00e3c26-8b61-49cd-92d3-c6fd22314665',NULL,'HABTEMARIAM BIZEN - 126908886',6,'MTQ',140,0,0,NULL,NULL,'875f12e4-f0f5-47f9-bf4e-6f63cb2a1014'),
('6d26683a-b350-4988-8233-cfaee75f4911','924dfa5f-eef2-4392-b26d-e126e1de1bf6',NULL,'MESUT BEY - 248720273',4.5,'MTQ',0,0,0,NULL,NULL,'5deaab6d-c7b6-40f1-a897-d1f9e87d89ca'),
('6d3fe735-79dc-4c3b-b6c1-d8df1c25312c','2a605cca-d632-4751-ab8f-48f2db097fe7',NULL,'DİEFABRİC - 223433822',4,'MTQ',100,0,0,NULL,NULL,'1ec8b3a1-d058-45b7-aba0-c8d3eae82e19'),
('6d887660-80b3-4861-b6aa-fa76b89d6837','246d7102-37b5-41b9-970d-cb249254bae6',NULL,'BESNA ULUĞ - 478906000',9.5,'MTQ',130,0,0,NULL,NULL,'d313ceae-a8f1-4f54-ba81-fe9e81fef554'),
('6d8999e3-5906-4644-bbe9-e4a2df512879','b4ba8197-bfeb-4caf-bb9b-72835beb777e',NULL,'HİDAYET KURT - 745789797',2,'MTQ',105,0,0,NULL,NULL,'be9967c6-717c-4bdc-910a-34e5434a1c5b'),
('6d9935ed-c631-49cb-a0c3-f1e17997cc4f','173e451e-1c6d-454a-9a15-3e3c3e6ff708',NULL,'FURKAN - 412580908',2,'MTQ',0,0,0,NULL,NULL,'4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85'),
('6da01f14-92b7-466b-8455-63a41457731b','b33857c7-0dc6-4041-a4f9-2dcbf0440b89',NULL,'GÜLDEN KARADAĞ - 745580296',2,'MTQ',105,0,0,NULL,NULL,'751916ad-50d2-4794-9387-4d8c4dc5a813'),
('6daaaacc-8409-4ca2-831a-62a5ac41697f','c9032507-d73d-4ce3-bedb-3c5dc1c7374b',NULL,'HÜLYA GÜNDOĞDU - 455568872',4.5,'MTQ',140,0,0,NULL,NULL,'569fc7cc-e749-4d29-b7d6-9ef416ea0a2d'),
('6dafe9d1-5fb2-468f-b70e-ace2844e09a6','52dd21ca-b18b-465c-bee9-6585096f0e96',NULL,'LEİLA GELES SSH - 745865715',2,'MTQ',130,0,0,NULL,NULL,'2a49a8b8-d291-4b65-ab34-09699d72e39f'),
('6db6a788-3fc9-4c68-af1b-6280ef9d6d8c','6c82fb0d-c343-4ed4-8dcb-3e8ab891de59',NULL,'ISENİ ELMEDİNA  - 221967241',2,'MTQ',140,0,0,NULL,NULL,'88cc6a24-35a3-4b23-8747-59b47b080f1a'),
('6de59d5f-9efe-4086-8593-7b2451535899','f9a596f5-34df-4f90-8931-651ab82c8b5d',NULL,'SİDAR AKDENİZ - 428178028',4.5,'MTQ',100,0,0,NULL,NULL,'5b569715-9b3f-4e71-8f65-5766da410613'),
('6def42df-66a6-4432-85ca-5135110aec12','602d00a3-62d0-4044-bad8-80df398ac7df',NULL,'NİHAL KURU - 478380707',3.5,'MTQ',100,0,0,NULL,NULL,'1b527261-0f20-432f-8edd-bf02ae683a47'),
('6e084528-726c-4ddb-9c65-c1dba570b81e','1421d49a-6a1a-480c-9443-9dac92577d34',NULL,'ARZU YILDIRIM - 734525943',1,'MTQ',0,0,0,NULL,NULL,'0145552e-55dc-4a11-81f7-9a1580774cf9'),
('6e288c15-991f-4fe4-81c1-60d291f0762a','86f4c29a-61f7-412e-b48e-6459bc90cc13',NULL,'SALAM KORKMAZ - 531445058',6,'MTQ',110,0,0,NULL,NULL,'8974646e-d2f4-461a-a229-980f5d4d3462'),
('6e3fb1d3-8833-4d03-a6e4-bb24d4828489','fb5175c2-d773-4bf5-97c7-5deb05b88d27',NULL,'NERİMAN SARI - 598226174',9,'MTQ',110,0,0,NULL,NULL,'6d081276-ddf8-46f0-93cd-4f0c203eb705'),
('6e4ff7d6-35ee-4b94-a886-7c7c31bb7ab8','ca7cf037-b176-4f0c-9877-67d9cd603d97',NULL,'İSMAİL TURŞUCU		 - 910697257',6.5,'MTQ',110,0,0,NULL,NULL,'7f52958a-ccf0-400f-89e3-4730414f3b72'),
('6e5b832f-cb99-474a-8138-81bc001acbc8','9ebaa842-0ff0-4109-bd28-48e5991c30a5',NULL,'BERNA YİLDİRİM - 613847250',4,'MTQ',110,0,0,NULL,NULL,'b03e4184-3ccd-452d-bdbf-3a4ddecfb868'),
('6eaa9e87-5bf1-4753-a72a-d4fb52703419','b151d773-27aa-4263-b75a-6e06515c5bdc',NULL,'YAŞAR YALMAN - 478559056',5.5,'MTQ',105,0,0,NULL,NULL,'3008395f-ad73-440c-95df-6a289efc5dab'),
('6eeb32ff-3c6d-422c-b034-b2020fdd33cb','b73cb378-c33e-4f9d-b46b-95661b7700ae',NULL,'HANİFE YILMAZ - 745252636',3,'MTQ',140,0,0,NULL,NULL,'ed99f25e-1517-4d36-8082-0827ffa4aaa5'),
('6ef242eb-6bdc-4735-b568-65289cc728fe','13673d22-bba1-4ce5-9657-2538c02e06c8',NULL,'SALİM YILDIZ - 112189439',4,'MTQ',110,0,0,NULL,NULL,'ce4139db-5ecf-40b0-b163-b976a128b763'),
('6ef5c6fa-408f-4b6d-958f-57a2988bc4e7','f7a5ec52-8e61-4c0f-90bd-3d1f4e33d769',NULL,'SUAT TANER - 745129121',3,'MTQ',105,0,0,NULL,NULL,'e31c6c18-6f02-4884-a633-8cc09e6edad0'),
('6f01f6d7-6c7b-4273-962d-c62484b86076','67f9974e-9524-480b-b4c7-ab1cd1777954',NULL,'ERDİNÇ ESKİ - 745505942',1,'MTQ',100,0,0,NULL,NULL,'d85df80f-4bcc-482f-949e-4393d27c0874'),
('6f16b481-629c-444f-934d-2ff8f42491c9','df927d32-6d64-4d9b-ad57-2296cbaf6124',NULL,'HASAN EROL - 976568852',2,'MTQ',110,0,0,NULL,NULL,'47743b4f-0f71-47f0-aabf-3e472b257714'),
('6f335fae-c143-462f-98fe-0866d06974c1','100f983e-65ed-470c-a725-deebc574ca8c',NULL,'ZERDEŞT DALMIŞ - 455726286',4.5,'MTQ',140,0,0,NULL,NULL,'5674d700-ff2a-461c-8ec2-d14658a2bc7a'),
('6f6d6fb3-098d-460d-8255-8490316c0cf7','1253df5f-4414-4e5e-bddd-d03ce77697d5',NULL,'ŞÜKRÜ AK - 598445423',3,'MTQ',110,0,0,NULL,NULL,'a42a1c77-dffe-41cf-b2b2-08ccedab680b'),
('6f7c5cb4-bf41-4d80-b026-cd4e2303e5ed','665c104d-7d86-434d-915b-d1a0974a2430',NULL,'MOHAMMED MALHA  - 982125625',4.5,'MTQ',140,0,0,NULL,NULL,'6da14393-4c45-403b-a068-6c3e487296c7'),
('6f8b8e65-5c73-4e6f-afce-5b1305836d6f','258ba511-7bf2-488b-a9c5-dbbfd9404a56',NULL,'ŞÜKRÜ ÇABUK - 248240352',2.5,'MTQ',120,0,0,NULL,NULL,'f2ddd453-c51d-43a7-827f-f55415305fb3'),
('6fa3b143-9b9e-452f-9286-490dca656385','70d9132d-6221-4b2f-bc4c-9d8233043a1d',NULL,'TBATOU SELMA  - 221649442',2,'MTQ',130,0,0,NULL,NULL,'e3b567b1-e72b-4ce6-a2aa-53a55fb530c1'),
('6fbf25d7-a6b9-4af4-ad13-a735eee1151e','92d699cb-cd65-4b9d-aad9-32c34c740ace',NULL,'NADİR KURUKOL - 412217714',2,'MTQ',0,0,0,NULL,NULL,'5fe73200-216d-4572-a46e-fc6418650bf7'),
('6fc02fed-6d74-4657-be75-c15f760d3774','39535060-23ad-4964-a39e-f0bc048cf0ff',NULL,'EDİZ DİNLER - 478783487',6,'MTQ',130,0,0,NULL,NULL,'16715384-46fe-4d2a-88d8-8467cd5c6d5b'),
('6fdbc5a2-f7d1-4d78-a20d-21229534f3ba','880b4990-6b8d-4d41-a1ce-54fe45fb74af',NULL,'SELİN ÖZALP - 644615727',2,'MTQ',110,0,0,NULL,NULL,'4e495647-8999-4246-a35c-fd58b0c1ac75'),
('6fe827bf-655b-4dde-ad7a-21b709771393','b529b830-e486-4d3b-b6cd-e596cb79c40e',NULL,'MENEKŞE SEVEN - 598508016',3.5,'MTQ',120,0,0,NULL,NULL,'af5fa1f9-a15e-47b6-96f7-530e8fa3fec2'),
('6ff0412f-e360-43f4-b05d-575329b52933','b7685a80-79b4-4cf9-9423-6440afebe1bf',NULL,'ALTİN RAMADANİ - 61355212',2,'MTQ',140,0,0,NULL,NULL,'50065a32-533f-412d-badc-5149cb99bf62'),
('700b144a-e56a-4f2d-99ca-0d0d7cfe5dae','ad831606-9131-44ba-9d29-8b8fd30a74b2',NULL,'ÖZLEM SAĞIR - 73427297',4.5,'MTQ',0,0,0,NULL,NULL,'1ae924c7-e6f6-4715-8c97-f693d6de2fda'),
('700ba6ea-ba72-45fe-9d4d-d4c3d92d0653','64f2766e-21b9-43d1-9bf2-b548131e7174',NULL,'BRAHIMA NAIMA - 982446186',2,'MTQ',140,0,0,NULL,NULL,'a797dd9c-2824-4d7d-8bf3-c9f727ff603d'),
('700cc057-fe89-46ae-9c23-4cf994ac7557','294df3c4-d48e-4580-a86e-baff94868044',NULL,'SEMA KAYALI - 64448364',3.5,'MTQ',110,0,0,NULL,NULL,'ed90a35b-8493-4c2b-9437-f0f3ba27c20f'),
('701794cc-d72e-495b-868b-5971ac1fca4a','efe30531-1fe6-4383-933d-eaaa01a35215',NULL,'MERVE KORKMAZYUREK - 221511033',2,'MTQ',100,0,0,NULL,NULL,'c58ed249-aadb-4fee-8ca2-1d1eaccb25a3'),
('701ad4a9-d7f5-44b9-a2b4-1681b958e524','30d34d28-2337-423e-bf36-34358ad0f17e',NULL,'MUSTAFA ÜNLÜSOY - 478479612',8,'MTQ',100,0,0,NULL,NULL,'6b72e67a-4029-4618-9942-062ca2c63ca5'),
('701b3d28-1ea9-43e0-bacf-6e2600d243c9','15285d1b-7e2b-4eaa-b1f9-a70cfe99d16b',NULL,'SEMANUR GÜLER - 598781522',5,'MTQ',110,0,0,NULL,NULL,'5e55f20c-e2ab-4965-a16e-95af4a5ed4da'),
('701c8f23-61fd-4db3-ad8b-4c6a09acbcdb','978ab776-9768-4933-8b69-b74b96b1fc4b',NULL,'HALİME ÜNSAL - 429340012',8,'MTQ',0,0,0,NULL,NULL,'407deddd-1eea-492c-b3b9-cb9b467f573d'),
('701f58bf-26b6-42b4-90a8-49de105a9704','b084ae8d-0741-4c94-a3e9-c9c469a83c1f',NULL,'ŞÜKRAN ALP - 614650407',1,'MTQ',100,0,0,NULL,NULL,'4978d2e1-4aa7-4597-b112-e0c303bb3df2'),
('70494c3a-2a6f-40a1-8750-c55a92d71020','4895ac7f-f749-42fb-810d-89ce7a4b22d5',NULL,'PINAR ÇİÇEK - 221970338',2,'MTQ',130,0,0,NULL,NULL,'6ea42d00-b759-44f3-889c-15eaf3bf614e'),
('7054d1ee-0188-4e83-a7ac-f7499c7eba8e','c3ac52fc-eead-43be-ab3a-69e3c43a2718',NULL,'TUBA BAŞKAŞ SSH - 598876994',2,'MTQ',110,0,0,NULL,NULL,'a70aa802-d5bc-4a2c-97c6-3ca3264dc327'),
('7058caca-2382-429a-a422-ba4dd9c3d336','39586066-cd51-42cd-bf9b-d13d13cc214c',NULL,'AYCAN ÇOLAK - 371120278',9.5,'MTQ',110,0,0,NULL,NULL,'52ea460d-e94a-410a-9cce-0b771b3e4cc8'),
('70792410-e2b1-47ff-9cb9-6506b48ab838','1952bf67-a3c1-4486-a806-d2e084e9b956',NULL,'HAKAN ASLAN - 982858369',3,'MTQ',110,0,0,NULL,NULL,'9b3716c5-1516-4a14-9ee7-cde40b37434c'),
('70dec517-af86-4c14-9f70-4d12191be2b3','31c2020b-4a63-4d44-9ba4-29f11e5e99b0',NULL,'İBRAHİM AKIN - 465524926',4.5,'MTQ',120,0,0,NULL,NULL,'2d5afee9-087f-41e1-a999-dc4fe606e35c'),
('70e24504-7498-48f4-8106-0698c42434de','4d7c9b85-4022-43c1-813f-53a621e3d87e',NULL,'ABDULKADİR AKYURT - 428851627',2,'MTQ',110,0,0,NULL,NULL,'9483dfd2-0e4b-4399-803e-1374da25fce7'),
('7113045f-b652-4dda-95c2-d6c61583b94f','06a05e06-fd23-49ed-a066-0385c76c3c3c',NULL,'ZELİHA ÖCAL - 6442594',3,'MTQ',110,0,0,NULL,NULL,'70b2b3d8-5939-4c79-b6bc-21bfa0ffde36'),
('7170d581-fb3a-4ae7-9c62-e5adec72757c','1d38778e-74e0-4456-bb9f-d4d1dae76057',NULL,'ISRA ISKENDER - 43736182',2,'MTQ',110,0,0,NULL,NULL,'c76998eb-67dd-4f0b-bee2-f2c6820bdcce'),
('717f5950-56f2-4653-9a81-45a39940a599','353c8136-7eb9-4af5-840f-c55a17cfb270',NULL,'ŞİRİN BALCIN - 486181220',8,'MTQ',110,0,0,NULL,NULL,'02caa650-97c8-4705-a9bc-95c4f819c322'),
('71a3585f-56a5-4c4f-80d6-f0c90ef40a68','0f40897c-28c8-4ab1-8775-b64beb9dbe0e',NULL,'SELİNAY ORHAN - 745398311',6.5,'MTQ',100,0,0,NULL,NULL,'c8832652-771d-469e-b661-4fd13d628789'),
('71d9a035-2e3e-44b2-953e-f10c9b282661','1e49f0fe-2053-4310-9967-d0069ed6f7f3',NULL,'GÜLŞAH KUŞ - 745219309',9,'MTQ',140,0,0,NULL,NULL,'183e4649-4c9e-491a-ab8a-0e24c8224108'),
('71da07b1-4953-4d90-a3e5-64f65ba713a6','e8810a8f-b4bc-40eb-a890-6d117b05a641',NULL,'SEYHAN GÜNDÜZ - 598148104',3.5,'MTQ',110,0,0,NULL,NULL,'015e4711-850e-4dfd-8a7d-b891bbcf8752'),
('71de8d13-20e2-46f8-bcab-a558e64167a3','93d74f9d-4d78-4336-b438-6d823caf3d24',NULL,'YUSUF IŞIK - 449582137',9,'MTQ',120,0,0,NULL,NULL,'7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45'),
('72091236-bfe6-4e0b-ab2d-ddb80a9a7ef2','6384cd9a-b979-4b13-857a-7e57a29a622c',NULL,'SERDAL - 412586204',52.5,'MTQ',0,0,0,NULL,NULL,'84ead5c5-3c6f-4c94-bfaf-62c790476a67'),
('7209894f-08d3-4f6e-8e7f-62dbfbe7f8b8','37c8c6f4-fc6f-40d7-ba81-ff4f972918f2',NULL,'AGIM NURSHOBO - 44971858',4,'MTQ',100,0,0,NULL,NULL,'77d6bcb8-1638-4066-943f-4ca74a17b5a2'),
('721d7b82-752d-4ea6-8a04-b9ea69c925a2','73b16b8e-4b5e-4df5-8fb0-cb58742c973c',NULL,'AYNUR KANDEMIR - 486184665',3,'MTQ',110,0,0,NULL,NULL,'7880358c-ba4e-4929-b5d9-4aed20c36174'),
('722cfba3-8bc1-463f-b582-e5ace6e09ace','829fb421-50ca-4aa7-8ea6-fe8170f2311c',NULL,'MUSTAFA ÇELİK - 478945094',10,'MTQ',105,0,0,NULL,NULL,'01608d35-8f91-4555-8ddb-ee881418d1b8'),
('72520372-cb93-48f7-83c3-b54b552217aa','ad6479e4-26bb-4f27-9763-d7e5484fba34',NULL,'MUKKADIN IBRAHIM - 221941793',2,'MTQ',110,0,0,NULL,NULL,'c6ce0690-d0de-43de-9f1a-45fc7344f810'),
('726c55c1-d1ba-42e3-875d-55e7957da053','457b8707-4663-4a23-97ee-24250004f14f',NULL,'SARAH KUSLU - 745502887',1,'MTQ',0,0,0,NULL,NULL,'c8f99487-f21d-467c-9282-047182f5edbf'),
('726d57f4-1222-4d1a-b66b-f09cb4944ccd','6452a61a-4750-4839-a305-0f3a61453741',NULL,'OĞUZ ÖZÇELİK - 449203445',6.5,'MTQ',100,0,0,NULL,NULL,'110f0eb8-2914-4e85-b599-dc743891806b'),
('7272444e-5b93-46e0-9777-fa8685da7893','267be4fa-308c-4cce-995d-b251dfd33c41',NULL,'RABİA NALKIRAN - 221307786',2.5,'MTQ',140,0,0,NULL,NULL,'c4ed3c28-c51b-4246-86d1-a36f0aff591d'),
('728cde1f-7d4b-42de-94b5-c9b86b1ffc2d','865ae8c4-b1a1-4946-a5fb-6654dc8960e4',NULL,'SABRİNA ZAHEY - 982555492',4.5,'MTQ',140,0,0,NULL,NULL,'e4b060c3-fb34-42f4-9364-6b48d058bac3'),
('72a14a60-3333-4db4-be4a-d445c29bcdc9','707e6b04-fba1-4d71-8c47-963f5386d5b0',NULL,'ÖZGÜR ÇEŞME - 437694817',6,'MTQ',120,0,0,NULL,NULL,'e284eca9-ac8c-444b-9259-006514765b59'),
('72fbe9e9-d164-4be2-b523-be47a44a3969','371b898b-baac-4ccf-948b-fef54de9f9ff',NULL,'CUMALİ ERCAN - 910759399',5.5,'MTQ',120,0,0,NULL,NULL,'ce6a533a-a695-4c7d-9d16-ee9de079d7bc'),
('730957b3-b284-48c9-8e53-7c50810e3ae5','a011efb6-0ed2-4711-b533-9d483b56c854',NULL,'BEA JONGERİUS - 982984016',4,'MTQ',100,0,0,NULL,NULL,'39a2c1f9-754e-40a7-9e18-c240852aa8cd'),
('7326d39a-3bfb-4850-a50f-3c48375ed0c3','238e599f-fd9f-4b9c-a0b9-c28deffc0901',NULL,'MECİT AVCI - 478957028',2,'MTQ',105,0,0,NULL,NULL,'d448143d-3fcc-4fc3-8d37-30d1af2dec9e'),
('7336b48f-4930-49f8-8b76-07e3b485a93e','26961fe7-c038-4412-8ff2-9fcfa5824008',NULL,'KAMER DUHAN ECE - 831899043',2,'MTQ',110,0,0,NULL,NULL,'bf79529e-c1ff-49c8-af5b-ad352b688aa3'),
('7340da56-a982-4828-b75d-e2aa8ece1ea8','6bb7e3dc-9fc8-4895-bb9a-c35e6a6850be',NULL,'KORNİŞ ÇUVAL - 248173138',2.5,'MTQ',0,0,0,NULL,NULL,'fdd68378-14a3-446e-acd4-64b7634a5689'),
('7347ba72-5773-4ac9-b394-c9adcb98c4c2','fcd06676-d348-4155-ae21-ed947f96d236',NULL,'FİDAYE YILDIRIM - 920821712',4,'MTQ',110,0,0,NULL,NULL,'d8ceea70-718a-4405-a27a-d02336aa2dc9'),
('734cd9a5-c101-4518-a9cd-742853888d1e','d60f79c6-5c78-4f6e-ab91-331a453c18c5',NULL,'FERHAT SANUÇ  SSH - 011131883',2,'MTQ',120,0,0,NULL,NULL,'64d8448e-d8f7-4534-941f-050bce796337'),
('73783cbb-f7fe-4814-bc5f-cda12efc9065','1d6b1318-2713-4be1-bc85-39664ba8fa24',NULL,'ROYA SHARİFİ - 248614196',1,'MTQ',0,0,0,NULL,NULL,'27e70f47-5f87-4da5-8e2b-11e4017c44d3'),
('738d6ad4-a1a6-46fe-9eac-67d740856d92','a1b74a68-c23f-40cb-95e3-02091864cee9',NULL,'ORKUN SÖĞÜTLÜ - 248292815',6,'MTQ',0,0,0,NULL,NULL,'483b6f65-6972-4267-8fb5-43e1ad8b38cb'),
('738db4d7-7126-43f5-8d71-a7faac5a9b19','8492857f-6039-4e0a-98fe-763e43a932e7',NULL,'FATİH YİGİT - 515956879',2.5,'MTQ',110,0,0,NULL,NULL,'4d25f6fc-edd0-4a96-9bb2-91c21a66472a'),
('73f8aa37-7c1d-454a-a0c6-9c2595766dc9','32797cd6-b87a-4ece-84cc-b57572469708',NULL,'ALİ KIZILKAYA - 734482220',1,'MTQ',100,0,0,NULL,NULL,'313ea73f-ae21-453f-98ea-2178061648bd'),
('740a1568-7a95-427f-98c0-10b7e177ff0b','0ee2f344-94a1-460c-bd16-9fc01916c43d',NULL,'MERYEM BİRCAN ANİK - 437791709',6,'MTQ',110,0,0,NULL,NULL,'e8d23d8a-2637-4202-afea-6441ccee21d3'),
('7415e306-cf43-4406-b157-04028780475b','79f7d5c0-45da-4aa7-a9bd-86df7b4bbdec',NULL,'MUHAMMED TOPAL - 371681337',5.5,'MTQ',110,0,0,NULL,NULL,'a644f2e3-654e-4729-bff3-0390037448f0'),
('743fff08-dd52-4acb-aa82-5ed65656d6f1','f47598f5-c1d7-46dc-924f-0a644c639be8',NULL,'MEHMET AKİF ATAMAN - 750498273',4,'MTQ',110,0,0,NULL,NULL,'1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a'),
('74481267-ceeb-4ca8-b6eb-09565e35e46d','903e4be7-84c6-4456-a1f6-f3cc52dcc5f3',NULL,'MUHAMMED ÇETİN - 221234413',2.5,'MTQ',130,0,0,NULL,NULL,'5f1e05ef-a967-45d1-a984-4cd1f018c261'),
('74a6fca0-0577-41fd-a48f-b6052a1c0eb7','5f2fd016-eeca-4a41-b311-fa8f07109501',NULL,' BİRSEN DÜZ - 428990953',1.5,'MTQ',100,0,0,NULL,NULL,'dc416865-0c74-4fdd-89bf-5ec5f8499eb4'),
('74b0fe99-3886-4e97-89fe-4896c02ecc8b','47ce83a2-8004-4232-b705-44a50e9b8c6c',NULL,'DUYGU YILDIZ - 598396998',2.5,'MTQ',110,0,0,NULL,NULL,'aee090b4-4bf2-4cde-89e9-1e2353dcb896'),
('74bb8e43-f764-4e12-8b70-bf2e6ced4749','9422c79d-9f8d-41e8-abca-bd3464cd7163',NULL,'FADİME ERİMEZ - 598425779',5.5,'MTQ',120,0,0,NULL,NULL,'e9f174bd-3dfd-4958-9b5f-5b0e9e86de14'),
('74fba293-db48-43c3-a3a1-9dad541e2903','a13fec3d-a523-46ea-8a85-ccf664c38418',NULL,'HARUN ERCAN - 127847689',12,'MTQ',120,0,0,NULL,NULL,'635836b6-8a00-4f08-aa34-ecc10b10490c'),
('751fe002-1649-40b8-aa05-5cc55672c145','36626a1c-1253-442f-923e-7fdc100e765b',NULL,'BİLAL KARROUCH - 73598166',4,'MTQ',0,0,0,NULL,NULL,'b9c92720-b4b4-43eb-a9cc-aa09b537ad87'),
('7631eb41-1452-42de-8828-6bc2431a8415','3847e331-9e3f-43eb-8088-37af1e4f9889',NULL,'ESRA ALTINTAŞ  - 221437904',3,'MTQ',110,0,0,NULL,NULL,'eb2f8c5f-5056-4e84-8bee-cdfe250f8c42'),
('7634b9c8-d9a0-49ac-a8e2-043411d0c756','cf046700-d48c-471a-b2be-514f97fffddc',NULL,'KEYVAN GHADİMİ - 478363734',4,'MTQ',105,0,0,NULL,NULL,'3dc5e146-3fe8-432e-96b4-cb8472b9343c'),
('76495dbd-1977-4992-9506-ceb34a3ade8a','0d785148-6111-4252-8e79-872354383a3a',NULL,'RUKİYE TURAN - 644301613',3,'MTQ',110,0,0,NULL,NULL,'e3871411-a780-42a7-af06-7808ea097f15'),
('767fbf2e-59d3-4158-88eb-3971ff89d63f','4c5451d6-31c8-4252-bae0-facc3c5808ec',NULL,'ADEM  GENÇ - 614553524',3,'MTQ',110,0,0,NULL,NULL,'fd6227ea-51d9-463a-bf38-1fd2110f95f6'),
('7685da93-3a42-43a8-b64e-95bf85649081','3b233c7c-3e31-4a3f-9081-8d5192977270',NULL,'BOUDJELLOLİ LAKHAR - 982340056',2,'MTQ',110,0,0,NULL,NULL,'223c42ff-34b8-451f-8dd0-0377774e9c28'),
('768ae215-5448-4ecc-aac0-9c2daf9c29dd','79cd4b02-2665-4c38-8d3e-20ed6afc42d5',NULL,'ŞEVKET ZİRİH - 478545295',2,'MTQ',105,0,0,NULL,NULL,'a149c299-f700-457c-ad04-aac7b10d4609'),
('769127f5-4a8f-488f-8a36-c48baebcd2ad','9cc4ce59-b727-4d83-a7e7-454e011faeb5',NULL,'HATİCE BOZ - 371441090',2,'MTQ',110,0,0,NULL,NULL,'bda1a022-6558-4b61-9d65-0cbc7957db0b'),
('76aa16f5-7c84-4a55-a804-890132a1cf0c','f2e65e42-8ae9-4910-a9dd-5e7080641e91',NULL,'SAMİR KERANOVİC  - 221837026',3,'MTQ',140,0,0,NULL,NULL,'313a72ed-6534-4a76-a704-0b5ce01d87db'),
('76c49cfc-2bcc-4e16-8989-103008ea73d8','f4f1b302-0449-45d9-bf79-f5c3cb4ccb15',NULL,'KAZIM KURUCU - 478335843',11.5,'MTQ',130,0,0,NULL,NULL,'927e12ff-5564-4a31-a8d5-f4d5eaffc582'),
('76d1b113-60f2-465b-a390-c2cc3a0bcf12','c2f5d689-9a22-42ca-9c26-b034b0ed5129',NULL,'AJLA ORUC  - 982329375',3,'MTQ',140,0,0,NULL,NULL,'d6c86bc4-621a-47c9-bff7-65a8004b9c59'),
('76f86427-e8ac-48a5-8683-3ce9323bff42','6bf76928-22e1-4a23-9999-045ae20bcb7b',NULL,'YASİN DOVENSE - 41283852',2,'MTQ',0,0,0,NULL,NULL,'5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115'),
('76fa690a-36e7-46e8-b773-79776d57d645','13400a1c-44a7-4f3b-8856-3e7158c1893e',NULL,'MURAT MAKAS - 248764146',1,'MTQ',0,0,0,NULL,NULL,'88508694-0e8b-4ee8-a819-7c218ab0cce7'),
('772195ac-ab1a-4481-b820-e08b5a61adc7','f5934656-f1e1-4c77-a072-9423a622bad2',NULL,'FATİH KAYA - 750845897',7,'MTQ',0,0,0,NULL,NULL,'447dba3f-3a2b-4aae-943a-a8cb16c2bfda'),
('7743833f-4d10-4150-a056-87022f1e0128','9e6af983-5700-49d6-a17c-aa1fd7ac56e2',NULL,'İYAD SHOURBAJİ  - 221591105',2,'MTQ',120,0,0,NULL,NULL,'2bdc9d94-c171-475a-ae24-5adf3fadaea9'),
('7751cbfc-cb58-4111-a709-fa62789328ac','b6f81672-3647-4ff3-815a-7c6d92069d37',NULL,'ZEKERİYA SOYER - 338878009',2,'MTQ',110,0,0,NULL,NULL,'65cd44ca-893b-4894-b062-6cfd32e95228'),
('775dd3f4-67f2-4e94-9d6d-8ccdfb8978a6','dff44210-741f-4192-aa50-fafc15d6a468',NULL,'MASOUME IBRAHİMKHEL - 735211280',1,'MTQ',0,0,0,NULL,NULL,'31322282-8ccf-4553-94bc-7f1b8069ed4e'),
('77690b9b-7550-4af0-acdf-53ea2732b877','d070cc0a-0896-45c3-9423-8f3db6673a21',NULL,'SUHAD AL-ASADİ  - 675124573',2,'MTQ',120,0,0,NULL,NULL,'bd298d61-17ac-40db-8ec3-3741f3c4e017'),
('776a6d57-5ad0-4c5d-bdb2-708758bd6546','8ec94dba-2679-4e29-bc86-7a193090cf5e',NULL,'NURİYE ŞAHİN - 221447673',3,'MTQ',140,0,0,NULL,NULL,'e9c3de84-44b0-416d-b57a-8549b5c187d0'),
('776db0ec-00a3-492b-9cec-9ff9a6aa362c','128f2935-759a-4e5a-b8b7-236162f544d5',NULL,'SEYFETTİN BİLİCAN - 703728513',90,'MTQ',44.45,0,0,NULL,NULL,'d90a2d63-8817-4556-b510-fd210ae23d81'),
('776f5e8f-29ca-4a3a-a393-5ade19546f26','54d2c6be-74c8-4d40-98f5-0f6519efa76d',NULL,'ALEV DOĞRU - 478697529',2,'MTQ',105,0,0,NULL,NULL,'006b20ec-9123-4bbc-9826-67622acc03ba'),
('779733b9-06dc-47ba-acfa-869ece7ad26e','aeb7e036-5520-4ec0-9531-0a6d48bd6c06',NULL,'METİN PEKSERT SSH  - 74597110',2,'MTQ',105,0,0,NULL,NULL,'8583f2b4-5e34-4b29-b37d-c779a2102d5c'),
('77bd75be-8802-49d9-b083-91dd6002b232','e9187181-d695-4954-8f73-4069778df83c',NULL,'GÜRKAN DAĞ - 904803845',2,'MTQ',140,0,0,NULL,NULL,'65e0ebe7-0bff-4307-92ba-96c874e28cd8'),
('77cee8d4-141d-4dbf-8817-b8e5eefeb7eb','ff6fd546-f0ec-4c3f-82c7-94480bac2656',NULL,'MELEK ÇELİK - 478675012',1,'MTQ',100,0,0,NULL,NULL,'c2f23e3e-f784-442b-86c5-a406b57dc08e'),
('77e0d254-f258-48bf-a438-54d8ed2181c4','52b47086-15ec-477f-ada1-b755ef05f2d6',NULL,'TUĞÇE ÖNCÜ - 371120237',2,'MTQ',110,0,0,NULL,NULL,'8dcb0124-79e0-4138-838e-c613554097e7'),
('77e5537d-3c69-4a7d-acc8-1f99030ef9ea','2b924b7a-0f54-4883-86f5-6f9d981e3a54',NULL,'LESLİE SEROR  - 22144793',2,'MTQ',120,0,0,NULL,NULL,'ab6c5673-d6a0-4529-b932-e0c888851a0f'),
('77e8aab5-4d05-4e72-b259-5ad25e9bac13','915578db-8455-465e-85bd-99ae7c131d9b',NULL,'SÜMEYYE KARAMAN - 428103279',2,'MTQ',140,0,0,NULL,NULL,'a1cb7e5c-5a8b-4188-a8f3-3130d05e6963'),
('77ebce25-2fcb-4d16-9bee-c4e45c65ee0a','c26c7e32-491d-46c0-bd82-1451f6badafe',NULL,'BURCU BİNGÖLBALI  - 817830150',4,'MTQ',110,0,0,NULL,NULL,'91b404e8-2ef9-4d0e-b8ea-60c442570c42'),
('77f146fa-c2c5-49a1-a466-669a963d0a7a','685c3839-7361-4f3e-8bb9-a7bd75e7761c',NULL,'BELKISA KAPLAN - 478428380',2,'MTQ',130,0,0,NULL,NULL,'6aa00240-966f-486c-99d1-9d64e41babbd'),
('77fab419-7ee6-4410-8ea2-44f7bf0daca1','c3d473e3-c428-47bb-8d5f-8fd25229a7de',NULL,'SULTAN GÖR - 478885043',2,'MTQ',130,0,0,NULL,NULL,'af1de73f-c335-48ff-a271-54ebfe04fc91'),
('78082f16-c30d-4dfd-8d65-e2fdf7086a5d','9c268661-f382-4a52-b1e4-9f131bb3858c',NULL,'BÜLENT ECEVİT DUROĞLU - 478368190',3,'MTQ',100,0,0,NULL,NULL,'697955d3-b7a2-4988-99d7-ef09f8a4cea4'),
('782067d4-0eea-4586-889a-c2af7a3e2328','e6800bb3-d2be-4399-85ef-43fb1b0adabf',NULL,'CONSİGNEE - 2487154',2,'MTQ',110,0,0,NULL,NULL,'2eb37c1d-0fda-41c9-9eb2-518de9069f88'),
('78308ebe-edbc-4e2e-b538-31fa0bc0c948','f45882f6-e153-453b-a495-6b150bb77a7f',NULL,'RUKİYE KIRIMLI - 478861689',2,'MTQ',140,0,0,NULL,NULL,'d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb'),
('7835aac6-df34-4131-891d-0a010269b0a1','c5fdd2b8-e84b-47b2-bb99-03d9a96ad7c1',NULL,'ALİ ŞİMŞEK - 735736030',1,'MTQ',0,0,0,NULL,NULL,'df9f1c03-7e5e-40ee-8715-8a2d4326acb0'),
('7864a6cf-14ef-49c4-ad95-c426c82596a1','69ea3a98-f9e2-4941-8222-cddcb062810c',NULL,'ULRİCH RİECK SÖHNE - 41279166',2,'MTQ',0,0,0,NULL,NULL,'837cee4f-9e79-4aa8-b135-399bc5f2e9ab'),
('78780a6f-94ed-4b4c-93ec-787f851e30dc','9acad4e3-a08a-476c-ab6a-16dcd13d07d3',NULL,'Serkan yıldız - 315752826',3,'MTQ',120,0,0,NULL,NULL,'3a78ddf5-1cf6-4a73-8d31-30826f499319'),
('78f9796f-77b9-4b4b-a4b5-ee53caefc256','2edf2835-cb50-4e95-be59-e534e96b58c1',NULL,'FURKAN BARUT - 644644143',5,'MTQ',110,0,0,NULL,NULL,'29aaa54d-b47b-4224-b91b-303cd6be157e'),
('790793a8-9f07-4bf0-810c-cdacfb3978eb','a96345a8-91ca-476b-951e-3bf776333157',NULL,'GÖNÜL GİDER - 428671806',2.5,'MTQ',110,0,0,NULL,NULL,'641b07ae-f1a1-4ba6-b157-d3d15b50b73d'),
('7910f15c-41da-4940-92c6-e5f0b1c3416c','e0d30761-e3bf-4610-b6fc-559388e61a5d',NULL,'EMİR ASLANOĞLU - 745747559',1,'MTQ',110,0,0,NULL,NULL,'4f1e9e45-fd05-4b73-b176-afd047965ff2'),
('791e720f-5092-4bd0-ae38-b8562fee5e2d','4d2e46c1-bdcb-452f-af01-9473d9db5d97',NULL,'EUROMAT - 735293129',1,'MTQ',0,0,0,NULL,NULL,'44397bf0-f8fd-4ce2-bc11-c3303b438080'),
('7930c6c3-8d16-4602-8080-bf93405b8452','0c8cdc1a-22f2-497b-a95d-21c5046f2b4a',NULL,'ERDAL ULAŞ - 910645687',5.5,'MTQ',120,0,0,NULL,NULL,'5302a3c5-ac11-48d5-8325-9704cfa8ca5b'),
('7951d713-20b0-4715-b5d5-e9586118a7d8','7dc1ba60-7e30-4ff0-8a17-16cf68300772',NULL,'BETÜL GÜNER - 644550858',2,'MTQ',110,0,0,NULL,NULL,'82d80e65-06fc-4494-86fe-0aa63b37337e'),
('797ab711-af9f-4bfb-a39a-006eb80f969b','4b6e11f0-117a-421a-803a-679270502744',NULL,'BİRSEN BALIM - 74521183',5,'MTQ',105,0,0,NULL,NULL,'bf69a70a-73ab-451f-bc43-7e834619f2e6'),
('798a12d0-c6f8-42bb-aed3-c6fb88c07374','8ffc41da-7894-4bdf-a573-0a8304df18f7',NULL,'İLYAS ÖNSÜZ - 745334668',1,'MTQ',0,0,0,NULL,NULL,'ffb40a61-0c49-4347-b03f-2459867ff4cb'),
('798d45e1-4cd9-43e4-b112-e9498d1df54f','c6dc8fb2-eb78-428c-9629-0c43ea7b130b',NULL,'ÖZGÜL KONAKÇI - 735326602',1,'MTQ',0,0,0,NULL,NULL,'c6f81384-e23c-4402-bb79-8669bf5eecbe'),
('7995a9ed-b3b7-4a67-b055-25c7028cb378','9ddebd3d-e022-41e9-8080-65f521340967',NULL,'KEVIN PAROIS - 20390821',15.5,'MTQ',130,0,0,NULL,NULL,'c7437d40-e0c9-4b48-8f95-ce739b84fcfc'),
('79ba1d60-9d1a-4cbc-85e6-788de86387f0','0c9609db-7915-4cdf-a571-fca7d945ea31',NULL,'? - 655216482',2,'MTQ',0,0,0,NULL,NULL,'c3b52580-dbc3-4db6-a1dc-f05f4c2cdf78'),
('79c58cf4-5cb0-45b7-acbf-ab2cc2ad107d','81333884-7a1e-4941-b2d0-db9573258fc3',NULL,'BERKANT YAŞA - 745717474',2,'MTQ',105,0,0,NULL,NULL,'895e1a54-1679-4334-a0d8-1b1901c592a5'),
('79c6c5a1-f1bc-4c6e-90ea-4ce1210922b9','23cd3f63-384f-41c2-b205-ddb9efe12407',NULL,'SAVYO RAFFO - 22164822',3,'MTQ',120,0,0,NULL,NULL,'b2cd1680-a31f-4de2-b636-a5c7910e8acf'),
('79edc1d0-8a39-4242-b292-726ad886f9ac','5138e549-9e38-4565-befa-a4e0b462a473',NULL,'İRFAN ÖZDEMİR - 614337059',1,'MTQ',100,0,0,NULL,NULL,'bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e'),
('7a1b02f9-47f3-434a-abe7-403b62fbe674','87e2116d-e8c1-4384-9d1e-acd8a3f2ef25',NULL,'SERKAN ELGİT  - 61310831',2,'MTQ',120,0,0,NULL,NULL,'af66e0b1-a72e-4c45-9e91-18e38e131f34'),
('7a417d3f-6af2-441b-b689-7be985521e9d','2d13c71f-3f6e-498a-b02d-444e94342c3f',NULL,'YASEMİN MUTLU - 598131456',2,'MTQ',110,0,0,NULL,NULL,'c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b'),
('7a5ff2fe-e05c-4281-94aa-c39f2b6b4c95','4cf3a81b-f99c-4faf-97d3-d35991c49363',NULL,'ŞEYDA ŞAHİN - 9824380',1,'MTQ',120,0,0,NULL,NULL,'61814c87-b908-4fb2-ba7f-eae762fc1882'),
('7a7d497a-0bcc-498e-b176-0a0422570f88','af18289c-83a3-47bb-9f91-dd37ec6aaead',NULL,'AKRAH ABDULNASSER - 412968011',1,'MTQ',0,0,0,NULL,NULL,'aa89225f-004a-42b9-8b91-83ea8db5b923'),
('7a914afc-0d50-4a25-9ced-82d3cd64780a','b7df1b63-ff2e-48c7-b69c-975a1b6618d1',NULL,'MOWO - 412757132',2,'MTQ',0,0,0,NULL,NULL,'23e62882-9f5f-43ab-96e5-5c3074d8a0e4'),
('7ab1244c-b936-4e71-836f-7016f2e6c78a','68121f02-2f26-4e38-b4c8-06b8194af571',NULL,'GODİNA REJEP  - 221157320',2.5,'MTQ',120,0,0,NULL,NULL,'f4bd20c1-e77e-468a-82a9-4daefeb2df5c'),
('7b457996-f1c0-47c8-9636-b7c343ddee62','ca4303bd-92bb-464b-9595-71604cf764cf',NULL,'TUNCAY KOÇOĞLU - 465844619',2,'MTQ',110,0,0,NULL,NULL,'f28509f2-7a8d-45a7-9f70-448e074b8278'),
('7b5bddc2-248b-4e5b-ba75-2a315633612b','2e34efc0-45a9-491d-bc9a-ab83a5bd2abc',NULL,'ŞÜKRÜ AKSOY - 428490126',1,'MTQ',0,0,0,NULL,NULL,'661d9a27-3879-4952-bd6b-5e396f437e8b'),
('7baaa963-15bd-4ba1-8d7a-67fd3152faaf','f145385d-8065-48eb-a402-7fb9a8d970de',NULL,'ZAHRA REZAEİ - 449768376',4,'MTQ',100,0,0,NULL,NULL,'f0a2b18e-c335-4984-8a55-31e2b94bbe44'),
('7bbb249b-7665-400a-95df-835ce6afc74c','22c88838-1dc2-4cb4-b87e-30424c3f6612',NULL,'FARIH SANAE - 486609627',2.5,'MTQ',130,0,0,NULL,NULL,'3f0da6fe-5c46-4444-a319-47ee65028a68'),
('7bbe1428-331e-4431-bfdc-73f72885458b','c34ab18f-2bd6-441c-9662-d1f26dfceed1',NULL,'PERİHAN ÖZVURAL - 531344250',5.5,'MTQ',110,0,0,NULL,NULL,'2d3bf117-ace6-4823-84ca-6f7db821df9b'),
('7bcb48c2-3f37-4e0b-9582-5399a29560f1','49b8e7b2-5e19-4761-8030-89f2d3fdf1f6',NULL,'AHU KARUÇ - 437786734',6.5,'MTQ',120,0,0,NULL,NULL,'89f250d7-ea03-4dad-b40b-0dd01296a0ce'),
('7bd43b7a-03ec-4ced-aa3b-877a55651d2c','8c863069-6ab0-4afc-a26e-bc55f4132a27',NULL,'KECKİN GÜLÜZAR - 449921347',5.5,'MTQ',110,0,0,NULL,NULL,'72595593-1c70-4451-8d5d-15322ee88f0f'),
('7bdfc017-a216-4dd2-a805-a9107cc71cf5','ddf3cf16-89cb-4a87-9488-631b03767745',NULL,'ALİ ÖZDEN  - 745991962',2,'MTQ',130,0,0,NULL,NULL,'af3522dc-162f-4e08-bc60-ffc39d821f1f'),
('7bebf267-fb31-469c-a6f8-4348919883ea','5e0b7cb7-84fd-4f20-ab1c-573cf298f3ea',NULL,'MELİKE BAYINDIR - 371398805',2,'MTQ',110,0,0,NULL,NULL,'b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7'),
('7bf1006f-6fbf-44f0-a1bc-2882f08838ca','788e0cef-0d65-4b6d-841a-053e3f1c897c',NULL,'ELİF GÖKTAN - 505770346',2.5,'MTQ',110,0,0,NULL,NULL,'6832af34-4eaa-4b00-8c36-a811910e9201'),
('7bf7733c-ffb0-4030-8cd7-ca8a3281545e','e98f4416-885b-4d3d-8ef1-b5524b26a181',NULL,'GÜLSÜM UÇAR  - 221345365',2,'MTQ',120,0,0,NULL,NULL,'8fb47c44-2d49-4fed-9d20-275d1c3b846a'),
('7c22ea2c-790d-4a51-8457-61f35cd78df2','0de7fb40-d871-4add-bd7e-66bd02d8a369',NULL,'BOUKİ BOUCHRA - 982918194',4,'MTQ',110,0,0,NULL,NULL,'0c8bac25-5433-4bd6-bcc9-b94a47de9047'),
('7c290d3b-b747-4fee-a1f7-24a0fc530640','9fcd1196-cccb-482c-bfcd-c59181fe3c04',NULL,'MASUD SALAH - 982320208',4,'MTQ',130,0,0,NULL,NULL,'0cba4c66-9032-4c31-99e3-c345fa1edafa'),
('7c3b79c0-4b51-4088-934a-16a3cffdc2cc','ca866e8a-b915-43e1-82e8-5060c3e7d062',NULL,'KEMAL URLAN  - 43755091',3,'MTQ',110,0,0,NULL,NULL,'cf774409-1636-4858-87ca-49dc1380271d'),
('7c5c981b-95b4-40c7-bcc0-a51e657e918d','41d2e66b-fbd8-43d6-94bf-2607fc09b09f',NULL,'SANİYE BIÇAKÇI - 43774917',5,'MTQ',110,0,0,NULL,NULL,'7ed3d8b7-5e55-437d-b2cb-c80e4f63010b'),
('7c9eb695-cb6a-47b4-be32-0de6430ea8ba','d86f9f90-8371-4315-a8e6-5408e91bd586',NULL,'TÜRKAN DEMİR - 570121325',2,'MTQ',130,0,0,NULL,NULL,'ed98c31c-308d-4856-9efd-a92eb1603386'),
('7c9fd949-a9e8-4183-b173-935918ea7309','7e0871dd-bef3-40ef-a43a-4bfd2ef93e54',NULL,'ALİ ÖZVEREN - 412722649',4,'MTQ',0,0,0,NULL,NULL,'55e607ed-d51c-485a-8378-e7a48e23c319'),
('7caf18d6-9ba6-4117-9eaf-d5c4c28c4175','887bff39-90aa-46c4-a79a-1c9c1f7052cb',NULL,'AHMET TEKİN - 501934466',4,'MTQ',120,0,0,NULL,NULL,'91e8883e-fdcc-426e-99c9-17707c173e50'),
('7cbd72b5-a2bd-4f80-aaa2-343e60f1c592','d93c9e41-2ce6-422a-90bd-e936621182b8',NULL,'M.CEDRİC KLEINDIENST - 221850151',3,'MTQ',120,0,0,NULL,NULL,'87c55df7-f40e-45d7-a3d5-773c1c5084ea'),
('7ccc4262-4a98-4ae8-83b8-00d2199e214b','a8eb34c1-3919-491f-80be-7387682c9199',NULL,'DİLBER ÖZTÜRK - 319585140',9.5,'MTQ',110,0,0,NULL,NULL,'1be311ce-e06b-49b5-89b4-ca8a3ecea45f'),
('7cf09096-a2b6-4d04-9ba4-ac0064786544','e6ea8c15-ab95-4896-b7b6-dda90ba80258',NULL,'TAKİ ÇAYCI(K) - 644257752',4,'MTQ',120,0,0,NULL,NULL,'0c43519c-5551-4f80-8c50-18c10c21048d'),
('7d14c6c7-9918-4a96-80c4-c7050a9b7726','85d92e9b-09f6-4367-aa27-9a7e8d47ac76',NULL,'AYŞE KONDAL - 478530755',1,'MTQ',55,0,0,NULL,NULL,'dc6a520d-9bc9-41d3-90fd-f505b28363bf'),
('7d1e0ab3-722b-4711-ab9c-9e685c495427','83d00694-b3d2-40c8-8486-a06eb09632b5',NULL,'KADİR DALKILIÇ - 745881843',2,'MTQ',100,0,0,NULL,NULL,'ac5f1d3a-fb21-4eca-a8fb-bef56a299855'),
('7d46abff-a253-40d0-9757-0c77bf46a4ca','9eb06af9-1e39-4908-b048-005aacce92ef',NULL,'SEMİL HADZİ - 735905073',1,'MTQ',0,0,0,NULL,NULL,'36d04374-8820-448d-9e27-e2a098baa9f9'),
('7d73d6fe-fa95-4c97-99d0-fb2258ab0f93','67291304-9364-4924-9266-f7364c5256a8',NULL,'GAMZE CAPALBO - GABRİELE - 517395181',2,'MTQ',110,0,0,NULL,NULL,'53c08779-8ccb-43dc-8df3-b0f7ba11e871'),
('7d795a6a-ae46-4d91-9cdf-b04d63d345e2','128a1ca0-d70c-4447-aed6-5da8e57c5a01',NULL,'AYSEL-İSMAİL ÇILGIN - 478928003',7,'MTQ',130,0,0,NULL,NULL,'f4fdc95f-d066-47f9-858c-34b39a3d3ebd'),
('7d8768bb-13dd-4599-bece-9dd16355efe5','35e40203-ff64-47dc-9e32-f978c2c3d18b',NULL,'RAHİMİ - 449666503',2.5,'MTQ',100,0,0,NULL,NULL,'3b0f4dee-9f8d-4f00-8b0b-7f628ea71698'),
('7da31d17-2090-44e4-a04b-a097811b7294','32a9a3b8-2f00-444f-aace-74397adb1ba0',NULL,'ÜLKER SEPETÇİ - 4786538',2.5,'MTQ',120,0,0,NULL,NULL,'82c2a380-c89a-4beb-ba59-ed765263d701'),
('7db39697-39ee-4134-a7b4-eaa1a86d8af9','b7c43472-b79a-490a-9838-9fb269dbb127',NULL,'ENİ SYLEJMANİ - 449178440',5,'MTQ',140,0,0,NULL,NULL,'b05077ea-d4bb-417b-8413-3e1fc0346e79'),
('7dc7817c-2fe3-41ad-b440-3a6fb071e39d','9cc98bf2-d4f2-47fe-b7e0-b1a1fea1461d',NULL,'ADNAN MUSTAFAJ - 449343471',3.5,'MTQ',110,0,0,NULL,NULL,'4b0f77c0-836a-4892-a19c-c0032f863e4b'),
('7de289e8-d032-4d56-9a07-85f492df15bb','84c87fd9-ecd8-43d6-b82f-93489ca9aedb',NULL,'SEZER BEY - 126922033',3.5,'MTQ',110,0,0,NULL,NULL,'9f748f02-e185-45e0-9d24-ee921761490f'),
('7df15e2b-29e9-4680-8478-b000edddbb0c','5b252a25-5a2c-45b8-a766-6166a497bde6',NULL,'SEVGİ YILMAZ - 97677559',1,'MTQ',100,0,0,NULL,NULL,'855d2794-7066-4b47-b159-2cf8816867f4'),
('7dfd1efd-3eae-4d3e-979c-58d08b591828','7786a34e-3509-4d7f-9875-bb1c768c9644',NULL,'OSMAN SATİCİ - 614536111',2.5,'MTQ',110,0,0,NULL,NULL,'3a6116b3-b977-4787-9877-ea0b090bc7e7'),
('7dfd6eb7-34ff-4322-a20c-c873424457e5','33c3e18d-4a94-46e9-b117-40efe1bdc6e6',NULL,'MUSTAFA KIVRAK - 118176933',2,'MTQ',0,0,0,NULL,NULL,'ffe7cd27-4d52-41ee-b5e5-b17ff3b89095'),
('7e07da20-2186-4f8e-aa76-665fabe6f526','689eb83c-b261-4f7a-a795-b34370b3f0b2',NULL,'BURÇİN MEN - 745970479',2,'MTQ',130,0,0,NULL,NULL,'77e78f51-be80-4b08-a516-e9fc28d5622f'),
('7e0d4739-bd4f-4c84-82d6-23a59c7077bf','e11ce49b-a353-41ea-9ede-dcb81537d664',NULL,'AYŞE ŞEKER - 745671718',2.5,'MTQ',100,0,0,NULL,NULL,'ee60ec73-3c76-4379-8775-11a6bda57fea'),
('7e7a0557-ffab-421b-a6da-f17eb1c1e777','3cf66756-a515-4809-ba20-90f8dcaac7b1',NULL,'MEHMET KIZILDERE - 501488750',6,'MTQ',110,0,0,NULL,NULL,'5ab946bf-4daf-4a95-a7b6-8f3505531252'),
('7e7a9250-f2b5-4604-bcdd-4fda3ee09ad9','f903b196-7105-40e3-9947-6e4b8150786e',NULL,'AYŞE SÖNMEZ - 745206126',2,'MTQ',130,0,0,NULL,NULL,'65292c0d-b0ed-44c8-838b-2022b2fd13ac'),
('7e7b649b-04a7-4551-9f5d-80562aa6fed4','f05c50da-4e23-44a0-86dc-226d271171bc',NULL,'ERSİN - 126377805',1,'MTQ',100,0,0,NULL,NULL,'13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3'),
('7e8dba6d-a0b8-4e05-aa3a-27537aed9e67','622d2509-f187-4402-9438-a355504afbd8',NULL,'NAGİHAN ALKIRAN - 338829299',5,'MTQ',110,0,0,NULL,NULL,'eee6549c-7110-48d4-b248-afbe45d679e0'),
('7e96f84e-4c80-42f8-a6a7-62fefc6bba98','19b9bdd9-0331-4431-969e-486b1be641ac',NULL,'EBRU SOBAY - 437574361',2.5,'MTQ',110,0,0,NULL,NULL,'9bc7ed7a-88ba-4843-ab9e-94956f2066a3'),
('7e97eeae-fd11-4ea7-baf4-ead45f565c70','87567328-b309-4aa4-860c-67ef2af02250',NULL,'ROJDA BİNGÖL - 598665171',2,'MTQ',110,0,0,NULL,NULL,'c6a4b643-c681-400b-be0f-c368348b5bbd'),
('7eabbd5e-c649-45b7-a70e-644619fcb2f8','3290a525-c928-4786-bd3b-b3845f1e9425',NULL,'SEVİM KAMER - 478151970',2,'MTQ',105,0,0,NULL,NULL,'78b69f29-3789-4968-b725-c04339316224'),
('7ebd669e-c8af-4d71-af31-4ee3b7d3532d','af54e7c5-ec4a-4734-8a3d-dd9c56f2ba68',NULL,'BMD ELİF ÇEKİCİ - 412784700',2,'MTQ',0,0,0,NULL,NULL,'df4cdd55-cb8f-4a40-ae52-688e5f8e5432'),
('7ec441f7-e615-40b3-b9c6-6932e1601315','e007b6dd-a9d2-41a8-8c8c-137a95ee3f41',NULL,'OMARİ EMAL  - 982726615',5.5,'MTQ',140,0,0,NULL,NULL,'9e04acec-f940-4ce2-9a36-44b825987e05'),
('7ec9f2a1-e331-4110-9aa8-14da77869a9c','99be0671-7643-4610-be55-47bb7b1cff25',NULL,'BURAK TÜRKEŞ - 614419362',2,'MTQ',110,0,0,NULL,NULL,'a7189c2d-87e3-4488-8a7c-25941c07355b'),
('7ed1e4cd-da38-4192-b848-7c796d0fb9cc','090cae71-1e32-46f0-ab69-53dd85827892',NULL,'FADİME AKDEMİR - 644130393',3.5,'MTQ',110,0,0,NULL,NULL,'c0cc8fc6-08f2-45a3-a974-7d378329a372'),
('7ed56d41-67cb-4f96-b396-f529fcd44fbd','9c7f705f-e5e6-45f1-b7f7-707aba129a05',NULL,'FATMA SARI - 745619301',7.5,'MTQ',105,0,0,NULL,NULL,'3645be91-e47a-4a21-8c81-c49771ba3639'),
('7eefd105-4613-476c-8e22-619cc4027a0e','2ed16491-58fe-428f-a2b8-169c1c1e4c09',NULL,'ŞAHİN MUAMMER - 982840804',2,'MTQ',140,0,0,NULL,NULL,'bb12bd3c-d87b-4ede-9827-8c115b6da789'),
('7ef828fc-540e-45f5-8c11-46356c72d90f','79c67abe-4166-44d4-b19c-fd799305e68e',NULL,'dilaver  ulutaş - 478156531',1,'MTQ',100,0,0,NULL,NULL,'c43d1a62-fa97-4d61-9dce-df2c792a2403'),
('7f03521e-8a89-4bf6-ab66-6fafd34047f6','b7baf84d-bdae-4b7f-bede-126d5e951e7f',NULL,'RAHİM MALOĞLU - 412731497',2,'MTQ',0,0,0,NULL,NULL,'0e1f0ff2-0fd0-467d-be19-57aad10ed98b'),
('7f15fdd9-9fe2-4f30-8a2e-0fb3325674a9','c237d382-0a3e-482a-92be-e1f110212586',NULL,'İSA ALTUNER(K) - 644422105',2.5,'MTQ',110,0,0,NULL,NULL,'1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e'),
('7f241780-4f55-4d46-85c3-9fae38726f71','a70bddb5-388a-4dfb-8c76-9de22df28bed',NULL,'AZİZE KAYA - 221946527',2,'MTQ',110,0,0,NULL,NULL,'3677d700-20f1-449d-b4d8-d9b08ec6b141'),
('7f6c406a-16a1-442d-8e42-fd872cb524ea','467cfcb3-10ed-4b42-9ee8-724905493977',NULL,'FATIMA KRISHMA - 982164642',4.5,'MTQ',100,0,0,NULL,NULL,'d7b0bb03-c914-41e5-8899-697339f7e562'),
('7f790e74-7f1c-464a-8624-e83417f7846f','3d3e7611-0b4b-49c8-9b2a-ff0a36e6d508',NULL,'DİLARA ALAMOORİ - 982632860',2,'MTQ',140,0,0,NULL,NULL,'f1669928-edf4-48cd-9d17-1413b45ca355'),
('7f798b5b-bdc8-4e46-96b9-ee6f3b1126d3','0f9e90b0-17cb-4bd4-a4a1-b2ec31b6c606',NULL,'SELMA YILMAZ  - 437649696',4,'MTQ',120,0,0,NULL,NULL,'37513226-d4df-4cbc-b99c-f0566be6cb46'),
('7f87dfa7-a420-494c-bdee-4c18cc49b78d','56fa557e-d21f-4d32-b6c0-fe805f4b34d3',NULL,'ÜMİT MORCA SSH - 644760466',2,'MTQ',120,0,0,NULL,NULL,'0fb4d287-c84c-4138-a4bc-12c37b404970'),
('7f8aa5e2-e14d-471c-a0df-eb3332fa7e16','d62f7a75-df13-477a-bf41-656ec65bd38d',NULL,'LAMİSENT BUSİNESS - 221339460',2,'MTQ',110,0,0,NULL,NULL,'55512975-1b08-4931-aa51-a204463134c2'),
('7f96710a-4f9b-4e64-a853-713966194ba0','eb123542-fa54-4b92-b45c-c6e04733e62c',NULL,'DERGHAM NAWEL  - 22145441',2,'MTQ',120,0,0,NULL,NULL,'1879da27-b3bb-4922-be98-d1ddc5fe38a9'),
('7fb6a572-647c-4367-a34d-61edbd20d708','4d8a62ad-f170-4b5b-8e7c-814a143733d0',NULL,'BATTAL - 412232110',8,'MTQ',100,0,0,NULL,NULL,'d07a41e2-b061-4a35-9e73-38a90d719daa'),
('7fd6d78a-805c-4219-a2a8-0ecd06e8cf73','593c44d7-9ec9-4042-9cb5-c9981a2ea61d',NULL,'GÜLİZAR KOCADAĞ - 745816008',2.5,'MTQ',100,0,0,NULL,NULL,'3416941c-5567-46cf-8f2b-ec732315a5b8'),
('80063453-3c2d-4e86-9ede-8d23bb5612a0','822ed85b-b7d7-4857-8777-c509a07f14d8',NULL,'GASİ MUSA - 613262202',4,'MTQ',110,0,0,NULL,NULL,'d5e45bbc-32f3-498d-96c3-b034ee8c10cf'),
('8083bce9-906d-4290-b383-522033573fd9','c03db5a2-03db-4ee2-9033-e03a768c895e',NULL,'AYDIN KEMERLİ  - 982837523',6,'MTQ',140,0,0,NULL,NULL,'f0a5289b-f034-4540-b03b-9510ca71ec7a'),
('8088ec30-9269-4e42-873d-6bf41a05bc6e','48b65677-9984-443a-84c0-4b0595eb1359',NULL,'SÜLEYMAN ERDOĞAN - 478723327',7,'MTQ',100,0,0,NULL,NULL,'476a35ac-9d9d-4d70-a965-370a980951c2'),
('80a60186-0987-4124-b5c8-436bcb54a917','6738cc63-29fd-46d8-861a-afb4b077dd5a',NULL,'MUSTAFA ÖZMEN  - 449888594',3.5,'MTQ',0,0,0,NULL,NULL,'9106d25a-25ef-40fe-9a6e-a0b6c4d5ccbe'),
('80cc5de4-ca86-4764-95c8-5f7c022353b6','c22838c6-7231-4180-822c-7fc349cfc691',NULL,'KENAN SOYLU - 74534951',2,'MTQ',130,0,0,NULL,NULL,'0ac67115-ca12-48cc-a0b1-abc8c3a29d08'),
('80eb374d-cd20-4de2-8d77-f53d3a8976be','5b2bacdc-6c81-4555-8333-97b11579992c',NULL,'YUSUF BARAN - 478450171',11,'MTQ',105,0,0,NULL,NULL,'8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d'),
('81012660-c748-4cf0-8d1c-aeb4658a1811','15850324-3d1e-49a1-8f54-cb5b97e1116b',NULL,'FATMA SAĞLIK - 437835103',3,'MTQ',110,0,0,NULL,NULL,'e516d6c1-f3be-4e04-acd3-657ef1da8682'),
('810cdf5a-7f52-4697-b59b-a144f1701ad0','915f7479-1c68-49ed-9747-6dce74175e92',NULL,'SAİD ALİ  - 982973548',4.5,'MTQ',140,0,0,NULL,NULL,'c1240440-7bab-4c36-b81b-ce30804d132b'),
('81281382-cce3-4afb-b8d4-44936bdcc2fd','dde6caa6-303a-43c6-bdd6-26e000040782',NULL,'MEHMET BAYTOK SSH - 745253500',2,'MTQ',130,0,0,NULL,NULL,'17c44301-4570-4224-802c-27bd566a17e6'),
('813289a4-5807-4c20-be56-93e7ea0f9fc5','bad7a4b8-28e4-4b19-bdbf-7746a6ad72ce',NULL,'53489 SİNZİG - 248955283',9,'MTQ',110,0,0,NULL,NULL,'d5f7d072-4afd-46f4-9eee-c847daba51c2'),
('81636dd0-04c5-4c85-a68f-aa2501a40d65','0a8b6e0b-8a61-4fdb-82d8-9753812028b9',NULL,'NURKAN AŞIR - 614868518',2,'MTQ',130,0,0,NULL,NULL,'47c4a897-9b46-451e-81b9-3ed2ac6147c6'),
('8184c4a6-5ca1-4550-9276-d79c5d442529','87e79c3f-42ff-42de-ad00-36b40d719f8b',NULL,'HİLAL DEMİR - 644145142',3.5,'MTQ',120,0,0,NULL,NULL,'85071203-536b-4dca-b6ab-eb378a6c9c05'),
('8190eda4-64b7-4f82-933a-a2fbb776f456','7141e033-c375-4986-9b67-dc19e2e7b9a5',NULL,'GÜLCAN ÇELİKKANAT - 428519862',4,'MTQ',0,0,0,NULL,NULL,'6c47a19e-0b53-4437-bd26-af1e1f1b9daa'),
('819b3a68-8aac-476f-bf70-37e07b0b1987','0785d1d8-7735-4b80-8f00-b2906e1c4a5c',NULL,'MUHAMMET YILDIRIM  - 745946644',5.5,'MTQ',130,0,0,NULL,NULL,'ea521ff8-eb9f-4152-a03a-e511216077ea'),
('81adc615-2d5b-4c9f-bd26-a322f88f058c','5b7bb8f6-8a78-4deb-939c-42abd95814b5',NULL,'YUSUF KAYA - 655200069',6.5,'MTQ',100,0,0,NULL,NULL,'c895ea94-60a8-412e-8679-dd76f5821b5e'),
('81d11635-d81e-4c51-b792-e10e39de3f5b','824113bc-bed7-448f-bd98-56f459d7a3c2',NULL,'NADİR KURUKOL  - 428414858',2,'MTQ',110,0,0,NULL,NULL,'1e3e8ac2-1a23-459a-86a3-92cf233a6f66'),
('81d8857d-8a42-4df0-8c4c-052a3a8581a4','372e85b6-6f8d-440b-987a-81cc4a533795',NULL,'PARK - 248549362',6,'MTQ',110,0,0,NULL,NULL,'08723415-4b6f-4a95-a326-2405074a7498'),
('82087946-9224-4f2a-8f1e-9faf22963f6f','f200c0bf-5381-4475-b6a2-639de8f2df7b',NULL,'RAMAZAN HAVAÇEKEN(K) - 644879098',3,'MTQ',110,0,0,NULL,NULL,'9236b858-0a44-4581-b11d-b5a57a9522a0'),
('820d8235-5526-4f7b-9ac3-30e26fedfebf','02b44ab8-df30-4deb-b6fe-b0d3340b5f14',NULL,'NİLGÜN LEUKEL - 531629494',6,'MTQ',110,0,0,NULL,NULL,'994456e0-b759-4b05-827f-74c05ad02194'),
('821d6d33-877b-4a04-ae36-7af53ccebd83','187a8833-7f41-4c4a-8ddc-1939157193d2',NULL,'MAĞAZA - 027336842',1,'MTQ',0,0,0,NULL,NULL,'1864d9b1-dcd3-4670-aa46-78f5576aa7cd'),
('82233dd7-7f23-4844-9448-41b8b68e68d1','b1c80d7d-422d-42a5-b63b-2eb53fa234cc',NULL,'MEHMET ÖZKAN - 478794904',2,'MTQ',105,0,0,NULL,NULL,'ec083d8c-b8c3-4e4b-9b30-be29d90cad55'),
('825c0b46-6e12-4f72-992e-69af5fbb526c','8cbc8275-b332-4f4e-a3cd-4bc78f58c637',NULL,'SEYİTHAN ASLAN - 745212688',3,'MTQ',105,0,0,NULL,NULL,'1c5bab65-b13f-47a3-a069-66dac652ca30'),
('82765875-b5ef-4831-be42-10405b2965a9','1f6ac6c3-a2fd-4837-aa9a-4cbe27bf961f',NULL,'ABDULLAH DEMİR - 449239758',6,'MTQ',110,0,0,NULL,NULL,'5b7d4688-f67a-4ea8-be59-b782013f7458'),
('8286da2d-87c2-4a80-829a-e1bfa08b23a3','e3ac5407-0ef2-4358-a15d-dd1012ac5048',NULL,'AHMET GÖKÇEK  - 973510341',7,'MTQ',0,0,0,NULL,NULL,'f8279968-06bb-4f3f-95e2-612d3d340d74'),
('82c7670a-4235-4b14-bc8e-7c8af65770ec','63fb4925-ea94-47fa-b8c0-57a1d5cdf19c',NULL,'CEM KONDU - 221686815',2,'MTQ',130,0,0,NULL,NULL,'1f3c011b-b082-4eaf-a3ea-8f8ab2934010'),
('833f0b8f-20d0-4f2f-bf5d-7a3b33177125','d5fec6f1-dd1f-44c0-86fd-7c3882ab7c6f',NULL,'ÜMRAN HANIM - 248853188',5.5,'MTQ',110,0,0,NULL,NULL,'cff31e86-cae0-4159-890f-d6fdf1bef718'),
('834a2405-75c3-4e25-a346-98d50d5032ad','124655e3-03d3-4f0f-81e0-d331028e4aa6',NULL,'AHMET ÖZDEMİR - 478472384',2,'MTQ',0,0,0,NULL,NULL,'7f855c7f-0b0b-4ad0-be73-f19332cbf660'),
('83597bee-51aa-410e-a77c-2c8311429a46','eb8d9839-2d07-4052-8244-107114859ed1',NULL,'DUDU AKSOY - 982944278',10,'MTQ',100,0,0,NULL,NULL,'e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127'),
('8398a33c-0633-4848-b6c4-b2da525bb7dc','49b85380-482c-4709-8204-22ca5d019dc4',NULL,'NUMAN ALTUN - 41256945',2,'MTQ',0,0,0,NULL,NULL,'9c5e22fd-be64-4432-b4ea-accf07116cf0'),
('840d4d74-6426-4bf5-8b76-7ff0be488c9b','aafb14b2-5e03-451b-9cdc-42eac8a15013',NULL,'ÖZAY ÖZDEMİR YILDIZ - 221746261',3,'MTQ',120,0,0,NULL,NULL,'10862bf3-01dd-40a9-beaa-6ba3d5075238'),
('8425dff4-f322-47c1-94d1-15b2b2720660','bf89c488-c318-453f-95ba-634d43a6b938',NULL,'SEDA ERSÖZ - 644823609',2,'MTQ',110,0,0,NULL,NULL,'6189b41d-2a4c-42b9-b146-5fe82bdc676b'),
('8449407a-9c5e-4839-bccc-671beaa2a93a','24e5cce2-e57b-4bbe-8433-a2469de2badf',NULL,'DURMUŞ MEVLÜT - 614873400',1,'MTQ',100,0,0,NULL,NULL,'1e9d42ff-05cc-460b-bc22-065b93bef5b5'),
('846f5482-8434-485a-8ee5-1b8e884bc437','211b3086-efca-42ed-aa73-e06eb6c49df3',NULL,'MUHAMMED ALİ TÜMKAYA - 64455982',3.5,'MTQ',110,0,0,NULL,NULL,'b98bc4c0-d13e-4cca-ad93-173ed8365841'),
('846f6e4e-2dfa-458b-9668-6330ae130cb8','774d7bf7-b0c6-47f4-b703-9213aa396bb6',NULL,' - 24889830',1,'MTQ',0,0,0,NULL,NULL,'1c37ec40-77c6-4885-995d-696850992a10'),
('846ffbec-a662-461d-9e34-3b47b985ea86','739fc4ca-c4fe-4a28-baa5-52aeb63625c6',NULL,'ALİ GALİP DUMAN - 583643470',4.5,'MTQ',120,0,0,NULL,NULL,'67b884d5-ea90-4585-94a0-ef9d8b7707d2'),
('8489beeb-0562-4952-976e-57f77a741b99','c48ab019-54db-4754-a877-3b9b0cf6cc0e',NULL,'İLHAM SEVAL İNDİRME - 478259590',4,'MTQ',105,0,0,NULL,NULL,'862e4bdc-2e76-4b0a-b6fc-8557101a2020'),
('849ceaf5-0464-4872-8d28-be7f8ad00001','cc52e06e-14c0-40a9-8fae-ca7dd507c803',NULL,'BİNALİ BOZBAŞ - 478798827',2,'MTQ',105,0,0,NULL,NULL,'546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693'),
('84a49cfa-8291-4dbf-a19d-6ddca89b187a','cb4aa280-f13e-4244-9157-4529575723f9',NULL,'ESKİŞEHİR 2 - 412472932',2,'MTQ',0,0,0,NULL,NULL,'0c0919ed-e869-4b33-a525-8e05358a4852'),
('8527a3ef-1804-462e-ae45-4c9a3e3251c1','c57cd100-da9c-4468-9aaf-10e024a08f81',NULL,'SUAN RASTODER - 486405325',6.5,'MTQ',110,0,0,NULL,NULL,'044d9be3-0770-4d6a-af0c-8fd047dc7191'),
('85663235-fd3b-4400-b6b6-e36e02241590','92108347-220f-4035-a8af-aec09df6343d',NULL,'ERKAN URAL - 5983047',4.5,'MTQ',110,0,0,NULL,NULL,'a34f337a-4aa3-4909-9386-aba561d8a6a0'),
('8574fac0-6875-4697-ab35-c469df731031','e77427e1-d8c5-4df5-82dc-32df9491ac90',NULL,'HALİT ŞEN - 614474485',4.5,'MTQ',100,0,0,NULL,NULL,'c5ec9d69-bb2f-4aba-896d-c9e40c0158c4'),
('85aa438e-600c-4465-a6ca-2d4cbcaddd6e','ed569d1d-b6e4-4c8b-ad59-9af8feeb17e2',NULL,'FJOLLA VRENEZİ - 613853408',2,'MTQ',140,0,0,NULL,NULL,'a1891b3d-2115-4842-a527-66a78ad1317d'),
('85c35af3-d77f-49e3-b8cc-499cab2599af','9204966f-b3be-40b1-9d25-84385683e4d0',NULL,'MUSTAFA ÖZYİĞİT  - 42837513',7.5,'MTQ',140,0,0,NULL,NULL,'d3143cfe-61a7-4061-b2d1-c65e956748ab'),
('85d54f63-3b46-4ade-9419-774f37d9a303','46e73ad1-86cc-4419-bc65-9e88ed3356b2',NULL,'GÜL-MURAT AVCU - 478449021',2,'MTQ',140,0,0,NULL,NULL,'6555f7e8-59ef-4ebf-ab04-5e7fab746f3a'),
('85d5c9c6-c86c-44dc-9bea-1850009789a0','ef3c0f42-b498-4a52-b3e8-a4a165102c06',NULL,'BARIŞ ÇOŞKUN - 745656343',1,'MTQ',110,0,0,NULL,NULL,'9667990f-57b0-4e89-ac6c-4a2ef8899bf0'),
('85dc2fe1-0b67-429d-88fb-71d881656f7d','92c3df84-80ac-4a4f-a845-27836f942997',NULL,'NURAY DURAN - 515261200',2.5,'MTQ',120,0,0,NULL,NULL,'fbf1995f-2086-4c7e-b569-f8b57a07eadb'),
('85f57e5c-7dce-4d07-8547-c0d8ed2df03a','20fb8dfa-5ca6-4cb3-9735-4c7956772c09',NULL,'ESRA İSMAİL - 011940661',9.5,'MTQ',110,0,0,NULL,NULL,'6f09bf36-0623-4409-a371-888d1bbf7a91'),
('86242357-aea1-45bd-8644-6d7189985866','941e2f45-5f62-4c87-972d-3052bf557fa8',NULL,'SAKİNA RAHİMİ  - 449108957',2,'MTQ',100,0,0,NULL,NULL,'72d228c3-4890-476a-b92a-a7a953a0be97'),
('864ba713-4180-4379-ad9b-c071f6362206','f0827d89-341c-4ca9-a4eb-c0c07dc68362',NULL,'FİRAS MACHANTAT - 750125400',10.5,'MTQ',110,0,0,NULL,NULL,'3bb4499e-7b18-422f-a19d-ece35be90286'),
('865f531d-ed4c-49d0-ae26-3689a4d1cd6d','2c0cf482-909e-4479-a72c-fc4bda5b5327',NULL,'SEYFETTİN - 412223405',4,'MTQ',0,0,0,NULL,NULL,'c67fa905-f2ae-4d60-a3cb-8209edbe7b9c'),
('8689837d-714f-4cbd-b009-60a76e9dd7a6','86237122-d369-418f-8be9-1b07a2179501',NULL,'NİZAMETTİN - 223719427',2,'MTQ',0,0,0,NULL,NULL,'72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f'),
('86ed2928-6f7a-4ce6-8d46-e37950386f7f','157861fb-7425-4fa1-a50c-7577da5d7c20',NULL,'ELÇİN ÖZDEMİR - 371860514',3.5,'MTQ',110,0,0,NULL,NULL,'83dcfa57-e33d-46e2-b78c-ed99b59bfc16'),
('86f1d1f2-22b9-4038-9079-674853dd2d61','bce0217a-ef57-4267-a59b-8ed08bcd2a91',NULL,'ARİFE SARI - 127865742',5.5,'MTQ',110,0,0,NULL,NULL,'00cb480a-305b-41e6-8cb5-337678c881bf'),
('870fea44-b886-4113-9f5c-3ec7169794b7','c67b1be3-22cc-4407-b47a-59819d5873ca',NULL,'SUADA HAMZA  - 613725694',2,'MTQ',140,0,0,NULL,NULL,'0b7aac01-be82-49d8-9ad7-25b1ae673022'),
('87350c95-3eec-4ad1-8a63-5986b257f8a5','df9fc561-a8e4-4440-9a04-de1dee66a9a1',NULL,'MUSTAFA UZUNBOY - 478618410',1,'MTQ',0,0,0,NULL,NULL,'122e072e-9a04-4ece-a40c-c2aaa95b6630'),
('87560b82-f3f1-4881-925e-14e158d7297e','0cf5be0f-03ab-4dfb-b244-aa71d3d468db',NULL,'MARİANE SARKİS - 338426911',3.5,'MTQ',120,0,0,NULL,NULL,'5d3f012b-7248-479f-97ec-c01599311f5c'),
('8770e06b-62c9-4560-ba50-e2ead097ed7e','e1558b5d-5065-43bf-91d2-1c77bb222972',NULL,'ESMERAY ÇOBAN - 428633070',5.5,'MTQ',120,0,0,NULL,NULL,'763269f0-c331-405d-955e-8f2aa8b9564e'),
('877bd8b1-7870-463a-ae35-9e97844a7c38','3a27edfc-e281-4bfd-969e-85a999b7d9a8',NULL,'FATMA ÜNSAL - 74565294',6,'MTQ',100,0,0,NULL,NULL,'a6f1c3bd-9788-43da-8af3-996af9bfb0b2'),
('878f8e01-5f8c-4001-bde5-d30e6ca8710f','a2c6ebff-39ec-4b2c-a4c5-4e0931bf4cb9',NULL,'LORİSWOOD - 412139015',2,'MTQ',0,0,0,NULL,NULL,'4ccac009-f5a5-418b-b56b-3918c0e2dd0e'),
('88090118-2f2e-46f1-81b2-4a631c7f40f9','bc7cbf8c-0a0a-4940-b542-a35c8384387d',NULL,'BİROL KURNAZ - 501452801',3.5,'MTQ',110,0,0,NULL,NULL,'e5574090-3955-4e09-af62-dd5eb9f6fce4'),
('8816b588-4ea4-4729-bb45-ebf14c14c86c','af1d09f8-440b-4642-8e57-eaf8796e6ea3',NULL,'HASAN BEY - 448774640',10,'MTQ',0,0,0,NULL,NULL,'abeb06ec-0186-44af-abeb-248b55f83e5f'),
('88216de8-3fa7-4916-94db-2fea7c592e05','84ea8958-2d7d-46cf-8e82-e9c1cbe78497',NULL,'İSMAİL İSMAİL - 478262226',1,'MTQ',100,0,0,NULL,NULL,'ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd'),
('88279f2f-0ec2-4451-b10a-80fb300f4c2e','9d3cd2e2-5ad0-4665-bb37-f89bb3b9a0ed',NULL,'RECEP BEY - 858124295',1,'MTQ',0,0,0,NULL,NULL,'1177acbb-1392-40c1-b24d-59dd7e3651a8'),
('886044a1-08fa-4f5d-b4c5-c5e50b1d43a0','ebb0d255-a4a3-4977-a0d6-8e2c41926724',NULL,'KAZIM YOL - 478202878',1,'MTQ',110,0,0,NULL,NULL,'702ebb26-b834-4081-a58c-2279f0d9af03'),
('886801eb-3ab9-4fa8-b2df-68bc8df6694b','6e956d78-c7a7-40f6-910d-1a2d63e44f29',NULL,'AAAAAA - 248135683',2,'MTQ',105,0,0,NULL,NULL,'de3ce73a-57c4-41fb-a63c-fcd11d57868a'),
('887d7876-cd10-435a-a7c8-c481e6d67e7c','a6c5151d-0829-4bd0-90f8-3271eb26e5ae',NULL,'EBRU DEMİRHAN - 745422037',5,'MTQ',100,0,0,NULL,NULL,'3e19392f-7b28-4ec5-bd54-c32058400252'),
('887f2ca9-50b6-4b8e-bd84-1adc61bc9ed3','6d2ff586-2579-443f-bbd0-ce77b66971f0',NULL,'VENERA RUSTEMİ - 817838997',4.5,'MTQ',110,0,0,NULL,NULL,'1e1adb91-c239-4909-b5fa-ff18ba2d8157'),
('88934bef-4e0f-433d-a5c4-e922d537410d','e00db2f3-a162-4a47-9f1d-ccef8a8b9214',NULL,'ISMAİL REMMO - 61330729',2,'MTQ',110,0,0,NULL,NULL,'3d2e4684-1f1f-4b69-af07-96f688d5b93f'),
('88c9570b-b218-4f25-850b-fb5e5dda7ffa','769d7321-0781-4c91-9255-71125a37cb3e',NULL,'DEMET DEDE - 478409459',6.5,'MTQ',100,0,0,NULL,NULL,'633d745b-6334-4fbc-906f-28ed4e0c5168'),
('88dd9b1c-1724-45bb-990b-558c57c7c48f','cd9b3782-594f-489c-95a8-c9b8e70f7394',NULL,'KIYMET ŞAHİN - 614987879',10.5,'MTQ',100,0,0,NULL,NULL,'a72800e1-54dc-4d60-b293-ca2184c62129'),
('88ea8515-6dad-46b6-86d0-63425970b43e','bbe736f7-91aa-4c68-8c32-4140f8595e93',NULL,'SAİMİR BALLA  - 982431907',3.5,'MTQ',0,0,0,NULL,NULL,'f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45'),
('8903e983-e308-48ae-8527-5c0352878c5d','e1e84bc1-3605-4359-b0ca-dd4ee80b3846',NULL,'ŞÖMİNE - 412987652',2,'MTQ',0,0,0,NULL,NULL,'bb4a6dd2-62fb-484d-a695-2d7b87e164ed'),
('892df28f-bb63-435b-b011-9e7b17866a5a','a62a75ce-0cbd-4f59-b203-d2ec73c16bd2',NULL,'YASEMİN YILDIZ - 745968655',2,'MTQ',105,0,0,NULL,NULL,'8b219963-3108-4a67-94f3-3bd88636e6f0'),
('89457f35-1051-4ca0-bbed-aa80fa9f2a4b','968edb94-d376-4d94-9e56-bc6187274b3d',NULL,'CEMAL CANKURT - 976369139',4,'MTQ',110,0,0,NULL,NULL,'ab2f1d14-a20a-43bf-b89f-55328f271e01'),
('8949949e-430f-455a-933c-b8902db73ceb','5768237b-519a-40d2-a72a-c0b240222ff1',NULL,'MELİSA  - 817630523',3,'MTQ',110,0,0,NULL,NULL,'4beeb944-7865-42f1-92a5-015bdc8f8dcb'),
('895d2b8b-a812-4609-9ad7-dcf9ff200aab','4f861fb2-0954-4278-a838-17a149be2b00',NULL,'ÖZGÜR SEDAT YAMALAK - 74513098',1,'MTQ',100,0,0,NULL,NULL,'ab8aea2d-8bea-4d4c-9d83-556a52f26e1b'),
('8966dbf5-c2ac-4a2b-84df-6c513c3cca51','ca33622c-cb7d-4ecd-9f8a-c8b8d0906ca4',NULL,'KIYMET HANIM  - 657635062',2,'MTQ',120,0,0,NULL,NULL,'e5d25a08-4616-46db-a673-3c63eb09c6f2'),
('89aa92dd-434f-4d62-819c-f27f7bc9dd28','776ad66d-1262-4966-aa55-f4dbbd6fa8af',NULL,'İRFAN AKTAŞ  - 501167444',5.5,'MTQ',110,0,0,NULL,NULL,'eed830c2-dab6-4198-ad41-2a2be9a929dc'),
('89b636bc-d3fa-4f96-aa00-f3cd0e8407de','55c126fd-e716-4c1e-b587-8eb51c6c57ff',NULL,'HASAN BEY (İRFAN) - 412797306',2,'MTQ',0,0,0,NULL,NULL,'d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c'),
('89b7af80-d116-440a-b271-4665e0c75e11','4b863e49-6340-4d92-a1d6-681c3d606e35',NULL,'SABRİ ÖNÜZ - 437762949',3.5,'MTQ',120,0,0,NULL,NULL,'dacd398a-1156-4c32-ba9e-e38cdcc1856c'),
('89b80133-bfd6-46c1-8345-10b10c4082a1','ee4393ac-deca-46f4-9b1c-6ed4a6d18739',NULL,'SEYFETTİN - 703581635',6,'MTQ',0,0,0,NULL,NULL,'06683822-5af1-4c0e-a0e5-5ca26659fb23'),
('89f783cd-e07e-437d-85fd-ce3c123cbabc','a15b91aa-d20e-4961-bbe3-0bcfd8dbaf4a',NULL,'HARUN KAYA - 745180441',1,'MTQ',110,0,0,NULL,NULL,'ecd638f1-8a79-4613-9107-f0af2ddb735c'),
('89f9bc2a-f486-49d6-a64d-8c1b6671c312','e55ddce2-8a93-436a-9dc7-3149428b57c3',NULL,'YILDIRIM  ASLAN  - 614766744',4.5,'MTQ',100,0,0,NULL,NULL,'7edca54a-9671-41a7-883d-c2d819811110'),
('8a3e29c7-4406-4da3-ac52-453c0997f25f','fad66a55-c881-4265-9787-8f74cbf6ee4f',NULL,'NORBERTO VAZ  - 982573889',3.5,'MTQ',140,0,0,NULL,NULL,'d488fa09-b4c4-4a16-b3c7-6b5959ff762c'),
('8a6b31ff-04c6-468d-a836-c583f248d6e6','63390b47-d3fb-41c8-83d0-ceb6afe9a97a',NULL,'Nurkovic jasmın  - 982572348',4,'MTQ',100,0,0,NULL,NULL,'e032e33f-200c-486b-ab1c-c92b86e89536'),
('8a73e9da-b684-48c2-876b-dd21846017eb','8a6fe616-6823-4336-9fb5-8721f78bc37a',NULL,'VOLKAN CELİK - 515785688',2.5,'MTQ',120,0,0,NULL,NULL,'f9930b26-2916-433c-84e9-7d26f5c38b59'),
('8a9414b5-c63b-428c-a334-35beeeb6d41e','b8007a88-1e1c-4961-82ac-d75de6b8e37d',NULL,'MUSA YAMAN - 745743577',2,'MTQ',105,0,0,NULL,NULL,'b0899837-14d4-46bb-b785-b51c5fde0be4'),
('8ae3cbb2-41dd-4c8f-bee3-10919ae56f62','ccd584b8-f0eb-4867-9216-77ad6acfa99e',NULL,'YAKUP TEKE - 735565748',1,'MTQ',0,0,0,NULL,NULL,'83b46886-5368-4d6c-8779-63f4585588f3'),
('8b02f1c2-a567-45d3-a206-4c7cb9183b35','41e2f3cc-d36c-425a-a0c8-341602f3c1d3',NULL,'GÜLCE GÜRLER YEGİN - 478484020',2,'MTQ',130,0,0,NULL,NULL,'f31e552e-c834-40f4-b2b5-57faf61eb7a0'),
('8b2835d3-17ff-4ad1-ab80-73e1e069db44','866996c8-b161-4402-981b-5757639fe6cb',NULL,'ONUR COŞKUN  - 65754067',2,'MTQ',120,0,0,NULL,NULL,'0dc43c9f-95ed-4a01-8e5e-356e535e67c3'),
('8b2a3eb4-664a-44a8-a11f-360248e0a669','3bf41e59-da68-4d6e-98fe-53d9d079fdbc',NULL,'MEHMET EMİN ŞIK - 478955837',1,'MTQ',100,0,0,NULL,NULL,'9a50f1e8-a344-4e30-8e8f-b77c66559586'),
('8b4a0f9a-41b7-469b-bd22-6757e928767a','57664c70-313c-44a3-823c-312660687435',NULL,'EMEL ALATAŞ - 43789661',3.5,'MTQ',110,0,0,NULL,NULL,'f997086a-fb73-43a8-899e-ff36b6cb5597'),
('8ba15e89-8a55-40ca-a4b2-cb5e1999b55c','f19a0a75-2ef7-4b4e-9ed9-2427e38d77a6',NULL,'GÜLNUR KURUOĞLU - 952470417',5,'MTQ',0,0,0,NULL,NULL,'a029bd37-9eca-4220-a768-df5b0d586118'),
('8ba5f4fe-1b4a-4133-bff7-4755e8f0b9e9','da88be19-da87-4683-91e2-78cf38634efa',NULL,'ALİCE CHOCRON - 478589258',3,'MTQ',130,0,0,NULL,NULL,'526aa02e-2975-431a-8cc4-16032700e014'),
('8bbbcb90-a7d3-4a7e-b9f5-07bdf50c4a66','5d967cd3-c194-4bc8-99ae-31d65618478c',NULL,'HATİCE GÜNGÖR - 465181388',2,'MTQ',120,0,0,NULL,NULL,'a2926116-d6cb-4f23-857e-b99221b6f59e'),
('8bc79755-bec5-4b69-9881-6b95e3ef1cee','3213e065-f201-4550-adb4-bfc465bbc119',NULL,'SSH ALPEREN DÜZENLİ  - 745863981',2,'MTQ',105,0,0,NULL,NULL,'b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba'),
('8bd11d2f-7d6e-45fa-b2b5-e1c4457425f2','ef46fb66-e0eb-423c-b3a9-57d693a1c384',NULL,'İLHAN ERAYDIN - 15151133',4.5,'MTQ',0,0,0,NULL,NULL,'fa43edbe-bf66-4c07-ab59-51d6823553d1'),
('8c1d60be-13a8-44a5-9409-31195155012f','0ad8bfbe-ed0f-4a71-9eaa-36cd5bb23c0d',NULL,'ZEYNEP KORKMAZ - 127659069',6.5,'MTQ',120,0,0,NULL,NULL,'fd58437e-911f-4917-866c-db10175210b3'),
('8c42e5a3-09d1-4ed6-bc97-3bdb229f5b5c','8e62c098-acee-4914-881b-cbd573ce8fe4',NULL,'SARA CASTRO - 371287728',2,'MTQ',120,0,0,NULL,NULL,'f63f39c2-1cd3-4226-a94b-31e8ce8e333f'),
('8c764e34-5bc8-4757-9d93-a7cdd7c7af18','4887cda8-7fe4-4673-b41a-399fc3b5d7e8',NULL,'MERYEM BULAK - 371408514',4,'MTQ',110,0,0,NULL,NULL,'4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2'),
('8c870029-bf5a-4aee-aaba-e4a7e58015e0','c859b342-ae14-47b3-a517-68b2dcd22b51',NULL,'ARMİN İMERİ SSH - 221471794',2,'MTQ',110,0,0,NULL,NULL,'8cc2607c-b005-4e4e-858a-0729fc8630a4'),
('8c8d8292-6c8b-4fd9-9aaa-03bfff3bb1be','70cabc87-4aa2-4124-a574-511d06ee229e',NULL,'FİKRETE RAPCİ - 126806100',2.5,'MTQ',140,0,0,NULL,NULL,'476b3b22-cc52-456b-baca-94ab2554e38d'),
('8c9535cb-419e-4aa2-a837-f7e94d4521bc','a26ae9f0-857e-412a-ba5c-1ecac2e2775e',NULL,'HASSAN KHORRAM - 598441020',2.5,'MTQ',110,0,0,NULL,NULL,'3b29ef33-2d5d-4e29-b828-9833896d4a0d'),
('8cba336b-035f-4c8b-a823-3fa3632586c1','db5140b0-2aeb-4f60-8df5-581ebb0587f9',NULL,'AHMET EMİN ALGÜL SSH - 910375036',2,'MTQ',110,0,0,NULL,NULL,'024dc41f-19fa-47c4-95f9-0e8250d8c70c'),
('8cc2a8ae-8b86-461c-bb50-e2ed379aebfd','fa3b3963-3b36-44f3-bbcd-b32eeb120707',NULL,'VELİ ŞAHİN - 598168850',4,'MTQ',110,0,0,NULL,NULL,'044a52d2-c11d-4386-8992-ff1211fd99c9'),
('8cc5c7e2-7f1a-4a60-a7e5-02af4c0a55d2','e9bff3fc-8881-45e9-b6e5-618e76abda0a',NULL,'EURO MOBEL - 107869996',3.5,'MTQ',110,0,0,NULL,NULL,'a87c1195-4073-4758-919d-0b3055e5f5d6'),
('8cc60fe0-ed6c-4b71-8374-8ee432afbb92','b722ac84-c4ce-4efd-82a7-9505b4ece5ac',NULL,'HALİL İBRAHİM BACAKSIZ - 97623604',1,'MTQ',100,0,0,NULL,NULL,'2e3dd4aa-6e0b-4063-aabf-0948a2561c35'),
('8d02aa0c-53e9-4e04-9be2-f52ad2f961ea','938857bb-d636-443b-a78a-4949cd5050d2',NULL,'ZEYNEP ŞURA MUTLU  - 910990360',4,'MTQ',0,0,0,NULL,NULL,'fe6adfb9-14c6-4193-8c47-6fbe8f734d32'),
('8d05b6ff-807e-489a-bd6e-ae6fdf5625c3','fb93c321-7df1-4719-85f8-d04e9b5dd5e4',NULL,'NURAY ÖZKAN - 412767922',5,'MTQ',0,0,0,NULL,NULL,'0686aefd-6bc5-4963-b256-37bb53456216'),
('8d2521f8-33e0-478f-acbe-6a7332dd5b83','340a99cb-ba6d-4f3b-a89a-edf2ed63a1e9',NULL,'SULTAN GÖR - 478212601',10,'MTQ',110,0,0,NULL,NULL,'cb15c1ae-0f66-4f47-875b-dcc051ecb1cb'),
('8d33ff22-6a8e-4848-be6b-17cc17d86bc7','b55db469-bdea-42a2-92fc-48fc3781a8aa',NULL,'FATİH KAZAR - 428135973',10,'MTQ',110,0,0,NULL,NULL,'14ccf007-d3c5-4576-b55a-7094ed23bee6'),
('8d3c3f54-202a-455d-85b4-0d761cb31ea7','6a9909c1-9c63-47ee-be5d-4efc2a41048d',NULL,'DÖNDÜ ESER - 745498790',2,'MTQ',105,0,0,NULL,NULL,'a68ff85d-0ddc-4b4b-8585-e95e4f9e2597'),
('8d52be60-5671-47d6-aab1-c298bb672f51','aa3ef434-a6da-4505-9088-8e1537caa0de',NULL,'MUHAMMER KORKMAZ - 976187023',4.5,'MTQ',100,0,0,NULL,NULL,'d74a364e-c899-455c-8b3f-5a445fba432a'),
('8d79de78-326a-4f22-9952-d609e7207c29','a1ccf8a0-a8c0-411c-971e-05d8373d200e',NULL,'MAHRİCAN DERİN - 501848451',4,'MTQ',100,0,0,NULL,NULL,'443aa222-33f8-4fe0-a2f8-8966543ddebf'),
('8d7f19d8-79fe-4773-a9e7-01c7538fb5e4','5c47953e-f614-4fa8-be60-a971f8c35879',NULL,'SİNEM GÖKÇE - 531340061',3.5,'MTQ',110,0,0,NULL,NULL,'c8ffd3f2-c426-4b6c-9439-664479653971'),
('8d8d3b14-e0fc-4e19-b08d-ddee452bffd4','10362939-84de-48b8-8114-8ceeb74cbf2c',NULL,'İSABEL SEDRAYKYAN - 735977134',1,'MTQ',0,0,0,NULL,NULL,'12ee6998-24f5-4d1e-a05e-e05480e238bd'),
('8d9705a0-eb32-4d21-99fb-3b577ff31657','5ef8b0c9-2f31-4f8f-8df9-f72b8568eb38',NULL,'ŞAZİYE KARABACAK - 50133684',3.5,'MTQ',110,0,0,NULL,NULL,'ee47f1d8-1ad5-4907-acb2-e3edf9f48713'),
('8dc129d4-0f0c-41eb-89da-0e223c3ec0b4','0f0d7e15-dbbd-4e34-b083-316b17b3147d',NULL,'DİLEK YILMAZ - 437227214',3.5,'MTQ',120,0,0,NULL,NULL,'071c9b00-dfd6-452e-a75b-c40b31f270dc'),
('8dc3c5b8-4834-4ed1-b5cc-e4e6ee56b3d7','dfa159f5-6cb6-4ca9-8162-4c8d40d14b37',NULL,'AHMET GÜNEŞ - 478285861',2,'MTQ',105,0,0,NULL,NULL,'e792b913-8e00-4617-bf8c-27fc2a7933e2'),
('8e01b025-0ee6-423f-9956-a1855e482ce0','656a437b-7d66-4488-a700-a127311378df',NULL,'mukungu kulemfuka - 449205900',1,'MTQ',110,0,0,NULL,NULL,'6365708e-a492-4502-8739-ff5d98b2e2c4'),
('8e11cb8a-75f8-4744-9512-7d44b8f4dcde','84575886-734d-4e3e-b610-5ecd02cddbe1',NULL,'METİN POLAT - 734499902',2,'MTQ',96,0,0,NULL,NULL,'cb769911-52cc-47a5-acef-a1d0863d2253'),
('8e5ad74f-0585-4202-aca2-e6290dfac014','e146624b-46d6-4c69-9a4e-a3c94e51f6a3',NULL,'HAMİDİ SONİA  - 221949733',2,'MTQ',120,0,0,NULL,NULL,'22345714-b5fa-41b0-909c-acf5f1e9d725'),
('8e6bdc0d-1dec-43b4-9a90-861b3fbfe75e','5d2dcdf4-4799-4df3-9e0c-c71a940201ca',NULL,'RABİA AKKUŞ SSH - 644564440',2,'MTQ',110,0,0,NULL,NULL,'ac733c82-d892-4d52-ad57-605808af235f'),
('8e72696a-49ca-4f5e-b076-85dc9819b4cb','ab84aec3-6669-44a8-b9b5-ba267aa05443',NULL,'EMRAH MERCAN - 734970518',2,'MTQ',100,0,0,NULL,NULL,'14395ac1-388d-436d-a633-eb7f1c0beb39'),
('8e88ffc0-52bd-40f9-b832-f7d4c43e2f99','fde1454a-afb6-4c77-b7fd-af1fa8aefe03',NULL,'MAHMOUD AJİ - 248948777',1,'MTQ',0,0,0,NULL,NULL,'c139f73d-4a85-4217-8011-d483b3fabd11'),
('8eddaa23-76f5-456d-a98d-128660f61484','da211269-5ff8-4a89-b57a-59941bc58ffa',NULL,'YOZLEM MİNCHEVA - 765564339',6.5,'MTQ',110,0,0,NULL,NULL,'c885ca27-2244-4162-b7af-4fe67daf7fd3'),
('8ee3d9f7-2405-468a-bcc1-193c41bb9ff6','6502a427-8464-4bab-a7bf-f1ed5b532bbb',NULL,'DELİL ÖZÇELİK - 644680025',2,'MTQ',110,0,0,NULL,NULL,'d006eab6-c320-4751-8fec-f85d79856933'),
('8ee9196f-3bfd-4e92-bc9d-233a8e2bccb3','ca8d1ee1-10cb-41f2-9c6f-bebab7a5bf8b',NULL,'FATİME YILMAZ - 371626943',3,'MTQ',110,0,0,NULL,NULL,'6bf15977-81c1-4276-bfef-d11adbf0e1ea'),
('8efc2df8-51cb-4ece-a754-2b658c0edfad','aa18f8ba-abf7-45db-a384-d7304b104a0f',NULL,'M.ALİ ÇETİN - 910129924',3.5,'MTQ',110,0,0,NULL,NULL,'44210846-9f4f-4a9a-bee7-90445db03b5c'),
('8efef048-6235-470e-a3ae-d7d249a7e688','8674459b-6093-406e-874e-27c5d94e19c1',NULL,'RAMAZAN AY - 644542202',3.5,'MTQ',110,0,0,NULL,NULL,'227e1ba4-cd58-4884-aa89-d563a3f38226'),
('8f0ebc30-2a19-47cf-8903-0b76ec059d37','238b1100-0c7c-4c9b-82f3-5d77021b12a4',NULL,'ABDIL HAPLE  - 248955969',1,'MTQ',0,0,0,NULL,NULL,'cb056a55-a6b8-4c14-a22a-7b912e9e91c2'),
('8f1d2fdf-735e-445e-ab18-ce6562624917','d44e1c49-10ba-4c8d-8e75-a6187bfde979',NULL,'SÜLEYMAN SUNGUR - 371365041',2.5,'MTQ',140,0,0,NULL,NULL,'a05e0bfa-eaae-4d7d-a151-404547093031'),
('8f4272df-1169-4433-98c4-22499944f610','5a13d27a-2e49-42c9-a5aa-c112eeaac412',NULL,'ASLIHAN KELES - 478112159',2,'MTQ',140,0,0,NULL,NULL,'4b7eb51b-9f98-4771-9c1e-ea99abe7f44a'),
('8f449a75-6b22-4670-a99e-784cfd1d192c','31a55cd5-bb6c-4db1-b23e-728e191adca7',NULL,'PATRİK - 735329890',10,'MTQ',0,0,0,NULL,NULL,'495a3166-1c12-482e-90be-0373d0fcbd9b'),
('8f68734c-0568-4733-96aa-aed886a4f6d8','bdba2f53-5387-4c52-ad96-5966f5ad7d2e',NULL,'ABDULKADER TARRAB - 412383870',3,'MTQ',0,0,0,NULL,NULL,'a1f6b1cb-16eb-4f24-903c-834f148431b7'),
('8f9486e7-3a7e-443d-99cb-e062682a55c6','f3a6e252-7f40-4d20-a8a9-b5594bcdf504',NULL,'İLAYDA GÜNEŞ SSH - 371280361',2,'MTQ',110,0,0,NULL,NULL,'5b091e48-c241-44ae-9f12-59295c693382'),
('8fbe8d10-88ac-412a-80fd-788d6b793462','855a524c-3c5c-4b7c-a4a0-3513d84a528d',NULL,'ENVER GÜL - 478659791',2,'MTQ',105,0,0,NULL,NULL,'2c93ce34-e03d-44d9-994a-7219e1c623b0'),
('8fd57336-43d8-47dc-9a8c-bcc16387361f','04be8f26-fd2b-40ec-92eb-d4afb14ba637',NULL,'TUĞÇE SUER  - 765484490',2,'MTQ',110,0,0,NULL,NULL,'db8cb965-bd59-4527-8579-8cb4852d50ad'),
('902f4ce4-cfe7-43e9-8b71-a050b80a0138','4e3ae7e4-9872-457c-93ed-90d78e8b0a9d',NULL,'MEDİNE POLAT - 817488957',3,'MTQ',140,0,0,NULL,NULL,'9852a2c7-87f3-43dc-8446-014d62d6842f'),
('9046e3c6-9ee7-4634-8892-afb83c3271dd','d4e9a8d9-3f49-481e-99f4-7ed18bf98a09',NULL,'SONGÜL GÜRKAN - 976843037',3.5,'MTQ',110,0,0,NULL,NULL,'e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1'),
('90552dc6-422e-4166-91d8-7334b5766b78','fd426a51-738f-415a-a764-dfce24be9424',NULL,'HASAN SARMAN - 982364429',5,'MTQ',130,0,0,NULL,NULL,'baae34a4-033d-4893-b696-b36e57c318f7'),
('90671aea-6145-45ab-b2ec-7c00ae6f9453','1f443da9-ba0b-4338-b46b-424640d8bb2a',NULL,'HABİL ŞENER  - 982864044',8.5,'MTQ',140,0,0,NULL,NULL,'994c111c-e6b7-4e44-a12d-e02010c92c4a'),
('906fe1ff-697c-4626-9411-97b07fd93f01','8dc9f53c-4042-4dc4-bb3d-1093d6afa7cd',NULL,'RERHAYE KHADJA  - 982834531',5,'MTQ',140,0,0,NULL,NULL,'f59e89d5-cc6e-4d5f-8394-432af9b9c0b2'),
('908e804b-b619-46e8-92fb-bb122261016e','ea509cef-6501-4ec2-b37d-bc8044da0367',NULL,'NESRİN DUMAN - 745166392',1,'MTQ',100,0,0,NULL,NULL,'e95cef76-b31a-4d48-831a-9295b1ea7ecf'),
('90937c3e-0c7e-40f6-9a68-7fef13c0c674','eb94fd6b-0cae-4075-ac0a-3acc4bfae3ba',NULL,'İNCİ TOKGÖZ - 478240909',2,'MTQ',105,0,0,NULL,NULL,'32f7a105-8ee5-4d45-907c-2d7f861d1ce3'),
('909e4c97-4a56-4037-b6dc-0087b786af4b','52e3c8d8-a3f1-4ff4-aa88-29be042aa0eb',NULL,'ABBAS ARSLAN - 278440694',3.5,'MTQ',120,0,0,NULL,NULL,'87226e30-fe1d-481b-8c10-e309459138ca'),
('90d7efb2-7ce3-49b4-9b77-efc828c93c17','2a95996a-7810-4012-a068-9ab37265fb5e',NULL,'ABARDİ NOURDİN - 221624848',2.5,'MTQ',130,0,0,NULL,NULL,'e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf'),
('90da9ff5-e892-470f-9667-3ebfc7ac539e','bb5abb80-c656-4b4d-bc3d-4aac6908aae0',NULL,'MAHMUT KAYA - 478705604',3,'MTQ',100,0,0,NULL,NULL,'b859ef01-6d86-4a7c-881c-0c4d9c9eeee1'),
('90f0aaea-3ced-4697-9e24-340b1d43d816','dc346560-bee8-4426-bcad-a8db833e7961',NULL,'NERMİNA SKENDERİ - 371749484',3.5,'MTQ',110,0,0,NULL,NULL,'8385b6e4-e1a2-43de-b257-e53a890a4c6b'),
('914ea53c-0805-4f1e-84dc-e41657d67c6f','bf3f64e9-3b4c-47e1-a679-a120b4e00e20',NULL,'AYŞE KUTLU - 745449587',1,'MTQ',140,0,0,NULL,NULL,'9872a403-aa8b-4c5a-97f3-17ed9113c1ed'),
('9164c25f-9711-4d47-aa46-438a1119c605','ab3a7d30-7335-43ac-aa93-ef5805d27974',NULL,'SERKAN KAHRAMAN SSH - 221348923',2,'MTQ',130,0,0,NULL,NULL,'e4cc7e91-40bd-48ac-b605-1360a7f4e07c'),
('91705e59-c46c-41da-ba69-a38f0dbdab45','52b93338-28bd-47bf-ac5f-303c5aeff434',NULL,'İPEK CANTÜRK - 437313362',2.5,'MTQ',110,0,0,NULL,NULL,'7f859e4c-bba8-44f8-9564-dfb0b044e0f8'),
('919a5076-d341-4b7d-8e0c-be2ed92e6978','49e93747-2eb1-415b-ba5e-22013102ef14',NULL,'ZEHRA - 817918521',2,'MTQ',110,0,0,NULL,NULL,'76a93010-f727-45fd-9ab0-e27e6c84c779'),
('91a7a2bd-2487-4f2f-9581-4b1c8064f5e6','c8bc8a78-6d95-4d5a-a3ff-d60d88a7d0ef',NULL,'SEVGİ ÇELEBİ - 412665767',1,'MTQ',0,0,0,NULL,NULL,'7af8955f-37e6-4e93-a7b7-e2155fe380f1'),
('91ea8a88-7112-4615-8558-a1f2e5892e5a','a2c709ff-a92f-4d90-9f88-f56fbbcbbfff',NULL,'MUSA ÖZER		 - 910586114',3.5,'MTQ',110,0,0,NULL,NULL,'2f96bf63-9b6a-4629-9bf1-1f428f44e517'),
('91fd93f9-ae3a-4afa-befb-d24631c73f62','0608c3e1-95aa-49c1-a40e-c9c69a1d2bc8',NULL,' İSMET CEYLAN - 127241743',2,'MTQ',120,0,0,NULL,NULL,'0b6d3d95-378b-4d48-9a2c-6a0e39674941'),
('921e0564-7fcd-49c2-b088-d3a5eb87fd19','9b3b3262-94d5-426d-acdf-dcd63dd5cdca',NULL,'VEFA ÇAĞLAR SÖNMEZ - 248746531',2,'MTQ',120,0,0,NULL,NULL,'0e8dbe8e-49ac-4a8e-a189-9b29da83c362'),
('923bb7c3-99ec-4267-9cea-b4f34e28b66e','4432eac9-2d4c-4f3e-a337-b96ba44a5321',NULL,'YASSMİNE JADMOUR - 982455918',2.5,'MTQ',140,0,0,NULL,NULL,'9afe7094-ce46-4441-8b6f-2e0a7ff9dc54'),
('926cb60d-0e90-4b51-b1f9-fec99dd6d7ae','51593629-7f60-4036-8bde-373ebd599f27',NULL,'MURAT - 163229349',1,'MTQ',0,0,0,NULL,NULL,'6d8023fb-7e68-4b37-8709-816c5519380e'),
('92851c77-1d80-432d-acbc-d841a56ccb16','efeb92bf-0ab0-4472-b9ce-6ff61dcba845',NULL,'FURKAN - 027201624',1,'MTQ',0,0,0,NULL,NULL,'eb3a7ea2-5449-4b23-acff-46a030acf15e'),
('928c0a2a-4731-472e-a3b8-8a5d4269d103','8372282c-7d4f-4865-ac2b-435868b17958',NULL,'PERİHAN GÜNAY - 745770556',2.5,'MTQ',105,0,0,NULL,NULL,'469ffe47-8345-4906-aaad-d07f19e1be1f'),
('92a00f00-e0d5-47a8-8770-dd27180f8d83','188db7b6-340f-4073-95d1-b9e30d583d0f',NULL,'HASAN BİLECEN - 221121416',2.5,'MTQ',120,0,0,NULL,NULL,'d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c'),
('92af3514-ec70-4e6f-b088-7190eb62f7e7','1df293b8-08a5-4cf8-bce8-364509576e0c',NULL,'AYSEL ASLAN - 745606440',3.5,'MTQ',100,0,0,NULL,NULL,'39fe7b17-1a25-490e-8486-f344c7b112d9'),
('92b11689-8311-4846-a8f7-db1272004f2c','4ac07205-4bba-4063-97d9-8f0673b44c65',NULL,'MURAT AKTAŞ - 163961995',1,'MTQ',0,0,0,NULL,NULL,'99f6416e-f8e9-4260-942f-3c4c6b6fdae6'),
('92b67223-41e0-44a7-91f9-ec888156ca7f','3552fc9b-575d-4228-ac51-ef7226f8dd20',NULL,'OSMAN BOZKAN - 47822949',2,'MTQ',105,0,0,NULL,NULL,'6aebb14b-c093-4594-a175-4b9445b945d8'),
('93177112-1e66-40dc-8d95-a7a634faedaf','8997ea2b-0580-431f-8b50-b39e192a726a',NULL,'MELİKE KOÇ - 735931871',3,'MTQ',0,0,0,NULL,NULL,'afb9199b-bdc3-4b55-9817-9bf24a3421c6'),
('931c83a9-92a1-483f-8855-c9c449734ade','b905d409-e23c-4547-9f2a-56b4d337089f',NULL,'ESRA KAMBERİ - 081789192',2,'MTQ',110,0,0,NULL,NULL,'b9c00c19-4cd1-40b4-b93c-2fa738520c65'),
('93305802-0302-416f-bbb8-4c4463df6d5c','04d9598d-b400-4c61-9cb8-5276615fb3fd',NULL,'FEVRİ YALÇIN - 750135738',2,'MTQ',110,0,0,NULL,NULL,'99bf3199-3c27-48a2-a451-a85f9c13bd5c'),
('93633305-4660-427b-a9ed-b9422bee4f0b','f0edbff4-80e3-41bf-b6fd-086bb191f674',NULL,'SİNEM ULUSOY - 37183091',2,'MTQ',110,0,0,NULL,NULL,'99c9a988-01a1-474c-b7f5-70e4528c16c4'),
('936b9731-6358-48c8-b946-2eef437e6ac3','1138473a-ca25-4eeb-a21f-661032a535ee',NULL,'GÜLSÜM KOÇAK - 745632580',1,'MTQ',110,0,0,NULL,NULL,'fb2d850b-07cf-4a0d-b64b-54e95ff0d79f'),
('93a69121-c960-4222-b0b4-f6632cac8d02','fc4f33ae-15ad-4a8d-b37e-c1c511c400ac',NULL,'AYŞE ŞEKER - 976114868',9.5,'MTQ',110,0,0,NULL,NULL,'f8a35a67-4391-400d-b200-b2e5eb8c88d5'),
('93df8e1b-e882-442b-8f4b-ad7f06b96152','d298e838-35bb-4ae8-afc3-854db98772e6',NULL,'AYŞE BAĞCI - 478365640',3.5,'MTQ',140,0,0,NULL,NULL,'03edbb2f-aa6f-42fb-8da2-233d6ea1d184'),
('93fb8521-8900-4f6c-b229-8f8ee01408de','0037f5d9-bfc5-4af2-b400-190a33fd4feb',NULL,'METİN PEKSERT - 745645972',1,'MTQ',100,0,0,NULL,NULL,'e30052e8-31ee-42d9-b11e-50298f473091'),
('9414c0aa-6edf-48b9-9ec9-98d1dcffc11d','457ca19c-c93a-4c55-b1ca-d134ae834efb',NULL,'SERCAN KUCUR - 437626008',3,'MTQ',110,0,0,NULL,NULL,'bf9be925-842f-4ee7-ad0e-8e73349c83f4'),
('9425dc82-eeb4-49d7-bdf1-4f3cc71cf2e9','f879ece9-cec3-4dfd-b77c-1d5b18fef91a',NULL,'ERDİNÇ GENÇER - 745262490',4.5,'MTQ',100,0,0,NULL,NULL,'8ec34b98-cd6b-4969-b5da-337d1130a80a'),
('944b0bbb-0a04-4123-854a-09e8d252d8fa','a4f910e6-a8bb-4244-a311-295b9a213dc0',NULL,'GİZEM ÖZKAN - 73589256',2,'MTQ',0,0,0,NULL,NULL,'f1bb8455-e7db-4cbc-a016-77c08ef661d8'),
('94569538-deb0-4000-b129-667d7b663054','c8a63873-9a3f-499b-9595-8310fec0d223',NULL,'BUKET AKDAG - 531380104',2.5,'MTQ',110,0,0,NULL,NULL,'47f285e8-830a-42cf-a352-d8268aef8cdb'),
('945cef26-023c-45b6-a270-ec181d7ec604','ba3c5106-757b-4614-883b-6065408a440f',NULL,'RAMİN HUSSEİNİ - 44920682',4,'MTQ',100,0,0,NULL,NULL,'b5e77378-5244-46e2-a563-c188060aab93'),
('947d6e68-5709-43f8-b25e-eed916719655','53005910-fbf3-4618-800d-d908352115a2',NULL,'ZEYNEP ALEYNA ÖZBEY - 478101302',3.5,'MTQ',110,0,0,NULL,NULL,'5eb9d56a-9ea5-4713-886f-df1ddcba4c69'),
('94988d0d-672d-42fe-9a9b-504ae86376de','d12c213b-00a2-4da8-9423-fdadb1b5b111',NULL,'SÜMEYYE ARSLAN - 478719602',1,'MTQ',105,0,0,NULL,NULL,'40683a71-69a8-4dcd-8bfa-2e521bc73880'),
('94c9ae80-0ad9-475c-98c8-e017258fad97','11ee97be-b2a6-496c-ae42-7d811326f6aa',NULL,'MAİL BOXES - 223734808',5.5,'MTQ',0,0,0,NULL,NULL,'acdafd0f-548d-4921-bc4a-a82a585cf32b'),
('952fb6e2-d18a-4748-ba80-82867a282d98','e16b3367-4091-46b7-8ec5-e244976ad8e7',NULL,'ERKAN BAYRAK - 428222834',2,'MTQ',110,0,0,NULL,NULL,'035c96f6-6c26-44ed-a788-5eae403c09a6'),
('953bdb69-bc70-41c0-acf4-8241ed789df9','f0240432-334c-410f-8b4e-88b2ea931064',NULL,'DONYA AL HAİDARİ - 081411095',2,'MTQ',110,0,0,NULL,NULL,'05588ac5-1827-4e7a-aa48-8b1a8cbac0d0'),
('95551c94-3e7e-4c5b-975f-d1571ba1c3bb','301dc9af-4bba-45c8-a619-0345a9445404',NULL,'İPEK ÇAKMAKÇI - 505129515',2,'MTQ',110,0,0,NULL,NULL,'d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b'),
('95618fe2-bc4e-4ccf-9866-fa11e29e8922','82d89a81-6913-4d7d-af48-3ebff825da0c',NULL,'YUNUS BEY - 127504677',4,'MTQ',120,0,0,NULL,NULL,'61f09758-c694-460b-870c-7202dd8cbfcc'),
('958327db-43f9-44b9-ab2a-92da7dcb7cc7','dd7cae69-81f7-4466-b22d-0cbeeef7b026',NULL,'ELİF KELEŞ - 455460659',4,'MTQ',100,0,0,NULL,NULL,'868fcd34-4588-4ed6-8571-a4e5a094c6c8'),
('958a2905-6db2-4fb4-b234-f5cc1bf1a3e3','f4fc09fe-cb35-43bb-a828-3f6002681bf9',NULL,'SERDAR DÖNMEZ - 734447528',5,'MTQ',96,0,0,NULL,NULL,'fc887031-1390-40a7-844d-2f0bb0331e99'),
('958dac9a-492a-4f75-8861-e02fd5194cf9','586a35bd-b1ca-48c8-8f72-1319ee6bef0e',NULL,'YUSA ELLİALTI - 808427332',2,'MTQ',110,0,0,NULL,NULL,'b49349e7-c597-47d1-a275-ed6a18b0719e'),
('95a80abc-fc5c-4cf8-8a96-6176adf243e3','dca8feae-651d-4507-b688-f50c7bccf026',NULL,'BATTAL - 412524404',8,'MTQ',100,0,0,NULL,NULL,'97aeede9-88c1-41c0-a1c0-b47031f0ee1e'),
('95a99be9-6dc5-488e-b326-3c332ae8250e','851e18b2-bf47-49ab-9a50-0eddfba2e3d1',NULL,'pirard caroline - 22315159',1,'MTQ',100,0,0,NULL,NULL,'bb67f0d6-0d35-431c-adda-2a839f6021ef'),
('95db829e-157a-4fa5-97df-d017eea70a08','6b1d06a0-2fae-45f2-bc24-799ff01c464e',NULL,'MUSTAFA NARİN - 319911664',5,'MTQ',110,0,0,NULL,NULL,'1ea05f4a-9cd8-431a-834f-290a784ba20f'),
('95fa60e0-750e-4169-87ff-c270eeb9ebf2','9664c2dc-d080-4f88-aafd-db80b1411a0e',NULL,'VİET ANH THAİ - 531250587',2.5,'MTQ',110,0,0,NULL,NULL,'7d8956ca-698f-462a-81a5-dcf35e87e4ee'),
('9604ab07-8129-4853-9b39-2dead6eba281','3f5023cc-fc80-424e-9898-fe61b706f007',NULL,'MAJD KAMSHA - 745653378',2,'MTQ',105,0,0,NULL,NULL,'1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7'),
('96265c39-3fa6-4310-a459-1d360cec26a3','6e69a3cb-bab7-4a50-b59a-208d5a95dd52',NULL,'ÖZLEM TÜRKMEN - 745853192',6.5,'MTQ',140,0,0,NULL,NULL,'a4db2a81-e01e-459f-a5dc-0aa1254f8b05'),
('964942d3-0a9e-4dfb-ba0f-7748ba3b190a','063c48f0-cbb0-4dae-a708-0ad574b96d47',NULL,'FOUAD BJA - 515103460',2,'MTQ',110,0,0,NULL,NULL,'d586bc5d-72ab-46a5-8f07-a0f14d351b51'),
('965f3392-b352-4cc9-9882-a9a2c62d2264','ceb09517-9247-471f-93db-f9d40b84315d',NULL,'ADEM KILINÇ - 478117771',1,'MTQ',110,0,0,NULL,NULL,'ab950112-9d6b-4ec6-916c-a8cb79c8a7bb'),
('9687751e-5508-49eb-bfa0-956798041ec6','871ada67-b092-4d66-999b-c05632d1be6f',NULL,'FARUK ANSER - 486552581',2,'MTQ',110,0,0,NULL,NULL,'beffebda-e20a-412c-9417-7ba252538d35'),
('96a2c8b9-5749-4eb6-ab06-022c2621348f','f9900e63-635f-4df9-8bd3-b124dadad211',NULL,'ELİSABETH BRUCH - 371807983',2,'MTQ',110,0,0,NULL,NULL,'5f656441-40ec-47a2-a5a0-c7819b0df651'),
('96c9cf86-80e2-472b-a2e1-4f3ffd60edf6','19408ece-0ac7-41b5-9893-8334763a9999',NULL,'DİE FABRİK - 223823107',2,'MTQ',0,0,0,NULL,NULL,'12f34352-3245-4b1c-af57-1762c30010cd'),
('96cc4e48-3877-46df-a66a-276028079e1e','99d1768d-d998-45fe-875a-4e96cf79a3ea',NULL,'KAMRAN MİRZAİE - 982759064',7.5,'MTQ',140,0,0,NULL,NULL,'69d3f67b-d428-4309-b980-d4a463f6b69e'),
('96ebc39f-6b7b-414f-b733-7034828ced11','3c7df9f8-0def-4188-871a-27f3aa808c82',NULL,'MUHAMMET AL KHALAF - 735785649',2,'MTQ',0,0,0,NULL,NULL,'7199e362-dd55-4a37-aba4-6ef7822710ed'),
('96f3ce1e-4819-4646-8f6e-3eca9aced0bd','3dbe2c8b-73fd-4dee-9ddb-884fb62bd0ae',NULL,'AYŞE ÇÖPLÜ - 127530070',2,'MTQ',110,0,0,NULL,NULL,'bcf75901-1def-440f-8bcd-fcbe758d1224'),
('96fdb6ba-19f4-45a4-a15c-392866ca674b','9da19f57-3ec0-45e3-be89-f5263b7030ee',NULL,'MALİHA CETİN - 531309772',2,'MTQ',110,0,0,NULL,NULL,'ff541470-3c77-4b65-bcd0-3fc253c0858c'),
('97218a1d-0e76-4f83-a02d-dc8d3c14321f','7cc634fc-d208-4b0b-8536-88eed9b6cbba',NULL,'ALİ GÖKSU  - 268145141',2,'MTQ',110,0,0,NULL,NULL,'bc3edf3c-08ad-439c-b6ee-9b055fb20fab'),
('97431f9e-c287-400d-9a22-5d1a0406afa2','0769f681-1db3-4432-ba41-0084eb4abdf3',NULL,'GURAY SEYFELİ - 221496522',2.5,'MTQ',0,0,0,NULL,NULL,'2a010a66-59d6-493d-bd68-e8dcb1ced2a0'),
('97492670-be7d-4ca7-a308-9e286a72c55c','9b01c72f-0dcc-4091-a560-6428a1e5df17',NULL,'NURCAN DOLDUR - 478223658',2,'MTQ',140,0,0,NULL,NULL,'35339fbe-2f0f-48c5-87b0-cc5d75325f26'),
('97735f0d-d934-4133-b39f-144e222c2239','34c9aea3-153a-4d84-ada3-4e0c604269a1',NULL,'GÜRKAN GÜLER  - 449693252',6,'MTQ',100,0,0,NULL,NULL,'747b5fc5-10a3-4ca5-bdfe-cf4db34e4800'),
('97a52125-55f8-4547-ba9d-b7d870f5d0ed','07a47f12-0a89-469e-bfc4-dcf84518a454',NULL,'Zafer bey - 412454305',1,'MTQ',0,0,0,NULL,NULL,'f7f2db15-90e1-4ab2-89b6-6a61a7161bbf'),
('98077361-a0c8-4ac2-ac5b-0362c0f3c105','de891cea-2bb4-4237-a24f-16646a44fa83',NULL,'ARZU BÖÇKÜN - 614680407',2,'MTQ',110,0,0,NULL,NULL,'f0699886-5b9d-4ea9-8f6d-03786aac722d'),
('9817523c-5415-41ac-a6c5-f9656bd305e2','24ab63ca-5298-4004-b087-351be5da33e2',NULL,'ISMAİL REMMO - 613813844',2,'MTQ',110,0,0,NULL,NULL,'c3afcfb5-df2f-44a8-901b-e521fd45aca2'),
('9834f7d6-59f5-45b8-bea0-72b88131eb15','fc823446-1196-4612-8d24-398503f57e52',NULL,'ESTİFANOS HABTE  - 982496646',2,'MTQ',140,0,0,NULL,NULL,'2d1546c2-bea6-40ad-a656-acdd6173cc27'),
('983dc466-ddb0-4e16-94c1-0b01f028a7e6','2623ffa9-b82a-4e1e-9b8c-be42a2d2f8bc',NULL,'LEMAN EMRE - 478913776',1,'MTQ',100,0,0,NULL,NULL,'d7a12701-09c4-4320-85a8-07d8731effaa'),
('98512e62-b592-46e9-a48d-173bb26774f1','5803cd6e-300f-4742-a00f-60a734b1f6e3',NULL,'SERKAN ÖZBAY - 478800752',5.5,'MTQ',120,0,0,NULL,NULL,'9c826bc4-15c9-43a5-8ec8-92c216c54593'),
('986302c6-026c-42ad-9ea5-a5718ce0aff7','324d1fcd-64b4-4f6e-826d-a97c1dc4fdbc',NULL,'BÜLENT GÜZEL - 428647459',4.5,'MTQ',100,0,0,NULL,NULL,'664a5f59-18db-48f6-9aab-5a678554d75d'),
('9871084c-bec6-4553-b145-ff509f0d6ea3','984ea9fa-484e-4a72-9342-69d6c46c457d',NULL,'MUHAMMED KOKEN - 412555066',2,'MTQ',0,0,0,NULL,NULL,'c5a6103b-c4bd-499a-9cdd-470aac948453'),
('9912472f-c955-4e38-8651-0e2b07b0dd06','3399884f-a4a3-4645-ad37-3f56907bc179',NULL,'KEVSER KAYA - 478983907',5.5,'MTQ',130,0,0,NULL,NULL,'5045a79c-4874-4baf-b0cf-15d0d296389d'),
('9942c2c6-a5d5-473f-b4ef-2f05ac19084d','b7c7248d-ccda-4f97-a250-8c3720cc2cd6',NULL,'ÖZDEMİR YAKAN		 - 910972908',5,'MTQ',110,0,0,NULL,NULL,'b67a7550-5843-4b01-a562-83d265c4d1bd'),
('99461b91-9feb-4a86-a98b-361a157f4c05','52c86c58-0eba-4428-a0d0-cfd6207804de',NULL,'RECEP TABAKOĞLU - 371601782',5,'MTQ',110,0,0,NULL,NULL,'57672219-300a-458c-9d17-3e58d19f71a2'),
('998aadd3-a0fc-4a85-8236-30cc0df3a410','dd203f48-1fcf-4ff5-b989-5ac41b6c7608',NULL,'MİAMİ STYLE  - 982999114',4,'MTQ',0,0,0,NULL,NULL,'da4845d7-4297-4d18-8c32-8b56a284257b'),
('998ac780-c6ba-43c6-a98b-661ec5eb0611','25f96937-73eb-420e-9765-5ae762ee5355',NULL,'MEHMET KELEK - 126371651',10,'MTQ',110,0,0,NULL,NULL,'d21c0dd7-8e02-4baf-b630-fdbc71a7958c'),
('998ca2f6-4243-4692-9f74-4868f5283f8f','dc90240e-55d1-4946-94c5-cb3f0a138f0e',NULL,'ERDEMCAN GÖZÜBÜYÜK - 37159654',2,'MTQ',110,0,0,NULL,NULL,'0a137908-ceed-4a84-b0cb-945ff56ddcb8'),
('99a9be90-106c-4de1-9043-824fabf5d595','7bed47e1-0fae-411b-a227-61ed02ea71f0',NULL,'PETER BOUMA - 449446169',3,'MTQ',110,0,0,NULL,NULL,'ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb'),
('99b9fc28-68b9-481a-91ce-709016159262','f70513e5-109e-4ba8-84b2-2335992ce216',NULL,'VOLKAN ARAZ - 745553590',3,'MTQ',120,0,0,NULL,NULL,'6220c77f-761e-462c-a359-ad8d9ba79902'),
('99d27554-78f8-4286-9806-8296c2d099c8','c31d88c3-7e4e-4b28-89f5-acbc2e011f86',NULL,'SADAT SAIDI - 982365685',8.5,'MTQ',140,0,0,NULL,NULL,'792dc306-a786-4b24-b735-ba05b7a72e0d'),
('9a2005b5-8be4-44b2-976e-19256b872713','7b9d1ee4-14b9-4d8b-b6ce-a00819bb9c2b',NULL,'HAZAL BATUR - 437712381',5,'MTQ',120,0,0,NULL,NULL,'bf55ba8d-4886-4535-bedc-892994749297'),
('9a2755da-8b58-4221-86fc-a1a4191e5332','23d852e3-e62b-4797-9357-cbb6ac05765d',NULL,'VLORİNA BERİSHA - 613378961',2,'MTQ',140,0,0,NULL,NULL,'c7858430-6187-438e-9e7e-600528fb9aeb'),
('9a2a6261-bde8-4bbb-99d2-e1048171612f','49ba007d-25e0-4b07-976a-ea2dc1960d96',NULL,'MURAT - 4127825',2,'MTQ',0,0,0,NULL,NULL,'9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab'),
('9a738090-be9d-4bd6-9a5f-845cafe05c81','51a8d08b-6aad-44ea-b916-cf0716b7aa4d',NULL,'MEHMET ÇİL - 412450269',1,'MTQ',0,0,0,NULL,NULL,'2eac751e-9abb-4289-a78f-365093ac6e16'),
('9a87663f-f3a7-4268-8562-d75e9ea90c89','3daf4010-67e4-43db-a376-c6309a5b694d',NULL,'ADRİANNA WİEMANN - 505724535',3,'MTQ',120,0,0,NULL,NULL,'936577ed-02ef-44c5-9226-4d241235c1bf'),
('9a8cd44e-27bb-471f-9261-848885e3ccaf','4553020f-7591-4a3b-8f42-d7299136a300',NULL,'AHASSSDDDW - 750704426',2,'MTQ',130,0,0,NULL,NULL,'b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb'),
('9a9c6452-1b36-45cc-acdc-44ffb4ba720b','63422953-1233-4362-a704-227fa4085a0d',NULL,'BURAK SOYSAL - 817893403',3,'MTQ',110,0,0,NULL,NULL,'cbc66089-3787-46c8-9770-6e95da20fddd'),
('9ab8450e-9704-450d-8cc1-e085a6e32266','ed0e8e08-5bb7-426d-9fab-96a819f5f7ff',NULL,'NURİYE İKİZKAYA - 437854000',3.5,'MTQ',110,0,0,NULL,NULL,'a36a070b-1cb8-45e1-8e89-ef4588485aec'),
('9ad34d25-124b-4b6d-bea9-b09620b17d87','7a0e5433-29b6-4cfe-af30-323390ed3fe7',NULL,'SERKAN KAHRAMAN - 221254389',2.5,'MTQ',130,0,0,NULL,NULL,'2b6577a2-c3ad-4aca-8b8b-446c848207f1'),
('9b03fd14-e834-46c1-bc8b-7fe111bfe010','c47e6bfe-e12e-4190-89bc-b82b2b61f7ed',NULL,'LEX-DCP DETTMER CONTAİNER - 412996718',4,'MTQ',162.5,0,0,NULL,NULL,'b3ad85de-ea3c-4f24-b3c9-4fd20e6a5496'),
('9b27ae86-5d67-43e1-84d4-202fbb5d17ef','11760d11-5154-43a8-ad29-86e265b203e6',NULL,'HASSAN HUSSEİN - 976494428',1,'MTQ',140,0,0,NULL,NULL,'887d1301-8182-4254-93e6-73d1ecf6af40'),
('9b490876-1175-4f2f-a34a-5e2271b3bce1','3474da1f-428e-4c8c-b4c9-81fb79c29691',NULL,'NURCAN KURNAZ - 786252388',3,'MTQ',120,0,0,NULL,NULL,'9da5d3b0-f88e-4c15-a503-00d3fecd11b9'),
('9b619ef5-6e7b-4640-8c47-a3d7f9e67246','0a65000f-c688-41e4-8ebe-9b07c560a150',NULL,'HASAN BİLECEN (SSH) - 221996027',2,'MTQ',120,0,0,NULL,NULL,'2022b96f-403f-4258-b521-3378c40a33b7'),
('9b930a9d-0ca2-4176-9485-274437ee0fdf','0c6db94f-1833-4697-a2fb-17cc40298de0',NULL,'ALEYNA KARAKUS - 613787861',5.5,'MTQ',110,0,0,NULL,NULL,'5d656399-d4c2-49fa-a9e7-be2b15a2116d'),
('9b9c966e-6039-45e6-a312-baffb04ee376','31326636-b7db-49bf-96f2-dac71d4f24a3',NULL,'LİBELLA FRİSEURBEDAR  - 231216092',2,'MTQ',110,0,0,NULL,NULL,'cd3e8ade-ee0a-4141-9b8f-81a23c9c49af'),
('9ba58325-fc93-4431-a8bb-aeb77614ad97','d4558c7f-4413-4970-8a4f-f68532bf6e7f',NULL,'YAVUZ GENÇ  - 449801040',2,'MTQ',100,0,0,NULL,NULL,'43d385d8-2280-4cba-bca7-d4cd3193968d'),
('9bab13ef-c350-4497-b49b-da18a0978ae0','48b0cf6b-ede3-435f-9f2a-751d934340d0',NULL,'SERHAT ÇAÇAN - 745303876',5.5,'MTQ',130,0,0,NULL,NULL,'4d0b2acc-d1c8-46aa-b839-b13854fbe901'),
('9bb45c7b-2754-4c94-a6d4-c7a3819c5ee5','ce919e2a-9ddb-409b-84f3-c1ebb262537b',NULL,'HARUN UZUN - 745519015',1,'MTQ',0,0,0,NULL,NULL,'a6485cd5-5e0e-4aed-8125-a830f96164a2'),
('9bfb6262-3336-4d86-acbf-c2d827dc15fa','5c98d62d-5f0a-4ceb-92b0-158200fd52e7',NULL,'RAMAZAN DUMAN - 745343811',3,'MTQ',105,0,0,NULL,NULL,'0842ca05-4fb7-45eb-8075-13043a47f7c2'),
('9c07b0fa-87cb-4302-a043-545602ea4ec5','e4c3a772-38f3-499b-95e1-1407ec6ae4be',NULL,'SHAHLA HOSSEİNİ - 982320922',2,'MTQ',120,0,0,NULL,NULL,'5b21aeae-630c-4c68-bc5e-f5ba08b334c7'),
('9c15836d-45cd-4c51-a16e-58e516e45acc','ea19246a-8bff-4353-81b5-bb6279abc678',NULL,'RAUF ÇALIŞ - 338991013',1,'MTQ',140,0,0,NULL,NULL,'f10b88a4-5160-4b26-9eda-5026590612c9'),
('9c38fc96-7efa-4a45-aaf8-9c15c2e1bc67','837732cb-01c0-4c9c-b5d6-4bb88decf4bc',NULL,'İBRAHİM BEY - 248902824',3,'MTQ',0,0,0,NULL,NULL,'5c5ee17e-b7fe-4686-853d-8b627742e536'),
('9c458a3e-a23c-4bdf-997c-1ad6ee20faff','c128425f-f7eb-4f74-9962-fb4e7c05e84a',NULL,'Hilal yavuz  - 9823833',2,'MTQ',100,0,0,NULL,NULL,'c3b1df03-16a7-42a0-95da-4e7553c79f24'),
('9c671888-6f76-4d8e-8b47-c409c5b496e6','57766e6d-3fec-4983-8709-d375d4ea075b',NULL,'HALİL ÖZDEMİR - 478138166',2,'MTQ',140,0,0,NULL,NULL,'d2d6e485-b5cd-40eb-aea4-a35691e6fe83'),
('9c6835f2-529f-4bec-8401-d22828244455','02ff365a-4df7-4f81-8b66-758c9a44ccb1',NULL,'TARA SAİDA - 531893295',2.5,'MTQ',110,0,0,NULL,NULL,'dec449a3-13d6-40c8-925a-d1283d5b0a59'),
('9c75ba40-161e-400e-801c-70b07067f1c5','f3dd3479-7f40-4f37-a54c-782da08cd3bd',NULL,'MARİGLEN SHKEMBİ - 437431907',3.5,'MTQ',130,0,0,NULL,NULL,'3014fb42-2f2f-486f-8a00-c9ecf3f7497c'),
('9ca13dd2-8afc-43a1-abf4-7c95a5887d21','e3be469a-bb5e-4085-b52e-5df37eb8f314',NULL,'ELA SARL - 412316933',1,'MTQ',1,0,0,NULL,NULL,'40fcf0e9-c7f1-43ac-997b-6042ca4b152a'),
('9ccfdd46-404c-4729-8c70-d6fa835fe860','e177df83-3f2a-498b-ab85-cb591af33577',NULL,'ÖMER KOLAT - 478733683',1,'MTQ',140,0,0,NULL,NULL,'8c4bc8b4-007a-4be3-80bf-25d53f48ebc3'),
('9cd5b5a4-0561-43fc-bc0c-f6b411715579','e06406a9-2cdf-4676-84e2-5f979d45e31f',NULL,'MEHMED SHABAN  - 982893962',2.5,'MTQ',0,0,0,NULL,NULL,'24bfd523-6e80-4e24-89e9-93f7f88a6f2d'),
('9cd83101-d159-45d6-85c5-429472d36a30','ffd5ac1f-6e81-46f5-87ba-4c491a320bcb',NULL,'MUSA EMEK - 501786631',5.5,'MTQ',110,0,0,NULL,NULL,'5d53684d-5145-46de-9a87-24f8f4a4bab1'),
('9d12e2f6-40e6-44fc-8780-e54e1a558f35','16a9b0f4-244e-4c12-9c9f-6bfb8a6db8d2',NULL,'MELİSA DÜZME - 644796083',4.5,'MTQ',110,0,0,NULL,NULL,'3b7689bf-7ebf-44e3-8355-6807100fe5de'),
('9d36f206-bbd0-498b-87f5-a175aadebe12','b330c02b-16bd-411f-a255-c1b43a4055ad',NULL,'MEHMET AKHAN - 371998665',5,'MTQ',110,0,0,NULL,NULL,'46aa945f-6044-4640-8ed8-99191e2890af'),
('9d3cb10c-ab35-445a-887f-595f463c8f9f','af2d396b-ae8d-4657-b6cb-c3293b1b03f9',NULL,'MELİKZADE AHMET ATAY - 598493196',3.5,'MTQ',110,0,0,NULL,NULL,'17a07c46-d669-4812-a1e6-7296886311ab'),
('9d488a9e-e273-4a30-b224-dd78b5e86390','b56bf859-da98-46a5-9d5f-1714a77f1cd1',NULL,'OMER AL HASHİMİ - 248203029',1,'MTQ',0,0,0,NULL,NULL,'e15a4b43-14fe-4dd6-badf-02324cd22358'),
('9d73f193-a0d8-45b6-ad44-3961cf4bcbdb','e09bfae5-1ed5-49cd-9d71-24be71b6f0a6',NULL,'HANEFİ ALİOĞLU - 501247386',1,'MTQ',100,0,0,NULL,NULL,'088fba56-0e50-4ce7-864f-7f301956e881'),
('9de1a564-0152-4796-8a3a-35cc06eb240e','32343087-5632-4e89-b544-db99ffb7b44d',NULL,'BERİVAN KÖKTEN - 412550726',2,'MTQ',0,0,0,NULL,NULL,'cd0fea75-fde8-4eaf-b371-382be73415aa'),
('9df01f20-03b8-48b2-93c0-b50d37014e33','211d0b81-b5bd-4ae4-bda1-63e5914ed0f0',NULL,'ŞENOL BEY - 412157183',2,'MTQ',0,0,0,NULL,NULL,'73425516-263e-4f72-894c-4cfd33d6ee43'),
('9e4936a7-81da-4ef2-a63e-73e81fa1656a','788605dd-5093-4db8-af91-b7525512f2bc',NULL,'SİDAR AKDENİZ  - 42877136',2,'MTQ',110,0,0,NULL,NULL,'2716f260-a220-4cbc-9e3d-883dd2448bbc'),
('9e608881-31e7-477b-b9ba-1147c63c4ea8','4a1dd8d1-490d-495d-a5f5-bbd8aed6ebc2',NULL,'SARA BOBAJ - 735173063',3.5,'MTQ',0,0,0,NULL,NULL,'9326d3b9-2f43-4c06-80e8-7b468e9642ab'),
('9e771b35-fc08-44e1-af30-9c8b76d3e47a','366455d3-7d19-4f93-b0b5-39a2c228bc0a',NULL,'GÜL-MURAT AVCU - 478919360',2,'MTQ',140,0,0,NULL,NULL,'17f5b0ed-7e87-4e65-98a6-bf2bebc4900e'),
('9e773199-6c88-41da-aacc-92b524997c6d','50ba41d2-d0a2-4e23-9b6a-b85355d719ab',NULL,'MUHAMMED ARACI - 221247114',2,'MTQ',140,0,0,NULL,NULL,'b0c601ac-0773-47fe-862f-c858fbc7ea4f'),
('9e984642-ead0-4974-aa44-2ced829961d4','e2ee1647-071c-45b9-b183-fd8dba6a7c49',NULL,'İBRAHİM ULUSOY - 74582542',3.5,'MTQ',100,0,0,NULL,NULL,'e10bc182-1962-4aff-b973-093a04c71419'),
('9ea12c54-341c-4a3c-a28a-d83789ca7ac8','69d180b0-8db0-41c7-b906-0815c4ea35c9',NULL,'ÖZKAN KARAOĞLU - 614200423',2.5,'MTQ',100,0,0,NULL,NULL,'23baf79e-0401-46f1-881d-b4e0b8c2a729'),
('9eb0ed8d-68a6-4d7a-a2d8-fae8993557e1','56df6d4f-c423-4e27-b71c-62c9e7950130',NULL,'CELİNE KARA - 478164511',3.5,'MTQ',130,0,0,NULL,NULL,'28b92b39-fb44-43d7-a392-add43e96df28'),
('9ec50828-84c2-4104-8c00-cea0eefbd3ac','82d4cf55-9678-45e4-9900-b890ed2c7cf5',NULL,'SEVGİ BOLAT - 598250504',2,'MTQ',110,0,0,NULL,NULL,'1eee00b6-90f3-4331-83c5-6bef65b0bf33'),
('9eeb7ab4-fe74-45b7-a950-0808c99ac970','2fafafd2-7aa2-4f32-a102-118106732775',NULL,' - 248383650',1,'MTQ',0,0,0,NULL,NULL,'bd527c1b-2a83-4e69-9c2d-979c479102b0'),
('9f0846e6-55c1-4363-8108-af409a21b1b5','88667877-5b1f-438a-843b-21ba874d3a2f',NULL,'CLEİDY MARTİNS  - 982475389',2.5,'MTQ',140,0,0,NULL,NULL,'4c6a6d6f-af58-43f6-9a04-2610b54ab8a0'),
('9f31a217-9119-4a96-9e2c-c4c6dba42ea8','845cfd3b-7133-4a5d-9a55-5e8cccb20d34',NULL,'SWEETA QALANAWİ  - 613393068',2,'MTQ',110,0,0,NULL,NULL,'fc5c1bb8-c1d0-4065-b1a8-be81de217222'),
('9f64eb76-4075-45b6-9f3b-c9aec00745b4','01f77405-5d24-4f6a-b16d-dcd7fd1426d0',NULL,'CEM TOPYÜREK - 53111592',7.5,'MTQ',140,0,0,NULL,NULL,'7ca0c26d-8bbc-4deb-a210-90620aca69ad'),
('9f91f804-a831-414a-911b-e1298ec82ec2','ac7aa772-65da-4bd6-803b-7b9530eac255',NULL,'FİRDEVS ORHAN - 221407228',3.5,'MTQ',130,0,0,NULL,NULL,'a07ecc8b-17a0-46e6-93d3-162e6dc41fe7'),
('9fd0fb79-3f71-4cac-9533-50c0a239b0db','fe4dcd3a-286c-4e2e-af24-bf6afeb3a999',NULL,'ÇUVAL  - 976423277',2,'MTQ',110,0,0,NULL,NULL,'79c8efb8-c504-45ca-bec0-780372b87574'),
('9ff7384f-ec06-4e94-90ff-59547129de1d','ac703823-d155-4894-a862-cee5b5be8628',NULL,'FİLİZ KARAAĞAÇ - 734579794',6,'MTQ',96,0,0,NULL,NULL,'941a927a-9750-49c2-86d8-69862080c82e'),
('a0106442-6f65-492c-8f38-de9fe8dd5864','a4572266-1289-498e-9d4b-23c393470ac8',NULL,'Resul şahin - 412532599',2,'MTQ',100,0,0,NULL,NULL,'dba78f99-2bf7-4c3e-b975-fcada3864c38'),
('a0107888-64b9-4ced-a9fc-8be9f249c1f4','8028ff42-abe2-4bad-a8bd-37365257a6c5',NULL,'YUSUF KAYA - 501428847',8.5,'MTQ',100,0,0,NULL,NULL,'a87cf842-cbf5-4954-a97f-dfa9faa9dbc2'),
('a0237baf-1f69-41a2-a19f-ff2da92d29c3','8421906d-647f-4b02-a9b0-25cf785400bb',NULL,'SEMANUR KÜTÜKÇÜ - 750919384',4,'MTQ',110,0,0,NULL,NULL,'2e714490-58ed-4864-b2bf-67a5cb20f5a4'),
('a025392c-bccc-443f-b7a5-ab60d76a312f','fee30128-e2bf-4566-a9bc-3593d0c1d8dd',NULL,'METE-TAHA TOPAL - 478281907',11,'MTQ',100,0,0,NULL,NULL,'4a285e1c-8129-4c9c-85a3-06394604421e'),
('a0326fc8-f4b1-43dd-8e21-7364386f0219','3d25e72e-f302-46d2-900a-19618ae5a408',NULL,'HANİFE TURAN - 437355925',6,'MTQ',120,0,0,NULL,NULL,'ebbd439c-6c40-425f-adfe-65a9d4bbd563'),
('a03fc060-0a51-40c1-a56c-945394b3de30','575b8856-4c7f-4bf4-84e4-de3d36792c11',NULL,'CAROLİE KENZA  - 982212726',2.5,'MTQ',130,0,0,NULL,NULL,'1d98874a-3c1d-4a2e-ad9b-b943512896cd'),
('a041c6f6-f768-4557-a634-7f40ac35b25e','4358a0ff-a6bf-4ac0-b5e4-c40749f4fcf4',NULL,'SOMİA KARABİLA SSH - 59840179',2,'MTQ',110,0,0,NULL,NULL,'2354f542-69c3-4efa-816d-63f11bc99126'),
('a05b82f0-7430-49ed-9e4f-f1735d0de1d0','39d12fab-809c-4341-8a3f-ec7e17e99bc3',NULL,'JİLLİA AMİRİ - 982630175',8.5,'MTQ',100,0,0,NULL,NULL,'d46dc46d-e5f4-4787-aee1-803a6155fef5'),
('a07ad8fa-eccd-452e-aeb9-2c41ae9c12e4','ad7e11a1-b415-40cc-83ce-33362dce1071',NULL,'DURMUŞ YÜKSEKTEPE - 745935889',2,'MTQ',105,0,0,NULL,NULL,'3feebec9-f45b-4b23-9292-7a6a93bc7d05'),
('a08fa746-8bd0-4a0c-b2af-1844445e462d','b378bdf3-ced7-4dd3-ade6-1981fed2188a',NULL,'Aferdidita ukshinaj - 319835776',12,'MTQ',140,0,0,NULL,NULL,'4598b25d-5bcc-42b3-8fc2-57baa395b0d3'),
('a095e3c1-ce61-4c0f-9f86-1b55cc4e9ed4','0e257cf4-ce39-444b-b7c3-fccad30d3d51',NULL,'LYDİE MAKALU - 449780250',5,'MTQ',110,0,0,NULL,NULL,'f9c61776-accb-469f-88e4-b551ad871fe8'),
('a09cdbe7-08ff-468d-b73f-4500903466dc','f38f1cac-7e9c-483c-9f0f-474962ba038a',NULL,'MERYEMA TEKİN - 478431848',2,'MTQ',130,0,0,NULL,NULL,'5be6a019-e31c-4bdd-ac62-bd037d756e64'),
('a0c5347a-2b28-47bd-810c-dca64869a163','9e48b6a9-1fa6-481e-a9aa-44ff622b16e4',NULL,'BÜŞRA NUR ÇELEBİ - 221278187',2.5,'MTQ',110,0,0,NULL,NULL,'54427ae4-0cae-449c-86ba-ad49870f64d2'),
('a0c6484f-6acd-4faa-b0bc-e833d34c6d93','f1ca63da-8c38-4f76-98c6-0fcc182e7f4c',NULL,'BERHAN GEZER - 501119446',8.5,'MTQ',110,0,0,NULL,NULL,'e301bfde-0e98-47a1-9771-598a50c6dac0'),
('a0f67b8f-395c-4a18-a07c-6aabe496bc2e','ef5982d5-2d88-41bc-8fb0-f46a9e7a0b80',NULL,'MONİKA MORKİ  - 449693939',5,'MTQ',140,0,0,NULL,NULL,'2c12d266-801d-47b6-a3fe-3e5faa2457b9'),
('a0f706c9-c4ec-4ce9-82ca-1806849c4feb','f4a25b1d-eb90-494a-95b7-ebbb783b4094',NULL,'ONUR MAHAR - 019113818',4,'MTQ',120,0,0,NULL,NULL,'f09498b2-ab9d-4831-be05-04151fd3f0f4'),
('a109dec1-49ec-4723-bd59-13ba7399ec8c','7dc798fa-2ca7-4fd4-a589-48cc790f53d0',NULL,'SALİH KAHRAMAN - 803441454',2,'MTQ',110,0,0,NULL,NULL,'3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1'),
('a1115855-7d8a-4068-b6b8-4b7e0ac05ffb','554dbe0c-58dc-4691-81df-86b936b79a52',NULL,'Ahmet Aydın - 412346984',1,'MTQ',0,0,0,NULL,NULL,'a182b824-b752-401d-b663-5d96552a9f49'),
('a1364a46-645e-416a-a3b1-8b8f2ab35898','a057cf54-fdf5-458b-8a50-90a11f395799',NULL,'NURAN YILDIRIM - 910561299',4,'MTQ',110,0,0,NULL,NULL,'c88d3746-2810-43c1-8ec1-df087223feec'),
('a14a6e36-cda3-437b-84b6-9b0118fb42f7','fd985eca-c7f4-4ec9-9cf2-7e945a139ca4',NULL,'ALİ GÜLEÇ - 428470171',2,'MTQ',110,0,0,NULL,NULL,'61c1c529-aae3-45a2-af9a-9196a653fa94'),
('a170d7db-483a-49d8-89d2-73c2a11e6478','1fc5ca19-d4a7-40f9-a3be-d347006e8706',NULL,'RAMAZAN KAVRUK - 735561469',1,'MTQ',0,0,0,NULL,NULL,'26321c61-8ef9-4498-b666-82a04622843a'),
('a1ca524a-04f2-4ee7-849b-19984e4b6bd9','366bf278-4b54-4449-9dea-e1f8a0c9679a',NULL,'TUĞÇE ÖZKAYA - 598587609',2,'MTQ',110,0,0,NULL,NULL,'1ad7ddb4-76f9-481c-8d5d-2018e9c8e712'),
('a1e8de6f-265b-4e6c-97a7-fd365fd5406a','aa1949bd-9619-44e2-9265-fbd97905216c',NULL,'BÜŞRA POYRAZ - 371508043',4.5,'MTQ',120,0,0,NULL,NULL,'2fb92d16-b307-4896-974c-b96cb9542bc6'),
('a1ee9248-4471-4203-b3fc-4bed3090a724','9d12e50a-cab2-4dcf-b3e0-74be523951a6',NULL,'EMİN EKRAMOĞLU - 478548963',2,'MTQ',130,0,0,NULL,NULL,'15245f29-ed5d-405d-b5b2-37fae1f3e5f6'),
('a20b2ce4-c2cd-4ea7-84d2-a88924c9bb78','e173d798-bc38-49d2-860a-df28979d1d8f',NULL,'M.CEDRİC KLEINDIENST (SSH) - 221105277',2,'MTQ',120,0,0,NULL,NULL,'96a8795c-0926-4c3d-9071-8628d0419669'),
('a22f6aca-1ba9-4e3d-9aee-60c2d269c611','d1cdca57-97d7-4558-9655-0eaec0b41395',NULL,'SALİHAPİA LEULD - 231250162',2,'MTQ',140,0,0,NULL,NULL,'70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3'),
('a238820f-9c39-4f12-b66d-54cc5a4ad772','d19e812b-4743-48d8-91bd-894a9cb378f5',NULL,'TUĞBA AKTAŞ - 478687899',2.5,'MTQ',120,0,0,NULL,NULL,'e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a'),
('a24c66ce-8d6b-44c7-89a2-08aa16cd0468','507311fe-16b8-497a-9d6b-bda69f8a016b',NULL,'MUAMMER CANPOLAT - 371376503',3,'MTQ',110,0,0,NULL,NULL,'f5b18e9c-6bdb-4097-ace8-718bd3dec4e0'),
('a25df775-e4a8-4647-9b75-1e1e1c48469d','f741aa8b-fa80-48d9-8ea8-f9fda95aa897',NULL,'EMEL YILDIZ - 478644533',2,'MTQ',105,0,0,NULL,NULL,'35cb8f31-e838-41db-b77a-66b99e847841'),
('a25f11be-2415-4d67-aead-2b346ec0e693','fc9b7a27-0a6d-4f1d-a61b-6edc35f1c919',NULL,'MİHRİBAN SİS -TRANSJET - 735637082',1,'MTQ',0,0,0,NULL,NULL,'8d9f1798-76a5-467b-a81f-d20a878b42fa'),
('a269eae5-a037-4e2d-add1-bfb6da34d938','a64982cc-c2c6-43c4-bd33-06bc5a243f04',NULL,'HACI ULUDAĞ - 449898615',11,'MTQ',100,0,0,NULL,NULL,'4201089d-4123-423c-809e-645e609e8e0a'),
('a27545be-7c79-4982-b63d-2f6fd1802d92','def76884-95b1-4d23-bc14-635e83dc9684',NULL,'MURAT CENGİZ  - 221186271',3.5,'MTQ',120,0,0,NULL,NULL,'769295fe-385b-4195-9bd0-58e04754d3ad'),
('a288f950-5a46-4913-8f2f-599b78867717','e0e3d826-e318-47e0-be14-3b0d8c08813e',NULL,'İSA KAPLAN  - 962908456',12.5,'MTQ',0,0,0,NULL,NULL,'034a3e96-f5a1-4c15-8c1e-0ea592d85c1a'),
('a28e0cca-754d-40ec-9808-85476d35458b','00f20c08-9eb7-4654-acb4-445b801b5214',NULL,'DİANA HUSSEİN - 437917777',2.5,'MTQ',120,0,0,NULL,NULL,'a83ff746-6483-4a7a-b143-9f59ac9e331d'),
('a293761a-393f-44a1-a205-254728f215e5','ee9d66d9-b24e-40a9-91b1-240f44ab3bb3',NULL,'ÇİÇEK MÖBEL - 046517356',31.5,'MTQ',110,0,0,NULL,NULL,'b21c6f76-2185-4cbb-ae48-70494372e886'),
('a2dc5797-edd7-4384-9d88-6a254cdbef40','a8ae9fd7-7a0c-4262-b70e-92dea87e8f58',NULL,'MURAT BEY - 16334418',7.5,'MTQ',110,0,0,NULL,NULL,'83fe2028-17f9-4b82-a141-f935042a08dd'),
('a2e22bd8-8e36-41ad-9aef-8b5796a30a97','9c3630ea-b4ef-4f90-a5f5-95fd28a20e4e',NULL,'HALİL İBRAHİM AKALIN  - 1936694',4.5,'MTQ',0,0,0,NULL,NULL,'18160de0-d8d5-49f6-b6ca-04227578b93d'),
('a2e954e8-051b-4f45-9f55-b098d334a907','a7b5bab4-da85-421a-86c7-93cf7d4df498',NULL,'Arbesa - 982653067',1,'MTQ',100,0,0,NULL,NULL,'7d94f5dc-3374-42f1-918a-96335b5e8070'),
('a3052bd2-efbc-4218-b6f1-48123672a6e5','e6ca8fb1-96da-40ab-be58-b3fc6daf5712',NULL,'DERYA KARADENİZ - 505414907',2.5,'MTQ',110,0,0,NULL,NULL,'ee0c62fa-abac-44d0-915b-567df66647be'),
('a3107f5e-a021-4898-88d3-dfceabe7deff','1265f48e-99e8-4979-be9a-f3ed43df8837',NULL,'MUSA TABARU - 231348651',2,'MTQ',110,0,0,NULL,NULL,'9612581b-4d73-4d8f-bd7f-f89025cfe7b9'),
('a314a6de-b3e1-4411-850f-eca8318b8dff','b8c9a5c9-e33d-4874-b76d-6e0caea39694',NULL,'RANİA PİSİT - 613512690',2,'MTQ',110,0,0,NULL,NULL,'76973b07-223c-4e19-93b2-e2f735cd609b'),
('a31fe219-e1d0-49cd-a424-1c183a831784','718dda21-47fd-41bf-b318-ef12d6eabb61',NULL,'AZİME YETİM - 221752631',1,'MTQ',120,0,0,NULL,NULL,'e41e8e3b-d01a-4f78-b908-2a1eab2ded0c'),
('a331365a-0157-4cd7-b23a-22d4f6f34367','5609eb49-6000-4338-a5b6-ebaf0535e8e8',NULL,'TUBA BALTA - 675902808',2,'MTQ',110,0,0,NULL,NULL,'c7effd94-7a9b-48a7-aa10-5ff2f31371f4'),
('a36d702e-2976-4ca1-aa73-f8826409f551','f38c14d3-57b5-488e-8d2c-0c26897773f3',NULL,'DIANA ÇELİKER - 449974141',3.5,'MTQ',110,0,0,NULL,NULL,'7b348f53-5c5b-4ec1-b494-8e7dc766995e'),
('a377adfb-307f-441c-8415-4f99aabcaba3','aea64478-d392-4a17-b8e5-2aa742d43d23',NULL,'BURHAN BAYRAKTAR - 644758410',4,'MTQ',110,0,0,NULL,NULL,'ed33a630-2ac9-4148-a314-b2a44a100a96'),
('a393bf03-f2c1-4bfe-bd56-70117c9ce35c','7097212d-6b74-4e85-8dfa-64788dbfe459',NULL,'YEŞİM AKGÜN  - 011716616',3,'MTQ',110,0,0,NULL,NULL,'613669b4-092d-41a5-971c-271dc4ad0bf1'),
('a3b52282-90a4-42aa-9b69-9333d29c170f','82a2aded-fa94-4a69-bed4-a37c4975933d',NULL,'ESRA KAYA - 43750462',2,'MTQ',110,0,0,NULL,NULL,'a916a88f-8a03-4757-aca9-0c0d2c64a51b'),
('a3f6c484-3021-4d59-9299-ff1032cbab1c','1a820931-a0df-45e6-b665-84593982956f',NULL,'SSH   UĞUR KAPLAN    - 011811088',2,'MTQ',120,0,0,NULL,NULL,'190d0f26-9ae1-44bb-91fe-2fddc3ae2695'),
('a3fea691-180d-4326-81f9-cc880e31c5f0','b0b7cfad-377a-472b-9095-d78ba33f100b',NULL,'KEMAL TAŞTAN - 982405831',1,'MTQ',110,0,0,NULL,NULL,'b0c379aa-80ca-43d0-b23b-65db895d3ecd'),
('a410fe82-39ec-41e9-8c56-89fa93d8ab56','d483fd4f-b646-4018-be8f-eabec1ae6a4c',NULL,'TABELA - 412548356',2,'MTQ',0,0,0,NULL,NULL,'aa584535-e03c-4c2c-afa7-fa71495534c6'),
('a424986c-3f7e-4599-afab-d883051d041d','07e2d153-4b02-48f3-a9d5-84f6deab2744',NULL,'MUSTAFA DÜNDAR		 - 910775394',13.5,'MTQ',110,0,0,NULL,NULL,'9d816e36-46d4-475f-ab4d-8dc4e121cb72'),
('a44cf85a-4304-4aba-af66-2609e6fbb6a9','a75a5303-603b-437a-9cb3-0fa2c00c426e',NULL,'ZEYNEP ŞİMŞEK - 437442386',5.5,'MTQ',120,0,0,NULL,NULL,'c5ff309c-8bef-4c02-948a-d06e8823ca09'),
('a475da98-4ccb-4885-b62a-d7f49cc32dec','cbfee1fa-63cf-4435-ad18-05a46fab2513',NULL,'KAM.   TUBA YİLDİRİM - 011804405',5,'MTQ',130,0,0,NULL,NULL,'26eebedd-d4ee-429f-bfe5-964620f33452'),
('a4888b5e-0808-4eb7-8eb0-968509a2f4b3','098ac6a9-1c81-4264-9c01-eb61aa032311',NULL,'YASEF İCEL - 47865598',6.5,'MTQ',110,0,0,NULL,NULL,'c95c986d-eb32-413d-a7af-cbc9b9db9e6b'),
('a48d6c2c-3f27-4014-8fb1-b28b7a9bdc35','0ec79b5a-eda5-4062-b616-842fc5dbccc4',NULL,'MERYEM PEREZ  - 982126318',3,'MTQ',140,0,0,NULL,NULL,'1665dee0-24f9-42b5-b654-0fc276b61c52'),
('a4b2eb45-07ee-4e57-9c16-23601f248904','154ee4bd-a3e6-4ae8-83fe-374f259e59f1',NULL,'SELDA ÇELİK - 478777541',7,'MTQ',120,0,0,NULL,NULL,'c96401de-d2bb-42c4-b232-62e5a3c21b42'),
('a4c8cc92-2c94-4203-a094-03218cd21637','79be2260-cd0b-4d88-a586-c17366c79d75',NULL,'CANKUT BEY - 858200454',7,'MTQ',0,0,0,NULL,NULL,'3e323a55-ba70-413e-929d-bc1527816bbc'),
('a4e66770-049a-4a1c-844f-d3957a76eb60','fe3b2dfb-fe11-4901-84fc-8940cf676261',NULL,'FERİDUN BAYER - 959168443',2,'MTQ',120,0,0,NULL,NULL,'9bb69d66-9d62-43d8-bd75-6e65b41ffe8b'),
('a510a2f6-ab67-4843-82c8-8570aeda28c8','a7cd852b-1eef-47c8-9ed4-3db46b3bb735',NULL,'NAİMA BOURAJJOU - 221106888',2,'MTQ',130,0,0,NULL,NULL,'967bb071-1af8-4c06-bfd2-0cb20530dd7d'),
('a510d953-616d-4908-9e8c-0fce0675544b','6cd5b0f0-1604-46e0-8f88-f51265bf9562',NULL,'FEMİ SALİHİ - 644100790',2,'MTQ',110,0,0,NULL,NULL,'2960c047-80c3-41d4-a2b6-646498478977'),
('a5112733-e1e1-476f-a30a-2a53f81028be','9b0a647f-a2aa-42ba-91b1-4148bc3e996d',NULL,'NESİME BAĞCI - 614250408',1,'MTQ',100,0,0,NULL,NULL,'f466e52e-3646-44f8-a493-620d6580aea9'),
('a51f09d0-ec21-48e5-8e7d-aced362d4949','21f2938e-e2ef-4b56-a533-56001f4cf270',NULL,'FAZİLET ÖZÇELİK - 437232562',3.5,'MTQ',120,0,0,NULL,NULL,'e3db4a37-eb88-4141-a1ac-f9dc8586b414'),
('a536627c-1969-4d26-9892-f675bcfd43d8','7b36a44f-db7b-4639-bcdb-b6ffe68cb23b',NULL,'ESMA YILDIRIM - 478227571',1,'MTQ',100,0,0,NULL,NULL,'61fc8ab4-3763-4ab8-98a5-4b8228ba92d0'),
('a53e142d-0ae0-4052-a884-f69f67a1e93a','b4ae7a09-560b-468f-986c-f8b9f65dece2',NULL,'DİLAVER ULUTAŞ - 47836811',7,'MTQ',100,0,0,NULL,NULL,'9016d7f6-7477-4afe-9a6c-22410434be77'),
('a56a87e2-0a75-47d8-a00a-97d1128469fa','b1362a23-cf38-4945-a305-576f7691ced2',NULL,'FATİH YÜKSEL - 59878032',4.5,'MTQ',110,0,0,NULL,NULL,'383c0dfd-fe5e-4691-9b5f-187f66c80c04'),
('a56f4650-e6a7-463e-8997-cf98a515a1c6','fc2d8698-b5bf-4a87-8bdb-3448b7a3ea32',NULL,'RAUF ÇALIŞ  - 338691111',2,'MTQ',140,0,0,NULL,NULL,'0f7a8dca-9600-447a-a216-28087b5362ba'),
('a58d6409-d1e0-4efb-8c0e-981d3ebbe7c3','50724e0d-65a3-4d85-bb8b-f6fb8b936688',NULL,'SEDAT ÇİFÇİ  - 745538897',4.5,'MTQ',140,0,0,NULL,NULL,'fd6cdf42-58f9-43ac-acce-9d75b76c6d29'),
('a5a1f2b4-74fc-4b98-bf89-75f5668a65cd','3a2113e9-de2e-4eeb-b26f-3e0b531e3320',NULL,'YUSUF NAVRUZ  - 319141495',6.5,'MTQ',110,0,0,NULL,NULL,'339cd09c-c132-45d3-a7b6-80ffe5a2e8d6'),
('a5d6fed4-09d5-4d6d-914f-54022d64c408','e079e94c-3f97-488b-be66-57378c6c6a57',NULL,'MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH) - 221561968',2,'MTQ',120,0,0,NULL,NULL,'cdef52e8-4b0b-4e11-8103-ad6f65f33ebe'),
('a5f76597-dac6-4cdb-aa6f-11769beaa466','76883aa6-c7c3-4f48-a490-e8aefe68786c',NULL,'EVMOURZAEVA İMAN - 976751266',3.5,'MTQ',110,0,0,NULL,NULL,'f63ff1b9-4bf8-4f20-b9ad-8c7466498584'),
('a68ed2c0-2994-468e-aaf4-142696f233a9','d275853e-dd15-4510-83fe-b3722e1f9465',NULL,'GÜLCAN İNCE (SSH) - 338840422',2,'MTQ',120,0,0,NULL,NULL,'c59d01dd-3504-4be3-8a37-b4203d620130'),
('a6a74f33-046f-4072-abe8-4fb509bfebbc','0e59fd29-1409-4d2a-bb08-10b12ea2c8f6',NULL,' MAHMUD YUSUF ÖKDEM(SSH) - 127945692',2,'MTQ',110,0,0,NULL,NULL,'1ec0ce5d-771e-4436-84c6-caea3a7da2de'),
('a6f68a74-efcd-49e5-9b55-e0474af99614','349adb35-c8d8-43f9-82e1-9fd9f5e8caa3',NULL,'AHMAD ALHASAN - 100799933',4.5,'MTQ',110,0,0,NULL,NULL,'35aa85df-7aef-4067-ae33-117a3bc2dd18'),
('a6ffdf1e-4bef-42da-a9b9-3ce2a39fb55c','e32f4e84-84b7-43db-b5a1-24647bbda924',NULL,'AYHAN TÜRKMEN - 027527659',1,'MTQ',0,0,0,NULL,NULL,'25b7b1d6-4d63-45b9-8031-fabd67fcd516'),
('a71522f9-e4eb-4007-bf54-03b8cd28c8bc','3a1b8f72-a236-42f0-b9dd-d529fd5cb163',NULL,'AYLİN GÜNGÖR - 663458477',2,'MTQ',0,0,0,NULL,NULL,'ec8233a9-2b02-4431-9da9-7ebee3a93ae2'),
('a71a1467-bf16-43af-add6-12b3a5519b4e','85a8729a-c681-41f3-a6ef-f84eb4855e5e',NULL,'OMAR AHMEDİ  - 44998008',4,'MTQ',100,0,0,NULL,NULL,'ae4be566-d149-4887-b3bd-f5c96537b47b'),
('a7460edf-9c96-4bd8-99ca-f2f0910578e9','c8a350b7-27e1-4f9a-8b2b-d7fcd129c4ad',NULL,'MOWO - 412846685',2,'MTQ',0,0,0,NULL,NULL,'5716aae4-8f4b-48b9-96d5-193f5c4795d6'),
('a7c2e9b4-455f-4f45-9cf4-1ea91e8f0819','6d0529d7-98c0-4333-8364-3088a5f607c4',NULL,'SADOUN ABDELKADİR - 221804377',2,'MTQ',120,0,0,NULL,NULL,'82f2dc1e-58cf-4fd0-9936-e9927dc016f0'),
('a7d64713-bd0b-49c0-8c1f-71ee1a064a7c','022dae2b-6f5f-46da-b66f-db13298edabf',NULL,'BOLL TRADE - 412173308',2,'MTQ',0,0,0,NULL,NULL,'503d054f-153e-4dba-9be1-a45ec1b52abe'),
('a7f01f64-1aa2-4ba7-86ec-9de4f4a05a78','dbd09574-df42-4ed8-9fbc-f04a551e567c',NULL,'ÖMER SOLAK - 27829651',3.5,'MTQ',120,0,0,NULL,NULL,'140cb0d6-0404-46c4-b441-c9fa8beea92c'),
('a80085fa-a961-497a-8c26-05e69219b41a','5a43bbc2-e61b-4333-97a2-15f21a7c5290',NULL,'MERAL KELES - 675890872',2,'MTQ',120,0,0,NULL,NULL,'f39c59eb-6753-46e7-ad11-8f7fba3db577'),
('a801549b-86b1-46d2-b79a-4b5bf6ff17ee','84b52d10-bd34-46f2-b7d6-147d27d3a60d',NULL,'ELİF GABEL  - 982536674',2,'MTQ',140,0,0,NULL,NULL,'2be6b904-2905-4e27-ab5f-58e66f9487ff'),
('a8018312-b626-451e-9e9c-a99a83bf4aaa','a008955f-353c-4ca4-8ce9-964140b2795a',NULL,'SEVİM KARATEKE  - 613528305',2,'MTQ',110,0,0,NULL,NULL,'9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17'),
('a8097c6b-0aa1-4676-bfec-baf3bcb56b4b','75223950-2f88-412e-ab9a-773528fb9544',NULL,'FLORENTİNA - 126561228',3.5,'MTQ',140,0,0,NULL,NULL,'a7ceae08-20bd-4e39-8c9a-4d086845bcaa'),
('a81c6ee0-0788-4179-bf6a-9dff3fa338e2','f44f8826-eaf5-4c78-84af-b357826e9fc3',NULL,'ULAŞ YILDIZ - 428602278',9,'MTQ',140,0,0,NULL,NULL,'8f38f94a-f9de-478d-9d69-21faf6e91db1'),
('a8869ff6-ae77-40cf-bb52-ce003d33d738','25113ccb-6f71-4766-a08f-4f31a8d8608c',NULL,'BİRSEN KARADAVUT - 478403352',2,'MTQ',105,0,0,NULL,NULL,'b006cc45-9807-4678-89ca-491086a75064'),
('a8a6d8f9-6f2b-47d6-ada9-1ff0e80a0914','eddcc736-bbbb-42ce-b151-3effa8a46120',NULL,'EDİ - 412384414',2,'MTQ',0,0,0,NULL,NULL,'2b1bc1e0-6a49-4e87-af0e-9acd36639f9f'),
('a8b288c9-a9d4-466e-9898-b7846d114c52','764dfbba-5a23-4531-9b5b-753295d9d968',NULL,'BERFİN HALİS ŞENGÜL - 910572875',3.5,'MTQ',110,0,0,NULL,NULL,'197eebba-bc46-492a-86c8-87638b86150d'),
('a8e50e2f-3e39-49f5-94a0-91d6bdff6bda','cd222411-c6b5-4c10-bd9c-e36d603f9e4b',NULL,'MERYEMA TEKİN - 478322325',10,'MTQ',120,0,0,NULL,NULL,'7d5e9833-8a69-43a6-8c18-775c82287e7a'),
('a8f29350-379a-413c-992f-9ac471483c5e','81f4d91a-8b16-4811-b596-1b5bbe7daa1c',NULL,'YALÇIN - 735553146',1,'MTQ',0,0,0,NULL,NULL,'eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5'),
('a902ab3a-bbd5-4786-93d6-b72793f0e32c','455884a5-cfc9-46d4-aaff-e435cd0458cd',NULL,'TÜRKAN ÖZER - 531983278',5,'MTQ',120,0,0,NULL,NULL,'516dfaaa-e378-4999-b13f-ef0839711334'),
('a90dbb25-6409-4e52-912d-9891d40be41e','c27ddc3c-e6b5-4b02-a03a-06a04dae9e2d',NULL,'DAVUT KAYHAN  - 517887763',5.5,'MTQ',120,0,0,NULL,NULL,'16c1502b-604e-4738-a2f1-13c522febb96'),
('a90fb165-4ad0-441f-97f8-4c26f2410c49','60c4fa31-af93-4922-9f36-2038eda74a84',NULL,'MUKUNGU KULEMFUKA - 449193323',1,'MTQ',0,0,0,NULL,NULL,'f50e308b-4ed8-4046-a377-c601e8b36d2d'),
('a91aecf1-1640-4946-b7bd-cbd3b67e9960','9b892e03-f947-417e-8488-bdf9c12548df',NULL,'BERKAN AĞIRMAN - 910899167',2,'MTQ',110,0,0,NULL,NULL,'fb6d94c6-dc73-470f-92ac-fd4950b9d25a'),
('a93accf7-c089-41b0-9bdd-895a199b91a8','33c7b3ae-5311-4f58-b112-2a2cb686b080',NULL,'NAFİLE HANIM - 976543269',12,'MTQ',110,0,0,NULL,NULL,'f97838bf-6f9a-497c-88e0-36e7f07964ff'),
('a93b9625-ee0c-4249-94b0-8d1893dc3cbf','25a27eb8-aaf9-49a6-a08e-a3c9d410386b',NULL,'ZOE BACHTOLD - 449644504',9,'MTQ',140,0,0,NULL,NULL,'5c020160-b2d9-48d6-a019-7718647a1ff3'),
('a93ce769-ccd0-4429-a0e5-4403f0aa48f7','bbda9554-c715-43b4-a0b6-08434178baeb',NULL,'YUSUF TÜRKGELDİ - 478537954',4,'MTQ',120,0,0,NULL,NULL,'0afc84bf-0fec-469c-b4e4-09a7be452c9c'),
('a957f67a-7c32-4174-9482-30ae1807176b','20022e97-75f7-4cfd-9d17-a6a14995a3b4',NULL,'MOONBEAM HOME - 412284149',4,'MTQ',0,0,0,NULL,NULL,'c16f579e-010b-42d8-95dd-f1b7b1f32859'),
('a96f4b29-a48b-4fb4-8dd6-50fddffce491','1ee79c69-5e86-45ab-bedd-a905b93cc489',NULL,'MEHMET BATMAZ  - 465194627',2,'MTQ',110,0,0,NULL,NULL,'66702713-08d3-4a3a-bbf4-b641e0b48916'),
('a98d7984-8625-4561-bf41-f23c5fc4b365','3a014684-db12-4d8e-ae3b-9b23d07b338b',NULL,'MAHMUT KAHRAMAN - 412109820',2,'MTQ',0,0,0,NULL,NULL,'d88b92e7-f9dc-4987-9027-18aca7f5c2c1'),
('a9cf7bd1-52e0-47ff-bf79-97933ec734a2','ca02cd4e-098c-48a8-8f4e-9de2643bb7e7',NULL,'BURAK YAKUT - 644975430',3,'MTQ',120,0,0,NULL,NULL,'da2f0aa5-ea25-4793-a24c-76f3940dd114'),
('a9e6c90e-8fcb-4f12-ae29-a89e4a1bf817','e52a2bfe-da3d-442b-a9d4-ee5111771334',NULL,'İRFAN MUTLU - 614390628',4.5,'MTQ',100,0,0,NULL,NULL,'e1bb043d-37c4-4f82-9935-600eeef13a23'),
('a9f76142-20b1-4561-953e-42758849bbfc','17fe8da7-6cb0-443b-81ee-3db11136509a',NULL,'OKAN ERTÜRK - 735233033',3.5,'MTQ',0,0,0,NULL,NULL,'ad6e0801-e463-45ff-8ac4-917337b9aa53'),
('aa227c33-2c27-4950-a72a-304ad3ea4437','1d249a3b-bc31-4e40-b086-db092cb2753c',NULL,'ESME GÜNEŞ - 437256638',2,'MTQ',110,0,0,NULL,NULL,'999f9b3b-86d9-4db6-8455-c7f828dbacab'),
('aa38f740-2448-49e5-b767-776b1a52b7be','bf5e95c8-3e14-4a53-b847-940c2b0428cb',NULL,'GÜLCAN İNCE - 33850305',8,'MTQ',120,0,0,NULL,NULL,'74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0'),
('aa74b231-6588-4f4f-a5b9-49deda6ed2ca','7c3fac5c-b737-4163-a2f6-cb4a6142284b',NULL,'ANIL ÇOKBİLİR - 644584641',2,'MTQ',110,0,0,NULL,NULL,'524f025c-b247-483b-ae98-d4e6c7b69249'),
('aa84b712-31e6-4e1a-ba84-3880e66782be','e0e897ef-cc10-4269-b30e-df6b7b0685f6',NULL,'SEMİH AYDIN - 046487702',16,'MTQ',130,0,0,NULL,NULL,'2f1cee80-98e2-4491-8790-84b0795e2440'),
('aa8f0e62-5304-4175-84d7-47803f1517a6','3ec0f53d-c4a4-4558-b4fe-6f473189e48f',NULL,'FARUK YÜCEL - 478867058',6,'MTQ',130,0,0,NULL,NULL,'f3dbda61-0901-46aa-93b6-d65e972a472d'),
('aa9965f8-fd56-4237-b459-94ecc1936e85','fe581321-cd6d-4039-bffd-96abb466661c',NULL,'MAİL BOXES ETC - 223379282',2,'MTQ',0,0,0,NULL,NULL,'0a76a60a-33b8-43ca-a666-e1704b2975e3'),
('aac5315e-3d7c-44c4-9d72-8705394296e4','45c3a203-00b4-4783-958c-012f5a247654',NULL,'PINAR BARUTÇU - 614813890',4,'MTQ',100,0,0,NULL,NULL,'a97d7c55-7024-4e97-872e-5931f2242e1e'),
('aadc48b6-1c3a-4ecb-85c8-ada92db16e2c','68ab4689-64c0-46b8-a3a5-841d023a4edc',NULL,'HANEFİ ALİOĞLU - 501667618',7,'MTQ',100,0,0,NULL,NULL,'850c1c4c-b08c-4669-954f-2e95f85d66d8'),
('aaf7402a-77ab-4f1c-9975-b6b11fa795cf','16a0f325-2e5d-418b-b063-7effae718f07',NULL,'SİBEL ÇINAR - 428736949',4.5,'MTQ',110,0,0,NULL,NULL,'7b8429d0-1c7f-489c-9ed5-1fd61d831270'),
('ab0c0360-e5b9-4e6b-989f-0b1541591ad1','89010b71-f744-43a6-bea7-75e6734c9521',NULL,'CAN ILKAY IBOV - 221225501',2.5,'MTQ',110,0,0,NULL,NULL,'fa91f296-36f9-43f0-8480-dce4f2f7ed4b'),
('ab143f98-727d-45bd-87ec-3e4da09a894a','250798c7-50f4-4a79-aa7b-22151332e974',NULL,'Meliha yüksek - 319458159',5.5,'MTQ',110,0,0,NULL,NULL,'29175f89-ad14-442c-b1fb-71c9053ba227'),
('ab669c4f-ece8-4179-8c2e-80304f9b084d','a5588f29-8b87-4842-8238-03291771ce07',NULL,'RASHİD FECİANE - 449823745',3.5,'MTQ',110,0,0,NULL,NULL,'582bd0ee-3bef-4bc8-9243-917189827f95'),
('aba6d6bd-94b3-4817-8e5a-9e1aacf818a0','6387155c-d418-404f-93d1-fb0afa62e27a',NULL,'NEGİN EHSANİFARD - 644206771',5.5,'MTQ',110,0,0,NULL,NULL,'af3c24bb-f60e-414f-9ee5-8ecc68adbfff'),
('abae328a-ed5f-45e0-a368-13b967b38cba','fa2d1b8a-6837-46cf-b8d2-8cb5ac8a55a3',NULL,'ERKAN KARAKUŞ  - 248614567',4.5,'MTQ',0,0,0,NULL,NULL,'a5221ddb-40ec-42e7-8be1-4f0a5fd4c354'),
('abc2597f-e2bd-412b-9f71-5ac3810f23b6','70fb73ff-b085-4b69-8a4d-06c2b098b60d',NULL,'TUNCAY KOÇOĞLU - 465782662',2,'MTQ',110,0,0,NULL,NULL,'c9db2c84-8a43-43ee-8421-833b9835be84'),
('abc85e7b-7dc0-4da8-aff3-080b8353e512','40045650-1f6d-4776-9a9f-75c938188568',NULL,'MERT ÇİÇEK - 598954734',7.5,'MTQ',110,0,0,NULL,NULL,'1bb074a3-ddf3-432d-9ee8-e36060092ef8'),
('abcd8497-b0d7-4bd9-a583-60944fb1f9e4','5eca54b9-6ead-4061-8073-2f0cd8dc8346',NULL,'RWWHİKA KATUSABE  - 982484679',3.5,'MTQ',0,0,0,NULL,NULL,'f32513e0-8eeb-4eff-b7e0-6c1734713bae'),
('abd458db-d917-468c-a87b-a398d1270fdb','044a8626-e764-427a-b51b-e4bc29f8abf2',NULL,'CAVİT  - 412129107',12,'MTQ',0,0,0,NULL,NULL,'6bbedfc9-507d-41d1-9473-1eea989ff050'),
('abf31beb-e8f3-4e5e-ad2e-d6dbab4f8d29','73549dbe-cc9c-4a31-9f13-9fe7e5f6e304',NULL,'HAYATİ ELBİR - 745536465',2,'MTQ',105,0,0,NULL,NULL,'045d42d0-3ff6-4046-b437-9e4080f515c5'),
('ac0f2a24-74b4-4bed-b71e-65cf4cae7f43','951e7b0f-3c90-4b31-9c27-8e02a36d898c',NULL,'BEYTUK KAPLAN - 745724680',11,'MTQ',140,0,0,NULL,NULL,'9a8f0b0e-e360-4912-87e7-49eaffffb114'),
('ac226816-e299-4969-91c3-e73948852a4d','2ae96b3c-6e07-4f30-b8ed-49420ca56c82',NULL,'GÜLER DELİDUMAN - 221432350',3,'MTQ',110,0,0,NULL,NULL,'4fe827f7-044c-467f-84fa-f87c0fb696c4'),
('ac28a355-dc20-4166-9777-4b5537117f53','cc49a556-fe18-4ca4-874a-cb6dba8029c1',NULL,'GAMZE ŞAŞMA - 644523362',6,'MTQ',110,0,0,NULL,NULL,'0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d'),
('ac604833-9f14-4868-9eb3-15772b4f7554','4f948610-0734-4a29-b67e-03a6652cc72a',NULL,'GÜLAY FASOLD - 644820551',6.5,'MTQ',110,0,0,NULL,NULL,'bff7b018-9fd3-45fb-bd37-fd078042b359'),
('ac9c2276-3f24-41bb-8717-d865e9a0d6c5','aca4b2e0-a08c-441a-b4c0-94def406c962',NULL,'GAMZE ÇOKENGİN - 140681782',2,'MTQ',110,0,0,NULL,NULL,'fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5'),
('acbecf62-8a73-4b35-85e0-5359c15c8f80','09aecbef-40e7-4ce6-9b11-9479c2b32565',NULL,'FİKRİ GÜNEŞ - 428407424',2,'MTQ',0,0,0,NULL,NULL,'6fbc940d-f90d-4421-9557-c3c507ca66e1'),
('ad0953bd-d6a1-4029-961e-a4937ffdc8c3','016f6298-04dd-4844-a93f-86c551f41d81',NULL,'MOHAMED SAİD ZARZAURİ - 221240151',2,'MTQ',120,0,0,NULL,NULL,'9feff913-404e-4b4c-b57f-21740becbcff'),
('ad111865-efc8-469e-bd82-a8b291b5dfe3','7cd54b69-1ef0-47b1-8a95-1401a61076e6',NULL,'MEHMET SÜZEN  - 98238273',4.5,'MTQ',140,0,0,NULL,NULL,'a92b5169-963a-4b74-9857-229dbed0d9e7'),
('ad115dc2-693d-4df4-b369-f38f156d16dd','cecfd03c-e4fd-42bb-b783-de4cbbc9827e',NULL,'EURO STAR MOBEL - 107593305',1,'MTQ',100,0,0,NULL,NULL,'56934bb2-8807-472a-9265-23392c22511f'),
('ad2011f8-0128-4dff-87f0-9a2562c1fabe','eed7bf6b-b815-4f72-ac37-67e6355d9189',NULL,'EYÜP KIZILASLAN - 655919587',10.5,'MTQ',110,0,0,NULL,NULL,'88d46ad5-3201-49c1-bafb-3c271a911158'),
('ad62d998-045c-43a1-aeee-5b167fba80a0','070273f1-ec8e-4646-9caf-fdff178d52c6',NULL,'MOHAMAD SULAİMAN - 248810550',16,'MTQ',75,0,0,NULL,NULL,'34482f3d-44cb-4842-a5dc-1cad4ad4bef5'),
('ad6f9fb8-4c72-411e-8a84-500533ff5c86','e0650ed7-d531-4d11-bbd0-099b259f4262',NULL,'DÖNDÜ YÖRÜK - 644887691',2,'MTQ',110,0,0,NULL,NULL,'ad2e35a4-0708-4aa6-bb79-6b1c99a587d8'),
('ad71f8f4-6ff5-4346-af8d-de78d6e12ab8','48c6ba65-f513-4ab3-b726-a39f783801ab',NULL,'ELİF HANIM - 412871738',1,'MTQ',0,0,0,NULL,NULL,'b69ca32a-31d3-41b6-a93d-838a8d15e6d7'),
('ad9ad08a-f7dd-42f9-8a36-85e263677b1d','896c9584-b829-4ac8-928d-3c764fda1e65',NULL,'CEM OKUMUŞ - 248883377',2,'MTQ',110,0,0,NULL,NULL,'0c6e2777-797b-45ae-b55b-1a2b5ee437ac'),
('ada65263-5590-4038-adfa-37c438ed3f27','8d320a61-9596-4ee5-8710-333a8fceb942',NULL,'GÜLSÜM ÖZBAY DÜZGÜN - 910825747',10.5,'MTQ',110,0,0,NULL,NULL,'ee8c23f7-d814-4b75-882a-e96dc5bf946f'),
('adb10518-280f-4af9-8bec-d142de7120a7','bd840984-891b-4e30-872b-77fcf10289de',NULL,'LAMİA BADAOUİ - 735389141',1,'MTQ',0,0,0,NULL,NULL,'80da5b1b-534a-4c8c-96c2-bace937f5e61'),
('adb39385-a126-444a-9632-937e578c67c2','cc045912-8359-4f18-acdb-6230e8286a36',NULL,'AZAT ALKAN - 35119636',4.5,'MTQ',110,0,0,NULL,NULL,'bca77d81-68cd-453a-baac-e90e9d898da0'),
('adbfc077-76bf-4902-9e43-dd417771b23b','ea379487-ffdf-46cf-980a-5e4cbeee57f6',NULL,'AHMAD KADİ - 598102662',6,'MTQ',110,0,0,NULL,NULL,'f99fe573-182b-4663-9ef2-0b30f4db8009'),
('adeb077b-4fd3-4077-afed-b7617d23c161','90deb6eb-7484-4448-8065-f07064cc3e42',NULL,'HÜSEYİN SAYLAN - 412678735',2,'MTQ',0,0,0,NULL,NULL,'3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51'),
('ae0058aa-a27f-4189-88c7-41173ea8fcb8','598e7491-d0b6-4646-8b05-b14dc361f174',NULL,'KARAARSLAN YELİZ - 808886614',2,'MTQ',120,0,0,NULL,NULL,'a519280a-5153-4940-80b7-3e59e0747d85'),
('ae127cea-4c08-416d-bca0-19a1a8c81ea0','0e96a3a1-4c62-4ddc-b1f4-26e56e5ef57c',NULL,'GAZİ PINARBAŞI - 478125476',3.5,'MTQ',140,0,0,NULL,NULL,'73b78ebb-8c97-412a-8a1b-bd037a5153db'),
('ae2a3181-1000-4ecb-9e4b-4fc61b8c4dfa','78db344a-c6cc-4162-b6f3-1e114abf9af8',NULL,'SİHAM MAHMOUD - 598280715',8,'MTQ',110,0,0,NULL,NULL,'9e64600d-1c01-44ab-9728-6619d083385a'),
('ae3fd0bd-040d-48fb-9e81-70cdf3aa2e52','1c1b389f-0c10-4c38-9506-fca9643eb335',NULL,'YILMAZ ÇELİK - 455160997',4.5,'MTQ',110,0,0,NULL,NULL,'39bb85ad-efc0-4fc2-9377-e76f06d914ca'),
('ae649bf0-4279-41da-959d-22beee0cf886','9d624494-b7d3-472c-afd0-4803ca096f33',NULL,'DİE FABRİK OUTLET - 223249369',15,'MTQ',0,0,0,NULL,NULL,'d9271f7c-f437-4def-8584-9c15e6d3a998'),
('aec211dc-e976-4f9f-be5a-26a5cae9b308','d9df3236-943e-4a6f-b328-95957b2915d8',NULL,'HİLAL POLAT ÇELİK - 976866527',3.5,'MTQ',100,0,0,NULL,NULL,'d2edbeb4-631f-4db0-a6f7-0af31904cdba'),
('aed1c0c7-11a1-4132-a644-2600585328e4','7faf6e2b-1b02-459d-af09-013bb591f2f5',NULL,'ERTAN TOSUNER - 598454821',2.5,'MTQ',110,0,0,NULL,NULL,'7be6621d-9b68-40b3-a06b-e80341f0ae5d'),
('aeea8b0a-6d54-46a7-893e-5c440b4ea2cb','9ab9949b-32c8-4b0b-b3b9-29787cbf5198',NULL,'FURKAN BAŞTEPE - 745778561',2,'MTQ',100,0,0,NULL,NULL,'4ea10ab4-061b-4394-9937-abf14e77d39b'),
('af3e25df-c5d7-44a9-afa6-aefdaf80a59b','d86b6a5b-bbc2-4a7a-ada5-a735526af8ea',NULL,'BÜLENT KILIÇ - 817682643',5.5,'MTQ',110,0,0,NULL,NULL,'888c1a17-6ddc-4bc8-b1ab-b00d72942811'),
('af491974-d5e7-4a93-9721-9a0a342de48e','e352e661-ee2b-4738-bf0a-a488a1821d7e',NULL,'BURHAN SARIKURT - 613431273',2,'MTQ',110,0,0,NULL,NULL,'d8ea87c9-edbf-4d33-b8c2-caafc3b367d2'),
('af5eb586-c019-457d-a683-eb57dc3e7e0c','4f3d8570-8d32-4a3a-b44e-ef4422d28a5d',NULL,'GÜRKAN DAĞ  - 904863225',7.5,'MTQ',140,0,0,NULL,NULL,'92da393c-5934-4ca0-96a4-6f7b809428cc'),
('af64bd90-1a77-4021-b694-53af1cf52a9a','9a208309-1994-405a-838f-e5a0f0d6b2d3',NULL,'SERKAN SİLAN - 657785918',2,'MTQ',140,0,0,NULL,NULL,'edb235b9-3bc7-4176-bf9e-0cc3d4b4d962'),
('af679d16-535e-4d37-b54a-6843850e898e','3cb26fc9-ee21-4e8c-93f3-ec6b539d384c',NULL,'MERVE ÖZÇOBAN - 657192716',2,'MTQ',120,0,0,NULL,NULL,'564fedca-e233-4201-9160-9d65dc5da199'),
('af7dadda-4a43-43fa-99eb-1380d648b995','91478af9-2620-4672-aa83-fe3e516a672d',NULL,'SERKAN YILMAZ - 22145224',2,'MTQ',120,0,0,NULL,NULL,'9c0b1881-fd94-413c-b7b5-63b9d4d26501'),
('af818195-7405-4715-9b0a-36a1d402e62a','ec8777b5-6e8f-4175-93a3-6de3d1869400',NULL,'RUKİYE BARUT - 644626371',4,'MTQ',110,0,0,NULL,NULL,'aacfdb28-66df-4a6f-8b8d-f575a38b002b'),
('afe74a7f-522c-44d1-9c87-a0803d39844c','37ed06fc-38c1-4f3d-9a3a-3b4e8110c227',NULL,'ORHAN KURT - 817578021',7,'MTQ',110,0,0,NULL,NULL,'c8d1b4d4-fafa-4eca-9c51-b7057479fd17'),
('afe85f4d-517a-4caa-92df-873feb583a46','3134d597-d8f9-4482-8d84-50c0a9d0d88a',NULL,'FİKRET AYDIN - 745439695',4,'MTQ',110,0,0,NULL,NULL,'bf9e7e37-a303-4c99-91c8-1dc42a4c5e72'),
('afec7a9e-7c0e-4536-8152-4fb94e9eb074','7d40585d-94d9-486d-b23b-2d3ed1da7bae',NULL,'NECATİ AKIN - 31929392',2,'MTQ',130,0,0,NULL,NULL,'2b0da990-33f0-4a20-bc6f-d7e86a9688d7'),
('aff84f0a-1bf2-4182-a799-f43ce2e404b9','4c5e0e84-98f4-4f37-84f3-802c3adad96a',NULL,'RECEP ONAY  - 465313266',3,'MTQ',0,0,0,NULL,NULL,'149850c7-89eb-4248-a529-b235c5710935'),
('b00be76d-a959-43b3-b6cf-2ff09cf7c131','f827e3e8-5e5c-43cd-a8ad-44bc56146a3f',NULL,'RAHİMİ - 449445608',4.5,'MTQ',100,0,0,NULL,NULL,'72028383-f354-4335-af98-094bc771c86d'),
('b04504c3-bbd8-4be9-979d-7426d8b00438','ecfa5b6b-bd6d-4526-a039-953a9537595b',NULL,'ABDİL ACAR - 61467762',3.5,'MTQ',110,0,0,NULL,NULL,'bceef6ba-e1ee-4daa-b926-518c0bbcce5d'),
('b04ed4a2-8d36-4a1a-9298-cd3154beb622','e01f6258-f3a4-44fc-8a47-725ed6e10d9c',NULL,'MÜCAHİD GÜZEL - 22162472',3.5,'MTQ',110,0,0,NULL,NULL,'ef714645-7f38-4a84-8d4c-124593386b53'),
('b062fae9-b003-46ff-85b9-36bd8f952f5b','867aa4c6-b601-40df-90c5-0b304d599c72',NULL,'BELGİN YAĞLI		 - 910762495',5.5,'MTQ',110,0,0,NULL,NULL,'f58ff780-8d60-44ab-895e-cd1887ec2eb7'),
('b080c744-915b-43a6-ace5-10c190be18fb','ec4fef07-0c9f-4232-a19c-e87d2ec316cc',NULL,'MERYEM BERK  - 221583384',2,'MTQ',120,0,0,NULL,NULL,'c6b7a352-13a1-47fb-acd7-9c5f9910f021'),
('b09aad04-e6c1-4b1f-92e3-394b3f26bd62','a1e279a2-9ad1-45e1-863b-fd4181b399e2',NULL,'ASMA SOULTANA  - 221854185',2,'MTQ',110,0,0,NULL,NULL,'835e4364-d826-4aea-9a85-7df6a6777f74'),
('b09b7f73-a960-4079-9964-ce8ff2b6c8e7','9fd640f4-6805-4f47-846c-39ee1b02563f',NULL,'CEMİL BEY - 412119334',5,'MTQ',0,0,0,NULL,NULL,'3167a684-9120-4a08-a96f-a652ac70c76f'),
('b0b00f38-2627-4261-b634-fd6623c01019','e6a3d9bf-987d-4bea-9654-357f61e85dc2',NULL,'ERKAN  - 248974894',1,'MTQ',0,0,0,NULL,NULL,'b094bf7e-153f-4984-b737-f7bdece60165'),
('b0bc0f68-1825-4f54-847e-803ccc0bb766','b8f37d71-0408-4688-970b-5b88a10649b4',NULL,'NERGİZ YURTSEVEN - 614525681',2.5,'MTQ',110,0,0,NULL,NULL,'017c5187-ccfb-4c37-9cc6-a58640b22cda'),
('b0d1c84d-5845-464b-98b3-b89b929fd6d5','f90fb703-dccc-435d-863d-5fa2f32e1e46',NULL,'ÖZKAN BALCI - 478261585',1,'MTQ',110,0,0,NULL,NULL,'06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5'),
('b103d387-2f02-4a34-8df8-04aba40f94de','6dc5d776-5828-4b85-8956-3f465af1a027',NULL,'NURTEN MENEKŞE  - 982106314',15.5,'MTQ',140,0,0,NULL,NULL,'1372768c-0132-475f-bd20-c5373f0785ae'),
('b1070ea0-4ddf-4628-bb20-23da0c38ff5f','e9a7c50d-cadd-4b25-b3bb-01999a4f8883',NULL,'KERİM ŞENTÜRK - 644966461',5.5,'MTQ',110,0,0,NULL,NULL,'33c1702e-09af-4ac6-992c-6abbb6899f2c'),
('b1281b53-0dd4-47e6-8fca-4b4bb958898d','2abbc409-570b-45e1-a0c0-ff22b323636f',NULL,'GÖKHAN ÜLKER - 371944289',2,'MTQ',110,0,0,NULL,NULL,'ed15bdd7-b954-4a77-83a4-3809681dbb05'),
('b162116f-932e-4693-914d-434182f39a9f','512485e7-5e5b-4c8c-b28c-ca9f6a584152',NULL,'SEDA YILMAZ - 371429381',4.5,'MTQ',110,0,0,NULL,NULL,'3aef1178-e8a2-4762-a4d1-895ac16f415f'),
('b167bef4-d34b-4148-be41-13aacaf91053','2d902e3d-bcfe-4288-aad0-c27403a0f3d9',NULL,'ENGİN POSETLERDEN KALAN KUTU  - 248188933',2,'MTQ',110,0,0,NULL,NULL,'00b3b029-8596-4eeb-aa4a-7c3173126b3b'),
('b1878a5b-5849-4cf5-b206-ee63a8273b3d','66cf9681-32d0-4348-a604-3eb687695e7c',NULL,'FİLİZ DEĞER - 371655670',2,'MTQ',110,0,0,NULL,NULL,'b8e1c5ea-37ab-4a88-bf6e-66220eac77ff'),
('b18dfbde-f019-4b99-b855-06d198413d96','8c7b51f6-77ff-42b3-810a-9d8570753bdb',NULL,'YETKİN TOKER - 478120731',2,'MTQ',105,0,0,NULL,NULL,'71ea314b-7a45-4dd6-ac6a-722d8715f15e'),
('b1a44885-cafa-4ff2-9fc7-0fc9c524694f','66705312-9063-4079-9ec3-ad9be1b96e11',NULL,'ŞENOL AKKOYUN - 644535273',3,'MTQ',110,0,0,NULL,NULL,'98bda885-fe47-4716-8e4c-6ea1a95114e8'),
('b1aeae9c-d9af-42ac-9110-d810b25e46cb','db7a6bd5-ff39-48ec-a52c-6765d6a0cf33',NULL,'AKKİZ TOPCU - 515129438',3,'MTQ',120,0,0,NULL,NULL,'f4f40ee4-217b-42da-be20-ab73e6a72821'),
('b1c61132-b2dc-4d7b-a92b-dc9c92eef0fb','f454e4c8-c73f-4fb4-976b-c0a12a8c0385',NULL,' NARİN ABDİ - 081581964',3.5,'MTQ',110,0,0,NULL,NULL,'068f2f26-67fb-4542-8cbf-cb81478c317b'),
('b1cdd3f3-876e-426c-a23a-d704137d0367','42573958-54e2-43e6-9edc-1f18a2e23f67',NULL,'NADİYE ÇAVUŞ - 644200718',6,'MTQ',110,0,0,NULL,NULL,'0a266acf-5707-4e27-8a72-fd079a3c1ee6'),
('b1e8bfaa-afec-433d-8599-2749e5ad13c0','9c6df7e4-6f4b-485a-a298-82514184a0c1',NULL,'SALİHA ŞERİF - 221651438',2.5,'MTQ',120,0,0,NULL,NULL,'0ca39cb3-cb01-4190-946c-6ebea8eb1b68'),
('b20ca081-4c98-414e-a9c5-1f96c3c481a9','5e9fbd33-ee63-4524-8092-f68b8a85f80c',NULL,'KATRİN MESİNGER - 896847151',2,'MTQ',110,0,0,NULL,NULL,'1f7b65a0-1a7c-4441-b49f-65934040cb94'),
('b21963d7-0d89-4931-babe-5aa7b216d42a','68e91717-ca5d-4ff2-922f-ecca40d1cc37',NULL,'ZEYNEP CİHANGİR - 478623446',2,'MTQ',105,0,0,NULL,NULL,'0a8f1755-81d7-48cb-888e-f50eb6ea01e8'),
('b2300661-a7d4-44d8-8e5a-2bdf964e139e','0d535c28-e1b0-4ddf-b929-ca13e1276f94',NULL,'MERT ALİ YÖNTEM - 203151723',4.5,'MTQ',110,0,0,NULL,NULL,'a4b0544f-8781-4cb5-97b8-539cc674a28c'),
('b233898b-7098-4843-a794-2d472457096b','d57bb7f0-ea66-4b3f-b14c-c1ec9f50c17b',NULL,'GÜNGÖR SAK - 614901187',3.5,'MTQ',110,0,0,NULL,NULL,'086387ea-e6c3-4408-a3fe-99b5b7b6a381'),
('b250a010-3d71-4bcc-8aa9-31c8a4ae99ef','46e563ce-61fe-4bd3-a608-53748291c6ba',NULL,'(K)SİNEM İDRİZAJ  - 644880161',4.5,'MTQ',110,0,0,NULL,NULL,'3dc2cba9-0647-4ca4-9fa8-0d67554d850a'),
('b25a3b35-387e-4d24-b0cf-c4085673962b','0ac13369-60cf-4a05-83ad-b39930ad88b4',NULL,'MİTHRA EKHLAS - 371665790',2,'MTQ',120,0,0,NULL,NULL,'4fcbc651-ced6-4837-a3cf-17f82d36dabe'),
('b27980c9-b152-4553-92cf-a40a905b2f9a','94e3e4bc-0199-409f-8a0a-4522f9b15c71',NULL,'SÜLEYMAN BOZAN - 478406590',2,'MTQ',130,0,0,NULL,NULL,'b2b86e6d-e570-4c38-ac25-e910c71c1e2f'),
('b27dd0b5-9660-4146-9319-a1a28f9a6989','dfaa7d27-2fca-412c-a0a9-a855942d3c49',NULL,'İLYAS KAHRİMAN - 745799900',1,'MTQ',100,0,0,NULL,NULL,'c75ecccb-cdd2-4eca-b15e-6750a3df26e6'),
('b283b531-38b4-40f7-bf8d-f696a8bb90d2','dce62030-b2f6-4e92-8e0d-c0afaeb27c9a',NULL,'BOUSLİMAİN ECHOUAK - 982868918',4,'MTQ',110,0,0,NULL,NULL,'24096b71-5b5e-4da8-9191-8e3168102053'),
('b283d0da-be7a-41c4-9866-fcd8b5fb5720','c9945f87-ba81-4a91-b038-529470567395',NULL,'REİNAS HAİDARİ SSH - 644490677',2,'MTQ',120,0,0,NULL,NULL,'5fe39fcd-c517-4068-9edd-0a87a35acb0f'),
('b29fb6e5-1ee1-4d1a-a310-0da1a40bbf68','deef2643-31b6-4bd1-86fb-094605b72604',NULL,'Arif ağca - 449837324',2.5,'MTQ',0,0,0,NULL,NULL,'6be99b5d-41a3-4b9e-a67f-f951b7f620ed'),
('b2aaa64c-91c5-4c37-af4c-99d3ae035291','f67bcbfd-75fd-485e-a2f3-7657d6d132e3',NULL,'TUĞBA GÜLSEVEN - 64434778',2,'MTQ',110,0,0,NULL,NULL,'edc25440-29b7-4bf7-9e12-91c088a94762'),
('b2b006f5-5f96-4e43-ba66-37637f681d51','f5b92e03-4e23-471f-9beb-3faea3668cfc',NULL,'İHSAN KEPİR - 412378459',2,'MTQ',0,0,0,NULL,NULL,'bed8b1f7-85e7-41e8-b669-6360ddf5b5ca'),
('b2beeda4-f7a7-42ec-aa80-5dca4a28c691','3ac6ea3a-4221-4e33-a678-184fddb505dd',NULL,'KAYA BEY - 858854212',1,'MTQ',200,0,0,NULL,NULL,'b67594be-f958-4225-900b-19c5f6be08ce'),
('b2c9ee31-7ee6-4df9-806d-61a3307fa945','1e75dd0c-94f2-4dca-bf00-194fe5a44bda',NULL,'DİLAN ÜNVER - 437584936',9.5,'MTQ',120,0,0,NULL,NULL,'361c79f6-d2f7-4391-a551-aeba4ac518de'),
('b2ca8c13-6af7-4a02-b245-703cbd9e3e5e','8bcb91eb-6f7d-4bf3-b808-98ed41be69db',NULL,' - 248450889',1,'MTQ',0,0,0,NULL,NULL,'87929b1a-65a1-4766-84ad-495ee7ffcb70'),
('b2dfbbdb-48d0-419b-bb79-28989bc2bd3d','d065d4e7-3ae6-45bb-86a2-0c73216a4caf',NULL,'SONER UZUN - 976680764',9,'MTQ',110,0,0,NULL,NULL,'142a82ad-defd-462a-a877-e872e40354a3'),
('b2eb4279-1ee3-478f-abe9-5f6c52ad41cb','c677fd51-01ce-43c1-ae27-be0e4185a50a',NULL,'ATİLLA GÖNÜLTAŞ - 268615271',2,'MTQ',130,0,0,NULL,NULL,'0527ee67-fe4f-4982-b162-501d694f6d0e'),
('b2f95d2b-f9d5-4f21-8e32-18d5d6b25736','39086541-f815-4c78-89d4-db1181fa8870',NULL,'ÜMİT MORCA - 644377995',6,'MTQ',120,0,0,NULL,NULL,'273c83bb-2405-453b-8f32-a6fd281b21a7'),
('b3161066-cbff-4f73-804b-3a2692f619da','722ff4ba-5732-4440-9fe2-423a2589a0e6',NULL,'HÜLYA KÜTÜK - 268262151',3.5,'MTQ',130,0,0,NULL,NULL,'499cda13-5036-44b3-a782-3aa5247b7b44'),
('b33ba4cd-a6b3-48e9-a50b-b163cac7ec21','749d155f-0645-4587-8bd6-401cb24af93a',NULL,'TAHSİN AKSOY - 644716997',2,'MTQ',120,0,0,NULL,NULL,'e82d9e2c-30a8-45ae-9d88-e3e83c923e9a'),
('b34bf685-e5d1-47f7-ba5c-0b83d1faaeba','2438c6b7-ffea-4550-b50d-634b9354bace',NULL,'İSMAİL ÖZAY  - 745423192',2,'MTQ',140,0,0,NULL,NULL,'71bc85dd-ef9e-4b79-a825-feb4851a5ac5'),
('b3b03118-b253-4613-9eeb-de915424bbbb','54d6c712-3107-427d-853f-f27245e3fb99',NULL,'DİANA MUJKİC - 371529841',2,'MTQ',120,0,0,NULL,NULL,'da4d99db-af56-4362-a1e7-d972dc6e8b1a'),
('b3bbf9cf-5b6a-4c92-9c4f-6914cf4fedcc','5dabf294-d7ab-422c-b291-62bc32aee268',NULL,'İBRAHİM BULUT - 73570714',1,'MTQ',0,0,0,NULL,NULL,'3e41715f-3ab6-49c2-82c0-0d29a29b4a56'),
('b3beb438-355a-4b1f-b366-2c55246c642f','57e901aa-de61-44a5-a4fd-4993e20cf5a0',NULL,'TUNAY KOCATÜRK - 644196383',5.5,'MTQ',110,0,0,NULL,NULL,'dcf208dc-cd3f-4596-9430-d35849bbc2f6'),
('b3c3dde1-65bf-4db1-a0b1-7d9560c0317e','b8533308-afb3-41a7-88ce-af498103b6dc',NULL,'FAREDİN BAJRAMİ - 248363931',1,'MTQ',0,0,0,NULL,NULL,'cebebeee-0bad-4139-9847-7d88c79fbf91'),
('b3cde355-6061-4eaf-9158-349fcf0f5280','2a5771c3-f0fa-4e82-8e68-ceb1fa793926',NULL,'HAKAN ŞİMŞEK - 47889024',1,'MTQ',140,0,0,NULL,NULL,'57e894a7-068e-465a-bc70-3b4e9860cee5'),
('b3d31547-5997-41ab-9196-5d926092157d','a66e7f6a-a2f7-4a4b-8667-b8865a397a3f',NULL,'ÜMMÜGÜLSÜM KARAKUŞ SSH  - 745967323',2,'MTQ',105,0,0,NULL,NULL,'cefb457d-b590-4671-9309-7f0658b9b20e'),
('b3eb0339-36a5-43ff-9acb-f322edb71fa1','b39f9742-79b6-49c7-8e7f-44385afd8fd8',NULL,'ELİZA KADRİ - 786895232',2.5,'MTQ',140,0,0,NULL,NULL,'edee589c-8584-4bae-8e91-900078074c09'),
('b441ee8c-c1d8-4e8f-add6-d6051759824e','96cbd7d9-48ec-48b1-bc9c-199bf9c6ffa4',NULL,'JASSEY COLİNE - 221190454',2.5,'MTQ',120,0,0,NULL,NULL,'96fd2ec1-bc18-4e5c-aa54-b63b621f826c'),
('b45536fe-9194-47cb-8434-9571984f149b','5fa5688d-c678-4a70-ad81-80f28f9fd71b',NULL,'AYLA BAYKAL - 644606140',6,'MTQ',110,0,0,NULL,NULL,'da5cde0e-df59-488c-af62-13b113156c25'),
('b47b916e-bab8-4de8-9e8a-47b3f568a374','64991e44-103c-46de-aa8b-5e69599bc604',NULL,'AYHAN AKTAŞ  - 982685222',6,'MTQ',140,0,0,NULL,NULL,'2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37'),
('b4feb0c2-8511-4e26-8924-f47022f30b3d','894fff67-397f-4a16-857c-fe38031acceb',NULL,'HARUN YILDIRIM - 657782',2,'MTQ',120,0,0,NULL,NULL,'410bd7e1-97fe-4832-9494-5d11b92da461'),
('b51000ef-b890-4598-af9e-d7c8ff3b12b1','398291ec-4e29-4bc8-96fe-7e4ea74bc503',NULL,'MURAT - 412586892',7,'MTQ',0,0,0,NULL,NULL,'c9bfdd67-9310-4f2a-9ce9-8d28690b4937'),
('b51110c7-99dc-4a8a-a641-1e7204c05a19','292b71e1-308c-4bb4-b473-744262b14c85',NULL,'LALE AKGÜL - 371533444',3.5,'MTQ',110,0,0,NULL,NULL,'509ec2fa-23ec-4576-8840-d2ebdd3ca734'),
('b527e794-f45a-426b-8fe2-8d308a02f257','803b32f6-7ee1-4142-bbe4-a6cd1525da94',NULL,'RAMAZAN KAYHAN SSH - 478885112',2,'MTQ',105,0,0,NULL,NULL,'75b514ad-164b-4680-8bcb-d21353d39504'),
('b5354c91-f52b-4ed4-8673-e9dc0e23bb1f','5582b4dd-a8bb-47df-b292-f4518d510608',NULL,'MESUT-ŞENOL - 412206514',2,'MTQ',0,0,0,NULL,NULL,'50ac71ad-f352-4f3f-9611-9447396e01a3'),
('b53d52db-afa4-482e-be44-e3d8155d1e92','5462bcf2-bf5f-4307-a41e-ab4de244f601',NULL,'ÇAĞLAR - 72247088',2,'MTQ',0,0,0,NULL,NULL,'2afcf460-a080-4273-8901-46e80d97fa18'),
('b55375dc-7c5e-4c2a-a6fa-cc485cf167a1','decaa291-f9a9-4327-99a3-9501a1397635',NULL,'ESRA MAT(K) - 644484322',2,'MTQ',110,0,0,NULL,NULL,'c2d80ea2-bf32-4dd3-96fc-6c76b77ae583'),
('b59f7243-b1f8-4994-85ef-0eb93989623c','0258a85a-5637-4036-aa72-7ef7ffdfe090',NULL,'OKAY DERİNKUYU - 478402358',2,'MTQ',140,0,0,NULL,NULL,'be61ae08-268e-417d-9e86-940a675647f2'),
('b602073e-24ba-4b7a-9634-021fb7049eb6','bf42b18d-4e10-4fda-9389-5de0cef981f2',NULL,'MEHMET ALİ ÇAKIROĞLU  - 223744518',2,'MTQ',100,0,0,NULL,NULL,'1f667c31-0a45-4450-be98-281039258085'),
('b649f207-380e-46ec-a646-5262b307b4f0','14c152b5-601d-4f28-a206-1fb89f5f08ec',NULL,'ÇİLEM KAYNI - 61428079',8,'MTQ',100,0,0,NULL,NULL,'a259ef7e-4720-40a6-a012-5f10d15b9067'),
('b66535f1-58bb-472a-8c87-b15461dfacd2','94ed55ad-6c8d-4523-9dd0-4dc47ff06f8a',NULL,'BİLAL KIZILIRMAK - 371155650',3.5,'MTQ',110,0,0,NULL,NULL,'0f896043-41f5-4e03-93cf-693eadfeb3c2'),
('b692e869-b284-4673-bdb9-708e0ba87f2f','6e9d731e-0970-483e-aae2-7509d578ddd8',NULL,'ZEHRA ÜNAL - 598320188',10.5,'MTQ',140,0,0,NULL,NULL,'6e979cb9-141a-43d7-a38c-362246b8f5a8'),
('b6a4e988-1541-4283-80b5-a1b8fdcebdb8','6f719b18-564c-436c-916f-daf1a3e1ad2c',NULL,'MUARREM NAİR - 616254479',7,'MTQ',140,0,0,NULL,NULL,'5b410819-0339-4c69-a500-825f92b681a3'),
('b6ef7164-0bbb-43ac-8da8-809ff98db715','8431ed4b-582e-4b12-9a0a-2522fc742875',NULL,'SEVDA GÜMÜŞBOĞA - 478712498',4,'MTQ',100,0,0,NULL,NULL,'ae9f7d11-5a84-4522-aea1-889eadc47453'),
('b6fc3f50-2853-44b7-a853-05fff36c0935','4c02d81b-893d-4d1c-a688-e48c9fe148c0',NULL,' - 248746135',3.5,'MTQ',0,0,0,NULL,NULL,'8b8f439c-2dbf-40f1-a946-d37ea9c4566f'),
('b6ffc07f-eb17-4244-b616-5e89b299c4ae','8572ae79-371f-4860-abfe-9d113a3ead13',NULL,'HAVVA GÜL - 976530579',4.5,'MTQ',130,0,0,NULL,NULL,'6e0be5a1-e68c-498b-aab1-17f032d29cb5'),
('b716761a-1301-4909-ba70-94269662cb05','48a679ce-98f8-48e9-8c42-3e812a9172ca',NULL,'YAKUP KOÇOĞLU - 910778068',2,'MTQ',130,0,0,NULL,NULL,'6de127b7-5d6f-49c5-bd23-1ab403d220de'),
('b71d7add-4df7-4b99-b9a4-979e1a9b4014','53b2be9b-58ce-4618-b7c7-205bfee6c873',NULL,'KAMBERALİ SAİTİ  - 98272804',1,'MTQ',140,0,0,NULL,NULL,'a57bc9c8-fe89-4ea5-a536-9bb73d9abc0f'),
('b72f9815-6d05-4c83-b399-ccb4f1d4ee7a','77ed0afa-fe34-4633-85d9-64a783b21a3b',NULL,'HASAN ÇALIK  - 982720250',5,'MTQ',140,0,0,NULL,NULL,'c90b2d7e-0b7d-4a03-b820-37ab49d6ef31'),
('b752115b-81f4-4552-8de2-2564793bd5a0','914daece-1604-4731-bd3c-802f72820b11',NULL,'AYLİN MİYANYEDİ - 598444930',2.5,'MTQ',110,0,0,NULL,NULL,'5e292f87-77b6-4b9a-bc20-8032bd3242f2'),
('b76c447b-9794-4c47-915d-592485f3a3e8','17bf20b2-7e2c-4ca4-a5e6-934be1030687',NULL,'YAVUZ TEK - 734391005',4,'MTQ',96,0,0,NULL,NULL,'6127835e-b380-4636-8fc5-dc785fc26f6a'),
('b78aa39e-6190-495c-9758-baf69aa7c03f','2857eaca-113b-48ac-8fcb-47452e1c665e',NULL,'birsat melake  - 982639053',1,'MTQ',140,0,0,NULL,NULL,'f063cb46-f6be-4212-a6d8-9be7624bb39d'),
('b78c51d9-223e-4781-a361-0be6ca53bb7b','5b8e2095-6d07-4b4f-9e0c-c8b67aaf6027',NULL,'ŞULE ÇAYIR  - 765501651',7,'MTQ',120,0,0,NULL,NULL,'6b308538-0db0-403f-a33f-bc50bf381bb6'),
('b7b28e83-d1f8-47b0-b432-0968a08884d8','c304e531-ca55-4875-9de6-6d7c0ea2820b',NULL,'DOBREA NİCOLETA SSH - 437132386',2,'MTQ',120,0,0,NULL,NULL,'2b90a4bf-839a-4804-abdc-8987ed2eec85'),
('b7d0acb0-d9fd-4c95-a7b1-b567653cba77','04d7d2a6-c36b-4300-830e-b49e294bf72a',NULL,'BERKANT - 412252365',2,'MTQ',0,0,0,NULL,NULL,'1657f433-204b-4d15-aff8-0ea67bb24e0c'),
('b7d8ce28-f97c-4f75-9ba8-ec6fa2a95dc6','0c271fd3-f8c4-4d40-a0ac-120c9464f70e',NULL,'MUHAMMED ALİ YILMAZ  - 221294149',2,'MTQ',110,0,0,NULL,NULL,'d921e4e9-196f-4ba6-beeb-e5aafb5c80ee'),
('b7ea1263-09d3-457c-a868-d9abc25d0bfa','94316fb4-89ea-4c40-a6ee-15a9cc7993f7',NULL,'CELAL - 100605954',3,'MTQ',140,0,0,NULL,NULL,'a3560d76-087f-40a9-8bed-913dfa8f5663'),
('b7f623ec-61a0-4e06-a8b4-9ff74029f12b','96a6ac76-1a88-4c7b-8fa3-f051f4862f90',NULL,'SEMA KUZULUK SSH - 644635640',2,'MTQ',110,0,0,NULL,NULL,'b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3'),
('b803ae2a-5a19-45cd-8fc3-5518d317da6c','9baa1c38-a815-41ac-9d1b-ef2d10390086',NULL,'NESLİHAN CAN - 437940825',2,'MTQ',140,0,0,NULL,NULL,'d2e58279-3f1f-4815-9d06-57edca6efd91'),
('b80ae9ad-d077-4dc7-9972-dcdbd93dc087','4faee337-4fd3-4e54-bf9d-7d251d9104f5',NULL,'KADİR ÖZCAN - 428417364',2,'MTQ',0,0,0,NULL,NULL,'321b5102-f51d-4d38-a21e-c4a2191ea4ac'),
('b83ca171-e2a1-4e42-8d7b-0d777201efdb','58b7f004-d477-4e62-a7d5-93f6ce659552',NULL,'MERVE KIZILIRMAK - 657258901',2,'MTQ',120,0,0,NULL,NULL,'4cf8e968-59ad-4be3-85fe-2d5ab1c9063f'),
('b844994c-0c36-4414-8659-f71cbfd2b21f','227057a5-d11e-4118-8283-58bac859fc8a',NULL,'ZEYNEP KÜÇÜKBIYIK - 531450758',3,'MTQ',110,0,0,NULL,NULL,'58257b33-0630-4737-9729-852125dc7322'),
('b84ab680-a7f7-4c78-9402-28d040799553','2b4f2e72-9303-4378-afad-f9887acd81fb',NULL,'MELİH ÜNAL - 478235858',1,'MTQ',100,0,0,NULL,NULL,'72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b'),
('b865142d-0b0a-449a-8a1e-82071f2d2a05','2191d936-bea9-420e-ba98-d75619b876b2',NULL,'HASAN ÇETİN - 745810889',2,'MTQ',140,0,0,NULL,NULL,'8f46653b-9700-4005-98b3-aae1d0eac6e1'),
('b8957899-1ef5-4fe7-b7be-42284363c504','f1503dea-6df4-4abb-874e-1ac65633e4a8',NULL,'İLYAS ÖZBEK  - 278583277',3.5,'MTQ',120,0,0,NULL,NULL,'3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb'),
('b8a7b041-c6e6-4099-bb6e-02abe73c5531','98afa4ee-188b-404c-b238-6fc06723b807',NULL,'OSMAN ALTUN - 644901751',2,'MTQ',110,0,0,NULL,NULL,'10d22b54-2959-49b7-ac9c-935cb90eaedc'),
('b8c84ac7-5f50-485e-b3ed-def6358b0542','11efd54d-374f-4efc-9340-3f79f0cfb533',NULL,'MERVE DEĞİRMENCİ - 371665826',2,'MTQ',110,0,0,NULL,NULL,'b2702ffc-90a1-4e2a-96d3-f80e323c5ce9'),
('b9077fa2-875d-4e84-a2d1-dcb76b782bb3','13b3f8b4-4d80-4b99-95ce-e6021a627a0b',NULL,'ALİ KARADUMAN - 7454878',4,'MTQ',130,0,0,NULL,NULL,'ea2a970f-57cf-4bbe-a300-250a83e0b8ad'),
('b929a0f7-086d-4f06-9e81-1836a8318f62','46e4dd01-8bce-4f8f-a61f-dee6309c07f9',NULL,'MESUL OLGUN - 338607005',2.5,'MTQ',130,0,0,NULL,NULL,'db777003-5be8-4bbb-b769-243e7d332355'),
('b9495b69-3777-4266-8cc0-c47a38941be6','74c88062-35d0-4bf8-8173-92f4d393b9ba',NULL,'MAGDALENA DELİJANOVA - 371521572',2,'MTQ',120,0,0,NULL,NULL,'225eec2c-83ef-4f12-a430-b56f6429a736'),
('b9665f01-81ec-4ccf-9ad5-b167b7b0d7d5','a4b63e1a-6095-4640-a47a-9999264bd7a0',NULL,'CİHAN TOKAY(K) - 644407379',7,'MTQ',110,0,0,NULL,NULL,'c7df4577-2554-4909-9abc-5a62fa7bafc7'),
('b973fceb-8d07-4c15-98b1-c9ca6c7beac2','01edea34-7249-48e5-abb0-20ff1bc31f4f',NULL,'MURAT KALKAN - 478520504',2,'MTQ',130,0,0,NULL,NULL,'22f306ed-6c48-4e15-a370-d8f8b96b6499'),
('b9a2c4f5-0905-403b-a732-760b88dbf3e5','3cd6cdd8-2528-4dd2-b450-95717775b3ab',NULL,'GAMZE CAPALBO - 517147933',9.5,'MTQ',0,0,0,NULL,NULL,'a19108da-c4a8-4e26-aaec-815a4c582fb5'),
('b9b13d03-0766-4d63-a691-8f66734a86a9','d70024a0-1b07-4316-94cc-826c00e6edd3',NULL,'MURAT BAYDAR - 879845359',2,'MTQ',110,0,0,NULL,NULL,'91983c05-77bb-427d-b258-13e5f5aca93a'),
('b9caff88-9c2b-4a1a-8223-cb0cdd29cfb6','f9dc3664-7e48-45ad-aa15-4711993165a3',NULL,'HÜLYA LAÇİNOK - 380497843',2.5,'MTQ',140,0,0,NULL,NULL,'59dde410-951f-46d0-a70c-9d7bad1aa73f'),
('b9cb7ff8-b8f6-4221-82f0-b2bdf6b82379','d37af71f-1bcf-41c4-ad8b-b38fc7e57fd1',NULL,'ALBNORA MUSTAFA  - 786286562',2,'MTQ',110,0,0,NULL,NULL,'40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f'),
('ba090df1-cf31-4042-a35e-25d89a39e097','a023ef08-df89-4da8-b85d-a72e6effbcf5',NULL,'TAYFUN ŞENGÜL - 644424764',2,'MTQ',110,0,0,NULL,NULL,'1e9ad390-bf85-414e-98b1-b7175b25c837'),
('ba0f7630-0557-437b-9c35-2f5395eb628f','8f23bb5f-9e5c-41fd-ba3d-76b96ff69f29',NULL,'SELÇUK SÖNMEZ - 803961620',2,'MTQ',110,0,0,NULL,NULL,'3279cd33-84a3-4a75-b268-cbf614f54c41'),
('ba779712-b8a9-4d40-b8f7-8c5819123f63','2b0b4cf6-c4a0-4b12-a4b4-fc37f9753d89',NULL,'HOLLANDA - 248602682',1,'MTQ',0,0,0,NULL,NULL,'83a7db81-f98d-4f51-a534-ec63e6d9784b'),
('baaa6df6-5362-4d5c-982b-bb9e1db92e11','1c1a06aa-17b6-49a8-b899-b7aa94389f7b',NULL,'DANFA - 817288476',2,'MTQ',120,0,0,NULL,NULL,'0e07b0ae-06f1-463c-8579-3c8aa8ed2f73'),
('bacb181c-d902-41ef-993c-7990240c6f8c','1bfd838a-7803-4c85-83e6-68d141acca02',NULL,'OLSZWESKİ MATZ - 644658399',2,'MTQ',110,0,0,NULL,NULL,'5e70dde1-35e1-403e-bbeb-3153ccf77d80'),
('bade8ba4-e443-4ebc-8a3d-0d3116920e8f','f52b61c9-4005-4631-acf3-3675e171ed19',NULL,'TUĞBA BAĞCI - 126200859',17.5,'MTQ',100,0,0,NULL,NULL,'10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7'),
('bafd245a-f4d0-4fdc-85b0-e919eb062c61','e18c7881-2c1c-4c68-8839-71eed4af7a36',NULL,'ERCAN KARADAVUT  - 248315101',6,'MTQ',0,0,0,NULL,NULL,'d6ceac62-a798-4065-a2db-6b4d596f974a'),
('bb1a9b46-c479-4997-ac68-92f36846e8e1','2d10884d-f8f4-4033-94df-46afd67c9d62',NULL,'OKAY TUNCA - 312422305',8,'MTQ',0,0,0,NULL,NULL,'26683bbe-0d6e-4088-afa7-4c620918ff73'),
('bb4898a5-371d-47ff-9d29-563f4357dd7d','c08d60e3-7b06-4086-a3c0-84d8d723c175',NULL,'ARZU ASLAN - 675965194',3,'MTQ',120,0,0,NULL,NULL,'9d125453-ffdb-4ead-96a1-dad36ea9137f'),
('bb639c7f-afbe-4e08-a1d5-f5f681084af7','6e5bc871-9af3-4f74-ad96-9b46196496ed',NULL,'ENES - 41268257',2,'MTQ',0,0,0,NULL,NULL,'09866d43-d0a4-4a7d-a951-82fc550bd732'),
('bb854fe3-81d4-4a19-8050-cab9df5d60f3','603a2d9a-4788-4c52-a635-000a5899a2cf',NULL,'MAGBULE DZELİLİ - 982843761',2,'MTQ',140,0,0,NULL,NULL,'3caa13eb-3143-47f2-b11e-c9f3575e57b0'),
('bba102b7-1482-451f-9184-c7e05e41ce65','b2d6dfe9-c7c2-411c-940a-67102080bd9b',NULL,'IVANA JURCEVİC - 437869312',2,'MTQ',120,0,0,NULL,NULL,'37c5e10d-e0b6-4c94-85c7-2b6278fcee2c'),
('bba738e4-5254-4424-b156-8f1936674b58','52605aef-47cc-4f42-983c-aba917226c61',NULL,'HÜDAYİ HARMANCI - 64422113',6,'MTQ',110,0,0,NULL,NULL,'cea81038-a341-47c6-8f8b-905346a6e5b0'),
('bbaefa23-9908-412d-be1c-76fec166c8a5','e64df038-4154-42d1-ae6c-cf0580eacae5',NULL,'SEYFETTİN BİLİCAN - 412741555',1,'MTQ',4370,0,0,NULL,NULL,'3cbb1188-1698-4b6e-bd28-06d238414388'),
('bbb4f7f2-56e4-46f6-8b20-bffa8c3ffa10','d878eaab-c8a6-4b31-aba7-cf68f78e8b79',NULL,'EURO MOBEL - 412218985',2,'MTQ',0,0,0,NULL,NULL,'835863ce-70ff-4b53-b486-a32e6936cae4'),
('bbbbf1a7-bff5-47e8-9552-d9912e670feb','24f92d07-13ac-4639-8a08-07d3dfc17840',NULL,'ALEV DOĞRU - 478860616',6,'MTQ',105,0,0,NULL,NULL,'56059bd6-d32a-4603-91da-c059737a036d'),
('bbf820f4-4dc1-4a1b-bf7e-9444f9c7f4e3','60c82863-d731-48e4-aa1a-e1734ea27e53',NULL,'HAKAN YAZICIOĞLU - 478681830',4,'MTQ',110,0,0,NULL,NULL,'fee1921f-e2a1-493a-95cc-3101675adfe8'),
('bc7338d8-1dc0-4989-888d-56ecb18ced54','ad477cb1-1e80-4afd-b1d9-4bf9161462e1',NULL,'NURKOVİC JASMİN - 982176810',7,'MTQ',120,0,0,NULL,NULL,'c1b8db95-a2de-4d83-a91b-b023c570372f'),
('bcd6ca6e-f38d-44b9-9468-7b52ca388882','8433bcbd-449c-4684-8fb7-374b84405f01',NULL,'HARUN ŞAHİN - 371421349',6.5,'MTQ',110,0,0,NULL,NULL,'e7f656e7-35d0-4f99-bacd-ea6a85d14230'),
('bcf0a5cf-4377-4ef7-814e-05830063c29e','a8715f35-98e1-46a9-96d9-444da7d940c2',NULL,'MELDA KARA - 64451300',7,'MTQ',140,0,0,NULL,NULL,'0ea8d257-afae-4860-8574-29747c60c8c6'),
('bd3c081d-de45-44f6-8274-079da846feac','d32138ac-7074-46bc-86f3-f6b8b786ecb4',NULL,'YASEMİN GÜNDOĞDU - 644340759',2,'MTQ',110,0,0,NULL,NULL,'a99855a1-4c2d-4b5a-b222-5fd61915169a'),
('bd48d6ad-5f7b-4b01-b18b-56640003e100','dd9da232-f307-420a-af55-77f4a562e4f2',NULL,'MURAT AKTAŞ - 163401674',1,'MTQ',0,0,0,NULL,NULL,'9ca5ad68-0419-4edf-862a-2a6e5047e63d'),
('bd8089e9-205c-4d4d-a8a5-e1bfc5d1bc0a','b3ab72b8-656a-4b48-a7d1-b9e931f10a88',NULL,'HAFİZE GÜNEY  - 319382208',6,'MTQ',100,0,0,NULL,NULL,'1b20804a-76a0-418e-b22d-40783c68915b'),
('bd874d2c-55b4-4c41-b000-5ed411ba6829','7e8a35ea-8211-4089-92e3-f2bd7bc78d1c',NULL,'ATIL SOPHİA - 505850944',2,'MTQ',120,0,0,NULL,NULL,'2fdbcaf5-7205-4828-8dfe-34a2370ccdc0'),
('bde214d0-70f2-4962-ae7e-93f5bde288cd','65c20400-c806-4614-9548-7fa0e48d5174',NULL,'ZELİHA SARITAŞ - 644287826',3,'MTQ',120,0,0,NULL,NULL,'24e58e68-4ee3-40c0-8505-b017493468c7'),
('be0c58ce-e955-4eb1-82e3-5f373e0a5445','64825000-cd1b-4e80-8b14-d2b5cf810954',NULL,'SAKİNA RAHİMİ - 449874608',4,'MTQ',100,0,0,NULL,NULL,'aa459b9d-90ee-4bb9-8354-0f3f48dd9b48'),
('be6c2b01-c3c7-41fa-a77f-570573e62099','aa47b6a5-e025-4b09-9a50-f497ff041c8d',NULL,'RAMAZAN AÇIKEL - 412411011',2,'MTQ',0,0,0,NULL,NULL,'d5b2fa03-abec-4a92-ba35-d62dcc2cbf95'),
('be91a526-d01a-4fe7-9cf4-0d065ef4f1a6','3b0d6266-0557-42e3-ab69-0201e144f730',NULL,'İBRAHİM YILDIRIM - 745405587',3,'MTQ',130,0,0,NULL,NULL,'5758b84a-ba06-4b26-888b-a1d46af4fac9'),
('be949fe5-4020-49d0-b30b-7a55ddfabad4','94b198a6-c33b-4d64-b830-f2d78852a0cf',NULL,'NERGİZ TOPRAK - 371540742',3.5,'MTQ',110,0,0,NULL,NULL,'a19d66bb-d207-4329-bba8-b2b0c50bd4f6'),
('bea782b7-622e-4646-96c4-359510e8bc4d','7ceb3fd0-2408-4d97-b8f0-4655fa670fb7',NULL,'MUSTAFA YILMAZ - 745445888',2,'MTQ',110,0,0,NULL,NULL,'177d16d4-44e0-4c83-bf57-ccaa02fc61de'),
('bedc2f6e-b599-4925-a044-936b44bc4727','d0f363dd-9f8e-4180-afa4-361a76f5862f',NULL,'ZAFER SARIDAŞ(K) - 644717952',4,'MTQ',110,0,0,NULL,NULL,'d8e81c58-d245-41e7-a030-04aad4fea77d'),
('bef7fbc9-a432-4bcc-af8a-8296a438ffca','9945902a-d436-4c00-9918-5cc1f7243c29',NULL,'MUSA VARICI  - 897291641',5,'MTQ',110,0,0,NULL,NULL,'bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1'),
('bf0d1d9c-d02f-42eb-9b28-a695265220ae','473f1594-0834-444e-9514-5fd49ba27d58',NULL,'EMAL ENRİQUE - 449511744',5.5,'MTQ',100,0,0,NULL,NULL,'57ca2461-e718-4402-86f5-359b366200e6'),
('bf2b7320-8ebb-4b0b-b5c1-fc41d81a3973','20800e9c-e863-495d-ac21-b0f97c5828c9',NULL,'ALİ CAN YILMAZ - 371102325',4,'MTQ',140,0,0,NULL,NULL,'c7380dcb-b5b3-458a-9219-53fdb3531629'),
('bf378c74-d6fe-4d1c-8fa7-d3277b5994cd','55391962-7052-40fc-a054-b77a105f55df',NULL,'FATMİRA CELA - 449281517',5,'MTQ',100,0,0,NULL,NULL,'df3b6b97-3416-43f5-bb61-b50d903d9f72'),
('bf379786-be15-4bc0-ac9f-cdcf5e568ed0','ba03a3a3-ad70-4e1b-8049-f8505598b747',NULL,'SELCAN ALTINSOY - 910479941',2,'MTQ',110,0,0,NULL,NULL,'fcd7666d-0415-4ff3-a449-800232806032'),
('bf3aac53-5b36-40e3-81e5-47e1320caf40','47c1c785-eab3-4e87-bee8-eb253403efd0',NULL,'HİLAL YAVUZ - 982194447',2,'MTQ',110,0,0,NULL,NULL,'131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7'),
('bf3bd7cb-7714-475c-89d6-e5be2d345dc3','40812126-4088-4702-bb01-5a86478d80c6',NULL,'FURKAN YESARİ GÜVEN - 910995300',3.5,'MTQ',110,0,0,NULL,NULL,'fb0dcc99-0e15-4960-919f-09d52748c91e'),
('bf903688-43a0-47e5-b447-5ae3c59ea6bb','a478cc46-4921-4901-9009-5d86e98aeb89',NULL,'NAZIM KORKMAZER - 644771270',2,'MTQ',110,0,0,NULL,NULL,'e4810702-1740-40c2-9d61-e9412939d07c'),
('bfae8c3a-18ab-4e2c-b347-b3b494294ddb','0848858e-3cea-45d1-87a7-4eff3a986f85',NULL,'ZAKARİA MASHHOD - 248352114',5.5,'MTQ',0,0,0,NULL,NULL,'adf0440c-3715-4603-a3a4-91b6f557e095'),
('c01f8c4b-0400-4684-b019-18317e955526','b4aad43c-6df3-4463-8eb3-0e73964ec0c7',NULL,'FATMA HANIM - 248259363',5.5,'MTQ',0,0,0,NULL,NULL,'77917a95-2dc0-44c5-b207-d5b4157f7420'),
('c02e1399-54a8-4178-95b6-3dfaa83293d9','71e1ca31-bfb3-4c28-901e-66396edcb14c',NULL,'SSHLAR - 817893266',2,'MTQ',110,0,0,NULL,NULL,'7590bedf-0280-42f9-ad6c-b270b2eef0c5'),
('c03dabd1-e817-4be2-b7f3-5f1403a7f698','c35e9537-7146-4c70-9422-8f1fa66fbb3f',NULL,'ABDULLAH DEMİR - 745105520',1,'MTQ',0,0,0,NULL,NULL,'424a2b5e-eb63-4ef9-a8a8-b1ca35078529'),
('c0480a33-e605-462d-af1b-3b1c577528bf','db702f07-d1f0-4609-88af-65c14a92c84e',NULL,'SERCAN MİRCALİ - 531549696',6,'MTQ',110,0,0,NULL,NULL,'051ad970-b67b-4d28-a0a1-340daf71d02f'),
('c0593de3-bc4d-4806-b2b9-d01ca3a99912','3e7b95d2-a394-428c-b72e-2e991923d227',NULL,'HATİCE ÖZTÜRK - 221621737',3,'MTQ',120,0,0,NULL,NULL,'c3d6a144-9f64-4576-9ddc-760d75c937fc'),
('c068e3dc-bddd-4277-be43-9b70e588a3bb','f4206d05-379a-4bb7-8d65-cf803dcb1503',NULL,'HELENA GÖKKAYA - 150685221',3,'MTQ',130,0,0,NULL,NULL,'7b615872-31ff-47b5-87ed-3eca52a1fc1f'),
('c06df2c7-b761-4438-a80e-727b61492d45','796d8082-dbb8-41c2-9e22-7d14188e0a41',NULL,'SENA ONMAZ  - 43714618',3.5,'MTQ',120,0,0,NULL,NULL,'eac20332-3b72-49af-9e16-57159be774ea'),
('c0c4de2e-fb33-432a-a31e-1977679f37a1','d43c8ed5-97bb-4109-970f-de4e4cd535e3',NULL,'RABİA GÜNER - 97684781',2,'MTQ',120,0,0,NULL,NULL,'edd341ae-d463-4dbb-b4ec-e8899cdb8433'),
('c0c92ab1-d355-4690-8a4b-0d0d32842eae','b59658dc-c544-4525-b304-dd4b93fd7874',NULL,'GÖKHAN ÇAYLAK - 745808994',6.5,'MTQ',105,0,0,NULL,NULL,'77ae1565-c04e-4a61-91bb-c10a993fdc5b'),
('c0d6ca91-5cc5-4b5f-a09f-8314b47dbd43','fff91ae8-891a-4ccc-8125-66e9f91bf581',NULL,'PRISMANN-NESTE NETHERLANDS - 412157690',16,'MTQ',237.5,0,0,NULL,NULL,'d6635bb2-75b0-48bc-bb9b-7e1161e20b03'),
('c0dbebe1-e583-4798-8d7e-5115ea2838d6','f5979511-e1cf-4ef2-9abe-c6b8fc247087',NULL,'SATİ CENGE - 437427529',5.5,'MTQ',110,0,0,NULL,NULL,'68b0a915-121f-4d3c-b2e8-25b8e3e18525'),
('c0f905b9-12e5-40a2-ba1c-0f0670af1e88','7704a5c4-ab31-41c0-9b3b-66e5d44bdf65',NULL,'MOHAMMED ASİF KARİMİ - 982501931',4,'MTQ',100,0,0,NULL,NULL,'b5c1db79-0154-4eeb-bcc8-d0daa11527b1'),
('c148e2b3-5ccc-463b-8e15-9240c450c0d6','57c0f97b-e20a-4a89-a4f0-d02b703cce8a',NULL,'MEHMET ALİ ALBECER - 976747802',3.5,'MTQ',110,0,0,NULL,NULL,'49c48f88-3c20-42bd-8ea9-304d94c9460f'),
('c1656b1a-acdf-4778-a968-116783c4cb2a','0fce13dc-aec0-42a1-868c-df1998bdeee4',NULL,'ABDULLAH ÖZER		 - 910594430',5.5,'MTQ',120,0,0,NULL,NULL,'b8cd88fd-9a6c-40bd-ad5f-292e992b957f'),
('c1781a9a-494f-4d5b-afe5-ab55bb11071a','1b02440c-aca9-45e5-a912-231755a7bfd1',NULL,'SARA MOHAİUDDİN - 248216907',4,'MTQ',0,0,0,NULL,NULL,'746346ca-da04-465b-bff8-fc464fa93ece'),
('c189fd25-9bb8-4769-8823-b655d8e41dc6','68f27537-22a3-4d25-a6b7-7b9e0ee57068',NULL,'NATALİJE - 916836796',9,'MTQ',0,0,0,NULL,NULL,'45658f08-1cac-40c6-b173-5814bf12543e'),
('c18ce3ca-b8cb-47bf-8a7c-2103c221c1c3','ffaa4df2-9a43-4578-b26d-1929266d1484',NULL,'YOLCU EVİN - 515463699',2.5,'MTQ',130,0,0,NULL,NULL,'2b9b8352-38a1-462f-8872-8754c00e64e4'),
('c1af119a-d11b-4ba8-aa88-a65ccfe16c5e','3eef564f-fd8e-471c-aae2-93b61b188973',NULL,'LEPETİT CRİSTELLE (SSH) - 221901011',2,'MTQ',120,0,0,NULL,NULL,'3ace9aac-a197-4e9b-9f08-d07c0b7f938b'),
('c1ca7c92-10c4-4616-9080-f46b1b54eb71','61dc0d26-c179-489b-b816-76eaadea52b7',NULL,'ÖZGÜR BAY - 47833977',2,'MTQ',130,0,0,NULL,NULL,'849dc3bf-f8cd-4d56-b754-d79724b3a46a'),
('c1cd0e68-7524-4eb4-a9f1-c84a812a6587','16b3a17c-1cf5-4e64-9ac7-4c6cf4075677',NULL,'İBRAHİM MERMERCİ - 221102071',2,'MTQ',120,0,0,NULL,NULL,'041d4369-8e52-432c-a39c-693f970677e0'),
('c1e1c8d0-f754-4fcc-8b88-d91e3a627c6a','af0350e3-44a7-44f7-873b-3bfeaf7d0692',NULL,'IVANA JURİC - 982728095',3.5,'MTQ',130,0,0,NULL,NULL,'ef40fca2-d183-4d4d-931d-2303fbe2066e'),
('c232ed82-ed6b-47db-9ef7-68dcf4db4559','e0ca2c40-e7da-4ba5-9748-aaa9cb685ff2',NULL,'EMRE YILMAZ - 745884226',6,'MTQ',105,0,0,NULL,NULL,'69d7a07d-c199-439f-8e6c-e59065df2772'),
('c23ac9b0-774c-4afe-a1a6-bf3bfc93a286','c4f9c9e9-5d9d-4fa5-8a84-b9b372caac6c',NULL,'TKHİLİ NAİDA - 982318245',1,'MTQ',110,0,0,NULL,NULL,'226e99fa-2222-409d-9c22-ab0639c760f9'),
('c23f4c61-f6a4-4481-83da-9756e6cda6b9','58c30cae-6c96-4615-98f7-c24793933481',NULL,'BERKAN AKTÜRK - 371823380',9,'MTQ',110,0,0,NULL,NULL,'aaf80057-65ea-4999-832a-29537bd6ba3e'),
('c24d09a9-936e-42de-9083-ebd3b70381e0','aa7345a6-7f7a-47e1-80e3-b4ddb0d62ea7',NULL,'İNAN KURUCU - 478572714',1,'MTQ',0,0,0,NULL,NULL,'ce7ae4ad-2b4a-4f14-97b1-6031c225aff2'),
('c260edd4-7a25-4acc-a5d2-8b9df6969014','a8310e5b-2696-4418-86ea-70ccc1579de3',NULL,'MUSTAFA UZUNBOY - 47867667',1,'MTQ',100,0,0,NULL,NULL,'5913d039-3ade-4c0a-b799-6d69b6824f00'),
('c2a6edcc-73e6-4cc3-90c3-2225a47f68a2','4d706973-f6f7-45ce-8730-14844dd63179',NULL,' - 027734999',1,'MTQ',0,0,0,NULL,NULL,'51128593-b736-40db-b3d3-679310ee1e96'),
('c2aafcee-5514-47a0-90cc-b5aa7632ab63','c0d2bdfb-9354-4fe1-901d-22a0964a1ecd',NULL,'NESLİHAN KÖSEM  - 910405441',5.5,'MTQ',110,0,0,NULL,NULL,'8fb8c47d-f3c2-4303-816b-fb50dd9d6798'),
('c2c2d188-35a4-4eeb-b023-d8d2ea55afd9','84381775-c590-4b2d-b2d2-1eee77a18ce9',NULL,'YUSUF ALAN - 745130019',2,'MTQ',105,0,0,NULL,NULL,'ef437620-5922-42f3-91ee-d44f1d84b757'),
('c2d64463-a603-4bd1-bd15-bfc0458dd435','8a4a0f5f-f71d-4eab-b1f7-ea9c33dfdb4b',NULL,'SONGÜL AKKOC - 515171044',2,'MTQ',110,0,0,NULL,NULL,'4611b81d-e164-42c5-9c5a-9ccc4855f384'),
('c344458e-2945-45bb-9db8-8ca6d0778b17','7d609e17-61d8-4a84-bebb-bbade818fbef',NULL,'DUYGU DEMİRHAN - 644703173',3.5,'MTQ',110,0,0,NULL,NULL,'a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5'),
('c34482ef-4c7e-4d1b-ac88-a38b75b4ee78','f04ffe8e-344b-4f5a-91ad-ad63371f53ff',NULL,'DİLARA TARHAN - 745233031',9.5,'MTQ',130,0,0,NULL,NULL,'1080adba-e901-4380-93d1-e3ffaab7c355'),
('c355909d-56ef-46cf-a928-e091afa5a485','8102ef67-f624-4695-bdc5-ff5fcec65a02',NULL,' - 248573438',1,'MTQ',0,0,0,NULL,NULL,'6042b337-8e8a-4695-ae65-4e5f031a1b0f'),
('c36160fb-21a1-4f55-95e8-916931dd933a','421463e5-aecf-4e95-bcd8-1900352da420',NULL,'GÜLİSTAN ÇİÇEK - 745276835',1,'MTQ',100,0,0,NULL,NULL,'3702b5a9-ea4c-409a-aff6-311eb12eb584'),
('c3679f70-1532-4377-8e64-3cdab0747c46','ad60a5de-06d4-477b-8b01-1d6a0e9d54d8',NULL,'MEHMET KIRMALI - 745471905',2,'MTQ',105,0,0,NULL,NULL,'e34a405c-b206-4de1-aca3-4f8e33268107'),
('c3b9e8e7-38e5-4321-94e8-e6b97ae9e55a','72621093-5ae3-4cca-91a4-c44edde496dc',NULL,'LEİLA GELES - 745266700',2,'MTQ',130,0,0,NULL,NULL,'28d7d2ec-ff1b-4dfc-895f-17904bc60866'),
('c3c4690a-f92d-48ce-a2c7-e0ea5b3a0172','1aa9ed4c-5a76-477d-8318-cd686b3a886c',NULL,'MUSTAFA ÖZÇOBAN - 657264606',2,'MTQ',120,0,0,NULL,NULL,'9739db1e-0165-46ba-ba28-b7ce9e88c38b'),
('c3e1b240-35ad-4986-be41-f0373eff4ba5','665e29bc-419f-445e-b922-b5ac2c198f21',NULL,'NESLİHAN KÖSEM		 - 910316067',2,'MTQ',120,0,0,NULL,NULL,'f5d77768-b445-4580-b1a1-2e07f2bb9f93'),
('c3ea5958-5a2b-4597-8274-e84e60fe7fae','9a417dac-863a-4fcb-b86e-bc95b279b19f',NULL,'BİRSEN KARADAVUT - 478833375',3,'MTQ',105,0,0,NULL,NULL,'06af560c-552f-4ff9-a194-96cfbb5bfe91'),
('c40da07b-f56b-479a-ac0a-2676531997d1','081476ec-def2-4e9b-85a8-0fdc2301ceeb',NULL,'ALİ ÖZ - 315389904',3,'MTQ',120,0,0,NULL,NULL,'9d2cc51d-661d-4efe-b0fd-2306ca62f7fd'),
('c45e6a75-1297-48d0-8da2-49669142523e','8f7dec63-d1aa-4ce4-9c87-2b5739ff9620',NULL,'HELİN SICAK - 735298003',1,'MTQ',0,0,0,NULL,NULL,'aaae96e2-c0d9-4998-8984-129df3d3e10a'),
('c4816233-f447-4655-9ae7-119e8ef180fa','f038da42-0ea6-42ab-81db-215fbe8684ac',NULL,'İLAYDA GÜNEŞ - 371528044',5.5,'MTQ',110,0,0,NULL,NULL,'c72f9eca-340a-48f9-96f6-3dbf8cc7fa30'),
('c4c0e171-e5e7-4952-868c-0be631e538a4','9e0a39b3-1978-4fc6-99b7-0e5867358211',NULL,'KENAN KARAKAYA - 478805224',1,'MTQ',55,0,0,NULL,NULL,'5c6ec0c5-22d6-47e2-968f-a3dffce4d711'),
('c4eff2cf-78e4-4d88-90ca-c72a82b33811','2849536d-2ff8-4c26-abd7-2e0732b0ea30',NULL,'MUSTAFA ŞİMŞEK - 338730647',2.5,'MTQ',120,0,0,NULL,NULL,'96a7a9ce-ac9e-4c25-a15b-91289b6df9c7'),
('c4f564a4-345e-44e9-8a05-ab5133da6f32','fb946f71-85bd-488f-a296-d57af2b3d738',NULL,'OĞUZHAN TIĞ - 478824521',9,'MTQ',120,0,0,NULL,NULL,'ae77010c-fd9b-4dda-9995-d94d5c8976bb'),
('c50dd93d-150c-400f-be92-8dc04b44318c','60eb00e1-442e-48df-8ca7-6ff077cfdc2d',NULL,'JEUNE ROSE DARLYNE - 221892935',2,'MTQ',130,0,0,NULL,NULL,'0c849468-56f3-4970-8ded-610f5c6820b7'),
('c5103e65-8a11-43ca-893d-09ad04aae5d9','bd269a7a-9be7-4749-9138-4ce3056e5e42',NULL,'SERVET ERDOĞAN - 982426968',3.5,'MTQ',140,0,0,NULL,NULL,'7f38de3b-7387-4b91-9e96-d8a8ae7341de'),
('c52c33ba-1429-43fb-8c1a-fa3cf9cfa000','42f78367-873c-4987-9e44-7030f34a19ca',NULL,'DOMİNİK WİNK - 126649227',3,'MTQ',140,0,0,NULL,NULL,'cc63967e-bae3-4a27-add9-5b4030bf2130'),
('c5312e32-c304-4da2-88c1-6c803fa7a266','73103580-5efa-40d7-bd48-c422eb1d6ed5',NULL,'MİYASE AYDIN - 437945654',2.5,'MTQ',120,0,0,NULL,NULL,'47b351a7-6171-418d-b138-7c197c50e909'),
('c53384db-e31e-42c4-8903-b4309f439294','d6cc02aa-2420-4b97-a1b6-4202a9a8f2b9',NULL,'YILDIZ DEMİR - 449715358',3.5,'MTQ',120,0,0,NULL,NULL,'fdbd5255-796f-4278-a5b0-0661f2660929'),
('c584a676-b244-4793-97b6-cf1597e55735','4a6e5c82-8ccc-41b0-bf3f-b36334bdc749',NULL,'KUTAY KENAN TOMUR - 613976667',2,'MTQ',110,0,0,NULL,NULL,'46613c75-fbe6-436f-8ee8-ee41b6bbf1a1'),
('c5c7e368-6f75-4ba2-9b53-dd69cf9c26a9','02a99802-c96b-4276-be2c-a87d39df7e1e',NULL,'HÜLYA MEŞE - 338411689',2,'MTQ',120,0,0,NULL,NULL,'df701c4a-c387-4a31-b317-a8fec3d8ae59'),
('c5d4b702-cb84-445f-9280-ee7b04f764ec','08c8e636-b592-4b02-abee-bb056dbf1313',NULL,'IMAN JAWİD - 531245816',2,'MTQ',120,0,0,NULL,NULL,'def7f2ab-5847-442b-86e4-71e9c7cd2dcc'),
('c5f3e71f-4092-4364-9e08-9bc4e0ae6bc5','4f8da0c1-3fcb-4cdb-b5f4-f57232a61c33',NULL,'EMEL AYKAÇ - 735258843',1,'MTQ',0,0,0,NULL,NULL,'2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5'),
('c60193ad-4b73-479d-a402-6b07366cf048','c0a10ac8-81e2-4715-8fc0-95171541e824',NULL,'KEREM ERKURT - 428180919',8,'MTQ',0,0,0,NULL,NULL,'449509c8-dd74-4151-a2b8-9260734e7dac'),
('c61fab33-22cf-42d7-accb-47b962295164','23aefbe3-4fe0-433a-9039-8093dfff09b6',NULL,'NECMİYE AMET - 221801165',2,'MTQ',110,0,0,NULL,NULL,'5c7ee7c7-55ec-4754-bb1a-69a26c30fff6'),
('c63c0fe2-5c0a-46ae-8454-b0d387f3fa3a','4f279425-41cc-4fd9-940e-5063e9bc78fe',NULL,'KEREM TOGAY - 735792949',2,'MTQ',0,0,0,NULL,NULL,'675097a8-4389-4279-b982-311d3a8bcbdb'),
('c6635eb3-fef7-44ea-9714-4356ac4abf0b','1e956ba0-1867-4fd3-8413-0f47078eaf87',NULL,'ALAADDİN ŞAHİN - 734460411',4,'MTQ',0,0,0,NULL,NULL,'670e78fe-1680-439d-9f10-3a16b0fdf541'),
('c66713da-68f1-4d1f-abce-eafd480f2387','15800cdd-7d36-4347-b482-069d60671a10',NULL,'DİLAVER ULUTAŞ - 478670997',1,'MTQ',100,0,0,NULL,NULL,'ef1198dc-03c9-4c56-80d9-0d4fe298cc66'),
('c6739ed4-5c1b-41bc-83ef-122f819dcd9c','dbab1ccf-525b-4fec-875c-579eb6b7adfc',NULL,'ABDULLAH DEMİR  - 745906720',3,'MTQ',140,0,0,NULL,NULL,'687d4dda-737c-4d30-8593-e81992c2a693'),
('c678b4c9-6d09-45ac-a1cc-c9184daa151e','fd149ce6-6967-4840-9af3-740b83bd00c5',NULL,'Hyusein petrov - 478702716',1,'MTQ',100,0,0,NULL,NULL,'34998387-c573-429b-a68a-d13a844cfc40'),
('c6a8595d-16ab-48fe-9a11-44f97efc753c','92f84ea7-af74-4844-81a2-1066661332de',NULL,'ZERDEŞT DALMIŞ - 455784012',1,'MTQ',140,0,0,NULL,NULL,'4f02bcd7-906b-4707-88c7-1785ae978dff'),
('c6c76df1-a778-4424-9bcb-b1087e3918c9','2ad6aa4a-b640-44a3-a345-098884f1ce51',NULL,'BAL CİHAN - 614661701',4.5,'MTQ',110,0,0,NULL,NULL,'d5fa2f57-3177-401e-aa8a-f8944dc6a64f'),
('c6c87116-e13f-4f14-881c-a2940135e3ab','3a4fa721-124b-46a1-8584-585939a963ca',NULL,'ÖZKAN ÖZKOŞAR - 910756975',12.5,'MTQ',130,0,0,NULL,NULL,'37faeeb0-a5b7-4b97-8159-3e4c585ae6f8'),
('c6f71d8f-6da9-4eeb-9ef2-7104883e0803','ae432c02-c90f-4705-b70a-184c86e7bef5',NULL,'SEYİT GENÇALİOĞLU  - 221476651',8,'MTQ',140,0,0,NULL,NULL,'383fe013-af48-41d5-ad33-ad7c8b16446b'),
('c7034a07-767e-4fbc-9c41-4534b00ed8ca','3f0e3285-e89e-47c4-88ec-1cba97a5e9a8',NULL,'SİBEL ÇINAR - 428511580',1,'MTQ',0,0,0,NULL,NULL,'4157eaee-8648-432f-b717-8aeedcc9bd2a'),
('c708c767-3a21-4a43-9fdc-be96f9435f90','3a84cb44-6e97-4f4c-81c5-bc4c81b45b50',NULL,'FATMA KAYA - 371579541',5.5,'MTQ',140,0,0,NULL,NULL,'fdc2bf0a-26c7-4fe3-8552-1c8056ee2608'),
('c76a1743-56b8-4765-85fc-6a98ae3ceda6','e8dc38f9-ac5f-4428-a994-47395dc93fa8',NULL,'NEVİN KIRIK - 745638060',5.5,'MTQ',120,0,0,NULL,NULL,'4794626f-1ea7-475e-83ad-bdefd15b98b4'),
('c7b68a89-5e02-4cd8-adf3-0e50eceafa98','2110ad38-bfa8-48ab-9126-b417a15b5406',NULL,'VELİT FİLİZ - 808855328',4,'MTQ',110,0,0,NULL,NULL,'2c353236-af7a-4d2d-b79e-d8ecc6a5ae6e'),
('c7b9922f-6c86-4b98-896a-35601ec83344','5c75a252-8cf6-4af2-8f5b-8d720dc3e5a2',NULL,'TKHİLİ BOUSHABA  - 982578491',2,'MTQ',140,0,0,NULL,NULL,'781f03ac-2015-438f-bba9-a8e09715b445'),
('c8494079-0fe4-49fd-a9f4-0a26b5034f57','b8262b95-22cb-47b7-8e23-6c5bc22505ed',NULL,'GÖKHAN ÖZYURT  - 2213416',2.5,'MTQ',120,0,0,NULL,NULL,'0433f27d-703a-4a68-9cdb-58d86767559d'),
('c84f79c7-9c4f-47d1-be00-5a533bf60911','1cb255ab-e9ca-4344-896c-72fc33b8d8eb',NULL,'ENVER KÖK - 982549375',2.5,'MTQ',140,0,0,NULL,NULL,'c06f587f-6e80-42ec-8b11-2be622f719d0'),
('c853425f-5126-43c1-9ae9-752658c4bd0d','7c91ac5e-5c2f-4f5e-ae6e-1ba895930ee0',NULL,'POLAT HANIM - 982644032',3.5,'MTQ',140,0,0,NULL,NULL,'6b536f48-3034-48b2-9b97-92824679a502'),
('c85a8b5b-e722-4be2-886a-5250565cd7f2','9c7812c1-d348-47be-bb47-b9144d76f7d9',NULL,'HÜSEYİN KIRTAY - 745357299',4,'MTQ',100,0,0,NULL,NULL,'ad525e43-9190-4602-ac34-b389ec280f0a'),
('c85a8e00-3160-40aa-a202-2d99eabddbaa','a9fbca69-5b52-4147-8371-04d92e8d521e',NULL,'ERSİN ÖZDEMİR - 478892004',1,'MTQ',100,0,0,NULL,NULL,'d84c0c48-7c0e-415e-9f69-e9f7870292b7'),
('c888d5f2-ba33-4b5f-b79d-bbe651e41c05','42fc7529-93da-4cb0-90c6-25e92efb5064',NULL,'ÖMER EKŞİN - 478391312',5,'MTQ',130,0,0,NULL,NULL,'f8f36d3c-b453-4ef2-9053-625e7ae9a535'),
('c88a9d54-ec1a-4ff3-92a4-806234997e28','3c6fbbad-71e8-4cc9-9ebc-943f9dd45483',NULL,'RABEB HOCQUARD - 74541057',2,'MTQ',130,0,0,NULL,NULL,'f365b152-062c-430e-aaeb-30628ef9b06d'),
('c8a16e22-a727-434b-8e6f-a119713a554d','430ddc1d-7f88-4918-9390-738a6dadeb6d',NULL,'ZEHRA ÖZALP - 223963997',2,'MTQ',0,0,0,NULL,NULL,'5623dd4f-820f-4c2b-b881-83711ff989fd'),
('c8a17d7c-6ed3-4caf-974b-5c3f4933097d','671ba50c-585a-4807-88a6-f98c4d8ddc19',NULL,'MUSTAFA ÇETİN - 982490890',8,'MTQ',100,0,0,NULL,NULL,'ead6dade-f350-443d-a16a-41863d612c7c'),
('c8ac1701-7ac0-4148-b485-22d0236ec494','906512fd-4255-491a-9082-8b173bade357',NULL,'PEPE DİMBİ GRACE - 982219496',1,'MTQ',110,0,0,NULL,NULL,'1f693920-f2af-4070-9034-3b5ae439f603'),
('c8b1c72b-6981-4ddb-a8a1-dd167bd095a4','52634e5a-7d34-4b96-9d47-05b36f29148a',NULL,'İHSAN KEPİR - 412299499',2,'MTQ',0,0,0,NULL,NULL,'5bdda36d-058c-48a6-a634-4d0876d0f654'),
('c8c182bb-8782-41b6-9f9f-cec9ec900d9e','b202142f-1a56-4c6e-bf93-0bd6c0ee0bf8',NULL,'İBRAHİM AKÇORA - 412679110',1,'MTQ',0,0,0,NULL,NULL,'d25fd827-385a-48f1-8993-4f48129b3530'),
('c8cd320c-6ded-4483-a9ae-405fd56d3e59','3db674f9-60ba-4fae-992d-5f3e78ab187b',NULL,'SAHİN DİNÇ - 371514006',8,'MTQ',110,0,0,NULL,NULL,'548ed737-ff1e-4d15-8e34-d66ac4314840'),
('c8d66f36-d94c-4f47-873d-73849cedd406','b383220b-f300-4770-8820-e1c52460ae1e',NULL,'QASIM MOHAMMADİ - 982331367',1,'MTQ',110,0,0,NULL,NULL,'5b42d72a-b62f-4cc4-9b48-7b1bab3054f4'),
('c8df9caa-c8cc-4946-83c6-f0e64fd00263','d22874b6-f31e-449b-904e-5125a6cedce0',NULL,'SEMAHAT ÇELİK - 221803289',3,'MTQ',130,0,0,NULL,NULL,'685294c3-f19d-4310-a937-1d0a6fb675a7'),
('c8e59e54-2b6d-4de3-90ad-b567d11d987a','a256e3d0-3827-4575-b57a-0d0c28e674af',NULL,'ESMANUR ZENGİN  - 221668922',2,'MTQ',120,0,0,NULL,NULL,'ab128945-3927-4eb2-ab95-c3e7b5334f18'),
('c9032c23-b6df-4650-8769-10ad30fb71f9','aef25e5a-f8d7-4636-a2a4-ce8c98ca26db',NULL,'ALİ ŞİMŞEK - 248625081',1,'MTQ',0,0,0,NULL,NULL,'c1b1a711-e322-4a5e-a681-2fe0fcb0deba'),
('c90d5e48-8d46-4b18-9430-e8244579e424','487ce17c-cba5-4b05-9280-9a69beaed660',NULL,'CAMELİA BESSAL - 748663171',2,'MTQ',140,0,0,NULL,NULL,'0e2e4dbe-5815-4688-acd8-82ba0120462c'),
('c9346eb6-281a-48a2-b7d9-3e9071b30fd4','5d49e817-57bb-436b-bf4f-426ef46cff63',NULL,'VALMİRA RAMADANİ - 695394738',5,'MTQ',140,0,0,NULL,NULL,'82859b5d-2c9e-4a29-be96-14240c8a1e53'),
('c94358aa-eb8d-4d25-8d19-848cc386d928','e72cbf73-5393-46ac-a08f-7894f9a28f4b',NULL,'EMRE - 248968905',2,'MTQ',110,0,0,NULL,NULL,'944463e8-220a-4540-bab2-ef92cb495c59'),
('c94fa8e2-d232-4296-9f36-a307fa3f5d0d','9a79fca7-e62a-467c-93c2-dde2d274f5a7',NULL,'EMEL ÖZTÜRK - 371191289',2,'MTQ',110,0,0,NULL,NULL,'68290f88-32b3-4699-8927-09eb5cfc1ac6'),
('c9630a6f-291f-4b05-a36c-dc98f082ef10','1496369b-7bda-4a64-8517-b121955f3d32',NULL,'DİLARA KILIÇ - 428413605',5.5,'MTQ',0,0,0,NULL,NULL,'36e13cd7-5444-4fd3-b0c0-95a15516c80a'),
('c99834c3-4ff9-4364-ae88-f0d176950124','57642635-5817-4cfa-bd04-db8c6ed1604d',NULL,'CANSU EVCİ - 735318305',1,'MTQ',0,0,0,NULL,NULL,'8f4e86b2-0ef1-4837-b7be-63270a8f0af2'),
('c9ae1cf8-d3da-49d0-bafa-ca21197fbc44','6973ebcf-01ac-40ba-8a91-1388d7fa854f',NULL,'TURGAY - 248240825',5.5,'MTQ',110,0,0,NULL,NULL,'5b941dae-75e7-4901-ad1f-19d95df3e0e8'),
('c9bf4d9e-4858-4b38-a514-a1808101ba5f','9cc6e850-3da9-43fb-85c6-89f6715a5700',NULL,'DENİZ AKGÜMÜS  - 613601743',3.5,'MTQ',110,0,0,NULL,NULL,'a5a0d095-3374-44f2-a144-e0660e15a03a'),
('c9d9e307-78a5-41fa-9eb9-73694c5851c7','d8510675-9f90-481e-8d74-83af20447069',NULL,'MEİSSA AL KHALED - 531480968',3,'MTQ',110,0,0,NULL,NULL,'e9aed3da-2754-4ac0-8f89-1a36768fe9bc'),
('ca07c227-14db-4689-91da-4f7c47c06042','b66aac05-ed5f-47c7-9d73-8a28e8e39c3e',NULL,'PELŞİN YILDIZ - 478245028',5,'MTQ',120,0,0,NULL,NULL,'8f201baa-69fe-442b-9cab-fa1f47b7420b'),
('ca100430-0412-4a18-bf9f-3a52f1822da4','53c910c4-c251-4fd7-b821-088278a331ab',NULL,'ZEYNEP ALEYNA ÖZBEY - 478192530',1,'MTQ',55,0,0,NULL,NULL,'2fdeaf43-40b1-4ace-92ce-ff8cd4522e73'),
('ca283488-3959-4cb3-a84a-af96c07a4940','302046c9-c5a3-4513-ad5c-80d035aebedf',NULL,'MUSTAFA AZAMİ  - 786668251',2,'MTQ',110,0,0,NULL,NULL,'c36d986a-edbc-4585-a361-c03d6d1c6a23'),
('ca2a0df8-36e2-4ee7-9b45-d2da9bc8e0d4','cc34c0b6-a3ba-41c6-b0ce-c200a5b1eb51',NULL,'SAVU ALİN  - 98221051',3.5,'MTQ',0,0,0,NULL,NULL,'f9d93c62-66a8-418a-abd8-01753a82e84d'),
('ca4a558a-7135-47d7-a253-3ea7f8d06012','dbef78c4-cbf7-4b8e-b38f-4649315eae20',NULL,'UĞUR YILDIRIM  - 902194722',2,'MTQ',100,0,0,NULL,NULL,'6c17a0c8-3209-41cb-8f5c-f47400874b9b'),
('ca543ac2-dd13-4745-9a76-4ba65b50f2fe','5a8d2144-3755-4406-839e-25417da63e2a',NULL,'EKREM ASLAN - 91059017',3.5,'MTQ',110,0,0,NULL,NULL,'4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf'),
('ca547a4f-b420-4129-8e58-505ca6039238','478d1f55-5993-43c4-a7dd-4e42a0cbb9e9',NULL,'BURCU ŞİMŞEK - 12752907',5,'MTQ',110,0,0,NULL,NULL,'c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3'),
('ca567661-ab60-4cca-85b6-fcaa1e395adb','6bfefcc2-5cfe-4b6e-9590-4be416c580ec',NULL,'BURAK SARIKAYA - 745816946',3.5,'MTQ',105,0,0,NULL,NULL,'eb3d9366-d41c-4a39-bc45-c8babc36cc15'),
('ca5ede7e-0427-471e-a793-dc8c51ebc8b7','d96bac61-9872-4d89-a3a0-8a9cc803b929',NULL,'ZÜLAL KABA  - 765472156',2,'MTQ',110,0,0,NULL,NULL,'fe1bf79f-2efb-488d-8554-0ec73016bf8c'),
('ca78ed9c-e7a7-48ef-bd10-aa5275a0cd8d','98fd1c06-36d5-4478-8297-c1da3a0a76c4',NULL,'MEO JONATHON SSH - 437124353',2,'MTQ',130,0,0,NULL,NULL,'31cd8435-cf46-4deb-b1e7-b94fe44ebdf9'),
('ca79150a-d6a8-44f9-a031-590213da33d4','fde2d7bc-fd36-42dd-9eec-3e8c82c5d6fb',NULL,'ALPER ÖZDEMİR - 437414847',5,'MTQ',110,0,0,NULL,NULL,'c454e08f-938d-43b3-ab45-998625e47a0f'),
('ca7f59d3-5e35-45f6-a30f-ba707dc6a012','0e16f12a-b10c-4847-806c-af72e26f94a0',NULL,'YUSUF ATUM  - 501212768',3.5,'MTQ',100,0,0,NULL,NULL,'22aac75b-880d-4ec6-b9a5-586a4d8ba155'),
('ca8877c4-4f4b-4289-ac18-db2b0ae7fc51','402401b1-51fc-4e76-a385-ca3921757caa',NULL,'BURCU GÖKÇE - 478559134',2,'MTQ',105,0,0,NULL,NULL,'249874ad-8b13-436d-be45-fc0a2c651a43'),
('ca9192b5-b375-4626-8f3a-0f6b399aa44a','28b33b50-76a5-4d1c-983b-42544d44593d',NULL,'MUSA EMEK - 501622058',1,'MTQ',0,0,0,NULL,NULL,'afedd778-4e9a-45c0-8eef-59b05a268db8'),
('caa3fe1d-dc2f-4b87-878d-b47eb2e2817f','cf7c87cf-6663-4603-9b3e-9d5eac61f216',NULL,'GÜLSEREN ŞAHİN - 371494792',4,'MTQ',110,0,0,NULL,NULL,'49b3f497-a340-40f9-9aeb-fcbaeae86b09'),
('caa77704-a81d-4ebf-8c3c-9d7cf8805e26','5de990fc-79df-43ca-a0d2-f23d781294dc',NULL,'DURSUN GÜNBEYİ - 501766543',2.5,'MTQ',100,0,0,NULL,NULL,'3d2aaa7f-67db-4dff-a3ad-5b3684784654'),
('cab4804e-02e0-4eec-b38a-4afd4947bc90','25d6452d-d62b-4459-b7ff-ae4eb120d944',NULL,'DİLAN ÖZKAN - 478125578',1,'MTQ',110,0,0,NULL,NULL,'81d90712-62e3-438c-bb65-68ef2f0ed8e5'),
('cade0fc7-3e4a-4704-833b-ab8bedfe01be','af6d387d-19d6-41b9-b063-36bf4da0b918',NULL,'İSA KAPLAN  - 962168012',1,'MTQ',0,0,0,NULL,NULL,'bc037735-462f-4198-8d2d-23ba6a125e18'),
('cae9762e-4299-4a7c-b927-455ff4d87de5','cf692973-4685-44e7-8ca4-ce30e0c33d38',NULL,'SAMET ERGİSİ - 011766113',6.5,'MTQ',120,0,0,NULL,NULL,'6f4a13be-78b8-4d33-9535-7be01091d06a'),
('caeeaf9b-1d9d-4bbc-89fd-3a4ce8d164b9','4ffcba37-04c7-4ca0-93d4-4fe421b08f8e',NULL,'ÜLKÜ ÖZTÜRK - 221943840',2,'MTQ',130,0,0,NULL,NULL,'fea683f3-14ee-46cf-99c5-7865dcd4834f'),
('cb110ca2-d970-4cee-8630-18644149e67f','62fd52d9-681a-4b09-b6a4-ad8783be7228',NULL,'CAVDAROĞLU - 412955343',2,'MTQ',0,0,0,NULL,NULL,'e0e86ba2-e859-4ff8-909a-d80a2fa0e942'),
('cb297b52-d6b2-460c-ae00-9097cbd042bc','8f738a7a-ee48-4158-93c2-a85abf49c3a7',NULL,'AYSUN ELİBÜYÜK - 478273603',3,'MTQ',120,0,0,NULL,NULL,'42fcea6f-25da-443c-8add-2a8f44573b78'),
('cb33fc5f-4a42-4e07-8e12-a51d9ff016eb','dd474a01-590d-4a88-adfa-1a1cb9c9a42b',NULL,'EMRAH ERAYDIN - 127395599',7,'MTQ',120,0,0,NULL,NULL,'d2d77708-f738-416d-a601-6a86aa678898'),
('cb4046a5-d697-47a5-973b-f195941a614b','0d3b6022-da3f-48c3-a744-df9ec337ac1e',NULL,' UĞUR KAPLAN  - 011697836',2.5,'MTQ',120,0,0,NULL,NULL,'ac9528e4-d408-4c6a-9cb5-664445eb6c37'),
('cb4204c0-88a3-456a-a52e-86480b484131','efb31970-b737-4fdf-a52d-dfda6f58d084',NULL,'REUAN SHAMO  - 221947357',2,'MTQ',110,0,0,NULL,NULL,'9ce62bd7-3afd-4765-a2a2-99f4aea71849'),
('cb6fde0c-29ce-43f1-90ea-2f13a1e1a2b6','4bbeaa3c-d69a-4511-bef9-e11be2c93bfa',NULL,'ALİM BAŞ - 50156405',2,'MTQ',100,0,0,NULL,NULL,'cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3'),
('cb730b21-3add-4ca8-b07f-3c0a683b9156','062df64c-817f-470a-8dbd-e50ee525d152',NULL,'EMİLE ARSLAN - 37142091',3.5,'MTQ',110,0,0,NULL,NULL,'aaa69afc-0eda-49b4-818d-8769ee88f336'),
('cb76c8a2-89be-449a-8b1a-d96895dfe6b5','4161b417-68f8-40f3-aedf-a94ba067da3c',NULL,'SERHAT ERDOĞMUŞ - 449558519',4,'MTQ',120,0,0,NULL,NULL,'d00138fa-29c9-4e79-afd4-bb7cf83a496a'),
('cb81af50-5e10-4de3-8a91-ab9672d1db50','45f6344b-e1f2-4015-ab0b-671e19719b2c',NULL,'VELİT FİLİZ - 808450440',4,'MTQ',110,0,0,NULL,NULL,'9b5b3b68-3e25-45b7-a856-05ae20d3cce5'),
('cbb15fd8-4a19-4eaa-8d1c-c6ac0cb82567','dc93c9dd-8d27-45c7-b5e4-0924c87aa08d',NULL,'MONİCA TODERAŞ - 505597041',2.5,'MTQ',120,0,0,NULL,NULL,'ff9e08fe-696f-4877-a50a-03ca709dfb92'),
('cbc124a7-7bda-446c-998f-23bf09482f0e','4eedd803-c2eb-4c64-a1a1-e22c19942b43',NULL,'MUHAMMET KÖSEDAĞ(K) - 644590959',2.5,'MTQ',110,0,0,NULL,NULL,'6b7bf40f-8730-4f82-9851-ca74df5b5a7c'),
('cbc29486-790b-4979-9221-8667c54cb5ab','17c87f8b-0e5e-405b-b6a7-cf1fa97d8bef',NULL,'ZEKİ ASLANER - 248799636',2,'MTQ',110,0,0,NULL,NULL,'b419b47d-089e-47f1-a6c9-53e095e845bb'),
('cbee6f7e-0aac-4974-adfe-62188f2fd7f0','0083df12-8def-4f58-8a5b-dcc872efe1c9',NULL,'THOMAS MICHEL  - 221685294',2.5,'MTQ',120,0,0,NULL,NULL,'34dc4506-d1e6-469c-93c4-450d31fe5fea'),
('cc107351-f9ff-45a3-8f53-0191f05cfdf1','c89b4b8f-de6b-427f-b91f-4a37cd7ecda8',NULL,'SEYFETTİN - 703914684',2,'MTQ',120,0,0,NULL,NULL,'89bb7b3f-2e28-43eb-a568-761a34765b3e'),
('cc17a00f-e3ac-4741-a6b0-a9b017b3324c','b537aa1e-ade2-4acf-b1b5-d951ad41cd18',NULL,'MEHMET ALİ YİĞİT - 221441605',2,'MTQ',120,0,0,NULL,NULL,'39bff5ea-6368-4a28-b3a2-8e798294a348'),
('cc25e1aa-1f2f-43fa-b007-c760ff11e776','6f16e9e1-9d4a-4655-9935-5dc2d9f7c9b6',NULL,'CÜNEYT ŞİMŞEK  - 517512652',4,'MTQ',0,0,0,NULL,NULL,'48f076a7-8fcd-4555-a2be-671e83e1b64b'),
('cc306c2f-d5de-4e5c-a365-bd165e636ea9','da88713e-fe1d-4ea8-bb4a-05eeae1e9d0c',NULL,'MOHAMAD NOUR TARRAB - 248739379',11.5,'MTQ',110,0,0,NULL,NULL,'247e7e41-18c8-469b-9539-739f6ede7d7f'),
('cc3c9883-9e58-4713-84cd-0aa1327da3eb','1a63b66b-7353-41b6-a41d-94761ce9e35e',NULL,'MURAT TEKİN - 371437952',2,'MTQ',110,0,0,NULL,NULL,'f88a76d7-303d-42cd-8c6a-7f28ae3b408e'),
('cc608221-b311-4b4a-bc88-9853e23b8279','f63e54b3-2d6a-4f8f-9fb4-30543c53b61a',NULL,'SUNAİM İBESKİ  - 982268643',4,'MTQ',0,0,0,NULL,NULL,'7a667252-ed58-40d2-8847-e86c3c8dd45d'),
('cc6273c7-a596-4bdd-8ee9-5f9dd0dd27ad','9440f9bc-d5fc-4e59-8183-c6def3c3c9d0',NULL,'GÖKHAN EYCAN  - 478751440',2,'MTQ',120,0,0,NULL,NULL,'4ab249eb-ffb9-4bfa-ab09-0071234e0617'),
('cc65f917-f174-430a-8648-92e6759cdaf3','cb22b274-06b3-4a87-b7b6-ea5184fc1f41',NULL,'KHALED SEMMO  - 613175888',7.5,'MTQ',110,0,0,NULL,NULL,'32af2488-e641-4d93-9e64-e4ff7977ab48'),
('cc78fedf-15cf-4629-bb60-c2205e34e753','9cc73e9d-3831-400f-b64e-c2ed1b3d8155',NULL,'AHMED HAMEL  - 221413192',2.5,'MTQ',140,0,0,NULL,NULL,'9c4a2d66-51b7-4378-aeac-e9b8af1f063a'),
('ccad7aef-d31c-4841-8fc8-90460e9ba063','95e2629b-9247-4869-9d88-300752cd2aec',NULL,'MEHMET COPUR - 675644991',11.5,'MTQ',120,0,0,NULL,NULL,'48ff80ab-53c7-4a25-ba1e-303a3d7073d1'),
('ccb7dfbb-804e-4605-b3c3-02862d34a468','3a7b5e52-678e-4935-9b04-0bca5598ebf3',NULL,'ERCAN DİKME - 959658567',4.5,'MTQ',110,0,0,NULL,NULL,'5e8ddd62-748e-4719-9bad-9f588fc2c7d3'),
('ccbcd381-3e62-41b4-a21b-622e1e19bc86','c0f7c4c3-a1ea-4a41-94a7-6648ea6b9685',NULL,'DUYGU METE - 371394707',2,'MTQ',110,0,0,NULL,NULL,'c3f87bab-e7f6-4ef3-a7d1-ff7cab237666'),
('ccc08583-82ef-4874-bc85-4abfef16d344','3553a351-ec9c-485b-9342-3947214664ff',NULL,'ESRA TEZCAN - 478728370',1,'MTQ',100,0,0,NULL,NULL,'bbe0a3f7-d405-4f31-b110-5a17a6297431'),
('ccef1bd0-9625-47ba-bf81-74d207ef2346','0593a272-fa9a-426c-b04d-156dbc856687',NULL,'BESTE NUR ÖZKAYA - 896769535',2,'MTQ',110,0,0,NULL,NULL,'02252192-88b5-496d-97b8-647d4bed1035'),
('cd28a5d9-2bb5-4503-9626-19e226bbd0c6','56df11ec-6fa5-404b-8fd4-15ac1fa585c3',NULL,'SERDAR BALCI - 616724751',2,'MTQ',0,0,0,NULL,NULL,'7c6f41df-7a66-4cad-b01f-112bedad69ca'),
('cd7ab99e-f8c1-45a1-81ff-4504181ea1c7','452223ca-abc8-4b8d-9dff-b511ba1443c6',NULL,'TUNCAY AKAR - 745483178',1,'MTQ',110,0,0,NULL,NULL,'1aab780a-270d-4d41-aa6e-89172259c9fc'),
('cda851db-0a15-48a8-ac67-bcb6bfcc48c0','696bbda8-4a96-4168-a29d-8b82eb81c1b1',NULL,'Öner alabaş - 478803764',1,'MTQ',0,0,0,NULL,NULL,'b851368b-bd09-4a80-b1af-2daea0faab4a'),
('cdbca9e8-832e-4102-b205-582f8314f16f','cb74d095-c88d-4c99-8007-cb094d56f37a',NULL,'CHERİET NAJET - 221287992',2,'MTQ',120,0,0,NULL,NULL,'e9d35722-4f61-4858-b63b-066b56b95e42'),
('cdc84778-07f0-426d-9f3d-c47da9a62b69','535e145c-03a1-414b-95ff-81e2fbd3f62b',NULL,'TAMES PREİN JANY - 982545187',3.5,'MTQ',110,0,0,NULL,NULL,'7cefa81c-deac-4617-8809-7002f9076b03'),
('cdf69963-d9b8-41b5-a8e9-8db8a31eaf41','fdb9d180-53fa-4d37-8073-3b67fb43d6ff',NULL,'REİNAS HAİDARİ - 644884110',3,'MTQ',120,0,0,NULL,NULL,'1943ad09-88d5-4276-8d90-1798cf356edb'),
('ce16e1b1-e211-44a3-b8f7-7252396e470a','7b61eef1-761b-404a-8ab9-752320b17cc1',NULL,'ENDER ÖZBAKAR - 734965369',1.5,'MTQ',100,0,0,NULL,NULL,'d7e6d100-83c7-4980-9636-2ea6521598da'),
('ce20a20c-fce7-4c43-a893-a92cebe2c8e3','758ad6bc-7034-42f2-9555-0a4e7ca6e969',NULL,'SELMA BAJRAMOSKA - 613633231',2,'MTQ',140,0,0,NULL,NULL,'37032355-b423-4a3a-bb38-ee78ac469313'),
('ce253b3f-f2b3-4f8c-98dd-242c075d99dc','48d63165-0c89-4eda-b4de-9c2e2aa8c1e6',NULL,'HASAN ŞİMŞEK  - 817317858',5,'MTQ',110,0,0,NULL,NULL,'792d6397-5783-4fc5-9cff-46f4a9961a12'),
('ce26d9e1-c9a9-48d5-a1d5-f3f5d64b702c','a154d6c4-9469-41ad-b769-d8a142e86182',NULL,'KREM KUTULARI - 223186784',2,'MTQ',0,0,0,NULL,NULL,'725c7dcd-e043-4d79-afc1-ac8b4c557518'),
('ce93112c-5fe0-4238-8b52-67ebfbd6fde1','7e6a88a8-82f2-4b06-8c51-fc0049bc66ce',NULL,'ARZU AKSİ - 745817440',2,'MTQ',105,0,0,NULL,NULL,'5dc3decb-6410-403a-b949-3324afe3dd6a'),
('cec2b246-ff4a-4fec-8427-f999d9263296','d85dccb4-23fd-4930-ad06-8442ee8d0a5d',NULL,'RUKİYE DARDANOĞLU - 976521198',7,'MTQ',100,0,0,NULL,NULL,'bb42b5ec-6fe1-44c7-ac46-c43f160658e9'),
('ceda6156-cc02-4327-8c13-463b08226cff','e1aa4957-04b3-4c78-b110-5dd387fb6188',NULL,'FERHAT DEMİRCİ - 517901924',2.5,'MTQ',110,0,0,NULL,NULL,'0d30fc8e-1bbc-4241-8485-e20902596e8d'),
('ceda9c26-4650-4d6d-ac73-f58a4f6041ff','551c2933-ccc3-4e34-a24a-238d635afbe1',NULL,'MOHAMED CHAMLALİ - 221920880',2,'MTQ',110,0,0,NULL,NULL,'c6e5fe36-4cb2-4837-b35f-93523014a3bd'),
('cee2f544-819d-4abb-a356-b25755604b95','81b4ab47-10b5-463e-b622-f6e9b6e1cb62',NULL,'ÖMÜR TOSUN - 78633450',3,'MTQ',110,0,0,NULL,NULL,'2456bba8-8438-4070-98e2-c287835345fb'),
('cef47731-c9ca-48d5-83f0-47061d90fa66','60945ba0-8523-47b4-90f9-26380789b5f4',NULL,'BARBOSA SHANNA  - 221403218',2,'MTQ',130,0,0,NULL,NULL,'381be1c2-928b-42d0-a2f3-8a80afb39ed3'),
('cf414557-52d8-412a-b871-908f3971209b','4fd83fb1-956a-48a1-b8da-68279a2b48c7',NULL,'DELİL ÖZTÜRK - 74529534',2,'MTQ',120,0,0,NULL,NULL,'7e7dc595-616a-449b-82e5-63d04f63ca8f'),
('cf4b67a4-f726-4265-959b-09ab63aab32c','c7133096-f50f-40a2-9a12-2b20cbbc5ea0',NULL,'HAMİYET KARASOY - 371876767',2,'MTQ',110,0,0,NULL,NULL,'4e848e66-1956-4160-9b53-a1fab280f1f6'),
('cf72634f-1216-482b-86dc-1b91d9bb864d','a8ec67e8-9dff-4a8b-8f17-7f02b9af1f6d',NULL,'HÜSEYİN ERCAN NAMAL - 428225143',4,'MTQ',100,0,0,NULL,NULL,'175392bb-7213-43c6-b3da-6b01f5de3b51'),
('cf756a9f-265a-40de-ba4f-db3fc6d14bea','d6789bd1-415e-4d11-bf49-671a1ae29809',NULL,'Mirkan cem - 315164103',3,'MTQ',120,0,0,NULL,NULL,'36f25521-b01c-4589-be32-1479a5a1b79e'),
('d004e99f-0cd5-4347-8f38-b74a255216b8','8c3a37e3-d878-4568-9c13-bb85b87da2d4',NULL,'UMUT YÖRÜK - 644243216',5.5,'MTQ',110,0,0,NULL,NULL,'0b9e594a-9050-45a0-a4fd-c58ac204bb9d'),
('d02568c6-b2ad-4cfc-b570-b1cb426a55bb','3201bae2-772a-433e-a0aa-fac59ad8d3f0',NULL,'BARAN YILDIZ - 745455914',5,'MTQ',100,0,0,NULL,NULL,'f07faed6-78e8-4324-9668-3a2d9d15f43d'),
('d0421cc4-28d7-4136-b824-4f903e79d63c','51646b2c-5f9a-428a-a5db-ccd63a55f013',NULL,'ERCAN GÜLER - 735121904',1,'MTQ',0,0,0,NULL,NULL,'dafa6134-d665-44c6-a01f-c4d1a6d1716a'),
('d0633cc4-cf64-4594-ad00-a4f62ab5c8ef','e43f663f-3043-4afe-9952-8a34e0cdd117',NULL,'MERVE KARADAVUT - 437998346',2,'MTQ',120,0,0,NULL,NULL,'778294cd-ffc6-4789-a055-1419d207d31f'),
('d07e96a3-e560-4c9e-81eb-2c4aeb4f661d','13ac9a29-b0d8-4420-8bb1-8b613dd137b8',NULL,'REZA OMERİ - 449394658',7,'MTQ',100,0,0,NULL,NULL,'6a397517-cdaf-4836-a678-f168177b94a2'),
('d0a094ad-9781-4726-888c-4fd9c3b09bf3','d6841a42-b56a-4b50-af80-9efdbb6e8b5a',NULL,'MURAT KARADAĞ - 248211803',1,'MTQ',0,0,0,NULL,NULL,'67ce6e25-ae23-4317-bb28-96a9c393e42f'),
('d0cded6f-3761-4c0b-a6fc-64ed56a64875','188892de-94ff-408f-819b-c301dbd7677f',NULL,'ZÜLFİKAR CAN - 745936573',4,'MTQ',100,0,0,NULL,NULL,'6c005507-054f-4904-8f84-b0774ba70335'),
('d0fdbd48-3464-4aeb-a423-095fb11ede09','eb4d2ca5-ca59-4cbb-a9c6-4097da5af5a5',NULL,'CAN ÖZKAN - 598262809',2,'MTQ',110,0,0,NULL,NULL,'46debcfc-622e-49c2-bc0c-3ace3fa84661'),
('d100d5b6-4c49-4a97-868d-64f1d443f79b','d83b4316-b99e-4d73-b673-62a64fd64f70',NULL,'RABİJE OSMANİ - 505332275',5,'MTQ',110,0,0,NULL,NULL,'31898da9-acb0-4ff9-aff5-1305eceaf2d3'),
('d1127f93-b06f-4ff6-80be-48ff04a12cbb','8ea56316-c2f2-4385-9fde-8d229c2654d8',NULL,'MUSTAFA YILMAZ SSH  - 745338988',2,'MTQ',130,0,0,NULL,NULL,'e9dbdb19-e82e-456b-8899-0bd05a5b98ed'),
('d120c111-12cd-4afa-8563-80ef6c55d2bb','3e8150ec-386b-4b40-bcc7-a95aac73a8d3',NULL,'DENİSA LANGU  - 982134567',2.5,'MTQ',0,0,0,NULL,NULL,'231cdd37-a6e7-4662-97a2-d7f8144e2edd'),
('d1221995-4d7c-4cc5-9a52-49e28820f376','be2cac72-97cf-463e-ac44-c92ab4ff3ed7',NULL,'ERSİN ESEN - 501256266',3.5,'MTQ',100,0,0,NULL,NULL,'7eeb3429-c256-465d-8b88-a60afd893ca0'),
('d1382611-8c5b-46da-9f92-02b24c58dd21','1e28c337-f62c-4cdc-98a8-a9a229dd8a10',NULL,'YILMAZ KARA  - 31922563',7.5,'MTQ',140,0,0,NULL,NULL,'c7e797cf-e784-4ba3-bf54-33ba82cd024b'),
('d15909e1-b955-43de-ba99-255d7e3efc62','19eaac57-08b2-4c89-9a43-c9d85c346d10',NULL,'MAİL BOXES ETC - 223923203',2,'MTQ',0,0,0,NULL,NULL,'6bb117b8-f17b-4adf-b1d8-76f485b60723'),
('d16b25c5-aca9-4dd4-8872-df7fac378943','5bfbaa05-c0da-4c27-a841-5b78034a261f',NULL,'ALİ KURUÇAM - 437707209',5.5,'MTQ',120,0,0,NULL,NULL,'1c4d1793-ac06-480e-9fec-1ed042f34347'),
('d18cceda-fc3c-4585-a479-2ad28855ba0c','1be8104f-0d17-4013-b22f-80ca6273bbc4',NULL,'HAFİZE BALİ - 371684650',2,'MTQ',120,0,0,NULL,NULL,'aa97f652-a0d1-40c6-aced-340a7cbb5564'),
('d19076b2-839f-4abc-b5f4-c39f315e8d01','769ff3aa-713d-443e-9db0-45cba65cb3d7',NULL,'MİKAİL ÖZBEK - 675749315',5,'MTQ',120,0,0,NULL,NULL,'5e876e3f-c0f8-4334-a426-ff4493e61c54'),
('d193a759-0cd8-4b84-9414-c46164b6edd3','ab3ee600-5d8c-4e9a-a2d3-ab7f66bb25e9',NULL,'RODRİGUES AMİNA - 982542299',1,'MTQ',110,0,0,NULL,NULL,'e015be65-fcb6-4e8a-8bc0-935d14b02ec6'),
('d1ff8f58-893b-4919-befe-80092726c9a7','70052b3a-3314-4bc5-861d-755aa1afa887',NULL,'FEHMİYE KESERCİ - 478949141',5,'MTQ',100,0,0,NULL,NULL,'ac7ab08c-6eaa-4002-9075-7a985dd13c18'),
('d20880eb-3473-4c6d-bba7-638bbe38f708','5ce7580e-f02e-4a6f-9bd5-653a3a959f9f',NULL,'RESUL YILMAZ - 478816607',1,'MTQ',100,0,0,NULL,NULL,'f99b50af-eb7f-4cab-b383-9c577efa25b1'),
('d20e6579-6602-4db8-bf41-f14f62eadf95','acb62b57-629f-41a0-9064-98bbd15dfc0a',NULL,'HÜSEYİN DÖNERTAŞ - 24886445',1,'MTQ',0,0,0,NULL,NULL,'b5e64b87-904e-46f0-aedc-c5bac9faa988'),
('d2164c59-e346-478b-a561-f7540be7d916','3297c5f5-b636-45f7-9647-c27ab600d460',NULL,'ÖZNUR KOŞAK - 745283034',2,'MTQ',100,0,0,NULL,NULL,'131fd469-6ac9-4301-8b36-4007cc1563c0'),
('d21f8cdc-4eec-4961-a43b-a41d9c279853','290902a4-ba5b-4c6f-9013-ac202e54f326',NULL,'BECET ÖZDEMİR - 478221533',13,'MTQ',130,0,0,NULL,NULL,'9103cb0e-e686-4e54-ab7a-664a063bc56c'),
('d222221e-b2a5-491a-9271-8d7a6d783a36','aa1a30de-aafa-46fe-a5d9-898c82920f3a',NULL,'DELİL ALGUNERHAN - 478677262',6.5,'MTQ',130,0,0,NULL,NULL,'19c26519-0688-4a4d-a323-ec65ddad8463'),
('d244ee01-be10-44af-8af6-e104291f95f4','438bd6af-2d2b-4c58-99de-1dc4cc82dd73',NULL,'NOM HASSAN ABDULE - 449806465',5.5,'MTQ',110,0,0,NULL,NULL,'bd343457-fe23-4870-a5c8-17ec7d82c974'),
('d24816dc-dc57-4c38-99d6-1ea433c319de','4eea4728-a0e1-4939-907c-9b58b600f8ae',NULL,'EURO MOBEL - 107394609',1,'MTQ',0,0,0,NULL,NULL,'6d9db45b-999e-401c-84f3-c6b4dbc128ec'),
('d2540d93-1ce1-4a70-959f-ca0225666e7d','60a7cc00-f812-4d0b-9b18-8722fed0c3bb',NULL,'MUSTAFA AZAMİ - 786398335',2,'MTQ',110,0,0,NULL,NULL,'fb2fc179-a854-474a-abee-016abeacaafd'),
('d257b985-eaf8-496e-8359-6f86eb975da1','b662983d-e8b8-44ca-9577-4e73720e09aa',NULL,'BABERIH LEİLA  - 221164226',2,'MTQ',130,0,0,NULL,NULL,'f6d4c8cd-bc6e-4af1-9285-67ed28f49565'),
('d2616b01-fe42-42b3-a00f-cc499792acaf','1331f4ae-4cf3-4c91-8524-985d577af1b6',NULL,'ÖMER METZ - 412647671',2,'MTQ',0,0,0,NULL,NULL,'b76bdb52-fa77-477f-afbf-6246f10d357a'),
('d26b43db-9e9a-46ce-9dda-d80d9da63925','594caa77-e684-4733-b1b7-457fda68d364',NULL,'AMİR MJAHED - 248618650',1,'MTQ',0,0,0,NULL,NULL,'d7dfcf55-ee39-4764-87f9-17c50166c245'),
('d28cd3a1-c0ad-4e99-8e5e-df129cd70a66','4b935bc6-8165-4431-8f52-8d93118250c4',NULL,'MELİSA DEMİRTAŞ - 478757775',2,'MTQ',130,0,0,NULL,NULL,'ffbb8f40-ae6c-4f70-9633-049e3b132e57'),
('d29b808a-8360-4a79-8d82-73bc8b0ced9c','71edf8c1-f5db-4a9c-9a79-c9295aea5017',NULL,'NAFİLE ÖCALAN - 976821188',2,'MTQ',120,0,0,NULL,NULL,'8277179b-dd64-4a72-b947-d8a5c906a9b0'),
('d29ce780-e75e-4359-b701-69d3687b63f1','234ad23c-d6cf-4546-810a-3b8210a643aa',NULL,'FATİH ÇELİK - 478603328',4,'MTQ',130,0,0,NULL,NULL,'8afa44a9-611f-49db-a99e-d5e01b5689f2'),
('d29d450c-b496-45a2-a4fe-2690bf5c645e','03e2e753-ab2e-43e7-934b-e038b8b753db',NULL,' - 12630810',1,'MTQ',100,0,0,NULL,NULL,'20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a'),
('d2c36f6c-275c-447d-b54d-bda322a09263','d5dfd35c-63aa-4b4a-b2e1-279efa540db5',NULL,'SADIK BEYSİR - 517110811',9,'MTQ',0,0,0,NULL,NULL,'8d1fae0e-1294-46bd-9c6d-bc64039e7933'),
('d2c4cef2-f6ff-4489-bec6-3f616789cef9','b6dd57a5-d381-47c0-b1d2-14dd2dce635c',NULL,'SHAHRAM RECEBİ  - 112423451',1,'MTQ',140,0,0,NULL,NULL,'dc68d2f6-756e-4103-ad16-7f8a226f0a50'),
('d2e6b8ba-9b6b-4b48-ac02-725dc49c4fc0','b221dcf8-ae08-4c9a-aaf2-2011e6923a92',NULL,'MUHAMMET ALTUNKAYA - 478535316',5,'MTQ',100,0,0,NULL,NULL,'bfb3177d-b014-4d5f-96ed-429027d88083'),
('d2f155ab-35de-4c06-9767-169908504436','29b0f07e-2992-4ab9-a5bc-63c5ee15cab2',NULL,'MURAT BAĞCI - 614460765',1,'MTQ',100,0,0,NULL,NULL,'e88c81a3-c41c-4a2d-94f5-a0819da7c913'),
('d2fa29c1-c0a3-4140-b073-756dd8e2c5b0','7092fae2-9c2d-434a-82bf-e89ae4fc6d88',NULL,'HASRET AVCI - 644890175',3,'MTQ',110,0,0,NULL,NULL,'12438c42-fc27-4ae8-8cff-d96af3f07b68'),
('d35354e7-6f0c-4ccf-8499-248c4a86b52a','df2680ef-f6c1-4455-b0b2-9bcf909588a4',NULL,'GİZEM YILDIRIM - 817500904',4.5,'MTQ',110,0,0,NULL,NULL,'a787358d-13f9-45cb-8b61-75798cab6ea3'),
('d365f1a9-8214-419e-9ff7-51abcb41e896','dadbd5fb-ada2-4cf3-af9d-994ab3e4f777',NULL,'HAVVA-HÜMEYRA DEMİR - 42851120',6.5,'MTQ',100,0,0,NULL,NULL,'53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d'),
('d366fda1-e53d-401d-8b1f-0e306955bfbe','afa1f1e9-960c-4113-a279-0cfb62bbdeb6',NULL,'ESRA SEZEN - 428122550',2,'MTQ',120,0,0,NULL,NULL,'7e235f31-a31e-4f86-a52d-66155cdbd820'),
('d36d941a-7bb0-481c-860f-882d83070d42','d9cc4ab4-53d4-49a9-a82d-ac7e6a65fe9e',NULL,'WASİ BAHİR  - 613373885',2.5,'MTQ',110,0,0,NULL,NULL,'7d1d7e49-6aae-4b9a-a041-419ddc6e5eae'),
('d37e285e-d44c-4b57-83fe-83058beecffb','4cecd0c2-58d2-44c9-ab4e-da8a1f03db6a',NULL,'ŞÜKRÜ AKSOY - 428930069',2,'MTQ',110,0,0,NULL,NULL,'73760c06-ddf4-438a-b4ca-f709ffabe11c'),
('d38ff22f-fc01-44ef-9094-b44e1a70a37c','f875a593-fa55-4d8f-8a0a-c511c5058a2c',NULL,'RANJA SABRİ  - 221904119',3,'MTQ',110,0,0,NULL,NULL,'b10467dd-1ad4-4468-8e8e-6d6e751fff22'),
('d3a29bea-d577-499e-8df6-9dacf5d640a3','3e3f3768-8811-4a8a-82d4-a8362bce7967',NULL,'MERT GÖKMEN - 644796086',8,'MTQ',110,0,0,NULL,NULL,'78463605-c329-4929-b567-24a3f88f4b7d'),
('d3af079b-bc20-4c4a-90d3-df5061d3bc0c','4e40dec0-ef05-498a-bf4c-60fd02cc3166',NULL,'HÜSEYİN KAYAOĞLU - 853766753',12.5,'MTQ',0,0,0,NULL,NULL,'161a3eec-2f1c-415c-8536-7e1a1da5b969'),
('d3dff406-0942-49c4-9bfa-aba740c586f3','cc931b3f-27a3-419a-a35b-806582ca9049',NULL,'FERHAT KARACA - 504780984',3.5,'MTQ',110,0,0,NULL,NULL,'46b1c67e-a68d-48e9-954a-c8a3113d2c63'),
('d3f4cf5d-a104-430c-9443-8665a860aee6','8d5d61b4-0286-4a55-b88a-fd5a88bb72c3',NULL,'MEHMET DAĞDEVİREN - 745485271',9.5,'MTQ',140,0,0,NULL,NULL,'02301bb2-05b9-4f43-b8b5-5ced5c8740c7'),
('d41fce4a-6591-4c05-a29d-ae9d83bc1fa7','170342bf-405d-4580-a68d-91a22c016181',NULL,'GEZİM PLUSHİ - 982629756',4,'MTQ',140,0,0,NULL,NULL,'7179853a-28db-4c0d-8dbc-b947110f9e96'),
('d4552713-c6b2-4615-a7a2-58e5273b3720','df05a081-ceb8-42fb-b76d-b563f9bc2cfb',NULL,'ERDAL AKDAĞ(K) - 644985861',15.5,'MTQ',120,0,0,NULL,NULL,'eb029e46-e69e-4bea-b717-f1c575aa7ca7'),
('d48f744a-b8bb-4bc1-97d9-5041f2d18f95','429a65e5-081a-4fc4-9012-5de14804f43e',NULL,'ALİ ÇETİN  - 982408783',2,'MTQ',140,0,0,NULL,NULL,'23362a6b-e084-465f-a474-3935662b512b'),
('d4adcf08-6aab-4496-b207-6b34ef32c370','3b1b2331-f648-4eff-b51d-75ddb046fce4',NULL,'AHMET GÜNEŞ - 478300434',2,'MTQ',105,0,0,NULL,NULL,'e81b1e15-b8dc-4eb4-8edc-6bac321e5e00'),
('d4ecce48-3da2-4d8b-8d6c-b047fdbeb820','2cce3032-bf4c-48b4-b8b1-d881872bd117',NULL,'Müyesser koçak - 745531225',5.5,'MTQ',100,0,0,NULL,NULL,'e7849612-fcb8-4368-bba8-194c1abdf919'),
('d50bf664-77a8-40ad-8b70-7e23af69b9ea','6e2f5de6-1df9-462b-84fb-56512728b7c4',NULL,'EMİNE-YASEMİN - 734109910',1,'MTQ',0,0,0,NULL,NULL,'48599652-b40b-4605-9b8c-4be79cb180f3'),
('d5212cbf-3b2e-4585-99bc-02e352c43788','acb5097f-ea37-4fdb-8be8-8e0dd97268bb',NULL,'SEDA TULGAR - 644152675',2,'MTQ',110,0,0,NULL,NULL,'676d9d67-fd03-4351-b823-77157f0e87aa'),
('d52c79af-9e07-48b2-8e3a-858b16b60b7a','206c984a-de8c-40b7-99f1-9c9c16e0ae29',NULL,'MÜCAHİD AL SSH - 437379015',2,'MTQ',120,0,0,NULL,NULL,'e3871616-22f9-4e6e-a66d-92c839f7de15'),
('d54bb5f2-7d39-47e9-b975-79becdae59f8','462519ce-e919-43ef-84a0-f21ab97822dd',NULL,'BEYTULLAH ARAS - 319324843',5,'MTQ',100,0,0,NULL,NULL,'37f59dff-6352-4082-a18f-d2696e483eff'),
('d5808365-bbfe-43ba-8dd2-81d5715c808d','409509de-a9a8-47c7-bd07-6b4325dd55e3',NULL,'DİLARA COŞKUN - 644684600',5,'MTQ',110,0,0,NULL,NULL,'0f40a488-b453-400e-a6e2-874e5a76c787'),
('d5cc6ae6-6dcd-43dd-876b-44e0c9efaa95','de7fa673-8211-4af0-a9c5-9f6596fe9c87',NULL,'REZA ÖMERİ - 449968881',1,'MTQ',100,0,0,NULL,NULL,'4cee8ce4-6f87-40e4-9944-489354d592c5'),
('d5de999e-0aed-4fb8-97f1-4d62edc9bff2','1e29be05-e1a7-49ab-bca6-1b932260d899',NULL,'SELMA BAJRAMOSKA - 613374971',3,'MTQ',140,0,0,NULL,NULL,'d86cddee-4893-4296-91c3-184ec1dc6b17'),
('d5e69a13-4f2c-435a-ba88-9371675e4819','72219dc4-1018-47a5-ae0e-9fc9f5dbe367',NULL,'IRA YİLDİRİM  - 613297420',2,'MTQ',110,0,0,NULL,NULL,'383f84ab-67a9-43c3-89be-23dcca380e91'),
('d60feba4-8778-4c35-bb98-9ed788fb4d00','da4851ce-318d-4994-9fec-d806fdd0dcf2',NULL,'İBRAHİM BAĞCI SSH - 745983500',2,'MTQ',105,0,0,NULL,NULL,'f89b4f3b-c0e7-417e-ad5b-c640c314a6a5'),
('d62ad448-157f-4bc6-9f05-6f34d1ae8f5a','13f222f4-9fa5-48eb-93fc-6c0ba76a0302',NULL,'ZİLAN BİLİN - 478250269',2,'MTQ',105,0,0,NULL,NULL,'0e1add8c-7e20-424c-83f0-cdb80a06f744'),
('d66a4476-0777-4cd8-a7c8-bb85c7386e80','fde1efbc-18ec-4825-a373-fb7879826879',NULL,'MURAT YALIN - 501216728',7.5,'MTQ',100,0,0,NULL,NULL,'54106caa-0b40-4d00-bc8f-c90cc5a93c72'),
('d6753cac-c71b-4323-b2c2-4b997c680a1d','78bc0c5f-bf1d-4225-8f40-52d8ddbadefc',NULL,'ULAŞ YILDIZ - 428177245',1,'MTQ',140,0,0,NULL,NULL,'5c90fa33-182c-4494-99fd-4c200fd9b3b8'),
('d69971c4-b0ce-41e6-ab8b-08e06636370f','13bf5587-6470-4c3f-97a0-72089f3eec73',NULL,'MUSTAFA DÜNDAR - 91030681',2,'MTQ',110,0,0,NULL,NULL,'deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba'),
('d6a86bd2-4cdf-4e73-b261-0b8d7b4e62c8','45c40468-10b4-402f-b36c-3975b92d36b4',NULL,'ÖMER YILMAZ - 644763473',3,'MTQ',120,0,0,NULL,NULL,'6a7e11fc-8af7-4a54-9444-d563a0776049'),
('d6ac75c8-570d-45a1-b642-b1070c2f12f0','c26efb00-59db-401e-afa8-46e9884a0695',NULL,'ELVİN ÇETİN - 734955536',5,'MTQ',0,0,0,NULL,NULL,'1447bfb1-b651-4bdb-b28a-c905ac844f05'),
('d6b3bc4b-9e99-4e39-a972-15a73f159dce','e1fcfdfe-2d03-42da-a725-843e0576de40',NULL,'KADİR ÖZCAN  - 428360379',4,'MTQ',100,0,0,NULL,NULL,'df54dcca-24e3-4d47-9eea-e04e05622ecc'),
('d6c1b789-2179-49a8-aa8a-31ffa3c9938d','9a3eed8a-b356-429e-a082-74bbb14d4448',NULL,'SOBA-PETEK - 41270066',2,'MTQ',0,0,0,NULL,NULL,'764df280-e03e-49f4-9e1f-81ff18f0251d'),
('d6c95350-4349-41f6-90a7-00762355a264','684e71de-23dd-4c92-a574-c0e58d9de7b6',NULL,'ALİ DİNAR - 47811313',2,'MTQ',130,0,0,NULL,NULL,'c15ec73d-23f3-470b-88b9-b482c773905a'),
('d6dd4c9e-b17e-44d2-97e6-97276d3fb579','d3c1489b-0e52-41eb-8491-748646cc817c',NULL,'BEGÜM KIRCA - 371801847',2,'MTQ',110,0,0,NULL,NULL,'bb01835e-3a0f-40ef-bb00-ab2b1bb945e3'),
('d6f66c3a-d1e6-465b-932e-492b41538c56','6e2c336c-acee-417c-9bca-8a5ed7ccddc6',NULL,'ETEM FIRAT YÜKSEL(K) - 644664237',5.5,'MTQ',110,0,0,NULL,NULL,'2b07945c-640f-49e9-a7a3-fdcc706090f9'),
('d7283d52-2c05-42a7-8127-475c6cd02b08','70ae7b68-a07f-4f4d-92ef-70fd46f53b62',NULL,'ARMİN IMERİ  - 221867394',2.5,'MTQ',110,0,0,NULL,NULL,'a4c0af65-f3e2-484c-99b8-617b31d3f22d'),
('d72d877f-3c2c-4bfb-ba92-5ee58094a501','d0f04064-4c90-4171-9403-879b00b6c77d',NULL,'MUSA BEKİM - 221624652',2.5,'MTQ',130,0,0,NULL,NULL,'4dbf93f9-e436-46b7-8455-aa2f9617afb4'),
('d7371f04-45e5-40e7-9c36-e0102c2eff6e','6f70f9fc-dbd4-4d16-ba88-6ad0d18eef13',NULL,'ZEYNEP CİHANGİR - 478678849',2,'MTQ',105,0,0,NULL,NULL,'1b163e3d-0d8a-4a00-b303-d452c744557b'),
('d781a415-18a7-417b-bb29-8b4e76a0422d','6720636c-428a-459c-bfd8-a70394acde52',NULL,'SALİH DURAK - 428718727',9,'MTQ',100,0,0,NULL,NULL,'566f5cfb-cca0-4c69-85df-9c8acc621458'),
('d7841a80-7923-4c14-9c1d-e635d8c1f4df','9c443cd3-43a8-4414-bee2-fd3ccc161696',NULL,'MUSTAFA ÖZTAŞ - 644147833',2,'MTQ',110,0,0,NULL,NULL,'d4bc4878-9923-4ef3-b0a1-5cd730e1777a'),
('d79ee919-1124-4e6f-b392-e97e8bd9f049','af90a65e-0026-4524-926a-c9a358375802',NULL,'CEYDA KARA - 437791163',2,'MTQ',110,0,0,NULL,NULL,'86762eef-fd62-4b28-b589-b418608643f9'),
('d7b0eb5c-d9fc-4e8f-af14-76a7816f76e1','b7fc7b41-7d92-42a9-8ac7-43208f3bc1a0',NULL,'GAFUR NUHA - 43758285',3.5,'MTQ',140,0,0,NULL,NULL,'9609be73-cca2-458a-aba2-d4fc54168866'),
('d7c1ecaf-c34d-405d-a34f-667c45d43868','c8a163cb-40ce-4412-a285-e69196757e58',NULL,'SAİDATİ AHMED  - 98274489',2,'MTQ',130,0,0,NULL,NULL,'c301b3d6-0b7c-4330-bda9-99b0f091d356'),
('d7e25782-7548-4c09-abb7-7ec367859d12','52394fe2-4b9a-4491-be58-be27c7370ae2',NULL,'AKIN KARUT - 644775291',3.5,'MTQ',120,0,0,NULL,NULL,'08903c44-0aec-492e-ae36-4f7ff8701446'),
('d7fe823c-ed8c-4059-b19a-ccd90d4c4167','c894c0cd-d60f-4d93-9104-40c0125ba18c',NULL,'FUNDA HANIM - 412149383',6,'MTQ',0,0,0,NULL,NULL,'60678b24-7d3d-4c4a-88dd-f65cb84dcdf9'),
('d8339d52-0f1e-4437-a534-c2069f57af77','dc3c7f80-5899-493b-8034-e7f381e904cf',NULL,'SEVCAN SALİ - 47888038',2,'MTQ',105,0,0,NULL,NULL,'945602cc-25e3-4d66-bae2-b70fa6008882'),
('d8bf2614-5afa-4b2c-9c4b-2262668116e1','3704aca3-9c5f-4d86-b2f7-35c074ba682a',NULL,'EKREM ASLAN - 910632087',2,'MTQ',0,0,0,NULL,NULL,'9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b'),
('d914a586-c857-4a7a-8d97-c3f7b4139b6c','c26a9b20-9dfb-4012-89f2-02fd2acf7924',NULL,'ADİSA BALANCA  - 982751509',5,'MTQ',140,0,0,NULL,NULL,'6786ccb2-517a-4991-b179-6d41d556a614'),
('d933c561-73b0-4231-b151-7f0e41a0ae4c','3c3ffc80-cc02-472c-a828-7c2a84d40a70',NULL,'RIDVAN BEY - 412241218',2,'MTQ',0,0,0,NULL,NULL,'bf2667e1-bf39-437c-9e10-0e2cf3b28d46'),
('d9392622-75e7-4299-a3be-18080a155eae','f055f256-8664-427b-8c2a-04fb2bf18df7',NULL,'LYUDMİLA KORUNOVSKA - 371121937',3,'MTQ',110,0,0,NULL,NULL,'cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0'),
('d93af915-d63c-4ce1-8ca5-7fa459d5ec03','082a5bc6-61a5-4447-be2c-bc0ec088391c',NULL,'ZELİHA AKCAN - 910291071',2,'MTQ',110,0,0,NULL,NULL,'3b5dfdd8-edb3-4e39-a9f5-5ea586431b28'),
('d94a8c6c-3e69-4fc3-b455-5ad9b11426dd','71eb55b4-585d-46d5-87b3-30a3184323f2',NULL,'ERKAN AKSOY - 126824871',13.5,'MTQ',100,0,0,NULL,NULL,'90a8f7ac-5c28-443a-9cbe-23f5c2942327'),
('d964ba1a-0192-44af-bedc-0dd4a87980ed','0d198e30-b177-4e93-ab0f-84f0aea4fa51',NULL,'KARABAS LANDMASCHİNEN - 412977009',11.5,'MTQ',0,0,0,NULL,NULL,'0fe32732-478d-4914-8b33-290a72aa934f'),
('d99c9a99-4ca1-429f-ba28-942b670b2bf8','fde1646f-c298-4356-85ad-94151c4c6d74',NULL,'YUSUF ASLANYÜREK - 478746196',2,'MTQ',105,0,0,NULL,NULL,'63733cef-e274-4dc6-b6fb-08178c1dd9ff'),
('d9a638d6-298f-49d2-83f8-b44e94b28636','b25e1390-292a-4b69-a530-cfac192716d7',NULL,'MEHMET BATMAZ - 46558561',11.5,'MTQ',110,0,0,NULL,NULL,'b4f193d3-ef4e-4341-9bd2-136dfaae75a5'),
('d9baa1b8-317e-4038-a692-5fee02b500de','ed19ced5-6d52-4623-a1bb-d42f368faa76',NULL,'SERKAN DOKKAL - 598961970',3.5,'MTQ',110,0,0,NULL,NULL,'07db3804-178b-4b42-ba68-1b6cc6758010'),
('d9c27709-ee41-4fc9-8e65-9521c2d770fa','8cfc0cf9-0194-417c-b572-24260493e9b8',NULL,'HASRET BEYAZIT - 449196428',5.5,'MTQ',100,0,0,NULL,NULL,'5e63d250-c815-4013-8092-cf4f9d3d7e2e'),
('d9d807bb-9496-4cf7-9686-f9fd14b42932','44348a04-71c3-4927-b2bd-ef967f5b8df3',NULL,'AYHAN KILIÇ - 614134006',5.5,'MTQ',100,0,0,NULL,NULL,'93cfee64-4853-4395-af0b-9caa4355f18f'),
('da1048b7-005e-4965-8c6e-8f8cce93707c','c77ad426-458d-4a78-8508-c8f4b6aa154f',NULL,'KERİM KUTLU - 478263896',3.5,'MTQ',100,0,0,NULL,NULL,'a4adc8bf-b71d-4a75-b862-396d61d1047b'),
('da18324d-4fd1-427c-894f-5dc0472baac5','18e078c3-b983-4575-bf4d-fbbe8d3a633a',NULL,'ESRA MURATOGLU - 786276080',2,'MTQ',110,0,0,NULL,NULL,'070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf'),
('da41532b-8a02-440f-a473-f2953ade5f59','fc1dc8ae-c816-4ded-8a44-895528856c76',NULL,'HURİYE SERBEST - 221416180',2,'MTQ',140,0,0,NULL,NULL,'104f5406-c5fd-4a46-8b03-63d308b6ac35'),
('da4690c6-9332-4807-b72c-302234371e26','618e8f36-ef25-47fa-8c60-ff31a2afa958',NULL,'ZÜLEYHA MUĞLU - 750486427',3.5,'MTQ',140,0,0,NULL,NULL,'9cc644ac-8707-4c8c-8387-2459908b1a57'),
('da7243c4-3589-4b83-88ec-70aa7de6ccf2','3f1e094f-03fc-4379-ae0a-755841f21f8e',NULL,'MASİS YAZMACİYAN - 517867004',2.5,'MTQ',130,0,0,NULL,NULL,'ab7b4af9-0f1b-4686-8ac3-9b36e49cae04'),
('da727607-a05a-445d-bd70-0331dfdd67bb','dd035808-013e-4f42-bd40-577f4064cbf5',NULL,'ENES - 412746738',2,'MTQ',0,0,0,NULL,NULL,'7f8c4888-b2a0-46d9-b594-dfcbf578986f'),
('da8b103c-7c88-48ff-965b-747f0f0e1f74','97df5bd4-978e-4e3e-9a30-56d0bfa8af28',NULL,'ELİF HANIM - 412922678',7,'MTQ',0,0,0,NULL,NULL,'f66bab09-5ba8-4aa0-8e7b-0bd18b10aea9'),
('daac5cc5-54e5-47ae-89d5-870251a012a4','78200a82-c28d-4078-9f6b-d30ec58b8223',NULL,'SEVCAN SALİ - 478863315',4.5,'MTQ',100,0,0,NULL,NULL,'38c7e847-02cf-481b-b2ca-7299334fad05'),
('dac55453-f36b-4720-bf1b-ef5e2d0be57f','d51fef82-b73c-4286-be67-885d5600261a',NULL,'YUSUF HAMZA DALKILINÇ - 478423651',5,'MTQ',130,0,0,NULL,NULL,'6ab64262-e10e-4c69-a128-c1c8101ef7ed'),
('dacf1389-29cd-42d4-bb6c-e74ffaea0a4c','316aab60-e7b7-4fa4-8dae-83eceffa98b3',NULL,'ÇAĞLA YILMAZ - 74594122',1,'MTQ',100,0,0,NULL,NULL,'5ee001c6-de4d-4cf2-89fa-9fd9588b6576'),
('dae6dc9d-dc36-4bf4-bde5-a75fb7a0391c','9c7c77f5-2407-404c-b630-4879f01e7802',NULL,'RÜVEYDA ŞAHİN - 127150146',4.5,'MTQ',140,0,0,NULL,NULL,'63c72f92-c955-4221-9d99-5fc007d4c399'),
('db55f9c8-6b22-4630-8d4b-0035af448ede','0016dac5-dc46-4ed1-8b6b-d7ad0d677bbb',NULL,'SİBEL HİTAY - 437812245',6,'MTQ',110,0,0,NULL,NULL,'3932d875-21e8-45e1-a16c-797670968c92'),
('db66452c-306f-4a48-82dc-6346dae082d4','034c2d6d-28b3-45bb-b3e3-97ab77b1da1b',NULL,'BERKANT CEYLAN  - 657784193',2,'MTQ',120,0,0,NULL,NULL,'3b1547c4-588c-40d9-9372-6dd0bc1df655'),
('dbb9cab3-22c4-405b-8564-015d73cfdef1','e8d1a39c-0f45-4c17-8a8e-cfb39154f66b',NULL,'BELLA MEUBEL - 830905881',2,'MTQ',120,0,0,NULL,NULL,'5cc7fdee-aea2-4e42-9349-1dfbca5c009e'),
('dbe6d775-6a91-4578-9382-6fdb4de98aa4','1b501d33-19ff-4e7a-b9bd-a745952dd5dd',NULL,'SEMA PALA  - 515747086',3,'MTQ',130,0,0,NULL,NULL,'87a56817-1368-4494-92c1-074a6979a4b8'),
('dbfc85ae-4a3e-4961-a101-871732ac47d6','017a471e-aabf-45f3-ada4-45115bbc39f3',NULL,'jusuf mehmedi - 982844191',2.5,'MTQ',140,0,0,NULL,NULL,'fa70b271-3bdb-47d3-9c07-aed6751f25bb'),
('dc36179f-527f-4650-8da2-15036400b5f9','7678dc5e-da41-484b-bf6a-84a8c6d537a1',NULL,'RANA PEKER CİNGÖZ - 735159660',2,'MTQ',0,0,0,NULL,NULL,'406ebbb4-13b5-4567-9950-1d118159195d'),
('dc37b2b9-93c0-4dd9-b5e0-156f59121fcd','1e7c278d-1131-46ff-9848-07db30254d9d',NULL,'YASEMİN ÖZKILINÇ - 437819954',2,'MTQ',140,0,0,NULL,NULL,'1b95f6b8-b318-4efe-90f5-5c3bca7a5637'),
('dc54438f-35c4-4b25-b987-774635a609a5','a5e1405e-e29c-4304-94c2-12682ad2eac4',NULL,'ESMA EROĞLU - 614859961',2.5,'MTQ',100,0,0,NULL,NULL,'f8003060-1e71-4fe0-87c6-64270a8a2100'),
('dc5d092e-8628-4bc7-8bff-149d01123e73','0553a2c9-d622-4154-899c-b78c6162739a',NULL,'MELİSA SAĞLIK - 478483851',6,'MTQ',140,0,0,NULL,NULL,'46528672-1c96-4785-80ba-77e3cec82ee8'),
('dc71ceae-f165-446d-a1d3-edc325e01140','1b92f7c4-8b11-42b3-96f7-e608a0bf0100',NULL,'EL HARRAR OUASSİFA - 982666330',1,'MTQ',110,0,0,NULL,NULL,'01408d3f-0754-42dd-86fa-5c2b8803ad4e'),
('dc86b488-9e94-4922-81ad-325440fa2d01','6781709e-243d-4193-b2b3-d207c363d151',NULL,'ERGÜN YILMAZ - 478890979',3.5,'MTQ',110,0,0,NULL,NULL,'c2738111-51d8-4195-8709-efd9bbe4d309'),
('dcde60ac-a8fd-4549-b250-907ebf596c80','d58dafe6-b11e-49d6-a83b-39a6eec35331',NULL,'AHMET YILDIRIM - 334206952',3,'MTQ',120,0,0,NULL,NULL,'1c435a89-18ee-4459-a82f-d4e80b7c4daa'),
('dced0524-b761-4ca0-ac07-65098b249522','d1349d21-a656-4595-a8ed-cb80dda5fe2f',NULL,'MERYEM YUMURTACI - 478154934',5,'MTQ',110,0,0,NULL,NULL,'8b1f42c0-ccaa-4899-9782-c3ad13f853c3'),
('dd1bed54-9755-4571-8fd8-905f8ffbcbf5','04d7ef80-c384-4408-a1c6-a4be417a7f2c',NULL,'ULAŞ YILDIZ - 428674355',1,'MTQ',140,0,0,NULL,NULL,'0a6c0b58-ffe6-490d-896b-e43d0294c257'),
('dd23a165-67c4-48eb-a68e-ec3de3a4b4e1','ea7c1235-7f12-4467-abff-ace6e95d7510',NULL,'MUSTAFA  - 45559266',8,'MTQ',100,0,0,NULL,NULL,'dc524c97-a5f3-4595-9e7c-64677cdda5fc'),
('dd37d25e-8366-4b01-bb38-1dca8247fbbb','2f32040b-30c2-45db-b1e9-d74eeced1bb4',NULL,'REMZİYE UNAT - 976898541',4.5,'MTQ',100,0,0,NULL,NULL,'834cc505-c304-4e3e-8d96-1e57f8a7cd48'),
('dd5cccec-5185-4b83-9ab6-c313583475d1','9c8de6f7-f83c-4772-92cf-1d66feb50658',NULL,'ALİ BÜKLÜ - 982506182',1,'MTQ',140,0,0,NULL,NULL,'9c622fdf-272f-4650-ac75-c35e205b6022'),
('dd5d29c2-0e78-457e-89d6-3562fe9c5bce','14a4e6eb-9243-461d-9b1c-df5851462041',NULL,'ŞÜKRAN ALP  - 614969446',1,'MTQ',100,0,0,NULL,NULL,'7786397b-871f-47e3-8e4a-cb1bd837419f'),
('dd5deed6-5002-4008-83d6-fec322b2bf2b','54bd6d05-8a78-412f-bccd-604e3f103b8a',NULL,'MEHMET EMİN KARAGÜZEL - 449704156',2,'MTQ',110,0,0,NULL,NULL,'c9a45f03-14c0-495d-832e-276189a2a69b'),
('dd84e443-cbb0-4e28-8374-92b9698bd20d','7847e2b2-616d-4306-9075-0742600ab43a',NULL,'TİMUÇİN SAYIN - 221786435',2,'MTQ',110,0,0,NULL,NULL,'bd7eda5e-ac7f-480c-b763-07c7b440ee80'),
('dde4881b-391f-4ddd-92f2-5a6f2896aeaf','7d21e579-9ac4-4f0d-baf8-9b9cb5eeb969',NULL,'ABDİL ACAR - 614788293',1,'MTQ',110,0,0,NULL,NULL,'41fed73c-dc58-4075-b35d-1e0c09c3eab3'),
('ddfdd67d-6eac-481e-8b20-99a9b236bf6f','3972cd9e-cc0b-4198-9447-478e9d0c45a3',NULL,'ÖZCAN ÇETİN - 614725757',9,'MTQ',110,0,0,NULL,NULL,'1577420e-fa6a-4edd-a200-5ec0a2cbd43d'),
('de157006-4ae9-48c0-b45e-a0112be9679d','2269d464-68c7-4c79-a893-b3823fbf2a33',NULL,'ALİ ERKOCA SSH  - 745942521',2,'MTQ',120,0,0,NULL,NULL,'5c0601b9-5e96-482f-b47c-52f985b49aa6'),
('de78938e-35c9-491a-9435-b36c396035f5','9acdbe1e-e9a4-4945-91d8-1bc6ab7e7a7f',NULL,'EMRE KIZIL SSH - 011222896',2,'MTQ',110,0,0,NULL,NULL,'36d38390-5cfa-4e01-8327-52dbfc708657'),
('de90e60f-f954-453f-bf96-f2cadb098b4b','83266f16-f680-4f74-b9d0-586446203f36',NULL,'SULTAN SEVİNÇ - 808935275',2,'MTQ',120,0,0,NULL,NULL,'75fc25cd-5f64-489c-b87c-7c749bd09cb9'),
('de9d393a-0a4e-4036-9d53-69988d877593','e05d540b-a0ff-4217-bdf2-ac9eb075084f',NULL,'MUHAMMED ERDOĞAN - 221396383',4,'MTQ',120,0,0,NULL,NULL,'b89cd91f-460c-462f-a284-8d6b2a01dd71'),
('deadb189-853a-431e-8a49-9e373c7ce44d','3a2e73c5-f7a3-4b75-8caa-92c9b5d065d0',NULL,'ZERDOUN SALOME - 437573248',2.5,'MTQ',120,0,0,NULL,NULL,'0057de4c-fa8f-4061-a2b1-334d4c1637e1'),
('decd02e2-ad21-4de9-8766-ed7bb2654c14','8b70e3dc-3751-413e-8878-e703ca94a16d',NULL,'SERDAL ÇEPER - 42899153',4.5,'MTQ',100,0,0,NULL,NULL,'d01b4f69-9644-4e00-b4be-407f21dbd835'),
('df22d951-13cc-4c67-a776-308f0666c8f8','27326c78-c9ec-4f92-b1c7-3b5f2d15a804',NULL,'FATMA KARAHAN - 478346989',2,'MTQ',130,0,0,NULL,NULL,'ec53152b-eeec-406a-993a-23f92d510c91'),
('df39072c-4fe8-4087-9aad-4e61232dca4e','bb5c9d8e-88f7-4ed8-b355-91995e0b4644',NULL,'ORHAN ÖZSOY - 745140498',2,'MTQ',105,0,0,NULL,NULL,'1b6f0f97-a485-43b5-9b80-a51adf1e7b83'),
('df3f01a1-76ef-4e0c-a362-7e57b703c4e7','8788284b-3431-4243-8cf6-8f27b8856c35',NULL,'ENDER CAN ORHAN - 371836215',2,'MTQ',110,0,0,NULL,NULL,'e1db05d8-3a36-4066-8f42-7fd65a69076a'),
('df4f88e9-c48b-4f83-abb1-7ebf24912696','61968e99-0717-4b50-9919-bc09ab570a90',NULL,'MESUT AKYÖN - 437481013',2,'MTQ',120,0,0,NULL,NULL,'1e6caf49-6860-42e7-be14-c5cb6dd899e2'),
('df50896c-67e7-4edc-8742-ca2c07044855','626debeb-b0f5-4917-a29d-b837ab49def3',NULL,'WALDEMAR HEİNZ  - 613940015',2,'MTQ',110,0,0,NULL,NULL,'7dba6aad-c685-4d86-96a0-5bd7caa80a14'),
('df6c4f6a-80f4-4959-97f0-20e405b6c598','c27544c2-9312-482a-901a-e825532d87a3',NULL,'SEVDA ÇAYLAK - 449475255',6.5,'MTQ',100,0,0,NULL,NULL,'887939c6-c572-4048-9ec2-13b2ba75c706'),
('df75ae96-d470-491e-9bec-83e3f3ea3b89','06416141-71b4-4e5d-9561-a8a07f068dc4',NULL,'YASEMİN YAŞA - 745818939',2,'MTQ',105,0,0,NULL,NULL,'88f68865-5f11-4a8f-8f8d-1e298ec5ff03'),
('df7890b2-c80d-4a57-a5c3-330d4f91b1f1','2e5742a4-7c79-4018-9098-aa6c20bef122',NULL,'ÖZAY ÖZDEMİR YILDIZ (SSH) - 221530805',2,'MTQ',120,0,0,NULL,NULL,'ba93047e-2113-4d72-8a99-44f3c9fe2b01'),
('dfa4b000-6ad6-4fb0-b693-5941ec7ce5d0','481802da-aa99-45a1-b63b-e8180ff68db0',NULL,'KÖSE BEY - 750926872',1,'MTQ',0,0,0,NULL,NULL,'0c3ef94e-a3b8-4021-9443-6b89d022c491'),
('dfab7946-50b9-430d-989a-3183abaa74bd','e73c098c-0c8f-4cce-b418-8136550f97d0',NULL,'MEHDİ NAEİMİ - 319276460',1,'MTQ',100,0,0,NULL,NULL,'4475a939-a408-4d10-a256-61dc03f279da'),
('dfb265d6-4218-440e-808a-b9eb41541f8b','09a3991a-db0d-46f8-964e-662651404776',NULL,'İBRAHİM AKÇORA - 614289770',1,'MTQ',0,0,0,NULL,NULL,'b413a505-b0a4-4081-803d-a0776c7e84fc'),
('dfdea3ef-36db-4b3d-833d-af206008e0e6','32700228-235c-47d3-b09b-0ce48e865a4c',NULL,'SILAMNIKU ALTRIN - 371396579',2.5,'MTQ',140,0,0,NULL,NULL,'1af2876c-3389-4499-8232-9de4f494db77'),
('dff076ff-6f6b-4f54-aea4-49dc698bd2f0','cd93cdb0-c598-4ff6-b977-433501df22e6',NULL,'KORAY KÜPE - 478693155',1,'MTQ',100,0,0,NULL,NULL,'a624a844-f729-4653-993f-bd28278f47e5'),
('dff7138d-2195-445d-a171-a69dd36707b1','3bed7848-0d13-4694-a415-6246d3d90f90',NULL,'MEHMET ERTÜRK - 338737901',4,'MTQ',120,0,0,NULL,NULL,'7792b079-15a5-4c2a-b33a-dea2dc61692b'),
('dffa0ef4-ab4b-4be0-aba5-85f492989b6d','f8e9827b-07b5-4148-872d-35ff28e90e30',NULL,'SELAMAWİT ESTİFANOS  - 982495052',2.5,'MTQ',140,0,0,NULL,NULL,'62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0'),
('e001c272-f411-4571-8f33-1e4f211675e0','0824c566-4779-4907-9138-08a9c7cb063d',NULL,'SELCAN BOZKURT  - 221118460',2,'MTQ',130,0,0,NULL,NULL,'5aa78870-c5db-449e-aff0-2a524544eba3'),
('e01c76e6-1625-43f9-8a4b-cdad1b3fbf6d','c9478fcf-f602-4c75-a361-031010bad68b',NULL,'GALİP YAYLALI - 338286320',2.5,'MTQ',120,0,0,NULL,NULL,'f0c7a240-326d-492c-88a5-bd8e007daa69'),
('e0250eb4-6938-4170-9f42-2f6452474e46','6539b77f-eda2-40ff-9242-9916b093d03b',NULL,'HAKAN AKDEMİR - 478110382',3.5,'MTQ',140,0,0,NULL,NULL,'4a8a3d2f-092a-4deb-84f4-be3d926123a2'),
('e0440471-5733-460c-81eb-d7b4c587c109','a532b53f-685e-49dc-b305-1b367debf771',NULL,'AKİF AĞCA - 734626870',4.5,'MTQ',0,0,0,NULL,NULL,'b5fab0b8-4818-41cf-8f21-23ec7d0a27d5'),
('e084fe82-9dfc-48ff-a6d2-72b55d80d2cb','8c1c3ca6-df94-418b-b241-aba2fdcdef01',NULL,'ALPER ALBAYRAK - 371400028',3,'MTQ',110,0,0,NULL,NULL,'babb1102-d4bb-4eaa-aadd-0d7c27ab01da'),
('e095c86f-fb28-43dd-b246-1a9d4ccade1c','09406ef0-cdd3-4fc5-b313-fd640f9d3186',NULL,'HANAN ALİKHAN - 73529249',1,'MTQ',0,0,0,NULL,NULL,'ca97344f-8f56-4954-b65a-e497b3d804a4'),
('e0cadd2a-e168-4008-81bc-d0039a02a9c6','cf70b5b6-4436-4918-9b57-b41f715a992c',NULL,'İBRAHİM AKARSU  - 501307359',6.5,'MTQ',100,0,0,NULL,NULL,'b7214302-d982-4460-ad8c-ebf440918b82'),
('e0cb5980-964f-45fb-a811-7ee2ecee5028','df65f815-71cd-4378-a1c2-cf4f426f72a4',NULL,'YASEMİN YILDIZ - 745346486',6,'MTQ',100,0,0,NULL,NULL,'d4eec699-15e8-4023-b611-78ceb15be51f'),
('e0f4c57d-2bc6-4193-a2af-9d0388baae2b','3faf6cf9-e7b0-4c9b-be82-7ca72b2360cf',NULL,'PELİN DEMİR  - 98272805',1,'MTQ',140,0,0,NULL,NULL,'bb2cf5e5-c2ff-4159-b5ae-e4c7a6578f51'),
('e1634ba5-d750-476c-8148-a5c04eaf1da3','0c164e6d-30a9-42c2-99fa-432ad01eeff1',NULL,'ŞİRİN ASLAN - 371193272',4,'MTQ',110,0,0,NULL,NULL,'a4f61a34-65e2-4637-828a-46f7b5c23cb4'),
('e165a9b4-d1a4-4f55-9d98-c0ef97252731','e9ec85e2-5904-4097-8bc8-7bb6fd10528c',NULL,'HAYRİYE BOZKURT - 598405313',2.5,'MTQ',110,0,0,NULL,NULL,'a132cd43-3a78-405e-8d75-c0a8147b581f'),
('e1807bc9-4706-40cb-b2af-27afe525bb7a','a633d620-e174-4983-8d36-5e1ab7052ff2',NULL,'ŞÜKRÜ YÜCE - 655688103',4,'MTQ',110,0,0,NULL,NULL,'801ba5f4-d6b6-411f-91c9-fd875339900c'),
('e199b4f3-7728-4f3d-a11a-c8fe372f4354','96cb7eb9-de72-492e-a81c-82b9ee7c06a5',NULL,'HAKİF ZİNAL - 644330933',3.5,'MTQ',120,0,0,NULL,NULL,'adf790b3-29b5-476e-ba13-8e482d9bc940'),
('e1b09a28-31b4-4bc3-8e7f-fb12a049e1d7','1a9f038d-94c4-476d-ae3f-c24e7c3a1b42',NULL,'SEBAHAT KOÇAK - 428761245',7,'MTQ',130,0,0,NULL,NULL,'63812a5c-02ef-4661-96d7-348a4af6ef8a'),
('e1bcd973-b584-4519-aeee-57ac3921ab41','8e01435b-14c5-44d4-bf53-e8d50a75047c',NULL,'ALEYNA İREP - 37119244',2,'MTQ',110,0,0,NULL,NULL,'267f6081-c782-4fae-8e62-aa926bd63c79'),
('e1ce5fea-0340-4eee-8fe5-5f7977650026','161692ed-9a83-4a7e-90f6-a762d64bfb9f',NULL,'HATİCE GÜRBAY - 22140129',2.5,'MTQ',110,0,0,NULL,NULL,'e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51'),
('e1f5b845-447c-415e-b905-7366ccd40682','b18a6b10-4a76-4a06-bb3a-07dcc940e79d',NULL,'SİBEL BAHÇECİ - 449902693',4,'MTQ',100,0,0,NULL,NULL,'2a84330e-2f6b-4172-ac76-ba18ce40bd1c'),
('e2097eed-8ea3-4108-86cd-8c438e3f93be','9020f137-180c-47dd-9caa-b53781b37962',NULL,'ARZU ASLAN - 675629833',5,'MTQ',120,0,0,NULL,NULL,'13382df8-a786-4221-b2be-81ba3d674937'),
('e20cbd84-2d50-4b20-bc79-1eb6c9f8b9e8','92586972-6536-4b47-a406-bf3f6c6d2a53',NULL,'LOWENSTERN - 412990147',2,'MTQ',0,0,0,NULL,NULL,'def82a96-8956-42bc-885f-988dfa22f789'),
('e22063cd-cb82-4cbc-a3fe-84a2d60a6149','55a2c8c0-d0f7-48b7-ae6e-3eeab310cb6b',NULL,'NADİNE NATUR - 817303639',3.5,'MTQ',110,0,0,NULL,NULL,'e2f03dd5-01f8-4162-8079-906edf448e38'),
('e22fae8d-c1af-472e-8950-5dca774d5efb','e9b41042-e933-4309-ac68-2ba5a3d0e022',NULL,'GÜLSÜN UZUN - 478118994',2,'MTQ',105,0,0,NULL,NULL,'92035bab-37fe-43c0-8f20-e718fcf5f1f2'),
('e235ed67-e0bf-4098-904e-7b82202ef0cd','1ccf2875-a99a-4bff-8b37-8cccea2360fe',NULL,'STEFAN SUCEVİC - 437133708',2,'MTQ',120,0,0,NULL,NULL,'6325741c-0a89-4585-b7b0-b2afd9a2b77f'),
('e2376d57-c7b7-40f0-b2ef-5474d3bc3360','7d8d98ff-291c-4d49-8253-d53ee09305ea',NULL,'HİLAL YILDIZ-MERT YETGİN - 221440431',2.5,'MTQ',120,0,0,NULL,NULL,'235ede83-046c-43b3-a7f1-746b19237d67'),
('e2506b15-a0e8-41bc-a880-7426faa85744','4a1fa38a-78e2-406f-bd06-3d3c3b2d8cd5',NULL,'SAS CONFORT CONCEPT - 268163356',3,'MTQ',110,0,0,NULL,NULL,'02d94ba2-d3a2-4840-ba21-792d26a0031b'),
('e2533d39-8a45-46cc-8d23-ca9337bacc10','3ab21ca1-dff4-4537-935f-542ed3fb0397',NULL,'İNAN PALA - 221210071',3,'MTQ',120,0,0,NULL,NULL,'c30ef00f-b05c-4a82-a40c-4d69d5352e77'),
('e257f394-d887-468e-962d-a423ee43ce7f','3bf3ef27-e937-4db6-9f7c-e7f5447ac0c5',NULL,'FUAT SÜRER - 437392386',6,'MTQ',120,0,0,NULL,NULL,'f068235e-a859-42b0-b6d1-68d5d67061a7'),
('e284047a-5dc8-4b3f-850d-af386083023f','69a7811e-a33b-4204-ad3c-a7a4f0b1ab70',NULL,'ALİYE GÖRDÜK - 598156869',4.5,'MTQ',110,0,0,NULL,NULL,'0991bee4-87cb-4b77-85ae-0f81a11d33ba'),
('e28a0eaf-dd81-48b4-8470-035e472218f1','6d72aba2-630d-4bd8-a0f9-aefc5ffaeb09',NULL,'DİE FABRİK OUTLET - 223422825',2,'MTQ',0,0,0,NULL,NULL,'7d8316a2-565e-4804-89d8-cb47b032bbf2'),
('e2afd1d5-4893-4f1d-aa56-256f57c61556','9be5af18-1e2f-4115-9d5b-a738767702b9',NULL,'GAMZE ÖZDEMİR - 319645924',11.5,'MTQ',110,0,0,NULL,NULL,'d054b4a7-35f3-468e-a1b3-28d2ebd815c0'),
('e2d33c2c-75f1-4c82-953f-3ed1a92b3ed4','19f6e9f4-1eec-4e2b-b2d0-c6a29209ef6e',NULL,'EMRE AFYON  - 745547550',2,'MTQ',130,0,0,NULL,NULL,'41362bb9-f3f2-494f-bf45-1e889e36f93d'),
('e30939fd-aa75-41d5-8774-46a98b20bf8a','a9e6b7e6-1b72-4ca1-af80-d0ea4dcbb07f',NULL,'GÖKHAN BEKTAŞ  - 910352489',5,'MTQ',100,0,0,NULL,NULL,'7eb8fa9b-b381-4a05-90c4-02d73cd76f15'),
('e30eb303-d9fc-4741-9368-9a14f539328a','1146e7de-2026-43af-9b14-d22181b3accb',NULL,'AYNUR ÖZDEMİR  - 91062607',3.5,'MTQ',110,0,0,NULL,NULL,'2791c56f-7265-461d-b1bf-4a378276ed53'),
('e31be667-fd17-4eab-8864-606dd223559b','14ffdd18-afac-42ce-92f0-5cc7ec209028',NULL,'DİJWAR TAŞÇEVİREN - 221485829',5.5,'MTQ',110,0,0,NULL,NULL,'dedf152d-bf4e-47e1-b412-9078997573d4'),
('e33fe963-ef4e-455c-9a5f-14e8ba68890f','b2fab3b6-40e3-4d82-9a6f-49c1ee096658',NULL,'SÜLEYMAN ACAR  - 319400399',4.5,'MTQ',140,0,0,NULL,NULL,'e31fb4e2-d701-4393-8a77-ea678eda57d0'),
('e36273be-35ed-48e3-81e2-7a776d38895b','ed6b1b2d-d1f5-4972-9f03-3b9b2f2b67db',NULL,'SEVİLAY BÖLER - 745824914',3,'MTQ',110,0,0,NULL,NULL,'c6f6261d-9af4-4463-9afd-4a26817ea19f'),
('e3686a50-65af-4da0-9a88-3ac06d2fbf26','22badfc0-c79f-4e70-9db9-6293fa482763',NULL,'ENVER HAN ALKAN - 37146102',6,'MTQ',110,0,0,NULL,NULL,'b87dfd8b-75ee-4a0e-bd25-1178a78774c6'),
('e3887b0d-ba9b-44bf-b442-ce44bafc417b','04e60bdd-14d3-4b59-8972-f4d2ad5ecc3a',NULL,'BERNARD BEJİQ - 644714329',3,'MTQ',110,0,0,NULL,NULL,'74637af9-7a7a-405b-a482-73059c1633c6'),
('e38e6e0d-f103-4591-9905-977e5a6a7afc','d72548fc-2357-4bae-924b-1d92a5c6e6ea',NULL,'BELKISA KAPLAN - 478403794',3,'MTQ',130,0,0,NULL,NULL,'b0f8549b-c1c2-4996-bf7f-22c82846b134'),
('e3bce033-4af5-4626-8b38-cc4bc8371a90','6bf16fe3-1231-498e-b7eb-798ddcbf5f1a',NULL,'YUSUF ÖZKULLUK - 808146332',3,'MTQ',110,0,0,NULL,NULL,'cd602635-5c4f-4c0e-bb1c-fccb24ae1cea'),
('e3c48e71-67dc-4ed4-a72c-8624b8906dbc','4a57bb59-1671-4c28-913d-dfff43244781',NULL,'İBRAHİM AKÇİN - 449215672',3.5,'MTQ',100,0,0,NULL,NULL,'77eac80c-4c21-48c5-b2d5-8d730b4593ec'),
('e3cfa4fc-52c2-4386-9574-7fd92f16eab0','43c9bd6b-96d1-46e0-9cae-91bee99b1125',NULL,'OGULCAN BAYRAM - 613822987',2,'MTQ',110,0,0,NULL,NULL,'4031214e-7ff4-4917-b027-c570d8c4e65f'),
('e3ecaefc-7750-4579-a1f2-c546419eab06','28049234-7d9e-4ab9-b03c-ee3075ea270b',NULL,'ALPEREN URHANOĞLU - 412366586',1,'MTQ',0,0,0,NULL,NULL,'5e10a116-1ecb-4aba-8b9d-2cd155929a91'),
('e3f40a00-094e-4eea-8474-619a8d6cc365','474ebff1-4c47-4372-8df4-dccf994246bf',NULL,'NİLÜFER YAMAN SSH  - 745525130',2,'MTQ',105,0,0,NULL,NULL,'74e67c9c-8558-47ee-aa88-c7ca5718c754'),
('e42de237-cd74-4c39-bfd2-bf7fa6d2333a','5cb20729-b644-4634-81dc-42bf1c44f15c',NULL,'SAMİ CENGİZ  - 248213954',3,'MTQ',0,0,0,NULL,NULL,'9d793d11-dd40-4c10-9d08-77df5b643ca6'),
('e42f7903-4898-4675-bb38-3490b417e068','847c962c-0521-4263-abf1-567d1cca6ffc',NULL,'DERYA KÖSE - 449208438',6.5,'MTQ',110,0,0,NULL,NULL,'3deaeffc-f7ae-4254-af05-4a37b20814a8'),
('e441a9ac-c7e0-4f44-914e-82717046bdbb','1e575ac6-cbb8-493f-8c6b-06b29e2d395f',NULL,'ABDULLAH ÖĞRETEN - 644917251',2,'MTQ',110,0,0,NULL,NULL,'be6b74bb-6b56-429f-8118-650dc26879d4'),
('e45ca139-d6f6-4d4f-a110-b3b283bc6a96','ad301133-d843-4978-b3aa-a5b41a7546ca',NULL,'GÖKHAN EYCAN - 478681299',11,'MTQ',100,0,0,NULL,NULL,'5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1'),
('e47db86f-d85f-411f-8e55-a6e29a1e2750','3880fb2f-7ba9-404e-9280-002ec3ab9b4b',NULL,'YASEF İÇEL - 478723817',2,'MTQ',130,0,0,NULL,NULL,'1e582ab5-26a1-4aad-96cc-f8f8f5507030'),
('e491e4c9-2420-4fe9-949c-005e1d065169','e10ee632-506e-40e2-be75-66d2bb89e068',NULL,'NESİME BAGCI - 614652730',1,'MTQ',100,0,0,NULL,NULL,'024b19f7-e2b8-4833-a610-6f1f48b3258e'),
('e4a1cc91-9005-485b-a31e-6cb69378bcbf','3b504b57-d9bd-46ac-ab17-5a37bb104e6d',NULL,'SİNGH PERWİNDEJİT - 418120869',2.5,'MTQ',120,0,0,NULL,NULL,'84a619fc-ad14-46ac-8e5d-a6ee1d4d043a'),
('e4aace1e-1a08-41c9-baa4-b5e861671e1e','ff26dc3c-f00c-4741-90bd-8d5637e06602',NULL,'SEMA KUZULUK - 644653549',2,'MTQ',110,0,0,NULL,NULL,'3942cfd4-4dd6-486c-8571-aa8d22e10518'),
('e4ddf183-8808-46ed-bfc0-b9443577160f','739ecedf-71da-4528-9ca0-7d3e49f10ff5',NULL,'RANİA PİSİT - 613464926',3,'MTQ',110,0,0,NULL,NULL,'44afd7bc-3d03-422d-ab40-1ff34cc96cc0'),
('e4f65e51-a7fe-4a35-9866-2269138da0ef','b9df55c7-660d-4bac-8235-4a71d3eae0b0',NULL,'MURAT - 73547719',4.5,'MTQ',0,0,0,NULL,NULL,'9f3a5616-6c64-44aa-90f5-c34379989ac3'),
('e5014849-1360-4be5-905e-4bf400ce49b5','7bae71e7-9aa5-478a-8125-6810dfef7161',NULL,'SILA SEVİL İLGÜN - 644877864',2,'MTQ',110,0,0,NULL,NULL,'a1113ea5-513c-4c80-af01-bf6fc31ed2a9'),
('e507098a-cf79-4971-966c-dc8f03be9cf5','c95a34d3-4c97-4af0-8be8-4690fb3ed528',NULL,'CYNTHİA GARLEE - 644126759',2,'MTQ',120,0,0,NULL,NULL,'f442c18d-3b28-447e-b106-1af2fe511995'),
('e52fef96-94dd-45a7-9d69-ab37f6d696ad','99916aed-75e9-4d6d-a587-32a89bed712b',NULL,'ZEKERİYA HOCA - 412903480',1,'MTQ',0,0,0,NULL,NULL,'e221f07b-ec1d-448a-801d-7d5296e3b735'),
('e551c10d-e0df-4719-8daf-99738a38eb7d','c3a86172-4d0f-431d-ae5a-83f497e376c4',NULL,'KENAN ACER		 - 910684336',5.5,'MTQ',130,0,0,NULL,NULL,'ba457943-412f-43ae-a291-8f5550a492f1'),
('e5552b8e-934d-4356-96a8-8ca33ab4e198','3ccc5859-5edd-45e1-883e-514581c84bad',NULL,'DİE FABRİK OUTLET - 223317066',2,'MTQ',0,0,0,NULL,NULL,'69ac6a84-035b-4ab3-b3f0-63c8136753f8'),
('e588be87-a770-4ad3-a985-5ecf4c7cb3a3','26a9f939-8c79-4c26-84b3-beb9badf8565',NULL,'FEHMİ TÜRK - 221570854',3,'MTQ',120,0,0,NULL,NULL,'e343cdb8-530a-4273-b51b-de80339b581f'),
('e58d9e15-a606-4d2b-9d27-74466969164c','56f58bc2-a78c-43e6-afed-be9170c0ea79',NULL,'HAKİM AZZOUZ - 657301470',2,'MTQ',120,0,0,NULL,NULL,'449134ef-d6ce-4d53-aa6f-961c987601fe'),
('e58f7e49-a483-4d38-a244-11037aa9a782','fc1102a7-a291-4e51-83ba-647db9a1baf2',NULL,'EBRU PAYAS - 657408169',2,'MTQ',120,0,0,NULL,NULL,'e2917618-7147-4577-94d1-c21f2fc158c1'),
('e5cc36f4-44a3-409f-bb23-16c07779d351','bdea5120-0efd-4093-a707-745c275daead',NULL,'SİBEL SAYDAM - 08159662',2,'MTQ',110,0,0,NULL,NULL,'666fc04e-4f35-40cf-9568-33fe5de5cfbb'),
('e605893e-059e-4aa2-8941-b630caed2801','37ccaf90-add3-40d1-8799-0acd85561372',NULL,'FİROUZEH NOORZAİ - 982561254',7,'MTQ',0,0,0,NULL,NULL,'690f6517-eb93-442b-b224-2954ac3c5231'),
('e60d484f-52c8-4416-94a2-1cbfa4f1117d','791630ec-2427-4d61-98c5-3162988688bd',NULL,'Nader siala  - 982707795',1,'MTQ',140,0,0,NULL,NULL,'3c99fa74-861a-4491-a1d0-f58a8971a7b2'),
('e62111b0-bc64-4a1f-acf7-59f88dd2a99d','2dc2c630-763e-4859-a7e1-b8c24353d0d8',NULL,'ŞEVKİ MORİNA - 976765698',3.5,'MTQ',110,0,0,NULL,NULL,'862c3997-124c-487c-86b2-4bc8c8575b1f'),
('e62d813c-4056-4525-b8b2-f97fbb568fac','a7e9aaf5-907f-438a-ab52-676c04a0561a',NULL,'Test - 412751955',1,'MTQ',0,0,0,NULL,NULL,'bc9cdd42-f20d-47dd-a305-ef4f97580e2c'),
('e62ee3c2-6774-427e-b42b-8d0aa68c611b','33601d6d-91da-4a92-9183-c19fc63d9bad',NULL,'VELİ ÖKTEN - 478284503',4,'MTQ',110,0,0,NULL,NULL,'72aa64fd-4469-41aa-9db0-8095ab4bfdf0'),
('e637327e-e207-43a0-b61b-6f5349a12298','6d96bf2b-b13c-4946-9991-02f1fa096c0a',NULL,'NEVZAT HACIOĞLU - 15153034',10,'MTQ',0,0,0,NULL,NULL,'652b8f3e-d7dd-479b-aacc-14b9a45a626e'),
('e66907e1-21ae-4837-b056-35854451c2b8','06ed4b1d-6f0d-4563-b6e9-fe1b638c9d9c',NULL,'IVANA ELİAS - 437426295',6,'MTQ',110,0,0,NULL,NULL,'2e84e42f-b241-4285-8be1-464db22053be'),
('e6812016-7810-48e3-b290-9f678c649dff','10d9d2d2-f710-438a-a4a9-cacbe50bb7ab',NULL,'GHATİA PARASCHİVA - 982163675',4,'MTQ',0,0,0,NULL,NULL,'be44de23-229f-41e6-8dac-6b3d7459bdc7'),
('e6918fb6-2d1b-40b9-9e0f-0ab04ae41bc9','1a1b7792-6108-46ff-aa89-6f25e763dc65',NULL,'SEMİH TASKELE - 221693523',2.5,'MTQ',140,0,0,NULL,NULL,'0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1'),
('e6bc3557-e681-4f9b-b96c-73190a9030bd','c9d5d608-fc08-45a2-95fb-9459592575a0',NULL,'MEHMET SEVİM KEBELİ - 59856960',3,'MTQ',110,0,0,NULL,NULL,'29ad9f78-9c53-4873-a500-c56a5fe3e826'),
('e6dbb430-ac94-43df-bf01-945d95edda91','92d3f9d9-9dca-4ca8-8fb7-ed56c0eab759',NULL,'MARİA JONANOVİC - 449417757',3,'MTQ',120,0,0,NULL,NULL,'d7b69750-f00d-4eff-a7d5-f4ec3b8988ce'),
('e6e561ba-f17f-4f59-8e66-721ff7f505dd','3ef93895-b441-40cc-b053-66c3c11334be',NULL,'KUBİLAY AKTAR - 910473991',5.5,'MTQ',120,0,0,NULL,NULL,'df44df14-24ab-4b9d-b75e-64df6dd06eb0'),
('e6ed1e4a-f00c-4dab-90ed-eb17ded4e9bf','131114b2-2e1e-40b1-a53c-f389a07bd032',NULL,'GÜLSEN ERDİNÇ SSH - 75052392',2,'MTQ',120,0,0,NULL,NULL,'5cd8c573-9917-4715-b37d-f245fd0bba24'),
('e6eeb0b2-990b-42e7-9e7f-f92dd6ae4a77','3f4668c3-ac99-4677-8c1d-9ddb76aea43f',NULL,'TUĞBA COŞKUN - 371672954',6,'MTQ',110,0,0,NULL,NULL,'6de04c45-fcae-42a3-aebf-5b140d42d81f'),
('e70db0ac-07d7-4117-a956-9137bbc947c6','aa0efccb-4501-4135-b62c-e29f71808441',NULL,'RUHAT DEĞİRMENCİ  - 501626049',3.5,'MTQ',100,0,0,NULL,NULL,'d9f2c22b-b9f7-410b-a99f-d86912b69cc4'),
('e70f2aa6-16ec-487c-8fd9-f6c709eebffb','0c065eed-195c-45ca-8c25-d617907fd95f',NULL,'BARAN RAKİP - 517764616',4.5,'MTQ',100,0,0,NULL,NULL,'4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2'),
('e718afe2-d0e8-4e54-9fd0-51ae155c4655','49594604-2ef1-49bb-97f2-9e41336dceb3',NULL,'ŞÜKRÜ AKSOY - 428390036',3.5,'MTQ',100,0,0,NULL,NULL,'877feceb-dcee-4240-b3d0-2096978d9783'),
('e7202242-eaee-4934-be62-b493b7e0f258','fd180be3-03fa-407c-ba45-2ad0b1b2abbd',NULL,'WALİ MAADAN - 418857351',2,'MTQ',130,0,0,NULL,NULL,'3be4ecd7-d378-4dec-aa13-23a899f8bbeb'),
('e726cb76-05bc-4eb9-9065-e47f3f6793f9','8f8c908d-ece0-4d13-998e-6a98425ea215',NULL,'BÜNYAMİN ILIKSOY - 478668622',4.5,'MTQ',130,0,0,NULL,NULL,'13870329-2aa7-4b40-89d5-b947358fe886'),
('e73b1946-b31c-46c4-a536-e5ba57811903','86d4840d-67ed-4add-8d37-9a1cc327657f',NULL,'NURCAN MANSUR - 478377442',4.5,'MTQ',100,0,0,NULL,NULL,'32ce6385-317d-48fc-9fc4-c553326c562b'),
('e7479b6c-11b4-4deb-a26f-153940a79c56','48d29e2e-aa91-4ac0-9599-ac6baa62c32b',NULL,'EMİN EKRAMOĞLU - 478678748',18.5,'MTQ',120,0,0,NULL,NULL,'b989a112-5f6f-468a-9d42-1bf6bdbf3300'),
('e7601af4-f733-4982-bff7-6f79a870bfeb','e822f076-bb1a-4efc-9025-579c8aa96cb7',NULL,'GELİNLİKÇİ - 412574307',2,'MTQ',0,0,0,NULL,NULL,'e7023ff3-7189-4722-b023-fb3fc983b16a'),
('e76a7983-0d13-497e-9410-6df6cc834ada','fd7ca54b-465d-446f-a061-3dc486ca41d6',NULL,'GAMZE ÖRSELOGLU - 515377519',7,'MTQ',110,0,0,NULL,NULL,'04fb8dfc-07be-4e81-a060-8a8a6f53ef14'),
('e7d5d64b-6e44-4c06-a5db-03f65bfeee37','83cf7a2f-937e-46a6-aa4a-46e71967fc0d',NULL,'NİSRİNE  - 019814367',2.5,'MTQ',120,0,0,NULL,NULL,'0adf917f-cd8a-434f-ae14-355f5b8a1a1a'),
('e7f33cb3-a51d-4306-affe-edd587e6911c','05ef49e1-7598-4b65-b638-83be5d385fb3',NULL,'Hatice avat - 750939503',1,'MTQ',0,0,0,NULL,NULL,'d2d00177-2e69-4d99-bbf2-01bd2986666a'),
('e7ff3d4e-df5f-4d5a-af71-eea6b03b6607','f79ef662-3589-43d5-8632-4618fd65245d',NULL,'SAFİ - 449634859',4,'MTQ',110,0,0,NULL,NULL,'db66575e-7eb2-4dcc-8fa6-1fe6496897e6'),
('e80f15e2-9a40-4975-8e44-126f6b9f1a71','23a888ef-6281-415e-b950-e1819ea16a1a',NULL,'MERYEM KAYA - 644178445',4.5,'MTQ',110,0,0,NULL,NULL,'806ac2ff-05c6-4761-b7c1-9dea0c05a1bb'),
('e81b5281-f0da-42b3-a4da-bf95ccb32ddf','1cb39939-57bc-44dc-87c9-73c5cc422cb7',NULL,' İLKER YAVAŞOĞLU - 613252288',2,'MTQ',110,0,0,NULL,NULL,'3b2b9553-2254-427e-9970-41bddf8e65b0'),
('e83467d6-5977-4b2b-a5d4-eae14cc0e7f6','13cf22a7-9720-435c-8e0e-9ca4c1a80861',NULL,'RAYAN SLEİMANİ  - 644403373',2,'MTQ',110,0,0,NULL,NULL,'458ed3b8-b224-474f-bf44-b16282a7b8f1'),
('e8448bf3-21e1-4cae-bd38-d19eb33816c3','a1131404-0f83-4c69-986c-06bf66fc7a3b',NULL,'ERHAN ÇEKİÇ - 644445996',5,'MTQ',110,0,0,NULL,NULL,'1e0e887d-6244-4f8b-a7d0-710cf6802438'),
('e8b0250f-ca0e-40a7-b217-35525aa23a57','bc4049cb-561d-4c2e-a678-69a842183f28',NULL,'ÇAĞLA SEVİNÇ - 745243104',1,'MTQ',100,0,0,NULL,NULL,'f22dfd69-914b-41e8-a1f8-32344e1e8fd9'),
('e8d0bfad-1bde-46f2-a6f7-7ac57a704ca0','25e1569b-041d-4fa6-bd7c-93db0fcc5b5f',NULL,'FURKAN SAYGIN - 478498501',1,'MTQ',110,0,0,NULL,NULL,'b9b2c28d-8252-4049-8b72-6810977e2ff3'),
('e93520ee-a784-4603-9b05-a5a2bcb9c3f8','c4270e44-4f71-4fdd-8b27-941e1e4a0461',NULL,'MAHMUT ÖZKAN - 745996696',8,'MTQ',105,0,0,NULL,NULL,'a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad'),
('e93e7a23-dc17-4019-9828-73c75e422bf0','5a49a9fc-d6be-4aae-9aac-0914249dd363',NULL,'SAMPAİ CATHERİNE - 982118676',3.5,'MTQ',110,0,0,NULL,NULL,'29ec9532-924f-47cd-86e5-76f47bbd3428'),
('e980f28d-3c05-439b-b186-31ef260513d1','3b14ea01-b51b-4987-84a2-b7aae7594176',NULL,'ANAHİTA MORİD - 598412225',2,'MTQ',110,0,0,NULL,NULL,'44de58ec-edda-43a3-a838-2ef9d452d2ff'),
('e984bba9-c125-4b98-88ba-a89187181a90','95607fc2-8de6-4314-a6f3-178a396977ea',NULL,'TOLGA KESEN  - 910796066',4.5,'MTQ',110,0,0,NULL,NULL,'a94cadae-57e8-4a39-9f91-6ecbab98c555'),
('e98c4665-4e1b-4f1e-9cf5-bddd9dc9d1ef','e3317e35-341e-4264-ab59-c11973a68711',NULL,'ANİSSA İFAR  - 221924148',2,'MTQ',120,0,0,NULL,NULL,'04d19bef-43c6-4b34-937f-982110f6f8e0'),
('e991c50e-83df-465e-a44c-15fc1b60d6cc','1d8e47f4-e0fd-4af2-8943-e062537414d4',NULL,'ALBAN HASANİ - 486741087',5.5,'MTQ',110,0,0,NULL,NULL,'308ddadc-251a-4960-a99e-9154ac7e4c88'),
('e9a79a03-81d9-495e-b7bf-494277255595','3357c0ce-97d5-4070-ab76-618f8b681d20',NULL,'GÜLNUR ENGİN - 598585736',3,'MTQ',110,0,0,NULL,NULL,'79b8f307-f370-445c-a869-4986e76c6399'),
('e9b57c5b-f5fa-4de8-8ded-e634831436ab','15231944-d338-42bc-bb20-a98e7dc66c2a',NULL,'OGUZHAN SARP - 501345257',4,'MTQ',110,0,0,NULL,NULL,'335d66ef-091d-4af1-8b0b-38c2daa9e96d'),
('e9ea7ea8-c1ec-46e2-97d1-d6c93485cb39','27f72bcb-ad5c-44ef-bb59-2cd5b841fd8d',NULL,'KIYMET DALMAN(K) - 644742878',3,'MTQ',110,0,0,NULL,NULL,'b90afa4b-4bfb-45de-b36a-051a3bf6a245'),
('e9f0bc7e-a962-46b9-a2f0-50b0e289ddd5','c088fe04-1353-4e18-8da5-311dfd5ea88f',NULL,'NURGÜL YILMAZ - 449393754',1,'MTQ',100,0,0,NULL,NULL,'2827eb07-f9d6-46f4-b3fc-8d044083d85b'),
('ea0241bd-2b69-402a-bcd3-208fa88a9de5','1e29d018-01e7-44d6-b467-605e310411aa',NULL,'EMİN EKRAMOĞLU - 478337610',2,'MTQ',130,0,0,NULL,NULL,'8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9'),
('ea081fdc-e2b7-4c69-8de4-495e4bfd3a84','cf25138e-9e5d-4177-bf01-10f17d5ce6e2',NULL,'GHASAN ALBUKAİ - 289168915',11,'MTQ',0,0,0,NULL,NULL,'cf345387-d0fa-473f-bd0c-f50c25450c85'),
('ea1e2efd-6001-47ed-914a-79ccf1c1b0de','e020f983-08f5-47fe-ab52-8778e73a3872',NULL,'ERCAN VARSAK SSH  - 745282619',2,'MTQ',105,0,0,NULL,NULL,'5638b80a-4caa-4fda-9164-868d6f925066'),
('ea262f44-123a-4517-a028-b276291c2c63','e66eb9be-a301-40b9-a95a-dc4535fb2348',NULL,'SUAT - 248103321',1,'MTQ',0,0,0,NULL,NULL,'791e33b7-8896-46f8-95f8-717ff7671574'),
('ea3008d6-f491-42a3-82ed-90bb7805a177','a331d611-e014-4a3c-bbe0-5ccd28203edb',NULL,'NİHAL ŞAHİN - 221899517',2.5,'MTQ',120,0,0,NULL,NULL,'f3fb5afa-e27b-4671-8dc8-33032a54e4d2'),
('ea335966-85c0-4572-9904-68190577fdcc','5c9e4077-4825-479b-8bd1-f90c15081895',NULL,'NUSRET GÜNEŞ  - 501163993',6,'MTQ',100,0,0,NULL,NULL,'e3943ece-5f39-454b-89e6-213b14b5658f'),
('ea398cd9-ef67-47c3-95d4-c899460b3326','44d9a193-4872-43d5-86a5-b58894d8c5ed',NULL,'ALİHAN ARATEKİN - 221322415',2.5,'MTQ',140,0,0,NULL,NULL,'cde89988-42b8-4e80-ba9b-ea5aebd3b21d'),
('ea3ca46f-7cb5-432f-8764-153e3abb31d2','afcd628d-c601-4888-83fd-424ce106e560',NULL,'MUHAMMER SARI - 614345013',4,'MTQ',110,0,0,NULL,NULL,'5594587a-f999-49e2-b9f8-adc5bdadc779'),
('ea62644e-9680-4879-9eb3-28ddf5eb8666','7212adf5-b81c-49ee-a3cd-e7961df2f7e0',NULL,'ZAINOUNE LOUBNA - 613809111',2,'MTQ',130,0,0,NULL,NULL,'16d7b18b-4de1-4251-9407-87c514282aa9'),
('ea655f0a-b2b6-4f65-83c5-01012419109b','76612438-4870-4b65-bca2-209d015f3c6f',NULL,'FERDİ KURT - 478996959',2,'MTQ',140,0,0,NULL,NULL,'955c7c46-bc72-473b-9a0f-e11f625e9690'),
('ea8143a3-2cfc-4920-ae41-edc4146419fe','ee654ac4-63c5-496d-bca1-3091eee60c92',NULL,'ÜMMÜGÜLSÜM KARAKUŞ - 745924426',1,'MTQ',100,0,0,NULL,NULL,'d78e9aef-d794-44e4-a9be-c55739db8e56'),
('ea9b5ad4-ab33-4df0-bee7-558509a9ea0a','d31b03d1-8328-4017-a9fa-bc8b3490a234',NULL,'ERKAN TAŞDELEN  - 221397270',3,'MTQ',110,0,0,NULL,NULL,'5d9fba6e-ed3a-4844-97a3-b9e244247031'),
('eaa9bbca-3c74-46c1-a3a7-e233b063192c','24b6dc81-23c9-4823-a9c7-cfdb34add1b4',NULL,'ZİYA ALTIN - 745390643',1,'MTQ',110,0,0,NULL,NULL,'a8bd3c61-ea6f-4b4b-9dc8-6a8216426958'),
('eab9cb37-2846-43ea-99dc-85c3845bb820','40449656-d26e-49ab-9b65-f867440427d0',NULL,'TÜLAY KILIÇ - 982880880',1,'MTQ',110,0,0,NULL,NULL,'261c7a7a-8bf9-4d02-8660-2292232ca442'),
('eac2e4f6-8172-4602-8afc-0b862d39c673','e3bce022-72da-4be4-9df3-3c9cc1c5bad0',NULL,'ERGÜN AKSOY - 657147391',2,'MTQ',110,0,0,NULL,NULL,'ce46c288-f229-4ec1-a778-6f45d324b302'),
('eade99f3-4598-4d7f-b86c-30846929a191','8fbdfeb8-ec34-4e07-84b7-564a63fd3882',NULL,'CEMAL İBRAHİMBAŞ - 437222135',2.5,'MTQ',110,0,0,NULL,NULL,'b7407633-c428-448a-991c-9ae8a31e3782'),
('eb12448c-6fb3-4492-9dc0-5e3d0ea3c854','f98dc684-0239-4767-89eb-13af885b282e',NULL,'DERYA ERDOĞMUŞ - 437578664',6,'MTQ',110,0,0,NULL,NULL,'942b967a-b7e1-48f8-9cb2-21dcf67db34e'),
('eb2322b7-f003-4f64-a0f4-bbdb83bfbd8e','6e281418-e853-4fc9-bceb-bcaf3840956c',NULL,'RABİA DULU - 517278082',5,'MTQ',110,0,0,NULL,NULL,'7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9'),
('eb3a4b07-4905-4ddc-bac8-21fa893becb8','6642cdd8-e8ef-403f-a04f-3432317d1c2e',NULL,'AHU KARUÇ - 437170354',2,'MTQ',120,0,0,NULL,NULL,'b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8'),
('eb56703a-96a2-43c1-8889-284dc884853d','694a091d-0ac5-41bd-9d15-397d3e9c4856',NULL,'SEBİHA DEMİR - 437233194',2.5,'MTQ',120,0,0,NULL,NULL,'0d746c5c-f194-4ed9-b71a-bf56f53af841'),
('eb6ede10-c6bc-4448-8181-2d65eafb0ee6','0980416f-97af-4301-821e-49cec9a906be',NULL,'ÜNAL KÖR  - 745660870',4.5,'MTQ',120,0,0,NULL,NULL,'3a1ef1a0-617f-4576-b71f-a4e298cceac4'),
('eb87e3c5-efe4-48aa-bc11-ad05f9dbe854','a2a56ab8-69aa-44c4-aa5c-61e8f2619bb4',NULL,'BELGİZAR GEZİCİ - 745173444',4.5,'MTQ',105,0,0,NULL,NULL,'5d6a4625-934e-46e6-87c9-560c887e2125'),
('eba1be77-b856-4d58-8f01-991bf4249f30','297d7c0f-847c-4b25-9e59-41880723b714',NULL,'MAZHAR BAYMAN SSH - 644803178',3.5,'MTQ',110,0,0,NULL,NULL,'de492754-6967-40e1-bf64-463ad84fdd39'),
('eba7d07c-efa0-490c-b240-4ed00dd31def','fa74001b-53bb-4439-86b2-6b74cd952399',NULL,'SAAED SALİH - 655571326',3.5,'MTQ',100,0,0,NULL,NULL,'f1036344-e4b5-4489-a46b-adbc8a18c0cd'),
('eba8d076-5493-450b-a8d0-a09b345bf41f','2eebe5b2-ccad-423b-a478-411e05d9f3b0',NULL,'ENES KARABAŞOĞLU - 598130952',3,'MTQ',110,0,0,NULL,NULL,'9a46cc66-4f61-498a-861c-8abfaff03b4a'),
('ebb2173b-213d-4cea-b8e7-b9ace7280fc9','eccc137e-e7dd-48e0-acca-e9a5666e82db',NULL,'ALEYNA - 817395462',3,'MTQ',110,0,0,NULL,NULL,'c0a6fef4-a5ae-4572-85c7-2f3b28086520'),
('ebb989ad-5741-4b6b-971e-bd746201321e','47385510-efdb-447e-8c4d-2ab0ed7bcddd',NULL,'EDİZ DİNLER - 478989383',2,'MTQ',130,0,0,NULL,NULL,'89246671-a5c1-446d-bc5e-be3c518b5d0e'),
('ebdd0c19-bc06-44f4-9c4f-376c0a3c0474','ee610af9-1127-4c63-aa84-05cb443d1215',NULL,'REYHAN BİLDİRİCİ - 3198601',4,'MTQ',100,0,0,NULL,NULL,'835a9700-3c1e-47b8-bbf6-cfa3c91675b3'),
('ebebd3b9-9b19-4e97-9f7e-9da92c461a63','c0130e82-1970-4acf-a716-c64594e36688',NULL,'ALİCAN KABAK  - 478224735',3.5,'MTQ',140,0,0,NULL,NULL,'fa763b5d-87a5-4561-b94a-76c46bc6cab0'),
('ec0dd3ec-39c1-4da1-b201-52b37e2984e8','a6c41512-694c-4a31-a5b0-de29f35bb19c',NULL,'MEHMET AKDAĞ - 614666366',2.5,'MTQ',110,0,0,NULL,NULL,'5d1c34cf-e5dc-426c-87f8-ac812da1f3cd'),
('ec1134f3-16ff-453a-9c5f-10dfd015e23d','07fed9b5-dcdb-4526-b19d-6919a1bf1509',NULL,'SAMED DERE - 910717262',8,'MTQ',110,0,0,NULL,NULL,'2aaae1dd-f6fd-4240-80c3-399ffba3fc37'),
('ec3106d6-221b-4f0a-8035-06e28481dd66','49770460-8d52-4931-a39e-186140453642',NULL,'GÜLSÜM KÖNÜ - 598373943',2,'MTQ',110,0,0,NULL,NULL,'94fef2de-86f8-489c-828b-0b9a5e9ec1b4'),
('ec79ce6f-1662-49c4-a72c-64f02b7245d7','7706e7bb-9473-4a88-bf67-e8dc25e9aa19',NULL,'BURHAN AKMEŞE - 745761149',7.5,'MTQ',140,0,0,NULL,NULL,'cb8ab28e-84c0-4246-b10d-ada59c224895'),
('ecc94ba3-85ae-431f-bab6-b1aefe12abbd','b3bab7cc-6404-4387-834b-e7224c4fdeb2',NULL,'MEHDİ NAEİMİ - 319275080',4,'MTQ',120,0,0,NULL,NULL,'24ce526d-0f1b-4457-8342-2e64978bfedd'),
('ecdf7ed9-0b10-4cbc-95cc-a294b97fd3a4','e68c12d4-cceb-4ec0-b512-3af9941f5d52',NULL,'MİTRA MESKİNİ - 449866390',2,'MTQ',110,0,0,NULL,NULL,'4385dea8-b863-44f4-a1cb-c589317b4ab9'),
('eced2a25-a521-4721-8d9f-7a5c7a2345e1','2905d4f1-8500-40a0-95a2-29005f790747',NULL,'MOHAMMAD MASOUD - 449234624',7.5,'MTQ',110,0,0,NULL,NULL,'ea9d7d59-ea20-4a4a-af1f-0788fb179d8a'),
('ecee2082-1d66-4a58-b1a5-6660eb2b1044','48b4d62c-d2b1-4c19-a3f7-482036c7893f',NULL,'AHMET EMİN GÜL - 910201328',3.5,'MTQ',110,0,0,NULL,NULL,'3f7ffe14-ff1f-4d95-8dd4-55570a12656c'),
('ed078ccf-8e3f-4d48-bbee-7ab37501f5f9','b8718466-d2ed-4ca9-8724-4495e28fd53c',NULL,'SWETLANA NESCHİNSKİ - 221989961',2,'MTQ',110,0,0,NULL,NULL,'46858fce-23b4-4734-be3f-9ef1f6cd02e6'),
('ed127348-7bd5-40ca-a4d8-f4a8548676d2','d57dcddf-f93d-4725-8c3f-ac252cfb007d',NULL,'MİHAND SAFAE  - 221257971',2.5,'MTQ',130,0,0,NULL,NULL,'1ee695b2-e6cc-43a6-8353-dfb5294700ed'),
('ed18c601-f6d2-4abe-a799-ec301f0e7878','ee6a462c-8453-444e-8b33-b688e649eb82',NULL,'TAYSUMA ESET - 221944135',2,'MTQ',120,0,0,NULL,NULL,'e015e4c5-099b-4cf1-ade2-891af283be78'),
('ed33619b-5d24-455f-95dd-45fb227bf1fe','01c52433-650a-4148-b06e-adf6e15081a5',NULL,'AYŞE DOĞAN - 982415045',1,'MTQ',110,0,0,NULL,NULL,'93c365fd-397d-46ce-91b9-bdd586250f02'),
('ed7b8c0f-0cb8-4d40-90f4-da51b4d57281','aed70b4b-9597-4100-ada7-825286786d6c',NULL,'FATMA FİLİZ DEMİR - 910657387',3,'MTQ',120,0,0,NULL,NULL,'d7d56728-9768-4bf8-8387-7f8b0fc62a6f'),
('ed8fc296-4477-4b5b-8568-7f9228ce6844','6a1fe653-081a-404b-8061-3c9fa12750a7',NULL,'ÖZLEM AKAY - 371440688',2,'MTQ',110,0,0,NULL,NULL,'b773320b-83f9-406c-8d3a-312ca17d7ff8'),
('edc2ea90-73db-4145-b2f2-eeae28b5e3d0','dd057854-2d9e-418d-8703-aef063440f76',NULL,'ALİŞAN CERCİ(K) - 644847294',5,'MTQ',110,0,0,NULL,NULL,'a856c3b2-bd1c-47db-b02f-9127f2bb4d67'),
('edc7ddbd-565f-4417-a4b2-3e54bdc65482','3f576c54-44ba-41ca-a4de-58fbf7227028',NULL,'TUĞBA GÜLSEVEN SSH - 644860505',2,'MTQ',110,0,0,NULL,NULL,'86489c05-a1b1-45e7-87e0-efdf57f77ac9'),
('edcaab62-a385-4100-9da4-836baef00f8c','d587e27e-2786-4858-8e74-df3f64e13de2',NULL,'GAMZE ŞAHİN - 437400305',2.5,'MTQ',120,0,0,NULL,NULL,'458ad7cc-9bf1-47ee-87b0-b3ad346d4b07'),
('edcc19ca-63a5-45d3-8af2-aa72a6f1c66a','44ba0c49-e506-4726-a137-ba9084d3c2fe',NULL,'ÇİĞDEM UĞUR FRANSA - 221158425',2,'MTQ',120,0,0,NULL,NULL,'13c3c792-77da-4c87-b857-707f973cc267'),
('edd22188-c6d3-4a50-8517-189523a84539','15f787ff-9355-4993-b0db-8b1cd7aa3865',NULL,'AYSEL OK - 976245604',4,'MTQ',100,0,0,NULL,NULL,'3610bba5-de59-4197-9fdf-4ea4e4998699'),
('edd61570-5b1c-44c9-bbd1-345b61d8d4a7','aab11d85-1c29-4437-b00f-1acf162bf72f',NULL,'ANGELİNA KHALCHYTSKAYA - 73574376',1,'MTQ',0,0,0,NULL,NULL,'5b516169-2e1d-421d-a411-a20956666225'),
('ee39ea40-86fb-4a1b-a88d-a81613c4a651','e030af1c-7821-44d3-88b0-863fc2810490',NULL,'MELEK IŞIK - 644739716',2,'MTQ',110,0,0,NULL,NULL,'b4928a65-9e4d-47ad-b0bf-11fde9288de9'),
('ee3d3561-f6d9-49f3-8fcc-8b302d85bde8','c603ad57-d10e-4b8a-99a4-9c0b62ef576b',NULL,'ROSA DİDİEVA - 52817450',3.5,'MTQ',0,0,0,NULL,NULL,'2094040d-2cfd-4028-9115-e50a2e855156'),
('ee578173-8734-4424-b4e6-81930fff45df','d951b8eb-e6e4-4aec-a17d-f8f96db5e559',NULL,'ÖZLEM POLAT - 37176846',4.5,'MTQ',110,0,0,NULL,NULL,'964fcf95-183e-4624-afee-8e83b0ce2134'),
('ee81dc05-18f2-4b97-8d11-aaab21da8d47','7487a631-cba7-4cd5-a9cb-ca119ac57f32',NULL,'FATMA GÜR - 745382052',1,'MTQ',100,0,0,NULL,NULL,'f7d5b080-0e6d-41d4-ada4-022be6e316f2'),
('ee8dc822-9807-48c5-846c-d469bb6843d9','dc61d568-9c50-42e1-bbc0-acf7bff69528',NULL,'HATUN ŞİMŞEK - 842151692',2,'MTQ',120,0,0,NULL,NULL,'c79902d9-089e-44e4-a536-9307c5bef39d'),
('eeaf4c97-460b-415b-ad7c-9c02b9468b94','707e104e-20ee-4292-8454-f76dd0d8679e',NULL,'AHMET GÜVEN  - 657947887',2,'MTQ',120,0,0,NULL,NULL,'62f77eb8-8c8f-460b-b294-ae8437220ece'),
('eeb903df-35ba-49c7-9ae3-ec784408daf4','6549bceb-d8bb-417c-a1b7-56e65a5ce41d',NULL,'SUZAN ALTIPARMAK - 501339138',1,'MTQ',100,0,0,NULL,NULL,'e5d95e08-a8c0-4133-845e-d93395f55044'),
('eebffe32-e14d-4d9f-b3db-c1c8b4afb558','e7f7f8e8-65f7-4b59-aceb-52eaedc372eb',NULL,'GÜRSEL KURTULMUŞ - 428659303',5,'MTQ',120,0,0,NULL,NULL,'39266e8b-9caf-4386-a36a-8133aa79e848'),
('eef6957b-6cc7-476e-88c8-2c3b55cb976b','42dbaca5-f1ac-489d-a86d-4767df5fa50a',NULL,'VEDAT ÜZER  - 982342488',2,'MTQ',140,0,0,NULL,NULL,'c8b96623-e586-496c-849d-fbff1ec7f11d'),
('ef036405-3276-4f4c-a8b9-15e7660a1930','449e47ec-5ed0-4c0b-adfd-23c9bef78971',NULL,'AİCHEH EL-KATİB - 221416475',1,'MTQ',100,0,0,NULL,NULL,'8d6ed7c8-fbb3-458c-b0c4-41d279db9b32'),
('ef0e2861-f63d-4c31-ad82-0fa9212a017d','2328addb-6c7e-4289-ba8c-7cbfd58f6416',NULL,'BUSE HOME - 755919446',10,'MTQ',0,0,0,NULL,NULL,'5ff8b69d-3f0b-4991-8c5b-8c9973d39429'),
('ef123353-45df-49f5-a6f5-0f3ef140df8d','31c4b552-5b84-49ce-94e6-13402e0c2bf0',NULL,'ORASAN DAVUT  - 98275727',2,'MTQ',0,0,0,NULL,NULL,'0b896bd7-2c3b-47b7-8e7c-81c9ececb79e'),
('ef36c191-b3c7-4baa-bb42-077bb5c08a82','db1063a9-8b59-4de4-9f53-c6c68e83f9d7',NULL,'NADİDE BAHÇEÇİOĞLU - 478283773',1,'MTQ',100,0,0,NULL,NULL,'95091d3e-5f38-4f5f-9e36-f30d00c51ff3'),
('ef5e46e4-4b09-4536-810f-cd5b3e097c15','201b7910-20c8-4c7a-a535-b9a448bd179a',NULL,'AYŞE ACAR - 221639055',2,'MTQ',110,0,0,NULL,NULL,'6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693'),
('ef66433d-36f4-454a-8d86-d651e6830d4e','f35a5f9a-85d3-4ab8-884c-564fec419de8',NULL,'ASAAD KEBBEH - 248418017',1,'MTQ',0,0,0,NULL,NULL,'cb3442f8-0b1a-4b4f-8d8c-fefae675f848'),
('ef6eb0bc-9460-4195-904b-a70eeb137e5a','8d707d40-77fa-4382-9ec2-18dc9861a92f',NULL,'OKTAY TAN - 319533001',4,'MTQ',100,0,0,NULL,NULL,'aeac836e-0479-4329-a118-27c77a0ff22d'),
('ef8571e5-1af3-48ed-afa0-9b059af06b1a','3586dae6-a6bd-4cbe-83ff-f9e6cd33379b',NULL,'DRANCY MEUBLE - 268443203',2,'MTQ',120,0,0,NULL,NULL,'c83b1650-e8ef-42b8-bd59-85142002c440'),
('ef886e02-40f6-4835-a83c-edd68c1fb69a','fd4d9ff0-0650-4233-9e39-feef8d060129',NULL,'ASLIHAN GÜÇLÜ - 745554582',5,'MTQ',100,0,0,NULL,NULL,'b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0'),
('ef960d13-31e8-4e50-bd2f-4b1f72927c65','b60e6c70-bee8-4994-b3e4-dae8c04f8a37',NULL,'ZEYNEP ALKIŞ - 745964132',3.5,'MTQ',110,0,0,NULL,NULL,'3f82ae91-19cb-4663-bb33-377d660eea84'),
('ef984e83-1853-4cf1-bf61-ecfb05226df6','3b40e0f0-0b47-4168-b9e6-6e9ba634e017',NULL,'Abbas sertaç - 745715303',7,'MTQ',120,0,0,NULL,NULL,'7af47c44-93b1-42ec-813b-77c155a1b050'),
('efad2ab5-2280-4717-b6ab-0a1e93b5b9ce','4498f1e0-6661-45a1-a793-3a81b7fe4e4c',NULL,'SONGÜL BALTACI - 64446005',2,'MTQ',110,0,0,NULL,NULL,'a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd'),
('efb5d5ad-a2f4-423f-9126-eca1d2752149','bd198385-d400-4ca8-a17b-0db06802f462',NULL,'ÖMER KOLAT - 478593603',1,'MTQ',140,0,0,NULL,NULL,'28745864-aae9-4957-9346-b61332e96fff'),
('efba3c14-7152-4488-9575-2d9090d869d2','0198f921-62bb-468c-aac1-516d594b2b2d',NULL,'TURGAY YILDIRIM - 428510909',1,'MTQ',100,0,0,NULL,NULL,'31910f60-232b-44e2-8f56-f03979280a12'),
('efc72e4f-f48f-4186-8a5f-cf98f339cbbe','3b46e61c-989c-4179-b870-2538a263716a',NULL,'ONUR PEKŞEN - 478958320',2.5,'MTQ',110,0,0,NULL,NULL,'a53b1986-8cad-4d57-b0e3-756673c6e406'),
('efc79e64-1c8a-4324-98b0-e01b5de3ae39','1ec3bc6e-fe4c-446b-bbde-f86617ef084e',NULL,'Ayşegül telli - 449235098',1,'MTQ',100,0,0,NULL,NULL,'e2cd59c5-096c-4f6a-9181-6be527344ec8'),
('efcc5797-c013-4eed-8e31-c287b2506507','fa8db1a2-aa41-4f46-a476-f73d752aa005',NULL,'METİN CAMGÖZ - 734957360',4.5,'MTQ',96,0,0,NULL,NULL,'b06c319e-439b-4418-a1a2-2e22a78014a8'),
('efe875e7-9cad-463c-89e7-f68dd705b38f','04e09133-8711-47ae-b54c-18f7db53d35f',NULL,'MİTRA MESKİNİ - 44932987',1,'MTQ',110,0,0,NULL,NULL,'02ac49e1-502e-4bc4-b041-65c1b38fb8c7'),
('eff1b929-360e-4466-9aeb-1ba12e590f26','e6e00db2-e963-4b68-bc3d-f39316d0e9b1',NULL,'FETHİ YÜCEL  - 910728512',7,'MTQ',110,0,0,NULL,NULL,'4620449d-5bd3-49d6-816f-684d639a3e44'),
('f00ba739-aba5-4e0c-aba8-8013eb4fbdfd','573d1f6a-bcd7-4c0d-98d9-dc1c40ff9d9d',NULL,'Ahmet özçiçek - 31515833',1,'MTQ',120,0,0,NULL,NULL,'65c0e929-3375-4985-8c4f-62681ad7745f'),
('f03e08f1-0179-499b-8019-ce95dfbe594f','354e4c1a-282d-44d2-9f5b-bf920d2f21f0',NULL,'KISMET URDOĞAN - 478449275',13,'MTQ',140,0,0,NULL,NULL,'936ebbaf-6f47-4069-b653-db28ba74c6b6'),
('f05eb86f-be62-41c0-bd65-56b81e976feb','0240eb30-b207-4081-ba3f-dbadca4f98e3',NULL,'SUZAN GÜNER - 745268660',1,'MTQ',0,0,0,NULL,NULL,'911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7'),
('f08eca0f-f00b-4b5a-92b7-fc17d1127e98','de334665-9c3f-4521-8307-a53671e17f75',NULL,'METİN MOLA - 428693052',7,'MTQ',120,0,0,NULL,NULL,'a75c0466-9f5a-4f5b-89c0-9179e86aed34'),
('f099ddb9-06f5-4478-a83a-0347c6d78e3b','1408b120-3a9f-4f5b-b006-6f22b9950828',NULL,'AYEOLOWO SEKİNAT - 221433158',2,'MTQ',120,0,0,NULL,NULL,'26dc53f3-1a21-44ea-a0d6-f51c8996bf85'),
('f09bf617-58c0-409f-ba95-9e02b70b22c0','b4bee072-3c7a-4073-a566-847f201ecd97',NULL,'HASAN PİCKEL - 223210999',1,'MTQ',100,0,0,NULL,NULL,'04757da4-5689-4b28-8662-727fabf44027'),
('f0aab63d-8d28-4f2c-9caf-4743a00776ae','5e0d6392-cbe3-4a64-90f0-a04cf03accb0',NULL,'BLANDİ ZOTA - 644965833',6,'MTQ',120,0,0,NULL,NULL,'8cf92937-e0c9-49c9-87aa-33b3c2fd4773'),
('f0c39e10-976f-4e74-9098-7ea492068d02','1bc33608-be05-4160-8a2f-3ed7f285ebfd',NULL,'BETÜL YILDIZ - 221811614',3,'MTQ',120,0,0,NULL,NULL,'05e527f9-8a74-4f42-b673-b05994d5555d'),
('f136fa3b-29a3-4489-a5b2-4ec96b839339','070642b1-ac36-434b-8863-7763819a243d',NULL,'BATTAL - 412565065',33,'MTQ',60.61,0,0,NULL,NULL,'148ecec2-cd7b-4ac3-88bc-9569bf15505e'),
('f169fb6a-8d8d-46f5-bd08-95c0e7d18b0a','ce00a9c7-9a6b-4bf1-b2fc-cc111e7e81f0',NULL,'SEFA SİNER - 428651654',12,'MTQ',100,0,0,NULL,NULL,'0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148'),
('f1725778-55b7-4ad1-bd24-28140cd77f08','348b31c8-6de2-44b0-9580-324b21f66689',NULL,'TARIK TURAN - 644769101',5,'MTQ',110,0,0,NULL,NULL,'5289d63f-a7a4-464d-80ad-20c84233ff2b'),
('f177342a-18dd-40a2-ad5c-ce9e2b6cf412','bbae8338-6600-44bd-87df-e910bf0028e9',NULL,'MUSTAFA - 107623614',15,'MTQ',110,0,0,NULL,NULL,'13119f2d-05d5-4b2d-b32f-396c12ed0ea0'),
('f187d6ad-567c-4a5b-b14e-ed67765be48d','be6b3ded-c6a2-4897-b9b1-e888be7dfa87',NULL,'YUNUS EMRE ÖZAGİR - 531988506',2.5,'MTQ',110,0,0,NULL,NULL,'824b8b50-1127-4eb5-8137-c9c3822a54a2'),
('f1b38d91-ccb5-42f3-a254-2cfee61509c6','ae830ff1-e6aa-49ed-b4ad-6ab48e38ceca',NULL,'RECEP DAMAR - 745912057',7,'MTQ',100,0,0,NULL,NULL,'b52527d5-1a66-4241-b1c3-b951b7b28f51'),
('f1e13017-d4be-4977-ad36-30ce8bbfd83d','86d7c655-99c8-4dd2-833b-1722c240592f',NULL,'HASAN YALÇIN - 221724224',2,'MTQ',120,0,0,NULL,NULL,'59340ffb-ba9b-4386-a0a4-686fcf54115b'),
('f1f10261-9ef3-4f2a-8aba-db841c0f985e','bf65883a-95cc-47b2-b59b-db742bbc8e55',NULL,'HAFİZE BALİ - 371539784',4,'MTQ',140,0,0,NULL,NULL,'f41591d6-a92e-4ea1-9c50-b10accb09a51'),
('f1f577ab-241d-41f6-ab65-9e1a995e8c52','6f3a47d8-1de9-4c03-813b-8a25c1ebeba4',NULL,'ABDULLAH ŞENOL GÜMÜŞ - 428341237',2.5,'MTQ',100,0,0,NULL,NULL,'21cea3d0-82cc-48c9-8e54-12f04fa0fc99'),
('f1ffb3b4-7e29-4e46-b913-7bb1a0e564ec','21bacc84-3aba-43e8-9f1a-21639303e802',NULL,'SABRİNA METZGER  - 808922349',3.5,'MTQ',110,0,0,NULL,NULL,'dc5d2caf-3941-4bd5-a27f-492541390d57'),
('f2025f1e-7a98-49e7-8337-b7e10a69debb','24e9e168-e0b0-4142-838d-f0314d1ff48a',NULL,'EBUBEKİR ATA  - 319316615',5.5,'MTQ',100,0,0,NULL,NULL,'e848a3ea-fc44-4076-9fb6-e6a259b11ad5'),
('f231fc43-a8d7-4b28-81b6-edf444efdd52','bf4a9866-9d94-41a6-bfc1-7ea46e743b29',NULL,'HANIM DOĞAN - 478730420',2,'MTQ',130,0,0,NULL,NULL,'ceed7173-fe7b-438d-9195-fec804ca478e'),
('f2d26a66-76d9-4cd3-969f-cb9da4f4860f','6352e764-3ab4-4a98-84ad-182cc9f76f47',NULL,'TEKİN MAZLUM - 501872546',7,'MTQ',110,0,0,NULL,NULL,'ca8bc896-5c58-4355-a8a8-a80a250e2558'),
('f2d29ce4-cf9f-4b20-b49f-ac9509bcf94e','a6b790d5-0670-4b04-ba31-1a205bec9f47',NULL,'ESMA MERT - 371282604',2,'MTQ',110,0,0,NULL,NULL,'a50d8db5-2bfe-4146-b10b-a41dcfc378a6'),
('f2e5df48-ba88-4cdd-a5df-bf822a463c18','9feb4e97-2426-4001-b9f4-9cb3a92475a7',NULL,'ÜMİT ALBAYRAK - 644526832',2,'MTQ',110,0,0,NULL,NULL,'1a38a8c4-2aa6-4815-816b-49ef6b71901e'),
('f3194a25-8aed-43f7-9861-81206cd45b32','f0162704-0b98-4462-93fc-6e3db18726c8',NULL,'NFS GRUNDTVİGS - 655644248',2,'MTQ',0,0,0,NULL,NULL,'6202e8aa-bce2-4ba0-9ca5-ecd030f659be'),
('f32aec2e-eab7-4623-b399-39bfdf28296a','e835aded-6555-47b8-9b6c-11d62991e4f9',NULL,'SEDA ULUSOYLU - 371691350',2,'MTQ',110,0,0,NULL,NULL,'908ced55-4ada-4513-96d9-5b7218af5cd7'),
('f36348b0-cb24-4462-a8cf-108808f99bc5','6885d28b-3a03-4bc7-af62-377782c87eda',NULL,'MUHAMMED ALİ ASLAN - 437982892',5.5,'MTQ',140,0,0,NULL,NULL,'4776d10a-2cab-47b6-b212-60c0ab466107'),
('f3684a05-8b07-4826-a982-ab71a1a0b3cb','c728650f-ca26-48eb-a821-cf10d127192e',NULL,'SAHAR KADERİ - 449636092',4.5,'MTQ',120,0,0,NULL,NULL,'ea1fd06d-6508-481d-96d9-862de4d05260'),
('f3c05129-6db1-4e74-8544-2387f20f8563','9ca2ccae-c67b-474b-b323-88ab05f36e0e',NULL,'MEHMET EMİN KARAGÜZEL - 449665773',3.5,'MTQ',100,0,0,NULL,NULL,'6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2'),
('f3d4c5b3-7ff9-4dfb-88a4-70e3a9c2d869','ee9c3f50-0d5e-4076-92af-d534dd7b5b03',NULL,'HALUK ÖZTOPRAK - 858708990',2,'MTQ',140,0,0,NULL,NULL,'49e64dc1-b571-41e2-8735-35d2ef2613ae'),
('f3e6f885-3fdd-40be-b04a-2b92081582de','90fe5c88-be99-4483-aa56-2f7a79b3db0e',NULL,'SÜLEYMAN BOZAN - 478778961',1,'MTQ',110,0,0,NULL,NULL,'5ab838fc-3b03-474c-9930-88db6a09eba3'),
('f3f0a583-16d3-40b3-b91f-d87378bd0e1e','93c6395c-8107-41af-81ed-86d48de95468',NULL,'SAVAŞ AKTAŞ - 478815317',5.5,'MTQ',100,0,0,NULL,NULL,'9ad0f9c0-122b-4939-b7d3-2bbf042048fd'),
('f3f1262a-7633-40eb-aabf-4a8e013f7f4d','0e5bf186-8e2e-4d37-b400-5aad5c33c54a',NULL,'SABİNA KAYA - 598548833',3,'MTQ',110,0,0,NULL,NULL,'1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0'),
('f3f90926-5708-4fd4-b902-b81b0dc5b9fd','78b9875b-42c6-44d8-83f0-ef21e7e3ca12',NULL,'MUSA KIZILASLANOĞLU - 655307091',23,'MTQ',110,0,0,NULL,NULL,'60088545-2d2c-4c1d-8f5c-07351840a9a5'),
('f4084aad-4ae6-4b77-8c3c-080e8a6019d6','d22b5628-1add-4819-b852-82a33194d858',NULL,'BERFİN UZUNER  - 221900850',2.5,'MTQ',120,0,0,NULL,NULL,'0f7b6d43-5763-4b5b-93f8-46153e09c05f'),
('f4727e95-50d0-464f-9920-9276cc37dae8','20c02126-10b1-495e-aafc-0fc793e8103a',NULL,'MURAT YILDIZ  - 644481653',2,'MTQ',110,0,0,NULL,NULL,'8fe451fc-7a84-4cca-9cde-dff384de2c9a'),
('f486c405-04a1-42e4-9988-62a6f850a4d9','dc9eaa37-dda6-4148-b4ca-6b263dd61f3d',NULL,'VEYSİ DAĞDELEN - 614456400',17.5,'MTQ',100,0,0,NULL,NULL,'268c20d2-55c4-4e13-bdbd-8705781eda7b'),
('f4951b2c-926f-4c0e-ae8e-05b63787cebd','97cfa3d6-7a9c-4259-a634-22f285b0127a',NULL,'ERAY ASLANCAN - 745294810',2.5,'MTQ',105,0,0,NULL,NULL,'bfc5b29f-424e-465e-8d1d-8f10342630de'),
('f4bfa7e7-f236-4fb3-af33-33214e30a950','325b6ee5-6b77-44fc-bea9-b6d8c6314dd7',NULL,'ABDULLAH KARACA - 221554711',2.5,'MTQ',120,0,0,NULL,NULL,'aae115aa-05f3-4d7c-b25f-3b266a2aa636'),
('f5197417-62db-4d5b-b029-e9cf43bcb765','836290d9-9549-45f0-a237-fb8a8015a42b',NULL,'MILANA PRODANOVIC - 745837821',2,'MTQ',140,0,0,NULL,NULL,'70bbe7ca-c823-4871-aad0-31c437da2b3c'),
('f51f4fbe-269c-49f6-9d69-dac81d27ff0e','db9e286a-a28e-4e70-acd5-aa4aa07f3062',NULL,'KADİR SERZAN - 734889822',3,'MTQ',100,0,0,NULL,NULL,'ca7f278f-ad79-4c38-a185-b73739ed8248'),
('f53eda31-7928-4c76-9ff6-697ea6e0ced5','cadd82f4-7b0d-4bda-b1eb-1f42b58c73c9',NULL,'İSMAİL ŞANLI - 248710120',2,'MTQ',110,0,0,NULL,NULL,'136523e8-0a3d-4719-a4d6-930b31cde60f'),
('f5622508-5408-423e-986b-f16a8aba0eb7','5fede675-7615-4f34-a59f-ebf7a7768474',NULL,' - 248425122',1,'MTQ',0,0,0,NULL,NULL,'b92361d9-2a0d-4287-b424-72a47a8f2fa4'),
('f5a595b9-24ca-43c2-b87b-0d7032feade5','b69048de-0221-4b31-bf27-fd27214c4df7',NULL,'EURO STAR MOBEL - 412417422',3,'MTQ',100,0,0,NULL,NULL,'1d5b2e29-00c0-4ef0-bfe8-d62f921bed94'),
('f5ab7728-3cb0-40a7-b682-40822f27b841','d25670c1-5dec-4e05-b770-74500d1380d5',NULL,'KADER YILDIZ - 765600734',5.5,'MTQ',110,0,0,NULL,NULL,'61c62b54-9519-46bc-a518-390b8b72c6dc'),
('f5bf5579-acf0-4f9b-8706-128802b853e2','3fa0e308-61c7-4953-b7fd-07f6a03c8d66',NULL,'CAN ALTIN - 644110179',2,'MTQ',110,0,0,NULL,NULL,'e3176b45-a9ae-470a-9151-1ab0181ca82c'),
('f5d8cc37-ec57-47df-b67e-be33bb7085f1','77c98232-9a08-43a7-9cc8-46b8faec7269',NULL,'MME MENAUR RACHİDO - 449890150',4,'MTQ',110,0,0,NULL,NULL,'75a70e80-2c1f-412d-86f8-4dbb396ad806'),
('f5e953fb-3789-4d03-bb3a-fe37bed1c8c0','a0fa9efb-dde6-4084-80ba-394392b3e5ea',NULL,'METİN PEKSERT SSH - 745933378',2,'MTQ',105,0,0,NULL,NULL,'b91bbec9-94f9-4b78-8185-c4064072c11d'),
('f5f1e80a-00c7-478b-aec1-1c5d78d315fe','57db16e6-cfb9-46a9-8b67-4de40077f724',NULL,'İBRAHİM BAĞCI - 745197344',1,'MTQ',100,0,0,NULL,NULL,'a2d259a0-8a03-4763-951b-98fe714623ce'),
('f601d345-b606-4851-acbf-79cbe396e725','f852deef-d15b-477c-a9c6-d41f5d65db26',NULL,'YUNUS HADIMLI - 644732617',4,'MTQ',130,0,0,NULL,NULL,'73df0d9c-5733-4d04-8f77-6e191897e0ff'),
('f610c559-b746-4661-a2ae-8e0c5b1eeff4','8ef57363-dab8-488a-a6bc-b880a819c0d5',NULL,'TALHA KARA - 598384021',9,'MTQ',110,0,0,NULL,NULL,'fc31e466-d8a0-4227-8542-d08063fb7971'),
('f61bdd24-76ae-41ed-b560-28611a5d48a7','11babdea-d3a7-45ee-b820-1c39d3bde701',NULL,'EMİNE İMRAG - 808830873',2.5,'MTQ',110,0,0,NULL,NULL,'0f36cd64-fd9d-4454-b14c-e388fa4a57d2'),
('f621b86d-48db-419d-99a9-e98fdb6fd8e9','9f0bc916-b16d-4e9b-bc27-d4e7dd00a534',NULL,'ÖMER ÇALIK SSH  - 7456984',2,'MTQ',105,0,0,NULL,NULL,'e9d88834-16a0-467d-ac78-572c246346c6'),
('f626a5e5-261d-4a51-9ac6-b083ab827332','e2294066-3dc4-4eae-8bd1-a7bf521ea4e9',NULL,'NUR SANDALCILAR - 517291063',2,'MTQ',120,0,0,NULL,NULL,'ef1f9bc0-c6f6-4772-86ac-61951ede20a5'),
('f67bd018-902d-42e7-ba71-299543261788','9c177ece-1787-4704-97df-0daaefbbf421',NULL,'BOZTAŞ - 412726953',1,'MTQ',0,0,0,NULL,NULL,'aaf63331-ccff-4ade-8965-5318b9f59d6e'),
('f694dbf5-3bac-4575-b618-632de27e74f0','8ea46510-aeaf-430f-8217-8a850e6c7b8b',NULL,'CÜNEYT BARUT - 745699153',6.5,'MTQ',100,0,0,NULL,NULL,'92a101d5-f2e2-4731-8009-aa9ff0df1038'),
('f6afe352-9f71-4ae4-a4fd-e277836f9153','fbc053ea-3c8a-40cb-9e99-7e102c5c99d7',NULL,'ELİF BEYZA ARVİŞ - 613112731',2,'MTQ',110,0,0,NULL,NULL,'2ab9bb8f-58c4-4826-94a1-bf5b458b034e'),
('f719bc21-5f78-40e7-8817-08fdae7aa815','a3c0c366-954c-4d90-b2ad-b7049235211b',NULL,'YAKUP KILIÇ - 478516951',1,'MTQ',100,0,0,NULL,NULL,'5a03448d-5de2-4154-86a6-c1af699ed137'),
('f725ee42-c5cc-4d5c-92ea-53822790abfa','818c8e5c-5e34-4ecd-9718-f30e3d67fa19',NULL,'DİLBERAY MELLO - 613910788',3,'MTQ',110,0,0,NULL,NULL,'20ba0bfa-9720-4a4e-8dc3-12812663abec'),
('f737f1c2-492d-44af-ab86-aae631bde6ac','16f6f693-3ab8-48ac-b7fb-5296084616c4',NULL,'SENEL YILMAZ - 517365072',4.5,'MTQ',120,0,0,NULL,NULL,'8facfb49-4d23-4b98-a41c-851f07a053e4'),
('f74f269c-7ce7-4c72-a841-d50d919bb735','53e1cbaa-905d-48cd-a7e8-8f9a5be8b019',NULL,'POLAT İSTİKRAR  - 412596038',16,'MTQ',110,0,0,NULL,NULL,'e7882376-f647-4f5c-acc0-c4777a09f75d'),
('f74ff1cf-663c-45de-b892-31d8ab77dc51','89981b86-207f-480e-9641-34308444de31',NULL,'SEVAY NİKOLAEVA YANKOVA - 517895646',15.5,'MTQ',0,0,0,NULL,NULL,'cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6'),
('f751b8d2-eff9-4612-845c-59575d0db0b3','9f9a2d1c-f31d-43f8-a251-f608195464f8',NULL,'KENAN BAYAR SSH  - 745101735',2,'MTQ',140,0,0,NULL,NULL,'a735e5ae-993e-42ad-8bd7-5bfc541165aa'),
('f7655f00-51ab-4c28-b159-dbc7b09ecf49','0e4fa964-fb2a-4f71-a3a6-0f06c3aee178',NULL,'İSA SÖNMEZ - 371820680',4,'MTQ',110,0,0,NULL,NULL,'b9f93946-382b-435b-9bca-6293072351d1'),
('f78c7b50-0891-4a1a-9b12-0856803fc2c4','b01b5850-3b94-45e8-a196-b6ff11822893',NULL,'ZEKAİ TAVASLI - 478979004',1.5,'MTQ',100,0,0,NULL,NULL,'00d5c701-5909-4eed-be40-af7cd9965f1a'),
('f7a10a74-5405-4e2b-bf3d-7c0a3420a7f6','ce9ac6b7-7c70-4670-9ec4-2c0b6daa13ce',NULL,'MEHMET GÖK - 613420026',2,'MTQ',110,0,0,NULL,NULL,'864782d3-b9d9-42bb-b370-cce193db468b'),
('f8054a36-5245-4b75-aa2c-2551d0637154','db0343c4-65b4-4508-aeb5-f853f3fe5c0d',NULL,'ALESSANDRA ALTAVİLLA - 127343940',2,'MTQ',110,0,0,NULL,NULL,'77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d'),
('f82766b8-366a-4ecf-9898-2bd1353de992','e0aa3449-353c-42b9-aba4-96fed1454cc6',NULL,'HÜSEYİN GÜNDÜZ - 455614339',1.5,'MTQ',110,0,0,NULL,NULL,'29e07758-ee2d-462d-95cb-5effc249b279'),
('f8565da7-4319-453f-973a-f123f26390cd','c0e47e43-f951-486e-a388-720bf7771db7',NULL,'MEHMET RIZA ÇOBANOĞLU - 478992248',2,'MTQ',105,0,0,NULL,NULL,'c106b212-52f4-41f3-8f99-1ac006f2e5af'),
('f877c8a5-edf2-4fc3-8d0b-593131f7f060','810c292f-950a-4737-a90d-20484a943d27',NULL,'GIULİA CLARA CASAGRANDE  - 69529713',6,'MTQ',140,0,0,NULL,NULL,'02d7bc39-8bff-409d-a369-f5c602c1c79b'),
('f87952eb-2ee2-4f6f-80b6-e00037d29f7e','a537cc77-ae30-485e-adee-6b4e6ae69468',NULL,'MANOLYA PELİN ERDOĞAN ÖZÇELİK - 437649706',5,'MTQ',110,0,0,NULL,NULL,'c3124b77-c71e-488a-b104-3d05e5b06ca6'),
('f879bf5f-54ea-4653-b8c3-7c9f45d485b0','ee129c96-22e3-4d0c-aa3a-08cf1cd0f499',NULL,'SYLVİA LOPEZ - 478598314',1,'MTQ',110,0,0,NULL,NULL,'2068e6bf-22ee-4b92-9be7-bbb6d829aaca'),
('f87bc748-b1e4-41a3-8106-f44c1c472b88','c5ce9c95-d23b-4008-b316-84b96d661ab0',NULL,'KADİR SÜLÜN - 428696149',9.5,'MTQ',110,0,0,NULL,NULL,'4f563dbc-f003-405e-bdb8-828b7a66d357'),
('f89c263e-4cc1-4a0a-8f6e-e6c3e1101931','7a0f69f9-cedc-4758-99d8-8460defa1634',NULL,'DENİZ ŞİMŞEK - 745824761',2,'MTQ',140,0,0,NULL,NULL,'a5a9372f-c23a-4cfd-971f-d494355aeac5'),
('f8f9ef09-3399-4ce9-aabf-bfe9ed308e2a','e82f47a2-6d97-4415-ad47-e95df175e641',NULL,'SEVDE SOYUÖZ - 675253974',6,'MTQ',110,0,0,NULL,NULL,'0fadbd30-6b39-4e10-8b6a-91aab0921641'),
('f9263cb4-d624-4028-9ee6-cd91f3678edf','9001f45e-ae6a-431f-827c-8f81b5744d2f',NULL,'ÇİLEM KAYNI - 614508817',1,'MTQ',100,0,0,NULL,NULL,'af0f7782-1737-4c97-a42f-8db7bba38d2e'),
('f966e8dd-9456-4bdf-99c8-c838a2e62287','fa8c8e3f-aaf5-4b8f-a85d-51ba693c635e',NULL,'Leman emre - 478361652',3,'MTQ',100,0,0,NULL,NULL,'26b9febf-7e0a-455c-acf6-ac5b4fe7b20d'),
('f996c81a-e4c8-4333-a420-24f4a692629a','01518696-eb00-47da-9bad-3af565b264ec',NULL,'GÜLAY KIZIL - 221598709',2,'MTQ',120,0,0,NULL,NULL,'51eada14-8b0b-474d-993b-35b1df5b1fdc'),
('f99c7b74-77a5-480d-b360-64e14be2e184','f2ab9912-e27d-41d8-9f54-f8ac903af21f',NULL,'İBRAHİM BAĞCI 1 - 745832267',5,'MTQ',100,0,0,NULL,NULL,'1ad43916-6b71-4844-8c13-9ae4882c08fd'),
('f9a820dd-c5f8-4764-b2fc-41f72c0f61e5','81f94233-2989-41af-ba13-e1195509d6cd',NULL,'CANSU BEYAZ - 644282587',5.5,'MTQ',110,0,0,NULL,NULL,'7d6fb76f-77a1-487b-abf8-27a26b46c803'),
('f9b3a2ec-8b10-4160-add0-3a03e7daee08','fb5fe7db-85d0-4022-80ed-ed376e522e9a',NULL,'AYNUR KAPUCU - 221694221',2.5,'MTQ',110,0,0,NULL,NULL,'acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d'),
('f9db221b-8170-4093-aba3-ab41d3550cde','6eecc1c3-9a9a-4bd6-bb24-a31fee317256',NULL,'SÜMEYYE KALKAN  - 98258846',2,'MTQ',140,0,0,NULL,NULL,'6be6b415-9978-41fa-b920-1eb149c147e3'),
('f9de8e60-8445-4ce7-8f05-fe88ec09fbc8','bd9a4c11-8387-4313-ad0b-dda9afcae074',NULL,'KAZIM CENGİZ - 655935224',1,'MTQ',100,0,0,NULL,NULL,'3ec0fac2-4ee2-4e9f-8698-576c7ac60363'),
('f9ea2727-7b0f-40f9-b9fc-bb33b1e6b59d','ec4cd655-8ae5-4b7e-9e95-bafe33d3157f',NULL,'YAŞAR YALMAN SSH - 478168587',2,'MTQ',105,0,0,NULL,NULL,'fe463485-2cc1-4a74-bdc7-66f943713679'),
('f9f1a308-3f39-4c34-9978-99df6be10828','b7f871bc-e5e1-4fa7-80ab-930db6f9913e',NULL,'HÜLYA ÇELİK  - 517910414',7.5,'MTQ',140,0,0,NULL,NULL,'398f18a6-4116-4296-8890-4d154fc30789'),
('fa0e12b9-52e2-41bd-887d-eefcc8ec2da4','0cca1172-03f5-42c5-b4b2-7320455c7a04',NULL,'HARUN - 412302460',2,'MTQ',0,0,0,NULL,NULL,'f7ef839c-2795-4f15-80a8-414937600965'),
('fa28698c-77ad-4e03-aca5-e0d5998f4b4c','ce677bd8-734c-42fb-abbe-07a075093a30',NULL,'HALİL GÜLER - 478418764',1,'MTQ',100,0,0,NULL,NULL,'a95b6f69-d856-411d-92e3-628c20975e08'),
('fa34ca9c-6c7b-4567-ba2f-d3d1068f1ece','f0f79491-0286-4e9f-8f93-d11ec4c56eb8',NULL,'ORHAN GAZİ ÇEKİCİ - 371699257',5.5,'MTQ',140,0,0,NULL,NULL,'a529d4b1-7131-4e37-82ab-dd7986268aa3'),
('fa41b778-0bbc-4e12-b79c-92d6f5b3c0d3','dfe9eb04-aade-4c3c-914f-9b5fb384e905',NULL,'KÜRŞAT OKUTAN - 644377360',6,'MTQ',120,0,0,NULL,NULL,'f774fd73-b557-40e4-a1f0-2f9f1e99e70a'),
('fa5b87e0-e46e-43bb-b785-434fb04abb33','7a43f678-5d8a-45bf-b52e-4eb0c4d55774',NULL,'ERFURT  MOBİLYA KOLTUK - 248568702',7,'MTQ',110,0,0,NULL,NULL,'5689f2eb-3126-469d-bd48-b54e23a855c8'),
('fa5dab66-6903-45b4-9614-b0fa2c9bcb61','3cb1a427-f8bb-4bbe-b6f5-52b6eb173220',NULL,'SUADA HAMZA  - 613990020',2,'MTQ',120,0,0,NULL,NULL,'cc716c12-75ab-49ae-8d32-bb1b4fd1d45e'),
('fa7b09e0-60ff-4c17-9b9b-2738727d3909','c626ed00-134f-4996-9342-90165390af7a',NULL,'AMİNA BOUDJENNAH  - 982585914',2,'MTQ',140,0,0,NULL,NULL,'ccec7edf-babd-4962-8945-5f2cc49b04e9'),
('faa57e5c-7dbf-4141-abc3-5cadf3c648b8','279c63cd-3c8f-4d65-913b-e863ceeec0c6',NULL,'ALİ ÖZDEN - 745978651',10,'MTQ',110,0,0,NULL,NULL,'4ff50bd5-680b-45e9-8634-5c6a78e87f56'),
('faa86680-de24-454e-8254-1aef1f8e1301','5fda7e7c-4a20-4a1e-ab1f-7ac97414effe',NULL,'BURCU HANIM  - 455207811',2,'MTQ',140,0,0,NULL,NULL,'e37361e5-2f1a-4a2b-b066-a2b1f2111d2b'),
('fab96278-300c-437f-942e-8b5316fdf215','080a7e05-3fd7-42d8-b3e5-15e02c4885bb',NULL,'SÜMEYYE ARSLAN - 478355116',1,'MTQ',100,0,0,NULL,NULL,'69fe4f9c-47cc-4216-8bca-b92bce12c165'),
('fabcdc0f-6af7-4142-b728-49350bc11861','cdd98880-7c0d-4a99-86cf-fbf0c715d797',NULL,'NESLİHAN HANIM  - 982614868',2,'MTQ',140,0,0,NULL,NULL,'20d6c71c-ba5e-45ee-bcc7-3404727b4b16'),
('fabdea79-8ef8-4931-be2c-5b1066781fd6','39726256-2ab0-45bd-b915-bf68ac5801b6',NULL,'FERHAD MORİD - 598188038',3,'MTQ',110,0,0,NULL,NULL,'83bacbe4-57a3-4420-afeb-27d135cfb375'),
('fb06575c-b91e-4080-96dd-91e4459a6bbe','13f03912-2a46-423f-90fb-ad13add95052',NULL,'MİHAİ LİDİA  - 982708819',4,'MTQ',0,0,0,NULL,NULL,'6c9799b7-d54a-4660-a5bf-0557b778d342'),
('fb210228-3e56-457b-a86d-1d2e404e1565','210905cb-fc78-47bf-a79a-e8468da70ce9',NULL,'BAHATTİN AGİT ÇELİK - 614350153',4.5,'MTQ',100,0,0,NULL,NULL,'4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f'),
('fb5b0ca4-b01b-4a7e-a930-4ea2f77b5e22','0ccd7cf3-cc83-47f7-a4ba-5f6eab4c9981',NULL,'AYŞEGÜL GÖKTEPE - 478545457',4.5,'MTQ',105,0,0,NULL,NULL,'7c239237-a1fb-41c7-936d-912d80326901'),
('fb5cd51a-f4f4-41cc-9268-7915a02eb395','f0b1d268-0b7d-42cd-b854-63c43d7b6808',NULL,'EMEL TEKİN - 478180584',2,'MTQ',100,0,0,NULL,NULL,'5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1'),
('fb68831e-5487-4205-972a-620e145ad079','3fd442a9-a8dc-45c2-97c5-435ec3798146',NULL,'EMRE ALTUN  - 765828045',4,'MTQ',110,0,0,NULL,NULL,'b4816c73-13ed-40e0-87cb-f3536c1d3140'),
('fb69adaa-dc4f-408f-bbe3-3ffe98c34ace','3e707cb2-0e4e-4ef2-a32b-7092258c4004',NULL,'ASLIHAN GÜÇLÜ  - 428499287',2.5,'MTQ',100,0,0,NULL,NULL,'ff039116-94c2-4c75-851c-9deaf4e01549'),
('fbab1918-3f5e-4260-9fed-813c41fa8fa7','8decc4b8-fcb4-45a9-91f8-7198432dc403',NULL,'GÜLSEN ERDİNÇ - 750717756',8,'MTQ',120,0,0,NULL,NULL,'a5cb3a8e-37a0-4ca4-bdef-add90fb70af6'),
('fbad809f-c012-4f42-8c28-386e6408d17c','8875af5c-359f-4c6a-9c55-ac257bf1a610',NULL,'ÖMER ALİ ALKAN - 319897198',5,'MTQ',100,0,0,NULL,NULL,'2e9c0bdc-1469-4642-8dc7-5a45d837bbe0'),
('fbe828e4-1f24-4da2-bc6c-d11eb35be01b','0a3217fb-24ec-4617-a057-21e25d76a63c',NULL,'ABDULLAH SÖNMEZ - 428107185',5.5,'MTQ',110,0,0,NULL,NULL,'46342cb8-9154-4a08-82ea-f958497b32c2'),
('fc083043-9c7d-4904-8cdd-2d9c0a5f29c5','1fcf998e-0fb2-4f3b-9ad3-01a89e8fd15f',NULL,'AMAL EL JABBARİ - 644789157',6,'MTQ',110,0,0,NULL,NULL,'398f925f-e9ff-4494-a4eb-d80689e256ac'),
('fc0b2017-da16-4ac7-a84e-f114b865b0d9','9f31b930-39a8-4661-8679-4ffbe3ae6d94',NULL,'İBRAHİMİ ALİ JAN - 735500422',1,'MTQ',0,0,0,NULL,NULL,'563299ed-822d-490a-97cc-eb08990a8bdb'),
('fc359e60-de7b-47af-a773-f540a6a20cc4','60b6f448-7a13-444b-979f-1b4683778088',NULL,'MUSA LÖK - 517521279',5,'MTQ',120,0,0,NULL,NULL,'416cbe10-f76a-4e3f-b035-b846a08cc8a3'),
('fc8c2b00-f0df-4536-895c-06db6648a59a','6bb0b020-3ca9-4a46-99e0-deaa30eb5bf6',NULL,'TEBIB MYRIAM  - 221603036',2,'MTQ',120,0,0,NULL,NULL,'9cd992a9-f3c9-4cb4-a22b-ac995a102670'),
('fc96bcab-18c1-49d9-9188-6e251b98752e','0397dc37-03ff-4059-b530-7991a9c5054c',NULL,'BUNJAMİN HALİMİ  - 221962516',2,'MTQ',140,0,0,NULL,NULL,'2816d30a-252b-4b32-a00a-c62fbd6aa168'),
('fd2c69e2-d2db-4220-92bd-5f33ebea6613','f4adbd75-276c-431c-8b78-b3d1c9e701de',NULL,'SAGAX CONSULTİNG  - 412380161',2,'MTQ',0,0,0,NULL,NULL,'39a9ae66-741d-4e91-97aa-a8ea9f83985b'),
('fd602fe2-06e2-46ac-95b5-113eccfefaf5','0d3e09f7-312a-43ec-9746-8645d24a2dde',NULL,'MOHAMMED ASIF KARİMİ - 982425071',4,'MTQ',100,0,0,NULL,NULL,'4053ad5c-7690-4d86-bb5d-264f6025895b'),
('fd77ae23-bbe0-4d9d-8193-5ea803ef452e','b984932f-e26f-4a62-ae43-75f5c17a0429',NULL,'DAVUT BİNGÖL - 598530881',2,'MTQ',110,0,0,NULL,NULL,'21e3be67-9336-48fe-9a70-3338aee8c4a9'),
('fd9c7d8a-742d-4b0c-8eca-42c8278c414d','06f27452-01bd-408e-875e-c72920e775ad',NULL,'PROMO HANDEL - 22391500',2,'MTQ',0,0,0,NULL,NULL,'67b755d6-8527-41db-b18d-4497bd14d893'),
('fdaaff91-cf20-461f-8409-a4d2ad303de0','e07fd69c-98fb-4fd0-aa5e-9568c4967c37',NULL,'MUHAMMED HAMIDO - 735280128',1,'MTQ',0,0,0,NULL,NULL,'7c8f18be-c3f6-4903-ad13-f994b00c847e'),
('fdc0802c-f8f3-4e39-a2b5-73924b753c2d','4e2ed7ba-3544-4eb2-a938-05efc8e93313',NULL,'ESMA GÜNVAR - 808396862',2.5,'MTQ',120,0,0,NULL,NULL,'b20579d8-be01-4cf4-a191-a8c8d52e9333'),
('fdcbb6ac-ebc1-40c1-8f90-8ea1ffaa1af5','7785855d-1da2-4a9f-a679-3b9c3b29da45',NULL,'AMİN SAKİ - 982372153',4,'MTQ',130,0,0,NULL,NULL,'23ac0286-127d-44b7-bac9-6e2f2c77ea59'),
('fdd6b238-df34-4c15-ab2b-7581e9d49de6','e875f7c7-752a-43d6-8bc5-bd941580f52c',NULL,'STEPHANİE GOSSEYE - 221669694',2.5,'MTQ',120,0,0,NULL,NULL,'1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11'),
('fe07c7aa-3f61-4233-bd81-26ff2a6124c3','5424d0b6-4ce6-486f-9529-1d67554f64a1',NULL,'HÜLYA ŞENEL  - 011195834',8.5,'MTQ',110,0,0,NULL,NULL,'5fcfabaf-abfd-496b-84fd-6ef04452b85c'),
('fe16726e-9bd0-4e69-9b2d-497fac849b52','18cb18ac-e3b1-44f8-8bbd-d151e8c689e0',NULL,'ÖZLEM TURA - 745808637',2,'MTQ',140,0,0,NULL,NULL,'924da3d8-9a73-46a3-a085-d7683bf2448e'),
('fe181b40-7afa-42a6-89c1-e45dd49abebb','c55c9e13-47a9-4808-8ce0-080af3f5cae4',NULL,'EDOLİNA AJETİ REXHEPİ - 478749881',4,'MTQ',140,0,0,NULL,NULL,'3f94ebca-ddaa-4014-83ed-71965cea96d3'),
('fe5d6eac-4aec-44f1-af1d-a3a3b9b975f0','11d63f04-d1ff-483f-81d1-e0149f82d6b5',NULL,'CEMAL YALÇIN - 319116491',4,'MTQ',110,0,0,NULL,NULL,'be63ebf6-5ba8-4695-a8cc-d99a2fc9238c'),
('fe610f7e-84fd-4ec1-87b6-d86e41c04cb2','b4f77d67-3fe0-4665-9b51-73bedd9382b8',NULL,'AMİRA GHRAB - 81723596',4,'MTQ',110,0,0,NULL,NULL,'fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f'),
('fe6381f6-fec7-4bae-9d1e-a2117b8a3534','3bdd1f4e-c5e7-4cab-bacb-659621328cd7',NULL,'BRÜHL CAMİSİ - 412441586',2.5,'MTQ',0,0,0,NULL,NULL,'2754ec7f-f526-44d3-8178-29280a48b322'),
('fe7f56f9-c1df-4b93-aa48-31935843c34f','a0850782-edcb-4681-ab6f-3257404dc0cb',NULL,'NASIR NOORI  - 982558117',2.5,'MTQ',140,0,0,NULL,NULL,'f4436630-2c1a-44d9-a503-1ec5a674d42b'),
('fea80189-ddcc-43ed-beae-bb4141f8c57f','a4a61f95-bb0e-4308-8f44-9f56e73be7cb',NULL,'ALAETTİN BAYKAN - 614396499',3,'MTQ',100,0,0,NULL,NULL,'74fe07f7-1a7f-4967-a60e-9e6e00adcc0d'),
('feb3a42d-0cf7-47e4-ac38-a3e119c388b6','147ac8a5-6d5a-4346-9f71-e18687501a0a',NULL,'MEHMET SARI - 371820872',5,'MTQ',110,0,0,NULL,NULL,'6e6afc45-76dd-42f4-bded-f2fada436aff'),
('fec2d395-6ea8-4367-80ea-5ba298689293','f5d45ecc-507e-4f38-8a8c-52ff8f7d17c6',NULL,'RADİA AL ADOUİ - 644599754',2.5,'MTQ',120,0,0,NULL,NULL,'82d17384-1e37-4136-b61d-8ad262906c8b'),
('fed1a9d9-1877-4696-b507-f495ef7f5a8b','4885aef6-f132-459a-b24b-e118a77e4a7a',NULL,'AYŞEGÜL TELLİ - 449962472',5,'MTQ',100,0,0,NULL,NULL,'0c1f42ec-e581-418c-a11b-418b92d2cc9e'),
('fef4d2ef-7ee3-4a84-8059-2cf245ad0871','f71b929b-6ef8-47ec-ae64-dc8ca4857ef4',NULL,'YILMAZ İNANÇ - 501859705',1,'MTQ',120,0,0,NULL,NULL,'b0da9512-5d73-41f1-bda6-6bec8b6a6191'),
('ff51b02a-97e5-4eeb-8e17-0664e6fee6e5','7e55f9cc-ee84-44c0-9e6d-7e645290de37',NULL,'MELEK KAYMAZ(K) - 644547865',3.5,'MTQ',120,0,0,NULL,NULL,'bc5655fe-7957-4a4b-8b86-3cb1da8d33c6'),
('ff7af459-b080-4cfa-b18a-99d7b44418e2','99533d85-b115-4039-aea0-3710226b0bd7',NULL,'SÜLEYMAN KAYHAN - 478763903',2,'MTQ',105,0,0,NULL,NULL,'0884b3d4-5cc0-44eb-9508-2f4bc25839ac'),
('ff95d35c-713e-4a99-b61d-2632ebd44ffb','2febf2be-c2c5-4679-be3b-8bb3d5e84c3e',NULL,'HASAN BÜLBÜL - 478941206',3,'MTQ',110,0,0,NULL,NULL,'e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9'),
('ffad450e-2138-4e09-9eb1-c02f0a439b6d','f0dad337-f3ff-42e3-9947-4b9e1f9ee54d',NULL,'NAFİT GANİOĞLU - 517255345',6,'MTQ',130,0,0,NULL,NULL,'08318497-59bc-4444-82cf-f14fd0a31917'),
('ffcdc7c1-254d-4586-ac0e-dc5c90796f10','79ebd9b8-0d68-4fe5-a904-877fe3479b81',NULL,'test - 412629947',1,'MTQ',0,0,0,NULL,NULL,'9ed256bd-b366-4a81-80af-3c33747dd7f2'),
('fff852fb-dacd-4a24-b591-1231e1e3ad25','88042485-7a5d-49cb-a682-29df08935ef1',NULL,'MÜCAHİT SÖYLEMEZ - 478342417',8,'MTQ',105,0,0,NULL,NULL,'32a7763a-26ff-40ce-a7e9-6378f8554627');
/*!40000 ALTER TABLE `transactionitem` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user`
--

DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user` (
  `id` varchar(191) NOT NULL,
  `currentId` varchar(191) DEFAULT NULL,
  `username` varchar(191) NOT NULL,
  `password` varchar(191) NOT NULL,
  `firstName` varchar(191) DEFAULT NULL,
  `familyName` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `address` varchar(191) DEFAULT NULL,
  `tckn` varchar(191) DEFAULT NULL,
  `role` enum('ADMIN','WAREHOUSE','TAX','SENDERADMIN','SENDER','TRANSPORTER','DRIVER') NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_username_key` (`username`),
  UNIQUE KEY `user_tckn_key` (`tckn`),
  KEY `user_currentId_key` (`currentId`) USING BTREE,
  CONSTRAINT `user_currentId_fkey` FOREIGN KEY (`currentId`) REFERENCES `current` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user`
--

LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES
('05135cd5-2d33-4363-b51e-c9b83a94094d',NULL,'muhasebe','$2b$10$/t6Y4u4i2/3HcZF8MoJn2ONMqMbs1VL12cg1IusfeLUA20EmmvKPS','muhasebe','muhasebe16',NULL,NULL,NULL,NULL,'TAX','2025-02-11 10:51:48.674','2025-04-17 09:13:25.793',NULL),
('0580afa4-a95f-4712-ab6a-c9aeec9df4a6',NULL,'8356344','$2b$12$PVVJoC.WJ96d/b2z3gpZ2ewE49PlN.CStOdac804ktk6McntX2BIO','SERHAT ','KYNSL',NULL,'11111111111',NULL,'76789535354','DRIVER','2025-10-07 12:08:55.443','2025-10-09 08:39:36.980',NULL),
('08d77869-0fde-4032-8f08-9d3071291beb',NULL,'1231099','$2b$10$Xy17obNhD0PobWt4WL16T.CnTNH2Sv5T4QsexbTlR61M279WURmzW','NECDET','KACAR',NULL,'5325000478',NULL,'34806002215','DRIVER','2024-11-21 09:42:50.940','2025-04-17 09:07:11.279','2025-04-17 09:07:11.278'),
('0b51b6e9-3871-4c42-8d3c-1b50ffa11e08',NULL,'0391413','$2b$12$yU5ESSDb8tWBpL4kH/0Xb.en3ju0EylICjuSi0iiFs.9R3dplFTDa','MEHMET','ÇALIŞKAN KAYNAŞLI',NULL,'1111111111',NULL,'42488276965','DRIVER','2025-08-30 12:05:07.614','2025-09-05 08:55:11.052',NULL),
('0c64c63e-7feb-4409-98b1-fe31ef9ff35a',NULL,'5020032','$2b$10$L4//EcURqUnsUbLg.7C/tOYjGAnl9TFi9TIb159juwSZHEQcgr6d6','AAAAAA','BBBBBBB',NULL,'5325000478',NULL,'16544864937','DRIVER','2025-02-03 17:50:13.401','2025-04-17 09:07:36.013','2025-04-17 09:07:36.012'),
('0fb40286-423b-44d0-bc48-6fccd2053a67','8426da95-71ca-4ae9-bea1-1e7259d72f62','duru','$2b$12$iBHV514FlAJ4VkAiDHVMKO8dDc/OyfrEPKFgvT0lC6F.hdimE.fzi',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-08-27 10:40:37.293','2025-08-27 10:40:37.293',NULL),
('0fdfb7dc-cf47-4a62-9708-4e6aa356104f',NULL,'2952855','$2b$10$Hm6BT2wcNMudCtg8ZjEMhen9e4UnooNP2BOGx8WUZeXwb11WAv3m6','AAAA','BBBBBB',NULL,'5325000478',NULL,'01953904334','DRIVER','2024-08-20 14:52:08.894','2025-04-17 09:07:12.719','2025-04-17 09:07:12.719'),
('1026105f-5383-476a-9d81-a3537c5d7b93',NULL,'8918579','$2b$10$q0k6OO0sfxD7w.NXqPGF7.cExnXtoNlwfOCeJ5xp8iI7cYsEEDWP2','AAAAAAA','BBBBBBBB',NULL,'5325000478',NULL,'52316552385','DRIVER','2024-11-15 16:15:52.449','2025-04-17 09:07:13.949','2025-04-17 09:07:13.948'),
('1088bbe6-18e5-42a4-b8be-fafe1cac2043',NULL,'7283989','$2b$12$GmWeM8wVP//6jXWtWxosdOBgDLin6tDKqVy4Cl9C69zkACoIJVqLe','ADNAN ','DURSUN',NULL,'11111111111',NULL,'59834565186','DRIVER','2025-10-02 06:39:26.264','2025-10-02 11:05:59.089',NULL),
('1088c6e0-3c7b-4eb9-9c24-e8710269d8b0','eb3aeba1-a956-40c0-aace-5598e8b1c7ba','karatas','$2b$10$IJoT16DOtHO7TQLJypZsgOxqxtibYt49MnHCOJO9A4AgRRyU1qYZy',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-20 08:20:05.615','2024-12-26 10:13:54.719',NULL),
('13be0f81-1840-48b9-8b54-513233b30828',NULL,'3117154','$2b$10$hNWXYXMxEXQfxPtAU8SeDOHdRcioTowrEcnNrwy/vzbSQWGZ0zc3q','UMUT','UMUT',NULL,'5447653067',NULL,'19227096223','DRIVER','2024-06-08 07:59:49.811','2025-04-17 09:07:15.190','2025-04-17 09:07:15.189'),
('14d3616b-e67c-4cd0-9a22-1f70de0cb41e',NULL,'1438277','$2b$12$wJSgkUa8zUr3mqLUEuYeROGMx.DenN5DzUjGabOlHTqJtH3eWuaPm','ÜMİT VEREP','ULUIŞIK LOJİSTİK',NULL,'5356771281',NULL,'19199306519','DRIVER','2025-09-02 12:04:14.747','2025-09-02 14:46:19.213',NULL),
('14f1ab4e-f8a4-436d-ad03-f80d8105dfe5',NULL,'6247705','$2b$10$3bmpLhq905pzP66co8sMyexhKCwILHSteeGtul/s0d9IhPju8JKua','YENİ','GELEN',NULL,'5325000478',NULL,'76998431466','DRIVER','2024-12-20 12:29:52.647','2025-04-17 09:07:16.590','2025-04-17 09:07:16.589'),
('16b73e68-11b1-47ba-9cfe-7e0db49498a3',NULL,'8217210','$2b$10$QPML9EEIBLN8aMWSjzlPAeHJVS0Yc7noNf.27hKjYlVmQ82TwywM6','aaaaaaa','BBBBBBBB',NULL,'5325000478',NULL,'90079672315','DRIVER','2025-01-19 16:09:32.512','2025-04-17 09:07:17.940','2025-04-17 09:07:17.939'),
('173956a2-c232-495a-b036-4a6a36c073e2','4b494cd3-c9fc-4519-ba9e-b4261706ae49','ahsen','$2b$10$yLfAlefYKYQCdu2BJlqtZuKJOeibjJ2JqrkUQtYeaEM6Jo5wvpNUG',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-25 14:40:42.552','2024-10-25 14:40:42.552',NULL),
('1764a07b-eb47-4578-b6cd-f3c0d0e743be','47880255-08ee-4e99-940b-16038e07de55','celikbey','$2b$10$mdU9qtOL1HJtB4m15DjeQ.trFQukI4aldtEr30e1Svi2iUDqOnfNa',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-04 08:31:51.134','2024-11-04 08:31:51.134',NULL),
('1885ac0d-1020-4976-b6de-6272b7492aeb',NULL,'1273614','$2b$12$zQsuYZbfSxa8effAkPmgbe0X12HRvb2ZyjjmjSCYR68B/yRkO0.kG','EYÜP ','YAMAN',NULL,'11111111111',NULL,'01098269114','DRIVER','2025-09-23 07:43:59.462','2025-09-24 13:41:14.974',NULL),
('1a3960a4-e14f-43bf-aeaa-409e88554486',NULL,'6931037','$2b$10$mJ3SGOYP.5Fd1uLl4FzplufvBXIAxff.jPZ3R4lapWRKtpKu1USxe','AAAA','BBBBB',NULL,'5325000478',NULL,'22731760480','DRIVER','2024-10-23 10:22:01.694','2025-04-17 09:07:19.301','2025-04-17 09:07:19.301'),
('1add63cd-02d9-4ce4-a0e5-a90e162155a5',NULL,'1711814','$2b$10$rqVghcO5t/EMP8Ov8AzAieDan5mVazSL3WiQOq1zIoY4/CUQYDSOm','sedat','sedat',NULL,'5325000478',NULL,'46659990528','DRIVER','2025-05-28 18:45:21.684','2025-05-28 19:05:44.543',NULL),
('1b75b9c0-fc76-4831-93ce-157167d220f7',NULL,'7972574','$2b$10$Aev/R6s4IY.X2yS2zOnVD.MrL.6eNTd9tIJj/1KOB5/.VYWTjO4jK','AAAAA','BBBBBBB',NULL,'5325000478',NULL,'65720596128','DRIVER','2025-02-18 15:51:59.984','2025-04-17 09:07:20.702','2025-04-17 09:07:20.701'),
('1c8ed716-4982-4229-9944-3d27cbe7d33e',NULL,'3620051','$2b$12$XfifcMkRI.UT8x7xJcGpiOY/dTTWOGuEowU8oQColZwuq.4sl1zCG','YILDIZ','ORHAN',NULL,'11111111111',NULL,'89283437914','DRIVER','2025-09-25 16:04:06.427','2025-09-26 12:27:42.291',NULL),
('1f0119e0-2853-442a-8394-39cf94fce7df','51e7b2ae-2d02-4ee4-8d48-9994fe0b0153','inegoldizayn','$2b$10$ox1q8C/cxHO.xCxQifZAGuOx2.p8gqBk3xTrsDpihv9ojkjhlO5qu',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-28 14:09:43.885','2024-10-28 14:10:32.275',NULL),
('1f4d9e5d-67d7-4983-a1af-fd368402220f',NULL,'6324448','$2b$12$wI8qq4C4.e/f2K9WRMb52eexNiSSa2V5/aSj2OffJjzfe8WRZyMbW','Bilgin Aydın','Uluışık Lojistik',NULL,'5325000478',NULL,'84054706057','DRIVER','2025-09-06 17:00:09.093','2025-09-10 12:48:00.749',NULL),
('20266106-34af-42db-a26b-578356db50a6','69a5fe7b-2e24-4454-9f9b-3a5aa3642cf0','platon','$2b$10$Jnip1Urj2T7t3REdEDCKQO2MskABM/TxwJKKbiKs4I78UEQmMmbrm',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-06-16 08:03:54.027','2025-06-16 08:03:54.027',NULL),
('22050753-e8f2-4e8d-bba4-36e9f513cbb6',NULL,'2596345','$2b$12$2zldytDZuep45WDUN6vQIOV6WShtSb2xsGWUHs5f5.uej7SlH7LbW','UĞUR ','ACAR Uluışık Lojistik',NULL,'905392130416',NULL,'13122983741','DRIVER','2025-08-27 08:25:43.924','2025-09-03 06:09:36.598',NULL),
('220ccabf-17f8-4c1e-8f3a-b72933bc097e','0debd19b-d90b-48a0-9568-2d01319377e0','homex','$2b$10$vruo8vW58nrTY.yJqu2bLOGsanpw4SJPvx33Cf59gNR3fFm5sz3km','Turgay','Turgay',NULL,NULL,NULL,NULL,'SENDER','2025-05-22 13:45:44.491','2025-05-22 13:45:44.491',NULL),
('23b50a02-d0aa-49c8-b665-6e83d0077f98',NULL,'1425169','$2b$10$4j/.quL8VP7GE12kRTHG6OnSn2q6D07A1nTZcXXd4vxobEFokZrle','2. ARAÇ','ÇOSKUN',NULL,'5325000478',NULL,'38313239487','DRIVER','2025-03-27 08:44:16.446','2025-04-17 09:07:22.081','2025-04-17 09:07:22.081'),
('2498ddbd-8a4d-4285-8857-0298781ce351',NULL,'4482899','$2b$10$Ehk6KWiyT3krv6HjWhlup.hcd.LhBFiwnzKpzJCakP4rKFCnRslQu','ONUR','ONUR',NULL,'5325000478',NULL,'49153653943','DRIVER','2025-01-10 08:54:21.157','2025-04-17 09:07:23.391','2025-04-17 09:07:23.391'),
('253be5e1-2a29-4c9d-bdf5-92555f7951a7',NULL,'3804542','$2b$10$uWMX1qVLKH/PpNvsKoHvmO1lncxjnFQIj3Vvf8Wc42Wf1/cg0akqu','YILDIZ','ORHAN',NULL,'5325000478',NULL,'86806920753','DRIVER','2025-06-05 14:07:51.919','2025-06-06 02:46:03.729',NULL),
('267651ad-c63e-4504-8f9e-415d8ab4d619','1bf50c8b-294e-4072-b9f1-99363b966bb1','marvella','$2b$12$5gSgFTyRO7UcQtnpWk93UuvyQO/B.zoIV2.aWCGRCf0TWH51QkSdC',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-10-07 14:14:12.049','2025-10-07 14:14:12.049',NULL),
('2705839b-567e-4b1c-9cc5-136a28cca51a',NULL,'4813619','$2b$10$pa2oLHc6t6pQXjm7ZRTjkuvoO5lMzKsSRXTjnkM7xBHi32qUYrP9G','AAAAAAA','BBBBBBBB',NULL,'5325000478',NULL,'94318118528','DRIVER','2025-04-30 13:44:23.805','2025-05-02 11:56:13.100',NULL),
('2a4cb28f-affe-4a61-95ca-0cf766c1cf08',NULL,'7092451','$2b$12$9OX/WxlFt3d5dxYh91uouu0nMU5diOOj9VLbhnLw18ZB7ZeCizH3a','SERKAN ','SARI',NULL,'905333610016',NULL,'06337871309','DRIVER','2025-08-15 14:18:27.764','2025-08-18 07:14:34.884',NULL),
('2e7e4bfd-1bf8-4d5f-9b6f-6a41a1c11ff4',NULL,'2619344','$2b$10$F3bI7eboG4ivogcT5uEG9.hbH.UBlETQxG6G.uu8mi6VLZYNxoo2.','AAAA','BBBBBB',NULL,'1111111111',NULL,'40127166077','DRIVER','2024-05-11 08:30:38.926','2025-04-17 09:07:24.591','2025-04-17 09:07:24.590'),
('30b3fa45-4362-4bef-b611-4d4d2a3c84e3','9e5b9a30-871c-4ff5-aa62-d768c7a3a2d5','balat','$2b$12$/PA1UnQsVoheqllX7aOuFeQqyDmnyrWESIQBbJxyZJU8c7.kQeWu2',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-09-09 13:28:20.802','2025-09-09 13:28:20.802',NULL),
('313cc2e2-5529-49ab-abe5-27b5d390bc5f','6133a2db-79c4-4372-9338-505db46b1847','petrichor','$2b$10$xeWCS/MkfBq28oFhz8Wq5eBGQDB5DdAnc4aHIIUM6uFpJhG10CL/G',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-02-13 12:31:28.955','2025-03-01 08:38:48.627',NULL),
('31fcb6ec-2c6c-46d9-ab3b-a7347a37477e','1c402ba0-2fcc-4b19-b28c-bd6071805ddd','stilanza','$2b$10$186VdbHPIpfIOc39xStH9.qAJoxQwjMHBgFYJs7BAJDvktUFbfY1.',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-06-27 13:14:16.017','2025-06-27 13:14:16.017',NULL),
('34be7c0c-3c8f-4827-83ee-ac790c7ffa10',NULL,'6170676','$2b$12$FzSUfxf8QsMvIF5AoebG1ek38RnAabvNuJGx10EFhBCbmA6y7t.6m','YILDIZ ','ORHAN',NULL,'5301824880',NULL,'13365586229','DRIVER','2025-08-14 08:40:43.721','2025-08-15 20:59:04.901',NULL),
('3548ceb6-b5ff-4000-b5f3-c3fc8b0f53f3','3c7190b6-f6ee-4275-8958-d7af952132ab','Elitis','$2b$10$ICjejat3QbV1iylQS.UUBuwDK7oyDET4nuCyeJtCedTjJAqySB3Ie',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-03-20 10:37:59.196','2025-03-20 10:37:59.196',NULL),
('355629f5-60f6-4784-baf6-380b976a6670','daf7fb45-7940-4f5b-8733-e2e2d6030da7','yusufaydn16','$2b$10$2mYSCYJA9tti4VZRnNnHz.cgeBfQyQfUGHXb3i32tF06VplkYuiy.',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2025-06-24 15:22:59.397','2025-06-25 07:45:00.132','2025-06-25 07:45:00.131'),
('355e8c44-dbd9-4b8f-a0c6-f662259648e9',NULL,'9856286','$2b$10$.zTR1eHIZ/qyYcVYKIq1JOYaN5F.vXNlWSe7IG2JyRhzQoCEVPg3S','MERT','GÜNAL',NULL,'5325000478',NULL,'31942154631','DRIVER','2025-02-23 12:03:23.298','2025-04-17 09:07:25.902','2025-04-17 09:07:25.902'),
('35cf9f82-a63c-4f10-94b0-234747014e09',NULL,'1547443','$2b$10$Gmoz9eJ5onxT/phbdgvRV.oq0jkBVist8DcOcqygzmVPBwLQCCOBi','Mehmet','Karaman',NULL,'5325000578',NULL,'87356735858','DRIVER','2025-02-13 20:20:47.547','2025-04-17 09:07:27.112','2025-04-17 09:07:27.111'),
('35d97843-f5b3-4704-8970-726d9038991f',NULL,'6329080','$2b$10$vRAB/e6bFCbxNocbFGO09ujnzwuhbM/Ex1EAudSHQUlhdHSvADCam','AAAA','BBBBB',NULL,'5325000478',NULL,'13411824360','DRIVER','2024-09-27 11:17:54.797','2025-04-17 09:07:28.381','2025-04-17 09:07:28.380'),
('363b87bc-2706-4c48-b0fd-04ba0c56950c',NULL,'oguz','$2b$12$Xw.L3pLpEmgucUmy82p33OjwkLFieugwLneTB6Gjiy17Dpfi7RJAe',NULL,NULL,NULL,NULL,NULL,NULL,'WAREHOUSE','2025-09-02 07:54:48.693','2025-09-02 07:54:48.693',NULL),
('365275a4-bd27-4fb1-8010-b2aa0ebecdfa',NULL,'5278123','$2b$10$RlIqdcJqZnjoCxyvRebSK.hcRcURF/M3gzYZcx7CO4.No92Mc.j2a','AAAA','BBBBB',NULL,'05325000478',NULL,'80981606594','DRIVER','2024-10-25 11:54:05.970','2025-04-17 09:07:29.622','2025-04-17 09:07:29.621'),
('38f55ecc-79e1-4650-a77b-c756f8cd8fab','d89f6e4c-ad0d-4d1f-98c2-188a94803196','mobellunart','$2b$12$VMnDvHyOtremc.aTGnMW9.Vae0gEq7V4D9XFobV9.nd3w1OXBx82O','Mobel','Lunart',NULL,NULL,NULL,NULL,'SENDER','2025-07-29 08:40:39.209','2025-07-29 08:40:39.209',NULL),
('394112c3-f977-4fc2-b430-775e79e472ca','98ea2dbd-82be-4bbe-b758-b7175c0f8659','azra','$2b$10$dzAlYvfuf/WnK6CeDMFLEuBJ8cE8GNfw3JM7OJALprhGpsE1FjX4u',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-25 14:28:27.577','2024-11-03 20:40:06.360',NULL),
('3a18374a-74ea-4ccf-bf1e-1c1f3658be94',NULL,'8534846','$2b$10$4W1PRItiat44/yKpmWqGmuUjDOnDgT6B4.KmWQMNoI8slu7omb.sa','AAAAAAA','BBBBBBB',NULL,'5325000478',NULL,'01163723229','DRIVER','2025-03-08 13:28:46.864','2025-04-17 09:07:30.982','2025-04-17 09:07:30.981'),
('3a568960-41d2-4ed5-8fce-c2fac42a8093',NULL,'6187376','$2b$10$MXQoLBbNRiQX.YHhNUnAkugN4SuYAGnwWytdXU0lAVjbvJaVvkWoi','MİTHAT','MİTHAT',NULL,'5325000478',NULL,'01529631638','DRIVER','2024-11-08 17:59:12.837','2025-04-17 09:07:32.261','2025-04-17 09:07:32.260'),
('3aa66ec8-0e8b-4273-b9eb-e2a05462d9ad',NULL,'0144340','$2b$12$B3asqoFxqT2ZZmh3aCa2QOntN1G1zn96.8YgSTIS7cM3GFzQQwAzm','ERDOĞAN ','ERTÜRK',NULL,'1111111111',NULL,'71355956833','DRIVER','2025-10-25 08:43:45.238','2025-10-25 08:58:43.881',NULL),
('3b73a31d-c816-44fb-8064-749f45e8f1cc',NULL,'9503544','$2b$10$Y7k4vOHoBjzbH7HyUlk9nOLgzn6Mo.Xlckeij2233ZH8RGNjCP7ge','VEDAT','DURKAN',NULL,'57373737882',NULL,'36504648686','DRIVER','2024-07-20 11:12:51.807','2025-04-17 09:07:33.523','2025-04-17 09:07:33.522'),
('3b8909c4-8a78-46c3-93e4-9259d59b50be','1b51c5f7-649a-424f-ba17-cc37d6298af9','m.olsuninegöl','$2b$10$hCwLlCLlr3iKTdkfSqrXme8xnyHSC05ZLQJSJa8vJVzotXvzBif3i',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-29 10:59:24.781','2025-01-29 11:00:17.272',NULL),
('3c75b459-863e-4837-906d-9f6bbe77c93d',NULL,'1606519','$2b$12$pa6QHt0DEwpZTIsxwRDu2exBoUWrAE1wg00mu5Fxl8o9lGx5OmRK6','RAMAZAN','RAMAZAN',NULL,'5325000478',NULL,'90196671798','DRIVER','2025-07-16 14:22:01.567','2025-07-16 14:29:34.121',NULL),
('3c871b6b-3862-4a05-81f3-759518f3bfcb',NULL,'3097000','$2b$10$CzZ.OadU9bzaTBveNufhgOKP.A2HKAUXCc8YYBDBRrOEe7m1EUid.','YILDIZ ','ORHAN',NULL,'5325000478',NULL,'77583202095','DRIVER','2024-11-12 15:43:28.761','2025-04-17 09:07:34.772','2025-04-17 09:07:34.771'),
('3ca14b8e-68b1-42f3-b6ab-297c04886950',NULL,'8198462','$2b$12$soThZEqd0L41OOyag9HwceN/zwr0yDxgw.PfNkq8GI7AGih2kXvjO','YILDIZ','ORHAN',NULL,'5325000478',NULL,'79944525176','DRIVER','2025-07-07 14:20:25.168','2025-07-08 11:33:15.090',NULL),
('3cfd87b2-5691-43be-96fe-8945eb679591',NULL,'8331173','$2b$10$zhBn/.7KIcShHcFa91Y.9eWWvKSpUh5.uLaQBI.C686tOyrsXk1Ya','DEMLOG','DEMLOG',NULL,'5325000478',NULL,'29671526018','DRIVER','2024-10-17 11:42:19.566','2025-04-17 09:07:39.171','2025-04-17 09:07:39.171'),
('3d435151-47f1-47d0-bdd1-f7be4880bb25',NULL,'2420707','$2b$12$ZXbao8HDw2behiCI2.g0Yud0b.uQoZpENVyGzRBIb/VCTiaSK3bdK','RAMAZAN INTERMAX','•',NULL,'1111111111',NULL,'89359210095','DRIVER','2025-09-12 11:07:27.729','2025-09-12 11:07:27.729',NULL),
('3e33b420-743a-4761-8aea-35c606258c0e',NULL,'4610943','$2b$12$/PUihYUQa7DpBJ.5Q982ZekhxB6eFWWToS8DYRj0AJ9tKukBLU7Y.','Ramazan ','Intermax ',NULL,'1111111111',NULL,'58079340736','DRIVER','2025-09-12 11:09:53.488','2025-09-12 11:09:53.488',NULL),
('3e63325a-9ba3-4884-9175-9fe8cdcff50c',NULL,'mesa16','$2b$10$HmvsF7/IJUCWAqBwFZtgJeZaAbfZa5UKsZjGKNtd1jQkoDRnFdNYO',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-29 10:52:47.840','2024-10-29 11:01:25.122','2024-10-29 11:01:25.121'),
('422900fb-f58c-44c3-9d0b-8b793a1844ee',NULL,'8832814','$2b$10$t22dlpuGLEAyEadnHcYSFOFFgSf95Nps6ROk4sVTaRjsQQqbsx7TS','ADNAN','ADNAN',NULL,'5325000478',NULL,'52718296910','DRIVER','2025-04-11 12:22:28.272','2025-04-17 09:07:37.261','2025-04-17 09:07:37.261'),
('457bf674-d75e-437d-b0a3-80642dbd988e',NULL,'berattarim','$2b$10$kC435uvPolJdW0r1l4VMw..MvOu5GYcSpjFJ72oqpqlQ1EqjqlxeG','BERAT ','TARIM','',NULL,NULL,NULL,'WAREHOUSE','2024-10-01 09:25:22.157','2024-10-01 09:25:38.102',NULL),
('4bb83ba8-2518-4861-a4ea-963a5b911837','541c3018-c6f1-4218-b584-b2cf4da67f97','caddelux','$2b$12$9RlvoPBFBaIASFpvqy1zcuq/4SG2.Pj/4jROmZaNlQHtbB6KQoFS2',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-08-11 12:57:25.651','2025-09-16 10:24:51.449',NULL),
('4c3a2917-702d-4b2d-be91-e8860cfc98a7','f4861afa-47df-4a6b-b9ca-da22afe273e4','diassi','$2b$10$50QvE7CXad/5YdI1k6chmu.rOibVvSkUmf7AnQBkVutdLKmjX7242',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-07 09:55:15.568','2025-01-07 09:55:15.568',NULL),
('4c68a2bd-8175-492a-937c-2e1de146dd05',NULL,'9624207','$2b$12$P3pQa3IF3HhFs7JRcz/LceFccJmKxPeHchFup5lMfHK.buuE4GzAS','serhat','serhat',NULL,'5325000478',NULL,'20441793585','DRIVER','2025-08-07 16:03:34.147','2025-08-12 08:07:30.276',NULL),
('4cd1d2cd-1ae6-4a07-b68b-6c8c68572678',NULL,'1877603','$2b$12$EwdE/IRoXIV.9Ph5Ib1yv.DSEHicQuLsHOU9p0zUNhq0XKGofcSDW','Fatih Tarkcı ','ULUIŞIK LOJİSTİK',NULL,'11111111111111',NULL,'29486858872','DRIVER','2025-10-07 14:59:47.520','2025-10-07 15:17:28.350',NULL),
('5041f94c-eff7-4b54-b60a-cfcaa27a8a71',NULL,'4245504','$2b$12$PJljEhd6xNB/tNM2GAlAmuCFl37jZ3B8uqZMtS6cSOAPa/ccDBfja','Halil ibrahim ','Söke',NULL,'5325000478',NULL,'29979194075','DRIVER','2025-07-26 07:22:40.544','2025-07-26 08:40:12.290',NULL),
('513eb145-64bb-4aa5-92b9-3ff2e6e25ecd','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','yunusemre','$2b$10$bSqnGRcO8LatewC.P14xROVS7X6GoGZ.NAhGORG2M4IbcnWA/O/jy',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-06 08:08:19.393','2024-11-06 08:08:19.393',NULL),
('51b55e5b-7487-4d8a-923e-163f04d0b1d9',NULL,'bicargo','$2b$10$nmssh056QSvdz0uhVaykj.WMpfUyv/kFF7MGCx4zQRGZZI4O7MdpK','Bilal','Karakoyun',NULL,NULL,NULL,NULL,'ADMIN','2024-03-11 21:19:14.777','2024-03-16 14:14:19.310',NULL),
('5270b348-a797-4a5e-8a61-9bedf7eb5c8e',NULL,'5180614','$2b$10$YAJ8fZwgZbw7HeSnP0dOduL1Ueg2TJ3iSP9j8Op20ycwl3XLx6HSS','serkan','Yıldız',NULL,'905354629239',NULL,'32286996277','DRIVER','2024-04-08 08:39:50.934','2025-04-17 09:07:41.211','2025-04-17 09:07:41.211'),
('530ba9fe-f192-46a0-85db-b8163e60a6be',NULL,'8039906','$2b$12$C8LR8EvibmCOxxmtDxsXVeswBfjPQILqVyz4DnOL3SM32dpM7lHWy','UĞUR ACAR ','ULUIŞIK LOJİSTİK',NULL,'11111111111',NULL,'79112254519','DRIVER','2025-10-03 15:04:04.706','2025-10-03 16:08:51.019',NULL),
('5330a3bc-acbd-4c67-b0d6-ee14d2228da2','8ab1a778-44bd-4629-8fc0-7fcc33425e9f','efehome','$2b$10$i9rGxsoe6InwJ3Q0vGcFKeH1dq1iLDj/4vHe/vh8uo/hRdAZvilsa',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-03-24 13:51:52.929','2025-04-03 09:16:13.871',NULL),
('542dcdaf-e0d5-4f20-92f1-e18ebb5fb2dd',NULL,'icnakliyeci','$2b$10$/QYby4TO.beVvWCBI69hZuAxVTJELToR1LJ/0E4yg1axiV2kjNmti','','','',NULL,NULL,NULL,'TRANSPORTER','2024-10-07 18:38:18.536','2024-10-07 18:38:18.536',NULL),
('546fe148-c7c0-46de-bd00-be670a91e344',NULL,'1074062','$2b$10$.QP8W36TwJgzcPmDV6.h/Oa16/PSAF8PKz1BEuS5tEA.ydpeirl/u','MEHMET','KARAMAN',NULL,'5060503927',NULL,'09714382362','DRIVER','2024-05-10 07:19:34.552','2025-04-17 09:07:43.301','2025-04-17 09:07:43.300'),
('54e9f383-0049-4d97-a0d7-9fd8ef237e5a',NULL,'6094500','$2b$10$7pCbwUtqzCdWQx5uWMksJOvnrz5Dx8bzIkTUivtkDp.RTD/HAUZgO','AAAAAA','BBBBBBB',NULL,'5325000478',NULL,'43399626314','DRIVER','2025-01-26 10:22:06.784','2025-04-17 09:07:44.981','2025-04-17 09:07:44.980'),
('55c2db30-2231-4c0a-b5d6-695806bdf87e',NULL,'3271677','$2b$10$F/K6M0IRemYvgadAT6A7BuS4R8xbTk4xfDL8wf2/lWKZKpTLjZZF2','MİTHAT','RAKE',NULL,'5325000478',NULL,'11111111110','DRIVER','2024-03-18 07:29:22.888','2025-04-17 09:05:41.258','2025-04-17 09:05:41.257'),
('55e524db-7afb-4ecb-92a3-ae12921b1fa4',NULL,'6476149','$2b$12$FzzE6rg/fK3kNkzywx24ve0HOtuElaAw4hMUg/Chk8AFZt6puS8KC','MERT','GÜNAL',NULL,'5325000478',NULL,'97084743952','DRIVER','2025-09-12 16:46:30.856','2025-09-12 17:16:02.542',NULL),
('56323a39-e192-4016-a254-840950ca2e27','7f34d75e-284a-42ac-9cbe-a29174748991','mobilyakolay','$2b$10$SLhvCCtwQRL.ZgXmpfv3TuDKOFQRncPHUjJHmA6DtnbzILh0xyJoG',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-13 12:53:19.738','2024-11-13 12:53:19.738',NULL),
('566efc0a-2b6f-46b7-95cd-9482a2b3ec07',NULL,'1410613','$2b$10$vBuuYrVXpQF.wtbsgQHu.uV5zPwnzxfXGYiqMLJDmMKbLuXklyMla','YILDIZ ','ORHAN',NULL,'5325000478',NULL,'66160470203','DRIVER','2025-02-07 11:12:39.715','2025-04-17 09:05:43.601','2025-04-17 09:05:43.601'),
('56e5168e-cbcf-408d-8798-5560be5c7235','7bb6a552-e940-4456-bfc3-50a13013996c','sidart','$2b$12$jNYFWO.bMWfUwsRwgoPbbeQkN5xLEUneM8ZpSn047Wv9BzGYU.3D6',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-08-01 13:04:38.338','2025-08-01 13:04:38.338',NULL),
('585b4575-ecea-4671-89b2-199f0605ed62','7868f0ab-d491-44f8-9f78-15fc6f286ffa','kcmn','$2b$10$.uoIZV0QHJSVr8RJnXqlPeTgdKKiy5K2CSbSOusbTNba3QlMcmiPu',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-02-13 12:29:21.284','2025-04-14 08:34:44.565',NULL),
('59b7be95-624f-44fa-95ff-7ca218f0ccab',NULL,'8262585','$2b$10$.vmq6AqiQXAgMxaUuhE78.oQhD8OK7qRrgrLjddSrgEpnnsD4uYui','Adnan','Adnan',NULL,'5325000478',NULL,'69795385875','DRIVER','2025-06-14 12:32:30.599','2025-06-18 08:08:50.179',NULL),
('59cda54a-e912-49df-8694-b58a9de47e57',NULL,'5489842','$2b$10$zjtK8K9aUkIPpTPOwNikJOQXth./vN.pUKCCYjqrYpWmAEcu3XyRu','NECDET','NECDET',NULL,'5325000478',NULL,'90377765592','DRIVER','2025-01-03 09:09:49.753','2025-04-17 09:05:46.080','2025-04-17 09:05:46.079'),
('5b46b6cc-f7fa-44cf-9010-2d1ce64938fe',NULL,'3847602','$2b$12$quLN9AS.1d93chUQzrFKROtURME4LEqCPJT/FOjXFBpJ6LPA8bAwa','LEVENT','LEVENT',NULL,'5325000478',NULL,'39938652833','DRIVER','2025-07-17 09:35:48.455','2025-07-17 09:36:36.378',NULL),
('5b8e6661-2c47-4256-b310-f60a1e4573e4',NULL,'9055124','$2b$10$N3C76bMq3/5bOt.tNULdzu92vh9cacttMMCYlTl5ZL1OvpP92H0QG','MEHMET','KARAMAN',NULL,'5325000478',NULL,'67584366064','DRIVER','2024-08-31 12:34:21.626','2025-04-17 09:05:48.543','2025-04-17 09:05:48.543'),
('5c723cdc-e582-4b00-8271-838c085984c2','daf7fb45-7940-4f5b-8733-e2e2d6030da7','mesa','$2b$10$xj6tQeAv2gXtn9hJAgm18uaLefy.Akc8VaKgYjOrsEvoWu3FD8r2i',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-29 11:02:41.371','2024-10-29 11:02:41.371',NULL),
('5dc13850-d4b7-4c71-8747-a7062bbe68d1',NULL,'operasyon','$2b$10$axYJ.RDHhMbmlDAId3Ds/ODbR.LtLLEkJl.sr6q7sX/6IGWsmiLxq','Operasyon','Operasyon',NULL,NULL,NULL,NULL,'TAX','2025-04-17 09:41:40.321','2025-04-17 09:41:40.321',NULL),
('5e247840-41a9-497e-9e98-fc699c9557fd',NULL,'9277948','$2b$10$PN2/v6C1KyCc2jcAe5MWYe/xoWYVcHwRF1sdY6pP7jG3KukWIeu9u','AAAA','BBBBB',NULL,'5325000478',NULL,'07914558881','DRIVER','2024-09-03 14:57:11.566','2025-04-17 09:05:50.341','2025-04-17 09:05:50.340'),
('5e58a473-7b45-4666-8a0a-d76339200164',NULL,'5366574','$2b$10$zsf/ITpruJPATacVmpDzeexG/oNdtpXNO81bb.YKj3gP2E/A.k3yi','TRANSJET','OĞUZHAN',NULL,'5325000478',NULL,'11111111113','DRIVER','2024-03-19 07:44:41.699','2025-04-17 09:05:52.164','2025-04-17 09:05:52.163'),
('5e6f45e0-45fd-4432-9d95-6cdf99cd34cb','67e5a145-070e-4e0f-9c3b-09f273d6ed40','wientisch','$2b$10$5REDdJ1kqUHFW9kZWEtLCeMFUq3ObKEWq3DdxbDhZfPy1ljFMVW0m','wientisch','Mobilya',NULL,NULL,NULL,NULL,'SENDER','2025-05-03 11:34:50.279','2025-05-03 11:34:50.279',NULL),
('5ee41ad5-2d16-4507-935c-ff8e651a97e5',NULL,'6647533','$2b$12$cFE4xuSofZR.7CQXBCOdXOQmZ619kXKUuMFalZJxZyd4HMxN.aLJ.','SERHAT','SERHAT',NULL,'5325000478',NULL,'63210935716','DRIVER','2025-07-18 17:45:49.926','2025-07-22 16:18:49.461',NULL),
('60f1985c-dc0c-4544-ad6d-cae594665650','4126da30-ba9b-41b7-be29-865069aa484c','yusuftest','$2b$10$HpRR5yy6L4PABGpG62D0A.QjhsNgbeBjO01UoZ6X0Ju6J8XltkF42','yusuf','test',NULL,NULL,NULL,NULL,'SENDERADMIN','2025-01-29 14:52:46.327','2025-06-25 07:45:02.017','2025-06-25 07:45:02.014'),
('617e6108-aa2c-4fbb-b1d6-e53737967241',NULL,'3767964','$2b$10$9MapiewlgXSnJIKqw/iEXeYn/fSBOOeUqQiKg1sLHwmZVHFMFahBO','MEHMET ','KARAMAN',NULL,'5225555555',NULL,'71178716916','DRIVER','2024-07-02 08:19:33.463','2025-04-17 09:05:54.696','2025-04-17 09:05:54.696'),
('622ce64a-aa43-475c-929c-9298491d72d5','e41c8c53-684c-4376-8162-2e589c44b742','1dos4pieds','$2b$10$zM69rf2eYRZ06om83FN51eBCakc2NtCPwXRuJQ7D4opSzsxcBQD/y','YASİN','Yasin',NULL,NULL,NULL,NULL,'SENDER','2025-05-13 10:04:55.153','2025-05-13 10:04:55.153',NULL),
('6343c162-1e4c-45b8-baeb-ada99b4a6feb',NULL,'2352437','$2b$12$wSdhLPMyxgFtWrN4ocFy8OoDPZiYmb8XfJw.vp80UF4KyWb4yKlqS','ADNAN','DURSUN',NULL,'5354622027',NULL,'18146779999','DRIVER','2025-08-14 07:43:55.125','2025-08-14 08:02:29.690',NULL),
('63bd0f06-10dd-426d-8d26-45e956fb2807',NULL,'4285049','$2b$10$kvrl9S9mr8i5P1cR2F/RAOk8CI5Qcvh.aMb5Wzx2yDXKJc8onzDnS','OSMAN','OSMAN',NULL,'5325000478',NULL,'42528728266','DRIVER','2024-11-29 13:15:46.957','2025-04-17 09:05:58.589','2025-04-17 09:05:58.589'),
('63f5a5e3-04bf-43e2-8672-e72f7f8b0dc6','e6d4faef-484c-4ce7-992c-906e05fc083e','muazzam','$2b$10$m0CUzFZCnbgGi2EAKJ3pquiUfB8Asgbuw/dyD7KQqwyRl8eaqwPue',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-02-21 13:29:55.283','2025-02-21 13:34:19.251',NULL),
('651c2da5-3d85-4f3b-ac7b-27344cb92a63',NULL,'6889264','$2b$10$PPGK0hxlLBdUWNscwtBH.u6LtKaQ77z/wJczjBzdyqbOK0bktPSPK','MEHMET','KARAMAN',NULL,'905060503927',NULL,'33333333333','DRIVER','2024-03-16 09:06:41.597','2025-04-17 09:05:57.070','2025-04-17 09:05:57.069'),
('672088cb-62c6-4858-b0a7-a64015547c74','7487951b-3af6-4f83-a5fa-6847a10dd8c6','keyifli','$2b$10$81lBajvbM82J2b.dcKDRFu465HToC6AigCKWOGKz2IKUQnkiP3kBW',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-04 08:22:58.267','2024-11-04 08:22:58.267',NULL),
('68c6e1c2-c9ca-4d8d-b6f4-ffe58278bf7a',NULL,'5619788','$2b$10$HmCnvv9V9ZD7i89vcmxfhO.OphZFf0igmHL9sz8.jxCRXV3YjlRAS','MERT ','GÜNAL',NULL,'5325000478',NULL,'70998708477','DRIVER','2025-05-23 06:25:41.798','2025-05-26 13:23:22.333',NULL),
('692d1bfe-eea6-418c-8311-271a2e255cf1','3b80982a-28cd-44f1-8d72-59c4daf5e636','masami','$2b$10$rxGwTjUBnNg3BpcrfKfXouj15do1/nFSagseJhbhvMyW6TW.aJc/K','Masami','Masami',NULL,NULL,NULL,NULL,'SENDER','2025-04-04 13:00:37.610','2025-04-04 13:00:37.610',NULL),
('6bf85119-84a1-426f-b5d4-97a6de56e9cc',NULL,'9727771','$2b$10$MmZcIKU0PWB28MXEjzIKW.I.FL8KMoY4UmO4y7lDHQ4/LYDedEZ4W','Aaaaaaaa','Bbbbbbbb',NULL,'5325000478',NULL,'27810285046','DRIVER','2025-05-25 10:51:31.745','2025-05-26 15:07:26.342',NULL),
('6ddcac49-f39e-4a3f-b770-da20e6c05778',NULL,'3500947','$2b$12$rhneQgjRvxYkFDyX7r00UujILqDjsvXg5f49aRuK0.ZG1ZkM8NMJC','MERT ','GÜNAL',NULL,'11111111111',NULL,'83772971789','DRIVER','2025-10-17 06:45:24.474','2025-10-17 10:53:07.401',NULL),
('75e4c5a9-5ba6-4291-96c4-7245e40248be',NULL,'5704679','$2b$10$T7yqEKOEfZIN8D4MnDp2jONpbpDC2JbW1L08d.xO.lZiSyRYAP2S6','SERKAN','YILDIZ',NULL,'905354629239',NULL,'22222222222','DRIVER','2024-03-15 14:41:04.777','2025-04-17 09:05:59.969','2025-04-17 09:05:59.969'),
('769f3044-7b21-4f0b-9fb6-6c8f6900dfd8','d1ba1223-4475-415e-b63f-154a9404e56e','erba','$2b$10$u8iUHJltdPFPL64hx16ykOB06PrFabtNrBZahyCJnnQscxe/Dk9xS',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-14 11:08:43.544','2024-11-14 11:08:43.544',NULL),
('78e00f34-31f6-4fc1-bd80-c7dac5f79d9d',NULL,'1406415','$2b$10$nsRAPFc5LKfiibFa5jbml.R3P6pdCa5oEwUxAZnyiGP254EDU6FZi','YILDIZ','ORHAN',NULL,'5325000478',NULL,'50124108497','DRIVER','2024-10-11 13:09:10.979','2025-04-17 09:06:01.359','2025-04-17 09:06:01.359'),
('794fabe7-d403-4e5b-bb6d-0bb1c50bfe9b','d50fb551-10f1-4b7c-b65d-6eb4bef94704','Möbelklang','$2b$10$/GmkemmulF73KQpXhAagx.kdogJ254DiDPcCx/LHmI.8YDDxbHbn.','möbel','Klang',NULL,NULL,NULL,NULL,'SENDER','2025-06-15 17:26:00.842','2025-06-15 17:26:00.842',NULL),
('796d8b7b-662b-493a-8d3f-78c3ae052712','d8172c72-d29b-40c5-b0b2-0277129ff6b4','mobilyamevime','$2b$12$S3zKDvmflA6vNV..B1zIpO1x/uwc3Ot5tbBK7shVwyaFDl7cppkTy',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-09-10 12:54:14.898','2025-09-10 12:54:14.898',NULL),
('79d27408-6f5c-4ce9-bd9f-b38b2191e394',NULL,'5984440','$2b$10$Gkw1XE6bJNA/cR9uzKZevO3CF1U3EfV.is1AlSVjOd6WRk.uMFGkK','SERHAT','SERHAT',NULL,'5325000478',NULL,'00114904417','DRIVER','2024-12-13 12:40:16.912','2025-04-17 09:06:02.710','2025-04-17 09:06:02.709'),
('7a1df3b3-db34-4842-b2ff-8c64dbc59f2e',NULL,'1371831','$2b$12$k.LyyW/B0sLjshrVOphnVO8lP8J.F.Fhhs8D41c0k8HYgB/6LDi1W','HALİL İBRAHİM','SÖKE',NULL,'5325000478',NULL,'94484193948','DRIVER','2025-07-11 07:57:47.131','2025-07-11 08:00:02.531',NULL),
('7a2d7df7-804b-4e18-9761-b478d38c69cf',NULL,'2531777','$2b$10$2yhiMoscu2djBY5/463TZ.mSG5HT14816PvseIrf5XDs31bLjv.VS','MEHMET','KARAMAN',NULL,'5325000478',NULL,'99223851049','DRIVER','2024-09-18 21:01:50.842','2025-04-17 09:06:04.269','2025-04-17 09:06:04.268'),
('8036d452-e94a-43ad-baf4-b9a1a0edd74a',NULL,'3357569','$2b$12$0BAO1vDJlzVwttXc8Xoo.uFVx3uOCwLLy5DBTctbQ0MwJbcbQZBvq','BİLGİN ','AYDIN ULUIŞIK LOJİSTİK',NULL,'1111111111',NULL,'34629324266','DRIVER','2025-10-13 07:14:08.876','2025-10-14 08:52:36.714',NULL),
('804a2f53-7a26-4e8e-a505-7fc107953b50','a42d8839-caef-4422-888f-cbfdf4188c5b','inobilya16','$2b$10$ZlDUt/tsBIar/o2I4WgeUuOGYFEJS1DVbGK1xx7Xp7xXEym75ZT/.',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-25 13:22:05.198','2024-10-25 13:22:05.198',NULL),
('8183f832-87d6-476d-bdf4-cdad3d1948c8',NULL,'1985864','$2b$10$vmCCexCy1qAFiYGcoH7Ds.8.oCO1h6P3fLgK24BzSvOBzv57RjvZm','ADNAN','DURSUN',NULL,'5325000478',NULL,'34549901980','DRIVER','2025-03-06 10:17:40.312','2025-04-17 09:06:05.679','2025-04-17 09:06:05.679'),
('8184d19c-0d1f-4439-978c-7a3364e54967','b0c1192a-7d38-4b69-a901-778f65a98b9d','sidya','$2b$12$VsXqtfI6TNJ/mlNdSLL41.IGSnhszG5EBg5OgoNFfi7tHgbmR92uC',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-07-18 12:27:06.145','2025-07-18 12:29:14.577',NULL),
('83224aee-d235-47a5-9e9c-e7de4568e4a8',NULL,'2444538','$2b$12$D5rNBGqk2Hv2ywuXYbDAzOiLzKDnf4HHtZk46wfbN2XPSJyAQ5LZ2','MEHMET','MEHMET',NULL,'5325000478',NULL,'78993839895','DRIVER','2025-07-12 09:06:58.213','2025-07-16 14:21:29.421',NULL),
('87f1f248-9af0-45d3-a045-68dd032a2141',NULL,'3819935','$2b$10$dYz16EzHw3gWUCzhj8g9o.31wOzv1u3K3lddsU/aKo04FAHIFPRKm','AAAA','BBBB',NULL,'5652568796',NULL,'79688588743','DRIVER','2024-07-30 14:58:02.377','2025-04-17 09:06:07.000','2025-04-17 09:06:06.999'),
('88135d96-521d-47cc-8c04-7721e4ad4b0b',NULL,'2093708','$2b$10$lX9FZcg9iNUUPXURzphwc.u9ZqykNwnAyI7R4OkGHKStA8.W82FDK','İBRAHİM','GÜLTEKİN',NULL,'5325000478',NULL,'24695917276','DRIVER','2024-11-08 16:40:27.051','2025-04-17 09:06:08.280','2025-04-17 09:06:08.279'),
('8930a572-e107-4519-89aa-b0ec7f7f9e7e','a73239a9-aa7c-4faf-9c29-56871f37e40c','inegölsofa','$2b$10$HzVJEU.MDuMPMG.zIzuF2uJKKRvnVK/gTiijrvJ5aAFo5/.TdbQge',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-27 13:35:59.387','2024-11-27 13:35:59.387',NULL),
('89428e9c-4d02-45c3-a044-0b2a5ac2465d','976b33fa-4cd2-4029-8251-5f6f2b9cd77a','sarikaya16','$2b$10$36OYCtTizCfafzQfV4gz4.vNVUJvA9jokiftWHEz63j16SEC3kEMO',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-04 12:37:41.227','2024-11-04 12:37:41.227',NULL),
('8a8ce0d8-ac7f-4619-b0e9-699a01b6849f','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','Tahir','$2b$10$6aqQtfktYVQcIvXD5752w.KI5QoS/HbbOS0ouyatwf55QCrHTqvqy',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-25 13:43:51.979','2024-10-25 13:43:51.979',NULL),
('8be8350c-c5e3-417e-9d6a-181280910e51',NULL,'3877359','$2b$10$T765lR1gg7oUI4czk/hrWuwpjjDE1U.RpnAaXMXlnW3/C/YBCp1Yu','YILDIZ','ORHAN',NULL,'5325000478',NULL,'61789463260','DRIVER','2025-03-12 18:24:00.109','2025-04-17 09:06:09.590','2025-04-17 09:06:09.590'),
('8ca45f52-08cb-4edb-b4ac-968f35e2985f',NULL,'9223030','$2b$10$gH6vXhILzg0QT6o.i3mhue12dhetZgFJXT4MDWpLw0B79uoITx7IC','Erdal','Erdal',NULL,'0113637474',NULL,'73991229721','DRIVER','2024-07-03 14:31:46.213','2025-04-17 09:06:10.889','2025-04-17 09:06:10.889'),
('8e41ed4d-031d-4418-8355-bf1c47dd2344',NULL,'9539601','$2b$10$vjkSe2fp1uNm03QwXx5rUOz4epmNi9vcvcxaIRXUxAa2RqE1EgfuC','AAAA','BBBBB',NULL,'5325000478',NULL,'98281422112','DRIVER','2024-09-27 14:28:05.622','2025-04-17 09:06:12.190','2025-04-17 09:06:12.189'),
('8fff5e14-418c-4377-bd83-3a3f81383507','ef4ed3e7-70ca-4af6-8572-41fa7e11a3b6','dorthome','$2b$10$jk4n6XAyt0xJZdaMD3pgw.wVttjiTRCq5A3Lt6F4Zncf1GTTXbnh.',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-13 12:21:31.768','2025-01-27 11:53:55.648',NULL),
('91512304-d0d5-4ddd-8170-53b75b87d21c',NULL,'1810198','$2b$10$KvgoQdTtpp9.VR4tS2/yfOx9wBBn4OcR1Mqkbm/TONgEcvwrb6RHq','AAAAAAAA','BBBBBBBBB',NULL,'5325000478',NULL,'21275092413','DRIVER','2025-03-25 09:39:17.021','2025-04-17 09:06:13.350','2025-04-17 09:06:13.349'),
('92c7d566-a43d-4054-9019-30b15a3c0dde',NULL,'1051266','$2b$10$95ymd0yn22I9BYFE3FfNMOxdnacsVar8qq/T/.2IZ6D3MuwXTasu.','HALİL İBRAHİM','SÖKE',NULL,'5325000478',NULL,'79980818882','DRIVER','2025-03-11 14:16:19.289','2025-04-17 09:06:14.540','2025-04-17 09:06:14.539'),
('92fdfc3f-30a0-47d1-a5dc-275b7de3ed7f','0dae8190-b900-4826-9171-b2d74a2538b0','vavello','$2b$10$WKWjHWPY0IWkYXAp1SWiJ.r9l..RYQVtlKrprBveMbx6igFs6QXc2',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-07 07:00:52.999','2025-01-07 07:00:52.999',NULL),
('93a84243-1f35-426e-8346-36c89babddbc',NULL,'9930080','$2b$10$snpcjX1pTgu26SXFb.wgw.HasVn2KlPi0Sk3XUtVlI6LTGQu/7qKC','MEHMET','YALVAÇ',NULL,'5325000478',NULL,'44647187047','DRIVER','2025-02-27 10:42:46.210','2025-04-17 09:06:16.020','2025-04-17 09:06:16.019'),
('94e6eabe-689e-417a-9372-99a5be909377',NULL,'7756264','$2b$10$CEKS2tVrUDjbHODHj1AapOSvl.pR8mwHicjg1K0ZWtCLHVqUzxz8C','ERDEM','ERDEM',NULL,'5325000478',NULL,'94855284078','DRIVER','2025-06-25 10:52:20.261','2025-06-26 16:05:22.655',NULL),
('99a91206-0a2c-4e0e-887e-c0e1fcf31c62',NULL,'6630701','$2b$10$lxabaXYrIPSGKgEfVnZmFe7LKcbxLTDQoZkcFEdDsP2QY4We/8s0q','AAAAA','BBBBBB',NULL,'5325000478',NULL,'12500550611','DRIVER','2025-04-26 14:34:06.002','2025-04-26 16:02:30.708',NULL),
('9c2e84a6-e19f-46ed-9dbb-4745ed235475','7b7d62c1-d424-49fd-b09d-9b4cbcb02a8b','sizindükkan','$2b$12$Ecd6kaFzn/QRUoC/R63.Su3TkVJup7JF47m8whv4UWT1e9ST/E28C',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-07-30 14:23:39.331','2025-10-09 07:46:49.267',NULL),
('9ec71490-f009-4b9b-8d7e-b3f09e5ac8a5',NULL,'sametmutlu','$2b$10$7b38IwCuqyAbbJhyKUcsS.Ph8LKS.nqbFts9IDISCZLhlxePShP6e','SAMET','MUTLU',NULL,'905388236734',NULL,'11842882464','WAREHOUSE','2024-10-23 10:52:07.490','2024-11-01 07:44:58.446',NULL),
('a01aef32-27f9-4eb2-95fb-b0709e574b5d',NULL,'1051556','$2b$10$IdxrBzjKJ1BjJWcnrmiv.uJ/NDqY2TbipTN0L8M1DJYzlBfoVeFvy','AAAA','BBBBB',NULL,'5325000478',NULL,'77115790122','DRIVER','2024-08-20 14:48:44.419','2025-04-17 09:06:17.901','2025-04-17 09:06:17.900'),
('a43910cb-64fb-4656-85dd-ac0079eba02a',NULL,'1349109','$2b$10$c6KI82lcmgNuGjDLJ6DxNORec23QQTFRtwwxTTw8JrXduM88UeoYO','İSVİÇRE','AAAAA',NULL,'12455545555',NULL,'38475999460','DRIVER','2024-05-11 09:05:56.725','2025-04-17 09:06:38.842','2025-04-17 09:06:38.841'),
('a91e2901-d325-4f9d-8b94-a9dfcec88cd6',NULL,'9656943','$2b$12$dtdf5hqT.bwLk08tXZfdeOOlzBOdD8b8tMJA6rOItavs3k58ow2Yi','MERT','GÜNAL',NULL,'5325000478',NULL,'45929632696','DRIVER','2025-08-20 15:43:06.377','2025-08-21 08:12:56.849',NULL),
('a9a807f7-304d-4b57-bbcf-684a991121ba',NULL,'7826819','$2b$10$.HsdFB2/pmasbrFyqcX2wOCE4dsqoLoJNlSsFNr28lJG5JD2ibtIO','DİYAR','İSVİÇRE',NULL,'1355333110',NULL,'78466594467','DRIVER','2024-05-29 08:39:50.071','2025-04-17 09:06:20.051','2025-04-17 09:06:20.050'),
('aa4f7e96-5378-4eb4-b1ed-74937e24424d',NULL,'4951994','$2b$10$.b0RY7T5Ej/CTZJDVk.rseCQqrng1zmV0587sDwr84/UqGQzAp6Za','sedat','sedat',NULL,'5325000478',NULL,'63824401954','DRIVER','2025-05-14 16:56:37.597','2025-05-14 17:03:18.959',NULL),
('aaa4a453-cb36-4567-b88e-335acb07c024','af4a65f8-0a9a-4bae-b526-2f7622e7d6ee','ussa','$2b$10$0U7xHK0xmV1cXKcpPNHHgOEYqTA2oPGZWLdCEjtKxq/fzSgBpGBWi',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-31 08:05:28.156','2024-10-31 08:05:28.156',NULL),
('ab532050-8a54-4cb4-9e27-59229ab24a9b','338e8c09-4ca5-4617-bfc1-a0692646d475','mobinya','$2b$10$DgNkld6CBqAVI85r9Ei2E.Sv9i94oAm7S9X2IAhZfO0npAGLNuJ3m',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-21 11:39:28.283','2024-11-21 11:39:28.283',NULL),
('aba88fd7-6d69-460f-b7bd-3a023eb653aa',NULL,'4361714','$2b$10$z/AX.YhY4gqYvDmaPShW4uHa8cZEO1lNChdjU.G5/8pA98cdsT18m','MEHMET','KARAMAN',NULL,'5325000478',NULL,'49425699464','DRIVER','2025-01-22 08:38:12.056','2025-04-17 09:06:37.352','2025-04-17 09:06:37.351'),
('ae57be75-c0b1-4a5e-9005-d65c4a98f6a2','27cbce83-310c-4e98-830f-7433b10c2efd','trendysofa','$2b$10$SA2UfCU0JUorvAhjBLtlneRpl2rXG.bJOVW0rURiQRHilrkQvzKXK','TRENDY','Sofa',NULL,NULL,NULL,NULL,'SENDER','2025-06-20 15:43:04.083','2025-06-20 15:55:31.011',NULL),
('ae78dbce-4e24-41e6-b3a4-d1b987c846fe',NULL,'8891115','$2b$10$2uPIgQysAae5KlSg5mbe/.Hce7Dnf6yWmaoST.OGTm5mCtPgr95EG','MERT','GÜNAL',NULL,'905412867123',NULL,'44444444441','DRIVER','2024-03-30 07:14:00.773','2025-04-17 09:06:21.789','2025-04-17 09:06:21.789'),
('ae872aab-0222-4d6a-aab3-438c0c9e1e37',NULL,'7991478','$2b$10$niRR.Q/Y6I7UIFebSz2WVuYFkugopbTOaPNAV8BmrpWn1DYUKpX62','SERHAT','BBBBBBB',NULL,'5325000478',NULL,'44611148632','DRIVER','2025-01-11 14:53:42.276','2025-04-17 09:06:23.329','2025-04-17 09:06:23.328'),
('b02b69bc-afa2-4c75-9d04-3000fab838bf',NULL,'1961017','$2b$10$C7Bn.ZrW2puL8CHiyyqPquhWq1vYrLWeFDi/SmuhI6xssT8KzER7O','AAAAAAA','BBBBBB',NULL,'5325000478',NULL,'39804539160','DRIVER','2025-02-15 10:05:10.599','2025-04-17 09:06:24.831','2025-04-17 09:06:24.831'),
('b1ddaa2c-21fb-4461-84bb-5981fdbc451a',NULL,'9318594','$2b$10$BwA.o8xX1mHTIBMwACVxlua7F55fQKcX.gC0quOtJy1getwX.n8LO','İBRAHİM','GÜLTEKİN',NULL,'5325000478',NULL,'30489107519','DRIVER','2024-10-17 12:07:01.576','2025-04-17 09:06:26.370','2025-04-17 09:06:26.370'),
('b7cf2766-a9f5-4947-9229-ae150f913555',NULL,'0775239','$2b$10$7C4FxchJ1vE62x/vymRyq.KOsLLzUSC2ff0jcfShZMi.3dRVN61zO','Yusuf','AYDIN',NULL,'905342491655',NULL,'77728724902','DRIVER','2025-05-08 07:12:24.829','2025-05-08 07:12:24.829',NULL),
('b84293a6-7823-4649-bf2e-43da87261b6f',NULL,'5499434','$2b$10$soVG4Vp/sECpez1.Bnk11.8EbQGnDq9xz0pg5rL1bcF/3gCNrenVm','MEHMET ','KARAMAN',NULL,'5325000478',NULL,'31562061995','DRIVER','2024-09-19 18:26:57.052','2025-04-17 09:06:27.790','2025-04-17 09:06:27.789'),
('b89ddf27-c334-46a6-bedc-5ee2af92e715',NULL,'4483314','$2b$10$XwW9jNb0SiXOEY6sG4jV9eccRNtirCYu1ri/3M54pYpxTB8Ra9GGO','AAAAAAA','BBBBBBBBB',NULL,'5325000478',NULL,'67482309942','DRIVER','2025-01-05 13:51:16.891','2025-04-17 09:06:29.069','2025-04-17 09:06:29.068'),
('b9603b53-514c-4ea5-86be-e3787a613fd1',NULL,'0385657','$2b$12$2woQkskwdXacdAfGttfFwO7l9RuJ4C/D7WsPCKOSOkiM5MefhBEWS','FURKAN','ULUIŞIK LOJİSTİK',NULL,'1111111111',NULL,'30561370086','DRIVER','2025-09-05 13:52:01.455','2025-09-06 09:41:31.756',NULL),
('b99f5e5c-8849-440a-bc66-aeb8223dc466',NULL,'3986102','$2b$12$y5bfhNYiRf2yD5w.fUfzZ.C1bnG8R.uQC64CGjq2i4i6hMF10CSiu','SEMİH','AYDIN',NULL,'111111111111',NULL,'25944424950','DRIVER','2025-09-17 14:44:21.750','2025-09-18 15:48:17.412',NULL),
('ba396a3b-b817-4fc9-ab67-95ea4b70b96e',NULL,'4975018','$2b$10$gkHSoSjNKYyKshQDvhdto.pcTX/lFnnss7Y3tkzW4WnSurNHBC57i','MEHMET','KARAMAN',NULL,'90560503927',NULL,'93572086704','DRIVER','2024-04-27 08:32:20.160','2025-04-17 09:06:30.590','2025-04-17 09:06:30.590'),
('ba57372a-13f9-4877-b5f3-e8a3e3d50286',NULL,'2392345','$2b$10$Z8FX6WEBXFGIfIdjgihrwemb93B8CSyQrol.8m6QBeFFaUrCwwgQG','HALİL İBRAHİM','SÖKE',NULL,'5325000478',NULL,'46051642113','DRIVER','2025-06-20 14:59:11.880','2025-06-27 08:25:57.824',NULL),
('bad42655-8495-4cb1-a41d-68ec2bde3c99','d92bec02-a9d2-4e8e-88e6-6b64208e6b26','basturk','$2b$12$t/Wx91jHIzUqK0B4yEJqlefuxaPC.Vrv5eIL30ROUyp12ccoMhIfO',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-09-03 14:27:19.122','2025-09-03 14:27:19.122',NULL),
('bae85214-061b-4db5-b227-d5c1bcd895f1',NULL,'5411870','$2b$10$BeMC6P7AUAZdxXD0S3IL7..5eBhyfvVnFZOlq6WhpBQJdD1p1rL.G','SERHAT','SERHAT',NULL,'5325000478',NULL,'95329465835','DRIVER','2024-11-23 13:40:39.437','2025-04-17 09:06:31.881','2025-04-17 09:06:31.881'),
('bb561a28-5dde-42e6-a2cb-dd7f6178002f','3addc5c1-e82b-4a1a-b4af-1f66307a9108','mobilyanburada','$2b$12$cCmDyuyIKjQe9ynUUmLqPe/HVBI15jEEjXkr8xTzaBY2cSuI7gR8m',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-08-15 11:45:28.269','2025-08-15 11:45:28.269',NULL),
('bc2dc1f8-aa2d-4699-8e6e-998bf597a113',NULL,'7314663','$2b$10$3lmHxdMYDtfr0VzSpgonSe1qlO5W7A2K7hMQNglwwFY4UsbV9lImm','MİTHAT','MİTHAT',NULL,'5354287784',NULL,'43070336943','DRIVER','2024-05-23 07:26:48.140','2025-04-17 09:06:33.160','2025-04-17 09:06:33.159'),
('bd245b07-4e65-4a62-8759-5cf305ae1e95',NULL,'0938744','$2b$10$ZulaflKqWFZ.SiBcxr9Pje3pdD/ZYmZZuTRSVLw.HkJv1obaLgryS','ERGÜN','ERGÜN',NULL,'5325000478',NULL,'78040076263','DRIVER','2024-10-02 08:51:15.184','2025-04-17 09:06:34.180','2025-04-17 09:06:34.179'),
('bf502d81-bcb2-4619-a1a4-3844f0765d4e',NULL,'9064411','$2b$12$RN.Ap/kMM2IEuqpDKHmbz.G7hNm716nANjC857YaGBx1CL36pQ7YS','ADNAN ','DURSUM',NULL,'1111111111',NULL,'63915495766','DRIVER','2025-09-10 06:49:18.565','2025-09-10 07:11:56.161',NULL),
('bf50b23d-77b5-4036-93c5-773790329fda',NULL,'sarikaya','$2b$10$ffGyq8gjvXWYhf69FLtv5OJFX7mcVuWaxeghlzZlpeKPZLmmiOZFi',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-24 14:35:03.661','2024-11-04 12:33:23.145','2024-11-04 12:33:23.144'),
('bf6ed1e9-7cdd-4061-8e15-c79ba9478c28',NULL,'3163334','$2b$10$2gbcbr0rcgWEV2gxNNCkm.Oipbghdn6QbiI/3Jow60Ic8KrZNX2qe','LİDER','LİDER',NULL,'5325000478',NULL,'11111111112','DRIVER','2024-03-18 07:30:41.090','2025-04-17 09:06:35.521','2025-04-17 09:06:35.521'),
('bf6f92ba-eef7-4290-902d-b1bac86244bb','5adf0bf1-e45c-4f30-a6f3-05c9ecd29c7b','hepsiinegölden','$2b$10$OSWERfZ/juBwXRlEC6ZY4e4koFMmHkUqC61jfo8hG1r42YJn1nXrK',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2024-11-04 09:46:53.463','2024-11-21 09:16:51.861',NULL),
('c195f8bd-2259-4592-8a63-67e63fba74eb',NULL,'5206264','$2b$12$45jBk4hr4oPvpf.7ER8j8Ox3l95L0FJGcAjW1DpNiYIwjxOh6g.Zy','MERT','GÜNAL',NULL,'5325000478',NULL,'92889900329','DRIVER','2025-06-25 10:51:21.089','2025-07-01 09:19:38.900',NULL),
('c1bd0a2c-02b0-495a-a6ce-a9703682cb8e',NULL,'6444698','$2b$10$R0w9uSvpkxOqv8K5Ak7L0ODbBvO087fxqu2MkiZ805MWIDDH9W/TS','ERGÜN','ERGÜN',NULL,'5325000478',NULL,'85960309468','DRIVER','2024-09-05 15:30:29.965','2025-04-17 09:06:40.498','2025-04-17 09:06:40.497'),
('c1c0a77e-92bb-41ab-a327-c8ac77ded10a',NULL,'appstore','$2b$10$J78/tpW447mMpNAMUCL/jOzpnUqdUaaSKOVfrYdYksa7RQC/cRLtq','App','Store','',NULL,NULL,'','ADMIN','2024-03-21 22:21:45.741','2024-07-02 11:24:13.334',NULL),
('c21cdd02-4af2-4b32-bc87-c70a576c3a99','515c4bf3-dd06-4075-ad27-6ad0e74d6d00','karan','$2b$10$lwcigBwSAedOQx7GcBXvgedHLsT84meCTR.EKB5eo6j1XBol0eg7G','karan',NULL,NULL,NULL,NULL,NULL,'SENDER','2025-06-30 12:19:11.675','2025-06-30 12:19:11.675',NULL),
('c47d66e3-8bba-4851-8cc4-00712a03cdc4',NULL,'5163627','$2b$12$rTfH3lvGOFTHcC6EaPhHM.ZyyQcTbHEm8TivrRTqCVitymO9Xyx3G','MURAT','KAYA',NULL,'5325000478',NULL,'97443755162','DRIVER','2025-07-29 12:12:50.053','2025-07-29 12:37:20.340',NULL),
('c65ed555-e6a8-409d-9031-28c5c1e8da7b','e20df3e7-9c88-4ca3-8ef0-eac4f3820acb','sessel','$2b$10$DKpYpJQi4..9RHgCjmqSquOUrrIABREhMWPhQQU.yD6XdrfhQatiK','Sessel','Premium',NULL,NULL,NULL,NULL,'SENDER','2025-04-28 12:30:23.748','2025-04-28 12:30:23.748',NULL),
('c69fa718-ee43-4e58-942e-88b6563948af',NULL,'3214144','$2b$10$tCGbjEUELJuC5fQd0qw73.q8WVb3Ao17hZfRwQwTNS3dBtElJ3zTW','YILDIZ','ORHAN',NULL,'5325000478',NULL,'57699327882','DRIVER','2025-04-15 09:00:05.774','2025-04-17 09:06:52.851','2025-04-17 09:06:52.851'),
('c7ef5bd1-4688-48d7-8eb1-dd3112fbd439',NULL,'2986881','$2b$10$Qvjr7/chUE3dbWZ5YfW90.NHDCYxGjxxYXg/xyFmhk6zFqp.pEDm.','MERT','GÜNAL',NULL,'5325000478',NULL,'11736461916','DRIVER','2025-03-24 12:14:47.598','2025-04-17 09:06:42.143','2025-04-17 09:06:42.142'),
('c8f1f70a-d25a-4191-8bb4-972ee94ce654',NULL,'6893822','$2b$10$T1P.UldAGnLSaqz6XWmoyOLhoQEaujkOf.NIL2WqUTmSdpcn3gRzK','MEHMET','KARAMAN',NULL,'5325000478',NULL,'45588841530','DRIVER','2024-08-07 14:53:00.736','2025-04-17 09:06:43.482','2025-04-17 09:06:43.481'),
('c9296db8-d48b-42e5-a92f-7eb886a96898',NULL,'5695345','$2b$10$BZVy1r6FIVk/I/n5kVTfuehZv5B/Uvw7n.e2RjCCX/dkm3HUhwr2y','AAAAA','BBBBB',NULL,'5993837272',NULL,'78845016332','DRIVER','2024-07-20 10:27:22.796','2025-04-17 09:06:44.811','2025-04-17 09:06:44.811'),
('c99f6f6a-07f4-4734-b641-9b44fa8b3aee',NULL,'5786059','$2b$12$T/4iCgOUm68VheIzUZ2YyOPLeFmqqRj7Bufb7pwchI3F6Xyn.H.NO','RECEP','TAŞDEMİR',NULL,'5325000478',NULL,'34778511179','DRIVER','2025-06-30 18:21:20.126','2025-07-07 11:44:52.633',NULL),
('ca1490dc-0456-4517-a1c1-d45ab1c360c0','8d03b939-d544-45f8-8173-464bea4e67ab','moe','$2b$10$RrqjdqR8WRb0uqHgZxabDO.jyw/q05pabJj4OCEzv9.uBQ/rC.M1a',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-07 09:58:14.756','2025-05-05 09:03:18.392',NULL),
('ca20a36b-95cc-47e0-bd14-9d2cb0b47043',NULL,'1080860','$2b$10$DKPsX.l3td7pSY0KYAqmqu7sEMcBe69OoEMCghaimXWIEnZQB9Nl6','CANBEY','CANBEY',NULL,'5325000478',NULL,'36086136465','DRIVER','2024-12-17 17:06:48.296','2025-04-17 09:06:46.552','2025-04-17 09:06:46.551'),
('d008d786-a02e-404b-b090-54460d9d421e','65e7b37e-4d55-4714-b338-3f35d8bfc4d5','bmd','$2b$10$pJHlTszPn3NiLLZDfroCu..A6FFgNJWrZBJmFh0kg5hDLMc5uztYO','barış','mermer',NULL,NULL,NULL,NULL,'SENDER','2025-05-28 19:33:28.659','2025-06-23 16:08:33.804',NULL),
('d03032cd-3542-403b-975d-f781dffab494','4126da30-ba9b-41b7-be29-865069aa484c','vakit','$2b$10$BTzGjKxsf1LZzUGhnItBaux8DxRgiFqPM/6smeWHxGm1s8mDdQWF2','bilal','karakoyun',NULL,NULL,NULL,'26062443456','SENDER','2024-03-16 10:07:01.652','2024-10-24 09:20:41.469',NULL),
('d074816b-78fd-4378-91c0-3835eba28f44','f6e1c44c-e51e-4aaa-81f1-8634fab235b3','yunusemre16','$2b$12$d1rWqSVyUA51mhhiKypgXOJERkzcyYQ0TM6cK36fPHWFAjHRo3Txu',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2024-11-06 09:12:01.948','2025-09-16 16:00:21.317',NULL),
('d09324eb-7b12-4640-b92f-dde1b13a032f',NULL,'2722617','$2b$12$aK3tw9uoiTlkOfLJvf2h/uwRc.jc3naOo.4JecHZBzpB6v0E732qS','MURAT ','KAYA',NULL,'1111111111',NULL,'07064312331','DRIVER','2025-09-15 15:26:04.807','2025-09-19 10:00:25.274',NULL),
('d15f3247-d1bc-4e66-9c7e-39c372f8cc30',NULL,'2726996','$2b$10$WglX07ZNsPEGqhowtGetFer/Uvvl5bRyGRM1L/2aMu.CbS7lWGeFO','AAAAAA','BBBBB',NULL,'5325000478',NULL,'43708890814','DRIVER','2024-11-02 07:57:24.070','2025-04-17 09:06:47.872','2025-04-17 09:06:47.871'),
('d3cb68fe-c5f5-4b0f-bf2d-4f196135c321','59868701-abe4-4705-a7e6-d91c2c69262e','nluxhome','$2b$12$yNvPqjlNAGZqca2GLAwOFuLpbzxOXKlTERgW5/FseG0QwviDl5uWC',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-03-26 07:47:10.616','2025-10-07 06:32:16.256',NULL),
('d4cae326-953d-4da4-b88b-53535f8f8cd3','5b04798d-86e0-44d7-9219-194a32dc85ff','mobilyamis','$2b$12$Dfx1m8O8U2vfxFe7hbSHo.c9jws4QGRkV9Xmo479X2EH3rqxogcXy',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-09-09 13:08:38.658','2025-10-16 12:39:37.010',NULL),
('d6eeb247-948b-4355-b42e-f182a3b120bb',NULL,'3240698','$2b$12$YeWGzQlr2UPUdlyblhDaa.ZtZ.IZsWP8v31qOpiYX.ZYytuuOw9O6','HALİL ','İBRAHİM',NULL,'905541100849',NULL,'14171223023','DRIVER','2025-08-25 11:36:09.156','2025-08-25 12:11:45.686',NULL),
('d86e6aea-69a0-4bcd-afc9-d0a7fd62f302','5f3f13d2-795f-4eba-b7bd-61428d952ca2','mobelluxe','$2b$10$LX2D20LvxPvpOf0WILK5w.CIlmNynEm.Goc7zJP5aksOXRBzj9FC2','Eren','Eren',NULL,NULL,NULL,NULL,'SENDER','2025-04-18 12:08:27.538','2025-04-18 12:08:27.538',NULL),
('da67236e-4ff3-4aba-b2b1-6981b660362a','c2d4ce84-536d-4816-837f-7abbf6a7e061','rake','$2b$10$IDzfgpFUxcPGROJ2wxYZ8eoIfDkb/pR5mm.SgXrHf71pZ0IcjeQNq','Engin','Bağdemir',NULL,NULL,NULL,NULL,'SENDER','2025-06-25 07:58:11.756','2025-06-25 07:58:11.756',NULL),
('dac542f1-d714-4192-87e9-9ba06918e51d',NULL,'1660708','$2b$10$ByENcBmZw5OfnrY7wIrZnOQbDxTESmGbLiEUnz/ESS489Gqy0pAYq','ERCAN','SADE',NULL,'905412080061',NULL,'11111111111','DRIVER','2024-03-14 13:49:51.577','2025-04-17 09:06:49.222','2025-04-17 09:06:49.221'),
('db1684b3-2e23-4f19-bcec-f8126026fdf8',NULL,'0587819','$2b$12$Hjpve31MJPV3gpBepePr4.4cVhwSWqRNrP0nXwJRod3zFNz0gCLNq','ERDOĞAN','ERTÜRK',NULL,'11111111111',NULL,'66128349487','DRIVER','2025-10-01 06:41:28.819','2025-10-01 07:56:23.134',NULL),
('dc20774c-99cd-4c50-a2bf-0b49b237c6c4',NULL,'9244404','$2b$10$qID6ovGtk4nOH0z5zoMs5uqjd0GrfV0yRmIQ7f3xos9OKePotbWba','LEVENT','LEVENT',NULL,'5325000478',NULL,'39111580682','DRIVER','2024-09-09 13:28:55.349','2025-04-17 09:06:50.541','2025-04-17 09:06:50.540'),
('dc73af25-3744-4a35-87e7-05bab24167a0','31ccd2de-c68e-405f-adee-14ff1a7a1869','zenka','$2b$12$1xKbzpchSpuXuTq62og87eytqF3j56XbnjnlMg2pcuQqTaouYuHOq',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-10-02 07:00:13.289','2025-10-02 07:00:13.289',NULL),
('df0d8353-2caa-413c-9f14-b01af77df00b',NULL,'alitarim','$2b$10$FECNba8/TjZQFGtKE70z7Ojz0MSmALTstsbOb2duyV2mC46T6sLfK','Ali','Tarım',NULL,NULL,NULL,NULL,'WAREHOUSE','2025-04-04 12:23:44.835','2025-04-04 12:23:44.835',NULL),
('e2f7b4fa-903b-40b4-ad69-dc9bb847b2f0','cfeb1a2b-7b3d-4d36-967d-a3c68ba69eda','mobilyanolsun','$2b$10$nxwxgYBspjvyd4hftMML1.vCot2Tky0ZM7Da1XZn3dZb3Geao5V6G',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-01-16 12:34:37.880','2025-01-16 12:35:48.037',NULL),
('e3259876-e246-4d3f-be74-46cd3a275072',NULL,'3451771','$2b$10$1erR0EkVvqmCy7dDZhkMF.ay5B2kCg5N1Wt7kH3j9j5M/VF7AcPTm','AAAAA','BBBBBBB',NULL,'5325000478',NULL,'82063231554','DRIVER','2024-12-28 14:44:13.141','2025-04-17 09:06:54.390','2025-04-17 09:06:54.390'),
('e468710a-0f34-47a8-bf49-960fc05cc915',NULL,'9867293','$2b$12$pUaSSGiDZjac/5Y5Xn4BnOXN8bc4T6sHODSbEBB6T1ClHdmkXbdCe','SEMİH ','AYDIN',NULL,'111111111111',NULL,'91776098457','DRIVER','2025-10-22 07:51:14.082','2025-10-22 11:29:52.591',NULL),
('e6cc7d42-de29-4029-bf0f-5ba2156e1e85','a42d8839-caef-4422-888f-cbfdf4188c5b','inobilya','$2b$10$XPUC2fDXaWk/lHkuTBiY6uMxqeIwpLiZqd/mUEopkZIFeZmevgcH.',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2024-10-25 12:57:08.495','2024-11-10 17:55:00.595',NULL),
('e72a1d2e-56cf-44b8-9303-e512f7a04dd9',NULL,'1316254','$2b$10$1C3wkUIYkt2sdTuzhM2nIu0xSfLLrzJaoq7J3mhA4y2NpxDnnCH3i','SERHAT2','SERHAT2',NULL,'5325000478',NULL,'46558286838','DRIVER','2025-04-25 15:41:06.232','2025-04-26 07:32:55.372',NULL),
('e8846876-543e-4c41-807c-08759be9b782','2df3886f-ccec-493c-a592-e60e860fc725','bodehome','$2b$12$kQb1pvEmJiX/aL9AyCvvruF2WXyHzeK6txnIQN7bGbV7gShfQj6Ne',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-09-18 18:00:27.658','2025-09-18 18:00:27.658',NULL),
('e9e8f9d6-fd42-4480-8195-7b40e60e23da',NULL,'0755140','$2b$10$cKvwSX7u8iEvxEg5V4y/9Oql6e4zU9wulGKV7ieptVL2VZmeK2nZO','AASSASAS','SAAAAASS',NULL,'5325000478',NULL,'76486513404','DRIVER','2025-02-20 08:41:42.101','2025-04-17 09:07:04.422','2025-04-17 09:07:04.421'),
('eccfe611-9163-42aa-a1ff-e711af0248e6','22a1dbd6-475c-4d4b-bb13-f459e3029634','bellisimo','$2b$10$v639YZ7kYGLsstPymj19yOaAgZOveCr4PkzzUu6uM7twuVkwW4STi',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-25 09:16:07.463','2024-11-25 09:16:07.463',NULL),
('ed7c222b-eec3-43a0-a403-5a88474b9e2b',NULL,'3315795','$2b$10$FOjP0pOCXwyOK/Xb.JhCJOnZiCAsv5pB/7BGpc2DPJ1hweBeBYOmS','BAHTİYAR','CİNEL',NULL,'905392681200',NULL,'58998287917','DRIVER','2024-04-23 10:30:55.965','2025-04-17 09:06:55.982','2025-04-17 09:06:55.981'),
('ed84265c-5c8a-41f9-a42e-d828cc4af544',NULL,'9113195','$2b$10$08jqnkmpXEyuUN9p47sUkuVysA.QQ8FcwiPvi5Yz2d4xigFff9Y4e','HALİL İBRAHİM','KÖSE',NULL,'5325000478',NULL,'18390306902','DRIVER','2025-05-24 10:58:02.722','2025-05-26 15:11:30.708',NULL),
('ef9b321d-9986-4966-88c5-aa3fdeda6afb',NULL,'1100774','$2b$10$lpLPBj7nrkmzMuy8tGAkcu/dKIilEWwuKopDg3RlDvzQVqd0u/CCC','ADNAN','DURSUN',NULL,'5325000478',NULL,'39538105091','DRIVER','2025-05-16 16:05:10.520','2025-05-16 16:30:10.378',NULL),
('f00bb55c-4cb9-4711-97e5-452e43278a1e',NULL,'0460324','$2b$10$l1UevfjWLb2/Nq00NSX5ge4SxCfmE/kEP7Sfh7bkvaFQ3S6dNuw7.','AAAAAA','BBBBBBB',NULL,'905325000478',NULL,'54569933150','DRIVER','2024-12-07 08:50:53.387','2025-04-17 09:06:57.592','2025-04-17 09:06:57.591'),
('f09d00de-af87-4402-b0d8-54cc03e87e96',NULL,'6470022','$2b$10$2kF0RsoPFfpuT9S9ag5Bi.eUjSh0dRrAB4EYorrkZKhgllKzJ46ai','SERHAT','AAAAA',NULL,'5325000478',NULL,'50553635270','DRIVER','2025-05-09 16:49:05.440','2025-05-09 17:17:20.778',NULL),
('f20f374d-c0a5-4ce9-aba4-4f631eade97d','5f244b33-94ca-477b-ae15-8d3bf79ba2c8','lamia','$2b$10$QmoWAWbvEcBFT3NaJvQimO7F8zjGnfzJqCdEWkYIu1SIs9P8b5A1a',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-06-26 10:57:06.688','2025-06-26 10:57:06.688',NULL),
('f2c6fab9-5d53-4878-a7eb-fc9d499aff8a',NULL,'9138684','$2b$12$.OdoEGYgZOZLtUeaYDFJ6u.l//kMpPuMAocd/effR616JXzw0XMcy','ERDOĞAN','ERDOĞAN',NULL,'5325000478',NULL,'28248499330','DRIVER','2025-08-22 19:43:14.407','2025-08-22 20:28:07.485',NULL),
('f31a9617-7158-463d-bedb-a556183c7c2c','76950dd8-e203-45e6-9e40-29f7046e8db7','inegölmobilyalar','$2b$12$38lHAhXDTa1rEg00W4tT7Orfq5UVfkRvwBFZkD5KzIvAcH7911Nkm',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-08-05 10:58:34.744','2025-08-05 10:58:34.744',NULL),
('f63af961-262c-4b66-9c4c-0184b4ad18df','02756ab4-fa8a-408f-b81c-76a84dc82d6f','test','$2b$10$oyvaAOTqJWq/y2OHZwqFh.S7kUqTDP4JMuDTFB5CKhqXodbnlVih2','test','test',NULL,NULL,NULL,NULL,'SENDER','2024-10-31 12:19:53.511','2024-10-31 12:45:44.333','2024-10-31 12:45:44.332'),
('f784b688-ba6b-4886-87dd-fe4cfbed85b4','dea91080-5383-4085-af2e-7eace2c64224','evimtarz','$2b$10$hk0O/IXyrcMQQG8/Ofx0rOxsJzoBqjxczHGpLFHPdz2EjRYauxj6q',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-10-25 12:30:46.632','2024-10-25 12:30:46.632',NULL),
('f7bb93db-e7db-4d30-9155-a53f20f55b95',NULL,'0060940','$2b$10$wwhzDzErfq7WIUsUcNIP.O8Y/7.OrbZ09la2GYlAdUEJsInOXMJM6','HÜSEYİN','YILMAZ',NULL,'905412867123',NULL,'44444444444','DRIVER','2024-03-23 08:00:39.527','2025-04-17 09:06:58.912','2025-04-17 09:06:58.911'),
('fa851736-cd9c-4955-88cd-9ef6b4b539e0',NULL,'3498072','$2b$10$SqlDkIqzaiXKbbk0OmOJt.WpBzhAInSaTxYBVG.dUnq7qSqoPK6Vy','MERT ','GÜNAL',NULL,'11548852244',NULL,'40399178467','DRIVER','2024-05-29 10:08:42.099','2025-04-17 09:07:00.161','2025-04-17 09:07:00.161'),
('fb4cc158-8685-4d60-965f-4e4ac7c4c696','eafb4551-6e5e-49d5-bca3-02ccb8c16d64','essena','$2b$10$uF/OfjP692L5utXlvZDfoeGn8qJ6hW87/YxdoiUdCo25Cd.HkSRlG',NULL,NULL,NULL,NULL,NULL,NULL,'SENDERADMIN','2024-11-04 08:27:52.387','2024-11-04 08:27:52.387',NULL),
('fd2639f3-a756-4e48-8118-a15db2ac5243',NULL,'3924060','$2b$10$NGEwrbmk2X2nDG31SrUa5eKyBF2w8qaElIgOau4HvmfzOGh8MhA62','Mehmet','Mehmet',NULL,'5325000478',NULL,'74672953357','DRIVER','2025-04-19 10:02:04.061','2025-05-02 17:08:29.291',NULL),
('fde3b1b5-7667-40cd-a879-eb9de340f85e',NULL,'1387574','$2b$10$NsecLizinxLYj8PMBvWHF.u6g.aqpddwAfaRwu815Xl7k8w2QeRk.','LEVENT','LEVENT',NULL,'05325000478',NULL,'65018921248','DRIVER','2024-09-09 12:57:30.858','2025-04-17 09:07:01.412','2025-04-17 09:07:01.412'),
('fe2e7913-5d46-4d48-8e05-db069fb9c594',NULL,'5004336','$2b$12$RNJJ0Ifbz57CfChZkIrJguszcrfgBBAsQcd5efO87fuacM6uFTnAC','SERKAN ','KAYNŞLI',NULL,'111111111111',NULL,'07112285498','DRIVER','2025-10-13 06:55:31.668','2025-10-13 10:18:17.136',NULL),
('fe6ebf55-b009-4c6f-bf13-5f7c4459f8e0',NULL,'bilalkarakoyun','$2b$10$Zkh/dOoWzJ5ulgQ8gpXQOO03FL8QYxGu7eSs1iaI.bwVBKlAliWcO','bilal','karakoyun','',NULL,NULL,NULL,'SENDER','2024-10-04 11:59:45.734','2024-10-04 11:59:45.734',NULL),
('fe9a29fd-de25-42a8-bc1c-e9c0d71887b9',NULL,'2614589','$2b$10$MijMtkbxOvXn3zOH.A3HVea/TaqFwEz9jsl7172l.RhAxbDfjOVyq','Ercan','Sade',NULL,'90541208006',NULL,'88316360118','DRIVER','2024-05-08 18:33:10.540','2025-04-17 09:07:02.792','2025-04-17 09:07:02.791'),
('ff4e82f7-1291-4806-95eb-5194d8e1b4b5',NULL,'5202271','$2b$10$w2LqkImtSVPNOBIHy.bDuucMaNfdeBaTFV1SlWrPg4MV2Qhtq98.u','BAHADIR','BAHADIR',NULL,'0000000000',NULL,'82871174164','DRIVER','2024-06-14 09:26:24.779','2025-04-17 09:07:06.552','2025-04-17 09:07:06.551'),
('ff62f95f-7d10-40b3-bdc2-bdc6d0aefb23','dc80f8cd-4aa0-42f5-b84e-658da7d079dd','Ninas','$2b$12$Xqb0cX47DscxMiVENz.GBeFCf9EYImKv0OLWN005fQsy/YxalKGY6',NULL,NULL,NULL,NULL,NULL,NULL,'SENDER','2025-07-09 12:33:07.924','2025-07-09 12:33:07.924',NULL);
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voyage`
--

DROP TABLE IF EXISTS `voyage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `voyage` (
  `id` varchar(191) NOT NULL,
  `vehicleId` varchar(191) NOT NULL,
  `trailerId` varchar(191) NOT NULL,
  `vehicleIsRent` tinyint(1) NOT NULL DEFAULT 0,
  `userId` varchar(191) NOT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `roadDate` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `roadAt` datetime(3) DEFAULT NULL,
  `dutyAt` datetime(3) DEFAULT NULL,
  `finishedAt` datetime(3) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  `deletedAt` datetime(3) DEFAULT NULL,
  `returnPrice` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `voyage_userId_fkey` (`userId`),
  KEY `voyage_vehicleId_fkey` (`vehicleId`),
  KEY `voyage_trailerId_fkey` (`trailerId`),
  CONSTRAINT `voyage_trailerId_fkey` FOREIGN KEY (`trailerId`) REFERENCES `fixedasset` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `voyage_userId_fkey` FOREIGN KEY (`userId`) REFERENCES `user` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `voyage_vehicleId_fkey` FOREIGN KEY (`vehicleId`) REFERENCES `fixedasset` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voyage`
--

LOCK TABLES `voyage` WRITE;
/*!40000 ALTER TABLE `voyage` DISABLE KEYS */;
INSERT INTO `voyage` VALUES
('006dce0f-a9da-40ab-9fa7-5cc3c92118ec','b16423c4-d717-48b2-af15-703190a1a155','b16423c4-d717-48b2-af15-703190a1a155',0,'f7bb93db-e7db-4d30-9155-a53f20f55b95','2024-03-30 07:06:12.336','2024-03-30 07:06:12.336','2024-03-31 17:54:39.040','2024-04-02 14:19:32.560','2024-04-04 12:49:01.266','2024-03-30 07:10:50.889','2024-04-04 12:49:01.227',NULL,0),
('0391eccf-fdab-4134-a6b2-71ed68186b55','81cbeda4-d7ab-4281-b657-b6e3e3632840','28be12a3-c617-4bf7-b54d-cef93e0874be',0,'0b51b6e9-3871-4c42-8d3c-1b50ffa11e08','2025-08-30 12:02:00.957','2025-08-30 12:02:00.957','2025-09-01 11:06:32.833','2025-09-05 08:54:48.377','2025-09-12 19:45:58.730','2025-08-30 12:05:07.614','2025-09-12 19:45:58.731',NULL,0),
('05e8de78-1979-427a-85ea-4116295aadf5','0d3c0e2a-f07c-45b1-b960-8bc2c5689a85','1b6a4eb4-a319-4e92-bf09-2b0d8b5ff085',0,'db1684b3-2e23-4f19-bcec-f8126026fdf8','2025-10-01 06:38:14.465','2025-10-01 06:38:14.465','2025-10-02 06:45:54.212','2025-10-13 06:40:15.231','2025-10-16 15:47:14.770','2025-10-01 06:41:28.819','2025-10-16 15:47:14.771',NULL,0),
('0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','0d3c0e2a-f07c-45b1-b960-8bc2c5689a85','1b6a4eb4-a319-4e92-bf09-2b0d8b5ff085',0,'3aa66ec8-0e8b-4273-b9eb-e2a05462d9ad','2025-10-25 08:38:32.948','2025-10-25 08:38:32.948','2025-10-25 08:59:29.794',NULL,NULL,'2025-10-25 08:43:45.238','2025-10-25 08:59:31.147',NULL,0),
('10c74062-bfc4-4eca-8c51-74ea22e8f2ff','886462dc-2e1c-41e5-8cbd-54a8e067daac','45bf2533-5c2f-4577-9859-8542285e184e',0,'546fe148-c7c0-46de-bd00-be670a91e344','2024-05-10 07:16:51.303','2024-05-10 07:16:51.303','2024-05-14 07:06:14.831','2024-05-27 17:54:50.249','2024-06-04 14:25:52.002','2024-05-10 07:19:34.552','2024-06-04 14:25:51.961',NULL,0),
('137e1f83-d1e4-4e49-a611-79b146cc7098','b16423c4-d717-48b2-af15-703190a1a155','76fbd0b1-6d00-4298-acda-d3aba84e46f8',0,'7a1df3b3-db34-4842-b2ff-8c64dbc59f2e','2025-07-11 07:55:26.750','2025-07-11 07:55:26.750','2025-07-12 09:19:48.847','2025-07-17 14:41:36.741','2025-07-21 08:00:02.743','2025-07-11 07:57:47.131','2025-07-21 08:00:02.743',NULL,0),
('16065e19-f4a9-409d-85c0-ca54cfa7564c','f732db43-83d1-4a76-9de5-0e1452027dfc','4f71b247-ad82-4623-883d-6b834b5156d3',0,'3c75b459-863e-4837-906d-9f6bbe77c93d','2025-07-16 14:21:30.360','2025-07-16 14:21:30.360','2025-07-17 09:33:51.712','2025-07-21 09:11:01.074','2025-07-22 21:00:41.450','2025-07-16 14:22:01.567','2025-07-22 21:00:41.451',NULL,0),
('1660b7bd-ba08-4a06-83fa-1f5532c82aae','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'dac542f1-d714-4192-87e9-9ba06918e51d','2024-03-30 10:26:40.891','2024-03-30 10:26:40.891','2024-03-31 17:55:23.936','2024-04-09 13:37:30.872','2024-04-17 10:16:37.291','2024-03-30 10:33:57.449','2024-04-17 10:16:37.203',NULL,0),
('17587478-e8f1-4fbe-afd1-d9025c9583a4','9dd3dd58-ff1d-42f1-aa41-bd8a80943cab','824f4f3d-0f1d-4cf7-82a5-09f8c69b3c12',0,'1a3960a4-e14f-43bf-aeaa-409e88554486','2024-10-23 15:10:23.561','2024-10-23 15:10:23.561','2024-10-23 15:14:17.560','2024-10-30 13:34:23.180','2024-11-08 16:31:03.178','2024-10-23 15:10:52.857','2024-11-08 16:31:03.162',NULL,0),
('17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48','117a06d4-b7ac-4e3f-94a3-569b0ce4daa2','7765b956-b6aa-4ece-8c5b-234a94af8de5',0,'1add63cd-02d9-4ce4-a0e5-a90e162155a5','2025-05-28 18:42:07.762','2025-05-28 18:42:07.762','2025-05-28 19:09:30.654','2025-06-03 05:23:46.508','2025-06-07 14:08:13.777','2025-05-28 18:45:21.684','2025-06-07 14:08:13.739',NULL,0),
('181a019f-f84f-4bec-9e2d-64e6f0c068eb','4652307a-e3fa-4849-b31b-7a37d9d9ad45','2bf9771e-1352-418e-934a-4fe74898f0b1',0,'91512304-d0d5-4ddd-8170-53b75b87d21c','2025-03-25 09:38:00.122','2025-03-25 09:38:00.122','2025-03-27 08:03:13.045','2025-04-04 17:27:43.006','2025-04-09 12:54:31.085','2025-03-25 09:39:17.021','2025-04-09 12:54:30.743',NULL,0),
('187e76a0-f3c3-4686-8b43-ae76882956a8','e4c3641a-15ed-4b82-a6f2-67a86f6865d2','1574950b-44b9-49e2-8ee0-2073391533b0',0,'4cd1d2cd-1ae6-4a07-b68b-6c8c68572678','2025-10-07 14:44:43.109','2025-10-07 14:44:43.109','2025-10-08 17:44:26.778','2025-10-14 09:18:45.922','2025-10-20 06:33:02.600','2025-10-07 14:59:47.520','2025-10-20 06:33:02.601',NULL,0),
('1a38de7a-5bc7-45be-9578-30a537364045','cbde58c0-4789-4240-af70-ba4a029cad1c','29ffcf7d-9238-42b5-a2ac-524d2368292b',0,'fde3b1b5-7667-40cd-a879-eb9de340f85e','2024-09-09 12:54:33.103','2024-09-09 12:54:33.103',NULL,NULL,NULL,'2024-09-09 12:57:30.858','2024-09-09 13:22:05.743','2024-09-09 13:22:05.865',0),
('1b0bff80-860a-4f39-812d-dac7c77bf49d','c859581e-61f3-4139-8335-86cb2eea67eb','d797a8ba-7f88-4af4-9511-19471900092c',0,'ca20a36b-95cc-47e0-bd14-9d2cb0b47043','2024-12-17 14:30:09.500','2024-12-17 14:30:09.500','2024-12-18 09:36:09.712','2025-01-09 07:06:53.870','2025-01-13 10:45:09.710','2024-12-17 17:06:48.296','2025-01-13 10:45:09.519',NULL,0),
('1c42ff51-a6d9-49f8-939a-799618c7cd7d','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'23b50a02-d0aa-49c8-b665-6e83d0077f98','2025-03-27 08:43:37.732','2025-03-27 08:43:37.732','2025-03-27 15:06:25.592','2025-04-04 09:28:57.215','2025-04-08 15:36:43.715','2025-03-27 08:44:16.446','2025-04-08 15:36:41.476',NULL,0),
('1ec41061-3001-4522-bd70-1daeeb3cba8f','ffa36a5f-721e-47c5-be8e-baa14f09f82e','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'566efc0a-2b6f-46b7-95cd-9482a2b3ec07','2025-02-07 11:11:32.063','2025-02-07 11:11:32.063','2025-02-09 09:52:02.731','2025-02-14 09:25:57.057','2025-02-22 10:20:07.969','2025-02-07 11:12:39.715','2025-02-22 10:20:07.682',NULL,0),
('1f98c5bf-cc86-4e49-b222-f618c5da23fe','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'8183f832-87d6-476d-bdf4-cdad3d1948c8','2025-03-06 10:16:25.078','2025-03-06 10:16:25.078','2025-03-06 15:48:13.507','2025-03-13 09:28:18.538','2025-03-17 14:53:44.120','2025-03-06 10:17:40.312','2025-03-17 14:53:44.075',NULL,0),
('28e43894-abb7-4d47-acb4-b276a342b979','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'dac542f1-d714-4192-87e9-9ba06918e51d','2024-03-07 21:00:00.000','2024-03-07 21:00:00.000','2024-03-15 14:41:20.587','2024-03-15 14:41:45.642','2024-03-20 08:14:20.268','2024-03-15 14:39:09.699','2024-03-30 21:35:16.514',NULL,3500),
('295b285c-580b-44a6-9a5b-a25a00a8150b','f80a9f36-72ac-4970-8312-9735f52dbe18','f80a9f36-72ac-4970-8312-9735f52dbe18',0,'0fdfb7dc-cf47-4a62-9708-4e6aa356104f','2024-08-20 14:51:05.872','2024-08-20 14:51:05.872','2024-08-21 14:56:28.446','2024-08-26 07:16:50.075','2024-09-02 08:33:41.821','2024-08-20 14:52:08.894','2024-09-02 08:33:41.727',NULL,0),
('29868815-59a3-472d-968a-f687cc30c0d6','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'c7ef5bd1-4688-48d7-8eb1-dd3112fbd439','2025-03-24 12:12:25.915','2025-03-24 12:12:25.915','2025-03-24 16:02:15.004','2025-03-31 10:37:10.274','2025-04-05 17:48:17.511','2025-03-24 12:14:47.598','2025-04-05 17:48:17.432',NULL,0),
('2a352437-950c-42a9-9135-55482cf3977c','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'6343c162-1e4c-45b8-baeb-ada99b4a6feb','2025-08-14 07:39:49.289','2025-08-14 07:39:49.289','2025-08-14 12:57:01.469','2025-08-18 16:35:33.762','2025-08-27 05:39:11.596','2025-08-14 07:43:55.125','2025-08-27 05:39:11.597',NULL,0),
('2c596345-3f37-4571-9d62-83b8b96993d4','045e223e-4d33-40f4-bbc7-f932477a3832','a3cd24dd-5346-48a3-a0b4-2610546b789e',0,'22050753-e8f2-4e8d-bba4-36e9f513cbb6','2025-08-27 08:20:06.185','2025-08-27 08:20:06.185','2025-08-27 19:41:33.584','2025-09-02 06:55:22.231','2025-09-08 05:17:41.245','2025-08-27 08:25:43.924','2025-09-08 05:17:41.246',NULL,0),
('2c6a1c9e-fad3-44d2-8812-5ebe40baad05','60d149e9-0a97-45a2-971e-74f14d18fb44','60d149e9-0a97-45a2-971e-74f14d18fb44',0,'2e7e4bfd-1bf8-4d5f-9b6f-6a41a1c11ff4','2024-05-11 08:29:58.533','2024-05-11 08:29:58.533','2024-05-16 12:25:48.147','2024-05-22 11:52:05.586','2024-05-24 07:09:15.970','2024-05-11 08:30:38.926','2024-05-24 07:09:15.936',NULL,0),
('2e09e370-f862-4361-86b2-28f5d97bb0f6','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'88135d96-521d-47cc-8c04-7721e4ad4b0b','2024-11-08 16:31:27.503','2024-11-08 16:31:27.503','2024-11-08 17:39:35.818','2024-11-18 21:47:44.879','2024-11-28 16:59:24.150','2024-11-08 16:40:27.051','2024-11-28 16:59:24.128',NULL,0),
('3271b677-620a-4420-88c0-5c08cda9fe26','7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2','d3a66606-209f-44aa-8742-e16ac7070f19',0,'55c2db30-2231-4c0a-b5d6-695806bdf87e','2024-03-18 07:27:54.134','2024-03-18 07:27:54.134','2024-03-18 07:29:38.161','2024-03-22 07:34:58.310','2024-03-29 17:56:37.686','2024-03-18 07:29:22.888','2024-03-29 17:56:37.660',NULL,0),
('33575f69-1bd5-4954-a74a-8872b1d00a7f','bb46a7aa-e156-436f-9e62-240f04db5627','a99229ea-5fef-44ad-a237-721158231ffb',0,'8036d452-e94a-43ad-baf4-b9a1a0edd74a','2025-10-13 06:55:39.834','2025-10-13 06:55:39.834','2025-10-14 09:22:43.711','2025-10-21 05:17:35.781','2025-10-25 09:00:46.835','2025-10-13 07:14:08.876','2025-10-25 09:00:46.837',NULL,0),
('34e9dac8-0b72-4c9c-a3cd-d018c395e342','1c0fe036-f80d-474d-aa60-b84fe248f41c','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'fa851736-cd9c-4955-88cd-9ef6b4b539e0','2024-05-29 10:05:53.332','2024-05-29 10:05:53.332','2024-05-29 10:12:27.776','2024-06-06 08:49:03.626','2024-06-11 14:05:08.582','2024-05-29 10:08:42.099','2024-06-11 14:05:08.568',NULL,0),
('381f9935-45e3-4ffc-92f4-b280022d45a6','8a89f0ce-c5c1-4bbd-b029-6baa09de79a3','2109288d-18ec-4871-8a3d-5478e1b199c1',0,'87f1f248-9af0-45d3-a045-68dd032a2141','2024-07-30 14:55:10.546','2024-07-30 14:55:10.546','2024-07-31 09:49:04.547','2024-08-05 19:56:40.376','2024-08-07 08:45:54.060','2024-07-30 14:58:02.377','2024-08-07 08:45:53.944',NULL,0),
('38f77fc3-5f98-4f20-8995-d0cbc6cfead8','ffa36a5f-721e-47c5-be8e-baa14f09f82e','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'8be8350c-c5e3-417e-9d6a-181280910e51','2025-03-12 18:23:16.436','2025-03-12 18:23:16.436','2025-03-13 12:21:49.959','2025-03-18 07:31:40.705','2025-03-29 21:27:41.789','2025-03-12 18:24:00.109','2025-03-29 21:27:41.675',NULL,0),
('39f2d40f-6e0a-4975-9a98-f49131a96020','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'fd2639f3-a756-4e48-8118-a15db2ac5243','2025-04-19 10:01:26.563','2025-04-19 10:01:26.563','2025-04-21 06:13:45.114','2025-04-25 11:17:09.563','2025-05-04 22:43:52.461','2025-04-19 10:02:04.061','2025-05-04 22:43:52.404',NULL,0),
('3ac24069-be87-4119-8ed6-2f478b64b3f9','b16423c4-d717-48b2-af15-703190a1a155','76fbd0b1-6d00-4298-acda-d3aba84e46f8',0,'d6eeb247-948b-4355-b42e-f182a3b120bb','2025-08-25 11:23:23.479','2025-08-25 11:23:23.479','2025-08-25 12:32:11.081','2025-08-29 11:16:06.735','2025-09-20 18:54:33.753','2025-08-25 11:36:09.156','2025-09-20 18:54:33.754',NULL,0),
('3b62d0b0-51d7-42b2-859b-2577ea3967c4','8e5a4c9b-9083-4769-963e-693d06ed4f90','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'1c8ed716-4982-4229-9944-3d27cbe7d33e','2025-09-25 16:01:26.083','2025-09-25 16:01:26.083','2025-09-26 12:39:51.570','2025-10-07 06:17:06.688','2025-10-10 21:30:25.712','2025-09-25 16:04:06.427','2025-10-10 21:30:25.713',NULL,0),
('3c847602-8428-494a-84ce-0c9c9392db1a','8a89f0ce-c5c1-4bbd-b029-6baa09de79a3','29ffcf7d-9238-42b5-a2ac-524d2368292b',0,'5b46b6cc-f7fa-44cf-9010-2d1ce64938fe','2025-07-17 09:34:18.920','2025-07-17 09:34:18.920','2025-07-17 09:36:47.065','2025-07-21 09:11:06.294','2025-07-24 18:04:22.449','2025-07-17 09:35:48.455','2025-07-24 18:04:22.449',NULL,0),
('3d3e1579-5d80-4740-8a5e-cb784d739a01','b16423c4-d717-48b2-af15-703190a1a155','b16423c4-d717-48b2-af15-703190a1a155',0,'ed7c222b-eec3-43a0-a403-5a88474b9e2b','2024-04-23 10:29:03.458','2024-04-23 10:29:03.458','2024-04-23 10:32:07.425','2024-04-26 17:00:00.541','2024-04-29 19:18:35.316','2024-04-23 10:30:55.965','2024-04-29 19:18:35.301',NULL,0),
('3e0e9dd7-0a00-4aff-a011-f48405df943a','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'3c871b6b-3862-4a05-81f3-759518f3bfcb','2024-11-12 15:39:14.689','2024-11-12 15:39:14.689','2024-11-12 16:16:28.795','2024-11-19 06:20:20.445','2024-11-23 19:56:09.471','2024-11-12 15:43:28.761','2024-11-23 19:56:09.399',NULL,0),
('3f80454d-2b4c-49a1-9d46-7b79fa9a0274','8e5a4c9b-9083-4769-963e-693d06ed4f90','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'253be5e1-2a29-4c9d-bdf5-92555f7951a7','2025-06-05 14:06:46.518','2025-06-05 14:06:46.518','2025-06-11 13:14:55.318','2025-06-16 07:04:35.761','2025-06-24 13:39:05.663','2025-06-05 14:07:51.919','2025-06-24 13:39:05.627',NULL,0),
('424d5de5-0cbf-4a64-83fc-d0cbf49df82e','b16423c4-d717-48b2-af15-703190a1a155','76fbd0b1-6d00-4298-acda-d3aba84e46f8',0,'5041f94c-eff7-4b54-b60a-cfcaa27a8a71','2025-07-26 07:20:23.702','2025-07-26 07:20:23.702','2025-07-26 08:41:01.259','2025-07-30 09:40:21.435','2025-08-05 14:06:23.818','2025-07-26 07:22:40.544','2025-08-05 14:06:23.819',NULL,0),
('436a1d7c-14cd-401b-8132-3d9c26d9d327','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'aba88fd7-6d69-460f-b7bd-3a023eb653aa','2025-01-22 08:37:34.792','2025-01-22 08:37:34.792','2025-01-22 09:08:14.754','2025-01-29 13:30:41.819','2025-02-03 10:51:52.131','2025-01-22 08:38:12.056','2025-02-03 10:51:51.607',NULL,0),
('48d1afe3-6d19-44da-863e-7181c7b173cd','214f078e-cc0c-4dfd-aabf-7bd7d810c667','5c97a33f-1930-432c-914c-d69e8e25f65f',0,'2705839b-567e-4b1c-9cc5-136a28cca51a','2025-04-30 13:37:36.125','2025-04-30 13:37:36.125','2025-04-30 14:30:21.678','2025-05-09 16:42:20.856','2025-05-14 06:38:01.104','2025-04-30 13:44:23.805','2025-05-14 06:38:01.058',NULL,0),
('4c4828d9-9707-439a-b671-bb6ed27bf116','94297f62-927c-41ea-a5f3-7f677fbb3fdd','94297f62-927c-41ea-a5f3-7f677fbb3fdd',0,'2498ddbd-8a4d-4285-8857-0298781ce351','2025-01-10 08:53:19.148','2025-01-10 08:53:19.148','2025-01-10 08:57:38.230','2025-01-13 09:39:07.823','2025-01-15 10:30:26.558','2025-01-10 08:54:21.157','2025-01-15 10:30:26.528',NULL,0),
('4ee6aa10-9436-4302-ba93-b9b567907896','4652307a-e3fa-4849-b31b-7a37d9d9ad45','a8d06058-9ed2-4c1c-8c96-021f186b604a',0,'3e33b420-743a-4761-8aea-35c606258c0e','2025-09-12 11:09:10.313','2025-09-12 11:09:10.313','2025-09-12 11:10:10.637','2025-09-16 21:25:56.832','2025-09-16 21:26:04.003','2025-09-12 11:09:53.488','2025-09-16 21:26:04.004',NULL,0),
('4fa483cb-a3c1-4f1d-87a6-18cb64c5a217','f1ff8e6d-8256-425b-a033-a811822e32d3','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'b89ddf27-c334-46a6-bedc-5ee2af92e715','2025-01-05 13:47:50.344','2025-01-05 13:47:50.344','2025-01-06 13:08:33.266','2025-01-07 09:29:29.767','2025-01-13 07:51:16.664','2025-01-05 13:51:16.891','2025-01-13 07:51:15.783',NULL,0),
('4ffb28cb-ca50-4a96-ad30-006bdef57d6b','8a89f0ce-c5c1-4bbd-b029-6baa09de79a3','29ffcf7d-9238-42b5-a2ac-524d2368292b',0,'63bd0f06-10dd-426d-8d26-45e956fb2807','2024-11-29 13:13:55.989','2024-11-29 13:13:55.989','2024-12-01 06:48:35.341','2024-12-06 12:18:49.043','2024-12-12 07:41:51.959','2024-11-29 13:15:46.957','2024-12-12 07:41:51.451',NULL,0),
('50ac20f0-3ed2-41b1-a665-f6c7e74ab061','4652307a-e3fa-4849-b31b-7a37d9d9ad45','2bf9771e-1352-418e-934a-4fe74898f0b1',0,'0c64c63e-7feb-4409-98b1-fe31ef9ff35a','2025-02-03 17:48:53.035','2025-02-03 17:48:53.035','2025-02-04 16:13:59.783','2025-02-10 12:05:01.514','2025-02-15 16:09:00.628','2025-02-03 17:50:13.401','2025-02-15 16:08:58.969',NULL,0),
('516f3f6e-2ef7-47cb-83a8-b799f3e0916b','c00627de-4f4c-42fd-a9d4-c4bd6b113bff','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'c47d66e3-8bba-4851-8cc4-00712a03cdc4','2025-07-29 12:11:04.025','2025-07-29 12:11:04.025','2025-07-29 12:59:37.719','2025-08-05 12:21:37.890','2025-08-12 06:14:45.156','2025-07-29 12:12:50.053','2025-08-12 06:14:45.157',NULL,0),
('5206e2ee-a645-4980-ae70-5a94e6fb2922','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'c195f8bd-2259-4592-8a63-67e63fba74eb','2025-06-25 10:48:52.507','2025-06-25 10:48:52.507','2025-06-27 17:12:48.924','2025-07-04 09:52:50.839','2025-07-16 16:50:48.051','2025-06-25 10:51:21.089','2025-07-16 16:50:48.052',NULL,0),
('52c02271-6eae-4be1-a572-d97f124d470a','aff16c78-34c6-41ff-84b1-0af67b4d32dd','aff16c78-34c6-41ff-84b1-0af67b4d32dd',0,'ff4e82f7-1291-4806-95eb-5194d8e1b4b5','2024-06-14 09:23:56.016','2024-06-14 09:23:56.016','2024-06-20 20:16:57.091','2024-06-23 12:26:04.047','2024-06-25 14:26:35.056','2024-06-14 09:26:24.779','2024-06-25 14:26:35.042',NULL,0),
('54ef8984-2e3b-495d-97cf-d335170f5365','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'59cda54a-e912-49df-8694-b58a9de47e57','2025-01-03 09:02:55.348','2025-01-03 09:02:55.348','2025-01-04 10:50:43.024','2025-01-07 09:29:18.970','2025-01-12 13:23:13.702','2025-01-03 09:09:49.753','2025-01-12 13:23:13.221',NULL,0),
('56c19d78-8bca-49b8-8adc-b0d2ba311bfc','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'68c6e1c2-c9ca-4d8d-b6f4-ffe58278bf7a','2025-05-23 06:24:29.156','2025-05-23 06:24:29.156','2025-05-23 14:06:03.711','2025-06-02 06:07:31.579','2025-06-07 08:55:09.689','2025-05-23 06:25:41.798','2025-06-07 08:55:09.674',NULL,0),
('57046791-223a-475d-a95b-9bd35bed67c2','1c0fe036-f80d-474d-aa60-b84fe248f41c','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'75e4c5a9-5ba6-4291-96c4-7245e40248be','2024-03-14 13:47:49.402','2024-03-14 13:47:49.402','2024-03-14 13:50:38.274','2024-03-14 13:54:04.393','2024-03-22 10:16:54.938','2024-03-14 13:49:51.577','2024-03-22 10:16:54.919',NULL,0),
('578b6ae0-5a9d-4a77-8099-a017840800a0','5e25f6af-36ad-400c-b0d2-9262d406e874','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'c99f6f6a-07f4-4734-b641-9b44fa8b3aee','2025-06-30 17:09:30.629','2025-06-30 17:09:30.629','2025-07-02 12:43:59.351','2025-07-15 11:26:31.911','2025-07-23 14:29:18.355','2025-06-30 18:21:20.126','2025-07-23 14:29:18.356',NULL,0),
('5ab49a9b-43fc-42e5-b0ff-8f78b2766237','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'b84293a6-7823-4649-bf2e-43da87261b6f','2024-09-19 18:20:38.486','2024-09-19 18:20:38.486','2024-09-19 18:29:14.100','2024-09-24 05:12:11.401','2024-09-28 16:28:24.713','2024-09-19 18:26:57.052','2024-09-28 16:28:24.636',NULL,0),
('5c3b6f65-7feb-48ff-8a42-92c0157f1258','7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2','d3a66606-209f-44aa-8742-e16ac7070f19',0,'5e58a473-7b45-4666-8a0a-d76339200164','2024-03-19 07:43:54.369','2024-03-19 07:43:54.369','2024-03-19 07:52:14.103','2024-03-26 05:55:10.653','2024-03-30 07:26:56.164','2024-03-19 07:44:41.699','2024-03-30 07:26:56.124',NULL,0),
('5d2ec7d8-1233-449c-8b75-c7d1571c790e','c15b68f9-749a-4035-a771-a4f261642fa8','33071a77-7337-43b1-ab50-1baae8f4d429',0,'365275a4-bd27-4fb1-8010-b2aa0ebecdfa','2024-10-25 11:53:19.298','2024-10-25 11:53:19.298','2024-10-25 11:54:37.647','2024-10-30 14:41:25.223','2024-10-31 07:50:35.411','2024-10-25 11:54:05.970','2024-10-31 07:50:35.355',NULL,0),
('5d69534a-5f21-44ba-8343-594269f45f1a','7f795847-6fab-4088-85ef-d8c878463e17','3d33d41e-cb3a-4ebe-97a2-886e044c3788',0,'c9296db8-d48b-42e5-a92f-7eb886a96898','2024-07-20 10:26:17.705','2024-07-20 10:26:17.705','2024-07-20 10:37:30.340','2024-07-27 08:41:05.093','2024-08-05 19:56:13.060','2024-07-20 10:27:22.796','2024-08-05 19:56:13.040',NULL,0),
('60cc9c45-e005-43ac-9846-aca99952ff14','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'54e9f383-0049-4d97-a0d7-9fd8ef237e5a','2025-01-26 10:20:03.676','2025-01-26 10:20:03.676','2025-01-26 10:54:59.010','2025-02-04 16:13:12.047','2025-02-10 14:16:49.679','2025-01-26 10:22:06.784','2025-02-10 14:16:49.589',NULL,0),
('64761ce4-d931-4769-87f7-0c76857d5ab9','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'55e524db-7afb-4ecb-92a3-ae12921b1fa4','2025-09-12 16:42:24.279','2025-09-12 16:42:24.279','2025-09-15 06:41:34.497','2025-09-22 06:39:31.587','2025-09-26 07:08:08.144','2025-09-12 16:46:30.856','2025-09-26 07:08:08.145',NULL,0),
('66307a01-d585-4127-903b-18748421c29e','c6dc3243-6163-434d-bd43-885d7b01a144','885f19fd-cee4-4027-ac90-11d2fddd779a',0,'99a91206-0a2c-4e0e-887e-c0e1fcf31c62','2025-04-26 14:32:32.467','2025-04-26 14:32:32.467','2025-04-28 07:40:58.264','2025-05-02 11:04:51.375','2025-05-10 20:13:14.252','2025-04-26 14:34:06.002','2025-05-10 20:13:13.994',NULL,0),
('6889f2af-6fdd-49e6-876f-ff0e206bbf32','886462dc-2e1c-41e5-8cbd-54a8e067daac','a8d06058-9ed2-4c1c-8c96-021f186b604a',0,'651c2da5-3d85-4f3b-ac7b-27344cb92a63','2024-03-16 08:53:49.029','2024-03-16 08:53:49.029','2024-03-16 14:34:28.626','2024-03-22 07:35:11.603','2024-04-01 07:53:01.250','2024-03-16 09:06:41.597','2024-04-01 07:53:00.909',NULL,0),
('68938225-8232-4d60-ad2a-917bacc4ae21','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'c8f1f70a-d25a-4191-8bb4-972ee94ce654','2024-08-07 14:49:38.791','2024-08-07 14:49:38.791','2024-08-08 09:06:06.461','2024-08-14 07:34:13.474','2024-08-16 19:22:09.927','2024-08-07 14:53:00.736','2024-08-16 19:22:09.872',NULL,0),
('6b187f3a-7677-4be2-9b23-6ba035509beb','f732db43-83d1-4a76-9de5-0e1452027dfc','4f71b247-ad82-4623-883d-6b834b5156d3',0,'3a568960-41d2-4ed5-8fce-c2fac42a8093','2024-11-08 17:56:48.482','2024-11-08 17:56:48.482','2024-11-08 18:13:24.832','2024-11-14 12:53:34.397','2024-11-16 21:34:38.154','2024-11-08 17:59:12.837','2024-11-16 21:34:38.137',NULL,0),
('6bda3b29-0b80-4c3d-be9a-90018628d0e3','4652307a-e3fa-4849-b31b-7a37d9d9ad45','66d5fcce-d5b6-4198-be7c-d5d4e377faa1',0,'35d97843-f5b3-4704-8970-726d9038991f','2024-09-27 11:14:16.421','2024-09-27 11:14:16.421','2024-09-27 14:08:01.000','2024-10-04 11:51:35.254','2024-10-08 17:09:39.207','2024-09-27 11:17:54.797','2024-10-08 17:09:39.128',NULL,0),
('6e170676-8e22-488f-a4ec-2e5cfb9db651','8e5a4c9b-9083-4769-963e-693d06ed4f90','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'34be7c0c-3c8f-4827-83ee-ac790c7ffa10','2025-08-14 08:26:28.726','2025-08-14 08:26:28.726','2025-08-14 13:00:36.015','2025-08-25 11:20:56.682','2025-09-02 07:46:22.663','2025-08-14 08:40:43.721','2025-09-02 07:46:22.664',NULL,0),
('6f4d7a00-e2c2-449b-956c-48fb73752550','4652307a-e3fa-4849-b31b-7a37d9d9ad45','332333e3-f9ed-4793-8b23-60dec38b985a',0,'f09d00de-af87-4402-b0d8-54cc03e87e96','2025-05-09 16:43:46.733','2025-05-09 16:43:46.733','2025-05-10 10:43:19.687','2025-05-19 20:26:19.521','2025-05-22 15:23:37.204','2025-05-09 16:49:05.440','2025-05-22 15:23:37.162',NULL,0),
('72839aed-8961-408f-9ffa-cbc7782e1f6f','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'1088bbe6-18e5-42a4-b8be-fafe1cac2043','2025-10-02 06:34:49.827','2025-10-02 06:34:49.827','2025-10-02 11:20:48.887','2025-10-10 10:12:27.288','2025-10-20 06:33:16.770','2025-10-02 06:39:26.264','2025-10-20 06:33:16.771',NULL,0),
('7a97abb2-c57f-42c8-b607-9a0fc3069208','4652307a-e3fa-4849-b31b-7a37d9d9ad45','2bf9771e-1352-418e-934a-4fe74898f0b1',0,'1b75b9c0-fc76-4831-93ce-157167d220f7','2025-02-18 15:51:21.718','2025-02-18 15:51:21.718','2025-02-18 16:37:25.250','2025-02-24 15:55:27.705','2025-02-27 16:39:00.177','2025-02-18 15:51:59.984','2025-02-27 16:38:59.201',NULL,0),
('7ac756d2-64a5-4427-8ec5-4a522acc0088','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'94e6eabe-689e-417a-9372-99a5be909377','2025-06-25 10:51:27.937','2025-06-25 10:51:27.937','2025-06-26 08:48:09.736','2025-06-30 06:09:49.576','2025-07-03 11:20:19.166','2025-06-25 10:52:20.261','2025-07-03 11:20:19.167',NULL,0),
('7bd09245-c179-4127-b0e1-46737615122b','81cbeda4-d7ab-4281-b657-b6e3e3632840','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'2a4cb28f-affe-4a61-95ca-0cf766c1cf08','2025-08-15 14:12:32.487','2025-08-15 14:12:32.487','2025-08-15 15:03:14.305','2025-08-18 05:36:08.013','2025-08-22 10:59:19.076','2025-08-15 14:18:27.764','2025-08-22 10:59:19.078',NULL,0),
('7f9e914c-f7f8-47e1-b3b0-281aafbc8157','4652307a-e3fa-4849-b31b-7a37d9d9ad45','332333e3-f9ed-4793-8b23-60dec38b985a',0,'ae872aab-0222-4d6a-aab3-438c0c9e1e37','2025-01-11 14:51:39.711','2025-01-11 14:51:39.711','2025-01-11 15:20:43.282','2025-01-15 20:39:48.107','2025-01-19 14:52:25.327','2025-01-11 14:53:42.276','2025-01-19 14:52:25.260',NULL,0),
('8039cd90-69f4-4da8-b3fd-eb4bd967bace','045e223e-4d33-40f4-bbc7-f932477a3832','a55eb64d-dce3-4440-b0bd-93b5b04077c7',0,'530ba9fe-f192-46a0-85db-b8163e60a6be','2025-10-03 14:59:04.252','2025-10-03 14:59:04.252','2025-10-06 07:10:31.629','2025-10-10 10:11:20.745','2025-10-17 06:13:07.118','2025-10-03 15:04:04.706','2025-10-17 06:13:07.118',NULL,0),
('8262d585-bae7-47f4-973a-eef1afacb0ad','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'59b7be95-624f-44fa-95ff-7ca218f0ccab','2025-06-14 12:31:53.531','2025-06-14 12:31:53.531','2025-06-14 12:48:29.628','2025-06-18 13:52:50.393','2025-06-26 14:18:43.132','2025-06-14 12:32:30.599','2025-06-26 14:18:43.133',NULL,0),
('82f1d7bf-2100-48db-928f-49720faaff90','4652307a-e3fa-4849-b31b-7a37d9d9ad45','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'16b73e68-11b1-47ba-9cfe-7e0db49498a3','2025-01-19 14:56:44.915','2025-01-19 14:56:44.915','2025-01-20 11:21:42.963','2025-01-27 17:16:58.815','2025-01-31 12:16:33.473','2025-01-19 16:09:32.512','2025-01-31 12:16:32.601',NULL,0),
('833e117f-aca3-4f6d-a963-d029ef9f8ddd','ae2e0d40-310e-49a4-9f4a-af229451de79','d6a9927a-29b6-4738-b5b9-0671a207a703',0,'3cfd87b2-5691-43be-96fe-8945eb679591','2024-10-17 11:39:22.175','2024-10-17 11:39:22.175','2024-10-17 11:51:37.779','2024-10-22 11:43:43.404','2024-10-26 07:31:35.284','2024-10-17 11:42:19.566','2024-10-26 07:31:35.106',NULL,0),
('8b91c8b5-7964-4aaa-a094-76edbabdef3b','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'1026105f-5383-476a-9d81-a3537c5d7b93','2024-11-15 16:12:40.111','2024-11-15 16:12:40.111','2024-11-15 17:06:49.679','2024-11-24 13:37:45.344','2024-12-01 12:29:12.595','2024-11-15 16:15:52.449','2024-12-01 12:29:12.434',NULL,0),
('8d3faf5e-e634-4068-8b6f-c99fd407ca66','43e5e10e-573e-4e92-9513-256e4d7aef6d','9cda35f7-e0b4-4ff1-a674-20ef5251e4aa',0,'0580afa4-a95f-4712-ab6a-c9aeec9df4a6','2025-10-07 12:07:39.489','2025-10-07 12:07:39.489','2025-10-09 08:40:44.134',NULL,NULL,'2025-10-07 12:08:55.443','2025-10-09 08:40:46.115',NULL,0),
('91baaa13-1952-49c9-bd52-7df7a06ce051','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'ed84265c-5c8a-41f9-a42e-d828cc4af544','2025-05-24 10:53:12.164','2025-05-24 10:53:12.164','2025-05-24 17:59:27.312','2025-06-02 06:07:27.639','2025-06-06 17:34:14.262','2025-05-24 10:58:02.722','2025-06-06 17:34:14.191',NULL,0),
('922303e0-023c-44c4-9569-272efdb9286e','f4fb3aa0-3aa4-491a-be20-3b1706b22c95','8a818cda-52c8-4c93-a498-f0084f50f3e9',0,'8ca45f52-08cb-4edb-b4ac-968f35e2985f','2024-07-03 14:29:59.101','2024-07-03 14:29:59.101','2024-07-03 14:35:46.597','2024-07-11 12:33:14.034','2024-07-18 07:31:41.202','2024-07-03 14:31:46.213','2024-07-18 07:31:41.176',NULL,0),
('924d440d-e432-41b3-b267-70c7eacb6b8a','cbde58c0-4789-4240-af70-ba4a029cad1c','29ffcf7d-9238-42b5-a2ac-524d2368292b',0,'dc20774c-99cd-4c50-a2bf-0b49b237c6c4','2024-09-09 13:22:21.417','2024-09-09 13:22:21.417','2024-09-12 09:53:12.223','2024-09-16 12:21:05.303','2024-09-18 16:13:07.910','2024-09-09 13:28:55.349','2024-09-18 16:13:07.069',NULL,0),
('9277c9d4-8691-44ae-98c7-5a99d95125fb','81cbeda4-d7ab-4281-b657-b6e3e3632840','2bf9771e-1352-418e-934a-4fe74898f0b1',0,'5e247840-41a9-497e-9e98-fc699c9557fd','2024-09-03 14:56:17.422','2024-09-03 14:56:17.422','2024-09-04 07:29:31.600','2024-09-12 10:53:16.386','2024-09-15 23:12:09.222','2024-09-03 14:57:11.566','2024-09-15 23:12:06.200',NULL,0),
('93da1859-4fa5-47f4-86a4-0a524f16f532','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'b1ddaa2c-21fb-4461-84bb-5981fdbc451a','2024-10-17 12:05:51.193','2024-10-17 12:05:51.193','2024-10-17 14:00:49.493','2024-10-22 11:43:47.311','2024-10-25 05:44:41.657','2024-10-17 12:07:01.576','2024-10-25 05:44:41.570',NULL,0),
('95d39b60-193e-460a-8e07-0929aa9f2949','8e235936-e980-4ae6-9d71-9cd21d37e0b4','2fa1b673-a584-4927-b1d3-1b7137f273e4',0,'8e41ed4d-031d-4418-8355-bf1c47dd2344','2024-09-27 14:26:41.115','2024-09-27 14:26:41.115','2024-09-28 16:28:04.958','2024-10-07 12:25:12.063','2024-10-13 10:53:23.743','2024-09-27 14:28:05.622','2024-10-13 10:53:22.880',NULL,0),
('9656d9e4-a381-4143-957d-98a2f19361a5','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'a91e2901-d325-4f9d-8b94-a9dfcec88cd6','2025-08-20 15:41:18.533','2025-08-20 15:41:18.533','2025-08-22 10:58:30.542','2025-08-31 19:21:19.397','2025-09-04 21:03:56.233','2025-08-20 15:43:06.377','2025-09-04 21:03:56.234',NULL,0),
('98672fb9-339c-4dd4-895c-652e44b438ac','65f38478-4a49-4e90-8bd9-c551e3a55e72','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'e468710a-0f34-47a8-bf49-960fc05cc915','2025-10-22 07:45:04.892','2025-10-22 07:45:04.892','2025-10-22 13:07:16.348',NULL,NULL,'2025-10-22 07:51:14.082','2025-10-22 13:07:17.162',NULL,0),
('9b5035ef-abfd-44f8-8720-9ecc2608b463','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'3b73a31d-c816-44fb-8064-749f45e8f1cc','2024-07-20 11:08:13.518','2024-07-20 11:08:13.518','2024-07-20 16:34:03.693','2024-07-25 21:24:21.733','2024-08-05 19:56:35.187','2024-07-20 11:12:51.807','2024-08-05 19:56:35.099',NULL,0),
('9c7277b7-16bb-4870-b6a2-7ce035115b31','214f078e-cc0c-4dfd-aabf-7bd7d810c667','332333e3-f9ed-4793-8b23-60dec38b985a',0,'6bf85119-84a1-426f-b5d4-97a6de56e9cc','2025-05-25 10:49:36.696','2025-05-25 10:49:36.696','2025-05-25 10:55:38.642','2025-06-01 12:44:10.182','2025-06-04 19:43:21.313','2025-05-25 10:51:31.745','2025-06-04 19:43:21.304',NULL,0),
('9e06441c-1bec-4f47-847f-83bea94f8369','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'bf502d81-bcb2-4619-a1a4-3844f0765d4e','2025-09-10 06:43:20.369','2025-09-10 06:43:20.369','2025-09-10 10:51:01.369','2025-09-16 07:17:22.258','2025-09-20 18:55:42.186','2025-09-10 06:49:18.565','2025-09-20 18:55:42.187',NULL,0),
('a239c2d3-4a55-470e-9c43-7a88ee6b31e4','b16423c4-d717-48b2-af15-703190a1a155','76fbd0b1-6d00-4298-acda-d3aba84e46f8',0,'ba57372a-13f9-4877-b5f3-e8a3e3d50286','2025-06-20 13:39:12.954','2025-06-20 13:39:12.954','2025-06-21 16:34:55.516','2025-06-27 16:08:18.792','2025-07-02 06:17:15.380','2025-06-20 14:59:11.880','2025-07-02 06:17:15.381',NULL,0),
('a2722617-aa4d-4934-b5f5-591b5d50f6ce','c00627de-4f4c-42fd-a9d4-c4bd6b113bff','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'d09324eb-7b12-4640-b92f-dde1b13a032f','2025-09-15 15:23:30.361','2025-09-15 15:23:30.361','2025-09-16 16:29:49.313','2025-09-29 07:57:13.506','2025-10-04 13:57:47.531','2025-09-15 15:26:04.807','2025-10-04 13:57:47.531',NULL,0),
('a3cdb163-a33b-4842-89c0-a73eabc036c0','7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2','d3a66606-209f-44aa-8742-e16ac7070f19',1,'bf6ed1e9-7cdd-4061-8e15-c79ba9478c28','2024-03-18 07:29:48.110','2024-03-18 07:29:48.110','2024-03-18 07:30:48.408','2024-03-18 07:30:54.903','2024-03-22 07:34:46.927','2024-03-18 07:30:41.090','2024-03-30 21:35:31.163',NULL,0),
('a85a3dda-e4c8-4693-bdde-b568f029378b','117a06d4-b7ac-4e3f-94a3-569b0ce4daa2','7765b956-b6aa-4ece-8c5b-234a94af8de5',0,'3a18374a-74ea-4ccf-bf1e-1c1f3658be94','2025-03-08 13:27:15.993','2025-03-08 13:27:15.993','2025-03-08 13:57:03.804','2025-03-14 11:06:55.450','2025-03-20 18:08:08.093','2025-03-08 13:28:46.864','2025-03-20 18:08:08.051',NULL,0),
('acf5e984-44c0-4233-9521-0c373102472f','f1ff8e6d-8256-425b-a033-a811822e32d3','66d5fcce-d5b6-4198-be7c-d5d4e377faa1',0,'79d27408-6f5c-4ce9-bd9f-b38b2191e394','2024-12-13 12:38:48.396','2024-12-13 12:38:48.396','2024-12-13 14:49:30.485','2024-12-20 09:33:14.333','2024-12-24 12:30:49.780','2024-12-13 12:40:16.912','2024-12-24 12:30:47.745',NULL,0),
('ada046d0-c324-498e-b319-06be0a19f72b','f732db43-83d1-4a76-9de5-0e1452027dfc','4f71b247-ad82-4623-883d-6b834b5156d3',0,'f00bb55c-4cb9-4711-97e5-452e43278a1e','2024-12-07 08:47:38.020','2024-12-07 08:47:38.020','2024-12-09 08:02:56.978','2024-12-16 21:29:48.603','2024-12-20 14:35:26.030','2024-12-07 08:50:53.387','2024-12-20 14:35:25.910',NULL,0),
('b03d8b56-5cc7-4605-a50e-54c4eacaf29a','a4d44bb0-efca-42be-8d0d-e29e40f01288','2b51795b-ec2e-4700-bdd6-492efa5a18f9',0,'b9603b53-514c-4ea5-86be-e3787a613fd1','2025-09-05 13:48:25.253','2025-09-05 13:48:25.253','2025-09-06 16:57:09.763','2025-09-10 07:13:50.236','2025-09-16 17:47:08.353','2025-09-05 13:52:01.455','2025-09-16 17:47:08.353',NULL,0),
('b19610d1-bb71-4c3a-8935-5a85e4c020f0','d87ba5e7-fc50-483f-ba32-1effd5fb2f37','885f19fd-cee4-4027-ac90-11d2fddd779a',0,'b02b69bc-afa2-4c75-9d04-3000fab838bf','2025-02-15 10:04:14.204','2025-02-15 10:04:14.204','2025-02-15 16:08:23.749','2025-02-21 17:08:41.562','2025-02-28 17:30:36.425','2025-02-15 10:05:10.599','2025-02-28 17:30:36.364',NULL,0),
('b5c4e118-f70d-4f61-9bf5-cb930542d764','4652307a-e3fa-4849-b31b-7a37d9d9ad45','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'bae85214-061b-4db5-b227-d5c1bcd895f1','2024-11-23 13:38:42.953','2024-11-23 13:38:42.953','2024-11-25 08:29:18.348','2024-12-02 07:32:05.714','2024-12-06 10:08:54.315','2024-11-23 13:40:39.437','2024-12-06 10:08:54.035',NULL,0),
('b624c770-5cbb-488e-8512-45ad975a729d','81cbeda4-d7ab-4281-b657-b6e3e3632840','2bf9771e-1352-418e-934a-4fe74898f0b1',0,'14f1ab4e-f8a4-436d-ad03-f80d8105dfe5','2024-12-20 12:28:39.645','2024-12-20 12:28:39.645','2024-12-23 12:01:02.217','2025-01-03 19:31:38.078','2025-01-11 09:48:56.219','2024-12-20 12:29:52.647','2025-01-11 09:48:56.083',NULL,0),
('b6acf4f4-4698-4ff3-8de9-6da2a36f7667','8a89f0ce-c5c1-4bbd-b029-6baa09de79a3','f80a9f36-72ac-4970-8312-9735f52dbe18',0,'c1bd0a2c-02b0-495a-a6ce-a9703682cb8e','2024-09-05 15:25:57.102','2024-09-05 15:25:57.102','2024-09-07 13:03:21.284','2024-09-12 10:53:33.383','2024-09-13 16:38:28.487','2024-09-05 15:30:29.965','2024-09-13 16:38:28.325',NULL,0),
('bae1a051-2661-4d51-b287-a8fd73d30813','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'92c7d566-a43d-4054-9019-30b15a3c0dde','2025-03-11 14:14:33.645','2025-03-11 14:14:33.645','2025-03-12 18:24:19.400','2025-03-14 11:15:24.543','2025-03-18 22:20:43.996','2025-03-11 14:16:19.289','2025-03-18 22:20:43.947',NULL,0),
('bd143f82-77da-4c1d-9d90-001698b828cf','450670dd-f935-48da-b94b-317b1ca0f336','92796a6e-b7a0-4a2c-9613-a930baac7cbb',0,'14d3616b-e67c-4cd0-9a22-1f70de0cb41e','2025-09-02 11:50:42.495','2025-09-02 11:50:42.495','2025-09-02 14:49:17.897','2025-09-08 16:19:26.231','2025-09-12 19:47:24.596','2025-09-02 12:04:14.747','2025-09-12 19:47:24.597',NULL,0),
('bdbe2cab-db44-453f-899e-74c537e1e204','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'83224aee-d235-47a5-9e9c-e7de4568e4a8','2025-07-12 09:04:18.285','2025-07-12 09:04:18.285','2025-07-12 09:21:39.990','2025-07-21 09:10:55.736','2025-07-29 13:54:21.914','2025-07-12 09:06:58.213','2025-07-29 13:54:21.914',NULL,0),
('be093fb8-7446-49af-8917-367653a1e741','8a89f0ce-c5c1-4bbd-b029-6baa09de79a3','cbde58c0-4789-4240-af70-ba4a029cad1c',0,'bd245b07-4e65-4a62-8759-5cf305ae1e95','2024-10-02 08:50:35.529','2024-10-02 08:50:35.529','2024-10-02 09:28:35.537','2024-10-07 13:58:39.071','2024-10-10 16:32:08.907','2024-10-02 08:51:15.184','2024-10-10 16:32:08.887',NULL,0),
('c0caa75d-5140-4f30-af4c-9e9f3874a360','c6dc3243-6163-434d-bd43-885d7b01a144','7495c8e9-8ac8-493b-986b-bff1d79d66ed',0,'e9e8f9d6-fd42-4480-8195-7b40e60e23da','2025-02-20 08:40:06.875','2025-02-20 08:40:06.875','2025-02-20 12:40:39.159','2025-02-26 13:34:25.080','2025-03-13 09:29:10.493','2025-02-20 08:41:42.101','2025-03-13 09:29:10.469',NULL,0),
('c1316c2d-c5cf-4a71-8f22-fe7451c83298','4652307a-e3fa-4849-b31b-7a37d9d9ad45','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'e72a1d2e-56cf-44b8-9303-e512f7a04dd9','2025-04-25 15:38:54.423','2025-04-25 15:38:54.423','2025-04-26 14:42:01.492','2025-04-29 16:09:12.505','2025-05-03 06:22:27.318','2025-04-25 15:41:06.232','2025-05-03 06:22:27.305',NULL,0),
('c2fc42b0-7c07-4c88-ba52-9f0a89578335','37b30aa6-c30f-4694-8f16-5d0729797bf5','76498873-c4bb-4f9c-9b7e-9f6830224404',0,'3d435151-47f1-47d0-bdd1-f7be4880bb25','2025-09-12 11:06:02.820','2025-09-12 11:06:02.820',NULL,NULL,NULL,'2025-09-12 11:07:27.729','2025-09-12 17:05:30.488','2025-09-12 17:05:30.487',0),
('ca345177-17f2-4015-9ce2-f60a3cf6a3ec','4652307a-e3fa-4849-b31b-7a37d9d9ad45','332333e3-f9ed-4793-8b23-60dec38b985a',0,'e3259876-e246-4d3f-be74-46cd3a275072','2024-12-28 14:41:54.267','2024-12-28 14:41:54.267','2024-12-30 08:14:01.348','2025-01-03 19:31:42.005','2025-01-07 19:30:47.366','2024-12-28 14:44:13.141','2025-01-07 19:30:46.444',NULL,0),
('cab6324f-e4eb-48af-b3a4-31980247e32c','f2feac04-9a48-47a1-8254-32947a080617','4b0e7ff2-1695-40c0-907c-ce122e723c33',0,'1f4d9e5d-67d7-4983-a1af-fd368402220f','2025-09-06 16:57:16.537','2025-09-06 16:57:16.537','2025-09-11 06:34:45.151','2025-09-17 06:09:55.317','2025-09-20 19:00:31.543','2025-09-06 17:00:09.093','2025-09-20 19:00:31.544',NULL,0),
('cff49750-183c-4486-bf27-562e3315a5ed','886462dc-2e1c-41e5-8cbd-54a8e067daac','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'ba396a3b-b817-4fc9-ab67-95ea4b70b96e','2024-04-27 08:29:41.695','2024-04-27 08:29:41.695','2024-04-28 15:26:07.622','2024-05-07 15:42:16.713','2024-05-08 21:08:13.188','2024-04-27 08:32:20.160','2024-05-08 21:08:12.683',NULL,0),
('d0775c23-9058-44ca-bc9f-721b310a8261','117a06d4-b7ac-4e3f-94a3-569b0ce4daa2','034cea7b-31b2-4355-876c-9ca83bc8c9b7',0,'b7cf2766-a9f5-4947-9229-ae150f913555','2025-05-08 07:12:06.858','2025-05-08 07:12:06.858',NULL,NULL,NULL,'2025-05-08 07:12:24.829','2025-05-08 07:13:56.035','2025-05-08 07:13:56.050',0),
('d123109e-9a26-4781-939a-87cda202f683','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'08d77869-0fde-4032-8f08-9d3071291beb','2024-11-21 09:35:36.263','2024-11-21 09:35:36.263','2024-11-25 08:27:56.911','2024-12-11 12:54:45.456','2024-12-16 21:29:24.058','2024-11-21 09:42:50.940','2024-12-16 21:29:23.783',NULL,0),
('d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'35cf9f82-a63c-4f10-94b0-234747014e09','2025-02-13 20:18:17.236','2025-02-13 20:18:17.236','2025-02-13 20:44:22.504','2025-02-21 14:53:08.166','2025-02-25 17:04:01.697','2025-02-13 20:20:47.547','2025-02-25 17:04:01.430',NULL,0),
('d272c69b-ff96-475f-9355-592e3bf8c36a','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'d15f3247-d1bc-4e66-9c7e-39c372f8cc30','2024-11-02 07:54:09.886','2024-11-02 07:54:09.886','2024-11-02 16:24:06.612','2024-11-09 11:12:07.020','2024-11-12 17:06:08.291','2024-11-02 07:57:24.070','2024-11-12 17:06:08.204',NULL,0),
('d32a141a-efed-4aa4-8db8-a628a34c49e2','ffa36a5f-721e-47c5-be8e-baa14f09f82e','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'c69fa718-ee43-4e58-942e-88b6563948af','2025-04-15 08:55:05.141','2025-04-15 08:55:05.141','2025-04-15 16:02:11.874','2025-04-23 10:06:24.194','2025-04-28 18:15:48.285','2025-04-15 09:00:05.774','2025-04-28 18:15:48.255',NULL,0),
('d9ee13db-868d-4d90-927a-35ef1d4ba092','1e6f7c29-d4d3-470f-a4a7-1201b3b91f4c','fcf55be7-d6f9-4bc9-a74f-c89f3fbd01a1',0,'f2c6fab9-5d53-4878-a7eb-fc9d499aff8a','2025-08-22 19:38:11.054','2025-08-22 19:38:11.054','2025-08-23 11:05:59.153','2025-08-31 19:21:06.496','2025-09-03 19:35:06.484','2025-08-22 19:43:14.407','2025-09-03 19:35:06.485',NULL,0),
('de4951fc-994b-4e0e-a802-27ddaab5a0e8','c6dc3243-6163-434d-bd43-885d7b01a144','885f19fd-cee4-4027-ac90-11d2fddd779a',0,'aa4f7e96-5378-4eb4-b1ed-74937e24424d','2025-05-14 16:53:36.752','2025-05-14 16:53:36.752','2025-05-15 19:12:04.090','2025-05-20 17:00:47.542','2025-05-27 07:54:03.820','2025-05-14 16:56:37.597','2025-05-27 07:54:03.767',NULL,0),
('dec3986f-102f-43bc-891f-7de9ebce0626','65f38478-4a49-4e90-8bd9-c551e3a55e72','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'b99f5e5c-8849-440a-bc66-aeb8223dc466','2025-09-17 14:40:00.231','2025-09-17 14:40:00.231','2025-09-18 15:49:18.152','2025-09-26 07:04:44.235','2025-10-02 13:31:44.379','2025-09-17 14:44:21.750','2025-10-02 13:31:44.380',NULL,0),
('decb3b76-796f-4a09-b900-664277387267','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'617e6108-aa2c-4fbb-b1d6-e53737967241','2024-07-02 08:17:12.573','2024-07-02 08:17:12.573','2024-07-02 08:20:04.229','2024-07-14 16:06:54.696','2024-07-27 08:40:02.245','2024-07-02 08:19:33.463','2024-07-27 08:40:02.115',NULL,0),
('e10c5155-6fe5-4df2-8f96-eddaea94db05','5fc026e4-ce50-4510-9c48-dc163d0bb493','5fc026e4-ce50-4510-9c48-dc163d0bb493',0,'a01aef32-27f9-4eb2-95fb-b0709e574b5d','2024-08-20 14:47:47.183','2024-08-20 14:47:47.183','2024-08-20 19:22:31.180','2024-08-30 15:10:47.138','2024-09-04 07:29:55.581','2024-08-20 14:48:44.419','2024-09-04 07:29:55.477',NULL,0),
('e253177a-72af-43f4-9ca5-592caa74965a','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'7a2d7df7-804b-4e18-9761-b478d38c69cf','2024-09-18 20:58:29.396','2024-09-18 20:58:29.396',NULL,NULL,NULL,'2024-09-18 21:01:50.842','2024-09-19 17:59:48.974','2024-09-19 17:59:49.133',0),
('e3500f94-7cbb-4330-8eca-c75ce50b7154','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'6ddcac49-f39e-4a3f-b770-da20e6c05778','2025-10-17 06:40:10.563','2025-10-17 06:40:10.563','2025-10-20 07:18:29.517','2025-10-25 07:49:36.584',NULL,'2025-10-17 06:45:24.474','2025-10-25 07:49:37.046',NULL,0),
('e500be43-361f-413c-9720-89cc683cacf9','1039690d-a9fa-48c9-b7df-e58c3c6b8fe0','f9135de6-dcc5-422b-8d79-1a0dc06c0843',0,'fe2e7913-5d46-4d48-8e05-db069fb9c594','2025-10-13 06:52:26.594','2025-10-13 06:52:26.594','2025-10-13 10:18:26.810','2025-10-16 06:56:27.038','2025-10-17 10:41:42.733','2025-10-13 06:55:31.668','2025-10-17 10:41:42.734',NULL,0),
('e693f1df-a037-435c-8bac-bc9331b6d34c','4652307a-e3fa-4849-b31b-7a37d9d9ad45','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'1a3960a4-e14f-43bf-aeaa-409e88554486','2024-10-23 10:19:53.616','2024-10-23 10:19:53.616','2024-10-23 15:14:29.626','2024-10-28 08:39:13.696','2024-11-04 08:40:51.049','2024-10-23 10:22:01.694','2024-11-04 08:40:50.986',NULL,0),
('e9624207-f65d-451c-9ab0-5f510c811052','f1ff8e6d-8256-425b-a033-a811822e32d3','332333e3-f9ed-4793-8b23-60dec38b985a',0,'4c68a2bd-8175-492a-937c-2e1de146dd05','2025-08-07 16:02:26.067','2025-08-07 16:02:26.067','2025-08-08 09:50:38.661','2025-08-18 07:15:36.830','2025-08-25 07:06:53.323','2025-08-07 16:03:34.147','2025-08-25 07:06:53.324',NULL,0),
('e9856286-e4fb-4a20-b86d-a2d532d46b0a','4d37ff22-4270-4f62-9b43-85c4cf66b7cc','20c08504-a1b1-4c5c-a275-02df2aa89436',0,'355e8c44-dbd9-4b8f-a0c6-f662259648e9','2025-02-23 12:01:05.457','2025-02-23 12:01:05.457','2025-02-23 12:39:33.849','2025-03-02 14:41:32.362','2025-03-09 12:10:11.485','2025-02-23 12:03:23.298','2025-03-09 12:10:11.419',NULL,0),
('eb88f328-c1ca-431b-ad68-6f414d275615','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'422900fb-f58c-44c3-9d0b-8b793a1844ee','2025-04-11 12:21:41.680','2025-04-11 12:21:41.680','2025-04-15 09:02:23.616','2025-04-17 13:54:14.231','2025-04-28 11:58:44.200','2025-04-11 12:22:28.272','2025-04-28 11:58:44.063',NULL,0),
('ebc1b100-cb77-4268-b975-a2a46cd2c876','0899011c-9e70-4d3a-9ae9-794f51808013','cd97bcf8-7e4f-4e3f-8099-c5ab00b0636b',0,'ef9b321d-9986-4966-88c5-aa3fdeda6afb','2025-05-16 16:02:34.595','2025-05-16 16:02:34.595','2025-05-16 16:33:50.300','2025-05-21 15:30:33.777','2025-05-27 07:54:25.452','2025-05-16 16:05:10.520','2025-05-27 07:54:25.409',NULL,0),
('ec518edc-d061-4e5c-8d56-8477e6213bda','1c0fe036-f80d-474d-aa60-b84fe248f41c','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'5270b348-a797-4a5e-8a61-9bedf7eb5c8e','2024-04-08 08:33:57.003','2024-04-08 08:33:57.003','2024-04-08 08:58:08.405','2024-04-22 08:08:05.768','2024-04-30 22:31:35.643','2024-04-08 08:39:50.934','2024-05-02 19:56:42.327',NULL,0),
('eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'fe9a29fd-de25-42a8-bc1c-e9c0d71887b9','2024-05-08 18:32:12.133','2024-05-08 18:32:12.133','2024-05-08 18:43:53.136','2024-05-15 11:40:22.382','2024-05-24 07:08:13.982','2024-05-08 18:33:10.540','2024-05-24 07:08:13.555',NULL,0),
('f1349ad1-099b-4319-af1c-56927ca0d070','94b8a44c-0a7a-4cf5-ad22-e7a8d30a2ce7','79f65917-f4f1-421b-a2f8-9894de658e4f',0,'a43910cb-64fb-4656-85dd-ac0079eba02a','2024-05-11 09:04:32.906','2024-05-11 09:04:32.906','2024-05-13 13:11:55.657','2024-05-24 17:17:12.374','2024-05-29 18:59:20.465','2024-05-11 09:05:56.725','2024-05-29 18:59:20.397',NULL,0),
('f14d0641-587a-4959-a970-071f376a1eb3','3205a2e2-adcc-4785-9ca4-a0e9546cce8d','d4ad734f-1c4c-4394-9452-5d925d687bf1',0,'78e00f34-31f6-4fc1-bd80-c7dac5f79d9d','2024-10-11 13:05:02.179','2024-10-11 13:05:02.179','2024-10-11 16:09:57.311','2024-10-21 07:58:40.422','2024-10-25 13:20:25.077','2024-10-11 13:09:10.979','2024-10-25 13:20:24.184',NULL,0),
('f731f466-bf33-479e-af39-1ef919b02c88','7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2','d3a66606-209f-44aa-8742-e16ac7070f19',0,'bc2dc1f8-aa2d-4699-8e6e-998bf597a113','2024-05-23 07:24:57.838','2024-05-23 07:24:57.838','2024-05-23 07:27:57.406','2024-05-29 11:16:33.591','2024-05-31 10:16:03.635','2024-05-23 07:26:48.140','2024-05-31 10:16:03.500',NULL,0),
('f81ec9dd-8fdd-462e-af9b-c064b55486e6','8e5a4c9b-9083-4769-963e-693d06ed4f90','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'3ca14b8e-68b1-42f3-b6ab-297c04886950','2025-07-07 14:19:08.528','2025-07-07 14:19:08.528','2025-07-08 11:33:17.564','2025-07-18 05:15:48.236','2025-07-26 16:11:35.095','2025-07-07 14:20:25.168','2025-07-26 16:11:35.095',NULL,0),
('f99a300e-c809-4155-bc34-9490eaae72a3','c00627de-4f4c-42fd-a9d4-c4bd6b113bff','c32f6aef-2a7d-4e91-a2bf-a991824b496d',0,'93a84243-1f35-426e-8346-36c89babddbc','2025-02-27 10:40:06.549','2025-02-27 10:40:06.549','2025-02-28 09:32:05.899','2025-03-10 07:35:45.909','2025-03-14 11:07:38.255','2025-02-27 10:42:46.210','2025-03-21 17:17:29.974',NULL,0),
('f9e05dba-e512-4ef5-b7be-2c41d844b6d9','b16423c4-d717-48b2-af15-703190a1a155','a16768ea-55c5-4721-89ac-a968a2ddd492',0,'5b8e6661-2c47-4256-b310-f60a1e4573e4','2024-08-31 12:33:29.719','2024-08-31 12:33:29.719','2024-08-31 13:28:03.357','2024-09-05 05:47:52.159','2024-09-09 15:17:41.227','2024-08-31 12:34:21.626','2024-09-09 15:17:41.175',NULL,0),
('fd78c268-e19d-4846-a93a-7f307d082c25','7f0870d9-6ce7-4b4e-b2ba-0879bc86d8c2','d3a66606-209f-44aa-8742-e16ac7070f19',0,'a9a807f7-304d-4b57-bbcf-684a991121ba','2024-05-29 08:37:45.364','2024-05-29 08:37:45.364','2024-05-29 08:53:26.171','2024-06-04 10:45:36.718','2024-06-10 13:50:20.395','2024-05-29 08:39:50.071','2024-06-10 13:50:20.363',NULL,0),
('fdb12736-f1dd-418e-b2d9-bcaebc7146d8','5e25f6af-36ad-400c-b0d2-9262d406e874','cf4e976e-b161-43ca-8f19-3a226c9cb032',0,'1885ac0d-1020-4976-b6de-6272b7492aeb','2025-09-23 07:40:38.512','2025-09-23 07:40:38.512','2025-09-24 11:02:58.999','2025-09-30 07:02:09.250','2025-10-07 06:18:10.569','2025-09-23 07:43:59.462','2025-10-07 06:18:10.570',NULL,0),
('fde311f7-e15f-480b-8b13-ca2b73a6d4bc','3d33d41e-cb3a-4ebe-97a2-886e044c3788','3d33d41e-cb3a-4ebe-97a2-886e044c3788',0,'13be0f81-1840-48b9-8b54-513233b30828','2024-06-08 07:54:58.728','2024-06-08 07:54:58.728','2024-06-09 10:20:02.856','2024-06-20 20:15:17.104','2024-06-22 23:00:04.488','2024-06-08 07:59:49.811','2024-06-22 23:00:04.354',NULL,0),
('fe8c891b-115a-4553-8537-5fd70e9fa0c6','37ed4724-5e38-4aba-b999-ef3bacc5bf27','1e89637c-4aee-4e25-bd99-74351d35be7c',0,'ae78dbce-4e24-41e6-b3a4-d1b987c846fe','2024-03-23 07:57:46.699','2024-03-23 07:57:46.699','2024-03-23 09:06:29.474','2024-03-30 07:26:19.347','2024-04-08 08:33:40.483','2024-03-23 08:00:39.527','2024-04-08 08:33:40.394',NULL,0),
('ff664753-34e7-49e3-bc89-2f4a4b65bf71','4652307a-e3fa-4849-b31b-7a37d9d9ad45','46f53086-a151-47ac-bac9-1ae0ad18704b',0,'5ee41ad5-2d16-4507-935c-ff8e651a97e5','2025-07-18 17:39:00.574','2025-07-18 17:39:00.574','2025-07-21 06:24:07.542','2025-07-25 18:13:17.063','2025-07-30 11:05:09.045','2025-07-18 17:45:49.926','2025-07-30 11:05:09.046',NULL,0);
/*!40000 ALTER TABLE `voyage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voyageexpense`
--

DROP TABLE IF EXISTS `voyageexpense`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `voyageexpense` (
  `id` varchar(191) NOT NULL,
  `expenseId` varchar(191) NOT NULL,
  `voyageId` varchar(191) NOT NULL,
  `priceTRY` double NOT NULL,
  `priceEUR` double NOT NULL,
  PRIMARY KEY (`id`),
  KEY `voyageExpense_voyageId_fkey` (`voyageId`),
  KEY `voyageExpense_expenseId_fkey` (`expenseId`),
  CONSTRAINT `voyageexpense_expenseId_fkey` FOREIGN KEY (`expenseId`) REFERENCES `expense` (`id`) ON UPDATE CASCADE,
  CONSTRAINT `voyageexpense_voyageId_fkey` FOREIGN KEY (`voyageId`) REFERENCES `voyage` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voyageexpense`
--

LOCK TABLES `voyageexpense` WRITE;
/*!40000 ALTER TABLE `voyageexpense` DISABLE KEYS */;
INSERT INTO `voyageexpense` VALUES
('d2b32d6e-392b-4ba8-916a-5bda1a3d4a95','9a05c532-d47d-4509-be8a-e81c7a09e2e0','a3cdb163-a33b-4842-89c0-a73eabc036c0',0,500);
/*!40000 ALTER TABLE `voyageexpense` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voyagemessage`
--

DROP TABLE IF EXISTS `voyagemessage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `voyagemessage` (
  `id` varchar(191) NOT NULL,
  `voyageId` varchar(191) NOT NULL,
  `title` varchar(191) NOT NULL,
  `description` varchar(191) NOT NULL,
  `date` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  PRIMARY KEY (`id`),
  KEY `voyageMessage_voyageId_fkey` (`voyageId`),
  CONSTRAINT `voyagemessage_voyageId_fkey` FOREIGN KEY (`voyageId`) REFERENCES `voyage` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voyagemessage`
--

LOCK TABLES `voyagemessage` WRITE;
/*!40000 ALTER TABLE `voyagemessage` DISABLE KEYS */;
INSERT INTO `voyagemessage` VALUES
('02c9d435-20aa-44dd-b42b-c7e0fd66e2a5','48d1afe3-6d19-44da-863e-7181c7b173cd','KONUM','MACARİSTAN-MOSONMAGYAROVAR','2025-05-08 07:24:22.639'),
('030420de-e4bf-49e9-bc89-caa5231a2fd7','eb88f328-c1ca-431b-ad68-6f414d275615','KONUM','AVUSTURYA - DORBİRN','2025-04-21 08:13:48.023'),
('030de523-49ff-4c99-9e41-227903d97427','fde311f7-e15f-480b-8b13-ca2b73a6d4bc','KONUM','Macaristan-Budapeşt','2024-06-15 11:49:28.011'),
('07e25ea9-40fe-4151-b25f-1342d3132ac5','e9624207-f65d-451c-9ab0-5f510c811052','KONUM','SIRBİSTAN-DRAZANJ','2025-08-14 06:43:06.722'),
('08705ecc-c003-47b8-ada9-fd90216c720d','c1316c2d-c5cf-4a71-8f22-fe7451c83298','KONUM','AVUSTURYA - SUBEN','2025-04-29 07:29:24.743'),
('08ceab4b-c8c7-47d5-a046-a868c88f4879','8039cd90-69f4-4da8-b3fd-eb4bd967bace','KONUM','ALMANYA-PASSAU','2025-10-10 06:15:46.830'),
('09d353be-da3a-44d6-a411-68dc7f965fe7','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','ŞÖFÖR İKETİŞİM','+905301824880','2025-06-16 14:55:39.841'),
('0a00faa0-fc8f-4d26-977a-1f82a1bf2dea','6889f2af-6fdd-49e6-876f-ff0e206bbf32','KONUM','FRANSA-LYON','2024-03-26 16:06:44.292'),
('0bc7c8c0-17a9-4412-b179-07a81a0b4a3b','d32a141a-efed-4aa4-8db8-a628a34c49e2','KONUM','MACARİSTAN-TATA','2025-04-22 06:16:24.635'),
('0d5cec6c-fbab-4ad7-8f32-10fe489d9d2b','8b91c8b5-7964-4aaa-a094-76edbabdef3b','KONUM','EDİRNE-KAPIKULE','2024-11-26 12:34:44.006'),
('0e2721c0-59cc-43ce-962b-70f8c6097975','9e06441c-1bec-4f47-847f-83bea94f8369','KONUM','BULGARİSTAN - VRATSA','2025-09-12 22:11:19.874'),
('0f9e3f6a-eb0a-4de9-9089-61919fcc10bd','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','AVUSTURYA-SUBEN','2025-04-25 06:34:21.666'),
('100e4151-ded3-4e69-9b9c-f98c01aef108','7ac756d2-64a5-4427-8ec5-4a522acc0088','İLETİŞİM','ŞOFÖR: ERDEM BEY +90 543 294 14 09','2025-06-30 06:41:20.760'),
('10e70b04-45f8-47de-83e6-39d1f7d89985','e9624207-f65d-451c-9ab0-5f510c811052','KONUM','Almanya White House','2025-08-18 07:11:05.074'),
('11d6fbc3-792c-474b-8e06-b7d39ef507db','95d39b60-193e-460a-8e07-0929aa9f2949','KONUM','EDİRNE-KAPIKULE','2024-09-30 13:33:14.521'),
('125d40da-82de-4a13-8a0b-02ddc7276682','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','KONUM','MACARİSTAN BUDAPEŞTE','2025-09-09 07:07:11.426'),
('12fdbba8-c7b2-4ba4-92f1-79535b417c5a','3ac24069-be87-4119-8ed6-2f478b64b3f9','KONUM','ROMANYA -ARAD','2025-08-28 06:05:43.848'),
('142bed30-3316-471e-af39-9dedb4e28340','9e06441c-1bec-4f47-847f-83bea94f8369','İLETİŞİM','ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','2025-09-16 07:17:28.484'),
('156d2759-fe4c-48e8-b3a9-4b21ad62159e','dec3986f-102f-43bc-891f-7de9ebce0626','KONUM','MACARİSTAN - GYARTELEP','2025-09-24 06:49:23.864'),
('160b1563-42de-463f-9b56-00d26731993b','9656d9e4-a381-4143-957d-98a2f19361a5','KONUM','MACARİSTAN-KİSKUM','2025-08-29 06:14:09.268'),
('183e7e82-2538-4cb9-99cb-d3172a967232','95d39b60-193e-460a-8e07-0929aa9f2949','KONUM','ROMANYA','2024-10-03 13:38:13.257'),
('18cfd965-8153-40e4-bdf3-2e2d25884089','6e170676-8e22-488f-a4ec-2e5cfb9db651','KONUM','KAPIKULE','2025-08-15 06:40:43.734'),
('18ede073-1b4b-4b2e-b9e3-f7deffb24fe7','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','EDİRNE - KAPIKULE','2025-04-21 08:18:21.349'),
('1954fa1a-8c0c-47a7-802b-d075c2afa862','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','FRANSA- LOUVRES','2025-05-02 06:54:16.627'),
('19ad5dc8-ab2e-4d18-90dc-614f059c601e','2a352437-950c-42a9-9135-55482cf3977c','KONUM','KAPIKULE','2025-08-15 06:40:26.861'),
('19b6a216-b3aa-448b-94e6-65e8554f6a9c','6b187f3a-7677-4be2-9b23-6ba035509beb','KONUM ','SIRBİSTAN-BELGRAD','2024-11-14 04:44:31.846'),
('1a4812a8-ee2b-4af3-8d9f-5af38603f33d','ca345177-17f2-4015-9ce2-f60a3cf6a3ec','KONUM','MACARİSTAN-BUDAPEŞTE','2025-01-02 08:59:38.494'),
('1a4b4012-3a00-4e16-9e90-74655b3c7c7d','be093fb8-7446-49af-8917-367653a1e741','KONUM','EDİRNE-KAPIKULE','2024-10-03 13:38:52.879'),
('1e48649b-58f4-437d-8f91-4c81d0a55219','3b62d0b0-51d7-42b2-859b-2577ea3967c4','KONUM','ROMANYA - LUGOJ','2025-10-02 06:53:18.269'),
('1ec1f803-e85d-459e-bf07-74f8b68a82db','f9e05dba-e512-4ef5-b7be-2c41d844b6d9','KONUM','BULGARİSTAN-SOFYA','2024-09-02 15:24:27.441'),
('1f0fa2cc-79a8-4a1a-8c78-09d97153b380','e693f1df-a037-435c-8bac-bc9331b6d34c','KONUM','Macaristan-Budapeşt','2024-10-27 21:52:09.756'),
('1f20f4b4-9552-4f33-8934-6686f303d312','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','İLETİŞİM ','ŞÖFÖR FURKAN +90 507 882 64 36','2025-09-08 18:44:23.383'),
('1fb40ecc-5629-4c8b-b360-65b3ffe16071','dec3986f-102f-43bc-891f-7de9ebce0626','KONUM','ROMANYA-VANJU MARE','2025-09-23 06:16:08.229'),
('2074dc1f-3911-4f2a-ad5e-5250adbd0655','6bda3b29-0b80-4c3d-be9a-90018628d0e3','KONUM','MACARİSTAN-BUDAPEŞT','2024-10-03 13:37:53.210'),
('20a42782-0bb2-4af2-ab14-0f2f124a8e5c','dec3986f-102f-43bc-891f-7de9ebce0626','İLETİŞİM ','SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2025-09-26 12:44:39.333'),
('212f40ab-3be4-40b1-abe0-d8693ac0e5a8','d32a141a-efed-4aa4-8db8-a628a34c49e2','KONUM','ALMANYA -FRANKFURT','2025-04-25 05:54:14.541'),
('22664399-f1b2-416f-ab69-89d4c2704272','187e76a0-f3c3-4686-8b43-ae76882956a8','KONUM','ALMANYA-PASSAU','2025-10-14 09:18:17.906'),
('229f9954-7744-4648-a676-44bf84163a7d','1660b7bd-ba08-4a06-83fa-1f5532c82aae','Konum','İsviçre','2024-04-15 11:38:00.922'),
('23086af5-cbb6-4035-aab4-341ee876425e','eb88f328-c1ca-431b-ad68-6f414d275615','KONUM','FRANSA - POLİGNY','2025-04-24 06:13:32.022'),
('23c47a25-ce46-4245-8cc1-96967e9ad204','72839aed-8961-408f-9ffa-cbc7782e1f6f','KONUM','AVUSTURYA-SUBEN','2025-10-09 06:45:53.922'),
('249cb94f-4eaf-441f-bdfd-8e5f878a8388','d9ee13db-868d-4d90-927a-35ef1d4ba092','KONUM','ROMANYA-LİNTEŞTİ','2025-08-28 06:06:29.810'),
('2592f633-6abb-47f4-b769-ffcd63859fc0','95d39b60-193e-460a-8e07-0929aa9f2949','KONUM','MACARİSTAN-SZEGED','2024-10-04 07:08:59.094'),
('26a51e27-9c00-4b84-b104-e6d28c627f0d','a2722617-aa4d-4934-b5f5-591b5d50f6ce','İLETİŞİM','MURAT KAYA ŞOFÖR : +90532 161 6048','2025-09-29 07:57:56.790'),
('26dbd9a4-2355-493a-b491-444c0c4115a4','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','DRİVER NUMBER','905541100849','2025-06-27 16:08:57.649'),
('2ae6d21d-ab04-4c0d-8262-629934480000','6bda3b29-0b80-4c3d-be9a-90018628d0e3','KONUM','AVUSTURYA-SUBEN','2024-10-04 07:08:39.586'),
('2b13b4f2-9ba3-46ac-b54d-4aece3810e96','187e76a0-f3c3-4686-8b43-ae76882956a8','İLETİŞİM ','FATİH TARKCI SOFÖR :+90 541 349 48 81','2025-10-14 09:18:51.237'),
('2bf2339e-9d6d-47a2-97cf-03299e3dfe93','48d1afe3-6d19-44da-863e-7181c7b173cd','KONUM','AVUSTURYA - SUBEN','2025-05-09 07:58:23.319'),
('2d124464-9d39-4a51-989a-7213bbe747bd','8039cd90-69f4-4da8-b3fd-eb4bd967bace','KONUM','MACARİSTAN-Mosonmagyaróvár','2025-10-09 06:44:41.806'),
('2db19754-a698-4413-9dbb-3924278f732d','d32a141a-efed-4aa4-8db8-a628a34c49e2','KONUM','ALMANYA - LUDWIGSFELD','2025-04-24 06:14:32.731'),
('2ddb0126-c461-4bc8-8343-2b77c7fbbbac','2e09e370-f862-4361-86b2-28f5d97bb0f6','KONUM','KAPIKULE','2024-11-14 04:43:55.387'),
('3003f931-28fc-4bb4-baac-baa8a77ceb55','5206e2ee-a645-4980-ae70-5a94e6fb2922','KONUM','AVUSTURYA - SUBEN','2025-07-04 09:48:45.901'),
('3158bc56-d30a-400c-b101-fbf0d134f60c','e9624207-f65d-451c-9ab0-5f510c811052','KONUM','MACARİSTAN-RAJKA','2025-08-15 06:39:51.982'),
('3235cd29-659a-4dcf-a547-b3d953cc00a0','ff664753-34e7-49e3-bc89-2f4a4b65bf71','KONUM','KAPIKULE-TÜRKİYE','2025-07-22 06:05:01.253'),
('324bec83-ea46-4908-8897-3d8ddc83f091','0391eccf-fdab-4134-a6b2-71ed68186b55','KONUM','EDİRNE - HAMZABEYLİ ','2025-09-02 06:53:13.308'),
('330cd023-2540-4256-8765-2b4b32788d80','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','KONUM','BULGARİSTAN-İVRACA','2025-09-26 07:02:30.829'),
('334c1acc-47ab-4ccc-a919-837e58499f99','3ac24069-be87-4119-8ed6-2f478b64b3f9','KONUM','KAPIKULE','2025-08-26 07:17:27.979'),
('342b1474-c4b8-49fd-a573-338a27ce8e24','f81ec9dd-8fdd-462e-af9b-c064b55486e6','KONUM','ROMANYA- Vâlcea','2025-07-16 05:58:29.767'),
('3432efb2-220c-4b40-bd39-3290f23ec3ba','6889f2af-6fdd-49e6-876f-ff0e206bbf32','KONUM','SLOVAKYA-BRATİSLAVA','2024-03-20 08:08:13.045'),
('348acdbe-44b1-4222-9d1b-14a1a9041044','2c596345-3f37-4571-9d62-83b8b96993d4','KONUM','BULGARİSTAN - SVİLENGRAD','2025-08-29 06:12:03.333'),
('3845762f-5dfd-4cfd-9eec-dc6a84fd048d','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','KONUM','ROMANYA - HİNOVA','2025-07-29 05:49:02.236'),
('3866ccec-4b4c-45ca-a01b-cffa64df8109','de4951fc-994b-4e0e-a802-27ddaab5a0e8','KONUM','BULGARİSTAN-VİDİN','2025-05-20 06:50:26.983'),
('3b1bddb6-a031-4489-84ed-a4e81b3f13f5','6889f2af-6fdd-49e6-876f-ff0e206bbf32','KONUM','MACARİSTAN-TİMİŞOARA','2024-03-19 08:09:03.286'),
('3b7f2e81-3f1a-4458-b746-74512fc679af','8b91c8b5-7964-4aaa-a094-76edbabdef3b','KONUM','AVUSTURYA-SUBEN','2024-11-24 13:38:25.730'),
('3b921f62-0923-4b26-a02d-7487a76853bd','57046791-223a-475d-a95b-9bd35bed67c2','KONUM','ALMANYA-HANNOVER','2024-03-20 08:09:01.866'),
('3b99c7c0-ef41-4be0-b471-88c1e15fc971','bd143f82-77da-4c1d-9d90-001698b828cf','KONUM ','AVUSTURYA-SUBEN','2025-09-08 06:43:29.936'),
('3c358f7d-028e-4d5f-bafb-f83686ccff69','de4951fc-994b-4e0e-a802-27ddaab5a0e8','ŞÖFÖR İLETİŞİM','EROL\n+905446347474','2025-05-20 18:57:34.393'),
('3ccac3b4-cc12-4c2e-8792-e56308107e47','9656d9e4-a381-4143-957d-98a2f19361a5','KONUM ','KAPIKULE','2025-08-26 07:17:52.740'),
('3d6d5563-6d96-4b89-b80b-d0e1c650b79d','ec518edc-d061-4e5c-8d56-8477e6213bda','KONUM','Romanya-Giurgiu','2024-04-15 11:38:10.039'),
('3e60e0f7-862e-4670-b5b5-ef03d274e8c6','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM ','BULGARİSTAN- FİLİBE','2025-04-22 06:27:03.549'),
('3f48c09a-8848-4592-9340-22f0bfe316d4','05e8de78-1979-427a-85ea-4116295aadf5','İLETİŞİM','ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','2025-10-13 10:18:45.162'),
('40dc9ef8-17b7-4b8c-9cee-80337809cecd','6889f2af-6fdd-49e6-876f-ff0e206bbf32','KONUM','FRANSA-STRASBOURG','2024-03-25 08:41:46.541'),
('42662388-5ba3-4d0c-8797-e6ec50acfad5','f99a300e-c809-4155-bc34-9490eaae72a3','KONUM','BULGARİSTAN- FİLİBE','2025-04-21 08:19:49.610'),
('4576ae6f-73cc-4360-84fd-e489f476a682','eb88f328-c1ca-431b-ad68-6f414d275615','KONUM','LIECHTENSTEIN - VADUZ','2025-04-22 06:12:29.643'),
('4689090a-d592-4c09-a4ae-7742d3f6a49a','9e06441c-1bec-4f47-847f-83bea94f8369','KONUM','AVUSTURYA —SUBEN ','2025-09-15 06:06:26.606'),
('47d29d60-516a-4066-a78b-73bee45b2377','bdbe2cab-db44-453f-899e-74c537e1e204','KONUM','HAMZABEYLİ - TÜRKİYE','2025-07-17 06:34:31.773'),
('47ed04d5-588f-45a4-b402-aa7f5a741df1','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','KONUM','AVUSTURYA-BLİNDENMARKT','2025-07-30 06:09:55.213'),
('493edfa9-f20c-4b54-879c-c76741471442','8262d585-bae7-47f4-973a-eef1afacb0ad','KONUM','ROMANYA- BANOVİTA','2025-06-17 06:10:50.034'),
('4aa9471b-c674-4776-9b1d-7c5fc0865f5a','0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4','KONUM','KAPIKULE','2025-10-25 08:59:37.620'),
('4b672256-ad24-46e0-8d5b-9d6581b89b63','fe8c891b-115a-4553-8537-5fd70e9fa0c6','KONUM','ALMANYA-LEİPZİG','2024-04-01 07:53:16.845'),
('4be080cb-fd13-469e-908c-e36f1c95d44f','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','KONUM','ALMANYA -WAİDHAUS','2025-09-30 06:18:17.230'),
('4d59e46e-fa79-4c6c-a646-005ec17348c2','3e0e9dd7-0a00-4aff-a011-f48405df943a','KONUM','KAPIKULE','2024-11-14 04:44:15.019'),
('4d93120a-b951-435c-8e24-87e93c09b6bc','187e76a0-f3c3-4686-8b43-ae76882956a8','KONUM','MACARİSTAN-Mosonmagyaróvár','2025-10-13 06:43:30.130'),
('4f112853-9a39-4360-aa56-5c70c0b4444f','137e1f83-d1e4-4e49-a611-79b146cc7098','KONUM','Bulgaria -  Plovdiv','2025-07-16 05:58:02.366'),
('55235a40-75c8-4d7f-b7da-6ed596132fc0','9277c9d4-8691-44ae-98c7-5a99d95125fb','KONUM','MACARİSTAN-BUDAPEŞTE','2024-09-09 08:42:37.228'),
('56511bc8-1e42-4f16-bc63-90a106eaf872','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','KONUM','KAPIKULE-TÜRKİYE','2025-07-28 07:56:36.944'),
('5751a972-0337-47c5-909b-83ecbe769bb8','6e170676-8e22-488f-a4ec-2e5cfb9db651','KONUM','BULGARİSTAN-REBARKOVO','2025-08-20 06:13:49.056'),
('57f7859d-3bf5-4d64-bb4e-8f620a411355','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','KONUM','KAPIKULE','2025-09-24 11:03:05.102'),
('5921e18e-c3d0-477b-9d19-0c51abe202e9','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','KONUM','KAPIKULE','2025-05-27 07:54:29.208'),
('59d4f3f2-48e9-4ab7-92a5-6a7778b0f113','3c847602-8428-494a-84ce-0c9c9392db1a','İLETİŞİM ','+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','2025-07-23 07:52:53.147'),
('5b0a09c9-f8e6-4d71-aef8-d5eab6eef85c','ebc1b100-cb77-4268-b975-a2a46cd2c876','KONUM','MACARİSTAN -LAJOSMİZSE','2025-05-20 06:48:49.428'),
('5b8f4323-cfe4-41d4-860d-b405b4797043','0391eccf-fdab-4134-a6b2-71ed68186b55','İLETİŞİM','MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','2025-09-05 08:54:53.323'),
('5bc73938-5075-48cd-b6fa-bb5435149d3c','48d1afe3-6d19-44da-863e-7181c7b173cd','KONUM','ROMANYA HUNİA','2025-05-07 06:07:20.753'),
('5c87184d-311b-42b9-9533-0f9493c3288e','e3500f94-7cbb-4330-8eca-c75ce50b7154','KONUM','ROMANYA-BÜKREŞ','2025-10-23 06:18:02.107'),
('5fdac30e-a0ce-4209-912c-a9cf0df34094','cff49750-183c-4486-bf27-562e3315a5ed','KONUM','EDİRNE KAPIKULE','2024-04-29 19:17:56.334'),
('60920c94-356f-4cee-aff5-23c3be266947','f1349ad1-099b-4319-af1c-56927ca0d070','KONUM','SUBEN','2024-05-24 17:16:26.972'),
('60a7eb3d-45e1-4665-8600-42f81e4a2f5c','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','MACARİSTAN - SZEGED','2025-04-24 06:15:30.709'),
('630b5c55-eb83-4aaa-8c35-315f1807f16b','d272c69b-ff96-475f-9355-592e3bf8c36a','KONUN','BULGARİSTAN-SOFYA','2024-11-06 15:48:48.680'),
('63123c91-e840-436a-979d-40663a430e88','05e8de78-1979-427a-85ea-4116295aadf5','KONUM','BURSA GÜMRÜK ','2025-10-02 06:47:43.948'),
('66aa9e3a-4601-4113-9862-ec495ba788c3','fe8c891b-115a-4553-8537-5fd70e9fa0c6','KONUM','ROMANYA-SİBUİ','2024-03-26 16:05:59.817'),
('672c0892-0fb9-435c-9f6a-233ad76995ec','7ac756d2-64a5-4427-8ec5-4a522acc0088','KONUM','TÜRKİYE - KAPIKULE','2025-06-27 08:07:39.024'),
('6861c4a7-ecc4-4c9f-99e0-7169d9430854','dec3986f-102f-43bc-891f-7de9ebce0626','KONUM','MACARİSTAN - Mosonmagyaróvár','2025-09-25 06:45:42.838'),
('69254939-04fe-4691-b302-8c686cb49ee0','95d39b60-193e-460a-8e07-0929aa9f2949','KONUM','BULGARİSTAN-VİDİN','2024-10-02 08:50:07.027'),
('6a175443-8acc-46c6-b138-d26e9b11d0f0','6bda3b29-0b80-4c3d-be9a-90018628d0e3','KONUM ','HIRVATİSTAN-ZAGREB','2024-10-02 08:49:51.933'),
('6bb03ad7-20d1-4bf2-abab-e2bdc36f6fe2','de4951fc-994b-4e0e-a802-27ddaab5a0e8','KONUM','KAPIKULE','2025-05-16 07:01:46.520'),
('6d34cf39-ab4d-4d53-bebc-dcdbd97c0518','d123109e-9a26-4781-939a-87cda202f683','BİLGİLENDİRME','ARAÇ KAPIKULE YOĞUNLUĞU SEBEBİYLE 2-3 GÜN GEÇİKMEYE YAŞAYACAKTIR \nANLAYIŞINIZ İÇİN TEŞEKKÜRLER','2024-11-28 09:39:00.704'),
('6dfce4cf-4518-4565-b914-462b5ed9507c','3271b677-620a-4420-88c0-5c08cda9fe26','KONUM','ALMANYA-BERLİN','2024-03-25 08:42:28.210'),
('6e5c5e8b-720d-4a55-a292-dfbe91652f92','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','KONUM','MACARİSTAN-Mosonmagyaróvár','2025-08-04 06:19:26.610'),
('706006aa-c837-4a71-8d44-dec7154e0158','05e8de78-1979-427a-85ea-4116295aadf5','KONUM','EDİRNE - HAMZABEYLİ ','2025-10-06 11:00:37.026'),
('70fe22be-f0ce-4e77-a5c0-2d072792431e','2c596345-3f37-4571-9d62-83b8b96993d4','KONUM','MACARİSTAN-Mosonmagyaróvár','2025-09-01 06:21:10.256'),
('718391a4-4e24-4a95-b31b-b297824cade5','dec3986f-102f-43bc-891f-7de9ebce0626','KONUM','BULGARİSTAN -SVİLENGRAD','2025-09-22 06:40:14.949'),
('72954fa6-ee34-418e-b2ed-f0996b6388dc','1660b7bd-ba08-4a06-83fa-1f5532c82aae','KONUM','ROMANYA-GİURGİU','2024-04-04 12:49:13.289'),
('7444bb1f-45b4-4cd6-9495-061682dc2acd','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','KONUM','TÜRKİYE- KAPIKULE','2025-06-23 06:02:30.689'),
('744554ba-fd74-46a2-86a2-dd272ff856dc','9656d9e4-a381-4143-957d-98a2f19361a5','İLETİŞİM','MERT ŞOFÖR:0541 379 8166','2025-09-01 06:22:41.257'),
('751a497d-793d-4c20-99f9-101e884a3518','98672fb9-339c-4dd4-895c-652e44b438ac','KONUM','KAPIKULE ','2025-10-24 06:52:45.218'),
('75744188-fb0d-4c76-9be9-22838ab58af9','72839aed-8961-408f-9ffa-cbc7782e1f6f','İLETİŞİM','ADNAN DURSUN ŞOFÖR +90 535 462 20 27','2025-10-10 10:12:34.044'),
('75b6186f-f759-4ce0-9923-09a7d1949e55','424d5de5-0cbf-4a64-83fc-d0cbf49df82e','İletişim ','Halil Bey (Şoför) :+905541100849','2025-07-30 11:25:10.188'),
('767575c3-e81c-4eaa-9625-775219c14927','3ac24069-be87-4119-8ed6-2f478b64b3f9','KONUM','BULGARİSTAN SOFYA','2025-08-27 05:35:41.039'),
('77cfd34c-2de2-4fdf-a3c9-83a7671cde0c','d32a141a-efed-4aa4-8db8-a628a34c49e2','KONUM','ROMANYA - CROİVA ','2025-04-21 08:15:37.235'),
('7ab0fd47-c134-4a03-9e51-c6ad28691c19','66307a01-d585-4127-903b-18748421c29e','KONUM','ROMANYA-GOLENTİ','2025-04-30 07:23:06.679'),
('7b49694c-338b-4f65-af31-fb02266a4b7d','8039cd90-69f4-4da8-b3fd-eb4bd967bace','KONUM ','ROMANYA -ORSOVA','2025-10-08 11:48:28.546'),
('7bbf0dab-2416-4ade-a411-8b14d62303f0','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','FRANSA - MUSSİG','2025-04-30 07:30:11.595'),
('7d3d5493-10e9-4a45-a6bc-e3ca1377200a','cab6324f-e4eb-48af-b3a4-31980247e32c','KONUM','MACARİSTAN-BUDAPEŞTE','2025-09-16 07:19:53.890'),
('7f4ccf4a-0515-4ddc-aeca-6f766401317b','8262d585-bae7-47f4-973a-eef1afacb0ad','ŞOFÖR','ADNAN DURSUN :+905354622027','2025-06-19 08:24:32.887'),
('802698ad-ecd5-40ea-a71a-d698bafa3fa3','d9ee13db-868d-4d90-927a-35ef1d4ba092','KONUM','MACARİSTAN-KİSKUM','2025-08-29 06:13:47.736'),
('816c7d85-53f8-4e98-8333-727ddb818d31','bd143f82-77da-4c1d-9d90-001698b828cf','İLETİŞİM ','ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','2025-09-08 18:43:45.878'),
('823e1c5d-27c8-41d4-800d-b8c83bd4d09e','64761ce4-d931-4769-87f7-0c76857d5ab9','KONUM','ALMANYA - PASSAU','2025-09-22 06:34:13.685'),
('832d49dc-5abf-4bf2-a13e-342f2c5d7dc3','ec518edc-d061-4e5c-8d56-8477e6213bda','KONUM','KAPIKULE SINIR KAPISI','2024-04-09 13:55:04.612'),
('83806336-3f66-47a6-94fa-cc52365d05dc','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','KONUM','SLOVAKYA','2024-05-13 13:12:07.777'),
('8391dc4c-76e8-4795-b1ce-f302553c37e8','f14d0641-587a-4959-a970-071f376a1eb3','KONUM','EDİRNE-KAPIKULE','2024-10-14 12:40:30.623'),
('83aeef2d-b581-4b29-b2ea-fbe2a2bf35cd','6e170676-8e22-488f-a4ec-2e5cfb9db651','KONUM','HAMZABEYLİ','2025-08-18 07:09:44.096'),
('84db0d26-4ae3-4ba3-b58c-ea743ec996d3','7ac756d2-64a5-4427-8ec5-4a522acc0088','KONUM ','AVUSTURYA - SUBEN','2025-06-30 06:40:50.479'),
('873f3008-ac7c-47cb-8029-a4f4a7efc76e','f14d0641-587a-4959-a970-071f376a1eb3','KONUM','BULGARİSTAN-VİDİN','2024-10-17 11:53:40.736'),
('88642498-ad83-484b-810d-469a1622004d','bd143f82-77da-4c1d-9d90-001698b828cf','KONUM','BULGARİSTAN- SVİLENGRAD','2025-09-05 06:10:16.177'),
('8ae0a288-9f29-41c4-bc41-a48e1f2d7c6e','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','İLETİŞİM','EYÜP YAMAN ŞOFÖR : +90536 613 37 50','2025-09-30 07:02:14.744'),
('8bc03146-535c-4661-be71-425bb1215150','5206e2ee-a645-4980-ae70-5a94e6fb2922','DRİVER NUMBER','+90 541 379 81 66 Mert GÜNAL','2025-07-04 09:53:02.888'),
('8bd00ab6-4b45-4031-a884-c8cc65e7eb04','d32a141a-efed-4aa4-8db8-a628a34c49e2','KONUM ','ALMANYA - HAMBURG','2025-04-28 06:10:40.835'),
('8c227fc4-a045-4677-a465-6440e7d9ff8c','05e8de78-1979-427a-85ea-4116295aadf5','KONUM','BULGARİSTAN-PLEVNE','2025-10-09 07:12:54.193'),
('8c290d3e-642e-420f-9ec6-616b19a487e9','a2722617-aa4d-4934-b5f5-591b5d50f6ce','BİLGİ!!','ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','2025-09-26 12:42:48.434'),
('8cea2d71-5be6-4928-b3a1-337db7268e7e','c1316c2d-c5cf-4a71-8f22-fe7451c83298','KONUM','HOLLANDA - ROTTERDAM','2025-05-02 06:40:49.806'),
('8d045c07-8bff-4b9f-bc5a-5fc91e509182','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','İletişim ','Şöför Murat : +905321616048','2025-08-05 13:51:38.689'),
('8dae0b68-db48-42a6-b300-6ece68ea64d8','3271b677-620a-4420-88c0-5c08cda9fe26','KONUM','BULGARİSTAN-SOFYA','2024-03-19 08:19:00.436'),
('8ed00b89-5cc7-4682-a49c-e9f0481c4bea','2c596345-3f37-4571-9d62-83b8b96993d4','KONUM ','AVUSTURYA - SUBEN','2025-09-02 05:52:36.537'),
('8f9b53b9-72af-4253-b0c9-403993b30494','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','KONUM','ROMANYA-ARAD','2024-04-01 07:49:35.581'),
('913ab7a1-6e2a-49dc-9492-f84cb3ff99c8','6889f2af-6fdd-49e6-876f-ff0e206bbf32','KONUM','FRANSA-MARSİLYA','2024-03-30 07:26:30.999'),
('917339d2-5c2c-4c63-ac8d-063739c3eea3','05e8de78-1979-427a-85ea-4116295aadf5','KONUM','Bulgaristan - Kutsina ','2025-10-08 11:46:32.134'),
('93c63059-09a4-44d3-83eb-1e14304a4d7d','f81ec9dd-8fdd-462e-af9b-c064b55486e6','KONUM ','HAMZABEYLİ -TÜRKİYE ','2025-07-14 06:02:55.112'),
('93c74c9a-bd5b-479e-a17a-ed003043b734','e500be43-361f-413c-9720-89cc683cacf9','KONUM','KAPIKULE','2025-10-13 10:18:32.295'),
('9678760a-db1f-4f1a-b56f-5d8ce17928a7','9277c9d4-8691-44ae-98c7-5a99d95125fb','KONUM','BULGARİSTAN-VİDİN','2024-09-07 15:54:17.208'),
('977a2182-4ec2-468a-8e89-56ff06278e9d','2a352437-950c-42a9-9135-55482cf3977c','KONUM','MACARİSTAN-HEGYESHALOM','2025-08-18 07:10:46.926'),
('97c22536-e37c-4ed0-82b4-693615783ab0','b03d8b56-5cc7-4605-a50e-54c4eacaf29a','İLETİŞİM','Furkan şöför = +905078826436','2025-09-10 10:59:22.540'),
('97fd5f6b-f5fe-47de-825b-a2d91ab3561d','a2722617-aa4d-4934-b5f5-591b5d50f6ce','KONUM','MACARİSTAN-GYARTELEP','2025-09-24 06:50:20.588'),
('97ff43e7-8a71-4d62-ae2d-06b989eb3921','3b62d0b0-51d7-42b2-859b-2577ea3967c4','KONUM ','ALMANYA -LANDSBERG','2025-10-06 11:00:50.254'),
('9ba9726d-3c26-4aef-9bd1-d291fb6a4cda','eddcbe2b-f6c1-4a5e-890b-0bd30597aea2','KONUM','EDİRNE-KAPIKULE','2024-05-11 08:03:32.368'),
('9cc6bc01-d103-4cea-a21c-e105eab3ca1c','57046791-223a-475d-a95b-9bd35bed67c2','KONUM','ALMANYA- DRESDEN','2024-03-19 08:10:12.779'),
('9d0bf48d-00af-4c2d-a7af-efefe41d1c99','eb88f328-c1ca-431b-ad68-6f414d275615','KONUM','FRANSA - GIGNAC','2025-04-28 06:09:18.503'),
('9dc1531f-2969-462d-b57b-17a98f319376','5206e2ee-a645-4980-ae70-5a94e6fb2922','KONUM','TÜRKİYE - EDİRNE HAMZABEYLİ','2025-06-30 06:43:08.132'),
('9e09d580-67de-4acd-a360-603e3093291e','8039cd90-69f4-4da8-b3fd-eb4bd967bace','İLETİŞİM','UĞUR ACAR ŞOFÖR +90 542 443 59 17','2025-10-10 10:11:45.187'),
('a02ec8af-387d-4a31-b7fc-2d7d6ac5fea2','cab6324f-e4eb-48af-b3a4-31980247e32c','KONUM','BULGARİSTAN-VİDİN ','2025-09-15 06:07:36.860'),
('a0c7b3cc-0078-42d8-aade-e3acee00f640','8039cd90-69f4-4da8-b3fd-eb4bd967bace','KONUM ','KAPIKULE','2025-10-06 10:59:57.531'),
('a22817f9-63e1-4417-8261-7db29442ec30','bdbe2cab-db44-453f-899e-74c537e1e204','KONUM','BULGARİSTAN -PLOVDİV','2025-07-18 06:32:53.659'),
('a24c9d96-015e-41af-86a8-4871ed038039','187e76a0-f3c3-4686-8b43-ae76882956a8','KONUM','KAPIKULE','2025-10-08 17:44:34.891'),
('a2b53e2d-dc7e-437c-a4aa-629edf60bf05','5206e2ee-a645-4980-ae70-5a94e6fb2922','KONUM','SLOVAKYA-BRATİSLAVA','2025-07-03 11:24:10.520'),
('a2eced9c-c43f-4a18-ac98-16ad5cd429da','a2722617-aa4d-4934-b5f5-591b5d50f6ce','KONUM','ROMANYA-VANJU MARE','2025-09-23 06:16:41.013'),
('a557112c-9b2a-447a-ba7c-e9f118925923','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','KONUM',' Avusturya-Murau','2025-08-05 06:34:43.680'),
('a774538d-5aec-4b1d-a90e-e46a4a991b69','3b62d0b0-51d7-42b2-859b-2577ea3967c4','KONUM','BULGARİSTAN-İVRACA','2025-10-01 06:35:39.538'),
('a795a281-ab71-41b2-accc-82bdbacf44a1','66307a01-d585-4127-903b-18748421c29e','BiCarGo','ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','2025-05-03 06:23:37.455'),
('a8a0fb8a-daab-495c-83dc-e2e26e804283','3f80454d-2b4c-49a1-9d46-7b79fa9a0274','KONUM','WEINGARTEN - ALMANYA','2025-06-17 06:11:26.592'),
('a8e1ed67-dabf-496c-b226-9870ed87498f','d123109e-9a26-4781-939a-87cda202f683','KONUM','EDİRNE-KAPIKULE','2024-11-26 12:35:08.895'),
('a9301a4b-9497-46be-a7a7-c2c481dbadc1','d0775c23-9058-44ca-bc9f-721b310a8261','Test','Test','2025-05-08 07:12:27.821'),
('ab5dbb72-052a-4498-b88d-17f2abf13960','a2722617-aa4d-4934-b5f5-591b5d50f6ce','KONUM','EDİRNE KAPIKULE ','2025-09-19 07:14:59.658'),
('acd8b1ec-69ab-416b-b9c4-2ca7a0454839','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','FRANSA - RENAUVOİD','2025-04-29 07:31:44.981'),
('adb6d172-e96b-4214-9a53-4b8d40d5c328','1660b7bd-ba08-4a06-83fa-1f5532c82aae','Konum ','SLOVAKİA-BRATİSLAVA','2024-04-08 08:32:59.678'),
('ae61eec9-f26c-496c-8a44-390bbb759f55','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','KONUM','ROMANYA- LUGOJ','2025-06-26 06:26:03.533'),
('af24e0cf-59ab-4aa4-9dd4-8f8fa1ee4884','137e1f83-d1e4-4e49-a611-79b146cc7098','KONUM','Bulgaria PLOVDİV','2025-07-14 06:03:31.548'),
('b0a7c1fa-1226-43eb-90bf-52dec90559dd','1b0bff80-860a-4f39-812d-dac7c77bf49d','KONUM','EDİRNE-KAPIKULE','2024-12-20 10:23:41.009'),
('b0bc2448-972c-4333-ba94-c66b8aa1481e','9656d9e4-a381-4143-957d-98a2f19361a5','KONUM','ROMANYA-LİNTEŞTİ','2025-08-28 06:07:02.690'),
('b155dc25-74cc-4e00-a7ef-f3d8a4db5280','bd143f82-77da-4c1d-9d90-001698b828cf','KONUM','KAPIKULE','2025-09-03 10:22:19.115'),
('b1bf1d87-74ab-4852-b9d5-2e3494772b1b','48d1afe3-6d19-44da-863e-7181c7b173cd','ŞÖFÖR NUMARASI','+905467896981','2025-05-09 16:42:31.694'),
('b3dbe4a8-274f-4aca-9d7b-6c521674275c','d9ee13db-868d-4d90-927a-35ef1d4ba092','KONUM','KAPIKULE','2025-08-26 07:17:40.047'),
('b49a0f79-074a-4cde-8c9e-257e5007355c','72839aed-8961-408f-9ffa-cbc7782e1f6f','KONUM','Çekya - HUSTOPECE','2025-10-08 11:47:20.142'),
('b4af4e72-1254-4591-9781-a15f612e062d','98672fb9-339c-4dd4-895c-652e44b438ac','KONUM','BULGARİSTAN-VİDİN','2025-10-27 06:12:01.049'),
('b4ce6ada-db53-4ee8-b4ed-ceb629b8b456','9e06441c-1bec-4f47-847f-83bea94f8369','KONUM','BULGARİSTAN HASKOVA','2025-09-12 08:31:06.812'),
('b5cacf1c-a854-42d1-b99a-c942379e3646','516f3f6e-2ef7-47cb-83a8-b799f3e0916b','KONUM ','KAPIKULE ','2025-07-31 09:32:46.642'),
('b8de6594-4d1d-4acb-ae28-6a1cb35a4bc3','578b6ae0-5a9d-4a77-8099-a017840800a0','KONUM','MACARİSTAN APÂTFAKVA','2025-07-14 06:06:28.917'),
('b8ffb23c-b014-44b5-8aa6-c19202c3af31','cab6324f-e4eb-48af-b3a4-31980247e32c','KONUM','EDİRNE KAPIKULE ','2025-09-13 06:15:12.091'),
('ba57e864-7f3b-4a15-99ec-41179aa1d981','1660b7bd-ba08-4a06-83fa-1f5532c82aae','KONUM','KAPIKULE','2024-04-01 07:49:12.861'),
('ba7fee6b-2037-4a07-b9fe-c98effd7bdd2','e3500f94-7cbb-4330-8eca-c75ce50b7154','KONUM','HAMZABEYLİ','2025-10-22 13:54:57.823'),
('babc4358-10fb-49cc-a794-8173497052b9','fe8c891b-115a-4553-8537-5fd70e9fa0c6','KONUM','BULGARİSTAN-KAPTAN ANDREVO','2024-03-25 08:41:03.603'),
('bad05ed6-57b5-4b6a-990c-48cb112baee0','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','KONUM','EDİRNE-KAPIKULE','2024-09-07 15:54:39.579'),
('bf2039b5-05d1-4dd5-bf49-ad63648fd385','e9624207-f65d-451c-9ab0-5f510c811052','KONUM','KAPIKULE ','2025-08-11 11:29:23.850'),
('c08f89de-46a0-4198-b68a-8e7ed1b2f26c','16065e19-f4a9-409d-85c0-ca54cfa7564c','İletişim ','Ramazan Bey (Şoför):+90 505 993 94 94','2025-07-21 13:13:50.372'),
('c2c0058d-566e-43bd-9c72-22df33134568','d272c69b-ff96-475f-9355-592e3bf8c36a','KONUM','ROMANYA-ARAD','2024-11-07 08:34:37.428'),
('c3bb9159-03f2-4cc6-b542-991f8d2bcb1a','fdb12736-f1dd-418e-b2d9-bcaebc7146d8','KONUM','ÇEKYA -Lanžhot','2025-09-29 06:31:15.826'),
('c416e3d6-a25f-423e-bfb0-e77fe60028d4','3b62d0b0-51d7-42b2-859b-2577ea3967c4','KONUM','KAPIKULE','2025-09-29 12:21:04.914'),
('c855f89b-a660-43c8-8947-d5587c3ed4ba','a239c2d3-4a55-470e-9c43-7a88ee6b31e4','KONUM','Austria - Suben','2025-06-27 08:09:54.615'),
('c8ef7b98-7223-45ba-8100-9ff2ec2c11a9','d9ee13db-868d-4d90-927a-35ef1d4ba092','İLETİŞİM ','ERDOĞAN ŞOFÖR:0532 772 21 33','2025-09-01 06:21:43.464'),
('ca30b007-4e2d-4cae-bb5f-fb1b481ad7df','8d3faf5e-e634-4068-8b6f-c99fd407ca66','KONUM ','KAPIKULE ','2025-10-13 06:43:45.614'),
('cb1e2aae-582b-45a1-8d8e-4aa5b008f672','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','KONUM ','ROMANYA- VİDİN','2024-05-24 07:08:21.632'),
('cb486caf-0144-4bc2-adc3-644587e4f0ea','e3500f94-7cbb-4330-8eca-c75ce50b7154','KONUM','MACARİSTAN -TATBANYA','2025-10-24 06:52:24.145'),
('cc246853-c627-4cae-a6e0-752e45d48df6','a2722617-aa4d-4934-b5f5-591b5d50f6ce','KONUM','MACARİSTAN - Mosonmagyaróvár\n','2025-09-25 06:45:20.809'),
('d1292eb0-aebe-4614-84ce-11b7b3e6338e','3b62d0b0-51d7-42b2-859b-2577ea3967c4','İLETİŞİM ','YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','2025-10-07 11:55:28.491'),
('d1836f19-e1f0-4d8a-ae90-03eaed0c2dfb','c1316c2d-c5cf-4a71-8f22-fe7451c83298','KONUM','SIRBİSTAN - BELGRAD','2025-04-28 06:23:17.014'),
('d2447ab3-ca3c-4a5f-9834-27689a0eade3','33575f69-1bd5-4954-a74a-8872b1d00a7f','İletişim ','Şoför Bilgin Bey +90 532 699 92 39','2025-10-21 05:18:13.484'),
('d294cd47-89ce-4db2-bcf7-04b9de3da8e3','91baaa13-1952-49c9-bd52-7df7a06ce051','KONUM','KAPIKULE','2025-05-27 07:54:44.326'),
('da38b3ae-47d7-4d63-9935-b1c90c22382d','dec3986f-102f-43bc-891f-7de9ebce0626','KONUM','ALMANYA-WAİDHAUS','2025-09-26 07:04:01.478'),
('db4187bc-4c6c-48e8-98cb-ea41fe7f7765','ec518edc-d061-4e5c-8d56-8477e6213bda','KONUM','AVUSTURYA SUBEN','2024-04-20 20:59:22.486'),
('db5fbe0c-4b56-4b01-bd0b-f48becbbcf58','56c19d78-8bca-49b8-8adc-b0d2ba311bfc','ŞÖFÖR İLETİŞİM','MERT\n+90 (541) 379 81 66','2025-06-02 07:41:37.398'),
('db87bd46-95a5-4916-9c74-1794f95eb219','f81ec9dd-8fdd-462e-af9b-c064b55486e6','KONUM','MACARİSTAN - SZATYMAZ','2025-07-17 06:32:43.396'),
('db8c5c51-1f46-4058-b4f8-9293bf4ebc57','7bd09245-c179-4127-b0e1-46737615122b','KONUM','SIRBİSTAN','2025-08-18 07:09:32.908'),
('de7a1fde-b2d1-4fbc-ab40-f4811af02204','2c596345-3f37-4571-9d62-83b8b96993d4','İletişim ','Şöför Uğur Acar +905424435917','2025-09-03 10:28:17.100'),
('de7e566a-183f-4f58-848b-0ff9923e7416','1660b7bd-ba08-4a06-83fa-1f5532c82aae','Konum','ALMANYA-waidhause','2024-04-09 13:54:37.671'),
('df03d006-f49d-4e42-be14-9c90ffe537b3','6f4d7a00-e2c2-449b-956c-48fb73752550','ŞÖFÖR BİLGİLERİ','SERHAT\n+90 535 707 36 54','2025-05-20 07:46:59.962'),
('e103f330-8c94-4c09-b50e-8675a7610995','8b91c8b5-7964-4aaa-a094-76edbabdef3b','KONUM','ALMANYA-REGENSBURG','2024-11-26 12:35:35.534'),
('e21ff75b-12de-4066-bd13-8279f89944a5','6f4d7a00-e2c2-449b-956c-48fb73752550','KONUM','KAPIKULE','2025-05-13 08:39:05.554'),
('e336a19e-b82d-445a-9e9e-d999d523bde4','578b6ae0-5a9d-4a77-8099-a017840800a0','KONUM','EDİRNE-HAMZABEYLİ','2025-07-10 07:17:12.894'),
('e376db00-b0b5-4f6a-a88d-f66637894ea6','ff664753-34e7-49e3-bc89-2f4a4b65bf71','KONUM','AVUSTURYA - SUBEN','2025-07-25 06:21:26.386'),
('e45a2887-3ddc-4f48-aa52-13a20173b5af','34e9dac8-0b72-4c9c-a3cd-d018c395e342','KONUM','ROMANYA-ARAD','2024-06-04 14:24:01.613'),
('e45d41f8-9c0d-4853-8d6d-c20d91e980c7','66307a01-d585-4127-903b-18748421c29e','KONUM','TÜRKİYE KAPIKULE','2025-04-29 07:25:50.505'),
('e5ef65d6-731c-4db2-b461-28d1c74df307','8d3faf5e-e634-4068-8b6f-c99fd407ca66','KONUM','KAPIKULE','2025-10-10 06:23:14.732'),
('e754c720-dffe-4824-9160-2819256871bc','6f4d7a00-e2c2-449b-956c-48fb73752550','KONUM ','ALMANYA -GEMMRİGHEİM','2025-05-20 06:51:47.510'),
('e794cad5-d98c-48ed-9055-e9874740f659','b624c770-5cbb-488e-8512-45ad975a729d','KONUM','MACARİSTAN-BUDAPEŞTE','2025-01-02 08:59:18.113'),
('e7e434b5-e97b-4e4b-a66d-925de02b42f8','eb88f328-c1ca-431b-ad68-6f414d275615','KONUM','FRANSA- CENEVRE','2025-04-25 05:53:24.264'),
('e8fe72bd-8ec3-4ac2-a9ff-b0c0bcf4369e','b6acf4f4-4698-4ff3-8de9-6da2a36f7667','KONUM','HIRVATİSTAN-ZAGREP','2024-09-09 08:42:16.605'),
('e99cce45-50a5-4040-9e35-300ca148befb','64761ce4-d931-4769-87f7-0c76857d5ab9','KONUM','EDİRNE HAMZABEYLİ','2025-09-19 07:14:28.727'),
('ea1b78fe-0057-461e-befb-1e634b86f6ca','72839aed-8961-408f-9ffa-cbc7782e1f6f','KONUM','BURSA GÜMRÜK ','2025-10-03 06:52:26.615'),
('ea5c0a8f-cb6b-4ff3-bdd4-86bf0cb867e5','2c596345-3f37-4571-9d62-83b8b96993d4','KONUM','KAPIKULE','2025-08-28 06:05:59.915'),
('ed1a2eb7-b4e9-444d-9f67-4a105af1ba5e','1b0bff80-860a-4f39-812d-dac7c77bf49d','KONUM','AVUSTURYA- SUBEN','2024-12-24 14:26:20.197'),
('ed6b3641-6b12-4799-a8f0-721cc9228755','5ab49a9b-43fc-42e5-b0ff-8f78b2766237','KONUM','AVUSTURYA -GRAZ','2024-09-24 20:23:05.727'),
('f37523af-592f-4370-bb33-607cb47bdb93','6bda3b29-0b80-4c3d-be9a-90018628d0e3','KONUM','BULGARİSTAN-SOFYA','2024-09-30 13:32:32.060'),
('f5a68c2d-c170-4893-a847-9d68180fbd10','006dce0f-a9da-40ab-9fa7-5cc3c92118ec','Konum ','ALMANYA-Waidhause','2024-04-02 06:31:30.722'),
('f716c9df-b2ea-4f59-8f40-955f8cf7e498','39f2d40f-6e0a-4975-9a98-f49131a96020','KONUM','ALMANYA -LAUFENBURG','2025-04-28 06:20:13.528'),
('f75e62eb-9765-4931-9e65-082511c9e0aa','cab6324f-e4eb-48af-b3a4-31980247e32c','KONUM ','AVUSTURYA -LİNZ','2025-09-17 05:41:41.874'),
('f76d765a-d9b3-4814-83bf-f4891d293529','0391eccf-fdab-4134-a6b2-71ed68186b55','KONUM','BULGARİSTAN - SOFYA','2025-09-03 10:22:56.999'),
('f82bebb6-0e2e-467a-a23d-44e6e0bcd9a7','10c74062-bfc4-4eca-8c51-74ea22e8f2ff','KONUM ','ALMANYA - MUNİH','2024-05-29 11:17:35.694'),
('f8cf957b-1a12-41a5-83e1-c83466b35e94','b5c4e118-f70d-4f61-9bf5-cb930542d764','KONUM','EDİRNE-HAMZABEYLİ','2024-11-26 12:36:00.668'),
('f8e93e80-8654-4135-93d2-7d58d9eaa226','6e170676-8e22-488f-a4ec-2e5cfb9db651','KONUM','ROMANYA','2025-08-21 08:07:22.042'),
('f919e242-5b8d-45f7-bef3-a12e4b9a58d1','ff664753-34e7-49e3-bc89-2f4a4b65bf71','KONUM','MACARİSTAN-RÖSZKE','2025-07-24 06:25:41.282'),
('f958eec0-5077-4d2b-bc3d-467289195598','95d39b60-193e-460a-8e07-0929aa9f2949','KONUM','ALMANYA-NÜRNBERG','2024-10-07 12:25:22.602'),
('fa1c05bc-2241-4e99-8704-0a3d53c8ec48','66307a01-d585-4127-903b-18748421c29e','KONUM','AVUSTURYA - SUBEN','2025-05-02 06:39:36.974'),
('fbee6988-0d57-4aad-a7f7-2e0e2f44b124','6e170676-8e22-488f-a4ec-2e5cfb9db651','KONUM','AVUSTURYA-SUBEN','2025-08-25 07:02:55.383'),
('fc17a0b0-f821-4600-a752-892c69f2ad8f','91baaa13-1952-49c9-bd52-7df7a06ce051','ŞÖFÖR İLETİŞİM','HALİL İBRAHİM\n+90 554 110 08 49','2025-06-02 07:40:52.912'),
('fc6caf3b-1ee3-4748-b6a8-dd76800660b7','72839aed-8961-408f-9ffa-cbc7782e1f6f','KONUM ','BULGARİSTAN - PAZARCIK','2025-10-06 11:00:07.951'),
('fcc84c5c-f211-485f-9d60-cff4a03f0155','3ac24069-be87-4119-8ed6-2f478b64b3f9','KONUM','AVUSTURYA-SUBEN','2025-08-29 06:12:44.243'),
('fde0cd07-62c7-40c0-aaca-2fb3596804bb','ebc1b100-cb77-4268-b975-a2a46cd2c876','DRİVER','ADNAN\n+905354622027','2025-05-21 16:52:38.546');
/*!40000 ALTER TABLE `voyagemessage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `voyageposition`
--

DROP TABLE IF EXISTS `voyageposition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `voyageposition` (
  `id` varchar(191) NOT NULL,
  `voyageId` varchar(191) NOT NULL,
  `country` varchar(191) DEFAULT NULL,
  `district` varchar(191) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  PRIMARY KEY (`id`),
  KEY `voyagePosition_voyageId_fkey` (`voyageId`),
  CONSTRAINT `voyageposition_voyageId_fkey` FOREIGN KEY (`voyageId`) REFERENCES `voyage` (`id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `voyageposition`
--

LOCK TABLES `voyageposition` WRITE;
/*!40000 ALTER TABLE `voyageposition` DISABLE KEYS */;
/*!40000 ALTER TABLE `voyageposition` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_message_templates`
--

DROP TABLE IF EXISTS `whatsapp_message_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `whatsapp_message_templates` (
  `id` enum('1') NOT NULL,
  `voyageCreateDriverMessage` text DEFAULT NULL,
  `shipmentItemReceiveSenderMessage` text DEFAULT NULL,
  `shipmentItemReceiveReceiverMessage` text DEFAULT NULL,
  `voyageInRoadSenderMessage` text DEFAULT NULL,
  `voyageInRoadReceiverMessage` text DEFAULT NULL,
  `voyageInDutySenderMessage` text DEFAULT NULL,
  `voyageInDutyReceiverMessage` text DEFAULT NULL,
  `shipmentIsDeliveredSenderMessage` text DEFAULT NULL,
  `shipmentIsDeliveredReceiverMessage` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_message_templates`
--

LOCK TABLES `whatsapp_message_templates` WRITE;
/*!40000 ALTER TABLE `whatsapp_message_templates` DISABLE KEYS */;
INSERT INTO `whatsapp_message_templates` VALUES
('1','Sayın {driverName} {driverSurname}, {roadDate} tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : {username}\nŞifre : {password}\n			\nBİCARGO','Sayın yetkili; {receiverName} adlı müşterinize {shipmentNo} nolu gönderinizin {itemName} ürünü {partCount} parça halinde {address} adresinizden {date} {time} tarih saatinde teslim alınmıştır.\n\nBİCARGO',NULL,'{receiverName} adlı müşterinizin {shipmentNo} nolu gönderisi {partCount} parça halinde yola çıkmıştır.','Sayın {receiverName}, {shipmentNo} nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/{shipmentNo}\n\nDear {receiverName}, your shipment with {shipmentNo} is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/{shipmentNo}\n\nBICARGO',NULL,'{shipmentNo} nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi {deliveryCode} kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/{shipmentNo}\n\nYour shipment with the number {shipmentNo} is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code {deliveryCode}. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/{shipmentNo}\n\nBICARGO','{receiverName} adlı müşterinizin {shipmentNo} nolu gönderisi teslim edilmiştir.\n\nBİCARGO','Sayın {receiverName}, {shipmentNo} nolu gönderiniz {deliveryCode} nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/{shipmentNo}\n\nDear {receiverName}, your shipment with {shipmentNo} was delivered to you with the delivery code {deliveryCode}. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/{shipmentNo}\n\n\nBICARGO');
/*!40000 ALTER TABLE `whatsapp_message_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whatsapp_messages`
--

DROP TABLE IF EXISTS `whatsapp_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `whatsapp_messages` (
  `id` varchar(191) NOT NULL,
  `phone` varchar(191) DEFAULT NULL,
  `message` text NOT NULL,
  `status` enum('0','1','2') NOT NULL DEFAULT '0',
  `shipmentId` varchar(191) DEFAULT NULL,
  `voyageId` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `whatsapp_messages_shipmentId_fkey` (`shipmentId`),
  KEY `whatsapp_messages_voyageId_fkey` (`voyageId`),
  CONSTRAINT `whatsapp_messages_shipmentId_fkey` FOREIGN KEY (`shipmentId`) REFERENCES `shipment` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `whatsapp_messages_voyageId_fkey` FOREIGN KEY (`voyageId`) REFERENCES `voyage` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whatsapp_messages`
--

LOCK TABLES `whatsapp_messages` WRITE;
/*!40000 ALTER TABLE `whatsapp_messages` DISABLE KEYS */;
INSERT INTO `whatsapp_messages` VALUES
('000274f4-0d3b-4bd0-b12e-14a37c6e0427','33669931427','501488750 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501488750\n\nYour shipment with the number 501488750 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501488750\n\nBICARGO','1','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL),
('0004fcab-2e0b-48d4-bc78-3d7b04cd0dda','3434574663476434','412746738 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412746738\n\nYour shipment with the number 412746738 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412746738\n\nBICARGO','2','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL),
('00057d4f-37dd-4a82-9ddf-e5ed54395dbc','491626393170','644860505 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9913 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644860505\n\nYour shipment with the number 644860505 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9913. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644860505\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('0009d9b6-8201-4f26-89d7-be70738b86ed','32465639816','Sayın MEHRDAND RAZMPOUR, 478962763 nolu gönderiniz 10452 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478962763\n\nDear MEHRDAND RAZMPOUR, your shipment with 478962763 was delivered to you with the delivery code 10452. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478962763\n\n\nBICARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('000ee547-a401-4872-b46e-55a142812d62','905075277637','ALİ ERKOCA adlı müşterinizin 745177264 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('00102dd4-719d-410f-8d1c-5246dbeb56a8','32470593490','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('00109f04-1bb2-45c7-aa0a-c5dc551f298f','436602528784','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('00128351-ba82-49d3-8028-6443272215ec','491795290795','644542202 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1730 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644542202\n\nYour shipment with the number 644542202 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1730. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644542202\n\nBICARGO','2','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('00159191-65a5-49db-9067-7985423e2d51','905075277637','Sayın yetkili; SUAT TANER adlı müşterinize 745129121 nolu gönderinizin PETRA YEMEK ODASI ürünü 10 parça halinde Fatura adresinizden 26.01.2025 13:29:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('001641bc-00c4-4b82-bc48-1ab12d1f9e1d','905325998198','SAHDİYE BİSKİN adlı müşterinizin 614707427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL),
('001e20d2-c636-413d-a800-809a94976baa','4915901967333','Sayın FAHRİYE KARTAL, 011255060 nolu gönderiniz 3881 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011255060\n\nDear FAHRİYE KARTAL, your shipment with 011255060 was delivered to you with the delivery code 3881. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011255060\n\n\nBICARGO','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('00211ef9-8351-46f1-a960-f1d495f9256f','905363385813','HASAN ULUSOY adlı müşterinizin 976819499 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL),
('0023fc51-cda6-49be-9d0a-99630ee8b73c','905461661672','Sayın yetkili; NADİYE ÇAVUŞ adlı müşterinize 644200718 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 24.07.2025 18:00:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('002592d2-4d16-4643-ac1e-d2222bd85ed1','4917630326860','Sayın DERMAN YATAK MURAT ÇAYAN, 412913992 nolu gönderiniz 10652 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412913992\n\nDear DERMAN YATAK MURAT ÇAYAN, your shipment with 412913992 was delivered to you with the delivery code 10652. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412913992\n\n\nBICARGO','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('002b1c09-7f0e-4d96-9c1a-f3499ac32cf1','436603215138','745853192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745853192\n\nYour shipment with the number 745853192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745853192\n\nBICARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('002ce7c7-ec8c-42ce-bfff-a5f08ace4878','491788608416','221965496 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7487 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221965496\n\nYour shipment with the number 221965496 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7487. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221965496\n\nBICARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('002e8680-d01d-4936-8257-4bf9207f78d9','905079358213','Sayın yetkili; MUSA YAMAN adlı müşterinize 745743577 nolu gönderinizin PETRA MASA TAKIMI ürünü 7 parça halinde Fatura adresinizden 08.03.2025 16:33:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('002f5cd8-8d85-4bd9-ab3b-57ef8c0f9ed8','905355928266','Murat Trendyol home adlı müşterinizin 41245861 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL),
('00339068-7e3c-4e77-8c2c-19ba7ede4396','234242762767242','Sayın DİE FABRİK, 223823107 nolu gönderiniz 8115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223823107\n\nDear DİE FABRİK, your shipment with 223823107 was delivered to you with the delivery code 8115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223823107\n\n\nBICARGO','2','12f34352-3245-4b1c-af57-1762c30010cd',NULL),
('0036fd68-c0cf-4ec8-9d98-acad862129f0','905335708965','BİLAL KARROUCH adlı müşterinizin 73598166 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL),
('0037072b-02aa-4d29-a72d-f034a4405aa6','4369919273534','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('0038ac2a-34a6-40a4-9773-34f1fd5f985e','905300961610','GAZEL AĞAÇKIRAN adlı müşterinizin 126908301 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','863a4d29-ce12-4697-a15e-977449f015c7',NULL),
('003a1727-3112-468a-83fc-ea3ef44d00bd','905325000478','Sayın yetkili; Yusuf AYDIN adlı müşterinize 412169316 nolu gönderinizin Mobilya ürünü 20 parça halinde Fatura adresinizden 24.10.2024 12:02:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b6bfea48-486d-4441-a306-788893764967',NULL),
('003a85c8-9be7-43be-b52a-0901e68c95e0','491718076933','478525280 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4682 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478525280\n\nYour shipment with the number 478525280 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4682. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478525280\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('004432a0-9757-4f23-9a03-25fafc599f57','32489166477','221668922 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3302 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221668922\n\nYour shipment with the number 221668922 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3302. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221668922\n\nBICARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('0045b9f2-4253-43b5-be57-10d9530a7844','33652266722','745952430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2328 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745952430\n\nYour shipment with the number 745952430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2328. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745952430\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('0047dd3e-37a0-4661-93bb-6b910b98ea8a','41797024262','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('00572495-2818-45a2-9dfc-9e6e30253dd6','905079358213','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin PETRA DOLAP  ürünü 16 parça halinde MOBİLİSTAN adresinizden 14.03.2025 12:31:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('00579013-ac48-4d97-a980-9925eec0c25a','905368336516','SEMA PALA  adlı müşterinizin 515747086 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('0058d0ee-b982-4505-a3a2-417cc260f8f7','491777224398','Sayın RECEP DAMAR, 745912057 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745912057\n\nDear RECEP DAMAR, your shipment with 745912057 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745912057\n\nBICARGO','1','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL),
('005ac3c1-5490-43ee-9c18-09b1db13bf9f','905304259202','VOLKAN ÖZKAN adlı müşterinizin 478702476 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL),
('0068a661-4ccd-40f9-95bc-c6c036099952','905517075149','Sayın yetkili; DELİL ALGUNERHAN adlı müşterinize 478677262 nolu gönderinizin 180lik bazalı karyola ürünü 8 parça halinde mobilistan adresinizden 15.09.2025 12:53:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('006b1d9f-d33d-4b69-bfc5-cc6d65bbb9a7','5451801422','745124199 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8144 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745124199\n\nYour shipment with the number 745124199 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8144. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745124199\n\nBICARGO','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('007076f1-9b37-4fb9-9150-f0ad1308ddb9','905333221039','Sayın yetkili; HEROLİND PROVATAJ adlı müşterinize 750496630 nolu gönderinizin Aa ürünü 11 parça halinde Fatura adresinizden 15.09.2025 12:04:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('007476ce-851b-46eb-b8f0-f5026610ddec','491629336430','613910788 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1195 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613910788\n\nYour shipment with the number 613910788 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1195. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613910788\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('007515db-fbb3-4b4b-a113-70dc4cbda558','905079358213','NEVİN KIRIK adlı müşterinizin 745638060 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('0077be1e-5fdd-4bfe-aa9d-a2df66812d5c','491783971272','745519015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7387 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745519015\n\nYour shipment with the number 745519015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7387. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745519015\n\nBICARGO','1','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL),
('0078bb22-5395-435c-91b8-7226644cd311','49015231361108','982240405 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982240405\n\nYour shipment with the number 982240405 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982240405\n\nBICARGO','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('007b4916-1ff3-475b-931c-7a1556ef2bb6','4915202016225','Sayın SUAN RASTODER, 486405325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486405325\n\nDear SUAN RASTODER, your shipment with 486405325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486405325\n\nBICARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('007d6c11-c03d-4369-a2e1-02c3b105b320','93788616359','Sayın Ramish mirzayer, 449354047 nolu gönderiniz 8047 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449354047\n\nDear Ramish mirzayer, your shipment with 449354047 was delivered to you with the delivery code 8047. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449354047\n\n\nBICARGO','1','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL),
('008ebee9-4822-4b45-92a8-8f86919a409d','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin EWODA LENS ŞİFONYER AYNALI ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('008f8ce9-c5dc-44eb-8a4f-5eb194518dd2','33661933324','Sayın YILDIZ KILIÇ, 221952785 nolu gönderiniz 1574 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221952785\n\nDear YILDIZ KILIÇ, your shipment with 221952785 was delivered to you with the delivery code 1574. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221952785\n\n\nBICARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('008fb10f-23b2-4de4-9eb3-e6dd97dde080','32487160490','Sayın AHMET OKUTAN, 64415501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64415501\n\nDear AHMET OKUTAN, your shipment with 64415501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64415501\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('0094bfb5-120e-4ae6-946c-205e756d0d6a','33651153601','570899680 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10911 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/570899680\n\nYour shipment with the number 570899680 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10911. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/570899680\n\nBICARGO','1','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL),
('0094dcde-0c38-4302-b597-0e97d0f9d5ee','905079358213','RECEP DAMAR adlı müşterinizin 745912057 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL),
('00956975-4124-4adf-bb6c-212c5eb1e528','491632403021','Sayın GÜLNAZ ATMACA, 976285905 nolu gönderiniz 10886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976285905\n\nDear GÜLNAZ ATMACA, your shipment with 976285905 was delivered to you with the delivery code 10886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976285905\n\n\nBICARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('009b0ea1-cded-47f2-b09b-e5abfa1a60d5','33762279977','Sayın ÖMER METZ, 412647671 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412647671\n\nDear ÖMER METZ, your shipment with 412647671 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412647671\n\nBICARGO','1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL),
('009b28f0-0617-4d0e-bcb9-341944701317','905335511664','Sayın yetkili; SAHİN DİNÇ adlı müşterinize 371514006 nolu gönderinizin masa + sehpa ürünü 2 parça halinde SM Tasarım adresinizden 17.07.2025 11:04:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('009d5d00-0ecf-46a3-a39e-ca9a4be9059f','905539740010','KAM.   TUBA YİLDİRİM adlı müşterinizin 011804405 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('009fbe0e-dbbc-49f4-a68d-534386bfb4e1','905079358213','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin BOHEM 6 KAPILI DOLAP  ürünü 8 parça halinde ACCA adresinizden 27.05.2025 17:18:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('00a0f35c-6963-4328-9020-3996b1e3f224','905431026110','MERVE İÇEN adlı müşterinizin 351330330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('00a35b88-1bf7-4ed7-98ed-524b7006576b','33652341181','Sayın ALİ DİNAR, 47811313 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47811313\n\nDear ALİ DİNAR, your shipment with 47811313 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47811313\n\nBICARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('00a403d0-df45-438c-b76e-6db0f729ad36','01729404068','Sayın HATİCE ÇETİN(K), 644834421 nolu gönderiniz 10089 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644834421\n\nDear HATİCE ÇETİN(K), your shipment with 644834421 was delivered to you with the delivery code 10089. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644834421\n\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('00a4490d-6dc2-4ebc-974e-6c165f6067d1','491742764385','126908301 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5913 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126908301\n\nYour shipment with the number 126908301 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5913. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126908301\n\nBICARGO','1','863a4d29-ce12-4697-a15e-977449f015c7',NULL),
('00a961f7-de0b-45f4-a3ad-dd2294639cd3','33652627588','Sayın ALİ ÇETİN , 982408783 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982408783\n\nDear ALİ ÇETİN , your shipment with 982408783 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982408783\n\nBICARGO','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('00a9ea3b-6a0c-4275-a36c-c9b75767a3bf','31634618099','644106987 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644106987\n\nYour shipment with the number 644106987 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644106987\n\nBICARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('00ae28dd-78e6-4364-8c39-1d3e2bdbf19a','4917661664279','Sayın BURCU ŞİMŞEK, 12752907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12752907\n\nDear BURCU ŞİMŞEK, your shipment with 12752907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/12752907\n\nBICARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('00b06138-b553-429c-83e5-31df98af007a','4917670174690','Sayın KADER KAVAL , 817213476 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817213476\n\nDear KADER KAVAL , your shipment with 817213476 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817213476\n\nBICARGO','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('00b4a383-cf32-455c-a15d-53cadc903ee3','905075277637','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin PİER ÜÇLÜ KANEPE 2 ADET  ürünü 3 parça halinde NAHİTA SOFA  adresinizden 25.07.2025 12:03:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('00b4a608-3449-4d35-ace9-22cbcea72aa7','33782338105','Sayın SEBAHAT KOÇAK, 428761245 nolu gönderiniz 3418 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428761245\n\nDear SEBAHAT KOÇAK, your shipment with 428761245 was delivered to you with the delivery code 3418. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428761245\n\n\nBICARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('00b4e70b-877f-43ef-830b-2ef8dea6aeb3','905078062550','MELİSSA KARACAKAYA adlı müşterinizin 598961911 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('00ba0652-1932-44a2-9faf-2dbc71d855b2','33680380408','Sayın SEZER DOĞAN, 338474620 nolu gönderiniz 10538 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338474620\n\nDear SEZER DOĞAN, your shipment with 338474620 was delivered to you with the delivery code 10538. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338474620\n\n\nBICARGO','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('00bb0584-5818-4d25-bd2f-e7d08ac9e985','4915753005551','Sayın NİSRİN GHARİB HASSAN , 817747938 nolu gönderiniz 10408 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817747938\n\nDear NİSRİN GHARİB HASSAN , your shipment with 817747938 was delivered to you with the delivery code 10408. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817747938\n\n\nBICARGO','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('00bdca33-1fa5-4382-8523-e44d82130d90','32467686443','Sayın NEVİN KIRIK, 745638060 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745638060\n\nDear NEVİN KIRIK, your shipment with 745638060 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745638060\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('00c548b2-67d2-4821-9217-0f42cffaeff4','905365908694','DİE FABRİK adlı müşterinizin 223823107 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','12f34352-3245-4b1c-af57-1762c30010cd',NULL),
('00c94c7a-36a5-4ef2-96a2-5f10f7b7a80b','905313340045','Sayın yetkili; HANİFE TURAN adlı müşterinize 437355925 nolu gönderinizin Kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 03.09.2025 17:35:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('00ce8a48-ae62-42f4-bb2f-5175305d56e5','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614969446 nolu gönderinizin SSH KRİSTAL ORTA SEHPA ÜST TABLA  ürünü 1 parça halinde ŞAHİNLER  adresinizden 03.12.2024 15:07:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('00d0706e-c88d-4a28-817f-c5ba89aeebfd','905423036885','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('00d2d42b-07bd-4ba5-a40b-b737b4ce5897','905331602195','Sayın yetkili; NURGÜL ÖZER adlı müşterinize 221191139 nolu gönderinizin 100 çap açılır marmo masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 14:39:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('00d6bb4a-c327-48fa-a653-7d4f9c99ebd3','4915144166539','Sayın KÖKSAL ÇELİK, 428991499 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428991499\n\nDear KÖKSAL ÇELİK, your shipment with 428991499 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428991499\n\nBICARGO','1','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL),
('00d946ba-421e-4b14-b9c4-f580486f0ca6','4915773625355','Sayın MERVE DEĞİRMENCİ, 371665826 nolu gönderiniz 2623 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371665826\n\nDear MERVE DEĞİRMENCİ, your shipment with 371665826 was delivered to you with the delivery code 2623. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371665826\n\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('00d98fca-e216-4bdd-a470-1e4604975d76','491788204430','Sayın SAHDİYE BİSKİN, 614707427 nolu gönderiniz 1237 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614707427\n\nDear SAHDİYE BİSKİN, your shipment with 614707427 was delivered to you with the delivery code 1237. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614707427\n\n\nBICARGO','1','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL),
('00d9cda4-5427-458a-b410-a817c9e14a64','905331602195','Sayın yetkili; BURCU GELİR  adlı müşterinize 221461818 nolu gönderinizin 80x60x45 Traverten sehpa seti ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:30:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('00dc0d09-9e04-4dce-92a5-bb4828011c50','905331602195','Sayın yetkili; MERVE KORKMAZYUREK adlı müşterinize 221511033 nolu gönderinizin 90*190 Traverten masa  ürünü 1 parça halinde Fatura adresinizden 10.12.2024 16:46:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('00dd08b9-a56c-4d9a-b012-f16607e39ec1','905461661672','Sayın yetkili; RUKİYE BARUT adlı müşterinize 644626371 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde RESTTİME KOLTUK adresinizden 07.05.2025 17:33:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('00e13b27-4b54-4e8f-b48b-3eac87217557','905461661672','İSA ALTUNER(K) adlı müşterinizin 644422105 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('00e16d70-fbe5-4bbd-890e-4133dfe9d531','905532675926','GÖNÜL GİDER adlı müşterinizin 428671806 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('00e4be40-af5f-436f-80ce-4e99c9f1a6fe','491725466785','İletişim \n					Şöför Uğur Acar +905424435917','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('00e4f59a-8389-4f18-964c-393067bfdcd1','905454259202','Sayın yetkili; NURCAN MANSUR adlı müşterinize 478438901 nolu gönderinizin 1 adet sandalye ayağı ssh ürünü 1 parça halinde Fatura adresinizden 27.03.2025 16:44:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('00efd3b9-bb08-4313-a025-da724f0a682e','43699171115387','478168461 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6650 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478168461\n\nYour shipment with the number 478168461 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6650. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478168461\n\nBICARGO','2','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('00f1bdf6-162c-4285-8bf4-f1c3a9844163','905313340045','MEO JONATHON SSH adlı müşterinizin 437124353 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('00f3e524-1960-41df-b2c4-8e218bd33f8a','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437170354 nolu gönderinizin Masa üstü SSH ürünü 1 parça halinde masami adresinizden 13.10.2025 14:16:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8',NULL),
('00f50e5c-e65d-4acc-9756-076b05cc22fa','41793837824','Sayın ENES TAHİRİ, 613803170 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613803170\n\nDear ENES TAHİRİ, your shipment with 613803170 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613803170\n\nBICARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('00f75d68-509d-4496-8816-f7a4b81b7c68','4915172036890','Sayın ZELİHA AKCAN, 910120533 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910120533\n\nDear ZELİHA AKCAN, your shipment with 910120533 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910120533\n\nBICARGO','1','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL),
('00f7ca76-4dcd-4dad-9f56-6b303b2481aa','905078062550','Sayın yetkili; MUSTAFA KELEŞ adlı müşterinize 598263441 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 27.08.2025 15:05:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('00fdf896-d5af-41bf-814f-407822f4f2af','905461661672','HÜSEYİN ÇELEBİ adlı müşterinizin 644576493 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('01039c98-8f98-41c3-aa29-a8194753012a','905054335859','Sayın yetkili; TEKİN MAZLUM adlı müşterinize 501872546 nolu gönderinizin SEHPA ürünü 1 parça halinde Fatura adresinizden 27.12.2024 15:59:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('01051127-5ad5-4fa7-9edd-8f902fe8c763','905075277637','SEDAT ÇİFÇİ  adlı müşterinizin 745538897 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('0106b3bc-430f-43aa-b98d-b0039a88eeb9','905313340045','ESRA KAYA adlı müşterinizin 437514624 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('010a4fdb-2ec5-4d98-b892-4c1e78c01416','905350617509','Sayın yetkili; SAUDİN CURİC adlı müşterinize 613745862 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 30.07.2025 14:38:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8',NULL),
('010b4638-cb9d-4cb6-9eba-91131a492073','905078062550','BORAN ALBAYRAK adlı müşterinizin 598668612 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('010f9ce9-867b-41b0-b9ae-3fe1657579fd','5325000478','Sayın ERDOĞAN ERDOĞAN, 22.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9138684\nŞifre : 9138684\n			\nBİCARGO','1',NULL,'d9ee13db-868d-4d90-927a-35ef1d4ba092'),
('011458b5-1960-4979-94f9-298c40f68b82','32472247513','Sayın FURKAN KAYABAŞ, 221631052 nolu gönderiniz 9200 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221631052\n\nDear FURKAN KAYABAŞ, your shipment with 221631052 was delivered to you with the delivery code 9200. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221631052\n\n\nBICARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('011776a4-1a1e-4cc9-90f4-d4fd0a8cb2a7','905530309780','SİNGH PERWİNDEJİT adlı müşterinizin 418120869 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('0117d966-7310-4009-acf4-e3b1bf60371d','41799232324','Sayın HAKAN ŞİMŞEK, 47889024 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47889024\n\nDear HAKAN ŞİMŞEK, your shipment with 47889024 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47889024\n\nBICARGO','1','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL),
('011c1860-67a8-4dc1-b9ac-184ef1d461f7','41768446429','Sayın JAFARİ SAYED OMİD, 449448008 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449448008\n\nDear JAFARİ SAYED OMİD, your shipment with 449448008 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449448008\n\nBICARGO','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('011cc5fc-b095-4ab9-af6f-a1f0ded3e9e3','905331602195','Sayın yetkili; NURGÜL ÖZER adlı müşterinize 221191139 nolu gönderinizin Sydnei sandalye ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.09.2025 17:48:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('0121657a-8358-4d44-a0c8-2bbdac17e35f','905436605051','HELENA GÖKKAYA adlı müşterinizin 150685221 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('0122cee9-2b70-4a42-b431-d0fa7b341a97','436766833448','DRİVER\n					ADNAN\n+905354622027','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('01261c57-e830-45bf-844e-acf0c48a0db5','905461661672','Sayın yetkili; SELİN ÖZALP adlı müşterinize 644615727 nolu gönderinizin TRAVERTEN MASA VE SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 21.04.2025 10:50:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('01278d8c-1714-414c-83e6-ebf66f1cfab1','905336367828','AYHAN AKTAŞ  adlı müşterinizin 982685222 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('012b4f4d-4b7e-4b0a-873b-ce6cd9a94056','4917632881676','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('01336af3-c01b-4e60-a173-9a49ae51ed87','905335511664','LYUDMİLA KORUNOVSKA adlı müşterinizin 371121937 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('0134489a-e787-4d0d-acb4-85e24c6c9c34','33333333333333','Sayın ERCAN GÜLER, 735121904 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735121904\n\nDear ERCAN GÜLER, your shipment with 735121904 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735121904\n\nBICARGO','2','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL),
('0135c255-f85d-497e-93f4-dd768d13d586','4915758009049','Sayın MUSTAFA IBRYAMOV, 745907299 nolu gönderiniz 7871 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745907299\n\nDear MUSTAFA IBRYAMOV, your shipment with 745907299 was delivered to you with the delivery code 7871. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745907299\n\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('0136b809-e046-4dd9-8385-549566c530af','5466167473','Sayın SALİH DURAK, 428718727 nolu gönderiniz 9428 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428718727\n\nDear SALİH DURAK, your shipment with 428718727 was delivered to you with the delivery code 9428. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428718727\n\n\nBICARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('0137bdd2-dd67-47d1-9ee8-a86fa7436715','4915152091392','Sayın RAMAZAN KAYHAN SSH, 478885112 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478885112\n\nDear RAMAZAN KAYHAN SSH, your shipment with 478885112 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478885112\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('0141673e-4037-4831-922e-a4e4b9a50093','491723174389','613528305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8870 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613528305\n\nYour shipment with the number 613528305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8870. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613528305\n\nBICARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('0141ad48-725d-41f7-83e3-3036f2370335','905331602195','Sayın yetkili; M.CEDRİC KLEINDIENST adlı müşterinize 221850151 nolu gönderinizin 80x60x45 sehpa set ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:06:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('0144cbaa-3793-4a1c-8bdb-5208b1f2f0f0','436609968921','Sayın RASİM OZAN, 437642214 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437642214\n\nDear RASİM OZAN, your shipment with 437642214 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437642214\n\nBICARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('0145c056-349d-45d9-b25f-aa2a2f5b9711','33685686692','Sayın MURAT KALKAN, 478520504 nolu gönderiniz 1915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478520504\n\nDear MURAT KALKAN, your shipment with 478520504 was delivered to you with the delivery code 1915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478520504\n\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('0145dbce-06fa-415d-a4f8-ad1d3fec9f42','491514786908','910717262 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910717262\n\nYour shipment with the number 910717262 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910717262\n\nBICARGO','2','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('014a0e81-b3e8-4897-acdd-19e2611858dd','905349208933','Sayın yetkili; ALESSANDRA ALTAVİLLA adlı müşterinize 127343940 nolu gönderinizin kartela ve ölçü panosu VE AYAK ürünü 3 parça halinde Fatura adresinizden 23.02.2025 15:13:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('014f90d6-bfe1-4c80-aca8-96e268039597','905327099916','FEYZULLAH ALTEKİN adlı müşterinizin 959513288 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a9e92a4f-2e0c-410b-8783-a6088e15e8db',NULL),
('0153bbd1-3316-41fe-b8e2-2553441990b5','905454259202','HALİL ÖZDEMİR adlı müşterinizin 478138166 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('0157b5ce-98fb-4df1-bb50-7e528bc5b211','33652632895','İletişim \n					Şöför Uğur Acar +905424435917','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('015cb892-8d84-47ee-b1e0-66d26a85e426','905356395415','MURAT BEY adlı müşterinizin 16334418 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83fe2028-17f9-4b82-a141-f935042a08dd',NULL),
('016044a2-d26b-4794-b7f8-5bfd3ddb68f0','491779772088','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644771270\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('0164e8be-f7c6-4f30-9a1d-c29ca08466a1','41793101768','Sayın CEM TOPYÜREK, 53111592 nolu gönderiniz 2430 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/53111592\n\nDear CEM TOPYÜREK, your shipment with 53111592 was delivered to you with the delivery code 2430. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/53111592\n\n\nBICARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('016681e4-c56c-4cb3-8087-aaa53f4ea42b','491728410943','Sayın GÜLSÜM ÖZBAY DÜZGÜN, 910825747 nolu gönderiniz 9166 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910825747\n\nDear GÜLSÜM ÖZBAY DÜZGÜN, your shipment with 910825747 was delivered to you with the delivery code 9166. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910825747\n\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('016788f4-633f-449f-a996-b55feeef56f5','31614851530','Sayın AYSUN ELİBÜYÜK, 478273603 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478273603\n\nDear AYSUN ELİBÜYÜK, your shipment with 478273603 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478273603\n\nBICARGO','2','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('0168dd7c-fc7f-49e1-9d19-0d16c48ea8ba','','412741555 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412741555\n\nYour shipment with the number 412741555 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412741555\n\nBICARGO','2','3cbb1188-1698-4b6e-bd28-06d238414388',NULL),
('016a54e1-09aa-43d4-b861-e86df34b2a27','905454259202','MAHMUT KAYA adlı müşterinizin 478705604 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('016d6ac3-a6ff-4a2f-8490-ea6d29baa42f','4917656342150','910995300 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910995300\n\nYour shipment with the number 910995300 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910995300\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('01727f20-d9e2-41a8-9a58-ee6e2b126634','4915222621206','Sayın SELÇUK SÖNMEZ, 371183095 nolu gönderiniz 3562 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371183095\n\nDear SELÇUK SÖNMEZ, your shipment with 371183095 was delivered to you with the delivery code 3562. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371183095\n\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('0172e634-db3c-4b08-af44-a6d67a2b868f','905510396989','ÖMER ALİ ALKAN adlı müşterinizin 319897198 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL),
('017351a8-f31a-44dd-983f-d7f44f726fd0','905363385813','GÜLCAN AYDIN adlı müşterinizin 976942444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('01769a46-f6d6-4aab-977f-d4d05f8c0bbb','004917616377875','Sayın PARWEZ MOHAMMADİ, 248694668 nolu gönderiniz 3182 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248694668\n\nDear PARWEZ MOHAMMADİ, your shipment with 248694668 was delivered to you with the delivery code 3182. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248694668\n\n\nBICARGO','2','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL),
('0177a9a6-3400-4a5d-ad5d-1d4ee87e1614','491788354147','Sayın MÜZEYYEN TEYMUROĞLU, 478677950 nolu gönderiniz 8594 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478677950\n\nDear MÜZEYYEN TEYMUROĞLU, your shipment with 478677950 was delivered to you with the delivery code 8594. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478677950\n\n\nBICARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('01782a2b-d985-46bd-8d2e-9a9474633f84','4917656525814','Sayın İBRAHİM BAĞCI SSH, 745983500 nolu gönderiniz 4181 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745983500\n\nDear İBRAHİM BAĞCI SSH, your shipment with 745983500 was delivered to you with the delivery code 4181. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745983500\n\n\nBICARGO','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('017a0a55-14fe-46b6-98d4-db7cd22d1f8c','905331602195','Sayın yetkili; MÜKREMİN GÜNDOĞDU adlı müşterinize 221584314 nolu gönderinizin Natura sandalye siyah ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.09.2025 13:45:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','25d12410-c8e7-490e-98e0-9ef0a0d9272d',NULL),
('017c2f40-e2b4-4953-93b0-7ca8b09b1904','905335708965',' adlı müşterinizin 24889830 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c37ec40-77c6-4885-995d-696850992a10',NULL),
('0181faf9-758a-48f2-b8c9-f15b8b33f6e2','4917639148019','Sayın MUSTAFA DÜNDAR, 91030681 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91030681\n\nDear MUSTAFA DÜNDAR, your shipment with 91030681 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91030681\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('0182a172-e9ca-4e3b-8f29-d7e970754e14','905336367828','VEBİ DZELLİ adlı müşterinizin 98222656 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df564c56-1964-45d7-946b-9c1121729fa8',NULL),
('01831696-2ca1-43e2-a829-f0a268e08b19','905461661672','Sayın yetkili; AMAL EL JABBARİ adlı müşterinize 644789157 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 25.03.2025 12:19:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('0188c37e-bd3c-4bc8-b576-b2b27a29cb6e','905461661672','KAMER DUHAN ECE(K) adlı müşterinizin 644651781 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('018c8481-9430-4502-981d-09fabf8c0458','4915776361097','Sayın MUHAMMED PERVANE , 644531622 nolu gönderiniz 4345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644531622\n\nDear MUHAMMED PERVANE , your shipment with 644531622 was delivered to you with the delivery code 4345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644531622\n\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('018eabd3-c639-4a83-b87f-028542201aba','905335511664','DERYA BAYRAK adlı müşterinizin 371180149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('01901a96-185c-4b4f-bd05-3dbf3074979b','905350617509','ENES TAHİRİ adlı müşterinizin 613803170 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('0191b9fc-5c6d-4f86-a56b-858fc3be7e72','31685871414','Sayın EZGİ BAŞARAN, 858210128 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858210128\n\nDear EZGİ BAŞARAN, your shipment with 858210128 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858210128\n\nBICARGO','1','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL),
('01966531-14b4-45ca-b6e8-fb608fc20f0c','905304259202','Sayın yetkili; DİLAVER ULUTAŞ adlı müşterinize 478670997 nolu gönderinizin SSH CAM ürünü 2 parça halinde çelikbey inegöl depo adresinizden 29.11.2024 16:16:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('019c7f39-2d8e-4345-832f-84e80a61b318','905079358213','İBRAHİM BAĞCI 1 adlı müşterinizin 745832267 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','1ad43916-6b71-4844-8c13-9ae4882c08fd',NULL),
('019f51bd-fd66-4195-aa3a-fa011cb6a430','330766449064','644776565 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5205 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644776565\n\nYour shipment with the number 644776565 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5205. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644776565\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('01a37e3a-295f-4aaa-940d-5d953795561e','905335511664','SELÇUK SÖNMEZ adlı müşterinizin 371183095 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('01a81c75-5bfd-46f5-8453-2ef0679048ae','491634257044','Sayın ŞÜKRÜ AKSOY, 428930069 nolu gönderiniz 2030 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428930069\n\nDear ŞÜKRÜ AKSOY, your shipment with 428930069 was delivered to you with the delivery code 2030. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428930069\n\n\nBICARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('01ab60ef-9f17-4e61-bc29-55d531bb4c06','905075277637','DENİZ ŞİMŞEK adlı müşterinizin 745824761 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('01ab90f6-8ed3-4d52-b240-2e40feaa6291','905454259202','MEHMET ÖZKAN adlı müşterinizin 478794904 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('01ad0cf2-58dc-4b32-a97d-e4f3c82f466e','33614945585','Sayın KÜRŞAT OKUTAN, 644377360 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377360\n\nDear KÜRŞAT OKUTAN, your shipment with 644377360 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644377360\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('01af0b1b-a4eb-4563-a2b1-50663671f651','491749634049','Sayın BİRSEN KARADAVUT, 478833375 nolu gönderiniz 8069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478833375\n\nDear BİRSEN KARADAVUT, your shipment with 478833375 was delivered to you with the delivery code 8069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478833375\n\n\nBICARGO','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('01b2285f-76b0-4661-a260-4dd94a8a3d91','41764331829','Sayın NURCAN DOLDUR, 478223658 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478223658\n\nDear NURCAN DOLDUR, your shipment with 478223658 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478223658\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('01b8add6-f659-4c5c-984f-8aedcb3f7047','905078062550','Sayın yetkili; CEMİLE VE HÜSEYİN ŞAHİN adlı müşterinize 598697614 nolu gönderinizin KONSOL ürünü 3 parça halinde LEXUS METİN adresinizden 10.10.2025 12:01:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d3e4434c-1317-4092-aed5-8cc884ab1ae7',NULL),
('01bbfec4-2225-4a80-bf97-85adbf62423f','4915753617776','Sayın MAHRİCAN DERİN, 501848451 nolu gönderiniz 7646 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501848451\n\nDear MAHRİCAN DERİN, your shipment with 501848451 was delivered to you with the delivery code 7646. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501848451\n\n\nBICARGO','1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL),
('01bcc81c-fd2b-4474-b868-91115341e705','031681694818','412679110 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412679110\n\nYour shipment with the number 412679110 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412679110\n\nBICARGO','2','d25fd827-385a-48f1-8993-4f48129b3530',NULL),
('01be0036-0098-485d-9e22-3317042770a3','4917672226001','Sayın GÖKHAN ZÜRLÜER, 598157006 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598157006\n\nDear GÖKHAN ZÜRLÜER, your shipment with 598157006 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598157006\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('01bfe281-b01e-41c9-be1f-776a54151ac3','4917672239456','Sayın BERKANT YAŞA, 745717474 nolu gönderiniz 5924 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745717474\n\nDear BERKANT YAŞA, your shipment with 745717474 was delivered to you with the delivery code 5924. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745717474\n\n\nBICARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('01c26acf-db9e-4a9e-9a19-8d4a7012919b','905079047428','HUSNA ISHAGZAİ adlı müşterinizin 44926965 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL),
('01c2cd95-78ff-4d70-8914-6ad153d92ee6','905331602195','MURAT CENGİZ  adlı müşterinizin 221186271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('01c69b05-d27c-45be-9e7f-b0d560779f94','905335511664','Sayın yetkili; SEMİH TÜRKOĞLU adlı müşterinize 371696812 nolu gönderinizin keramik masa + sehpa ürünü 9 parça halinde Seramik Masa Üreticisi adresinizden 03.10.2025 18:09:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('01ca7817-09f2-4799-9d63-811a6c075b9c','905331602195','Sayın yetkili; PINAR ÇİÇEK adlı müşterinize 221970338 nolu gönderinizin 90*180 cm MASA ürünü 3 parça halinde Fatura adresinizden 13.01.2025 10:18:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('01caeb8f-0777-4581-a79b-89fbe6fe9ed8','436601666895','Sayın TAHSİN AKSOY, 644716997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644716997\n\nDear TAHSİN AKSOY, your shipment with 644716997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644716997\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('01cf3937-6910-40f4-9f4f-5f5df7561728','905461661672','HAKİF ZİNAL SSH adlı müşterinizin 644391223 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('01d23409-88f5-439c-a76d-820116f0f9fc','905336367828','AYHAN AKTAŞ  adlı müşterinizin 982685222 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('01d27e8b-b91a-4627-8bdc-bcd5b785ef00','004915202033588','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('01d54771-ba5d-49ac-9a08-da6a9c8cd93f','905304259202','BELKIS DUMAN adlı müşterinizin 478662278 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('01df8447-2e69-414c-95ea-3b45c39b9989','4915222634759','Sayın MEHMET GÖK, 613420026 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613420026\n\nDear MEHMET GÖK, your shipment with 613420026 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613420026\n\nBICARGO','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('01f1443d-ffb0-4b8d-a226-cbe10455ce72','905335708965','KEREM TOGAY adlı müşterinizin 735792949 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL),
('01f3791f-35d3-45b6-b590-52c601287263','4917449179710','Sayın MUSTAFA KELEŞ, 598263441 nolu gönderiniz 3087 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598263441\n\nDear MUSTAFA KELEŞ, your shipment with 598263441 was delivered to you with the delivery code 3087. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598263441\n\n\nBICARGO','2','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('01f3e018-3bd5-4c8e-8f6f-bfe22ec359e1','491636216129','Sayın ALİ AKKAN, 43725194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43725194\n\nDear ALİ AKKAN, your shipment with 43725194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43725194\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('01f928ec-ff6f-4b9a-b224-dd868e031333','33749069844','Sayın MUHAMMET ENES KILIÇ, 478609228 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478609228\n\nDear MUHAMMET ENES KILIÇ, your shipment with 478609228 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478609228\n\nBICARGO','1',NULL,NULL),
('01f94476-37ce-4c5b-add2-52fab493c2b9','436603605379','019113818 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2906 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019113818\n\nYour shipment with the number 019113818 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2906. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/019113818\n\nBICARGO','1','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('01fbd5d2-94c5-4a60-bd17-6e92ba72a5f1','33650469375','Sayın KÜRŞAT OKUTAN, 644377360 nolu gönderiniz 10356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644377360\n\nDear KÜRŞAT OKUTAN, your shipment with 644377360 was delivered to you with the delivery code 10356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644377360\n\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('0206dc4d-2dd8-4666-a133-9d3f54638605','33669711120','478370539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3413 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478370539\n\nYour shipment with the number 478370539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3413. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478370539\n\nBICARGO','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('02088112-a648-429d-bdb2-7f2ebdcf99f9','491744167777','644721676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3436 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644721676\n\nYour shipment with the number 644721676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3436. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644721676\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('0211e049-69ee-4038-8cc9-7dc454e9815e','905079047428','SERHAT ERDOĞMUŞ adlı müşterinizin 449558519 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('0213a386-4bd2-4211-9dff-249b8c71bb5a','905517075149','Sayın yetkili; İLKAY İNCE adlı müşterinize 478485864 nolu gönderinizin 160+100+100 YATAKLAR ürünü 6 parça halinde Fatura adresinizden 24.10.2025 18:12:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5552132e-e408-47bc-ab37-19083b622454',NULL),
('02223ff9-bc9d-45d3-ae39-1e130b25fbcc','306974560448','982431907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6912 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982431907\n\nYour shipment with the number 982431907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6912. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982431907\n\nBICARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('02234774-a776-4375-ba8e-446840ef00a9','41763265325','126245978 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9087 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126245978\n\nYour shipment with the number 126245978 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9087. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126245978\n\nBICARGO','1','05161621-4074-4395-a4ac-b594dfcce0f9',NULL),
('0224c457-c8f3-4eea-8aaf-af0a59558a7c','33768365488','Sayın ÖZLEM ŞEKERCİ		, 910884465 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910884465\n\nDear ÖZLEM ŞEKERCİ		, your shipment with 910884465 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910884465\n\nBICARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('02252821-6b0b-4553-b51d-4797ceee5ae3','905059175469','ESMERAY ÇOBAN adlı müşterinizin 428633070 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('02260ff6-98b0-49c9-938c-b3b4aba95280','491781975056','478261120 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6759 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478261120\n\nYour shipment with the number 478261120 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6759. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478261120\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('0226a074-d773-46b6-ba28-1b3559a48830','905079358213','Sayın yetkili; MEHMET KIRMALI adlı müşterinize 745471905 nolu gönderinizin HALI ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:25:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('022b5c95-1657-449d-888a-f8783b812cd0','905075277637','MEHMET ŞAFAK adlı müşterinizin 745303298 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL),
('022bdfe7-47ac-4562-a6d9-c18c930c3664','905389543828','ŞİRİN BALCIN adlı müşterinizin 486181220 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('022d6eeb-6595-48aa-b32d-fc0d66e7552d','33782338105','İletişim \n					Halil Bey (Şoför) :+905541100849','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('0234cd69-dfb0-4720-80ee-7449be6ac24e','4917661141685','Sayın ZEHRA AŞIK, 478243785 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478243785\n\nDear ZEHRA AŞIK, your shipment with 478243785 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478243785\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('02368363-b746-4993-a2b9-378791b54a21','905335511664','Sayın yetkili; FATİME YILMAZ adlı müşterinize 371626943 nolu gönderinizin 2 adet kanepe ürünü 2 parça halinde Elitis Home adresinizden 14.05.2025 11:01:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('02386e68-d646-4a58-9fb4-e4e22269bd19','330667702698','982773684 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982773684\n\nYour shipment with the number 982773684 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982773684\n\nBICARGO','1','98c40a46-22d8-4470-84a1-302a19073f0d',NULL),
('023c08b8-a926-42c4-9d1c-7010325efd32','4915152091392','Sayın SÜLEYMAN KAYHAN, 478763903 nolu gönderiniz 10714 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478763903\n\nDear SÜLEYMAN KAYHAN, your shipment with 478763903 was delivered to you with the delivery code 10714. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478763903\n\n\nBICARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('02436674-d07a-46d5-9a79-4ec6ab20b207','905075277637','KENAN BAYAR SSH  adlı müşterinizin 745101735 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('02472380-2e42-4343-8a27-ebe9798df84b','4915115356238','Sayın GÜLDEN KARADAĞ, 745291553 nolu gönderiniz 9305 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745291553\n\nDear GÜLDEN KARADAĞ, your shipment with 745291553 was delivered to you with the delivery code 9305. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745291553\n\n\nBICARGO','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('024bf1d3-529d-4717-9955-4c75784d4059','33614945585','Sayın KÜRŞAT OKUTAN, 644377360 nolu gönderiniz 10356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644377360\n\nDear KÜRŞAT OKUTAN, your shipment with 644377360 was delivered to you with the delivery code 10356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644377360\n\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('024c98ef-17e7-41d6-9497-181ee8375d62','004917632525030','Sayın ZEHRA, 817918521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817918521\n\nDear ZEHRA, your shipment with 817918521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817918521\n\nBICARGO','2','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('024de625-decb-4688-938e-920dbb75a1ec','905078062550','Sayın yetkili; İBRAHİM GEYİK adlı müşterinize 598967733 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 11.09.2025 15:59:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ddba844-a989-499f-a6a5-be77dd52ea3a',NULL),
('02547e00-043b-4480-a528-5a67c81379fe','491728496024','Sayın KAAN ALTINSOY, 437591433 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437591433\n\nDear KAAN ALTINSOY, your shipment with 437591433 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437591433\n\nBICARGO','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('025772fa-bf81-4b8d-a817-ecff47fc3ef3','31631493312','Sayın SİBEL OĞUZ, 750951041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750951041\n\nDear SİBEL OĞUZ, your shipment with 750951041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750951041\n\nBICARGO','1','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL),
('0257f9d5-e0de-4738-bb64-713df0fbee00','32483716814','Sayın GURAY SEYFELİ, 221390997 nolu gönderiniz 9013 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221390997\n\nDear GURAY SEYFELİ, your shipment with 221390997 was delivered to you with the delivery code 9013. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221390997\n\n\nBICARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('0258d412-8d18-4ee6-9087-851af7722c98','436609537403','Sayın FARZANA SEDİGHİ, 982691264 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982691264\n\nDear FARZANA SEDİGHİ, your shipment with 982691264 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982691264\n\nBICARGO','1','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL),
('025ca6de-4e8b-4210-8f4e-c9541ac34ebc','33768384960','478502129 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478502129\n\nYour shipment with the number 478502129 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478502129\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('0261d0be-62dd-4842-8c5d-397ba4a0dd26','33632522248','412722649 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9936 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412722649\n\nYour shipment with the number 412722649 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9936. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412722649\n\nBICARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('0268c286-dbe4-411f-854a-df93bb323c05','32483028074','Sayın YUSUF TÜRKGELDİ, 478537954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478537954\n\nDear YUSUF TÜRKGELDİ, your shipment with 478537954 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478537954\n\nBICARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('026d3ca2-07ad-4651-98ae-6fa4b7ab7e00','49171241720','478545295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9770 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478545295\n\nYour shipment with the number 478545295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9770. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478545295\n\nBICARGO','2','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('026d6486-dbe9-4f7b-b271-eb875c7bf91b','905454259202','İREM AKÇORA adlı müşterinizin 478930985 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('0278233c-df92-4df3-91ab-8e0c711f0965','905451571652','Sayın yetkili; SALAM KORKMAZ adlı müşterinize 531445058 nolu gönderinizin Masa ürünü 3 parça halinde BİFURNİ adresinizden 16.07.2025 17:48:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('027ca73b-5235-472d-90fa-301afb119843','491637771977','Sayın YASEMİN MUTLU, 598131456 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598131456\n\nDear YASEMİN MUTLU, your shipment with 598131456 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598131456\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('027ce464-bdd6-4a3a-b32c-1c83173c931d','4915206102072','454592303 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7492 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/454592303\n\nYour shipment with the number 454592303 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7492. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/454592303\n\nBICARGO','1','b659a388-1c45-405b-a478-fa4eb2398376',NULL),
('027f6c8d-2726-4272-b1f9-3c28043857b8','905301592882','MUSTAFA DÜNDAR adlı müşterinizin 91030681 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('0280bd09-f39c-4137-b1e3-2a3aa060e228','4917631430152','613262202 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7006 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613262202\n\nYour shipment with the number 613262202 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7006. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613262202\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('02872064-6075-4b12-9d7f-da372098328e','905454259202','MUSTAFA ÜNLÜSOY adlı müşterinizin 478318204 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL),
('028b134e-f95e-423b-bc4f-fb4c5833c710','905325165070','Sayın yetkili; Erkan ÖZKÖKKAYA adlı müşterinize 734788911 nolu gönderinizin WOOD Üçlü Koltuk ürünü 2 parça halinde SOOVHOME adresinizden 13.11.2024 16:57:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('028c7fe6-fb9b-423a-8895-05ac58386709','4368120902265','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('029b89a2-351d-47c4-8584-6f846f8c1605','4915739434455','Sayın ESRA MAT(K), 644484322 nolu gönderiniz 6567 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644484322\n\nDear ESRA MAT(K), your shipment with 644484322 was delivered to you with the delivery code 6567. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644484322\n\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('02a18a0d-3f68-43c8-b96d-1123c10e23c3','905335511664','Sayın yetkili; MAGDALENA DELİJANOVA adlı müşterinize 371521572 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 08.05.2025 14:47:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('02a4faee-f7c0-4c5d-810f-4720ea7790f8','33767355660','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('02a56fb0-80bd-4ce6-bef3-e2080b0e5cf5','31687655114','Sayın AYSEL KARABULUT, 449454395 nolu gönderiniz 5050 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449454395\n\nDear AYSEL KARABULUT, your shipment with 449454395 was delivered to you with the delivery code 5050. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449454395\n\n\nBICARGO','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('02a847b7-dcfb-451d-9b6d-8776d84acd3e','4847477382939394','Sayın CAVİT , 412129107 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412129107\n\nDear CAVİT , your shipment with 412129107 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412129107\n\nBICARGO','2','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('02aa08c0-1e8c-4e10-8e44-e93127a54e74','905442774505','ONUR AKDAĞ adlı müşterinizin 65722132 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('02aa4024-0e47-477b-b238-1d97037a7da2','491723845058','Sayın ENGİN POSETLERDEN KALAN KUTU , 248188933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248188933\n\nDear ENGİN POSETLERDEN KALAN KUTU , your shipment with 248188933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248188933\n\nBICARGO','1','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL),
('02ad9e5f-b5ab-4468-b020-9468eb227673','41764518719','221693523 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9187 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221693523\n\nYour shipment with the number 221693523 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9187. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221693523\n\nBICARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('02b459ad-93e1-4743-a53f-971bd24764fc','491625968428','644334455 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2868 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644334455\n\nYour shipment with the number 644334455 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2868. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644334455\n\nBICARGO','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('02b7a460-de0d-4ab7-85d4-66165ad1a4b7','4917662149337','644243216 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644243216\n\nYour shipment with the number 644243216 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644243216\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('02ba6b5e-37f4-4a80-8186-f749fdf6d00d','0000000000000000','Sayın ESKİŞEHİR, 412289507 nolu gönderiniz 2884 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412289507\n\nDear ESKİŞEHİR, your shipment with 412289507 was delivered to you with the delivery code 2884. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412289507\n\n\nBICARGO','2','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL),
('02bf96d9-b152-4507-9b8d-7838d7d0343f','033641874047','Sayın HATİCE BOZKURT, 734627626 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734627626\n\nDear HATİCE BOZKURT, your shipment with 734627626 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734627626\n\nBICARGO','2','8c3b10ad-bfb3-4939-a407-5ebb29115ccb',NULL),
('02c1ad0d-4bae-49e4-a0cb-54f4de9309ad','905443955915','İRFAN MUTLU adlı müşterinizin 614390628 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL),
('02c4163c-9469-4e45-b4ee-0813c94541f7','905079047428','HACI ULUDAĞ adlı müşterinizin 449898615 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4201089d-4123-423c-809e-645e609e8e0a',NULL),
('02c606fb-71e8-4c5e-8d3b-4f3eb9da7e6e','4917683277906','248173138 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6030 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248173138\n\nYour shipment with the number 248173138 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6030. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248173138\n\nBICARGO','1','fdd68378-14a3-446e-acd4-64b7634a5689',NULL),
('02c7855b-1bb7-46cd-93ec-428a46bc16be','905079358213','RABEB HOCQUARD adlı müşterinizin 74541057 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('02c96f29-fe6b-4f0c-976a-02d010748aa2','4917621560869','Sayın LEYLA AYDIN, 31951233 nolu gönderiniz 5527 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31951233\n\nDear LEYLA AYDIN, your shipment with 31951233 was delivered to you with the delivery code 5527. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31951233\n\n\nBICARGO','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('02cd1346-25e7-40e0-a55e-8df6d5bf67a9','905356503956','Sayın ELA SARL, 412316933 nolu gönderiniz 3156 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412316933\n\nDear ELA SARL, your shipment with 412316933 was delivered to you with the delivery code 3156. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412316933\n\n\nBICARGO','1','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL),
('02cf4121-e81e-42c7-8718-8f4d5e89197c','31629002803','Sayın BLANDİ ZOTA, 644965833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644965833\n\nDear BLANDİ ZOTA, your shipment with 644965833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644965833\n\nBICARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('02d11325-353f-4955-94c8-59c03fc4c63d','49015151400787','Sayın DÖNDÜ YÖRÜK SSH, 644458216 nolu gönderiniz 8558 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644458216\n\nDear DÖNDÜ YÖRÜK SSH, your shipment with 644458216 was delivered to you with the delivery code 8558. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644458216\n\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('02d12fe6-4949-4611-93d8-6e29aa60b27b','49173496047','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','2','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('02d2d420-602c-45d9-9b01-d4d97b65ab78','905325000478','GELİNLİKÇİ adlı müşterinizin 412574307 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL),
('02db709d-d328-40a5-ae2f-045854680527','31643014600','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('02e84d68-ea30-420f-89eb-17de10e5095d','905461661672','Sayın yetkili; SERPİL KOCA adlı müşterinize 644637221 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 23.10.2025 15:01:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','188a35d6-cefe-4fff-b723-12226d6d2796',NULL),
('02eefb0b-a89c-436b-a9d8-c6cf46354886','','412225517 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10333 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412225517\n\nYour shipment with the number 412225517 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10333. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412225517\n\nBICARGO','2','33559e2b-89eb-400e-bccc-223d68f8842e',NULL),
('02f97989-d0ec-4829-9375-4ab65c0ae66e','4917620022816','371201111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2570 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371201111\n\nYour shipment with the number 371201111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2570. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371201111\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('03035537-6edd-4e76-93a1-aa4c78930056','905075277637','Sayın yetkili; DELİL ÖZTÜRK SSH adlı müşterinize 745786401 nolu gönderinizin 180x200 yatak  ürünü 1 parça halinde Fatura adresinizden 23.05.2025 09:31:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('03037df7-5a33-42fe-8df0-ce977591976c','905517075149','ÖZKAN ERDEM  adlı müşterinizin 478784133 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('0304186f-6fb9-4010-96af-16da771c8f52','905535521975','NİSRİNE  adlı müşterinizin 019814367 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('03051ee0-9669-4aa6-9b87-078879c41529','4915254879175','Sayın ARZU KUZUCU, 371160737 nolu gönderiniz 3069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371160737\n\nDear ARZU KUZUCU, your shipment with 371160737 was delivered to you with the delivery code 3069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371160737\n\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('0306de94-40a0-4d59-875e-3b67fd1c569b','5325000478','Sayın LİDER LİDER, 18.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3163334\nŞifre : 3163334\n			\nBİCARGO','1',NULL,NULL),
('0309fd3a-eb6e-4469-bfc7-39d035977d9f','33768202556','Sayın LEPETİT CHRİSTELLE, 221987558 nolu gönderiniz 9098 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221987558\n\nDear LEPETİT CHRİSTELLE, your shipment with 221987558 was delivered to you with the delivery code 9098. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221987558\n\n\nBICARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('030a3f82-3045-42a9-8eee-44e158934a5a','33788856164','Sayın ERKAN ÇELİK , 911398945 nolu gönderiniz 3349 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/911398945\n\nDear ERKAN ÇELİK , your shipment with 911398945 was delivered to you with the delivery code 3349. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/911398945\n\n\nBICARGO','1','36c2bf88-d916-406a-9c75-5831ceac476b',NULL),
('030d0cc6-f81a-4f87-b16a-ec4c5851751f','905331602195','Sayın yetkili; REUAN SHAMO  adlı müşterinize 221947357 nolu gönderinizin 90x170 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:17:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('030f1011-c03f-471b-8e19-2dac3a10d996','905331602195','Sayın yetkili; NİHAL ŞAHİN adlı müşterinize 221899517 nolu gönderinizin 70x120 cm traverten orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:33:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('0312c91e-e82c-4744-a345-764e3786cf83','436603406293','DRAGİ DİJANA adlı müşterinizin 675951028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('0312cbba-d334-47a1-b756-0d3507696b2e','905517075149','Sayın yetkili; ŞÜKRAN ÖZGÜL adlı müşterinize 478739679 nolu gönderinizin MASA 6 SANDALYE KONSOL ürünü 12 parça halinde RİXXE adresinizden 14.10.2025 13:45:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4df3c44-e272-4f15-83b1-063b9f953adc',NULL),
('03178306-0371-43a6-8e3b-6c808163ac74','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin yatak ürünü 5 parça halinde TRANSJET DEPO adresinizden 21.08.2025 11:15:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('0319f5cc-9c14-48e7-a51d-efe6bc34ff41','4917621293199','Sayın TUBA BALTA, 675902808 nolu gönderiniz 3060 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675902808\n\nDear TUBA BALTA, your shipment with 675902808 was delivered to you with the delivery code 3060. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675902808\n\n\nBICARGO','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('031c0032-cece-49ef-b9d5-c882348a03ff','11111111111','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','2','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('03217d7e-3d23-4dfd-8a86-582009ec656e','905465479064','EZGİ BAŞARAN adlı müşterinizin 858210128 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL),
('03249049-1ab7-4ebf-b8ea-3712df3f8d10','491628157309','Sayın ŞÜKRAN ALP , 614969446 nolu gönderiniz 2220 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614969446\n\nDear ŞÜKRAN ALP , your shipment with 614969446 was delivered to you with the delivery code 2220. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614969446\n\n\nBICARGO','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('032dc456-8e80-4472-bdd5-c0d003edcf27','41779993098','982365685 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3757 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982365685\n\nYour shipment with the number 982365685 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3757. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982365685\n\nBICARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('032e0a5f-6d60-4c55-a268-8d92bf29d4a8','491722377347','Sayın DURMUŞ YÜKSEKTEPE, 745935889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745935889\n\nDear DURMUŞ YÜKSEKTEPE, your shipment with 745935889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745935889\n\nBICARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('032e74a7-eb70-4cec-bc50-deac5b332bc2','3377867204','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','2','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('032f8ddc-a30b-44bb-8a37-fd7a31a6a9a1','4917662337872','Sayın NECİP FAZIL ŞİMŞEK, 371261673 nolu gönderiniz 5750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371261673\n\nDear NECİP FAZIL ŞİMŞEK, your shipment with 371261673 was delivered to you with the delivery code 5750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371261673\n\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('0330923f-8259-4128-81ed-2d90be7039f0','905054335859','OGUZHAN SARP adlı müşterinizin 501345257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('0331b6e4-6009-4c94-9ee6-6aa5ac1d0778','4917623171726','478863315 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7321 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478863315\n\nYour shipment with the number 478863315 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7321. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478863315\n\nBICARGO','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('033394f4-73f7-49a3-89a5-1c64ae8d3bac','017631598105','Sayın MERT GÖKMEN, 644796086 nolu gönderiniz 7896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644796086\n\nDear MERT GÖKMEN, your shipment with 644796086 was delivered to you with the delivery code 7896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644796086\n\n\nBICARGO','2','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('03394a34-4ea0-4e8a-8f8c-487b7f441dc3','905313340045','PELÇİN BUZLU adlı müşterinizin 437554629 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('033a4b47-f845-43b8-baca-7050681dd1ca','905517075149','Sayın yetkili; FİDAN ÇALI adlı müşterinize 478545195 nolu gönderinizin 1 ADET BERJER ürünü 1 parça halinde muka home adresinizden 26.09.2025 14:20:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7371a5c-1964-498e-9777-29d5a4fb4e31',NULL),
('033affc8-4861-4011-962f-c803fd099eaa','905331602195','MUHAMMED ERDOĞAN adlı müşterinizin 221396383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('03435d48-ad48-4107-8ef8-81070366b153','4917634657298','Sayın GÜL KOÇAK, 437672074 nolu gönderiniz 9448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437672074\n\nDear GÜL KOÇAK, your shipment with 437672074 was delivered to you with the delivery code 9448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437672074\n\n\nBICARGO','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('034389a2-e733-407c-9d64-9823e57ac727','905451571652','Sayın yetkili; CEM TOPYÜREK adlı müşterinize 531870941 nolu gönderinizin KOMODİN ürünü 2 parça halinde AHMET adresinizden 09.09.2025 17:20:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('03484264-c294-40e9-95ae-69d6631731df','905532675926','MURAT YALIN adlı müşterinizin 501216728 nolu gönderisi 39 parça halinde yola çıkmıştır.','1','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL),
('034bcbc2-bdab-4d2a-acc9-7b359318d0f5','491718276465','Sayın ZEKERİYA HOCA, 412903480 nolu gönderiniz 2801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412903480\n\nDear ZEKERİYA HOCA, your shipment with 412903480 was delivered to you with the delivery code 2801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412903480\n\n\nBICARGO','1','e221f07b-ec1d-448a-801d-7d5296e3b735',NULL),
('034d8d27-b9c3-47b8-8995-676390c7dbd9','436603406293','Sayın yetkili; EDİSA MUSTAFSOVSKA adlı müşterinize 675412794 nolu gönderinizin orta sehpa ürünü 2 parça halinde vent aksesuar adresinizden 02.10.2025 12:18:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('03558c04-2c52-40d5-b2bb-0bb3ea19381b','905335708965','ENGİN POSETLERDEN KALAN KUTU  adlı müşterinizin 248188933 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL),
('035b3028-4988-4f0d-9cbd-7c9eb348a918','905318109098','FATMA EROĞLU adlı müşterinizin 455165840 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','567de155-b820-4225-ac37-23f88ed0500c',NULL),
('035e93f9-9503-41a4-8fb5-632b3417e5f1','905335511664','SÜLEYMAN SUNGUR adlı müşterinizin 371365041 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('03625edd-ed7a-4482-aa98-dacbe0a5e698','00491605639383','248526655 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6050 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248526655\n\nYour shipment with the number 248526655 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6050. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248526655\n\nBICARGO','2','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL),
('0363c07b-f96e-417c-9a25-073bd5f62e1b','33652341181','47811313 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5535 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47811313\n\nYour shipment with the number 47811313 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5535. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47811313\n\nBICARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('0364baaf-b3f1-4730-a538-10c91a8f8e77','905350617509','Sayın yetkili; SERKAN ELGİT  adlı müşterinize 61310831 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 22.07.2025 17:07:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('0367cf5e-f05a-4b3a-b7d2-0a1d5f984d91','905078062550','AYHAN ÇEKİ adlı müşterinizin 598758154 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('036c440b-7508-46cd-95c7-3a6787b9caa5','905325000478','CEMİL BEY adlı müşterinizin 412119334 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','3167a684-9120-4a08-a96f-a652ac70c76f',NULL),
('036e753c-6f75-4c85-bf57-f65d042496a3','4917661518920','Sayın ALPER ALBAYRAK, 371400028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371400028\n\nDear ALPER ALBAYRAK, your shipment with 371400028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371400028\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('036f0647-3428-4626-b9ef-21a4f40b5575','905301592882','Sayın yetkili; M.ALİ ÇETİN adlı müşterinize 910129924 nolu gönderinizin Berjer  ürünü 1 parça halinde Fatura adresinizden 13.10.2025 12:17:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('0370fdcf-3e83-4495-95c2-a6673f5a0385','4915738807619','Sayın MAHMUD BİRÜKOF, 598754271 nolu gönderiniz 5837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598754271\n\nDear MAHMUD BİRÜKOF, your shipment with 598754271 was delivered to you with the delivery code 5837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598754271\n\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('0371a27a-b98c-43c2-8df5-7958e4e36d34','905517075149','BECET ÖZDEMİR adlı müşterinizin 478221533 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('03725ada-8e97-4774-8afb-4c3e837c880f','905304259202','RAMAZAN KAYHAN adlı müşterinizin 478972804 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('0374c4b1-9765-4af7-87a6-eb1abfae1f4f','436605152000','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('037b4115-7bf5-43ca-b98a-f7418712e581','4917632998796','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('0381487b-1af2-40cd-8880-1c484edd714d','905078062550','Sayın yetkili; SİHAM MAHMOUD adlı müşterinize 598280715 nolu gönderinizin MASA SEHPA ürünü 5 parça halinde SM TASARIM adresinizden 19.08.2025 15:09:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('038201de-57c8-466e-9fda-4845c33ea098','905075277637','BERKANT YAŞA adlı müşterinizin 745717474 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('03835a68-224c-4ee1-8f18-978edf3b6d46','4917684399909','745105520 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6832 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745105520\n\nYour shipment with the number 745105520 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6832. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745105520\n\nBICARGO','1','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL),
('0384d918-0c05-4319-a4bb-2d936991ac04','4915158036323','319388100 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319388100\n\nYour shipment with the number 319388100 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319388100\n\nBICARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('0384e2b4-b9e3-4e9f-803f-be69f6f1e718','905532675926','Sayın yetkili; ESRA SAATÇİ adlı müşterinize 428905379 nolu gönderinizin koltuk 3+3+1+1 ürünü 4 parça halinde Fatura adresinizden 10.10.2025 16:42:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL),
('0385baad-6f83-4282-a7f0-cd20d31e9f60','905079358213','DELİL ÖZTÜRK adlı müşterinizin 74529534 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('0385e9de-1135-4d1a-9946-7a0c52e7846c','905304259202','ALEV DOĞRU adlı müşterinizin 478860616 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('03864f12-a11f-4ea7-a517-3d16b8882c2f','491787541116','Sayın HALİT ŞEN, 614474485 nolu gönderiniz 10548 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614474485\n\nDear HALİT ŞEN, your shipment with 614474485 was delivered to you with the delivery code 10548. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614474485\n\n\nBICARGO','1','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL),
('038b21e8-1a56-4152-b1d9-03a6e4f9cbd1','436609507300','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('038ce462-d8e1-4342-ac64-0c855de5af93','491634662527','Sayın ROMİNA ÇÖPLÜ, 127927013 nolu gönderiniz 2476 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127927013\n\nDear ROMİNA ÇÖPLÜ, your shipment with 127927013 was delivered to you with the delivery code 2476. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127927013\n\n\nBICARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('038ff1a9-939e-4c71-99b2-3fe23ebe58a1','4915772153329','Sayın MUHTEREM KAYA, 465500768 nolu gönderiniz 5647 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465500768\n\nDear MUHTEREM KAYA, your shipment with 465500768 was delivered to you with the delivery code 5647. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465500768\n\n\nBICARGO','1','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL),
('0390c18d-2785-4246-a6b7-9e234a4f9041','491721729468673','478833375 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478833375\n\nYour shipment with the number 478833375 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478833375\n\nBICARGO','2','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('0393a06a-cf8e-44e5-b6f2-f787f49945d4','436609821810','745906720 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2502 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906720\n\nYour shipment with the number 745906720 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2502. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745906720\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('039c0480-2d12-42c0-86bc-c294ea822348','905079358213','HÜSEYİN PEKTAŞ adlı müşterinizin 745193877 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b562fd3b-e30e-4218-a985-6517692ba823',NULL),
('039ec8b6-8982-4bf7-9d67-8e66fb85907e','905454259202','Sayın yetkili; İBRAHİM TANKAZ adlı müşterinize 47815812 nolu gönderinizin yemek odası ünite ve sehpa ürünü 4 parça halinde çelikbey inegöl depo adresinizden 05.01.2025 16:52:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('03a17278-5517-4d31-a396-dae4212c47c8','905301592882','ATAKAN OLCAYTÜRK  adlı müşterinizin 910485088 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8259588b-b757-4856-a390-2e9ec4c403c8',NULL),
('03a19f64-3670-4291-936d-976888ed96bf','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin KARYOLA VE 2 KOMİDİN ürünü 10 parça halinde RASSE MOBİLYA adresinizden 13.01.2025 16:30:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('03a1c814-e8bb-48e0-85dd-aa2583e0cc1d','32498162350','Sayın BERKANT, 412252365 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412252365\n\nDear BERKANT, your shipment with 412252365 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412252365\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('03a69656-5819-4c37-ba27-b732593f1773','905356659087','MUSA VARICI  adlı müşterinizin 897291641 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL),
('03a7c7ab-f7a9-4755-aa42-355fb157e76f','33751255527','İletişim \n					Halil Bey (Şoför) :+905541100849','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('03ac3f10-8bba-401e-acdd-2cb77be3b862','0033626827688','Sayın MUHSİN AKTEPE, 248977442 nolu gönderiniz 9750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248977442\n\nDear MUHSİN AKTEPE, your shipment with 248977442 was delivered to you with the delivery code 9750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248977442\n\n\nBICARGO','2','f5ff5ecc-8494-400b-acf9-c8906860204a',NULL),
('03adad70-45d7-451c-8149-11b3b230b2fc','4363573467467362','Sayın CEM OKUMUŞ, 248883377 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248883377\n\nDear CEM OKUMUŞ, your shipment with 248883377 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248883377\n\nBICARGO','2','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL),
('03b12d9b-1f1d-452d-9a76-4f7902e21b33','436605673801','437355925 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6097 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437355925\n\nYour shipment with the number 437355925 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6097. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437355925\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('03b62a96-fcbf-43e7-9707-10618e687c1f','33634229527','Sayın İNAN KURUCU, 478572714 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478572714\n\nDear İNAN KURUCU, your shipment with 478572714 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478572714\n\nBICARGO','2','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL),
('03b836c7-be7f-4b8f-b792-92af7da7d39c','905054335859','YUSUF KAYA adlı müşterinizin 501760253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL),
('03bbb5e5-1def-49e4-a5ba-c3c134dac2ca','33642608703','Sayın YASEF İÇEL, 478723817 nolu gönderiniz 6144 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478723817\n\nDear YASEF İÇEL, your shipment with 478723817 was delivered to you with the delivery code 6144. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478723817\n\n\nBICARGO','1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL),
('03bbd98a-7956-4b6d-9500-e1e4b3c28e8f','491724524938','Sayın MELİSA YILMAZ, 203519424 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/203519424\n\nDear MELİSA YILMAZ, your shipment with 203519424 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/203519424\n\nBICARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('03bc56ad-70d4-4cb9-9aa8-c308868b42e5','905073106101','MEHMET BATMAZ adlı müşterinizin 46558561 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('03bc5ae5-fb70-43d1-b47c-1f8833248020','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin 60x120 traverten orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:42:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('03c1f344-c7d6-4271-a484-56236bee7901','41765344310','BİLGİLENDİRME\n					ARAÇ KAPIKULE YOĞUNLUĞU SEBEBİYLE 2-3 GÜN GEÇİKMEYE YAŞAYACAKTIR \nANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('03c3a2ff-bd6c-403f-88cd-27e3b005e582','4915738807619','598754271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598754271\n\nYour shipment with the number 598754271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598754271\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('03c3e9f0-03ae-4cf7-81f7-7b18eced25a3','436608763006','Sayın RUKİYE KIRIMLI, 478861689 nolu gönderiniz 8305 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478861689\n\nDear RUKİYE KIRIMLI, your shipment with 478861689 was delivered to you with the delivery code 8305. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478861689\n\n\nBICARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('03c629c4-6d9e-4efe-970d-19bb6effcb8b','491728865904','Sayın MUSTAFA ÖZTAŞ, 644147833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644147833\n\nDear MUSTAFA ÖZTAŞ, your shipment with 644147833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644147833\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('03cbff4d-ee26-4ec0-93bc-095f5e58ebbc','41765845886','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('03d2a78d-1588-412d-b0ce-06d6b4e2d031','905454259202','ALİ DİNAR adlı müşterinizin 47811313 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('03d81bd0-a4b5-417a-9605-dd2944ef9843','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA ÇALIŞMA MASASI ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('03d8af6f-ce46-4330-97c8-a5ba2080fbb5','905335511664','Sayın yetkili; EMİLE ARSLAN adlı müşterinize 37142091 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 15.05.2025 13:48:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('03dc8039-59ee-45bf-83ae-25c3b787fc15','905301592882','Sayın yetkili; BERFİN HALİS ŞENGÜL adlı müşterinize 910572875 nolu gönderinizin GENOVA KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 20.02.2025 16:16:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('03de993b-5768-4dd2-b761-f67001fb7988','4917670801496','37183091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37183091\n\nYour shipment with the number 37183091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37183091\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('03df985d-7049-4a4b-8842-92cbee95c262','905336367828','HABİL ŞENER  adlı müşterinizin 982864044 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('03e8c866-dd33-43a7-9ddc-52eb8db31bcc','33644892137','449136824 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2763 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449136824\n\nYour shipment with the number 449136824 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2763. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449136824\n\nBICARGO','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('03e8e761-3c9b-43e6-ae6f-1b2adbb411af','4915256924287','Sayın MAZHAR BAYMAN SSH, 644803178 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644803178\n\nDear MAZHAR BAYMAN SSH, your shipment with 644803178 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644803178\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('03edcf63-2a2f-4ff9-9527-5fa671399fb4','491621988472','Sayın HALİLOVİÇ ELMA, 371104317 nolu gönderiniz 4411 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371104317\n\nDear HALİLOVİÇ ELMA, your shipment with 371104317 was delivered to you with the delivery code 4411. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371104317\n\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('03f12b6e-01ca-47cb-ad98-f911b1b8e382','4363573467467362','Sayın CEM OKUMUŞ, 248883377 nolu gönderiniz 5232 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248883377\n\nDear CEM OKUMUŞ, your shipment with 248883377 was delivered to you with the delivery code 5232. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248883377\n\n\nBICARGO','2','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL),
('03fa9d14-44e5-43fc-ace4-b227d66298d0','4915117328553','613420026 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1857 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613420026\n\nYour shipment with the number 613420026 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1857. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613420026\n\nBICARGO','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('03fb4960-8069-4a17-a1ae-6f3c62e53850','905461661672','Sayın yetkili; HÜDAYİ HARMANCI adlı müşterinize 64422113 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:27:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('03feee16-06a6-4f0d-9182-0e1c539a2475','905461661672','Sayın yetkili; ERDEL SİBEL SSH adlı müşterinize 644426448 nolu gönderinizin Sandalye oturumu ürünü 1 parça halinde BALİ SANDALYE adresinizden 14.08.2025 10:52:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('040532c9-2db6-4b02-9a7d-60e3f640a382','905079358213','Sayın yetkili; ELOUAZGHİ ANAİS  adlı müşterinize 745879253 nolu gönderinizin PİER KOLTUK TAKIMI  ürünü 3 parça halinde NAHİTA SOFA  adresinizden 08.09.2025 10:50:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('04083b7e-b9aa-49de-9a9d-9b1a05d662e1','4915202074220','Sayın CANKUT BEY, 858200454 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858200454\n\nDear CANKUT BEY, your shipment with 858200454 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858200454\n\nBICARGO','1','3e323a55-ba70-413e-929d-bc1527816bbc',NULL),
('04096e0c-f162-498f-8599-75f6b4f8cc89','905336367828','OMARİ EMAL  adlı müşterinizin 982726615 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('040b9cb4-c3b5-43db-936d-f16d2a8e8dcc','4915784616270','64434778 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9933 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64434778\n\nYour shipment with the number 64434778 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9933. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64434778\n\nBICARGO','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('040c32ba-4438-486f-8e42-7c76984eb7c0','33778663770','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('04104b4a-b28f-4859-b075-643a4d5d988d','905523438971','HELİN ÖZDİL adlı müşterinizin 896155892 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('0410e664-8838-44fb-a20a-f16992171c21','31641919290','437233194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4463 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233194\n\nYour shipment with the number 437233194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4463. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437233194\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('0411cb64-a4ba-42c7-8d58-9172779e654d','4917655059841','Sayın MOHAMED AHDAGO, 902332542 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/902332542\n\nDear MOHAMED AHDAGO, your shipment with 902332542 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/902332542\n\nBICARGO','1','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL),
('04146637-d343-4dd7-b525-5cbfc74d5a4f','905075277637','Sayın yetkili; ERCAN VARSAK SSH  adlı müşterinize 745282619 nolu gönderinizin MASA KAYITI  ürünü 1 parça halinde Fatura adresinizden 03.09.2025 12:55:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('04188262-d1d0-46ba-b02d-5298a8707c45','905335511664','ELİSABETH BRUCH adlı müşterinizin 371807983 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('041c0b05-94d8-4722-9c6b-0311cb240a99','905335511664','FİLİZ DEĞER adlı müşterinizin 371655670 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('0421237e-5072-477c-acc8-8b83d067f7d5','905059175469','Sayın yetkili; ÖMER KARAMAN adlı müşterinize 428857511 nolu gönderinizin koltuk ürünü 1 parça halinde katre koltuk adresinizden 26.11.2024 11:59:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('042604a3-d93b-4f80-8164-a7c7bd43f360','31625064385','Sayın MURAT, 163229349 nolu gönderiniz 6839 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/163229349\n\nDear MURAT, your shipment with 163229349 was delivered to you with the delivery code 6839. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/163229349\n\n\nBICARGO','1','6d8023fb-7e68-4b37-8709-816c5519380e',NULL),
('042963a1-4e4e-4f3b-81a6-c9ec5bc9762c','4915252659401','Sayın DİLARA COŞKUN, 644684600 nolu gönderiniz 2036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644684600\n\nDear DİLARA COŞKUN, your shipment with 644684600 was delivered to you with the delivery code 2036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644684600\n\n\nBICARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('042bdbe4-6867-46c3-9704-3441496c65e0','905510396989','ABUZER TEKCE adlı müşterinizin 319232330 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('042da38a-bde1-4e83-9fbe-cca68f258779','0033783840698','Sayın FAREDİN BAJRAMİ, 248363931 nolu gönderiniz 4978 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248363931\n\nDear FAREDİN BAJRAMİ, your shipment with 248363931 was delivered to you with the delivery code 4978. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248363931\n\n\nBICARGO','2','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL),
('0430a438-f4c0-42c5-92b7-15e507dc6419','4915906664291','Sayın GASİ MUSA, 613262202 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613262202\n\nDear GASİ MUSA, your shipment with 613262202 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613262202\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('0431b958-e052-4711-8424-98b99f8eaf27','905461661672','ÖMER GEDİK adlı müşterinizin 644113252 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('043286a2-69fa-4ce4-90e4-f6830013424f','491639801426','Sayın EURO STAR MOBEL, 107593305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107593305\n\nDear EURO STAR MOBEL, your shipment with 107593305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/107593305\n\nBICARGO','1','56934bb2-8807-472a-9265-23392c22511f',NULL),
('0437ab7f-674d-46a8-99bc-47a32c4c095a','33626434007','Sayın SİBEL ÇINAR, 428736949 nolu gönderiniz 4097 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428736949\n\nDear SİBEL ÇINAR, your shipment with 428736949 was delivered to you with the delivery code 4097. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428736949\n\n\nBICARGO','1','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL),
('043a58d0-4b1f-4e46-bc2e-2ec9b501e018','905333221039','BAŞAK BEYOĞLU adlı müşterinizin 750501209 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL),
('0441895c-568d-416c-a03f-7bfd265f0cfc','491721301453','Sayın BURHAN SAĞLAM, 976593604 nolu gönderiniz 9247 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976593604\n\nDear BURHAN SAĞLAM, your shipment with 976593604 was delivered to you with the delivery code 9247. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976593604\n\n\nBICARGO','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('0441b910-2413-45f6-8d1a-c8db9698e185','905304259202','YALÇIN BÜYÜKMURAT adlı müşterinizin 478643015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('04473cd9-70cd-429d-acf4-9df2ff32d3cb','491725413866','Sayın ASLIHAN GÜÇLÜ, 745554582 nolu gönderiniz 4888 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745554582\n\nDear ASLIHAN GÜÇLÜ, your shipment with 745554582 was delivered to you with the delivery code 4888. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745554582\n\n\nBICARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('044a19d7-de9c-498f-aada-64b4cef6dc83','491778682427','Sayın BELKIS DUMAN, 478662278 nolu gönderiniz 7673 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478662278\n\nDear BELKIS DUMAN, your shipment with 478662278 was delivered to you with the delivery code 7673. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478662278\n\n\nBICARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('04500ee1-c594-48d7-a94b-8bd0805bfb57','436606772849','Sayın SÜMEYYE KALKAN , 98258846 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98258846\n\nDear SÜMEYYE KALKAN , your shipment with 98258846 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98258846\n\nBICARGO','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('0457e08f-345d-49e7-8bd7-89259ea39ad6','905331602195','MUSA BEKİM adlı müşterinizin 221624652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('045bfb94-ff35-4fe7-bff9-57ca0d543eff','905075277637','Sayın yetkili; SAFİYE ÇITAK adlı müşterinize 745959029 nolu gönderinizin KÖŞE TAKIMI ürünü 3 parça halinde Fatura adresinizden 13.02.2025 23:16:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('045ce2be-27a3-4ab3-a8ea-a1750167f9b0','31657734466','501869420 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10245 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501869420\n\nYour shipment with the number 501869420 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10245. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501869420\n\nBICARGO','1','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL),
('045f3d32-85a2-4822-bd37-5c72e86425b3','4915204613986','Sayın Erkan ÖZKÖKKAYA, 734788911 nolu gönderiniz 9308 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734788911\n\nDear Erkan ÖZKÖKKAYA, your shipment with 734788911 was delivered to you with the delivery code 9308. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734788911\n\n\nBICARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('0463e1b8-f587-4808-b18a-b37b540bf438','4917675899290','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('0466e62b-4506-4eba-a2d3-b58f838bd0c6','905335708965','EMRE adlı müşterinizin 248968905 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('04687cb9-1dc7-4c4f-a7a3-9162a4515769','905073106101','RECEP ONAY  adlı müşterinizin 465313266 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','149850c7-89eb-4248-a529-b235c5710935',NULL),
('04688412-7143-4341-be93-b7593ee78d76','905428209234','Sayın yetkili; AYHAN KOCAKAYA adlı müşterinize 31979626 nolu gönderinizin TESLA KÖŞE + 2 ADET BERJER ürünü 6 parça halinde Bestine adresinizden 31.07.2025 16:48:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('04695efa-9e65-4958-aec6-b1fb7e34042a','905325998198','ÇİLEM KAYNI adlı müşterinizin 61428079 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL),
('046ff036-1986-4c26-87df-2eee767c207b','905313340045','MEO JONATHON adlı müşterinizin 437452475 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('047678f0-037b-4d5e-ae98-d399e9c71d94','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin BAZALI KARYOLA ürünü 5 parça halinde BİCARGO DEPO adresinizden 21.07.2025 17:40:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('047e8d05-3c44-4d83-a22a-0f22aa78453e','491764813040','Sayın MERAL YAZICI, 478101413 nolu gönderiniz 4612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478101413\n\nDear MERAL YAZICI, your shipment with 478101413 was delivered to you with the delivery code 4612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478101413\n\n\nBICARGO','2','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('04845fb8-6281-4f5f-acd4-24b99a787b85','41782402516','Sayın FATEMEH HOSSAİNİ, 112787965 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/112787965\n\nDear FATEMEH HOSSAİNİ, your shipment with 112787965 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/112787965\n\nBICARGO','1','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('04879817-503b-4fe2-a90e-af925cd46aa9','43650589188','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','2','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('04898645-e8d3-459e-b37e-88d47b51cb24','0041765845886','12771217 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7417 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12771217\n\nYour shipment with the number 12771217 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7417. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/12771217\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('049027da-09ac-4fb4-b22d-2476a3bd4d8c','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin MASA ürünü 2 parça halinde PARLAK EV MOBİLYA adresinizden 24.09.2025 15:55:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('04932819-e334-4a84-a752-76d232c48517','4915782204531','745278745 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4664 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745278745\n\nYour shipment with the number 745278745 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4664. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745278745\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('04980381-d09b-4ae5-bef0-ed4f3416b77b','905388618969','VALBOANA adlı müşterinizin 786254351 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL),
('049a23c5-c123-4ab5-944f-3e706872dc81','491779155437','Sayın SUNAY KURU, 478526484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478526484\n\nDear SUNAY KURU, your shipment with 478526484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478526484\n\nBICARGO','1','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL),
('049a486c-1bf6-4555-87b6-6e977a7543c5','905079358213','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin PLATİN YATAK 180X200 ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:12:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('049c8d76-cd31-4b2a-aaed-518b46849b9b','4917672932158','517278082 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5305 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517278082\n\nYour shipment with the number 517278082 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5305. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517278082\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('04a37738-45d6-47e6-86cc-1fed6399559f','905454259202','Sayın yetkili; SÜLEYMAN KAYHAN adlı müşterinize 478763903 nolu gönderinizin ünite ve konsol aynası ürünü 1 parça halinde SENS adresinizden 18.02.2025 19:28:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('04a3f3a4-d400-4da6-b6fa-a627b7ee36f4','905079358213','SERHAT ÇAÇAN adlı müşterinizin 745303876 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('04a7bb9b-7e78-4e7e-a444-8830d099656e','33651400749','Sayın ÖZKAN ÖZKOŞAR, 910756975 nolu gönderiniz 3345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910756975\n\nDear ÖZKAN ÖZKOŞAR, your shipment with 910756975 was delivered to you with the delivery code 3345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910756975\n\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('04a90caf-873e-44f3-ae1a-07b7b31692b0','436607290700','Sayın AYŞE ÖZSOY, 745132796 nolu gönderiniz 2681 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745132796\n\nDear AYŞE ÖZSOY, your shipment with 745132796 was delivered to you with the delivery code 2681. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745132796\n\n\nBICARGO','1','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL),
('04abc056-a926-46cd-b293-b326c5885fec','436605673801','Sayın HANİFE TURAN, 437355925 nolu gönderiniz 6097 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437355925\n\nDear HANİFE TURAN, your shipment with 437355925 was delivered to you with the delivery code 6097. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437355925\n\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('04adbfb2-3860-45b1-8e49-d3dda45334f9','905461661672','Sayın yetkili; BARAN YILDIZ adlı müşterinize 644832811 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 19.08.2025 17:21:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('04b6d097-7aa7-4d96-a901-2fa27ba74f85','4917682095628','Sayın GÜLNUR KURUOĞLU, 952470417 nolu gönderiniz 5243 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/952470417\n\nDear GÜLNUR KURUOĞLU, your shipment with 952470417 was delivered to you with the delivery code 5243. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/952470417\n\n\nBICARGO','1','a029bd37-9eca-4220-a768-df5b0d586118',NULL),
('04b71bfc-2145-4f14-b56f-d75a24f2686b','905331602195','SEMİH TASKELE adlı müşterinizin 221693523 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('04ba402c-0b2e-4ca7-aea6-0ae1bdfb6be3','905368336516','Sayın yetkili; FATİH YİGİT adlı müşterinize 515956879 nolu gönderinizin masa sandalye orta sehpa ürünü 12 parça halinde masami adresinizden 10.09.2025 16:45:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('04c15bc3-3bfa-424c-a6a7-a98ab1724e6b','4917655249340','Sayın ÜLKÜ AKIL, 61480625 nolu gönderiniz 7336 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61480625\n\nDear ÜLKÜ AKIL, your shipment with 61480625 was delivered to you with the delivery code 7336. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61480625\n\n\nBICARGO','1','f67e7508-1afa-4901-b396-faae504c1726',NULL),
('04c3515c-8da3-494f-b9c7-dc8be20d9fed','33658093635','Sayın ÖZKAN ALTUN, 223867751 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223867751\n\nDear ÖZKAN ALTUN, your shipment with 223867751 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223867751\n\nBICARGO','1','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL),
('04c44a40-6d26-4e69-ae6f-5fb2f7df3571','905332942204','Sayın yetkili; DEBORAH BELOVED IDAGU adlı müşterinize 505987989 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 29.07.2025 12:06:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('04c645f8-1faa-4721-ad43-a3f6399dea01','4917622021338','Sayın ERSİN ESEN, 501256266 nolu gönderiniz 2539 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501256266\n\nDear ERSİN ESEN, your shipment with 501256266 was delivered to you with the delivery code 2539. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501256266\n\n\nBICARGO','1','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL),
('04ce8037-0368-4f67-84f5-b1c2d9ff5b00','905421855834','RAUF ÇALIŞ  adlı müşterinizin 338691111 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0f7a8dca-9600-447a-a216-28087b5362ba',NULL),
('04d00f8d-bd8c-4f2c-8053-7f5879757c7f','905331602195','GÜLER DELİDUMAN adlı müşterinizin 221432350 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('04d183c7-2e6a-4d75-a388-a2e2c3d6c06b','905331602195','Sayın yetkili; STEPHANİE GOSSEYE adlı müşterinize 221669694 nolu gönderinizin 90x190 Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:23:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('04d32e1c-43bc-48d0-aeaf-9495caf54204','905331602195','Sayın yetkili; TİMUÇİN SAYIN adlı müşterinize 221786435 nolu gönderinizin 90x170 nevada koyu ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:32:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('04d65974-fa8f-4823-8b9f-f7e8ae067cd7','905304259202','Leman emre adlı müşterinizin 478361652 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL),
('04d6f0d3-c6a5-46ef-839a-56e169064997','905335708965','HALİT KADİM adlı müşterinizin 248533509 nolu gönderisi 48 parça halinde yola çıkmıştır.','1','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL),
('04d74192-feb1-4609-b301-f36bc4425ebc','905335511664','MERVE DEĞİRMENCİ adlı müşterinizin 371665826 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('04d8975d-9290-44bf-95cc-3823c0cbdb4d','905079358213','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin PREMIUM KOLTUK TK 3+3+1+1  ürünü 6 parça halinde GANZE adresinizden 19.03.2025 15:12:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('04da7d02-ea48-49b4-a958-c45bd23a109e','49151151816534','478854135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3399 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478854135\n\nYour shipment with the number 478854135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3399. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478854135\n\nBICARGO','2','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('04dd2263-3d08-4216-a2de-74c78e517e45','905331602195','ABARDİ NOURDİN adlı müşterinizin 221624848 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('04dd9f9d-753f-472b-9e87-6a505b0a5832','905335511664','Sayın yetkili; TUĞÇE ÖNCÜ adlı müşterinize 371120237 nolu gönderinizin traverten masa ürünü 1 parça halinde Fatura adresinizden 22.10.2025 14:01:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8dcb0124-79e0-4138-838e-c613554097e7',NULL),
('04e47fae-f668-4d1c-9efb-6aedc919fc15','905325998198','Sayın yetkili; ALAETTİN BAYKAN adlı müşterinize 614396499 nolu gönderinizin NOVİTA LİZBON BERJER ürünü 1 parça halinde Fatura adresinizden 27.11.2024 14:17:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('04e5fce3-63dd-420a-9f21-d44af446b1d4','905331602195','Sayın yetkili; EL GHZİZAL CHAİME  adlı müşterinize 221686736 nolu gönderinizin 90x180 cm traverten masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 20.06.2025 18:52:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('04e7538f-89b4-41bf-a8ee-9a40584d19e6','905079358213','ERCAN VARSAK adlı müşterinizin 745318139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('04e89ffb-d8fa-4b71-87b3-435707a65181','06607038670','Sayın ERDAL AKDAĞ(K), 644985861 nolu gönderiniz 7791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644985861\n\nDear ERDAL AKDAĞ(K), your shipment with 644985861 was delivered to you with the delivery code 7791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644985861\n\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('04eef27b-1b34-40d5-bb14-9835fdeabedc','905454259202','Sayın yetkili; HALİL ÖZDEMİR adlı müşterinize 478138166 nolu gönderinizin 3+3+1+1 koltuk takımı  ürünü 4 parça halinde çelikbey inegöl depo adresinizden 11.04.2025 15:35:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('04f24077-1507-492d-8132-af3a82304c9e','905461661672','AYŞE ÖZKAYA(K) adlı müşterinizin 644783664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('04f3be24-09f7-4c26-a3bc-0ecb6fc3260f','31628730191','Sayın DİDEM BAKES , 517279482 nolu gönderiniz 8351 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517279482\n\nDear DİDEM BAKES , your shipment with 517279482 was delivered to you with the delivery code 8351. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517279482\n\n\nBICARGO','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('04f959c9-618b-4857-bca8-b859745622a8','436609197422','Sayın ŞEYDA ŞAHİN, 9824380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/9824380\n\nDear ŞEYDA ŞAHİN, your shipment with 9824380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/9824380\n\nBICARGO','1','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL),
('04fafc22-6a3e-4068-a32e-89440d8ee408','905461661672','Sayın yetkili; KÜRŞAT OKUTAN adlı müşterinize 644377360 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde LENTE HOME adresinizden 03.07.2025 15:47:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('04fb3c03-e96c-48de-bbba-213bf6ad6247','5344645190','412797306 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412797306\n\nYour shipment with the number 412797306 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412797306\n\nBICARGO','2','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('04fcd1cb-d89e-49a4-92b1-a990c4b79a5a','905355928266','SEDAT ARSLAN adlı müşterinizin 412359172 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','032b3134-3092-40b9-b2b2-be3390b4726e',NULL),
('0501460e-acea-4586-b497-b6d01e3e7c24','905301592882','FATİH ŞEKER adlı müşterinizin 910891585 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a69f955e-df2b-44dd-8811-569ba620bc40',NULL),
('050537b0-bfe5-4ba7-8ae6-be2c9e583fc4','5421009721','745873539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10614 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745873539\n\nYour shipment with the number 745873539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10614. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745873539\n\nBICARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('0507c092-b1d2-4906-bc22-744f8e3a8d68','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin GRANDBEDS DELUXE 160*200 YATAK ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('0515d821-2241-4568-84b6-959279f27649','905335511664','Sayın yetkili; SÜMEYRA YARİM adlı müşterinize 371381951 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 23.05.2025 20:12:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('0517a3c5-db6c-44eb-8451-dbe31e7c13b5','905069116877','BURAK SOYSAL adlı müşterinizin 817893403 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('051b094a-6f2f-43e4-bcd4-0eaf4313b61c','4917631669596','817160215 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7657 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817160215\n\nYour shipment with the number 817160215 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7657. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817160215\n\nBICARGO','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('051dc834-9f96-4964-a704-9187358ec378','905454259202','BELKIS DUMAN adlı müşterinizin 478662278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('051f5a5a-78df-4a6e-9cd7-d4a0b9743d58','905443955915','Sayın yetkili; BURAK TÜRKEŞ adlı müşterinize 614419362 nolu gönderinizin NOVİTA KIRLENT  ürünü 1 parça halinde Fatura adresinizden 13.01.2025 17:27:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('05257d18-8d5b-4b0f-b789-ebc0b3210c5d','905443955915','ALAETTİN BAYKAN adlı müşterinizin 614396499 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('0529fc57-b53e-4f7e-a09e-b43eda5f12b1','4917681321777','Sayın ISMAİL REMMO, 613813844 nolu gönderiniz 6120 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613813844\n\nDear ISMAİL REMMO, your shipment with 613813844 was delivered to you with the delivery code 6120. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613813844\n\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('053450dc-af0f-47b1-8ffc-cd082c9b3973','905517075149','Sayın yetkili; MEHMET ALİ ŞAHİN adlı müşterinize 478616973 nolu gönderinizin paris 3+3+1  ürünü 3 parça halinde çelikbey inegöl depo adresinizden 11.09.2025 15:53:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('0535cd96-c9ce-476a-a37e-c0f6808ab037','4917655430941','Sayın HÜSEYİN ÇELİK, 351888584 nolu gönderiniz 5536 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/351888584\n\nDear HÜSEYİN ÇELİK, your shipment with 351888584 was delivered to you with the delivery code 5536. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/351888584\n\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('05396f24-8c10-4406-8855-a9528b124dc0','905079358213','NERMİN TÜREDİ adlı müşterinizin 745524390 nolu gönderisi 5 parça halinde yola çıkmıştır.','1',NULL,NULL),
('053a4fc0-d77a-4a81-8911-ee0ff3e8657b','905079047428','MUSTAFA AİT adlı müşterinizin 449769276 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce4c8f08-9110-4882-8b15-e54368f68914',NULL),
('053f6e66-8a6b-4c75-82c9-c1a680e6aad7','905461661672','SONGÜL BALTACI adlı müşterinizin 64446005 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('05477c19-d315-4c43-a725-b6fb61632b7a','905079358213','HARUN KAYA adlı müşterinizin 745180441 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL),
('0547922c-13e0-4efd-a2ff-d07c09655906','905350617509','Sayın yetkili; GASİ MUSA adlı müşterinize 613262202 nolu gönderinizin Sehpa ürünü 1 parça halinde Masami adresinizden 17.06.2025 17:03:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('05482ccd-2950-4116-97b7-263ebe240b3a','491713800212','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('054b38fb-f9ea-4542-9b08-5affb65e148f','33658630958','478867058 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5397 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478867058\n\nYour shipment with the number 478867058 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5397. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478867058\n\nBICARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('054bfe85-1a45-40d4-835e-a280663a698b','905534084469','İSMET LEVENT adlı müşterinizin 151258703 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('054c0640-d57e-4b1e-9868-a11533237750','905363385813','Sayın yetkili; HAVVA GÜL adlı müşterinize 976530579 nolu gönderinizin Koltuk ürünü 5 parça halinde SALON KOLTUK adresinizden 02.01.2025 14:41:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('054c1ca2-2001-4a97-8d4c-8bc36d13467b','017680300114','Sayın RAYAN SLEİMANİ , 644403373 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644403373\n\nDear RAYAN SLEİMANİ , your shipment with 644403373 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644403373\n\nBICARGO','2','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('054db0c9-b1eb-4b4c-980a-e499e74d4b98','41764397280','Sayın BORAN ALBAYRAK, 598668612 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598668612\n\nDear BORAN ALBAYRAK, your shipment with 598668612 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598668612\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('054ddfca-03e8-40b5-a499-d81cfdc9901c','11111111111','Sayın AAA, 4551399 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/4551399\n\nDear AAA, your shipment with 4551399 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/4551399\n\nBICARGO','2','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL),
('054e848d-dc45-4ad1-b521-96dba75f472f','905331602195','İBRAHİM AKIN  adlı müşterinizin 221594735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('054ec526-a3c6-4325-9faf-18a07e9c2660','905510396989','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin ORTA SEHPA YAN SEHPA ürünü 3 parça halinde MEF adresinizden 28.04.2025 14:28:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('0550d19d-bdbc-49db-8e88-1b65e0417c62','905078062550','Sayın yetkili; GÖKHAN ZÜRLÜER adlı müşterinize 598157006 nolu gönderinizin köşe koltuk ürünü 6 parça halinde VERZE KOLTUK adresinizden 23.07.2025 11:01:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('055a879c-37e0-4796-8bcf-8ad22affb033','905336367828','Sayın yetkili; ABBAS GHULANI  adlı müşterinize 982978293 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 13.08.2025 10:15:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('055adeac-f616-4449-973e-9a56a5a26fc3','33675449544','Sayın MASİS YAZMACİYAN, 517867004 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517867004\n\nDear MASİS YAZMACİYAN, your shipment with 517867004 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517867004\n\nBICARGO','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('055dcfd9-2187-4301-9384-7a4f6231f178','491603319879','817395462 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4201 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817395462\n\nYour shipment with the number 817395462 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4201. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817395462\n\nBICARGO','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('055e1f64-7c1a-4dda-968e-ca4b6f5b5a7d','905350617509','GASİ MUSA adlı müşterinizin 613262202 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('055ff08d-dabb-4ac3-88b6-a6d10dbbc55f','41765044236','Sayın FİKRETE RAPCİ, 126806100 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126806100\n\nDear FİKRETE RAPCİ, your shipment with 126806100 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126806100\n\nBICARGO','1','476b3b22-cc52-456b-baca-94ab2554e38d',NULL),
('05670ed9-c768-41a3-bde2-71c68e5a1bd4','905054335859','SAİT CARCUR adlı müşterinizin 501874784 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL),
('0567d494-7183-4b09-bc48-80e308c66939','4917661327084','Sayın DUYGU METE, 371394707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371394707\n\nDear DUYGU METE, your shipment with 371394707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371394707\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('0567f9f3-060f-4f50-92bf-7ee8421206ef','33751280603','Sayın HANIM DOĞAN, 478730420 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478730420\n\nDear HANIM DOĞAN, your shipment with 478730420 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478730420\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('056c39ab-c670-404d-a50a-7fcd3efc244c','491784616992','Sayın BİROL ELİBOL, 437609907 nolu gönderiniz 9076 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437609907\n\nDear BİROL ELİBOL, your shipment with 437609907 was delivered to you with the delivery code 9076. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437609907\n\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('057086db-1818-49e3-9873-6e9165e6f8a4','4915206452765','Sayın CAN ÖZKAN, 598262809 nolu gönderiniz 5338 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598262809\n\nDear CAN ÖZKAN, your shipment with 598262809 was delivered to you with the delivery code 5338. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598262809\n\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('0571ca54-cc3f-4c7a-b2e1-d8eccfdf5930','4917623171726','Sayın SEVCAN SALİ, 478863315 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478863315\n\nDear SEVCAN SALİ, your shipment with 478863315 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478863315\n\nBICARGO','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('0573a1e5-8b3d-40f5-8d95-8ccc9afe521c','905325000478','POLAT adlı müşterinizin 412346704 nolu gönderisi 63 parça halinde yola çıkmıştır.','1','bb90725b-84e6-4211-8728-367d09c14525',NULL),
('0576c483-ae36-4790-afe2-3cd55f5269d1','31625064385','412842533 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5577 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412842533\n\nYour shipment with the number 412842533 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5577. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412842533\n\nBICARGO','1','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL),
('05774807-aeec-44f3-a204-519466d0d4cf','4915118402012','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('0577b56e-b1b9-48af-90cf-a9660bf90b9f','905443955915','ŞÜKRAN ALP  adlı müşterinizin 614969446 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('057a0011-b93a-4e3e-88dc-be4156599024','33781231553','910759399 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3631 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910759399\n\nYour shipment with the number 910759399 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3631. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910759399\n\nBICARGO','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('057b1d98-7cda-4db9-bdad-df99789a7109','905517075149','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478322325 nolu gönderinizin 160x200 yatak ürünü 1 parça halinde Fatura adresinizden 31.07.2025 14:51:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('057e6dee-29df-4da1-a015-960267b29030','436603406293','Sayın yetkili; SUHAD AL-ASADİ  adlı müşterinize 675124573 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 07.07.2025 10:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('057fb54e-0f97-4fac-af6e-c7fc0b8919a9','905350617509','MEHMET GÖK adlı müşterinizin 613420026 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('0584a713-1b13-4dfd-85ac-e5b7c42ccffb','4917657934133','47838085 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47838085\n\nYour shipment with the number 47838085 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47838085\n\nBICARGO','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('058aab8b-c42e-43ab-8cdd-a0a90a4c8675','4917631753389','Sayın SONER UZUN, 976680764 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976680764\n\nDear SONER UZUN, your shipment with 976680764 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976680764\n\nBICARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('058b1128-e235-48b8-ac4a-9f1b0b0217ec','905517075149','Sayın yetkili; YASEF İCEL adlı müşterinize 478494886 nolu gönderinizin SIRT MEKANİZMASI ürünü 1 parça halinde vaav adresinizden 12.09.2025 14:15:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','172f35f0-b688-47ce-a09e-605aeab33ec9',NULL),
('058b28b7-a7db-4154-8f9c-dc02983a88cf','905331602195','TBATOU SELMA  adlı müşterinizin 221649442 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('058c73a5-5c11-40d7-9375-56662015a936','32488875404','478262226 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2649 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478262226\n\nYour shipment with the number 478262226 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2649. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478262226\n\nBICARGO','1','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL),
('05914af5-31f1-4c36-b52d-aa760fbc5dd8','33695831959','Sayın MÜSLÜM MERDANE, 74520622 nolu gönderiniz 10217 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74520622\n\nDear MÜSLÜM MERDANE, your shipment with 74520622 was delivered to you with the delivery code 10217. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74520622\n\n\nBICARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('0594855e-16fc-4f40-95d6-b55e1fa57495','905078062550','Sayın yetkili; RASİM YAVUZ adlı müşterinize 598894090 nolu gönderinizin traverten masa sehpa ürünü 1 parça halinde NLUXHOME DEPO adresinizden 17.09.2025 14:06:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('059529e1-9287-442e-8ea9-cec0419793f4','491728162123','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('05953686-4298-40e1-a9f9-d669b1667df7','905389543828','SUAN RASTODER adlı müşterinizin 486405325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('059adc17-bf8b-44ab-b173-4ad6dbe24c97','4915115979347','İLETİŞİM\n					Furkan şöför = +905078826436','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('059dc0c2-a0cc-4e38-b34c-e43a357f8db1','436603406293','Sayın yetkili; MİKAİL ÖZBEK adlı müşterinize 675749315 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 15.08.2025 16:38:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('059eb1c9-e9d1-439b-9919-af3188f4795f','905321608709','ZEKİ ASLANER adlı müşterinizin 248799636 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL),
('05a3f192-cca8-45a4-87df-31b35910d8ca','33634738043','Sayın YUSUF ADIGÜZEL, 976942978 nolu gönderiniz 3662 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976942978\n\nDear YUSUF ADIGÜZEL, your shipment with 976942978 was delivered to you with the delivery code 3662. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976942978\n\n\nBICARGO','1','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL),
('05a98191-2d83-4dff-a525-c49ccf672b3e','905304259202','Sayın yetkili; MUHAMMET ALTUNKAYA adlı müşterinize 478535316 nolu gönderinizin köşe ve 160 lık set ürünü 4 parça halinde çelikbey inegöl depo adresinizden 25.12.2024 16:00:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('05ae6349-7509-43b1-9b0a-402f586d87a3','491722377347','745935889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745935889\n\nYour shipment with the number 745935889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745935889\n\nBICARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('05ae7725-20b9-45d2-8301-efdc0b11df0b','436601875213','745859135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10258 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745859135\n\nYour shipment with the number 745859135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10258. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745859135\n\nBICARGO','1','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL),
('05af7c4e-7b6a-48ac-902c-18464f3447af','905079358213','Sayın yetkili; HAKAN CANBAY adlı müşterinize 74565941 nolu gönderinizin RAMS ORTA SEHPA  ürünü 1 parça halinde Fatura adresinizden 19.01.2025 19:07:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('05b28309-b5c8-4738-98f1-71d19d8af463','491725459093','910560938 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7144 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910560938\n\nYour shipment with the number 910560938 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7144. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910560938\n\nBICARGO','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('05b6e141-dc30-450c-ba73-9795a7943acd','33667410242','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('05b81e09-4424-4600-9a2a-db14a35931eb','33626335448','74534951 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10657 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74534951\n\nYour shipment with the number 74534951 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10657. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74534951\n\nBICARGO','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('05bab8b7-95c6-471f-b672-916e324b53fc','905313340045','DİLEK YILMAZ adlı müşterinizin 437227214 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','071c9b00-dfd6-452e-a75b-c40b31f270dc',NULL),
('05c2b084-1008-42dd-bca7-72ce86c4a79a','32488863952','Sayın ÖZGÜR ÇEŞME, 437694817 nolu gönderiniz 2677 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437694817\n\nDear ÖZGÜR ÇEŞME, your shipment with 437694817 was delivered to you with the delivery code 2677. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437694817\n\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('05c34c6c-47e6-4730-ad05-b635cf1be655','111111111111','Sayın SEMA PALA , 515747086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515747086\n\nDear SEMA PALA , your shipment with 515747086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515747086\n\nBICARGO','2','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('05cec675-1e16-4b0a-9ec7-1efe8b80f598','33635914929','Sayın SEZER HATUN, 745249081 nolu gönderiniz 5837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745249081\n\nDear SEZER HATUN, your shipment with 745249081 was delivered to you with the delivery code 5837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745249081\n\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('05d038a9-77f7-4e74-9b69-c32ee9d71540','4917644265408','Sayın MEHMET KIRMALI, 745471905 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745471905\n\nDear MEHMET KIRMALI, your shipment with 745471905 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745471905\n\nBICARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('05d392c7-8a80-4d45-8dc9-7f1fa674c2ce','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E336 DEJAVU PORTMANTO ASKILI ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('05d4e157-37e9-466a-9a74-cf8691eb424c','491786241769','Sayın ALİ KULABEROĞLU, 478319922 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478319922\n\nDear ALİ KULABEROĞLU, your shipment with 478319922 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478319922\n\nBICARGO','1','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL),
('05d5181d-5605-4c37-9e75-7f499bebdff2','4915566264535','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('05d5e3a3-76e6-4588-94ff-03da16f59d61','905079358213','SEZER HATUN adlı müşterinizin 745249081 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('05d6462e-29d8-4c53-85d6-18df9ca85309','491784042586','371695056 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3754 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371695056\n\nYour shipment with the number 371695056 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3754. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371695056\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('05dfb67d-28ee-42ee-90c9-735114d45679','31640599400','583643470 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4848 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/583643470\n\nYour shipment with the number 583643470 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4848. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/583643470\n\nBICARGO','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('05e25f7c-f24c-4417-b8b8-9b041198c28c','330788238988','Sayın RABEB HOCQUARD, 74541057 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74541057\n\nDear RABEB HOCQUARD, your shipment with 74541057 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74541057\n\nBICARGO','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('05e4b2f7-3e5e-4cda-9f41-7f679ddb2cad','905461661672','Sayın yetkili; DUDU ÖZDEMİR(K) adlı müşterinize 644754778 nolu gönderinizin Sandalye ürünü 3 parça halinde BALİ SANDALYE adresinizden 10.09.2025 11:38:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('05e58f16-3510-4748-9293-c9c5843eba46','905350617509','BURHAN SARIKURT adlı müşterinizin 613431273 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('05e8cabd-dd2c-4358-887b-3c39d3834e1e','905461661672','Sayın yetkili; DELİL ÖZÇELİK adlı müşterinize 644680025 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 25.07.2025 10:29:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('05eb6083-7de6-4af4-ae47-8fe7fa6ab7e5','4917611633498','598211009 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1693 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598211009\n\nYour shipment with the number 598211009 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1693. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598211009\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('05fac93a-f391-4c17-bb55-bd88321a2b4d','905059175469','Sayın yetkili; SEBAHAT KOÇAK adlı müşterinize 428761245 nolu gönderinizin Yaylı yatak ürünü 1 parça halinde befa yatak adresinizden 21.07.2025 12:22:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('05fb95ab-abd2-45bf-85f8-3abc52e3a6a2','905336367828','Sayın yetkili; SAİDATİ AHMED  adlı müşterinize 98274489 nolu gönderinizin MASA  ürünü 1 parça halinde Riyo home adresinizden 09.01.2025 17:16:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('06069ed7-5ce1-41c4-a42d-4d6257d9960e','905304259202','YÜKSEL KILIÇ adlı müşterinizin 478339779 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8a01daee-3535-4440-8996-fc7c3e2f3de0',NULL),
('060935d7-98e9-4680-88fa-a55d258e9ea7','905301592882','Sayın yetkili; SÜLEYMAN MAKAS  adlı müşterinize 910980337 nolu gönderinizin ORTA SEHPA  ürünü 2 parça halinde Fatura adresinizden 17.04.2025 18:04:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('060e10cc-2885-4129-92b6-0dbe75d81488','4915737582950','Sayın FATMA EROĞLU, 455165840 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455165840\n\nDear FATMA EROĞLU, your shipment with 455165840 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455165840\n\nBICARGO','1','567de155-b820-4225-ac37-23f88ed0500c',NULL),
('0613a1fa-3aab-47ff-a4f4-0789eab8e6f2','4917675899290','Sayın KADİR ÜZER, 371495147 nolu gönderiniz 6951 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371495147\n\nDear KADİR ÜZER, your shipment with 371495147 was delivered to you with the delivery code 6951. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371495147\n\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('061497dc-3dc2-4a01-8265-81ad219f86ee','32470652077','Sayın SEYFETTİN, 268437547 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268437547\n\nDear SEYFETTİN, your shipment with 268437547 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268437547\n\nBICARGO','1',NULL,NULL),
('06163dea-3b53-4ec6-bab2-069c952aab08','905304259202','Sayın yetkili; AHMET GÜNEŞ adlı müşterinize 478300434 nolu gönderinizin kçşe takımı ürünü 4 parça halinde çelikbey inegöl depo adresinizden 19.01.2025 19:09:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('06187da5-1dbf-4ac9-ad2a-f89af0c25056','905075277637','ELMAS KAYA adlı müşterinizin 745411152 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('061a5f8a-cf55-4cb9-9ba2-5afb6b782a70','905336367828','DİLARA ALAMOORİ adlı müşterinizin 982632860 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('061bd626-ee58-477e-8696-1976931a04fc','33768894970','910473991 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6060 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910473991\n\nYour shipment with the number 910473991 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6060. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910473991\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('06215639-4122-456a-9459-623ba1392016','905454259202','SEVCAN SALİ adlı müşterinizin 478863315 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('0621cfca-754e-478e-9572-9faaecd8b699','491721843886','Sayın FIRAT BEY, 98283616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98283616\n\nDear FIRAT BEY, your shipment with 98283616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98283616\n\nBICARGO','1','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL),
('06235671-58d4-4ede-a861-45e85d2d39b4','1111111111','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('062b40c8-4085-401a-8c10-4b1d6984f5dd','905434420016','LUSYA YILDIRIM  adlı müşterinizin 748330948 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL),
('062c4cc7-4f72-4a64-9db7-5dab7e1c30a9','905350617509','Sayın yetkili; SOZDAR AKTAS adlı müşterinize 613592756 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 22.07.2025 14:43:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL),
('062d1ae2-306b-49f4-a370-c5ea1ca803aa','4917656765746','Sayın ÖZLEM AKAY, 371440688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371440688\n\nDear ÖZLEM AKAY, your shipment with 371440688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371440688\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('06305348-3322-4fa8-b2be-574d40caac15','49017640508000','İLETİŞİM\n					Furkan şöför = +905078826436','2','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('06356406-9f00-40f0-8b62-2936926151f1','905078062550','Sayın yetkili; MERT ÇİÇEK adlı müşterinize 598954734 nolu gönderinizin MASA SEHPA ürünü 7 parça halinde RİO FATİH adresinizden 02.09.2025 13:35:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('0636a441-765c-4283-817b-0c04848ebb27','905304259202','ASLAN GÜLŞEN adlı müşterinizin 478647079 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b3402260-d451-4d00-8ed8-35b3af56080f',NULL),
('06371cc0-759f-4ba8-9067-e1b56f93e69e','905454259202','Sayın yetkili; MEHMET ÖZKAN adlı müşterinize 478794904 nolu gönderinizin 2 adet 160 lık baza seti ürünü 8 parça halinde çelikbey inegöl depo adresinizden 14.03.2025 14:11:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('0637c48f-e291-4098-b7ec-fec6c9e6dea2','4915115979347','478161304 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1269 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478161304\n\nYour shipment with the number 478161304 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1269. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478161304\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('06394b01-6551-47e9-a74a-785e9c225dce','905079358213','Sayın yetkili; FATMA BİLGİN adlı müşterinize 745353139 nolu gönderinizin FRİDA ÜÇLÜ KOLTUK 2 AD ürünü 1 parça halinde Fatura adresinizden 07.02.2025 14:28:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('063cfd37-2e5c-4756-91b7-fc637a5beb51','491774822488','Sayın MUAMMER SAYIN, 338822119 nolu gönderiniz 5386 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338822119\n\nDear MUAMMER SAYIN, your shipment with 338822119 was delivered to you with the delivery code 5386. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338822119\n\n\nBICARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('06408155-fb8e-474d-84a0-133f60bc895f','5325000478','Sayın AAAAAAA BBBBBB, 15.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1961017\nŞifre : 1961017\n			\nBİCARGO','1',NULL,'b19610d1-bb71-4c3a-8935-5a85e4c020f0'),
('064616d0-9fbe-4189-adf6-7c3cb82a5bcd','31655504455','428173598 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7076 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428173598\n\nYour shipment with the number 428173598 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7076. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428173598\n\nBICARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('064765b2-822b-4332-b876-762c7efd45cb','4915223076449','Sayın MURAT TEKİN, 371437952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371437952\n\nDear MURAT TEKİN, your shipment with 371437952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371437952\n\nBICARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('064df2a3-a9f3-4a4e-a6d2-8ce3e61e988c','491718442660','Sayın ALİ SARI, 64441153 nolu gönderiniz 6314 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64441153\n\nDear ALİ SARI, your shipment with 64441153 was delivered to you with the delivery code 6314. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64441153\n\n\nBICARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('0657a1be-fcab-4f14-8e2b-d9a2ab280f2a','905454259202','NURTEN-HASAN ÇAKMAK adlı müşterinizin 478644410 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('0658ac7d-fd1a-4bb9-8cea-814acfc71ae5','491723845058','248188933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5013 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248188933\n\nYour shipment with the number 248188933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5013. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248188933\n\nBICARGO','1','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL),
('065c1565-e51e-4738-98f3-fec38f367d79','905075277637','Sayın yetkili; HASAN ÇETİN adlı müşterinize 745810889 nolu gönderinizin ÖZEL MASA 165 CM  ürünü 3 parça halinde GÜMÜŞ MASA adresinizden 24.09.2025 17:38:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('06605662-93e8-48b2-bf0f-92b048f1993e','32485432209','501760253 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2415 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501760253\n\nYour shipment with the number 501760253 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2415. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501760253\n\nBICARGO','1','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL),
('06668a72-376c-4b8b-b111-1966bb5ed317','905325998198','İBRAHİM AKÇORA adlı müşterinizin 614289770 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b413a505-b0a4-4081-803d-a0776c7e84fc',NULL),
('0667170f-b864-4c06-8df0-7f2e343fcff0','905331602195','ANİSSA İFAR  adlı müşterinizin 221924148 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('066729a1-2ee5-4490-9776-b292cdf57a13','436604565532','Sayın MERVE HANIM, 663164000 nolu gönderiniz 7384 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/663164000\n\nDear MERVE HANIM, your shipment with 663164000 was delivered to you with the delivery code 7384. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/663164000\n\n\nBICARGO','1','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL),
('066863d4-1ca2-450a-b3cf-1f49202d8e50','905336367828','MERYEM PEREZ  adlı müşterinizin 982126318 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('066906f5-0777-4aff-ab93-34c9ef41cb14','32476391369','Sayın BATTAL, 412565065 nolu gönderiniz 4308 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412565065\n\nDear BATTAL, your shipment with 412565065 was delivered to you with the delivery code 4308. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412565065\n\n\nBICARGO','1','148ecec2-cd7b-4ac3-88bc-9569bf15505e',NULL),
('066a46d1-d356-4820-855c-9cb9907942d0','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Sandalye bar  ürünü 2 parça halinde Ayka chair  adresinizden 15.09.2025 15:27:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('0671f864-00d1-4738-a18d-9a9045b275c9','905331602195','ŞEYMA ŞANLI  adlı müşterinizin 221883606 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('06736169-18ef-4fec-aa20-02588352fe6c','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin ASOS GOLD KARYOLA ŞİFONYER KOMODİN  ürünü 14 parça halinde ODALIFE  adresinizden 18.09.2025 16:33:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('0676e3dc-ee8b-4f59-a2fd-ca7867c34d46','905304259202','SEVCAN SALİ adlı müşterinizin 47888038 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','945602cc-25e3-4d66-bae2-b70fa6008882',NULL),
('0679ae62-9064-4dd4-86bb-7f52680afcdc','410791552484','982495052 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982495052\n\nYour shipment with the number 982495052 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982495052\n\nBICARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('067d473a-f63f-4f7a-b0cf-0faeb64f4460','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ adlı müşterinize 221746261 nolu gönderinizin 200 cm traverten tv ünitesi  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 25.04.2025 16:05:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('067f1b89-4ac3-438c-baf5-5b8bb8e1e80e','905325998198','MUHAMMER SARI adlı müşterinizin 614345013 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL),
('0680d6e0-690c-4e2c-a498-fe1834ecd522','905304259202','MEHMET RIZA ÇOBANOĞLU adlı müşterinizin 478992248 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('0683948c-1d69-4f76-a98a-d34412037f53','41766507323','Sayın AYŞE BAĞCI, 478365640 nolu gönderiniz 6273 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478365640\n\nDear AYŞE BAĞCI, your shipment with 478365640 was delivered to you with the delivery code 6273. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478365640\n\n\nBICARGO','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('06849584-efa0-47b2-b096-6333287f8865','905300961610','İSHOAK ABU BAKER adlı müşterinizin 126938963 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL),
('06858f7a-72e0-45b8-87e7-dd6e7c9f58f2','33769000460','DRİVER\n					ADNAN\n+905354622027','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('068a6a8d-fccf-41c8-a8aa-03065c4a21c4','93788616359','449354047 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8047 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449354047\n\nYour shipment with the number 449354047 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8047. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449354047\n\nBICARGO','1','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL),
('068a81ce-f6c8-4755-8155-50a12207e30c','31641319611','338882287 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5268 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338882287\n\nYour shipment with the number 338882287 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5268. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338882287\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('068b446f-d230-441e-a601-e7fa7629793e','905325000478','CAVDAROĞLU adlı müşterinizin 412955343 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('068dad0f-7287-4244-8d6e-273abfbd4401','491734737192','Sayın HÜSEYİN ERCAN NAMAL, 428225143 nolu gönderiniz 5431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428225143\n\nDear HÜSEYİN ERCAN NAMAL, your shipment with 428225143 was delivered to you with the delivery code 5431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428225143\n\n\nBICARGO','1','175392bb-7213-43c6-b3da-6b01f5de3b51',NULL),
('06951923-323a-4324-89d0-56c25958c5d5','905075277637','Sayın yetkili; YAKUP YAVUZ adlı müşterinize 74520701 nolu gönderinizin MUTFAK MASA TK ürünü 4 parça halinde Fatura adresinizden 23.10.2025 12:58:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL),
('069f9281-8754-4178-a3d7-f1901bf83f2a','905431026110','Sayın yetkili; AZAT ALKAN adlı müşterinize 35119636 nolu gönderinizin KÖŞE ürünü 5 parça halinde LENTA SOFA adresinizden 19.08.2025 17:21:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('06a8398f-7ea5-4f8e-aa99-b8d00b66658d','05388618969','Sayın ELİZA KADRİ, 786895232 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786895232\n\nDear ELİZA KADRİ, your shipment with 786895232 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786895232\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('06a8aaa3-83a2-4d80-a4ec-57d094e80d26','4917632226340','Sayın SEZGİN- FURKAN ÇULLUK, 162571177 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/162571177\n\nDear SEZGİN- FURKAN ÇULLUK, your shipment with 162571177 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/162571177\n\nBICARGO','1','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL),
('06ae5bb1-7748-41ac-917d-92105fb3f8b2','31614991851','478273603 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5492 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478273603\n\nYour shipment with the number 478273603 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5492. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478273603\n\nBICARGO','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('06afda34-e4c4-4e84-af93-772b0f949047','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin KING PLATIN YATAK 180X200 ürünü 1 parça halinde Fatura adresinizden 27.03.2025 11:47:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('06b0e115-c1b2-443e-96d3-6147cd04a63c','905461661672','Sayın yetkili; ŞENOL AKKOYUN adlı müşterinize 644535273 nolu gönderinizin MASA VE SEHPA ürünü 4 parça halinde Masami Mobilya adresinizden 17.03.2025 11:37:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('06b1043f-7c22-4214-bf33-7065213644be','905363385813','NAFİLE ÖCALAN adlı müşterinizin 976821188 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('06b35237-044b-4745-8908-c33fcd2e5aca','905454259202','HAKAN ŞİMŞEK adlı müşterinizin 47889024 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL),
('06bb4526-63a9-4023-b1dc-53de5c779bc6','491639179546','Sayın FATMA ERDEM, 598161990 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598161990\n\nDear FATMA ERDEM, your shipment with 598161990 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598161990\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('06c2e0c0-3678-4a0c-b4f7-a512c07c8cb8','33764176010','478983907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7597 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478983907\n\nYour shipment with the number 478983907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7597. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478983907\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('06c353d8-b828-435f-9854-88b8f401e565','33786032286','Sayın ÖZKAN BALCI, 478261585 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478261585\n\nDear ÖZKAN BALCI, your shipment with 478261585 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478261585\n\nBICARGO','1','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL),
('06cc9cad-d9d2-4bad-b82f-e7ff071480bc','905301592882','NURAN YILDIRIM adlı müşterinizin 910561299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('06cde3eb-83a6-4160-8312-a82a1c5ff4b6','41788083391','221439268 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6325 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221439268\n\nYour shipment with the number 221439268 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6325. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221439268\n\nBICARGO','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('06cea75b-4ac5-4570-95cf-6b4e1c6fb9af','905461661672','Sayın yetkili; REİNAS HAİDARİ adlı müşterinize 644884110 nolu gönderinizin SANDALYE ürünü 7 parça halinde DURMUŞLAR SANDALYE adresinizden 20.03.2025 14:51:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('06d2a7fb-7cfa-4289-84f0-400a48ad2b31','33652406089','Sayın YENER DOĞAN, 50119540 nolu gönderiniz 1174 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/50119540\n\nDear YENER DOĞAN, your shipment with 50119540 was delivered to you with the delivery code 1174. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/50119540\n\n\nBICARGO','1','30753652-c249-4370-954e-0eb227ea17aa',NULL),
('06d31546-bfaa-485b-b3e1-e342a78d74a7','4915204351936','808830873 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2112 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808830873\n\nYour shipment with the number 808830873 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2112. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808830873\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('06d40530-2a1c-4dbc-aafc-333a5866470a','1111111111','Sayın ENES, 41268257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41268257\n\nDear ENES, your shipment with 41268257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41268257\n\nBICARGO','2','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('06db8743-2be2-4126-8df8-999ad9ebb2a1','905461661672','Sayın yetkili; TARIK TURAN adlı müşterinize 644769101 nolu gönderinizin köşe koltuk ürünü 4 parça halinde ALİ TURAN SOFA adresinizden 20.10.2025 11:33:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('06de7bac-b09f-4294-b424-b809df9a8f69','905388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Koltuk  ürünü 4 parça halinde Fatura adresinizden 11.09.2025 16:18:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('06df49af-fe33-4c2d-bf9c-2dbe11225f86','491778742178','İletişim \n					Şöför Uğur Acar +905424435917','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('06e168fb-1eed-4875-970d-6d733926e7b9','31629103799','Sayın FERHAT SANUÇ, 011573387 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011573387\n\nDear FERHAT SANUÇ, your shipment with 011573387 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011573387\n\nBICARGO','1','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('06e9780e-eef8-4625-abed-568640349e81','905363385813','GÜLNAZ ATMACA adlı müşterinizin 976285905 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('06ec8fd0-e9d1-4b04-b016-229294229635','905078062550','TUĞÇE ÖZKAYA adlı müşterinizin 598587609 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('06eca4db-cb78-4201-9878-841cca8e2a1b','4915204222121','Sayın SAHİN DİNÇ, 371514006 nolu gönderiniz 2109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371514006\n\nDear SAHİN DİNÇ, your shipment with 371514006 was delivered to you with the delivery code 2109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371514006\n\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('06ed0d18-ae36-4f5a-817d-3cb68dfe311b','33625698024','Sayın MİNA ANNABİ, 478278253 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478278253\n\nDear MİNA ANNABİ, your shipment with 478278253 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478278253\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('06f36bd3-f7c1-47a6-be9e-2156f4518233','905079047428','MERHDED AKHTARİ adlı müşterinizin 449680755 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL),
('06f5d99f-77f0-49fd-8ab5-43a8df34c8bf','905313340045','Sayın yetkili; RASİM OZAN adlı müşterinize 437642214 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde dorthome ofis adresinizden 16.06.2025 16:03:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('06fd8c16-01b9-46ba-9f63-68e4020b1db4','905443955915','ŞÜKRAN ALP adlı müşterinizin 614990703 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('06fed078-f164-4620-924b-f4f882f4b14e','491732811270','976765698 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10447 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976765698\n\nYour shipment with the number 976765698 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10447. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976765698\n\nBICARGO','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('070268dd-ef7a-4746-80b6-54a9ae4ab5fd','905461661672','Sayın yetkili; NEGİN EHSANİFARD adlı müşterinize 644206771 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde OSMAN TOSUN KOLTUKÇU adresinizden 11.03.2025 12:07:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('07048ab1-3c00-42f7-a5aa-8c6c68eb9491','31614671032','745409977 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745409977\n\nYour shipment with the number 745409977 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745409977\n\nBICARGO','2','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('070637a3-9b6c-459e-a22f-de10583f92ee','905461661672','ERDAL AKDAĞ(K) adlı müşterinizin 644985861 nolu gönderisi 50 parça halinde yola çıkmıştır.','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('07085596-e045-4305-8afc-1d37565da9e3','905335511664','GÜLSEREN ŞAHİN adlı müşterinizin 371494792 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('070cab1f-1e5c-4869-9dad-8443e33e79e6','905335511664','Sayın yetkili; LYUDMİLA KORUNOVSKA adlı müşterinize 371121937 nolu gönderinizin masa, sehpa ürünü 5 parça halinde SM Tasarım adresinizden 19.08.2025 15:01:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('070df6a1-1b4a-4a2d-9094-1c4c0e18a305','905461661672','Sayın yetkili; ETEM FIRAT YÜKSEL(K) adlı müşterinize 644664237 nolu gönderinizin SANDALYE ürünü 6 parça halinde ELAKSA SANDALYE adresinizden 22.09.2025 15:12:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('07140b28-6247-4524-9f02-00341ad3b3ef','4917681229214','Sayın ADEM  GENÇ, 614553524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614553524\n\nDear ADEM  GENÇ, your shipment with 614553524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614553524\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('07162cd2-3368-4025-93c1-fe4c6e34b6b3','33651400749','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('07184215-835a-4fac-b020-c6d3baf8d7b6','905335511664','Sayın yetkili; SALİM TEKE adlı müşterinize 371884796 nolu gönderinizin masa sehpa ürünü 5 parça halinde SM Tasarım adresinizden 24.04.2025 18:09:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('07193ef3-b2d2-4a23-af4d-40463d1ecf4c','436603846067','501901219 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5816 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501901219\n\nYour shipment with the number 501901219 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5816. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501901219\n\nBICARGO','1',NULL,NULL),
('071bd192-de25-4c2c-9886-6a00b87610f9','905325998198','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREN BAZA ALT SUNTALARI ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('07231eb5-be61-4dab-951c-2bef611b4706','4917662543723','Sayın SEDA ERSÖZ, 644823609 nolu gönderiniz 4389 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644823609\n\nDear SEDA ERSÖZ, your shipment with 644823609 was delivered to you with the delivery code 4389. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644823609\n\n\nBICARGO','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('0724979a-cb43-49be-bef5-e6752fd32efa','905079358213','ÖZKAN KAYACAN adlı müşterinizin 745170376 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e979831-071a-44d0-92b5-b61f986da797',NULL),
('07260a95-1e80-4360-89c1-45e5a86b8199','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin masa  ürünü 3 parça halinde MASAMI adresinizden 28.08.2025 17:47:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('072715c6-1138-46a1-853a-8151133fcbd1','33769768648','338426911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10097 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338426911\n\nYour shipment with the number 338426911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10097. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338426911\n\nBICARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('072998c7-e030-4734-8b7a-887e9ddfa52e','905313340045','ESME GÜNEŞ adlı müşterinizin 437256638 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('072a7638-d87e-4ffc-9dde-c4afff74b8d7','905075277637','Sayın yetkili; SÜVEYLA TARHAN adlı müşterinize 745906539 nolu gönderinizin ASOS GOLD YATAK ODASI  ürünü 22 parça halinde ODALIFE  adresinizden 23.09.2025 13:32:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('072de52c-4cf9-4773-b358-ebc2b7dc96b2','9054439559150','NURKAN AŞIR adlı müşterinizin 614741569 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('0743973d-bc45-4307-a3dc-0fe1f21ce7a9','4917632543868','Sayın İSA ALTUNER(K), 644422105 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644422105\n\nDear İSA ALTUNER(K), your shipment with 644422105 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644422105\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('0743bbb4-978b-4819-84ea-4c27dd0aa72a','4915202902751','Sayın EMEL SERPMEN, 745311878 nolu gönderiniz 7630 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745311878\n\nDear EMEL SERPMEN, your shipment with 745311878 was delivered to you with the delivery code 7630. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745311878\n\n\nBICARGO','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('074ba9e3-97c6-46cb-9f12-7f6ebc794cf2','905454259202','SÜLEYMAN ERDOĞAN adlı müşterinizin 478723327 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','476a35ac-9d9d-4d70-a965-370a980951c2',NULL),
('074bf86b-369a-4757-a933-e8599f0a038a','905331602195','DİJWAR TAŞÇEVİREN adlı müşterinizin 221485829 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('074d2023-3bc3-4d95-9782-5d5c9b22497d','905313340045','Sayın yetkili; ÖZGÜR ÇEŞME adlı müşterinize 437540085 nolu gönderinizin SSH ayak ürünü 1 parça halinde bicargo depo adresinizden 16.10.2025 15:46:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fb70c94c-78cc-4a1f-9b09-616f804975bb',NULL),
('074f93d7-2c40-49bc-8c55-8d2116931743','905075277637','NİLÜFER YAMAN SSH  adlı müşterinizin 745525130 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('075db546-31f8-446b-915e-60a925168bac','004915733909244','Sayın EMEL AYKAÇ, 735258843 nolu gönderiniz 6211 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735258843\n\nDear EMEL AYKAÇ, your shipment with 735258843 was delivered to you with the delivery code 6211. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735258843\n\n\nBICARGO','2','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL),
('075e7769-ddca-4ce3-a9fb-868936375a8f','491626234457','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('075f386f-9766-42a7-a201-a1ce9e4bc8ab','31614272440','Sayın AHMET GÜVEN , 657947887 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657947887\n\nDear AHMET GÜVEN , your shipment with 657947887 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657947887\n\nBICARGO','1','62f77eb8-8c8f-460b-b294-ae8437220ece',NULL),
('0760a9ed-039d-47da-a0c0-9ddd513de7fb','33613166090','Sayın NURKAN AŞIR, 614741569 nolu gönderiniz 5001 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614741569\n\nDear NURKAN AŞIR, your shipment with 614741569 was delivered to you with the delivery code 5001. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614741569\n\n\nBICARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('0766e8e6-30bf-404a-92a9-fb4f10b9cc9e','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Traverten tv ünite ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:33:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('07676c14-8ad3-4ba5-916d-2494248f57e6','905331602195','SAVYO RAFFO adlı müşterinizin 22164822 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('076834db-abd2-4de4-badc-3a9f4f4ff74f','33784178504','Sayın GÜLCAN AYDIN, 976942444 nolu gönderiniz 10972 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976942444\n\nDear GÜLCAN AYDIN, your shipment with 976942444 was delivered to you with the delivery code 10972. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976942444\n\n\nBICARGO','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('0774808a-7dde-4bf4-ab6a-c97c7e33682d','033751045942','734380041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2078 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734380041\n\nYour shipment with the number 734380041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2078. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734380041\n\nBICARGO','2','8cb3e6c1-dad7-49e4-8443-0c03ea610bf7',NULL),
('0774be20-a5cf-4d01-8072-2b178b40b166','491621337891','Sayın NURİ ÖZKAN, 347986383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/347986383\n\nDear NURİ ÖZKAN, your shipment with 347986383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/347986383\n\nBICARGO','1','792fcb83-3583-425f-8515-80f98a19c7f3',NULL),
('07769536-e57e-4c77-aec7-03ece6db7898','4915223076449','Sayın MURAT TEKİN, 371437952 nolu gönderiniz 5228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371437952\n\nDear MURAT TEKİN, your shipment with 371437952 was delivered to you with the delivery code 5228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371437952\n\n\nBICARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('0776fa4c-0542-4743-b7c8-93d95c9ed965','905304259202','KENAN KARAKAYA adlı müşterinizin 478805224 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL),
('0782dbea-136f-4709-8ace-499029f7fed9','905304259202','Sayın yetkili; İNCİ TOKGÖZ adlı müşterinize 478240909 nolu gönderinizin 100x200 set ürünü 3 parça halinde BİCARGO DEPO adresinizden 30.04.2025 16:08:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('0783ee6a-5983-4e4d-8e2c-cbca828dc7e0','32490219325','428538007 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7897 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428538007\n\nYour shipment with the number 428538007 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7897. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428538007\n\nBICARGO','1','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL),
('078cfae9-94f5-4389-b170-13dea202a260','905349208933','Sayın yetkili; EMRAH ERAYDIN adlı müşterinize 127395599 nolu gönderinizin sandalye ve masa ayağı ürünü 5 parça halinde MELYA adresinizden 20.02.2025 13:30:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('078d61cc-1c73-45b6-a22d-6c356e761b87','4917670549547','Sayın FURKAN BAŞTEPE, 745778561 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745778561\n\nDear FURKAN BAŞTEPE, your shipment with 745778561 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745778561\n\nBICARGO','1','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL),
('0791cd8c-b6e2-49b4-87bf-c42f4c9f3c64','436609855451','DRİVER\n					ADNAN\n+905354622027','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('07958350-aa91-4fe4-93d6-bce387ee1f2e','491777459484','Sayın ASUDE FİLİZER, 613786429 nolu gönderiniz 3851 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613786429\n\nDear ASUDE FİLİZER, your shipment with 613786429 was delivered to you with the delivery code 3851. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613786429\n\n\nBICARGO','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('07973add-b4b3-4efb-b88f-089a7c751b54','905304259202','Sayın yetkili; BELKIS DUMAN adlı müşterinize 478662278 nolu gönderinizin 1 ADET KANEPE ürünü 1 parça halinde çelikbey inegöl depo adresinizden 29.04.2025 10:53:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('079a6254-7700-4f2f-b982-033edd5c30ab','436603406293','Sayın yetkili; SEVDE SOYUÖZ adlı müşterinize 675253974 nolu gönderinizin koltuk ürünü 3 parça halinde LIONSE  adresinizden 20.08.2025 15:20:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('079bd20d-c65a-480f-91dd-e20c4c300522','491632336304','Sayın MİNE GÖKÜZÜM, 982992264 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982992264\n\nDear MİNE GÖKÜZÜM, your shipment with 982992264 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982992264\n\nBICARGO','1','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL),
('07a2d67d-904d-4147-a90c-4856f56503b4','905304259202','SEMİH ELMAS adlı müşterinizin 478173801 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('07a5753a-1037-4242-9601-e17e5caa9d6c','4917641547802','Sayın ENVER HAN ALKAN, 37146102 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37146102\n\nDear ENVER HAN ALKAN, your shipment with 37146102 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37146102\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('07a82d90-ede2-45d1-ba81-46e313818907','31615081540','644490677 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7080 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644490677\n\nYour shipment with the number 644490677 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7080. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644490677\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('07a9ae4a-8441-4cbc-b2f2-a3c9bfb39e08','4915234223357','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('07b07f7d-9083-4293-9d66-224969ee1dd6','31641319611','338411689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338411689\n\nYour shipment with the number 338411689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338411689\n\nBICARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('07b4b37f-d3ce-408f-9506-5eda4a10f191','905451571652','Sayın yetkili; VİET ANH THAİ adlı müşterinize 531250587 nolu gönderinizin BANKO ürünü 5 parça halinde AHMET adresinizden 23.09.2025 17:54:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('07b841fd-3b9d-4864-aae8-1f85c0f34d7c','905363385813','BURHAN SAĞLAM adlı müşterinizin 976593604 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('07bcdc0b-8fef-4d54-a4f1-35ab3cec7da9','905304259202','ÖMER KOLAT adlı müşterinizin 478593603 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','28745864-aae9-4957-9346-b61332e96fff',NULL),
('07bdc8ce-6894-4529-89e4-655944d1b77d','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin KİTAPLIK ürünü 3 parça halinde Sehpa İbrahim  adresinizden 13.11.2024 12:49:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('07bfc8fd-1bd6-4523-97cc-1f5ff7756261','4917670954169','598148104 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3046 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598148104\n\nYour shipment with the number 598148104 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3046. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598148104\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('07c510b2-9535-4215-b535-8851501f01d9','4369919159261','Sayın SEYİT GENÇALİOĞLU , 221476651 nolu gönderiniz 1008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221476651\n\nDear SEYİT GENÇALİOĞLU , your shipment with 221476651 was delivered to you with the delivery code 1008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221476651\n\n\nBICARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('07c87ef2-3081-4a95-af94-45293138bab2','4917617137029','644714329 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10256 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644714329\n\nYour shipment with the number 644714329 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10256. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644714329\n\nBICARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('07c8e3e9-a4f2-45d9-be5c-2d4dc3074315','905331602195','AİCHEH EL-KATİB adlı müşterinizin 221416475 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('07ca4838-dee7-45e5-99ca-02f115ed993b','491791457419','Sayın CANSEL KUŞ, 644684020 nolu gönderiniz 6347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644684020\n\nDear CANSEL KUŞ, your shipment with 644684020 was delivered to you with the delivery code 6347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644684020\n\n\nBICARGO','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('07cfce8e-8370-4a3d-bc71-cbf4f98a5ae8','905363385813','EVMOURZAEVA İMAN adlı müşterinizin 976751266 nolu gönderisi 4 parça halinde yola çıkmıştır.','1',NULL,NULL),
('07d8054a-d3cc-44e7-81d5-f1acad29fa10','491601818240','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('07da91c5-3be5-4f81-bcdc-49857ce77376','00491726977318','735500422 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2154 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735500422\n\nYour shipment with the number 735500422 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2154. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735500422\n\nBICARGO','2','563299ed-822d-490a-97cc-eb08990a8bdb',NULL),
('07db3cf5-d2a2-4afb-ae20-91a71c32ed51','4915737597078','Sayın ELİF GÖKTAN, 505770346 nolu gönderiniz 9699 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505770346\n\nDear ELİF GÖKTAN, your shipment with 505770346 was delivered to you with the delivery code 9699. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505770346\n\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('07dccaaf-177b-45c3-9c34-822be3b352b0','905331602195','MÜCAHİD GÜZEL adlı müşterinizin 22162472 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('07e184ca-ef49-4186-ad07-597969dc00e6','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 2 ADET ÜÇLÜ KOLTUK ürünü 3 parça halinde Fatura adresinizden 17.06.2025 12:11:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('07e35539-c8e0-4744-adb0-0df8117e11fd','491626234457','910697257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910697257\n\nYour shipment with the number 910697257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910697257\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('07e507dc-f739-472e-82ff-3ab6b57d4e03','905301592882','RUKEN ŞAKIR adlı müşterinizin 910187142 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('07e5ff8b-0c0c-4be9-90ee-8aa5afb59e5f','905335511664','HÜMEYRA ZEYREK adlı müşterinizin 37152330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('07e6eeb9-5098-4f0d-8e4d-6c8d077e793f','4917672726152','371716908 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371716908\n\nYour shipment with the number 371716908 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371716908\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('07ef994b-8b4e-45b9-90a0-07a749a3b083','905454259202','DEMET DEDE adlı müşterinizin 478409459 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('07efe6de-35c9-4fa7-a499-f0a86e521871','46737863155','Sayın MOHAMMED ASİF KARİMİ, 982501931 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982501931\n\nDear MOHAMMED ASİF KARİMİ, your shipment with 982501931 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982501931\n\nBICARGO','1',NULL,NULL),
('07f0b760-5ee5-4043-85b0-fe676fb0f5db','4917661977409','Sayın Arbesa, 982653067 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982653067\n\nDear Arbesa, your shipment with 982653067 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982653067\n\nBICARGO','1','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL),
('07f409b6-dddf-497d-a328-5d40bdd52daf','4915257652315','248653667 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10601 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248653667\n\nYour shipment with the number 248653667 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10601. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248653667\n\nBICARGO','1',NULL,NULL),
('07f424d3-13f8-45d8-b2c9-4f3eca96b4b1','491742419200','437870707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3759 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437870707\n\nYour shipment with the number 437870707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3759. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437870707\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('07f688f1-15af-41cd-8f92-fd8dc4ccfa59','905301592882','CENGİZ SAKALI  adlı müşterinizin 910926193 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL),
('07f779f2-a037-446a-92f1-fc26f3c43b98','4915202016225','486405325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5157 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486405325\n\nYour shipment with the number 486405325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5157. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486405325\n\nBICARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('07f93285-4b5e-459a-9996-a30c27f9de59','004917616377875','735814007 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7232 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735814007\n\nYour shipment with the number 735814007 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7232. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735814007\n\nBICARGO','2','67f3e803-506e-4fab-b999-051b7a0368e2',NULL),
('07f95c0a-b3f4-43f7-b5a3-55102101b944','00491754696524','248143023 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8571 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248143023\n\nYour shipment with the number 248143023 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8571. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248143023\n\nBICARGO','2','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL),
('07fc08fb-2627-4665-84c3-79ebf70f75c2','4917680448730','449704156 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4144 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449704156\n\nYour shipment with the number 449704156 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4144. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449704156\n\nBICARGO','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('0800ed1a-6a1f-455c-8b27-5c59d2c32e29','905336367828','VARELA FURTADO ELLİS adlı müşterinizin 982716246 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','05621906-10fc-483c-89a6-f51e344e576b',NULL),
('08029f20-614c-417d-a99c-cb8d2129362d','33652891560','Sayın AYDIN İLKNUR, 745545386 nolu gönderiniz 9887 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745545386\n\nDear AYDIN İLKNUR, your shipment with 745545386 was delivered to you with the delivery code 9887. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745545386\n\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('0804d81d-dd3b-48c7-877d-84ae78440b26','4917661070525','Sayın AYSEL ASLAN, 745606440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745606440\n\nDear AYSEL ASLAN, your shipment with 745606440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745606440\n\nBICARGO','1','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL),
('0809fe17-66ed-4384-aecc-fe38f370b691','905075277637','FAHREDDİN ÖZENC adlı müşterinizin 745283309 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL),
('080cd7af-0a5c-422f-ad1c-257c1c68af61','905075277637','ERAY ASLANCAN adlı müşterinizin 745294810 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('08113111-772a-4a89-a3bb-4e33681780d6','491778682427','Sayın BELKIS DUMAN, 478662278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478662278\n\nDear BELKIS DUMAN, your shipment with 478662278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478662278\n\nBICARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('0811fa06-becc-4a33-ad70-0a40259bb7df','31623610676','221417499 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221417499\n\nYour shipment with the number 221417499 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221417499\n\nBICARGO','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('08143b3a-1866-48d0-8ae6-12c33f397c48','905421855834','SEZER DOĞAN adlı müşterinizin 338474620 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('0814ffec-15a2-4089-9d51-b300681ff1c2','4917644265408','Sayın MEHMET KIRMALI SSH, 745961245 nolu gönderiniz 10773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745961245\n\nDear MEHMET KIRMALI SSH, your shipment with 745961245 was delivered to you with the delivery code 10773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745961245\n\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('08173e40-82c3-4cc5-8807-570adabccd90','905301592882','BERKAN AĞIRMAN adlı müşterinizin 910899167 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('081eac75-5c40-4206-b7c2-9e9d64ad5a23','4915236632469','79354282 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8215 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/79354282\n\nYour shipment with the number 79354282 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8215. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/79354282\n\nBICARGO','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('0822beaf-f55c-4df8-bd58-c49fac6b44cd','33695498919','Sayın ZİYA ALTIN, 745390643 nolu gönderiniz 9493 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745390643\n\nDear ZİYA ALTIN, your shipment with 745390643 was delivered to you with the delivery code 9493. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745390643\n\n\nBICARGO','1','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL),
('0823cc0e-ead3-4c9f-892e-723a7a88226f','4915209045743','Sayın MEDİNE ÖKDEN, 127639932 nolu gönderiniz 2820 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127639932\n\nDear MEDİNE ÖKDEN, your shipment with 127639932 was delivered to you with the delivery code 2820. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127639932\n\n\nBICARGO','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('0827c7ab-5d6a-497e-b48b-dffd36ac5bf6','491606817658','Sayın AKIN COŞKUNSU, 371365427 nolu gönderiniz 8032 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371365427\n\nDear AKIN COŞKUNSU, your shipment with 371365427 was delivered to you with the delivery code 8032. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371365427\n\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('082a19d9-1773-4394-bad9-62e17a715219','905304259202','FARUK EMRE KAYA adlı müşterinizin 478418480 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL),
('082d528d-a9ae-4382-a413-768f2488e608','4917680857659','Sayın ISMAİL REMMO, 613813844 nolu gönderiniz 6120 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613813844\n\nDear ISMAİL REMMO, your shipment with 613813844 was delivered to you with the delivery code 6120. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613813844\n\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('0831595c-1d49-4c46-aa8c-706b9f15a20a','4915202902751','745311878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7630 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745311878\n\nYour shipment with the number 745311878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7630. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745311878\n\nBICARGO','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('08334e5c-5c2f-48e4-8064-9b6a44d66650','905075277637','NİHAT SEMOĞLU adlı müşterinizin 745175736 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL),
('08336451-8749-416e-8666-6237fe1d3b0d','4363573467467362','248883377 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5232 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248883377\n\nYour shipment with the number 248883377 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5232. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248883377\n\nBICARGO','2','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL),
('08359ae1-0c9c-4f5f-879b-bd77fb4060cc','33635914929','745276257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745276257\n\nYour shipment with the number 745276257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745276257\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('08456f76-62d0-405b-9e39-877465450ebc','41788083391','221481972 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10498 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221481972\n\nYour shipment with the number 221481972 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10498. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221481972\n\nBICARGO','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('0848d4ca-7d60-4bf4-b165-1ef19fdc360d','905336367828','MEHMET SÜZEN  adlı müşterinizin 98238273 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('0854898e-a14e-4260-bfb2-265da7fc5b65','905078062550','Sayın yetkili; TUBA BAŞKAŞ SSH adlı müşterinize 598876994 nolu gönderinizin masa yarım tabla ssh ürünü 1 parça halinde RİO FATİH adresinizden 20.08.2025 13:52:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('08587da1-9ed3-418e-97a4-93d8e1cf7dd6','905443955915','ŞADİYE GÖLEÇ adlı müşterinizin 61420700 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('085cf4dc-02e5-40dd-9703-9b0de6c81291','491785990575','465237157 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3932 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465237157\n\nYour shipment with the number 465237157 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3932. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465237157\n\nBICARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('086116c5-f0dc-475f-af36-d4a3e8bb4c3e','905075277637','SEYİTHAN ASLAN adlı müşterinizin 745212688 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('08629be4-c936-441c-ac44-b3410b15f9fd','905454259202','Sayın yetkili; FEHMİYE KESERCİ adlı müşterinize 478839575 nolu gönderinizin 2PK SSH ürünü 2 parça halinde çelikbey inegöl depo adresinizden 08.03.2025 16:24:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('0865291b-d334-45ae-a40f-26a93a28936c','436603775115','437133708 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10120 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437133708\n\nYour shipment with the number 437133708 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10120. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437133708\n\nBICARGO','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('08681ca0-019e-4629-856b-d2814b7375c0','4915758196530','Sayın RECEP DAMAR, 745912057 nolu gönderiniz 10869 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745912057\n\nDear RECEP DAMAR, your shipment with 745912057 was delivered to you with the delivery code 10869. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745912057\n\n\nBICARGO','1','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL),
('08683862-75f0-4770-bb63-44a7ac1eeda7','905454259202','Sayın yetkili; SEMİH ELMAS adlı müşterinize 478173801 nolu gönderinizin KÖŞE TASKIMI-masa-sandalye ürünü 11 parça halinde çelikbey inegöl depo adresinizden 03.02.2025 20:51:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('086cc92a-784c-481d-b2fc-822a272ca05c','905078062550','TUĞÇE ÖZKAYA adlı müşterinizin 598587609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('086fd0e6-b9d5-4653-b498-376ad2d21357','905079047428','NOM HASSAN ABDULE adlı müşterinizin 449806465 nolu gönderisi 11 parça halinde yola çıkmıştır.','1',NULL,NULL),
('08755bb7-8462-4888-9683-ee46a78ec594','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ adlı müşterinize 221746261 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 25.04.2025 16:05:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('087bae08-4ae5-4e1d-b50d-342cb3752640','905331602195','Sayın yetkili; BOUAZZA SANNA  adlı müşterinize 221264394 nolu gönderinizin Milas masa  ürünü 2 parça halinde Fatura adresinizden 18.12.2024 16:19:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('087db1be-1ae7-4d0a-ab09-bd0bf1cdfea9','491733758651','Sayın KADER YILDIZ, 765600734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765600734\n\nDear KADER YILDIZ, your shipment with 765600734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765600734\n\nBICARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('0883fd9e-125e-4507-b9b9-6bbc886e1b06','31641319611','Sayın HÜLYA MEŞE (SSH), 338882287 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338882287\n\nDear HÜLYA MEŞE (SSH), your shipment with 338882287 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338882287\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('08884a7e-9266-44a8-8570-484bc33942ae','905365908694','Sayın yetkili; TCR WARENHANDEL GMBH (MARTİN CREUTZBURG) adlı müşterinize 223853931 nolu gönderinizin KOLİ ürünü 155 parça halinde Fatura adresinizden 11.08.2025 11:51:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('0888fa44-5041-44d3-a391-a71c8321e10d','4917664963406','Sayın ETEM FIRAT YÜKSEL(K), 644664237 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644664237\n\nDear ETEM FIRAT YÜKSEL(K), your shipment with 644664237 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644664237\n\nBICARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('088e1724-66dd-4870-a708-92762acc2d23','33753285709','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('0893492e-946a-46a2-975c-e3f7b6cf8c02','905304259202','AHMET ÖZDEMİR adlı müşterinizin 478622556 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('0898d694-4789-4dfb-ba85-aaf61c1af3a7','33619785904','478681830 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8309 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478681830\n\nYour shipment with the number 478681830 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8309. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478681830\n\nBICARGO','1','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL),
('089f060b-d663-4da9-94aa-c9b455e05551','905078062550','SEMANUR GÜLER adlı müşterinizin 598781522 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('08a04309-1864-48cf-9cc9-cb4b9be5e3b2','905079358213','GÜLİZAR KOCADAĞ adlı müşterinizin 745816008 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL),
('08a217d1-1649-4613-a5e6-e310e4ce42c0','4917670801496','Sayın SİNEM ULUSOY, 37183091 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37183091\n\nDear SİNEM ULUSOY, your shipment with 37183091 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37183091\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('08a3441b-ca62-4b92-88fe-20378dedc299','491791457419','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('08a8bece-4016-4a33-ac5a-1bb96a26a028','905335708965',' adlı müşterinizin 248425122 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL),
('08a91982-00e2-4e24-933d-cd937c7e933d','905451571652','Sayın yetkili; TÜRKAN ÖZER adlı müşterinize 531983278 nolu gönderinizin Mfour sandalye ürünü 3 parça halinde M four sandalye adresinizden 20.06.2025 12:28:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('08a9e6c2-fb3e-4661-bed8-83406a38a963','31631493312','750951041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3058 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750951041\n\nYour shipment with the number 750951041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3058. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750951041\n\nBICARGO','1','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL),
('08aadd38-35d1-45de-a6ce-70687d88d045','905421855834','Sayın yetkili; ZEKERİYA SOYER adlı müşterinize 338878009 nolu gönderinizin Sahra Baza Başlık Yatak Seti ürünü 4 parça halinde Bed Home adresinizden 09.05.2025 16:50:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('08ac83af-9e36-4674-8d73-139a7a07ca3b','4915788014296','428752676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4529 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428752676\n\nYour shipment with the number 428752676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4529. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428752676\n\nBICARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('08adffac-3d2a-4b72-a97d-02b90bd3e921','905079358213','SALİHA KURT adlı müşterinizin 745251111 nolu gönderisi 74 parça halinde yola çıkmıştır.','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('08b4f858-74a6-4975-ad4e-21090eaabd9d','491628991076','Sayın DİLEK KHABİL, 765729280 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765729280\n\nDear DİLEK KHABİL, your shipment with 765729280 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765729280\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('08b73f95-5a34-49d4-a523-25e36d120dde','905331602195','AYŞE TÜRKMEN  adlı müşterinizin 221507815 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('08b7ed0b-5acb-4ac5-be5c-3f4f39fd4826','32484781672','221345365 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6223 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221345365\n\nYour shipment with the number 221345365 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6223. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221345365\n\nBICARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('08ba8d43-59a3-4c54-b65d-707ed965fe48','491729060799','478746196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478746196\n\nYour shipment with the number 478746196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478746196\n\nBICARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('08be4644-5a65-4d82-bb46-7bb8f880e6f7','905539740010','Sayın yetkili; ALMANYA HÜLYA ŞENEL  adlı müşterinize 01169597 nolu gönderinizin 180x 200  ürünü 1 parça halinde döşek adresinizden 15.10.2025 12:47:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93386b76-7f5f-4ccd-845c-f624d343a1ea',NULL),
('08c2200a-d357-44a7-b6cd-9ce192808d0e','4368181727723','Sayın LOWENSTERN, 412990147 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412990147\n\nDear LOWENSTERN, your shipment with 412990147 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412990147\n\nBICARGO','1','def82a96-8956-42bc-885f-988dfa22f789',NULL),
('08c67e13-1766-4e32-8b90-9ec06c33dfe5','4915151400304','ŞÖFÖR NUMARASI\n					+905467896981','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('08c89400-840e-4e20-b426-9d717b2d533d','905363385813','RUKİYE DARDANOĞLU adlı müşterinizin 976521198 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL),
('08c8d179-8ab6-48ae-a13e-da79acdd2b3f','491721850583','Sayın MUSA YAMAN, 745743577 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745743577\n\nDear MUSA YAMAN, your shipment with 745743577 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745743577\n\nBICARGO','2','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('08caab78-e570-49c3-80d2-b5dbd7859b82','004917616377875','Sayın SAİT BEY, 735814007 nolu gönderiniz 7232 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735814007\n\nDear SAİT BEY, your shipment with 735814007 was delivered to you with the delivery code 7232. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735814007\n\n\nBICARGO','2','67f3e803-506e-4fab-b999-051b7a0368e2',NULL),
('08cbf815-28dc-45bd-99d9-ee10c48e56d0','905335511664','Sayın yetkili; SEMİH YEŞİLYAYLA adlı müşterinize 371716908 nolu gönderinizin masa ürünü 2 parça halinde SM Tasarım adresinizden 24.09.2025 17:33:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('08cc3e91-db6d-487a-990b-b70b1175d54f','4917630112093','910572875 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1154 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910572875\n\nYour shipment with the number 910572875 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1154. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910572875\n\nBICARGO','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('08cce718-7f4b-4b16-a650-88e95e35731a','905331602195','AHMED HAMEL  adlı müşterinizin 221413192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('08cd3f18-0f66-4b41-aea6-2bea8ae76457','33656867217','Sayın ÜNAL KÖR , 745660870 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745660870\n\nDear ÜNAL KÖR , your shipment with 745660870 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745660870\n\nBICARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('08cfd759-09b9-4d7f-bbc4-5a36f32f414a','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 43750462 nolu gönderinizin Sandalye ssh ürünü 3 parça halinde HATEM sandalye adresinizden 23.10.2025 15:56:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a916a88f-8a03-4757-aca9-0c0d2c64a51b',NULL),
('08d1aac5-44ed-49bf-a932-b1cedda1e37f','905079358213','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM YEMEK ODASI + ORTA SEHPA  ürünü 10 parça halinde ACCA adresinizden 27.05.2025 17:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('08d2ac30-b5af-44bd-9231-dcbe8b50dddf','31648989014','Sayın ONUR COŞKUN , 65754067 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65754067\n\nDear ONUR COŞKUN , your shipment with 65754067 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65754067\n\nBICARGO','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('08d3be13-7637-47d1-a8cc-5a71383227d6','905517075149','ERKUT PEKTAŞ adlı müşterinizin 478474988 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('08d6474e-5fef-4d5e-a703-9050077d0a4a','4917640388186','Sayın RAMAZAN HAVAÇEKEN(K), 644879098 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644879098\n\nDear RAMAZAN HAVAÇEKEN(K), your shipment with 644879098 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644879098\n\nBICARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('08daff28-af0c-4043-b9b0-61e7ce8fb616','491739366502','371287728 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10344 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371287728\n\nYour shipment with the number 371287728 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10344. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371287728\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('08db8577-f928-48eb-a1a2-daba22b8285b','4847477382939394','Sayın CAVİT , 412129107 nolu gönderiniz 5543 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412129107\n\nDear CAVİT , your shipment with 412129107 was delivered to you with the delivery code 5543. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412129107\n\n\nBICARGO','2','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('08df9cf2-4675-4cd7-adb2-1e43fa9e62b2','491748787633','Sayın KHALED SEMMO , 613175888 nolu gönderiniz 1056 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613175888\n\nDear KHALED SEMMO , your shipment with 613175888 was delivered to you with the delivery code 1056. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613175888\n\n\nBICARGO','2','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('08dfd860-36dd-4952-8ebd-3e4b41a7a08d','905079358213','ÜNAL KÖR  adlı müşterinizin 745660870 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('08e00744-bef4-420f-bb21-2b788eb6ca85','4917624915178','614636969 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6042 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614636969\n\nYour shipment with the number 614636969 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6042. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614636969\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('08e049da-e813-4c6b-8fa4-7e84cfc02d99','905079358213','Sayın yetkili; YASEMİN YILDIZ adlı müşterinize 745968655 nolu gönderinizin SSH KOLTUK KASASI ürünü 2 parça halinde Fatura adresinizden 24.03.2025 15:15:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('08e460b9-5f30-47a9-b493-a1e0784a8062','4917662248908','745318139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6954 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745318139\n\nYour shipment with the number 745318139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6954. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745318139\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('08e5de57-0e08-45ed-a0e5-b463cfc43f43','4915733902660','Sayın NECİP DELİPOYRAZ , 910943161 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910943161\n\nDear NECİP DELİPOYRAZ , your shipment with 910943161 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910943161\n\nBICARGO','1','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL),
('08e98320-7bf5-450e-bb38-b6cc5940c4a9','905517075149','Sayın yetkili; MURAT KALKAN adlı müşterinize 478520504 nolu gönderinizin LENA BAZALI KARYOLA ürünü 5 parça halinde SENS adresinizden 07.10.2025 16:39:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('08ebe6e7-8aad-4834-beb5-78288911c2be','905325000478','SALONİ adlı müşterinizin 412989879 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('08ed7817-b505-4508-9799-70d8e776c376','491639801426','Sayın EURO STAR MOBEL, 107593305 nolu gönderiniz 9421 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/107593305\n\nDear EURO STAR MOBEL, your shipment with 107593305 was delivered to you with the delivery code 9421. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/107593305\n\n\nBICARGO','1','56934bb2-8807-472a-9265-23392c22511f',NULL),
('08f27896-6f5c-4be9-bbba-a174aa8a85a7','33646824181','22186590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6644 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22186590\n\nYour shipment with the number 22186590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6644. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22186590\n\nBICARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('08f3fd8c-8727-430c-95e9-71c4e4879cf6','905443955915','Sayın yetkili; ALAETTİN BAYKAN adlı müşterinize 614396499 nolu gönderinizin NOVİTA FELİX KÖŞE TAKIMI (295*215) ürünü 2 parça halinde Fatura adresinizden 27.11.2024 14:17:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('08f4067c-a60f-4431-8780-59057719c818','905335511664','Sayın yetkili; AHMET AĞIRMAN adlı müşterinize 371747945 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 26.08.2025 10:41:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e1bcc6c-d49a-4ede-abe4-f49246a8b1ef',NULL),
('08f706fe-5fb2-4104-8ab5-b2928db68792','905336367828','NURTEN MENEKŞE  adlı müşterinizin 982106314 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('08f9e8ab-4538-405f-b159-cea24f1bad12','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin 2 ADET BERJER ürünü 2 parça halinde BAYSA KOLTUK adresinizden 27.10.2025 16:39:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('08fc3d87-3029-4877-855e-9e4ca363aa17','11111111111','Sayın ENİSA YEKTA , 923436295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/923436295\n\nDear ENİSA YEKTA , your shipment with 923436295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/923436295\n\nBICARGO','2','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('0900e95e-a239-4141-abfc-2b3dbdb952d0','31619691823','478839575 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4290 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478839575\n\nYour shipment with the number 478839575 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4290. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478839575\n\nBICARGO','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('0912f433-e555-4330-8384-a7e8fa7611f6','905078062550','ERTAN TOSUNER adlı müşterinizin 598454821 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('09174228-c09e-4b7b-9f5a-95233e1ba161','33658512711','745483178 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745483178\n\nYour shipment with the number 745483178 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745483178\n\nBICARGO','1','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL),
('091c4f97-d3c8-45c4-8ec8-511f36a16847','905434420016','CAMELİA BESSAL adlı müşterinizin 748663171 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('092686b0-8032-49ac-b27e-029c9886575f','905331602195','Sayın yetkili; SALİHA ŞERİF adlı müşterinize 221651438 nolu gönderinizin 90x160 msm 01 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:17:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ca39cb3-cb01-4190-946c-6ebea8eb1b68',NULL),
('09279b6c-7a0b-473a-b6e3-ccb4d2ccb36e','905331602195','Sayın yetkili; BABERIH LEİLA  adlı müşterinize 221164226 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 27.01.2025 11:37:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('092b4910-68ed-48be-98c6-3f4c1e0853ec','905331602195','Sayın yetkili; MUSA BEKİM adlı müşterinize 221624652 nolu gönderinizin 100x26 dresuar ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:45:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('092fb784-84a5-4e19-b806-0978f278b304','905335511664','Sayın yetkili; EBRU AKSU adlı müşterinize 371117320 nolu gönderinizin sandalye ürünü 4 parça halinde Sandalyeci Bekir adresinizden 02.09.2025 12:10:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a5af105-d0c8-46fd-ad7c-0aa1fac82094',NULL),
('0930742f-f49b-4f10-9740-0bf4dc564feb','4915202074220','858200454 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4856 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858200454\n\nYour shipment with the number 858200454 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4856. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858200454\n\nBICARGO','1','3e323a55-ba70-413e-929d-bc1527816bbc',NULL),
('0931ebe8-d874-4d9e-8d5a-92772e2105fb','905304259202','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin yataklar ve sehpa ürünü 5 parça halinde Fatura adresinizden 24.06.2025 13:23:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('0931f935-4495-49b5-a664-615979833c1f','4915737531059','Sayın CAN ILKAY IBOV, 221225501 nolu gönderiniz 8403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221225501\n\nDear CAN ILKAY IBOV, your shipment with 221225501 was delivered to you with the delivery code 8403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221225501\n\n\nBICARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('093b57e7-1e28-44fd-87ab-eca569e7767d','905350349029','MERT ALİ YÖNTEM adlı müşterinizin 203151723 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('09497b54-013c-49c2-b09a-4b830d42e353','905079358213','Sayın yetkili; YUSUF ALAN adlı müşterinize 745130019 nolu gönderinizin MONNA YEMEK ODASI ürünü 9 parça halinde Fatura adresinizden 18.02.2025 19:06:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('094a1bde-bead-4df5-bb8e-fd44aaed11d3','905304259202','VELİ ÖKTEN adlı müşterinizin 478284503 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('09502b4f-55b6-4957-8854-680e85cde3aa','905301592882','Sayın yetkili; NESLİHAN KÖSEM		 adlı müşterinize 910316067 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 15.04.2025 10:40:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('095c8dba-bc90-492d-b8a4-d8fc83aaba6e','905454259202','AHMET ÖZDEMİR adlı müşterinizin 478622556 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('095de619-f00b-43dd-a990-7f58137de253','905313340045','IVANA ELİAS adlı müşterinizin 437426295 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('0966fea0-b2d3-48e5-a991-16b6ccc53627','905394878216','HÜLYA ÇELİK  adlı müşterinizin 517910414 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','398f18a6-4116-4296-8890-4d154fc30789',NULL),
('096a4592-dfdc-4ec2-aea7-5035c92f6472','905078062550','ZEHRA ÜNAL adlı müşterinizin 598320188 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('096a8e3d-2103-4a1a-a095-a32b516a4d27','905301592882','Sayın yetkili; KUBİLAY AKTAR adlı müşterinize 910473991 nolu gönderinizin SUNSHİNE BAZA ürünü 4 parça halinde Fatura adresinizden 26.06.2025 13:12:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('0971b58b-aeee-49a8-aa49-d16dd8eaf82c','4917680173048','Sayın ÖMER ÇALIK, 745127322 nolu gönderiniz 3417 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745127322\n\nDear ÖMER ÇALIK, your shipment with 745127322 was delivered to you with the delivery code 3417. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745127322\n\n\nBICARGO','1','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL),
('09768751-191e-49f4-b627-b4fdf648e312','905301592882','Sayın yetkili; YASİN YAVAŞ adlı müşterinize 910599740 nolu gönderinizin MT95 ORTA SEHPA ürünü 1 parça halinde BE MODEL  adresinizden 10.02.2025 15:42:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('0978f76e-65ec-45b3-936d-61329536a179','495118315683','Sayın FEMİ SALİHİ, 644100790 nolu gönderiniz 1576 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644100790\n\nDear FEMİ SALİHİ, your shipment with 644100790 was delivered to you with the delivery code 1576. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644100790\n\n\nBICARGO','2','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('097a42c3-edd2-4e86-a510-a1a44b23c180','905331602195','Sayın yetkili; FEHMİ TÜRK adlı müşterinize 221570854 nolu gönderinizin 80-60 cm siyah sehpa set ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 17.06.2025 16:58:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('097c6aa2-8c40-4091-a9a5-42da35ab25de','4915772514011','745816946 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1070 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745816946\n\nYour shipment with the number 745816946 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1070. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745816946\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('0981e2f3-097e-4e11-9bab-dfc2a157f754','33660544556','748330948 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4957 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/748330948\n\nYour shipment with the number 748330948 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4957. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/748330948\n\nBICARGO','1','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL),
('09832dcb-d9a3-4059-960f-b7010c7c26c3','4917621666906','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('098a0e38-205a-4b9e-b068-f96fe64c6046','905461661672','CANAN ŞENEL adlı müşterinizin 644319069 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('0994df6d-313d-4bb8-9ee0-c3b8727bdc08','491786878785','Sayın ÜMMÜGÜLSÜM KARAKUŞ SSH , 745967323 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745967323\n\nDear ÜMMÜGÜLSÜM KARAKUŞ SSH , your shipment with 745967323 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745967323\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('0999c2ca-cc5a-4608-98fb-f8791e319992','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin MALDİV KARYOLA + 2 KOMODİN ürünü 9 parça halinde ACCA adresinizden 13.05.2025 11:15:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('099a2e0e-1864-42a1-8c41-073414ba1b80','491733842224','Sayın ESME GÜNEŞ, 437256638 nolu gönderiniz 6495 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437256638\n\nDear ESME GÜNEŞ, your shipment with 437256638 was delivered to you with the delivery code 6495. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437256638\n\n\nBICARGO','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('099b9db9-35a0-4bc2-afe4-be6248f93ee5','4915222605151','İletişim \n					Şöför Uğur Acar +905424435917','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('099c5ea9-2d94-4b25-a64d-d14c7d3c3ccd','4917672726152','Sayın SEMİH YEŞİLYAYLA, 371716908 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371716908\n\nDear SEMİH YEŞİLYAYLA, your shipment with 371716908 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371716908\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('099cbee2-5f7c-4873-be14-d30f357bd347','905461661672','MERT OSMAN DEMİR(K) adlı müşterinizin 644153988 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('09a4f0f6-5990-42cb-811f-ec017fb83173','905461661672','Sayın yetkili; METİN ERDİ(K) adlı müşterinize 644667834 nolu gönderinizin mermer tabla ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 03.10.2025 12:26:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f1dc4c15-b727-4694-84c2-391d5782dae4',NULL),
('09a4f1bb-7c9c-4b72-b0b4-7e33d5b65d1a','33652889169','910778068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7461 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910778068\n\nYour shipment with the number 910778068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7461. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910778068\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('09a615bf-89c6-4307-b2d6-2ee14750df29','33676496054','Sayın NAFİLE ÖCALAN, 976821188 nolu gönderiniz 7850 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976821188\n\nDear NAFİLE ÖCALAN, your shipment with 976821188 was delivered to you with the delivery code 7850. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976821188\n\n\nBICARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('09a8c385-316c-4bac-87ec-b6542bd8bfbb','33767550958','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('09ab3df8-a02b-474f-8b53-a0643fbeaab6','32455122888','Sayın DELİL ÖZTÜRK SSH, 745786401 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745786401\n\nDear DELİL ÖZTÜRK SSH, your shipment with 745786401 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745786401\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('09b6b3c2-febc-412a-8575-514c33a4425c','41788884872','Sayın YILMAZ KARA , 31922563 nolu gönderiniz 10575 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31922563\n\nDear YILMAZ KARA , your shipment with 31922563 was delivered to you with the delivery code 10575. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31922563\n\n\nBICARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('09b77c10-2385-4f93-a698-8d14bb79419a','905079358213','SUZAN GÜNER adlı müşterinizin 745268660 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7',NULL),
('09bcf1bd-0a30-4100-9684-243d9e3a9f2e','4915115356238','Sayın GÜLDEN KARADAĞ, 745291553 nolu gönderiniz 9305 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745291553\n\nDear GÜLDEN KARADAĞ, your shipment with 745291553 was delivered to you with the delivery code 9305. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745291553\n\n\nBICARGO','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('09c1cc7b-9272-4843-8b88-2e554c4a3663','4917631605482','Sayın ASMA SOULTANA , 221854185 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221854185\n\nDear ASMA SOULTANA , your shipment with 221854185 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221854185\n\nBICARGO','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('09c5a7f5-60ba-4ed0-a595-43dc3eace3f8','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin 2 KOMODİN ürünü 2 parça halinde PARLAK EV MOBİLYA adresinizden 24.09.2025 15:53:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('09c7ae01-9e9e-44ff-b9f9-9024dccdfa41','111111111111','Sayın SEMİH  AYDIN, 22.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9867293\nŞifre : 9867293\n			\nBİCARGO','2',NULL,'98672fb9-339c-4dd4-895c-652e44b438ac'),
('09c8630e-5988-4372-8f3b-dad260368a1d','905352711900','Sayın yetkili; AHMET AKAT adlı müşterinize 817619747 nolu gönderinizin 6 ADET SANDALYE  ürünü 3 parça halinde MOBİLYAMEVİME DEPO  adresinizden 17.09.2025 10:28:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('09ca38f2-1b93-4d56-b871-81fe860ee917','01629336430','Sayın DİLBERAY MELLO, 613199072 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613199072\n\nDear DİLBERAY MELLO, your shipment with 613199072 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613199072\n\nBICARGO','2','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('09ccb689-2fc0-40a4-aac8-2e413392fdf5','905059175469','FATİH KAZAR adlı müşterinizin 428182749 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('09d62b3f-0dda-4e5a-99a6-fed9e3671c69','4915566234500','613512690 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10937 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613512690\n\nYour shipment with the number 613512690 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10937. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613512690\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('09d91564-3a74-478f-bcc7-4c5a25e7e22b','905461661672','Sayın yetkili; TARIK TURAN adlı müşterinize 644769101 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 20.10.2025 11:57:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('09daec54-bbe9-4bd8-a735-a6a38e319e68','4917657742944','Sayın BEGÜM KIRCA, 371801847 nolu gönderiniz 10655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371801847\n\nDear BEGÜM KIRCA, your shipment with 371801847 was delivered to you with the delivery code 10655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371801847\n\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('09ddfe6d-4e33-4f81-a0b0-d029b581dbde','1111111111111111','Sayın AAAAAAAAAAA, 248904478 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248904478\n\nDear AAAAAAAAAAA, your shipment with 248904478 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248904478\n\nBICARGO','2','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL),
('09e3412f-e4a2-4e96-897e-e191f12feb9c','905461661672','NEGİN EHSANİFARD adlı müşterinizin 644206771 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('09e4fdff-a6ef-45bb-a8fd-3c9231091295','905393435887','412877197 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412877197\n\nYour shipment with the number 412877197 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412877197\n\nBICARGO','1','2d2e3588-712f-4c84-a6f5-a45bc45a416b',NULL),
('09e51d2f-db81-46b0-9dc8-80ad714d1943','33606519879','Sayın OGUZHAN SARP, 501345257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501345257\n\nDear OGUZHAN SARP, your shipment with 501345257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501345257\n\nBICARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('09e55091-a954-4c96-a6a4-22258df88985','40741058791','Sayın SAVU ALİN , 98221051 nolu gönderiniz 6713 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98221051\n\nDear SAVU ALİN , your shipment with 98221051 was delivered to you with the delivery code 6713. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98221051\n\n\nBICARGO','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('09e97bcc-1985-429f-b054-1d3e44a9567e','905075277637','MURAT KARAOĞLU adlı müşterinizin 745629044 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL),
('09edd051-963d-4070-ac61-79f1f3ab3b7a','33623950988','Sayın İSA KAPLAN , 962168012 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/962168012\n\nDear İSA KAPLAN , your shipment with 962168012 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/962168012\n\nBICARGO','1','bc037735-462f-4198-8d2d-23ba6a125e18',NULL),
('09f47488-0687-403f-8ef8-40ff74340018','4917677017660','Sayın MARİNELA MARİNKOVİC, 505948491 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505948491\n\nDear MARİNELA MARİNKOVİC, your shipment with 505948491 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505948491\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('09f6c9f0-f77f-424a-be3c-9ea1648d0fbb','905461661672','MELEK KAYMAZ(K) adlı müşterinizin 644547865 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('09f85548-50c3-4c9f-b4b3-5324b2effaf6','905363385813','SEVGİ YILMAZ adlı müşterinizin 97677559 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','855d2794-7066-4b47-b159-2cf8816867f4',NULL),
('09fa96c0-8a9e-4e4b-9a8d-0f05b3e875c3','4917663228369','59874048 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9262 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59874048\n\nYour shipment with the number 59874048 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9262. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59874048\n\nBICARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('09fb60b9-9134-4e4b-86ab-89738c8dd71f','905331602195','Sayın yetkili; ROHAD TOSUN  adlı müşterinize 221529516 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 16:13:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('09fc4bc8-191c-4539-a4b5-aaba6ca82bc9','4917660894702','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('09fd61fe-86e0-45f3-9857-f0ee012f72dc','905075277637','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin ASHLEY YATAK OD. (KOMODİNSİZ)  ürünü 23 parça halinde RİXXE  adresinizden 03.09.2025 17:42:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('09ff713c-eae6-454a-8fdb-3d21439e4f37','905456068312','SAAED SALİH adlı müşterinizin 655571326 nolu gönderisi 39 parça halinde yola çıkmıştır.','1','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL),
('0a07723d-9cd0-4c98-b000-67ba83eb6754','905461661672','Sayın yetkili; FEMİ SALİHİ adlı müşterinize 644100790 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 17.07.2025 10:42:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('0a097b9f-e8ec-4cff-a0ee-fe6bbcbcc8df','905461661672','Sayın yetkili; ESRA BALTACI adlı müşterinize 644711459 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 27.08.2025 17:17:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('0a098101-4fcf-40b0-a28a-10c6d9977c1b','905079358213','MUHAMMET YILDIRIM  adlı müşterinizin 745946644 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('0a0c03c5-a367-40f3-865b-148bf2103d39','436601880277','675951028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5487 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675951028\n\nYour shipment with the number 675951028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5487. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675951028\n\nBICARGO','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('0a0c6ba1-50dc-455b-bb5f-612f643b99e1','905304259202','Sayın yetkili; MELİSA SAĞLIK adlı müşterinize 478483851 nolu gönderinizin YATAK ODASI ürünü 21 parça halinde acca adresinizden 14.04.2025 11:00:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('0a0e14c0-a490-4724-9941-18b9de4b2b3d','05305840234','428704278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2764 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428704278\n\nYour shipment with the number 428704278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2764. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428704278\n\nBICARGO','2','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('0a0ffd15-13ab-43c1-9ded-2e0e5e9c58f5','905331602195','M.CEDRİC KLEINDIENST (SSH) adlı müşterinizin 221105277 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('0a111d6d-8a3d-47ba-9e69-81fbb586a701','33651098791','Sayın MESUL OLGUN, 338607005 nolu gönderiniz 3269 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338607005\n\nDear MESUL OLGUN, your shipment with 338607005 was delivered to you with the delivery code 3269. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338607005\n\n\nBICARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('0a11e2d7-3b94-4e5b-95f0-791c24819d4c','49911330027','Sayın NECİP DELİPOYRAZ , 910943161 nolu gönderiniz 3197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910943161\n\nDear NECİP DELİPOYRAZ , your shipment with 910943161 was delivered to you with the delivery code 3197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910943161\n\n\nBICARGO','2','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL),
('0a168b0c-8c8a-441b-9f9d-6b4fa7a7137c','33603129182','Sayın GİZEM YAZICI , 745582484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745582484\n\nDear GİZEM YAZICI , your shipment with 745582484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745582484\n\nBICARGO','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('0a1856ad-7ba7-49d4-9b83-0a2200aad591','905335511664','Sayın yetkili; MEHMET SARI adlı müşterinize 371820872 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 16.07.2025 16:21:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('0a1ac1e9-0971-434f-9839-060c49e19db5','9053259981980','NERGİZ YURTSEVEN adlı müşterinizin 614525681 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('0a1ecfd3-b280-4bfa-94c7-2eb3962cf32b','905517075149','BAHAR SARI adlı müşterinizin 478525280 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('0a232318-fff2-4a5f-9c30-a12b12e9cb74','33788243398','Sayın Emek thibaut agit, 982292057 nolu gönderiniz 9743 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982292057\n\nDear Emek thibaut agit, your shipment with 982292057 was delivered to you with the delivery code 9743. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982292057\n\n\nBICARGO','2','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('0a251724-e238-4317-9888-54ab5fc0bdd4','905300961610','FİKRETE RAPCİ adlı müşterinizin 126806100 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','476b3b22-cc52-456b-baca-94ab2554e38d',NULL),
('0a2ccd0c-f88e-4746-8eb3-de57e1548ddc','905078062550','Sayın yetkili; ÖZLEM GÜN adlı müşterinize 598604443 nolu gönderinizin BAZA BAŞLIK ürünü 1 parça halinde ALBESSA HOME adresinizden 06.10.2025 16:05:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e399534-04a6-4572-a7ec-3a630c910cdf',NULL),
('0a307f81-5b77-4f3e-8641-8645d0b70d74','4917683277906','Sayın KORNİŞ ÇUVAL, 248173138 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248173138\n\nDear KORNİŞ ÇUVAL, your shipment with 248173138 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248173138\n\nBICARGO','1','fdd68378-14a3-446e-acd4-64b7634a5689',NULL),
('0a3ac8a8-ec63-4d61-bdf4-9c24f5a5ec5b','32489062134','248292815 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9324 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248292815\n\nYour shipment with the number 248292815 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9324. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248292815\n\nBICARGO','1','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL),
('0a3c0936-c699-4025-8379-a82092f9afe9','4917632810959','Sayın SERKAN DOKKAL, 598961970 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961970\n\nDear SERKAN DOKKAL, your shipment with 598961970 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598961970\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('0a3eb685-8e4e-4f57-85be-004e8cf1e46b','905079358213','Sayın yetkili; EMEL SERPMEN adlı müşterinize 745311878 nolu gönderinizin TOFİ KÖŞE KOLTUIK ürünü 4 parça halinde Fatura adresinizden 27.02.2025 14:44:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('0a44c2f3-c7ef-447e-be88-58a32339568d','4369919588138','Sayın NATASCHA DJORDJEVİC, 80873489 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/80873489\n\nDear NATASCHA DJORDJEVİC, your shipment with 80873489 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/80873489\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('0a4509f0-c826-4299-b013-657fa65c3621','905394878216','NAFİT GANİOĞLU adlı müşterinizin 517255345 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('0a476038-65ba-4469-bfbc-d647ca6a093b','905363385813','BURHAN SAĞLAM adlı müşterinizin 976593604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('0a49e876-74a5-49ae-9a2c-8f602bb6e63c','491624318595','Sayın DİLAVER ULUTAŞ, 47836811 nolu gönderiniz 3511 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47836811\n\nDear DİLAVER ULUTAŞ, your shipment with 47836811 was delivered to you with the delivery code 3511. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47836811\n\n\nBICARGO','1','9016d7f6-7477-4afe-9a6c-22410434be77',NULL),
('0a4b5cff-7e08-4caa-a4cf-c167d210d4d5','4917632975827','Sayın MURAT ERKUL, 745639167 nolu gönderiniz 7299 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745639167\n\nDear MURAT ERKUL, your shipment with 745639167 was delivered to you with the delivery code 7299. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745639167\n\n\nBICARGO','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('0a5b02d4-d2eb-4421-9dc3-ae13f6687bc3','905331602195','Sayın yetkili; FİRDEVS ORHAN adlı müşterinize 221407228 nolu gönderinizin 90x190 Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:03:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('0a5cfcba-daac-45e9-8191-3e29b961d54f','905325000478','NADİR KURUKOL adlı müşterinizin 412217714 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('0a6147fd-79ba-4746-abcc-4bbdefec36aa','4915115864396','910187142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910187142\n\nYour shipment with the number 910187142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910187142\n\nBICARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('0a65e389-54ab-4af0-a835-78e6b61c3287','4917632545443','Sayın NURTEN YILMAZ (SSH) , 338842710 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338842710\n\nDear NURTEN YILMAZ (SSH) , your shipment with 338842710 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338842710\n\nBICARGO','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('0a66961e-dec9-40ff-bb62-953d88bdf9b2','905517075149','ALİ DİNAR adlı müşterinizin 478185886 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('0a6d3858-f948-415b-a5ae-5f7e6c63db89','491788532068','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('0a6d79d1-af8a-4ead-92fd-4c5208faacdc','905454259202','Sayın yetkili; MERYEM YUMURTACI adlı müşterinize 478154934 nolu gönderinizin köşe ve yatak ürünü 8 parça halinde çelikbey inegöl depo adresinizden 29.11.2024 16:16:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('0a76edd5-0e60-4a82-8db9-c44177299ed3','905336367828','MOHAMMED MALHA  adlı müşterinizin 982125625 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('0a79ce90-044a-42a4-a7f5-b60e90b6bc97','491785990575','Sayın RECEP ONAY, 465237157 nolu gönderiniz 3932 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465237157\n\nDear RECEP ONAY, your shipment with 465237157 was delivered to you with the delivery code 3932. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465237157\n\n\nBICARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('0a7b0178-0b04-4a48-97f2-627977041f74','905335511664','ONUR ÖZÇELİK adlı müşterinizin 371695056 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('0a8083ef-57c3-4c06-bdac-fc6c0ae5d84f','4915783856117','644452767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4678 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644452767\n\nYour shipment with the number 644452767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4678. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644452767\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('0a813309-f35a-4902-bc5d-fbda43e81551','905421855834','MUAMMER SAYIN adlı müşterinizin 338822119 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('0a82472e-396a-4e3d-a98d-60bfb6dcb2ff','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin SEHPA TAKIMI ürünü 2 parça halinde Masami Mobilya adresinizden 18.08.2025 17:53:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('0a849e29-9a90-4c77-9b97-ae9517790748','491734737192','Sayın HÜSEYİN ERCAN NAMAL, 428225143 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428225143\n\nDear HÜSEYİN ERCAN NAMAL, your shipment with 428225143 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428225143\n\nBICARGO','1','175392bb-7213-43c6-b3da-6b01f5de3b51',NULL),
('0a884ceb-dd5d-4f23-8d65-d30e0b139985','33753451993','Sayın LYNDA MOUSSA, 982425532 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982425532\n\nDear LYNDA MOUSSA, your shipment with 982425532 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982425532\n\nBICARGO','1','13aba735-b82d-4898-a98c-4167bb80085c',NULL),
('0a8999b7-27d3-4647-a94a-a8c6d6d96c82','4915772515214','Sayın OSMAN ALTUN, 644901751 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644901751\n\nDear OSMAN ALTUN, your shipment with 644901751 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644901751\n\nBICARGO','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('0a89ef24-fa29-4020-8841-7074701da6a0','5325000478','Sayın HALİL İBRAHİM KÖSE, 24.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9113195\nŞifre : 9113195\n			\nBİCARGO','1',NULL,'91baaa13-1952-49c9-bd52-7df7a06ce051'),
('0a8b9cb8-cbc4-4289-bd92-db45217736bb','905335708965','PATRİCA adlı müşterinizin 735139102 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL),
('0a8bba04-ff60-4843-a4a3-10f8c413e03f','905079358213','DURMUŞ YÜKSEKTEPE adlı müşterinizin 745935889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('0a8c68d2-bc51-4426-9938-e625f0a6d8ca','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120*200 BAZA ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('0a8f5627-5381-4da8-9ce8-663b5e4bdb3b','905454259202','MEHMET ÇOBAN adlı müşterinizin 478244236 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL),
('0a8f6639-af27-499c-80d0-e3ed71eb1da8','4917620747376','081982015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/081982015\n\nYour shipment with the number 081982015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/081982015\n\nBICARGO','1','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('0a91e9c9-41be-444e-a30e-3d7786acf6a4','491771886030','Sayın SEPAN MOHAMMED, 644107524 nolu gönderiniz 2115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644107524\n\nDear SEPAN MOHAMMED, your shipment with 644107524 was delivered to you with the delivery code 2115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644107524\n\n\nBICARGO','1','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('0a99ec4c-7ad4-48b6-9531-b865d04505f6','41762077419','478449021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8457 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478449021\n\nYour shipment with the number 478449021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8457. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478449021\n\nBICARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('0a9a7cf8-0115-47cd-b176-4e84a5e57368','905075277637','NESRİN DUMAN adlı müşterinizin 745166392 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL),
('0a9fd6b9-315f-4833-b56b-1593d96cbd11','017680220658','644877864 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9555 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644877864\n\nYour shipment with the number 644877864 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9555. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644877864\n\nBICARGO','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('0aad2682-e364-45e3-840e-bf729c5222fa','4917661070525','Sayın AYSEL ASLAN, 745606440 nolu gönderiniz 3753 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745606440\n\nDear AYSEL ASLAN, your shipment with 745606440 was delivered to you with the delivery code 3753. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745606440\n\n\nBICARGO','1','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL),
('0ab0174b-8c0a-4085-b43e-f859a4278897','905331602195','Sayın yetkili; ABARDİ NOURDİN adlı müşterinize 221624848 nolu gönderinizin Balat sandalye koyu ceviz ürünü 6 parça halinde ALP SANDALYE adresinizden 10.03.2025 15:03:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('0ab2fb86-ce51-4f14-99df-d51f75aa6930','31624237190','Sayın HASAN BİLECEN, 221121416 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221121416\n\nDear HASAN BİLECEN, your shipment with 221121416 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221121416\n\nBICARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('0abe270c-cc3e-4337-ae12-37f5c572de9c','905350617509','ASUDE FİLİZER adlı müşterinizin 613786429 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('0abf4c98-05ef-40d1-ac90-e9d91f3878ab','33652528141','655307091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8121 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655307091\n\nYour shipment with the number 655307091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8121. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655307091\n\nBICARGO','1','60088545-2d2c-4c1d-8f5c-07351840a9a5',NULL),
('0ac569da-beab-4b56-a57b-12b020c298cd','4917663874660','Sayın MİTRA MESKİNİ, 449866390 nolu gönderiniz 4106 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449866390\n\nDear MİTRA MESKİNİ, your shipment with 449866390 was delivered to you with the delivery code 4106. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449866390\n\n\nBICARGO','1','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL),
('0ac65bce-3a23-4e69-966c-aac8c1640028','905079358213','BELGİZAR GEZİCİ adlı müşterinizin 745173444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('0ac773d6-f412-4e76-97f3-c3087853f691','33637302044','Sayın CENGİZ SAKALI , 910926193 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910926193\n\nDear CENGİZ SAKALI , your shipment with 910926193 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910926193\n\nBICARGO','1','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL),
('0ac7b5f5-789c-4bbf-a295-0dc680b8d003','905325000478','BERAT adlı müşterinizin 412485805 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('0acb5e26-a2e8-470d-9032-5c311cd0fe69','436603406293','Sayın yetkili; MARTİN MARİNKOVİC adlı müşterinize 675885408 nolu gönderinizin MASA ürünü 4 parça halinde MASAMI adresinizden 08.09.2025 17:47:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('0acc739d-80d0-4972-aa0a-3b6c526838ea','12212211111','Sayın BRÜHL CAMİSİ, 412441586 nolu gönderiniz 1706 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412441586\n\nDear BRÜHL CAMİSİ, your shipment with 412441586 was delivered to you with the delivery code 1706. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412441586\n\n\nBICARGO','2','2754ec7f-f526-44d3-8178-29280a48b322',NULL),
('0acc8328-9889-45f1-8689-0e837c3e821e','905336367828','BOUSLİMAİN ECHOUAK adlı müşterinizin 982868918 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','24096b71-5b5e-4da8-9191-8e3168102053',NULL),
('0acf753f-4962-4e5b-a4b0-2d0db418c47a','4917646701488','Sayın SABRİNA METZGER , 808922349 nolu gönderiniz 7485 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808922349\n\nDear SABRİNA METZGER , your shipment with 808922349 was delivered to you with the delivery code 7485. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808922349\n\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('0ad21546-ddf5-4878-8f47-e4a2501fd16f','905335708965','PARWEZ MOHAMMADİ adlı müşterinizin 248694668 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL),
('0ad7bcb1-a306-47f8-9707-3df1bdec9b61','436763810050','478110382 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478110382\n\nYour shipment with the number 478110382 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478110382\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('0ad84c9b-8cfc-48f8-81a7-6cf0ba0d2377','4915756416500','Sayın LOSİF LOUNT MİRİUTA, 982592763 nolu gönderiniz 5074 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982592763\n\nDear LOSİF LOUNT MİRİUTA, your shipment with 982592763 was delivered to you with the delivery code 5074. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982592763\n\n\nBICARGO','1','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL),
('0ade3d76-ad55-40a7-b70b-681a695fad2e','905079358213','SAFİYE ÇITAK adlı müşterinizin 745959029 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('0ae0918a-e0f1-4388-95cc-3a56acbd8c8a','4915223076449','ŞÖFÖR NUMARASI\n					+905467896981','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('0ae655f0-4aba-426e-9581-52a6a758d099','905052681508','FERHAT KARACA adlı müşterinizin 504780984 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('0ae6b062-484b-426b-9683-661185b5c038','33695430000','745206126 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745206126\n\nYour shipment with the number 745206126 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745206126\n\nBICARGO','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL),
('0ae9b7b5-3763-4a8a-913b-33bee3ba8a93','31641506768','Sayın SİBEL ÇEVİK, 644631223 nolu gönderiniz 9239 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644631223\n\nDear SİBEL ÇEVİK, your shipment with 644631223 was delivered to you with the delivery code 9239. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644631223\n\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('0aeb7544-b56b-4460-98c6-5df2d822b8c4','491755862725','428470171 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2172 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428470171\n\nYour shipment with the number 428470171 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2172. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428470171\n\nBICARGO','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('0af17bee-765a-4fe4-8233-facedd2970c4','491741853822','Sayın HAYATİ ELBİR, 745536465 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745536465\n\nDear HAYATİ ELBİR, your shipment with 745536465 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745536465\n\nBICARGO','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('0af3d31a-2088-4571-a0c7-64669223f602','41766263875','Sayın MİRAÇ SAKAR, 437969799 nolu gönderiniz 6590 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437969799\n\nDear MİRAÇ SAKAR, your shipment with 437969799 was delivered to you with the delivery code 6590. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437969799\n\n\nBICARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('0af71234-025a-4473-8e8d-b36c48c98a0a','436603406293','SEVDE SOYUÖZ adlı müşterinizin 675253974 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('0af7a6f9-88df-4cfa-ac56-f8210d6cef53','491624583604','Sayın FARUK EMRE KAYA, 478418480 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478418480\n\nDear FARUK EMRE KAYA, your shipment with 478418480 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478418480\n\nBICARGO','1','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL),
('0afd43a9-a0ee-48b2-a311-9c69a9238e58','33667410242','Sayın ANİL ZAMUR , 221204525 nolu gönderiniz 6134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221204525\n\nDear ANİL ZAMUR , your shipment with 221204525 was delivered to you with the delivery code 6134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221204525\n\n\nBICARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('0afffb82-816c-4c98-8a74-44ae441af73f','905078062550','Sayın yetkili; MELİSSA KARACAKAYA adlı müşterinize 598961911 nolu gönderinizin masa ürünü 3 parça halinde SM TASARIM adresinizden 21.08.2025 15:36:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('0b05d6a6-9ab6-41bc-bd31-a50bfd37ac75','905461661672','AKIN KARUT adlı müşterinizin 644775291 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('0b113d20-e0a9-4504-92a1-a2fb88164922','33614047867','Sayın ERDAL OCALAN, 976126416 nolu gönderiniz 2063 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976126416\n\nDear ERDAL OCALAN, your shipment with 976126416 was delivered to you with the delivery code 2063. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976126416\n\n\nBICARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('0b1171b6-ab05-4508-854b-e75b7df53bb0','491741928164','Sayın İLAYDA GÜNEŞ, 371528044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371528044\n\nDear İLAYDA GÜNEŞ, your shipment with 371528044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371528044\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('0b13568b-f06b-417d-8178-b9f7715b8fcd','905335511664','Sayın yetkili; AYCAN ÇOLAK adlı müşterinize 371120278 nolu gönderinizin köşe takımı + puf ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 05.08.2025 11:17:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('0b167812-9080-4df2-b00f-b99c4d0ab070','491621579425','Sayın MERYEM BİRCAN ANİK, 437791709 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437791709\n\nDear MERYEM BİRCAN ANİK, your shipment with 437791709 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437791709\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('0b191151-83a9-423c-a97c-3c307be9fb46','905454259202','Özcan nazlı adlı müşterinizin 478281011 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL),
('0b1e5ed4-5bb9-4b33-b050-471bef726bbc','905075277637','RECEP DAMAR adlı müşterinizin 745912057 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL),
('0b22cf0a-7784-45da-9b44-42a2e97b6542','436603406293','SUHAD AL-ASADİ  adlı müşterinizin 675124573 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('0b26a017-baa1-47c0-9efe-02d81e3963d8','41782224348','Sayın SHAHRAM RECEBİ , 112270991 nolu gönderiniz 1227 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/112270991\n\nDear SHAHRAM RECEBİ , your shipment with 112270991 was delivered to you with the delivery code 1227. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/112270991\n\n\nBICARGO','1','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL),
('0b2c1550-6f2d-477c-9668-64f2fc3254ba','491736631768','Sayın ERKAN BAYRAK, 428222834 nolu gönderiniz 7900 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428222834\n\nDear ERKAN BAYRAK, your shipment with 428222834 was delivered to you with the delivery code 7900. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428222834\n\n\nBICARGO','2','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('0b2c29e3-7ec4-4dc4-817b-e0180958fb6c','905301592882','RUKİYE EKERBİÇER adlı müşterinizin 910638892 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('0b2d41f8-709b-40fd-9d63-91905ebbd988','330758774283','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('0b31fceb-f28a-4a94-96a3-493515149c5e','905331602195','Sayın yetkili; HAVVA KUM adlı müşterinize 221443179 nolu gönderinizin Nevada kayın Konsol 200 cm ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:00:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('0b347f43-d0c2-4866-809a-5b20af90e6ee','905313340045','Sayın yetkili; UMUTCAN ŞAHİNCİ adlı müşterinize 437870707 nolu gönderinizin Kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 19.08.2025 11:53:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('0b3482e8-9d4e-4d69-b0d2-b8a311da5275','905304259202','AYŞE KONDAL adlı müşterinizin 478971881 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL),
('0b357623-d7d6-4ed1-8aa0-4b11c85a8806','32455122888','Sayın DELİL ÖZTÜRK SSH, 745786401 nolu gönderiniz 6132 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745786401\n\nDear DELİL ÖZTÜRK SSH, your shipment with 745786401 was delivered to you with the delivery code 6132. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745786401\n\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('0b3b8b46-68c5-4d51-aaeb-bbbf55676ab6','905335511664','ALEYNA İREP adlı müşterinizin 37119244 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('0b3bdba2-4da5-49c0-a663-a185de4a94b7','491726549948','428851627 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8860 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428851627\n\nYour shipment with the number 428851627 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8860. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428851627\n\nBICARGO','2','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('0b41a55f-d7b3-4a42-a157-4f176f89c016','491629336430','Sayın DİLBERAY MELLO, 613910788 nolu gönderiniz 1195 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613910788\n\nDear DİLBERAY MELLO, your shipment with 613910788 was delivered to you with the delivery code 1195. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613910788\n\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('0b4276ce-342c-4ba9-b153-9499825e80f4','33787870311','221234413 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5254 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221234413\n\nYour shipment with the number 221234413 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5254. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221234413\n\nBICARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('0b42d8d0-afcc-4210-be81-1fad43c5692e','32483547124','Sayın GURAY SEYFELİ, 221496522 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221496522\n\nDear GURAY SEYFELİ, your shipment with 221496522 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221496522\n\nBICARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('0b48214b-1ad5-40e2-8878-eabe96829819','905331602195','Sayın yetkili; M.CEDRİC KLEINDIENST adlı müşterinize 221850151 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:05:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('0b508b6a-ec54-4d4d-99ba-a4b4b0e0d1ba','4915158036323','Sayın CEMAL YALÇIN SSH, 319388100 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319388100\n\nDear CEMAL YALÇIN SSH, your shipment with 319388100 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319388100\n\nBICARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('0b51e2c5-7406-4a4f-a341-3eaff96486e6','905354141537','Sayın YUSUF BEY , 830611219 nolu gönderiniz 2495 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/830611219\n\nDear YUSUF BEY , your shipment with 830611219 was delivered to you with the delivery code 2495. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/830611219\n\n\nBICARGO','1','5e333a30-7986-4a32-be40-ecb91b558892',NULL),
('0b554bf1-8d59-48dd-84f0-246fc52de177','4917621650674','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('0b5daa46-d372-43c4-8fe3-8c49c565c135','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin sandalye papuçları ürünü 1 parça halinde kuka adresinizden 23.06.2025 14:03:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('0b653931-b290-404d-b1be-06093abe924d','905349208933','Sayın yetkili; RÜVEYDA ŞAHİN adlı müşterinize 127150146 nolu gönderinizin köşe takımı ürünü 6 parça halinde alkusa adresinizden 23.05.2025 15:49:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('0b67d0a0-f358-4746-b1c4-ec4c97ac1798','4917631419046','Sayın NADİR KURUKOL , 428414858 nolu gönderiniz 9182 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428414858\n\nDear NADİR KURUKOL , your shipment with 428414858 was delivered to you with the delivery code 9182. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428414858\n\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('0b704e2f-2a6b-46cc-8ec1-a9d02831eda8','4917666559986','ŞÖFÖR NUMARASI\n					+905467896981','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('0b73330f-6bde-473d-b7a1-6c2d8241624b','905325000478','ERKAN ÇEVİK adlı müşterinizin 41291679 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0d40e91f-6390-4121-9303-5976e9f6f226',NULL),
('0b805d4f-5968-49d9-95dc-72d4d9bf77bf','4915229249274','268188607 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/268188607\n\nYour shipment with the number 268188607 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/268188607\n\nBICARGO','1','2630e226-f8e4-4780-bd53-00a42db1e018',NULL),
('0b81fb04-361b-485a-a9f3-b0e578483319','4917661479043','Sayın TUBA BAŞKAŞ SSH, 598876994 nolu gönderiniz 1168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598876994\n\nDear TUBA BAŞKAŞ SSH, your shipment with 598876994 was delivered to you with the delivery code 1168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598876994\n\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('0b852a13-799b-4b23-b7b2-80491a867514','905079358213','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin VOYAGE YAN SEHPA 2 AD  ürünü 2 parça halinde RİXXE  adresinizden 24.10.2025 19:10:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('0b85de1e-4f68-4386-a26f-23ddc5786242','905335708965',' adlı müşterinizin 24889830 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','1c37ec40-77c6-4885-995d-696850992a10',NULL),
('0b8a794a-de55-4699-a156-9f9da2a4ed76','33651400749','Sayın ÖZKAN ÖZKOŞAR		, 910482480 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910482480\n\nDear ÖZKAN ÖZKOŞAR		, your shipment with 910482480 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910482480\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('0b9070ec-753f-4c96-929a-325b9f5e70d9','33766894111','Sayın İSRAFİL ŞENGÖNÜL, 745297087 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745297087\n\nDear İSRAFİL ŞENGÖNÜL, your shipment with 745297087 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745297087\n\nBICARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('0b931848-d545-4a79-9350-97ee5374de14','4917622016838','Sayın RAMİSH MİRZAYER, 449401217 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449401217\n\nDear RAMİSH MİRZAYER, your shipment with 449401217 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449401217\n\nBICARGO','1','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL),
('0b946ce3-f62a-4ca1-9360-a33bbc554df7','905301592882','KENAN ACER		 adlı müşterinizin 910684336 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('0b971f00-e3ff-4863-a30a-d5011e950fb1','4560523452','598280715 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2686 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598280715\n\nYour shipment with the number 598280715 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2686. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598280715\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('0b991a4f-7c6d-4900-922d-b2be205b7892','4901708970529','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('0b99dd86-ef24-40a6-a35e-417a64a2c69a','4915901762821','Sayın CENGİZ WAGNER, 412968518 nolu gönderiniz 5665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412968518\n\nDear CENGİZ WAGNER, your shipment with 412968518 was delivered to you with the delivery code 5665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412968518\n\n\nBICARGO','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('0b9a2479-83e1-4ffb-ada1-1e47fcbf0e9f','491627321230','644340759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644340759\n\nYour shipment with the number 644340759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644340759\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('0b9a8b0b-3b25-4852-899a-cf219675a24e','4917639148019','Sayın MUSTAFA DÜNDAR		, 910775394 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910775394\n\nDear MUSTAFA DÜNDAR		, your shipment with 910775394 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910775394\n\nBICARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('0ba365ca-1a8b-41bb-b56f-709048d7a4f8','905331602195','Sayın yetkili; MURAT CENGİZ  adlı müşterinize 221186271 nolu gönderinizin Balat sandalye siyah  ürünü 8 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:26:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('0ba5449d-9f3a-4ef4-a9f7-b66f48133f32','905331602195','OSMANAJ VALDRİN adlı müşterinizin 221746947 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('0bac00ba-565c-412d-8a62-3f38107a1c65','905456068312','HÜSEYİN GÜNGÖRMEZ adlı müşterinizin 655111652 nolu gönderisi 38 parça halinde yola çıkmıştır.','1',NULL,NULL),
('0bb1c297-0ef0-4fee-bcc5-0f4e723734ff','017680220658','İLETİŞİM\n					Furkan şöför = +905078826436','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('0bb7e6db-9647-4156-8b42-f4867428bfab','905079358213','GÖKHAN ÇAYLAK adlı müşterinizin 745808994 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('0bb95396-2dba-415f-958a-b06c596b35d2','905304259202','VOLKAN ÖZKAN adlı müşterinizin 478741910 nolu gönderisi 3 parça halinde yola çıkmıştır.','1',NULL,NULL),
('0bbbabe9-10df-4513-9ea5-a9bdba63ff4b','4917661287885','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('0bbfbe63-4b39-47d4-8670-d32f0c7f1f23','33621123208','Sayın İBRAHİM TANKAZ, 478354582 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478354582\n\nDear İBRAHİM TANKAZ, your shipment with 478354582 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478354582\n\nBICARGO','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('0bc7ad91-b953-4662-951f-74d197cb0aa8','905335708965','EMEL AYKAÇ adlı müşterinizin 735258843 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL),
('0bc89abc-b7d4-458c-aeb4-0d641babcfed','4917670469390','Sayın BARAN RAKİP, 517764616 nolu gönderiniz 1881 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517764616\n\nDear BARAN RAKİP, your shipment with 517764616 was delivered to you with the delivery code 1881. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517764616\n\n\nBICARGO','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('0bca136e-f460-4fec-aa24-7567f1c0391c','905331602195','Sayın yetkili; HİLAL YILMAZ  adlı müşterinize 2213375 nolu gönderinizin BALAT SANDALYE ürünü 8 parça halinde ALP SANDALYE adresinizden 02.01.2025 17:10:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('0bcad113-a7c4-4582-a76f-c16c410b213d','905335708965','İLDA TOKOVİÇ adlı müşterinizin 735520226 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL),
('0bce5951-9184-427b-b325-40c28d141341','905079358213','SEYİTHAN ASLAN adlı müşterinizin 745212688 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('0bd0b9cf-80a5-469a-84d7-b34ad835a27e','491788354147','Sayın MÜZEYYEN TEYMUROĞLU, 478677950 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478677950\n\nDear MÜZEYYEN TEYMUROĞLU, your shipment with 478677950 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478677950\n\nBICARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('0bd298f1-93fc-4b0b-bf9b-0ca6f07740ea','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS DELUXE 120*200 YATAK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 15:00:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('0bd7c32c-1cd3-42c4-b383-90c6bd8cc1e1','491737632417','614396499 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8944 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614396499\n\nYour shipment with the number 614396499 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8944. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614396499\n\nBICARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('0bd93e53-1774-4618-8dab-39f65f5f35f3','491751082413','Sayın HANDE PALMA, 61378160 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61378160\n\nDear HANDE PALMA, your shipment with 61378160 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61378160\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('0bdac127-926c-40f7-b07a-a37a894045e3','4917680448730','Sayın MEHMET EMİN KARAGÜZEL, 449665773 nolu gönderiniz 5787 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449665773\n\nDear MEHMET EMİN KARAGÜZEL, your shipment with 449665773 was delivered to you with the delivery code 5787. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449665773\n\n\nBICARGO','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('0bdcbbb6-6f76-4bcd-b7a9-d7a254a4ba5b','436603838566','DRİVER NUMBER\n					905541100849','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('0be009dd-034f-405d-a849-e8d1dd9e6daa','11111111111','Sayın KARABAS LANDMASCHİNEN, 412977009 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412977009\n\nDear KARABAS LANDMASCHİNEN, your shipment with 412977009 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412977009\n\nBICARGO','2','0fe32732-478d-4914-8b33-290a72aa934f',NULL),
('0beb243f-e224-4690-85de-0501e886d77a','905336367828','SELAMAWİT ESTİFANOS  adlı müşterinizin 982495052 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('0bedb9c0-d4a4-41dd-a906-f8e87f648928','31640538953','Sayın ŞEYMA BOZDAĞ, 221940723 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221940723\n\nDear ŞEYMA BOZDAĞ, your shipment with 221940723 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221940723\n\nBICARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('0bf278b8-72fc-4403-8e2e-33fbcc5e1550','33621633706','478783487 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5102 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478783487\n\nYour shipment with the number 478783487 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5102. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478783487\n\nBICARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('0bf2b17d-3ca0-4a89-9242-eb3a969c6f8c','491708511252','371398805 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4547 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371398805\n\nYour shipment with the number 371398805 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4547. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371398805\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('0bf5359d-2b73-45df-98ce-1f3f6250657b','41779979275','478138166 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10249 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478138166\n\nYour shipment with the number 478138166 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10249. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478138166\n\nBICARGO','1','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('0bfcc49c-01db-4e46-997e-f533c5329195','4915112325829','Sayın LAURA SCHMİTT, 613721320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613721320\n\nDear LAURA SCHMİTT, your shipment with 613721320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613721320\n\nBICARGO','1','64f79831-49d1-48f5-a6e6-698737009565',NULL),
('0bff7257-6ba1-42c8-8867-702ebb8c0874','4915753272553','Sayın AMAL EL JABBARİ, 644789157 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644789157\n\nDear AMAL EL JABBARİ, your shipment with 644789157 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644789157\n\nBICARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('0c08e18e-1297-4f4f-9a7c-4bde3b56c34b','4915157638110','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('0c09b918-c51f-447a-b198-a7cc213ac94a','905079358213','MÜSLÜM MERDANE adlı müşterinizin 74520622 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('0c0a5402-440c-4258-8692-28ceb65078b6','905517075149','BAHAR SARI adlı müşterinizin 478525280 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('0c0d2742-d131-4b8c-b57e-14c1407a4e9b','33769005262','Sayın ERDEL SİBEL, 644968450 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644968450\n\nDear ERDEL SİBEL, your shipment with 644968450 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644968450\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('0c0d9df4-b1c4-45d4-9d43-b02080117d7d','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE KÖŞE TAKIMI  ürünü 4 parça halinde RİXXE  adresinizden 08.09.2025 12:15:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('0c0f4615-9a6e-41fb-9264-c30b5b16eda8','905313340045','EBRU SOBAY adlı müşterinizin 437574361 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('0c18225a-5808-4915-ad58-4abde1628573','905075277637','BURHAN AZEMİ adlı müşterinizin 74594372 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('0c18763d-ffa0-4d41-b0f5-a6aeec92ef16','31612622634','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('0c1da8cb-d052-40c3-ad57-8e90f5f1f39f','905454259202','EJDER SOLAK adlı müşterinizin 47838085 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('0c236b9b-93e2-4509-927a-3d5ebcc2ce92','31636532119','127659069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3246 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127659069\n\nYour shipment with the number 127659069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3246. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127659069\n\nBICARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('0c24b7ee-c5f8-4d09-84e9-8a5d9bb736a1','905335511664','Sayın yetkili; DERYA BAYRAK adlı müşterinize 371180149 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 27.08.2025 17:40:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('0c27f3a7-80ef-4006-8ed7-dc10ceff4de5','905454259202','SÜLEYMAN KAYHAN adlı müşterinizin 478763903 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('0c2df929-1446-4e0e-ade8-54dd2692355d','905331602195','ESMANUR ZENGİN  adlı müşterinizin 221668922 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('0c2e43fe-6598-4dc1-b8c2-9bcdd36545b7','4915785558827','Sayın EKREM ASLAN, 91059017 nolu gönderiniz 8118 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91059017\n\nDear EKREM ASLAN, your shipment with 91059017 was delivered to you with the delivery code 8118. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91059017\n\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('0c2e6c8c-5949-4c7e-9467-3dc743114f53','905461661672','OLSZWESKİ MATZ adlı müşterinizin 644658399 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('0c36a7df-17b7-42b0-a44e-ae471d9a1bb7','905304259202','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478972804 nolu gönderinizin GENÇ ODASI ürünü 1 parça halinde çelikbey inegöl depo adresinizden 18.02.2025 19:28:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('0c3a276a-e87a-4a82-812e-1805722ed6a7','4917672987001','910891585 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8368 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910891585\n\nYour shipment with the number 910891585 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8368. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910891585\n\nBICARGO','1','a69f955e-df2b-44dd-8811-569ba620bc40',NULL),
('0c3e9331-9179-462d-896d-f4dfbcd01b09','4915201348727','221272241 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7620 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221272241\n\nYour shipment with the number 221272241 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7620. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221272241\n\nBICARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('0c3f1a50-9e96-4c6f-a239-b73883dc0144','4915204222121','Sayın SAHİN DİNÇ, 371514006 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371514006\n\nDear SAHİN DİNÇ, your shipment with 371514006 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371514006\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('0c421adb-a719-4bf3-b0eb-6bffa61adf42','33769000460','Sayın EMİN EKRAMOĞLU, 478337610 nolu gönderiniz 7431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478337610\n\nDear EMİN EKRAMOĞLU, your shipment with 478337610 was delivered to you with the delivery code 7431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478337610\n\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('0c42b7a4-83d7-4bd4-b3a0-e4e4ccdca4e6','4917660866627','Sayın İLYAS GÖK, 598982184 nolu gönderiniz 3921 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598982184\n\nDear İLYAS GÖK, your shipment with 598982184 was delivered to you with the delivery code 3921. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598982184\n\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('0c4670c8-089b-4146-8b81-8b770ad750ae','491788532068','Sayın STEFANİA KİOSKER, 371734068 nolu gönderiniz 10922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371734068\n\nDear STEFANİA KİOSKER, your shipment with 371734068 was delivered to you with the delivery code 10922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371734068\n\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('0c4818a2-07a6-48f6-904f-537cfc5b0ec2','4915152091392','Sayın RAMAZAN KAYHAN, 478972804 nolu gönderiniz 9662 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478972804\n\nDear RAMAZAN KAYHAN, your shipment with 478972804 was delivered to you with the delivery code 9662. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478972804\n\n\nBICARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('0c481e8e-ebd3-4c2d-9eda-3168ed947a36','905454259202','Sayın yetkili; AHMET ÖZDEMİR adlı müşterinize 478472384 nolu gönderinizin koltuk kılıfı  ürünü 1 parça halinde Fatura adresinizden 26.01.2025 13:23:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('0c4a4925-a632-4e1e-8aac-f8e742578ddc','905454259202','KEMAL ETKER  adlı müşterinizin 47876427 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('0c4ba5b6-ca4a-44e1-ae5c-daeb25b82e20','4915788580085','Sayın ŞENOL BEY, 412157183 nolu gönderiniz 1977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412157183\n\nDear ŞENOL BEY, your shipment with 412157183 was delivered to you with the delivery code 1977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412157183\n\n\nBICARGO','1','73425516-263e-4f72-894c-4cfd33d6ee43',NULL),
('0c4bc813-7a98-4455-8c07-4d8d3db0cf18','4915234223357','Sayın NERİMAN SARI, 598226174 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598226174\n\nDear NERİMAN SARI, your shipment with 598226174 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598226174\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('0c538db2-18aa-4c15-8ca3-959f30c26352','905312762034','NATASCHA DJORDJEVİC adlı müşterinizin 80873489 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('0c632dc4-ab1f-4ac2-ba7a-a8d0577eb80d','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin BALAT BAR  SANDALYE SİYAH ürünü 2 parça halinde ALP SANDALYE adresinizden 27.03.2025 14:54:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('0c635471-34dd-4cc0-b3d2-9c732517918c','32484736205','517157021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517157021\n\nYour shipment with the number 517157021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517157021\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('0c63bcc5-2153-4bd8-9fdf-3bc204e8761c','905078062550','Sayın yetkili; AYHAN ÇEKİ adlı müşterinize 598758154 nolu gönderinizin köşe koltuk ürünü 3 parça halinde HARUNCAN SOFA adresinizden 05.08.2025 15:55:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('0c66d1c8-275f-49f5-90ab-e1d4492830af','905354105671','BATTAL adlı müşterinizin 412524404 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('0c6794ee-a56a-4106-af71-26dd0703d868','491747765301','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('0c6baa2c-cfbc-4a3d-a5ef-b5b1052e5493','310650615822','Sayın GALİP YAYLALI, 338286320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338286320\n\nDear GALİP YAYLALI, your shipment with 338286320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338286320\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('0c6f11bd-13aa-4a33-b4a6-2e0cc313b92e','905443955915','ALAETTİN BAYKAN adlı müşterinizin 614396499 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('0c759bb8-9dfe-41b7-bf14-a8451025871f','491725700454','ÇİÇEK MÖBEL adlı müşterinizin 046517356 nolu gönderisi 100 parça halinde yola çıkmıştır.','1','b21c6f76-2185-4cbb-ae48-70494372e886',NULL),
('0c79928c-26f3-405e-a524-24b9d583b3b9','32465639816','478962763 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10452 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478962763\n\nYour shipment with the number 478962763 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10452. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478962763\n\nBICARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('0c7bb7e8-ce4e-4528-988b-a3081f48cc18','905313340045','FUAT SÜRER adlı müşterinizin 437392386 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('0c7bc79f-a9c7-4625-9db5-0b23b09726a7','436601407495','808396862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5004 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808396862\n\nYour shipment with the number 808396862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5004. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808396862\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('0c82072a-302e-48f9-b1b1-d4f1ed32459f','4915115979347','Sayın CAN KUL , 478161304 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478161304\n\nDear CAN KUL , your shipment with 478161304 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478161304\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('0c84e842-9c74-43d6-a4bc-d93995ad0792','905079358213','ABDULLAH DEMİR  adlı müşterinizin 745906720 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('0c85a44c-5256-45b0-a267-a4c91bd2fc87','32495243203','Sayın pirard caroline, 22315159 nolu gönderiniz 1576 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22315159\n\nDear pirard caroline, your shipment with 22315159 was delivered to you with the delivery code 1576. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22315159\n\n\nBICARGO','1','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL),
('0c886577-f980-4ebb-af51-9878cc078dbc','905451571652','MEİSSA AL KHALED adlı müşterinizin 531480968 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('0c88f88e-5af1-4104-9c18-6db6fd753145','491733039881','Sayın AYŞEGÜL GÖKTEPE, 478545457 nolu gönderiniz 10507 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478545457\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478545457 was delivered to you with the delivery code 10507. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478545457\n\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('0c890a7c-2a6a-4945-95c7-05204f053611','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin DORA MASA / 8 SANDALYE ürünü 7 parça halinde DOSSİ adresinizden 19.09.2025 14:26:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('0c89dc3e-aa71-4e11-9167-b7209178d016','306974560448','Sayın SAİMİR BALLA , 982431907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982431907\n\nDear SAİMİR BALLA , your shipment with 982431907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982431907\n\nBICARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('0c8e1dea-9f84-4b8f-b8fa-b9f1c3724a6f','4917624386600','ŞÖFÖR İKETİŞİM\n					+905301824880','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('0c903d64-2dfa-4a99-890d-af198d4aff4f','905461661672','MUSA CAN KOÇAK adlı müşterinizin 644389756 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('0c914d1e-04fa-4c7e-9c43-d013d2d20b5a','905443955915','ABDİL ACAR adlı müşterinizin 61467762 nolu gönderisi 2 parça halinde yola çıkmıştır.','1',NULL,NULL),
('0c9253b8-0c7a-4766-bef8-17c504ee9c5b','41765582020','Sayın AFERDİTA UKSHİNAS, 31912550 nolu gönderiniz 4729 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31912550\n\nDear AFERDİTA UKSHİNAS, your shipment with 31912550 was delivered to you with the delivery code 4729. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31912550\n\n\nBICARGO','1','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL),
('0c96c1fb-73db-4f82-967e-c602b85da2d1','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin PORTO PUF ürünü 1 parça halinde Fatura adresinizden 27.03.2025 11:47:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('0c982f46-64fc-4123-b23d-98e9cdeceace','905300961610','MÜLLER CYRİLL adlı müşterinizin 126525086 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL),
('0ca16367-75d5-4687-b981-777afce31b11','905313340045','Sayın yetkili; SENA ONMAZ  adlı müşterinize 43714618 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 19.08.2025 11:54:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('0ca347d1-6b78-40cb-b9cb-c98a3d484c2e','436765710207','Sayın TAHSİN AKSOY, 644716997 nolu gönderiniz 6943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644716997\n\nDear TAHSİN AKSOY, your shipment with 644716997 was delivered to you with the delivery code 6943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644716997\n\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('0ca40e07-e461-459c-ac4c-9f2a3c9fadcc','436767948204','Sayın AYDIN SARI, 011620933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011620933\n\nDear AYDIN SARI, your shipment with 011620933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011620933\n\nBICARGO','1','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL),
('0ca4ba63-df80-4e66-9f6e-4d21882a660f','491766044656','Sayın FATMA ÜNSAL, 74565294 nolu gönderiniz 9907 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74565294\n\nDear FATMA ÜNSAL, your shipment with 74565294 was delivered to you with the delivery code 9907. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74565294\n\n\nBICARGO','2','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL),
('0ca8e02c-50ab-4846-b829-7270b171262f','905454259202','Sayın yetkili; GÜL-MURAT AVCU adlı müşterinize 478449021 nolu gönderinizin KOLTUK TAKIMI-YATAK ürünü 3 parça halinde Fatura adresinizden 25.02.2025 17:00:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('0ca9b303-8d53-4670-b48f-63a0584fde66','436609400015','Sayın MUSTAFA ÖZÇOBAN, 657264606 nolu gönderiniz 3054 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657264606\n\nDear MUSTAFA ÖZÇOBAN, your shipment with 657264606 was delivered to you with the delivery code 3054. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657264606\n\n\nBICARGO','1','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL),
('0caa328c-b337-4128-aaec-b2a963c7f969','353874069642','Sayın CANSU YENİLMEZER SSH, 745124199 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745124199\n\nDear CANSU YENİLMEZER SSH, your shipment with 745124199 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745124199\n\nBICARGO','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('0cabe719-ef56-4eb2-ac41-bcc3bdc7d211','491792005887','976763926 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3540 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976763926\n\nYour shipment with the number 976763926 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3540. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976763926\n\nBICARGO','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('0caf6779-c73e-45f6-a2f9-c6809a3e980f','905304259202','Sayın yetkili; MUSTAFA UZUNBOY adlı müşterinize 478618410 nolu gönderinizin 5 parça ssh ürünü 5 parça halinde çelikbey inegöl depo adresinizden 23.11.2024 17:08:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('0cb03b1c-200f-45d2-9ffe-f992cb989c90','491737632417','Sayın ALAETTİN BAYKAN, 614396499 nolu gönderiniz 8944 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614396499\n\nDear ALAETTİN BAYKAN, your shipment with 614396499 was delivered to you with the delivery code 8944. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614396499\n\n\nBICARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('0cbe98f9-b509-4c40-a1dd-cf00117d9f80','33621599637','Sayın İMANE LAARİ, 22130093 nolu gönderiniz 10075 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22130093\n\nDear İMANE LAARİ, your shipment with 22130093 was delivered to you with the delivery code 10075. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22130093\n\n\nBICARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('0cc140e6-0377-4ff7-81f4-873477af76f7','905075277637','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin ASOS GOLD YEMEK ODASI ürünü 13 parça halinde ODALIFE  adresinizden 23.09.2025 13:38:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('0cc1d6ad-b9f9-45d6-900a-89769a38ece0','33625625960','Sayın ÖMER KARAN, 478165569 nolu gönderiniz 3318 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478165569\n\nDear ÖMER KARAN, your shipment with 478165569 was delivered to you with the delivery code 3318. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478165569\n\n\nBICARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('0cc3cb96-1862-40b6-8d53-2e8dc8e68e78','905078062550','Sayın yetkili; İLYAS GÖK adlı müşterinize 598982184 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde SM TASARIM adresinizden 20.08.2025 15:41:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('0cc3d18d-e939-4119-94af-ec62f42884ae','905075277637','HÜSEYİN AKBANA adlı müşterinizin 745191568 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('0cc7ed82-8572-4b80-a4a5-aa34ba9dac1c','436607580201','Sayın SSH   UĞUR KAPLAN   , 011811088 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011811088\n\nDear SSH   UĞUR KAPLAN   , your shipment with 011811088 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011811088\n\nBICARGO','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('0ccb495a-8436-4f9f-95ca-5712d15bb9d3','41764307026','Sayın ALMİRA, 126229931 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126229931\n\nDear ALMİRA, your shipment with 126229931 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126229931\n\nBICARGO','1','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL),
('0cce428b-0ce6-4649-b501-85770db8dd82','491744555584','437154123 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9991 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437154123\n\nYour shipment with the number 437154123 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9991. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437154123\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('0cd30399-ade4-4fd8-9a89-7594d0d86d4b','4917684245023','Sayın SEMA KUZULUK, 644653549 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644653549\n\nDear SEMA KUZULUK, your shipment with 644653549 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644653549\n\nBICARGO','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('0cd626d6-67df-44bc-bdaa-a872a20c39a5','436767005361','31515833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/31515833\n\nYour shipment with the number 31515833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/31515833\n\nBICARGO','1','65c0e929-3375-4985-8c4f-62681ad7745f',NULL),
('0cda3db9-0d05-41e1-abbc-92df410482eb','33785512732','DRİVER\n					ADNAN\n+905354622027','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('0cdc26cc-0cc4-4ab7-8c1a-2e7de57dbf93','33652944838','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('0cdcc180-b7d9-408b-a4ed-fa0eecdb6008','905301592882','GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinizin 910825747 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('0ce5966d-6039-46a1-a3cb-20dc26fcc161','491752603457','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('0ce5f95f-2509-419f-a94e-7fad4d0ee783','905301592882','Sayın yetkili; ZELİHA ARAS adlı müşterinize 910280020 nolu gönderinizin MOCHA KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 18.04.2025 10:42:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('0ce81075-9847-4af6-bebb-d83f4e5f1446','905461661672','Sayın yetkili; ÖZCAN ŞAHİN adlı müşterinize 644589662 nolu gönderinizin Malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 17.10.2025 10:31:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','846144fe-95bb-4d2a-83ea-4552d599f458',NULL),
('0ceb5f1c-a08c-4438-b425-8fcebeacea74','905335708965','ABDIL HAPLE  adlı müşterinizin 248955969 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL),
('0ceef3b2-15a4-4d88-acbb-feb233dfc74d','41766507323','478365640 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6273 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478365640\n\nYour shipment with the number 478365640 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6273. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478365640\n\nBICARGO','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('0cf2572f-2315-4c27-980b-dd230ec716ff','905331602195','Sayın yetkili; SERHAT TAŞÇEVİREN adlı müşterinize 221187320 nolu gönderinizin 90x190 nevada ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:15:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('0cf29f8e-abeb-4e57-9456-f38d21b58efe','41782664887','Sayın ENİ SYLEJMANİ, 449178440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449178440\n\nDear ENİ SYLEJMANİ, your shipment with 449178440 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449178440\n\nBICARGO','1','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL),
('0cf87491-b453-49b1-8e93-4a4733eb7503','905079358213','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin ORTA SEHPA  ürünü 2 parça halinde GÜMÜŞ MASA adresinizden 28.07.2025 17:02:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('0cf8a0f6-60e6-41cb-a198-bcfc7529fffc','491742555594','Sayın TUĞBA BALIKÇI, 437154123 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437154123\n\nDear TUĞBA BALIKÇI, your shipment with 437154123 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437154123\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('0cf8b2fc-205d-438f-a163-638d7a22b4af','31640888503','Sayın KORAY KÜPE, 478693155 nolu gönderiniz 3364 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478693155\n\nDear KORAY KÜPE, your shipment with 478693155 was delivered to you with the delivery code 3364. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478693155\n\n\nBICARGO','1','a624a844-f729-4653-993f-bd28278f47e5',NULL),
('0cffa063-026c-4e4d-b169-d994a72468eb','491626248441','478606230 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478606230\n\nYour shipment with the number 478606230 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478606230\n\nBICARGO','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('0d0156bd-0085-45b4-b147-d3400359e18f','905364752848','GALATA  adlı müşterinizin 231717770 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL),
('0d06c2ca-8fc7-4258-ba1c-5e759fbfa8a7','4917663882376','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('0d07b52a-fbc4-4a09-a0ba-804615cd6479','905331602195','Sayın yetkili; HİLAL YILDIZ-MERT YETGİN adlı müşterinize 221440431 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde Fatura adresinizden 23.01.2025 11:03:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('0d0edc40-7d3d-4ce4-85ec-3ebe83bf04cb','905075277637','Sayın yetkili; BERKANT YAŞA adlı müşterinize 745717474 nolu gönderinizin VİRAL KARYOLA + 2 KOMODIN ürünü 7 parça halinde FAMILY  adresinizden 13.03.2025 15:11:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('0d0f1a65-cc28-4a8e-a473-704a78a7b418','905331602195','AYEOLOWO SEKİNAT adlı müşterinizin 221433158 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('0d132528-ff11-4580-9d9b-3d765735b2f5','491742731905','151236689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9440 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/151236689\n\nYour shipment with the number 151236689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9440. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/151236689\n\nBICARGO','1','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('0d139c46-8f00-4404-b30f-bf8ac7065d5a','905335708965','TABELA adlı müşterinizin 248915549 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL),
('0d182b8e-a49a-4244-97c9-a61d0e6ea79c','32467686443','745638060 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1828 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745638060\n\nYour shipment with the number 745638060 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1828. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745638060\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('0d19bd60-51e4-4743-84bb-7a91d6b4cdb6','905335511664','ŞİRİN ASLAN adlı müşterinizin 371193272 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('0d1d00d1-3f65-448f-829d-931fccb73d46','4917661977861','644542202 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1730 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644542202\n\nYour shipment with the number 644542202 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1730. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644542202\n\nBICARGO','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('0d1d2ec8-fbb0-4d32-a012-c6cfa45694d4','905335708965','ŞÜKRÜ ÇABUK adlı müşterinizin 248240352 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL),
('0d1da3f0-f3c9-4193-a9a4-5c76a9684c43','33769187229','478101302 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3368 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478101302\n\nYour shipment with the number 478101302 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3368. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478101302\n\nBICARGO','1','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL),
('0d2165ff-d76f-425b-a77a-0b1dcc844875','905363385813','Sayın yetkili; YASEMİN KARAKOC adlı müşterinize 976430102 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde SALON KOLTUK adresinizden 26.04.2025 18:54:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('0d2a4325-14c0-4513-8432-27408461b4d7','491779822285','Sayın RUKİYE BARUT, 644626371 nolu gönderiniz 9180 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644626371\n\nDear RUKİYE BARUT, your shipment with 644626371 was delivered to you with the delivery code 9180. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644626371\n\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('0d2dd1aa-804d-48f1-ba38-0bbbbd086bcb','905442774505','HARUN YILDIRIM adlı müşterinizin 657782 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('0d31d8ea-f986-48bb-ae20-4b5c05f69ff0','33771550561','Sayın SULTAN GÖR, 478212601 nolu gönderiniz 7890 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478212601\n\nDear SULTAN GÖR, your shipment with 478212601 was delivered to you with the delivery code 7890. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478212601\n\n\nBICARGO','1','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('0d32783e-5a07-493e-b549-7bbd4d95a214','436607580201','Sayın SSH   UĞUR KAPLAN   , 011811088 nolu gönderiniz 3184 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011811088\n\nDear SSH   UĞUR KAPLAN   , your shipment with 011811088 was delivered to you with the delivery code 3184. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011811088\n\n\nBICARGO','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('0d3f24f1-d2a3-4ecd-bf65-45146a7af0f5','436605152000','Sayın SENA ONMAZ , 43714618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43714618\n\nDear SENA ONMAZ , your shipment with 43714618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43714618\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('0d4142e3-4987-4def-a711-03e6821e91dd','436606544408','İletişim \n					Halil Bey (Şoför) :+905541100849','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('0d4237c4-e3e5-49b1-ae7f-b6d9ad726d29','33768933805','Sayın VOLKAN ÖZKAN, 478741910 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478741910\n\nDear VOLKAN ÖZKAN, your shipment with 478741910 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478741910\n\nBICARGO','1',NULL,NULL),
('0d4445c9-3d74-48f6-bb37-b4c70951b9db','905394878216','CAN DERİN adlı müşterinizin 517337381 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('0d482873-7b58-4d9a-84b9-f6a1bb56d04a','4917685637648','478507488 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10365 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478507488\n\nYour shipment with the number 478507488 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10365. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478507488\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('0d501849-8dc5-46fc-a1f0-10b67b0a8d96','905079358213','İSMAİL ÖZAY  adlı müşterinizin 745423192 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('0d5159b9-24e6-4787-9625-fbe7714fc68d','41763265325','Sayın JELENA BARATOVİC, 126245978 nolu gönderiniz 9087 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126245978\n\nDear JELENA BARATOVİC, your shipment with 126245978 was delivered to you with the delivery code 9087. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126245978\n\n\nBICARGO','1','05161621-4074-4395-a4ac-b594dfcce0f9',NULL),
('0d523244-8726-4807-b668-feea2d4ed241','33620525658','Sayın BABERIH LEİLA , 221164226 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221164226\n\nDear BABERIH LEİLA , your shipment with 221164226 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221164226\n\nBICARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('0d53e909-595c-43c4-9e6a-cf7f0a4a4be2','491772656565','248284003 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10576 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248284003\n\nYour shipment with the number 248284003 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10576. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248284003\n\nBICARGO','1','acc18069-a61f-4cc1-b29c-0024e5408038',NULL),
('0d576239-a1d8-4fc2-aef0-c4b625d768b5','32487280627','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('0d57dd47-628a-42c7-ad61-64ffb714eb9d','4915147016161','644484322 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6567 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644484322\n\nYour shipment with the number 644484322 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6567. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644484322\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('0d5a5141-34d7-44d5-b192-db3e66cce592','905079358213','RAMAZAN DUMAN adlı müşterinizin 745343811 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('0d5a703e-aad9-43ed-bf63-0a20703728ac','491632890514','Sayın MEHMET ÇOBAN, 478244236 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478244236\n\nDear MEHMET ÇOBAN, your shipment with 478244236 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478244236\n\nBICARGO','1','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL),
('0d6070eb-1d27-4c1b-8f9e-0514126fcda7','905335708965','SARA BOBAJ adlı müşterinizin 735173063 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL),
('0d6266c4-11d3-4bc8-91b4-b0b824774555','905078062550','Sayın yetkili; SEMANUR GÜLER adlı müşterinize 598781522 nolu gönderinizin SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 07.08.2025 16:38:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('0d64690d-2989-430b-9e9d-9e1ec5be3e71','33782988116','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('0d676067-1ef4-4b97-9efc-035546e7b6ca','905336367828','Sayın yetkili; TKHİLİ BOUSHABA  adlı müşterinize 982578491 nolu gönderinizin koltuk takımı  ürünü 6 parça halinde Comfortlife  adresinizden 20.02.2025 11:42:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('0d67fb1a-3517-437f-8dd4-55ebc29b912c','491621551678','Sayın ZEKİYE TOPATAN, 644877146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644877146\n\nDear ZEKİYE TOPATAN, your shipment with 644877146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644877146\n\nBICARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('0d7088a5-8154-40a4-adab-448eae5210cb','905313340045','Sayın yetkili; UFUK SANATÇI adlı müşterinize 43783689 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 23.08.2025 13:12:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('0d847363-d97c-4b34-91af-e95ec5b7d170','4917663775902','Sayın GELİNLİKÇİ, 412574307 nolu gönderiniz 7598 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412574307\n\nDear GELİNLİKÇİ, your shipment with 412574307 was delivered to you with the delivery code 7598. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412574307\n\n\nBICARGO','1','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL),
('0d870499-4d2c-4dfa-876b-067f5fdc1c85','4915773904587','Sayın ROJDA BİNGÖL, 598665171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598665171\n\nDear ROJDA BİNGÖL, your shipment with 598665171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598665171\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('0d8c97c1-8b05-4f2e-b89a-f4ab94ee8d6e','33641723756','Sayın YASİN ARSLAN , 517205467 nolu gönderiniz 1905 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517205467\n\nDear YASİN ARSLAN , your shipment with 517205467 was delivered to you with the delivery code 1905. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517205467\n\n\nBICARGO','1','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL),
('0d91ef96-ceaf-4249-ab6c-de8689abeaa3','905059175469','KADİR ÖZCAN adlı müşterinizin 428417364 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('0d939be3-1a9e-493b-8a38-2f6bed494ea4','905461661672','GHAZAL TARIK İLHAN adlı müşterinizin 644826740 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('0d9b44f0-8b65-4ce2-a863-7e600892d68b','4915164628076','Sayın ŞENOL AKKOYUN, 644535273 nolu gönderiniz 8437 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644535273\n\nDear ŞENOL AKKOYUN, your shipment with 644535273 was delivered to you with the delivery code 8437. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644535273\n\n\nBICARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('0d9b989e-028b-4ca4-a1a9-b22eee29643a','905312762034','Sayın yetkili; SULTAN SEVİNÇ adlı müşterinize 808935275 nolu gönderinizin Masa+6 Sabdalye ürünü 6 parça halinde MASAMİ adresinizden 11.08.2025 15:49:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('0d9d93d8-17fc-462c-8f4f-05945c27f207','491737466004','Sayın PERİHAN GÜNAY, 745770556 nolu gönderiniz 10626 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745770556\n\nDear PERİHAN GÜNAY, your shipment with 745770556 was delivered to you with the delivery code 10626. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745770556\n\n\nBICARGO','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('0d9e148f-28d5-4f3a-bbc9-792b3d87ea10','33623933331','Sayın YUSUF IŞIK, 449582137 nolu gönderiniz 3040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449582137\n\nDear YUSUF IŞIK, your shipment with 449582137 was delivered to you with the delivery code 3040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449582137\n\n\nBICARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('0d9f43a5-40e2-45b7-a623-d337be3bc188','491575264110','Sayın PINAR BARUTÇU, 6148124 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/6148124\n\nDear PINAR BARUTÇU, your shipment with 6148124 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/6148124\n\nBICARGO','2',NULL,NULL),
('0da6838f-4fd3-4983-8d31-d4fb4873ad2c','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde SUDE KOLTUK adresinizden 10.10.2025 12:24:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('0db2898b-3ff0-4dd4-8733-f186921c94ff','9054439559150','Sayın yetkili; MEHMET ORMANOĞLU adlı müşterinize 614636969 nolu gönderinizin PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL VE PAKKO EVDELÜX ALFA ŞARJLI ARA MODÜL ürünü 6 parça halinde PAKKO KOLTUK adresinizden 22.09.2025 12:23:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('0db509af-03c8-4ba6-84e5-5a272df91bcd','31686096778','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('0dbb8451-c437-4d29-89e2-76e9a96ea1f7','4917922929386','Sayın MEHMET GÜL, 33841628 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33841628\n\nDear MEHMET GÜL, your shipment with 33841628 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/33841628\n\nBICARGO','2','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('0dbbc913-be6c-4ea7-a44d-9417d0422e9a','905054335859','İBRAHİM AKARSU  adlı müşterinizin 501307359 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b7214302-d982-4460-ad8c-ebf440918b82',NULL),
('0dbc9e2e-c400-4de1-a4dd-d8f8b3d5dfd4','905070491996','SİAART MERMER adlı müşterinizin 663743560 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('0dbd8c8a-68ec-4758-abfa-6ad0faf9139a','41782224348','Sayın SHAHRAM RECEBİ , 112270991 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/112270991\n\nDear SHAHRAM RECEBİ , your shipment with 112270991 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/112270991\n\nBICARGO','1','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL),
('0dc38316-8ce2-4be5-94a0-dc7e6e0b127f','905332942204','Sayın yetkili; SARAH KLEİN adlı müşterinize 505153730 nolu gönderinizin köşe koltuk 2 takım ürünü 7 parça halinde PABLO HOME adresinizden 24.09.2025 11:42:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('0dc52c0e-6487-4793-83ff-fb0133279d6b','905313340045','Sayın yetkili; CENNET YAVUZ adlı müşterinize 437250812 nolu gönderinizin köşe ürünü 4 parça halinde fe-ha concept adresinizden 24.04.2025 11:48:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('0dc81123-02b4-41bd-9b3c-d7dc101464d3','905075277637','Sayın yetkili; MADAME COURTOIS IMANE adlı müşterinize 745987581 nolu gönderinizin VODA KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 06.03.2025 13:15:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('0dccb370-a7f6-4f24-9634-109ba4d1fb37','4901708970529','Sayın ZELİHA ARAS, 910280020 nolu gönderiniz 1598 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910280020\n\nDear ZELİHA ARAS, your shipment with 910280020 was delivered to you with the delivery code 1598. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910280020\n\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('0dcdfafa-28b2-4062-a611-99fba0e9af00','905300961610',' adlı müşterinizin 12630810 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL),
('0dd0b773-63ec-4ea3-849f-0a6fda75680b','4915752227857','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('0dd15a2d-7ef9-4695-b4c4-776dedd482e8','905532675926','HASAN ÖZSOY adlı müşterinizin 428653750 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('0dd61710-a8df-44d5-87fe-86d6081b2317','905454259202','Sayın yetkili; NİHAL KURU adlı müşterinize 478380707 nolu gönderinizin 2 kanepe ve orta sehpa 2.5 m3 ürünü 3 parça halinde çelikbey inegöl depo adresinizden 26.11.2024 14:27:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('0dd74a7d-84bf-4dc8-babb-6dffb0b4ca3e','905388618969','Sayın yetkili; ÖMÜR TOSUN adlı müşterinize 78633450 nolu gönderinizin Karyola set  ürünü 8 parça halinde Albessa  adresinizden 15.04.2025 14:48:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('0dd9f33f-c3bd-4ff1-bb77-b82837f03c97','905075277637','GÜLŞAH KUŞ adlı müşterinizin 745219309 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('0ddc90b1-9dc2-4df6-9723-307cbc3a251f','905315907031','Sayın TEVFİK KÜÇÜK, 644513470 nolu gönderiniz 10177 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644513470\n\nDear TEVFİK KÜÇÜK, your shipment with 644513470 was delivered to you with the delivery code 10177. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644513470\n\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('0ddce1fa-eb98-4d64-af66-95eefb72ba5e','905428209234','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA ORTA SEHPA / YAN SEHPA ürünü 4 parça halinde ROİS adresinizden 22.09.2025 14:18:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('0ddced82-285a-4e20-86c0-9a61e517db43','491634257044','428390036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3985 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428390036\n\nYour shipment with the number 428390036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3985. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428390036\n\nBICARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('0ddd3529-1bfc-402c-a015-5444e83684b9','4915738754138','Sayın MUSTAFA ÇELİK, 47888654 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47888654\n\nDear MUSTAFA ÇELİK, your shipment with 47888654 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47888654\n\nBICARGO','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('0ddf6f32-91a7-4242-b4e9-838803f38a21','905325998198','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614741569 nolu gönderinizin DOĞA MODERN PARİS BERJER ürünü 1 parça halinde DOĞA MODERN adresinizden 27.01.2025 15:31:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('0de15f00-94db-4bda-a6a6-3dcf804d9639','00491726977318','Sayın İBRAHİMİ ALİ JAN, 735500422 nolu gönderiniz 2154 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735500422\n\nDear İBRAHİMİ ALİ JAN, your shipment with 735500422 was delivered to you with the delivery code 2154. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735500422\n\n\nBICARGO','2','563299ed-822d-490a-97cc-eb08990a8bdb',NULL),
('0de35256-999d-4fdb-b920-7d90875abc94','491775901111','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('0de6d35f-c487-4dbc-a78c-bc538916100f','905331602195','Sayın yetkili; HURİYE SERBEST adlı müşterinize 221416180 nolu gönderinizin Traverten masa 90x190 ürünü 3 parça halinde Fatura adresinizden 20.01.2025 12:00:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('0de84e0c-4437-40dc-85f9-3485a821e737','905075277637','MUSTAFA IBRYAMOV adlı müşterinizin 745907299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('0de9437e-72cf-4589-80db-b779a1234feb','436508893388','Sayın MELDA KARA, 64451300 nolu gönderiniz 1005 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64451300\n\nDear MELDA KARA, your shipment with 64451300 was delivered to you with the delivery code 1005. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64451300\n\n\nBICARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('0deec253-0d18-47ef-9633-71d4a165f679','33632142652','Sayın CELİNE KARA, 478164511 nolu gönderiniz 9335 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478164511\n\nDear CELİNE KARA, your shipment with 478164511 was delivered to you with the delivery code 9335. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478164511\n\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('0deec2e1-1664-4b17-8b17-3760e5c0302a','905349208933','Sayın yetkili; HARUN ERCAN adlı müşterinize 127847689 nolu gönderinizin sandalye ve masa ayağı ürünü 1 parça halinde MELYA adresinizden 14.05.2025 14:25:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('0df4bcad-4bac-4eda-a2cc-ca3b0229bd2b','905304259202','ADEM ŞAHİN adlı müşterinizin 478685156 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL),
('0df957b8-6a8e-4ee2-8aa4-9330cf15bcb6','4917657693085','Sayın HAZİNE UCA, 745839023 nolu gönderiniz 1811 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745839023\n\nDear HAZİNE UCA, your shipment with 745839023 was delivered to you with the delivery code 1811. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745839023\n\n\nBICARGO','1','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL),
('0dfaab97-a4b2-420e-9b4e-63b93639cfaf','905350617509','Sayın yetkili; IRA YİLDİRİM  adlı müşterinize 613297420 nolu gönderinizin Masa ürünü 3 parça halinde Fatura adresinizden 25.03.2025 12:58:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('0dfb4936-65b0-4c2f-9e15-4c0a6a3f225b','4915561661704','Sayın HASAN EROL, 976568852 nolu gönderiniz 10651 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976568852\n\nDear HASAN EROL, your shipment with 976568852 was delivered to you with the delivery code 10651. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976568852\n\n\nBICARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('0dfe8d99-1d29-40cd-8559-725f62339992','905325000478','MURAT adlı müşterinizin 412586892 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL),
('0dffa843-d051-4303-8442-dd8cac5ce1e5','33628043396','750704426 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1001 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750704426\n\nYour shipment with the number 750704426 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1001. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750704426\n\nBICARGO','1','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL),
('0e02f9c3-7139-4b43-a607-98c755f19dcf','905331602195','Sayın yetkili; ABARDİ NOURDİN adlı müşterinize 221624848 nolu gönderinizin 100x190 Nevada masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:51:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('0e054b7e-205e-4546-ae6f-b699ea2c481e','905059175469','Sayın yetkili; FATİH KAZAR adlı müşterinize 428182749 nolu gönderinizin koltuk 3+3 ürünü 4 parça halinde MOLLİS  adresinizden 18.07.2025 10:15:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('0e05a65c-ee7e-481f-b4bf-eb79d981d0b9',NULL,'AHMAD ALHASAN adlı müşterinizin 100799933 nolu gönderisi 14 parça halinde yola çıkmıştır.','2','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL),
('0e07b499-ebf3-48e5-a2a9-048b6c3bbc3a','4915788014296','Sayın NADİR KURUKOL , 428414858 nolu gönderiniz 9182 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428414858\n\nDear NADİR KURUKOL , your shipment with 428414858 was delivered to you with the delivery code 9182. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428414858\n\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('0e0e59b2-d06c-4e89-94ac-355d46e7a648','491772742981','Sayın BURCU BİNGÖLBALI , 817830150 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817830150\n\nDear BURCU BİNGÖLBALI , your shipment with 817830150 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817830150\n\nBICARGO','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('0e0fc094-dd4c-4ffe-9c79-6d5a6d012e20','905363385813','HALİL İBRAHİM BACAKSIZ adlı müşterinizin 97623604 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL),
('0e1295f1-b67b-4499-9222-5772d2b57869','4915560755375','745771664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4975 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745771664\n\nYour shipment with the number 745771664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4975. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745771664\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('0e149072-a071-400e-a865-b24cec1a9c77','905318109098','MUSTAFA  adlı müşterinizin 45559266 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL),
('0e154a14-d69b-4388-baae-eda92387fb3e','4917621610242','Sayın SEMA KUZULUK SSH, 644635640 nolu gönderiniz 6747 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644635640\n\nDear SEMA KUZULUK SSH, your shipment with 644635640 was delivered to you with the delivery code 6747. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644635640\n\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('0e190e31-3588-4727-836d-a887dbd53221','33695911824','745241298 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6640 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745241298\n\nYour shipment with the number 745241298 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6640. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745241298\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('0e198c9d-60eb-454b-a364-d58924d1b825','33658222162','478212125 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478212125\n\nYour shipment with the number 478212125 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478212125\n\nBICARGO','1','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL),
('0e1f9aef-994a-48f2-8bbd-d89bb93410a0','4917685637648','Sayın CAN ÇELİK, 478507488 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478507488\n\nDear CAN ÇELİK, your shipment with 478507488 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478507488\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('0e1fe05e-ef00-4973-9613-2c56f9888b7b','905075277637','GİZEM YAZICI  adlı müşterinizin 745582484 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('0e201fbd-637f-4fae-8e4a-0900ffd70cee','4915752861277','Sayın RABİA AKKUŞ SSH, 644564440 nolu gönderiniz 3110 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644564440\n\nDear RABİA AKKUŞ SSH, your shipment with 644564440 was delivered to you with the delivery code 3110. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644564440\n\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('0e212c97-2b2e-4632-94bb-e1198683e24f','491784364840','644301613 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644301613\n\nYour shipment with the number 644301613 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644301613\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('0e227b8b-3f85-4391-80cc-7a7975e8f403','905332942204','MARİNELA MARİNKOVİC adlı müşterinizin 505948491 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('0e24a1f3-aba1-4b76-8fa2-9d24775a644d','491632336304','982992264 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10047 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982992264\n\nYour shipment with the number 982992264 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10047. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982992264\n\nBICARGO','1','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL),
('0e252b4f-a0b6-49ad-b05d-189347e2cf22','4915120786621','Sayın EMEL TEKİN, 478180584 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478180584\n\nDear EMEL TEKİN, your shipment with 478180584 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478180584\n\nBICARGO','1','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL),
('0e26cb9b-eaa7-420c-92f8-be1ebf0b4616','33651128899','910407767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8156 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910407767\n\nYour shipment with the number 910407767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8156. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910407767\n\nBICARGO','1','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL),
('0e272868-3242-487a-8a77-3511067985ed','491726428404','Sayın MEHMET BATMAZ, 46558561 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/46558561\n\nDear MEHMET BATMAZ, your shipment with 46558561 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/46558561\n\nBICARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('0e27b86c-06c7-49f9-a69e-450ce0b0faa1','905304259202','MAHMUT ÇELİK adlı müşterinizin 478370539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('0e298888-41ca-409b-99a6-7d3dd3fcc530','33753794689','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('0e2be388-5775-487a-a29e-a2707d11806f','905331602195','Sayın yetkili; BETÜL YILDIZ adlı müşterinize 221811614 nolu gönderinizin 90x190 cm traverten mdf masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 17.10.2025 14:34:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('0e2d298b-d37f-48d9-a46d-93fea566b193','905461661672','Sayın yetkili; FURKAN BARUT adlı müşterinize 644644143 nolu gönderinizin TRAVERTEN SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 18.04.2025 10:58:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('0e2de353-65b9-44f7-bc78-11cca1849b56','905461661672','Sayın yetkili; MELEK IŞIK SSH adlı müşterinize 644452767 nolu gönderinizin Masa üst tabla ssh ürünü 1 parça halinde AZUR MOBİLYA adresinizden 01.07.2025 14:35:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('0e389bd3-3607-415a-afc9-ee908b28743f','4917623256596','Sayın MUSTAFA ÜNLÜSOY, 478318204 nolu gönderiniz 5741 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478318204\n\nDear MUSTAFA ÜNLÜSOY, your shipment with 478318204 was delivered to you with the delivery code 5741. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478318204\n\n\nBICARGO','1','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL),
('0e3de5c8-64da-4e13-9eb2-c10ae0f161f2','905461661672','Sayın yetkili; TUNAY KOCATÜRK adlı müşterinize 644196383 nolu gönderinizin (0533 380 1784) KOLTUK TAKIMI 3-3-1-1 ürünü 4 parça halinde Fatura adresinizden 27.08.2025 14:37:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('0e41a67b-f6a0-41b8-8adf-9c77f19e5e37','4917680448730','449665773 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5787 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449665773\n\nYour shipment with the number 449665773 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5787. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449665773\n\nBICARGO','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('0e441295-ad2b-4978-8f8f-86abc0e7757d','905301592882','ÖZLEM ŞEKERCİ		 adlı müşterinizin 910884465 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('0e4585cb-427a-4ebb-8a77-4393f6d3cbcc','33676771322','478900175 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478900175\n\nYour shipment with the number 478900175 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478900175\n\nBICARGO','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('0e4640d1-209e-4f39-b626-1494f70d3b8c','905336367828','SAİMİR BALLA  adlı müşterinizin 982431907 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('0e4b7c67-73f8-4936-9524-0580113e1935','905075277637','Sayın yetkili; ADEM DEMİR  adlı müşterinize 745197948 nolu gönderinizin VOYAGE PUF  ürünü 1 parça halinde RİXXE  adresinizden 19.09.2025 14:46:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d9f810e-286d-4bae-8abd-224e036ce2c8',NULL),
('0e4d4e41-b067-4ecb-9a17-58f3ed10b2dc','33768416130','Sayın EMRE AFYON , 745547550 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745547550\n\nDear EMRE AFYON , your shipment with 745547550 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745547550\n\nBICARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('0e4ebc12-7448-499d-8c6b-0d9b00463459','32473991543','Sayın MUSTAFA AİT, 449769276 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449769276\n\nDear MUSTAFA AİT, your shipment with 449769276 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449769276\n\nBICARGO','1','ce4c8f08-9110-4882-8b15-e54368f68914',NULL),
('0e50d403-334e-4b26-b57e-fd59dac6bc44','905325000478','Sayın yetkili; SEYFETTİN adlı müşterinize 41298450 nolu gönderinizin kumaş koltuk ürünü 1 parça halinde Fatura adresinizden 05.08.2025 14:14:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('0e52b791-bbe4-4c97-88d2-95196a3d001a','4915204766042','DRİVER NUMBER\n					905541100849','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('0e5335a7-e557-4b49-be13-99e20195defa','905331602195','Sayın yetkili; ŞERAFETTİN KOYUNCU adlı müşterinize 221817193 nolu gönderinizin 75x130 Msm 01 baskılı Orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:10:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8551d3c1-420d-41bd-a461-00738dd54bda',NULL),
('0e552b4e-8ed2-42f2-954a-d902697f5c1b','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin DOLAP ürünü 15 parça halinde EKERS HOME adresinizden 27.10.2025 16:23:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('0e57af88-d458-4c98-a137-f8136400a066','905304259202','ADEM KILINÇ adlı müşterinizin 478117771 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL),
('0e58f246-966b-41fc-9b40-94556ade7c32','905335511664','Sayın yetkili; DİLCAN YEŞİLMEN adlı müşterinize 371290223 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 06.10.2025 14:02:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','751e7cfe-45c9-4ff6-a9db-f5b7e29356ac',NULL),
('0e5e28d5-bdd2-466d-9daf-a5b32d04ad7d','905368336516','HİLAL ZÜBEYİRLER adlı müşterinizin 515973668 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','0e3cd4c9-294c-4ded-8194-bf22e23bc5a0',NULL),
('0e607420-53b3-42a9-8cdd-4eb6bb3c61a8','905451801422','Sayın MUSA YAMAN, 745743577 nolu gönderiniz 7799 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745743577\n\nDear MUSA YAMAN, your shipment with 745743577 was delivered to you with the delivery code 7799. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745743577\n\n\nBICARGO','1','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('0e63700f-43b5-40ba-b6c1-3d6cd8f0fdaa','436769706003','Sayın EZGİ YÜCEL, 437713339 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437713339\n\nDear EZGİ YÜCEL, your shipment with 437713339 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437713339\n\nBICARGO','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('0e64ae22-c642-4134-ada9-8f9cf0b9c361','905517075149','İPEK ÇİFTÇİ adlı müşterinizin 478300917 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('0e6ab745-5ee1-4020-81cc-9aba41fed49d','905392681200','Sayın BAHTİYAR CİNEL, 23.04.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3315795\nŞifre : 3315795\n			\nBİCARGO','1',NULL,'3d3e1579-5d80-4740-8a5e-cb784d739a01'),
('0e6f8d2c-8b90-4bf0-9770-55d6a189ea8a','33640388556','Sayın MUHAMMET YILDIRIM , 745946644 nolu gönderiniz 5551 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745946644\n\nDear MUHAMMET YILDIRIM , your shipment with 745946644 was delivered to you with the delivery code 5551. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745946644\n\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('0e70722f-0a90-4c3b-8595-edfc6cdb6ba0','9053259981980','YILDIRIM ASLAN adlı müşterinizin 614339204 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('0e72e8d6-7ed1-4f61-a18a-1823990d2d9b','905313340045','Sayın yetkili; SELİN URAK adlı müşterinize 437152964 nolu gönderinizin Masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 23.08.2025 13:17:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('0e730750-8284-4ffb-88da-4a30e856f693','905335708965','AAAAAAAAAAAAAA adlı müşterinizin 73574376 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','5b516169-2e1d-421d-a411-a20956666225',NULL),
('0e763792-bf9e-433a-aa4f-0f6a17334568','31628566081','Sayın RADİA AL ADOUİ, 644599754 nolu gönderiniz 8096 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644599754\n\nDear RADİA AL ADOUİ, your shipment with 644599754 was delivered to you with the delivery code 8096. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644599754\n\n\nBICARGO','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('0e78dbf9-e1f4-4c86-afee-e09453d443b9','491722630370','Sayın LAİLA MANDANİ, 371887346 nolu gönderiniz 9263 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371887346\n\nDear LAİLA MANDANİ, your shipment with 371887346 was delivered to you with the delivery code 9263. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371887346\n\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('0e7c1a48-17bc-4c64-863c-aeaaaf72204d','4917631419046','Sayın NADİR KURUKOL, 428752676 nolu gönderiniz 4529 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428752676\n\nDear NADİR KURUKOL, your shipment with 428752676 was delivered to you with the delivery code 4529. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428752676\n\n\nBICARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('0e7c203c-b231-44ce-b1a7-08ce0dac0dd1','491605646374','910291071 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7768 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910291071\n\nYour shipment with the number 910291071 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7768. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910291071\n\nBICARGO','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('0e80c792-990e-48e0-a8d0-b40b0c1a26b8','905350617509','Sayın yetkili; ALEYNA KARAKUS adlı müşterinize 613787861 nolu gönderinizin Sehpa ürünü 2 parça halinde Masami adresinizden 23.09.2025 18:20:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('0e8e166d-5da9-40a7-8a0d-a5bc2f45f262','905325000478','ERKAN ÇEVİK adlı müşterinizin 41291679 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','0d40e91f-6390-4121-9303-5976e9f6f226',NULL),
('0e913579-e0d1-488a-badb-f33bceda670e','111111111111','Sayın TURGAY, 248240825 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248240825\n\nDear TURGAY, your shipment with 248240825 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248240825\n\nBICARGO','2','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('0e9284a6-87dc-4f76-a39f-a8e319d98d65','905301534568','ERGÜN GÜZEL adlı müşterinizin 193362317 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL),
('0e939bed-872c-4be3-8a32-730a964d7192','491734175349','İletişim \n					Şöför Uğur Acar +905424435917','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('0e99e24f-2764-484c-811c-d7ffc225172d','905517075149','BELKISA KAPLAN adlı müşterinizin 478570794 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('0e9b813f-3c74-4576-9b99-b0ba7a3ca721','905313340045','ALİ AKKAN adlı müşterinizin 43725194 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('0ea017b3-e4a6-42ee-ac19-c0dcecdb043e','33680742499','Sayın NECATİ AKIN, 31929392 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31929392\n\nDear NECATİ AKIN, your shipment with 31929392 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31929392\n\nBICARGO','1','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL),
('0ea2bf47-5d68-4ef2-bb94-179b37b8235e','33745279519','221287992 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7274 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221287992\n\nYour shipment with the number 221287992 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7274. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221287992\n\nBICARGO','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('0ea2f447-53bd-4ce2-b7d2-1ec6d6fa07b1','4957852966','Sayın CAN ALTIN, 644110179 nolu gönderiniz 6846 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644110179\n\nDear CAN ALTIN, your shipment with 644110179 was delivered to you with the delivery code 6846. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644110179\n\n\nBICARGO','2','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('0ea36f34-cc55-4102-a12d-06accb5712f2','436506511162','437982892 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6818 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437982892\n\nYour shipment with the number 437982892 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6818. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437982892\n\nBICARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('0ea3f894-dddf-4a40-beb2-aaeca4f045f6','905304259202','YAŞAR YALMAN adlı müşterinizin 478559056 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('0ea4047b-0e5a-4bf7-881b-ffb1094ce3be','4915778521102','Sayın TABLO, 248209461 nolu gönderiniz 5930 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248209461\n\nDear TABLO, your shipment with 248209461 was delivered to you with the delivery code 5930. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248209461\n\n\nBICARGO','2','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL),
('0eaa17c8-5ea3-4a4a-be0c-cdf4062e904b','905357955726','TEKİN ÇİLLİ adlı müşterinizin 315959949 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL),
('0eaab858-c1c6-49f4-927e-3ddbdd283006','905443955915','DURMUŞ MEVLÜT adlı müşterinizin 614873400 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL),
('0eb117cc-41d1-493a-b89c-a4ead64504ef','33609376931','Sayın ELOUAZGHİ ANAİS , 745879253 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745879253\n\nDear ELOUAZGHİ ANAİS , your shipment with 745879253 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745879253\n\nBICARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('0eb18d1f-ca3f-41bf-ad32-c7ab38285252','905335708965','ALİ ŞİMŞEK adlı müşterinizin 248625081 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL),
('0eb641f7-bfe3-452f-88ed-5cc9c4e0e348','905335511664','ERDEMCAN GÖZÜBÜYÜK adlı müşterinizin 37159654 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('0eba13d7-392c-4a2e-aa69-8bf8394d8bae','905331602195','Sayın yetkili; HASAN YALÇIN adlı müşterinize 221724224 nolu gönderinizin 90x190 mermer baskı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:18:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('0ebc9948-0c85-4bd8-8144-14d7ed9e3165','491784084802','644590959 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2538 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644590959\n\nYour shipment with the number 644590959 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2538. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644590959\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('0ec1de86-2691-4d63-807e-230218393c4e','33616174478','517910414 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5456 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517910414\n\nYour shipment with the number 517910414 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5456. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517910414\n\nBICARGO','1','398f18a6-4116-4296-8890-4d154fc30789',NULL),
('0ec65f0d-e629-414a-ac1b-ca323ec28753','905461661672','Sayın yetkili; EMRE GÖZÜM(K) adlı müşterinize 644312365 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 17.10.2025 10:36:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('0ec6de3a-92f6-49c1-9414-1f922c09679b','905534084469','İLHAN ERAYDIN adlı müşterinizin 15151133 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('0ec70e06-c61d-4406-b29d-1123fccdfb95','4917680727235','Sayın MANOLYA PELİN ERDOĞAN ÖZÇELİK, 437649706 nolu gönderiniz 5069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437649706\n\nDear MANOLYA PELİN ERDOĞAN ÖZÇELİK, your shipment with 437649706 was delivered to you with the delivery code 5069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437649706\n\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('0ec919f2-dbf3-4bef-8f48-e58774d2fa5b','905054335859','YUSUF DURSUN adlı müşterinizin 501668492 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL),
('0ecf5397-5295-4959-99f6-a12b1667a155','4917622797061','371494792 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371494792\n\nYour shipment with the number 371494792 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371494792\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('0ed2ae02-f3d9-4253-bd64-e4227e9314b1','905325000478','Sayın AAAAAA BBBBBBB, 07.12.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0460324\nŞifre : 0460324\n			\nBİCARGO','1',NULL,'ada046d0-c324-498e-b319-06be0a19f72b'),
('0ed744ab-f524-4582-aaef-3b3c7b3eb5f5','905350617509','NURETTİN BAYRAK  adlı müşterinizin 613661947 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('0ede95a8-39f2-4824-9139-858bda44a50f','491784084802','Sayın MUHAMMET KÖSEDAĞ(K), 644590959 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644590959\n\nDear MUHAMMET KÖSEDAĞ(K), your shipment with 644590959 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644590959\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('0ee2c364-6cea-47bf-bd29-7f532371b3e8','905064141111','HATUN ŞİMŞEK adlı müşterinizin 842151692 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('0ee303bd-692b-403b-b96e-eaf7476e398d','4915770884048','Sayın NURAN YILDIRIM, 910561299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910561299\n\nDear NURAN YILDIRIM, your shipment with 910561299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910561299\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('0ee3f5e1-ac25-4f28-8d23-fc378827fcc4','905079358213','Sayın yetkili; ZELİHA KILGI adlı müşterinize 745557977 nolu gönderinizin MUTFAK MASA TK  ürünü 6 parça halinde Fatura adresinizden 23.10.2025 12:57:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c82f6276-7135-4de6-87f0-112f5bbfaf90',NULL),
('0ee62950-7fd6-4bee-8268-4499b05b9ab1','905451571652','SALAM KORKMAZ adlı müşterinizin 531445058 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('0ee8bce8-49ea-41c9-a9f5-a3f4f4232a79','4917657654361','Sayın MUSTAFA KESKİN, 745976194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745976194\n\nDear MUSTAFA KESKİN, your shipment with 745976194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745976194\n\nBICARGO','1','97d3447f-3a32-459a-8bdd-d360b881a042',NULL),
('0ee9cb9d-6158-4b24-9dd9-46fe7436d321','905315907031','Sayın TEVFİK KÜÇÜK, 644513470 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644513470\n\nDear TEVFİK KÜÇÜK, your shipment with 644513470 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644513470\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('0eef6635-bffe-412e-a842-9bdfed23757e','905075277637','METE BOZDAĞ 1  adlı müşterinizin 745241298 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('0ef02dbb-8b7a-479d-b3e6-b345f686fab7','905363385813','Sayın yetkili; AYŞE ŞEKER adlı müşterinize 976114868 nolu gönderinizin TV ÜNİTE ürünü 3 parça halinde Recai Yılmaz adresinizden 11.07.2025 14:05:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('0ef05750-b4fc-4682-9c4c-81ba5be0e900','905331602195','BURCU GELİR  adlı müşterinizin 221461818 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('0ef3bc77-872e-4e54-800f-19aef120f2b5','491621579425','Sayın MERYEM BİRCAN ANİK, 437791709 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437791709\n\nDear MERYEM BİRCAN ANİK, your shipment with 437791709 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437791709\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('0ef57bec-a4ec-4f98-9774-1b02bf706a3a','905454259202','MELİSA SAĞLIK adlı müşterinizin 478483851 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('0efb5e22-2b73-4c88-9737-412bfdf03fcd','905059175469','SALİH DURAK adlı müşterinizin 428718727 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('0efda180-5bc8-464c-938f-ef8703da8873','4917684656802','289392695 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/289392695\n\nYour shipment with the number 289392695 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/289392695\n\nBICARGO','1','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL),
('0efe09fb-72f6-45bb-b13b-455df3825244','905301592882','KUBİLAY AKTAR adlı müşterinizin 910473991 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('0f051117-ea6b-46fe-ae53-035e8761bb9b','4915737960433','Sayın NURGÜL YILMAZ, 449393754 nolu gönderiniz 6015 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449393754\n\nDear NURGÜL YILMAZ, your shipment with 449393754 was delivered to you with the delivery code 6015. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449393754\n\n\nBICARGO','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('0f0b7d51-9a66-4577-a92b-283a783f035b','905304259202','HAKAN YAZICIOĞLU adlı müşterinizin 478681830 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL),
('0f0d29b0-11d5-44f4-b51b-cd10bc9e22f8','33762006399','7454878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7454878\n\nYour shipment with the number 7454878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/7454878\n\nBICARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('0f0d7f52-7c3b-41ef-9b77-f9175f9883e5','41799463289','Sayın MÜLLER CYRİLL, 126525086 nolu gönderiniz 4229 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126525086\n\nDear MÜLLER CYRİLL, your shipment with 126525086 was delivered to you with the delivery code 4229. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126525086\n\n\nBICARGO','1','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL),
('0f12da88-6b44-4276-9846-180b74a29f58','905331602195','LEJLA GUDİC  adlı müşterinizin 221758948 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('0f16b9ed-5853-4766-b7e2-495adbb00f6a','905335511664','İLAYDA GÜNEŞ SSH adlı müşterinizin 371280361 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('0f1a82a7-fa87-48b6-b086-192815d09b92','4917663691991','Sayın ENES İSMET UGUZ, 598986653 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598986653\n\nDear ENES İSMET UGUZ, your shipment with 598986653 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598986653\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('0f2080da-f1c9-454e-a7cd-e26f18bff2df','905304259202','ZİLAN BİLİN adlı müşterinizin 478250269 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('0f211df1-9ea3-4a3a-a5ee-e12fdc7fe953','905535521975','KENAN SEKMEN  adlı müşterinizin 01914447 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','97182860-1f38-433b-b884-7944ccda1a30',NULL),
('0f23e641-c449-41ea-8a53-cb315a89a10a','491739366502','Sayın SARA CASTRO, 371287728 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371287728\n\nDear SARA CASTRO, your shipment with 371287728 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371287728\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('0f25e3f8-4abe-465b-b600-13836fa189c4','33651036902','Sayın LEYLA TACİMOĞLU, 319212544 nolu gönderiniz 10167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319212544\n\nDear LEYLA TACİMOĞLU, your shipment with 319212544 was delivered to you with the delivery code 10167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319212544\n\n\nBICARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('0f346c5e-f6cb-4f07-aa30-88bc614dbe94','905313340045','Sayın yetkili; DİLEK YILMAZ adlı müşterinize 437227214 nolu gönderinizin  Koltuk takımı 3+3 ürünü 3 parça halinde Modapark adresinizden 16.10.2025 15:59:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','071c9b00-dfd6-452e-a75b-c40b31f270dc',NULL),
('0f362180-86b1-4e29-9c94-ec6089e75208','491781356131','Sayın GÜLSÜN UZUN, 478118994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478118994\n\nDear GÜLSÜN UZUN, your shipment with 478118994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478118994\n\nBICARGO','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('0f3f452b-8cfb-49cf-a998-4d30e6ba8d34','491631905914','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('0f41920f-927c-40dd-afa0-9547a3cb4d27','905325000478','NİDA YİLDİRİM adlı müşterinizin 412939859 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ada30e7c-1819-48d8-b086-9ceffe365e0b',NULL),
('0f43dd0e-3faa-4392-a0c2-f3f3b2d9f474','905352129940','SALİM YILDIZ adlı müşterinizin 112189439 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('0f44f937-e194-47b2-9482-283281b7ee41','4917622968923','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('0f4a5a85-3932-4e13-854d-ec51e5559288','905011170016','Sayın yetkili; YONCA KILIÇ adlı müşterinize 380417164 nolu gönderinizin MASA ürünü 6 parça halinde Fatura adresinizden 15.04.2025 16:32:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('0f4b23ad-b5fc-45ed-8d4e-95fad408f2e6','905079358213','MEHMET GÜRKAN adlı müşterinizin 745661183 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL),
('0f4b97e9-33d2-431e-b255-5ab72bdd2b19','4915776398644','Sayın NURCAN MANSUR, 478377442 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478377442\n\nDear NURCAN MANSUR, your shipment with 478377442 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478377442\n\nBICARGO','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('0f4ca3f6-dae2-4f02-946e-020380e209fe','905301592882','AHMET EMİN GÜL adlı müşterinizin 910201328 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('0f4d6a02-e0dc-4518-93f6-5b371d3b0d96','905075277637','Sayın yetkili; BURÇİN MEN adlı müşterinize 745970479 nolu gönderinizin BLACKLINE SİFONYER AYNA PUF  ürünü 7 parça halinde Fatura adresinizden 09.09.2025 17:19:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('0f503fa2-6b82-4241-b7af-1648dfe757f5','491795473589','Sayın HASRET AVCI, 644890175 nolu gönderiniz 4740 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644890175\n\nDear HASRET AVCI, your shipment with 644890175 was delivered to you with the delivery code 4740. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644890175\n\n\nBICARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('0f507634-a350-4383-b75a-47c279265945','905075277637','AYHAN İÇEN adlı müşterinizin 745813483 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('0f53ca7f-25b2-4dbc-96a6-7727df7d49e3','905335708965','AAAAAAAAA adlı müşterinizin 735211280 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL),
('0f54179b-5ae5-40f7-86cb-11b121a0dda3','905333221039','HALİT SEVER adlı müşterinizin 750363306 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('0f543909-e2bb-46f3-8aaa-df279fd6e2ce','905355928266','ELA SARL adlı müşterinizin 412316933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL),
('0f56ea84-f1f8-4732-98b3-72f64513d5c4','905331602195','LATİFA KHAZROUKI adlı müşterinizin 221139773 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('0f5c7724-1be6-4258-b139-829ee5b500f7','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Sehpa Üst ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:48:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('0f5dc2f2-f9c4-4b22-9858-aa4b7c699fe1','905428209234','YUSUF NAVRUZ  adlı müşterinizin 319141495 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('0f62fbca-ed8e-425c-99c4-bd91df7d7fb7','905510396989','Sayın yetkili; HİCRAN KAPLAN adlı müşterinize 319206159 nolu gönderinizin efes köşe takımı ürünü 6 parça halinde katre adresinizden 13.01.2025 11:35:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('0f63cab4-8c28-4415-b65b-de58464d6368','4917683202035','Sayın FİLİZ DEĞER, 371655670 nolu gönderiniz 5698 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371655670\n\nDear FİLİZ DEĞER, your shipment with 371655670 was delivered to you with the delivery code 5698. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371655670\n\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('0f64cac0-1540-4984-b9dc-e0f1e66bed4f','33781020589','Sayın NESLİHAN KÖSEM , 910405441 nolu gönderiniz 9706 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910405441\n\nDear NESLİHAN KÖSEM , your shipment with 910405441 was delivered to you with the delivery code 9706. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910405441\n\n\nBICARGO','1','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL),
('0f6653c7-8070-4af3-841e-3f35f4688cc4','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('0f6a4281-204a-4f44-9673-e4dbcf15b4e1','905331602195','İBRAHİM AKIN  adlı müşterinizin 221594735 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('0f6d33d2-c640-489b-8eb3-4cafc4fae979','33695163473','Sayın SARAH KUSLU, 745502887 nolu gönderiniz 8246 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745502887\n\nDear SARAH KUSLU, your shipment with 745502887 was delivered to you with the delivery code 8246. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745502887\n\n\nBICARGO','1','c8f99487-f21d-467c-9282-047182f5edbf',NULL),
('0f6e9a39-a03d-49fa-a2ff-50905e555719','4917632881676','Sayın ABDULLAH ÖĞRETEN, 644917251 nolu gönderiniz 5800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644917251\n\nDear ABDULLAH ÖĞRETEN, your shipment with 644917251 was delivered to you with the delivery code 5800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644917251\n\n\nBICARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('0f6f3165-c320-4a46-93cd-e4844fe45683','905454259202','ÖZLEM RAMADAN adlı müşterinizin 478150977 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('0f72587c-9772-4dd4-974a-49ab216b5ff1','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin frida köşe ürünü 12 parça halinde RİXXE adresinizden 24.09.2025 17:51:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('0f72a4f6-6fb4-4559-aa51-b103b5c95302','905517075149','Sayın yetkili; BESNA ULUĞ adlı müşterinize 478906000 nolu gönderinizin MİRABELLA KONSOL MASA SANDALYELER TV -SEHPALAR ürünü 15 parça halinde medusa home adresinizden 15.09.2025 13:25:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('0f7488ef-401d-462d-89df-4242f81fd749','436642175788','DRİVER\n					ADNAN\n+905354622027','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('0f763b7b-8331-426a-9e7e-625a5028a73c','4917640388186','Sayın RAMAZAN HAVAÇEKEN(K), 644879098 nolu gönderiniz 7111 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644879098\n\nDear RAMAZAN HAVAÇEKEN(K), your shipment with 644879098 was delivered to you with the delivery code 7111. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644879098\n\n\nBICARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('0f7a27b7-6bf3-4e1f-926c-b6d53cd9ab2c','905331602195','MOHAMED SAİD ZARZAURİ adlı müşterinizin 221240151 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9feff913-404e-4b4c-b57f-21740becbcff',NULL),
('0f7cd0a1-1492-456b-9969-a592cd12e91d','33763889303','231211138 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2998 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231211138\n\nYour shipment with the number 231211138 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2998. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231211138\n\nBICARGO','1','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL),
('0f853b34-375b-4650-ba66-d3a37792c7bb','4369911677447','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('0f8f0023-eda3-493d-a207-9876f2aa6cc5','905073106101','MUHTEREM KAYA adlı müşterinizin 465891539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL),
('0f8f1c8a-5a79-40a6-80f3-1548ccca0612','4915783856117','ŞÖFÖR NUMARASI\n					+905467896981','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('0f96d9fe-0e7d-4b19-94fc-9814cd89e350','436603406293','Sayın yetkili; MİKAİL ÖZBEK adlı müşterinize 675749315 nolu gönderinizin sandalye ürünü 3 parça halinde MASAMI adresinizden 15.08.2025 16:38:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('0f971fa5-e7b2-4c5c-b0f1-1cddaef6ff48','905335511664','Sayın yetkili; EMEL ÖZTÜRK adlı müşterinize 371191289 nolu gönderinizin 5 ürünü 5 parça halinde SM Tasarım adresinizden 21.07.2025 10:35:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('0f9b0d3c-d21d-418f-a50e-b33f848ecc9f','905443955915','ÖZCAN ÇETİN adlı müşterinizin 614725757 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL),
('0f9c7114-98c2-47ff-afe3-4c9c2fef56f8','33787053460','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('0f9e22d1-5878-4c9a-ab60-414520f54028','905079047428','OĞUZ ÖZÇELİK adlı müşterinizin 449203445 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','110f0eb8-2914-4e85-b599-dc743891806b',NULL),
('0fa1f15e-ccab-4db5-a0c2-ef3bc10344bf','4916228157309','Sayın ŞÜKRAN ALP, 614650407 nolu gönderiniz 9443 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614650407\n\nDear ŞÜKRAN ALP, your shipment with 614650407 was delivered to you with the delivery code 9443. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614650407\n\n\nBICARGO','2','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL),
('0fa7834e-beef-4233-a260-650ab65eb778','491632447779','Sayın ÖZKAN KARAOĞLU, 614200423 nolu gönderiniz 5393 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614200423\n\nDear ÖZKAN KARAOĞLU, your shipment with 614200423 was delivered to you with the delivery code 5393. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614200423\n\n\nBICARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('0fa8a18f-6632-42f4-a64b-15d2e45497a4','905318109098','ZERDEŞT DALMIŞ adlı müşterinizin 455726286 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL),
('0fa91975-972a-4067-8f8f-d52687b92cde','905331602195','Sayın yetkili; MEHMET ALİ YİĞİT adlı müşterinize 221441605 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde Fatura adresinizden 07.02.2025 15:04:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('0fae81ea-7a60-407e-addb-fa20d22103af','431728611102','Sayın VALMİRA RAMADANİ, 695394738 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/695394738\n\nDear VALMİRA RAMADANİ, your shipment with 695394738 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/695394738\n\nBICARGO','2','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('0fb32989-c0d5-42ef-a596-72c09aab0418','491786615616','Sayın YILDIRIM ASLAN, 614339204 nolu gönderiniz 3022 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614339204\n\nDear YILDIRIM ASLAN, your shipment with 614339204 was delivered to you with the delivery code 3022. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614339204\n\n\nBICARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('0fb55b49-81a2-4aa2-a7fd-5973140b6bfb',NULL,'ÖZGÜR BOZKURT adlı müşterinizin 231211138 nolu gönderisi 9 parça halinde yola çıkmıştır.','2','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL),
('0fb628bd-6653-45c5-8eb4-393371765807','491797759335','644200718 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8478 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644200718\n\nYour shipment with the number 644200718 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8478. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644200718\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('0fb681f2-2b21-4ad7-8975-c8ff1f4cdae8','4915122149327','Sayın HİLAL ZÜBEYİRLER, 515973668 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515973668\n\nDear HİLAL ZÜBEYİRLER, your shipment with 515973668 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515973668\n\nBICARGO','1','0e3cd4c9-294c-4ded-8194-bf22e23bc5a0',NULL),
('0fb6f6c3-f606-4098-a6a0-7365fdc97dcd','905078062550','Sayın yetkili; TALHA KARA adlı müşterinize 598384021 nolu gönderinizin MASA SEHPA ürünü 6 parça halinde RİO FATİH adresinizden 29.07.2025 17:13:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('0fb93453-6e0a-4d1d-8898-78247a70f772','905350617509','Sayın yetkili; BURHAN SARIKURT adlı müşterinize 613431273 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 24.04.2025 12:08:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('0fb95c48-63e6-4742-9a38-5b978a86b9a7','31687335737','Sayın GÖKBEN BEYDİLLİ, 478836905 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478836905\n\nDear GÖKBEN BEYDİLLİ, your shipment with 478836905 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478836905\n\nBICARGO','1','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL),
('0fba0ab1-f508-46cd-9e29-56ab47de082a','905325000478','EURO STAR MOBEL adlı müşterinizin 412417422 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL),
('0fbae619-7386-45bd-b046-697a93c0b821','4915734346614','896155892 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896155892\n\nYour shipment with the number 896155892 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896155892\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('0fbeb44a-a59a-401d-83af-bba0e8aba5c4','4915221698583','Sayın REZA OMERİ, 449394658 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449394658\n\nDear REZA OMERİ, your shipment with 449394658 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449394658\n\nBICARGO','1','6a397517-cdaf-4836-a678-f168177b94a2',NULL),
('0fc0675b-50d6-430b-b953-e372126bc9fc','905079358213','Sayın yetkili; HAKAN CANBAY adlı müşterinize 74565941 nolu gönderinizin RAMS YATAK ODASI  ürünü 1 parça halinde Fatura adresinizden 19.01.2025 19:07:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('0fc6a161-9643-415a-8d95-8148716339e3','11111111111111','437481013 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9532 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437481013\n\nYour shipment with the number 437481013 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9532. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437481013\n\nBICARGO','2','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('0fc6eb3f-63ea-4e61-9224-8e30c4a2d27c','4915734541843','Sayın FATİH YİGİT, 515956879 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515956879\n\nDear FATİH YİGİT, your shipment with 515956879 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515956879\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('0fc77235-8797-4235-9955-31657b3a651f','905336367828','Sayın yetkili; MEHMED SHABAN  adlı müşterinize 982893962 nolu gönderinizin KÖŞE KOLUK  ürünü 4 parça halinde Comfortlife  adresinizden 10.07.2025 11:43:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('0fc80d6a-ddd2-45aa-b0ad-36f61078f3b3','33616412161','Sayın SÜLEYMAN KARA, 745523335 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745523335\n\nDear SÜLEYMAN KARA, your shipment with 745523335 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745523335\n\nBICARGO','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('0fc92f02-8f15-44ee-add0-37f7eabcb5ac','31640905029','Sayın CYNTHİA GARLEE, 644126759 nolu gönderiniz 6153 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644126759\n\nDear CYNTHİA GARLEE, your shipment with 644126759 was delivered to you with the delivery code 6153. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644126759\n\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('0fcaa68a-866d-41b3-a9e6-c53d0ef45061','905075277637','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin FRANCO T SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 10.06.2025 11:38:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('0fcb7ee8-8d16-48b4-975e-b73495669473','5325000478','Sayın HALİL İBRAHİM SÖKE, 11.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1051266\nŞifre : 1051266\n			\nBİCARGO','1',NULL,'bae1a051-2661-4d51-b287-a8fd73d30813'),
('0fcc33b5-ab62-4072-8177-4c03c2d38a92','905304259202','Sayın yetkili; KIYMET KARA adlı müşterinize 478606230 nolu gönderinizin 120LİK VE 160 LIK SET 3.5 M3 ürünü 8 parça halinde çelikbey inegöl depo adresinizden 23.11.2024 17:07:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('0fcd7b96-1677-4848-823c-a29b4924daa0','905461661672','Sayın yetkili; ÖMER GEDİK(K) adlı müşterinize 644113252 nolu gönderinizin köşe koltuk ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:16:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('0fd0ed1b-5509-4944-b952-0d4d84f071cf','4915784616270','Sayın TUĞBA GÜLSEVEN SSH, 644860505 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644860505\n\nDear TUĞBA GÜLSEVEN SSH, your shipment with 644860505 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644860505\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('0fd1a299-ed35-4d3d-91da-dca1354a0f89','491727930576','598396998 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598396998\n\nYour shipment with the number 598396998 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598396998\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('0fdb8d97-129b-4c33-8fa3-dab62b0d15cd','4915128983486','Sayın JİLLİA AMİRİ, 982630175 nolu gönderiniz 2873 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982630175\n\nDear JİLLİA AMİRİ, your shipment with 982630175 was delivered to you with the delivery code 2873. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982630175\n\n\nBICARGO','1','d46dc46d-e5f4-4787-aee1-803a6155fef5',NULL),
('0fdc03ab-93a0-462d-9375-151d7833b8ab','33636227871','Sayın AHMED AZEEZ , 221364325 nolu gönderiniz 10138 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221364325\n\nDear AHMED AZEEZ , your shipment with 221364325 was delivered to you with the delivery code 10138. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221364325\n\n\nBICARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('0fee7313-6891-4474-a7c6-124f563b0172','905325000478','Sayın yetkili; BELÇİKA  adlı müşterinize 412102597 nolu gönderinizin Koltuk  ürünü 2 parça halinde Fatura adresinizden 11.07.2025 11:19:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('0ff4df50-96cf-428a-ab1e-83d5ae9a6fd9','905331602195','MERVE KORKMAZYUREK adlı müşterinizin 221511033 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('10037427-5510-492d-8e85-f263c803cc57','905331602195','Sayın yetkili; HASAN BİLECEN adlı müşterinize 221121416 nolu gönderinizin 90x160 traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:33:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('10068803-0166-487d-841b-3b12cfe644a6','4915906477073','Sayın OSMAN ASLAN, 598127401 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598127401\n\nDear OSMAN ASLAN, your shipment with 598127401 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598127401\n\nBICARGO','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('10073f25-1e64-4a31-a685-5f26045e664b','491773889396','371696993 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9247 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371696993\n\nYour shipment with the number 371696993 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9247. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371696993\n\nBICARGO','1','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('1008f115-5c35-4eec-a573-ceeff7fce661','905069116877','DANFA adlı müşterinizin 817288476 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('100bdf95-1906-4f59-8a4c-7737f9c70786','905313340045','NURDAN GÜNDÜZ adlı müşterinizin 437529604 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('100c1ed6-e917-4beb-b901-c7c48af9eaf3','4915225928224','Sayın HÜSEYİN PEKTAŞ, 745193877 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745193877\n\nDear HÜSEYİN PEKTAŞ, your shipment with 745193877 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745193877\n\nBICARGO','1',NULL,NULL),
('100e5534-2f17-4e93-a75b-0381ad134b78','491795637471','Sayın MEHMET SARI, 371820872 nolu gönderiniz 2197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371820872\n\nDear MEHMET SARI, your shipment with 371820872 was delivered to you with the delivery code 2197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371820872\n\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('100eb7bd-db6e-411e-8bef-f5f219198bd2','905350617509','Sayın yetkili; VAİSE İBRAHİM adlı müşterinize 613108463 nolu gönderinizin Traverten masa+sehpa ürünü 1 parça halinde Fatura adresinizden 20.08.2025 19:14:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('10105f35-ba02-4760-ab19-078c7af0be7e','905304259202','MUSTAFA ÜNLÜSOY adlı müşterinizin 478318204 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL),
('10138014-3174-4478-a6fc-566040c87f1d','33975706258','Sayın ABDULLAH ÖZER		, 910594430 nolu gönderiniz 10046 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910594430\n\nDear ABDULLAH ÖZER		, your shipment with 910594430 was delivered to you with the delivery code 10046. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910594430\n\n\nBICARGO','2','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('101cb754-3634-4715-a93d-d127290018ca','4917670281614','Sayın MEHDİ SALİHU, 371434188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371434188\n\nDear MEHDİ SALİHU, your shipment with 371434188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371434188\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('101fb45d-7d02-4f7f-b4c4-2e1d9c8a4a08','5325000478','Sayın ADNAN DURSUN, 16.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1100774\nŞifre : 1100774\n			\nBİCARGO','1',NULL,'ebc1b100-cb77-4268-b975-a2a46cd2c876'),
('102368ff-d84f-4a51-810d-19b6216ddfd2','33667410242','Sayın ANİL ZAMUR , 221204525 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221204525\n\nDear ANİL ZAMUR , your shipment with 221204525 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221204525\n\nBICARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('102538a6-7bfb-4031-b65b-c8a31ccd4579','905079047428','Sayın yetkili; MEHMET ÇANKAYA adlı müşterinize 449136824 nolu gönderinizin Baza başlık 4 adet 120-200 ürünü 16 parça halinde Fatura adresinizden 10.01.2025 14:42:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('1028536e-f0ca-4921-8c14-6e488092813d','4915751450070','644644143 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644143\n\nYour shipment with the number 644644143 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644644143\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('102e6a89-6cdb-4f5c-9bf3-49b95f59fd0a','905304259202','AHMET CELEBCİ adlı müşterinizin 478650682 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('102f6cb9-6bb2-4291-9f94-a0a8aa20a6f2','31625064385','4127825 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6306 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/4127825\n\nYour shipment with the number 4127825 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6306. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/4127825\n\nBICARGO','1','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL),
('1033c0b9-e2fa-43f7-9ef8-0a3f103dad82','905331602195','Sayın yetkili; SERKAN YILMAZ adlı müşterinize 22145224 nolu gönderinizin 90x190 Milas beyaz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.03.2025 15:42:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('103bd2c6-7453-4cb3-b908-fac89acbf0be','33771550561','Sayın SULTAN GÖR, 478885043 nolu gönderiniz 4071 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478885043\n\nDear SULTAN GÖR, your shipment with 478885043 was delivered to you with the delivery code 4071. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478885043\n\n\nBICARGO','1','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('103da9db-50c2-42d5-96d6-b217f9f5e230','33699281403','910599740 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910599740\n\nYour shipment with the number 910599740 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910599740\n\nBICARGO','1','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('103ed18d-ff39-4e6d-b195-671b3c51251c','0041765845886','12771217 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7417 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12771217\n\nYour shipment with the number 12771217 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7417. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/12771217\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('10437d53-4545-42bc-97ae-bf6102958f62','905331602195','ESRA ALTINTAŞ  adlı müşterinizin 221437904 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL),
('1044ba90-bdfe-49e6-a5c0-1d4eb71ffc3e','905079358213','AYŞE ŞEKER adlı müşterinizin 745671718 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('10469dd3-44b3-40a8-bf68-e40a7265139a','905461661672','Sayın yetkili; RUKİYE BARUT adlı müşterinize 644626371 nolu gönderinizin ORTA SEHPA  ürünü 2 parça halinde Masami Mobilya adresinizden 12.05.2025 16:37:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('10488c84-5933-4f1f-9938-151061d341be','905335511664','Sayın yetkili; HAFİZE BALİ adlı müşterinize 371539784 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:10:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('104dda21-6b11-474f-8978-e1d5aa852a2a','905301592882','KUBİLAY AKTAR adlı müşterinizin 910473991 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('104de0bb-f6e3-499a-be4c-14571e904aca','4917624317947','Sayın VELİ ŞAHİN, 598168850 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598168850\n\nDear VELİ ŞAHİN, your shipment with 598168850 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598168850\n\nBICARGO','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('105166b2-60c0-4aa8-9c5e-b1e3b791acd7','4915252595049','Sayın SEFA TÜZER, 428879207 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428879207\n\nDear SEFA TÜZER, your shipment with 428879207 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428879207\n\nBICARGO','1','c928edbb-a731-4b55-bdfb-3f68dedd72df',NULL),
('10540df8-70fd-43b9-a9ef-5dc25a1eb703','9054439559150','Sayın yetkili; REBİN DOĞANER adlı müşterinize 614597563 nolu gönderinizin ELİZA BER. SNDLY 6ADT,ZİGON SEHPA VE ORTA SEHPA ürünü 4 parça halinde ELİZA DESİGN adresinizden 23.10.2025 11:11:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL),
('105a80d4-5d03-4455-8b74-bae4da42208f','905079358213','Sayın yetkili; HİDAYET KURT adlı müşterinize 745789797 nolu gönderinizin SEDEF KONSOL + AYNA ürünü 3 parça halinde TREE MOBİLYA adresinizden 27.03.2025 11:43:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('105a89e2-7b05-4ad1-b220-bb888a3ca165','4917672163704','428561353 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3328 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428561353\n\nYour shipment with the number 428561353 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3328. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428561353\n\nBICARGO','1','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL),
('105fdc23-d980-4290-8e4c-203d2b96402d','905313340045','MANOLYA PELİN ERDOĞAN ÖZÇELİK adlı müşterinizin 437649706 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('106c459d-11ad-40e2-8656-904bddbe8767','905368336516','Sayın yetkili; SEDA -  MUSTAFA SERCAN GUNDOGMUS  adlı müşterinize 515829047 nolu gönderinizin SANDALYE ürünü 3 parça halinde masami adresinizden 08.10.2025 17:00:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a1c035d-4dfb-480e-bc9c-b1a62adfa157',NULL),
('106db8eb-004f-4ecc-ba1d-ad188ab1c63c','905461661672','BARLEB KASS HANNA adlı müşterinizin 644106987 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('10711c2c-8143-4944-ac29-00d8ada61674','4367763453759','437707209 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437707209\n\nYour shipment with the number 437707209 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437707209\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('10768a46-80ce-4fdd-9e14-b0e418eca990','905331602195','SELCAN KURU adlı müşterinizin 221208954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('10772103-e42c-4bbd-bc12-69b83dcfd38a','11111111111','Sayın SANDALYE, 248291895 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248291895\n\nDear SANDALYE, your shipment with 248291895 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248291895\n\nBICARGO','2','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL),
('1078b55f-1f58-4362-af38-ac977b586769','905332942204','ATIL SOPHİA adlı müşterinizin 505850944 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('107977ce-b09f-490f-a86c-1dd88ede3559','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE ORTA + YAN SEHPA  ürünü 5 parça halinde RİXXE  adresinizden 08.09.2025 12:16:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('107efe9a-51e3-444c-a2de-c070ec78f960','905331602195','TBATOU SELMA  adlı müşterinizin 221649442 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('1088220a-3c52-440e-88a1-8972c6dcad93','31634977937','Sayın SİBEL ÇEVİK, 644631223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644631223\n\nDear SİBEL ÇEVİK, your shipment with 644631223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644631223\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('10885d35-9f78-43e5-8cb5-ec5c3c869e82','491726428404','46558561 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3016 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/46558561\n\nYour shipment with the number 46558561 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3016. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/46558561\n\nBICARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('108ad212-ce18-446a-b8b1-a1c82fe4f220','491747765301','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('10955f82-9749-4664-89e6-a8778a7e0dc5','905454259202','SAVAŞ AKTAŞ adlı müşterinizin 478815317 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL),
('109c0dab-73ab-4076-87e1-9b8db77b607c','4764375676376346','Sayın TABELA, 412548356 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412548356\n\nDear TABELA, your shipment with 412548356 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412548356\n\nBICARGO','2','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL),
('109fdd0b-8ee5-426f-9958-02d97f3d7545','491784094408','644637792 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5948 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644637792\n\nYour shipment with the number 644637792 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5948. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644637792\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('109ff1dc-bf5b-4056-b9b6-a31666a0606e','4917656525814','Sayın MERVE DAYI, 745869069 nolu gönderiniz 4774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745869069\n\nDear MERVE DAYI, your shipment with 745869069 was delivered to you with the delivery code 4774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745869069\n\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('10aa14dc-d963-44dc-ae72-8b46e2cdf91b','905461661672','ÜMİT ALBAYRAK adlı müşterinizin 644526832 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('10aa8090-dd93-49ca-aa3f-b960d8d5b340','905332942204','ADRİANNA WİEMANN adlı müşterinizin 505724535 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('10b4a2e2-bbfb-4bd5-b13f-e5c14441b7f2','33643896068','Sayın MAHMUT ÇELİK, 478370539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478370539\n\nDear MAHMUT ÇELİK, your shipment with 478370539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478370539\n\nBICARGO','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('10b53160-7cfe-4336-a3c2-c3661111e2b8','31685871414','858210128 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5322 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858210128\n\nYour shipment with the number 858210128 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5322. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858210128\n\nBICARGO','1','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL),
('10b879cf-e6fb-4a1d-9ee2-cc96b5f83e00','905350617509','SUADA HAMZA  adlı müşterinizin 613990020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('10b8f0f4-3ffe-44d5-a9df-9b6c9973642c','4917663707432','Sayın FEVRİ YALÇIN, 750135738 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750135738\n\nDear FEVRİ YALÇIN, your shipment with 750135738 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750135738\n\nBICARGO','1','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL),
('10bda121-e50f-498e-91bf-ee73da3ff754','905331602195','SEMAHAT ÇELİK adlı müşterinizin 221803289 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('10c03827-9a8a-46ef-96f0-0eb15e4770f2','49176630348266','982972858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982972858\n\nYour shipment with the number 982972858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982972858\n\nBICARGO','2','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('10c2dc72-a1dc-4154-936f-b97ea47b8d93','905350617509','BESİR FAZLİJİ adlı müşterinizin 613168811 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('10c2e35f-49ac-40aa-8f55-818f7246bbee','33698869736','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('10c74b99-81db-4786-ac62-2dd3c16ec2f3','4915225928224','745193877 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6709 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745193877\n\nYour shipment with the number 745193877 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6709. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745193877\n\nBICARGO','1',NULL,NULL),
('10ca52af-57b4-4e79-82a6-e8b63c302384','4915739316619','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('10cc5a00-e61c-478c-b207-8fd1469e5028','33770014809','Sayın MİNA ANNABİ, 478278253 nolu gönderiniz 5448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478278253\n\nDear MİNA ANNABİ, your shipment with 478278253 was delivered to you with the delivery code 5448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478278253\n\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('10cd8e62-dec6-497e-999b-cdba3630036a','905454259202','Sayın yetkili; SÜLEYMAN KAYHAN adlı müşterinize 478763903 nolu gönderinizin KÖŞE TAKIMI ürünü 6 parça halinde GANZE adresinizden 31.01.2025 11:28:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('10d25dda-ad27-480f-a579-399f772633c1','33626413222','Sayın TEBIB MYRIAM , 221603036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221603036\n\nDear TEBIB MYRIAM , your shipment with 221603036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221603036\n\nBICARGO','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('10d8e396-375e-4f50-8556-96af12904126','905363385813','ŞEVKİ MORİNA adlı müşterinizin 976765698 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('10d9a0c3-2814-4b07-b932-f96e71f4fcc8','905333323012','VALMİRA RAMADANİ adlı müşterinizin 695394738 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('10dc6309-98f8-4a41-961e-3212e80a0791','4917676707917','745957068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745957068\n\nYour shipment with the number 745957068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745957068\n\nBICARGO','1','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL),
('10dd9d1b-f819-46f4-b5ed-ab0cce733eff','905318109098','YATAKLAR  adlı müşterinizin 455411696 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL),
('10e589d8-cc89-4c3b-9e62-2601a6f01125','905325000478','DERMAN YATAK MURAT ÇAYAN adlı müşterinizin 412913992 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('10e94add-0dcb-417e-9c21-8b4f17971911','905363385813','SELİM EROL adlı müşterinizin 976577497 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL),
('10f0a377-59a3-42fc-8681-90e5bb0cb158','4917676864801','Sayın MELEK IŞIK SSH, 644452767 nolu gönderiniz 4678 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644452767\n\nDear MELEK IŞIK SSH, your shipment with 644452767 was delivered to you with the delivery code 4678. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644452767\n\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('10f1922b-46b2-44ce-8e70-ce33f7cd4f74','31681164065','598508016 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7582 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/598508016\n\nYour shipment with the number 598508016 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7582. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/598508016\n\nBICARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('10f3820d-23ea-4480-9c00-924a00d3c8f5','491777454971','Sayın RIZA KUŞÇU, 725500857 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/725500857\n\nDear RIZA KUŞÇU, your shipment with 725500857 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/725500857\n\nBICARGO','1','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL),
('10f44e08-10c4-4ba7-bffe-b2d4eb1ac713','905454259202','Sayın yetkili; SULTAN GÖR adlı müşterinize 478885043 nolu gönderinizin 3pk ssh ürünü 3 parça halinde çelikbey inegöl depo adresinizden 14.02.2025 17:35:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('10fcf148-5b9f-4b93-8f3f-3233c5069c2a','905454259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin VİRAL YATAK-YEMEK-TV-ORTASEHPA (180BAZA) ürünü 1 parça halinde family adresinizden 24.06.2025 13:43:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('10fd7164-f41d-4b88-8a03-2dd805098660','33624490316','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('11018a09-c452-46e7-a4cf-8f3c6eb00cbb','905059175469','Sayın yetkili;  BİRSEN DÜZ adlı müşterinize 428990953 nolu gönderinizin 140 lık baza başlık ürünü 3 parça halinde ailem baza adresinizden 19.12.2024 13:38:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('11051ec7-8b43-41b7-b345-422b8eb4d6f0','905335708965','RANA PEKER CİNGÖZ adlı müşterinizin 735159660 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','406ebbb4-13b5-4567-9950-1d118159195d',NULL),
('1109c58a-9e5c-4852-ba40-592cb22f7338','01779194671','Sayın ÖZLEM KIZILARSLAN, 644650618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644650618\n\nDear ÖZLEM KIZILARSLAN, your shipment with 644650618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644650618\n\nBICARGO','2','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('110e50bd-da61-4f55-a2f3-9b36d302d6ee','905532675926','Sayın yetkili; FİLİZ OSANMAZ adlı müşterinize 428372230 nolu gönderinizin köşe ürünü 6 parça halinde katre koltuk adresinizden 08.10.2025 11:52:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b40d3c46-b787-4f86-a1cc-1ee534edd3cd',NULL),
('1113434b-c235-46c0-80bb-d0e801ed87ad','905313340045','Sayın yetkili; STEFAN SUCEVİC adlı müşterinize 437133708 nolu gönderinizin yemek masası ürünü 4 parça halinde masami adresinizden 29.05.2025 17:45:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('1121075b-7872-4c94-82b4-47c3668aefbf','4917620398976','Sayın BELGİZAR GEZİCİ, 745173444 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745173444\n\nDear BELGİZAR GEZİCİ, your shipment with 745173444 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745173444\n\nBICARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('1121a2f6-c595-4bc5-a6b7-c55b9f348ce8','33629828903','748663171 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10173 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/748663171\n\nYour shipment with the number 748663171 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10173. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/748663171\n\nBICARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('11265491-f464-4775-91c7-41a822424370','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin DELUXE YATAK 100X200 ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:15:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('11284f6a-a9e1-426f-bc9b-862fb82c429c','41779993098','Sayın SADAT SAIDI, 982365685 nolu gönderiniz 3757 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982365685\n\nDear SADAT SAIDI, your shipment with 982365685 was delivered to you with the delivery code 3757. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982365685\n\n\nBICARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('112a2267-5daa-4c3c-98a3-7a7ab7fc20a9','905333221039','CEMAL KÖSE adlı müşterinizin 750822079 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL),
('112a316e-65d4-48e1-879f-bd990cef2d69','905078062550','BURCU ASLAN adlı müşterinizin 598220619 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('112cc365-e387-40cc-a996-3e80d727fb78','905525002621','046487702 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1608 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/046487702\n\nYour shipment with the number 046487702 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1608. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/046487702\n\nBICARGO','2','2f1cee80-98e2-4491-8790-84b0795e2440',NULL),
('112df47d-daaa-49cc-88ac-573befffe8fa','33783080694','Sayın MOHAMMED MALHA , 982125625 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982125625\n\nDear MOHAMMED MALHA , your shipment with 982125625 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982125625\n\nBICARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('112e18a4-0539-4038-a223-843fcacfc984','491729380817','Sayın SÜLEYMAN ATAR, 644653229 nolu gönderiniz 3398 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644653229\n\nDear SÜLEYMAN ATAR, your shipment with 644653229 was delivered to you with the delivery code 3398. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644653229\n\n\nBICARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('11310c1a-6daf-47e9-a53d-834ef3ac0325','905075277637','Sayın yetkili; MEHMET ANDIÇ adlı müşterinize 745759881 nolu gönderinizin ALYA KOLTUK TK 3+3+1 2TKM  ürünü 6 parça halinde ELİTİS adresinizden 29.09.2025 12:40:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('11316433-13be-44c4-9722-f0af9977d102','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin MILANO ORTA SEHPA  ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('11327a3a-c590-4b1e-8b86-9e793e49b56e','4369919273534','Sayın CEM BÜYÜKDEMİRCİ, 437545074 nolu gönderiniz 6536 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437545074\n\nDear CEM BÜYÜKDEMİRCİ, your shipment with 437545074 was delivered to you with the delivery code 6536. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437545074\n\n\nBICARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('1136edd7-a900-4449-968c-c251ae5ca6ce','4917660866627','Sayın İLYAS GÖK, 598982184 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598982184\n\nDear İLYAS GÖK, your shipment with 598982184 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598982184\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('113a433b-f8b8-487a-b2c0-8a977bde4e36','905313340045','Sayın yetkili; TUĞBA BALIKÇI adlı müşterinize 437154123 nolu gönderinizin Baza başlık ürünü 4 parça halinde Albessa adresinizden 25.08.2025 12:01:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('11467c89-b740-4a80-a123-8c884551fd07','491742627039','Sayın SEDA ULUSOYLU, 371691350 nolu gönderiniz 1045 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371691350\n\nDear SEDA ULUSOYLU, your shipment with 371691350 was delivered to you with the delivery code 1045. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371691350\n\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('114a90cb-c1f9-4423-9c2b-4365a7ee8b12','33768202556','221987558 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9098 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221987558\n\nYour shipment with the number 221987558 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9098. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221987558\n\nBICARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('114ccfa4-8508-4a94-948a-c53b63feb546','33616598660','478417862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478417862\n\nYour shipment with the number 478417862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478417862\n\nBICARGO','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('1155709c-7c00-4e04-8f2d-6030497f4b25','905336367828','MAGBULE DZELİLİ adlı müşterinizin 982843761 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('1155a79c-37fa-42da-99c8-aea2f17f2e87','1222222222233212','Sayın BBBBBBBBBBB, 735272751 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735272751\n\nDear BBBBBBBBBBB, your shipment with 735272751 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735272751\n\nBICARGO','2','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL),
('1155bdf2-1a9a-4a43-9790-66fbe15ab903','905301592882','YASEMİN ERKAN adlı müşterinizin 910152598 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('1156ef34-75f9-4de5-8097-93b937084a50','905394878216','HÜLYA ÇELİK  adlı müşterinizin 517910414 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','398f18a6-4116-4296-8890-4d154fc30789',NULL),
('11571c05-84a0-4ebf-b9d0-51430edd6a87','35345637253633','Sayın AAAGGSGDGDSGDS, 735340001 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735340001\n\nDear AAAGGSGDGDSGDS, your shipment with 735340001 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735340001\n\nBICARGO','2','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL),
('11674597-d842-4df8-b5d6-d96acee83ba9','905421855834','Sayın yetkili; MARİANE SARKİS adlı müşterinize 338426911 nolu gönderinizin Regnum Tv Ünitesi ürünü 3 parça halinde İnfam Mobilya adresinizden 24.02.2025 09:44:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('1167e984-dced-4d94-b2df-c68bb7756993','33614945585','644377360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377360\n\nYour shipment with the number 644377360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644377360\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('116a63ce-fc40-448f-bf3a-5c605abf0c8f','905428209234','CEMAL YALÇIN SSH adlı müşterinizin 319388100 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('116ac621-a57c-4a6a-b627-54f14637e52e','905331602195','MUHAMMED ÇETİN adlı müşterinizin 221234413 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('116bce28-eb55-4ab3-96d2-52e6efaa6859','491752984134','Sayın ÖZCAN ŞAHİN, 644589662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644589662\n\nDear ÖZCAN ŞAHİN, your shipment with 644589662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644589662\n\nBICARGO','1','846144fe-95bb-4d2a-83ea-4552d599f458',NULL),
('116c3e0b-6b0d-4743-baf0-c096a9340f2d','4917662712397','Sayın ABDULLAH ŞENOL GÜMÜŞ, 428341237 nolu gönderiniz 6447 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428341237\n\nDear ABDULLAH ŞENOL GÜMÜŞ, your shipment with 428341237 was delivered to you with the delivery code 6447. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428341237\n\n\nBICARGO','1','21cea3d0-82cc-48c9-8e54-12f04fa0fc99',NULL),
('11708774-2824-4a86-868e-ee56257e47ca','436763237242','Sayın ÖMER SOLAK, 27829651 nolu gönderiniz 2313 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/27829651\n\nDear ÖMER SOLAK, your shipment with 27829651 was delivered to you with the delivery code 2313. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/27829651\n\n\nBICARGO','1','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL),
('11746040-68a7-4c5c-964d-7769c35c7826','905355928266','İBRAHİM AKÇORA adlı müşterinizin 412679110 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','d25fd827-385a-48f1-8993-4f48129b3530',NULL),
('117a7714-7f5f-454e-b520-7a30892f978e','491601818240','Sayın BARAN YILDIZ, 644832811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644832811\n\nDear BARAN YILDIZ, your shipment with 644832811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644832811\n\nBICARGO','2','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('117b7230-5358-40fd-815b-4b4694503ad3','33787053460','Sayın EMRAH ERAYDIN, 127552437 nolu gönderiniz 4289 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127552437\n\nDear EMRAH ERAYDIN, your shipment with 127552437 was delivered to you with the delivery code 4289. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127552437\n\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('117c56be-95f4-4d87-bab5-9074e3156cd6','31614556700','Sayın FUAT HUT, 517903636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517903636\n\nDear FUAT HUT, your shipment with 517903636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517903636\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('117f3e94-94b8-483a-b0e8-25a158c9a9c6','33759580914','Sayın CUMALİ ERCAN, 910759399 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910759399\n\nDear CUMALİ ERCAN, your shipment with 910759399 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910759399\n\nBICARGO','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('1180fba5-0bb1-4246-b25d-501f01e8bcb6','41788774757','Sayın MAGBULE DZELİLİ, 982843761 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982843761\n\nDear MAGBULE DZELİLİ, your shipment with 982843761 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982843761\n\nBICARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('1182d782-2deb-4a62-b256-c7a5e13ad4be','905331602195','HİLAL YILDIZ-MERT YETGİN adlı müşterinizin 221440431 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('11836cae-b3b9-4134-b120-061c116db17b','5413112906','319645924 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319645924\n\nYour shipment with the number 319645924 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319645924\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('11857458-fe87-4613-9a20-18546fe7ac3d','905336367828','Sayın yetkili; DİLARA ALAMOORİ adlı müşterinize 982632860 nolu gönderinizin masa ürünü 3 parça halinde Riyo home adresinizden 07.07.2025 14:27:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('11897986-7432-4c7d-8550-3eb62d8460a4','905336367828','JALAL ASLAM adlı müşterinizin 982966360 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('11899966-a7e9-4691-b3e6-a1b8ba60f5fd','491726666457','Sayın DUYGU YILDIZ, 598396998 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598396998\n\nDear DUYGU YILDIZ, your shipment with 598396998 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598396998\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('118dac82-c814-4569-9fff-511454c6f3cb','905075277637','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin KÖŞE + 1 TEKLİ  ürünü 5 parça halinde ELİTİS adresinizden 23.07.2025 12:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('1190e4ab-3840-442f-b5dc-295cd942be79','32470652077','703870981 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6378 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/703870981\n\nYour shipment with the number 703870981 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6378. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/703870981\n\nBICARGO','1','a04f974c-9931-40d4-ae61-21f5044fce18',NULL),
('119a94a4-1580-433a-a338-a8ece2e67e91','905451571652','Sayın yetkili; CEM TOPYÜREK adlı müşterinize 53111592 nolu gönderinizin Karyola + yatak ürünü 7 parça halinde Albessa adresinizden 11.08.2025 16:09:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('119b8154-c8c0-49c9-82f3-09d8caab521a','905532675926','MEHMET KILINÇ adlı müşterinizin 428239917 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('119c9e11-99f1-4501-a878-37c249db8dec','491631408924','Sayın ÇAĞLAR, 72247088 nolu gönderiniz 4708 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/72247088\n\nDear ÇAĞLAR, your shipment with 72247088 was delivered to you with the delivery code 4708. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/72247088\n\n\nBICARGO','1','2afcf460-a080-4273-8901-46e80d97fa18',NULL),
('11a068fb-8d7b-45e2-93fe-e9426e813546','905336367828','BYTYCİ REZARDE adlı müşterinizin 982773684 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','98c40a46-22d8-4470-84a1-302a19073f0d',NULL),
('11a5b368-8576-41fa-8d10-0e984dc694dd','905304259202','Sayın yetkili; AYŞE KONDAL adlı müşterinize 478530755 nolu gönderinizin SSH CAMLAR VE KONSOL AYNASI ürünü 1 parça halinde çelikbey inegöl depo adresinizden 07.11.2024 16:27:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('11a79751-5935-48fe-992b-6a5420c42f26','905454259202','Sayın yetkili; MÜZEYYEN TEYMUROĞLU adlı müşterinize 478677950 nolu gönderinizin TREND ORTA SEHPA ürünü 1 parça halinde GARDEROBE adresinizden 27.02.2025 13:39:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('11af821c-73e3-4844-9858-f4f8c408933a','905431026110','Sayın yetkili; İLKAY ÇİFTÇİ adlı müşterinize 35130528 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde LENTA SOFA adresinizden 28.08.2025 16:56:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('11b458f2-5f4c-40e3-9776-42774539ca9c','4917641085113','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('11b99ec8-9e24-4c66-b1f1-6c4f71c6e428','33645025760','Sayın ALİ ÖZDEN, 745978651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745978651\n\nDear ALİ ÖZDEN, your shipment with 745978651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745978651\n\nBICARGO','1','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL),
('11bb765f-929d-41d1-90de-8402ba03cd45','905313340045','METİN EROL adlı müşterinizin 437306380 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('11c1b826-0847-43e7-aec8-e654cb63ecb6','33753285709','Sayın ÖZKAN ERDEM , 478862837 nolu gönderiniz 5864 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478862837\n\nDear ÖZKAN ERDEM , your shipment with 478862837 was delivered to you with the delivery code 5864. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478862837\n\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('11c1c0ed-91d2-40f8-a121-25423896e0cf','905325000478','EUROMOBEL adlı müşterinizin 412395565 nolu gönderisi 41 parça halinde yola çıkmıştır.','1','a451f68c-dd26-4757-af49-72fa26f23f80',NULL),
('11c494db-a5ec-4e57-b159-0748dd608455','905313340045','MÜCAHİD AL adlı müşterinizin 437880840 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('11c6352e-c650-4fdd-8c86-cb2c70f7a890','3433434343344444','223186784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223186784\n\nYour shipment with the number 223186784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223186784\n\nBICARGO','2','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('11c80e0e-ca72-47d9-88e9-6f6acaf6df48','32493467320','Sayın EMİLY RAMİREZ, 221897784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221897784\n\nDear EMİLY RAMİREZ, your shipment with 221897784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221897784\n\nBICARGO','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('11cdc0dd-6ab6-4571-909e-b0ff1e943089','4915756850025','Sayın DUDU ÖZDEMİR(K), 644754778 nolu gönderiniz 6625 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644754778\n\nDear DUDU ÖZDEMİR(K), your shipment with 644754778 was delivered to you with the delivery code 6625. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644754778\n\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('11ce6f15-8eb1-41f4-a765-6d8cbfddcf31','33605930464','Sayın MUKUNGU KULEMFUKA, 449193323 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449193323\n\nDear MUKUNGU KULEMFUKA, your shipment with 449193323 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449193323\n\nBICARGO','1','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL),
('11d18581-393d-46d4-9dd0-59adc56e217c','905331602195','İYAD SHOURBAJİ  adlı müşterinizin 221591105 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('11d22a5c-83e8-4f1d-8fe8-dde7fe6f3546','905350617509','JULJANA TARLLAMİSHAJ  adlı müşterinizin 613568438 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2',NULL),
('11d40487-13e5-46f8-9ca9-bff3820f2675','905336367828','ALİ ŞİMŞEK adlı müşterinizin 982333020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('11d96071-4c45-4df3-9e6a-dc5ea3ffc3a8','31657734466','Sayın HALİL AYDOĞAN, 501869420 nolu gönderiniz 10245 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501869420\n\nDear HALİL AYDOĞAN, your shipment with 501869420 was delivered to you with the delivery code 10245. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501869420\n\n\nBICARGO','1','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL),
('11da7a16-8732-4b8a-a91c-c7a64b6ff350','33782398897','Sayın TAKİ ÇAYCI(K), 644257752 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644257752\n\nDear TAKİ ÇAYCI(K), your shipment with 644257752 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644257752\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('11db8383-4a4c-4412-bc0c-898c6afc987f','4917680448730','Sayın MEHMET EMİN KARAGÜZEL, 449704156 nolu gönderiniz 4144 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449704156\n\nDear MEHMET EMİN KARAGÜZEL, your shipment with 449704156 was delivered to you with the delivery code 4144. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449704156\n\n\nBICARGO','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('11e20422-34d3-48bc-82c8-1d650340e162','33679750944','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('11e857ee-cdeb-48d3-a5cd-aece1059f294','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 120X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('11ea615c-8c7a-4dd3-bdf2-0235fbeaf94b','491717951084','İletişim \n					Şöför Uğur Acar +905424435917','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('11f04036-24c4-434e-8818-eef80fa5bd57','905517075149','BESNA ULUĞ adlı müşterinizin 478906000 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('11f30168-b8b8-4b79-9b61-36533692a05f','4915739316619','745980941 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745980941\n\nYour shipment with the number 745980941 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745980941\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('11f811ec-11ff-47de-af0c-5abc746c28ec','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin SANDALYE ürünü 4 parça halinde Fatura adresinizden 24.06.2025 17:54:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('11fbcf3d-555a-420e-9997-6c99d1906027','905079358213','Sayın yetkili; MEHMET KIRMALI SSH adlı müşterinize 745961245 nolu gönderinizin SSH SIRT MİNDERİ ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:10:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('12013219-567a-4c5e-afbb-ec3dee0fc920','4915213260096','745286096 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7894 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745286096\n\nYour shipment with the number 745286096 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7894. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745286096\n\nBICARGO','1','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL),
('1202e136-436d-48d1-8be6-5bbabcce05b4','905350617509','IRA YİLDİRİM  adlı müşterinizin 613297420 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('1209ef59-3d69-4313-8618-2171d4248f74','905325000478','NİZAMETTİN ALAGÖZ  adlı müşterinizin 412970240 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL),
('120ef1c8-b71c-4e53-8df2-584f352de15c','00491742894095','Sayın İSMET  IRMAK, 614659832 nolu gönderiniz 9928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614659832\n\nDear İSMET  IRMAK, your shipment with 614659832 was delivered to you with the delivery code 9928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614659832\n\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('120ef4b1-00b4-481e-aa5a-8508ea707e68','905331602195','Sayın yetkili; HİLAL YILDIZ-MERT YETGİN adlı müşterinize 221440431 nolu gönderinizin Orta sehpa ürünü 2 parça halinde Fatura adresinizden 23.01.2025 11:03:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('1210048d-28be-4aaa-9805-1c4d89a394d6','905313340045','Sayın yetkili; NURDAN GÜNDÜZ adlı müşterinize 437529604 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:26:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('12122182-d7c3-4f03-a053-43cdff412018','33625625960','478165569 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3318 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478165569\n\nYour shipment with the number 478165569 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3318. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478165569\n\nBICARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('121411de-22c6-4ff6-933b-436d22605e59','905059175469','ŞÜKRÜ AKSOY adlı müşterinizin 428490126 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL),
('1215e577-4644-4499-9fac-e9c0e5a93c8c','5326077059','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('1216679e-d344-4c19-890c-bbfaa6e2cefa','5354954215','İletişim \n					Şöför Murat : +905321616048','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('121806cc-10aa-4e20-9f11-12474fa32177','905075277637','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin KRİSTAL YEMEK MASASI ürünü 3 parça halinde Fatura adresinizden 27.05.2025 17:57:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('1218c803-f823-489d-8108-6382c43650c3','905312762034','KARAARSLAN YELİZ adlı müşterinizin 808886614 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('121d60d4-7bb9-4a57-b061-bfc1cf4d646f','4915161718333','923436295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/923436295\n\nYour shipment with the number 923436295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/923436295\n\nBICARGO','1','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('121dfea2-7c5f-4465-b5ad-a15628a41919','905421855834','MEHMET ERTÜRK adlı müşterinizin 338737901 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('1223c4d6-9a67-4350-8c6e-7547ad084056','905325000478','HARUN adlı müşterinizin 412302460 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f7ef839c-2795-4f15-80a8-414937600965',NULL),
('122507e0-e33b-40ac-8834-8dde397c4e6e','905431026110','Sayın yetkili; TAYFUN COŞGUN adlı müşterinize 351519592 nolu gönderinizin masa + orta sehpa ürünü 5 parça halinde MASAMİ adresinizden 17.10.2025 14:27:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('1225f58c-7133-4cfd-8809-fc6d24964070','33610635771','Sayın OSMANAJ VALDRİN, 221746947 nolu gönderiniz 3414 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221746947\n\nDear OSMANAJ VALDRİN, your shipment with 221746947 was delivered to you with the delivery code 3414. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221746947\n\n\nBICARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('122ea594-4a2b-45bb-9740-349b0629e85c','905532675926','Sayın yetkili; GÖNÜL GİDER adlı müşterinize 428671806 nolu gönderinizin köşe ürünü 7 parça halinde wissam adresinizden 12.09.2025 19:11:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('122feabe-9ecf-4727-90eb-15ad9a9d1a43','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin DELUXE YATAK 180LİK  ürünü 1 parça halinde Fatura adresinizden 26.09.2025 12:23:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('1232f67b-0686-49f1-9630-6b32adbd08d5','31633087507','Sayın UMUT ETHEM EMRE , 437101296 nolu gönderiniz 9210 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437101296\n\nDear UMUT ETHEM EMRE , your shipment with 437101296 was delivered to you with the delivery code 9210. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437101296\n\n\nBICARGO','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('12331e7a-7247-40cb-a0b6-4eb7fb9aa608','32490219326','Sayın MUSTAFA MÜEZZİNOĞLU, 428341956 nolu gönderiniz 7604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428341956\n\nDear MUSTAFA MÜEZZİNOĞLU, your shipment with 428341956 was delivered to you with the delivery code 7604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428341956\n\n\nBICARGO','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('12359267-6607-4310-b2de-38e13d1ce132','905059175469','KADİR ÖZCAN  adlı müşterinizin 428159880 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL),
('1236a19c-c92d-48dc-b3a3-096e7a918fd6','4917623882618','Sayın MURAT ERKUL SSH, 745898734 nolu gönderiniz 8401 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745898734\n\nDear MURAT ERKUL SSH, your shipment with 745898734 was delivered to you with the delivery code 8401. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745898734\n\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('1236cf8d-5858-4d0a-98b5-b7646f45cad0','33783160277','745445888 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7491 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745445888\n\nYour shipment with the number 745445888 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7491. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745445888\n\nBICARGO','1','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL),
('123be926-2dba-4935-839a-0e6824881533','491747695306','428222834 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7900 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428222834\n\nYour shipment with the number 428222834 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7900. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428222834\n\nBICARGO','1','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('123c75f7-7ea7-4b2c-a00d-c3fbe25a07a7','905517075149','Sayın yetkili; LABABABİD WEJDAN adlı müşterinize 478417862 nolu gönderinizin 3+1+1 koltuk ürünü 3 parça halinde inhouse adresinizden 25.07.2025 11:48:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('123d56d4-e061-4048-9c87-90878fdb3906','905335708965','PARWEZ MOHAMMADİ adlı müşterinizin 248694668 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL),
('1242f76e-1c84-486d-a39d-6fc2ae5eb2fd','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin berjer-kasa-sibular ürünü 2 parça halinde çelikbey inegöl depo adresinizden 23.06.2025 13:33:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('1243c02c-4a6c-4013-be16-b593400d903f','905510396989','Sayın yetkili; ÖMER FARUK ÇANAK adlı müşterinize 31934282 nolu gönderinizin MADRİD ÜÇLÜ ürünü 2 parça halinde natty adresinizden 31.07.2025 16:08:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('12447ac6-5eae-45d5-bc62-495af99a7b8c','4917672242930','644196383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10184 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644196383\n\nYour shipment with the number 644196383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10184. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644196383\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('1245dde2-073e-41f1-837f-11242a2c8656','436606573775','Sayın BÜŞRA POYRAZ, 371508043 nolu gönderiniz 1128 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371508043\n\nDear BÜŞRA POYRAZ, your shipment with 371508043 was delivered to you with the delivery code 1128. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371508043\n\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('12471ea2-cef3-4de9-a0b7-5c7ad5730184','4915145859337','Sayın FERHAT , 750728735 nolu gönderiniz 6157 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750728735\n\nDear FERHAT , your shipment with 750728735 was delivered to you with the delivery code 6157. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750728735\n\n\nBICARGO','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('124d20ef-8c15-4577-a123-4a1ee8e78dfc','905335511664','Sayın yetkili; MEHMET AKHAN adlı müşterinize 371998665 nolu gönderinizin masa sehpa ürünü 5 parça halinde SM Tasarım adresinizden 17.07.2025 11:01:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('125009d3-ee33-467b-8516-177de1879ba5','491638282124','Sayın DENİZ AKGÜMÜS , 613601743 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613601743\n\nDear DENİZ AKGÜMÜS , your shipment with 613601743 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613601743\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('125611f3-8129-448f-8041-1f156111bd5e','905313340045','METİN EROL adlı müşterinizin 437306380 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('1256293e-0249-466e-b624-d63240fc65e5','491742907800','478507488 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10365 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478507488\n\nYour shipment with the number 478507488 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10365. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478507488\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('125ee981-e79a-48a3-b85c-3774facbce9b','905350617509','Sayın yetkili; KÜBRA YAMAN adlı müşterinize 613251938 nolu gönderinizin 3 kutu sandalye ürünü 3 parça halinde Fatura adresinizden 22.05.2025 16:19:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('12654ea6-0e69-470a-ab52-3b2c89d5fb50','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA 2 KAPILI ASKILI DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 15:00:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('1265f512-de41-4f4b-82ee-b0bc16209086','905075277637','Sayın yetkili; ARZU AKSİ adlı müşterinize 745817440 nolu gönderinizin BOHEM KOLTUK TK 3+3+1+1 ürünü 4 parça halinde Fatura adresinizden 09.05.2025 19:19:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('12671013-cf1b-4a3f-8cea-932ad3b52004','4917662469694','011716616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011716616\n\nYour shipment with the number 011716616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011716616\n\nBICARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('12698295-b00a-4c04-8344-9193f8cadb37','905304259202','MUSTAFA ÜNLÜSOY adlı müşterinizin 478479612 nolu gönderisi 37 parça halinde yola çıkmıştır.','1','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL),
('126bc8e0-ddc0-46be-8445-fd5d6c525ba1','494621092008','478151970 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2408 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478151970\n\nYour shipment with the number 478151970 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2408. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478151970\n\nBICARGO','2','78b69f29-3789-4968-b725-c04339316224',NULL),
('1271b8c7-cc07-4898-95d8-8228c2031513','905304259202','ZEYNEP CİHANGİR adlı müşterinizin 478623446 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('1272d28a-38b7-4b56-a454-ebf95925c60f','4917687922868','Sayın ANIL ÇOKBİLİR, 644584641 nolu gönderiniz 10343 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644584641\n\nDear ANIL ÇOKBİLİR, your shipment with 644584641 was delivered to you with the delivery code 10343. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644584641\n\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('127448d1-f1ac-4f24-8b91-0625d348fcd8','33782988116','437712381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437712381\n\nYour shipment with the number 437712381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437712381\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('12774d2a-99dd-4f12-b330-640b0b43c221','32465090657','Sayın YUSUF KAYA, 501428847 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501428847\n\nDear YUSUF KAYA, your shipment with 501428847 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501428847\n\nBICARGO','1','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL),
('127d0416-3237-46ea-86ca-5a3ee7253f1f','33621633706','478989383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7802 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478989383\n\nYour shipment with the number 478989383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7802. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478989383\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('128f2692-bdab-437f-83b3-efc9b8432fe3','905313340045','Sayın yetkili; DİRİL NURİ adlı müşterinize 43792999 nolu gönderinizin baza başlık ürünü 4 parça halinde Albessa adresinizden 27.03.2025 13:24:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('12915e4a-5153-4b37-9d18-f6800506de7b','4917672163704','Sayın ÖMER KARAMAN, 428857511 nolu gönderiniz 8537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428857511\n\nDear ÖMER KARAMAN, your shipment with 428857511 was delivered to you with the delivery code 8537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428857511\n\n\nBICARGO','1','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('12965f7d-bbb8-495a-a118-f912e8ffce59','905331602195','Sayın yetkili; SEYİT GENÇALİOĞLU  adlı müşterinize 221476651 nolu gönderinizin Mimoza Yatak-baza-baslik  ürünü 4 parça halinde Reve Yatak  adresinizden 09.01.2025 10:42:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('12a1c176-d6ad-422d-b0e1-dbc5e78dd29e','491718076933','478525280 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4682 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478525280\n\nYour shipment with the number 478525280 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4682. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478525280\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('12a35048-ffaf-4c4b-a3e6-bbc199f4f458','33617505236','437124353 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8306 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437124353\n\nYour shipment with the number 437124353 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8306. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437124353\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('12a5c8de-8c9f-40fd-84ca-67b93ee214db','905075277637','BELGİZAR GEZİCİ adlı müşterinizin 745173444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('12a5d25e-bea8-4187-a7a8-0f38bee3afe3','905313340045','Sayın yetkili; UFUK SANATÇI adlı müşterinize 43783689 nolu gönderinizin Koltuk takımı ürünü 3 parça halinde Modapark adresinizden 03.09.2025 16:00:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('12a60c76-bb9a-4fd4-ad30-bed583d3e6f4','491758184316','501212768 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9834 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501212768\n\nYour shipment with the number 501212768 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9834. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501212768\n\nBICARGO','1','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL),
('12a689ff-3642-4d82-b0f7-9e4dee0bf5c6','3656253652736275','412380161 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412380161\n\nYour shipment with the number 412380161 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412380161\n\nBICARGO','2','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('12a79b4e-8327-479d-b565-a770fa3732d5','905078062550','Sayın yetkili; ERTAN TOSUNER adlı müşterinize 598454821 nolu gönderinizin BAZA BAŞLIK DÖŞEK ürünü 4 parça halinde ALBESSA HOME adresinizden 10.04.2025 15:32:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('12ad6ea5-fdbe-4734-9df0-33a93ff1eb2f','33651128899','Sayın NURAY KARABURUN , 910407767 nolu gönderiniz 8156 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910407767\n\nDear NURAY KARABURUN , your shipment with 910407767 was delivered to you with the delivery code 8156. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910407767\n\n\nBICARGO','1','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL),
('12ad9f86-ccec-44c7-8dbd-ad43c68bd616','905325000478','TURGAY adlı müşterinizin 412139250 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('12b420b9-4baa-4464-8179-a61e63f96c98','4915147524518','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('12b5a3b6-a418-4803-b6e8-e3eb9c9cfeee','905363385813','SEVGİ YILMAZ adlı müşterinizin 97677559 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','855d2794-7066-4b47-b159-2cf8816867f4',NULL),
('12b8231c-9608-4ace-b16d-0cea03780940','905350349029','Sayın yetkili; EMİNE DÜKME adlı müşterinize 203797759 nolu gönderinizin 3+2+1 koltuk takımı ürünü 3 parça halinde Sahcelık sofa adresinizden 28.07.2025 11:13:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5d59451-1dce-44fd-b0d3-87c4b3965259',NULL),
('12bb3b22-5301-497c-9dd7-fc519efb807a','4915118517172','Sayın TAYFUN COŞGUN, 351519592 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351519592\n\nDear TAYFUN COŞGUN, your shipment with 351519592 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351519592\n\nBICARGO','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('12c44e71-91c1-4ba8-a900-5e4840710283','905059175469','ESRA ELİŞ adlı müşterinizin 428704278 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('12c689eb-152e-4ccc-97fe-ecf050459be6','436609266371','Sayın HASAN ÇETİN, 745810889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745810889\n\nDear HASAN ÇETİN, your shipment with 745810889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745810889\n\nBICARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('12ca7739-008b-4e0c-af1e-4bd0cc9ab6e4','491734737192','428225143 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428225143\n\nYour shipment with the number 428225143 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428225143\n\nBICARGO','1','175392bb-7213-43c6-b3da-6b01f5de3b51',NULL),
('12ce0983-2615-4528-b478-bbbfa7b91866','4917672726152','Sayın SEMİH YEŞİLYAYLA, 371716908 nolu gönderiniz 6005 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371716908\n\nDear SEMİH YEŞİLYAYLA, your shipment with 371716908 was delivered to you with the delivery code 6005. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371716908\n\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('12d2372c-9219-4f66-978d-2c0612ce12db','905335511664','CANDAN ÖZDEMİR adlı müşterinizin 371251508 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('12d83fb5-58a2-452b-bf52-b812c4edd454','33767057067','Sayın ELİF GABEL , 982536674 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982536674\n\nDear ELİF GABEL , your shipment with 982536674 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982536674\n\nBICARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('12dfe524-de54-4368-8e69-2b05ec061166','32487280627','644513470 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10177 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644513470\n\nYour shipment with the number 644513470 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10177. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644513470\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('12e3a650-126f-4687-b0f6-d083a90ed894','491785094918','Sayın İLHAN ERAYDIN, 15151133 nolu gönderiniz 6714 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/15151133\n\nDear İLHAN ERAYDIN, your shipment with 15151133 was delivered to you with the delivery code 6714. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/15151133\n\n\nBICARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('12e8a92c-d815-49dc-a463-3318bac76685','491622633232','Sayın FERHAT TUNA, 42814374 nolu gönderiniz 2468 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42814374\n\nDear FERHAT TUNA, your shipment with 42814374 was delivered to you with the delivery code 2468. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42814374\n\n\nBICARGO','1','150442fb-cc98-4a3d-861f-26845907dbfa',NULL),
('12ec0216-21da-41eb-8a61-9e8eff6032cc','33622632744','Sayın ALİ ÖZDEN , 745991962 nolu gönderiniz 10500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745991962\n\nDear ALİ ÖZDEN , your shipment with 745991962 was delivered to you with the delivery code 10500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745991962\n\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('12ee4946-509b-463a-8b8c-961008bdb064','32460966676','Sayın İYAD SHOURBAJİ , 221591105 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221591105\n\nDear İYAD SHOURBAJİ , your shipment with 221591105 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221591105\n\nBICARGO','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('12f299a7-b26f-4f91-9478-d723795c56fc','491723667357','Sayın ALİNA GÜL, 428138926 nolu gönderiniz 7008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428138926\n\nDear ALİNA GÜL, your shipment with 428138926 was delivered to you with the delivery code 7008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428138926\n\n\nBICARGO','1','ae9be805-ab66-4bf7-889f-22b5fd9c7351',NULL),
('12fb826c-20c2-4213-88ba-8229e5c7d8cb','905331602195','KEVSER DENİZ  adlı müşterinizin 221368256 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('12fda7f7-31e7-40d7-87a8-dfd6de6464d6','905454259202','YAŞAR YALMAN adlı müşterinizin 478559056 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('1304a07c-2192-49d6-a2ed-3e9013d44877','33695033884','478941206 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478941206\n\nYour shipment with the number 478941206 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478941206\n\nBICARGO','1','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL),
('130561ff-0945-4753-aaf5-0c5a6fe41cbf','4917622528451','231216092 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231216092\n\nYour shipment with the number 231216092 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231216092\n\nBICARGO','1','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL),
('1305fc3f-c277-4c68-a752-8a12776f5d0e','33783709896','43720744 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/43720744\n\nYour shipment with the number 43720744 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/43720744\n\nBICARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('130633b1-2bc6-42d4-9498-4486a3ab7c15','33652326324','Sayın AAAAAAAAAAA, 027517327 nolu gönderiniz 8029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/027517327\n\nDear AAAAAAAAAAA, your shipment with 027517327 was delivered to you with the delivery code 8029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/027517327\n\n\nBICARGO','1','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL),
('130dc16e-1a1f-491f-bbbd-6dd38912f6e6','905461661672','Sayın yetkili; KÜRŞAT OKUTAN adlı müşterinize 644377360 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 03.07.2025 16:37:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('1311fc2e-5840-4efa-9fa6-23ab076717e5','4915730928748','735785649 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1292 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735785649\n\nYour shipment with the number 735785649 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1292. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735785649\n\nBICARGO','1','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL),
('13150639-54a9-4206-b4d0-3248187c3d6d','4369916121712','Sayın YASEMİN ÖZKILINÇ, 437819954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437819954\n\nDear YASEMİN ÖZKILINÇ, your shipment with 437819954 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437819954\n\nBICARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('13171439-fee1-41fe-930d-b5323f0d7e92','491632639510','221416475 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10277 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221416475\n\nYour shipment with the number 221416475 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10277. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221416475\n\nBICARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('1317af34-545e-4e2d-803f-2c0be828eb5e','905079358213','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin ASOS GOLD YEMEK ODASI ürünü 13 parça halinde ODALIFE  adresinizden 23.09.2025 13:38:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('131d5d8a-61ab-4b85-986f-5104c5688cef','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GARDEROBE DİOR MASA ürünü 1 parça halinde GARDOREBE adresinizden 03.09.2025 14:09:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('131ea442-e94b-4ece-a489-dc33053e65ac','905350617509','Sayın yetkili; BAKACAK GİRAY adlı müşterinize 613814330 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 01.07.2025 12:20:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('1320bc6d-b9b3-49b2-bbcf-0c10e49276dc','905304259202','ADEM KILINÇ adlı müşterinizin 478117771 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL),
('1325b803-001a-49a1-a01e-a63a54960220','905331602195','CAN ILKAY IBOV adlı müşterinizin 221225501 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('1325b932-c57a-458b-a1b7-3d7a6ce90e60','01783097953','Sayın OGULCAN BAYRAM, 613822987 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613822987\n\nDear OGULCAN BAYRAM, your shipment with 613822987 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613822987\n\nBICARGO','2','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('1325c4dd-b947-467a-b3bc-ecf762054671','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 2  ADET  BAZA BAŞLIK KARYOLA ürünü 6 parça halinde KARYOLA adresinizden 22.08.2025 13:21:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('13279774-e15c-4476-a175-ba4be663c496','905335708965','ERSİN adlı müşterinizin 248535027 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3a57d2d-4adf-4846-9fa6-c92de9e727ae',NULL),
('132a264a-3727-47b2-999a-c7f561fb4b66','905313340045','Sayın yetkili; MÜCAHİD AL adlı müşterinize 437880840 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 15.08.2025 16:06:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('1332f98a-a4e6-462b-b71c-e8fa1d8fb8b8','905313340045','NİSA PARLAR adlı müşterinizin 437895842 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('1336bf65-d482-4070-8def-b2ec95e4ab26','491776786642','Sayın SONGÜL BALTACI, 64446005 nolu gönderiniz 4528 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64446005\n\nDear SONGÜL BALTACI, your shipment with 64446005 was delivered to you with the delivery code 4528. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64446005\n\n\nBICARGO','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('1338c60e-f987-4bee-94cc-acffb69b6022','32484143474','Sayın BERİVAN KÖKTEN, 412550726 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412550726\n\nDear BERİVAN KÖKTEN, your shipment with 412550726 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412550726\n\nBICARGO','1','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL),
('133ace11-b4ee-4de2-bf46-4589e69c3e5b','31641319611','Sayın HÜLYA MEŞE (SSH), 338882287 nolu gönderiniz 5268 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338882287\n\nDear HÜLYA MEŞE (SSH), your shipment with 338882287 was delivered to you with the delivery code 5268. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338882287\n\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('133f3868-3774-407c-8130-aa67dfbd433b','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN SSH  adlı müşterinize 745693868 nolu gönderinizin SSH TEKLİ  ürünü 1 parça halinde ELİTİS adresinizden 10.10.2025 16:23:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','866ff076-12a1-4d7b-8ebc-b64544beb08e',NULL),
('134031b2-bd09-45b6-abad-c5f280d2a238','4917643489874','Sayın ÖZDEMİR YAKAN		, 910972908 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910972908\n\nDear ÖZDEMİR YAKAN		, your shipment with 910972908 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910972908\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('134083dd-397a-4fde-a19d-36bc9d077533','491629284220','Sayın İLHAM SEVAL İNDİRME, 478259590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478259590\n\nDear İLHAM SEVAL İNDİRME, your shipment with 478259590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478259590\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('13427968-09fd-4a5a-9879-3ca5e2eb8b3a','491787816278','Sayın SEMİH TÜRKOĞLU, 371696812 nolu gönderiniz 5014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371696812\n\nDear SEMİH TÜRKOĞLU, your shipment with 371696812 was delivered to you with the delivery code 5014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371696812\n\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('134efbc5-2ce3-4041-a5f2-aef724f4001c','905365908694','MAİL BOXES ETC  adlı müşterinizin 223896175 nolu gönderisi 80 parça halinde yola çıkmıştır.','1','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL),
('135367be-2fc3-4054-9ca6-0c6b0ad99a94','436602591422','315389904 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3675 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/315389904\n\nYour shipment with the number 315389904 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3675. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/315389904\n\nBICARGO','1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL),
('135aedba-4e2e-4d53-b588-f89dda0c486d','905454259202','İBRAHİM TANKAZ adlı müşterinizin 478354582 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('13612c34-ca12-48f7-a260-14bb2e1b477a','905517075149','Sayın yetkili; BAHAR SARI adlı müşterinize 478525280 nolu gönderinizin 150x200 set ürünü 4 parça halinde BİCARGO DEPO adresinizden 31.07.2025 14:49:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('1362d1f8-6a59-4768-8b1a-64c6f3e8d656','905304259202','MERYEMA TEKİN adlı müşterinizin 478431848 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('1364b366-86d1-4d46-9745-4e372bacd1b6','905461661672','CYNTHİA GARLEE adlı müşterinizin 644126759 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('13657249-cb5c-46cd-a2c8-339f48cf89a1','32470593490','478687899 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5180 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478687899\n\nYour shipment with the number 478687899 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5180. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478687899\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('1368ddb9-9353-4d6d-844a-7965cedb253e','33782934072','Sayın ERGÜN YILMAZ, 478890979 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478890979\n\nDear ERGÜN YILMAZ, your shipment with 478890979 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478890979\n\nBICARGO','1','c2738111-51d8-4195-8709-efd9bbe4d309',NULL),
('137690d6-070c-4bc5-bea7-09c535753ee8','491634257044','Sayın ŞÜKRÜ AKSOY, 428390036 nolu gönderiniz 3985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428390036\n\nDear ŞÜKRÜ AKSOY, your shipment with 428390036 was delivered to you with the delivery code 3985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428390036\n\n\nBICARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('137834c5-0f11-41fa-b2da-a2999a993a9f','33781435091','Sayın BARIŞ ÇOŞKUN, 745656343 nolu gönderiniz 9162 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745656343\n\nDear BARIŞ ÇOŞKUN, your shipment with 745656343 was delivered to you with the delivery code 9162. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745656343\n\n\nBICARGO','1','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL),
('1378773c-b52a-4c93-8ec7-08093342d9b3','4915118520349','Sayın VAHİT FISTIKÇI, 910950688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910950688\n\nDear VAHİT FISTIKÇI, your shipment with 910950688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910950688\n\nBICARGO','1','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL),
('1378ca74-1788-48f7-8970-a5e3e48e628f','436604738360','Sayın NURSELİ KÖSE , 221285061 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221285061\n\nDear NURSELİ KÖSE , your shipment with 221285061 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221285061\n\nBICARGO','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('137abd20-110c-4abc-8df3-d4908629f7fc','4915208716085','Sayın ZAHRA REZAEİ, 449768376 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449768376\n\nDear ZAHRA REZAEİ, your shipment with 449768376 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449768376\n\nBICARGO','1',NULL,NULL),
('13808a2c-2b8e-456a-b068-4b39d6e29b7c','4917662642928','644344492 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4836 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644344492\n\nYour shipment with the number 644344492 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4836. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644344492\n\nBICARGO','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('13813bdd-b946-43af-a51e-60acd1c1b225','33695585562','745865715 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745865715\n\nYour shipment with the number 745865715 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745865715\n\nBICARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('1381afb1-b45e-4a1d-8784-884c42a256d3','4917660894702','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('13829ee5-5cdb-4b52-b12c-a70138e3f3b4','436607580201','Sayın  UĞUR KAPLAN , 011697836 nolu gönderiniz 9854 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011697836\n\nDear  UĞUR KAPLAN , your shipment with 011697836 was delivered to you with the delivery code 9854. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011697836\n\n\nBICARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('13871982-4243-4fac-b6d7-97264f3f4dd6','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 06.02.2025 22:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('13879f25-3ddd-4b1c-bacc-cc7b1c48d07c','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin koltuk 3 ürünü 1 parça halinde derse koltuk adresinizden 14.06.2025 15:32:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('138896bd-46c8-4291-b293-718740b16029','4915753642605','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('138d9cb0-5c21-40cf-a0fd-1e92304defeb','33685656650','Sayın GÜLCE GÜRLER YEGİN, 478484020 nolu gönderiniz 3755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478484020\n\nDear GÜLCE GÜRLER YEGİN, your shipment with 478484020 was delivered to you with the delivery code 3755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478484020\n\n\nBICARGO','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('138e0dbc-b563-4d6e-beeb-1a9dc0550130','004915906397569','735520226 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7992 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735520226\n\nYour shipment with the number 735520226 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7992. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735520226\n\nBICARGO','2','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL),
('1397eb63-81b5-4e50-93b4-77efcc10671f','33612326252','Sayın MEO JONATHON SSH, 437124353 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437124353\n\nDear MEO JONATHON SSH, your shipment with 437124353 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437124353\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('139cf0b7-4504-44ed-94b3-20c063a302a4','491781401509','Sayın SAMED DERE, 910717262 nolu gönderiniz 2877 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910717262\n\nDear SAMED DERE, your shipment with 910717262 was delivered to you with the delivery code 2877. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910717262\n\n\nBICARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('139ecc57-8a3f-45e0-accd-a67d4fe1d378','905059175469','Sayın yetkili; FATİH KAZAR adlı müşterinize 428182749 nolu gönderinizin puf ürünü 1 parça halinde Fatura adresinizden 23.07.2025 14:12:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('139eda19-ed9f-44f3-b7df-2d324c6230d2','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('13a6588e-9ce1-40b9-9aec-7031d9843017','33607954368','478978353 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8486 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478978353\n\nYour shipment with the number 478978353 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8486. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478978353\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('13a83097-faa6-44b7-b3d8-471016f26238',NULL,'AAAAA adlı müşterinizin 100655378 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL),
('13aaa755-20b2-4c84-95f9-fcd0b808043e','491747042790','Sayın TÜLAY AYDIN, 428604775 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428604775\n\nDear TÜLAY AYDIN, your shipment with 428604775 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428604775\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('13ad8eb1-7fdd-498d-9682-bd3e2ffa81fd','33767550958','412767922 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3921 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412767922\n\nYour shipment with the number 412767922 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3921. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412767922\n\nBICARGO','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('13ae7a13-879d-4432-8ba6-d2ddd25da82f','905461661672','Sayın yetkili; MURAT YILDIZ  adlı müşterinize 644481653 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 20.03.2025 14:36:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('13b1edf9-8a20-4dc3-8849-130d405fb5be','4917632975827','745898734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8401 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745898734\n\nYour shipment with the number 745898734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8401. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745898734\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('13b23ae8-cd47-405c-965a-9ef52981073b','905325165070','Sayın yetkili; ÖZLEM SAĞIR adlı müşterinize 73427297 nolu gönderinizin DENİZ 3+3+1+1 ürünü 4 parça halinde NOVANO adresinizden 02.12.2024 10:16:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('13b88ed0-236a-4c8d-8504-508081210a41','905461661672','OLSZWESKİ MATZ adlı müşterinizin 644658399 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('13b8ec54-c714-43e7-ba90-8c8103f753ce','905335511664','Sayın yetkili; AYCAN ÇOLAK adlı müşterinize 371120278 nolu gönderinizin masa + sehpa ürünü 5 parça halinde SM Tasarım adresinizden 19.08.2025 15:04:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('13c242d9-c67d-4cde-92be-44c2a5ca1f2b','41765845886','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('13c25889-fbcf-4e6b-9870-a2c1e9923ef3','4915115830326','478885112 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478885112\n\nYour shipment with the number 478885112 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478885112\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('13c3355d-93e5-4130-9430-4e88754cebab','905421855834','Sayın yetkili; NURTEN YILMAZ (SSH)  adlı müşterinize 338842710 nolu gönderinizin Sehpa üst tabla (SSH) depoya teslim edildi. ürünü 1 parça halinde Fatura adresinizden 22.09.2025 21:00:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('13c91741-13e5-4f61-815a-86a1d6d487a4','905059175469','TURGAY YILDIRIM adlı müşterinizin 428510909 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','31910f60-232b-44e2-8f56-f03979280a12',NULL),
('13cc6e6d-8d51-443c-b402-929c0f78c8d1','4917676864801','Sayın MELEK IŞIK, 644739716 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644739716\n\nDear MELEK IŞIK, your shipment with 644739716 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644739716\n\nBICARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('13cf7cab-8a3b-4a22-a281-24cd47939613','4917632810959','598961970 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1030 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961970\n\nYour shipment with the number 598961970 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1030. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598961970\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('13d31598-7a10-433c-9d04-daf530ef145a','4915147524518','Sayın FATMA SARI, 745619301 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745619301\n\nDear FATMA SARI, your shipment with 745619301 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745619301\n\nBICARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('13d6b687-f196-4d92-96b7-7441f016901d','905350617509','Sayın yetkili; BERNA YİLDİRİM adlı müşterinize 61390448 nolu gönderinizin Sandalye ürünü 1 parça halinde Mfoursandalye adresinizden 19.08.2025 17:32:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('13d7c23c-667e-4f10-99c8-6d60a7c584f9','41782334263','Sayın ESTİFANOS HABTE , 982496646 nolu gönderiniz 9141 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982496646\n\nDear ESTİFANOS HABTE , your shipment with 982496646 was delivered to you with the delivery code 9141. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982496646\n\n\nBICARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('13da9380-d879-411b-a0ac-70cde371feaa','905325998198','DURMUŞ MEVLÜT adlı müşterinizin 614425900 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','711413e7-9565-452a-b808-a0700618dc85',NULL),
('13dbb516-7e9c-4c4c-a0e8-d01accd43c78','4917630158799','Sayın MUHAMMED TOPAL, 371681337 nolu gönderiniz 1550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371681337\n\nDear MUHAMMED TOPAL, your shipment with 371681337 was delivered to you with the delivery code 1550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371681337\n\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('13dbf441-779b-44a7-85cb-9ff93d2ae3cd','905075277637','NEVİN KIRIK adlı müşterinizin 745638060 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('13dfa287-1652-43c1-a58c-b50e6c01b5e4','905335511664','Sayın yetkili; GÜLSEREN ŞAHİN adlı müşterinize 371494792 nolu gönderinizin koltuk ürünü 3 parça halinde Elitis Home adresinizden 02.05.2025 12:00:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('13e103f5-ba3f-477c-a2fd-8348fe5b11cc','905454259202','Sayın yetkili; MUHAMMET ALTUNKAYA adlı müşterinize 478681042 nolu gönderinizin 2 PK BAŞLIK VEKULP ürünü 1 parça halinde çelikbey inegöl depo adresinizden 22.04.2025 14:37:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('13e23bc7-1862-44a7-bc2a-53d1f6d43204','4915560261024','976894167 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4077 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976894167\n\nYour shipment with the number 976894167 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4077. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976894167\n\nBICARGO','1','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL),
('13ec31ea-77ec-4046-9a8e-ada750c3361a','491629139526','Sayın MEHMET AKİF ATAMAN, 750498273 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750498273\n\nDear MEHMET AKİF ATAMAN, your shipment with 750498273 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750498273\n\nBICARGO','1','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL),
('13f05408-0f7f-46cf-978c-b2af08e9a07c','491634613400','Sayın SİDAR AKDENİZ, 428178028 nolu gönderiniz 7681 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428178028\n\nDear SİDAR AKDENİZ, your shipment with 428178028 was delivered to you with the delivery code 7681. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428178028\n\n\nBICARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('13f65fa3-6c79-45be-aaed-d281927d2f52','905332942204','Sayın yetkili; ELİF GÖKTAN adlı müşterinize 505770346 nolu gönderinizin Masami 0505 008 3144 ürünü 5 parça halinde Fatura adresinizden 25.07.2025 15:46:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('13f70254-0436-4764-8b65-2e322df68dcd','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA ÇALIŞMA MASASI ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('13fc2240-1a31-4650-b8e8-8297c18cf2ce','905078062550','SERKAN DOKKAL adlı müşterinizin 598961970 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('13fc497a-abbc-4dcb-933b-7397a1c59ae5','905454259202','MELİSA DEMİRTAŞ adlı müşterinizin 478757775 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('14056fe4-f7ce-4245-af88-d422b661f7f0','41764537057','Sayın KISMET URDOĞAN, 478560084 nolu gönderiniz 9299 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478560084\n\nDear KISMET URDOĞAN, your shipment with 478560084 was delivered to you with the delivery code 9299. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478560084\n\n\nBICARGO','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('14077d04-ca1f-4bbc-af1f-fa6dce9e7167','905335708965','MURAT KARADAĞ adlı müşterinizin 248211803 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL),
('140d37ef-9160-451f-a81b-1c8dfd2cb5d9','491711202605','Sayın ERKAN UYSAL , 982271871 nolu gönderiniz 6244 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982271871\n\nDear ERKAN UYSAL , your shipment with 982271871 was delivered to you with the delivery code 6244. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982271871\n\n\nBICARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('140ddbae-a2eb-4744-a4aa-e57e5bcfc02e','905335511664','CANDAN ÖZDEMİR adlı müşterinizin 371251508 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('140fb539-9772-44df-a699-47f883345619','436765735040','Sayın VOLKAN ARAZ, 745553590 nolu gönderiniz 3905 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745553590\n\nDear VOLKAN ARAZ, your shipment with 745553590 was delivered to you with the delivery code 3905. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745553590\n\n\nBICARGO','1','6220c77f-761e-462c-a359-ad8d9ba79902',NULL),
('141f4a4f-119d-427c-a2a8-8340252af8db','905313340045','Sayın yetkili; UMUTCAN ŞAHİNCİ adlı müşterinize 437870707 nolu gönderinizin Orta sehpa ürünü 2 parça halinde masami adresinizden 22.08.2025 15:41:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('1420054b-778d-4195-aee7-8ede7893acb2','33662698743','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('1420d5dd-57c7-4594-bd04-736d5125c342','491731888801','657734229 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2106 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657734229\n\nYour shipment with the number 657734229 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2106. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657734229\n\nBICARGO','1','d534081c-07c5-470c-bed4-f699f4319aa1',NULL),
('1421c46d-001b-45b1-b8e0-7f98c4542cbb','905325000478','ABDULKADER TARRAB adlı müşterinizin 412383870 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('14235754-1eae-4716-be1c-b4e4bb76fff6','4915111866659','Sayın MELİSA DÜZME, 644796083 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796083\n\nDear MELİSA DÜZME, your shipment with 644796083 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644796083\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('14245267-b3a3-41bb-b18b-bb5d6d2556f3','491776698040','Sayın HALİT ŞEN, 614474485 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614474485\n\nDear HALİT ŞEN, your shipment with 614474485 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614474485\n\nBICARGO','2','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL),
('14246b97-8464-4fad-b179-d3449a263f36','905079047428','MEHMET ÇANKAYA adlı müşterinizin 449136824 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('14247d4c-2e43-4d67-aafd-3c2027fb2262','905336367828','BOUSLİMAİN ECHOUAK adlı müşterinizin 982868918 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','24096b71-5b5e-4da8-9191-8e3168102053',NULL),
('14299c17-6aff-437b-94e8-35dbd974da62','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin MASA ürünü 2 parça halinde Masami Mobilya adresinizden 29.05.2025 17:37:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('14319570-2172-4eae-9d69-cb3e6f19c801','905059175469','HAVVA-HÜMEYRA DEMİR adlı müşterinizin 42851120 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL),
('143b5cfd-fd7f-431d-9c5b-0fe4e5578a38','905331602195','Sayın yetkili; KEVSER DENİZ  adlı müşterinize 221368256 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 29.05.2025 17:30:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('143dc513-c59b-475a-9e02-3f9892f276f1','4915750730726','Sayın SAKİNA RAHİMİ, 449874608 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449874608\n\nDear SAKİNA RAHİMİ, your shipment with 449874608 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449874608\n\nBICARGO','1','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL),
('143f774f-35d9-4052-8ce0-7adfb9a298be','905304259202','RESUL YILMAZ adlı müşterinizin 478816607 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL),
('1443293b-a49c-4680-b25f-b2526ad76dcd','33661933324','221952785 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1574 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221952785\n\nYour shipment with the number 221952785 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1574. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221952785\n\nBICARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('144823c2-45bd-4b42-806b-88541ace94be','33620807187','Sayın Mustafa İlhan, 976369647 nolu gönderiniz 8554 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976369647\n\nDear Mustafa İlhan, your shipment with 976369647 was delivered to you with the delivery code 8554. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976369647\n\n\nBICARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('1448df88-43e3-489c-8468-ba7ea8b41148','4917621701947','Sayın DAVUT BİNGÖL, 598530881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598530881\n\nDear DAVUT BİNGÖL, your shipment with 598530881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598530881\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('144a52e1-36f6-4133-82ce-1d2b0b6dcbdf','905517075149','Sayın yetkili; İLHAM SEVAL İNDİRME adlı müşterinize 478259590 nolu gönderinizin viral masa ve konsol ürünü 5 parça halinde family adresinizden 26.06.2025 15:15:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('144babcf-163c-4f58-861e-8f0f1381667c','33636227871','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('144c3864-1d55-433a-b6f7-b9c2e90106ea','905356395415','MURAT BEY adlı müşterinizin 16334418 nolu gönderisi 101 parça halinde yola çıkmıştır.','1','83fe2028-17f9-4b82-a141-f935042a08dd',NULL),
('144ea60b-869b-4a2a-b784-2daa10601bfc','436765022152','Sayın NURAY DURAN, 515261200 nolu gönderiniz 8969 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515261200\n\nDear NURAY DURAN, your shipment with 515261200 was delivered to you with the delivery code 8969. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515261200\n\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('1455d7ca-220a-4afa-9afa-51ce9bccdd43','330695878603','47835620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1274 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47835620\n\nYour shipment with the number 47835620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1274. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47835620\n\nBICARGO','1',NULL,NULL),
('14577ccf-51f9-4def-bc6b-a045fc2ed698','905079047428','HASRET BEYAZIT adlı müşterinizin 449196428 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL),
('14578476-7a28-4c02-9389-ddc55f60ac90','05388618969','ÖMÜR TOSUN adlı müşterinizin 78633450 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('145b28e8-a8c8-47cb-bdb9-ab1b9bb1e6a2','491622711992','Sayın HATİCE BOZ, 371441090 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371441090\n\nDear HATİCE BOZ, your shipment with 371441090 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371441090\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('145beae9-3969-4191-b7f4-447fee368507','33679750944','221368256 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9587 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221368256\n\nYour shipment with the number 221368256 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9587. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221368256\n\nBICARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('145cd453-3031-46d9-82c2-641f10754a72','31618085363','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('14618f5f-556f-4bc4-afbb-853f02745b96','905366385704','YUSUF BEY  adlı müşterinizin 830611219 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e333a30-7986-4a32-be40-ecb91b558892',NULL),
('1468230a-7f5c-453f-b98c-dbc3e60fadb9','905325000478','ÇOŞKUN ŞENEL adlı müşterinizin 41288739 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','e55441b7-eaf6-4645-ac39-b0befcc429b1',NULL),
('1468337d-9a82-400f-8937-0ca2b7323773','905331602195','Sayın yetkili; MAZİJA IBRAHIMOVİC adlı müşterinize 221417499 nolu gönderinizin 140 çap mermer baskı masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.06.2025 11:40:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('1470c319-00b3-4fd0-99ac-f2939f6d522d','905394878216','MASİS YAZMACİYAN adlı müşterinizin 517867004 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('14710e2f-83d9-43ca-a0a5-5dd01467d203','491621337891','347986383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1636 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/347986383\n\nYour shipment with the number 347986383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1636. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/347986383\n\nBICARGO','1','792fcb83-3583-425f-8515-80f98a19c7f3',NULL),
('1476d1fa-8b61-4dfe-956e-5fdf1152be38','905304259202','ZEYNEP ALEYNA ÖZBEY adlı müşterinizin 478101302 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL),
('147879b3-6b8a-4c76-8aae-f727d71eadd4','905331602195','Sayın yetkili; DERGHAM NAWEL  adlı müşterinize 22145441 nolu gönderinizin 90x190 koyu ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:31:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('147a7deb-b1df-4379-babc-11c45ec0e8ee','905428209234','Sayın yetkili; CEMAL YALÇIN adlı müşterinize 319116491 nolu gönderinizin TESLA KOLTUK 3+3+1+1 ürünü 6 parça halinde Bestine adresinizden 08.07.2025 14:03:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('147d7434-6c20-4ba7-9d81-bdb92bc2453e','436606593598','Sayın MUSTAFA SEVİNDİ, 517827584 nolu gönderiniz 8067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517827584\n\nDear MUSTAFA SEVİNDİ, your shipment with 517827584 was delivered to you with the delivery code 8067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517827584\n\n\nBICARGO','1','b821f1cd-d990-4100-9455-a2c619562c1e',NULL),
('147f7c0e-8798-4e21-b2d9-5e2306a41c96','905331602195','YILDIZ KILIÇ adlı müşterinizin 221952785 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('14821062-e573-4564-b6a8-35d3e6b5bc33','436603639033','Sayın MELİSA SAĞLIK, 478483851 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478483851\n\nDear MELİSA SAĞLIK, your shipment with 478483851 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478483851\n\nBICARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('148d8d49-810a-4642-aaf8-6da471e8cbb9','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin DELUXE BAZA SET 90X190  ürünü 3 parça halinde Fatura adresinizden 26.09.2025 12:24:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('148e706c-eedf-4559-9759-50a05c797c94','905313340045','Sayın yetkili; SEBİHA DEMİR adlı müşterinize 437233194 nolu gönderinizin SEHPA ürünü 2 parça halinde masami adresinizden 10.09.2025 16:50:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('1491f424-29e2-44e7-9f78-73c65864e76d','905350617509','Sayın yetkili; ELFRİDA RAİCEVİC  adlı müşterinize 613510894 nolu gönderinizin Döşek ürünü 1 parça halinde Albessa adresinizden 30.07.2025 14:23:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('1492b21e-d3f5-451e-b67b-a662cc2c0591','031681694818','Sayın İBRAHİM AKÇORA, 412679110 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412679110\n\nDear İBRAHİM AKÇORA, your shipment with 412679110 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412679110\n\nBICARGO','2','d25fd827-385a-48f1-8993-4f48129b3530',NULL),
('14936db6-4c30-4d17-891b-9d5f5f169307','905079358213','ARZU AKSİ adlı müşterinizin 745817440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('14947714-8ca5-4090-89ff-99608545d669','4917622021338','501256266 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2539 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501256266\n\nYour shipment with the number 501256266 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2539. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501256266\n\nBICARGO','1','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL),
('1497d4a8-d7e7-49dc-9bb5-639a679fb8e8','4917682095628','952470417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5243 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/952470417\n\nYour shipment with the number 952470417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5243. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/952470417\n\nBICARGO','1','a029bd37-9eca-4220-a768-df5b0d586118',NULL),
('14a3c079-d246-4856-9581-03494903d72b','33623933331','Sayın YUSUF IŞIK, 449582137 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449582137\n\nDear YUSUF IŞIK, your shipment with 449582137 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449582137\n\nBICARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('14a7952e-23ff-4030-9062-74407f59ad25','4917663069031','478380707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10818 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478380707\n\nYour shipment with the number 478380707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10818. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478380707\n\nBICARGO','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('14ab50f0-0370-47c2-a1f3-d8e9f70dfa37','4917663691991','Sayın ENES İSMET UGUZ, 598986653 nolu gönderiniz 5248 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598986653\n\nDear ENES İSMET UGUZ, your shipment with 598986653 was delivered to you with the delivery code 5248. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598986653\n\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('14af0ec8-34e0-485c-8410-ecbd5f119493','436605107396','Sayın SULTAN SEVİNÇ, 808935275 nolu gönderiniz 7302 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808935275\n\nDear SULTAN SEVİNÇ, your shipment with 808935275 was delivered to you with the delivery code 7302. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808935275\n\n\nBICARGO','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('14afc6af-3502-4afc-a557-f2b8ac229369','905350617509','Sayın yetkili; CİGDEM DENKER  adlı müşterinize 613391684 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 21.08.2025 16:58:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('14b4451d-a027-408c-8631-9b0995fbcbca','234242762767242','223823107 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223823107\n\nYour shipment with the number 223823107 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223823107\n\nBICARGO','2','12f34352-3245-4b1c-af57-1762c30010cd',NULL),
('14b742f3-be91-4d59-b909-043259b89b27','33652341181','Sayın ALİ DİNAR, 47811313 nolu gönderiniz 5535 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47811313\n\nDear ALİ DİNAR, your shipment with 47811313 was delivered to you with the delivery code 5535. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47811313\n\n\nBICARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('14b764e4-4b1a-4017-bac4-5eb48630e7a4','491786241769','Sayın ALİ KULABEROĞLU, 478319922 nolu gönderiniz 4725 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478319922\n\nDear ALİ KULABEROĞLU, your shipment with 478319922 was delivered to you with the delivery code 4725. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478319922\n\n\nBICARGO','1','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL),
('14b91ba3-4c73-42d7-9835-0081aebfbd4c','905304259202','MERYEMA TEKİN adlı müşterinizin 478431848 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('14c2ccc1-83eb-4be3-b922-264c09dc50ca','4915774874594','Sayın MERVE KORKMAZYUREK, 221511033 nolu gönderiniz 8946 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221511033\n\nDear MERVE KORKMAZYUREK, your shipment with 221511033 was delivered to you with the delivery code 8946. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221511033\n\n\nBICARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('14c4f80e-d8b4-4ee5-af7d-9491788d2143','905394878216','Sayın yetkili; TARİK ERCAN adlı müşterinize 517274063 nolu gönderinizin Koltuk Takımı (3+3+1) ürünü 3 parça halinde Fatura adresinizden 30.05.2025 11:18:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c19abe66-cb76-4c21-ad00-4ba1ed3d223c',NULL),
('14c5028e-e8a8-4074-83eb-687ba82a0f85','905313340045','MERVE BEKTİK adlı müşterinizin 43752518 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('14c53cfd-9fb2-488a-bbb0-90a6366fc939','905325000478','BRÜHL CAMİSİ adlı müşterinizin 412441586 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','2754ec7f-f526-44d3-8178-29280a48b322',NULL),
('14cb74ca-e2aa-4dc0-82d7-cf6011333bc4','4917641694614','Sayın DURMUŞ YÜKSEKTEPE, 745935889 nolu gönderiniz 3021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745935889\n\nDear DURMUŞ YÜKSEKTEPE, your shipment with 745935889 was delivered to you with the delivery code 3021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745935889\n\n\nBICARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('14d38823-a9cd-4071-9859-bc987ac370bd','905075277637','EBRU DEMİRHAN adlı müşterinizin 745422037 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3e19392f-7b28-4ec5-bd54-c32058400252',NULL),
('14d4aa90-31fc-4215-9113-ea1dde38f4be','4915736399251','Sayın CENNET YAVUZ, 437250812 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437250812\n\nDear CENNET YAVUZ, your shipment with 437250812 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437250812\n\nBICARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('14d4cb7d-43da-432e-bb58-c1eebbb7e8b2','310681538881','Sayın GALİP YAYLALI, 338286320 nolu gönderiniz 4805 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338286320\n\nDear GALİP YAYLALI, your shipment with 338286320 was delivered to you with the delivery code 4805. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338286320\n\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('14d5fc95-12c3-4cd8-81a5-8104155ade71','436609500017','657192716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657192716\n\nYour shipment with the number 657192716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657192716\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('14d838de-1e2c-4363-a514-54ed9a36fbac','905356503956','Sayın ELA SARL, 412316933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412316933\n\nDear ELA SARL, your shipment with 412316933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412316933\n\nBICARGO','1','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL),
('14dbecb2-df8a-47e4-a886-203d837e2ab9','905304259202','SEMİH ELMAS adlı müşterinizin 478173801 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('14e8836b-36d7-4ad5-a9eb-8fbb60cf87ce','905069116877','AYNUR DURSUN adlı müşterinizin 817136073 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('14edc77a-14da-4549-b837-7ad5b1e5fa2a','491772703881','Sayın FATİH YÜKSEL, 59878032 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59878032\n\nDear FATİH YÜKSEL, your shipment with 59878032 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59878032\n\nBICARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('14f09e88-f39e-4288-9321-38efca8ad16c','4917620131305','745357299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745357299\n\nYour shipment with the number 745357299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745357299\n\nBICARGO','1','ad525e43-9190-4602-ac34-b389ec280f0a',NULL),
('14f3691a-cb1c-4bb1-bcb7-288f01ad46ae','491628599053','Sayın MEHMET KANBEROĞLU, 976441354 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976441354\n\nDear MEHMET KANBEROĞLU, your shipment with 976441354 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976441354\n\nBICARGO','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('14f5810f-fd46-401e-a188-5da76a95db29','905331602195','NURGÜL ÖZER adlı müşterinizin 221191139 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('14f8f69d-b9b3-4a7c-8b88-bb5e4f04ded0','905331602195','HATİCE ÖZTÜRK adlı müşterinizin 221621737 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('15025723-878f-4cd6-bdcd-dbea24b8e03e','905304259202','SİNAN YILDIZ adlı müşterinizin 478209702 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','22239f89-5592-49c8-b2c4-dc804b06b788',NULL),
('150402f0-873f-45e0-91a1-5a3c419617f7','4917681106453','644625326 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6226 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644625326\n\nYour shipment with the number 644625326 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6226. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644625326\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('15087b53-9c9c-40c9-a672-ac1867de6cee','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin DOLAP ürünü 12 parça halinde SENS DİZAYN adresinizden 26.09.2025 16:35:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('15093831-e670-4e71-9a2c-b7ab5fbbdfa6','4917684739114','644403373 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644403373\n\nYour shipment with the number 644403373 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644403373\n\nBICARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('150cac1b-093c-48af-a2b0-915306e4ed3f','905442774505','BERKANT CEYLAN  adlı müşterinizin 657784193 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('15124a56-7c12-4d31-90a1-e479d1ca62dc','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin FRANCO T SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 24.04.2025 14:37:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('1518864b-07fd-4780-869f-e944dfbb87f9','905332942204','İPEK ÇAKMAKÇI adlı müşterinizin 505129515 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('151b3230-39fd-4638-a4a9-67bc8cc44630','4917629501949','982533088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982533088\n\nYour shipment with the number 982533088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982533088\n\nBICARGO','2','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL),
('151d3766-f9cd-4744-b7c3-c1998838c078','905313340045','Sayın yetkili; HASAN ÇETİNKAYA adlı müşterinize 437335093 nolu gönderinizin sandalye ürünü 3 parça halinde MFOUR SANDALYE adresinizden 31.07.2025 12:01:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','037003ee-72aa-4ac0-80cf-0a8a21f4600f',NULL),
('151fa3b3-6871-4062-8f88-43c2e7a78c56','491735396163','371626943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2983 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371626943\n\nYour shipment with the number 371626943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2983. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371626943\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('1522751e-4750-49ce-8c8d-d466c2c7b809','905428209234','MEHDİ NAEİMİ adlı müşterinizin 319275080 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('1522e40b-dc36-4eef-a39c-2b0986dae5b6','4917630119950','Sayın SÜLEYMAN ERDOĞAN, 478723327 nolu gönderiniz 6041 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478723327\n\nDear SÜLEYMAN ERDOĞAN, your shipment with 478723327 was delivered to you with the delivery code 6041. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478723327\n\n\nBICARGO','1','476a35ac-9d9d-4d70-a965-370a980951c2',NULL),
('1531aef7-266e-4f5c-ae0f-cb3353723da7','905461661672','Sayın yetkili; RUKİYE BARUT adlı müşterinize 644626371 nolu gönderinizin MASA  ürünü 3 parça halinde Masami Mobilya adresinizden 12.05.2025 16:37:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('1532d683-f30e-45fb-b794-2c04c0d8ae07','905368336516','YOLCU EVİN adlı müşterinizin 515463699 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('153923e8-1f5b-42ba-8e4f-3610c537dc24','491634722211','Sayın MÜCAHİT SÖYLEMEZ, 47842524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47842524\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 47842524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47842524\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('153b66f6-307a-414f-b82f-d95c87c0068b','4917620526995','Sayın SONGÜL KEKEÇ, 910197116 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910197116\n\nDear SONGÜL KEKEÇ, your shipment with 910197116 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910197116\n\nBICARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('153b854f-01cf-4cd1-9cf3-c391de58445c','905336367828','FIRAT BEY adlı müşterinizin 98283616 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL),
('154478eb-757b-479d-94ac-e80e78910a8e','905075277637','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin FRİDA KÖŞE KOLTUK  ürünü 5 parça halinde RİXXE  adresinizden 15.10.2025 14:20:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('154777d9-2fe3-4c06-9468-54df57808ebe','905349208933','MAHMUD YUSUF ÖKDEM adlı müşterinizin 127253098 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('154efb47-5519-4da6-9f4f-f78945980a99','33613393054','Sayın SİNGH PERWİNDEJİT, 418120869 nolu gönderiniz 6673 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/418120869\n\nDear SİNGH PERWİNDEJİT, your shipment with 418120869 was delivered to you with the delivery code 6673. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/418120869\n\n\nBICARGO','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('155b53bb-1965-435d-b68d-5708a2ee185f','4915737531253','Sayın DELİL ÖZÇELİK, 644680025 nolu gönderiniz 3752 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644680025\n\nDear DELİL ÖZÇELİK, your shipment with 644680025 was delivered to you with the delivery code 3752. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644680025\n\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('155ca2c5-2dba-4b37-8207-ffc697f85f14','4917673582903','Sayın BETÜL ÇELİK, 644334455 nolu gönderiniz 2868 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644334455\n\nDear BETÜL ÇELİK, your shipment with 644334455 was delivered to you with the delivery code 2868. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644334455\n\n\nBICARGO','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('155cb9c5-b8f0-4e66-8150-7e731b140df6','491788201397','Sayın BURHAN SARİKURT, 613508377 nolu gönderiniz 3916 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613508377\n\nDear BURHAN SARİKURT, your shipment with 613508377 was delivered to you with the delivery code 3916. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613508377\n\n\nBICARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('15628cbc-504a-44fe-ac1c-3edf1116815d','4524951213','Sayın FİROUZEH NOORZAİ, 982561254 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982561254\n\nDear FİROUZEH NOORZAİ, your shipment with 982561254 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982561254\n\nBICARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('1565097b-59aa-4d5d-ab97-e434334640ab','905461661672','Sayın yetkili; GAMZE ŞAŞMA adlı müşterinize 644523362 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 20.05.2025 17:26:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('1565262d-d5a9-4760-aa15-9f0917edfd57','33695033884','Sayın HASAN BÜLBÜL, 478941206 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478941206\n\nDear HASAN BÜLBÜL, your shipment with 478941206 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478941206\n\nBICARGO','1','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL),
('1568037c-7106-43c4-823b-c8b92a9ff94e','905454259202','OSMAN KILINÇ adlı müşterinizin 478205168 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('1569543a-0e12-48f3-ad6b-e7ef6c8a5149','492315800773','Sayın NUSRET GÜNEŞ , 501163993 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501163993\n\nDear NUSRET GÜNEŞ , your shipment with 501163993 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501163993\n\nBICARGO','2','e3943ece-5f39-454b-89e6-213b14b5658f',NULL),
('156b1bcb-b757-46c6-8586-53ec6dabbd77','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ESKALA LİNE İKİLİ RAFLI BLOK DOLAP ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('15701b10-af02-4e71-abb2-6d03d0a1301e','4917622920602','371251508 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371251508\n\nYour shipment with the number 371251508 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371251508\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('157bf0f2-8a5c-4a9d-b923-b82d6881a804','4915115830326','Sayın RAMAZAN KAYHAN, 478972804 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478972804\n\nDear RAMAZAN KAYHAN, your shipment with 478972804 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478972804\n\nBICARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('157c85e0-9de9-4258-ad64-9fcf8435c22b','4915734900369','Sayın ELÇİN ÖZDEMİR, 371860514 nolu gönderiniz 9655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371860514\n\nDear ELÇİN ÖZDEMİR, your shipment with 371860514 was delivered to you with the delivery code 9655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371860514\n\n\nBICARGO','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('157c9758-9df4-4e6b-bce3-9152f3cae554','31614754134','Sayın MUSTAFA SAİT ÖZDEMİR, 203497868 nolu gönderiniz 6013 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/203497868\n\nDear MUSTAFA SAİT ÖZDEMİR, your shipment with 203497868 was delivered to you with the delivery code 6013. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/203497868\n\n\nBICARGO','1','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL),
('157cc0d1-11c0-4dfb-804b-d056dbfa918e','4915150865710','Sayın HANDE PALMA, 61378160 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61378160\n\nDear HANDE PALMA, your shipment with 61378160 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61378160\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('157e3b5b-bf7f-49f6-a4d8-1d2729f71309','905075277637','AYŞE İPEKSOY adlı müşterinizin 745766580 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL),
('1586eee1-77cf-493d-81e4-56a4409650bb','905336367828','ŞAHİN MUAMMER adlı müşterinizin 982840804 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('158dbf43-d1fb-4d94-9b49-31172c67ee6c','32485453027','Sayın FERİDUN BAYER, 959168443 nolu gönderiniz 1906 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/959168443\n\nDear FERİDUN BAYER, your shipment with 959168443 was delivered to you with the delivery code 1906. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/959168443\n\n\nBICARGO','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('1596e3b1-1e1b-4960-b2ce-3502e3d74069','905075277637','İBRAHİM YILDIRIM adlı müşterinizin 745405587 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('1598ba1d-0b15-4f32-90a6-99483169c4e8','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin DOĞA MODERN PARİS KANEPE ürünü 1 parça halinde DOĞA MODERN adresinizden 08.09.2025 14:59:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('15a07eed-5b24-4ce3-b926-968d4c95ba0b','905313340045','ALİ KURUÇAM adlı müşterinizin 437707209 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('15a5f77e-c159-408d-b8b1-5de1ad5f10e9','431728611102','695394738 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9012 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/695394738\n\nYour shipment with the number 695394738 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9012. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/695394738\n\nBICARGO','2','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('15a88b11-e31d-45d5-83f4-d6e0469047b8','491725826815','37197237 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4933 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/37197237\n\nYour shipment with the number 37197237 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4933. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/37197237\n\nBICARGO','1','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('15a98e19-770f-4437-aa20-dd433280f301','905079047428','SAFİ adlı müşterinizin 449634859 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','db66575e-7eb2-4dcc-8fa6-1fe6496897e6',NULL),
('15aedaea-cd6e-4085-af70-b30bcdc7caa5','4917680856506','Sayın NEGİN EHSANİFARD, 644206771 nolu gönderiniz 10632 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644206771\n\nDear NEGİN EHSANİFARD, your shipment with 644206771 was delivered to you with the delivery code 10632. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644206771\n\n\nBICARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('15b1667d-ae06-4605-b1e5-cf2a690d3f52','905079047428','Sayın yetkili; MONİKA MORKİ  adlı müşterinize 449693939 nolu gönderinizin Köşe takımı 1 adet berjer  ürünü 6 parça halinde Fatura adresinizden 07.02.2025 15:36:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('15b221d3-66b4-4c71-be18-98e507220e35','905075277637','ELOUAZGHİ ANAİS  adlı müşterinizin 745879253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('15bb6408-2e27-4387-8e46-b4737a646521','905075277637','Sayın yetkili; ÖZLEM TURA adlı müşterinize 745808637 nolu gönderinizin DELUXE BAZA SETİ 90X200 4 TAKIM  ürünü 12 parça halinde Fatura adresinizden 20.05.2025 14:24:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('15bd63a8-e5f1-4bac-b02e-a07bf17b0ce9','33749894912','910903191 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3511 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910903191\n\nYour shipment with the number 910903191 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3511. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910903191\n\nBICARGO','1','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL),
('15c1ef64-0e4e-4b35-8b84-cd45bff44949','905054335859','Sayın yetkili; TEKİN MAZLUM adlı müşterinize 501872546 nolu gönderinizin DEAR SEHPA ürünü 1 parça halinde Fatura adresinizden 03.01.2025 17:17:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('15c43b16-9f0b-40f2-9521-ff2c5d0cea69','4915758318201','Sayın Ajroski ajsun, 98285799 nolu gönderiniz 1527 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98285799\n\nDear Ajroski ajsun, your shipment with 98285799 was delivered to you with the delivery code 1527. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98285799\n\n\nBICARGO','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('15c566d4-7712-4388-bac8-413b33a9a185','491774646467','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('15c6aec5-b18a-4a67-aa1d-25655b47d8e2','33617505236','Sayın MEO JONATHON SSH, 437124353 nolu gönderiniz 8306 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437124353\n\nDear MEO JONATHON SSH, your shipment with 437124353 was delivered to you with the delivery code 8306. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437124353\n\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('15c8e15b-7e0a-42cd-a3cc-7ad57a63603e','905364155243','GHASAN ALBUKAİ adlı müşterinizin 289168915 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL),
('15cc07fb-2cef-4d00-a66d-72038eceae94','905079358213','FATMA BİLGİN adlı müşterinizin 745353139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('15ccb393-1df5-48d1-8be2-b93fd88b2afa','905510396989','ÖMER FARUK ÇANAK adlı müşterinizin 31934282 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('15ce9ac9-ee3a-483a-8b27-a6f080fedc3c','905079358213','Sayın yetkili; MUHAMMET TÜRKMEN adlı müşterinize 745952430 nolu gönderinizin KİNG PLATİN BAZA SETİ 120X200 ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:15:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('15ceacba-66a3-4a86-b6db-2d6650b18d21','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN SSH  adlı müşterinize 745693868 nolu gönderinizin SSH PUF  ürünü 1 parça halinde FAMILY adresinizden 23.10.2025 11:44:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','866ff076-12a1-4d7b-8ebc-b64544beb08e',NULL),
('15cf6138-a602-476c-917a-f21215e7a795','4915735267419','İLETİŞİM\n					Furkan şöför = +905078826436','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('15d03092-7321-44d2-b962-68774bd4fee8','4915901762821','412968518 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412968518\n\nYour shipment with the number 412968518 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412968518\n\nBICARGO','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('15d39f30-ee39-4119-9860-a206782bc48d','41793101768','Sayın CEM TOPYÜREK, 531870941 nolu gönderiniz 1758 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531870941\n\nDear CEM TOPYÜREK, your shipment with 531870941 was delivered to you with the delivery code 1758. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531870941\n\n\nBICARGO','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('15d9accf-d87a-43b6-afb0-00b3c06461a3','905428209234','GAMZE ÖZDEMİR adlı müşterinizin 319645924 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('15e09d51-9533-4480-b43a-9f83f3ef4369','905304259202','MUHAMMET ENES KILIÇ adlı müşterinizin 478609228 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fcf0c01f-72e5-4298-b55c-15849b2fdb04',NULL),
('15e33176-6784-42dd-b523-fe62662b5080','905428209234','ABUZER TEKCE adlı müşterinizin 319232330 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('15e92e25-5487-4e20-ab72-0543f68a66c2','905059175469','ESRA SEZEN adlı müşterinizin 428122550 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL),
('15eaed24-71d5-4817-872a-04793eb829b3','905304259202','ÖZLEM RECEP ÇANAK adlı müşterinizin 478966296 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('15ed5351-6359-4cf3-90ed-502f528ea765','491731829748','371944289 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8457 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371944289\n\nYour shipment with the number 371944289 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8457. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371944289\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('15f7046c-7ffc-4772-bb7b-74e7cae9947e','905332942204','RABİJE OSMANİ adlı müşterinizin 505332275 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('15f7ceb6-f19e-4427-8a6c-3638353ada62','32470652077','Sayın SEYFETTİN, 41298450 nolu gönderiniz 5337 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41298450\n\nDear SEYFETTİN, your shipment with 41298450 was delivered to you with the delivery code 5337. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41298450\n\n\nBICARGO','1','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('15f8ed89-6196-4bc6-9d89-a85cd52303a3','4917682095628','Sayın GÜLNUR KURUOĞLU, 952470417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/952470417\n\nDear GÜLNUR KURUOĞLU, your shipment with 952470417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/952470417\n\nBICARGO','1','a029bd37-9eca-4220-a768-df5b0d586118',NULL),
('15fb27d0-8247-419e-b2cf-536381f44388','491729344122','Sayın MAHMUT KAYA, 478705604 nolu gönderiniz 1059 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478705604\n\nDear MAHMUT KAYA, your shipment with 478705604 was delivered to you with the delivery code 1059. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478705604\n\n\nBICARGO','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('15fba302-0631-4a85-b0bb-32ee6e0fcbf9','905517075149','DELİL ALGUNERHAN adlı müşterinizin 478677262 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('15fdffdb-cee3-46e3-808e-c2324694120a','491634662527','127927013 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2476 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127927013\n\nYour shipment with the number 127927013 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2476. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127927013\n\nBICARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('15fe4cd0-52a3-42d8-ac09-82488f294b0b','33618251496','Sayın DERGHAM NAWEL , 22145441 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22145441\n\nDear DERGHAM NAWEL , your shipment with 22145441 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22145441\n\nBICARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('1603ad59-8559-436d-95c3-e523f81aac42','31682496201','Sayın ESRA ALTINTAŞ , 221437904 nolu gönderiniz 8738 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221437904\n\nDear ESRA ALTINTAŞ , your shipment with 221437904 was delivered to you with the delivery code 8738. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221437904\n\n\nBICARGO','1','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL),
('1616ce6a-d5db-4dff-9fab-5757849fcdd0','4917620022816','İletişim \n					Şöför Uğur Acar +905424435917','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('161810a6-882a-478e-a1b6-805078724f48','905079358213','Sayın yetkili; DELİL ÖZTÜRK SSH adlı müşterinize 745786401 nolu gönderinizin dolap kapak + malzeme pk  ürünü 3 parça halinde MOBİLİSTAN adresinizden 23.05.2025 09:31:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('16181472-c042-470a-af14-f11798199894','004915229410362','Sayın SAMİ MEHDEROĞLU, 735272751 nolu gönderiniz 5751 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735272751\n\nDear SAMİ MEHDEROĞLU, your shipment with 735272751 was delivered to you with the delivery code 5751. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735272751\n\n\nBICARGO','2','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL),
('16188687-b088-496d-95f0-666ad97646f2','905454259202','MERYEM YUMURTACI adlı müşterinizin 478154934 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('1625354b-2244-4dd4-a3a9-77121ef717f2','4915734900369','371860514 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371860514\n\nYour shipment with the number 371860514 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371860514\n\nBICARGO','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('16285660-5759-4637-8260-14f21623cf01','905079047428','ADNAN MUSTAFAJ adlı müşterinizin 449343471 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4b0f77c0-836a-4892-a19c-c0032f863e4b',NULL),
('1629c2a6-7e2f-4aa4-8b8e-ef0670f537d7','905461661672','Sayın yetkili; ALEYNA AKAY adlı müşterinize 644500765 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 01.07.2025 12:54:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('162a0e75-5cd8-44a0-a42a-9a089394a87c','905079358213','AYSEL ASLAN adlı müşterinizin 745606440 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL),
('162c3f24-9f33-4498-bab0-7e79dc68c3e2','31614272440','Sayın AHMET GÜVEN, 657832584 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657832584\n\nDear AHMET GÜVEN, your shipment with 657832584 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657832584\n\nBICARGO','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('162f61ba-7af8-4eac-b934-46deb32f6f93','491728265079','Sayın RANİA PİSİT, 613464926 nolu gönderiniz 8239 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613464926\n\nDear RANİA PİSİT, your shipment with 613464926 was delivered to you with the delivery code 8239. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613464926\n\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('16321fe5-4322-4754-99a7-4fb2a9c71ef9','905454259202','Sayın yetkili; ZEHRA AŞIK adlı müşterinize 478243785 nolu gönderinizin FRİDA KÖŞE (AYAKLARI KONTROL EDELİM) ürünü 6 parça halinde RİXXE adresinizden 12.05.2025 16:19:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('163336a8-f242-4536-b702-b60bf9b9778d','33608517581','449700444 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9953 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449700444\n\nYour shipment with the number 449700444 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9953. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449700444\n\nBICARGO','1','61867c22-c86f-44a9-a203-2b810c74f596',NULL),
('1635946e-5a54-49f2-b350-60959467fe23','905461661672','Sayın yetkili; RAYAN SLEİMANİ  adlı müşterinize 644403373 nolu gönderinizin SANDALYE ürünü 2 parça halinde BALİ SANDALYE adresinizden 26.05.2025 14:26:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('1637aff2-4e6c-4368-b0f1-64937e0f75f6','31638550109','Sayın BERFİN UZUNER , 221900850 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221900850\n\nDear BERFİN UZUNER , your shipment with 221900850 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221900850\n\nBICARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('16386bdb-74ae-44c1-8e3f-4be87cb2f653','905454259202','SÜLEYMAN KAYHAN adlı müşterinizin 478763903 nolu gönderisi 105 parça halinde yola çıkmıştır.','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('1638f634-0c6e-4705-baba-3d9686e35fe6','41799101405','Sayın SAFİYE ÇITAK, 745959029 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745959029\n\nDear SAFİYE ÇITAK, your shipment with 745959029 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745959029\n\nBICARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('163bb88f-d094-47ab-bb42-473e184e9fa0','33783080694','Sayın MOHAMMED MALHA , 982125625 nolu gönderiniz 1499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982125625\n\nDear MOHAMMED MALHA , your shipment with 982125625 was delivered to you with the delivery code 1499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982125625\n\n\nBICARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('163fcf52-73fb-415c-9597-aff202876ddc','905350617509','ELFRİDA RAİCEVİC  adlı müşterinizin 613510894 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('164662d8-57f9-4df7-b3b1-d5a742724598','33652341181','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('164d81af-4c10-482f-a128-42e32c0c5a7c','905517075149','İPEK ÇİFTÇİ adlı müşterinizin 478300917 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('1650aa4b-f32d-43dd-8c46-811863d3205d','33651444703','248535027 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4230 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248535027\n\nYour shipment with the number 248535027 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4230. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248535027\n\nBICARGO','1','e3a57d2d-4adf-4846-9fa6-c92de9e727ae',NULL),
('1651a7ec-c04b-45c2-86ad-4e4d2f19723b','4917620519550','745197344 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8954 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745197344\n\nYour shipment with the number 745197344 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8954. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745197344\n\nBICARGO','1','a2d259a0-8a03-4763-951b-98fe714623ce',NULL),
('16529f13-56dd-4cb7-a533-fb39702d8aa1','491637115819','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('16566a0d-84b0-45ba-ba4b-83c6d9246ac7','4917642010727','Sayın NİDA YİLDİRİM, 412939859 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412939859\n\nDear NİDA YİLDİRİM, your shipment with 412939859 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412939859\n\nBICARGO','1','ada30e7c-1819-48d8-b086-9ceffe365e0b',NULL),
('16587c03-fc10-449d-acfa-670c345eee7f','905304528330','Sayın MERT  GÜNAL, 23.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8891115\nŞifre : 8891115\n			\nBİCARGO','1',NULL,NULL),
('166494c2-c511-457d-b3eb-9ee553c399ef','33751029586','982196265 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7713 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982196265\n\nYour shipment with the number 982196265 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7713. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982196265\n\nBICARGO','1','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL),
('1667d150-0b99-44d6-9b0c-149aa3fb7140','905443955915','İRFAN ÖZDEMİR adlı müşterinizin 614337059 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e',NULL),
('1669e40d-158f-4ba0-8ee9-e53ba589c6da','905442774505','MERVE ÖZÇOBAN adlı müşterinizin 657192716 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('166cf277-607c-4454-9741-9e5b016c3db0','33601991875','478589258 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8387 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478589258\n\nYour shipment with the number 478589258 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8387. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478589258\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('167514b5-7998-465a-b109-673c7f5e1f19','4917634311162','Sayın ÖZLEM POLAT, 37176846 nolu gönderiniz 3904 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37176846\n\nDear ÖZLEM POLAT, your shipment with 37176846 was delivered to you with the delivery code 3904. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37176846\n\n\nBICARGO','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('16777d75-b28e-4f47-8606-064eec1cb61b','905454259202','EMİN EKRAMOĞLU adlı müşterinizin 478678748 nolu gönderisi 82 parça halinde yola çıkmıştır.','1','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL),
('16798dc3-49d8-4175-a652-fd80d838e0b3','905059175469','MUSTAFA MÜEZZİNOĞLU  adlı müşterinizin 428538007 nolu gönderisi 35 parça halinde yola çıkmıştır.','1','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL),
('16893585-e0fb-40fb-ad1f-5f7c02980e33','32489642440','Sayın BRHZAD ALİKHANİ , 982402434 nolu gönderiniz 7590 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982402434\n\nDear BRHZAD ALİKHANİ , your shipment with 982402434 was delivered to you with the delivery code 7590. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982402434\n\n\nBICARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('168a89b1-658f-4570-950c-b2e8c154a6e5','491622633232','42814374 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2468 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42814374\n\nYour shipment with the number 42814374 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2468. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42814374\n\nBICARGO','1','150442fb-cc98-4a3d-861f-26845907dbfa',NULL),
('168e3169-f5aa-4625-8a00-df3557f4abee','905421855834','HÜLYA MEŞE adlı müşterinizin 338411689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('168f1833-6276-45eb-aa27-acadf9480cd5','905078062550','Sayın yetkili; MERT ÇİÇEK adlı müşterinize 598954734 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 27.08.2025 15:06:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('1691b7cb-10e7-4ba6-8be8-5a75523ba8cf','905454259202','MELİSA SAĞLIK adlı müşterinizin 478483851 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('1697b5c2-a571-43e1-aef6-cb2d2cc5bda2','905442774505','MERVE KIZILIRMAK adlı müşterinizin 657258901 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('1698d97f-07a0-4481-9ee1-2c36e2a7358e','905304259202','EMİN EKRAMOĞLU adlı müşterinizin 478337610 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('1699a637-ce27-4e87-b350-9271d7b4b8f3','905336367828','DENİSA LANGU  adlı müşterinizin 982134567 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('169d7804-dc85-4ed9-8a6e-ce9784f7ce87','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Prestige Yatak ürünü 1 parça halinde Bed Home adresinizden 12.05.2025 14:52:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('169f2cd8-3fdb-4ffe-b966-983829eae3b9','436609069660','Sayın HASAN ÇALIK , 982720250 nolu gönderiniz 5511 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982720250\n\nDear HASAN ÇALIK , your shipment with 982720250 was delivered to you with the delivery code 5511. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982720250\n\n\nBICARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('16a15650-2e5d-450c-984e-52bea05f92da','905078062550','Sayın yetkili; UĞUR KOŞAR adlı müşterinize 59884902 nolu gönderinizin MASA ürünü 2 parça halinde RİO FATİH adresinizden 23.10.2025 15:07:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a',NULL),
('16a2c708-1bcd-4dfd-8ddd-150665e7a26d','33647785711','Sayın JASSEY COLİNE, 221190454 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221190454\n\nDear JASSEY COLİNE, your shipment with 221190454 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221190454\n\nBICARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('16a4b4f4-bb3e-4bb9-8d35-ac48fb90faf1','33766894111','Sayın İSRAFİL ŞENGÖNÜL, 745297087 nolu gönderiniz 2882 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745297087\n\nDear İSRAFİL ŞENGÖNÜL, your shipment with 745297087 was delivered to you with the delivery code 2882. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745297087\n\n\nBICARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('16a93dc5-024e-4ab7-9266-0790709920cf','905461661672','SEDA TULGAR adlı müşterinizin 644152675 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('16ac4e3c-5513-485e-8ea5-07ef6c653dd7','41767141855','74594372 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74594372\n\nYour shipment with the number 74594372 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74594372\n\nBICARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('16af3104-35d7-4228-8a80-fbd3e5fcbafc','33753794689','478862837 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5864 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478862837\n\nYour shipment with the number 478862837 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5864. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478862837\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('16b82471-bf61-4415-8d6a-cacd098516ca','905350617509','VAİSE İBRAHİM adlı müşterinizin 613108463 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('16b8a1db-117d-4a63-ac81-6059bfadff2a','905079047428','Arif ağca adlı müşterinizin 449837324 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6be99b5d-41a3-4b9e-a67f-f951b7f620ed',NULL),
('16ba0d52-1af9-4b50-b44c-15e97fd48c1d','33685686692','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('16bc27aa-7e65-4758-a1e2-ef86dd2a19b3','4917656765746','Sayın ÖZLEM AKAY, 371440688 nolu gönderiniz 3207 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371440688\n\nDear ÖZLEM AKAY, your shipment with 371440688 was delivered to you with the delivery code 3207. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371440688\n\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('16ca4a33-ace5-4af1-a3b1-ac5466d956e4','4915776398644','Sayın NURCAN MANSUR, 478438901 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478438901\n\nDear NURCAN MANSUR, your shipment with 478438901 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478438901\n\nBICARGO','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('16cc93d0-3efa-45b8-bd3c-d31fbf20cc78','4917622016838','Sayın RAMİSH MİRZAYER, 449401217 nolu gönderiniz 9126 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449401217\n\nDear RAMİSH MİRZAYER, your shipment with 449401217 was delivered to you with the delivery code 9126. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449401217\n\n\nBICARGO','1','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL),
('16cd5fbf-3f8f-4416-b950-b1e99f362508','33635494107','Sayın HÜSEYİN ÖÇAL SSH , 745350597 nolu gönderiniz 5648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745350597\n\nDear HÜSEYİN ÖÇAL SSH , your shipment with 745350597 was delivered to you with the delivery code 5648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745350597\n\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('16cea40c-9711-4088-801d-766ca4f00193','4917632998796','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('16cfbbd5-1571-4161-94c2-8e3cf11e362f','905454259202','SEVCAN SALİ adlı müşterinizin 47888038 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','945602cc-25e3-4d66-bae2-b70fa6008882',NULL),
('16d05df6-e995-4d99-8a71-cdae885afa42','491797333588','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('16d1b1ac-e203-4d0e-b0d8-295164c24f05','905454259202','ALEV DOĞRU adlı müşterinizin 478860616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('16d1ccc8-a903-47c1-af8c-e2e886df2361','491728162123','Sayın ŞENGÜL BABAOĞLU, 371304914 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371304914\n\nDear ŞENGÜL BABAOĞLU, your shipment with 371304914 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371304914\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('16d2a9a1-0019-4d5b-a2b3-b4713d157969','436763676926','437869312 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437869312\n\nYour shipment with the number 437869312 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437869312\n\nBICARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('16d4946c-a9c7-4256-8265-48484382bd3b','4917661977979','Sayın MURAT YALIN, 501216728 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501216728\n\nDear MURAT YALIN, your shipment with 501216728 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501216728\n\nBICARGO','1','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL),
('16d4a906-c529-46bd-bf3f-9b3dc8e3650e','905078062550','Sayın yetkili; TALHA KARA adlı müşterinize 598384021 nolu gönderinizin KÖŞE KOLTUK ürünü 7 parça halinde ELİTİS HOME adresinizden 05.08.2025 17:29:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('16e8ab63-485b-450d-96cf-27e15186261c','33651098791','338607005 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3269 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338607005\n\nYour shipment with the number 338607005 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3269. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338607005\n\nBICARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('16ea4fc1-4483-4dd3-b43c-796317505614','491744555584','Sayın TUĞBA BALIKÇI, 437154123 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437154123\n\nDear TUĞBA BALIKÇI, your shipment with 437154123 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437154123\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('16ebc90a-61ff-45fd-8d08-a5fb9fcc5c8d','905363385813','AYSEL OK adlı müşterinizin 976245604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL),
('16ebd7c1-aaab-4a70-97cc-9930b1eb929e','905079358213','YASEMİN YILDIZ adlı müşterinizin 745968655 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('16edf32f-020a-41a2-bab9-08c91b66e8e7','905447112515','ASASSADASDSA adlı müşterinizin 382253716 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL),
('16ee7348-e9af-40c6-b286-70527e12e91d','491702765634','5983047 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4782 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5983047\n\nYour shipment with the number 5983047 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4782. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/5983047\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('16ee86a2-90a0-4fbc-b2c6-9cd0d5a6f8da','905054335859','HANEFİ ALİOĞLU adlı müşterinizin 501667618 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL),
('16f223f5-ea7a-4908-844b-becf08917dc0','31612139530','614425900 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7644 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614425900\n\nYour shipment with the number 614425900 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7644. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614425900\n\nBICARGO','1','711413e7-9565-452a-b808-a0700618dc85',NULL),
('16f5cc0d-c152-49d0-9ee1-23b9a20cc093','905388618969','VALBOANA adlı müşterinizin 786254351 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL),
('16f5d208-8dd9-4770-8cc5-7d878976871e','905075277637','Sayın yetkili; EMRE YILMAZ SSH  adlı müşterinize 745771664 nolu gönderinizin KOLTUK KASASI 2 PARÇA  ürünü 1 parça halinde VAAV adresinizden 30.06.2025 13:33:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('16fbfd73-af91-4ce4-905a-de6ba5645dab','905331602195','Sayın yetkili; TİMUÇİN SAYIN adlı müşterinize 221786435 nolu gönderinizin Natura sandalye koyu ceviz ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:33:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('16fd4a89-8c11-4437-92d9-1df7fbdf7ba1','905459011033','ATİLLA GÖNÜLTAŞ adlı müşterinizin 268615271 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL),
('16ff9891-e6aa-41d5-b8b9-d8247527c137','905461661672','DERYA BALİ adlı müşterinizin 644178035 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('1709ceb8-2907-4cfa-b04e-678521a717eb','905301592882','Sayın yetkili; BİRCAN ŞAHİN adlı müşterinize 91074356 nolu gönderinizin KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 29.05.2025 10:34:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('17143665-c9f0-4e25-8159-45144e086e95','905325000478','CAVİT  adlı müşterinizin 412129107 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('17143c5c-7ef6-4d76-a43b-b51149fe8d77','905079358213','SARAH KUSLU adlı müşterinizin 745502887 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c8f99487-f21d-467c-9282-047182f5edbf',NULL),
('1714c937-0fc2-43a8-8a10-d5019a2ac6c8','33699946659','478428380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1823 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478428380\n\nYour shipment with the number 478428380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1823. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478428380\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('17158029-59e5-455b-8092-32e03af48654','905461661672','Sayın yetkili; OLSZWESKİ MATZ adlı müşterinize 644658399 nolu gönderinizin Seramik sehpa ürünü 1 parça halinde Fatura adresinizden 18.07.2025 11:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('1715b91d-d794-4299-a4b9-ef12ed24101d','491736493653','43774917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2807 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43774917\n\nYour shipment with the number 43774917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2807. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43774917\n\nBICARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('171dbfb7-b19f-4550-8cd6-a3bf0e7ea73a','905431026110','Sayın yetkili; İLKAY ÇİFTÇİ adlı müşterinize 35130528 nolu gönderinizin MASA  ürünü 3 parça halinde MASAMİ adresinizden 28.08.2025 17:53:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('171fc79a-a4ab-406b-abfc-37a05bf3ac86','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin GARDEROBE PETRA 160\'LIK KARYOLA(BAZALI) ürünü 6 parça halinde GARDOREBE adresinizden 12.09.2025 14:04:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('1720db54-fead-4d6c-a7ec-3855b7223cf6','905336367828','Sayın yetkili; ORASAN DAVUT  adlı müşterinize 98275727 nolu gönderinizin MASA ürünü 2 parça halinde Palermo mobilya  adresinizden 09.07.2025 15:13:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('17215409-c7b0-4922-9ba8-7be716b06cc7','4917642908659','Sayın MEHMET SÜZEN, 982562609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982562609\n\nDear MEHMET SÜZEN, your shipment with 982562609 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982562609\n\nBICARGO','1',NULL,NULL),
('17218fa5-2ad2-496b-a398-12a21db6ae54','491744713856','371823380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6775 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371823380\n\nYour shipment with the number 371823380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6775. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371823380\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('17280cb4-1ab8-4268-b5e5-34fed25c6e4a','4917631174423','Sayın YUŞA SOYER, 338678802 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338678802\n\nDear YUŞA SOYER, your shipment with 338678802 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338678802\n\nBICARGO','1','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL),
('172e0ae4-18de-4ef7-89b4-9c88cba8bd5a','4542392394','Sayın SİHAM MAHMOUD, 598280715 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598280715\n\nDear SİHAM MAHMOUD, your shipment with 598280715 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598280715\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('1732d932-9716-49c6-a1b3-0dca5b5c4b71','905079358213','BURHAN AZEMİ adlı müşterinizin 74594372 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('173891ef-44ca-4972-a443-c65b25797c67','32476391369','Sayın BATTAL, 412565065 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412565065\n\nDear BATTAL, your shipment with 412565065 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412565065\n\nBICARGO','1',NULL,NULL),
('173a543c-32f7-40f6-969d-1c3e68574357','4915204907905','Sayın FUNDA CAMDAN, 923419994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/923419994\n\nDear FUNDA CAMDAN, your shipment with 923419994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/923419994\n\nBICARGO','1','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL),
('173c05e5-7947-44cb-8e6b-fa775ff09f6b','905454259202','MELİH ÜNAL adlı müşterinizin 478235858 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL),
('174a9bb8-3441-41ac-b9bb-4f78734dfcec','905078062550','Sayın yetkili; TALHA KARA adlı müşterinize 598384021 nolu gönderinizin BAZA BAŞLIK ürünü 4 parça halinde ALBESSA HOME adresinizden 22.07.2025 16:52:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('174c3528-8241-425b-816b-14aab1f2d529','905331602195','MERYEM BERK  adlı müşterinizin 221583384 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('174fb2de-fdd2-4284-9047-349f7acff0c1','905517075149','OSMAN BOZKAN adlı müşterinizin 478302796 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('175b0535-6590-469f-ad58-14a94612886d','905079358213','FURKAN GÜNEŞOĞLU adlı müşterinizin 74532550 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL),
('175b43cb-6979-4a41-8f03-727567152ff6','905325000478','FURKAN adlı müşterinizin 412580908 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL),
('175cfed6-9445-4d43-b712-d9adae03af10','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Karyola ürünü 3 parça halinde Arya Bedding  adresinizden 08.11.2024 13:53:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('175f27ca-87bf-4d1c-84d8-75ac9ec0cfd0','4917644265408','Sayın MEHMET KIRMALI, 745471905 nolu gönderiniz 2179 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745471905\n\nDear MEHMET KIRMALI, your shipment with 745471905 was delivered to you with the delivery code 2179. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745471905\n\n\nBICARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('175f45ff-1cc7-416b-b354-d2e861c582fc','4917681126034','Sayın MUSTAFA AZAMİ, 786398335 nolu gönderiniz 9719 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786398335\n\nDear MUSTAFA AZAMİ, your shipment with 786398335 was delivered to you with the delivery code 9719. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786398335\n\n\nBICARGO','1','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('17623cda-b87c-4f35-97ba-dd935c73ddac','11111111111111','Sayın Fatih Tarkcı  ULUIŞIK LOJİSTİK, 07.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1877603\nŞifre : 1877603\n			\nBİCARGO','2',NULL,'187e76a0-f3c3-4686-8b43-ae76882956a8'),
('1764b26c-0ea4-4f77-9e1a-50887ce426f0','4917681106453','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('176921b4-a7e6-4278-beae-8edceb915e8b','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223385669 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL),
('176bb54d-1966-447a-ad28-0409aec5db84','0033767846954','Sayın ALİ ŞİMŞEK, 735736030 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735736030\n\nDear ALİ ŞİMŞEK, your shipment with 735736030 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735736030\n\nBICARGO','2','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL),
('176c7216-22e8-4e31-9668-a9c7b80ff7c6','33609880831','478422219 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7112 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478422219\n\nYour shipment with the number 478422219 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7112. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478422219\n\nBICARGO','1','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL),
('176d0002-c51d-4333-a1e9-f15bc774c811','33652263178','221649442 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221649442\n\nYour shipment with the number 221649442 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221649442\n\nBICARGO','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('17701001-003e-4866-bfd5-671496a34952','4915164628076','Sayın ŞENOL AKKOYUN, 644535273 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644535273\n\nDear ŞENOL AKKOYUN, your shipment with 644535273 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644535273\n\nBICARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('17749878-241d-4ed6-a691-5eb9245218fc','905423036885','ALMİRA adlı müşterinizin 920610594 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('17751749-07bd-45fd-a9e9-b902478f1223','00491739514221','Sayın PARK, 248549362 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248549362\n\nDear PARK, your shipment with 248549362 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248549362\n\nBICARGO','2','08723415-4b6f-4a95-a326-2405074a7498',NULL),
('177e999b-6df2-4880-9204-b2c385b13de9','905336367828','Sayın yetkili; MOHAMMED MALHA  adlı müşterinize 982125625 nolu gönderinizin dolap  ürünü 18 parça halinde Brn mobilya  adresinizden 12.02.2025 11:32:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('177fbd1e-a8c2-42d0-ac31-8ad5b04362e7','33621633706','Sayın EDİZ DİNLER, 478989383 nolu gönderiniz 7802 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478989383\n\nDear EDİZ DİNLER, your shipment with 478989383 was delivered to you with the delivery code 7802. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478989383\n\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('1780332b-4fc1-400f-b7f1-05e96e3e68bf','33622632744','Sayın ALİ ÖZDEN , 745991962 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745991962\n\nDear ALİ ÖZDEN , your shipment with 745991962 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745991962\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('17846d0f-4d80-4475-aedd-e46b6cab2603','33613166090','614868518 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9701 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614868518\n\nYour shipment with the number 614868518 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9701. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614868518\n\nBICARGO','1','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('17852843-378a-4f4a-a0fe-1c04330357c9','436603639033','Sayın MELİSA SAĞLIK, 478483851 nolu gönderiniz 1406 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478483851\n\nDear MELİSA SAĞLIK, your shipment with 478483851 was delivered to you with the delivery code 1406. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478483851\n\n\nBICARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('178824f9-874e-4ab1-b8a5-83558725632e','491786788734','37140435 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6727 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37140435\n\nYour shipment with the number 37140435 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6727. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37140435\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('178904dc-4bf3-40a9-a6a8-13a0732490fb',NULL,'Gruppomino adlı müşterinizin 231429780 nolu gönderisi 2 parça halinde yola çıkmıştır.','2','d850bd2e-4975-4529-8b56-6564706b808f',NULL),
('178be16b-6d68-477f-90b5-5af538fe5905','4917624766377','Sayın ALİM BAŞ, 50156405 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/50156405\n\nDear ALİM BAŞ, your shipment with 50156405 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/50156405\n\nBICARGO','1','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL),
('178eab5f-7e79-478f-92b8-e2b37ec08fff','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin DORA MASA / 8 SANDALYE ürünü 7 parça halinde DOSSİ adresinizden 19.09.2025 14:26:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('178eaf06-b5c2-4bad-805e-6101fd62e22d','4917642942119','Sayın AYŞE ERDEM, 428226833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428226833\n\nDear AYŞE ERDEM, your shipment with 428226833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428226833\n\nBICARGO','1','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL),
('178eca50-91e6-49f0-a3b9-f0931111cd8b','4915737597078','İletişim \n					Şöför Murat : +905321616048','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('1792a11a-5f1d-4053-bf75-c4267cac081b','436642175788','DRİVER\n					ADNAN\n+905354622027','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('1794ae04-85de-4478-9ba3-693ee0836558','0782338105','428761245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3418 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428761245\n\nYour shipment with the number 428761245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3418. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428761245\n\nBICARGO','2','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('1794cde2-59ac-46b0-ae2b-24369d4e794b','491781789912','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('1795f89c-300b-450d-9c3a-f0236ad42eb4','32485530941','Sayın DELİL ÖZTÜRK, 74529534 nolu gönderiniz 6745 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74529534\n\nDear DELİL ÖZTÜRK, your shipment with 74529534 was delivered to you with the delivery code 6745. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74529534\n\n\nBICARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('1799757f-7fc4-4d82-88c1-6f5a728d1d04','4917670363986','734460411 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10370 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734460411\n\nYour shipment with the number 734460411 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10370. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734460411\n\nBICARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('17998f0f-1246-48e1-a731-48b392f8394f','33753661602','Sayın YASMİNE , 982824242 nolu gönderiniz 4757 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982824242\n\nDear YASMİNE , your shipment with 982824242 was delivered to you with the delivery code 4757. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982824242\n\n\nBICARGO','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('17a241f8-873b-4050-a0f5-e6d0392d9c3c','905304259202','ERSİN ÖZDEMİR adlı müşterinizin 478392276 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL),
('17a2a4f1-498b-43db-be1a-5a05a03b35c3','905301592882','Sayın yetkili; İBRAHİM TURŞUCU		 adlı müşterinize 910697257 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 26.06.2025 18:28:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('17a56216-7322-403a-9deb-7a1b3a7d5993','4915732035473','734626870 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10747 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734626870\n\nYour shipment with the number 734626870 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10747. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734626870\n\nBICARGO','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('17a597e1-f184-4e98-9381-3a68c4a3dad8','491638098235','Sayın ALİYE GÖRDÜK, 598156869 nolu gönderiniz 4475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598156869\n\nDear ALİYE GÖRDÜK, your shipment with 598156869 was delivered to you with the delivery code 4475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598156869\n\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('17aa346e-e8d4-4349-ab94-31637f8131dc','905078062550','GÖKHAN ZÜRLÜER adlı müşterinizin 598157006 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('17ad472e-93f6-4be1-b3f5-bd647cf58aaf','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin 3.3.1.1 KOLTUK ürünü 5 parça halinde İNEVİSON  SOFA adresinizden 04.11.2024 14:47:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('17ad996d-ca7b-4928-8024-b538c496261b','905331602195','Sayın yetkili; PINAR ÇİÇEK adlı müşterinize 221970338 nolu gönderinizin NATURA SANDALYE ürünü 3 parça halinde Fatura adresinizden 13.01.2025 12:13:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('17b3c128-e535-4317-835b-6e2e6b715968','41762149925','Sayın DONİKA, 786849282 nolu gönderiniz 5334 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786849282\n\nDear DONİKA, your shipment with 786849282 was delivered to you with the delivery code 5334. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786849282\n\n\nBICARGO','1','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL),
('17b58c6e-e38c-4f24-bb51-11a25e19a0a8','905355928266','SEBAHATTİN ÜNVER adlı müşterinizin 412225517 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','33559e2b-89eb-400e-bccc-223d68f8842e',NULL),
('17b8cd98-78aa-4dcf-8f92-83b32b43834c','436605273426','Sayın MARTİN MARİNKOVİC, 675885408 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675885408\n\nDear MARTİN MARİNKOVİC, your shipment with 675885408 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675885408\n\nBICARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('17ba66b6-62f7-4e53-b400-f2ceee834512','905331602195','Sayın yetkili; ABDULLAH KARACA adlı müşterinize 221554711 nolu gönderinizin TRAVERTEN AÇILIR MASA 90/190 ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 10.02.2025 12:23:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('17ba6930-a41c-4071-b6b6-e013571ee09d','4915259684251','745714095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6416 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745714095\n\nYour shipment with the number 745714095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6416. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745714095\n\nBICARGO','1',NULL,NULL),
('17bcc68b-d6ca-4165-8970-51e5d239543d','31634277467','Sayın AYLİN GÜNGÖR, 663458477 nolu gönderiniz 7438 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/663458477\n\nDear AYLİN GÜNGÖR, your shipment with 663458477 was delivered to you with the delivery code 7438. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/663458477\n\n\nBICARGO','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('17bea59e-2c6f-4674-b0d4-1140b580203e','4915118520349','Sayın VAHİT FISTIKÇI, 910950688 nolu gönderiniz 10735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910950688\n\nDear VAHİT FISTIKÇI, your shipment with 910950688 was delivered to you with the delivery code 10735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910950688\n\n\nBICARGO','1','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL),
('17c69f2d-5d00-482d-bdb4-4c443fc4bf17','905304259202','RESUL YILMAZ adlı müşterinizin 478816607 nolu gönderisi 42 parça halinde yola çıkmıştır.','1','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL),
('17c8f727-4fbb-49b7-8d06-99256c6e4ff4','0614160996','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('17c9fcee-7419-46cb-894d-d2ad86274cee','905073106101','MUHTEREM KAYA adlı müşterinizin 465500768 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL),
('17cbd96b-bbb8-44ad-b899-b47df0c7842b','436608138124','Sayın İSMAİL ÖZAY , 745423192 nolu gönderiniz 9282 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745423192\n\nDear İSMAİL ÖZAY , your shipment with 745423192 was delivered to you with the delivery code 9282. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745423192\n\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('17cdbaed-ac8b-461d-a9dd-0b686239a7a4','905336367828','LOSİF LOUNT MİRİUTA adlı müşterinizin 982592763 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL),
('17cdec06-ef93-4401-8dd0-e8db0786623c','905079358213','Sayın yetkili; FATMA SARI  adlı müşterinize 7455365 nolu gönderinizin SANDALYE 6 ADET  ürünü 3 parça halinde AYME HOME MEHMET adresinizden 03.07.2025 17:41:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458258c9-fe44-4947-9731-45517b0b0dba',NULL),
('17ceb33f-2cc2-4a03-ad04-6d3a0bcaf10a','905454259202','ÖMER KOLAT adlı müşterinizin 478733683 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL),
('17d5b8e7-2a7d-4e96-8f80-cd4d5ad59fd3','4917663834666','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('17db5406-18f4-49c2-a90c-fd6095449029','491795446214','745996696 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5518 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745996696\n\nYour shipment with the number 745996696 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5518. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745996696\n\nBICARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('17dc8edd-6667-43db-9fbb-ebaa1eb985a8','905454259202','SÜMEYYE ARSLAN adlı müşterinizin 478355116 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('17e1d431-5ac5-4966-855d-fe324889d733','4917645789684','Sayın BERKANT YAŞA, 745717474 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745717474\n\nDear BERKANT YAŞA, your shipment with 745717474 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745717474\n\nBICARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('17e71933-815a-4a79-9720-64e1adc78376','33665171012','Sayın ŞAHİN MUAMMER, 982840804 nolu gönderiniz 6261 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982840804\n\nDear ŞAHİN MUAMMER, your shipment with 982840804 was delivered to you with the delivery code 6261. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982840804\n\n\nBICARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('17e818ce-91b8-45ac-93f2-c9da83e1d825','905331602195','VEYSEL POLAT adlı müşterinizin 221362176 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('17e8b505-c6c6-463c-a5d6-8b96953d37e1','905421855834','Sayın yetkili; HÜLYA MEŞE (SSH) adlı müşterinize 338882287 nolu gönderinizin Masa üst tabla ürünü 1 parça halinde MasaVia 2 adresinizden 20.08.2025 15:23:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('17e9e60c-565a-4d5e-99f4-0974f6c44171','905335511664','SOFİA KYRİAKİDOU adlı müşterinizin 371186967 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('17ee389b-fe12-47ee-ac56-d43a4f4fcaf5','33631750301','Sayın YUSUF SARIKAN, 745767667 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745767667\n\nDear YUSUF SARIKAN, your shipment with 745767667 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745767667\n\nBICARGO','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('17eee826-4477-4bf5-baa9-8e146affeaf5','33666051702','478221533 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6824 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478221533\n\nYour shipment with the number 478221533 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6824. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478221533\n\nBICARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('17f3f23b-aebb-4e2f-878f-0dcd378d077f','4915124010499','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('17f4d6bc-771e-4589-b464-788f6d965a77','905331602195','Sayın yetkili; ARİC AKA adlı müşterinize 221350993 nolu gönderinizin Malta sandalye  ürünü 6 parça halinde Fatura adresinizden 13.12.2024 16:22:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('17f551a5-7419-4ed3-adba-0db4b4846319','905388618969','DONİKA adlı müşterinizin 786849282 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL),
('17f9cfa7-074c-4016-8b5d-d58a44ce4e71','31621121193','Sayın İLKAY İNCE, 478485864 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478485864\n\nDear İLKAY İNCE, your shipment with 478485864 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478485864\n\nBICARGO','1','5552132e-e408-47bc-ab37-19083b622454',NULL),
('18002229-5ea3-4c59-afbc-908fa0fce0a6','491625434501','Sayın EBRU DEMİRHAN SSH, 745433427 nolu gönderiniz 9940 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745433427\n\nDear EBRU DEMİRHAN SSH, your shipment with 745433427 was delivered to you with the delivery code 9940. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745433427\n\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('18019173-07da-4927-b1d1-181a7d7a150c','4917670630570','531340061 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531340061\n\nYour shipment with the number 531340061 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531340061\n\nBICARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('18034d39-aef7-4601-98e2-02858e3227d2','41795226139','Sayın ISENİ ELMEDİNA , 221967241 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221967241\n\nDear ISENİ ELMEDİNA , your shipment with 221967241 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221967241\n\nBICARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('1807023f-adf8-4306-b7b2-9c3e21474485','310621327442','Sayın SUZAN ALTIPARMAK, 501339138 nolu gönderiniz 6724 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501339138\n\nDear SUZAN ALTIPARMAK, your shipment with 501339138 was delivered to you with the delivery code 6724. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501339138\n\n\nBICARGO','1','e5d95e08-a8c0-4133-845e-d93395f55044',NULL),
('180722a6-e8cd-4b3b-9b70-b85648a1eecf','905451571652','TARA SAİDA adlı müşterinizin 531893295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('1808bdba-b63e-4483-a1c6-2c9921814dc3','5325000478','Sayın SERHAT SERHAT, 18.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6647533\nŞifre : 6647533\n			\nBİCARGO','1',NULL,'ff664753-34e7-49e3-bc89-2f4a4b65bf71'),
('180f95aa-66ca-4956-bf8e-bf58ddb0e88d','905534084469','İLHAN ERAYDIN adlı müşterinizin 15151133 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('1811d9d3-fa5c-459e-97e1-d46b5cdcd781','905079358213','PINAR SALMA SSH  adlı müşterinizin 745332643 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('1814ceaf-f89e-427c-ab22-cc9edce4c30d','491708511252','371398805 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4547 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371398805\n\nYour shipment with the number 371398805 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4547. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371398805\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('181bf2ef-e13e-41ef-aa9c-d274435151e0','905075277637','ERAY ASLANCAN adlı müşterinizin 745294810 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('181d6754-f6d3-4d38-86ee-7918151a298b','436609968921','DRİVER NUMBER\n					905541100849','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('1820885a-0035-4c69-b31d-b1a8b8f35160','0000000000000000','Sayın DİKİŞ MAKİNASI, 655583517 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655583517\n\nDear DİKİŞ MAKİNASI, your shipment with 655583517 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655583517\n\nBICARGO','2','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL),
('18229b55-502d-4b29-88c1-9c662f77b115','31649620613','221433158 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221433158\n\nYour shipment with the number 221433158 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221433158\n\nBICARGO','2','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('1826639c-7254-4e30-a5f3-cdb21a0bad43','4369919243273','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('182a47d5-6a69-4def-a39d-027e3681532e','436765714761','Sayın  ELİF MUHCU, 127281736 nolu gönderiniz 9083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127281736\n\nDear  ELİF MUHCU, your shipment with 127281736 was delivered to you with the delivery code 9083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127281736\n\n\nBICARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('182ba4f8-d8fb-4571-93e5-b271d3960f14','33770299406','Sayın MUHAMMED EL BOUCHATTAOUI, 976235260 nolu gönderiniz 2428 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976235260\n\nDear MUHAMMED EL BOUCHATTAOUI, your shipment with 976235260 was delivered to you with the delivery code 2428. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976235260\n\n\nBICARGO','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('182efe56-752d-40b0-a77e-f99ab1802781','905454259202','MERAL YAZICI adlı müşterinizin 478101413 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('182f209b-e350-4fbb-b2d2-24b380b186c0','33788061133','Sayın BOUAZZA SANNA , 221264394 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221264394\n\nDear BOUAZZA SANNA , your shipment with 221264394 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221264394\n\nBICARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('18306557-a7e1-44bf-9307-0b7d666d1b2b','4917661423024','Sayın UFUK SANATÇI, 43783689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43783689\n\nDear UFUK SANATÇI, your shipment with 43783689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43783689\n\nBICARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('1834536f-136b-49b2-9456-3838c94eed07','33781067727','Sayın MELİSA DEMİRTAŞ, 478757775 nolu gönderiniz 10768 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478757775\n\nDear MELİSA DEMİRTAŞ, your shipment with 478757775 was delivered to you with the delivery code 10768. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478757775\n\n\nBICARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('183a72d6-6c54-40e7-8ad9-68a19d4b7003','905325461492','SEMİH AYDIN adlı müşterinizin 046487702 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f1cee80-98e2-4491-8790-84b0795e2440',NULL),
('183c04d3-61e5-4c72-afc3-1305dd5ff5e4','905331602195','Sayın yetkili; JEUNE ROSE DARLYNE adlı müşterinize 221892935 nolu gönderinizin 90x160 mermer baskılı masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:34:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('183c4990-8ecd-42eb-a64c-c08c91977599','05388618969','NURCAN KURNAZ adlı müşterinizin 786252388 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('18409a6b-d8e5-4678-8e7a-39535d04b9a6','905335511664','ESMA MERT adlı müşterinizin 371282604 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('1845045a-2244-4b6b-bfc0-2f77b9801a9e','905331602195','SEYİT GENÇALİOĞLU  adlı müşterinizin 221476651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('18454730-e88e-4fca-b7e6-be56faee7e48','4917676864801','Sayın MELEK IŞIK, 64418413 nolu gönderiniz 9347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64418413\n\nDear MELEK IŞIK, your shipment with 64418413 was delivered to you with the delivery code 9347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64418413\n\n\nBICARGO','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('18475593-0feb-4041-ae24-4e573a43a6ac','905331602195','Sayın yetkili; VEYSEL POLAT adlı müşterinize 221362176 nolu gönderinizin MİLAS MASA ürünü 3 parça halinde Fatura adresinizden 02.01.2025 11:35:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('184b6cab-0937-4e83-a831-de7f4a97fcb4','905363385813','CEMAL CANKURT adlı müşterinizin 976369139 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('184b9472-3c78-41fd-ab21-246373e8479c','905337836884','Sayın yetkili; AHU AYYILDIZ adlı müşterinize 140421350 nolu gönderinizin döşek ürünü 1 parça halinde bedhome adresinizden 23.10.2025 15:23:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29897483-14ac-4404-8bba-38c2a76aa9a9',NULL),
('184b9c8e-2f08-400d-86ac-8de2f143c73b','905461661672','HASAN KAYA adlı müşterinizin 64413417 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('184f3d48-55d4-4b81-a8b8-16493ed8bba0','905304259202','FURKAN SAYGIN adlı müşterinizin 478498501 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL),
('1853710c-acab-4620-a96f-93acfbd1279e','905301592882','Sayın yetkili; MUSTAFA DÜNDAR		 adlı müşterinize 910775394 nolu gönderinizin BAZA BAŞLIK+ YATAK ürünü 13 parça halinde İNBEDDİNG YATAK adresinizden 14.02.2025 12:19:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('1854d372-f7ab-4baf-a323-6837309c2b04','32486433314','Sayın HACI ULUDAĞ, 449898615 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449898615\n\nDear HACI ULUDAĞ, your shipment with 449898615 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449898615\n\nBICARGO','1','4201089d-4123-423c-809e-645e609e8e0a',NULL),
('1856f4aa-7721-4bbe-a170-abef8706d275','4917662248908','Sayın ERCAN VARSAK, 745318139 nolu gönderiniz 6954 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745318139\n\nDear ERCAN VARSAK, your shipment with 745318139 was delivered to you with the delivery code 6954. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745318139\n\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('18676c45-f5f1-45cd-bdca-5f0b05f08624','905461661672','KIYMET DALMAN(K) adlı müşterinizin 644742878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('18697953-6294-4f2a-bc31-d28c13202c0f','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin 6 sandalye ürünü 3 parça halinde Fatura adresinizden 24.09.2025 13:31:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('186a63cc-7c92-4e67-ad92-ca7e9ee1713d','905454259202','Sayın yetkili; ÖZLEM RAMADAN adlı müşterinize 478150977 nolu gönderinizin viral yatak odası ürünü 20 parça halinde family adresinizden 29.01.2025 11:10:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('186e28f0-9f5b-4a7e-9b2a-60a0a06c92bb','905454259202','Sayın yetkili; RUKİYE KIRIMLI adlı müşterinize 478861689 nolu gönderinizin koltuk takımı 3+3+1 ürünü 3 parça halinde Fatura adresinizden 24.03.2025 15:28:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('1870dc8e-ad91-41b3-9716-6f0623a3d986','905428209234','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin 5 KAPILI YATAK ODASI ürünü 22 parça halinde ROİS adresinizden 02.05.2025 10:51:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('1872940a-eac4-40fd-9d6b-c0ca9ab6ff8a','905301592882','MÜZEYYEN ÖZDEMİR  adlı müşterinizin 910163142 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','54e0df3d-9714-48db-8da6-46af349072d3',NULL),
('187b5f54-c2e1-4675-927f-36a73819a865','905079358213','Abbas sertaç adlı müşterinizin 745715303 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','7af47c44-93b1-42ec-813b-77c155a1b050',NULL),
('18811f98-0132-4fca-ba73-2095cdfb4c59','905454259202','YAŞAR YALMAN adlı müşterinizin 478559056 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('18864e24-d75b-419d-9aee-6d3df579ac85','905075277637','SERHAT ÇAÇAN adlı müşterinizin 745303876 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('188aa6ed-3446-40e8-b3de-ea731653efe5','905059175469','GÜLCAN ÇELİKKANAT adlı müşterinizin 428519862 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('188b5d14-65dd-49c4-a27d-c2b3b38daf0f','905325000478','BERAT BÜNYAMİN  adlı müşterinizin 412149383 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL),
('188d5e46-3071-417b-95b4-ffc25b448461','491626248441','Sayın KIYMET KARA, 478606230 nolu gönderiniz 2311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478606230\n\nDear KIYMET KARA, your shipment with 478606230 was delivered to you with the delivery code 2311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478606230\n\n\nBICARGO','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('189110ca-0087-45a5-843e-501afd44ef22','4920350083648','Sayın DİEFABRİC, 223433822 nolu gönderiniz 9195 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223433822\n\nDear DİEFABRİC, your shipment with 223433822 was delivered to you with the delivery code 9195. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223433822\n\n\nBICARGO','2','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL),
('18925871-f833-469c-b640-4538e0067e75','31686174189','Sayın CEMAL KÖSE, 750822079 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750822079\n\nDear CEMAL KÖSE, your shipment with 750822079 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750822079\n\nBICARGO','1','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL),
('1896cf71-57e5-407f-a90f-d768c2229d4b','905079047428','RAMİSH MİRZAYER adlı müşterinizin 449401217 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL),
('1896f8ef-6440-436f-bf31-753f9abae5b9','33664098432','223867751 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10409 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223867751\n\nYour shipment with the number 223867751 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10409. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223867751\n\nBICARGO','1','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL),
('1897161b-b889-4874-87b9-6f60dbf08d3f','905312762034','Sayın yetkili; TAYFUN TATLIGÜN adlı müşterinize 8087036 nolu gönderinizin Masa Takımı ürünü 11 parça halinde MASAMİ adresinizden 12.09.2025 11:04:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('1899e47a-7db3-4b0b-b66d-5da47881841e','4917657693085','Sayın HAZİNE UCA, 745839023 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745839023\n\nDear HAZİNE UCA, your shipment with 745839023 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745839023\n\nBICARGO','1','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL),
('189ac7f1-6e5b-492d-be57-3564ea74d6ec','905078062550','ROJDA BİNGÖL adlı müşterinizin 598665171 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('189b6500-f8fb-4764-81e0-59d98a794ff9','111111111111','Sayın ??, 268418662 nolu gönderiniz 2061 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268418662\n\nDear ??, your shipment with 268418662 was delivered to you with the delivery code 2061. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268418662\n\n\nBICARGO','2','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('189bab84-083f-4049-8409-6a2e0b649a57','4917624194526','371881042 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1571 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371881042\n\nYour shipment with the number 371881042 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1571. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371881042\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('189da9df-31ce-47b9-adac-e41b30d17718','905079358213','İLYAS KAHRİMAN adlı müşterinizin 745799900 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL),
('18afd012-1f68-44c7-b741-670274b7a390','4917623590552','517278082 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5305 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517278082\n\nYour shipment with the number 517278082 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5305. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517278082\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('18b641af-a9f2-4eaa-8472-930d150265e1','491778339684','Sayın NUR YILDIRIM, 745278745 nolu gönderiniz 4664 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745278745\n\nDear NUR YILDIRIM, your shipment with 745278745 was delivered to you with the delivery code 4664. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745278745\n\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('18bad0ff-1212-4c30-8450-fff3b6b611ff','4917664793999','351330330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10631 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351330330\n\nYour shipment with the number 351330330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10631. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/351330330\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('18bd6db5-5c97-4bbc-8720-76f06bc67d6c','905389469015','RUHİ MANAV  adlı müşterinizin 79354282 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('18bddde7-8ada-4c4e-bac2-9095b53c4842','905365908694','TCR WARENHANDEL GMBH (MARTİN CREUTZBURG) adlı müşterinizin 223853931 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('18bed136-ac98-49b4-8985-7f7c2087f3c3','905059175469','GÖKMEN GÖNÜLTAŞ adlı müşterinizin 428754067 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('18c3f12a-5770-4104-be06-b86975476356','905075277637','BARAN YILDIZ adlı müşterinizin 745455914 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL),
('18c56bf6-72e6-4dd6-8ce3-7bd86f698480','491603349147','Sayın ESTRELLA TÜMKAYA, 319918133 nolu gönderiniz 8976 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319918133\n\nDear ESTRELLA TÜMKAYA, your shipment with 319918133 was delivered to you with the delivery code 8976. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319918133\n\n\nBICARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('18c747ee-e887-4ace-8b96-bfdb0a905420','905079358213','Sayın yetkili; HATİCE ÖZEN adlı müşterinize 745734415 nolu gönderinizin KING PLATİN BAZA SET 140X200 ürünü 4 parça halinde Fatura adresinizden 22.08.2025 15:45:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('18cae158-d94c-4454-b11e-7b15279597f4','905461661672','Sayın yetkili; HAKİF ZİNAL adlı müşterinize 644391223 nolu gönderinizin MASA ürünü 2 parça halinde Masami Mobilya adresinizden 25.08.2025 11:19:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('18ccb373-40d3-429c-b36a-15fdbbd1ee25','905075277637','MEHMET DAĞDEVİREN adlı müşterinizin 745485271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('18d39e1c-7a4c-465b-950b-7b353d9cb23a','905336367828','FARZANA SEDİGHİ adlı müşterinizin 982691264 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL),
('18d71fd6-f2e5-42a7-bb80-2ac7ff53feaa','491788608416','Sayın MERAL GÖGDAS , 221965496 nolu gönderiniz 7487 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221965496\n\nDear MERAL GÖGDAS , your shipment with 221965496 was delivered to you with the delivery code 7487. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221965496\n\n\nBICARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('18d95243-1be0-4b3e-a6c7-a3b3862aaa8c','436601287333','Sayın MUSTAFA ŞİMŞEK, 338730647 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338730647\n\nDear MUSTAFA ŞİMŞEK, your shipment with 338730647 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338730647\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('18da107e-54b1-441e-8354-6117131f465e','33621599637','22130093 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10075 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22130093\n\nYour shipment with the number 22130093 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10075. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22130093\n\nBICARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('18da1b66-e45e-4b34-be04-73246699e8df','905454259202','HAKAN ŞİMŞEK adlı müşterinizin 47889024 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL),
('18ddd2ba-1fcf-4cdf-9d88-ad161c31a12f','4915752547786','Sayın MEHMET ÖZKAN, 478794904 nolu gönderiniz 5934 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478794904\n\nDear MEHMET ÖZKAN, your shipment with 478794904 was delivered to you with the delivery code 5934. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478794904\n\n\nBICARGO','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('18e01bf1-d3dc-4857-b363-b5c7caecb9f4','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160*200 BAZA ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('18e1ca07-6f1f-4c0f-8c6d-b0dc6913b444','491721301453','Sayın BURHAN SAĞLAM, 976593604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976593604\n\nDear BURHAN SAĞLAM, your shipment with 976593604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976593604\n\nBICARGO','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('18e2313b-dfc3-444b-bac2-c7de13f2a4fd','905335511664','Sayın yetkili; SOFİA KYRİAKİDOU adlı müşterinize 371186967 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 16.06.2025 11:40:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('18e49cfb-1513-4b2e-8e2b-3f2634a16159','491723113867','Sayın ULRİCH RİECK SÖHNE, 41279166 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41279166\n\nDear ULRİCH RİECK SÖHNE, your shipment with 41279166 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41279166\n\nBICARGO','1','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL),
('18e63829-f315-469c-88b2-45c755bcd229','32472247513','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('18e79db8-b32e-43be-b981-9e0207a8d837','32479973950','Sayın MEHMET EMİN ŞIK, 478955837 nolu gönderiniz 7028 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478955837\n\nDear MEHMET EMİN ŞIK, your shipment with 478955837 was delivered to you with the delivery code 7028. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478955837\n\n\nBICARGO','1','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL),
('18e8d813-3795-47fb-aa81-60b6c1b36e9c','31642750576','Sayın ÖZGÜR GÖKÜZÜM, 22142813 nolu gönderiniz 8038 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22142813\n\nDear ÖZGÜR GÖKÜZÜM, your shipment with 22142813 was delivered to you with the delivery code 8038. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22142813\n\n\nBICARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('18ebb23e-5fb0-4b03-96ef-96aa86bde23d','31641506768','ŞÖFÖR İKETİŞİM\n					+905301824880','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('18ecdfc4-2e17-4224-b62f-9d89bba0aafb','4915206358147','Sayın ŞENEL KURU, 776312220 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/776312220\n\nDear ŞENEL KURU, your shipment with 776312220 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/776312220\n\nBICARGO','1','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL),
('18f166f2-6e0f-4900-9ca1-59bb2a0ed920','436609855451','DRİVER\n					ADNAN\n+905354622027','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('18f92a4c-4770-4299-9b33-32721cf65417','905454259202','MELEK ÇELİK adlı müşterinizin 478675012 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('19003efb-cc96-4dcf-8b92-28ec92c58f60','905517075149','Sayın yetkili; NURGÜL KARACAN adlı müşterinize 478412191 nolu gönderinizin masa ürünü 2 parça halinde family adresinizden 26.06.2025 15:15:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','026148a6-1f09-460e-bbc5-d795abe9cde4',NULL),
('1900bac5-5ff7-47d6-9f3d-a5a2f6b3c7d7','905534084469','NEVZAT HACIOĞLU adlı müşterinizin 15153034 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('1900c8ff-ad8c-443c-a4e0-f2f5b522738e','905421855834','NURTEN YILMAZ adlı müşterinizin 338411614 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('19029241-d0b4-449b-9b2e-dc930dd9f383','4917671929975','598781522 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6244 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598781522\n\nYour shipment with the number 598781522 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6244. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598781522\n\nBICARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('1905dbc4-0f2c-48aa-b5f6-158752b96c92','49485827454','15153034 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8369 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/15153034\n\nYour shipment with the number 15153034 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8369. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/15153034\n\nBICARGO','2','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('19068b45-034c-404b-af65-d9ffc78fcb5a','905078062550','DAVUT BİNGÖL adlı müşterinizin 598530881 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('1909e44d-21ed-491e-8faa-51bae77bec68','4917680626495','598156869 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598156869\n\nYour shipment with the number 598156869 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598156869\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('190c6e5f-871e-4385-8687-76cdc23e7072','33695776275','47815812 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47815812\n\nYour shipment with the number 47815812 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47815812\n\nBICARGO','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('1914c8b7-fea5-4d03-b3cc-1c009d87d876','905075277637','MEHMET KIRMALI adlı müşterinizin 745471905 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('1916bbd4-f260-44bb-9e1d-6a77bd03e1bb','33788856164','Sayın ERKAN ÇELİK , 911398945 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/911398945\n\nDear ERKAN ÇELİK , your shipment with 911398945 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/911398945\n\nBICARGO','1','36c2bf88-d916-406a-9c75-5831ceac476b',NULL),
('19195545-e65d-4e32-a5b8-08b36a9e69bd','905350617509','Sayın yetkili; DANİAL ARAMESHK  adlı müşterinize 613191069 nolu gönderinizin Sandalye ürünü 4 parça halinde Ayka sandalye adresinizden 20.08.2025 18:39:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('19207618-2bea-4c8b-babf-3fc9b0541586','32484737825','Sayın GÜRKAN GÜLER , 449693252 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449693252\n\nDear GÜRKAN GÜLER , your shipment with 449693252 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449693252\n\nBICARGO','1','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL),
('192081af-8666-43ef-b3c5-09a82a33ef83','905331602195','JEUNE ROSE DARLYNE adlı müşterinizin 221892935 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('192780b5-3776-42a4-82cf-c8413833206d','491726242111','Sayın SERHAT MOUEMİN, 675799375 nolu gönderiniz 5048 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675799375\n\nDear SERHAT MOUEMİN, your shipment with 675799375 was delivered to you with the delivery code 5048. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675799375\n\n\nBICARGO','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('192906ad-60d5-4d8c-a857-56588babdc32','491742714883','Sayın BORAN ALBAYRAK, 598668612 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598668612\n\nDear BORAN ALBAYRAK, your shipment with 598668612 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598668612\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('19343263-2119-4472-90b0-467f1d0a54a0','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin KING PLATIN YATAK 120X200 ürünü 1 parça halinde Fatura adresinizden 27.03.2025 11:47:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('193a9f4c-7ff8-4c53-a778-9a8edaffd6fd','905078062550','SEMANUR GÜLER adlı müşterinizin 598781522 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('194214b8-eed4-4393-be30-ada0e41dffc6','491747353519','Sayın İSMAİL TURŞUCU		, 910697257 nolu gönderiniz 5669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910697257\n\nDear İSMAİL TURŞUCU		, your shipment with 910697257 was delivered to you with the delivery code 5669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910697257\n\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('194748e4-b1a6-42c8-9ecb-7d5ce57fb952','905069116877','Sayın yetkili; VENERA RUSTEMİ adlı müşterinize 817838997 nolu gönderinizin Masami ürünü 3 parça halinde Fatura adresinizden 17.06.2025 12:35:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('19494851-3e33-463b-ac33-41116563792f','31648497230','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('1951f7e6-70a2-4ac4-840f-4617854324c7','4915566264535','Sayın AYNUR KAPUCU, 221694221 nolu gönderiniz 2433 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221694221\n\nDear AYNUR KAPUCU, your shipment with 221694221 was delivered to you with the delivery code 2433. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221694221\n\n\nBICARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('1953b967-d9e2-4ac2-b325-7c05cbd57915','4917684805467','613431273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8265 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613431273\n\nYour shipment with the number 613431273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8265. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613431273\n\nBICARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('1955ac9a-a3d0-4322-8d59-cd917a8db81a','905454259202','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin orta sehpa 2ad. ürünü 1 parça halinde Fatura adresinizden 21.05.2025 16:43:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('1955ce1b-0b76-44e5-9f97-5dc72875593f','33614933816','Sayın CÜNEYT ŞİMŞEK , 517512652 nolu gönderiniz 3934 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517512652\n\nDear CÜNEYT ŞİMŞEK , your shipment with 517512652 was delivered to you with the delivery code 3934. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517512652\n\n\nBICARGO','1','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL),
('19561dc1-3925-4d40-bffc-881eb97098d4','905327099916','FERİDUN BAYER adlı müşterinizin 959168443 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('1957aa10-1fa3-4830-a747-3ad3cd00ca15','491795209461','644826740 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9310 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826740\n\nYour shipment with the number 644826740 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9310. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644826740\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('195ca2a4-35b5-45f4-b48e-da0e5add9a9f','4915566234500','Sayın RANİA PİSİT, 613464926 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613464926\n\nDear RANİA PİSİT, your shipment with 613464926 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613464926\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('19674725-9397-4c30-ab1d-b817235846eb','905075277637','Sayın yetkili; CEYLAN ÇELİK adlı müşterinize 745747218 nolu gönderinizin KING PLATİN BAZA 100X200 2 TK ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:16:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('196b6f71-af2c-4752-ac7d-c2b3c00a1418','436641583122','745724851 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3602 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745724851\n\nYour shipment with the number 745724851 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3602. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745724851\n\nBICARGO','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('196d8d17-3431-4196-9fbb-4d524ff11649','4917630360547','Sayın İBRAHİM PİLİG, 531724547 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531724547\n\nDear İBRAHİM PİLİG, your shipment with 531724547 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531724547\n\nBICARGO','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('197775c4-f3f4-40c9-86d1-332d18af6204','31655504455','428239917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428239917\n\nYour shipment with the number 428239917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428239917\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('197921da-22f7-4f2d-8865-cda40123ee4e','905461661672','Sayın yetkili; CİHAN TOKAY(K) adlı müşterinize 644407379 nolu gönderinizin KOLTUK TAKIMI ürünü 4 parça halinde MODAPARK CONCEPT adresinizden 03.10.2025 15:20:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('197c24a2-abde-4cd2-b8f1-69a20ed9e057','491741928164','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('19814d1b-8c72-4298-99e6-06a7570154e4','905517075149','Sayın yetkili; BESNA ULUĞ adlı müşterinize 478906000 nolu gönderinizin MONGE BAZA-2 KOMİDİN-ŞİFONYER-PUF- ÇAMAŞIRLIK ürünü 18 parça halinde AREA adresinizden 18.08.2025 12:10:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('198223c4-4ef2-48a3-900f-08c4ad1658e7','905079358213','Sayın yetkili; BURHAN AZEMİ adlı müşterinize 74594372 nolu gönderinizin MASA SANDALYE ürünü 6 parça halinde Fatura adresinizden 13.02.2025 23:17:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('19870cc4-a776-4e8b-ab22-14881eec506b','905459011033','DİLEK GÜNEY adlı müşterinizin 26896907 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','4895452e-4598-4194-8203-cf9f5506200a',NULL),
('198a048e-d8bf-4029-89dc-40a0478eddb2','33603603944','Sayın HASSAN ABDULBARİ, 44937818 nolu gönderiniz 2005 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44937818\n\nDear HASSAN ABDULBARİ, your shipment with 44937818 was delivered to you with the delivery code 2005. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44937818\n\n\nBICARGO','1','61dd2e23-34d6-44a9-9516-6e9c953b281e',NULL),
('198fa68a-f355-4aac-a69f-7fcae12f6900','31634640299','Sayın İLKER BİLİCİ, 745128598 nolu gönderiniz 10419 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745128598\n\nDear İLKER BİLİCİ, your shipment with 745128598 was delivered to you with the delivery code 10419. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745128598\n\n\nBICARGO','1','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL),
('198fecd5-174e-4079-a8d0-34dd7a50a5fe','905050303939','41283852 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41283852\n\nYour shipment with the number 41283852 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41283852\n\nBICARGO','1','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL),
('1991738d-093c-45a0-b0a2-a72abfdb20c5','4915751450070','Sayın FURKAN BARUT, 644644143 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644143\n\nDear FURKAN BARUT, your shipment with 644644143 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644644143\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('199585a5-8357-4fc5-85eb-245fa847d3ea','905539740010','HÜLYA ŞENEL  adlı müşterinizin 011195834 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('19963251-aa66-412e-a534-408150450963','33783457448','Sayın VELİ ÖKTEN, 478284503 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478284503\n\nDear VELİ ÖKTEN, your shipment with 478284503 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478284503\n\nBICARGO','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('1999df42-131c-4ee1-9b95-197208433e11','905075277637','METİN PEKSERT adlı müşterinizin 745645972 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e30052e8-31ee-42d9-b11e-50298f473091',NULL),
('199d8ddb-312e-49da-bd97-32ecd229637a','41765594658','Sayın RABİA NALKIRAN, 221307786 nolu gönderiniz 3173 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221307786\n\nDear RABİA NALKIRAN, your shipment with 221307786 was delivered to you with the delivery code 3173. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221307786\n\n\nBICARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('199d9744-8c14-4496-8aa7-61499f3a4364','7627367263762632','412139250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3456 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412139250\n\nYour shipment with the number 412139250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3456. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412139250\n\nBICARGO','2','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('19a1f8b0-6688-4725-9db4-d09327440f42','4917661423024','İLETİŞİM\n					Furkan şöför = +905078826436','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('19a4a04e-63f7-4523-9879-49000a4217bd','905331602195','Sayın yetkili; NAGEHAN ÇETİNKAYA  adlı müşterinize 221919629 nolu gönderinizin SYDNEİ SANDALYE  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 17.10.2025 14:28:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','97f210f7-77d7-4798-b689-12729f296667',NULL),
('19a577fa-5051-46cc-88f5-6483cdd4ffe5','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin BEYLER 1IPA-100-G PİYANO AYNA GÜMÜŞ ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('19a5c847-d250-41a4-a8e4-89cfa7f0d0a7','905350617509','MURAT KİRİKKAYA adlı müşterinizin 613529206 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('19a684bf-c4c9-4f95-b4ec-7ce492bd6920','905331602195','FİRDEVS ORHAN adlı müşterinizin 221407228 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('19a945f8-e564-461d-9e7a-bc9bb17210df','905079358213','FAHREDDİN ÖZENC adlı müşterinizin 745283309 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL),
('19aa9cfa-b7ea-4b77-8b8c-0d78bf978172','33668485580','DRİVER\n					ADNAN\n+905354622027','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('19aab768-37ae-4b71-b8aa-ec43d0e92a3e','491779822285','644626371 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9180 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644626371\n\nYour shipment with the number 644626371 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9180. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644626371\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('19ac2ed2-407a-49f7-bf7e-9395282f160b','32483027058','Sayın GÜLSEN ERDİNÇ SSH, 75052392 nolu gönderiniz 8059 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/75052392\n\nDear GÜLSEN ERDİNÇ SSH, your shipment with 75052392 was delivered to you with the delivery code 8059. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/75052392\n\n\nBICARGO','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('19ade8c0-e4cf-434c-9990-4bd63d8e9aef','905336367828','Sayın yetkili; RWWHİKA KATUSABE  adlı müşterinize 982484679 nolu gönderinizin koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 07.08.2025 11:46:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('19b0cef7-68ff-4585-93bf-938829972845','905325998198','BAL CİHAN adlı müşterinizin 614908568 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f169361d-a98a-44cd-9be5-0d014e87b896',NULL),
('19b2ecca-54ba-4a30-aded-83b151d8ac40','905421855834','GÜLCAN İNCE (SSH) adlı müşterinizin 338840422 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('19b40616-9dae-4dea-bd8c-ea67e962b1a5','905075277637','SEZER HATUN adlı müşterinizin 745249081 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('19b43df4-df11-47f5-84a6-3c4bff9d72b2','905461661672','Sayın yetkili; AHMET OKUTAN adlı müşterinize 64415501 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 11.06.2025 15:11:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('19b6e19c-10db-4833-b49e-2b345b3726fa','4917623546219','Sayın AYHAN KILIÇ, 614134006 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614134006\n\nDear AYHAN KILIÇ, your shipment with 614134006 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614134006\n\nBICARGO','1','93cfee64-4853-4395-af0b-9caa4355f18f',NULL),
('19b7271c-c92c-4f3f-9329-393f7fa474bc','111111111111111','Sayın MAİL BOXES, 223734808 nolu gönderiniz 8235 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223734808\n\nDear MAİL BOXES, your shipment with 223734808 was delivered to you with the delivery code 8235. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223734808\n\n\nBICARGO','2','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL),
('19b899cf-20d0-460e-bedc-f5e05f39f171','905540182920','Sayın HASAN BEY, 448774640 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/448774640\n\nDear HASAN BEY, your shipment with 448774640 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/448774640\n\nBICARGO','1','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL),
('19b8d61a-c6e5-4d7a-8fb4-58028456c13f','31634618099','Sayın BARLEB KASS HANNA, 644106987 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644106987\n\nDear BARLEB KASS HANNA, your shipment with 644106987 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644106987\n\nBICARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('19bd456f-727a-43e5-95f9-c9b98616b79f','905313340045','ELVAN DURSUN adlı müşterinizin 437158505 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('19c0058e-94b6-435e-a33a-ae923478a7cc','905079358213','Sayın yetkili; SAFİYE ÇITAK adlı müşterinize 745959029 nolu gönderinizin ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 13.02.2025 23:16:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('19c032a1-9c88-4949-8882-a00b681c17bf','491601209210','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('19c095f3-a1a7-4fdd-a573-601e796e3b83','4915735318430','Sayın AYŞE ÇÖPLÜ, 127530070 nolu gönderiniz 2731 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127530070\n\nDear AYŞE ÇÖPLÜ, your shipment with 127530070 was delivered to you with the delivery code 2731. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127530070\n\n\nBICARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('19c0efba-fda9-414e-8f80-a33cd31122f1','33763204411','Sayın HAMİDİ SONİA (SSH), 221748184 nolu gönderiniz 10216 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221748184\n\nDear HAMİDİ SONİA (SSH), your shipment with 221748184 was delivered to you with the delivery code 10216. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221748184\n\n\nBICARGO','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('19c8ba4f-fa9b-49e9-8750-69eaebcd21fc','905517075149','MÜCAHİT SÖYLEMEZ adlı müşterinizin 47842524 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('19c9f309-faa7-430c-8803-542f656d4fea','11111111111111','Sayın MESUT AKYÖN, 437481013 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437481013\n\nDear MESUT AKYÖN, your shipment with 437481013 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437481013\n\nBICARGO','2','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('19cb8643-4d1a-4fd9-9df6-d3d6df3d0e31','905079047428','FARİSHTE AHMEDİ adlı müşterinizin 44940434 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6df88176-a01f-4232-a091-4e10895a39df',NULL),
('19ccbb5a-6c05-400f-9812-49c014d13255','905363385813','Sayın yetkili; AYŞE ŞEKER adlı müşterinize 976114868 nolu gönderinizin KÖŞE KOLTUK TAKIMI ürünü 6 parça halinde Ali Turan Koltuk adresinizden 20.05.2025 11:11:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('19cd5bf1-c337-4a2a-a023-7cff28bb8e7c','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS KİTAPLIK ürünü 1 parça halinde SEVEN KİDS  adresinizden 03.09.2025 13:44:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('19cda054-6b8e-4b0e-9a68-320462f207be','33651995967','Sayın DERYA KÖSE, 449208438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449208438\n\nDear DERYA KÖSE, your shipment with 449208438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449208438\n\nBICARGO','1','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL),
('19cf28a8-d43b-48f7-9663-5157f8fac4af','3674747382929393','Sayın DONİKA, 98222656 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98222656\n\nDear DONİKA, your shipment with 98222656 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98222656\n\nBICARGO','2','df564c56-1964-45d7-946b-9c1121729fa8',NULL),
('19d118b4-5775-48dc-8acf-5ceb7136afbf','4915778776524','598578683 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7326 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598578683\n\nYour shipment with the number 598578683 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7326. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598578683\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('19d38841-dfee-4949-b6fd-f1497b842571','905313340045','CENNET YAVUZ adlı müşterinizin 437250812 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('19d7ee52-9e1e-41e9-8940-78b0e22219bf','905350617509','ALEYNA KARAKUS adlı müşterinizin 613787861 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('19d8ce86-d1bc-478b-81ab-5485806a0d93','905350617509','Sayın yetkili;  RİM MOUSSA  adlı müşterinize 613868869 nolu gönderinizin Sandalye  ürünü 3 parça halinde Fatura adresinizden 15.04.2025 10:55:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d717ffb-678b-4e82-9f61-5357693131d8',NULL),
('19e0e534-98be-41bb-8527-1516405b6417','32486710951','Sayın ÜLKER SEPETÇİ, 4786538 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/4786538\n\nDear ÜLKER SEPETÇİ, your shipment with 4786538 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/4786538\n\nBICARGO','1','82c2a380-c89a-4beb-ba59-ed765263d701',NULL),
('19e3eb8e-6acf-408a-8c80-2a42027c88d7','491716168674','808427332 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808427332\n\nYour shipment with the number 808427332 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808427332\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('19eaf5b3-2017-4c5f-a9e6-90ad848cf6c1','4917684399909','Sayın ABDULLAH DEMİR, 745744183 nolu gönderiniz 3998 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745744183\n\nDear ABDULLAH DEMİR, your shipment with 745744183 was delivered to you with the delivery code 3998. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745744183\n\n\nBICARGO','1','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL),
('19eafdb5-ba68-448f-8180-285448762527','905313340045','Sayın yetkili; FAİSAL İBRAHİM adlı müşterinize 437319119 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 10.09.2025 16:54:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('19eba366-2016-4e2d-9fb3-6cc56cd2340f','33624131521','Sayın ADNAN MUSTAFAJ, 449343471 nolu gönderiniz 5800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449343471\n\nDear ADNAN MUSTAFAJ, your shipment with 449343471 was delivered to you with the delivery code 5800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449343471\n\n\nBICARGO','1','4b0f77c0-836a-4892-a19c-c0032f863e4b',NULL),
('19ec2ed5-ab06-4fdb-96e0-672f9173f1b0','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('19ee43a0-6b57-4e6a-b8ae-58f0d3eaff51','4915252595049','Sayın SEFA TÜZER, 428879207 nolu gönderiniz 5789 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428879207\n\nDear SEFA TÜZER, your shipment with 428879207 was delivered to you with the delivery code 5789. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428879207\n\n\nBICARGO','1','c928edbb-a731-4b55-bdfb-3f68dedd72df',NULL),
('19f24607-017f-4871-a547-0342ea4e99a6','33768202556','Sayın LEPETİT CHRİSTELLE, 221987558 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221987558\n\nDear LEPETİT CHRİSTELLE, your shipment with 221987558 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221987558\n\nBICARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('19f304a5-d4a1-42a4-a88e-c18fbe5baa22','33640248237','Sayın ÖZGÜR BAY, 47833977 nolu gönderiniz 6805 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47833977\n\nDear ÖZGÜR BAY, your shipment with 47833977 was delivered to you with the delivery code 6805. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47833977\n\n\nBICARGO','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('19fad01a-b2b6-44f9-9de8-31feb0e0950b','905335511664','Sayın yetkili; BERKAN AKTÜRK adlı müşterinize 371823380 nolu gönderinizin köşe takımı, berjer, puf ürünü 6 parça halinde Elitis Home adresinizden 29.05.2025 16:44:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('19fb0b7d-2a77-4891-bb9d-6c438e6a0f62','3352305296','478668622 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5389 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478668622\n\nYour shipment with the number 478668622 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5389. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478668622\n\nBICARGO','2','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('19fb9ab7-2226-47e7-a63b-3ef34223d87a','905079358213','EMRE AFYON  adlı müşterinizin 745547550 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('1a03ca4b-b151-4daa-b904-801b72d122fd','491632506225','ŞÖFÖR İKETİŞİM\n					+905301824880','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('1a059fc7-91aa-4836-b303-a38a283ae3d5','905331602195','MUHAMMED ALİ YILMAZ  adlı müşterinizin 221294149 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('1a05e1d1-97f5-4918-a2b7-4d31069f72d0','4917664793999','Sayın MERVE İÇEN, 351330330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351330330\n\nDear MERVE İÇEN, your shipment with 351330330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351330330\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('1a0aaea7-d788-467d-b998-1cca0eadef8c','491639801426','107870370 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2925 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/107870370\n\nYour shipment with the number 107870370 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2925. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/107870370\n\nBICARGO','1','4ac57e98-4d31-4029-af5c-63c778250adc',NULL),
('1a14c893-69dd-419e-9b4a-b9ae2c5f35c1','905349208933','AYŞE ÇÖPLÜ adlı müşterinizin 127530070 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('1a154150-07e2-4fd1-8d6c-efec320b5bf0','4915221698583','449968881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8219 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449968881\n\nYour shipment with the number 449968881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8219. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449968881\n\nBICARGO','1','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL),
('1a1d0e1d-977b-4a0f-91f8-3dead7f6edcf','905331602195','Sayın yetkili; ASHLEY BLANCO RODRİGEZ adlı müşterinize 221417545 nolu gönderinizin Beyaz milas masa 90x190 ürünü 3 parça halinde Fatura adresinizden 10.03.2025 15:09:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('1a20a26f-1f42-4f23-bafe-0f818aeefebe','33628834042','Sayın ZEHRA OCALAN, 976192214 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976192214\n\nDear ZEHRA OCALAN, your shipment with 976192214 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976192214\n\nBICARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('1a34a3c2-af38-4562-ade8-7e9f9b26662d','491747353519','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('1a351cfb-2348-4c37-8f63-04ab403c0412','905069116877','ZEHRA adlı müşterinizin 817918521 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('1a35f866-ba3b-4375-a87a-9b02844bbdbe','905079358213','HAYATİ ELBİR adlı müşterinizin 745536465 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('1a394d2b-bf61-49cd-bf36-549918ec8a20','3365262758','982817887 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4575 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982817887\n\nYour shipment with the number 982817887 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4575. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982817887\n\nBICARGO','2','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('1a3be536-7441-4a02-b5b1-7b49f19d81d5','905336367828','Ajroski ajsun adlı müşterinizin 98285799 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('1a405b0b-77e7-4021-8360-742fd2283d0e','905336367828','SADAT SAIDI adlı müşterinizin 982365685 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('1a41ff13-ecc1-480c-a170-ab14e689777f','905325000478','BERİVAN KÖKTEN adlı müşterinizin 412550726 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL),
('1a46dd4c-acc8-43a7-b04e-45e208e52aad','905412810757','HACI KURBAN BAŞTÜRK  adlı müşterinizin 162733891 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ee55d774-0af3-44a4-a04d-c52632a73128',NULL),
('1a4886e6-475e-4ff9-a95e-d3877cd315b5','905394878216','ÖZEN GÖKYEŞİL adlı müşterinizin 517619393 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('1a50633a-d868-4560-b7d9-a47096c4f994','905451571652','Sayın yetkili; MEİSSA AL KHALED adlı müşterinize 531480968 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde Efe koltuk adresinizden 03.09.2025 14:59:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('1a561e74-ab9b-4fe5-ab79-df7ecf130e5f','4915566183812','Sayın RAMAZAN HAVAÇEKEN(K), 644879098 nolu gönderiniz 7111 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644879098\n\nDear RAMAZAN HAVAÇEKEN(K), your shipment with 644879098 was delivered to you with the delivery code 7111. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644879098\n\n\nBICARGO','2','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('1a5eca91-7c0f-4e6f-a4b3-67ffb3e2a1d0','905451571652','Sayın yetkili; ALAA AL- AHMAD adlı müşterinize 5312778 nolu gönderinizin köşe koltuk ürünü 4 parça halinde PABLO HOME adresinizden 05.09.2025 14:33:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('1a63d02a-0598-40ce-9b10-5486b070e6e5','05050220385','Sayın MELEK ÇELİK, 478675012 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478675012\n\nDear MELEK ÇELİK, your shipment with 478675012 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478675012\n\nBICARGO','2','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('1a65762e-2d88-4de6-9cc5-c57197d12e49','31644144080','Sayın SELDA ÇELİK, 478777541 nolu gönderiniz 3545 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478777541\n\nDear SELDA ÇELİK, your shipment with 478777541 was delivered to you with the delivery code 3545. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478777541\n\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('1a682714-0c00-4ab1-8f8a-c5674277385e','905054335859','Sayın yetkili; SAİT CARCUR adlı müşterinize 501423957 nolu gönderinizin SSH ürünü 4 parça halinde Fatura adresinizden 16.06.2025 10:57:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('1a68e2ad-605e-4351-8595-e85e8dee556b','905363385813','Sayın yetkili; SONER UZUN adlı müşterinize 976680764 nolu gönderinizin YATAK BAZA SETİ ürünü 6 parça halinde Fatura adresinizden 25.06.2025 17:35:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('1a6e815c-bbbb-4726-99c2-81221b009251','33606409257','Sayın JALAL ASLAM, 982966360 nolu gönderiniz 6428 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982966360\n\nDear JALAL ASLAM, your shipment with 982966360 was delivered to you with the delivery code 6428. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982966360\n\n\nBICARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('1a736475-2a69-49dd-9d0c-f0514d92e49b','32470754918','Sayın MUHAMMED ERDOĞAN, 221396383 nolu gönderiniz 8907 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221396383\n\nDear MUHAMMED ERDOĞAN, your shipment with 221396383 was delivered to you with the delivery code 8907. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221396383\n\n\nBICARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('1a736e15-7872-4a2a-89f0-275071d0d743','31687916596','644547865 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7688 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644547865\n\nYour shipment with the number 644547865 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7688. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644547865\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('1a73d7f7-4ca7-4b7f-bc02-67aaf419fc7a','905331602195','Sayın yetkili; GÜLAY KIZIL adlı müşterinize 221598709 nolu gönderinizin 100x210 traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:38:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('1a7c5e19-80c3-4984-b5c1-fc29f184cb1e','41798943300','61355212 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3892 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61355212\n\nYour shipment with the number 61355212 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3892. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61355212\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('1a7c936a-cb98-487c-81e2-b594b81b167d','905079358213','Sayın yetkili; YAKUP YAVUZ adlı müşterinize 74520701 nolu gönderinizin MUTFAK MASA TK ürünü 4 parça halinde Fatura adresinizden 23.10.2025 12:58:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL),
('1a7cea9f-4cfb-4d02-80ab-d052aea3b0a1','31625064385','Sayın MURAT, 412586892 nolu gönderiniz 2756 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412586892\n\nDear MURAT, your shipment with 412586892 was delivered to you with the delivery code 2756. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412586892\n\n\nBICARGO','1','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL),
('1a7d9962-e047-4123-b6f4-90f245a0db28','31648497230','Sayın HATİCE GÜNGÖR, 465634666 nolu gönderiniz 10933 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465634666\n\nDear HATİCE GÜNGÖR, your shipment with 465634666 was delivered to you with the delivery code 10933. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465634666\n\n\nBICARGO','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('1a7ddd86-6be2-4044-96b1-25bd62b2cb61','491731699402','73427297 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5668 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73427297\n\nYour shipment with the number 73427297 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5668. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73427297\n\nBICARGO','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('1a81b852-c784-44e1-bfd1-409c4c5397c6','905350617509','Sayın yetkili; KÜBRA YAMAN adlı müşterinize 613251938 nolu gönderinizin Masa ürünü 2 parça halinde Fatura adresinizden 22.05.2025 16:20:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('1a82cecf-27b9-4524-88bb-41df7280c1f8','4917663069031','Sayın NİHAL KURU, 478380707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478380707\n\nDear NİHAL KURU, your shipment with 478380707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478380707\n\nBICARGO','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('1a8309e3-e1f6-4a7e-90c6-56ad9ade67b0','1111111111','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','2','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('1a844539-eafc-4570-9eac-b56fe1476e93','4915774445552','910796066 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2434 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910796066\n\nYour shipment with the number 910796066 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2434. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910796066\n\nBICARGO','1','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL),
('1a8ee2d9-85c5-4e9b-a3c2-0aaff7706bf7','905313340045','Sayın yetkili; DERYA ERDOĞMUŞ SSH adlı müşterinize 437527391 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde masami adresinizden 12.09.2025 11:05:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('1a8ef04e-fc27-4245-b630-e4929c1cc27c','4917631605482','Sayın ASMA SOULTANA , 221854185 nolu gönderiniz 10867 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221854185\n\nDear ASMA SOULTANA , your shipment with 221854185 was delivered to you with the delivery code 10867. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221854185\n\n\nBICARGO','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('1a90a5a9-32b5-4b0a-862a-30710ef5e8b4','905304259202','MUSTAFA UZUNBOY adlı müşterinizin 478618410 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('1a96ec80-564f-4fb0-b9a6-677d16f738ea','32492822332','Sayın ADRİANNA WİEMANN, 505724535 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505724535\n\nDear ADRİANNA WİEMANN, your shipment with 505724535 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505724535\n\nBICARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('1a9eb7f1-425a-47af-98df-afa64e1ed427','4917632871716','371836215 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371836215\n\nYour shipment with the number 371836215 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371836215\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('1aa28163-1a8b-4c41-b48f-fac6cb056557','00493056821469','Sayın EUROMAT, 735293129 nolu gönderiniz 3736 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735293129\n\nDear EUROMAT, your shipment with 735293129 was delivered to you with the delivery code 3736. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735293129\n\n\nBICARGO','2','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL),
('1aa3f86a-c08b-47a5-99fc-5551f276576b','33782039319','Sayın CEM KONDU, 221686815 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221686815\n\nDear CEM KONDU, your shipment with 221686815 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221686815\n\nBICARGO','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('1aa6db4c-2a71-4c64-a6fb-d5a00b9f659d','4917684332584','Sayın NEŞE ERĞAT, 371363007 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371363007\n\nDear NEŞE ERĞAT, your shipment with 371363007 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371363007\n\nBICARGO','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('1aa9d0ef-1f73-4cc4-bfb0-aa843d3b87db','905079358213','ARZU AKSİ adlı müşterinizin 745817440 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('1aaf8a29-4aab-4106-979c-9ba67d33fe56','905078062550','Sayın yetkili; İLYAS GÖK adlı müşterinize 598982184 nolu gönderinizin 8 SANDALYE ürünü 4 parça halinde LİN SANDALYE adresinizden 20.08.2025 15:30:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('1ab43b54-4beb-4d5a-92c6-bb11966e4746','905078062550','Sayın yetkili; NUSRET VAROL VURAL adlı müşterinize 598427868 nolu gönderinizin masa ürünü 3 parça halinde SM TASARIM adresinizden 19.08.2025 15:08:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('1aba1d99-2515-496c-a52c-a4bdad8bdcdf','905456068312','EYÜP KIZILASLAN adlı müşterinizin 655919587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88d46ad5-3201-49c1-bafb-3c271a911158',NULL),
('1ac3e4a7-2c19-45e7-9bbc-213a803761fc','905461661672','Sayın yetkili; CANAN ŞENEL adlı müşterinize 644319069 nolu gönderinizin SERAMİK ORTA SEHPA ürünü 3 parça halinde MASA VİA adresinizden 14.05.2025 12:56:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('1ac52f00-3fd1-4854-ab65-15ec811c2b68','32489954615','Sayın ÜMİT MORCA, 644377995 nolu gönderiniz 5750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644377995\n\nDear ÜMİT MORCA, your shipment with 644377995 was delivered to you with the delivery code 5750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644377995\n\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('1ac69698-3230-4c4f-bc26-45ad16b9353d','905461661672','MAZHAR BAYMAN adlı müşterinizin 644903033 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('1ac93d17-c7bf-47a8-b051-e6e66105b136','905461661672','MURAT YILDIZ  adlı müşterinizin 644481653 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('1acaf555-bf62-4714-9122-a2a7f486b2e9','905461661672','Sayın yetkili; ÖZLEM KIZILARSLAN adlı müşterinize 644650618 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 15.04.2025 11:40:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('1acccff8-42e6-453f-b719-a10a2e3748be','436608636840','Sayın MUSTAFA ŞİMŞEK, 338730647 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338730647\n\nDear MUSTAFA ŞİMŞEK, your shipment with 338730647 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338730647\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('1acd93e2-3b00-4075-83d7-197e87cf4079','4368120943457','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('1acdef87-7c64-4c4a-bd70-cf70d1e14bfa','31681124473','Sayın ÖZAY ÖZDEMİR YILDIZ, 221746261 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221746261\n\nDear ÖZAY ÖZDEMİR YILDIZ, your shipment with 221746261 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221746261\n\nBICARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('1ad03f5f-1016-41f2-a670-48165fed4dc3','905517075149','AYSEL-İSMAİL ÇILGIN adlı müşterinizin 478928003 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('1ad8fef0-94c8-4517-9471-08323a64a38b','4915204351936','808830873 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2112 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808830873\n\nYour shipment with the number 808830873 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2112. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808830873\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('1ad97dd7-3968-40fe-bb4d-5dad1c984cf0','4915560755375','Sayın EMRE YILMAZ SSH , 745771664 nolu gönderiniz 4975 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745771664\n\nDear EMRE YILMAZ SSH , your shipment with 745771664 was delivered to you with the delivery code 4975. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745771664\n\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('1ae2bca0-8246-4b69-846c-ef2b69180dd6','9054439559150','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ FAKIR SPOT CLEANER PR 7020 BUHARLI TEMİZLEYİCİ ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:33:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('1ae6a367-c62c-4194-b8e3-b247db3e25a3','905079358213','YUSUF ALAN adlı müşterinizin 745130019 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('1ae8dda2-944a-4e65-a511-ab77d1f4e27a','905336367828','SÜMEYYE KALKAN  adlı müşterinizin 98258846 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('1af3f66f-c743-450c-9ed7-15915157de67','905454259202','Sayın yetkili; EMEL YILDIZ adlı müşterinize 478644533 nolu gönderinizin ssh ürünü 3 parça halinde çelikbey inegöl depo adresinizden 27.02.2025 13:35:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('1af4d93b-9e04-49d1-bec4-424acd3b51ef','4917621666906','Sayın ELİSABETH BRUCH, 371807983 nolu gönderiniz 1142 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371807983\n\nDear ELİSABETH BRUCH, your shipment with 371807983 was delivered to you with the delivery code 1142. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371807983\n\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('1afb65b7-a3d2-42bc-8c5a-ab6c0e24e7e9','491722839598','Sayın OSMAN SÖYLEMEZ, 478325717 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478325717\n\nDear OSMAN SÖYLEMEZ, your shipment with 478325717 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478325717\n\nBICARGO','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('1afebcce-db35-45c8-b97e-587340278b3c','905304259202','Sayın yetkili; SÜLEYMAN KAYHAN adlı müşterinize 478763903 nolu gönderinizin YATAK ODASI- KONSOL ürünü 22 parça halinde SENS adresinizden 30.01.2025 13:55:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('1aff21c4-0c8d-4a31-89f5-bec22268b1c6','905454259202','ALİCAN KABAK  adlı müşterinizin 478224735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('1b02a76e-16c3-4e6d-bb25-f78870c07f7c','905443955915','ABDİL ACAR adlı müşterinizin 614788293 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL),
('1b046ada-1a20-4cd8-8a2e-3eb2a20ed70a','905331602195','Sayın yetkili; SELCAN KURU adlı müşterinize 221208954 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 27.02.2025 16:39:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('1b053c16-0f8b-4d65-bd9c-0103faf02b6b','491784558163','Sayın REZA MUHAMMEDİ, 982292794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982292794\n\nDear REZA MUHAMMEDİ, your shipment with 982292794 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982292794\n\nBICARGO','1','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL),
('1b05940c-a177-473d-ad16-c314dc5d1e69','905331602195','BOUAZZA SANNA  adlı müşterinizin 221264394 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('1b061001-23e2-4973-8869-fa740b945dca','41764518719','Sayın SEMİH TASKELE, 221693523 nolu gönderiniz 9187 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221693523\n\nDear SEMİH TASKELE, your shipment with 221693523 was delivered to you with the delivery code 9187. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221693523\n\n\nBICARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('1b074a9e-8d3c-4387-994d-a23cab0f7250','905447112515','AAAAAAAAAAA adlı müşterinizin 382253716 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL),
('1b090a79-96f6-4d23-858b-161cd32dd6bd','905335708965','HOZAN adlı müşterinizin 73529249 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL),
('1b143d49-804c-4251-aec0-6940501f6662','905336367828','YAKUP EMİN GÜNEŞ adlı müşterinizin 982744560 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('1b1529b1-b68c-4cdc-a23c-11126cd1bb64','4368181727723','412990147 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1109 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412990147\n\nYour shipment with the number 412990147 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1109. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412990147\n\nBICARGO','1','def82a96-8956-42bc-885f-988dfa22f789',NULL),
('1b15552d-7023-4d4f-84cc-d4238467ce30','905331602195','İHSAN KUMUR adlı müşterinizin 221825192 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('1b18b46f-b8f2-4c6c-bd30-2bebd9fdad00','905304259202','RUKİYE KIRIMLI adlı müşterinizin 478861689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('1b19fc3a-c7c6-4b38-892d-e304b4f6bde6','31620244050','Sayın REİNAS HAİDARİ, 644884110 nolu gönderiniz 1796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644884110\n\nDear REİNAS HAİDARİ, your shipment with 644884110 was delivered to you with the delivery code 1796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644884110\n\n\nBICARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('1b1e2655-d3c9-4722-bdcc-0d764216c9df','436766461961','DRİVER\n					ADNAN\n+905354622027','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('1b1e5a64-f982-4b6f-ab55-00d76f5c45c9','905075277637','Sayın yetkili; GÜLÜZAR KECKİN adlı müşterinize 745276257 nolu gönderinizin KING PLATİN BAZA BAŞLIK 160LIK  ürünü 3 parça halinde Fatura adresinizden 23.06.2025 13:20:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('1b1ee836-9858-40e9-b255-fcb56958041e','905454259202','ESMA YILDIRIM adlı müşterinizin 478227571 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61fc8ab4-3763-4ab8-98a5-4b8228ba92d0',NULL),
('1b229fe9-f948-4b54-991a-2bcf9628550c','33768690174','Sayın SAİDA ELAZZOUZİ , 221282484 nolu gönderiniz 1207 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221282484\n\nDear SAİDA ELAZZOUZİ , your shipment with 221282484 was delivered to you with the delivery code 1207. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221282484\n\n\nBICARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('1b2638ab-9ab4-4094-a882-e72819749b9f','491774619575','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('1b26a36a-95d6-49f8-ac99-347ecae89b62','905461661672','Sayın yetkili; KIYMET DALMAN(K) adlı müşterinize 644742878 nolu gönderinizin köşe koltuk ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 06.10.2025 16:48:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('1b26a55e-9059-4954-b61b-395d50f4a57c','491784897423','Sayın BESTE NUR ÖZKAYA, 896769535 nolu gönderiniz 6357 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896769535\n\nDear BESTE NUR ÖZKAYA, your shipment with 896769535 was delivered to you with the delivery code 6357. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896769535\n\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('1b26f30b-3534-48b8-adf1-85df203266c1','905442774505','MUHAMMED EMİN TILMAZ adlı müşterinizin 65728268 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL),
('1b2adec9-aef3-4fdf-87ad-8610a21a5cf2','905461661672','BLANDİ ZOTA adlı müşterinizin 644965833 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('1b2b43b2-56c9-47f4-89ad-3aef6c31adc7','905350617509','KÜBRA YAMAN adlı müşterinizin 613251938 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('1b2ced36-e051-459f-a7b4-762f7cd5ff54','491741630656','Sayın BEKİR TEKELİ, 437700144 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437700144\n\nDear BEKİR TEKELİ, your shipment with 437700144 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437700144\n\nBICARGO','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('1b31f261-342c-4335-ab94-3f70a5bfb624','905335511664','Sayın yetkili; BERKAN AKTÜRK adlı müşterinize 371823380 nolu gönderinizin KARYOLA DÖŞEK ürünü 7 parça halinde albessa karyola adresinizden 28.04.2025 13:50:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('1b337d34-b4c4-4b53-ab5c-db4f248fc9c2','905331602195','Sayın yetkili; LEPETİT CHRİSTELLE adlı müşterinize 221987558 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 27.01.2025 11:39:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('1b3cff91-5f04-454b-96ff-303b5bf91bd0','905073106101','TUNCAY KOÇOĞLU adlı müşterinizin 465844619 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('1b3d1fd5-6dfd-40e9-819a-8760614b65d8','905461661672','HİLAL DEMİR adlı müşterinizin 644145142 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('1b4846cd-f9f3-4f39-bd24-67fcc728a1cb','491773713548','Sayın TUNCAY KOÇOĞLU, 465782662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465782662\n\nDear TUNCAY KOÇOĞLU, your shipment with 465782662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465782662\n\nBICARGO','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('1b492b8e-912a-40a3-a1c5-d1d5a681b913','491781975056','Sayın MUHAMMED YUŞA YILDIRIM, 478261120 nolu gönderiniz 6759 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478261120\n\nDear MUHAMMED YUŞA YILDIRIM, your shipment with 478261120 was delivered to you with the delivery code 6759. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478261120\n\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('1b4facc3-926e-4316-8fc9-15e099b90e25','491636703149','478798827 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4683 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478798827\n\nYour shipment with the number 478798827 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4683. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478798827\n\nBICARGO','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('1b51e4f5-b18a-495e-a7fb-0df77b0c5b7a','49162150360','Sayın SÜMEYYE ARSLAN, 478719602 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478719602\n\nDear SÜMEYYE ARSLAN, your shipment with 478719602 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478719602\n\nBICARGO','2','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('1b55cf82-dcd3-4851-800e-4d974a553249','905363385813','HASSAN BEY adlı müşterinizin 976893568 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL),
('1b56bf62-2bad-4517-8342-2ce086072959','905517075149','Sayın yetkili; FİDAN ÇALI adlı müşterinize 478545195 nolu gönderinizin 2 ADET KANEPE ürünü 3 parça halinde brawwa koltuk adresinizden 09.10.2025 13:42:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7371a5c-1964-498e-9777-29d5a4fb4e31',NULL),
('1b5cf180-ed7e-4515-8d4a-427a4077fac0','905350617509','Sayın yetkili; RANİA PİSİT adlı müşterinize 613464926 nolu gönderinizin Döşek ürünü 1 parça halinde Fatura adresinizden 13.05.2025 12:03:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('1b640f65-bcd3-4c0e-aa17-c987b149f9a3','905313340045','Sayın yetkili; NİSA PARLAR adlı müşterinize 437895842 nolu gönderinizin kampanya köşe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 29.08.2025 11:04:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('1b6492ba-8253-46a7-8d60-99bfdf112de1','352691333084','Sayın SERVET ERDOĞAN, 982426968 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982426968\n\nDear SERVET ERDOĞAN, your shipment with 982426968 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982426968\n\nBICARGO','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('1b6bf6a1-f18f-4679-aa3a-3e1d722d1a7d','4915120786621','Sayın EMEL TEKİN, 478180584 nolu gönderiniz 3606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478180584\n\nDear EMEL TEKİN, your shipment with 478180584 was delivered to you with the delivery code 3606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478180584\n\n\nBICARGO','1','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL),
('1b749b24-4953-487a-87db-4a5c5b0ef683','905461661672','HİLAL DEMİR adlı müşterinizin 644145142 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('1b760de0-557e-4f09-956d-feff28c7ee09','4917632298382','Sayın ERCAN VARSAK, 745318139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745318139\n\nDear ERCAN VARSAK, your shipment with 745318139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745318139\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('1b767ff5-d33d-4f9d-b206-ff8dfe3ce2ab','905336367828','HASAN SARMAN adlı müşterinizin 982364429 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','baae34a4-033d-4893-b696-b36e57c318f7',NULL),
('1b79324f-ba58-4ec8-98be-d67614007b57','4917641453096','Sayın TOLGA KAPLAN, 598463425 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598463425\n\nDear TOLGA KAPLAN, your shipment with 598463425 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598463425\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('1b7b80ca-1ad2-456e-8b14-10a2d020f215','4915205903853','6442594 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10703 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/6442594\n\nYour shipment with the number 6442594 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10703. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/6442594\n\nBICARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('1b7b9430-609e-4557-899e-3626762f6886','4915784866219','Sayın ENVER GÜLMEZ, 501981507 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501981507\n\nDear ENVER GÜLMEZ, your shipment with 501981507 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501981507\n\nBICARGO','1','04b906a6-7837-4515-810d-2b36aefb9873',NULL),
('1b7e8f6c-2af7-4303-b79b-8102992ece8b','491627420193','765828045 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9225 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765828045\n\nYour shipment with the number 765828045 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9225. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765828045\n\nBICARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('1b86a012-d2f4-4165-b048-a577f9179c48','905539740010','Sayın yetkili; KAM.   TUBA YİLDİRİM adlı müşterinize 011804405 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde BULKA SANDALYE adresinizden 09.10.2025 11:25:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('1b86a67b-572b-44ed-ae31-4afdf0167b8e','33769173074','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('1b86e063-7fbb-45f2-97f1-4e228d8451cd','905454259202','Sayın yetkili; YASEF İCEL adlı müşterinize 47865598 nolu gönderinizin köşe-yemek odası-sehpalar ürünü 18 parça halinde çelikbey inegöl depo adresinizden 13.12.2024 16:14:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('1b8d863c-8a35-430c-9563-b8e0a364a465','4917684673033','Sayın CEMİL BEY, 412119334 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412119334\n\nDear CEMİL BEY, your shipment with 412119334 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412119334\n\nBICARGO','1','3167a684-9120-4a08-a96f-a652ac70c76f',NULL),
('1b9cbbf2-05e7-44d6-ae69-b82ee2dddafb','33698172262','531737045 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1890 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531737045\n\nYour shipment with the number 531737045 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1890. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531737045\n\nBICARGO','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('1b9fd751-ec4b-4f96-b482-5fc60dfc44ad','491626841610','Sayın YILMAZ ÇELİK, 455160997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455160997\n\nDear YILMAZ ÇELİK, your shipment with 455160997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455160997\n\nBICARGO','1','39bb85ad-efc0-4fc2-9377-e76f06d914ca',NULL),
('1ba0235e-242c-411f-842b-1b7acc65d0b4','41787001294','Sayın ASLIHAN KELES, 478112159 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478112159\n\nDear ASLIHAN KELES, your shipment with 478112159 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478112159\n\nBICARGO','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('1ba0350e-1261-4620-aa5e-d4ac5cf20567','33762006399','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL);
INSERT INTO `whatsapp_messages` VALUES
('1ba16dde-6d1f-4278-a56a-e5e536241529','4917670325071','Sayın ESRA BALTACI, 644711459 nolu gönderiniz 7040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644711459\n\nDear ESRA BALTACI, your shipment with 644711459 was delivered to you with the delivery code 7040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644711459\n\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('1ba2341c-7162-4dd5-840a-06b419710380','491709668487','896847151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4625 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896847151\n\nYour shipment with the number 896847151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4625. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896847151\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('1ba515bc-e393-44da-9563-df23d9227315','905350617509',' İLKER YAVAŞOĞLU adlı müşterinizin 613252288 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3b2b9553-2254-427e-9970-41bddf8e65b0',NULL),
('1ba77e93-fe95-411f-9e52-5eaa1353058d','905510396989','HİCRAN KAPLAN adlı müşterinizin 319206159 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('1ba79699-1f8a-499b-9acf-5a95f97c799f','01771886030','Sayın SEPAN MOHAMMED, 644107524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644107524\n\nDear SEPAN MOHAMMED, your shipment with 644107524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644107524\n\nBICARGO','2','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('1bae9630-d7bd-4eab-b3c5-5289f47fcd14','905313340045','Sayın yetkili; ZEYNEP ŞİMŞEK adlı müşterinize 437442386 nolu gönderinizin baza ürünü 6 parça halinde Albessa adresinizden 25.08.2025 12:05:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('1bb0f27f-8f75-4a00-bf9c-db18870aebba','905331602195','Sayın yetkili; İMANE LAARİ adlı müşterinize 22130093 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 10.01.2025 10:32:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('1bb11cfe-2ece-410e-b15f-f2612b0ec3ca','905454259202','YAREN ÇAKALLI adlı müşterinizin 47855592 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('1bb30783-757e-4c0d-907d-349605fab855','32484855240','Sayın ŞÖFÖR MEHMET, 412395222 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412395222\n\nDear ŞÖFÖR MEHMET, your shipment with 412395222 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412395222\n\nBICARGO','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('1bb5f33b-d4c6-44fc-a349-15c49ea83e31','33699489518','Sayın SANAA ARGANE, 221573899 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221573899\n\nDear SANAA ARGANE, your shipment with 221573899 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221573899\n\nBICARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('1bb9da09-9de1-49c8-b841-4ae9b885fe24','905394878216','DİDEM BAKES  adlı müşterinizin 517279482 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('1bbaf53f-72c6-4e59-83ab-c39577172f6d','4915782470438','Sayın CÜNEYT BARUT, 745699153 nolu gönderiniz 8238 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745699153\n\nDear CÜNEYT BARUT, your shipment with 745699153 was delivered to you with the delivery code 8238. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745699153\n\n\nBICARGO','1','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL),
('1bbdb1f7-8ca3-428f-a799-253f2de79277','31686439941','Sayın MERYEM BERK , 221583384 nolu gönderiniz 9893 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221583384\n\nDear MERYEM BERK , your shipment with 221583384 was delivered to you with the delivery code 9893. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221583384\n\n\nBICARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('1bbe51f8-dd98-40cd-815f-4650b130f789','436702040780','675139037 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8525 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675139037\n\nYour shipment with the number 675139037 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8525. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675139037\n\nBICARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('1bbec60c-0fb5-45ff-8629-64283015cc8e','905079358213','MAHMUT ÖZKAN adlı müşterinizin 745996696 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('1bbf5934-daa6-4ca5-ba46-a5f15ca1ad47','905079358213','MUSTAFA YILMAZ adlı müşterinizin 745636493 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('1bc9a28d-6763-4bbc-9e55-3b86b5e9f087','905304259202','MUSTAFA UZUNBOY adlı müşterinizin 47867667 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL),
('1bd10e3f-834d-41a1-9448-18ac60f37acd','436608311197','Sayın BEKİR DOĞAN , 478168461 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478168461\n\nDear BEKİR DOĞAN , your shipment with 478168461 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478168461\n\nBICARGO','1','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('1bd84c97-d619-46b3-bffb-c5b17f5c764f','905313340045','Sayın yetkili; SATİ CENGE adlı müşterinize 437427529 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 08.08.2025 14:47:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('1bd898fc-7094-4163-8c92-1606a889dbd0','905075277637','MEHMET ŞAFAK adlı müşterinizin 745303298 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL),
('1bd98fde-b435-4b36-914e-1b7cc86306f6','31618837777','Sayın ROMARİO AVELOO (BAŞTÜRK) , 412757812 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412757812\n\nDear ROMARİO AVELOO (BAŞTÜRK) , your shipment with 412757812 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412757812\n\nBICARGO','1','808b4ef9-a87c-49a2-938f-85cb6e7e8004',NULL),
('1bda7337-c13e-4067-ac34-5d700380a802','4915780460011','Sayın MAHMUD BİRÜKOF, 598754271 nolu gönderiniz 5837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598754271\n\nDear MAHMUD BİRÜKOF, your shipment with 598754271 was delivered to you with the delivery code 5837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598754271\n\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('1bdb4965-7755-4660-98b9-6f2b24588973','905309753633','SERDAR BALCI adlı müşterinizin 616724751 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL),
('1be0b3c5-b760-4809-be44-a046bf7d8827','491724524938','Sayın MELİSA YILMAZ, 203519424 nolu gönderiniz 3092 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/203519424\n\nDear MELİSA YILMAZ, your shipment with 203519424 was delivered to you with the delivery code 3092. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/203519424\n\n\nBICARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('1be24053-ab5e-461d-a228-2d168df698ea','905075277637','YUSUF SARIKAN adlı müşterinizin 745767667 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('1bef23cd-f960-45bb-acce-8741c7877b7b','905078062550','NERİMAN SARI adlı müşterinizin 598226174 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('1bf2b9a3-edb0-43de-8c05-ffe84f619701','905078062550','SABİNA KAYA adlı müşterinizin 598548833 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('1bf529be-6539-4eda-a33d-da2b052c93bd','905325998198','HALİT ŞEN adlı müşterinizin 614474485 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL),
('1bfa13c4-5e90-4ba3-af6a-74ecd491949a','905517075149','Sayın yetkili; SAVAŞ ÖZTÜRK  adlı müşterinize 478514572 nolu gönderinizin KÖŞE TAKIMI 5 MODÜL ürünü 5 parça halinde RİXXE adresinizden 24.09.2025 17:50:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c624cc-2fc1-4839-b08d-b9e1310a053d',NULL),
('1bfc5a9f-f32c-4ffb-9291-732fc8207b5a','905075277637','ALİ ÖZDEN adlı müşterinizin 745978651 nolu gönderisi 39 parça halinde yola çıkmıştır.','1','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL),
('1bfd75e9-c2fa-4bdf-ac82-56132b21f43f','491736564566','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('1c00afd9-c40b-4dcd-9811-6bba70bc8279','905331602195','Sayın yetkili; YEŞİM TOPKIRAN adlı müşterinize 221960678 nolu gönderinizin 90x190 Nevada ceviz koyu kahverengi masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 14:36:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('1c02e730-bfe7-4fda-b5ba-8d4cb3e800b6','905079358213','Sayın yetkili; AYŞE ŞEKER adlı müşterinize 745671718 nolu gönderinizin BAZA SETİ ürünü 4 parça halinde Fatura adresinizden 07.12.2024 11:38:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('1c0ad6dd-c546-4fb7-b257-e65f89658923','905510396989','NECATİ AKIN adlı müşterinizin 31929392 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL),
('1c0f3474-fd25-47f2-9ccf-79c03085e6e6','491634192330','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('1c119d36-5e29-402e-abc2-0cd1ebee6399','4915206306725','Sayın AYHAN İÇEN, 745813483 nolu gönderiniz 5941 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745813483\n\nDear AYHAN İÇEN, your shipment with 745813483 was delivered to you with the delivery code 5941. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745813483\n\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('1c1305bb-0f73-4545-8475-1f538bc5044a','905331602195','Sayın yetkili; AHMED HAMEL  adlı müşterinize 221413192 nolu gönderinizin Traverten masa  ürünü 3 parça halinde Fatura adresinizden 13.01.2025 12:08:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('1c13a67b-4e28-448c-bab4-5efb8be0977a','905304259202','FEHMİYE KESERCİ adlı müşterinizin 478949141 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('1c1441a4-5fae-4956-84ed-253b24a9d843','33767648959','Sayın NECATİ AKIN, 31929392 nolu gönderiniz 3978 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31929392\n\nDear NECATİ AKIN, your shipment with 31929392 was delivered to you with the delivery code 3978. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31929392\n\n\nBICARGO','1','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL),
('1c185e38-dea1-4a8d-9277-c1d26087b876','4917624897582','Sayın MURAT YILDIZ , 644481653 nolu gönderiniz 1775 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644481653\n\nDear MURAT YILDIZ , your shipment with 644481653 was delivered to you with the delivery code 1775. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644481653\n\n\nBICARGO','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('1c1869ac-232d-46ed-bbc9-37dd85e3170e','337713211538','Sayın ÖZLEM RAMADAN, 478150977 nolu gönderiniz 3534 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478150977\n\nDear ÖZLEM RAMADAN, your shipment with 478150977 was delivered to you with the delivery code 3534. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478150977\n\n\nBICARGO','2','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('1c293faa-e566-4f47-8214-c7f6fcd4385e','33651014066','Sayın KAYHAN BOZKURT, 221692379 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221692379\n\nDear KAYHAN BOZKURT, your shipment with 221692379 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221692379\n\nBICARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('1c2aec4d-91f6-4bd0-a6f1-1c0836ef41a4','491701994007','Sayın İREM AKÇORA, 478930985 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478930985\n\nDear İREM AKÇORA, your shipment with 478930985 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478930985\n\nBICARGO','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('1c2bee45-4a66-4513-aaaa-afa9c45cd8d3','4915756075578','Sayın YASEMİN GÜNDOĞDU, 644340759 nolu gönderiniz 6537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644340759\n\nDear YASEMİN GÜNDOĞDU, your shipment with 644340759 was delivered to you with the delivery code 6537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644340759\n\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('1c2c6bf4-5518-41e8-8f26-5a2e119f1345','4917681316361','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('1c305b5f-0297-4439-a794-c107675e54c1','905331602195','Sayın yetkili; İBRAHİM AKIN  adlı müşterinize 221594735 nolu gönderinizin 100x240 cm orlando masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:28:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('1c31057a-f1f1-4aea-a68d-bb37c01b40b5','32484143474','Sayın BERİVAN KÖKTEN, 412550726 nolu gönderiniz 5782 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412550726\n\nDear BERİVAN KÖKTEN, your shipment with 412550726 was delivered to you with the delivery code 5782. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412550726\n\n\nBICARGO','1','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL),
('1c391a27-b0d3-4aa8-8195-20832f80a7f2','4915753272553','644789157 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7597 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644789157\n\nYour shipment with the number 644789157 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7597. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644789157\n\nBICARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('1c3d0cff-9337-4ee0-9412-0459449a12cb','33620525658','Sayın BABERIH LEİLA , 221164226 nolu gönderiniz 5603 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221164226\n\nDear BABERIH LEİLA , your shipment with 221164226 was delivered to you with the delivery code 5603. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221164226\n\n\nBICARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('1c40088d-db33-4598-9b71-efd847babb6d','05388618969','Sayın yetkili; HADZİC MİRZAD adlı müşterinize 786729785 nolu gönderinizin Koltuk 3-2-1  ürünü 3 parça halinde Şah koltuk  adresinizden 05.05.2025 16:41:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f9dde0cb-7f13-495b-a653-2354ad04f07d',NULL),
('1c420a5f-3d72-4c22-b375-26a8b40e03ed','4915114164917','Sayın FATIMA KRISHMA, 982164642 nolu gönderiniz 1105 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982164642\n\nDear FATIMA KRISHMA, your shipment with 982164642 was delivered to you with the delivery code 1105. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982164642\n\n\nBICARGO','1','d7b0bb03-c914-41e5-8899-697339f7e562',NULL),
('1c44ba92-46cb-441b-abb4-72638facb1ee','905517075149','Sayın yetkili; HAKAN AKDEMİR adlı müşterinize 478110382 nolu gönderinizin 160 YATAK  ürünü 1 parça halinde Fatura adresinizden 20.08.2025 16:51:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('1c468815-5074-4739-8758-23f3c39bc454','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin 100X100 PUF ürünü 1 parça halinde Fatura adresinizden 08.07.2025 17:48:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('1c47e57e-e22a-4cf6-976f-b96e6414c6a6','905517075149','Sayın yetkili; SAMET BEY adlı müşterinize 478544570 nolu gönderinizin köşe ürünü 4 parça halinde RİXXE adresinizden 14.10.2025 13:56:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('1c48bf54-6758-480d-8d96-efb9bed76206','905461661672','MAHSUN ALDEMİR(K) adlı müşterinizin 644593040 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('1c4a0b13-72d6-47d6-ade3-aaf6d645b1ca','004915254106580','735329890 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4236 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735329890\n\nYour shipment with the number 735329890 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4236. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735329890\n\nBICARGO','2','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL),
('1c4a7ddc-9e8f-41ca-931c-414a01219b03','905517075149','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 47822949 nolu gönderinizin ssh parça ürünü 1 parça halinde BİCARGO DEPO adresinizden 15.09.2025 20:29:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('1c4e3158-2dee-49ea-beb8-75b7d190e794','4917634145313','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('1c549c14-1b0d-45c8-86bc-235fcc6a7e34','4917660948830','Sayın MUSA CAN KOÇAK, 644389756 nolu gönderiniz 1864 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644389756\n\nDear MUSA CAN KOÇAK, your shipment with 644389756 was delivered to you with the delivery code 1864. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644389756\n\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('1c55d888-e779-4b21-be52-5fda484abf20','905301592882','MUSTAFA DÜNDAR		 adlı müşterinizin 910775394 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('1c5a45e9-887a-4cde-b391-6128e9f21996','905363385813','Sayın yetkili; HASAN EROL adlı müşterinize 976568852 nolu gönderinizin TV Ünite ürünü 1 parça halinde Recai Yılmaz adresinizden 20.02.2025 15:25:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('1c5e4608-3c71-4ca5-901c-7998763f19e8','4917657742944','Sayın BEGÜM KIRCA, 371801847 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371801847\n\nDear BEGÜM KIRCA, your shipment with 371801847 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371801847\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('1c62fbde-850d-4e69-89db-c6aa9037769a','905335511664','Sayın yetkili; BERKAN AKTÜRK adlı müşterinize 371823380 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 14.05.2025 11:11:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('1c668ef1-cfeb-4db7-acd1-b22abd3838a7','491743967643','976521198 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9880 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976521198\n\nYour shipment with the number 976521198 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9880. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976521198\n\nBICARGO','1','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL),
('1c6ddf9b-341a-4d75-82d5-a0a578e1baba','31628641442','Sayın DİDEM BAKES , 517279482 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517279482\n\nDear DİDEM BAKES , your shipment with 517279482 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517279482\n\nBICARGO','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('1c6e00de-bfdb-4286-be4a-b11d1e5624c9','905075277637','ELOUAZGHİ ANAİS  adlı müşterinizin 745879253 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('1c76cf74-37d5-4a5b-b027-cf5db99b223d','33652350138','478164511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9335 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478164511\n\nYour shipment with the number 478164511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9335. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478164511\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('1c7c4ed8-39f9-46e4-95c5-30ce9cce4663','905304259202','Sayın yetkili; GÜLSÜN UZUN adlı müşterinize 478118994 nolu gönderinizin masa ürünü 3 parça halinde çelikbey inegöl depo adresinizden 07.02.2025 14:27:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('1c7d5e3c-6752-46e1-9064-21e00ab5de54','41791530005','Sayın GIULİA CLARA CASAGRANDE , 69529713 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/69529713\n\nDear GIULİA CLARA CASAGRANDE , your shipment with 69529713 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/69529713\n\nBICARGO','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('1c82a862-3334-43ab-a4ab-08acc0cf48f9','4917646701488','Sayın SABRİNA METZGER , 808922349 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808922349\n\nDear SABRİNA METZGER , your shipment with 808922349 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808922349\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('1c82b1f4-b1d0-4bd1-a744-18596f75ba68','4917683226592','371282604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371282604\n\nYour shipment with the number 371282604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371282604\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('1c8336d1-c544-4267-8f3f-8fe810920cc7','436766461961','Sayın HAFİZE BALİ, 371684650 nolu gönderiniz 8040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371684650\n\nDear HAFİZE BALİ, your shipment with 371684650 was delivered to you with the delivery code 8040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371684650\n\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('1c838688-75a0-4bbd-8f73-e592ca7e0e39','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 31.12.2024 10:56:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('1c843c3c-fd35-4c54-918b-64a81dc317c3','905454259202','Sayın yetkili; ASLI ALTINTAŞ adlı müşterinize 478775583 nolu gönderinizin MASA SANDALYE ürünü 6 parça halinde çelikbey inegöl depo adresinizden 20.02.2025 11:42:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('1c8a08f4-07f2-4bc2-88f0-fec7c0edc9e1','41613314258','Sayın ULAŞ YILDIZ, 428177245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428177245\n\nDear ULAŞ YILDIZ, your shipment with 428177245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428177245\n\nBICARGO','2','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL),
('1c8ce972-718c-4202-be6a-534965375b3c','4369910363377','428754067 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2081 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428754067\n\nYour shipment with the number 428754067 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2081. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428754067\n\nBICARGO','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('1c8d5ac0-a989-4240-9cfa-97041d5c4f95','4917647661534','982498702 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4899 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982498702\n\nYour shipment with the number 982498702 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4899. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982498702\n\nBICARGO','1','226d454f-504a-4c41-9f7c-2a37ac051991',NULL),
('1c93658b-09c9-4ca3-86ed-76be5caffbd7','41782412222','Sayın BUNJAMİN HALİMİ , 221962516 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221962516\n\nDear BUNJAMİN HALİMİ , your shipment with 221962516 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221962516\n\nBICARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('1c9c11db-2648-4d82-87b8-001717f973da','33682615843','745338988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3279 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745338988\n\nYour shipment with the number 745338988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3279. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745338988\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('1ca4f915-575b-43c9-97d4-89c93fd97e09','905313340045','Sayın yetkili; EBRU SOBAY adlı müşterinize 437574361 nolu gönderinizin Masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 28.08.2025 17:55:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('1cae4958-b311-4ea5-a755-ca0755c0a5fc','905336367828','SHAHLA HOSSEİNİ adlı müşterinizin 982320922 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL),
('1cb3cdc2-e4bf-4563-8102-b9a731178f3f','905313340045','Sayın yetkili; CEYDA KARA adlı müşterinize 437791163 nolu gönderinizin masa ürünü 3 parça halinde masacı (ard sandalye yanında) adresinizden 19.03.2025 15:27:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('1cb583f2-de1f-44d4-aee1-5b22cf248f0d','498381940171','745936573 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7934 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745936573\n\nYour shipment with the number 745936573 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7934. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745936573\n\nBICARGO','2','6c005507-054f-4904-8f84-b0774ba70335',NULL),
('1cb6d6b1-cfe7-43ed-8c2f-82110ade5802','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU NEFRO BİLGİSAYAR KOLTUĞU ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('1cb8f735-b037-45f8-b3d9-c5c0e561dcca','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND BAZA İÇ ORTA KAYIT ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('1cbffc11-89fa-4c5e-bb78-b6e865f0f6fc','905442774505','ONUR COŞKUN  adlı müşterinizin 65754067 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('1cc16110-a18e-42f7-b6dd-b8c581d17bf1','33658222162','Sayın NEVZAT KAHRAMAN, 478212125 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478212125\n\nDear NEVZAT KAHRAMAN, your shipment with 478212125 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478212125\n\nBICARGO','1','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL),
('1cc49ad3-7514-4994-81b4-76b4b7e4d882','905336367828','MERYEM PEREZ  adlı müşterinizin 982126318 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('1cc57283-3b55-4f1a-9a08-b6d33336c243','4915733741918','Sayın MAZHAR BAYMAN, 644903033 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644903033\n\nDear MAZHAR BAYMAN, your shipment with 644903033 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644903033\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('1ccb2f6c-1acf-440d-8610-37d3a6db48ae','491735396163','Sayın FATİME YILMAZ, 371626943 nolu gönderiniz 2983 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371626943\n\nDear FATİME YILMAZ, your shipment with 371626943 was delivered to you with the delivery code 2983. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371626943\n\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('1ccc2d77-01bf-4c97-9de7-49566edc7a61','905075277637','ABDULLAH DEMİR adlı müşterinizin 745105520 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL),
('1cd028e1-6955-42a4-9243-da6805c98484','905325000478','İHSAN KEPİR adlı müşterinizin 412378459 nolu gönderisi 44 parça halinde yola çıkmıştır.','1','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL),
('1cd3ae17-925d-498f-9b75-a4b0316a542c','33769000460','Sayın EMİN EKRAMOĞLU, 478678748 nolu gönderiniz 2168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478678748\n\nDear EMİN EKRAMOĞLU, your shipment with 478678748 was delivered to you with the delivery code 2168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478678748\n\n\nBICARGO','1','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL),
('1cd86511-3a24-433f-8c1e-eaed8b3fcd99','4915116506734','Sayın İBRAHİM ULUSOY, 74582542 nolu gönderiniz 6189 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74582542\n\nDear İBRAHİM ULUSOY, your shipment with 74582542 was delivered to you with the delivery code 6189. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74582542\n\n\nBICARGO','1','e10bc182-1962-4aff-b973-093a04c71419',NULL),
('1cd9f082-a2a3-4ce5-8a17-1c47a38423ef','905454259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478957028 nolu gönderinizin koltuk takımı ve genç odası yatakları ürünü 1 parça halinde çelikbey inegöl depo adresinizden 27.03.2025 11:49:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('1cdf2e79-ad8d-47b8-b6e2-0ac8a783fe09','32495776498','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('1ce5ac87-b473-446d-9684-ee367c00f24e','4917664047516','428138926 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428138926\n\nYour shipment with the number 428138926 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428138926\n\nBICARGO','2','ae9be805-ab66-4bf7-889f-22b5fd9c7351',NULL),
('1ce6f9e4-0e34-4263-bb82-85f9baf472da','31642163844','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('1ce99de1-ebc7-4f4e-9550-6625d42528a5','33668105646','221461818 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221461818\n\nYour shipment with the number 221461818 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221461818\n\nBICARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('1cf775a3-9d14-437f-9637-106ad3deb2b1','5447653067','Sayın UMUT UMUT, 08.06.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3117154\nŞifre : 3117154\n			\nBİCARGO','1',NULL,'fde311f7-e15f-480b-8b13-ca2b73a6d4bc'),
('1cf8727e-6110-4433-b58e-663c9eeaa9cd','905336367828','YASMİNE  adlı müşterinizin 982824242 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('1cf89e3c-bd4d-411f-897e-584e14b0c799','905534084469','Sayın yetkili; NEVZAT HACIOĞLU adlı müşterinize 15153034 nolu gönderinizin KOLTUK TAKIMI ürünü 2 parça halinde ZETNA HOME (KOLTUK) adresinizden 12.02.2025 17:22:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('1cf8efe7-e984-4233-97bd-18e49dea3b1b','4917685967745','37159654 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37159654\n\nYour shipment with the number 37159654 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37159654\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('1cfc5e8d-ab0e-42c2-9e78-ecc08fe8d4a7','05306071261','Sayın yetkili; DİLEK KHABİL adlı müşterinize 765729280 nolu gönderinizin NİRVANA MASA VE 4 SANDALYE  ürünü 3 parça halinde BY CİHAT  adresinizden 06.08.2025 11:37:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('1cfc94b4-63b7-4142-afc0-380cdeefaf44','905079358213','Sayın yetkili; YUSUF ALAN SSH  adlı müşterinize 745639343 nolu gönderinizin MONNA MASA AYAK BAĞLANTI PARÇALARI ürünü 1 parça halinde Fatura adresinizden 30.04.2025 11:54:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('1d00a478-d45b-456e-b92b-f02ec5644a64','491632326581','Sayın İREM AKÇORA, 478930985 nolu gönderiniz 2244 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478930985\n\nDear İREM AKÇORA, your shipment with 478930985 was delivered to you with the delivery code 2244. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478930985\n\n\nBICARGO','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('1d00ee8e-3089-41c2-9ddb-0e2f2787720d','905454259202','AHMET ÖZDEMİR adlı müşterinizin 478472384 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('1d0f3a82-bee0-4e11-8aba-ede3732a5829','905331602195','Sayın yetkili; SERHAT TAŞÇEVİREN adlı müşterinize 221187320 nolu gönderinizin Eliza sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:15:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('1d13ba8f-ac6f-4237-a9ff-2e7f1ab96a9c','4917648386532','976747802 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2447 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976747802\n\nYour shipment with the number 976747802 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2447. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976747802\n\nBICARGO','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('1d20bcd9-9767-45b4-8741-dfa7e6d5eedb','4366488883248','Sayın MILANA PRODANOVIC, 745837821 nolu gönderiniz 5450 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745837821\n\nDear MILANA PRODANOVIC, your shipment with 745837821 was delivered to you with the delivery code 5450. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745837821\n\n\nBICARGO','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('1d214d3e-787b-40c3-acc3-d10a2baa68b4','436603554835','Sayın Abbas sertaç, 745715303 nolu gönderiniz 9810 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745715303\n\nDear Abbas sertaç, your shipment with 745715303 was delivered to you with the delivery code 9810. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745715303\n\n\nBICARGO','1','7af47c44-93b1-42ec-813b-77c155a1b050',NULL),
('1d218778-27b5-44a4-9794-67b18f785ae5','33760972020','Sayın FİKRET AYDIN, 745439695 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745439695\n\nDear FİKRET AYDIN, your shipment with 745439695 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745439695\n\nBICARGO','1','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL),
('1d260812-0956-4e9b-a0d9-b2fe904814d7','905349208933','EMRAH ERAYDIN adlı müşterinizin 127395599 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('1d27e588-4aba-4a13-aa9a-00226bd14808','491637115819','Sayın SOMİA KARABİLA SSH, 59840179 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59840179\n\nDear SOMİA KARABİLA SSH, your shipment with 59840179 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59840179\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('1d298330-73e1-4033-a9f7-464e2ad56bc2','905335708965','İBRAHİM BULUT adlı müşterinizin 73570714 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL),
('1d2d6ea9-e74f-402a-bf9a-c974461bbfe9','33781091123','853766753 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9831 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/853766753\n\nYour shipment with the number 853766753 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9831. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/853766753\n\nBICARGO','1','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL),
('1d316698-5a42-4167-83de-ff3c535d6b61','4915224149443','501626049 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501626049\n\nYour shipment with the number 501626049 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501626049\n\nBICARGO','1','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL),
('1d32197e-50db-4a7f-bfed-cf79d20dfc6d','11111111111','Sayın AAAAAAAAA, 45592606 nolu gönderiniz 1212 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/45592606\n\nDear AAAAAAAAA, your shipment with 45592606 was delivered to you with the delivery code 1212. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/45592606\n\n\nBICARGO','2','8772de92-e350-425f-a8eb-0c7d440b804f',NULL),
('1d353d34-0244-41ef-8fdf-d80a7090a89a','491749591942','35119636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7351 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35119636\n\nYour shipment with the number 35119636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7351. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/35119636\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('1d38c2e1-cb8e-442a-9866-38707f3f61ce','905454259202','Sayın yetkili; MUHAMMED YUŞA YILDIRIM adlı müşterinize 478261120 nolu gönderinizin iki adet kanepe ürünü 3 parça halinde brawwa koltuk adresinizden 20.06.2025 18:20:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('1d3907f0-a1d1-4a2e-ae85-3b98a99217c6','33753285709','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('1d3ca59a-4ad3-459e-b33c-0a5b2bab3f91','491726603821','221960678 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9080 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221960678\n\nYour shipment with the number 221960678 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9080. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221960678\n\nBICARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('1d3e1ae0-3d35-4f33-91df-3064fe714451','905078062550','YASEMİN MUTLU adlı müşterinizin 598131456 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('1d3f9870-e205-49de-8cc4-a71cdc7f5487','491728404403','Sayın BERAT, 412485805 nolu gönderiniz 9019 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412485805\n\nDear BERAT, your shipment with 412485805 was delivered to you with the delivery code 9019. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412485805\n\n\nBICARGO','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('1d3fccc7-f059-4206-bdc8-26c4e15a10f4','905461661672','Sayın yetkili; ÜMİT MORCA adlı müşterinize 644377995 nolu gönderinizin KOLTUK TAKIMI ürünü 4 parça halinde MODAPARK CONCEPT adresinizden 30.06.2025 14:02:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('1d47537d-5613-4ca8-8d83-fd77f40824be','491749634049','Sayın BİRSEN KARADAVUT, 478403352 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478403352\n\nDear BİRSEN KARADAVUT, your shipment with 478403352 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478403352\n\nBICARGO','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('1d47ad38-9651-40d6-af9d-b52933d1601b','905079047428','AGIM NURSHOBO adlı müşterinizin 44971858 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL),
('1d4a18ea-e606-4962-a97f-661fa2f7f306','33682073450','Sayın ASLAN GÜLŞEN, 478647079 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478647079\n\nDear ASLAN GÜLŞEN, your shipment with 478647079 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478647079\n\nBICARGO','1','b3402260-d451-4d00-8ed8-35b3af56080f',NULL),
('1d4b3e3d-aa46-4367-9f20-ac773aa2318f','33786985474','Sayın KEMAL TAŞTAN, 982405831 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982405831\n\nDear KEMAL TAŞTAN, your shipment with 982405831 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982405831\n\nBICARGO','1','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL),
('1d4c0185-019a-458a-8c08-46e2e1c6ef4c','31634559022','Sayın ÖMER ALİ ALKAN, 319897198 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319897198\n\nDear ÖMER ALİ ALKAN, your shipment with 319897198 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319897198\n\nBICARGO','1','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL),
('1d4c7ffc-c7c2-40e4-b383-1a76e7adfb00','4915120350898','Sayın İBRAHİM TÜRK, 598479723 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598479723\n\nDear İBRAHİM TÜRK, your shipment with 598479723 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598479723\n\nBICARGO','1','5dbeb578-3815-46c4-8be9-34c6782e8dab',NULL),
('1d4ce016-248f-4577-986f-55f14e030a74','3254354253235432','Sayın RAHİM MALOĞLU, 412731497 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412731497\n\nDear RAHİM MALOĞLU, your shipment with 412731497 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412731497\n\nBICARGO','2','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('1d4db68b-b8c4-4d08-b543-2015ae087ae5','004917278170406','735298003 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9242 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735298003\n\nYour shipment with the number 735298003 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9242. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735298003\n\nBICARGO','2','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL),
('1d50e1c0-6338-4862-93de-469fab03e63d','905304259202','AHMET GÜNEŞ adlı müşterinizin 478300434 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('1d52965c-cbd8-4489-a83d-36ac0a59c532','905050303939','FUNDA CAMDAN adlı müşterinizin 923419994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL),
('1d57017b-a1e3-4425-a217-642c5a447c45','4917632294519','613940015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1596 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613940015\n\nYour shipment with the number 613940015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1596. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613940015\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('1d586ad8-506e-4833-a259-8dd1262ab2bd','905449041398','SEYFETTİN adlı müşterinizin 703581635 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL),
('1d5d07e2-0be4-4d72-bad5-294b45e2daad','4917639148019','Sayın MUSTAFA DÜNDAR		, 910775394 nolu gönderiniz 2970 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910775394\n\nDear MUSTAFA DÜNDAR		, your shipment with 910775394 was delivered to you with the delivery code 2970. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910775394\n\n\nBICARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('1d651ffd-d1fc-46a3-810a-74946793ca2b','491634613400','42877136 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1958 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42877136\n\nYour shipment with the number 42877136 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1958. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42877136\n\nBICARGO','1','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL),
('1d65295a-d494-4359-8dec-9304d1babf4d','4915124486565','614666366 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5352 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614666366\n\nYour shipment with the number 614666366 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5352. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614666366\n\nBICARGO','1','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('1d675a19-595e-4511-9676-ca68159bf0cc','905454259202','MECİT AVCI adlı müşterinizin 478957028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('1d695a0d-a0e8-448a-8b9e-17752be9595a','41764340270','Sayın DENİZ ŞİMŞEK, 745824761 nolu gönderiniz 4004 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745824761\n\nDear DENİZ ŞİMŞEK, your shipment with 745824761 was delivered to you with the delivery code 4004. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745824761\n\n\nBICARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('1d6f452b-b63a-4fcc-8ff4-3afa54a9316e','905451571652','Sayın yetkili; SİNEM GÖKÇE adlı müşterinize 531340061 nolu gönderinizin SANDALYE ürünü 6 parça halinde M four sandalye adresinizden 02.07.2025 14:08:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('1d74fddd-f5ce-48b7-b1af-3121f17e6f83','905454259202','YUSUF ASLANYÜREK adlı müşterinizin 478746196 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('1d7850e5-f2c1-4a08-a648-e2dc17cb2835','905075277637','DİLARA TARHAN adlı müşterinizin 745233031 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('1d7878e5-632e-42d1-98a1-1799af19277e','33618425759','449197003 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2546 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449197003\n\nYour shipment with the number 449197003 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2546. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449197003\n\nBICARGO','1','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL),
('1d83ad5d-3e53-4ba8-9f43-a6d414522ea8','49176030609788','Sayın ERKAN TAŞDELEN , 221397270 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221397270\n\nDear ERKAN TAŞDELEN , your shipment with 221397270 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221397270\n\nBICARGO','2','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('1d8556b4-97c8-439d-afc8-9f646aa8637c','905454259202','GÖKHAN EYCAN  adlı müşterinizin 478751440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('1d85f62c-d7c2-41ca-89a5-498dfe94abe3','905350617509','DİLBERAY MELLO adlı müşterinizin 613910788 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('1d894947-9f56-4e5b-9843-bc50cee46ead','905336367828','MİAMİ STYLE  adlı müşterinizin 982999114 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('1d8ad7ad-da67-4f04-afce-c33068f924a6','','Sayın LEX-CERAM DESİGN, 412976656 nolu gönderiniz 6488 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412976656\n\nDear LEX-CERAM DESİGN, your shipment with 412976656 was delivered to you with the delivery code 6488. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412976656\n\n\nBICARGO','2',NULL,NULL),
('1d8b691f-160c-4e78-8612-d03305736eb5','4917620954584','Sayın BESTE NUR ÖZKAYA, 896769535 nolu gönderiniz 6357 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896769535\n\nDear BESTE NUR ÖZKAYA, your shipment with 896769535 was delivered to you with the delivery code 6357. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896769535\n\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('1d8cd636-6fb4-4c91-9513-0c799cc6b967','491749683330','Sayın ERCAN KARADAVUT , 248315101 nolu gönderiniz 4020 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248315101\n\nDear ERCAN KARADAVUT , your shipment with 248315101 was delivered to you with the delivery code 4020. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248315101\n\n\nBICARGO','1','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL),
('1d8e4cde-6a9b-4e20-8866-47eac507f455','33755431348','Sayın EHSANULLAH SEDİGİ , 982663240 nolu gönderiniz 10458 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982663240\n\nDear EHSANULLAH SEDİGİ , your shipment with 982663240 was delivered to you with the delivery code 10458. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982663240\n\n\nBICARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('1d8ed8bf-2981-4e27-9e33-4f23f2277849','905461661672','Sayın yetkili; BERNARD BEJİQ adlı müşterinize 644714329 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 05.03.2025 11:48:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('1d9e0dc3-8017-4dd3-83b7-2a32f7715c18','905336367828','Sayın yetkili; Enver kök  adlı müşterinize 982549375 nolu gönderinizin Köşe koltuk  ürünü 4 parça halinde Sels sofa  adresinizden 13.11.2024 15:19:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('1da434e3-3eb3-413a-8e37-289064bd2241','4917664700278','613112731 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10319 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613112731\n\nYour shipment with the number 613112731 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10319. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613112731\n\nBICARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('1dae82e8-be5f-48a2-9a3a-0055a300d057','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin BOHEM KARYOLA ŞİFONYER KOMODİN  ürünü 9 parça halinde ODDO adresinizden 30.09.2025 14:06:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('1db1203f-1165-46c7-9bb3-deea6bb8fb30','905461661672','Sayın yetkili; BURHAN BAYRAKTAR adlı müşterinize 644758410 nolu gönderinizin köşe koltuk ürünü 5 parça halinde LİTANİ KOLTUK adresinizden 21.08.2025 16:26:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('1db1977f-bf74-470a-a3b2-d477594d167d','4915901358916','Sayın ZEYNEP CİHANGİR, 478623446 nolu gönderiniz 8363 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478623446\n\nDear ZEYNEP CİHANGİR, your shipment with 478623446 was delivered to you with the delivery code 8363. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478623446\n\n\nBICARGO','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('1db42132-2abf-4c51-9ed5-0dba83b84ae2','905442774505','ALİ ARSLAN  adlı müşterinizin 657153999 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('1dbed53f-3009-4fe1-894a-cc5a0c62972b','905069116877','Sayın yetkili; NURŞEN ADACI adlı müşterinize 8176511 nolu gönderinizin Lego köşe ürünü 5 parça halinde Fatura adresinizden 22.04.2025 11:47:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('1dc04093-5944-4eb7-b527-70d18f1df09b','905336367828','FİROUZEH NOORZAİ adlı müşterinizin 982561254 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('1dc68923-331a-4ff4-91ac-776ee2566e46','436608763006','Sayın RUKİYE KIRIMLI, 478861689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478861689\n\nDear RUKİYE KIRIMLI, your shipment with 478861689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478861689\n\nBICARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('1dc8215d-7666-4b00-86ef-0be6dcef37ab','905079047428','Ramish mirzayer adlı müşterinizin 449354047 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL),
('1dcb6b4f-bb21-4ef5-a1c1-b5146a2cc6e6','49015151400787','Sayın DÖNDÜ YÖRÜK, 644887691 nolu gönderiniz 7692 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644887691\n\nDear DÖNDÜ YÖRÜK, your shipment with 644887691 was delivered to you with the delivery code 7692. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644887691\n\n\nBICARGO','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('1dcde4a4-3d4a-4af2-9942-c78cd3364a19','905301592882','M.ALİ ÇETİN adlı müşterinizin 910129924 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('1dd00d39-72bb-4fea-99c5-ed72b7fcf44b','905335511664','MEHMET SARI adlı müşterinizin 371820872 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('1dd906ae-3f1f-4db9-ae95-ecad9bb8b565','905079358213','SEDA KURTDİNÇEL adlı müşterinizin 745431846 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('1ddae2ac-919c-4901-8264-88a4d89fc306','4917663874660','Sayın MİTRA MESKİNİ, 44932987 nolu gönderiniz 10100 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44932987\n\nDear MİTRA MESKİNİ, your shipment with 44932987 was delivered to you with the delivery code 10100. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44932987\n\n\nBICARGO','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('1de133a3-fb4e-41f3-b3c0-954dce70d0cf','49015231361108','Sayın MARA EDEN, 982240405 nolu gönderiniz 3609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982240405\n\nDear MARA EDEN, your shipment with 982240405 was delivered to you with the delivery code 3609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982240405\n\n\nBICARGO','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('1de4bfc4-38d0-47d8-90d0-8539f432ae52','905335511664','DİLAN ÇELİK TOGAN adlı müşterinizin 371881042 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('1debd8e4-7a68-4c4c-8601-3b2faf21c64f','4915776398644','478377442 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7273 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478377442\n\nYour shipment with the number 478377442 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7273. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478377442\n\nBICARGO','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('1defd96c-52d9-4d2f-b59a-c84c261ccd56','905335708965','KORNİŞ ÇUVAL adlı müşterinizin 248173138 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fdd68378-14a3-446e-acd4-64b7634a5689',NULL),
('1df1c72b-40ec-4f8b-b1da-617a8299f901','905331602195','Sayın yetkili; AHMED HAMEL  adlı müşterinize 221413192 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde Fatura adresinizden 13.01.2025 12:09:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('1df38f28-17e0-44c7-8dda-585aa7db90dd','491788611744','Sayın GÜLİZAR KOCADAĞ, 745816008 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745816008\n\nDear GÜLİZAR KOCADAĞ, your shipment with 745816008 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745816008\n\nBICARGO','1','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL),
('1df8e009-1f4a-4ef2-98a2-3e742988951d','4917620585657','Sayın SEDA YILMAZ, 371429381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371429381\n\nDear SEDA YILMAZ, your shipment with 371429381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371429381\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('1dfc753a-1c67-464a-8598-87401d258b71','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ŞAHİNLER KRİSTAL MASA(SABİT) ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('1e0048ae-a1d3-47c2-b4bd-cece6d63ce2d','33651014066','Sayın KAYHAN BOZKURT, 221692379 nolu gönderiniz 8726 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221692379\n\nDear KAYHAN BOZKURT, your shipment with 221692379 was delivered to you with the delivery code 8726. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221692379\n\n\nBICARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('1e05e7ca-43bd-4887-b47e-bfeefcb88e27','33783327120','Sayın BAHAR ORHAN, 478835180 nolu gönderiniz 6592 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478835180\n\nDear BAHAR ORHAN, your shipment with 478835180 was delivered to you with the delivery code 6592. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478835180\n\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('1e09522e-86ee-4e55-ad4a-88f29bc7b6ca','33628834042','Sayın ZEHRA OCALAN, 976192214 nolu gönderiniz 10530 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976192214\n\nDear ZEHRA OCALAN, your shipment with 976192214 was delivered to you with the delivery code 10530. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976192214\n\n\nBICARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('1e09c482-2eac-456d-a9cf-96b544958362','905336367828','ERKAN UYSAL  adlı müşterinizin 982271871 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('1e12273f-23c1-48ce-ab89-b8016c150824','4915217769767','223853931 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10410 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223853931\n\nYour shipment with the number 223853931 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10410. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223853931\n\nBICARGO','2','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('1e1235d2-89c8-4cfe-8bb1-9645be6a1856','4915757272301','Sayın OKAN CORAMAN, 745980941 nolu gönderiniz 8167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745980941\n\nDear OKAN CORAMAN, your shipment with 745980941 was delivered to you with the delivery code 8167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745980941\n\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('1e16fdd5-752c-438c-8e50-11df54e8fab2','0033769535449','Sayın YUNUS BEY, 127504677 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127504677\n\nDear YUNUS BEY, your shipment with 127504677 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127504677\n\nBICARGO','2','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('1e17ce0e-6aea-4922-b4fd-7caddd4b0f69','905304259202','Sayın yetkili; SEMİH ELMAS adlı müşterinize 478173801 nolu gönderinizin MASA SANDALYE ürünü 6 parça halinde GARDEROBE adresinizden 27.01.2025 17:19:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('1e1afff7-b121-4e1e-9b01-754a583fac14','436603227029','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('1e1eea81-36a6-44ce-9c44-7af891b9757c','491782203045','478697529 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478697529\n\nYour shipment with the number 478697529 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478697529\n\nBICARGO','1','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('1e20a852-b9db-4c7a-80cf-61f836dea7ab','33758896442','Sayın MERYEMA TEKİN, 478322325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478322325\n\nDear MERYEMA TEKİN, your shipment with 478322325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478322325\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('1e223c33-da2e-46d2-8be2-1a4639863487','905078062550','Sayın yetkili; DAVUT BİNGÖL adlı müşterinize 598530881 nolu gönderinizin HALI ürünü 3 parça halinde NLUXHOME DEPO adresinizden 14.08.2025 15:15:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('1e239f67-9d08-47bc-b8d2-afe022a44f95','330659794019','Sayın RERHAYE KHADJA , 982834531 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982834531\n\nDear RERHAYE KHADJA , your shipment with 982834531 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982834531\n\nBICARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('1e23e28f-29f1-4b08-9a8e-927b5542e78c','905304259202','Sayın yetkili; MAHMUT ÇELİK adlı müşterinize 478370539 nolu gönderinizin köşe takımı ürünü 5 parça halinde çelikbey inegöl depo adresinizden 03.02.2025 20:50:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('1e24358f-c7b3-4828-80d3-b0d11f1316a3','0033648776910','Sayın HACI KURBAN BAŞTÜRK , 162733891 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/162733891\n\nDear HACI KURBAN BAŞTÜRK , your shipment with 162733891 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/162733891\n\nBICARGO','2','ee55d774-0af3-44a4-a04d-c52632a73128',NULL),
('1e248f85-76d2-46cb-89d1-67694b4d2ad0','905335708965','ERKAN SOYSAL adlı müşterinizin 248543155 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL),
('1e257852-6b2b-4849-a5d7-933dc6fc8cba','41765200676','Sayın MANJUTHA VATHANASEELAN, 613990071 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613990071\n\nDear MANJUTHA VATHANASEELAN, your shipment with 613990071 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613990071\n\nBICARGO','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('1e2617f1-245a-4621-b027-c0d65058e40e','33666141635','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('1e2b2854-5d1e-47f8-8a9e-95acf8fdaf66','33651994085','Sayın RABİA GÜNER, 97684781 nolu gönderiniz 8237 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/97684781\n\nDear RABİA GÜNER, your shipment with 97684781 was delivered to you with the delivery code 8237. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/97684781\n\n\nBICARGO','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('1e2bd448-cd9f-4b49-930d-2a7d992ce293','4917655112033','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('1e32aa80-26c5-4698-a364-51c494f6ca4d','33616563372','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('1e3f1078-277b-48f0-af67-64886580d5ea','33642608703','Sayın YASEF İÇEL, 478723817 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478723817\n\nDear YASEF İÇEL, your shipment with 478723817 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478723817\n\nBICARGO','1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL),
('1e40f622-4a4d-44af-8ae8-4f5ba0f95d00','905300961610','HABTEMARIAM BIZEN adlı müşterinizin 126908886 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL),
('1e492d86-66cc-400b-8e4a-76233bcf1688','905301592882','GÖZDE TEMİZ		 adlı müşterinizin 910670298 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('1e4aa165-596e-41fc-818a-cadfa9dd10e8','4917684245023','Sayın SEMA KUZULUK SSH, 644635640 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644635640\n\nDear SEMA KUZULUK SSH, your shipment with 644635640 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644635640\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('1e530d46-94fe-4be7-b1c1-c4e1e2f1b69e','4917683122321','Sayın ÖZNUR KOŞAK, 745283034 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745283034\n\nDear ÖZNUR KOŞAK, your shipment with 745283034 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745283034\n\nBICARGO','1','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL),
('1e54da6c-716d-4ab2-ab68-43b79ac91692','436769600864','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('1e5a027f-ee86-42f6-998e-df585aaa638d','905079047428','MUKUNGU KULEMFUKA adlı müşterinizin 449193323 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL),
('1e5b2b4c-b945-44e6-9bd8-046769438463','905079358213','CEYLAN ÇELİK adlı müşterinizin 745747218 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('1e5fb5d8-6de6-49eb-a282-1186bac6e7e8','905336367828','AYDIN KEMERLİ  adlı müşterinizin 982837523 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('1e608d74-ee22-4ee1-bf9d-ac2e7d122c10','905313340045','Sayın yetkili; ESME GÜNEŞ adlı müşterinize 437256638 nolu gönderinizin sandalye  ürünü 5 parça halinde ard sandalye adresinizden 09.05.2025 19:18:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('1e654fb6-de79-45d9-a167-40e19f2a3c14','491629815489','Sayın SALİHA KURT, 745251111 nolu gönderiniz 7943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745251111\n\nDear SALİHA KURT, your shipment with 745251111 was delivered to you with the delivery code 7943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745251111\n\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('1e69ade0-8e08-4b02-a56c-e6fb16430fef','905054335859','YUSUF DURSUN adlı müşterinizin 501668492 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL),
('1e6dfa79-f390-4e1e-859a-a36e217d5667','905079358213','DURMUŞ YÜKSEKTEPE adlı müşterinizin 745935889 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('1e6ef270-014d-4d4c-bf61-4051cfab1aac','905454259202','EMEL TEKİN adlı müşterinizin 478180584 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL),
('1e6f74a9-5f42-43d1-85f3-51a64e86c0d1','905304259202','SONER DEMİRCİ adlı müşterinizin 478422219 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL),
('1e707ff4-290a-4794-8fe7-ab9ebaa4500c','33658561334','478498501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478498501\n\nYour shipment with the number 478498501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478498501\n\nBICARGO','1','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL),
('1e71f101-b967-4966-ad2f-ca4fa158de3a','4915778776524','Sayın AHMAD KADİ, 598102662 nolu gönderiniz 8261 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598102662\n\nDear AHMAD KADİ, your shipment with 598102662 was delivered to you with the delivery code 8261. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598102662\n\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('1e71faed-36a2-458e-af5c-b683c2a7dc22','905454259202','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 478342417 nolu gönderinizin yemek odası ürünü 7 parça halinde çelikbey inegöl depo adresinizden 14.05.2025 15:24:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('1e7201c0-3fdc-4e9c-92bc-4701b6057f9c','905059175469','SALİH DURAK adlı müşterinizin 428718727 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('1e786dbc-1fb1-4974-ab2f-ed3dec872c5c','31628566081','Sayın RADİA AL ADOUİ, 644599754 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644599754\n\nDear RADİA AL ADOUİ, your shipment with 644599754 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644599754\n\nBICARGO','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('1e7d5212-1d56-46a2-92d3-1c2a80b138c9','905461661672','Sayın yetkili; SEMA KUZULUK adlı müşterinize 644653549 nolu gönderinizin TRAVERTEN MASA VE SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 02.04.2025 09:54:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('1e804b6f-8aa1-46ac-b80f-68b33017dd62','905434420016','Sayın yetkili; CAMELİA BESSAL adlı müşterinize 748663171 nolu gönderinizin 1 ADET ORTA SEHPA / BEKASAN SANDALYE ürünü 4 parça halinde Fatura adresinizden 06.11.2024 17:06:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('1e884c22-a75a-47db-90e2-ed91880ab1ca','905075277637','Müyesser koçak adlı müşterinizin 745531225 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e7849612-fcb8-4368-bba8-194c1abdf919',NULL),
('1e89353c-3333-45c1-ae5d-1345783f0ccc','905532675926','Sayın yetkili; METİN MOLA adlı müşterinize 428693052 nolu gönderinizin Sandalye 8 ürünü 4 parça halinde fulaş sandalye adresinizden 29.08.2025 12:53:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('1e8d178c-4ed2-4c86-8d08-a96cd20a194a','05394752647','Sayın CİHAN TOKAY(K), 644407379 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644407379\n\nDear CİHAN TOKAY(K), your shipment with 644407379 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644407379\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('1e8d6488-27fa-4c1c-9b01-b662004009c3','905304259202','RAMAZAN KAYHAN adlı müşterinizin 478972804 nolu gönderisi 63 parça halinde yola çıkmıştır.','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('1e99a737-4920-4a53-97d3-2c40de44feb9','905517075149','EDOLİNA AJETİ REXHEPİ adlı müşterinizin 478749881 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('1ea5626f-511e-4b31-8ca7-d1f815783bd8','905451571652','Sayın yetkili; YUNUS EMRE ÖZAGİR adlı müşterinize 531988506 nolu gönderinizin Sandalye ürünü 6 parça halinde M four sandalye adresinizden 11.08.2025 14:09:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('1ea6328b-dcc7-4d89-9633-019c0c8903c8','003140374207','745262490 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8907 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745262490\n\nYour shipment with the number 745262490 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8907. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745262490\n\nBICARGO','2','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL),
('1ea7052b-2b1e-44ce-8536-79b4a9117360','905336367828','CLEİDY MARTİNS  adlı müşterinizin 982475389 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('1eadbed2-54a2-4b8d-982a-0b2c82eed59b','905304259202','KISMET URDOĞAN adlı müşterinizin 478449275 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('1eb0f9ad-4bfb-4195-8e42-d149a5bd9e2d','905069116877','Sayın yetkili; CEMİLE İLHAN adlı müşterinize 817239122 nolu gönderinizin Geç çıkacak 10.06.2025 çıkış olacak  ürünü 1 parça halinde Fatura adresinizden 03.06.2025 11:38:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('1eb31e0f-20aa-482c-9eb9-8cba663d229f','905325165070','ALAADDİN ŞAHİN adlı müşterinizin 734460411 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('1eb56279-e849-4f6a-b83a-5414da0cd3b5','41799101405','745959029 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2843 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745959029\n\nYour shipment with the number 745959029 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2843. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745959029\n\nBICARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('1eb8e1f0-15b4-4ef1-8fcd-310c17620bdb','905461661672','Sayın yetkili; RAMAZAN HAVAÇEKEN(K) adlı müşterinize 644879098 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 18:00:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('1eb9e237-1556-4737-b889-81f833b227fd','491621579425','Sayın MERYEM BİRCAN ANİK, 437791709 nolu gönderiniz 1117 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437791709\n\nDear MERYEM BİRCAN ANİK, your shipment with 437791709 was delivered to you with the delivery code 1117. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437791709\n\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('1ebade91-4d98-4512-b77b-2266a2c1f5e2','905461661672','Sayın yetkili; DÖNDÜ YÖRÜK adlı müşterinize 644887691 nolu gönderinizin MASA VE ORTA SEHPA ürünü 4 parça halinde Masami Mobilya adresinizden 11.04.2025 17:29:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('1ec0d437-83f0-4a1a-ae83-551b6ff3c319','4917672242540','371193272 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5234 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371193272\n\nYour shipment with the number 371193272 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5234. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371193272\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('1ec22ea2-e8d9-419e-885e-3768dd312bfb','31657678818','Sayın AKIN KARUT, 644775291 nolu gönderiniz 1284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644775291\n\nDear AKIN KARUT, your shipment with 644775291 was delivered to you with the delivery code 1284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644775291\n\n\nBICARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('1ec438ff-5b09-4080-bb64-ba24736a3edb','905428209234','CEMAL YALÇIN adlı müşterinizin 319116491 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('1ec76928-5f14-4b35-ac97-3c8cd8ab6a0f','905363385813','Sayın yetkili; MEHMET KANBEROĞLU adlı müşterinize 976441354 nolu gönderinizin Köşe koltuk ürünü 2 parça halinde SALON KOLTUK adresinizden 06.02.2025 10:12:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('1eca4883-9ac8-499f-94a7-63f34ebd9e1d','4917657764675','Sayın RUKİYE BİÇEM KAPAN, 735929791 nolu gönderiniz 3543 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735929791\n\nDear RUKİYE BİÇEM KAPAN, your shipment with 735929791 was delivered to you with the delivery code 3543. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735929791\n\n\nBICARGO','1','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL),
('1ecec9c9-b21d-4a69-9eec-fa50811f6f9c','491772742981','ŞÖFÖR NUMARASI\n					+905467896981','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('1ed72d44-72e2-40fb-aa93-84200d8d6621','491785154037','Sayın GÜLAY FASOLD, 644820551 nolu gönderiniz 9966 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644820551\n\nDear GÜLAY FASOLD, your shipment with 644820551 was delivered to you with the delivery code 9966. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644820551\n\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('1edb2213-303c-4b5f-824d-f30b4fd1c025','31627024701','Sayın BERKANT CEYLAN , 657784193 nolu gönderiniz 6596 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657784193\n\nDear BERKANT CEYLAN , your shipment with 657784193 was delivered to you with the delivery code 6596. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657784193\n\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('1edb4600-2ec8-4682-bd3d-15cf11f53e4f','905304259202','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin koltuk takımı ürünü 3 parça halinde ikon koltuk adresinizden 02.05.2025 16:37:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('1edb7c05-0fb3-4e87-bff1-b6f53fa491c0','32489954615','Sayın ÜMİT MORCA SSH, 644760466 nolu gönderiniz 6159 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644760466\n\nDear ÜMİT MORCA SSH, your shipment with 644760466 was delivered to you with the delivery code 6159. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644760466\n\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('1edec385-f36c-40a9-b41a-1d227bcbf63b','4917623256596','478479612 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3494 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478479612\n\nYour shipment with the number 478479612 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3494. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478479612\n\nBICARGO','1','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL),
('1edef8ca-c769-47fc-b179-7a9c57795e46','33750583147','478885043 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4071 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478885043\n\nYour shipment with the number 478885043 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4071. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478885043\n\nBICARGO','2','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('1ee0560e-ef8f-409f-afd6-bbf0e8e9ddc5','33662243896','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('1ee07490-eb46-45e1-a1b4-465002d39025','905461661672','Sayın yetkili; KERİM ŞENTÜRK adlı müşterinize 644966461 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 20.05.2025 17:25:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('1ee08889-2659-41f1-a495-490096ebd044','905451571652','Sayın yetkili; PERİHAN ÖZVURAL adlı müşterinize 531344250 nolu gönderinizin Masa ve sehpa ürünü 5 parça halinde BİFURNİ adresinizden 29.07.2025 17:04:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('1ee963a3-a19d-4cc9-857e-17b117d0d9db','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA YATAK ODASI ürünü 26 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:14:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('1eea256e-d7da-4040-891a-babd88c5bfd8','4917666876193','Sayın YAVUZ KOÇMAN		, 910772127 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910772127\n\nDear YAVUZ KOÇMAN		, your shipment with 910772127 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910772127\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('1eed909e-2c72-4a29-a583-d94b72e2a626','4542392394','Sayın SİHAM MAHMOUD, 598280715 nolu gönderiniz 2686 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598280715\n\nDear SİHAM MAHMOUD, your shipment with 598280715 was delivered to you with the delivery code 2686. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598280715\n\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('1eee8038-83c8-419b-a7ac-aa2e832517f3','905335708965','AAAAAA adlı müşterinizin 248135683 nolu gönderisi 352 parça halinde yola çıkmıştır.','1','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL),
('1ef2798e-4b70-4788-a002-12cf9045bb20','4915750608145','Sayın MUHAMMED ALİ TÜMKAYA, 64455982 nolu gönderiniz 9834 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64455982\n\nDear MUHAMMED ALİ TÜMKAYA, your shipment with 64455982 was delivered to you with the delivery code 9834. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64455982\n\n\nBICARGO','2','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('1ef3d8a1-0e2b-4bb5-b70a-95aefd1f2fb4','905325998198','ŞÜKRAN ALP  adlı müşterinizin 614969446 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('1ef8eddc-5f47-4ad4-aad9-29fd47ef3b25','4917632998796','478816988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5865 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478816988\n\nYour shipment with the number 478816988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5865. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478816988\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('1efb2108-0dcd-4257-b3ba-56a9d861629a','905331602195','ASHLEY BLANCO RODRİGEZ adlı müşterinizin 221417545 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('1efdf637-4e1e-43b3-8768-6159099226ae','905304259202','MEHMET EMİN ŞIK adlı müşterinizin 478955837 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL),
('1f075218-7f78-4a5e-897f-1c310cd338b2','4915231405303','Sayın OKAY DERİNKUYU, 478984010 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478984010\n\nDear OKAY DERİNKUYU, your shipment with 478984010 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478984010\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('1f09704d-8312-474e-ae7b-75130163ec8d','491743202967','613251938 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10483 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613251938\n\nYour shipment with the number 613251938 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10483. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613251938\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('1f0a8c7e-e0fb-4f14-a209-b0608793e7bc','491784042586','Sayın ONUR ÖZÇELİK, 371695056 nolu gönderiniz 3754 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371695056\n\nDear ONUR ÖZÇELİK, your shipment with 371695056 was delivered to you with the delivery code 3754. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371695056\n\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('1f15fc8e-f2d0-4c7f-b158-4d3864b23d07','4334434234324324','Sayın İHSAN KEPİR, 412378459 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412378459\n\nDear İHSAN KEPİR, your shipment with 412378459 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412378459\n\nBICARGO','2','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL),
('1f196693-ad1f-4451-ab75-dc53d4d925b8','905335708965','AAAAAAAAAAA adlı müşterinizin 735561469 nolu gönderisi 42 parça halinde yola çıkmıştır.','1','26321c61-8ef9-4498-b666-82a04622843a',NULL),
('1f197d04-8186-4964-9260-9441cfe5c000','905335511664','Sayın yetkili; LYUDMİLA KORUNOVSKA adlı müşterinize 371121937 nolu gönderinizin sandalye ürünü 5 parça halinde Sandalyeci Bekir adresinizden 27.08.2025 17:42:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('1f1e3b7b-8546-45fb-ac3c-222f8aeb9bf7','905304259202','Sayın yetkili; KISMET URDOĞAN adlı müşterinize 478449275 nolu gönderinizin YEMEK ODASI-ÜNİTE- KOLTUK TK-3 SET-ZİGON-KOMİDİN-KENDİ MALZEMELERİ HALI VS ürünü 47 parça halinde çelikbey inegöl depo adresinizden 22.01.2025 11:39:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('1f1ee885-3b50-460f-8ae6-b238fd1cfa68','905532675926','METİN MOLA adlı müşterinizin 428693052 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('1f1fc13f-8be9-4287-9321-e712bba7f18c','33769005262','Sayın ERDEL SİBEL SSH, 644426448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644426448\n\nDear ERDEL SİBEL SSH, your shipment with 644426448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644426448\n\nBICARGO','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('1f21deca-a5c0-48ce-b586-f7c91359e83c','05050220385','Sayın MELEK ÇELİK, 478675012 nolu gönderiniz 5941 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478675012\n\nDear MELEK ÇELİK, your shipment with 478675012 was delivered to you with the delivery code 5941. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478675012\n\n\nBICARGO','2','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('1f2596d3-a18a-4172-8b1d-df4d8d731625','905054335859','MEHMET KIZILDERE adlı müşterinizin 501488750 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL),
('1f2695c3-7a87-41fb-8087-863b8494a619','905304259202','MAHMUT KAYA adlı müşterinizin 478705604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('1f2d9c75-15f2-440b-94c6-8cfdc2a962d5','905335708965',' adlı müşterinizin 248450889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','87929b1a-65a1-4766-84ad-495ee7ffcb70',NULL),
('1f2dfd05-3906-483a-8fcb-2bde8f3a6446','436607735988','Sayın GÜLCAN İNCE, 33850305 nolu gönderiniz 1558 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/33850305\n\nDear GÜLCAN İNCE, your shipment with 33850305 was delivered to you with the delivery code 1558. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/33850305\n\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('1f2faca7-f87a-4f99-8953-286a53efe6da','905350617509','Sayın yetkili; VAİSE İBRAHİM adlı müşterinize 613108463 nolu gönderinizin Berjer ürünü 1 parça halinde Mutena koltuk adresinizden 19.08.2025 10:41:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('1f305c5c-2f09-4488-bcab-8e6a331cdc60','905079047428','FATMA İSAOĞLU adlı müşterinizin 449557088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','084daa7f-3636-427c-9862-03f8214bc1f5',NULL),
('1f314651-5661-47ce-a455-5f748081307b','3637373838383848','Sayın ONUR AKDAĞ, 65722132 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65722132\n\nDear ONUR AKDAĞ, your shipment with 65722132 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65722132\n\nBICARGO','2','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('1f327c15-412c-4828-8b86-9d957424e3c9','905325000478','KARABAS LANDMASCHİNEN adlı müşterinizin 412977009 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','0fe32732-478d-4914-8b33-290a72aa934f',NULL),
('1f32ba0f-8b32-4179-98c9-8238ce2174d5','905331602195','Sayın yetkili; FURKAN KAYABAŞ adlı müşterinize 221631052 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:34:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('1f38503a-b28f-41c8-84df-ee9284bd01f1','491737487037','Sayın SERCAN MİRCALİ, 531549696 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531549696\n\nDear SERCAN MİRCALİ, your shipment with 531549696 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531549696\n\nBICARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('1f3e281b-2a88-4818-a8d6-693ca260299d','41764307026','126229931 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1254 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126229931\n\nYour shipment with the number 126229931 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1254. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126229931\n\nBICARGO','1','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL),
('1f3f98e2-1f05-4b05-90ea-d2e0b58659e6','436506511162','Sayın MUHAMMED ALİ ASLAN, 437982892 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437982892\n\nDear MUHAMMED ALİ ASLAN, your shipment with 437982892 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437982892\n\nBICARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('1f43a824-03ef-4e79-8aac-c33946e9244e','905461661672','(GÜLŞEN KARATAŞ) SSH  adlı müşterinizin 644423895 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('1f48f5a4-fb57-4859-abcc-aef1e35d2626','33675449544','İletişim \n					Halil Bey (Şoför) :+905541100849','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('1f4a6c9c-a3f3-4bdf-b220-93061e6e4703','905451571652','SALAM KORKMAZ adlı müşterinizin 531445058 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('1f4baddc-0bde-4ff1-b766-3cdbb34de494','00491742731905','Sayın EROL ERDOĞAN, 151236689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/151236689\n\nDear EROL ERDOĞAN, your shipment with 151236689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/151236689\n\nBICARGO','2','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('1f4f6984-7d75-43ae-b92e-14146678adbc','4917656525814','745983500 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4181 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745983500\n\nYour shipment with the number 745983500 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4181. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745983500\n\nBICARGO','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('1f50fad3-7329-4d0c-b849-67103132eb6f','905350617509','Sayın yetkili; SOZDAR AKTAS adlı müşterinize 613592756 nolu gönderinizin Bazalı Karyola+döşek+2 adet komodin ürünü 9 parça halinde Albessa adresinizden 22.07.2025 16:42:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL),
('1f528503-81e8-41f7-b7a7-24ae5b41bbf7','436606573775','Sayın BÜŞRA POYRAZ, 371508043 nolu gönderiniz 1128 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371508043\n\nDear BÜŞRA POYRAZ, your shipment with 371508043 was delivered to you with the delivery code 1128. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371508043\n\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('1f5877b1-999c-4df7-8497-a6976def9353','905364155243','GHASAN ALBUKAİ adlı müşterinizin 289168915 nolu gönderisi 56 parça halinde yola çıkmıştır.','1','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL),
('1f5e8e47-183d-4144-9ca9-82083db32031','31655504455','Sayın MEHMET KILINÇ, 428239917 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428239917\n\nDear MEHMET KILINÇ, your shipment with 428239917 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428239917\n\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('1f6e4441-fe6d-4893-91be-443258d6558e','905079358213','Sayın yetkili; METİN PEKSERT SSH  adlı müşterinize 74597110 nolu gönderinizin SSH TEKLİ  ürünü 1 parça halinde NOVANNİ adresinizden 24.06.2025 14:45:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('1f735d79-48b4-425c-862c-225c9538e921','41764103638','Sayın OKAY DERİNKUYU, 478984010 nolu gönderiniz 5852 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478984010\n\nDear OKAY DERİNKUYU, your shipment with 478984010 was delivered to you with the delivery code 5852. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478984010\n\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('1f773c89-9282-4e52-9ef9-b3fee59fe925','905428209234','DİLBER ÖZTÜRK adlı müşterinizin 319585140 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('1f77bb31-42f0-4f05-a9de-0f46365ffb87','905461661672','BETÜL GÜNER adlı müşterinizin 644550858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('1f7b4c81-0806-4d5a-bc7c-9ced8cff6acb','905079358213','Sayın yetkili; BURAK SARIKAYA adlı müşterinize 745816946 nolu gönderinizin DELUXE 180LİK YATAK 2 ADET  ürünü 2 parça halinde Fatura adresinizden 30.09.2025 12:29:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('1f7c031f-739f-43e9-ac64-ceb29cf982b2','31625064385','16334418 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10411 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/16334418\n\nYour shipment with the number 16334418 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10411. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/16334418\n\nBICARGO','1','83fe2028-17f9-4b82-a141-f935042a08dd',NULL),
('1f7f4c8e-e5c9-4468-a0fd-6e4862229ee4','905332942204','Sayın yetkili; MARİNELA MARİNKOVİC adlı müşterinize 505948491 nolu gönderinizin sandalye ürünü 3 parça halinde Fatura adresinizden 25.08.2025 15:25:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('1f82b256-d163-405d-9305-c00a1ba79111','4915147245701','Sayın KEREM TOGAY, 735792949 nolu gönderiniz 8090 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735792949\n\nDear KEREM TOGAY, your shipment with 735792949 was delivered to you with the delivery code 8090. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735792949\n\n\nBICARGO','1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL),
('1f832a73-3a41-4b45-ba6c-d243a339f460','491733758651','Sayın KADER YILDIZ, 765600734 nolu gönderiniz 2564 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765600734\n\nDear KADER YILDIZ, your shipment with 765600734 was delivered to you with the delivery code 2564. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765600734\n\n\nBICARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('1f874c2f-0d0b-4d10-b40a-01df8dfb2654','905331602195','Sayın yetkili; FEHMİ TÜRK adlı müşterinize 221570854 nolu gönderinizin Natura sandalye siyah ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 17.06.2025 17:04:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('1f88a38e-8775-4724-828c-10bebf2e3b9d','436764679635','380497843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2185 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/380497843\n\nYour shipment with the number 380497843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2185. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/380497843\n\nBICARGO','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('1f88dd3c-12c7-477a-8c75-e3672be0a191','495449192315','Sayın YASEMİN YILDIZ, 745968655 nolu gönderiniz 1879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745968655\n\nDear YASEMİN YILDIZ, your shipment with 745968655 was delivered to you with the delivery code 1879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745968655\n\n\nBICARGO','2','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('1f8eb240-11b7-40b9-9519-8ed5302d27cc','4917624386600','Sayın İSMAİL ŞANLI, 248710120 nolu gönderiniz 6886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248710120\n\nDear İSMAİL ŞANLI, your shipment with 248710120 was delivered to you with the delivery code 6886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248710120\n\n\nBICARGO','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('1f8fee1b-afcb-409b-b7f5-4f2efeeebafb','905333323012','Sayın yetkili; SHPETİM QERİMİ adlı müşterinize 695763797 nolu gönderinizin masa sandalye ürünü 4 parça halinde Fatura adresinizden 14.10.2025 15:58:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5ad44ce7-8456-4857-b0ee-214d21edb110',NULL),
('1f90083d-f16d-4dc2-bdf8-8f0f3553cf9b','31612622634','Sayın MURAT CENGİZ , 221186271 nolu gönderiniz 5876 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221186271\n\nDear MURAT CENGİZ , your shipment with 221186271 was delivered to you with the delivery code 5876. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221186271\n\n\nBICARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('1f924ac3-e40d-4e57-838c-d7a2e3b07669','905304259202','Sayın yetkili; BİRSEN KARADAVUT adlı müşterinize 478833375 nolu gönderinizin köşe takımı ürünü 5 parça halinde onca koltuk adresinizden 14.03.2025 16:29:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('1f967cc6-f9b9-46ef-ae7e-b7e9586408ab','905079358213','MUHAMMET TÜRKMEN adlı müşterinizin 745952430 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('1f971978-2903-4281-9aff-5898b81f5954','4917621560869','31951233 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5527 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/31951233\n\nYour shipment with the number 31951233 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5527. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/31951233\n\nBICARGO','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('1f97305d-e103-4fcb-82b6-e0a49d64774d','491624296622','Sayın (K)HÜSAMETTİN CANBOLAT, 644469726 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644469726\n\nDear (K)HÜSAMETTİN CANBOLAT, your shipment with 644469726 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644469726\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('1f9d1bf5-26b0-4d82-acf4-d7d1e145b9e7','436766461961','Sayın HAFİZE BALİ, 371539784 nolu gönderiniz 1448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371539784\n\nDear HAFİZE BALİ, your shipment with 371539784 was delivered to you with the delivery code 1448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371539784\n\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('1fa13a51-1b42-4fd0-8d39-b65c87a06a71','41763260101','Sayın FJOLLA VRENEZİ, 613853408 nolu gönderiniz 4319 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613853408\n\nDear FJOLLA VRENEZİ, your shipment with 613853408 was delivered to you with the delivery code 4319. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613853408\n\n\nBICARGO','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('1fa33d68-b830-4bfd-8a8f-f467ddbf6230','4917630550743','371586742 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9430 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371586742\n\nYour shipment with the number 371586742 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9430. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371586742\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('1fa3dca5-e543-4ad9-9122-f180f87a8652','436601484788','Sayın HASAN ÖZSOY, 428653750 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428653750\n\nDear HASAN ÖZSOY, your shipment with 428653750 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428653750\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('1fa47704-7a58-4b3b-bf6f-2308f0550769','41788083391','Sayın BİANCA AGOSTİNO, 221481972 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221481972\n\nDear BİANCA AGOSTİNO, your shipment with 221481972 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221481972\n\nBICARGO','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('1fa51c14-ce8a-4a46-a50f-d187de3de821','905461661672','Sayın yetkili; FADİME AKDEMİR adlı müşterinize 644130393 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde LENTE HOME adresinizden 05.03.2025 17:45:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('1fa5f4b7-81b4-4203-acf8-ec303734ea49','905335511664','Sayın yetkili; SAHİN DİNÇ adlı müşterinize 371514006 nolu gönderinizin koltuk takımı ürünü 4 parça halinde Elitis Home adresinizden 16.07.2025 10:13:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('1fa63367-d8e4-4dba-a33e-19b68acf2698','1111111111','Sayın AVP KADİR, 268262151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268262151\n\nDear AVP KADİR, your shipment with 268262151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268262151\n\nBICARGO','2','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('1fa647d3-e42d-4241-ab74-cc9a0ee84b45','5325000478','Sayın MEHMET  KARAMAN, 19.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5499434\nŞifre : 5499434\n			\nBİCARGO','1',NULL,'5ab49a9b-43fc-42e5-b0ff-8f78b2766237'),
('1fa706d4-e538-46cb-a77a-070bce4502d4','491784084802','Sayın MUHAMMET KÖSEDAĞ(K), 644590959 nolu gönderiniz 2538 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644590959\n\nDear MUHAMMET KÖSEDAĞ(K), your shipment with 644590959 was delivered to you with the delivery code 2538. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644590959\n\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('1fad4415-e4ad-438c-a139-b7afc5d038ed','41765845886','Sayın RÜVEYDA ŞAHİN, 127150146 nolu gönderiniz 10424 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127150146\n\nDear RÜVEYDA ŞAHİN, your shipment with 127150146 was delivered to you with the delivery code 10424. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127150146\n\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('1faf4bdf-93b7-43bb-b9eb-20148b0d342a','905079358213','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER KOLTUK TAKIMI  ürünü 19 parça halinde NAHİTA SOFA  adresinizden 14.10.2025 13:33:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('1fb0ee51-2879-409b-8fcd-9528f076cabb','905079047428','MONİKA MORKİ  adlı müşterinizin 449693939 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('1fb34bd0-c3fa-4ec2-b0bb-79e9a02fa5a2','436767311848','Sayın HÜMEYRA ZEYREK, 37152330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37152330\n\nDear HÜMEYRA ZEYREK, your shipment with 37152330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37152330\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('1fb515cd-9a33-48af-9c24-34b54cf57021','905331602195','Sayın yetkili; BÜŞRA NUR ÇELEBİ adlı müşterinize 221278187 nolu gönderinizin 90x190 cm Msm 25 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:57:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('1fb767bc-7eb1-457b-bcdd-fb949757909f','491785618388','Sayın GÜLŞEN KARATAŞ, 644859309 nolu gönderiniz 9060 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644859309\n\nDear GÜLŞEN KARATAŞ, your shipment with 644859309 was delivered to you with the delivery code 9060. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644859309\n\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('1fbc10e5-c2c5-4a60-befd-5d879c745beb','4917611633498','Sayın İBRAHİM YEŞİLKAYA, 598211009 nolu gönderiniz 1693 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598211009\n\nDear İBRAHİM YEŞİLKAYA, your shipment with 598211009 was delivered to you with the delivery code 1693. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598211009\n\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('1fbd1bdf-8a68-4898-92ea-eba20381c27f','11111111111','Sayın KEVIN PAROIS, 20390821 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/20390821\n\nDear KEVIN PAROIS, your shipment with 20390821 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/20390821\n\nBICARGO','2','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL),
('1fbdd63d-431d-4928-9328-4b01837e5abd','32499810587','Sayın THOMAS MICHEL , 221685294 nolu gönderiniz 3129 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221685294\n\nDear THOMAS MICHEL , your shipment with 221685294 was delivered to you with the delivery code 3129. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221685294\n\n\nBICARGO','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('1fc1d355-a732-4fa3-8c93-4abf4348a9b0','4915566942853','745433427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9940 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745433427\n\nYour shipment with the number 745433427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9940. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745433427\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('1fc67f20-1fd6-4c94-ba40-69d218c0c9db','436609500017','Sayın MERVE ÖZÇOBAN, 657192716 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657192716\n\nDear MERVE ÖZÇOBAN, your shipment with 657192716 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657192716\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('1fc7a356-e9a8-4ed8-899b-0a97288791b0','491725826815','Sayın ELİF KAVUCUK, 37197237 nolu gönderiniz 4933 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37197237\n\nDear ELİF KAVUCUK, your shipment with 37197237 was delivered to you with the delivery code 4933. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37197237\n\n\nBICARGO','1','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('1fca5308-b7a3-483a-b010-6f56fc6acf4e','33620174742','Sayın OMARİ EMAL , 982726615 nolu gönderiniz 1543 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982726615\n\nDear OMARİ EMAL , your shipment with 982726615 was delivered to you with the delivery code 1543. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982726615\n\n\nBICARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('1fcc9653-2e2b-4089-b2b6-b784cf0424fd','905461661672','TUĞRA NUR DÜZGÜN adlı müşterinizin 644298759 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('1fcdb2b0-d79f-4382-9fbb-43d196cebe75','4917624864505','910201328 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5215 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910201328\n\nYour shipment with the number 910201328 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5215. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910201328\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('1fcfb700-3fb7-469f-bc47-c54c018b4955','491624269090','319911664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10973 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319911664\n\nYour shipment with the number 319911664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10973. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319911664\n\nBICARGO','1','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL),
('1fd7dd97-40a6-49c4-af9d-823cc684f36c','905075277637','Sayın yetkili; EMRE AFYON  adlı müşterinize 745547550 nolu gönderinizin FEYZA YATAK  ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:26:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('1fdfe4c5-ee3f-4b08-8571-862541541a96','33634270535','Sayın YOLCU EVİN, 515463699 nolu gönderiniz 5113 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515463699\n\nDear YOLCU EVİN, your shipment with 515463699 was delivered to you with the delivery code 5113. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515463699\n\n\nBICARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('1fe3d2ae-6bff-4250-b702-781497b5d856','4915201870026','Sayın ALEYNA AKAY, 644500765 nolu gönderiniz 3036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644500765\n\nDear ALEYNA AKAY, your shipment with 644500765 was delivered to you with the delivery code 3036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644500765\n\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('1fec0c5a-1e19-4cac-8fdc-49bf894f3289','905301592882','SAMED DERE adlı müşterinizin 910717262 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('1ff380bf-e979-4ada-afe1-97694c23d8b4','9054439559150','MEHMET AKDAĞ adlı müşterinizin 614666366 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('1ff4adf2-2fc8-48f1-befe-a250f6fab0dc','905443955915','Sayın yetkili; ÖZKAN KARAOĞLU adlı müşterinize 614200423 nolu gönderinizin BAMBİ MAGNASAND 180*200 BAZA ürünü 2 parça halinde Fatura adresinizden 18.12.2024 13:54:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('1ff7fcd4-a90b-4604-92ac-3dfe47bc18b7','33609521096','478300917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6660 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478300917\n\nYour shipment with the number 478300917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6660. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478300917\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('1ff8f88a-348f-4c45-b55c-becbb7e89f88','4915901358916','478678849 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3260 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478678849\n\nYour shipment with the number 478678849 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3260. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478678849\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('1ff930ac-d439-40c1-adde-b1156a43672e','0782338105','İletişim \n					Halil Bey (Şoför) :+905541100849','2','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('1ffcdd34-ce4e-45c5-943e-6e6da428cd19','905079047428','MİTRA MESKİNİ adlı müşterinizin 449866390 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL),
('1ffeb565-3b58-426e-8744-57fdf7f49591','4917641579711','Sayın YETKİN TOKER, 478120731 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478120731\n\nDear YETKİN TOKER, your shipment with 478120731 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478120731\n\nBICARGO','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('20006588-34dc-4a41-91bb-0ba9db373d2d','491634680218','Sayın HÜSEYİN AKBANA, 745191568 nolu gönderiniz 10021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745191568\n\nDear HÜSEYİN AKBANA, your shipment with 745191568 was delivered to you with the delivery code 10021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745191568\n\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('20058b29-8d6b-404f-8d4e-7308fc688569','41762827635','Sayın BURHAN AZEMİ, 74594372 nolu gönderiniz 1750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74594372\n\nDear BURHAN AZEMİ, your shipment with 74594372 was delivered to you with the delivery code 1750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74594372\n\n\nBICARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('2008da2d-30c9-43f9-aa85-06dabc8ec41f','41782334263','982496646 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9141 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982496646\n\nYour shipment with the number 982496646 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9141. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982496646\n\nBICARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('2009579f-53ed-497d-9218-b9d3012815af','905075277637','PINAR SALMA SSH  adlı müşterinizin 745332643 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('200bf1cf-9c21-4635-881b-9a0a6f895d42','90560503927','Sayın MEHMET KARAMAN, 27.04.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4975018\nŞifre : 4975018\n			\nBİCARGO','2',NULL,'cff49750-183c-4486-bf27-562e3315a5ed'),
('200cf083-aa7c-4221-a25b-4ff6cd880fea','33668485580','Sayın KEMAL ETKER , 47876427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47876427\n\nDear KEMAL ETKER , your shipment with 47876427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47876427\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('20104670-526b-4233-b2d9-3f88603878fc','905336367828','donya bazaz adlı müşterinizin 982692076 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('2011c15d-245c-4f1c-ab3b-42a2bfa6c36a','9054439559150','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ ELARIN DOGAL UYKU PAKETI CK ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('201c77e8-d6c4-4601-922c-c7120086b0de','905336367828','HAKIMI MUSTAFA adlı müşterinizin 982742157 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('201ed1c9-3fae-43b2-aba2-0406457b4500','0033649778500','Sayın ASLI AYCİ, 73555265 nolu gönderiniz 9009 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73555265\n\nDear ASLI AYCİ, your shipment with 73555265 was delivered to you with the delivery code 9009. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73555265\n\n\nBICARGO','2','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL),
('201f2da9-d95f-49eb-af01-95087635453e','31638631333','Sayın HARUN YILDIRIM, 657782 nolu gönderiniz 4760 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657782\n\nDear HARUN YILDIRIM, your shipment with 657782 was delivered to you with the delivery code 4760. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657782\n\n\nBICARGO','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('2020465d-5a93-4865-b173-c32833afed1a','34698865709','Sayın FAZIL İSPANYA, 42892944 nolu gönderiniz 8329 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42892944\n\nDear FAZIL İSPANYA, your shipment with 42892944 was delivered to you with the delivery code 8329. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42892944\n\n\nBICARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('2020dc0e-690f-4d55-a78d-7c84f4b1b7ea','31687653993','644391223 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644391223\n\nYour shipment with the number 644391223 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644391223\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('2026b0c6-8dbf-465b-9571-6a96b2fd118d','4915753286470','Sayın SEMA KAYALI, 64448364 nolu gönderiniz 7015 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64448364\n\nDear SEMA KAYALI, your shipment with 64448364 was delivered to you with the delivery code 7015. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64448364\n\n\nBICARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('2028b1a4-c6ca-4de5-9aec-8f06d92d0ad0','905054335859','TEKİN MAZLUM adlı müşterinizin 501872546 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('202e1884-2138-4048-a1f3-59bbf9890d93','905331602195','Sayın yetkili; HATİCE GÜRBAY adlı müşterinize 22140129 nolu gönderinizin MİLAS BEYAZ MASA ürünü 3 parça halinde Fatura adresinizden 02.01.2025 12:22:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('202efbfd-d265-4677-92b2-57b0f7945a49','436603730710','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('2038f497-48e6-4241-a7a7-2e6880e3f4ee','905325000478','ESKİŞEHİR 2 adlı müşterinizin 412472932 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','0c0919ed-e869-4b33-a525-8e05358a4852',NULL),
('203aee50-20b9-4ca8-9378-d79103afe59a','905079358213','ÖMER ÇALIK SSH  adlı müşterinizin 7456984 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('203c9766-34e7-4e9e-abb5-89d55e8cdcaa','33782093093','Sayın HÜSEYİN GÜNDÜZ, 455614339 nolu gönderiniz 4233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455614339\n\nDear HÜSEYİN GÜNDÜZ, your shipment with 455614339 was delivered to you with the delivery code 4233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455614339\n\n\nBICARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('20402aae-0f7b-469f-b92c-ffdc7a8ba135','905454259202','MUSTAFA UZUNBOY adlı müşterinizin 47867667 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL),
('20413772-5c83-4bfb-95aa-90dbd2834f8a','32483027058','75052392 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8059 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/75052392\n\nYour shipment with the number 75052392 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8059. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/75052392\n\nBICARGO','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('204181af-f58e-4ed3-b7da-07877c654e79','905078062550','Sayın yetkili; ZEHRA ÜNAL adlı müşterinize 598320188 nolu gönderinizin masa sehpa ürünü 2 parça halinde RİO FATİH adresinizden 19.09.2025 10:22:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('20421858-63e4-4ec1-a9dd-6b05308aa18a','436605487120','Sayın HANİFE YILMAZ, 745252636 nolu gönderiniz 7190 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745252636\n\nDear HANİFE YILMAZ, your shipment with 745252636 was delivered to you with the delivery code 7190. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745252636\n\n\nBICARGO','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('2042b724-eb9d-4b77-8669-dc4845cc751c','905078062550','İVAN SLEMAN DİNO adlı müşterinizin 598410676 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('204442b2-ebc6-40e8-b650-f8630411769c','491639801426','MUSTAFA adlı müşterinizin 107623614 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('204527bd-2ff2-43b9-8e20-cb4bab26883c','905461661672','Sayın yetkili; ABDULLAH ÖĞRETEN adlı müşterinize 644917251 nolu gönderinizin MASA ürünü 5 parça halinde Masami Mobilya adresinizden 07.07.2025 10:26:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('2046f53e-73bb-43ef-a17c-47b8fb564dee','905336367828','SADAT SAIDI adlı müşterinizin 982365685 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('204a028f-8241-4b77-9af0-ad9a2654e021','905331602195','Sayın yetkili; LEPETİT CRİSTELLE (SSH) adlı müşterinize 221901011 nolu gönderinizin 80x180 masa üst tabla (ssh) ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:22:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3ace9aac-a197-4e9b-9f08-d07c0b7f938b',NULL),
('204a30b8-bf1f-4eea-8db0-ae0d83204fab','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin TOFİ KOLTUK TAKIMI 3+3+1 + ORTA SEHPA  ürünü 4 parça halinde VAAV adresinizden 26.09.2025 12:10:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('204b05c0-9f4e-4399-bb94-35009a496c66','491766154615','2213375 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5304 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/2213375\n\nYour shipment with the number 2213375 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5304. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/2213375\n\nBICARGO','2','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('204c90b0-2fbd-4c31-a69f-c386cdecedf9','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin  YEMEK MASASI ürünü 3 parça halinde Fatura adresinizden 23.06.2025 17:05:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('204d4555-e6e2-4b04-9330-dcb218cc5bda','905075277637','SEDAT ÇİFÇİ  adlı müşterinizin 745538897 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('204f5db6-2863-4b52-8b7f-a7bf4d335420','905350617509','GÖKKUS PİNAR adlı müşterinizin 61340935 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('205174df-1e86-42f7-b365-b9730f017bfb','33786784588','Sayın MEHMET KELEK, 126371651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126371651\n\nDear MEHMET KELEK, your shipment with 126371651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126371651\n\nBICARGO','1','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL),
('2053ecd1-246e-4bc3-afc8-2da90f30ae54','905335511664','SEMİH YEŞİLYAYLA adlı müşterinizin 371716908 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('20574d07-dc89-4a0a-9e9a-baf0ab0d6089','004917624897582','Sayın MURAT YILDIZ , 644481653 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644481653\n\nDear MURAT YILDIZ , your shipment with 644481653 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644481653\n\nBICARGO','2','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('205cd91b-9433-402c-9ff2-31116e1f8676','33671902832','Sayın NERMİN ÇETİNAVCI, 910948770 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910948770\n\nDear NERMİN ÇETİNAVCI, your shipment with 910948770 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910948770\n\nBICARGO','1','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('205d0e42-88f0-469a-a339-bf871923ad49','905301592882','YASİN YAVAŞ adlı müşterinizin 910599740 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('205fb33e-d9f6-4bff-801a-495369d73a1b','905451571652','İBRAHİM PİLİG adlı müşterinizin 531724547 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('206be705-51da-47f5-aaf1-d54dd9609569','310681538881','338286320 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4805 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338286320\n\nYour shipment with the number 338286320 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4805. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338286320\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('206d40bc-4903-4716-8bba-491c1e416049','905366385704','BELLA MEUBEL adlı müşterinizin 830905881 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL),
('206f762a-225a-4106-a381-f2f727bf1ce4','491784364840','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('206f7803-7cb5-4397-81a0-156af4139297','436603831520','Sayın SEDAT ÇİFÇİ , 745538897 nolu gönderiniz 2941 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745538897\n\nDear SEDAT ÇİFÇİ , your shipment with 745538897 was delivered to you with the delivery code 2941. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745538897\n\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('20774ea7-967e-4f9c-809c-7697fdd285b2','31621494387','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('2079fe8f-df78-4edb-b70a-d538ba01ed07','5325000478','Sayın AAAA BBBBB, 03.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9277948\nŞifre : 9277948\n			\nBİCARGO','1',NULL,'9277c9d4-8691-44ae-98c7-5a99d95125fb'),
('20818497-2356-4709-951f-36540a167803','4915566234500','Sayın RANİA PİSİT, 613512690 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613512690\n\nDear RANİA PİSİT, your shipment with 613512690 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613512690\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('2084cb5a-c856-4b1c-8344-b9801141f2f9','41788083391','Sayın BİANCA AGOSTİNHO, 221439268 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221439268\n\nDear BİANCA AGOSTİNHO, your shipment with 221439268 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221439268\n\nBICARGO','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('2087da55-359b-4493-9a29-59b524cc2f6f','905078062550','Sayın yetkili; ÇİÇEK BOLAT adlı müşterinize 59898054 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 14.10.2025 17:31:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ac45678-811d-4aea-b89d-0ec5dbedd607',NULL),
('208b7e17-2c83-4590-98e8-addff6037510','320465188346','517521279 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7010 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517521279\n\nYour shipment with the number 517521279 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7010. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517521279\n\nBICARGO','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('209ba65c-d4ac-43b8-b0d9-3df278c16bef','905306071261','Sayın yetkili; DİLEK KHABİL adlı müşterinize 765729280 nolu gönderinizin machka karyola ve  şifonyer ürünü 7 parça halinde Family grup  adresinizden 11.08.2025 14:00:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('209cfccf-a825-4b7d-8dc1-dafa62cb38a4','1111111111','Sayın FURKAN ULUIŞIK LOJİSTİK, 05.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0385657\nŞifre : 0385657\n			\nBİCARGO','2',NULL,'b03d8b56-5cc7-4605-a50e-54c4eacaf29a'),
('20a124f9-c8cc-4bca-a730-40a57c3c80d0','905331602195','PINAR ÇİÇEK adlı müşterinizin 221970338 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('20a15d2a-1fa1-4f0f-8c16-d14fdebb9f91','1111111111111','Sayın MEHMET BATMAZ , 465194627 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465194627\n\nDear MEHMET BATMAZ , your shipment with 465194627 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465194627\n\nBICARGO','2','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL),
('20a1bcf7-6eb6-422c-b539-b673555d8c34','905461661672','CİHAN TOKAY(K) adlı müşterinizin 644407379 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('20a3ee9d-38ca-4909-a06b-9ceefc508a7b','905331602195','MUSA BEKİM adlı müşterinizin 221624652 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('20a87449-7f71-47b1-98f5-4a8509c59eb4','905454259202','OSMAN KILINÇ adlı müşterinizin 478205168 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('20b485da-dc3f-4917-8cf4-aba70e799bbe','4917622372512','Sayın MUAMMER CANPOLAT, 371376503 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371376503\n\nDear MUAMMER CANPOLAT, your shipment with 371376503 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371376503\n\nBICARGO','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('20b530e6-c94d-4672-99cf-0e63fbaf4979','491578706465','91034652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3936 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91034652\n\nYour shipment with the number 91034652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3936. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91034652\n\nBICARGO','2','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('20c9afd6-bc14-4463-86cf-2a797458a164','905517075149','Sayın yetkili; MURAT KALKAN adlı müşterinize 478981977 nolu gönderinizin 160 lık platin yatak ürünü 1 parça halinde BİCARGO DEPO adresinizden 04.10.2025 14:48:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','12b5cb18-7b59-4361-9c5f-b40222dc7d16',NULL),
('20c9b635-626c-46fa-8e72-32276ab73ba2','4917684656802','Sayın GHASAN ALBUKAİ, 289392695 nolu gönderiniz 10915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/289392695\n\nDear GHASAN ALBUKAİ, your shipment with 289392695 was delivered to you with the delivery code 10915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/289392695\n\n\nBICARGO','1','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL),
('20cb8d30-6ed4-4175-a6b2-4bfc59ceb7c3','905078062550','Sayın yetkili; TUBA BAŞKAŞ SSH adlı müşterinize 598876994 nolu gönderinizin 6 sandalye ssh ürünü 6 parça halinde LİN SANDALYE adresinizden 14.08.2025 15:06:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('20cc9e47-3105-4981-a02e-a78cc7006729','4917681094812','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('20d2c86c-4809-424d-b687-47e0f4262ddf','5444482458','Sayın GAMZE ÖZDEMİR, 319645924 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319645924\n\nDear GAMZE ÖZDEMİR, your shipment with 319645924 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319645924\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('20d32719-ccc0-4dbc-a8ab-57e9cdd21f74','4917623590552','Sayın RABİA DULU, 517278082 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517278082\n\nDear RABİA DULU, your shipment with 517278082 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517278082\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('20d37960-f50d-4ba1-97a1-f7e41d710651','905363385813','HASSAN BEY adlı müşterinizin 976893568 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL),
('20d455a7-b395-43be-b126-90926a622e4a','905336367828','İBRAHİM KARABACAK  adlı müşterinizin 98222175 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL),
('20d5e735-63c4-4800-a2f1-d95a4819087b','33651036902','319212544 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319212544\n\nYour shipment with the number 319212544 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319212544\n\nBICARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('20d9da61-7b52-4502-8b3c-e70f4e78b608','491745765956','Sayın NURCAN ÖZER, 745940979 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745940979\n\nDear NURCAN ÖZER, your shipment with 745940979 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745940979\n\nBICARGO','1','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL),
('20da4da5-d0b5-4654-ba00-8bdbbb0b1be1','905331602195','GÖKHAN ÖZYURT  adlı müşterinizin 2213416 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('20e29c10-992c-4793-9da9-2fdbc07c97c7','491639578000','429340012 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5658 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/429340012\n\nYour shipment with the number 429340012 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5658. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/429340012\n\nBICARGO','1','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL),
('20ec347e-2043-4930-a478-399cd4580e0c','4915255838893','Sayın CAN KUL , 478161304 nolu gönderiniz 1269 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478161304\n\nDear CAN KUL , your shipment with 478161304 was delivered to you with the delivery code 1269. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478161304\n\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('20ec6bee-fd0c-4e74-bd3b-f801d48cf960','905301592882','Sayın yetkili; MUSA ÖZER		 adlı müşterinize 910586114 nolu gönderinizin MARVEL KOLTUK TAKIMI ürünü 3 parça halinde MARVELL\'S SOFA adresinizden 29.01.2025 12:23:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('20f28de9-68dd-42c6-a26c-07e667be2537','905335708965','AAAAAAAAAAAA adlı müşterinizin 248974894 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b094bf7e-153f-4984-b737-f7bdece60165',NULL),
('20f31bc3-7809-4b3a-92cd-918a57ddd09d','33753661602','982824242 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4757 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982824242\n\nYour shipment with the number 982824242 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4757. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982824242\n\nBICARGO','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('20f58949-3581-432a-b4f8-d18ea81737d6','491782203045','Sayın ALEV DOĞRU, 478697529 nolu gönderiniz 5394 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478697529\n\nDear ALEV DOĞRU, your shipment with 478697529 was delivered to you with the delivery code 5394. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478697529\n\n\nBICARGO','1','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('20f93a98-ca38-441c-8557-b20dccd869c0','004917631517696','73574376 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5220 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73574376\n\nYour shipment with the number 73574376 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5220. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73574376\n\nBICARGO','2','5b516169-2e1d-421d-a411-a20956666225',NULL),
('20fbf659-3939-4fe9-925b-0a9eeb56d5c3','4915259738238','Sayın ÜMMÜGÜLSÜM KARAKUŞ SSH , 745967323 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745967323\n\nDear ÜMMÜGÜLSÜM KARAKUŞ SSH , your shipment with 745967323 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745967323\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('20fddc2c-c513-4df9-8483-5bcdb6631355','491726402592','478240909 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3672 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478240909\n\nYour shipment with the number 478240909 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3672. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478240909\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('20fe0929-0a64-4d72-be87-d58170e067d7','33640110601','517901924 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2154 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517901924\n\nYour shipment with the number 517901924 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2154. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517901924\n\nBICARGO','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('20fe2f31-6a9c-4683-a8df-4f9ba599cfad','33782212899','Sayın AYŞE KONDAL, 478971881 nolu gönderiniz 4201 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478971881\n\nDear AYŞE KONDAL, your shipment with 478971881 was delivered to you with the delivery code 4201. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478971881\n\n\nBICARGO','1','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL),
('20fe3e2e-bc51-4a05-b028-330929b96856','905461661672','(K)HÜSAMETTİN CANBOLAT adlı müşterinizin 644469726 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('20fe7130-832c-4ab2-b422-932d463cc76d','33699316720','982837523 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4578 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982837523\n\nYour shipment with the number 982837523 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4578. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982837523\n\nBICARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('21045a6b-efb5-4db2-b24f-5fa25bcac7d5','4917662135635','Sayın MOONBEAM HOME, 412284149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412284149\n\nDear MOONBEAM HOME, your shipment with 412284149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412284149\n\nBICARGO','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('2106641d-8cac-428d-84a6-0c6fc43a5f72','491721561971','ŞÖFÖR İKETİŞİM\n					+905301824880','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('2109d732-8a7b-4d8a-a466-1dc1a0f40b1a','330624632282','Sayın AYHAN AKTAŞ , 982685222 nolu gönderiniz 3770 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982685222\n\nDear AYHAN AKTAŞ , your shipment with 982685222 was delivered to you with the delivery code 3770. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982685222\n\n\nBICARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('210ede59-57d5-4822-9943-deb7f538bea3','905301592882','ABDULLAH ÖZER		 adlı müşterinizin 910594430 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('210ff8de-1894-48eb-a34b-2f613623a449','4915222621206','Sayın SELÇUK SÖNMEZ, 371183095 nolu gönderiniz 3562 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371183095\n\nDear SELÇUK SÖNMEZ, your shipment with 371183095 was delivered to you with the delivery code 3562. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371183095\n\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('211553bf-ae8a-4d5a-8a2a-b609da641248','905363385813','Sayın yetkili; SONER UZUN adlı müşterinize 976680764 nolu gönderinizin SANDALYE ürünü 3 parça halinde SALON KOLTUK adresinizden 25.06.2025 17:11:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('2117f62a-1ac4-489a-9449-cf8ab17eabd5','4917620585657','Sayın SEDA YILMAZ, 371429381 nolu gönderiniz 7346 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371429381\n\nDear SEDA YILMAZ, your shipment with 371429381 was delivered to you with the delivery code 7346. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371429381\n\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('211bbed3-4ad9-4bab-b212-d863c8504daf','32484781672','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('212013ff-7de9-4886-94f0-0d9f4dfb12fc','905304259202','MÜZEYYEN TEYMUROĞLU adlı müşterinizin 478677950 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('2127ed71-67e2-4c85-a36c-2631f3e7f335','491782692542','613510894 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613510894\n\nYour shipment with the number 613510894 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613510894\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('212d7973-67cb-493f-86eb-b1e53593c171','905079358213','Sayın yetkili; MEHMET BAYTOK SSH adlı müşterinize 745253500 nolu gönderinizin SSH AYAK ürünü 1 parça halinde Fatura adresinizden 18.06.2025 16:30:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('212e8538-0da7-4fb4-9903-8f1ac5e210dc','905461661672','DUDU ÖZDEMİR(K) adlı müşterinizin 644754778 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('212fbfb1-833f-4c68-87be-cfe41f7a7ec3','905428209234','AYHAN KOCAKAYA adlı müşterinizin 31979626 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('213013be-cda0-47b9-874b-90c463dae157','31640888503','478693155 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3364 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478693155\n\nYour shipment with the number 478693155 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3364. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478693155\n\nBICARGO','1','a624a844-f729-4653-993f-bd28278f47e5',NULL),
('21387fdd-03b8-4a08-849d-463aba125aad','05539740010','Sayın yetkili; FERHAT SANUÇ adlı müşterinize 011573387 nolu gönderinizin köşe ürünü 4 parça halinde kaan  adresinizden 24.07.2025 16:18:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('213befe2-c204-44b0-be2b-e8d9dfffa5d0','436609207591','Sayın HABİL ŞENER , 982864044 nolu gönderiniz 3575 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982864044\n\nDear HABİL ŞENER , your shipment with 982864044 was delivered to you with the delivery code 3575. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982864044\n\n\nBICARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('2141b18c-836a-4c47-90e4-f688b2b5daae','905336367828','ŞAHİN MUAMMER adlı müşterinizin 982840804 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('2144bbd0-3fab-4e7f-8de7-2842d03e1b36','373737278373','478958383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478958383\n\nYour shipment with the number 478958383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478958383\n\nBICARGO','2','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('21469d03-33fc-41ad-8c92-7cf3648e5af9','4915254879175','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('214d6d1d-0399-4e5e-8d43-e6315b6ea878','32474864705','Sayın ESMERAY ÇOBAN, 428633070 nolu gönderiniz 3895 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428633070\n\nDear ESMERAY ÇOBAN, your shipment with 428633070 was delivered to you with the delivery code 3895. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428633070\n\n\nBICARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('214fa95f-1792-4512-9050-4cc7089e4246','4917632298382','745318139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6954 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745318139\n\nYour shipment with the number 745318139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6954. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745318139\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('2150947e-c54a-4322-b58d-7994d85e8205','905461661672','Sayın yetkili; CİHAN TOKAY(K) adlı müşterinize 644407379 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 23.09.2025 15:29:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('2154a8c3-8485-4087-ae69-ad8477afe189','491729380817','644653229 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644653229\n\nYour shipment with the number 644653229 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644653229\n\nBICARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('21589cec-c252-43f4-9566-3ea19aa9ace4','905079358213','Sayın yetkili; DURMUŞ YÜKSEKTEPE adlı müşterinize 745935889 nolu gönderinizin KING PLATIN 180LIK BAZA SETİ ürünü 4 parça halinde Fatura adresinizden 27.02.2025 14:44:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('215ed4c5-a01d-4323-8fdf-1f11abd8022e','905461661672','DERYA BALİ adlı müşterinizin 644178035 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('21615895-a828-4fac-8a85-886128f1bbd1','4917641453096','Sayın TOLGA KAPLAN, 598463425 nolu gönderiniz 4640 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598463425\n\nDear TOLGA KAPLAN, your shipment with 598463425 was delivered to you with the delivery code 4640. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598463425\n\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('21626110-7401-4b79-83b2-7415d7b1a18f','905333221039','FİRAS MACHANTAT adlı müşterinizin 750125400 nolu gönderisi 49 parça halinde yola çıkmıştır.','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('2164e5c2-524e-4f04-b818-c2cd22f15c95','4915209792574','Sayın    BEKİR, 644567515 nolu gönderiniz 8431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644567515\n\nDear    BEKİR, your shipment with 644567515 was delivered to you with the delivery code 8431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644567515\n\n\nBICARGO','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('2168e160-23f6-4d00-b95b-6f6be4d70a86','905304259202','ZEHRA AŞIK adlı müşterinizin 478243785 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('2169d140-53dc-4690-a774-2832d9a215d5','905335511664','Sayın yetkili; EBRU AKSU adlı müşterinize 371117320 nolu gönderinizin masa sehpa ürünü 5 parça halinde SM Tasarım adresinizden 19.08.2025 15:05:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a5af105-d0c8-46fd-ad7c-0aa1fac82094',NULL),
('216e6f0e-106d-4aa3-b354-960543a14fd2','33608517581','Sayın İBRAHİM AYIK , 449728917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449728917\n\nDear İBRAHİM AYIK , your shipment with 449728917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449728917\n\nBICARGO','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('216f56f6-cb4e-4bcd-8825-2faf5a92eaee','905079358213','Sayın yetkili; BURHAN AZEMİ adlı müşterinize 74594372 nolu gönderinizin KOLTUK TAKIMI  ürünü 3 parça halinde Fatura adresinizden 13.02.2025 23:17:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('216f9ecf-6271-4041-8eb7-3dcd34b52781','49015779002510','Sayın ROBERT HASİMOVOC, 982189682 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982189682\n\nDear ROBERT HASİMOVOC, your shipment with 982189682 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982189682\n\nBICARGO','1','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL),
('216fd010-b540-451d-8348-ee03ac340f18','49117670112264','Sayın SERDAL ÇEPER, 42899153 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42899153\n\nDear SERDAL ÇEPER, your shipment with 42899153 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42899153\n\nBICARGO','2','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('2170b98c-ff59-44d1-84f0-a51ca458859e','905079358213','BELGİZAR GEZİCİ adlı müşterinizin 745173444 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('217c5ddd-6e2f-4ea1-90ad-6271beab905e','905394878216','ALİ ALBAY adlı müşterinizin 517205085 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('217caedc-8491-4594-9403-f3ea69667cc6','33781435091','745656343 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9162 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745656343\n\nYour shipment with the number 745656343 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9162. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745656343\n\nBICARGO','1','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL),
('21850cb2-b324-4834-9cfa-e8086e898fcf','905412810757','SEZGİN- FURKAN ÇULLUK adlı müşterinizin 162571177 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL),
('21863382-3633-4251-8374-709cb39adea9','04917737377373','248764146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248764146\n\nYour shipment with the number 248764146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248764146\n\nBICARGO','2','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL),
('2186a599-a30e-4975-8038-cc28908f6348','905461661672','Sayın yetkili; DERYA BALİ adlı müşterinize 644178035 nolu gönderinizin TRAVERTEN AYAKLI CAM MASA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 18.04.2025 10:59:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('2186c3eb-fa9a-40be-8730-66d48a9a4b1e','491786241769','478319922 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4725 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478319922\n\nYour shipment with the number 478319922 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4725. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478319922\n\nBICARGO','1','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL),
('218874f2-889d-4229-be7d-07fc52180cdb','905517075149','MÜCAHİT SÖYLEMEZ adlı müşterinizin 47842524 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('2188f897-f490-484e-b8d5-c1fd5514ca99','33768690174','221282484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1207 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221282484\n\nYour shipment with the number 221282484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1207. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221282484\n\nBICARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('218e378c-c466-4d0d-a587-26a25377ee08','905075277637','ARZU AKSİ adlı müşterinizin 745817440 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('2193128e-66b9-4bc6-92ae-8f6e7bae0a7f','491733758651','765600734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2564 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765600734\n\nYour shipment with the number 765600734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2564. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765600734\n\nBICARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('219aca1a-67d4-4b81-9548-84c53e22257f','905052681508','Sayın yetkili; FERHAT KARACA adlı müşterinize 504780984 nolu gönderinizin KÖŞE TAKIMI ürünü 6 parça halinde Fatura adresinizden 09.09.2025 11:20:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('21a2930d-9a9c-4f9d-bba1-d760cc404773','905075277637','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin DİOR ŞİFONYER + AYNA + PUF  ürünü 4 parça halinde GARDEROBE adresinizden 02.10.2025 15:01:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('21a2db92-b2fd-4d1a-b9dd-c1dc09cace10','905423036885','Sayın yetkili; ROMARİO adlı müşterinize 920752929 nolu gönderinizin masa mermer ürünü 1 parça halinde Fatura adresinizden 15.10.2025 14:52:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1ca1ce3-2930-4977-a85f-79f092dca21f',NULL),
('21a37cef-b266-43a9-8118-3d4c18daf421','905079358213','ELOUAZGHİ ANAİS  adlı müşterinizin 745879253 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('21ab62e6-7db4-4003-bb9c-c6f1703ebf9d','905331602195','Sayın yetkili; İNAN PALA adlı müşterinize 221210071 nolu gönderinizin Silver sandlaye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:46:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('21ac75d1-a188-478b-91bc-12c57d17ac3d','905079358213','GÜLŞAH KUŞ adlı müşterinizin 745219309 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('21ad144e-cd67-4b86-b720-d36549a8a4a1','905079358213','MAJD KAMSHA adlı müşterinizin 745653378 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('21ae3ec9-fc02-4381-9278-0996169d4f14','04917737377373','Sayın MURAT MAKAS, 248764146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248764146\n\nDear MURAT MAKAS, your shipment with 248764146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248764146\n\nBICARGO','2','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL),
('21ae6e6c-9b4f-4930-acb1-b94c2b28a928','905304259202','SERKAN ÖZBAY adlı müşterinizin 478800752 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('21b4839b-087f-40ac-a6d6-4af8864ec0be','905304259202','BÜLENT ECEVİT DUROĞLU adlı müşterinizin 478368190 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('21b6ce48-43ed-412c-b256-a57e70bd8bc2','4915772639272','Sayın EMİLE ARSLAN, 37142091 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37142091\n\nDear EMİLE ARSLAN, your shipment with 37142091 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37142091\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('21c08d62-793c-4ab8-84f5-a1e452358a70','31625204455','Sayın NESİME BAGCI, 614652730 nolu gönderiniz 4800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614652730\n\nDear NESİME BAGCI, your shipment with 614652730 was delivered to you with the delivery code 4800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614652730\n\n\nBICARGO','1','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL),
('21c1c280-0048-47f2-a186-0adac9d402f7','905059175469','FAZIL İSPANYA adlı müşterinizin 42892944 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('21c2a197-ac0b-4a1c-9111-be3f0ae9330f','33607954368','Sayın YASEF İCEL, 47865598 nolu gönderiniz 4980 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47865598\n\nDear YASEF İCEL, your shipment with 47865598 was delivered to you with the delivery code 4980. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47865598\n\n\nBICARGO','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('21c3bc07-2188-43d1-a147-6d198b0c1110','905517075149','Sayın yetkili; BİRSEN KARADAVUT adlı müşterinize 478403352 nolu gönderinizin masa-sandalye-ortasehpa üst-rutuşboyası ürünü 3 parça halinde acca adresinizden 07.07.2025 16:29:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('21cf4034-b23f-4b6e-9986-30678c3753ba','00491717942160','Sayın MELİKE KOÇ, 735931871 nolu gönderiniz 7775 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735931871\n\nDear MELİKE KOÇ, your shipment with 735931871 was delivered to you with the delivery code 7775. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735931871\n\n\nBICARGO','2','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL),
('21d04ee8-64ee-4590-b98a-fb31dc7ada57','','248618650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8118 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248618650\n\nYour shipment with the number 248618650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8118. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248618650\n\nBICARGO','2','d7dfcf55-ee39-4764-87f9-17c50166c245',NULL),
('21d69975-f0e9-4257-a5fa-9152eb6328eb','905075277637','Sayın yetkili; SULTAN YAŞAR  adlı müşterinize 745105230 nolu gönderinizin VOYAGE KÖŞE  ürünü 4 parça halinde RİXXE  adresinizden 03.09.2025 17:33:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143',NULL),
('21dac8d2-061e-42b8-b6f6-fab5644c49f9','905350617509','SUADA HAMZA  adlı müşterinizin 613725694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('21e24f5e-f70c-4864-8b86-e7542ea61b16','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin konsol masa sehpa ürünü 7 parça halinde Palermo mobilya  adresinizden 30.12.2024 15:47:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('21e604ee-6fcb-4546-8033-c64c34a06ec4','4917631753389','Sayın SONER UZUN, 976680764 nolu gönderiniz 2769 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976680764\n\nDear SONER UZUN, your shipment with 976680764 was delivered to you with the delivery code 2769. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976680764\n\n\nBICARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('21e8a8b9-6e51-4853-a125-965beac87a70','491709668487','İletişim \n					Şöför Uğur Acar +905424435917','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('21ea9734-4e58-4b11-9d8e-0c9a7c39b3b3','491797333588','Sayın TABELA, 412548356 nolu gönderiniz 8426 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412548356\n\nDear TABELA, your shipment with 412548356 was delivered to you with the delivery code 8426. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412548356\n\n\nBICARGO','1','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL),
('21ef6279-fa9e-46aa-b809-d2c435992226','905442774505','HAKİM AZZOUZ adlı müşterinizin 657301470 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('21f2f8cc-9112-43f1-9d0f-0908cb9b52b5','905461661672','ZEKİYE TOPATAN adlı müşterinizin 644877146 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('21f3b92b-5b9e-40d0-8312-3e3071905a5f','905304259202','DİLAVER ULUTAŞ adlı müşterinizin 47836811 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','9016d7f6-7477-4afe-9a6c-22410434be77',NULL),
('21f4c696-76aa-4a6e-9404-62b659aadf93','905517075149','MUHAMMED YUŞA YILDIRIM adlı müşterinizin 478261120 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('2207f9f6-29b0-44ca-af41-826abc932bc0','4915752227857','644637792 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5948 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644637792\n\nYour shipment with the number 644637792 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5948. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644637792\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('220c88df-f586-4c4e-8234-faf4afce305b','491711202605','Sayın ERKAN UYSAL , 982271871 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982271871\n\nDear ERKAN UYSAL , your shipment with 982271871 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982271871\n\nBICARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('220e5d2a-e15b-4217-8def-e41a8508f47a','905365908694','CANSEL YILMAZ adlı müşterinizin 223275516 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL),
('2211688e-62c3-4f1f-87c6-535a2003a149','33606409257','Sayın JALAL ASLAM, 982966360 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982966360\n\nDear JALAL ASLAM, your shipment with 982966360 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982966360\n\nBICARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('2215f02e-338a-4668-baf6-12bd0640fb7e','905363385813','REMZİYE UNAT adlı müşterinizin 976898541 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL),
('22185b74-fe8d-42bd-a43f-ef8519603fcd','905517075149','ALİ DİNAR adlı müşterinizin 478185886 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('221dcc9a-55a4-4e92-b307-94c752c07c54','905368336516','SONGÜL AKKOC adlı müşterinizin 515171044 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('22207db1-d45a-4f36-8b29-8e6fbf4db113','905421855834','HÜLYA MEŞE (SSH) adlı müşterinizin 338882287 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('2221379a-b22f-444a-b1bb-3f5cf95aa5cf','905336367828','Sayın yetkili; SELAMAWİT ESTİFANOS  adlı müşterinize 982495052 nolu gönderinizin Ayna  ürünü 1 parça halinde Comfortlife  adresinizden 21.01.2025 15:43:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('22231a95-697a-4f49-b3fb-ac1dd7a34b37','905331602195','Sayın yetkili; YEŞİM TOPKIRAN adlı müşterinize 221960678 nolu gönderinizin 80-60 cm sehpalar  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 14:36:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('22243df5-e40f-4c92-a097-079217762d1e','905454259202','Sayın yetkili; MİNA ANNABİ adlı müşterinize 478278253 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde PUFFİN adresinizden 09.05.2025 16:18:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('2227b1b9-148b-4089-9929-b736b72a30c0','905517075149','YUSUF HAMZA DALKILINÇ adlı müşterinizin 478423651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('222c14a1-89c4-40b4-85ca-00d4f2a534b0','491775901111','Sayın ARZU ÜNLÜ, 319829855 nolu gönderiniz 9834 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319829855\n\nDear ARZU ÜNLÜ, your shipment with 319829855 was delivered to you with the delivery code 9834. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319829855\n\n\nBICARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('222c36b8-7383-4550-9d06-e8a6d2c6c58d','905335511664','TUĞBA COŞKUN adlı müşterinizin 371672954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('222e4941-cbfd-43dc-9e85-d0b0b8a16e71','4915738317562','İletişim \n					Şöför Uğur Acar +905424435917','2','db01aefa-720b-410d-8344-0672007b060d',NULL),
('22306b9a-d947-469f-bfb5-754693c8e807','905075277637','MURAT ERKUL SSH adlı müşterinizin 745898734 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('2237e04c-7348-4a67-a0b4-943d07a7a670','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin baza+başlık+3adet rollpack yatak ürünü 5 parça halinde indivani yatak adresinizden 24.12.2024 12:55:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('223bd5f2-036f-4af6-aabc-38f942c60a04','4917684399909','745744183 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3998 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745744183\n\nYour shipment with the number 745744183 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3998. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745744183\n\nBICARGO','1','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL),
('223c5dff-3787-4121-b35b-5af7678b5c45','41768248382','Sayın MUKKADIN IBRAHIM, 221941793 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221941793\n\nDear MUKKADIN IBRAHIM, your shipment with 221941793 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221941793\n\nBICARGO','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('223f6791-8f59-463e-9f95-183f803b3e72','05362285629','Sayın FERİDUN BAYER, 959168443 nolu gönderiniz 1906 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/959168443\n\nDear FERİDUN BAYER, your shipment with 959168443 was delivered to you with the delivery code 1906. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/959168443\n\n\nBICARGO','2','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('223f8521-10da-4307-b66d-c3d42a86033a','491748888386','745127322 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3417 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745127322\n\nYour shipment with the number 745127322 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3417. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745127322\n\nBICARGO','1','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL),
('2241b51a-5f53-4a58-9c34-2ac305868791','905313340045','YASEMİN ÖZKILINÇ adlı müşterinizin 437819954 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('22428697-54a2-4838-a5ac-c17ef1ca72c8','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin koltuk 3+3+1 ürünü 5 parça halinde nirvana koltuk adresinizden 16.09.2025 12:50:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('224c06a9-c78d-4c18-a362-1cbda38c772f','905079358213','Sayın yetkili; AYHAN İÇEN adlı müşterinize 745813483 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü null parça halinde Fatura adresinizden 09.07.2025 17:29:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('2256b07c-f1ee-4efb-a6af-a7c000f90b33','31627024701','657784193 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6596 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657784193\n\nYour shipment with the number 657784193 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6596. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657784193\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('2258117a-4413-4be2-9960-74e7cd7e70d1','491724221941','221278187 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10913 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221278187\n\nYour shipment with the number 221278187 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10913. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221278187\n\nBICARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('225bc55f-4b47-4a78-852e-9c2e0e2865e2','905461661672','BEYZA ÇALIK adlı müşterinizin 644644115 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('2260dcb3-6d7c-44c2-b820-83a19afd01bb','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin DELUXE YATAK 100X200 2 ADET  ürünü 2 parça halinde Fatura adresinizden 06.05.2025 12:56:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('2265755d-13b6-4638-980a-458c23a02025','491627758662','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('22662ad1-19b0-417f-93b4-6e0b940c506a','905335511664','Sayın yetkili; HALİLOVİÇ ELMA adlı müşterinize 371104317 nolu gönderinizin KERAMİK MASA + SEHPA ürünü 6 parça halinde Seramik Masa Üreticisi adresinizden 11.07.2025 14:48:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('22694f26-6e5c-41ab-abf9-cfbe626ecb90','4916094922910','Sayın DİE FABRİK OUTLET, 223385669 nolu gönderiniz 6950 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223385669\n\nDear DİE FABRİK OUTLET, your shipment with 223385669 was delivered to you with the delivery code 6950. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223385669\n\n\nBICARGO','1','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL),
('226c3e1d-5fd4-4a7f-a024-89a154fea935','491774646467','Sayın TAYFUN TATLIGÜN, 8087036 nolu gönderiniz 10930 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/8087036\n\nDear TAYFUN TATLIGÜN, your shipment with 8087036 was delivered to you with the delivery code 10930. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/8087036\n\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('2271f61d-7891-4d4a-82b8-63b8ed32bea0','905325000478','GÖKHAN YETİŞ adlı müşterinizin 41295798 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3977a5d5-74d4-4a83-924b-634b068065a2',NULL),
('2272a41d-2524-47c5-b276-8b9f5f472f78','4915772639272','Sayın EMİLE ARSLAN, 37142091 nolu gönderiniz 2027 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37142091\n\nDear EMİLE ARSLAN, your shipment with 37142091 was delivered to you with the delivery code 2027. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37142091\n\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('22773248-4717-4741-8461-a567c8666d78','4915758009049','Sayın MUSTAFA IBRYAMOV, 745907299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745907299\n\nDear MUSTAFA IBRYAMOV, your shipment with 745907299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745907299\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('22779afe-5491-41bc-a0b6-4a7be287d651','491787320573','Sayın FERHAD MORİD, 598188038 nolu gönderiniz 8879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598188038\n\nDear FERHAD MORİD, your shipment with 598188038 was delivered to you with the delivery code 8879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598188038\n\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('2278e19a-d7d7-483b-96da-6e934f49a38f','','319835776 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9393 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319835776\n\nYour shipment with the number 319835776 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9393. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319835776\n\nBICARGO','2','4598b25d-5bcc-42b3-8fc2-57baa395b0d3',NULL),
('227a31f0-b148-48a5-bdaa-cbc480fe360a','9054439559150','NURKAN AŞIR adlı müşterinizin 614868518 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('227ad9cd-d002-4b25-821e-81612ee5f357','905331602195','Sayın yetkili; JEUNE ROSE DARLYNE adlı müşterinize 221892935 nolu gönderinizin Balat sandalye  ürünü 4 parça halinde ALP SANDALYE adresinizden 27.02.2025 13:13:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('227c4c8f-47cb-45ef-b94e-ed819bb6eb85','4915560564579','Sayın VENERA RUSTEMİ, 817838997 nolu gönderiniz 8713 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817838997\n\nDear VENERA RUSTEMİ, your shipment with 817838997 was delivered to you with the delivery code 8713. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817838997\n\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('227fea06-0985-40e9-9d49-f65b563d7ae4','905059175469','SERDAL ÇEPER adlı müşterinizin 42899153 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('22808787-f877-40cd-a9f5-8cab4f039285','33625625960','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('22853e9f-8824-487e-97ec-c9375e010f1b','905350617509','VLORİNA BERİSHA adlı müşterinizin 613378961 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('22875125-f136-4caf-8fa5-3074a81c3f3e','33660617145','Sayın MERVE KARADAVUT, 437233015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233015\n\nDear MERVE KARADAVUT, your shipment with 437233015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437233015\n\nBICARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('228e4a81-45a5-4f3d-b132-3040a9847d65','4917779666161','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','2','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('228f6053-abaa-4089-9562-c452b2d25fa6','4915141934259','437551575 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1827 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437551575\n\nYour shipment with the number 437551575 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1827. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437551575\n\nBICARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('22904133-9126-498e-8917-5390da045857','491624296602','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('2292d500-2f89-402f-98e7-7d2cc93a06df','905510396989','YUSUF NAVRUZ  adlı müşterinizin 319141495 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('2293e7aa-e280-4547-ae37-7ccec596dd83','905075277637','ERDİNÇ GENÇER adlı müşterinizin 745262490 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL),
('229512d6-a248-4f27-893c-f387d339c63d','05417912611','644407379 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10183 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644407379\n\nYour shipment with the number 644407379 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10183. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644407379\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('22954e7e-a019-408e-be37-7213f062582e','31685834791','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('229673eb-6873-49a5-8486-2333ccd08496','491749868075','Sayın SILA MARKET, 231712628 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231712628\n\nDear SILA MARKET, your shipment with 231712628 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231712628\n\nBICARGO','1','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL),
('229e54e3-5ebb-4324-a0f7-e416fe420436','905331602195','BERFİN UZUNER  adlı müşterinizin 221900850 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('22aa0c7e-38f4-414e-81ea-3ed05da51d66','32484930252','517895646 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5894 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517895646\n\nYour shipment with the number 517895646 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5894. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517895646\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('22aa4518-ffa8-4b17-860a-991955af5723','491625851348','Sayın  BİRSEN DÜZ, 428990953 nolu gönderiniz 4572 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428990953\n\nDear  BİRSEN DÜZ, your shipment with 428990953 was delivered to you with the delivery code 4572. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428990953\n\n\nBICARGO','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('22aea82f-e8d3-4432-9261-e2b636e575c7','905075277637','Sayın yetkili; FATMA BİLGİN adlı müşterinize 745353139 nolu gönderinizin VİTRA 120LİK BAZA SET  ürünü 10 parça halinde Fatura adresinizden 07.02.2025 14:28:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('22b05018-9bc0-4d79-a23a-df1bdb1dc304','310650615822','Sayın GALİP YAYLALI, 338286320 nolu gönderiniz 4805 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338286320\n\nDear GALİP YAYLALI, your shipment with 338286320 was delivered to you with the delivery code 4805. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338286320\n\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('22b0d782-bf92-4b1f-a369-517a26ed5773','33635914929','Sayın SEZER HATUN, 745249081 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745249081\n\nDear SEZER HATUN, your shipment with 745249081 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745249081\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('22b206bc-c185-41c6-8bba-a2ecf0296885','4369914178102','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('22bd2f1d-b7ba-4b59-b272-a35bcb29b1ec','905335511664','AHMET AĞIRMAN adlı müşterinizin 371413703 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('22c17691-d571-44c4-a2ec-cf8b06963b24','4917681126034','Sayın MUSTAFA AZAMİ , 786668251 nolu gönderiniz 7051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786668251\n\nDear MUSTAFA AZAMİ , your shipment with 786668251 was delivered to you with the delivery code 7051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786668251\n\n\nBICARGO','1','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('22c2a63b-8d3e-4878-8538-4e3ea8d326ad','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PETEK OVAL BERJER  ürünü 1 parça halinde Fatura adresinizden 29.08.2025 16:20:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('22c6cf6a-b635-4896-88fc-6042ceba6c5f','905313340045','MARİGLEN SHKEMBİ adlı müşterinizin 437431907 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('22c8ccaf-a90f-4db5-9d6f-f772821a1f7d','4917623129728','Sayın VELİ ŞAHİN, 598168850 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598168850\n\nDear VELİ ŞAHİN, your shipment with 598168850 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598168850\n\nBICARGO','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('22c9cb33-e6e3-4c35-8fe8-1bda9d8b59de','491774646467','Sayın TAYFUN TATLIGÜN, 8087036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8087036\n\nDear TAYFUN TATLIGÜN, your shipment with 8087036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/8087036\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('22cca788-7c34-414d-a0ba-cdbaca8e2b1d','491736564566','Sayın ERHAN ALP, 808538086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808538086\n\nDear ERHAN ALP, your shipment with 808538086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808538086\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('22cd3258-85c9-4a31-8096-ae4094ff9272','4917620554139','Sayın KADİR SÜLÜN, 428696149 nolu gönderiniz 4780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428696149\n\nDear KADİR SÜLÜN, your shipment with 428696149 was delivered to you with the delivery code 4780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428696149\n\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('22ce7fd4-0c8d-4cbe-afc5-b97e3be7a7c6','905321608709','TURGAY adlı müşterinizin 248240825 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('22ceb333-177b-4d88-975a-3ffd15fcf709','905079047428','Sayın yetkili; YAVUZ GENÇ  adlı müşterinize 449801040 nolu gönderinizin Baza başlık yatak ürünü 4 parça halinde Fatura adresinizden 15.11.2024 11:05:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('22d39480-8aeb-4b09-b3e6-1ccd28f29279','491639801426','412395565 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412395565\n\nYour shipment with the number 412395565 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412395565\n\nBICARGO','1','a451f68c-dd26-4757-af49-72fa26f23f80',NULL),
('22d45454-9773-465b-8a6d-b06b78d5e6f5','33699946659','478403794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1009 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478403794\n\nYour shipment with the number 478403794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1009. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478403794\n\nBICARGO','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('22d4fc29-53ef-4576-9056-2a550822ecb8','905461661672','NAZIM KORKMAZER adlı müşterinizin 644771270 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('22d5dda3-7529-4317-b1f4-1b375ae38a49','905331602195','GÜLAY KIZIL adlı müşterinizin 221598709 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('22d81dff-ecf1-4b02-9db6-4fa2e04be37e','905325000478','EURO MOBEL adlı müşterinizin 412218985 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','835863ce-70ff-4b53-b486-a32e6936cae4',NULL),
('22dfd2a7-0ca8-4e87-a89f-634b60b04d11','4915145859337','750728735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6157 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750728735\n\nYour shipment with the number 750728735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6157. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750728735\n\nBICARGO','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('22e0adc2-f713-45b0-b88a-c715f10ddd96','4917662627829','5312778 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6074 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5312778\n\nYour shipment with the number 5312778 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6074. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/5312778\n\nBICARGO','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('22e596a4-798a-4195-8440-f76d822d3a5e','33629828903','Sayın CAMELİA BESSAL, 748663171 nolu gönderiniz 10173 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/748663171\n\nDear CAMELİA BESSAL, your shipment with 748663171 was delivered to you with the delivery code 10173. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/748663171\n\n\nBICARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('22e91271-e17d-4e44-b776-34342c77ba47','31641672960','İletişim \n					Şöför Murat : +905321616048','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('22eb0ad3-5d02-4537-9a8b-3aebe28181e0','4915124276955','Sayın ABUZER TEKCE, 319232330 nolu gönderiniz 7344 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319232330\n\nDear ABUZER TEKCE, your shipment with 319232330 was delivered to you with the delivery code 7344. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319232330\n\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('22ebc0ba-7990-4b83-a2db-c0a56c1d5914','905454259202','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 478342417 nolu gönderinizin koltuk takımı-yatak-sehpa ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.05.2025 15:24:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('22f47401-f684-4b6a-8a2d-b9b469980f11','905321608709','ZEKİ ASLANER adlı müşterinizin 248799636 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL),
('22f76521-be2b-41c7-8505-f9fad7bd5ddd','491749320466','Sayın EMEL YILDIZ, 478644533 nolu gönderiniz 2216 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478644533\n\nDear EMEL YILDIZ, your shipment with 478644533 was delivered to you with the delivery code 2216. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478644533\n\n\nBICARGO','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('22f76ae6-2c42-435c-a684-000ef82d3e7b','05388618969','Sayın yetkili; ELİZA KADRİ adlı müşterinize 786895232 nolu gönderinizin Sandalye  ürünü 8 parça halinde Ayka chair  adresinizden 12.08.2025 17:02:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('22f97a12-621e-4c1e-a14a-de8cfcdfd1a5','4917623256596','Sayın MUSTAFA ÜNLÜSOY, 478479612 nolu gönderiniz 3494 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478479612\n\nDear MUSTAFA ÜNLÜSOY, your shipment with 478479612 was delivered to you with the delivery code 3494. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478479612\n\n\nBICARGO','1','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL),
('22fa2577-60df-42c0-a17f-6e61a0a9d4e8','4915224134737','Sayın DERYA ERDOĞMUŞ SSH, 437527391 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437527391\n\nDear DERYA ERDOĞMUŞ SSH, your shipment with 437527391 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437527391\n\nBICARGO','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('22fb9439-4418-4f23-aebd-a6de8b78c896','4917631212460','Sayın SEDA KURTDİNÇEL, 745431846 nolu gönderiniz 4909 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745431846\n\nDear SEDA KURTDİNÇEL, your shipment with 745431846 was delivered to you with the delivery code 4909. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745431846\n\n\nBICARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('22fdab69-64fb-4aae-b1b8-5ca09386a372','32485863945','Sayın HİLAL YAVUZ, 982194447 nolu gönderiniz 8922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982194447\n\nDear HİLAL YAVUZ, your shipment with 982194447 was delivered to you with the delivery code 8922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982194447\n\n\nBICARGO','1','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL),
('2300d9ca-2c1f-4bd6-a371-0580f34de23a','905079358213','AYŞE adlı müşterinizin 745766580 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL),
('2302033d-5721-4baa-8925-d16e9376b3db','905394878216','GAMZE CAPALBO adlı müşterinizin 517147933 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL),
('23022f18-2daf-4a6c-9691-5c627b17a932','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin sandalye ürünü 6 parça halinde MASAMI adresinizden 28.08.2025 17:47:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('23085166-dbe5-4711-8278-e15873c4fdf3','33660711568','Sayın NURGÜL ÖZER, 221191139 nolu gönderiniz 9930 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221191139\n\nDear NURGÜL ÖZER, your shipment with 221191139 was delivered to you with the delivery code 9930. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221191139\n\n\nBICARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('2310b162-8356-4e47-83a4-233ec58afc8f','905335511664','MAGDALENA DELİJANOVA adlı müşterinizin 371521572 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('231185b8-1a9d-41bf-8d61-1cfb947904b6','905454259202','GÜL-MURAT AVCU adlı müşterinizin 478449021 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('2313f238-8e55-499b-8885-5be364aea075','491772656565','Sayın PİPET, 248284003 nolu gönderiniz 10576 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248284003\n\nDear PİPET, your shipment with 248284003 was delivered to you with the delivery code 10576. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248284003\n\n\nBICARGO','1','acc18069-a61f-4cc1-b29c-0024e5408038',NULL),
('2315c03c-df54-4c13-a21e-3b775cd5be0a','905517075149','TUĞBA AKTAŞ adlı müşterinizin 478687899 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('2317be15-aaa1-44cc-88f3-060c1cdcf68f','4915906114014','910187142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910187142\n\nYour shipment with the number 910187142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910187142\n\nBICARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('231b7a48-fea6-499f-a8d3-3240298dfa2c','905454259202','Sayın yetkili; MAHMUT KAYA adlı müşterinize 478705604 nolu gönderinizin 2 ADET KANEPE VE SEHPALAR ürünü 4 parça halinde çelikbey inegöl depo adresinizden 05.01.2025 16:52:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('231cb6c2-f392-4ee0-8a68-40648415b3b6','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin 3+3+1+1 YATAK ODASI  ürünü 4 parça halinde Comfortlife  adresinizden 13.11.2024 15:45:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('231e48bb-2151-438b-a820-3aabaff8ad8e','01737526626','Sayın GALİNA KAMERER , 613499620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613499620\n\nDear GALİNA KAMERER , your shipment with 613499620 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613499620\n\nBICARGO','2','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('2326c6c9-b95d-4fc7-bc95-e079087ad1dd','491795637471','Sayın MEHMET SARI, 371820872 nolu gönderiniz 2197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371820872\n\nDear MEHMET SARI, your shipment with 371820872 was delivered to you with the delivery code 2197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371820872\n\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('2330f9ed-c4c0-4cec-9c3e-16e480c80e05','905301592882','Sayın yetkili; SELCAN ALTINSOY adlı müşterinize 910479941 nolu gönderinizin YATAK  ürünü 1 parça halinde İNBEDDİNG YATAK adresinizden 29.01.2025 12:45:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('23319185-dc44-457d-bcde-a60815c16217','31687211172','478681299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10348 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478681299\n\nYour shipment with the number 478681299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10348. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478681299\n\nBICARGO','1','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('2335f644-9a36-475b-b4a7-d1eff6fccd2d','905079358213','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin FRİDA KOLTUK TAKIMI  ürünü 4 parça halinde RİXXE  adresinizden 10.06.2025 14:02:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('233a05e4-782f-406d-a756-f6cdbd87b6ff','32485188062','517887763 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2306 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517887763\n\nYour shipment with the number 517887763 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2306. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517887763\n\nBICARGO','1','16c1502b-604e-4738-a2f1-13c522febb96',NULL),
('233ad95e-b6d1-4d5e-a976-3250f8e0d76e','004917663208908','Sayın , 248573438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248573438\n\nDear , your shipment with 248573438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248573438\n\nBICARGO','2','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL),
('233d439a-e3a7-4dba-8503-f198ec3ac600','905421855834','GÜLCAN İNCE adlı müşterinizin 33850305 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('233fba19-1c12-4983-9253-4f4177dc8c94','9054439559150','BURAK TÜRKEŞ adlı müşterinizin 614419362 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('234396ae-e6e6-4cc1-bded-fb904f34836e','4917630122956','735159660 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8290 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735159660\n\nYour shipment with the number 735159660 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8290. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735159660\n\nBICARGO','1','406ebbb4-13b5-4567-9950-1d118159195d',NULL),
('23475ce6-127d-48b6-be8a-0b824aa8f5f8','491627758662','Sayın FİRAS MACHANTAT, 750125400 nolu gönderiniz 5222 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750125400\n\nDear FİRAS MACHANTAT, your shipment with 750125400 was delivered to you with the delivery code 5222. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750125400\n\n\nBICARGO','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('234af0f5-7ea4-4540-8abe-8669a3c4eedf','4917621610242','Sayın SEMA KUZULUK, 644653549 nolu gönderiniz 6956 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644653549\n\nDear SEMA KUZULUK, your shipment with 644653549 was delivered to you with the delivery code 6956. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644653549\n\n\nBICARGO','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('234f990e-7e67-4e80-a554-aa478c14b374','905059175469','ABDULKADİR AKYURT adlı müşterinizin 428851627 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('23565b54-b5fb-40e4-a282-481b2eeaac65','01794421633','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','2','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('235c7e75-da0d-4216-853d-d0f537ab5288','905454259202','BERİVAN TİNTAŞ adlı müşterinizin 478994871 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('235cfe85-3311-490c-976a-d0a94f3af5e3','31641319611','Sayın HÜLYA MEŞE (SSH), 338882287 nolu gönderiniz 5268 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338882287\n\nDear HÜLYA MEŞE (SSH), your shipment with 338882287 was delivered to you with the delivery code 5268. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338882287\n\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('235d26a2-651a-455c-b8e8-f15d811a6a6d','905335511664','MERVE DEĞİRMENCİ adlı müşterinizin 371665826 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('235d52fc-2c12-4fc6-85bf-fcf2f1c9c547','41765655638','126649227 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7375 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126649227\n\nYour shipment with the number 126649227 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7375. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126649227\n\nBICARGO','1','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL),
('235d6779-17de-4eba-a186-7418ef1fca52','905325998198','MUHAMMER SARI adlı müşterinizin 614345013 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL),
('235e1b46-212a-473c-a06e-cb6022ba9e83','905075277637','YUSUF ALAN adlı müşterinizin 745130019 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('2361a4e1-962d-494b-ba06-d9f4b949e38a','905331602195','Sayın yetkili; AİCHEH EL-KATİB adlı müşterinize 221416475 nolu gönderinizin Traverten sehpa ürünü 2 parça halinde Fatura adresinizden 02.01.2025 12:24:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('23621224-4dc1-4e86-81fa-1f6deae87cd0','33749843814','644783664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10159 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644783664\n\nYour shipment with the number 644783664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10159. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644783664\n\nBICARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('2364175d-cc19-4fef-a60a-74ede9f99c7e','491626393170','Sayın TUĞBA GÜLSEVEN, 64434778 nolu gönderiniz 9933 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64434778\n\nDear TUĞBA GÜLSEVEN, your shipment with 64434778 was delivered to you with the delivery code 9933. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64434778\n\n\nBICARGO','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('236e8d77-ba81-40ba-a130-9a651e3865c8','31648870746','319897198 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8077 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319897198\n\nYour shipment with the number 319897198 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8077. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319897198\n\nBICARGO','2','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL),
('2370cfaa-19bb-40b0-8aa1-ac436db0b0ba','436601893040','Sayın VOLKAN CELİK, 515785688 nolu gönderiniz 6892 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515785688\n\nDear VOLKAN CELİK, your shipment with 515785688 was delivered to you with the delivery code 6892. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515785688\n\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('237a728d-8cf9-4512-bb5f-957aba67e521','33787053460','Sayın EMRAH ERAYDIN, 127395599 nolu gönderiniz 9254 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127395599\n\nDear EMRAH ERAYDIN, your shipment with 127395599 was delivered to you with the delivery code 9254. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127395599\n\n\nBICARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('237d4973-602d-46db-973c-949241a0cfbc','4915566183812','Sayın RAMAZAN HAVAÇEKEN(K), 644879098 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644879098\n\nDear RAMAZAN HAVAÇEKEN(K), your shipment with 644879098 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644879098\n\nBICARGO','2','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('23804a72-9550-4494-b356-9aa30f67e2b3','491634192330','Sayın SALİH KAHRAMAN, 803441454 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803441454\n\nDear SALİH KAHRAMAN, your shipment with 803441454 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/803441454\n\nBICARGO','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('23819e08-b917-44d5-8f56-061a4be2bc5f','31687397547','478702716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5580 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478702716\n\nYour shipment with the number 478702716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5580. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478702716\n\nBICARGO','1','34998387-c573-429b-a68a-d13a844cfc40',NULL),
('23854309-77b8-47ed-b89c-6008e3ff6160','905075277637','Sayın yetkili; ÖZGÜR SEDAT YAMALAK adlı müşterinize 74513098 nolu gönderinizin tekli ürünü 1 parça halinde Fatura adresinizden 20.12.2024 16:01:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('23857a71-248e-43b2-9de3-9102359eece3','4917661423024','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('2387196a-a554-4ab1-9b32-b135fd8b30a7','4333635914929','Sayın KECKİN GÜLÜZAR, 449921347 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449921347\n\nDear KECKİN GÜLÜZAR, your shipment with 449921347 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449921347\n\nBICARGO','2','72595593-1c70-4451-8d5d-15322ee88f0f',NULL),
('2388a392-8615-4c4e-8c4e-7245a1f2134f','491726549948','Sayın ABDULKADİR AKYURT, 428851627 nolu gönderiniz 8860 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428851627\n\nDear ABDULKADİR AKYURT, your shipment with 428851627 was delivered to you with the delivery code 8860. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428851627\n\n\nBICARGO','2','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('23896cfe-7b36-4fa4-9f4d-b7c08a23e384','905306071261','Sayın yetkili; YOZLEM MİNCHEVA adlı müşterinize 765564339 nolu gönderinizin 6 adet sandalye  ürünü 3 parça halinde Masami  adresinizden 30.09.2025 14:45:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('238ab85d-d6c1-4d77-a236-8e0a00f35169','905075277637','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MERMER DESEN MASA  ürünü 4 parça halinde GÜMÜŞ MASA adresinizden 18.06.2025 15:33:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('238ad84b-9332-49a0-9799-87644bb0214e','31681413524','Sayın HİLAL YILDIZ-MERT YETGİN, 221440431 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221440431\n\nDear HİLAL YILDIZ-MERT YETGİN, your shipment with 221440431 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221440431\n\n\nBICARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('238b7f82-e659-4b8a-bc80-a161de43f1ec','905510396989','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin PRADA MASA 6 SANDALYE ürünü 5 parça halinde SERBEST MOB adresinizden 13.05.2025 11:22:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('238d2d62-bb61-487c-be16-032751433369','33664036278','Sayın ONUR ÖZER, 478733242 nolu gönderiniz 8345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478733242\n\nDear ONUR ÖZER, your shipment with 478733242 was delivered to you with the delivery code 8345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478733242\n\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('238ddf10-2465-43bc-a026-d95f53873218','436503555735','Sayın SUADA HAMZA , 613990020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613990020\n\nDear SUADA HAMZA , your shipment with 613990020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613990020\n\nBICARGO','2','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('239125f0-0fac-4091-88ca-2134bb81beef','41782402516','Sayın FATEMEH HOSSAİNİ, 112787965 nolu gönderiniz 10168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/112787965\n\nDear FATEMEH HOSSAİNİ, your shipment with 112787965 was delivered to you with the delivery code 10168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/112787965\n\n\nBICARGO','1','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('2391c188-3252-45a6-9bd9-3f85094e75b6','905331602195','Sayın yetkili; SEYİT GENÇALİOĞLU  adlı müşterinize 221476651 nolu gönderinizin Milas masa 90*160 ürünü 3 parça halinde Fatura adresinizden 08.01.2025 11:22:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('23976b2e-a9a7-49e2-91d9-75aba96b3a27','491634613400','Sayın SİDAR AKDENİZ, 428178028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428178028\n\nDear SİDAR AKDENİZ, your shipment with 428178028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428178028\n\nBICARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('239ba5b3-bbb5-443c-8675-4fe0b66a0282','905335511664','Sayın yetkili; ELÇİN ÖZDEMİR adlı müşterinize 371860514 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 10.04.2025 12:17:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('239fdf94-c1c8-4ccc-b7d2-188ca3fafc1a','905304259202','SİNAN YILDIZ adlı müşterinizin 478209702 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','22239f89-5592-49c8-b2c4-dc804b06b788',NULL),
('23a29a97-e849-4a02-bd46-79567192ba0c','905075277637','ÜNAL KÖR  adlı müşterinizin 745660870 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('23a5449e-1ba4-46b0-a0eb-d2dcb75be255','905356395415','MURAT  adlı müşterinizin 163548367 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL),
('23a54ea4-3fb3-49fd-8ce5-1f3803e1dfc9','905442774505','MERVE ÖZÇOBAN adlı müşterinizin 657192716 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('23a8efd7-14f8-459a-b6c7-24e6d00d65dc','05305275922','Sayın HALİL ÖZDEMİR, 478138166 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478138166\n\nDear HALİL ÖZDEMİR, your shipment with 478138166 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478138166\n\nBICARGO','2','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('23a90323-adfc-4695-8008-635653cc6857','33699946659','478428380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1823 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478428380\n\nYour shipment with the number 478428380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1823. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478428380\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('23af5ba7-faa4-428b-8190-49787aeefaef','905461661672','MURAT YILDIZ  adlı müşterinizin 644481653 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('23b05da5-a335-47b3-9529-de524130cd90','905461661672','Sayın yetkili; BEYTULLAH AKSOY adlı müşterinize 644826911 nolu gönderinizin MASA VE SEHPA AYAĞI ürünü 3 parça halinde Fatura adresinizden 07.05.2025 14:45:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('23b0edaa-4a10-400f-a43f-9b8bc2fc7a4a','33630048786','Sayın AYHAN ATEŞ, 982979874 nolu gönderiniz 6210 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982979874\n\nDear AYHAN ATEŞ, your shipment with 982979874 was delivered to you with the delivery code 6210. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982979874\n\n\nBICARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('23b119b8-cb43-4736-b325-0122632d2cf1','05305840234','Sayın ESRA ELİŞ, 428704278 nolu gönderiniz 2764 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428704278\n\nDear ESRA ELİŞ, your shipment with 428704278 was delivered to you with the delivery code 2764. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428704278\n\n\nBICARGO','2','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('23b80d4f-3cbf-493d-83c0-6e8120b8147a','41768446429','Sayın JAFARİ SAYED OMİD, 449448008 nolu gönderiniz 6191 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449448008\n\nDear JAFARİ SAYED OMİD, your shipment with 449448008 was delivered to you with the delivery code 6191. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449448008\n\n\nBICARGO','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('23bb01bb-08e8-4ab7-b237-27cae243f2bc','491797358234','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('23bd6b0a-059b-4493-b0b2-3a72c9e7472e','33627391444','221407228 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1621 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221407228\n\nYour shipment with the number 221407228 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1621. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221407228\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('23c1fc08-d7d0-43af-ad46-b50a40d2700e','491773713394','Sayın MUSA ÖZER		, 910586114 nolu gönderiniz 3432 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910586114\n\nDear MUSA ÖZER		, your shipment with 910586114 was delivered to you with the delivery code 3432. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910586114\n\n\nBICARGO','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('23c23b03-8688-4c85-97a4-e8013baaebc3','27293030330','Sayın MEHMET ALİ ÇAKIROĞLU , 223744518 nolu gönderiniz 8199 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223744518\n\nDear MEHMET ALİ ÇAKIROĞLU , your shipment with 223744518 was delivered to you with the delivery code 8199. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223744518\n\n\nBICARGO','2','1f667c31-0a45-4450-be98-281039258085',NULL),
('23c2e777-3e21-4b43-b863-8c0047eeb54a','4917662135635','ŞÖFÖR NUMARASI\n					+905467896981','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('23c5c5b7-edeb-4285-99ce-ffadd3226adb','33607954368','Sayın YASEF İCEL, 478978353 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478978353\n\nDear YASEF İCEL, your shipment with 478978353 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478978353\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('23c65f54-7e67-44bb-a2cc-c1f9c9c08e10','36363737364','ŞOFÖR\n					ADNAN DURSUN :+905354622027','2','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('23c80003-4444-4165-a9db-ed033584b215','491724542171','644282587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7849 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644282587\n\nYour shipment with the number 644282587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7849. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644282587\n\nBICARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('23d0ae1f-6deb-410c-b55b-dd6785fb8000','4917621293199','Sayın TUBA BALTA, 675902808 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675902808\n\nDear TUBA BALTA, your shipment with 675902808 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675902808\n\nBICARGO','2','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('23d46015-dcfe-40c5-ae7c-3f608f950d7e','491766044656','Sayın FATMA ÜNSAL, 74565294 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74565294\n\nDear FATMA ÜNSAL, your shipment with 74565294 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74565294\n\nBICARGO','2','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL),
('23d58816-655b-4c71-af00-7848c9adcd72','905075277637','Sayın yetkili; EMRE YILMAZ adlı müşterinize 745884226 nolu gönderinizin TOFİ KÖŞE TAKIMI + ORTA SEHPA  ürünü 5 parça halinde VAAV adresinizden 28.04.2025 14:39:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('23d7ca5a-c733-48b2-9da1-5fda6bd7fbe6','905318109098','HÜLYA GÜNDOĞDU adlı müşterinizin 455568872 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL),
('23dae45e-c3cf-4c48-91af-8a9164e84c17','905075277637','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin SEHPA ÜST  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('23df9a22-7652-460f-91fd-c35560a6a2dd','905313340045','MİRAÇ SAKAR adlı müşterinizin 437969799 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('23e037f2-690b-42df-8654-b73cdf39f745','491783971272','Sayın HARUN UZUN, 745519015 nolu gönderiniz 7387 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745519015\n\nDear HARUN UZUN, your shipment with 745519015 was delivered to you with the delivery code 7387. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745519015\n\n\nBICARGO','1','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL),
('23e0c5cd-71d2-4592-a251-b7078036e9aa','33678270339','Sayın OSMAN BEY, 657405652 nolu gönderiniz 10604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657405652\n\nDear OSMAN BEY, your shipment with 657405652 was delivered to you with the delivery code 10604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657405652\n\n\nBICARGO','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('23e8190c-7efe-4216-95f9-525e5f4b98cd','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin TV ÜNİTESİ ürünü 2 parça halinde SENS DİZAYN adresinizden 26.09.2025 16:35:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('23e9ec99-c6d5-4a22-87de-d0795c986eda','905517075149','Sayın yetkili; KEVSER KAYA adlı müşterinize 478983907 nolu gönderinizin kendi ürünleri halı vs ürünü 6 parça halinde Fatura adresinizden 05.08.2025 14:05:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('23eaaf99-289c-4a4f-82f7-5ea518a71a3d','491732013160','Sayın NERMİNA SKENDERİ, 371749484 nolu gönderiniz 2143 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371749484\n\nDear NERMİNA SKENDERİ, your shipment with 371749484 was delivered to you with the delivery code 2143. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371749484\n\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('23ebe83d-aebc-4cba-b8e0-4d1912d44e4a','4917663870920','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('23f22cb4-f69c-4439-af4b-c2d7c1b2bc66','4917620554139','Sayın KADİR SÜLÜN, 428696149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428696149\n\nDear KADİR SÜLÜN, your shipment with 428696149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428696149\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('23f68f3d-dd67-46e9-8e69-2395d14b1a6d','33761054646','Sayın HAKAN YAZICIOĞLU, 478681830 nolu gönderiniz 8309 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478681830\n\nDear HAKAN YAZICIOĞLU, your shipment with 478681830 was delivered to you with the delivery code 8309. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478681830\n\n\nBICARGO','1','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL),
('23fa8cb8-bc6f-43e0-b930-b11491b70999','905539740010','Sayın yetkili; EMRE KIZIL ALMANYA SSH adlı müşterinize 011222896 nolu gönderinizin 6 adet 3 kutu ürünü 3 parça halinde BULKA SANDALYE adresinizden 29.08.2025 12:41:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('23fbb9f8-4d8b-4ae8-b426-376dbd06b33a','33660617145','437998346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2015 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437998346\n\nYour shipment with the number 437998346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2015. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437998346\n\nBICARGO','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('2405c398-85d2-46b0-8c19-2b29e12f35c8','905461661672','AHMET OKUTAN adlı müşterinizin 64415501 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('24092251-af4a-4a11-845e-2a81e14c3c10','436604962982','Sayın CANAN ŞENEL, 644319069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644319069\n\nDear CANAN ŞENEL, your shipment with 644319069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644319069\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('24092bf6-c51c-4d69-af51-0fe8a7b654cd','4917632298382','745282619 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745282619\n\nYour shipment with the number 745282619 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745282619\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('240d32c6-9dc0-4366-b3bb-680a3868f24c','905454259202','ALİ KULABEROĞLU adlı müşterinizin 478319922 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL),
('240d6479-8e6f-495f-a84b-e218e0994b93','491748731890','Sayın SEVDE SOYUÖZ, 675253974 nolu gönderiniz 7194 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675253974\n\nDear SEVDE SOYUÖZ, your shipment with 675253974 was delivered to you with the delivery code 7194. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675253974\n\n\nBICARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('2418b0e6-8294-4cc2-b507-b9a64122267a','905331602195','Sayın yetkili; GURAY SEYFELİ adlı müşterinize 221390997 nolu gönderinizin BALAT SANDALYE ürünü 14 parça halinde ALP SANDALYE adresinizden 02.01.2025 12:33:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('2423975f-95ed-4662-b1e4-ab522461874f','00491777048158','Sayın , 248425122 nolu gönderiniz 9851 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248425122\n\nDear , your shipment with 248425122 was delivered to you with the delivery code 9851. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248425122\n\n\nBICARGO','2','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL),
('24268295-a0be-4ea9-9020-c2c1d20ea7a3','491631500970','Sayın AHMAD ALHASAN, 100799933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/100799933\n\nDear AHMAD ALHASAN, your shipment with 100799933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/100799933\n\nBICARGO','1','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL),
('2428b7f8-4a32-4aad-8d19-7cce7719027f','491736564566','Sayın ERHAN ALP, 808538086 nolu gönderiniz 9967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808538086\n\nDear ERHAN ALP, your shipment with 808538086 was delivered to you with the delivery code 9967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808538086\n\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('242a24c1-516b-4c4c-948b-1089fbcf2f97','1636363626363636','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','2','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('242d6b60-3c12-45ff-bca2-141e3027241f','905325000478','ŞÖFÖR MEHMET adlı müşterinizin 412395222 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('2432d328-82ef-441f-818d-2cbf383d0121','491741681168','Sayın ESMA YILDIRIM, 478227571 nolu gönderiniz 4845 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478227571\n\nDear ESMA YILDIRIM, your shipment with 478227571 was delivered to you with the delivery code 4845. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478227571\n\n\nBICARGO','1','61fc8ab4-3763-4ab8-98a5-4b8228ba92d0',NULL),
('2432e969-61ae-41a7-b507-bb810e39a6c8','905421855834','MEHMET GÜL adlı müşterinizin 33841628 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('24368d4a-e4bf-48e4-bfb5-320a23246fd0','905075277637','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin TOSCANA YATAK ODASI ürünü 31 parça halinde Fatura adresinizden 22.08.2025 12:30:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('2438cb3c-2f69-406f-a68f-a29d47354af7','905349208933','Sayın yetkili; YUNUS BEY adlı müşterinize 127504677 nolu gönderinizin KOLTUK ürünü 3 parça halinde Zetna Koltuk adresinizden 29.01.2025 13:44:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('2438e30a-7d9d-4344-8e73-e380759dbe07','491726468929','Sayın ZELİHA ÖZCAN, 598492066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598492066\n\nDear ZELİHA ÖZCAN, your shipment with 598492066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598492066\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('243d9ce3-a5d0-4c39-92b5-3a8d6c8e1e53','905454259202','BELKISA KAPLAN adlı müşterinizin 478428380 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('243dda3b-2558-4d09-820f-f6060869a6ee','905349208933','Sayın yetkili; HÜLYA KURTULMUŞ adlı müşterinize 127991361 nolu gönderinizin sandalye ürünü 3 parça halinde MELYA adresinizden 24.02.2025 13:06:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cca3c1d2-572a-449d-9408-3e4d072a2fa5',NULL),
('244415fb-daf7-4078-a5db-bd2512ba9687','491725821943','Sayın CAN KÜREKÇİ, 910426934 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910426934\n\nDear CAN KÜREKÇİ, your shipment with 910426934 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910426934\n\nBICARGO','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('24447f24-fb67-47f4-9794-4a112d5da236','4917661875274','59856960 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6323 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59856960\n\nYour shipment with the number 59856960 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6323. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59856960\n\nBICARGO','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('2444ca02-ccc4-4aef-a555-afaf7a98e002','5325000478','Sayın SERHAT SERHAT, 19.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3924060\nŞifre : 3924060\n			\nBİCARGO','1',NULL,'39f2d40f-6e0a-4975-9a98-f49131a96020'),
('2445944e-3b28-4cc1-a4a2-8ea87e439b7b','4369911340501','Sayın HİLAL DEMİR, 644145142 nolu gönderiniz 1791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644145142\n\nDear HİLAL DEMİR, your shipment with 644145142 was delivered to you with the delivery code 1791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644145142\n\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('244df4c6-12f5-46f2-9bf8-77c3e33d6fd8','436609950405','İletişim \n					Halil Bey (Şoför) :+905541100849','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('245028fb-fa38-4659-b715-76a683a4ca9b','33682073450','Sayın SYLVİA LOPEZ, 478598314 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478598314\n\nDear SYLVİA LOPEZ, your shipment with 478598314 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478598314\n\nBICARGO','1','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL),
('2458d8d5-0e7b-4306-84d1-daa4239b76a0','905325000478','ŞÖFÖR MEHMET adlı müşterinizin 412395222 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('245d7f3e-e3ac-4afc-b289-25dd0eea357a','33768894970','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('2461ef02-5838-42d1-9637-65321bf692b4','33768910967','Sayın HALİDE ÖZAY, 745208965 nolu gönderiniz 10163 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745208965\n\nDear HALİDE ÖZAY, your shipment with 745208965 was delivered to you with the delivery code 10163. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745208965\n\n\nBICARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('2462c773-9447-476e-b696-d5e3125e57a5','905059175469','ESMERAY ÇOBAN adlı müşterinizin 428633070 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('2468021a-efa3-43b3-a855-201ecfef3665','491772575787','Sayın MURAT BAYDAR, 879845359 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/879845359\n\nDear MURAT BAYDAR, your shipment with 879845359 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/879845359\n\nBICARGO','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('246be079-8c85-45db-822b-7f346f11d3e2','491739901545','Sayın HANEFİ ALİOĞLU, 501667618 nolu gönderiniz 3288 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501667618\n\nDear HANEFİ ALİOĞLU, your shipment with 501667618 was delivered to you with the delivery code 3288. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501667618\n\n\nBICARGO','1','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL),
('246d6efe-52d8-4b38-8fb0-be4a964a6a00','4917655270836','Sayın KAMER DUHAN ECE(K), 644651781 nolu gönderiniz 4253 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644651781\n\nDear KAMER DUHAN ECE(K), your shipment with 644651781 was delivered to you with the delivery code 4253. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644651781\n\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('246e5e74-1090-47cc-b277-4cef7573f7dd','905304259202','EMİN EKRAMOĞLU adlı müşterinizin 478548963 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('246ebddc-b1ff-4f0d-82b3-21a37f4cc998','9053259981980','Sayın yetkili; REBİN DOĞANER adlı müşterinize 614597563 nolu gönderinizin ELİZA BER. SNDLY 6ADT,ZİGON SEHPA VE ORTA SEHPA ürünü 4 parça halinde ELİZA DESİGN adresinizden 23.10.2025 11:11:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL),
('247114c9-27b2-4374-961d-ec8b65ae6f58','905304259202','HALİL ÖZDEMİR adlı müşterinizin 478138166 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('24730f59-881b-402f-92ac-7fc35eff8453','905461661672','HÜDAYİ HARMANCI adlı müşterinizin 64422113 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('2477ccd4-c2e2-4e0f-a755-0376049f0425','4747474747484848','Sayın HELENA GÖKKAYA, 150685221 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/150685221\n\nDear HELENA GÖKKAYA, your shipment with 150685221 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/150685221\n\nBICARGO','2','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('247865f6-0ca9-4ae5-9aaa-6d258547241a','905517075149','ATİLLA POLAT adlı müşterinizin 478502129 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('24793e59-3bf5-43ee-ad00-04be0e04edec','905304259202','YUSUF ASLANYÜREK adlı müşterinizin 478746196 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('247a4166-94cc-49f4-a703-d25be86538c7','9053259981980','NURKAN AŞIR adlı müşterinizin 614868518 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('247ce3bc-1540-42d9-bf6f-151c19489d7e','905079358213','AYŞE KUTLU adlı müşterinizin 745449587 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL),
('247d9bbf-9ea7-44d2-a539-8ddce1035e1b','4917624498009','Sayın GÜLŞAH SEVİMLİ, 644721676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644721676\n\nDear GÜLŞAH SEVİMLİ, your shipment with 644721676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644721676\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('248487c3-ca21-49b9-b53a-736cef75c05c','31624237190','221121416 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3678 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221121416\n\nYour shipment with the number 221121416 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3678. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221121416\n\nBICARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('248698a4-5cc2-434e-89f1-1c4545c81719','05388618969','ALBNORA MUSTAFA  adlı müşterinizin 786286562 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('248775b3-501c-45bf-bc2b-ff3df67a8d03','33745103912','412871738 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412871738\n\nYour shipment with the number 412871738 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412871738\n\nBICARGO','1','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL),
('248b240f-a4bf-418d-bb3c-07397f1c08a6','491716168674','Sayın YUSA ELLİALTI, 808427332 nolu gönderiniz 8345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808427332\n\nDear YUSA ELLİALTI, your shipment with 808427332 was delivered to you with the delivery code 8345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808427332\n\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('248ece2d-77ee-48ea-b50b-c94d63bebc50','905079047428','AYŞEGÜL TELLİ adlı müşterinizin 449962472 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('248fa320-165b-4e7c-8c94-dde6740a4a7f','905079358213','HÜSEYİN PEKTAŞ adlı müşterinizin 745193877 nolu gönderisi 1 parça halinde yola çıkmıştır.','1',NULL,NULL),
('249107d4-aab6-405c-8760-dcaa29c3255b','905461661672','DİLARA COŞKUN adlı müşterinizin 644684600 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('2494fa54-e92d-4880-bdcb-8d3717aa3bf2','905075277637','İSRAFİL ŞENGÖNÜL adlı müşterinizin 745297087 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('2495e890-c40f-47c9-930e-32114f29ff77','4915566942853','Sayın EBRU DEMİRHAN, 745422037 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745422037\n\nDear EBRU DEMİRHAN, your shipment with 745422037 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745422037\n\nBICARGO','1','3e19392f-7b28-4ec5-bd54-c32058400252',NULL),
('249a96ce-c758-4ef0-b804-304273604ce2','905461661672','Sayın yetkili; MERYEM KAYA adlı müşterinize 644178445 nolu gönderinizin köşe koltuk ürünü 6 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:15:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('249b18c0-8d0c-40e1-a3d3-31fd6442d834','905428209234','Sayın yetkili; CEMAL YALÇIN adlı müşterinize 319388100 nolu gönderinizin SSH PARÇALAR ürünü 3 parça halinde Fatura adresinizden 15.08.2025 16:41:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('249e47b8-33d8-4352-9e36-130a58635dad','491784364840','Sayın RUKİYE TURAN, 644301613 nolu gönderiniz 7858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644301613\n\nDear RUKİYE TURAN, your shipment with 644301613 was delivered to you with the delivery code 7858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644301613\n\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('24a40169-2eb5-408f-879f-27f924486f8d','905461661672','Sayın yetkili; ALİŞAN CERCİ(K) adlı müşterinize 644847294 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 30.09.2025 14:36:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('24aba059-f6e2-45cc-be9a-7430dd8fb96f','491787046829','644178035 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9253 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644178035\n\nYour shipment with the number 644178035 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9253. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644178035\n\nBICARGO','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('24b0b2d3-326b-4222-b98c-ae0f1f400f17','905461661672','Sayın yetkili; SILA SEVİL İLGÜN adlı müşterinize 644877864 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 27.08.2025 11:26:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('24b1738d-ed79-4490-bec3-acfa6b600404','41792517143','613853408 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4319 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613853408\n\nYour shipment with the number 613853408 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4319. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613853408\n\nBICARGO','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('24ba2a36-6435-4f9a-918b-3975fe33f92d','905325000478','MURAT AKTAŞ adlı müşterinizin 412842533 nolu gönderisi 93 parça halinde yola çıkmıştır.','1','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL),
('24ba7d3d-1074-4e97-b8ef-c15e74d14c8f','1111111111111111','Sayın ERKAN SOYSAL, 248543155 nolu gönderiniz 6256 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248543155\n\nDear ERKAN SOYSAL, your shipment with 248543155 was delivered to you with the delivery code 6256. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248543155\n\n\nBICARGO','2','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL),
('24bb5d27-d3ea-43a1-aafd-b704ca77d0b4','905304259202','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478972804 nolu gönderinizin DOLAP VE BAZA ürünü 1 parça halinde RİXXE adresinizden 18.02.2025 19:28:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('24c1ef41-6e57-482d-9d51-28af1cf65987',NULL,'SİBEL SAYDAM adlı müşterinizin 08159662 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL),
('24c207ba-0e36-4fef-8865-31714319685e','4917661925156','Sayın NURAN YILDIRIM, 910561299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910561299\n\nDear NURAN YILDIRIM, your shipment with 910561299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910561299\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('24c36c2a-9aee-47dd-8bd7-82e47e574d8e','4915782204531','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('24c640b7-17a0-4a8d-b96a-2b9278a02b94','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin masa ve sehpa ürünü 4 parça halinde masami adresinizden 10.09.2025 16:52:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('24cb3e98-8e49-4c80-88f6-691dce1d4df9','491795473589','Sayın HASRET AVCI, 644890175 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644890175\n\nDear HASRET AVCI, your shipment with 644890175 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644890175\n\nBICARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('24d126a2-d942-42f6-bf2c-f83a3ed98449','31625064385','Sayın MURAT, 412586892 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412586892\n\nDear MURAT, your shipment with 412586892 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412586892\n\nBICARGO','1','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL),
('24d489e8-fb7a-4131-89dd-ea3210f550a6','4915118402012','248359668 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3792 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248359668\n\nYour shipment with the number 248359668 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3792. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248359668\n\nBICARGO','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('24d5f6f1-adb6-42c1-8251-85bcefbc631a','4917623697326','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('24d824c2-811c-492e-8f7d-ff3526053fca','905331602195','FEHMİ TÜRK adlı müşterinizin 221570854 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('24dc5f3d-cef6-40d0-82bc-e74e64de4ee0','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin BEYLER 2TAY-DR-320 AYNALI TABLO 3\'LÜ 80*80 ürünü 1 parça halinde Fatura adresinizden 08.09.2025 15:00:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('24ddf064-4dd2-4997-8bc8-6a391d9a9ad9','905304259202','Sayın yetkili;  SEHER GÜNAY adlı müşterinize 478540346 nolu gönderinizin 1 ADET SSH KANEPE ürünü 1 parça halinde çelikbey inegöl depo adresinizden 07.02.2025 14:26:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('24e0ddbe-c80f-49a1-b4e4-a36a900a54c5','4917680857659','Sayın ISMAİL REMMO, 61330729 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61330729\n\nDear ISMAİL REMMO, your shipment with 61330729 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61330729\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('24e13b99-ddf3-4e48-9a90-460dd263f44e','4917630550743','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('24e4afa4-06eb-4d06-8a1d-d7260a5d2fb3','905075277637','ERCAN VARSAK SSH  adlı müşterinizin 745282619 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('24e9e0d2-28e8-4857-adf9-97dd6c9f10f3','905510396989','Sayın yetkili; USJJS AL adlı müşterinize 319928581 nolu gönderinizin MASA ürünü 1 parça halinde KUKA HOME adresinizden 26.12.2024 13:19:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35cd7f79-46ea-4b11-b481-f22dd082a5d0',NULL),
('24eb548b-ac0b-4639-b539-378d706aa1af','905318109098','MEHDİ HASSEİNİ adlı müşterinizin 455522020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL),
('24ef40fc-640d-41c3-91bc-d6fc3f3cb6d0','491795637471','Sayın MEHMET SARI, 371820872 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820872\n\nDear MEHMET SARI, your shipment with 371820872 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371820872\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('24f072ae-4637-4722-85b4-e2daeb34f4b7','905059175469','SAMER JİNİED adlı müşterinizin 42845711 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','00f85745-0785-4a7a-9691-f650a9d585f2',NULL),
('24f0cea2-ba38-4fe2-b2ee-c9643943d7c4','4915750975472','478418764 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6279 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478418764\n\nYour shipment with the number 478418764 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6279. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478418764\n\nBICARGO','2','a95b6f69-d856-411d-92e3-628c20975e08',NULL),
('24f0ffc9-26ff-4823-bdd9-30848f5cd64c','905461661672','Sayın yetkili; CANAN ŞENEL adlı müşterinize 644319069 nolu gönderinizin SANDALYE ürünü 3 parça halinde DURMUŞLAR SANDALYE adresinizden 14.05.2025 13:20:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('24f31282-9e0e-4190-991c-6558143dcfe3','4915222583405','Sayın ENVER KÖK, 982549375 nolu gönderiniz 6655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982549375\n\nDear ENVER KÖK, your shipment with 982549375 was delivered to you with the delivery code 6655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982549375\n\n\nBICARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('24f61f93-e43c-4558-9336-1d8874044618','905304259202','ALİ DİNAR adlı müşterinizin 47811313 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('24f7442e-43fa-4de3-8040-b02589100c88','33769005262','644426448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7232 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644426448\n\nYour shipment with the number 644426448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7232. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644426448\n\nBICARGO','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('24f75975-94ee-45ec-8add-2324b3b4d6c5','4917663775902','412574307 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7598 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412574307\n\nYour shipment with the number 412574307 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7598. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412574307\n\nBICARGO','1','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL),
('24f797bb-a699-4ae2-92ab-8fc7f6a0da16','905335511664','SAHİN DİNÇ adlı müşterinizin 371514006 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('24f7c9dc-4321-4523-b8c3-816657309419','436607858584','Sayın ABDULLAH DEMİR , 745906720 nolu gönderiniz 2502 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745906720\n\nDear ABDULLAH DEMİR , your shipment with 745906720 was delivered to you with the delivery code 2502. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745906720\n\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('24f8a768-648b-462c-b853-3bc5e74d9a34','33650187030','745241298 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6640 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745241298\n\nYour shipment with the number 745241298 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6640. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745241298\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('2500bd8f-fe0a-42b2-93a9-7dc2472cac4c','4915222699200','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('25057579-4811-4657-9475-951db2df12dd','905454259202','İNCİ TOKGÖZ adlı müşterinizin 478240909 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('2509c03d-1af5-49e1-b06e-671084a4106c','905304259202','ŞEVKET ZİRİH adlı müşterinizin 478545295 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('250c52bb-2c26-446c-af3d-18cc967ab34f','491722373298','Sayın DİJWAR TAŞÇEVİREN, 221485829 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221485829\n\nDear DİJWAR TAŞÇEVİREN, your shipment with 221485829 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221485829\n\nBICARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('250c99a5-9b1f-4b88-85cb-c4b0076e9320','905517075149','Sayın yetkili; NURCAN DOLDUR adlı müşterinize 478196073 nolu gönderinizin orta sehpa üst ve yan ürünü 2 parça halinde family adresinizden 16.10.2025 15:03:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7b746611-d918-4f49-b5de-eb29d4fcdcb3',NULL),
('25106505-46d9-439c-89bd-248cbc9ae55a','905304259202','FEHMİYE KESERCİ adlı müşterinizin 478839575 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('251190b3-2a9f-4097-b479-f0804a1e0a5f','905079358213','METİN PEKSERT adlı müşterinizin 745645972 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e30052e8-31ee-42d9-b11e-50298f473091',NULL),
('2514da6f-9035-4f25-9180-86c08d3f6562','905454259202','Sayın yetkili; ZEKERİYA EMİN adlı müşterinize 478825542 nolu gönderinizin KÖŞE ürünü 4 parça halinde SAGA KÖŞE adresinizden 29.05.2025 12:10:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','42a4ed0b-8222-43be-8854-f98e1ac39e41',NULL),
('2519a485-3ff4-42a1-a8d2-862c89610971','905323039768','41288739 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41288739\n\nYour shipment with the number 41288739 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41288739\n\nBICARGO','1','e55441b7-eaf6-4645-ac39-b0befcc429b1',NULL),
('251b8e9d-1e90-4628-ade7-d5657f095dcc','31687211172','478751440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2000 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478751440\n\nYour shipment with the number 478751440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2000. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478751440\n\nBICARGO','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('251f86cd-1185-4d21-b68b-06cd38fff00b','905078062550','TOLGA KAPLAN adlı müşterinizin 598463425 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('25213c35-8f9b-440d-9867-2ed1b67cff9e','3454363464652424','412217714 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7560 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412217714\n\nYour shipment with the number 412217714 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7560. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412217714\n\nBICARGO','2','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('2525a4c6-a2ba-4ba3-b769-675c1c08b2e3','905336367828','RWWHİKA KATUSABE  adlı müşterinizin 982484679 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('2525f059-c8c0-4d1a-90d1-b4371a9cfe10','4915752422219','Sayın İBRAHİM AKARSU , 501307359 nolu gönderiniz 3756 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501307359\n\nDear İBRAHİM AKARSU , your shipment with 501307359 was delivered to you with the delivery code 3756. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501307359\n\n\nBICARGO','1','b7214302-d982-4460-ad8c-ebf440918b82',NULL),
('252c9a37-a18f-42c7-9a6b-b8d216a87be4','32470652077','Sayın SEYFETTİN , 703870981 nolu gönderiniz 6378 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/703870981\n\nDear SEYFETTİN , your shipment with 703870981 was delivered to you with the delivery code 6378. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/703870981\n\n\nBICARGO','1','a04f974c-9931-40d4-ae61-21f5044fce18',NULL),
('252e69c7-66b3-48d8-bb5b-20a14aead81e','905078062550','Sayın yetkili; TUĞÇE ÖZKAYA SSH adlı müşterinize 598314012 nolu gönderinizin masa ürünü 3 parça halinde RİO FATİH adresinizden 23.10.2025 15:05:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bbe6dafe-0c06-4dae-86a5-c71abc373150',NULL),
('252f8e50-41bf-4de1-8f13-ce087a01e954','491779822285','Sayın RUKİYE BARUT SSH, 644625326 nolu gönderiniz 6226 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644625326\n\nDear RUKİYE BARUT SSH, your shipment with 644625326 was delivered to you with the delivery code 6226. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644625326\n\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('25304233-3c59-414b-acb1-74024f362e84','905413792483','İLYAS ÖZBEK  adlı müşterinizin 278583277 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('2530a949-2310-40f7-8bc8-37979548ee79','4917661977979','412330197 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6592 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412330197\n\nYour shipment with the number 412330197 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6592. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412330197\n\nBICARGO','1','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL),
('2530c246-2a93-4039-9798-2afeefbc7043','905079358213','İBRAHİM ULUSOY adlı müşterinizin 74582542 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e10bc182-1962-4aff-b973-093a04c71419',NULL),
('25313b72-a005-4d4b-bd3c-d401e9ad523d','905461661672','Sayın yetkili; AYLA BAYKAL adlı müşterinize 644606140 nolu gönderinizin SANDALYE ürünü 6 parça halinde ELAKSA SANDALYE adresinizden 03.10.2025 14:09:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('25367b0c-3974-489a-9966-9fa8d9ea1ee2','905313340045','ZEYNEP ŞİMŞEK adlı müşterinizin 437442386 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('253898a0-58ff-46c6-842a-e08de3dbe0a9','491578706465','Sayın BERKAN AĞIRMAN, 910899167 nolu gönderiniz 3135 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910899167\n\nDear BERKAN AĞIRMAN, your shipment with 910899167 was delivered to you with the delivery code 3135. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910899167\n\n\nBICARGO','2','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('253bd45f-4c2c-4968-9095-a55218ecb759','905325998198','Sayın yetkili; YILDIRIM  ASLAN  adlı müşterinize 614766744 nolu gönderinizin FALCON KOLTUK TAKIMI 3+3+1+1 ürünü 6 parça halinde PAKKO KOLTUK adresinizden 07.11.2024 15:58:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('2547e960-e04c-4565-8c2d-d21c963436b8','905336367828','EHSANULLAH SEDİGİ  adlı müşterinizin 982663240 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('254c8e68-629d-4617-80c2-6ca8bcfea2e3','905064141111','Sayın yetkili; HATUN ŞİMŞEK adlı müşterinize 842151692 nolu gönderinizin BODRUM SABİT MASA  ürünü 4 parça halinde weltew home adresinizden 08.09.2025 15:38:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('2551e8bc-cf42-4b73-9e4f-437c0cc574b6','491729063463','Sayın İHSAN KEPİR, 412299499 nolu gönderiniz 8983 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412299499\n\nDear İHSAN KEPİR, your shipment with 412299499 was delivered to you with the delivery code 8983. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412299499\n\n\nBICARGO','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('25556a5b-d937-46eb-a4f3-719cc33de142','31624237190','Sayın HASAN BİLECEN, 221121416 nolu gönderiniz 3678 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221121416\n\nDear HASAN BİLECEN, your shipment with 221121416 was delivered to you with the delivery code 3678. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221121416\n\n\nBICARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('25579a3f-5715-4d18-bcd4-9d9d7cb8f06d','905325000478','RIDVAN BEY adlı müşterinizin 412241218 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL),
('2557d3c8-8b16-4ad5-8d9b-3ca82b8d0ace','32486837229','Sayın HACI ULUDAĞ, 449898615 nolu gönderiniz 3102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449898615\n\nDear HACI ULUDAĞ, your shipment with 449898615 was delivered to you with the delivery code 3102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449898615\n\n\nBICARGO','1','4201089d-4123-423c-809e-645e609e8e0a',NULL),
('255cc503-4606-4f39-b369-1c26657e7883','905079358213','EMEL SERPMEN adlı müşterinizin 745311878 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('255f3bdc-a70c-4df9-808a-969042ac38bc','49162150360','Sayın SÜMEYYE ARSLAN, 478355116 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478355116\n\nDear SÜMEYYE ARSLAN, your shipment with 478355116 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478355116\n\nBICARGO','2','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('255f58ee-24d5-4092-b126-ee67863239eb','905517075149','TUĞBA AKTAŞ adlı müşterinizin 478687899 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('2563e782-398b-47cf-9d11-651e0296c79f','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin TIPO MUTFAK MASASI 4 SANDALYELİ  ürünü 5 parça halinde Fatura adresinizden 06.08.2025 15:15:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('256625cf-ea1d-4327-b93a-67536b1a9d2e','32486993128','428693052 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1090 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428693052\n\nYour shipment with the number 428693052 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1090. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428693052\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('256676eb-465e-4054-9619-d8cde04fd259','41762149925','786849282 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5334 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/786849282\n\nYour shipment with the number 786849282 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5334. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/786849282\n\nBICARGO','1','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL),
('25695d9e-ea2e-4a34-9c78-103898fcc9d3','4917630119950','Sayın SÜLEYMAN ERDOĞAN, 478723327 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478723327\n\nDear SÜLEYMAN ERDOĞAN, your shipment with 478723327 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478723327\n\nBICARGO','1','476a35ac-9d9d-4d70-a965-370a980951c2',NULL),
('256de96c-ed02-4e21-962e-512d8a076fdf','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin RANA MASA  ürünü 2 parça halinde Fatura adresinizden 01.10.2025 12:25:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('25722969-1f8e-4dac-80ae-46683d7a3873','4917681920264','Sayın DAVUT YILDIRIM, 745991438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745991438\n\nDear DAVUT YILDIRIM, your shipment with 745991438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745991438\n\nBICARGO','1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL),
('25774a35-875f-4ac9-9a1c-04ce5afc2951','905304259202','GÜLPERİ ÜNVER  adlı müşterinizin 478415751 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('25781a49-3ad3-408f-a8d6-186d73ca8a49','905078062550','Sayın yetkili; BERİVAN PALAVAN adlı müşterinize 598903023 nolu gönderinizin masa sehpa ürünü 6 parça halinde RİO FATİH adresinizden 14.08.2025 15:07:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('257e2130-cd4d-4b49-adee-8d0bce578531','905510396989','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin 3-3-1 KOLTUK ürünü 6 parça halinde LOYKA KOLTUK adresinizden 29.04.2025 13:03:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('257ee683-f4f5-434c-aff8-e3a7ef5acc41','01737526626','İletişim \n					Şöför Murat : +905321616048','2','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('257efbc3-98d0-4e2d-8c19-ba59d874b427','905335511664','DUYGU METE adlı müşterinizin 371394707 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('257f352e-1cf5-45fc-abf1-fe8f4d689f96','905442774505','AHMET GÜVEN  adlı müşterinizin 657947887 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','62f77eb8-8c8f-460b-b294-ae8437220ece',NULL),
('257fe189-abb1-4af1-8a13-8c7c8c872cf3','905301592882','ZELİHA ARAS adlı müşterinizin 910280020 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('25852c61-6d5b-4991-809c-994f75839f1a','905075277637','GÜLŞAH KUŞ adlı müşterinizin 745219309 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('2585915e-07f6-42b5-b4ec-1cdcf89e2896','0113637474','Sayın Erdal Erdal, 03.07.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9223030\nŞifre : 9223030\n			\nBİCARGO','2',NULL,'922303e0-023c-44c4-9569-272efdb9286e'),
('25908918-45a1-4813-8ab0-00ae5177e978','905331602195','Sayın yetkili; MERVE KORKMAZYUREK adlı müşterinize 221511033 nolu gönderinizin Natura sandalye  ürünü 5 parça halinde Fatura adresinizden 10.12.2024 16:47:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('259131ea-dc6e-45a4-bce2-d4393e87af36','905454259202','NURCAN MANSUR adlı müşterinizin 478438901 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('259292fe-d8e4-46f7-b791-b6594064e5b1','491624296602','Sayın (K)HÜSAMETTİN CANBOLAT, 644469726 nolu gönderiniz 1611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644469726\n\nDear (K)HÜSAMETTİN CANBOLAT, your shipment with 644469726 was delivered to you with the delivery code 1611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644469726\n\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('2596c2f2-2279-4e7e-bc91-951a52b468a9','4917683412499','Sayın ESRA MURATOGLU, 786276080 nolu gönderiniz 9491 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786276080\n\nDear ESRA MURATOGLU, your shipment with 786276080 was delivered to you with the delivery code 9491. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786276080\n\n\nBICARGO','1','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('2596c818-7733-4cc4-aa31-f96967b8b446','49485827454','Sayın NEVZAT HACIOĞLU, 15153034 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/15153034\n\nDear NEVZAT HACIOĞLU, your shipment with 15153034 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/15153034\n\nBICARGO','2','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('259ab8d2-062f-4a64-b752-3e2d3a6e4ce0','4957852966','644110179 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6846 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644110179\n\nYour shipment with the number 644110179 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6846. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644110179\n\nBICARGO','2','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('259dc384-d5b9-43d0-8b58-4d7f25841045','4917632257124','428696149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428696149\n\nYour shipment with the number 428696149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428696149\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('25a16a33-9c71-4581-b057-1199bd90a3d8','49176630348266','Sayın AMELA MULİC , 982972858 nolu gönderiniz 7796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982972858\n\nDear AMELA MULİC , your shipment with 982972858 was delivered to you with the delivery code 7796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982972858\n\n\nBICARGO','2','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('25ab6e9c-7652-4ca8-bf08-409f3cc21b09','4915788014296','428131786 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10981 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428131786\n\nYour shipment with the number 428131786 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10981. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428131786\n\nBICARGO','1','36207ae6-947b-4a63-b98b-478d30a194b6',NULL),
('25ab730e-185a-43bc-af8c-9e0d0672cd6a','436603215138','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('25addf94-b018-472d-a0b9-8f7945e7daa8','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin BANCH ürünü 1 parça halinde Fatura adresinizden 24.06.2025 17:53:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('25af0236-8781-4c9a-8cae-753c2e9ccf4d','491625165832','221947357 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221947357\n\nYour shipment with the number 221947357 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221947357\n\nBICARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('25af365a-a7a8-4997-a3ac-e038000e69ac','4917623546219','614134006 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6369 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614134006\n\nYour shipment with the number 614134006 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6369. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614134006\n\nBICARGO','1','93cfee64-4853-4395-af0b-9caa4355f18f',NULL),
('25b07a2c-4aa0-455e-86bb-1516e8336193','905313340045','FATMA SAĞLIK adlı müşterinizin 437835103 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('25bc7416-0ca2-4162-80cc-21bf080c7213','33667410242','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('25bdc852-14ae-4439-8932-b31a96c61fdf','905454259202','AHMET GÜNEŞ adlı müşterinizin 478300434 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('25be87d3-3767-4cb6-8756-72715eaf0a80','905331602195','Sayın yetkili; ALİHAN ARATEKİN adlı müşterinize 221322415 nolu gönderinizin 90x200 traverten masa  ürünü 3 parça halinde Fatura adresinizden 27.01.2025 11:03:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('25c099f5-764c-4a22-a6cd-03e3a9b2ebf5','330695878603','Sayın SELAHATTİN BAŞPINAR, 47835620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47835620\n\nDear SELAHATTİN BAŞPINAR, your shipment with 47835620 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47835620\n\nBICARGO','1',NULL,NULL),
('25cc15d0-479b-4507-b168-d11b2bfd9968','491749390960','Sayın ÖZGÜR SEDAT YAMALAK, 74513098 nolu gönderiniz 3926 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74513098\n\nDear ÖZGÜR SEDAT YAMALAK, your shipment with 74513098 was delivered to you with the delivery code 3926. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74513098\n\n\nBICARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('25cc57be-8681-48f8-bb5c-22d88f1ac289','905301592882','ÖZDEMİR YAKAN		 adlı müşterinizin 910972908 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('25d0c9ab-418f-4df6-95ec-0ef732983464','31641101237','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('25d53fcb-36c9-48df-93fc-220b506160b0','905069116877','YUSUF AVCI adlı müşterinizin 817915882 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('25dd4404-ff0f-45bc-9adc-15620e31ba54','436764240748','Sayın GÖKMEN GÖNÜLTAŞ, 428754067 nolu gönderiniz 2081 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428754067\n\nDear GÖKMEN GÖNÜLTAŞ, your shipment with 428754067 was delivered to you with the delivery code 2081. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428754067\n\n\nBICARGO','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('25e6612f-6742-4d6b-830e-d57cda29ddb9','4915171697261','Sayın BÜLENT ECEVİT DUROĞLU, 478368190 nolu gönderiniz 1453 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478368190\n\nDear BÜLENT ECEVİT DUROĞLU, your shipment with 478368190 was delivered to you with the delivery code 1453. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478368190\n\n\nBICARGO','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('25eb445c-0cc7-440a-b6b3-22f2432bb4f1','4917684332584','Sayın NEŞE ERĞAT, 371363007 nolu gönderiniz 8374 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371363007\n\nDear NEŞE ERĞAT, your shipment with 371363007 was delivered to you with the delivery code 8374. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371363007\n\n\nBICARGO','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('25eb8609-84e1-4269-919d-50ee0e0eb3af','41793101768','53111592 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2430 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/53111592\n\nYour shipment with the number 53111592 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2430. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/53111592\n\nBICARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('25ee2fb5-5f09-4adb-8a86-a21e432fcaa9','491711605944','745766580 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6684 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745766580\n\nYour shipment with the number 745766580 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6684. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745766580\n\nBICARGO','1','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL),
('25f4acb3-1a17-4d18-b033-9e62cd34b3df','31685438613','Sayın SAVYO RAFFO, 22164822 nolu gönderiniz 4558 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22164822\n\nDear SAVYO RAFFO, your shipment with 22164822 was delivered to you with the delivery code 4558. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22164822\n\n\nBICARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('25f59426-fdbe-48d7-bef2-be314d197521','4915222699200','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('25fb570c-0a35-4463-8e91-96d2c68805dc','33616450587','Sayın WALİ MAADAN, 418857351 nolu gönderiniz 8277 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/418857351\n\nDear WALİ MAADAN, your shipment with 418857351 was delivered to you with the delivery code 8277. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/418857351\n\n\nBICARGO','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('2603abb7-026a-4b66-b0fe-9f6c4eaae6d3','905454259202','EMEL TEKİN adlı müşterinizin 478180584 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL),
('26054f51-2b3a-4b2d-9ab7-f984d588a455','491728678117','Sayın ERCAN DİKME, 959658567 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959658567\n\nDear ERCAN DİKME, your shipment with 959658567 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/959658567\n\nBICARGO','1','5e8ddd62-748e-4719-9bad-9f588fc2c7d3',NULL),
('260710fd-6676-487e-bea2-f1000a99afbd','905451571652','CEM TOPYÜREK adlı müşterinizin 531870941 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('260a035f-2029-4e5f-a24f-db9c04395220','905075277637','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin YEMEK MASASI  + SEHPA  ürünü 5 parça halinde GÜMÜŞ MASA adresinizden 12.05.2025 16:29:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('260b5053-dba0-4539-8d58-b61baf0bcb18','004917661019761','Sayın EBRU SOBAY, 437574361 nolu gönderiniz 8711 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437574361\n\nDear EBRU SOBAY, your shipment with 437574361 was delivered to you with the delivery code 8711. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437574361\n\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('260caa9f-b754-499a-9156-7614e1d76762','4915172748624','817303639 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9261 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817303639\n\nYour shipment with the number 817303639 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9261. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817303639\n\nBICARGO','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('260dcb2d-ca37-443d-9d31-ed01b5ff5f31','905349208933','YUNUS BEY adlı müşterinizin 127504677 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('260f12a9-44fc-4cad-ae22-e113e5484869','9053259981980','Sayın yetkili; ARZU BÖÇKÜN adlı müşterinize 614496263 nolu gönderinizin DUVA LUCCA BERJER AYAĞI 2 ADET ürünü 1 parça halinde Fatura adresinizden 26.03.2025 11:30:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','528a4efc-5102-4165-8106-60f8052866e1',NULL),
('260fd796-1a6c-43b0-9873-196979ca0bf4','905517075149','Sayın yetkili; SEVİM KAMER adlı müşterinize 478151970 nolu gönderinizin sprey boya ürünü 1 parça halinde çelikbey inegöl depo adresinizden 25.07.2025 14:29:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('261a7bf0-f33c-41ad-b460-0b3665e951e9','905451571652','Sayın yetkili; MALİHA CETİN adlı müşterinize 531309772 nolu gönderinizin MASA ürünü 3 parça halinde MASAMİ adresinizden 22.09.2025 18:02:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('261d8fc7-d4a1-4be0-b7d1-77e8baa856eb','31640538953','221940723 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7109 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221940723\n\nYour shipment with the number 221940723 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7109. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221940723\n\nBICARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('26208b25-0160-4600-8d3f-35514b491637','491738798802','598172413 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598172413\n\nYour shipment with the number 598172413 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598172413\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('2623b851-4b55-4e3e-a197-bacf2ef07b0a','4915566942853','Sayın EBRU DEMİRHAN SSH, 745433427 nolu gönderiniz 9940 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745433427\n\nDear EBRU DEMİRHAN SSH, your shipment with 745433427 was delivered to you with the delivery code 9940. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745433427\n\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('2629adae-8259-4b65-9d10-42bee52d8678','4915756455656','976439318 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3992 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976439318\n\nYour shipment with the number 976439318 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3992. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976439318\n\nBICARGO','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('2629edc4-b7d0-4d63-a39e-1bdbe761bddc','33788688334','745405587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5530 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745405587\n\nYour shipment with the number 745405587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5530. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745405587\n\nBICARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('262e5512-0307-4e86-a23b-22b3bd1a6881','905461661672','ÜMİT MORCA SSH adlı müşterinizin 644760466 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('26334de8-a557-486a-89ad-c5efd6eff85b','4917681106453','Sayın RUKİYE BARUT, 644626371 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644626371\n\nDear RUKİYE BARUT, your shipment with 644626371 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644626371\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('263684ce-a431-4e07-8130-38c36b218afd','491725459093','910980337 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8657 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910980337\n\nYour shipment with the number 910980337 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8657. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910980337\n\nBICARGO','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('263780e1-5e0e-45ce-a331-85cd797876fa','4915229249274','Sayın BİRGÜL ÖRNEK, 268188607 nolu gönderiniz 3977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268188607\n\nDear BİRGÜL ÖRNEK, your shipment with 268188607 was delivered to you with the delivery code 3977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268188607\n\n\nBICARGO','1','2630e226-f8e4-4780-bd53-00a42db1e018',NULL),
('263d7097-39c8-4f08-8be2-580d247f21fe','905079358213','ORHAN ÖZSOY adlı müşterinizin 745140498 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('263dac13-6cdc-4fd4-b6e8-f5daf2d99117','31681294443','248955969 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2581 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248955969\n\nYour shipment with the number 248955969 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2581. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248955969\n\nBICARGO','2','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL),
('263f16bb-473e-46bf-9bf8-e223b6b802ca','33673731044','745824914 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5680 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745824914\n\nYour shipment with the number 745824914 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5680. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745824914\n\nBICARGO','1','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL),
('264733ca-ec16-4306-8112-0c95efa2a10c','491735713527','478681042 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10204 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478681042\n\nYour shipment with the number 478681042 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10204. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478681042\n\nBICARGO','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('2647e405-4983-4035-af8e-5ac781e72e97','905304259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478783487 nolu gönderinizin TV ÜNİTESİ ürünü 1 parça halinde GARDEROBE adresinizden 14.04.2025 10:50:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('264954f9-89de-4b38-8246-5ae0c2df546e','','745832267 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10293 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745832267\n\nYour shipment with the number 745832267 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10293. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745832267\n\nBICARGO','2','1ad43916-6b71-4844-8c13-9ae4882c08fd',NULL),
('264e8063-005f-4cf9-af43-ec7027210583','905331602195','AZİZE KAYA adlı müşterinizin 221946527 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('264e9132-4f8f-4a37-ab6b-0e045c250f43','3656253652736275','Sayın SAGAX CONSULTİNG , 412380161 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412380161\n\nDear SAGAX CONSULTİNG , your shipment with 412380161 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412380161\n\nBICARGO','2','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('2650d10b-3f82-4827-8e40-dade3cf8b42b','905078062550','Sayın yetkili; İVAN SLEMAN DİNO adlı müşterinize 598410676 nolu gönderinizin MASA SEHPA ürünü 5 parça halinde RİO FATİH adresinizden 19.09.2025 10:33:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('26513255-1671-4382-b9d0-10f9dbfbea95','4920350083648','Sayın DİE FABRİK OUTLET, 223422825 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223422825\n\nDear DİE FABRİK OUTLET, your shipment with 223422825 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223422825\n\nBICARGO','2','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('26528c2c-40cc-4d31-80e4-16ebfced20cf','491627758662','750125400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5222 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750125400\n\nYour shipment with the number 750125400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5222. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750125400\n\nBICARGO','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('2654cb1e-effe-4810-b927-1e9be7d7077f','4915730253868','Sayın GÜLNUR ENGİN, 598585736 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598585736\n\nDear GÜLNUR ENGİN, your shipment with 598585736 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598585736\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('265d6447-8cae-4ca5-936e-deb43fcbc0fb','905313340045','Sayın yetkili; MERVE BEKTİK adlı müşterinize 43752518 nolu gönderinizin sandalye ürünü 3 parça halinde HATEM sandalye adresinizden 13.08.2025 12:22:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('265e83af-eb16-4193-8504-a0041f0bdff5','436603554835','745715303 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9810 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745715303\n\nYour shipment with the number 745715303 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9810. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745715303\n\nBICARGO','1','7af47c44-93b1-42ec-813b-77c155a1b050',NULL),
('265eb34e-017c-4329-b64a-00122cd0efc0','905075277637','CANSU YENİLMEZER SSH adlı müşterinizin 745124199 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('266b8d0b-1565-42e3-8851-293893992f68','905075277637','BURÇİN MEN adlı müşterinizin 745970479 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('266e57a2-bdd1-447e-a0ac-b406611ba67b','905363385813','Mustafa İlhan adlı müşterinizin 976369647 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('266e6ccf-1e58-476f-a0b2-333d53fe10d5','33613166090','Sayın NURKAN AŞIR, 614529512 nolu gönderiniz 2588 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614529512\n\nDear NURKAN AŞIR, your shipment with 614529512 was delivered to you with the delivery code 2588. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614529512\n\n\nBICARGO','1','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('2673927e-a7ae-4280-ae81-4e27545c5ee3','4915150865710','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('2675fa19-19e9-42e6-92ff-29b3d4e40bb0','33651400749','910482480 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910482480\n\nYour shipment with the number 910482480 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910482480\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('26776bef-d1d5-4f38-82fd-817df94bbde5','905394878216','ELİF SIKI  adlı müşterinizin 517157021 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('26815e76-73cf-405a-83b8-20132a150a55','4915732123789','Sayın SERHAT AGİRTAS, 515139511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515139511\n\nDear SERHAT AGİRTAS, your shipment with 515139511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515139511\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('2688bdce-f46d-4fab-a361-d971a8c3a713','4369910824300','338691111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9047 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338691111\n\nYour shipment with the number 338691111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9047. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338691111\n\nBICARGO','1','0f7a8dca-9600-447a-a216-28087b5362ba',NULL),
('269634ab-2232-4d66-ae86-0b8162b8c5d4','4915223038564','Sayın BERNA YİLDİRİM, 61390448 nolu gönderiniz 1837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61390448\n\nDear BERNA YİLDİRİM, your shipment with 61390448 was delivered to you with the delivery code 1837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61390448\n\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('2696b562-6447-41c3-bdd5-030557c18b29','491738592864','081581964 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/081581964\n\nYour shipment with the number 081581964 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/081581964\n\nBICARGO','1','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('26991283-2b14-447c-80d0-16187ee78643','905301592882','ÖZLEM ŞEKERCİ		 adlı müşterinizin 910884465 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('269c0c6f-971a-4050-8ad5-629bcd8dd7b9','491736344643','Sayın TUĞBA BAĞCI, 126200859 nolu gönderiniz 5815 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126200859\n\nDear TUĞBA BAĞCI, your shipment with 126200859 was delivered to you with the delivery code 5815. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126200859\n\n\nBICARGO','1','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL),
('269e0547-6710-4731-a8b0-7f6073c743ad','905079047428','RAHİMİ adlı müşterinizin 449666503 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('269f265d-6b7f-4c02-96fb-4130f9b3db3c','33698945005','Sayın SERHAT ÇAÇAN, 745303876 nolu gönderiniz 5203 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745303876\n\nDear SERHAT ÇAÇAN, your shipment with 745303876 was delivered to you with the delivery code 5203. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745303876\n\n\nBICARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('26a0ac59-bde2-4fdd-8e48-7bff05e34e9b','33675154529','4551399 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/4551399\n\nYour shipment with the number 4551399 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/4551399\n\nBICARGO','1','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL),
('26a59538-02f4-4219-9139-8e032256d1e1','905336367828','Sayın yetkili; Enver kök  adlı müşterinize 982549375 nolu gönderinizin Sehpa  ürünü 1 parça halinde Fatura adresinizden 15.11.2024 15:02:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('26a6ea2d-1e89-4496-b96d-ae97c87ff964','905335708965','OZAN YEŞİL adlı müşterinizin 735442629 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f91d654-f578-426a-8133-5299ed48d624',NULL),
('26a934ab-0d4a-4466-b80f-be34ed2e47f2','905349208933','ARİFE SARI adlı müşterinizin 127865742 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('26aa2703-8bcd-457d-90f8-e8ba157229ec','905304259202','FESİH DOĞAN adlı müşterinizin 47853753 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('26afce6b-df3a-4006-9245-cd27ee8920bf','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin GOLF KOLTUK TAKIMI  ürünü 3 parça halinde ALYAMO  adresinizden 14.07.2025 17:48:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('26b3122a-ad2c-4f0b-9d58-319f5fd574ec','491784558163','Sayın REZA MUHAMMEDİ, 982292794 nolu gönderiniz 6723 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982292794\n\nDear REZA MUHAMMEDİ, your shipment with 982292794 was delivered to you with the delivery code 6723. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982292794\n\n\nBICARGO','1','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL),
('26b80a59-0213-45b8-83bd-b53d1f80d976','905461661672','Sayın yetkili; ZEKİYE TOPATAN adlı müşterinize 644877146 nolu gönderinizin SANDALYE ürünü 3 parça halinde BALİ SANDALYE adresinizden 13.03.2025 13:35:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('26ba334c-dc65-45a0-a084-77a7bd71280d','905461661672','ZEKİYE TOPATAN adlı müşterinizin 644877146 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('26bb47ea-1967-4e42-9fe2-1e7500d63d57','491729086965','Sayın ÖMÜR TOSUN, 78633450 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/78633450\n\nDear ÖMÜR TOSUN, your shipment with 78633450 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/78633450\n\nBICARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('26c062b8-0900-4ca8-8a82-7724a045c6bf','','126824871 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6507 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126824871\n\nYour shipment with the number 126824871 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6507. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126824871\n\nBICARGO','2','90a8f7ac-5c28-443a-9cbe-23f5c2942327',NULL),
('26c1f5aa-dc55-4144-8070-5193894f9006','9054439559150','NURKAN AŞIR adlı müşterinizin 614741569 nolu gönderisi 8 parça halinde yola çıkmıştır.','2','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('26c44741-b2c7-47bd-9675-71554da356c9','4915216420316','Sayın HASAN GHASEMİ, 449329901 nolu gönderiniz 4335 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449329901\n\nDear HASAN GHASEMİ, your shipment with 449329901 was delivered to you with the delivery code 4335. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449329901\n\n\nBICARGO','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('26c52fab-d1d6-4416-ad2d-3fd313d71953','33782093093','Sayın HÜSEYİN GÜNDÜZ, 455614339 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455614339\n\nDear HÜSEYİN GÜNDÜZ, your shipment with 455614339 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455614339\n\nBICARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('26ca7e15-38f3-4de8-b913-daf4a9b93913','31616177298','Sayın L.DOUİRİ, 221997933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221997933\n\nDear L.DOUİRİ, your shipment with 221997933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221997933\n\nBICARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('26cf21b3-9474-4afb-81d3-a4a58703d4e3','905331602195','Sayın yetkili; GÖKHAN ÖZYURT  adlı müşterinize 2213416 nolu gönderinizin 90x190 Traverten Masa  ürünü 3 parça halinde Fatura adresinizden 18.03.2025 17:03:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('26cf4251-921c-4e9d-90cd-3df700418169','905350617509','Sayın yetkili; ALEYNA KARAKUS adlı müşterinize 613787861 nolu gönderinizin Sandalye ürünü 2 parça halinde Mfoursandalye adresinizden 24.09.2025 12:01:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('26d096f7-a7bd-42f8-807b-1275fd1baab7','491628157309','614990703 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4968 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614990703\n\nYour shipment with the number 614990703 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4968. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614990703\n\nBICARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('26d1a27d-6cf5-48dc-9566-82b322d617ab','905331602195','Sayın yetkili; HASAN YALÇIN adlı müşterinize 221724224 nolu gönderinizin 80-60 çap sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:18:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('26d55d3c-ea56-4c9d-bbcf-dde84b1b4231','41792382873','DRİVER\n					ADNAN\n+905354622027','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('26d9ad28-c491-4832-96fd-9d47aa134c49','905454259202','HASAN BÜLBÜL adlı müşterinizin 478941206 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL),
('26e4b704-6914-46be-8f9d-4c7849dfdc4d','905301534568','HALİL İBRAHİM AKALIN  adlı müşterinizin 1936694 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL),
('26e6dc82-30d1-430b-886f-e08e60e2c42f','905331602195','TALL YOANN adlı müşterinizin 221132707 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('26effd84-e2b0-4aad-9cf8-24e3e09081f3','4917631174423','338878009 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10498 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338878009\n\nYour shipment with the number 338878009 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10498. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338878009\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('26f17572-5cdb-4894-a876-28836a88c1c3','905069116877','NURŞEN ADACI adlı müşterinizin 8176511 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('26f3898a-ff49-4246-b732-0812a1d0cac8','905357955726','MİKAİL VUREL adlı müşterinizin 315903894 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL),
('26f71c36-51cc-4e9c-b1ee-90b580c1f913','905079358213','MUHAMMET YILDIRIM  adlı müşterinizin 745946644 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('270570c8-d76a-4ced-81f9-4938486bb818','905454259202','SULTAN GÖR adlı müşterinizin 478885043 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('2705fb2b-b099-4887-aa96-ea7e83aa2e36','436605070364','675965194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4380 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675965194\n\nYour shipment with the number 675965194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4380. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675965194\n\nBICARGO','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('2706e104-e84f-44e3-a4d4-af547f20fd94','905079358213','SÜLEYMAN KARA adlı müşterinizin 745523335 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('270edfbc-dba9-4bc9-9729-d4f958ba3d95','4917643489874','Sayın ÖZDEMİR YAKAN		, 910972908 nolu gönderiniz 6750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910972908\n\nDear ÖZDEMİR YAKAN		, your shipment with 910972908 was delivered to you with the delivery code 6750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910972908\n\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('270f1de6-84c2-46c1-b997-88e0692a37ed','33749274146','Sayın MOHAMMAD MASOUD, 449234624 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449234624\n\nDear MOHAMMAD MASOUD, your shipment with 449234624 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449234624\n\nBICARGO','1','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL),
('27104eca-d9ef-40a1-a44b-560aa071ad38','33647562465','Sayın NAMIK KAYGIN, 478142620 nolu gönderiniz 1368 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478142620\n\nDear NAMIK KAYGIN, your shipment with 478142620 was delivered to you with the delivery code 1368. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478142620\n\n\nBICARGO','1','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('2713b03a-98f2-48f2-8170-cc01cdb939c9','33769173074','Sayın FARIH SANAE, 486609627 nolu gönderiniz 3885 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486609627\n\nDear FARIH SANAE, your shipment with 486609627 was delivered to you with the delivery code 3885. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486609627\n\n\nBICARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('271a6bf7-dd13-490b-b864-8a94d1f68824','4306764892040','315164103 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6343 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/315164103\n\nYour shipment with the number 315164103 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6343. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/315164103\n\nBICARGO','1','36f25521-b01c-4589-be32-1479a5a1b79e',NULL),
('271b2504-4e08-4b28-bdaa-6cfeb3c83aed','33783196763','Sayın VOLKAN ÖZCAN, 517495121 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517495121\n\nDear VOLKAN ÖZCAN, your shipment with 517495121 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517495121\n\nBICARGO','1','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL),
('272335fc-d0de-4e0c-8d43-3e95ac1eb47f','491786615616','614339204 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614339204\n\nYour shipment with the number 614339204 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614339204\n\nBICARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('27258249-6389-4fe2-9832-3eca240519c7','905454259202','KEMAL ETKER  adlı müşterinizin 47876427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('27285715-228d-422a-a719-9dfca0de3055','31649620613','Sayın AYEOLOWO SEKİNAT, 221433158 nolu gönderiniz 8612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221433158\n\nDear AYEOLOWO SEKİNAT, your shipment with 221433158 was delivered to you with the delivery code 8612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221433158\n\n\nBICARGO','2','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('272a8c0e-fd5a-4c10-bb5a-1e3d114d1a37','4915124486565','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('272feea9-9a48-448e-af37-e2710a1a2b21','905321608709','PARK adlı müşterinizin 248549362 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','08723415-4b6f-4a95-a326-2405074a7498',NULL),
('27326b8c-4ab2-40f3-932d-c32208035d0c','905078062550','Sayın yetkili; ROJDA BİNGÖL adlı müşterinize 598665171 nolu gönderinizin masa ürünü 3 parça halinde RİO FATİH adresinizden 29.07.2025 17:05:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('273547cd-6dde-4f11-b484-1f166f0b7d9f','4915753642605','644152675 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644152675\n\nYour shipment with the number 644152675 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644152675\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('27367f94-b5c1-4071-8858-8bddfd12ddaa','905331602195','Sayın yetkili; BERKAY NAMDAR adlı müşterinize 221963489 nolu gönderinizin 80-60 çap traverten sehpq ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:58:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4',NULL),
('27370ffa-bebd-4ff9-ac0a-0b287bede1ac',NULL,'ABDUL AHMAD adlı müşterinizin 112609358 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('27374861-4686-4b67-ad7f-13613f321794','905301592882','AHMET EMİN GÜL adlı müşterinizin 910201328 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('2738ec10-fbf4-411f-9df9-0a7961851c29','4369914178102','Sayın ELMAS KAYA, 745411152 nolu gönderiniz 2165 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745411152\n\nDear ELMAS KAYA, your shipment with 745411152 was delivered to you with the delivery code 2165. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745411152\n\n\nBICARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('273e21d9-b0a5-4fc4-ad83-20a824a4f4d7','33617406567','Sayın BOUKİ BOUCHRA, 982918194 nolu gönderiniz 2944 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982918194\n\nDear BOUKİ BOUCHRA, your shipment with 982918194 was delivered to you with the delivery code 2944. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982918194\n\n\nBICARGO','1','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL),
('273f7683-c680-4aab-8c38-5222f7ad74cd','32470593490','Sayın TUĞBA AKTAŞ, 478687899 nolu gönderiniz 5180 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478687899\n\nDear TUĞBA AKTAŞ, your shipment with 478687899 was delivered to you with the delivery code 5180. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478687899\n\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('2740b402-d7dd-431b-bd0e-077e10b9bdf6','491792099913','61340935 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8927 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61340935\n\nYour shipment with the number 61340935 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8927. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61340935\n\nBICARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('274a7d7b-f454-47af-bcb1-01616032893d','905335511664','EMİLE ARSLAN adlı müşterinizin 37142091 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('275325be-ad07-425f-a162-2cdbb1047d9b','905304259202','ESRA TEZCAN adlı müşterinizin 478728370 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL),
('2758569b-a45d-4204-b4aa-318fbbe03a62','905461661672','DELİL ÖZÇELİK adlı müşterinizin 644680025 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('275c8a22-34cb-4beb-b19f-532304ecad4d','905306071261','ZÜLAL KABA  adlı müşterinizin 765472156 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','fe1bf79f-2efb-488d-8554-0ec73016bf8c',NULL),
('2760ed62-7b44-412f-beb4-f407f88d2f90','33609307736','Sayın MUSA EMEK, 501786631 nolu gönderiniz 10814 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501786631\n\nDear MUSA EMEK, your shipment with 501786631 was delivered to you with the delivery code 10814. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501786631\n\n\nBICARGO','1','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL),
('2765bc72-b934-4d6f-8852-f67cedf779f3','905301592882','İSMAİL TURŞUCU		 adlı müşterinizin 910697257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('276906cd-b919-4b28-973e-59fa649cfb33','4917641531210','Sayın SELİN ÖZALP, 644615727 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644615727\n\nDear SELİN ÖZALP, your shipment with 644615727 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644615727\n\nBICARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('2770ed3a-ec41-478c-a854-25750580166f','33767885681','437573248 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8145 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437573248\n\nYour shipment with the number 437573248 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8145. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437573248\n\nBICARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('2771044d-78c9-492b-b7a9-57fb96eb9163','4917631605482','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('2774ac45-638d-4d94-b7d7-c4d698afd2d8','905336367828','SAİMİR BALLA  adlı müşterinizin 982431907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('277576ef-0937-4dfb-bff9-2d9fcc6d3e79','905540182920','448774640 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7513 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/448774640\n\nYour shipment with the number 448774640 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7513. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/448774640\n\nBICARGO','1','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL),
('2777b92e-0843-463d-a0d1-ef0cee1e1e6d','905461661672','MELDA KARA adlı müşterinizin 64451300 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('277a1d3a-034e-4046-90b4-182d41352edb','905350617509','Sayın yetkili; DİLBERAY MELLO adlı müşterinize 613910788 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 06.05.2025 11:44:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('277cce39-79a1-4138-b29f-189e8350067a','905350617509','Sayın yetkili; ALTİN RAMADANİ adlı müşterinize 61355212 nolu gönderinizin Sehpa ürünü 1 parça halinde Fatura adresinizden 23.06.2025 12:30:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('278a9880-ff60-4de3-aa55-a8c1fae8f91e','33753451993','982425532 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9211 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982425532\n\nYour shipment with the number 982425532 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9211. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982425532\n\nBICARGO','1','13aba735-b82d-4898-a98c-4167bb80085c',NULL),
('278d07d9-1988-4648-b53d-9a2c7359429d','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 1 TAKIM KOLTUK TAKIMI 3+3+1 ürünü 3 parça halinde MOBİLYAMEVİME DEPO  adresinizden 08.10.2025 16:24:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('27957c9e-aa54-4b5b-8854-665822a9cc06','905335708965','AMMAR ALANİ  adlı müşterinizin 248421874 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL),
('27982799-caec-4f6f-b2f9-41c1e7bbb152','905350617509','DİLBERAY MELLO adlı müşterinizin 613199072 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('279e8044-f255-439e-befd-37faee3121e7','4915735267419','371121937 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3533 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371121937\n\nYour shipment with the number 371121937 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3533. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371121937\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('27a0f289-2332-42d7-a2be-3f9a349624b8','905352711900','Sayın yetkili; AHMET AKAT adlı müşterinize 817619747 nolu gönderinizin KOLTUK TAKIMI 3-3-1  ürünü 3 parça halinde MOBİLYAMEVİME DEPO  adresinizden 17.09.2025 10:28:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('27a2f9d0-0d57-45fa-ae82-b7e5257f0493','905304259202','YETKİN TOKER adlı müşterinizin 478120731 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('27abe91e-f0b8-4864-91a1-160fd14f3570','491787074737','Sayın FURKAN, 412580908 nolu gönderiniz 2907 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412580908\n\nDear FURKAN, your shipment with 412580908 was delivered to you with the delivery code 2907. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412580908\n\n\nBICARGO','1','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL),
('27acf407-8448-460b-8514-6431d4bc2de0','33699946659','Sayın BELKISA KAPLAN, 478403794 nolu gönderiniz 1009 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478403794\n\nDear BELKISA KAPLAN, your shipment with 478403794 was delivered to you with the delivery code 1009. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478403794\n\n\nBICARGO','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('27b03692-f5a7-4f4b-bbc2-17587f86bfec','33679049076','478540346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5119 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478540346\n\nYour shipment with the number 478540346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5119. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478540346\n\nBICARGO','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('27b1063d-f75b-4a83-960f-bfae5c5af8fc','4917634315393','ŞÖFÖR NUMARASI\n					+905467896981','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('27b21d45-1918-4fdb-afb7-cf3347d8e752','905079358213','AYŞE ŞEKER adlı müşterinizin 745671718 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('27b49139-0a0a-41dc-852a-9fb73499896c','436503601028','315959949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4243 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/315959949\n\nYour shipment with the number 315959949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4243. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/315959949\n\nBICARGO','1','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL),
('27ba8a1e-e0ac-419a-a870-3b74c14cdee8','905461661672','Sayın yetkili; ŞENOL AKKOYUN adlı müşterinize 644535273 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 19.03.2025 16:03:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('27bc8487-8603-4096-b665-1b70fac32ef0','33680267085','126889614 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126889614\n\nYour shipment with the number 126889614 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126889614\n\nBICARGO','1','521af45a-6561-45db-adfb-641b8fafbc92',NULL),
('27c1bb20-93db-465c-9e25-49fce3ec9533','4915754521372','Sayın ALAETTİN BAYKAN, 614396499 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614396499\n\nDear ALAETTİN BAYKAN, your shipment with 614396499 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614396499\n\nBICARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('27c6b068-10bb-40bf-b406-09f3f3e7dc60','905079358213','ABDULLAH ÇELİK adlı müşterinizin 745714095 nolu gönderisi 1 parça halinde yola çıkmıştır.','1',NULL,NULL),
('27c91f67-f83d-48dd-a40e-2b082131134c','905335708965','HOLLANDA adlı müşterinizin 248602682 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL),
('27cb5877-9ac2-4273-8deb-86c3d2837836','4915754602001','Sayın TURGAY YILDIRIM, 428510909 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428510909\n\nDear TURGAY YILDIRIM, your shipment with 428510909 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428510909\n\nBICARGO','1',NULL,NULL),
('27d3c2aa-3f9f-4125-b8fb-4cdecf2bbb5a','32498162350','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('27d4c735-40dd-4f03-8dd0-95604bc2bb25','905517075149','Sayın yetkili; OKAY DERİNKUYU adlı müşterinize 478984010 nolu gönderinizin masa tv  ürünü 3 parça halinde GARDEROBE adresinizden 11.07.2025 10:37:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('27d8973e-19d2-48c3-a711-6765e6c10cd8','905300961610','TUĞBA BAĞCI adlı müşterinizin 126200859 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL),
('27de9a63-ca0f-44e5-b2a9-c7e3fa62f506','436641534757','371529841 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4829 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371529841\n\nYour shipment with the number 371529841 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4829. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371529841\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('27dfc036-9a5d-41c6-837d-a75ed90d9171','4917666234903','Sayın EDA ÇALIŞKAN, 437539983 nolu gönderiniz 6089 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437539983\n\nDear EDA ÇALIŞKAN, your shipment with 437539983 was delivered to you with the delivery code 6089. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437539983\n\n\nBICARGO','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('27e5ffc0-61ee-4a83-b6a5-7c0e400b0cce','33668485580','47876427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3823 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47876427\n\nYour shipment with the number 47876427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3823. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47876427\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('27eba680-ef93-4984-9ff2-c924c987fa85','491797361185','Sayın HATİCE GÜRBAY, 22140129 nolu gönderiniz 9281 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22140129\n\nDear HATİCE GÜRBAY, your shipment with 22140129 was delivered to you with the delivery code 9281. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22140129\n\n\nBICARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('27f4c74c-144d-4b88-a262-b885fed9adc5','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('27f70894-6aee-4fcf-b437-b03c8da045cb','4915216420316','449329901 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4335 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449329901\n\nYour shipment with the number 449329901 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4335. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449329901\n\nBICARGO','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('27fbc687-537c-4395-93ed-429df310596c','905079358213','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin DELUXE YATAK ürünü 1 parça halinde Fatura adresinizden 11.07.2025 20:18:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('27fd1f80-36b3-4106-90ed-9f3a9637eacd','905517075149','Sayın yetkili; İLHAM SEVAL İNDİRME adlı müşterinize 478259590 nolu gönderinizin viral yatak odası dolap 8 kapaklı ve puf var ürünü 25 parça halinde family adresinizden 26.06.2025 15:16:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('27ffa4ce-d3d1-4130-9909-8d4df3b65180','905054335859','Sayın yetkili; OGUZHAN SARP adlı müşterinize 501345257 nolu gönderinizin EFES KÖŞE KOLTUK(250*340 ürünü 5 parça halinde KATRE adresinizden 23.12.2024 11:53:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('281124fa-a439-4494-8651-6c936257d9ec','905517075149','KEVSER KAYA adlı müşterinizin 478983907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('28124949-0925-40cd-be3f-62980e6587c9','905304259202','Sayın yetkili; ÖZLEM RECEP ÇANAK adlı müşterinize 478966296 nolu gönderinizin 1 ad. yatak ve ssh küçük paketler ürünü 4 parça halinde çelikbey inegöl depo adresinizden 19.01.2025 19:10:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('2814ad0f-f56a-4be8-af58-4dfb48ed15e5','905313340045','Sayın yetkili; MERYEM BİRCAN ANİK adlı müşterinize 437791709 nolu gönderinizin sandalye ürünü 6 parça halinde mfour sandalye adresinizden 20.05.2025 15:48:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('28173557-c5b7-4f10-ad3b-693653faa855','31644100863','221752631 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5428 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221752631\n\nYour shipment with the number 221752631 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5428. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221752631\n\nBICARGO','2','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('281ce9af-f96c-4069-adbd-a476741ca5b4','905335511664','BEGÜM KIRCA adlı müşterinizin 371801847 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('281d4820-9729-471f-9e7c-58b01da38760','33782039319','Sayın CEM KONDU, 221686815 nolu gönderiniz 1962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221686815\n\nDear CEM KONDU, your shipment with 221686815 was delivered to you with the delivery code 1962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221686815\n\n\nBICARGO','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('281db591-1e96-4b13-b72c-a5ae82035a0e','491639749830','655688103 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2912 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655688103\n\nYour shipment with the number 655688103 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2912. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655688103\n\nBICARGO','1','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL),
('2821ac6d-616b-4667-a7da-ab1d887a6bfb','905412080061','Sayın ERCAN SADE, 30.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1660708\nŞifre : 1660708\n			\nBİCARGO','1',NULL,'1660b7bd-ba08-4a06-83fa-1f5532c82aae'),
('282291bd-d572-4993-8717-8a888a9b1d5f','905357955726','Serkan yıldız adlı müşterinizin 315752826 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL),
('2825f219-b83d-46bb-9cda-6709fb3e36f3','4917634657298','İletişim \n					Halil Bey (Şoför) :+905541100849','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('282bbbdd-bdf5-4b91-bbe1-32583d392700','905079358213','NİLÜFER YAMAN SSH  adlı müşterinizin 745525130 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('282e1441-fb8b-42ee-832b-793508a8554c','4915751330310','Sayın ADEM BÜYÜK, 371913094 nolu gönderiniz 1500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371913094\n\nDear ADEM BÜYÜK, your shipment with 371913094 was delivered to you with the delivery code 1500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371913094\n\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('282e792f-ced1-479c-9870-35872eca8180','491606303499','Sayın BARAN YILDIZ, 644832811 nolu gönderiniz 7804 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644832811\n\nDear BARAN YILDIZ, your shipment with 644832811 was delivered to you with the delivery code 7804. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644832811\n\n\nBICARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('28311ca0-61e8-4b84-a4ad-2b7192970ec1','905313340045','MUHAMMED ALİ ASLAN adlı müşterinizin 437982892 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('2833ba3a-e27e-4994-a332-97f2439aa971','4915785558828','91059017 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8118 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91059017\n\nYour shipment with the number 91059017 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8118. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91059017\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('2838fa2a-6208-4004-b2f8-ed613dc710d3','491728436940','745831913 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745831913\n\nYour shipment with the number 745831913 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745831913\n\nBICARGO','1','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL),
('283e134d-eef9-4b3c-ac3b-265b82214ec1','4917662211030','Sayın HÜSEYİN KIRTAY, 745357299 nolu gönderiniz 2591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745357299\n\nDear HÜSEYİN KIRTAY, your shipment with 745357299 was delivered to you with the delivery code 2591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745357299\n\n\nBICARGO','1','ad525e43-9190-4602-ac34-b389ec280f0a',NULL),
('283e3938-9aeb-4daf-bdeb-2a537a30918f','905423036885','Sayın ALMİRA, 920610594 nolu gönderiniz 10372 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/920610594\n\nDear ALMİRA, your shipment with 920610594 was delivered to you with the delivery code 10372. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/920610594\n\n\nBICARGO','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('28405618-bcac-4af4-a605-19974d15aa63','9053259981980','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('28471041-b520-45fa-916a-bcdbe9f59e12','905331602195','MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH) adlı müşterinizin 221561968 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('284780a8-14a5-4ce0-8099-df82ebd58f80','4915752422219','501307359 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3756 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501307359\n\nYour shipment with the number 501307359 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3756. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501307359\n\nBICARGO','1','b7214302-d982-4460-ad8c-ebf440918b82',NULL),
('28493263-00f8-4a40-a585-d40d5cb28d2f','491764697733','50156405 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1480 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/50156405\n\nYour shipment with the number 50156405 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1480. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/50156405\n\nBICARGO','2','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL),
('284e3439-9286-47c6-921f-9e957af23a02','905336367828','Sayın yetkili; FERİDE USLI  adlı müşterinize 982674617 nolu gönderinizin Köşe koltuk  ürünü 4 parça halinde Comfortlife  adresinizden 13.08.2025 14:53:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('2855df8d-438c-4e98-92bc-ec29f8a67233','905325998198','BAHATTİN AGİT ÇELİK adlı müşterinizin 614350153 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('2855e133-6a30-4106-97e4-70d24a3e85fe','905350617509','VAİSE İBRAHİM adlı müşterinizin 613108463 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('28560693-c854-4b55-b99b-28a02f4024e7','905454259202','ZEYNEP CİHANGİR adlı müşterinizin 478678849 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('28572d75-fa30-410d-bd4a-a5c01a910e6a','32466169557','Sayın HAKAN ASLAN, 982858369 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982858369\n\nDear HAKAN ASLAN, your shipment with 982858369 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982858369\n\nBICARGO','1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL),
('2858137b-8cca-48ec-ace0-fee07b33cd7e','905454259202','Sayın yetkili; NAMIK KAYGIN adlı müşterinize 478142620 nolu gönderinizin köşe takımı ürünü 5 parça halinde GANZE adresinizden 12.02.2025 14:55:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('285b57de-43c8-4374-b43f-9fc8663efb91','905312762034','ERHAN ALP adlı müşterinizin 808538086 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('285b5b17-1a2b-447b-945f-0b5181ace4f7','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde SENS DİZAYN adresinizden 26.09.2025 16:35:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('28606634-b37d-4aef-9ef0-fc08e9da10af','905335511664','Sayın yetkili; ESRA AVAN adlı müşterinize 371105450 nolu gönderinizin sehpa ürünü 2 parça halinde SM Tasarım adresinizden 19.08.2025 15:05:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b',NULL),
('2861c12f-a8cc-47a0-babf-84af4f4fc007','4917664681539','Sayın BERKAN AĞIRMAN, 910899167 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910899167\n\nDear BERKAN AĞIRMAN, your shipment with 910899167 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910899167\n\nBICARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('2867ccf8-d876-473f-b887-28e1433c2318','32485530941','745786401 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6132 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745786401\n\nYour shipment with the number 745786401 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6132. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745786401\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('286e1072-3bbe-47b0-a737-7ce71772b87b','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin PRADA ORTA SEHPA ürünü 1 parça halinde SERBEST MOB adresinizden 19.09.2025 12:43:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('28781aa8-1d3e-4204-a16e-5e6cfcd268f7','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 47811313 nolu gönderinizin yatak odası-koltuk tk- sehpa ürünü 1 parça halinde çelikbey inegöl depo adresinizden 12.03.2025 21:27:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('287d9033-03cd-4f6b-84e1-42797e4c7e14','41764397280','598668612 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3209 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598668612\n\nYour shipment with the number 598668612 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3209. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598668612\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('287fdad5-b6a0-43a0-b1d9-52524cb6a746','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin Orta sehpa ürünü 1 parça halinde İlyas Masa adresinizden 17.06.2025 16:21:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('28838229-1cea-45aa-a7cb-0d372dfbcd1b','4915147016161','Sayın ESRA MAT(K), 644484322 nolu gönderiniz 6567 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644484322\n\nDear ESRA MAT(K), your shipment with 644484322 was delivered to you with the delivery code 6567. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644484322\n\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('2886418d-0c37-481e-be24-81f6983e0715','905336367828','MİAMİ STYLE  adlı müşterinizin 982999114 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('28878d67-8635-453d-974c-1fc457bd08ad','4917662642928','Sayın SANİ ALAJBEGOVİC, 644344492 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644344492\n\nDear SANİ ALAJBEGOVİC, your shipment with 644344492 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644344492\n\nBICARGO','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('288df93d-4c80-46f1-814a-cf0a1e178bef','491721850583','745743577 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7799 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745743577\n\nYour shipment with the number 745743577 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7799. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745743577\n\nBICARGO','2','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('28954802-a585-4b7d-9471-e4fb34adc21f','905461661672','Sayın yetkili; ZEKİYE TOPATAN adlı müşterinize 644877146 nolu gönderinizin MASA, SEHPA,TV ÜNİTESİ VE TV DUVAR PANELİ ürünü 8 parça halinde Masami Mobilya adresinizden 17.03.2025 11:33:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('2898d274-e653-4ec2-9d73-886c1fde22a5','33782976683','Sayın ŞULE ÇAYIR , 765501651 nolu gönderiniz 1573 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765501651\n\nDear ŞULE ÇAYIR , your shipment with 765501651 was delivered to you with the delivery code 1573. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765501651\n\n\nBICARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('289bde41-78db-429b-bb25-29e3046d2c45','905313340045','Sayın yetkili; GAMZE ŞAHİN adlı müşterinize 437400305 nolu gönderinizin sehpa ve aksesuar  ürünü 4 parça halinde dorthome ofis adresinizden 09.05.2025 10:10:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('289f62c8-2377-40df-9285-797af5514896','4915906664291','613262202 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7006 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613262202\n\nYour shipment with the number 613262202 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7006. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613262202\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('28a42f82-171a-44ab-889e-9fb54f1fd075','33647335236','268615271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/268615271\n\nYour shipment with the number 268615271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/268615271\n\nBICARGO','1','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL),
('28ab2d13-d891-4eb6-b6d5-2b43242fe6b7','491744555584','İletişim \n					Şöför Uğur Acar +905424435917','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('28ac1d7d-181e-4c62-bd04-96ec0e5367f2','33699316720','Sayın AYDIN KEMERLİ , 982837523 nolu gönderiniz 4578 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982837523\n\nDear AYDIN KEMERLİ , your shipment with 982837523 was delivered to you with the delivery code 4578. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982837523\n\n\nBICARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('28ad1918-8866-4c5d-b3f9-c3cf3e04d358','905079358213','Sayın yetkili; ERAY ASLANCAN adlı müşterinize 745294810 nolu gönderinizin SSH BAZA DEMİRİ + MAKASLARI  ürünü 3 parça halinde Fatura adresinizden 06.08.2025 15:15:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('28b638db-880e-4f73-97fa-60265bbd3a65','32483547124','221496522 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10985 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221496522\n\nYour shipment with the number 221496522 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10985. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221496522\n\nBICARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('28bacfe0-990b-432f-9212-0307d43ebe5f','905454259202','Sayın yetkili; AHMET CELEBCİ adlı müşterinize 478650682 nolu gönderinizin 180x200 baza seti ürünü 4 parça halinde çelikbey inegöl depo adresinizden 14.03.2025 14:10:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('28bacfe6-ff75-4aa8-a925-69b208107568','905517075149','Sayın yetkili; MASOUD SÜLEYMAN adlı müşterinize 478183761 nolu gönderinizin puflar ürünü 2 parça halinde BİCARGO DEPO adresinizden 14.10.2025 17:58:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5531cd-fb21-4284-9145-817c08eee250',NULL),
('28bb1565-b245-4798-a6d8-b0c30c8cbb4e','905331602195','LEPETİT CHRİSTELLE adlı müşterinizin 221987558 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('28c40c81-810e-41f6-bf91-1ae0f91dee44','33664842794','221417545 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9007 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221417545\n\nYour shipment with the number 221417545 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9007. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221417545\n\nBICARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('28c938a5-5b43-48ee-994e-406537587e4b','905079358213','Sayın yetkili; DÖNDÜ ESER adlı müşterinize 745498790 nolu gönderinizin KING PLATİN BAZA SETİ 180X200 ürünü 4 parça halinde Fatura adresinizden 07.02.2025 14:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('28cdddce-5ddf-4426-85cc-227f8331937b','5301824880','Sayın YILDIZ  ORHAN, 14.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6170676\nŞifre : 6170676\n			\nBİCARGO','1',NULL,'6e170676-8e22-488f-a4ec-2e5cfb9db651'),
('28d148ad-c43c-49ac-afae-9ee5dfedb41e','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Karyola ürünü 3 parça halinde Arya Bedding  adresinizden 08.11.2024 13:53:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('28d1eab1-596f-4425-b8b2-ba46a0d10be5','436607580201','011697836 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9854 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011697836\n\nYour shipment with the number 011697836 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9854. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011697836\n\nBICARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('28d41719-ed67-41ec-935e-931987dc8c13','905079358213','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin BAMBİ LATEX MASTER YATAK 160X200 2 ADET ürünü 4 parça halinde Fatura adresinizden 18.09.2025 14:19:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('28d5c9d3-7c43-4dae-988b-e64e2c12b4a6','43699171115387','Sayın BEKİR DOĞAN , 478168461 nolu gönderiniz 6650 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478168461\n\nDear BEKİR DOĞAN , your shipment with 478168461 was delivered to you with the delivery code 6650. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478168461\n\n\nBICARGO','2','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('28e51f81-ff2d-4d97-bb21-46cdc5a88535','4915147245701','Sayın KEREM TOGAY, 735792949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735792949\n\nDear KEREM TOGAY, your shipment with 735792949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735792949\n\nBICARGO','1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL),
('28e5d407-e6c3-42e8-a28c-657b2d28d6aa','4917621376557','Sayın CAN DERİN, 517337381 nolu gönderiniz 10454 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517337381\n\nDear CAN DERİN, your shipment with 517337381 was delivered to you with the delivery code 10454. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517337381\n\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('28e666dc-04b9-4169-8e5d-9e42e4d9e603','905304259202','Sayın yetkili; NURTEN-HASAN ÇAKMAK adlı müşterinize 478644410 nolu gönderinizin 160LIK VE 180 LİK SET ürünü 8 parça halinde çelikbey inegöl depo adresinizden 07.02.2025 14:29:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('28e9d298-f4be-4f13-8c98-b7b601a444e8','905331602195','Sayın yetkili; DİJWAR TAŞÇEVİREN adlı müşterinize 221485829 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde Fatura adresinizden 11.09.2025 13:48:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('28ea8dc5-82ad-43a4-a170-3f5196412770','905336367828','SAVU ALİN  adlı müşterinizin 98221051 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('28ecd317-bda0-4257-afe5-63a198cf908f','905394878216','BARAN RAKİP adlı müşterinizin 517764616 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('28f01a7b-2806-4e72-9da4-e539d9a2b846','33676203285','478928003 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478928003\n\nYour shipment with the number 478928003 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478928003\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('28f086d4-a205-4755-a1a6-8d8cb66ade18','491736344643','Sayın TUĞBA BAĞCI, 126200859 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126200859\n\nDear TUĞBA BAĞCI, your shipment with 126200859 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126200859\n\nBICARGO','1','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL),
('28f95786-ee6e-494b-bf65-deb6a5d24115','905331602195','Sayın yetkili; İBRAHİM AKIN  adlı müşterinize 221594735 nolu gönderinizin 80x120 mermer desen sehpa ürünü 1 parça halinde Fatura adresinizden 26.08.2025 15:42:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('28fe1e12-3021-48fe-894f-103efa2e9c7f','905079358213','ÇAĞLA SEVİNÇ adlı müşterinizin 745243104 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL),
('29031ad2-e58e-4ca2-b444-4a742aa0587b','491636703149','Sayın BİNALİ BOZBAŞ, 478798827 nolu gönderiniz 4683 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478798827\n\nDear BİNALİ BOZBAŞ, your shipment with 478798827 was delivered to you with the delivery code 4683. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478798827\n\n\nBICARGO','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('2905994a-670b-46cf-8831-d75b5475615a','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin baza başlık karyola ürünü 3 parça halinde Fatura adresinizden 06.10.2025 10:47:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('29081209-f17c-4a6c-acdc-358aa5e25ea4','905335511664','Sayın yetkili; YASEMİN DOĞAN adlı müşterinize 371215833 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 05.08.2025 11:21:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','43b4cdba-f0e7-4de7-ae8c-4174a5d3537a',NULL),
('2909c977-88e0-4c07-9903-debdd5753029','905079358213','SARAH KUSLU adlı müşterinizin 745502887 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8f99487-f21d-467c-9282-047182f5edbf',NULL),
('290ce7d9-86f8-4b88-bbfd-d872092ddc09','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin DORA MASA / 8 SANDALYE ürünü 7 parça halinde DOSSİ adresinizden 19.09.2025 14:49:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('290e183b-0274-46ee-bdfd-7733ad1656eb','491786788734','37140435 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6727 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37140435\n\nYour shipment with the number 37140435 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6727. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37140435\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('29107ec5-9f7f-43b8-8294-b7a776763799','905363385813','AYSEL OK adlı müşterinizin 976245604 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL),
('29114f9d-9afe-4df2-868d-0b9b3ccc6554','4917662992402','598373943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5694 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598373943\n\nYour shipment with the number 598373943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5694. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598373943\n\nBICARGO','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('29135b71-46bd-4078-bcfc-3cf8c443f55a','905079358213','Sayın yetkili; MUSTAFA YILMAZ adlı müşterinize 745636493 nolu gönderinizin DELÜXE BAZA SETİ 100X200 ürünü 3 parça halinde Fatura adresinizden 07.02.2025 14:27:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('2914a81c-7b1b-4d45-8263-9d0c2542c900','33666051702','Sayın BECET ÖZDEMİR, 478221533 nolu gönderiniz 6824 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478221533\n\nDear BECET ÖZDEMİR, your shipment with 478221533 was delivered to you with the delivery code 6824. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478221533\n\n\nBICARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('2914c2e3-9474-4e81-871c-b5d8302f8054','905336367828','MOHAMMED ASİF KARİMİ adlı müşterinizin 982501931 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5c1db79-0154-4eeb-bcc8-d0daa11527b1',NULL),
('291d1bca-9297-491a-983c-a4cefeb2b290','905465479064','CANKUT BEY adlı müşterinizin 858200454 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e323a55-ba70-413e-929d-bc1527816bbc',NULL),
('29217c71-ce1f-4526-8a99-5d87b7b90067','41795028159','613803170 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6706 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613803170\n\nYour shipment with the number 613803170 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6706. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613803170\n\nBICARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('29290d57-cc7a-4849-a374-d16dd8ab3b4f','905535521975','KENAN SEKMEN  adlı müşterinizin 01914447 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','97182860-1f38-433b-b884-7944ccda1a30',NULL),
('293142c6-bf2f-4c65-a98c-7f2db85aa2b6','4915124276955','319232330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7344 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319232330\n\nYour shipment with the number 319232330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7344. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319232330\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('29336765-f985-44d0-8164-6895760b073e','905350617509','Sayın yetkili; GASİ MUSA adlı müşterinize 613262202 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Moda dizayn adresinizden 18.06.2025 11:55:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('293470ab-63c5-4c3f-a191-d0d0debc0b17','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN SSH  adlı müşterinize 745693868 nolu gönderinizin SSH TEKLİ  ürünü 1 parça halinde ELİTİS adresinizden 10.10.2025 16:23:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','866ff076-12a1-4d7b-8ebc-b64544beb08e',NULL),
('29387798-afe6-4d6a-8b2c-ef9550ad8403','905079358213','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin BELLA KOLTUK TAKIMI  ürünü 5 parça halinde MUKA adresinizden 25.09.2025 14:44:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('293ad3d4-0d10-4d19-a752-fb71c269dc8f','905075277637','Sayın yetkili; KENAN SOYLU adlı müşterinize 74534951 nolu gönderinizin 2 KUTU SANDALYE 1 SEHPA ürünü 4 parça halinde Fatura adresinizden 03.02.2025 20:51:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('293db16f-8e70-4b88-a0b7-2d3127b64146','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin genç odası ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('293f6997-75f6-4489-b219-5d83488083c0','905331602195','GODİNA REJEP  adlı müşterinizin 221157320 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('2942f2e4-ecf4-4697-9582-e01cbeb15e10','33745172654','98274489 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98274489\n\nYour shipment with the number 98274489 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98274489\n\nBICARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('294d957b-bbcd-412b-bb25-7dc138066f25','905343972457','428602278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1188 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428602278\n\nYour shipment with the number 428602278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1188. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428602278\n\nBICARGO','1','8f38f94a-f9de-478d-9d69-21faf6e91db1',NULL),
('29518749-a08f-42f5-9a5c-7e4667438e20','905350617509','SUADA HAMZA  adlı müşterinizin 613990020 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('2955103c-4aa2-4b6a-b8f5-133ee1f97c77','905461661672','ABDULLAH ÖĞRETEN adlı müşterinizin 644917251 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('29554451-7c15-4d2c-9a5b-662e8a734d98','4915234223362','598226174 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6547 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598226174\n\nYour shipment with the number 598226174 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6547. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598226174\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('295de49d-d85e-441c-8e13-b897719f031b','31613006004','Sayın RAHİMİ, 449666503 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449666503\n\nDear RAHİMİ, your shipment with 449666503 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449666503\n\nBICARGO','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('295f7639-2a80-4b5f-803a-2605a8068b01','905079358213','DELİL ÖZTÜRK SSH adlı müşterinizin 745786401 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('296294ef-8a90-4257-ae32-d78ad66fa79e','905349208933','Sayın yetkili; ARİFE SARI adlı müşterinize 127865742 nolu gönderinizin KOLTUK TAKIMI ürünü 6 parça halinde TWİNS adresinizden 14.02.2025 17:11:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('296adc4d-44cc-409e-917e-4c8accb36017','905313340045','NİSA PARLAR adlı müşterinizin 437895842 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('296bfc80-528b-4ff9-bfe3-7f33ab97bcde','33769010323','517365072 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517365072\n\nYour shipment with the number 517365072 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517365072\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('296dba78-7642-4600-89e0-bd4a3107d76d','33760179240','Sayın INTERCASH, 412838128 nolu gönderiniz 10429 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412838128\n\nDear INTERCASH, your shipment with 412838128 was delivered to you with the delivery code 10429. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412838128\n\n\nBICARGO','1','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('296fb98b-3ef2-4ae9-8204-a5c6294ad126','4917656772155','Sayın MEHMET ULUIŞIK, 598614826 nolu gönderiniz 2960 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598614826\n\nDear MEHMET ULUIŞIK, your shipment with 598614826 was delivered to you with the delivery code 2960. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598614826\n\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('297744b2-ce29-4dfe-ab97-e830e83cb1ca','4915121097412','478545457 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10507 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478545457\n\nYour shipment with the number 478545457 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10507. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478545457\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('297b7ec5-24e5-4910-9bc4-c3417e108d29','905304259202','MELİSA DEMİRTAŞ adlı müşterinizin 478504480 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL),
('297bca15-8da9-4337-9cca-9439fa3bbdbc','905304259202','NADİDE BAHÇEÇİOĞLU adlı müşterinizin 478283773 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL),
('2980471a-4194-41ea-a5a1-daa2c92e8021','905325000478','CAVDAROĞLU adlı müşterinizin 412955343 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('2980683c-c448-4f6b-9230-4cc080476ec4','4915785558828','ŞÖFÖR İKETİŞİM\n					+905301824880','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('2983c0dd-1b4d-43bf-b456-e719e9dfb5e5','491746723171','Sayın HÜLYA AKKOÇ, 735384295 nolu gönderiniz 3383 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735384295\n\nDear HÜLYA AKKOÇ, your shipment with 735384295 was delivered to you with the delivery code 3383. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735384295\n\n\nBICARGO','1','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL),
('2986af93-2769-4695-b2ac-bdb491e3693e','5326077059','31934282 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8907 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31934282\n\nYour shipment with the number 31934282 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8907. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/31934282\n\nBICARGO','2','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('298702d0-3d32-44a6-a2ca-a8d186b418f2','491775901111','319829855 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9834 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319829855\n\nYour shipment with the number 319829855 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9834. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319829855\n\nBICARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('29899af0-f411-4897-9e91-1540d4155814','491634503423','Sayın MUSA ÖZER		, 910586114 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910586114\n\nDear MUSA ÖZER		, your shipment with 910586114 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910586114\n\nBICARGO','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('298c6f05-4565-46cf-954e-4b4e01e76bfa','905304259202','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 478342417 nolu gönderinizin giza yatak odası ürünü 22 parça halinde acca adresinizden 29.04.2025 12:59:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('2991a8a3-6804-4645-aa67-553a66b9077d','905335511664','Sayın yetkili; ARZU KUZUCU adlı müşterinize 371160737 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 18.04.2025 11:09:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('2996517d-7865-4d4e-a35c-fb84f6881067','905304259202','AYŞE KONDAL adlı müşterinizin 478971881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL),
('29a041a4-7128-4335-999e-ab19844b66cb','905313340045','SİBEL HİTAY adlı müşterinizin 437812245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('29a2787a-189f-428f-96ad-784ffa2c52f1','31611378787','Sayın VEYSEL POLAT, 221362176 nolu gönderiniz 7497 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221362176\n\nDear VEYSEL POLAT, your shipment with 221362176 was delivered to you with the delivery code 7497. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221362176\n\n\nBICARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('29a4add1-b33b-4ee2-9e3c-68bed0c4f316','491779772089','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644771270\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('29a6b7d9-a1eb-4fb7-a42b-f9f35085c87c','905461661672','Sayın yetkili; SABİHA SATICI adlı müşterinize 644520957 nolu gönderinizin MASA  ürünü 3 parça halinde Masami Mobilya adresinizden 23.09.2025 15:33:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('29a8727b-2d56-4efa-b8c7-7feb6d126b9e','32484143474','412550726 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5782 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412550726\n\nYour shipment with the number 412550726 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5782. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412550726\n\nBICARGO','1','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL),
('29aeb5f6-f378-4245-b8d2-488488410900','905350617509','Sayın yetkili;  RİM MOUSSA  adlı müşterinize 613868869 nolu gönderinizin Köşe koltuk ürünü 3 parça halinde Moda dizayn adresinizden 11.04.2025 16:50:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d717ffb-678b-4e82-9f61-5357693131d8',NULL),
('29b0b14c-2ef1-4b74-bc5b-664fa66b4b69','905331602195','Sayın yetkili; ŞEYMA BOZDAĞ adlı müşterinize 221940723 nolu gönderinizin 70x120 cm msm05 baskılı orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.06.2025 11:38:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('29b25593-b209-41dd-b48a-9d1d465764e3','905059175469','NADİR KURUKOL adlı müşterinizin 428752676 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('29bd53c0-aec3-4d96-9d21-cc560f82a87a','436609968921','Sayın RASİM OZAN, 437642214 nolu gönderiniz 1112 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437642214\n\nDear RASİM OZAN, your shipment with 437642214 was delivered to you with the delivery code 1112. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437642214\n\n\nBICARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('29be17e2-c5cf-4fc3-ab2e-a32f7a485575','4917620989771','Sayın KAMER DUHAN ECE(K), 644651781 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644651781\n\nDear KAMER DUHAN ECE(K), your shipment with 644651781 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644651781\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('29bf8328-e7c1-457f-a6c4-d7a58f89ff97','905075277637','Sayın yetkili; SERPİL KACIR adlı müşterinize 745141319 nolu gönderinizin İCON SANDALYE  ürünü 3 parça halinde ROIS adresinizden 27.10.2025 16:12:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','401ecd97-fb17-4288-b2ea-4445b8cdc4f1',NULL),
('29c0a454-582a-498f-ba3a-af2717ce2875','905510396989','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA MASA / 8 SANDALYE ürünü 8 parça halinde ROİS adresinizden 22.09.2025 14:30:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('29d45e3c-b3f7-4236-bfb3-dbf7cfdb23d9','905304259202','AYŞE KONDAL adlı müşterinizin 478530755 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('29d54b58-a556-4b01-8aa6-51f956aba286','905079047428','SAKİNA RAHİMİ  adlı müşterinizin 449108957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72d228c3-4890-476a-b92a-a7a953a0be97',NULL),
('29d6349d-40d7-4f2d-8fca-c7cd73a73f7c','4915170072402','Sayın SEVGİ YILMAZ, 97677559 nolu gönderiniz 3425 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/97677559\n\nDear SEVGİ YILMAZ, your shipment with 97677559 was delivered to you with the delivery code 3425. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/97677559\n\n\nBICARGO','1','855d2794-7066-4b47-b159-2cf8816867f4',NULL),
('29d776c0-7076-4cfe-9f1d-f6935f774b3d','33651062743','Sayın  İSMET CEYLAN, 127241743 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127241743\n\nDear  İSMET CEYLAN, your shipment with 127241743 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127241743\n\nBICARGO','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('29d79e8c-e844-4f01-b8f7-c684696b2f1d','905331602195','HAMİDİ SONİA  adlı müşterinizin 221949733 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('29da9fee-7079-40a4-91c9-e52969629346','905331602195','Sayın yetkili; DİJWAR TAŞÇEVİREN adlı müşterinize 221485829 nolu gönderinizin 300x270 köşe koltuk ürünü 5 parça halinde 3ardeco koltuk adresinizden 03.09.2025 14:21:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('29dab697-1f26-4ef6-8ea8-1801fb8e441a','491785154037','644820551 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9966 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644820551\n\nYour shipment with the number 644820551 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9966. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644820551\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('29db37e7-b215-4f37-9549-9f1c38d9592a','905451571652','Sayın yetkili; ZEYNEP KÜÇÜKBIYIK adlı müşterinize 531450758 nolu gönderinizin Köşe Koltuk ürünü 2 parça halinde PABLO HOME adresinizden 11.08.2025 14:06:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('29dc79f1-8546-4aff-970f-d26ccac57c8a','905312762034','Sayın yetkili; KİM KNÖPFLE adlı müşterinize 808690841 nolu gönderinizin KARYOLA ürünü 6 parça halinde MOE BEDDİNG adresinizden 23.10.2025 11:37:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','340801e4-6036-4b2f-9cae-d51385895b71',NULL),
('29e3a793-cb74-40c0-b0d9-3b0b18c6d213','0033767846954','735736030 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6026 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735736030\n\nYour shipment with the number 735736030 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6026. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735736030\n\nBICARGO','2','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL),
('29e65004-1f7e-4367-9083-d08995b9d017','905337836884','Sayın yetkili; AHU AYYILDIZ adlı müşterinize 140421350 nolu gönderinizin köşe koltuk ürünü 5 parça halinde FE-HA CONCEPT adresinizden 23.10.2025 15:10:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29897483-14ac-4404-8bba-38c2a76aa9a9',NULL),
('29efc6e9-4ffe-4753-922a-3576181a5cf8','905079358213','GÜLSÜM KOÇAK adlı müşterinizin 745632580 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL),
('29f04ecf-feb8-458c-b3bd-da0c457d0ef1','4917660841394','910129924 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2178 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910129924\n\nYour shipment with the number 910129924 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2178. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910129924\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('29f0c87e-3a49-4256-8709-a7c6aa2599d7','905517075149','Sayın yetkili; ALİCE CHOCRON adlı müşterinize 478589258 nolu gönderinizin frida köşe 4 modüllü ürünü 5 parça halinde RİXXE adresinizden 06.10.2025 10:24:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('29f48e91-8a84-4790-bcf0-afa5a68b1caf','4917620715846','517914097 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5613 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517914097\n\nYour shipment with the number 517914097 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5613. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517914097\n\nBICARGO','1','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL),
('29f4d09f-0795-43f4-be07-3d64588c5477','491725413866','428499287 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5954 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428499287\n\nYour shipment with the number 428499287 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5954. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428499287\n\nBICARGO','1','ff039116-94c2-4c75-851c-9deaf4e01549',NULL),
('29f83b9b-e939-40e6-8b32-e1872f3bdaca','905331602195','RABİA NALKIRAN adlı müşterinizin 221307786 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('29fc542f-e90c-45d2-9de0-a3e7b9d6f13d','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin tv ünütesi ürünü 1 parça halinde Comfortlife  adresinizden 30.12.2024 17:28:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('29ff5139-6563-4f0d-a6c5-0f6b7bc7b812','905454259202','SULTAN GÖR adlı müşterinizin 478212601 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('2a001135-8c4d-47e5-8d08-aff250499cd0','491795209461','Sayın GHAZAL TARIK İLHAN, 644971564 nolu gönderiniz 4947 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644971564\n\nDear GHAZAL TARIK İLHAN, your shipment with 644971564 was delivered to you with the delivery code 4947. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644971564\n\n\nBICARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('2a025dcc-8653-4ca8-b9f6-d67b7a813e97','905331602195','YILDIZ KILIÇ adlı müşterinizin 221952785 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('2a05058d-d375-4b9e-af2c-b300f01d1ca5','3164777260','Sayın Leman emre, 478361652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478361652\n\nDear Leman emre, your shipment with 478361652 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478361652\n\nBICARGO','2','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL),
('2a090b04-98df-4bcf-b26f-b639f7c6eef2','004306603838566','Sayın YONCA KILIÇ, 380417164 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/380417164\n\nDear YONCA KILIÇ, your shipment with 380417164 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/380417164\n\nBICARGO','2','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('2a11576b-2bce-44b9-a513-9e507d9465a2','32489389683','221598709 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2916 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221598709\n\nYour shipment with the number 221598709 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2916. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221598709\n\nBICARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('2a11f019-e401-401b-ac53-9957ab61df9c','4915157638110','Sayın ALİŞAN CERCİ(K), 644847294 nolu gönderiniz 5740 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644847294\n\nDear ALİŞAN CERCİ(K), your shipment with 644847294 was delivered to you with the delivery code 5740. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644847294\n\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('2a121667-bc91-4a60-a2bb-19090a02d4e2','491626393170','Sayın TUĞBA GÜLSEVEN, 64434778 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64434778\n\nDear TUĞBA GÜLSEVEN, your shipment with 64434778 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64434778\n\nBICARGO','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('2a13144d-d955-46d1-ad8d-f5b84d38686a','905331602195','Sayın yetkili; HATİCE ÖZTÜRK adlı müşterinize 221621737 nolu gönderinizin Balat sandalye siyah ürünü 8 parça halinde MASAMİ MOBİLYA adresinizden 25.09.2025 13:45:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('2a135874-6bd9-46e2-9df7-c2e2f79771ba','017656921957','Sayın RAMİN HUSSEİNİ, 44920682 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44920682\n\nDear RAMİN HUSSEİNİ, your shipment with 44920682 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44920682\n\nBICARGO','2','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('2a184abf-b5f1-4ba8-8ce5-680d8e532d36','905428209234','MEHDİ NAEİMİ adlı müşterinizin 319276460 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4475a939-a408-4d10-a256-61dc03f279da',NULL),
('2a188508-0d97-4139-a868-df17b90fd794','905539740010','Sayın yetkili; FAHRİYE KARTAL adlı müşterinize 011255060 nolu gönderinizin köşe ürünü 4 parça halinde kaan  adresinizden 28.08.2025 17:06:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('2a20d1db-704b-4210-8e43-fc0bfae63c4c','4917661327084','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('2a261fae-a90e-4e13-8a33-7166c9df721e','905321608709','CAFER BEY adlı müşterinizin 248630618 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('2a26f569-0ec6-48fc-ab15-270e0921fd1b','905517075149','ÜLKER SEPETÇİ adlı müşterinizin 4786538 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','82c2a380-c89a-4beb-ba59-ed765263d701',NULL),
('2a276b59-d475-447e-869e-78752330bd5f','905075277637','AYŞE ÖZSOY adlı müşterinizin 745132796 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL),
('2a2af1e3-05d3-4a5b-8e14-932830bdb4bc','905336367828','DENİSA LANGU  adlı müşterinizin 982134567 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('2a2d524e-2aa6-4f81-b3d5-417c611a0813','436607735988','33850305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33850305\n\nYour shipment with the number 33850305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/33850305\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('2a3c57ad-8322-4be9-909c-ed8d96419709','905336367828','HASAN SARMAN adlı müşterinizin 982364429 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','baae34a4-033d-4893-b696-b36e57c318f7',NULL),
('2a3c9abb-2891-40d0-9851-5f5b4267c03c','905530309780','WALİ MAADAN adlı müşterinizin 418857351 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('2a3d78ec-773e-4422-9e3e-d5aa0e3d7221','31648989014','65754067 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10365 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65754067\n\nYour shipment with the number 65754067 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10365. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/65754067\n\nBICARGO','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('2a419a2e-267b-4621-b8ac-e1854a766bd8','905428209234','Sayın yetkili; YILMAZ KARA  adlı müşterinize 31922563 nolu gönderinizin halı ürünü 1 parça halinde Fatura adresinizden 05.03.2025 12:00:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('2a42b440-0345-4d5c-8675-03fd816e3db6','905461661672','Sayın yetkili; ERDEL SİBEL adlı müşterinize 644968450 nolu gönderinizin MASA VE SEHPA ürünü 5 parça halinde Masami Mobilya adresinizden 02.05.2025 16:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('2a433f01-30d0-4c7f-9696-3a30f756fad8','905331602195','SEMAHAT ÇELİK adlı müşterinizin 221803289 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('2a456530-d189-4c45-9e47-c9ae7ab1289e','905335511664','MUHAMMED TOPAL adlı müşterinizin 371681337 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('2a478ac9-dbbc-4fec-9786-5ace13be70f3','905079358213','HÜSEYİN ÖÇAL SSH  adlı müşterinizin 745350597 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('2a5259b6-4b51-41e5-a9a8-a39322560c38','33695161466','745850370 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7179 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745850370\n\nYour shipment with the number 745850370 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7179. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745850370\n\nBICARGO','1','b384d0a2-c272-4375-a026-2cf2910078c9',NULL),
('2a580671-ddb0-4eaf-8ecc-310519ba85a1','33618347342','Sayın MUHAMMER SARI, 614345013 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614345013\n\nDear MUHAMMER SARI, your shipment with 614345013 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614345013\n\nBICARGO','1','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL),
('2a581221-fb15-462c-b302-406ccd29b55c','4915209045743','Sayın MEDİNE ÖKDEN, 127639932 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127639932\n\nDear MEDİNE ÖKDEN, your shipment with 127639932 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127639932\n\nBICARGO','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('2a58c407-f08b-4856-a1e5-b7a68274f250','493760828565','Sayın BARAN YILDIZ, 745455914 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745455914\n\nDear BARAN YILDIZ, your shipment with 745455914 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745455914\n\nBICARGO','2','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL),
('2a58e1a2-26cc-4038-abbd-98ecd683fe29','436609678124','745132796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745132796\n\nYour shipment with the number 745132796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745132796\n\nBICARGO','1','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL),
('2a59898c-6244-486f-8fe3-1ecd1c7eef97','4915759307313','Sayın MUHAMMET ALTUNKAYA, 478535316 nolu gönderiniz 3258 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478535316\n\nDear MUHAMMET ALTUNKAYA, your shipment with 478535316 was delivered to you with the delivery code 3258. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478535316\n\n\nBICARGO','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('2a5a9768-a41e-47d7-9832-bbe662c0c9af','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin LOFTER GENÇ ODASI ürünü 29 parça halinde GENCECİX adresinizden 29.04.2025 16:35:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('2a5dfe4f-9771-485a-bcfc-c9468847eb70','491627680129','Sayın MAHMUD YUSUF ÖKDEM, 127253098 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127253098\n\nDear MAHMUD YUSUF ÖKDEM, your shipment with 127253098 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127253098\n\nBICARGO','2','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('2a604da3-16ba-4d67-9bb8-8e3e1f1990c0','905313340045','GAFUR NUHA adlı müşterinizin 43758285 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('2a60e5ca-1ab4-4222-9908-fb4febc4e2a8','905069116877','MEDİNE POLAT adlı müşterinizin 817488957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('2a6335ca-4423-4369-aa53-855cdb3064db','491784026440','Sayın FOUAD BJA, 515103460 nolu gönderiniz 10627 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515103460\n\nDear FOUAD BJA, your shipment with 515103460 was delivered to you with the delivery code 10627. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515103460\n\n\nBICARGO','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('2a67e69b-d8cc-4d9e-9f65-57b30319b70a','905079358213','MEHMET KIRMALI SSH adlı müşterinizin 745961245 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('2a6aaf89-373d-41b3-90ec-796120b0713f','1111123232432423','65556881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9070 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/65556881\n\nYour shipment with the number 65556881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9070. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/65556881\n\nBICARGO','2','d7273e12-dd22-4fa8-9893-2696b1178656',NULL),
('2a6b2cec-df44-471b-be2b-31e93768b91b','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin ÜNİTE VE ORTA SEHPA ürünü 8 parça halinde AREA adresinizden 29.05.2025 11:43:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('2a6cdb32-dc5e-47f3-a5fa-e440f3bb7798','905540182920','Sayın HASAN BEY, 44831715 nolu gönderiniz 5055 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44831715\n\nDear HASAN BEY, your shipment with 44831715 was delivered to you with the delivery code 5055. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44831715\n\n\nBICARGO','1','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL),
('2a6ec97c-d250-4e75-bca1-996b449df8e9','905325998198','SAHDİYE BİSKİN adlı müşterinizin 614707427 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL),
('2a736ef6-ae1b-4091-9f92-a447bb75ae38','33627054551','98232043 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98232043\n\nYour shipment with the number 98232043 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98232043\n\nBICARGO','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('2a73abee-526e-4162-a6eb-80c971a409f4','905300961610','SEZER BEY adlı müşterinizin 126889614 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','521af45a-6561-45db-adfb-641b8fafbc92',NULL),
('2a73d8cd-e650-4656-8257-38a66cc5cee9','33625625960','Sayın ÖMER KARAN, 478165569 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478165569\n\nDear ÖMER KARAN, your shipment with 478165569 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478165569\n\nBICARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('2a795d9d-5407-4d02-bf33-8d9dc330a800','33650234345','Sayın NURTEN MENEKŞE , 982106314 nolu gönderiniz 4557 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982106314\n\nDear NURTEN MENEKŞE , your shipment with 982106314 was delivered to you with the delivery code 4557. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982106314\n\n\nBICARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('2a7b1f0c-46bd-491e-bc4d-f6fe372a65f5','33631750301','Sayın YUSUF SARIKAN, 745767667 nolu gönderiniz 2774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745767667\n\nDear YUSUF SARIKAN, your shipment with 745767667 was delivered to you with the delivery code 2774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745767667\n\n\nBICARGO','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('2a8a747e-a905-49d3-b93c-709183513aa5','4915210309033','Sayın M.ALİ ÇETİN, 910129924 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910129924\n\nDear M.ALİ ÇETİN, your shipment with 910129924 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910129924\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('2a8c5778-95a6-4727-9e21-a5e13e69b8fd','176322545443','Sayın NURTEN YILMAZ, 338411614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338411614\n\nDear NURTEN YILMAZ, your shipment with 338411614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338411614\n\nBICARGO','2','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('2a8e2009-42a0-41cd-a498-ab5d58f71a6f','33782501255','Sayın GİZEM YAZICI , 745582484 nolu gönderiniz 8589 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745582484\n\nDear GİZEM YAZICI , your shipment with 745582484 was delivered to you with the delivery code 8589. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745582484\n\n\nBICARGO','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('2a90781d-70e4-462c-9bc5-3b4d83f77f69','905331602195','Sayın yetkili; ÖZGÜR GÖKÜZÜM adlı müşterinize 22142813 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 25.04.2025 12:22:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('2a919f75-f163-4a7e-9e5b-db8786f80821','33684188936','Sayın HACI KURBAN BAŞTÜRK , 162733891 nolu gönderiniz 7902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/162733891\n\nDear HACI KURBAN BAŞTÜRK , your shipment with 162733891 was delivered to you with the delivery code 7902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/162733891\n\n\nBICARGO','1','ee55d774-0af3-44a4-a04d-c52632a73128',NULL),
('2a9280f5-1db1-4c4a-9e0d-9a2f91dadf03','905335708965','ENGİN TV ÜNİTESİ  adlı müşterinizin 248269890 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','af4e1860-0998-4434-bd62-e28f7958cebe',NULL),
('2a959109-c578-4cb9-9b1a-445280e66a87','41617018888','Sayın HAKAN ŞİMŞEK, 47889024 nolu gönderiniz 9404 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47889024\n\nDear HAKAN ŞİMŞEK, your shipment with 47889024 was delivered to you with the delivery code 9404. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47889024\n\n\nBICARGO','2','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL),
('2a982459-2a2b-43cd-bfe1-ce61d046b12c','905312762034','SABRİNA METZGER  adlı müşterinizin 808922349 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('2a9bafc6-723c-4010-9506-50a862e7dd5a','33681254075','478346989 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1476 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478346989\n\nYour shipment with the number 478346989 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1476. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478346989\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('2a9deb37-59b5-4b83-be39-cc7870759e85','33604050932','Sayın ÖZCAN ÇETİN, 614725757 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614725757\n\nDear ÖZCAN ÇETİN, your shipment with 614725757 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614725757\n\nBICARGO','1','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL),
('2aa749d5-28e6-4c3e-bb4a-928e605ce72c','31634618099','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('2aa929d9-4652-42f9-b976-dcdafb3a70da','00491627384252','Sayın ELVİN ÇETİN, 734955536 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734955536\n\nDear ELVİN ÇETİN, your shipment with 734955536 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734955536\n\nBICARGO','2','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL),
('2aaeb293-d06b-42a7-8036-f9f9bffe56c6','905079358213','MUSTAFA KESKİN adlı müşterinizin 745976194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','97d3447f-3a32-459a-8bdd-d360b881a042',NULL),
('2ab53c61-db26-4f60-8ee8-ae3420cf742b','4917634171072','Sayın KUTAY KENAN TOMUR, 613976667 nolu gönderiniz 5604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613976667\n\nDear KUTAY KENAN TOMUR, your shipment with 613976667 was delivered to you with the delivery code 5604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613976667\n\n\nBICARGO','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('2ab90632-7385-4281-a874-14a4a3f00f2d','27293030330','223744518 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8199 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223744518\n\nYour shipment with the number 223744518 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8199. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223744518\n\nBICARGO','2','1f667c31-0a45-4450-be98-281039258085',NULL),
('2abce097-a824-45cf-bae7-2a4e65c1d364','01794421633','Sayın NİLGÜN LEUKEL, 531629494 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531629494\n\nDear NİLGÜN LEUKEL, your shipment with 531629494 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531629494\n\nBICARGO','2','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('2ac22339-5ae6-4d18-93f0-27e82550efc5','905331602195','Sayın yetkili; GÜLER DELİDUMAN adlı müşterinize 221432350 nolu gönderinizin Sydnei sandalye  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 03.06.2025 17:02:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('2ac4bb89-393f-456d-a44b-563738663394','905394878216','RAMAZAN SEVİ adlı müşterinizin 517558560 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','fed099bd-765c-4045-9372-03dae428fedb',NULL),
('2ac5691c-a49c-41d2-a07f-ae3e048d9db8','905304259202','SÜLEYMAN BOZAN adlı müşterinizin 478406590 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('2ad63900-8ac2-47a9-80d5-e8c3e3ca32c6','905079358213','HAYATİ ELBİR adlı müşterinizin 745536465 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('2adc19e1-1f74-4bc8-aab4-acedee06d0b0','905075277637','İLYAS ÖNSÜZ adlı müşterinizin 745334668 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL),
('2addc081-efd0-4418-954d-77579c2c4ff5','905331602195','BİANCA AGOSTİNHO adlı müşterinizin 221439268 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('2ae5e257-8106-488a-91b2-378b4ba344ab','905313340045','Sayın yetkili; SELİN URAK adlı müşterinize 437152964 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:30:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('2ae7783f-7e73-4e25-8352-68383b81f12b','905304259202','GÜL-MURAT AVCU adlı müşterinizin 478919360 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('2ae9b761-90ae-4d6e-869c-02ea170cf3db','905454259202','YAKUP KILIÇ adlı müşterinizin 478124503 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL),
('2aeadca8-cb5b-4b23-9fbb-6f99bd60e4c1','31648963092','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('2aedfa1e-3f0d-4110-9d8f-f924ca389a5a','905325000478','SOBA-PETEK adlı müşterinizin 41270066 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL),
('2af174d1-cbbf-46c4-a5ea-8d9951b1bbb4','4915752948798','Sayın METİN PEKSERT SSH , 74597110 nolu gönderiniz 5804 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74597110\n\nDear METİN PEKSERT SSH , your shipment with 74597110 was delivered to you with the delivery code 5804. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74597110\n\n\nBICARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('2af5431f-e625-40bc-9faa-355d9ca20257','330235750785','Sayın MİLLE FİERRA COELHO  LUDİVİNE , 478505417 nolu gönderiniz 1170 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478505417\n\nDear MİLLE FİERRA COELHO  LUDİVİNE , your shipment with 478505417 was delivered to you with the delivery code 1170. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478505417\n\n\nBICARGO','2','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('2af796dd-45b1-4804-8dd0-47027285e6fe','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin FAMİLY DELON  AYNALI SAATİ  ürünü 1 parça halinde Fatura adresinizden 19.09.2025 14:37:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('2afb18e2-f906-44c3-8704-b2d2513b1588','491717001300','Sayın SERKAN DAĞ , 982432822 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982432822\n\nDear SERKAN DAĞ , your shipment with 982432822 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982432822\n\nBICARGO','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('2afe2d76-1896-436e-bf79-cbecbe1fb428','4915223038564','613847250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9012 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613847250\n\nYour shipment with the number 613847250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9012. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613847250\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('2aff37bb-6e8d-4933-860b-a851c56216fa','436609500017','Sayın MERVE ÖZÇOBAN, 657192716 nolu gönderiniz 3967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657192716\n\nDear MERVE ÖZÇOBAN, your shipment with 657192716 was delivered to you with the delivery code 3967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657192716\n\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('2b008a43-516f-42dd-909f-7b4255fd2c39','905364155243','GHASAN ALBUKAİ adlı müşterinizin 289392695 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL),
('2b031275-30e9-4793-b82b-bc87787ab7f5','905517075149','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin 3+3+1 koltuk takımı ürünü 4 parça halinde inhouse adresinizden 24.06.2025 17:41:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('2b06187a-89e2-4eb0-9e3e-35bbf0600848','491742184791','745130019 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745130019\n\nYour shipment with the number 745130019 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745130019\n\nBICARGO','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('2b06ec2b-833b-46b4-ab96-d9f935a42e3d','491778394505','517147933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5965 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517147933\n\nYour shipment with the number 517147933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5965. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517147933\n\nBICARGO','1','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL),
('2b0de720-8846-43bc-9e0a-5622a1967926','905075277637','Sayın yetkili; ABDULLAH DEMİR  adlı müşterinize 745906720 nolu gönderinizin BOHEM KÖŞE KOLTUK  ürünü 5 parça halinde ARTBOIS  adresinizden 26.09.2025 11:23:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('2b0ef4dd-ec06-4143-b226-a77cc0ce11dd','32486433314','449898615 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3102 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449898615\n\nYour shipment with the number 449898615 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3102. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449898615\n\nBICARGO','1','4201089d-4123-423c-809e-645e609e8e0a',NULL),
('2b11b1f9-2d47-4f7b-a951-c4c82fc5d081','4917657742944','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('2b126056-344f-4367-b02b-698c57f39f02','33769005262','644968450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5584 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644968450\n\nYour shipment with the number 644968450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5584. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644968450\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('2b13e184-be0b-4b59-9d75-f3435b756ef6','905331602195','SADOUN ABDELKADİR adlı müşterinizin 221804377 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('2b14066b-9b21-419e-8fff-7b9ac55f7ed3','491777466973','910485088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1767 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910485088\n\nYour shipment with the number 910485088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1767. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910485088\n\nBICARGO','1','8259588b-b757-4856-a390-2e9ec4c403c8',NULL),
('2b18a4e2-3709-42df-a04b-6fe429137f5d','905078062550','AHMAD KADİ adlı müşterinizin 598578683 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('2b1de0b6-e8d0-4c83-bf7c-1788cb445754','905313340045','Sayın yetkili; HAZAL BATUR adlı müşterinize 437712381 nolu gönderinizin Sandalye ürünü 2 parça halinde MFOUR SANDALYE adresinizden 01.09.2025 14:15:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('2b1e7146-822b-4a58-a37a-bedba1e454e2','4917675899290','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('2b1ee6a1-894b-4fb5-9660-e2496d76d7ed','905075277637','ÜMMÜGÜLSÜM KARAKUŞ adlı müşterinizin 745924426 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d78e9aef-d794-44e4-a9be-c55739db8e56',NULL),
('2b1fe572-2881-4d18-ae55-51900235551a','905304259202','MELİSA DEMİRTAŞ adlı müşterinizin 478757775 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('2b255905-7195-4f66-ab98-a32acea61545','905454259202','ÖMER KARAN adlı müşterinizin 478165569 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('2b2cba75-957d-417c-8522-d1d0e02f0974','491728552763','Sayın YUSUF AVCI, 817915882 nolu gönderiniz 6768 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817915882\n\nDear YUSUF AVCI, your shipment with 817915882 was delivered to you with the delivery code 6768. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817915882\n\n\nBICARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('2b2d0ee8-7e34-45da-9af6-0709f9c4914c','905331602195','Sayın yetkili; AHMED AZEEZ  adlı müşterinize 221364325 nolu gönderinizin 120x120 fırtına siyah masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:19:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('2b2d747b-546e-4a2c-a00f-5ced1240259e','491774646467','8087036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10930 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8087036\n\nYour shipment with the number 8087036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10930. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/8087036\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('2b2e8e04-e395-4325-8796-2b00f26adc0f','00491625851348','Sayın  BİRSEN DÜZ, 428990953 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428990953\n\nDear  BİRSEN DÜZ, your shipment with 428990953 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428990953\n\nBICARGO','2','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('2b32e8b4-9946-4baf-a308-a8fd81979536','905313340045','İPEK CANTÜRK adlı müşterinizin 437313362 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('2b36a669-3bb8-4e78-9bec-dd4e9df52196','905078062550','Sayın yetkili; TOLGA KAPLAN adlı müşterinize 598463425 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde ELİTİS HOME adresinizden 14.08.2025 15:01:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('2b410653-8c06-4dc0-8deb-4d32dbf2fa3f','905333610016','Sayın SERHAT SERHAT, 15.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7092451\nŞifre : 7092451\n			\nBİCARGO','1',NULL,'7bd09245-c179-4127-b0e1-46737615122b'),
('2b47bbfd-0c0e-4d34-b6ed-350d6d2a449f','49020350083648','Sayın DİE FABRİK OUTLET, 223337181 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223337181\n\nDear DİE FABRİK OUTLET, your shipment with 223337181 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223337181\n\nBICARGO','2','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL),
('2b4909ad-509e-4da2-8ab7-d5020fdee6d2','491727930576','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('2b49870b-c7d2-4a09-a603-0b5406f02c4c','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 47811313 nolu gönderinizin yemek odası ürünü 32 parça halinde kuka adresinizden 12.03.2025 21:27:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c15ec73d-23f3-470b-88b9-b482c773905a',NULL),
('2b4cbd47-683b-4e33-b7d6-01ca1bf42062','905461661672','Sayın yetkili; KERİM ŞENTÜRK adlı müşterinize 644966461 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 05.05.2025 17:12:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('2b4d20bf-fd8c-47c0-bb43-b57ef1af6d1f','33634229527','478572714 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4721 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478572714\n\nYour shipment with the number 478572714 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4721. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478572714\n\nBICARGO','2','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL),
('2b507d5a-155a-4f10-ada5-ccffd84d73dd','33766361551','910316067 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1901 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910316067\n\nYour shipment with the number 910316067 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1901. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910316067\n\nBICARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('2b51764a-fae7-44fd-936c-8e4891c958a9','33769656620','Sayın EVMOURZAEVA İMAN, 976751266 nolu gönderiniz 2382 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976751266\n\nDear EVMOURZAEVA İMAN, your shipment with 976751266 was delivered to you with the delivery code 2382. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976751266\n\n\nBICARGO','1','f63ff1b9-4bf8-4f20-b9ad-8c7466498584',NULL),
('2b51b87c-077e-4be9-8e71-94448b8d1748','905461661672','SEMA KUZULUK SSH adlı müşterinizin 644635640 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('2b52f353-1d86-4679-8005-58d6ffd0c05f','491741677309','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('2b54a2d4-39db-491a-8240-ed4446ee56ca','41782110649','Sayın GÜL-MURAT AVCU, 478919360 nolu gönderiniz 9962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478919360\n\nDear GÜL-MURAT AVCU, your shipment with 478919360 was delivered to you with the delivery code 9962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478919360\n\n\nBICARGO','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('2b5ac852-86d4-480c-ae1f-1814f9f8824a','33770349060','Sayın EYÜP KIZILASLAN, 655919587 nolu gönderiniz 10575 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655919587\n\nDear EYÜP KIZILASLAN, your shipment with 655919587 was delivered to you with the delivery code 10575. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655919587\n\n\nBICARGO','1','88d46ad5-3201-49c1-bafb-3c271a911158',NULL),
('2b5b68ae-1614-4565-852c-eea8f93a7b15','4915787850824','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('2b5cd3c9-db92-414f-a3ac-44df9959bc4b','491639801426','EURO MOBEL adlı müşterinizin 107869996 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL),
('2b5f0155-84e9-4bc3-b3d7-27abf9dd3e5e','905363385813','AYŞE ŞEKER adlı müşterinizin 976114868 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('2b623b8f-8bd6-43d3-a642-46b5e7ffb02c','905461661672','Sayın yetkili; GHAZAL TARIK İLHAN adlı müşterinize 644826740 nolu gönderinizin sandalye ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 08.08.2025 15:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('2b647c19-b2fc-44fa-a897-3d13e59eb433','4917680520105','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('2b661d93-f009-4739-b17a-c4529feab40f','905349208933','Sayın yetkili; EMRAH ERAYDIN adlı müşterinize 127395599 nolu gönderinizin masa ürünü 1 parça halinde Oylat Mermer  adresinizden 20.02.2025 13:31:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('2b665c84-a9a6-4d47-b38f-c2741341932d','4917632998796','Sayın YAŞAR YALMAN, 478559056 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478559056\n\nDear YAŞAR YALMAN, your shipment with 478559056 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478559056\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('2b6ce18b-ec5e-475f-949b-4609f0c11a14','905300961610','TUĞBA BAĞCI adlı müşterinizin 126200859 nolu gönderisi 51 parça halinde yola çıkmıştır.','1','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL),
('2b735f62-f735-44b4-96a8-267ef5656f0f','905318109098','TÜLAY HANIM  adlı müşterinizin 455658704 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL),
('2b742ca9-b827-4d14-8fae-5df3ab3a0942','31642163844','437762949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10165 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437762949\n\nYour shipment with the number 437762949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10165. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437762949\n\nBICARGO','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('2b7acf0c-6fad-4468-88c3-1c38adc2b665','33660895865','221257971 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4518 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221257971\n\nYour shipment with the number 221257971 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4518. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221257971\n\nBICARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('2b7be2b9-7392-4a0c-adb0-0d2b987e211a','4917630693252','Sayın YAREN ÇAKALLI, 47855592 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47855592\n\nDear YAREN ÇAKALLI, your shipment with 47855592 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47855592\n\nBICARGO','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('2b7e7aa8-cb80-482c-8d90-3c0b4ab5f67f','4917622920209','221432350 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4342 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221432350\n\nYour shipment with the number 221432350 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4342. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221432350\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('2b857cf3-57ba-4b6b-8abd-df077806db58','33664036278','Sayın ONUR ÖZER, 478733242 nolu gönderiniz 8345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478733242\n\nDear ONUR ÖZER, your shipment with 478733242 was delivered to you with the delivery code 8345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478733242\n\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('2b8bbc69-b50a-4337-8af6-65d2a830bea8','4917623171726','Sayın SEVCAN SALİ, 47888038 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47888038\n\nDear SEVCAN SALİ, your shipment with 47888038 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47888038\n\nBICARGO','1','945602cc-25e3-4d66-bae2-b70fa6008882',NULL),
('2b8f9f16-8c2a-48b1-bd1f-0752e5dcd262','905079358213','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MERMER DESEN SEHPA  ürünü 1 parça halinde Fatura adresinizden 18.06.2025 17:45:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('2b9a78d4-8d29-425f-8fc3-aa69dcb68f7d','905413792483','EMRE ÇELİK adlı müşterinizin 278329196 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('2ba83c09-e2d8-445e-9e3a-ed89e4d93844','905336367828','BEA JONGERİUS adlı müşterinizin 982984016 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL),
('2babae18-dd7c-4056-9d15-51d463208361','491639801426','Sayın EURO MOBEL, 107394609 nolu gönderiniz 9757 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/107394609\n\nDear EURO MOBEL, your shipment with 107394609 was delivered to you with the delivery code 9757. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/107394609\n\n\nBICARGO','1','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL),
('2baf268a-a156-4d74-be92-fb00d7624bfb','905431026110','Sayın yetkili; SEVCAN BAYRAM adlı müşterinize 351183541 nolu gönderinizin sandalye ürünü null parça halinde BALİ SANDALYE adresinizden 13.10.2025 12:36:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bbee5f58-f6e5-4525-b872-ef97ac4ab579',NULL),
('2bafba96-0067-43b8-8e0e-776255e783fa','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin orta sehpa ürünü 1 parça halinde MASAMI adresinizden 28.08.2025 17:47:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('2bb0b4e8-e7c6-4015-ad38-794d77c09bdd','905313340045','EBRU SOBAY adlı müşterinizin 437574361 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('2bb2e4e9-61f0-448d-8d52-a45f2b987366','4917641547802','37146102 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37146102\n\nYour shipment with the number 37146102 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37146102\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('2bb72395-7604-41ee-9a4b-9ea6ccf22da2','436606772849','98258846 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1359 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98258846\n\nYour shipment with the number 98258846 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1359. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98258846\n\nBICARGO','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('2bb72813-46a4-4237-965b-4d74159fbf95','491726603821','Sayın YEŞİM TOPKIRAN, 221960678 nolu gönderiniz 9080 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221960678\n\nDear YEŞİM TOPKIRAN, your shipment with 221960678 was delivered to you with the delivery code 9080. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221960678\n\n\nBICARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('2bc20cd5-c058-4753-814b-4d2f15c5345f','4915122809101','Sayın ABUZER TEKCE, 319232330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319232330\n\nDear ABUZER TEKCE, your shipment with 319232330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319232330\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('2bc2e1ab-4b36-452f-87d4-a930a00615e0','33649856318','Sayın MİLLE FİERRA COELHO  LUDİVİNE , 478505417 nolu gönderiniz 1170 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478505417\n\nDear MİLLE FİERRA COELHO  LUDİVİNE , your shipment with 478505417 was delivered to you with the delivery code 1170. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478505417\n\n\nBICARGO','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('2bc6fdc7-b189-4f5d-9803-345e38edd41a','4915152091392','478972804 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9662 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478972804\n\nYour shipment with the number 478972804 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9662. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478972804\n\nBICARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('2bce970d-1147-4da4-b37f-01f60a1af98f','4917681920264','745991438 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745991438\n\nYour shipment with the number 745991438 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745991438\n\nBICARGO','1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL),
('2bcef5ac-a7fb-49a3-a8c6-9d5b54095fe0','905079047428','MARİA JONANOVİC adlı müşterinizin 449417757 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL),
('2bcf1b97-64cf-4280-8445-33764b25d917','32499876558','Sayın YAKUP KILIÇ, 478124503 nolu gönderiniz 4777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478124503\n\nDear YAKUP KILIÇ, your shipment with 478124503 was delivered to you with the delivery code 4777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478124503\n\n\nBICARGO','1','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL),
('2bd215d3-dcf7-478e-a45c-b33485504d09','4917661664279','Sayın BURCU ŞİMŞEK, 12752907 nolu gönderiniz 8217 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/12752907\n\nDear BURCU ŞİMŞEK, your shipment with 12752907 was delivered to you with the delivery code 8217. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/12752907\n\n\nBICARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('2bd892bd-c1d9-4854-8474-1cbdf4bb2373','4915112339457','Sayın DİLBERAY MELLO, 613910788 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613910788\n\nDear DİLBERAY MELLO, your shipment with 613910788 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613910788\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('2bd8f785-2cf7-4c20-9488-a53b180805f2','905059175469','İMDAT KILIÇASLAN adlı müşterinizin 428480095 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('2bdc495e-e5e9-4645-9371-ee9f84414914','32472893913','745638060 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1828 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745638060\n\nYour shipment with the number 745638060 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1828. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745638060\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('2bdf8901-5829-410a-8d0b-219210ea6afa','905011170016','YONCA KILIÇ adlı müşterinizin 380417164 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('2be0ae1b-448a-48d3-9d10-6bd419c1f993','4915128983486','Sayın JİLLİA AMİRİ, 982630175 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982630175\n\nDear JİLLİA AMİRİ, your shipment with 982630175 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982630175\n\nBICARGO','1',NULL,NULL),
('2be17390-dd7a-44ee-91c9-b3490646c3b6','05388618969','ELİZA KADRİ adlı müşterinizin 786895232 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('2be214df-5f21-4465-8c50-df095a1d9723','32477787877','Sayın ERTUĞRUL, 528433255 nolu gönderiniz 1426 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/528433255\n\nDear ERTUĞRUL, your shipment with 528433255 was delivered to you with the delivery code 1426. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/528433255\n\n\nBICARGO','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('2be40362-3307-4d36-b12a-cc8f2919b800','436769039960','DRİVER NUMBER\n					905541100849','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('2be4786a-0f86-4acc-a412-9ac3af242169','4917676660206','Sayın TUĞBA COŞKUN, 371672954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371672954\n\nDear TUĞBA COŞKUN, your shipment with 371672954 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371672954\n\nBICARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('2be4d444-4108-436c-a385-ac72127f98df','905078062550','Sayın yetkili; AHMED KADİ adlı müşterinize 598102662 nolu gönderinizin köşe koltuk ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 31.07.2025 12:08:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('2be7929e-267e-4457-9a62-4d91ec5068c7','33628708481','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('2be846f7-e8bc-48ff-a092-1790ab1eac17','905318109098','SULTAN GÜNDOĞDU adlı müşterinizin 455477301 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','049cec7b-ec44-4295-afa5-768b2786337d',NULL),
('2be98c87-f7ee-4acb-b3c0-fa52c6954042','491785990575','465313266 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9580 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465313266\n\nYour shipment with the number 465313266 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9580. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465313266\n\nBICARGO','1','149850c7-89eb-4248-a529-b235c5710935',NULL),
('2bec4fe0-2d09-4c14-ac35-e8466fd6c72b','905075277637','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin BOHEM DOLAP KOMODİN ŞİFONYER ürünü 13 parça halinde ACCA adresinizden 25.08.2025 11:29:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('2bec7fa5-6464-4638-80ec-8c8f09a1df58','31620244050','ŞÖFÖR İKETİŞİM\n					+905301824880','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('2bf22cc4-63ee-40ce-9fc9-fff3f99cc055','4917624125549','Sayın BURAK SOYSAL, 817893403 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817893403\n\nDear BURAK SOYSAL, your shipment with 817893403 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817893403\n\nBICARGO','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('2bf2b50a-7dfa-4686-a3dd-ba8dc875bd00','905075277637','Sayın yetkili; HÜSEYİN ÖÇAL SSH  adlı müşterinize 745350597 nolu gönderinizin BAZA  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('2bf4af78-8be4-4e65-9203-5c85fcbe7a33','905428209234','HAFİZE GÜNEY  adlı müşterinizin 319382208 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1b20804a-76a0-418e-b22d-40783c68915b',NULL),
('2c0331f4-ae47-4bc9-bec0-6890a6d8818b','4306641865848','Sayın İDRİS EŞKIN, 910593915 nolu gönderiniz 6693 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910593915\n\nDear İDRİS EŞKIN, your shipment with 910593915 was delivered to you with the delivery code 6693. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910593915\n\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('2c0a90df-94cc-49a4-b088-1e3ff91eda4a','00306988787488','248259363 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248259363\n\nYour shipment with the number 248259363 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248259363\n\nBICARGO','2','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL),
('2c0b52b2-9a58-434d-b1c3-664d6bbf7176','905304259202','YALÇIN BÜYÜKMURAT adlı müşterinizin 478643015 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('2c0c4c41-26a1-47a9-ad68-14f8b62b2cac','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('2c0e66ff-479c-47f9-a165-f511ef360196','31627837111','644965833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6833 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644965833\n\nYour shipment with the number 644965833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6833. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644965833\n\nBICARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('2c11bec1-8992-4cc7-8a0c-eb31845bf01f','491624318595','Sayın DİLAVER ULUTAŞ, 478670997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478670997\n\nDear DİLAVER ULUTAŞ, your shipment with 478670997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478670997\n\nBICARGO','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('2c12dc15-1174-43c7-9f60-79727540aadb','4915228033800','Sayın GÖNÜL GİDER, 428671806 nolu gönderiniz 2136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428671806\n\nDear GÖNÜL GİDER, your shipment with 428671806 was delivered to you with the delivery code 2136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428671806\n\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('2c13bd23-46dc-43c6-8161-de97e778f6fc','4917662337872','371261673 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371261673\n\nYour shipment with the number 371261673 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371261673\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('2c16edd3-fabb-4151-bf78-c0cf45bf71b7','491795637471','371820872 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820872\n\nYour shipment with the number 371820872 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371820872\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('2c1875f8-c7a9-4e50-96bf-85bfa3ca44a5','905075277637','ÖZGÜR YILDIRIM adlı müşterinizin 745302940 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('2c1cf24f-0d3b-4e93-ab7d-2256de6de2e8','905454259202','İNCİ TOKGÖZ adlı müşterinizin 478240909 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('2c1ebe6a-e2cf-4b5f-8058-2f8896faba5d','4915778776524','Sayın AHMAD KADİ, 598578683 nolu gönderiniz 7326 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598578683\n\nDear AHMAD KADİ, your shipment with 598578683 was delivered to you with the delivery code 7326. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598578683\n\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('2c1f0b65-6549-4d3d-83fd-b732ba75fa6d','4917621293199','675902808 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3060 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675902808\n\nYour shipment with the number 675902808 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3060. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675902808\n\nBICARGO','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('2c20af70-39f9-47eb-9d59-a9c3fce8a926','4917663388742','Sayın ZİLAN BİLİN, 478250269 nolu gönderiniz 10213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478250269\n\nDear ZİLAN BİLİN, your shipment with 478250269 was delivered to you with the delivery code 10213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478250269\n\n\nBICARGO','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('2c24d60d-cae6-4124-84ae-bafd86ea6c7b','905461661672','RABİA AKKUŞ SSH adlı müşterinizin 644564440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('2c251975-bab6-4958-98f8-0fd082a3e608','905336367828','Sayın yetkili; NORBERTO VAZ  adlı müşterinize 982573889 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 14.02.2025 16:18:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('2c2907dd-3b8f-44da-a64d-7c8e490698de','905070491996','AYLİN GÜNGÖR adlı müşterinizin 663458477 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('2c308159-d1c6-4033-a5e1-13b75676bf07','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin yatak odası ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('2c3309b9-804f-4c84-8b77-20eeea81de60','905335511664','SALİM TEKE adlı müşterinizin 371884796 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('2c354d79-73a7-41b1-86c0-2489fed69431','31614671032','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('2c3c258e-451c-40ac-998a-92c8bd1bd5bc','905312762034','EMİNE İMRAG adlı müşterinizin 808830873 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('2c3cf626-ef02-48ef-87ce-85089155f637','905428209234','YILMAZ KARA  adlı müşterinizin 31922563 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('2c3e72df-85a5-4ba7-989b-2c9b4232baf5','491725413866','745554582 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4888 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745554582\n\nYour shipment with the number 745554582 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4888. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745554582\n\nBICARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('2c406499-cd31-4fd4-96d9-68287ee05253','905461661672','Sayın yetkili; BARAN YILDIZ adlı müşterinize 644832811 nolu gönderinizin DÖŞEK ürünü 1 parça halinde SARAYLI YATAK adresinizden 30.08.2025 16:24:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('2c4173c8-9db7-4db1-894a-7c8c806cffdc',NULL,'SERKAN SİLAN adlı müşterinizin 657785918 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL),
('2c51cc0f-21e2-43b6-ba01-2160af6b2085','905421855834','GALİP YAYLALI adlı müşterinizin 338286320 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('2c5a9f22-0491-405a-9c27-113a8e3c79fc','905331602195','TEBIB MYRIAM  adlı müşterinizin 221603036 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('2c5d677e-5adc-452e-bc42-c8dc152a6d2a','905075277637','Müyesser koçak adlı müşterinizin 745531225 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','e7849612-fcb8-4368-bba8-194c1abdf919',NULL),
('2c6413c1-c280-4471-8bc4-8a6ed24a84bc','4917661473873','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('2c6aede3-4280-4642-abae-295a008635b0','4917624864507','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('2c6e7890-ad4e-46e2-88c3-be3c9842856c','3165428312','478728370 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8255 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478728370\n\nYour shipment with the number 478728370 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8255. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478728370\n\nBICARGO','2','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL),
('2c6fc210-beb3-42f8-ac32-4fba7c8e8553','491735713527','Sayın MUHAMMET ALTUNKAYA, 478681042 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478681042\n\nDear MUHAMMET ALTUNKAYA, your shipment with 478681042 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478681042\n\nBICARGO','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('2c6fe7df-f71b-4424-a353-15c8b177ec54','4917657744267','Sayın ÖMER VAROL(K), 644714925 nolu gönderiniz 6830 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644714925\n\nDear ÖMER VAROL(K), your shipment with 644714925 was delivered to you with the delivery code 6830. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644714925\n\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('2c73eda3-70a3-498a-a1dc-f41358ee0b2e','33787752471','Sayın DİLEK GÜNEY, 26896907 nolu gönderiniz 3133 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/26896907\n\nDear DİLEK GÜNEY, your shipment with 26896907 was delivered to you with the delivery code 3133. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/26896907\n\n\nBICARGO','1','4895452e-4598-4194-8203-cf9f5506200a',NULL),
('2c79a39a-c40a-4408-8592-71f0f22b48f3','33605930464','449205900 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449205900\n\nYour shipment with the number 449205900 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449205900\n\nBICARGO','1','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL),
('2c7a3665-1375-4cdb-b3e3-855e42794799','905335511664','SÜLEYMAN SUNGUR adlı müşterinizin 371365041 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('2c7a50c1-205d-4f49-b59b-31a377208250','33605811984','47853753 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8314 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47853753\n\nYour shipment with the number 47853753 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8314. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47853753\n\nBICARGO','1','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('2c7cd02e-91f4-48b5-bc45-75c554ccc728','905517075149','YAŞAR YALMAN SSH adlı müşterinizin 478816988 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('2c966b75-a32e-4338-8d8a-135f9a3fa745','436765022152','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('2c96bc76-9657-449c-8d93-598eb15a4f43','905079358213','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 24.09.2025 13:44:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('2c990ab8-c3f8-47a7-bdf3-e70a706d1be6','491728743891','Sayın TUĞÇE ÖZKAYA, 598587609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598587609\n\nDear TUĞÇE ÖZKAYA, your shipment with 598587609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598587609\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('2c99674a-d6f2-4ca0-acf7-005ee53afe79','905325000478','CAN GLAS GMBH adlı müşterinizin 412603598 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL),
('2c9b4ed1-b5c1-4293-9aec-1765489fab93','905075277637','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin VOYAGE YATAK ODASI ürünü 25 parça halinde RİXXE  adresinizden 25.09.2025 14:44:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('2c9c7df7-fc56-44b3-b9d2-2c4099d6ddd4','905325998198','AYHAN KILIÇ adlı müşterinizin 614134006 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93cfee64-4853-4395-af0b-9caa4355f18f',NULL),
('2c9d68bd-5256-4d99-91ff-ad6c41f2ef36','4917621764667','Sayın CAN KÜREKÇİ, 910426934 nolu gönderiniz 10111 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910426934\n\nDear CAN KÜREKÇİ, your shipment with 910426934 was delivered to you with the delivery code 10111. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910426934\n\n\nBICARGO','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('2c9e9e44-8301-4c83-bd30-d9b407c5e52e','905079358213','SEDA KURTDİNÇEL adlı müşterinizin 745431846 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('2c9f63db-509c-4166-8cd7-c9b95edeb214','33787053460','127552437 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4289 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127552437\n\nYour shipment with the number 127552437 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4289. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127552437\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('2ca45934-6649-4ca5-bc2e-41c8466be079','410791552484','Sayın SELAMAWİT ESTİFANOS , 982495052 nolu gönderiniz 10398 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982495052\n\nDear SELAMAWİT ESTİFANOS , your shipment with 982495052 was delivered to you with the delivery code 10398. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982495052\n\n\nBICARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('2ca4b71d-bda8-43e2-bce7-80913814053f','436769039960','Sayın LEJLA GUDİC , 221758948 nolu gönderiniz 2302 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221758948\n\nDear LEJLA GUDİC , your shipment with 221758948 was delivered to you with the delivery code 2302. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221758948\n\n\nBICARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('2ca9977f-8d42-46d4-95f2-27bfe0b5d31a','4915158856914','Sayın MELİKZADE AHMET ATAY, 598493196 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598493196\n\nDear MELİKZADE AHMET ATAY, your shipment with 598493196 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598493196\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('2caa0684-4ad5-42ca-b739-82b6730d628b','905428209234','BEYTULLAH ARAS adlı müşterinizin 319324843 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37f59dff-6352-4082-a18f-d2696e483eff',NULL),
('2cb1dde8-a479-47ac-897c-f42f74da5be8','491728739578','Sayın ARMİN İMERİ SSH, 221471794 nolu gönderiniz 9591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221471794\n\nDear ARMİN İMERİ SSH, your shipment with 221471794 was delivered to you with the delivery code 9591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221471794\n\n\nBICARGO','1','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL),
('2cb47f6e-2aa5-485e-8df8-ed0996f2ba01','905078062550','Sayın yetkili; RASİM YAVUZ adlı müşterinize 598894090 nolu gönderinizin 8 sandalye ürünü 8 parça halinde LİN SANDALYE adresinizden 16.10.2025 11:04:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('2cb5796e-1dcf-455a-87c7-db4da0f81ea5','49163348754','Sayın REMZİYE UNAT, 976898541 nolu gönderiniz 1646 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976898541\n\nDear REMZİYE UNAT, your shipment with 976898541 was delivered to you with the delivery code 1646. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976898541\n\n\nBICARGO','2','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL),
('2cb6d44a-25ea-4fe4-9b46-71fcefa1d112','33699946659','Sayın BELKISA KAPLAN, 478570794 nolu gönderiniz 7330 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478570794\n\nDear BELKISA KAPLAN, your shipment with 478570794 was delivered to you with the delivery code 7330. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478570794\n\n\nBICARGO','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('2cb849ac-5bd9-4481-87ae-f4841552ab60','33648138449','Sayın ADEM KILINÇ, 478117771 nolu gönderiniz 6801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478117771\n\nDear ADEM KILINÇ, your shipment with 478117771 was delivered to you with the delivery code 6801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478117771\n\n\nBICARGO','1','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL),
('2cbb6519-1bce-454c-999b-fb244d6701ec','4915734807422','Sayın MUHAMMED YUŞA YILDIRIM, 478261120 nolu gönderiniz 6759 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478261120\n\nDear MUHAMMED YUŞA YILDIRIM, your shipment with 478261120 was delivered to you with the delivery code 6759. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478261120\n\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('2cbca0fa-ce75-4706-a61d-cd758f736792','33626131875','Sayın MADAME COURTOIS IMANE, 745987581 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745987581\n\nDear MADAME COURTOIS IMANE, your shipment with 745987581 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745987581\n\nBICARGO','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('2cc0c9ef-bde7-4b9c-b28f-900df5d8fafc','491634257044','428930069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2030 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428930069\n\nYour shipment with the number 428930069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2030. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428930069\n\nBICARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('2cc96037-0fdb-47a0-a1e6-e8fa118fa962','436766642937','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('2cca4950-da68-44c3-a19e-5e8f0bde1277','905335511664','SÜMEYRA YARİM adlı müşterinizin 371381951 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('2ccc6abb-b75b-4010-935e-a656964106fe','905073106101','RECEP ONAY adlı müşterinizin 465237157 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('2cd1ec84-ab5c-4a0a-ac9d-e5ae0c4a3f07','4917642908659','Sayın MEHMET SÜZEN, 982562609 nolu gönderiniz 3107 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982562609\n\nDear MEHMET SÜZEN, your shipment with 982562609 was delivered to you with the delivery code 3107. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982562609\n\n\nBICARGO','1','3539abdf-5c17-413b-8a00-89b58f218933',NULL),
('2cd326d4-3929-4884-b9e3-af3ac5ec7946','41768170678','Sayın NAZAN DENİZ, 517616028 nolu gönderiniz 2050 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517616028\n\nDear NAZAN DENİZ, your shipment with 517616028 was delivered to you with the delivery code 2050. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517616028\n\n\nBICARGO','1','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL),
('2cd38dcf-b7d9-43ad-9d58-b6eeea120eb3','310645034303','Sayın BEA JONGERİUS, 982984016 nolu gönderiniz 7101 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982984016\n\nDear BEA JONGERİUS, your shipment with 982984016 was delivered to you with the delivery code 7101. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982984016\n\n\nBICARGO','1','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL),
('2cd47d4a-bad4-4374-8a42-853c599c21a1','4917664681539','ŞÖFÖR İKETİŞİM\n					+905301824880','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('2cd59425-df86-483e-a677-37bed14ce4d8','905461661672','NADİYE ÇAVUŞ adlı müşterinizin 644200718 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('2cd77ed3-68c6-492d-9c23-b00ed1a47002','491634714605','598781522 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6244 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598781522\n\nYour shipment with the number 598781522 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6244. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598781522\n\nBICARGO','2','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('2cd823f2-a0e9-43b6-99ac-cddeab77e47c','905075277637','Sayın yetkili; HAKAN CANBAY adlı müşterinize 74565941 nolu gönderinizin RAMS KOLTUK TAKIMI ürünü 1 parça halinde Fatura adresinizden 19.01.2025 19:07:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('2cd93bff-1a95-45bf-b085-754c7fd407db','436603406293','675629833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675629833\n\nYour shipment with the number 675629833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675629833\n\nBICARGO','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('2cd9f975-fe2d-4ea9-a593-a3304eacb021','33612326252','437124353 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8306 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437124353\n\nYour shipment with the number 437124353 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8306. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437124353\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('2cdd81e5-31db-4034-9638-98fe038e2e28','905335708965','AAAAAAA adlı müşterinizin 735660192 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL),
('2ce21b55-eb48-4d3f-928a-01e9652cee74','905301592882','Sayın yetkili; ROHAT KALABAŞ adlı müşterinize 910245715 nolu gönderinizin SEHPALAR ürünü 3 parça halinde NOVANO adresinizden 19.03.2025 17:45:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('2ce40d8e-5715-43c5-8c41-a8790813bbd6','905075277637','Sayın yetkili; HAKAN CANBAY adlı müşterinize 74565941 nolu gönderinizin RAMS YEMEK ODASI ürünü 1 parça halinde Fatura adresinizden 19.01.2025 19:07:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('2ce96318-4c77-44dd-8e2a-612eaf913626','33609376931','745879253 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7372 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745879253\n\nYour shipment with the number 745879253 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7372. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745879253\n\nBICARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('2ced28ef-3be7-4c55-b79e-5b63219a3a03','491634722211','Sayın MÜCAHİT SÖYLEMEZ, 478342417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478342417\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 478342417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478342417\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('2cf196de-9780-40cf-977c-9fa3a44d2444','905075277637','ÖMER ÇALIK SSH  adlı müşterinizin 7456984 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('2cf2129f-c732-429a-a294-95d1d81cb2ab','01779194671','Sayın ÖZLEM KIZILARSLAN, 644650618 nolu gönderiniz 7367 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644650618\n\nDear ÖZLEM KIZILARSLAN, your shipment with 644650618 was delivered to you with the delivery code 7367. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644650618\n\n\nBICARGO','2','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('2cf32864-10f5-466a-9ea6-925be9c75a2d','491722552789','Sayın ASLIHAN GÜÇLÜ , 428499287 nolu gönderiniz 5954 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428499287\n\nDear ASLIHAN GÜÇLÜ , your shipment with 428499287 was delivered to you with the delivery code 5954. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428499287\n\n\nBICARGO','1','ff039116-94c2-4c75-851c-9deaf4e01549',NULL),
('2cf450da-aa15-40c7-849e-efdfc221ca45','905331602195','Sayın yetkili; SEMİH TASKELE adlı müşterinize 221693523 nolu gönderinizin BALAT SANDALYE ürünü 6 parça halinde ALP SANDALYE adresinizden 10.02.2025 12:42:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('2cf8eb6f-5eca-4d22-9695-43ed4c91c942','4915906114014','Sayın RUKEN ŞAKIR, 910187142 nolu gönderiniz 4110 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910187142\n\nDear RUKEN ŞAKIR, your shipment with 910187142 was delivered to you with the delivery code 4110. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910187142\n\n\nBICARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('2cfb02c2-a49b-45a3-a498-fbdc3801937c','4917662226476','Sayın VİET ANH THAİ, 531250587 nolu gönderiniz 7856 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531250587\n\nDear VİET ANH THAİ, your shipment with 531250587 was delivered to you with the delivery code 7856. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531250587\n\n\nBICARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('2d010cc8-f8d6-4b03-a4e9-89d095ed6a54','436766833448','Sayın GÜLCAN İNCE, 33850305 nolu gönderiniz 1558 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/33850305\n\nDear GÜLCAN İNCE, your shipment with 33850305 was delivered to you with the delivery code 1558. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/33850305\n\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('2d014f26-42ef-4ed1-9cbc-927e56db28d6','905301534568','ERGÜN GÜZEL adlı müşterinizin 193362317 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL),
('2d018162-a77a-4bc7-80a3-36f3f4a085cc','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin EWODA LENS 160\'LIK KARYOLA (BAZALI) ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('2d02697c-67a3-4ff8-9a73-fc5032dea6fa','905335708965','ÖRÜMCEK adlı müşterinizin 248692077 nolu gönderisi 74 parça halinde yola çıkmıştır.','1','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL),
('2d0ab724-ff66-498f-aa45-2d5ddfad0aa3','905331602195','İBRAHİM MERMERCİ adlı müşterinizin 221102071 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('2d0bb885-6071-4f01-a11e-a96e434e9529','0033649778500','Sayın ASLI AYCİ, 73555265 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73555265\n\nDear ASLI AYCİ, your shipment with 73555265 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73555265\n\nBICARGO','2','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL),
('2d0f3cac-86af-48ec-8768-0b1913ef2d4d','905443955915','ÇİLEM KAYNI adlı müşterinizin 614508817 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL),
('2d0f41f7-e85f-4b1a-881e-22a29cb32092','905336367828','Sayın yetkili; EHSANULLAH SEDİGİ  adlı müşterinize 982663240 nolu gönderinizin tv ünütesi  ürünü 1 parça halinde Lego Tv mobilya  adresinizden 12.02.2025 11:49:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('2d123981-ba85-4c97-bbe2-5b482e93e6d0','905365908694','TCR WARENHANDEL GMBH (MARTİN CREUTZBURG) adlı müşterinizin 223853931 nolu gönderisi 155 parça halinde yola çıkmıştır.','1','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('2d16fd64-8f7c-4d5b-aa78-92fd8c37afb2','41782487327','455726286 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3700 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455726286\n\nYour shipment with the number 455726286 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3700. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455726286\n\nBICARGO','1','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL),
('2d1b0bdf-d129-46e4-9d0d-bf7d538fa617','32486379906','Sayın ARİFE SARI, 127865742 nolu gönderiniz 2025 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127865742\n\nDear ARİFE SARI, your shipment with 127865742 was delivered to you with the delivery code 2025. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127865742\n\n\nBICARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('2d1cabdb-b9b3-481a-a0a8-acea540633b8','4917632545443','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('2d202ee4-39ce-4832-9236-d82d1ab5b5ee','905304259202','Sayın yetkili; ALEV DOĞRU adlı müşterinize 478860616 nolu gönderinizin 180set-2ad.90 yatak-masa-sandalye ürünü 11 parça halinde çelikbey inegöl depo adresinizden 26.01.2025 13:22:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('2d2cc617-a994-4172-b4a9-22a8d2a5a88c','4915906432284','Sayın BİROL KURNAZ, 501452801 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501452801\n\nDear BİROL KURNAZ, your shipment with 501452801 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501452801\n\nBICARGO','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('2d2f1dd4-38b5-418a-a897-b46bb6b77db4','4917630122956','Sayın RANA PEKER CİNGÖZ, 735159660 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735159660\n\nDear RANA PEKER CİNGÖZ, your shipment with 735159660 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735159660\n\nBICARGO','1','406ebbb4-13b5-4567-9950-1d118159195d',NULL),
('2d320abb-c1cd-41d3-9b33-1c4ae33c4085','4915206231877','613391684 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6304 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613391684\n\nYour shipment with the number 613391684 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6304. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613391684\n\nBICARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('2d327645-a8ab-493f-8546-1e649953e9c7','330750840793','Sayın ŞAHİN DOROTHE, 98298396 nolu gönderiniz 7572 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98298396\n\nDear ŞAHİN DOROTHE, your shipment with 98298396 was delivered to you with the delivery code 7572. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98298396\n\n\nBICARGO','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('2d34ea26-109c-46a1-bfd8-1aa488426b94','905301592882','Sayın yetkili; NESLİHAN KÖSEM		 adlı müşterinize 910316067 nolu gönderinizin M97 MASA ürünü 1 parça halinde Fatura adresinizden 15.04.2025 10:40:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('2d38806c-e908-4a9d-97ea-e55891467a4c','905421855834','Sayın yetkili; NURTEN YILMAZ adlı müşterinize 338411614 nolu gönderinizin Halı  5 adet ürünü 4 parça halinde İNHOUSE Exclusive adresinizden 18.08.2025 16:40:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('2d3a8e93-3d9b-4fc0-89ca-82e7aa14a1d2','33635914929','Sayın GÜLÜZAR KECKİN, 745276257 nolu gönderiniz 3403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745276257\n\nDear GÜLÜZAR KECKİN, your shipment with 745276257 was delivered to you with the delivery code 3403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745276257\n\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('2d3b8abf-e12c-41e2-aace-c4a90a3fca2e','31621283629','Sayın DURMUŞ MEVLÜT, 614425900 nolu gönderiniz 7644 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614425900\n\nDear DURMUŞ MEVLÜT, your shipment with 614425900 was delivered to you with the delivery code 7644. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614425900\n\n\nBICARGO','1','711413e7-9565-452a-b808-a0700618dc85',NULL),
('2d3bf447-a41b-4078-bcf3-9df8fcb56abe','5325000478','Sayın SERHAT2 SERHAT2, 25.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1316254\nŞifre : 1316254\n			\nBİCARGO','1',NULL,'c1316c2d-c5cf-4a71-8f22-fe7451c83298'),
('2d3d2a95-8fa2-4715-8666-7fce212ae1d1','491632639510','Sayın AİCHEH EL-KATİB, 221416475 nolu gönderiniz 10277 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221416475\n\nDear AİCHEH EL-KATİB, your shipment with 221416475 was delivered to you with the delivery code 10277. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221416475\n\n\nBICARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('2d3d60b6-dcd3-4a6e-969b-68f0bae09fac','4917661423024','43783689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43783689\n\nYour shipment with the number 43783689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43783689\n\nBICARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('2d3f0be2-53ef-426e-ad40-986e0d8b8fbe','905428209234','GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinizin 31925609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('2d423636-985d-4692-be09-b7874afaf1a8','905301592882','BERKAN AĞIRMAN adlı müşterinizin 91034652 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('2d458b38-c971-4073-a62d-f9ccf11eb7d7','41765845886','Sayın RÜVEYDA ŞAHİN, 127150146 nolu gönderiniz 10424 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127150146\n\nDear RÜVEYDA ŞAHİN, your shipment with 127150146 was delivered to you with the delivery code 10424. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127150146\n\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('2d45f3f3-238c-48a6-b6e8-6af38d681502','905075277637','Sayın yetkili; ÖZGÜR SEDAT YAMALAK adlı müşterinize 74513098 nolu gönderinizin köşe  ürünü 3 parça halinde Fatura adresinizden 20.12.2024 16:01:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('2d4a9427-166d-489f-8ac4-691ab89b422c','4917624194526','Sayın DİLAN ÇELİK TOGAN, 371881042 nolu gönderiniz 1571 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371881042\n\nDear DİLAN ÇELİK TOGAN, your shipment with 371881042 was delivered to you with the delivery code 1571. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371881042\n\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('2d4ffc45-df69-4c82-bd21-74b963b249df','33664447366','Sayın RAMAZAN AÇIKEL, 412411011 nolu gönderiniz 10444 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412411011\n\nDear RAMAZAN AÇIKEL, your shipment with 412411011 was delivered to you with the delivery code 10444. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412411011\n\n\nBICARGO','1','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL),
('2d50ff34-0610-4e49-98dd-136913f4bbce','015209328224','644917251 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644917251\n\nYour shipment with the number 644917251 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644917251\n\nBICARGO','2','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('2d57bd2c-b455-447d-a71f-72295445cfa6','905335511664','Sayın yetkili; LYUDMİLA KORUNOVSKA adlı müşterinize 371121937 nolu gönderinizin berjer ürünü 1 parça halinde Elitis Home adresinizden 29.08.2025 16:23:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('2d598dae-2c77-45c4-b836-c675b1e89dca','0000000000000000','655583517 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2314 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655583517\n\nYour shipment with the number 655583517 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2314. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655583517\n\nBICARGO','2','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL),
('2d5e7543-4c0f-45dd-8db0-8f704a5539e9','33662698743','22144793 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1714 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22144793\n\nYour shipment with the number 22144793 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1714. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/22144793\n\nBICARGO','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('2d62827b-18e5-4e92-83d0-5fc2fec60854','905301592882','ERDAL ULAŞ adlı müşterinizin 910645687 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL),
('2d63cb13-7740-41ce-aa9d-6cbbaaad277e','33781067727','Sayın MELİSA DEMİRTAŞ, 478504480 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478504480\n\nDear MELİSA DEMİRTAŞ, your shipment with 478504480 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478504480\n\nBICARGO','1','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL),
('2d66db43-266d-4e87-b534-7278be9e4e88','905461661672','Sayın yetkili; EDA GEÇİLİ adlı müşterinize 644726352 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde PABLO HOME adresinizden 27.10.2025 16:15:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c90194bc-97cc-4374-adc9-37c98a4f48c9',NULL),
('2d68d556-1a3f-486f-97da-635e4d54fccd','4917630550743','Sayın NESLİHAN DEMİR, 371586742 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371586742\n\nDear NESLİHAN DEMİR, your shipment with 371586742 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371586742\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('2d6a6c52-6ccf-4ae8-b1a0-f7ca1e049a9a','905331602195','AYŞE ACAR adlı müşterinizin 221639055 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL),
('2d6c8bfd-2770-41fc-88d9-3204d5aedbf0','33787053460','Sayın EMRAH ERAYDIN, 127552437 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127552437\n\nDear EMRAH ERAYDIN, your shipment with 127552437 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127552437\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('2d79ec31-72da-45c6-b8c9-c61358a380f7','4917684650922','Sayın NİLÜFER YAMAN, 745972164 nolu gönderiniz 1842 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745972164\n\nDear NİLÜFER YAMAN, your shipment with 745972164 was delivered to you with the delivery code 1842. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745972164\n\n\nBICARGO','1','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL),
('2d838e0c-ea13-4c7a-973d-089035298de4','905451571652','Sayın yetkili; TÜRKAN ÖZER adlı müşterinize 531983278 nolu gönderinizin Karyola ürünü 6 parça halinde Albessa adresinizden 02.06.2025 14:08:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('2d87d084-b576-478e-bef0-7389cc647a4f','33609880831','Sayın SONER DEMİRCİ, 478422219 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478422219\n\nDear SONER DEMİRCİ, your shipment with 478422219 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478422219\n\nBICARGO','1','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL),
('2d89a9b0-eebc-4c7f-b702-c162251f4b06','4917641830880','Sayın HAZAL ELMAS, 976983661 nolu gönderiniz 6468 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976983661\n\nDear HAZAL ELMAS, your shipment with 976983661 was delivered to you with the delivery code 6468. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976983661\n\n\nBICARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('2d8ea590-c870-4368-aa1e-2c0ce94e0510','4917624748581','655200069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2226 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655200069\n\nYour shipment with the number 655200069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2226. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655200069\n\nBICARGO','1','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL),
('2d8ed776-2eab-4dd4-9542-3b7e60db9cff','41764331829','478223658 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1354 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478223658\n\nYour shipment with the number 478223658 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1354. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478223658\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('2d91cd4c-0f82-41f4-8b7d-0857acc8bb19','4917642796230','505332275 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505332275\n\nYour shipment with the number 505332275 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505332275\n\nBICARGO','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('2d949227-30f3-448c-888c-e46747824269','4915221698583','Sayın REZA ÖMERİ, 449968881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449968881\n\nDear REZA ÖMERİ, your shipment with 449968881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449968881\n\nBICARGO','1','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL),
('2d9d0c79-2691-47a2-93f7-fa73d0eec61c','4977219162688','Sayın METİN PEKSERT SSH , 74597110 nolu gönderiniz 5804 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74597110\n\nDear METİN PEKSERT SSH , your shipment with 74597110 was delivered to you with the delivery code 5804. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74597110\n\n\nBICARGO','2','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('2d9e9a4e-73cb-481e-9d3e-b969635fe71e','905331602195','Sayın yetkili; SERKAN KAHRAMAN adlı müşterinize 221254389 nolu gönderinizin Balat sandalye siyah  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 11.08.2025 15:47:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('2d9ef2d5-b038-47f0-9f68-a732afc76501','4915785847007','Sayın WALDEMAR HEİNZ , 613940015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613940015\n\nDear WALDEMAR HEİNZ , your shipment with 613940015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613940015\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('2da19e13-c26b-4455-83be-ffb237fe3ab2','905327399716','ÖZKAN ALTUN adlı müşterinizin 223867751 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL),
('2da27003-6270-4943-aef9-abeeaf4fc21c','41765923442','Sayın ALİ BÜKLÜ, 982506182 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982506182\n\nDear ALİ BÜKLÜ, your shipment with 982506182 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982506182\n\nBICARGO','1','9c622fdf-272f-4650-ac75-c35e205b6022',NULL),
('2da2ea6c-b329-4eed-be63-fd43bba0c64e','33664098432','Sayın ÖZKAN ALTUN, 223867751 nolu gönderiniz 10409 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223867751\n\nDear ÖZKAN ALTUN, your shipment with 223867751 was delivered to you with the delivery code 10409. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223867751\n\n\nBICARGO','1','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL),
('2da30c2a-c1c1-4703-b8cf-b45b7dedfc88','33651149418','478764154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478764154\n\nYour shipment with the number 478764154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478764154\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('2da37e40-fb6f-4fbb-9457-fceeaa008859','905336367828','Sayın yetkili; Jalal aslam  adlı müşterinize 982966360 nolu gönderinizin Koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 06.11.2024 13:13:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('2da61814-2f4d-4c40-85f8-222d81fbe315','40741058791','Sayın SAVU ALİN , 98221051 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98221051\n\nDear SAVU ALİN , your shipment with 98221051 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98221051\n\nBICARGO','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('2da938eb-988b-4db9-9829-bdc7d65d4547','905336367828','GHATİA PARASCHİVA adlı müşterinizin 982163675 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('2dac0954-f00a-4e7b-adda-920872f9660f','491785627372','Sayın BÜLENT KILIÇ, 817682643 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817682643\n\nDear BÜLENT KILIÇ, your shipment with 817682643 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817682643\n\nBICARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('2dacc5e3-84d6-4688-9593-24eab5ceeb36','41786878898','Sayın AUCHLİ ANA , 221616369 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221616369\n\nDear AUCHLİ ANA , your shipment with 221616369 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221616369\n\nBICARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('2dad52d7-5595-4c17-a53f-424e3c57f846','4915782470438','Sayın CÜNEYT BARUT, 745699153 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745699153\n\nDear CÜNEYT BARUT, your shipment with 745699153 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745699153\n\nBICARGO','1','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL),
('2db104da-52a5-4c41-8512-1b408cf4443f','905331602195','Sayın yetkili; ESENGÜL TOPAKTAŞ adlı müşterinize 221574787 nolu gönderinizin 90x210 cm Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:18:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90ca9af9-d39c-47ed-a9d5-76aa8cb5557f',NULL),
('2db44145-330d-4bba-b967-4f959b724e63','31640579879','Sayın BARLEB KASS HANNA, 644106987 nolu gönderiniz 1014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644106987\n\nDear BARLEB KASS HANNA, your shipment with 644106987 was delivered to you with the delivery code 1014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644106987\n\n\nBICARGO','2','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('2db72b69-cc2f-4c70-b7a4-36233389fff2','905069116877','Sayın yetkili; İSİBEL ÖZTAMUR adlı müşterinize 817872283 nolu gönderinizin Star köşe ürünü 5 parça halinde Fatura adresinizden 12.05.2025 14:10:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('2dbcb377-bfe8-4805-8e8c-ee7c22c673ce','905059175469','ŞÜKRÜ AKSOY adlı müşterinizin 428390036 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('2dc95952-dc2e-4121-ac4e-30195e40e401','4915778071282','Sayın ERDİNÇ ESKİ, 745505942 nolu gönderiniz 3401 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745505942\n\nDear ERDİNÇ ESKİ, your shipment with 745505942 was delivered to you with the delivery code 3401. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745505942\n\n\nBICARGO','1','d85df80f-4bcc-482f-949e-4393d27c0874',NULL),
('2dcdd613-de35-4a90-aead-77e0e666776e','905349208933','ALESSANDRA ALTAVİLLA adlı müşterinizin 127343940 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('2dd2f687-84ad-4a0b-987a-b45f2b0c743f','33767941492','Sayın PINAR ÇİÇEK, 221970338 nolu gönderiniz 3171 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221970338\n\nDear PINAR ÇİÇEK, your shipment with 221970338 was delivered to you with the delivery code 3171. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221970338\n\n\nBICARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('2dd40812-dbe8-44e8-a335-ec81dbf8c0e1','5528582359','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('2dd7b429-3602-4156-81de-1cc315ff8ea7','491774238890','Sayın RABİA AKKUŞ SSH, 644564440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644564440\n\nDear RABİA AKKUŞ SSH, your shipment with 644564440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644564440\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('2dd803ff-df97-4bfb-8cc6-322390037bca','905325000478','HASAN BEY (İRFAN) adlı müşterinizin 412797306 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('2ddca1ae-803d-4997-8787-46d64e9c1153','905304259202','BELKISA KAPLAN adlı müşterinizin 478428380 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('2ddd8a4a-6965-4daa-bf35-d239fe1b52b0','905059175469','SİDAR AKDENİZ adlı müşterinizin 428178028 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('2dea4b82-a237-471b-95ef-c7a604a42dc2','905079047428','AYŞEGÜL TELLİ adlı müşterinizin 449962472 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('2deb9e97-c482-421b-9945-7062c936d235','4369919588138','80873489 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/80873489\n\nYour shipment with the number 80873489 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/80873489\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('2df186c5-6ebe-4770-8677-65a86eb451cb','436602003887','478996959 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478996959\n\nYour shipment with the number 478996959 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478996959\n\nBICARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('2df32d4e-0333-41dc-97cf-b4175624ce9c','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ESKALA LİNE İKİLİ ÇEKMECELİ BLOK DOLAP ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('2df6003f-a195-4f87-8f2d-41964877f7a4','0033624524331','248977442 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248977442\n\nYour shipment with the number 248977442 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248977442\n\nBICARGO','2','f5ff5ecc-8494-400b-acf9-c8906860204a',NULL),
('2df96420-f848-42bb-8d47-0b56768ef30c','31625064385','Sayın MURAT AKTAŞ, 163961995 nolu gönderiniz 2511 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/163961995\n\nDear MURAT AKTAŞ, your shipment with 163961995 was delivered to you with the delivery code 2511. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/163961995\n\n\nBICARGO','1','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL),
('2dfc517d-280e-436e-ba6f-048805b8ab7b','905540182920','44831715 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5055 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44831715\n\nYour shipment with the number 44831715 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5055. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44831715\n\nBICARGO','1','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL),
('2dfc7a1f-f8a1-433f-aeae-20e4f738dcc6','33661933324','Sayın YILDIZ KILIÇ, 221952785 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221952785\n\nDear YILDIZ KILIÇ, your shipment with 221952785 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221952785\n\nBICARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('2dfd9299-77bd-4291-932c-4a687dbf2052','4917680868263','Sayın HASSAN HUSSEİN, 976494428 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976494428\n\nDear HASSAN HUSSEİN, your shipment with 976494428 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976494428\n\nBICARGO','1','887d1301-8182-4254-93e6-73d1ecf6af40',NULL),
('2e0168a3-2c2d-497d-81c9-ebccc91b8c8f','491749591942','Sayın AZAT ALKAN, 35119636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35119636\n\nDear AZAT ALKAN, your shipment with 35119636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/35119636\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('2e02feda-4b1c-4131-a142-0fafcbd002ff','905304259202','ASLIHAN KELES adlı müşterinizin 478112159 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('2e03852c-94ad-45d5-9ea9-cd76a7f6044c','41765044236','126806100 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9119 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126806100\n\nYour shipment with the number 126806100 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9119. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126806100\n\nBICARGO','1','476b3b22-cc52-456b-baca-94ab2554e38d',NULL),
('2e065516-2c00-45ae-99d9-563d5e850eb9','436769039960','Sayın LEJLA GUDİC , 221758948 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221758948\n\nDear LEJLA GUDİC , your shipment with 221758948 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221758948\n\nBICARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('2e0a0ec0-b16c-4a8d-b59a-ce77267db22b','905534084469','Sayın yetkili; EROL ERDOĞAN adlı müşterinize 151236689 nolu gönderinizin EFES KÖŞE KOLTUK TAKIMI ürünü 5 parça halinde KATRE KOLTUK adresinizden 20.02.2025 11:00:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('2e0aa843-bd64-4ea9-99e0-5dc17aa13688','491622711992','Sayın HATİCE BOZ, 371441090 nolu gönderiniz 3389 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371441090\n\nDear HATİCE BOZ, your shipment with 371441090 was delivered to you with the delivery code 3389. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371441090\n\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('2e0cd5fb-2272-41c0-b00c-55b9b5bd7826','905335511664','ERSAN SULİMANOVSKİ adlı müşterinizin 371985580 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ab5aecf3-3848-4bed-b17f-3f3ab2404c76',NULL),
('2e0f0b04-a4db-43bf-82f6-df1be7d022c2','905451571652','Sayın yetkili; IMAN JAWİD adlı müşterinize 531245816 nolu gönderinizin Masa ve 2 sehpa ürünü 6 parça halinde BİFURNİ adresinizden 20.08.2025 18:54:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('2e0f846a-52fb-4ea8-a866-e4e779f37cb2','4917666337155','Sayın İPEK ÇAKMAKÇI, 505129515 nolu gönderiniz 9569 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505129515\n\nDear İPEK ÇAKMAKÇI, your shipment with 505129515 was delivered to you with the delivery code 9569. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505129515\n\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('2e0fb518-d169-4a55-8a73-55bdf093a4b1','491624269090','Sayın MUSTAFA NARİN, 319911664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319911664\n\nDear MUSTAFA NARİN, your shipment with 319911664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319911664\n\nBICARGO','1','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL),
('2e129eee-801c-4eda-a46d-cc2848bb2ce5','905443955915','VEYSİ DAĞDELEN adlı müşterinizin 614456400 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('2e1c7f4a-c103-4cc8-93fb-1f6b882aec93','905443955915','Sayın yetkili; BURAK TÜRKEŞ adlı müşterinize 614419362 nolu gönderinizin EKOL LOTUS ZİGON SEHPA ÜST CAMI ürünü 1 parça halinde Fatura adresinizden 13.01.2025 17:24:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('2e1da61c-0ff8-4de8-908d-9c8c5760a23b','905336367828','Sayın yetkili; MOHAMMED MALHA  adlı müşterinize 982125625 nolu gönderinizin karyola  ürünü 4 parça halinde Marki baza  adresinizden 11.02.2025 14:18:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('2e246b31-9778-4d49-ae0c-e3c38fdcb346','400725755108','Sayın MİHAİ LİDİA , 982708819 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982708819\n\nDear MİHAİ LİDİA , your shipment with 982708819 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982708819\n\nBICARGO','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('2e2c0d5f-d740-41f5-9a23-24d39041c056','905454259202','MUSTAFA UZUNBOY adlı müşterinizin 478618410 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('2e30360f-7a87-4def-aae4-3eb92e6df5ec','905313340045','FATMA SAĞLIK adlı müşterinizin 437835103 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('2e368067-d775-4530-a0e3-2d95103908c8','32484828555','Sayın GÖKHAN ÖZYURT , 2213416 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/2213416\n\nDear GÖKHAN ÖZYURT , your shipment with 2213416 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/2213416\n\nBICARGO','2','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('2e384b9f-a33a-4b3a-86e1-b7abcc230f9f','905456068312','AAAAAA adlı müşterinizin 65556881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7273e12-dd22-4fa8-9893-2696b1178656',NULL),
('2e395736-eca3-4736-b41b-d80eec622ea8','905461661672','Sayın yetkili; REBEKKA İRMER adlı müşterinize 644113100 nolu gönderinizin MASA VE SEHPA ürünü 3 parça halinde Masami Mobilya adresinizden 07.05.2025 14:46:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('2e3a2bd2-0cf4-4596-9ec5-681445f59402','436766461961','DRİVER\n					ADNAN\n+905354622027','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('2e3fe035-8583-426b-b9e6-95f5c174bcdf','41792532277','Sayın SAİD ALİ , 982973548 nolu gönderiniz 4298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982973548\n\nDear SAİD ALİ , your shipment with 982973548 was delivered to you with the delivery code 4298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982973548\n\n\nBICARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('2e3fea3a-1d75-4f93-bc35-e7e48b54c77b','5325000478','Sayın YILDIZ ORHAN, 07.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8198462\nŞifre : 8198462\n			\nBİCARGO','1',NULL,'f81ec9dd-8fdd-462e-af9b-c064b55486e6'),
('2e48f02c-e84a-4146-86a6-56b10e4cbc8c','4917620022816','Sayın AYLİN AY, 371201111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371201111\n\nDear AYLİN AY, your shipment with 371201111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371201111\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('2e4b4bb3-f92a-47a7-8005-8398f79e2c17','491629768572','644711459 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644711459\n\nYour shipment with the number 644711459 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644711459\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('2e4bbb5f-70b3-48f3-aee0-4c93af800872','4917670477850','750845897 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3268 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750845897\n\nYour shipment with the number 750845897 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3268. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750845897\n\nBICARGO','1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL),
('2e4c2668-2416-46cb-9186-f2a5fdd08487','905350617509','Sayın yetkili; KHALED SEMMO  adlı müşterinize 613175888 nolu gönderinizin Traverten masa+sehpa ürünü 1 parça halinde Fatura adresinizden 19.08.2025 12:12:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('2e4f5540-205d-43ef-994e-e80aed1f7dbd','33780145878','Sayın FARİSHTE AHMEDİ, 44940434 nolu gönderiniz 8246 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44940434\n\nDear FARİSHTE AHMEDİ, your shipment with 44940434 was delivered to you with the delivery code 8246. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44940434\n\n\nBICARGO','1','6df88176-a01f-4232-a091-4e10895a39df',NULL),
('2e51fdee-1492-4641-8315-580d92c2ec85','491774822488','338822119 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5386 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338822119\n\nYour shipment with the number 338822119 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5386. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338822119\n\nBICARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('2e55ece9-9689-4838-be91-439817379f4a','5325000478','Sayın MİTHAT RAKE, 18.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3271677\nŞifre : 3271677\n			\nBİCARGO','1',NULL,NULL),
('2e5a0b5a-519b-472f-83b9-d7481cfad84c','905517075149','Sayın yetkili; MASOUD SÜLEYMAN adlı müşterinize 478183761 nolu gönderinizin dolap ( area) ürünü 13 parça halinde BİCARGO DEPO adresinizden 14.10.2025 17:59:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5531cd-fb21-4284-9145-817c08eee250',NULL),
('2e5ede18-d87a-4b39-b6d9-82fdbbf4cde1','49017662030920','Sayın ZEKERİYA SOYER, 338878009 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338878009\n\nDear ZEKERİYA SOYER, your shipment with 338878009 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338878009\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('2e68430e-501a-4565-b312-89840449b1c9','905078062550','Sayın yetkili; ÖZLEM GÜN adlı müşterinize 598604443 nolu gönderinizin HALI ürünü 4 parça halinde NLUXHOME DEPO adresinizden 10.10.2025 17:10:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e399534-04a6-4572-a7ec-3a630c910cdf',NULL),
('2e68ea0d-3fd4-4e37-8479-7394e091cb85','905059175469','KÖKSAL ÇELİK adlı müşterinizin 428991499 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL),
('2e69dd8b-1597-4f2b-b5f7-09e2938b436f','905313340045','Sayın yetkili; HAZAL BATUR adlı müşterinize 437712381 nolu gönderinizin Masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 30.08.2025 13:54:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('2e71b7d1-a71a-48ae-94d8-13539ba8e818','33749990296','Sayın FATİH ÇELİK, 478603328 nolu gönderiniz 4032 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478603328\n\nDear FATİH ÇELİK, your shipment with 478603328 was delivered to you with the delivery code 4032. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478603328\n\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('2e772362-aa68-4d67-86a9-3a4db4d8fd35','4917662047027','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('2e82d3b0-0ef6-4e4d-83e7-cf01fb82474c','4940403022','Sayın MEHMET ALİ ÇAKIROĞLU , 223744518 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223744518\n\nDear MEHMET ALİ ÇAKIROĞLU , your shipment with 223744518 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223744518\n\nBICARGO','2','1f667c31-0a45-4450-be98-281039258085',NULL),
('2e83c7c9-2d67-4d50-b778-10654f20db0c','491794407859','Sayın HAFİZE GÜNEY , 319382208 nolu gönderiniz 8504 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319382208\n\nDear HAFİZE GÜNEY , your shipment with 319382208 was delivered to you with the delivery code 8504. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319382208\n\n\nBICARGO','1','1b20804a-76a0-418e-b22d-40783c68915b',NULL),
('2e89293f-9d31-4f3c-83f6-8eab088a1001','41799232324','47889024 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9404 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47889024\n\nYour shipment with the number 47889024 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9404. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47889024\n\nBICARGO','1','57e894a7-068e-465a-bc70-3b4e9860cee5',NULL),
('2e8bf80e-3ecc-4f43-96f9-099be8894296','905304259202','MUHAMMET ÖZKAN adlı müşterinizin 47830878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('2e8d2f91-6676-4b72-8223-2b8b42cb26cd','905313340045','IVANA JURCEVİC adlı müşterinizin 437869312 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('2e956eda-bf92-4b9a-81b3-4a017b2de5a3','905313340045','Sayın yetkili; ALİ KURUÇAM adlı müşterinize 437465500 nolu gönderinizin Sandalye patiği + rutus boyası ssh ürünü 1 parça halinde bicargo depo adresinizden 14.10.2025 10:21:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88a13537-ee7e-4373-9a6b-9ad389c583a7',NULL),
('2e95c1e8-298a-4187-b6ee-595545d43672','905456068312','DİKİŞ MAKİNASI adlı müşterinizin 655583517 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL),
('2e9a389b-fb9f-4755-939f-fe419ea4afd0','4915256924287','Sayın MAZHAR BAYMAN SSH, 644803178 nolu gönderiniz 10084 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644803178\n\nDear MAZHAR BAYMAN SSH, your shipment with 644803178 was delivered to you with the delivery code 10084. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644803178\n\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('2ea2c86c-12f2-4cd0-9aa0-f7cecc6974db','905539740010','Sayın yetkili; HÜLYA ŞENEL  adlı müşterinize 011195834 nolu gönderinizin 6 SADANDALYE ürünü 6 parça halinde ayaz masa sandalye  adresinizden 28.08.2025 17:21:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('2ea2d78b-8ac1-4eb5-a738-b394b41088d8','905350617509','BURHAN SARIKURT adlı müşterinizin 613431273 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('2ea3e03c-7772-4314-b178-3f15d2da0418','905456068312','AAAAAA adlı müşterinizin 65556881 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','d7273e12-dd22-4fa8-9893-2696b1178656',NULL),
('2ea83f41-5ec0-4870-98f5-f91037f35c28','905354629239','Sayın serkan Yıldız, 08.04.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5180614\nŞifre : 5180614\n			\nBİCARGO','1',NULL,'ec518edc-d061-4e5c-8d56-8477e6213bda'),
('2eaceb1a-e9bf-4de6-b9ba-f90161d86bc5','905079358213','ÖZNUR KOŞAK adlı müşterinizin 745283034 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL),
('2eb032c2-309e-42ab-bc66-250c53b19a35','498381940171','Sayın ZÜLFİKAR CAN, 745936573 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745936573\n\nDear ZÜLFİKAR CAN, your shipment with 745936573 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745936573\n\nBICARGO','2','6c005507-054f-4904-8f84-b0774ba70335',NULL),
('2eb5e2d9-522a-4dca-837c-3eb606738203','41782155575','Sayın ADİSA BALANCA , 982751509 nolu gönderiniz 5298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982751509\n\nDear ADİSA BALANCA , your shipment with 982751509 was delivered to you with the delivery code 5298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982751509\n\n\nBICARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('2ec44aee-ad0b-464f-be1f-3ff0aff1ce80','31681124473','Sayın ÖZAY ÖZDEMİR YILDIZ, 221746261 nolu gönderiniz 2207 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221746261\n\nDear ÖZAY ÖZDEMİR YILDIZ, your shipment with 221746261 was delivered to you with the delivery code 2207. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221746261\n\n\nBICARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('2ec6fc7b-546c-4a3e-bfcd-d7cdf5893675','491607553949','Sayın SİBEL ÖZTAMUR, 817872283 nolu gönderiniz 10943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817872283\n\nDear SİBEL ÖZTAMUR, your shipment with 817872283 was delivered to you with the delivery code 10943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817872283\n\n\nBICARGO','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('2ec91ca6-df13-4d7c-a40f-fd6d7ebbc201','436603406293','TUBA BALTA adlı müşterinizin 675902808 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('2eccbb1a-b64e-40a3-a6c3-d50d90943427','905335511664','SHİMA MAKEH VANDİ adlı müşterinizin 371865484 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('2ed9e22a-c2c6-441c-8206-20eef1c013dc','905368336516','SERHAT AGİRTAS adlı müşterinizin 515139511 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('2eda8667-eaa7-46d7-861c-64324855fd6c','905336367828','SHAHLA HOSSEİNİ adlı müşterinizin 982320922 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL),
('2edfa8c1-997e-48c6-9c63-5f20bb74dd93','905301592882','Sayın yetkili; NURAN YILDIRIM adlı müşterinize 910561299 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 2 parça halinde Fatura adresinizden 22.08.2025 10:58:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('2ee3bc37-d508-41bc-b41e-05aad27218b1','905304259202','GÜLCE GÜRLER YEGİN adlı müşterinizin 478484020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('2ee7ccaf-554b-4ce0-a12c-d6fbfbf4a601','31625064385','Sayın Murat Trendyol home, 41245861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41245861\n\nDear Murat Trendyol home, your shipment with 41245861 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41245861\n\nBICARGO','1','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL),
('2eed039c-c985-4165-a11a-f47c452a4d0a','4915772514011','Sayın BURAK SARIKAYA, 745816946 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745816946\n\nDear BURAK SARIKAYA, your shipment with 745816946 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745816946\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('2eee017d-817c-4b41-a7c9-003f81d63a1a','33651098791','Sayın MESUL OLGUN, 338607005 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338607005\n\nDear MESUL OLGUN, your shipment with 338607005 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338607005\n\nBICARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('2eee744d-a979-4f41-b8d8-a1158a7a4e2e','33767355660','Sayın GAMZE ŞAHİN, 437400305 nolu gönderiniz 7310 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437400305\n\nDear GAMZE ŞAHİN, your shipment with 437400305 was delivered to you with the delivery code 7310. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437400305\n\n\nBICARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('2ef1835e-7437-4148-bdce-1f212721030d','905335708965','NASTENA IROBE-POŞETLER adlı müşterinizin 248539327 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3753ec0d-793c-43d2-920b-d39827ee0154',NULL),
('2ef81d09-059a-45fa-bef4-3f5274d45296','0033649778500','73555265 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9009 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73555265\n\nYour shipment with the number 73555265 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9009. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73555265\n\nBICARGO','2','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL),
('2ef83c34-02d8-4d3b-8353-3c90c0e67459','33767294981','Sayın NASIR NOORI , 982558117 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982558117\n\nDear NASIR NOORI , your shipment with 982558117 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982558117\n\nBICARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('2efc2085-0f55-4077-96fa-aed27b202fc7','905331602195','Sayın yetkili; YEŞİM TOPKIRAN adlı müşterinize 221960678 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 17:25:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('2efde683-335a-4655-9cbb-aa8b1fc5c7ac','491638306069','Sayın BERİVAN ERTUĞRUL , 221559079 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221559079\n\nDear BERİVAN ERTUĞRUL , your shipment with 221559079 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221559079\n\nBICARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('2f040a6e-0887-4335-a91f-e422c59d464c','905079047428','MME MENAUR RACHİDO adlı müşterinizin 449890150 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL),
('2f05d8e7-644b-4791-a4e1-cc779f0afdc6','5325000478','Sayın ERDEM ERDEM, 25.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7756264\nŞifre : 7756264\n			\nBİCARGO','1',NULL,'7ac756d2-64a5-4427-8ec5-4a522acc0088'),
('2f080118-0911-4cd9-a3c5-8ed514631ac4','905363385813','Sayın yetkili; HELİN GÜNDEŞ adlı müşterinize 976462703 nolu gönderinizin Koltuk Takımı ürünü 3 parça halinde Confortline adresinizden 27.02.2025 16:31:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fe4384f-667e-4804-9bed-05209e202db9',NULL),
('2f0819d2-5cc0-46ce-a2f1-399a222fff3c','905517075149','HAKAN AKDEMİR adlı müşterinizin 478110382 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('2f0f4799-6a15-45f1-aa8b-2a624a6f0da2','373737278373','Sayın MERYEMA TEKİN, 478958383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478958383\n\nDear MERYEMA TEKİN, your shipment with 478958383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478958383\n\nBICARGO','2','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('2f128018-8462-45f4-9ba8-f4d404b786ee','905073106101','MEHMET BATMAZ  adlı müşterinizin 465194627 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL),
('2f12ce78-7876-4746-95f4-017caba68e5e','905454259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin sandalyeler-şifonyer pufu ve aynası  ürünü 6 parça halinde çelikbey inegöl depo adresinizden 08.05.2025 17:52:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('2f180baa-f256-4590-9cd3-7cc43c933953','905517075149','BİRSEN KARADAVUT adlı müşterinizin 478403352 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('2f1be6d9-4f8e-49da-908f-4e577e68cf71','905517075149','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478885112 nolu gönderinizin 2 ADET SSH ürünü 2 parça halinde AREA adresinizden 15.10.2025 11:31:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('2f1c51ca-f819-430b-8b40-0924bf2a50df','33651062743','127241743 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127241743\n\nYour shipment with the number 127241743 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127241743\n\nBICARGO','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('2f1f2b6a-4765-497e-94e2-3de2a6921fb9','33626936541','Sayın SOUQİ İMANE, 976185606 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976185606\n\nDear SOUQİ İMANE, your shipment with 976185606 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976185606\n\nBICARGO','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('2f20bfd3-31ff-47f9-8d04-2e7a1d21ef0f','905335511664','GÖKHAN ÜLKER adlı müşterinizin 371944289 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('2f218328-7911-413e-a4fd-915d14888815','436605954440','Sayın SARAH KLEİN, 505153730 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505153730\n\nDear SARAH KLEİN, your shipment with 505153730 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505153730\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('2f24c78a-b8df-47be-af65-10fde5697e5e','436605312866','DRİVER\n					ADNAN\n+905354622027','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('2f2a2c52-50e0-4399-8a18-833d44eb0cbe','905517075149','Sayın yetkili; SEPİDEH AJORLOO adlı müşterinize 478854135 nolu gönderinizin köşe takımı ürünü 3 parça halinde muka home adresinizden 17.07.2025 12:53:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('2f2e71ac-4dec-4460-8768-0e6710824231','004915258770812','73597674 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9162 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73597674\n\nYour shipment with the number 73597674 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9162. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73597674\n\nBICARGO','2','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL),
('2f2fa5eb-0dad-42ab-8330-b1789cccecc0','5444482458','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('2f331caa-93f9-44c0-afc8-f16c2b1bbffa','31640226281','Sayın HÜSEYİN ÇELEBİ, 644576493 nolu gönderiniz 9906 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644576493\n\nDear HÜSEYİN ÇELEBİ, your shipment with 644576493 was delivered to you with the delivery code 9906. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644576493\n\n\nBICARGO','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('2f3777ea-96bf-4ab5-bcee-b2e11a52a974','004917284997194','Sayın MİHRİBAN SİS -TRANSJET, 735637082 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735637082\n\nDear MİHRİBAN SİS -TRANSJET, your shipment with 735637082 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735637082\n\nBICARGO','2','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL),
('2f37ca66-4d48-4abd-a1ee-3ab5ec632ea4','905336367828','Sayın yetkili; ARTON BERİSHA  adlı müşterinize 982835475 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 26.11.2024 12:21:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('2f3de53e-cbb4-46dc-b469-00987f40c065','4915730878935','644443664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5224 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644443664\n\nYour shipment with the number 644443664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5224. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644443664\n\nBICARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('2f40df20-4741-4aea-8f7d-37631a45d9b6','905079358213','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin VOYAGE YEMEK ODASI ürünü 17 parça halinde RİXXE  adresinizden 09.09.2025 13:57:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('2f40e28a-5c76-4c72-9425-ab4c7e592982','905075277637','ERCAN VARSAK SSH  adlı müşterinizin 745282619 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('2f418aa7-9a99-4057-b256-ca8b5ec45418','49173496047','428107185 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4689 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428107185\n\nYour shipment with the number 428107185 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4689. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428107185\n\nBICARGO','2','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('2f42fc05-e45e-49fc-8ede-9dfb2c9da820','905073106101','Sayın yetkili; HATİCE GÜNGÖR adlı müşterinize 465181388 nolu gönderinizin sandalye ürünü 3 parça halinde EMEK SANDALYE adresinizden 27.08.2025 16:46:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('2f454cc7-df76-4602-9a20-f5c5ce1d300a','491632403021','976285905 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976285905\n\nYour shipment with the number 976285905 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976285905\n\nBICARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('2f494ce4-e0ee-4aa0-8d0e-c2b4c4531d60','436602251211','Sayın NURTEN TÜRK, 745220703 nolu gönderiniz 10463 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745220703\n\nDear NURTEN TÜRK, your shipment with 745220703 was delivered to you with the delivery code 10463. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745220703\n\n\nBICARGO','1','e8a249a9-b090-42b5-ba99-445005f2b553',NULL),
('2f498ca2-7d7e-46b1-b693-5fa04836a6c0','905449041398','SEYFETTİN adlı müşterinizin 703581635 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL),
('2f4ac02f-9626-4ac1-8659-abb5b5100285','33647271942','Sayın ONUR PEKŞEN, 478958320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478958320\n\nDear ONUR PEKŞEN, your shipment with 478958320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478958320\n\nBICARGO','1','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL),
('2f4c834d-d5a0-48ff-9c4f-a5d06ea905a5','905079047428','İBRAHİM AYIK  adlı müşterinizin 449700444 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','61867c22-c86f-44a9-a203-2b810c74f596',NULL),
('2f509970-2fa8-4331-920c-ae8deda91762','49176624400247','12752907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8217 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/12752907\n\nYour shipment with the number 12752907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8217. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/12752907\n\nBICARGO','2','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('2f50e64a-44e5-4a01-9212-1aaf50058a38','1111111111','Sayın DİE FABRİK OUTLET, 223317066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223317066\n\nDear DİE FABRİK OUTLET, your shipment with 223317066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223317066\n\nBICARGO','2','69ac6a84-035b-4ab3-b3f0-63c8136753f8',NULL),
('2f50f266-900c-4be9-af20-e06f63e6570a','905304259202','NİHAL KURU adlı müşterinizin 478380707 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('2f512068-2758-49e5-afc2-752a2dd0907c','905059175469','NADİR KURUKOL adlı müşterinizin 428819984 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('2f51ea3c-9e9c-4cc0-93aa-8666653bc26c','905336367828','ELİF GABEL  adlı müşterinizin 982536674 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('2f5b9ad9-c314-413e-bc8f-f328ef5e1526','5413112906','Sayın GAMZE ÖZDEMİR, 319645924 nolu gönderiniz 2053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319645924\n\nDear GAMZE ÖZDEMİR, your shipment with 319645924 was delivered to you with the delivery code 2053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319645924\n\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('2f5d9d59-d783-42ff-829a-99a3ecd94a17','905325000478','CENGİZ WAGNER adlı müşterinizin 412968518 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('2f5f3a1a-df1a-4fc9-ba66-fca37b0f3751','33685656718','478484020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478484020\n\nYour shipment with the number 478484020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478484020\n\nBICARGO','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('2f6312dd-bdeb-4c68-b056-edbb69da9313','905454259202','MAHMUT ÇELİK adlı müşterinizin 478370539 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('2f644f93-c123-4871-82ce-1c3393a3fc26','9054439559150','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160*200 BAZA ürünü 2 parça halinde Fatura adresinizden 22.10.2025 15:03:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('2f68e4dc-b9ad-4513-9754-423c0188cb36','905331602195','DERGHAM NAWEL  adlı müşterinizin 22145441 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('2f6a0813-c3f6-4527-8d36-79ddcc5d826d','905523438971','Sayın yetkili; HELİN ÖZDİL adlı müşterinize 896155892 nolu gönderinizin Köşe koltuk  ürünü 3 parça halinde Koltukçu ersin  adresinizden 01.10.2025 14:46:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('2f6e1c33-8786-4ebc-8bbe-c330b048f6eb','4915738754138','47888654 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47888654\n\nYour shipment with the number 47888654 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47888654\n\nBICARGO','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('2f7233c8-f103-4ce2-a691-d13ae766ee63','4369910288849','745411152 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2165 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745411152\n\nYour shipment with the number 745411152 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2165. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745411152\n\nBICARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('2f75c8b4-d1ed-45dd-93cf-b93a635543f2','4917673582903','Sayın BETÜL ÇELİK, 644334455 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644334455\n\nDear BETÜL ÇELİK, your shipment with 644334455 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644334455\n\nBICARGO','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('2f795410-c25d-4ab8-9dc8-97340a0d42b2','4915757299057','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('2f7c4a39-ce72-437b-b0bc-df336857bfec','905461661672','MELEK KAYMAZ(K) adlı müşterinizin 644547865 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('2f7f06f2-c540-4fff-968c-e45254b660ab','33644892137','Sayın MEHMET ÇANKAYA, 449136824 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449136824\n\nDear MEHMET ÇANKAYA, your shipment with 449136824 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449136824\n\nBICARGO','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('2f810f27-da8c-4bcb-a421-e1a3d2068f16','004917642060637','Sayın AŞKIN TUN, 127105973 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127105973\n\nDear AŞKIN TUN, your shipment with 127105973 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127105973\n\nBICARGO','2','9d26f3f5-1617-4627-a308-2aea49169455',NULL),
('2f853532-3eac-4ab6-91fc-6968d23f9154','32485363259','Sayın NUR SANDALCILAR, 517291063 nolu gönderiniz 10625 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517291063\n\nDear NUR SANDALCILAR, your shipment with 517291063 was delivered to you with the delivery code 10625. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517291063\n\n\nBICARGO','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('2f8aff7a-4250-45f1-9b75-54cbc48b11c7','905461661672','Sayın yetkili; MAHSUN ALDEMİR(K) adlı müşterinize 644593040 nolu gönderinizin TRAVERTEN SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 11.09.2025 13:30:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('2f8b5875-8d5e-4308-940c-3ac4ac940a62','4915256314885','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('2f8bfc30-7898-40e0-b5af-cb41d7ce497a','905069116877','GİZEM YILDIRIM adlı müşterinizin 817500904 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('2f8e973d-2486-45e5-8adc-fb2114819779','33783327120','Sayın BAHAR ORHAN, 478835180 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478835180\n\nDear BAHAR ORHAN, your shipment with 478835180 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478835180\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('2f8ef6cf-a233-4237-9915-2a2018789ab4','32490219325','Sayın MUSTAFA MÜEZZİNOĞLU, 428341956 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428341956\n\nDear MUSTAFA MÜEZZİNOĞLU, your shipment with 428341956 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428341956\n\nBICARGO','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('2f93044c-444b-47f0-a16a-284054cbae37','4915737520214','486724632 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4608 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486724632\n\nYour shipment with the number 486724632 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4608. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486724632\n\nBICARGO','1','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('2f982660-168f-4002-ba13-bc7011b20bb1','330750840793','98298396 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7572 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98298396\n\nYour shipment with the number 98298396 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7572. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/98298396\n\nBICARGO','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('2f9a5013-a82a-4df1-beb3-d638160f8f8d','905335708965','YATAK ODASI adlı müşterinizin 248143023 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL),
('2f9bf83f-3df5-44b4-a701-8d5b87fc8c31','436508346455','644145142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644145142\n\nYour shipment with the number 644145142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644145142\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('2f9e3fa4-8b76-4bbb-8de3-0c728e23600a','4915151400304','Sayın SALİM TEKE, 371884796 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371884796\n\nDear SALİM TEKE, your shipment with 371884796 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371884796\n\nBICARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('2f9efa4b-2dd9-45f6-99ab-12ad0dd0423c','33605631583','Sayın SEZAİ TUNÇ, 745850370 nolu gönderiniz 7179 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745850370\n\nDear SEZAİ TUNÇ, your shipment with 745850370 was delivered to you with the delivery code 7179. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745850370\n\n\nBICARGO','1','b384d0a2-c272-4375-a026-2cf2910078c9',NULL),
('2fa34e03-0b0e-4f08-84f2-bc8f6f78cb5c','905510396989','MUSTAFA NARİN adlı müşterinizin 319911664 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL),
('2fa6a0e6-d9ba-4ae2-84d9-28d9aaafae76','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223249369 nolu gönderisi 144 parça halinde yola çıkmıştır.','1','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL),
('2faa974d-1219-4c54-9fbb-c8549db1b9ea','905325998198','BURAK TÜRKEŞ adlı müşterinizin 614458088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1cea88c-608d-4453-b63a-81ba0b909940',NULL),
('2fab1c27-74e8-4a0c-a54e-405c4009c700','4915251454520','598986653 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5248 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598986653\n\nYour shipment with the number 598986653 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5248. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598986653\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('2fab5e7c-46e0-402f-a2d0-a2d2bb348686','33604050932','Sayın ÖZCAN ÇETİN, 614725757 nolu gönderiniz 5831 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614725757\n\nDear ÖZCAN ÇETİN, your shipment with 614725757 was delivered to you with the delivery code 5831. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614725757\n\n\nBICARGO','1','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL),
('2faec241-324d-4dfd-85ee-5a3c1e87ab74','11111111111111','Sayın AAAAAAAAA, 735211280 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735211280\n\nDear AAAAAAAAA, your shipment with 735211280 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735211280\n\nBICARGO','2','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL),
('2fb0eb72-1fc1-49c8-833b-4c004632049d','31651912496','428391947 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2517 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428391947\n\nYour shipment with the number 428391947 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2517. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428391947\n\nBICARGO','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('2fbb5b2a-ae97-43b1-9c0c-6753268065fd','33789462575','221859569 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8102 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221859569\n\nYour shipment with the number 221859569 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8102. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221859569\n\nBICARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('2fc19dc3-7064-402e-b8a6-e89f18351866','905517075149','CELİNE KARA adlı müşterinizin 478164511 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('2fc2290b-7507-4a2b-8705-3cff175f3844','491639052092','613108463 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10061 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613108463\n\nYour shipment with the number 613108463 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10061. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613108463\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('2fc47d0b-ea50-41e4-9bb3-9dd15dec97ad','32466169557','Sayın HAKAN ASLAN, 982858369 nolu gönderiniz 5084 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982858369\n\nDear HAKAN ASLAN, your shipment with 982858369 was delivered to you with the delivery code 5084. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982858369\n\n\nBICARGO','1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL),
('2fcbeaf2-b281-4143-908c-c2480dd1a4c0','905431026110','MERVE İÇEN adlı müşterinizin 351330330 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('2fd03587-fa84-4c3f-9a74-e5b552ea0a9d','32484855240','Sayın ŞÖFÖR MEHMET, 412395222 nolu gönderiniz 9485 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412395222\n\nDear ŞÖFÖR MEHMET, your shipment with 412395222 was delivered to you with the delivery code 9485. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412395222\n\n\nBICARGO','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('2fd8e674-b011-47c6-8a67-8e816032a3e6','905335708965','LAMİA BADAOUİ adlı müşterinizin 735389141 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL),
('2fdb870d-6b91-4550-ad7d-effd55d2c55d','905331602195','NURSELİ KÖSE  adlı müşterinizin 221285061 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('2fdc7c33-a6f0-4cd1-8597-1c1067b99b72','905421855834','MUAMMER SAYIN adlı müşterinizin 338822119 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('2fe1040c-893f-40a1-b300-bf6995b52f0b','905325998198','YILDIRIM  ASLAN  adlı müşterinizin 614766744 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('2fe40073-a333-4221-be5e-434829198bf7','905079358213','İBRAHİM BAĞCI adlı müşterinizin 745197344 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','a2d259a0-8a03-4763-951b-98fe714623ce',NULL),
('2fe421fb-4543-43b3-839d-62b19e392497','905352711900','AHMET AKAT adlı müşterinizin 817619747 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('2fe8a2ea-4fff-4090-8550-700eec15afc3','4915756416500','982592763 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5074 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982592763\n\nYour shipment with the number 982592763 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5074. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982592763\n\nBICARGO','1','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL),
('2feb9c06-22da-41d4-8a97-7c1f920070a0','905461661672','Sayın yetkili; MURAT BALTACI(K) adlı müşterinize 644762741 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MODO KOLTUK adresinizden 15.09.2025 13:42:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('2fec1cde-d5fe-41ca-b28d-0e705bd66af9','33753319527','Sayın MERYEMA TEKİN, 478431848 nolu gönderiniz 9167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478431848\n\nDear MERYEMA TEKİN, your shipment with 478431848 was delivered to you with the delivery code 9167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478431848\n\n\nBICARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('2ff08fb1-681e-4090-90e8-9aef2737b94a','33744884261','Sayın ERDEL SİBEL, 644968450 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644968450\n\nDear ERDEL SİBEL, your shipment with 644968450 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644968450\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('2ff812e9-5205-4032-8a98-93ea951d9f72','905075277637','GÜLİSTAN ÇİÇEK adlı müşterinizin 745276835 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL),
('2ff93eca-ccd4-4e61-a06c-c24fcb9704f1','4915753541736','Sayın OĞUZ ÖZÇELİK, 449203445 nolu gönderiniz 8754 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449203445\n\nDear OĞUZ ÖZÇELİK, your shipment with 449203445 was delivered to you with the delivery code 8754. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449203445\n\n\nBICARGO','1','110f0eb8-2914-4e85-b599-dc743891806b',NULL),
('2ffae45e-2d49-4b1b-b0a2-107904bda4aa','905465479064','ANTEP SOFRASI adlı müşterinizin 85814402 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','c660ccad-df7b-45ce-a388-95120ceea510',NULL),
('30006113-1c85-434e-9d36-bd3125501796','4334434234324324','412378459 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10668 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412378459\n\nYour shipment with the number 412378459 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10668. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412378459\n\nBICARGO','2','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL),
('300cb6af-be8e-4c7e-bd48-3ac830780395','905454259202','ÖZLEM RAMADAN adlı müşterinizin 478150977 nolu gönderisi 41 parça halinde yola çıkmıştır.','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('300ce225-5067-472a-afec-e2dfdf43f240','4915150865710','61378160 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1117 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61378160\n\nYour shipment with the number 61378160 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1117. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61378160\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('300d827c-c7e2-43ac-a1e1-8968c4b50a91','905335511664','Sayın yetkili; RECEP SÜRÜCÜ adlı müşterinize 371364319 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 22.10.2025 12:13:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7213cf8b-e2b3-4fcd-b9d6-789a0803cc16',NULL),
('30101280-7a1f-41fa-8c87-cd8d76f79a90','905350617509','FJOLLA VRENEZİ adlı müşterinizin 613853408 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('3017bd3c-73ae-48d3-b3a7-ffc277c93aec','5325000478','Sayın DEMLOG DEMLOG, 17.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8331173\nŞifre : 8331173\n			\nBİCARGO','1',NULL,'833e117f-aca3-4f6d-a963-d029ef9f8ddd'),
('30185eb2-582f-4569-a088-dbdabc4e98fb','4917645942929','Sayın ALEYNA KARAKUS, 613787861 nolu gönderiniz 4721 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613787861\n\nDear ALEYNA KARAKUS, your shipment with 613787861 was delivered to you with the delivery code 4721. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613787861\n\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('301c0b80-e560-486e-baca-a3633116f8b5','11111111111','Sayın SERHAT  KYNSL, 07.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8356344\nŞifre : 8356344\n			\nBİCARGO','2',NULL,'8d3faf5e-e634-4068-8b6f-c99fd407ca66'),
('301f5561-3496-499b-b4b9-f080527c857e','491749320466','Sayın EMEL YILDIZ, 478644533 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478644533\n\nDear EMEL YILDIZ, your shipment with 478644533 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478644533\n\nBICARGO','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('302525e8-870f-4846-aaec-392219e04e91','00493056821467','Sayın EUROMAT, 735293129 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735293129\n\nDear EUROMAT, your shipment with 735293129 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735293129\n\nBICARGO','2','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL),
('302db8e7-165c-4801-9ccd-f2c9a9d3cf0b','905454259202','Sayın yetkili; BURCU GÖKÇE adlı müşterinize 478559134 nolu gönderinizin orta sehpa ikili ürünü 2 parça halinde Fatura adresinizden 13.03.2025 16:32:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('302ee8e1-2b91-467c-9af3-56e841fad5f7','905517075149','Sayın yetkili; FARUK YÜCEL adlı müşterinize 478867058 nolu gönderinizin Mobilya ürünü 11 parça halinde RİXXE adresinizden 26.08.2025 11:06:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('302f9ec7-f071-449b-b16b-1cb821ff9b77','905451571652','ZEYNEP KÜÇÜKBIYIK adlı müşterinizin 531450758 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('30399c37-7749-42c2-8eaa-747853895fa1','905075277637','PERİHAN GÜNAY adlı müşterinizin 745770556 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('3040adeb-d09f-426a-8d1d-e411479f2537','491727832300','Sayın IVANA ELİAS, 437426295 nolu gönderiniz 10844 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437426295\n\nDear IVANA ELİAS, your shipment with 437426295 was delivered to you with the delivery code 10844. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437426295\n\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('30431f02-59a6-4a7b-81f5-0f8dc12a254c','4915221698583','449394658 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1248 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449394658\n\nYour shipment with the number 449394658 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1248. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449394658\n\nBICARGO','1','6a397517-cdaf-4836-a678-f168177b94a2',NULL),
('304b4c32-f562-4bd9-b951-79da827d66c2','905335708965','MELİKE KOÇ adlı müşterinizin 735931871 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL),
('304ef2dc-4f14-4a39-b9c6-1dc2166cdbc1','33633441072','Sayın SERDAR DÖNMEZ, 734447528 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734447528\n\nDear SERDAR DÖNMEZ, your shipment with 734447528 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734447528\n\nBICARGO','1',NULL,NULL),
('304fc05d-5209-4d1e-9ea5-5f1a09edaa3a','4915560835617','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('30539223-a927-4cf7-9bee-1c55725562ea','905335708965','MEHMET DORUM adlı müşterinizin 248526655 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL),
('30552b2f-90c2-4d06-8f2d-176e43c77b99','31611299714','Sayın DİLAN ÜNVER, 437584936 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437584936\n\nDear DİLAN ÜNVER, your shipment with 437584936 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437584936\n\nBICARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('3057d50b-f0c2-4aed-a8ce-1f7d4552ce2a','33662092706','501167444 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501167444\n\nYour shipment with the number 501167444 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501167444\n\nBICARGO','1','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL),
('30619a2f-9ede-487a-b37b-ec82bbf3bf79','905349208933','ZEYNEP KORKMAZ adlı müşterinizin 127659069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('306558b7-683a-480f-9df1-e062d58d87f4','905313340045','MARİNE NETO adlı müşterinizin 43720744 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('30660247-13cf-4944-96d0-b1f7159eddc6','436605152000','43714618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43714618\n\nYour shipment with the number 43714618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43714618\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('30695325-29dc-4d11-a78f-867263817332','33652632895','644975430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7221 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644975430\n\nYour shipment with the number 644975430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7221. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644975430\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('306a0aeb-6384-4ae6-8c08-77cee09923fe','436644579917','Sayın ABBAS ARSLAN, 278440694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278440694\n\nDear ABBAS ARSLAN, your shipment with 278440694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/278440694\n\nBICARGO','1','87226e30-fe1d-481b-8c10-e309459138ca',NULL),
('307637bb-da55-4e4f-a0a3-7b094527ffc9','32476391369','Sayın BATTAL, 412524404 nolu gönderiniz 8959 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412524404\n\nDear BATTAL, your shipment with 412524404 was delivered to you with the delivery code 8959. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412524404\n\n\nBICARGO','1',NULL,NULL),
('30773c11-972f-4887-bba6-d61ecabaffd8','905075277637','HANİFE YILMAZ adlı müşterinizin 745252636 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('3077ca34-863e-41f5-b4aa-693ad659a4b0','491773638963','Sayın ZAFER SARIDAŞ(K), 644717952 nolu gönderiniz 8051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644717952\n\nDear ZAFER SARIDAŞ(K), your shipment with 644717952 was delivered to you with the delivery code 8051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644717952\n\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('30789d14-7c75-4a2e-879d-4ed425374f9b','4917624885131','Sayın BURCU ASLAN, 598220619 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598220619\n\nDear BURCU ASLAN, your shipment with 598220619 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598220619\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('3079cc96-0a87-46fa-9732-38ae74138254','491639801426','107623614 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4027 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107623614\n\nYour shipment with the number 107623614 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4027. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/107623614\n\nBICARGO','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('307e7fb2-1daf-45ab-bb72-ca9bfa2e17b9','905079358213','FATMA SARI adlı müşterinizin 745619301 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('307ece96-90c5-4def-9a55-6a615c7bd37c','33783457448','478284503 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478284503\n\nYour shipment with the number 478284503 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478284503\n\nBICARGO','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('30852320-3069-4978-bac6-f4adeafc4913','905301592882','ÖZKAN ÖZKOŞAR		 adlı müşterinizin 910482480 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('308d507d-165d-4d2c-b726-cdfb425d4ef0','905331602195','EMİLY RAMİREZ adlı müşterinizin 221897784 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('30944c76-df80-4444-9308-0c55db3957c4','905442774505','EBRU PAYAS adlı müşterinizin 657408169 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('309736d6-43eb-4234-b3b9-8de1be0062f2','31684469645','478800752 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7109 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478800752\n\nYour shipment with the number 478800752 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7109. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478800752\n\nBICARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('3097f826-f97d-44a3-83df-b78a77280dc0','33669711120','Sayın SEMİH ELMAS, 478173801 nolu gönderiniz 10422 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478173801\n\nDear SEMİH ELMAS, your shipment with 478173801 was delivered to you with the delivery code 10422. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478173801\n\n\nBICARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('3097fd54-b654-4ba0-a7a0-6287df37c4ca','905325998198','İBRAHİM AKÇORA adlı müşterinizin 614289770 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b413a505-b0a4-4081-803d-a0776c7e84fc',NULL),
('309c9ccd-ae66-4401-9887-571fc398ec5d',NULL,'Sayın yetkili; DONYA AL HAİDARİ adlı müşterinize 081411095 nolu gönderinizin  AURA  SCHLAFZIMMER ürünü 21 parça halinde Fatura adresinizden 14.02.2025 10:32:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('309eddd5-c892-4a2c-a7a3-49ee7b8e22ea','5325000478','Sayın MEHMET KARAMAN, 31.08.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9055124\nŞifre : 9055124\n			\nBİCARGO','1',NULL,'f9e05dba-e512-4ef5-b7be-2c41d844b6d9'),
('309f1634-c2f8-4db1-82ec-a22b84e518a8','905079047428','SEVDA ÇAYLAK adlı müşterinizin 449475255 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','887939c6-c572-4048-9ec2-13b2ba75c706',NULL),
('30a0d88d-a243-4348-893e-4959a41c9044','4917685433742','64413417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64413417\n\nYour shipment with the number 64413417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64413417\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('30a0ea61-492a-402a-8fbf-d90845a73900','491784897423','896998229 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3422 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896998229\n\nYour shipment with the number 896998229 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3422. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896998229\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('30a11045-34bd-4bdf-a4bc-1c82ad7a4bbf','4915732408373','976369139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7366 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976369139\n\nYour shipment with the number 976369139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7366. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976369139\n\nBICARGO','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('30a23e62-09ae-4348-bbc2-c13ec672e373','4915234223362','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('30a9b80c-9067-47f4-8b9c-078cbd864049','33607954368','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('30aa9c31-4623-4aa9-a618-205fd46562fc','4915147201286','371820680 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3264 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820680\n\nYour shipment with the number 371820680 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3264. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371820680\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('30ac53eb-15e7-4cae-8d1c-60560c9d734a','905336367828','RODRİGUES AMİNA adlı müşterinizin 982542299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL),
('30b3021c-3b2a-449f-8de4-fc5d0f3e3bc9','33629412067','319458159 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1565 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319458159\n\nYour shipment with the number 319458159 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1565. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319458159\n\nBICARGO','1','29175f89-ad14-442c-b1fb-71c9053ba227',NULL),
('30b56063-aa89-439e-86a6-da67eff6e258','4917624194526','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('30b6a221-88bb-44c2-bf4d-2f3c26043546','905078062550','Sayın yetkili; METE AKGÜL adlı müşterinize 598138099 nolu gönderinizin BAZA BAŞLIK ürünü 6 parça halinde ALBESSA HOME adresinizden 08.04.2025 16:41:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8425d91-016d-4937-970a-ecc46c5126d7',NULL),
('30b799c4-3936-4af6-8c11-3620f4957368','905349208933','RÜVEYDA ŞAHİN adlı müşterinizin 127150146 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('30b86c71-0ae2-468a-ad70-ce25b69a5f76','491795209461','644971564 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4947 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644971564\n\nYour shipment with the number 644971564 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4947. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644971564\n\nBICARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('30bc399d-57a4-4650-8edf-fd72cae16702','905331602195','Sayın yetkili; NURGÜL ÖZER adlı müşterinize 221191139 nolu gönderinizin 220x300 köşe koltuk ürünü 4 parça halinde 3ardeco koltuk adresinizden 03.09.2025 14:21:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('30bcfe8f-9399-4622-9732-71ba081973a8','4917682051476','371785400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8975 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371785400\n\nYour shipment with the number 371785400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8975. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371785400\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('30bec891-9e27-4cc9-9834-778ada1402d6','905461661672','ÖMER YILMAZ adlı müşterinizin 644763473 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('30ca33eb-e890-4c90-b148-d6669cec86b2','5325000478','Sayın AAAA BBBBB, 27.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6329080\nŞifre : 6329080\n			\nBİCARGO','1',NULL,'6bda3b29-0b80-4c3d-be9a-90018628d0e3'),
('30cb8962-b32c-47a3-b685-b986cdfa910c','41766507323','Sayın KISMET URDOĞAN, 478449275 nolu gönderiniz 2774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478449275\n\nDear KISMET URDOĞAN, your shipment with 478449275 was delivered to you with the delivery code 2774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478449275\n\n\nBICARGO','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('30cd0270-bf24-4377-86d3-0a835a681db5','491727322843','613661947 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613661947\n\nYour shipment with the number 613661947 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613661947\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('30d38854-9db1-4086-b826-794bbd91eb2d','491607764360','505129515 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505129515\n\nYour shipment with the number 505129515 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505129515\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('30d6964b-6860-4deb-9a47-a63f5cf434f4','905075277637','FURKAN BAŞTEPE adlı müşterinizin 745778561 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL),
('30d6c7b1-f1e8-478b-836f-ed8b575926fb','905325998198','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND BAZA İÇ SAĞ VE SOL YAN ALINACAK ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('30d94642-4f91-4a79-8c01-979917af069a','905535521975','İLAYDA FİDAN  adlı müşterinizin 019868401 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('30da2694-b926-490c-ae2e-de7dcc44321c','4917624718439','Sayın SEYHAN GÜNDÜZ, 598148104 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598148104\n\nDear SEYHAN GÜNDÜZ, your shipment with 598148104 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598148104\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('30dbb205-0e67-4a57-a9c3-b822bfd0ae43','905534084469','Sayın yetkili; BURCU ŞİMŞEK adlı müşterinize 12752907 nolu gönderinizin EFES KÖŞE TAKIMI ürünü 4 parça halinde KATRE KOLTUK adresinizden 22.01.2025 10:27:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('30dd321b-1def-4d28-8228-f2ab6671de61','905075277637','MEHMET KIRMALI adlı müşterinizin 745471905 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('30e2fa00-d009-483e-9ed3-5faf39cdb1b9','4917687922868','644584641 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10343 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644584641\n\nYour shipment with the number 644584641 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10343. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644584641\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('30e4d774-d01e-4236-9ade-a8ea14567a2d','4917623256596','Sayın MUSTAFA ÜNLÜSOY, 478318204 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478318204\n\nDear MUSTAFA ÜNLÜSOY, your shipment with 478318204 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478318204\n\nBICARGO','1','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL),
('30e4f393-3608-44fd-94cd-350786351fbb','905461661672','ALİ SARI adlı müşterinizin 64441153 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('30e69f34-683f-4306-9423-980f7ae3da71','905079358213','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin MALDİV YEMEK ODASI  ürünü 8 parça halinde ACCA adresinizden 17.10.2025 15:02:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('30e6bd09-cfcc-4031-b46b-3d024d64e7b7','905412867123','Sayın HÜSEYİN YILMAZ, 30.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0060940\nŞifre : 0060940\n			\nBİCARGO','1',NULL,'006dce0f-a9da-40ab-9fa7-5cc3c92118ec'),
('30e72f80-7df7-43cb-abc0-7962cc256b2d','33660766848','982314530 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9481 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982314530\n\nYour shipment with the number 982314530 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9481. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982314530\n\nBICARGO','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('30e89891-9641-4c43-94b2-cc22e2083fb4','905313340045','Sayın yetkili; DİLAN ÜNVER adlı müşterinize 437584936 nolu gönderinizin MASA ürünü 2 parça halinde matte adresinizden 28.07.2025 10:48:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('30f20f0f-eaee-4381-af3d-8cc171bbf3b0','491781529585','371804669 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3063 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371804669\n\nYour shipment with the number 371804669 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3063. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371804669\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('30f3dbd2-7008-4799-b4f5-da116e0fccf3','12212211111','412441586 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1706 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412441586\n\nYour shipment with the number 412441586 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1706. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412441586\n\nBICARGO','2','2754ec7f-f526-44d3-8178-29280a48b322',NULL),
('30f455a1-630b-4568-87b5-fecf6c6fe1a3','31611299714','437584936 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9514 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437584936\n\nYour shipment with the number 437584936 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9514. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437584936\n\nBICARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('30fa46c3-a6e0-454e-a782-b72955f9b326','33699946659','478570794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7330 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478570794\n\nYour shipment with the number 478570794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7330. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478570794\n\nBICARGO','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('30fd6c0d-168a-4b8f-afa1-3763a20c3093','436766461961','Sayın HAFİZE BALİ, 371684650 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371684650\n\nDear HAFİZE BALİ, your shipment with 371684650 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371684650\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('30fe8b98-363f-4a60-a391-e76158278951','905325000478','LOWENSTERN adlı müşterinizin 412990147 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','def82a96-8956-42bc-885f-988dfa22f789',NULL),
('31011e18-4f0e-4429-a28d-d0dd74e59cac','4917661739027','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('31063117-cd00-4535-85b6-39a54614a5b8','905313340045','Sayın yetkili; MİYASE AYDIN adlı müşterinize 437945654 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 13.08.2025 11:39:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('310af588-ad80-41fd-98bb-78bb2a32c070','905301592882','FETHİ YÜCEL  adlı müşterinizin 910728512 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','4620449d-5bd3-49d6-816f-684d639a3e44',NULL),
('310da1e3-bbf7-46b4-b4bb-68d2a422fc5c','31644100863','Sayın AZİME YETİM, 221752631 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221752631\n\nDear AZİME YETİM, your shipment with 221752631 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221752631\n\nBICARGO','2','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('310ee17a-6d2d-4ab2-b905-b7cac334423c','491736564566','Sayın ERHAN ALP, 808538086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808538086\n\nDear ERHAN ALP, your shipment with 808538086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808538086\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('3110efe4-200a-4f26-b7f7-3e4948af162a','905335708965','ŞÜKRÜ ÇABUK adlı müşterinizin 248240352 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL),
('3112633b-211c-4229-9603-306e456308de','905079358213','Sayın yetkili; HÜLYA KORKMAZ adlı müşterinize 745724851 nolu gönderinizin BONNY KÖŞE TAKIMI ürünü 5 parça halinde Fatura adresinizden 23.03.2025 21:05:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('3116c53d-e89f-4464-b886-c320549c6c9c','33659806202','Sayın SEVİLAY BÖLER, 745824914 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745824914\n\nDear SEVİLAY BÖLER, your shipment with 745824914 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745824914\n\nBICARGO','1','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL),
('3116e61e-73d5-465b-94ac-0e7cd30b945b','491622711992','Sayın HATİCE BOZ, 371441090 nolu gönderiniz 3389 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371441090\n\nDear HATİCE BOZ, your shipment with 371441090 was delivered to you with the delivery code 3389. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371441090\n\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('311badee-53e4-4673-b3f9-47dad4ca1389','4915906664291','Sayın GASİ MUSA, 613262202 nolu gönderiniz 7006 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613262202\n\nDear GASİ MUSA, your shipment with 613262202 was delivered to you with the delivery code 7006. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613262202\n\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('311c00a3-3130-442b-8365-a5452b12aa51','33695487500','Sayın SADIK BEYSİR, 517110811 nolu gönderiniz 8928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517110811\n\nDear SADIK BEYSİR, your shipment with 517110811 was delivered to you with the delivery code 8928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517110811\n\n\nBICARGO','1','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL),
('311ece22-585f-40d4-ad85-42e80a3346ce','905335511664','Sayın yetkili; SAHİN DİNÇ adlı müşterinize 371514006 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 16.07.2025 16:21:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('3120342e-6a81-4371-b999-ab85fc7ea941','905454259202','ÖZLEM RECEP ÇANAK adlı müşterinizin 478966296 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('3122cd7a-f4e7-4d46-ae79-563dbdd0d8ae','905075277637','HAKAN CANBAY adlı müşterinizin 74565941 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('312459ec-1468-43cc-81dc-c817cf55cb3f','4915750608145','Sayın MUHAMMED ALİ TÜMKAYA, 64455982 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64455982\n\nDear MUHAMMED ALİ TÜMKAYA, your shipment with 64455982 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64455982\n\nBICARGO','2','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('31340dcc-384a-4975-935d-b8ea70fd8582','905325000478','ALPEREN URHANOĞLU adlı müşterinizin 412366586 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL),
('3134285a-f10a-488d-9769-a08070d3b77d','4915147542838','Sayın DERYA GÜLLER, 449627061 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449627061\n\nDear DERYA GÜLLER, your shipment with 449627061 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449627061\n\nBICARGO','1','2bc13cda-c525-42a2-a315-a0390ae06337',NULL),
('31343ae3-7f28-47e1-92cd-8770ba7916c5','905331602195','Sayın yetkili; NECMİYE AMET adlı müşterinize 221801165 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 23.09.2025 16:03:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('3149ce63-a3a7-4e0e-873f-e66d9cca2e3c','33620174742','Sayın OMARİ EMAL , 982726615 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982726615\n\nDear OMARİ EMAL , your shipment with 982726615 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982726615\n\nBICARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('314ea37b-6b52-4c2c-93a8-a83d1cad8a75','4917684484965','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('31524bfe-1116-44fb-ac5f-48e876c23649','905331602195','Sayın yetkili; ÜLKÜ ÖZTÜRK adlı müşterinize 221943840 nolu gönderinizin BALAT SANDALYE  ürünü 4 parça halinde ALP SANDALYE adresinizden 02.01.2025 12:41:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('3153c84e-32e8-407d-9664-7262da981747','33652263178','Sayın TBATOU SELMA , 221649442 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221649442\n\nDear TBATOU SELMA , your shipment with 221649442 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221649442\n\nBICARGO','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('31564a64-e927-49b5-877a-02eb4445e031','905336367828','MALHA MUHAMMED adlı müşterinizin 982873637 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL),
('315674a5-981e-4402-b919-7df5152c0d3d','905304267046','HASAN DOYRAN adlı müşterinizin 454880224 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL),
('31593e04-2052-4870-a3b4-a8522a3ed2d6','4917671762583','Sayın AYHAN KILIÇ, 614134006 nolu gönderiniz 6369 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614134006\n\nDear AYHAN KILIÇ, your shipment with 614134006 was delivered to you with the delivery code 6369. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614134006\n\n\nBICARGO','1','93cfee64-4853-4395-af0b-9caa4355f18f',NULL),
('316327f4-8f38-4c22-ad6e-acd17c6b3c2a','316427445921','478836905 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6677 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478836905\n\nYour shipment with the number 478836905 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6677. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478836905\n\nBICARGO','2','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL),
('31653cfa-f823-461b-87fd-4d09d5a239ea','905364752848','GALATA  adlı müşterinizin 231717770 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL),
('31693abb-b995-4c2b-ab3a-c414b55f3cd7','33787053460','127395599 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9254 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127395599\n\nYour shipment with the number 127395599 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9254. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127395599\n\nBICARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('3169d58f-eedf-4cbe-9019-beacedde198c','905304259202','KIYMET KARA adlı müşterinizin 478606230 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('317d420d-c351-4ee8-860b-a4ad93d827cf','905548899130','118176933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3225 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/118176933\n\nYour shipment with the number 118176933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3225. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/118176933\n\nBICARGO','1','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL),
('317d71e5-74ac-4852-889e-464ca199dc74','33680380408','Sayın SEZER DOĞAN, 338474620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338474620\n\nDear SEZER DOĞAN, your shipment with 338474620 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338474620\n\nBICARGO','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('317e31c5-6977-4bf4-9a17-ee788117d088','905461661672','MUHAMMET KÖSEDAĞ(K) adlı müşterinizin 644590959 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('317eea02-e898-4a65-acd5-a5cf01d5845e','491783053622','Sayın BİRCAN ŞAHİN, 91074356 nolu gönderiniz 4790 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91074356\n\nDear BİRCAN ŞAHİN, your shipment with 91074356 was delivered to you with the delivery code 4790. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91074356\n\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('317feceb-02f3-4ff8-b0d0-c14515264023','4917680830421','Sayın BİRSEN BALIM, 74521183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74521183\n\nDear BİRSEN BALIM, your shipment with 74521183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74521183\n\nBICARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('3181d897-3201-4b98-b192-bf3430654836','33626936541','Sayın SOUQİ İMANE, 976185606 nolu gönderiniz 6297 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976185606\n\nDear SOUQİ İMANE, your shipment with 976185606 was delivered to you with the delivery code 6297. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976185606\n\n\nBICARGO','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('3185291b-5e9f-4e47-879c-7d9641a5003b','905313340045','Sayın yetkili; CEMAL İBRAHİMBAŞ adlı müşterinize 437222135 nolu gönderinizin sandalye ürünü 6 parça halinde mfour sandalye adresinizden 01.07.2025 12:20:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('31857f87-08d1-41b3-9953-a9647714538f','905054335859','MUSA EMEK adlı müşterinizin 501622058 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL),
('3187a47a-fe4f-48dc-bf26-e13d433375e3','306978038133','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('3189ce4a-b974-463c-97c6-cd78e3bbef87','49737863155','Sayın MOHAMMED ASİF KARİMİ, 982501931 nolu gönderiniz 8575 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982501931\n\nDear MOHAMMED ASİF KARİMİ, your shipment with 982501931 was delivered to you with the delivery code 8575. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982501931\n\n\nBICARGO','2','b5c1db79-0154-4eeb-bcc8-d0daa11527b1',NULL),
('318f79e1-a10c-4097-8af4-471cfe95aa2f','1111111111','412970240 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1278 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412970240\n\nYour shipment with the number 412970240 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1278. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412970240\n\nBICARGO','2','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL),
('318f7c11-6f83-4473-ae2e-1d02bdf00032','4917655059841','Sayın MOHAMED AHDAGO, 902332542 nolu gönderiniz 9798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/902332542\n\nDear MOHAMED AHDAGO, your shipment with 902332542 was delivered to you with the delivery code 9798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/902332542\n\n\nBICARGO','1','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL),
('3191be8d-1bfe-41b1-b5e8-cc215de689bc','905059175469','SİBEL ÇINAR adlı müşterinizin 428511580 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL),
('31923c25-ec48-4d7b-b840-0f7db40dcd32','31628730191','517279482 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8351 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517279482\n\nYour shipment with the number 517279482 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8351. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517279482\n\nBICARGO','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('31a04161-55ec-4167-9fce-3e3a5bba7f09','1636363626363636','Sayın İSMET LEVENT, 151258703 nolu gönderiniz 1821 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/151258703\n\nDear İSMET LEVENT, your shipment with 151258703 was delivered to you with the delivery code 1821. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/151258703\n\n\nBICARGO','2','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('31b3eb41-4543-4f7e-819b-43ae4cab867a','33664842794','Sayın ASHLEY BLANCO RODRİGEZ, 221417545 nolu gönderiniz 9007 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221417545\n\nDear ASHLEY BLANCO RODRİGEZ, your shipment with 221417545 was delivered to you with the delivery code 9007. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221417545\n\n\nBICARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('31b424aa-8ae9-4a36-b4dc-297db2180028','491625403964','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('31ca8756-b05b-4c3c-8ffa-69bd2bf8d376','4917677697727','Sayın HÜDAYİ HARMANCI, 64422113 nolu gönderiniz 5376 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64422113\n\nDear HÜDAYİ HARMANCI, your shipment with 64422113 was delivered to you with the delivery code 5376. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64422113\n\n\nBICARGO','2','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('31cdf378-24eb-4f08-8f41-0e2dd0314e51','905510396989','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA ORTA SEHPA / YAN SEHPA ürünü 4 parça halinde ROİS adresinizden 22.09.2025 14:18:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('31d265e8-bf8b-4370-bc0c-91e1492240f8','436604046200','Sayın YILDIZ DEMİR, 449715358 nolu gönderiniz 8377 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449715358\n\nDear YILDIZ DEMİR, your shipment with 449715358 was delivered to you with the delivery code 8377. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449715358\n\n\nBICARGO','1','fdbd5255-796f-4278-a5b0-0661f2660929',NULL),
('31d69f2f-53a6-4f66-b7f5-cefb92cdab2e','436607290700','Sayın AYŞE ÖZSOY, 745132796 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745132796\n\nDear AYŞE ÖZSOY, your shipment with 745132796 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745132796\n\nBICARGO','1','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL),
('31da22bf-974a-4e7a-ac96-39b2e2d9edbb','905335708965','MURAT adlı müşterinizin 73547719 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL),
('31e2d210-8ccf-4b66-ad6b-e66ca0147065','905539740010','Sayın yetkili; FERHAT SANUÇ HOLLANDA SSH adlı müşterinize 011131883 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde ayaz masa sandalye  adresinizden 18.09.2025 15:46:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('31e92be8-f770-4fe6-b73c-7ba72cec6859','4917645275694','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('31e96e7e-c5a2-4470-84f9-271589b8ac07','905517075149','Sayın yetkili; BÜNYAMİN ILIKSOY adlı müşterinize 478668622 nolu gönderinizin atilla polat puf ve 2 adet amortisör ürünü 2 parça halinde GARDEROBE adresinizden 25.09.2025 18:32:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('31eb3fea-84b2-40c6-81de-035361f67695','905313340045','DİANA HUSSEİN adlı müşterinizin 437917777 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('31ed34f9-274f-41b6-a880-497afda181f5','31640251699','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('31ef4008-29eb-43a4-83c8-887dd30471cd','905337836884','Sayın yetkili; SAMAR OSMAN adlı müşterinize 140284101 nolu gönderinizin Karyola ve halı ürünü 5 parça halinde Karyolacı Ali adresinizden 16.10.2025 11:00:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a185dc3-3990-4ba8-b87e-5f39ac4b1643',NULL),
('31eff721-0f97-4acb-b15e-112380814cc9','905079358213','DELİL ÖZTÜRK SSH adlı müşterinizin 745786401 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('31f35013-b99b-4422-ad4f-b2eaf2756379','905451571652','Sayın yetkili; CEM TOPYÜREK adlı müşterinize 53111592 nolu gönderinizin Sandalye ürünü 3 parça halinde M four sandalye adresinizden 05.08.2025 12:53:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('31f5b96d-e7c0-43d9-a1c5-516aa1d3c9cc','491737710164','Sayın HASAN PİCKEL, 223210999 nolu gönderiniz 7737 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223210999\n\nDear HASAN PİCKEL, your shipment with 223210999 was delivered to you with the delivery code 7737. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223210999\n\n\nBICARGO','1','04757da4-5689-4b28-8662-727fabf44027',NULL),
('31f5f008-a583-4878-8ba4-cfcc1eb6fb82','491603319879','Sayın ALEYNA, 817395462 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817395462\n\nDear ALEYNA, your shipment with 817395462 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817395462\n\nBICARGO','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('31f8459a-fd74-4b25-95d3-e71c0f0188dd','905354141537','Sayın YUSUF BEY , 830611219 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/830611219\n\nDear YUSUF BEY , your shipment with 830611219 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/830611219\n\nBICARGO','1','5e333a30-7986-4a32-be40-ecb91b558892',NULL),
('31f8f09b-6aa8-4f87-b0ed-7ef4e7f6c5d3','49163348754','Sayın REMZİYE UNAT, 976898541 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976898541\n\nDear REMZİYE UNAT, your shipment with 976898541 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976898541\n\nBICARGO','2','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL),
('31fbc212-d73f-4d67-8644-e8e347b9f286','905079047428','DIANA ÇELİKER adlı müşterinizin 449974141 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('31fcd04a-a123-467c-8e0b-a0833c8aba6c','905318109098','ELİF HANIM  adlı müşterinizin 455685955 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL),
('32030c54-1634-4687-9431-ed0e69d1229b','905461661672','NEGİN EHSANİFARD adlı müşterinizin 644206771 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('32072048-c767-49a3-9f3d-b22785d5a976','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS 2 KAPILI ÇEKMECELİ DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('3209c800-df00-48e2-8ae0-0cf6be15790b','905331602195','SELCAN BOZKURT  adlı müşterinizin 221118460 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('320df188-9497-4da4-a4e8-900fddcc96c7','905461661672','Sayın yetkili; ZEKİYE TOPATAN adlı müşterinize 644877146 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde LENTE HOME adresinizden 11.03.2025 12:19:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('320f4fb8-42f8-4bc9-beee-67928690421b','905331602195','Sayın yetkili; JASSEY COLİNE adlı müşterinize 221190454 nolu gönderinizin 90x150-190 açılır traverten masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:40:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('32119fef-eaba-4d33-9e6d-7b4221e3e9c5','905355928266','HÜSEYİN ÖZGÜR adlı müşterinizin 412903351 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL),
('3217ab95-03b1-448a-95d9-0a0dd397ae0b','4917670381209','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('32180a3e-7c01-487a-bb08-1a801b8e48da','491736564566','808538086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808538086\n\nYour shipment with the number 808538086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808538086\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('321fa0cc-65e0-450c-87b3-dbe59e745098','32470652077','Sayın SEYFETTİN, 703183067 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/703183067\n\nDear SEYFETTİN, your shipment with 703183067 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/703183067\n\nBICARGO','1','90273c80-e292-4a76-8be5-a4c812e9f569',NULL),
('32265a8f-143c-488b-b5d1-5dd2b97782e4','4369911337727','Sayın MEHMET DAĞDEVİREN, 745485271 nolu gönderiniz 4227 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745485271\n\nDear MEHMET DAĞDEVİREN, your shipment with 745485271 was delivered to you with the delivery code 4227. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745485271\n\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('32291eb2-2b16-435d-a933-ba8a5318f32e','00491520424249','Sayın SUAT, 248103321 nolu gönderiniz 8905 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248103321\n\nDear SUAT, your shipment with 248103321 was delivered to you with the delivery code 8905. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248103321\n\n\nBICARGO','2','791e33b7-8896-46f8-95f8-717ff7671574',NULL),
('323a8608-32d4-42aa-9691-a647ccae0b75','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin SANDALYE ürünü 4 parça halinde Fatura adresinizden 24.06.2025 17:54:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('323dedf3-f554-4137-84d9-eeb5709e9f19','491716168674','Sayın YUSA ELLİALTI, 808427332 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808427332\n\nDear YUSA ELLİALTI, your shipment with 808427332 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808427332\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('323ef594-2a9c-42fa-a720-af7f3382b3a3','905451571652','Sayın yetkili; MEİSSA AL KHALED adlı müşterinize 531480968 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde Efe koltuk adresinizden 03.09.2025 14:59:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('323f59f9-f76d-4069-a487-650b6bf094ae','4917664852334','Sayın GÜL KAYAS ARSLANMUGÜL, 478188178 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478188178\n\nDear GÜL KAYAS ARSLANMUGÜL, your shipment with 478188178 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478188178\n\nBICARGO','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('32435c19-2e8e-48e7-b857-7826571d5485','41763247775','982629756 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982629756\n\nYour shipment with the number 982629756 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982629756\n\nBICARGO','1','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL),
('324babaf-2e52-4a63-98be-0727102d4379','4916097966652','910950688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910950688\n\nYour shipment with the number 910950688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910950688\n\nBICARGO','1','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL),
('324d4039-8e93-4b6b-8bac-d6c571e20369','33767355660','437400305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7310 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437400305\n\nYour shipment with the number 437400305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7310. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437400305\n\nBICARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('324f59b6-2f0b-441f-9fd5-26beb11d1f8c','905454259202','NAMIK KAYGIN adlı müşterinizin 478142620 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('32517154-01c8-49ce-ad07-4b43908fc636','905335511664','HARUN ŞAHİN adlı müşterinizin 371421349 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('3256578f-8d0c-4929-9c5e-471cb22ba81e','491789377871','Sayın FATMA İSAOĞLU, 449557088 nolu gönderiniz 8766 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449557088\n\nDear FATMA İSAOĞLU, your shipment with 449557088 was delivered to you with the delivery code 8766. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449557088\n\n\nBICARGO','1','084daa7f-3636-427c-9862-03f8214bc1f5',NULL),
('32572d66-dace-4257-9951-b1dbe710056d','4917671209008','Sayın SERCAN KUCUR, 437626008 nolu gönderiniz 3332 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437626008\n\nDear SERCAN KUCUR, your shipment with 437626008 was delivered to you with the delivery code 3332. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437626008\n\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('3257c03f-72cd-44e6-aafd-3813d1645f1a','41798807630','Sayın AFERDİTA UKSHİNAS, 31912550 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31912550\n\nDear AFERDİTA UKSHİNAS, your shipment with 31912550 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31912550\n\nBICARGO','1','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL),
('325892ee-8216-4c35-832d-ac510e1bce33','905453570043','Sayın ABDULLAH ÇELİK, 745714095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745714095\n\nDear ABDULLAH ÇELİK, your shipment with 745714095 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745714095\n\nBICARGO','1',NULL,NULL),
('325d93d9-a64e-42be-abfd-29c4e9d92acf','905075277637','ZİYA ALTIN adlı müşterinizin 745390643 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL),
('3260aa5b-08ff-489d-b3ce-763571ae73e5','491782611540','644523362 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7194 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644523362\n\nYour shipment with the number 644523362 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7194. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644523362\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('3266a9b7-855f-4608-9206-a8eff9ba2356','436603406293','Sayın yetkili; MARTİN MARİNKOVİC adlı müşterinize 675885408 nolu gönderinizin  SANDALYE ürünü 3 parça halinde MASAMI adresinizden 08.09.2025 17:47:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('3266d7ea-a271-474c-959f-9fec0ca997a6','491795060758','Sayın DÖNDÜ ESER, 745498790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745498790\n\nDear DÖNDÜ ESER, your shipment with 745498790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745498790\n\nBICARGO','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('32682018-70d9-4668-b060-a9ce43f54e28','905075277637','Sayın yetkili; İSRAFİL ŞENGÖNÜL adlı müşterinize 745297087 nolu gönderinizin RAMS ORTA + YAN SEHPA ürünü 1 parça halinde FAMILY  adresinizden 12.03.2025 21:25:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('32711a10-42e8-4681-afd1-79139a462eb1','41765845886','127150146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10424 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127150146\n\nYour shipment with the number 127150146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10424. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127150146\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('3287ca19-49e4-455c-a8be-4f7909065c96','004917640716853','Sayın BİLAL KARROUCH, 73598166 nolu gönderiniz 1411 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73598166\n\nDear BİLAL KARROUCH, your shipment with 73598166 was delivered to you with the delivery code 1411. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73598166\n\n\nBICARGO','2','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL),
('328a8fc4-8a88-4734-80bb-1a24d7abf91b','491771886030','644107524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644107524\n\nYour shipment with the number 644107524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644107524\n\nBICARGO','1','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('32945c3f-6bd5-47c9-b82e-269235d8753c','4922039168112','Sayın KAZIM CENGİZ, 655935224 nolu gönderiniz 1750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655935224\n\nDear KAZIM CENGİZ, your shipment with 655935224 was delivered to you with the delivery code 1750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655935224\n\n\nBICARGO','2','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL),
('32ae8758-f01a-4e85-b8df-81311dbba4f4','4977219162688','Sayın METİN PEKSERT SSH, 745430976 nolu gönderiniz 9888 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745430976\n\nDear METİN PEKSERT SSH, your shipment with 745430976 was delivered to you with the delivery code 9888. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745430976\n\n\nBICARGO','2','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('32af5027-1d23-4691-b5d9-5087c5d2d1eb','905335708965','AAAGGSGDGDSGDS adlı müşterinizin 735340001 nolu gönderisi 50 parça halinde yola çıkmıştır.','1','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL),
('32b063a0-bb6c-448f-89c3-9b5162231524','905331602195','Sayın yetkili; DİJWAR TAŞÇEVİREN adlı müşterinize 221485829 nolu gönderinizin Balat sandalye koyu ceviz ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 08.09.2025 17:40:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('32b55aec-8208-4fec-be15-419c7f4b64f1','905304259202','NİHAL KURU adlı müşterinizin 478380707 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('32b6b750-7ca1-4807-9558-b3bd1cad8459','491725785095','Sayın HARUN ŞAHİN, 371421349 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371421349\n\nDear HARUN ŞAHİN, your shipment with 371421349 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371421349\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('32b914d8-034b-40e1-b582-661e52265cf9','004917672312771','Sayın CANSU EVCİ, 735318305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735318305\n\nDear CANSU EVCİ, your shipment with 735318305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735318305\n\nBICARGO','2','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL),
('32bb52a6-1d22-4aa3-afc2-0e9ba075dcd1','4915735318430','Sayın AYŞE ÇÖPLÜ, 127530070 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127530070\n\nDear AYŞE ÇÖPLÜ, your shipment with 127530070 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127530070\n\nBICARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('32be0ab6-08e2-4a18-bf31-5b3bec789b70','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E336 DEJAVU PORTMANTO ASKILI ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('32bf25c2-09c6-42f2-8aaf-bcee6eb21fcb','4917622033486','Sayın NERGİZ YURTSEVEN, 614525681 nolu gönderiniz 2221 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614525681\n\nDear NERGİZ YURTSEVEN, your shipment with 614525681 was delivered to you with the delivery code 2221. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614525681\n\n\nBICARGO','1','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('32c38d47-3129-4e56-b51d-74db87dc5eeb','905461661672','SEMA KAYALI adlı müşterinizin 64448364 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('32c4c8a3-f800-4c0e-83e5-30b3674183b5','4917623697326','Sayın TAYFUN ŞENGÜL, 644424764 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644424764\n\nDear TAYFUN ŞENGÜL, your shipment with 644424764 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644424764\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('32c6f16b-5ceb-4e7d-b9a0-35b0ca99a39b','4917622920602','Sayın CANDAN ÖZDEMİR, 371251508 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371251508\n\nDear CANDAN ÖZDEMİR, your shipment with 371251508 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371251508\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('32cb69f6-3c9d-4900-acca-6a642864dbd4','905335708965','PATRİCA adlı müşterinizin 735139102 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL),
('32cc58df-4139-4c9a-bc38-63a83fc88943','905075277637','FATMA ALTAY adlı müşterinizin 745871666 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('32d57a35-4fc6-43bd-915e-5807d7dd7516','905321608709','CAFER BEY adlı müşterinizin 248630618 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('32da22f8-c67f-4f06-bfbf-92ad1be8c54b','905454259202','Sayın yetkili; ÖMER KARAN adlı müşterinize 478165569 nolu gönderinizin KÖŞE TAKIMI ürünü 7 parça halinde PUFFİN adresinizden 08.05.2025 14:56:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('32da7909-668c-42c8-9c7d-2a6a5c2acd83','905461661672','Sayın yetkili; ÖMER YILMAZ adlı müşterinize 644763473 nolu gönderinizin KOLTUK TAKIMI NOVANNİ 05333801784 ürünü 3 parça halinde Fatura adresinizden 27.08.2025 14:38:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('32de5356-fa05-46c9-8f98-91117b9a201b','905079047428','MEHMET EMİN KARAGÜZEL adlı müşterinizin 449665773 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('32e0c6d5-d204-4088-8bf1-8cd15126551f','9053259981980','MEHMET AKDAĞ adlı müşterinizin 614666366 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('32e0fc46-e93b-4964-9c97-35726ef3a519','905335511664','SAFİYE TINCA adlı müşterinizin 371194748 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('32e3a6e9-dfbd-4bef-91d4-281746f2b193','905517075149','YASEF İCEL adlı müşterinizin 478978353 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('32e51d0f-c215-4e54-bd64-adc8504d437b','905363385813','ÖZKAN KUYUCU adlı müşterinizin 976121570 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('32ede5e4-e268-4f9d-a305-6dc30dcb89fb','905331602195','NAİMA BOURAJJOU adlı müşterinizin 221106888 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL),
('32f05d5a-a3ee-4d21-89c1-5c8aac3e7d3a','4367761978240','Sayın ASLAN MURTAZALİEV, 613669036 nolu gönderiniz 5752 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613669036\n\nDear ASLAN MURTAZALİEV, your shipment with 613669036 was delivered to you with the delivery code 5752. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613669036\n\n\nBICARGO','2','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('32f4b504-fb38-459e-b133-ad11259ca850','4917672163704','Sayın ÖMER KARAMAN , 428561353 nolu gönderiniz 3328 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428561353\n\nDear ÖMER KARAMAN , your shipment with 428561353 was delivered to you with the delivery code 3328. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428561353\n\n\nBICARGO','1','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL),
('32fe6902-ed63-4b9d-8c80-d43044135128','4915566766358','Sayın ALEYNA İREP, 37119244 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37119244\n\nDear ALEYNA İREP, your shipment with 37119244 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37119244\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('32ff730c-f086-4b2b-b259-cbcd261c76ab','905517075149','Sayın yetkili; AYŞEGÜL GÖKTEPE adlı müşterinize 478545457 nolu gönderinizin 8 AD. SANDALYE ürünü 3 parça halinde GARDEROBE adresinizden 11.07.2025 10:47:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('3301fee7-30c9-4e46-b270-8f5af38c8730','4920350083648','Sayın DİEFABRİC, 223433822 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223433822\n\nDear DİEFABRİC, your shipment with 223433822 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223433822\n\nBICARGO','2','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL),
('33032387-bde9-496b-b7b4-9c8e2b77fa70','4917685433742','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('3308607b-d2db-4d72-9b5a-3516b4511128','33695911824','Sayın METE BOZDAĞ 1 , 745241298 nolu gönderiniz 6640 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745241298\n\nDear METE BOZDAĞ 1 , your shipment with 745241298 was delivered to you with the delivery code 6640. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745241298\n\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('330a27b9-e7b1-4f9b-944e-fd41c0a69e88','491753662810','45586545 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10545 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/45586545\n\nYour shipment with the number 45586545 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10545. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/45586545\n\nBICARGO','1','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL),
('330af2e8-8369-429e-9861-a4582ed3e5fd','31687916596','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('330b0ba0-9cdf-4f24-8006-2ba47cc0a68d','491744167777','Sayın GÜLŞAH SEVİMLİ, 644721676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644721676\n\nDear GÜLŞAH SEVİMLİ, your shipment with 644721676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644721676\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('3312aebb-f5c7-4834-bc6b-65546306ca37','33668879544','478983907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7597 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478983907\n\nYour shipment with the number 478983907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7597. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478983907\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('331af1ee-6732-476b-8094-6946eb7bfef8','31681124473','221530805 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10468 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221530805\n\nYour shipment with the number 221530805 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10468. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221530805\n\nBICARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('331d3f4a-f1b8-4593-b75a-05e9cfe16352','33667821840','221892935 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1086 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221892935\n\nYour shipment with the number 221892935 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1086. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221892935\n\nBICARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('3320cf75-bed2-4b64-b44b-b4b229bf4501','4917664318290','248955283 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6839 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248955283\n\nYour shipment with the number 248955283 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6839. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248955283\n\nBICARGO','1','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL),
('3326e198-b68c-40b1-a36f-e807bc215e51','905517075149','BİRSEN KARADAVUT adlı müşterinizin 478403352 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('332a99dc-7905-4d87-89ad-e7bb27c85655','33789432951','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('332d076a-bad5-4ab9-8bef-40a525f97c53','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin masa ürünü 1 parça halinde decoria adresinizden 14.06.2025 15:32:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('33335c95-3c04-4343-9ee4-e6dff57a9c1d','33771602575','Sayın MUSA BEKİM, 221624652 nolu gönderiniz 8299 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221624652\n\nDear MUSA BEKİM, your shipment with 221624652 was delivered to you with the delivery code 8299. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221624652\n\n\nBICARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('33337c3d-9ca9-48f5-887c-1bfcfbf71c9f','905336367828','birsat melake  adlı müşterinizin 982639053 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('33394f2f-de7f-4afa-a103-303c2aa0a43e','491774646467','8087036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10930 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8087036\n\nYour shipment with the number 8087036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10930. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/8087036\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('333a03b8-e74a-4ced-bbc2-48e0118f258d','905054335859','SAİT CARCUR adlı müşterinizin 501423957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('333ae9bf-4c5a-4099-89c1-c2a6e768b9f1','905313340045','Sayın yetkili; ZEYNEP ŞİMŞEK adlı müşterinize 437442386 nolu gönderinizin masa ve sehpa ürünü 5 parça halinde bicargo depo adresinizden 26.08.2025 10:46:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('333b384d-588c-4d3f-9c95-ef681195e5e1','33660711568','221191139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9930 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221191139\n\nYour shipment with the number 221191139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9930. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221191139\n\nBICARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('333f718f-9284-41d4-910b-f5f33fae71bc','4917640533828','Sayın SAAED SALİH, 655571326 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655571326\n\nDear SAAED SALİH, your shipment with 655571326 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655571326\n\nBICARGO','1','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL),
('3345311b-813a-4a31-a696-09b694ef4d40','905304259202','ESRA TEZCAN adlı müşterinizin 478778231 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL),
('334a8e8c-27cc-480a-be90-b863513218c4','905335511664','Sayın yetkili; DFSDF adlı müşterinize 371155605 nolu gönderinizin Masa ürünü 1 parça halinde SM Tasarım adresinizden 20.03.2025 13:44:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef65aa6a-6cbd-41fe-a37d-8d3deeea30ed',NULL),
('334c8a71-9f79-4bbc-98bd-566c114b2c20','4369911677447','31925609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6334 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31925609\n\nYour shipment with the number 31925609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6334. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/31925609\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('33610e9e-2366-4abb-8665-c26edfdf47f8','491606303499','Sayın BARAN YILDIZ, 644832811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644832811\n\nDear BARAN YILDIZ, your shipment with 644832811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644832811\n\nBICARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('3362ffac-a125-480d-be80-c0de99ad17a5','491783142283','598982184 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3921 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598982184\n\nYour shipment with the number 598982184 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3921. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598982184\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('33636aef-720b-4b02-87a2-6448d7e322fb','905336367828','TKHİLİ NAİDA adlı müşterinizin 982318245 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','226e99fa-2222-409d-9c22-ab0639c760f9',NULL),
('336c288e-e92a-434b-91a4-d0040f109c7e','33787053460','127552437 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4289 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127552437\n\nYour shipment with the number 127552437 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4289. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127552437\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('336c4ccd-573b-4341-93ea-c9c0b8785c0e','004915147045689','Sayın ZEHRA ÖZALP, 412107970 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412107970\n\nDear ZEHRA ÖZALP, your shipment with 412107970 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412107970\n\nBICARGO','2','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL),
('33713099-79c5-46ef-9c33-e31ee0b1f245','905313340045','Sayın yetkili; BEKİR TEKELİ adlı müşterinize 437700144 nolu gönderinizin kampanya köşe takımı ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 11.08.2025 14:19:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('337592f8-7f81-403f-b051-641526259046','49485827454','Sayın NEVZAT HACIOĞLU, 15153034 nolu gönderiniz 8369 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/15153034\n\nDear NEVZAT HACIOĞLU, your shipment with 15153034 was delivered to you with the delivery code 8369. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/15153034\n\n\nBICARGO','2','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('338de34a-a692-4be5-a946-e6cfdc3191a3','905331602195','Sayın yetkili; İHSAN KUMUR adlı müşterinize 221825192 nolu gönderinizin 70x120 cm traverten sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:41:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('3390454f-5a3d-4e5e-a0c4-62593b56152d','33787231451','Sayın Gruppomino, 231429780 nolu gönderiniz 7541 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231429780\n\nDear Gruppomino, your shipment with 231429780 was delivered to you with the delivery code 7541. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231429780\n\n\nBICARGO','1','d850bd2e-4975-4529-8b56-6564706b808f',NULL),
('3391f084-bdfc-4530-8239-19ba7f5d08d8','491784094408','Sayın TÜLAY ÇAĞLAR, 644637792 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644637792\n\nDear TÜLAY ÇAĞLAR, your shipment with 644637792 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644637792\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('3392004f-ac8f-4bd8-b576-cc313e54d19d','33663262781','644732617 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8095 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644732617\n\nYour shipment with the number 644732617 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8095. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644732617\n\nBICARGO','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('3395d1f3-0f36-472c-b9c4-360f30c03c71','32484855240','İletişim \n					Şöför Murat : +905321616048','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('33977b8c-4012-4755-a608-0f76bab296f3','33634738043','976942978 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3662 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976942978\n\nYour shipment with the number 976942978 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3662. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976942978\n\nBICARGO','1','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL),
('339ac6aa-a37d-4e84-a44f-48c09fc46164','33651431937','Sayın BOURAS ABDELGHANİ, 501703321 nolu gönderiniz 3695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501703321\n\nDear BOURAS ABDELGHANİ, your shipment with 501703321 was delivered to you with the delivery code 3695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501703321\n\n\nBICARGO','1','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('339fd0ab-e2f2-47a6-927e-5aa3aaf012e2','905456068312','SAAED SALİH adlı müşterinizin 655571326 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL),
('33a2bba6-00f4-4eee-8060-a317a9043125','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS VİTRA 120 LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('33a2e0e7-0c56-48e3-9f13-4031b9e1ca6c','330788238988','74541057 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74541057\n\nYour shipment with the number 74541057 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74541057\n\nBICARGO','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('33a2e71c-1b91-4d80-97a6-c21f41f7e9aa','0614160996','Sayın ATIL SOPHİA, 505850944 nolu gönderiniz 4858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505850944\n\nDear ATIL SOPHİA, your shipment with 505850944 was delivered to you with the delivery code 4858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505850944\n\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('33a3afd8-07c3-4aba-8b6c-828287459730','4917632064278','Sayın MUHAMMER KORKMAZ, 976187023 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976187023\n\nDear MUHAMMER KORKMAZ, your shipment with 976187023 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976187023\n\nBICARGO','1','d74a364e-c899-455c-8b3f-5a445fba432a',NULL),
('33a44389-55c6-41c4-98ef-ccdf7e557d71','4915732408373','Sayın CEMAL CANKURT, 976369139 nolu gönderiniz 7366 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976369139\n\nDear CEMAL CANKURT, your shipment with 976369139 was delivered to you with the delivery code 7366. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976369139\n\n\nBICARGO','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('33aa9fa4-ee06-41cc-92ab-424f5714d81f','4915223076449','371437952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371437952\n\nYour shipment with the number 371437952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371437952\n\nBICARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('33af69b3-2404-447d-995c-40cff1376297','436602545826','Sayın YILMAZ İNAÇ, 501901219 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501901219\n\nDear YILMAZ İNAÇ, your shipment with 501901219 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501901219\n\nBICARGO','1',NULL,NULL),
('33bb4516-af83-43ea-b9e6-7797b0001f98','905078062550','Sayın yetkili; ENES İSMET UGUZ adlı müşterinize 598986653 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde RİO FATİH adresinizden 08.09.2025 16:38:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('33bbbd76-2b94-48ce-afb5-32a01222142c','4917631090224','437812245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437812245\n\nYour shipment with the number 437812245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437812245\n\nBICARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('33bf8213-5661-498a-84c9-a157decf6394','905331602195','TİMUÇİN SAYIN adlı müşterinizin 221786435 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('33bfdf5b-8434-480c-b500-8b2a1ef4a0de','41768170678','Sayın NAZAN DENİZ, 517616028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517616028\n\nDear NAZAN DENİZ, your shipment with 517616028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517616028\n\nBICARGO','1','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL),
('33c1ab8d-3463-426b-8b79-405aa4e0873f','491784770228','Sayın ADEM ÖZKAN, 976779460 nolu gönderiniz 2720 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976779460\n\nDear ADEM ÖZKAN, your shipment with 976779460 was delivered to you with the delivery code 2720. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976779460\n\n\nBICARGO','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('33c51b27-9886-4ee5-bc93-306d4c24d60b','905454259202','Sayın yetkili; GÜLPERİ ÜNVER  adlı müşterinize 478415751 nolu gönderinizin köşe -2 kanepe-orta sehpa ürünü 1 parça halinde çelikbey inegöl depo adresinizden 29.11.2024 16:16:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('33c61187-1f54-48f0-a869-4a8f32818db9','4369911307024','127847689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127847689\n\nYour shipment with the number 127847689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127847689\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('33d274fd-f242-410a-832f-be66523ac799','905304259202','Sayın yetkili; BELKISA KAPLAN adlı müşterinize 478428380 nolu gönderinizin KOLTUK KASASI ürünü 1 parça halinde SAGA KÖŞE adresinizden 29.05.2025 12:11:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('33dbc7c1-24a9-4ebd-b822-58a2bea82138','905059175469','Sayın yetkili; ABDULLAH SÖNMEZ adlı müşterinize 428107185 nolu gönderinizin orta sehpa ürünü 1 parça halinde mobievim adresinizden 27.08.2025 18:09:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('33e2e4a0-c520-4159-b1b5-425baf404f61','11111111111','Sayın MERT  GÜNAL, 17.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3500947\nŞifre : 3500947\n			\nBİCARGO','2',NULL,'e3500f94-7cbb-4330-8eca-c75ce50b7154'),
('33e49811-44d6-4f5d-bc89-a5b4574899de','905428209234','NECATİ AKIN adlı müşterinizin 31929392 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL),
('33e62f7a-ee47-4840-a68f-56488182448e','4917661479043','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('33f0a3bf-042a-4609-bfa0-2e009300b489','33780145878','Sayın FARİSHTE AHMEDİ, 44940434 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44940434\n\nDear FARİSHTE AHMEDİ, your shipment with 44940434 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44940434\n\nBICARGO','1','6df88176-a01f-4232-a091-4e10895a39df',NULL),
('33f3d970-75d5-4446-8ed5-0ab8d022aeb7','905075277637','ALİ ERKOCA adlı müşterinizin 745177264 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('33f4141d-84cd-4a59-8666-5d76611986ab','905336367828','ALİ ÇETİN  adlı müşterinizin 982408783 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('33f9a201-8764-4299-928e-883e8855f6ae','905336367828','ALİ ÇETİN  adlı müşterinizin 982817887 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('33fae17b-d3c0-4155-862f-9127b7234bd7','4384548568','Sayın EMRE DİNÇ, 52896910 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/52896910\n\nDear EMRE DİNÇ, your shipment with 52896910 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/52896910\n\nBICARGO','2','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL),
('3400137a-4842-4da9-b7b8-1129f574b337','905325165070','ÖZLEM SAĞIR adlı müşterinizin 73427297 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('3402870f-03f5-4da4-89a2-228dcb1c62a4','33782976683','Sayın ŞULE ÇAYIR , 765501651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765501651\n\nDear ŞULE ÇAYIR , your shipment with 765501651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765501651\n\nBICARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('340afb97-5df9-4222-bc3e-65fa8e320734','4917663775902','412241218 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8472 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412241218\n\nYour shipment with the number 412241218 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8472. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412241218\n\nBICARGO','1','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL),
('340ba65f-d742-4f09-81b2-96360a894113','905394878216','VOLKAN ÖZCAN adlı müşterinizin 517495121 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL),
('340c81e2-ed14-4100-be8e-989bd700030f','905325998198','ŞADİYE GÖLEÇ adlı müşterinizin 61420700 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('340d5cc6-3bf2-4890-bc3f-48dde2934ffc','905352711900','Sayın yetkili; AHMET AKAT adlı müşterinize 817619747 nolu gönderinizin 1 ADET TV UNITESI  ürünü 1 parça halinde MOBİLYAMEVİME DEPO  adresinizden 17.09.2025 10:28:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('3413ce0c-c5d0-4b90-a3dc-715db71944a3','4917680856506','644206771 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10632 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644206771\n\nYour shipment with the number 644206771 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10632. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644206771\n\nBICARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('34168882-5d28-4b69-a40a-20c623375db4','905350617509','Sayın yetkili; ASLAN MURTAZALİEV adlı müşterinize 613669036 nolu gönderinizin Köşe +masa (ayaklar kutuda)+2 kutu sandalye ürünü 6 parça halinde Fatura adresinizden 21.03.2025 16:47:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('341a5b43-5156-4cc0-9a98-7431599f53d1','491789377871','449557088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8766 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449557088\n\nYour shipment with the number 449557088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8766. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449557088\n\nBICARGO','1','084daa7f-3636-427c-9862-03f8214bc1f5',NULL),
('341dcbd7-f9a5-45e9-bedc-375836f212b9','4915568542682','745782616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3573 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745782616\n\nYour shipment with the number 745782616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3573. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745782616\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('341e8d31-dcb8-48ff-a248-3f301339a0da','31634651222','745128598 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10419 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745128598\n\nYour shipment with the number 745128598 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10419. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745128598\n\nBICARGO','1','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL),
('3420d01d-7e7f-46d0-9a07-6e12cc6e9b3c','905078062550','SEVGİ BOLAT adlı müşterinizin 598250504 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('342b6343-abd0-485a-b62d-18188b155eb5','905461661672','Sayın yetkili; ÜMİT MORCA adlı müşterinize 644377995 nolu gönderinizin TV ÜNİTESİ ürünü 5 parça halinde ALİDEN MOBİLYA adresinizden 24.06.2025 14:26:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('342e45b2-82a2-432f-a098-f9aacceacdf2','905304259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478957028 nolu gönderinizin genç odası ürünü 1 parça halinde GENCECİX adresinizden 27.03.2025 11:49:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('342ef6ee-e3a9-4b3d-8f05-5137ab555430','905079358213','KENAN BAYAR adlı müşterinizin 74568874 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('3432b139-c641-477e-a4df-3f357c8a6cc3','4917632057842','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('3438d168-5b00-44a9-a9c3-372ddd30665b','491785094918','Sayın İLHAN ERAYDIN, 15151133 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/15151133\n\nDear İLHAN ERAYDIN, your shipment with 15151133 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/15151133\n\nBICARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('343a387a-b63c-48ca-8d5c-9f1969e5a3d7','4915259684251','Sayın ABDULLAH ÇELİK, 745714095 nolu gönderiniz 6416 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745714095\n\nDear ABDULLAH ÇELİK, your shipment with 745714095 was delivered to you with the delivery code 6416. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745714095\n\n\nBICARGO','1','ab41b8c0-66a4-4c51-ba67-322b1df9498b',NULL),
('344453f7-8314-4849-b841-d62f48c9b730','491632639510','Sayın AİCHEH EL-KATİB, 221416475 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221416475\n\nDear AİCHEH EL-KATİB, your shipment with 221416475 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221416475\n\nBICARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('3444a78e-3ef4-458e-9ef2-37055e7a973d','905517075149','BİLGEN TATAR adlı müşterinizin 478901590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('3449b3e7-809c-4c0c-8e6c-e3bd42d3429a','436601880277','Sayın DRAGİ DİJANA, 675951028 nolu gönderiniz 5487 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675951028\n\nDear DRAGİ DİJANA, your shipment with 675951028 was delivered to you with the delivery code 5487. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675951028\n\n\nBICARGO','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('344c0250-ea14-4e56-81c9-eaf5b820c43a','905454259202','ERSİN ÖZDEMİR adlı müşterinizin 478892004 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL),
('344c26b7-3011-4ee7-8236-f7e1c1375990','33770299406','976235260 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2428 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976235260\n\nYour shipment with the number 976235260 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2428. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976235260\n\nBICARGO','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('344cdea6-2270-4642-a926-a46348052bfa','4915739347909','Sayın BİRCAN ŞAHİN, 91074356 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91074356\n\nDear BİRCAN ŞAHİN, your shipment with 91074356 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91074356\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('34546252-487c-433b-bb0f-c3178dd22ddb','905454259202','MERYEM YUMURTACI adlı müşterinizin 478154934 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('345625be-f9ef-4e65-8359-a143bbfd14fc','491796638028','Sayın KUTAY KENAN TOMUR, 613976667 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613976667\n\nDear KUTAY KENAN TOMUR, your shipment with 613976667 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613976667\n\nBICARGO','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('345b2ecd-6e53-4303-bf7a-51908abf057c','905517075149','Sayın yetkili; AYSEL-İSMAİL ÇILGIN adlı müşterinize 478928003 nolu gönderinizin DOLAP VE BAZALI KARYOLA ürünü 13 parça halinde acca adresinizden 10.10.2025 12:02:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('345fed54-b4b8-4baf-9c1f-8473ec8b3909','491626958911','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('34637207-9de1-4f99-b04c-333b27fd4d1c','111111111111111','Sayın AAAAAAAAA, 735143086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735143086\n\nDear AAAAAAAAA, your shipment with 735143086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735143086\n\nBICARGO','2','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL),
('347028e4-f912-4650-8489-02d9892bf119','41791530005','Sayın GIULİA CLARA CASAGRANDE , 69529713 nolu gönderiniz 7565 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/69529713\n\nDear GIULİA CLARA CASAGRANDE , your shipment with 69529713 was delivered to you with the delivery code 7565. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/69529713\n\n\nBICARGO','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('3471dcd4-fba7-45c9-8ef6-38ec2e9ae8cc','905325000478','POLAT BALKAYA adlı müşterinizin 412610139 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('34724440-24ef-4d7b-957d-8669bcad9997','491639801426','Sayın EURO MOBEL, 107869996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107869996\n\nDear EURO MOBEL, your shipment with 107869996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/107869996\n\nBICARGO','1','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL),
('347868de-9d23-4877-8933-3c2d5472da22','905331602195','Sayın yetkili; LEPETİT CHRİSTELLE adlı müşterinize 221987558 nolu gönderinizin 70x110 traverten sehpa ürünü 2 parça halinde Fatura adresinizden 27.01.2025 11:03:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('347b793d-a8bc-47f5-aac1-f1f5cbb979cf','4917623171726','Sayın SEVCAN SALİ, 478863315 nolu gönderiniz 7321 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478863315\n\nDear SEVCAN SALİ, your shipment with 478863315 was delivered to you with the delivery code 7321. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478863315\n\n\nBICARGO','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('347b87e0-55c4-482c-9860-4283cc750525','33609880831','Sayın SONER DEMİRCİ, 478422219 nolu gönderiniz 7112 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478422219\n\nDear SONER DEMİRCİ, your shipment with 478422219 was delivered to you with the delivery code 7112. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478422219\n\n\nBICARGO','1','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL),
('34810ce7-3a09-4885-8eba-83f5e31e390c','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 18.08.2025 17:53:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('348478c6-25fb-4d3e-a6dc-7705c421c59e','5325000478','Sayın MERT GÜNAL, 25.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5206264\nŞifre : 5206264\n			\nBİCARGO','1',NULL,'5206e2ee-a645-4980-ae70-5a94e6fb2922'),
('3485539f-ad60-465d-9122-511fa8747e2f','4917624915178','Sayın MEHMET ORMANOĞLU, 614636969 nolu gönderiniz 6042 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614636969\n\nDear MEHMET ORMANOĞLU, your shipment with 614636969 was delivered to you with the delivery code 6042. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614636969\n\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('3485e795-8ca0-48d6-ae7d-0dff50c6b682','33649856318','İletişim \n					Şöför Uğur Acar +905424435917','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('3488dc90-85e3-4507-b69b-d71bfd8d26da','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO DOLAP,LİDYA SOHO KÖŞE DOLAP,LİDYA SOHO İKİ KAPILI DOLAP,LİDYA SOHO TEK KAPILI DOLAP,GRANDBEDS DELUXE 160*200 YATAK,BEYLER 2TAY-6090-266 AYNALI TABLO 60*90 ürünü 13 parça halinde Fatura adresinizden 19.09.2025 14:38:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('348e74d1-7ae2-4e29-b99e-e7336502ce88','905443955915','KIYMET ŞAHİN adlı müşterinizin 614987879 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','a72800e1-54dc-4d60-b293-ca2184c62129',NULL),
('34968a3e-a472-4038-945c-6f49574ff8d1','905079047428','ZAHRA REZAEİ adlı müşterinizin 449768376 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0a2b18e-c335-4984-8a55-31e2b94bbe44',NULL),
('34a253b5-8067-4033-b831-4041a7e5b1e0','905363385813','Sayın yetkili; MUHAMMED EL BOUCHATTAOUI adlı müşterinize 976235260 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde SALON KOLTUK adresinizden 01.07.2025 15:30:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('34a832de-ad64-43fd-bb35-c78f8f061ee4','905517075149','AYŞEGÜL GÖKTEPE adlı müşterinizin 478774501 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('34aa0b3e-1122-4072-bff6-53a177a5c841','01733972547','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('34aa89bd-a181-4b65-886f-ac50e26e0b53','33771602575','Sayın MUSA BEKİM, 221624652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221624652\n\nDear MUSA BEKİM, your shipment with 221624652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221624652\n\nBICARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('34aaf632-cf7d-4e2e-9823-fe5f4c371308','31621850088','657408169 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6579 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657408169\n\nYour shipment with the number 657408169 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6579. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657408169\n\nBICARGO','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('34ad4e8e-82b6-4e6b-b3ed-4837f965fd8b','33633949591','Sayın MEHMET SENCER, 478321858 nolu gönderiniz 9656 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478321858\n\nDear MEHMET SENCER, your shipment with 478321858 was delivered to you with the delivery code 9656. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478321858\n\n\nBICARGO','1','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL),
('34ada170-4f70-47e3-b043-465095f903e5','33695585562','Sayın LEİLA GELES SSH, 745865715 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745865715\n\nDear LEİLA GELES SSH, your shipment with 745865715 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745865715\n\nBICARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('34b22345-f209-44e3-b332-24aef5cf6a99','436764709852','745220703 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10463 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745220703\n\nYour shipment with the number 745220703 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10463. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745220703\n\nBICARGO','1','e8a249a9-b090-42b5-ba99-445005f2b553',NULL),
('34b43d5a-72ab-4d0c-b61f-9bc8132d55d6','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin MALDİV KARYOLA + 2 KOMODİN ürünü 9 parça halinde ACCA adresinizden 13.05.2025 11:15:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('34b5f229-0d43-4d44-a04c-951d185b09d3','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL YATAK ODASI TAKIMI BAZALI ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('34b6961c-0ff8-4e0e-9ddf-41c704947797','4915222605151','Sayın SABİNA KAYA, 598548833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598548833\n\nDear SABİNA KAYA, your shipment with 598548833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598548833\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('34b8c68a-34bc-4744-a8fc-ae42a66f7a78','4917623697326','Sayın TAYFUN ŞENGÜL, 644424764 nolu gönderiniz 7577 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644424764\n\nDear TAYFUN ŞENGÜL, your shipment with 644424764 was delivered to you with the delivery code 7577. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644424764\n\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('34bba4c4-c382-4300-be18-0b239887ee38','4917656864788','Sayın ALESSANDRA ALTAVİLLA, 127343940 nolu gönderiniz 6488 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127343940\n\nDear ALESSANDRA ALTAVİLLA, your shipment with 127343940 was delivered to you with the delivery code 6488. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127343940\n\n\nBICARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('34bd2972-67b6-48ac-b954-73a43b79ef95','905349208933','Sayın yetkili;  ELİF MUHCU adlı müşterinize 127281736 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 15.02.2025 13:12:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('34bd33ac-74cc-4735-b933-b761f6840ae0','33624490316','Sayın DELİL ALGUNERHAN, 478677262 nolu gönderiniz 3648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478677262\n\nDear DELİL ALGUNERHAN, your shipment with 478677262 was delivered to you with the delivery code 3648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478677262\n\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('34c00c68-271d-4ffc-bd22-281ca8d12dc8','33649856318','478505417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1170 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478505417\n\nYour shipment with the number 478505417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1170. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478505417\n\nBICARGO','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('34c201b4-aa28-4a41-8f17-6e79aa983f22','01733972547','Sayın GAMZE KOCAMAZ, 644682734 nolu gönderiniz 3419 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644682734\n\nDear GAMZE KOCAMAZ, your shipment with 644682734 was delivered to you with the delivery code 3419. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644682734\n\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('34c52b64-a94b-4b43-ab94-445e7877b096','32470652077','703183067 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5421 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/703183067\n\nYour shipment with the number 703183067 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5421. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/703183067\n\nBICARGO','1','90273c80-e292-4a76-8be5-a4c812e9f569',NULL),
('34cb987e-f069-43e9-ab05-035ae51f6d8b','905363385813','Sayın yetkili; KARİMA BELKESSSAM adlı müşterinize 976849487 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde SALON KOLTUK adresinizden 26.04.2025 18:54:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b283ad69-8361-4491-9417-eb0b9d2e9b3a',NULL),
('34d23135-645a-4362-838e-7a05eb5d5edd','905350349029','Sayın yetkili; MELİSA YILMAZ adlı müşterinize 203519424 nolu gönderinizin KARYOLA ürünü 5 parça halinde EMRE TÜMER adresinizden 13.05.2025 13:13:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('34d36696-3ae6-42d1-a844-f6692ad56f86','905335708965','TABLO adlı müşterinizin 248209461 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL),
('34d76b09-6193-456c-9463-3e04964bd38e','33661847175','Sayın BEN FRİHA FATMA, 437321677 nolu gönderiniz 3357 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437321677\n\nDear BEN FRİHA FATMA, your shipment with 437321677 was delivered to you with the delivery code 3357. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437321677\n\n\nBICARGO','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('34da5579-ae79-42e0-b0f4-06ebb57c7020','4917620585657','371429381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7346 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371429381\n\nYour shipment with the number 371429381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7346. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371429381\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('34da5e48-6be4-4fcb-9582-ca79a76d4c90','905319678931','MERİÇ KARACAN  adlı müşterinizin 570417524 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('34da9fb8-cb5d-485a-aba4-5fc8088eb615','905434420016','Sayın yetkili; CAMELİA BESSAL adlı müşterinize 748663171 nolu gönderinizin 6 ADET SANDALYE / BEKASAN SANDALYE ürünü 3 parça halinde Fatura adresinizden 06.11.2024 17:06:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('34dfed39-d6df-44b7-b8c5-021401501249','33767941492','Sayın PINAR ÇİÇEK, 221970338 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221970338\n\nDear PINAR ÇİÇEK, your shipment with 221970338 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221970338\n\nBICARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('34e23487-9a0b-4f0c-99a9-566b7274d3af','905461661672','ABDULLAH ÖĞRETEN adlı müşterinizin 644917251 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('34ea01cb-2752-46d6-8862-5bb2eab8d57f','33621355129','517365072 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517365072\n\nYour shipment with the number 517365072 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517365072\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('34ec8d2d-d014-4ab1-ae08-54f6b2d48b87','905451571652','İBRAHİM PİLİG adlı müşterinizin 531724547 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('34f1ff31-9342-4bce-82b1-aeceabdb5998','905331602195','Sayın yetkili; SEYDA ASLAN adlı müşterinize 221410306 nolu gönderinizin Balat sandalye siyah  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 22.10.2025 11:17:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5ffe400-c79b-4f45-8a39-1085e52959fd',NULL),
('34f2f824-eed2-481c-a801-d015070a53f4','3656253652736275','İLETİŞİM\n					Furkan şöför = +905078826436','2','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('34f779c2-4944-4163-9c92-cd7347bb480c','4917664793999','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('34f93356-420f-443e-b8df-e3def440ac3b','4915732123337','Sayın HASRET BEYAZIT, 449196428 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449196428\n\nDear HASRET BEYAZIT, your shipment with 449196428 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449196428\n\nBICARGO','1','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL),
('34fb8b4e-eee9-4f27-bd3f-ac22cd941cbf','905304259202','İSMAİL İSMAİL adlı müşterinizin 478262226 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL),
('35005f05-1087-4249-9385-917df48b56d9','491724542171','Sayın CANSU BEYAZ, 644282587 nolu gönderiniz 7849 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644282587\n\nDear CANSU BEYAZ, your shipment with 644282587 was delivered to you with the delivery code 7849. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644282587\n\n\nBICARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('35012d99-e9fa-4650-891f-26e3f90fc951','33650187030','Sayın METE BOZDAĞ 1 , 745241298 nolu gönderiniz 6640 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745241298\n\nDear METE BOZDAĞ 1 , your shipment with 745241298 was delivered to you with the delivery code 6640. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745241298\n\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('35169e01-e340-44cc-b4b1-53e1be582c2c','905350617509','Sayın yetkili; SWEETA QALANAWİ  adlı müşterinize 613393068 nolu gönderinizin Sandalye  ürünü 3 parça halinde Mfoursandalye adresinizden 29.07.2025 12:14:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('35170a0e-3a71-4c4f-a7c5-599746e0cbbc','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437786734 nolu gönderinizin orta sehpa ürünü 2 parça halinde decoria adresinizden 20.08.2025 14:06:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('35171227-e885-485d-91d5-f25da873472a','33608972898','Sayın SEMAHAT ÇELİK, 221803289 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221803289\n\nDear SEMAHAT ÇELİK, your shipment with 221803289 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221803289\n\nBICARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('351a82b6-1305-4823-8b5b-70cc2397c7e2','41789618914','Sayın AYŞE KUTLU, 745449587 nolu gönderiniz 4623 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745449587\n\nDear AYŞE KUTLU, your shipment with 745449587 was delivered to you with the delivery code 4623. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745449587\n\n\nBICARGO','1','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL),
('352112fd-e718-449a-9384-268e00618e7d','905079358213','Sayın yetkili; MURAT ERKUL adlı müşterinize 745639167 nolu gönderinizin TOFİ KÖŞE KOLTUK ürünü 4 parça halinde VAAV adresinizden 11.04.2025 10:57:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('35233f13-3cae-406b-846d-08fb2307ca39','905461661672','Sayın yetkili; MİHRİBAN ÖZEN adlı müşterinize 644776565 nolu gönderinizin MASA ürünü 3 parça halinde Fatura adresinizden 23.05.2025 19:50:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('35237b89-146d-45f7-b60b-4626408991e1','491629336430','613199072 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7875 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613199072\n\nYour shipment with the number 613199072 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7875. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613199072\n\nBICARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('3527b1e5-0155-4589-91ba-ebe4b667b044','31684292598','Sayın SAMET BEY, 478544570 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478544570\n\nDear SAMET BEY, your shipment with 478544570 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478544570\n\nBICARGO','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('3531e64c-b73f-490b-9a30-150766b8b069','905336367828','ABBAS GHULANI  adlı müşterinizin 982978293 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('353755f6-efb1-4eec-a96c-6fc1cfd405e0','3374492498','478165569 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3318 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478165569\n\nYour shipment with the number 478165569 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3318. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478165569\n\nBICARGO','2','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('353ef7a8-8b38-45bc-9e9e-d84589a3768c','4368120902265','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('353f1895-b287-4ddb-bfc6-ddc616124e99','33647208983','Sayın AHMET AKAT, 817619747 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817619747\n\nDear AHMET AKAT, your shipment with 817619747 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817619747\n\nBICARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('353faee3-77c4-4c68-b09c-bde04cbc47ea','33760151122','Sayın İLYAS ÖNSÜZ, 745334668 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745334668\n\nDear İLYAS ÖNSÜZ, your shipment with 745334668 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745334668\n\nBICARGO','1','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL),
('35430c0c-f4f8-4d43-bdcf-2910203fb43e','905325000478','RAMAZAN AÇIKEL adlı müşterinizin 412411011 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL),
('3546da19-b7bb-4993-9695-90ebadaae542','905335708965','SAMİ CENGİZ  adlı müşterinizin 248213954 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL),
('354f241f-7a29-4ebf-89af-ee8f087df8bf','33663262781','Sayın YUNUS HADIMLI, 644732617 nolu gönderiniz 8095 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644732617\n\nDear YUNUS HADIMLI, your shipment with 644732617 was delivered to you with the delivery code 8095. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644732617\n\n\nBICARGO','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('354fe1c0-5415-4ee4-8226-b845f25dcbeb','905331602195','Sayın yetkili; MUSA BEKİM adlı müşterinize 221624652 nolu gönderinizin 80 cm Orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:46:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('35530abf-2f8a-4d1d-b0c8-67665da260e0','491738592864','Sayın  NARİN ABDİ, 081581964 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/081581964\n\nDear  NARİN ABDİ, your shipment with 081581964 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/081581964\n\nBICARGO','1','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('35553a65-5dad-4613-943c-ec425f2b3711','4915204104793','Sayın IRA YİLDİRİM , 613297420 nolu gönderiniz 4966 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613297420\n\nDear IRA YİLDİRİM , your shipment with 613297420 was delivered to you with the delivery code 4966. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613297420\n\n\nBICARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('3556bb15-c901-4522-9018-aec36512f663','4915906493452','43789661 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4820 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43789661\n\nYour shipment with the number 43789661 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4820. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43789661\n\nBICARGO','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('3557cbc1-d127-420d-af51-0bb47e5d7229','905461661672','Sayın yetkili; EMRE GÖZÜM(K) adlı müşterinize 644312365 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 17.10.2025 10:36:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('355cc057-d476-41b3-8ef0-3d5c5207f4a4','905335708965','CANSU EVCİ adlı müşterinizin 735318305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL),
('355f5212-fac2-4cd1-a68b-152c564359a3','4917634403928','371155650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6152 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371155650\n\nYour shipment with the number 371155650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6152. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371155650\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('35625d25-ad45-4688-87f6-69045e5deaa2','905304259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde GARDEROBE adresinizden 08.05.2025 14:30:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('356481ab-e5bd-463a-9cbd-ea9133c5ed99','905075277637','MUSTAFA YILMAZ SSH  adlı müşterinizin 745338988 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('356988f0-494a-4670-a0e5-27f5745a3838','491743051897','Sayın MERT ÇİÇEK, 598954734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598954734\n\nDear MERT ÇİÇEK, your shipment with 598954734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598954734\n\nBICARGO','2','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('356bc60e-acd2-4366-9468-a7669eba4860','905054335859','MUSA EMEK adlı müşterinizin 501786631 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL),
('356c4551-7da1-4ccb-86aa-5230ea99e139','33605930464','Sayın MUKUNGU KULEMFUKA, 449193323 nolu gönderiniz 4344 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449193323\n\nDear MUKUNGU KULEMFUKA, your shipment with 449193323 was delivered to you with the delivery code 4344. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449193323\n\n\nBICARGO','1','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL),
('356ea30f-3cf7-466f-b2c8-f88abb59ce47','905363385813','SAMET KÖTEN adlı müşterinizin 976439318 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('356f5dfd-da65-484e-995c-e3c67c0f3264','4915256924287','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('356fa226-ca47-4f1d-bc8f-556893a9c371','4917640451459','598665171 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598665171\n\nYour shipment with the number 598665171 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598665171\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('3570f317-0279-4718-9c0a-9356e09d3a4d','905335708965','BBBBBBBBBB adlı müşterinizin 735280128 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL),
('357c8f5c-1b9e-41a8-88d2-50faf343e97f','491791463784','Sayın AHMET GÜMÜŞ, 598387436 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598387436\n\nDear AHMET GÜMÜŞ, your shipment with 598387436 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598387436\n\nBICARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('357db384-586c-4af7-820e-22370711fb14','905319678931','TÜRKAN DEMİR adlı müşterinizin 570121325 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','ed98c31c-308d-4856-9efd-a92eb1603386',NULL),
('3581d141-d67f-4fbe-a82a-9755d34b0485','905331602195','ROHAD TOSUN  adlı müşterinizin 221529516 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('3583c0a3-6f03-4700-afd2-401371535db9','491791457419','644684020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644684020\n\nYour shipment with the number 644684020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644684020\n\nBICARGO','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('3589ca59-43ee-4139-810e-c95524b483ea','905059175469','Sayın yetkili; SEBAHAT KOÇAK adlı müşterinize 428761245 nolu gönderinizin Koltuk ürünü 4 parça halinde novano adresinizden 17.07.2025 15:00:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('358a8385-3ea1-4eae-9462-1aa9dabcb4d5','4917670681296','Sayın ERTAN TOSUNER, 598454821 nolu gönderiniz 8773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598454821\n\nDear ERTAN TOSUNER, your shipment with 598454821 was delivered to you with the delivery code 8773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598454821\n\n\nBICARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('358c086a-a8e8-408f-8d62-5f6700e9c280','32485530941','Sayın DELİL ÖZTÜRK SSH, 745786401 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745786401\n\nDear DELİL ÖZTÜRK SSH, your shipment with 745786401 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745786401\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('35925040-3d9a-485d-949c-3e1c63acfc36','33767057067','982536674 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982536674\n\nYour shipment with the number 982536674 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982536674\n\nBICARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('35980784-275b-4bfa-bc37-b68b1efaa7ec','41794613009','449693939 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4129 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449693939\n\nYour shipment with the number 449693939 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4129. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449693939\n\nBICARGO','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('359d40dd-c418-430e-a95c-45e064ce3656','905301592882','SELCAN ALTINSOY adlı müşterinizin 910479941 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('35a14e62-d0c4-4825-a8f5-9ddd5b11701e','905331602195','SERHAT TAŞÇEVİREN adlı müşterinizin 221187320 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('35a23c44-0d12-480e-a07d-2091b27ab3a0','905335511664','MURAT TEKİN adlı müşterinizin 371437952 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('35a528bc-b2f7-4211-837d-28d19ec30ae5','905331602195','SWETLANA NESCHİNSKİ adlı müşterinizin 221989961 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('35a9adb2-7d61-4966-bd51-b5b8acafdd65','905331602195','Sayın yetkili; ESMANUR ZENGİN  adlı müşterinize 221668922 nolu gönderinizin 90x190 cm Traverten masa ürünü 3 parça halinde Fatura adresinizden 10.03.2025 15:08:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('35b5cf6b-54fa-453f-ac7e-45e3e1c58b83','905510396989','ESTRELLA TÜMKAYA adlı müşterinizin 319918133 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('35b98d86-fc0c-419b-a887-e31957808d7a','31636101599','Sayın YASİN OĞUZ, 478233957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478233957\n\nDear YASİN OĞUZ, your shipment with 478233957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478233957\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('35be1bb7-db9d-40aa-b5d4-56f89f0d5d1d','905335511664','DİANA MUJKİC adlı müşterinizin 371529841 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('35bea390-bbdf-4214-899c-d266bac1667d','905331602195','Sayın yetkili; FİRDEVS ORHAN adlı müşterinize 221407228 nolu gönderinizin 200 cm konsol ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:02:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('35bf8089-0ac0-4e2e-b6f9-0de41d56336f','176322545443','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('35c6a2bd-932d-4dd5-9c88-e163e56895a4','905363385813','Sayın yetkili; GÜLCAN AYDIN adlı müşterinize 976942444 nolu gönderinizin Köşe Koltuk Takımı ürünü 4 parça halinde SALON KOLTUK adresinizden 05.12.2024 17:05:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('35c6bc37-47e0-4f7a-9978-ba0cc974a0ef','4369919078247','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('35cd3aff-af39-49bd-8dce-3b379a6c6249','31634565565','Sayın İRFAN MUTLU, 614390628 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614390628\n\nDear İRFAN MUTLU, your shipment with 614390628 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614390628\n\nBICARGO','1','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL),
('35d5cbce-4ee3-4bad-bbaf-f1b678bb155d','905336367828','Sayın yetkili; AYHAN AKTAŞ  adlı müşterinize 982685222 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 09.01.2025 17:10:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('35d6648f-497e-4952-8ab0-ca5fa2e3b3d9','905075277637','YASEMİN YILDIZ adlı müşterinizin 745968655 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('35d7e874-2a44-4c35-9d1e-e941810cd22d','905443955915','ÖZKAN KARAOĞLU adlı müşterinizin 614200423 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('35db3972-4fe5-4ef8-a1a7-8fa214192560','33605631583','Sayın SEZAİ TUNÇ, 745850370 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745850370\n\nDear SEZAİ TUNÇ, your shipment with 745850370 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745850370\n\nBICARGO','1','b384d0a2-c272-4375-a026-2cf2910078c9',NULL),
('35e08425-00bf-4654-8247-d5ab40ebe168','1111112333232323','248133427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5581 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248133427\n\nYour shipment with the number 248133427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5581. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248133427\n\nBICARGO','2','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL),
('35e2c7af-c0db-4459-888d-271f28fb7e53','905335511664','Sayın yetkili; STEFANİA KİOSKER adlı müşterinize 371734068 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 15.09.2025 15:41:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('35e9f9df-7593-4298-a920-c9f9d4e12120','905325000478','BERKANT adlı müşterinizin 412252365 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('35f1e0fd-57b4-435f-b258-d961e17a5344','905059175469','Sayın yetkili; MUSTAFA MÜEZZİNOĞLU adlı müşterinize 428459785 nolu gönderinizin sandalye 2 adet ürünü 2 parça halinde Fatura adresinizden 24.04.2025 13:26:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('360316c7-c1c2-4e59-beee-147783d218e3','4917682417039','613191069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3114 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613191069\n\nYour shipment with the number 613191069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3114. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613191069\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('3604eb05-2d92-43bf-874e-655ae27c65c1','905461661672','CANSEL KUŞ adlı müşterinizin 644684020 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('36132b21-c4a2-4540-89cf-d6d8ef063faf','33668105646','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('36136759-00e0-40bb-9f2d-5bc0029dbd2b','12212211111','Sayın BRÜHL CAMİSİ, 412441586 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412441586\n\nDear BRÜHL CAMİSİ, your shipment with 412441586 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412441586\n\nBICARGO','2','2754ec7f-f526-44d3-8178-29280a48b322',NULL),
('3616458b-7281-4342-acb8-61ccd9c15ae8','905325000478','ULRİCH RİECK SÖHNE adlı müşterinizin 41279166 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL),
('36171faa-37a8-4151-9769-6973ff0440e7','905079047428','NURGÜL YILMAZ adlı müşterinizin 449393754 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('36183441-e73e-4058-97b9-7738f08f80fb','905054335859','ALİM BAŞ adlı müşterinizin 50133574 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL),
('361b106c-4206-43cb-9639-a973942ad92f','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin mobilsitan sshlar ürünü 5 parça halinde çelikbey inegöl depo adresinizden 02.06.2025 18:12:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('361bb787-c17c-4419-87fa-983174019398','905335511664','AKIN COŞKUNSU adlı müşterinizin 371365427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('361c9b75-9a9e-44ed-9e88-352971c24ab7','4917676660206','Sayın TUĞBA COŞKUN, 371672954 nolu gönderiniz 5938 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371672954\n\nDear TUĞBA COŞKUN, your shipment with 371672954 was delivered to you with the delivery code 5938. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371672954\n\n\nBICARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('361f1320-e7ca-4ec3-bd06-98927c163417','33975706258','910594430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10046 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910594430\n\nYour shipment with the number 910594430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10046. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910594430\n\nBICARGO','2','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('3621772d-24e9-4ead-9aaf-28290759965c','905079358213','NİLÜFER YAMAN adlı müşterinizin 745972164 nolu gönderisi 48 parça halinde yola çıkmıştır.','1','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL),
('362449a9-2c66-4f32-8247-4e0d587c4d40','4917624864507','Sayın AHMET EMİN GÜL, 910201328 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910201328\n\nDear AHMET EMİN GÜL, your shipment with 910201328 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910201328\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('3626db39-ad60-460d-a9c8-b44241aed6f7','491777466973','Sayın ATAKAN OLCAYTÜRK , 910485088 nolu gönderiniz 1767 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910485088\n\nDear ATAKAN OLCAYTÜRK , your shipment with 910485088 was delivered to you with the delivery code 1767. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910485088\n\n\nBICARGO','1','8259588b-b757-4856-a390-2e9ec4c403c8',NULL),
('362d1314-05f6-4aff-913b-6e88eef644d7','4917623926506','Sayın MERVE İÇEN, 351330330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351330330\n\nDear MERVE İÇEN, your shipment with 351330330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351330330\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('363c91df-f2d7-42ab-b172-a9a0e097ee75','32486379906','Sayın ARİFE SARI, 127865742 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127865742\n\nDear ARİFE SARI, your shipment with 127865742 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127865742\n\nBICARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('363d7160-0032-4cd3-aea5-61f7e5175e9f','3164777260','Sayın Leman emre, 478361652 nolu gönderiniz 2260 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478361652\n\nDear Leman emre, your shipment with 478361652 was delivered to you with the delivery code 2260. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478361652\n\n\nBICARGO','2','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL),
('363e12d6-9314-4f2f-8f3b-4e9282fa92fb','905356659087','MUSA VARICI  adlı müşterinizin 897291641 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL),
('363e2154-6811-40b1-bf7a-a898ccabed2b','4917617137029','Sayın BERNARD BEJİQ, 644714329 nolu gönderiniz 10256 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644714329\n\nDear BERNARD BEJİQ, your shipment with 644714329 was delivered to you with the delivery code 10256. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644714329\n\n\nBICARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('363ec19e-1696-4165-992f-54a87d48c488','905079047428','Sayın yetkili; RAMİN HUSSEİNİ adlı müşterinize 44920682 nolu gönderinizin Koltuk takımı 3-3-1-1 ürünü 4 parça halinde Fatura adresinizden 28.11.2024 15:07:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('363f9428-5618-4645-b089-6ea678692b4c','33646349522','745180441 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3542 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745180441\n\nYour shipment with the number 745180441 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3542. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745180441\n\nBICARGO','2','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL),
('363fb910-e65e-4780-a450-a8abac36c890','905428209234','Sayın yetkili; ARZU ÜNLÜ adlı müşterinize 319829855 nolu gönderinizin köşe modül-masa depoda ürünü 8 parça halinde Fatura adresinizden 24.04.2025 09:46:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('3640a2a1-1468-4c8b-8182-ff6be9ef84ef','905050303939','FUNDA CAMDAN adlı müşterinizin 923419994 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL),
('3640cf7b-99c0-4440-b89a-5a3fd0a378c1','491789151262','437870707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3759 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437870707\n\nYour shipment with the number 437870707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3759. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437870707\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('3647a150-6237-48a2-a9ff-816c6ad1d6f9','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU FİLELİ BİLGİSAYAR KOLTUĞU ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('364a7530-9a1e-41ec-87e8-258c84db961c','49017661795288','İLETİŞİM\n					Furkan şöför = +905078826436','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('3652968e-17fa-4f01-8a7a-53f209c90860','4917645275694','Sayın SELİN URAK, 437152964 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437152964\n\nDear SELİN URAK, your shipment with 437152964 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437152964\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('3652b3d5-9d3a-42a6-bca7-8592fedd2f41','491794992343','Sayın KEMAL URLAN , 43755091 nolu gönderiniz 4841 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43755091\n\nDear KEMAL URLAN , your shipment with 43755091 was delivered to you with the delivery code 4841. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43755091\n\n\nBICARGO','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('365a4ef9-080d-4301-abc8-8c864e6f9417','905454259202','YUSUF TÜRKGELDİ adlı müşterinizin 478537954 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('366698b9-c878-42c1-9366-68e5f04e539f','3454363464652424','ŞÖFÖR İKETİŞİM\n					+905301824880','2','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('366a24c6-04ed-42cc-a658-1aba4ea175df','905304259202','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478972804 nolu gönderinizin GENÇ ODASI ürünü 16 parça halinde GENCECİX adresinizden 22.01.2025 12:35:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('366b0e8a-61e8-4ae9-9c97-722a2857612c','905389543828','FARUK ANSER adlı müşterinizin 486552581 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('366b86af-93c1-4ebe-90d8-9454d6e63da5','905078062550','ENES İSMET UGUZ adlı müşterinizin 598986653 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('366f016e-cd83-4968-89ee-56b8796e5866','4917664637177','Sayın GAMZE ÖRSELOGLU, 515377519 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515377519\n\nDear GAMZE ÖRSELOGLU, your shipment with 515377519 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515377519\n\nBICARGO','1','04fb8dfc-07be-4e81-a060-8a8a6f53ef14',NULL),
('36703b7d-9270-4c5e-bd70-33b1c65ff365','491786733975','Sayın AHMET GÜMÜŞ, 598387436 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598387436\n\nDear AHMET GÜMÜŞ, your shipment with 598387436 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598387436\n\nBICARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('3671c78e-f5d8-4e17-992f-6bc9626ba42d','905461661672','Sayın yetkili; MELEK KAYMAZ(K) adlı müşterinize 644547865 nolu gönderinizin AFYON TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 11.09.2025 13:23:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('36748b7b-b2b5-4400-9a96-ea2b6d5ca9b8','905070491996','AYLİN GÜNGÖR adlı müşterinizin 663458477 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('36786f3a-a8fc-420c-b306-c17ef8f9e35f','5451801422','745687103 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8839 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745687103\n\nYour shipment with the number 745687103 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8839. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745687103\n\nBICARGO','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('367bae73-f27a-43ed-8808-3493baa02a40','4917666337155','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('3680af52-535f-4620-b57e-4df63a80ba6a','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin MUTFAK KÖŞESİ ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 02.10.2025 17:03:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('36874740-430e-4b96-b401-88cc908ed54a','4917663104062','Sayın MEHMET ŞAFAK, 745303298 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745303298\n\nDear MEHMET ŞAFAK, your shipment with 745303298 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745303298\n\nBICARGO','1','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL),
('368ba3d5-dde3-437d-8f01-0a7cc8bacca9','4369919078247','598427868 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598427868\n\nYour shipment with the number 598427868 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598427868\n\nBICARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('368ba989-05dc-4877-b04e-c0c978f3f419','491712300528','598161990 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598161990\n\nYour shipment with the number 598161990 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598161990\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('368cc4e0-e399-402c-a10b-ad4166f217a0','905304259202','EMEL YILDIZ adlı müşterinizin 478644533 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('368dd2ac-2776-4fd1-af4b-6b7dfa8addbf','4917670801496','Sayın SİNEM ULUSOY, 37183091 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37183091\n\nDear SİNEM ULUSOY, your shipment with 37183091 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37183091\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('36917fe9-c2a2-4036-9e90-ba5570db946c','4917621650674','Sayın VELİT FİLİZ, 808450440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808450440\n\nDear VELİT FİLİZ, your shipment with 808450440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808450440\n\nBICARGO','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('3698d2c3-23f4-410d-9654-7089e5047ca4','4917680243657','Sayın MUHAMMED ALİ YILMAZ , 221294149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221294149\n\nDear MUHAMMED ALİ YILMAZ , your shipment with 221294149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221294149\n\nBICARGO','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('369a12eb-7ec0-4d11-b89f-077357ea50ac','905331602195','Sayın yetkili; MURAT CENGİZ  adlı müşterinize 221186271 nolu gönderinizin 80x60x45 siyah meşe sehpa takım ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:25:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('369b31d7-e9d4-44f3-a51b-ad8254147989','905347001692','NURİ ÖZKAN adlı müşterinizin 347986383 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','792fcb83-3583-425f-8515-80f98a19c7f3',NULL),
('369c8f14-ca75-473e-80f3-a899ccb9620f','4545544545343443','Sayın EREN, 412922680 nolu gönderiniz 6634 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412922680\n\nDear EREN, your shipment with 412922680 was delivered to you with the delivery code 6634. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412922680\n\n\nBICARGO','2','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL),
('369cbdd3-b65e-4def-a5b7-6f6045030ecf','905336367828','RERHAYE KHADJA  adlı müşterinizin 982834531 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('36a1d29e-2c35-4cd6-98f7-f950a6e49ad3','905313340045','SELİN URAK adlı müşterinizin 437152964 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('36a4006c-a0d5-40fa-bfd5-df58906af4d5','905459475054','GÜLŞAH KARAKAŞ adlı müşterinizin 803828322 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('36a68bc9-ed4b-4c7e-aed3-1aacbf021f0d','905336367828','AMELA MULİC  adlı müşterinizin 982972858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('36aa69b9-41f4-4239-8454-9227326e0f8f','905304259202','Sayın yetkili; GÜLCE GÜRLER YEGİN adlı müşterinize 478484020 nolu gönderinizin 18lik karyola-şifonyer-puf-2 ad. komidin ürünü 11 parça halinde çelikbey inegöl depo adresinizden 03.02.2025 20:50:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('36ab5137-8e05-4b37-92e6-24ad41c50f15','32472837629','Sayın ÖMER YILMAZ, 644763473 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644763473\n\nDear ÖMER YILMAZ, your shipment with 644763473 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644763473\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('36ac4dde-c70d-4556-867b-17c06a82eb99','00491605639383','Sayın MEHMET DORUM, 248526655 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248526655\n\nDear MEHMET DORUM, your shipment with 248526655 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248526655\n\nBICARGO','2','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL),
('36b317df-bd5f-44e1-a532-5921fbfc28a7','905454259202','ALİ KULABEROĞLU adlı müşterinizin 478319922 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2f70a81d-fcc2-4ab6-93b8-ebf34edf59b6',NULL),
('36ba9ee6-3fd8-4a71-8001-a9e5db330c00','41775230627','Sayın SAMİR KERANOVİC , 221837026 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221837026\n\nDear SAMİR KERANOVİC , your shipment with 221837026 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221837026\n\nBICARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('36bcfb1d-7cc2-4176-82f0-501460beb3ba','905325000478','LEMAN TUNCER adlı müşterinizin 412467921 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('36bf3ad7-f5a9-4213-8acd-31b812b0e77a','905301592882','KENAN ACER		 adlı müşterinizin 910684336 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('36c0c8f5-4b9b-49ce-8b3e-8d3b9956ae28','4917647800347','Sayın HAFİZE GÜNEY , 319382208 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319382208\n\nDear HAFİZE GÜNEY , your shipment with 319382208 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319382208\n\nBICARGO','1','1b20804a-76a0-418e-b22d-40783c68915b',NULL),
('36c18a98-ce6f-4f4b-9837-d5e5718464e1','111111111111','Sayın ??, 268418662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268418662\n\nDear ??, your shipment with 268418662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268418662\n\nBICARGO','2','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('36c6cbd8-9ec1-4cbe-a91e-6d33339f7c31','905331602195','AYŞE ACAR adlı müşterinizin 221639055 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL),
('36c82a38-6947-4206-b7d2-d9131a90ee1d','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR		 adlı müşterinize 910482480 nolu gönderinizin SSH PARÇALARI ürünü 2 parça halinde Fatura adresinizden 01.09.2025 15:44:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('36ca1c22-ba6f-4336-9fe2-c5b91a59d5b4','0614160996','505850944 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505850944\n\nYour shipment with the number 505850944 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505850944\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('36cb1259-071d-45e4-bf64-55f62751eb77','905517075149','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 47876680 nolu gönderinizin DOLAP KAPAĞI-ÇEKMECE ÖNLERİ-RAYLAR ürünü 2 parça halinde acca adresinizden 10.09.2025 14:21:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5242bea6-83a9-46c0-b42f-249dd7e9ef0a',NULL),
('36cc7ea1-a580-4aea-850d-4d819eb8eb38','491749347138','745808994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3336 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808994\n\nYour shipment with the number 745808994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3336. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745808994\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('36cf9801-d987-4ece-92a3-985fd1c2bb8f','4917680626495','İLETİŞİM\n					Furkan şöför = +905078826436','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('36d1a79d-6041-42d7-9263-744a5342557c','491724221941','Sayın BÜŞRA NUR ÇELEBİ, 221278187 nolu gönderiniz 10913 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221278187\n\nDear BÜŞRA NUR ÇELEBİ, your shipment with 221278187 was delivered to you with the delivery code 10913. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221278187\n\n\nBICARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('36d1b8f6-27d0-4c41-ad5a-0f7e2b014a3e','0782338105','Sayın SEBAHAT KOÇAK, 428761245 nolu gönderiniz 3418 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428761245\n\nDear SEBAHAT KOÇAK, your shipment with 428761245 was delivered to you with the delivery code 3418. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428761245\n\n\nBICARGO','2','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('36d58379-a7a5-4111-9086-f788abf0184a','05393958712','Sayın AAAAA, 100655378 nolu gönderiniz 5553 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/100655378\n\nDear AAAAA, your shipment with 100655378 was delivered to you with the delivery code 5553. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/100655378\n\n\nBICARGO','2','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL),
('36d75140-3418-47ea-9305-81c0c1c491bf','4915122809101','319232330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7344 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319232330\n\nYour shipment with the number 319232330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7344. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319232330\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('36d7794b-7415-4787-be24-016c76b9a87f','32483839092','428651654 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2698 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428651654\n\nYour shipment with the number 428651654 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2698. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428651654\n\nBICARGO','1','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL),
('36da713e-fccc-46ec-8566-bd6c36843041','905304259202','Sayın yetkili; OSMAN SÖYLEMEZ adlı müşterinize 478325717 nolu gönderinizin dolap ve ssh kutu ürünü 4 parça halinde çelikbey inegöl depo adresinizden 24.03.2025 15:15:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('36dc9691-7a76-4de1-a330-e87039891b23','41798262813','613633231 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8960 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613633231\n\nYour shipment with the number 613633231 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8960. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613633231\n\nBICARGO','1','37032355-b423-4a3a-bb38-ee78ac469313',NULL),
('36dee756-bb42-485c-b839-7f451da3af1d','905079358213','MURAT KARAOĞLU adlı müşterinizin 745629044 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL),
('36e0642a-f142-4418-97b8-f9e5e5c56b25','905335708965','TAŞLAR adlı müşterinizin 248475044 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL),
('36e24047-85ad-4284-9e83-6d5d597174cf','4915751330310','Sayın ADEM BÜYÜK, 371913094 nolu gönderiniz 1500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371913094\n\nDear ADEM BÜYÜK, your shipment with 371913094 was delivered to you with the delivery code 1500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371913094\n\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('36e3e185-10f1-4c97-ae04-15a329c6ec05','905301592882','Sayın yetkili; AHMET EMİN ALGÜL		 adlı müşterinize 910375036 nolu gönderinizin KOLTUK KASASI ürünü 1 parça halinde Fatura adresinizden 08.09.2025 13:36:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('36e44923-dd5e-45f5-b7e8-fd5420e76d03','905336367828','Sayın yetkili; ADİSA BALANCA  adlı müşterinize 982751509 nolu gönderinizin baza başlık yatak ürünü 1 parça halinde Marki baza  adresinizden 12.08.2025 15:55:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('36e5e068-3d99-4d2c-a3cb-fb06d37832e5','33617127634','Sayın M.CEDRİC KLEINDIENST (SSH), 221105277 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221105277\n\nDear M.CEDRİC KLEINDIENST (SSH), your shipment with 221105277 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221105277\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('36e77e79-929b-4a7a-bdcc-0ab0d64af8a6','31630905029','Sayın CYNTHİA GARLEE, 644126759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644126759\n\nDear CYNTHİA GARLEE, your shipment with 644126759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644126759\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('36e7cad2-d93d-4164-9c75-db833f378d0c','41794580561','DRİVER NUMBER\n					905541100849','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('36e97395-6133-4378-93b7-89760ceb2883','905075277637','MEHMET BAYTOK SSH adlı müşterinizin 745253500 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('36eaf89a-3115-4d65-b15a-b3db9633c1c0','905325000478','POLAT İSTİKRAR  adlı müşterinizin 412596038 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL),
('36ec023c-884a-47d1-84d2-faaf19499593','33662787707','Sayın BAHAR ORHAN, 478835180 nolu gönderiniz 6592 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478835180\n\nDear BAHAR ORHAN, your shipment with 478835180 was delivered to you with the delivery code 6592. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478835180\n\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('36eeab6b-7d1d-4105-8c72-69c53973591e','905363385813','ŞEVKİ MORİNA adlı müşterinizin 976765698 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('36ef2fff-a3da-4cb4-a2e8-9412e74fec3b','436606332095','Sayın SERKAN ELGİT , 61310831 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61310831\n\nDear SERKAN ELGİT , your shipment with 61310831 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61310831\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('36f1506a-df78-40c2-8e2b-7e5c42d84e79','905451571652','CEM TOPYÜREK adlı müşterinizin 531870941 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('36f5ce2c-904f-463f-94fc-a3970a01ab20','905428209234','Sayın yetkili; YILMAZ KARA  adlı müşterinize 31922563 nolu gönderinizin orca sandalye ürünü 8 parça halinde caliform moona mobilya adına alıncak adresinizden 29.01.2025 14:04:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('36f7b3dd-d92d-4123-9221-e5353c993a02','905304259202','HASAN BÜLBÜL adlı müşterinizin 478941206 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL),
('37051473-25fa-48da-834d-b388dcc2fe53','33763157609','Sayın ABARDİ NOURDİN, 221624848 nolu gönderiniz 4878 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221624848\n\nDear ABARDİ NOURDİN, your shipment with 221624848 was delivered to you with the delivery code 4878. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221624848\n\n\nBICARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('370a6ea4-0c99-4c7b-8380-470b2dd9d24d','33761359212','Sayın RUKİYE EKERBİÇER, 910638892 nolu gönderiniz 8134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910638892\n\nDear RUKİYE EKERBİÇER, your shipment with 910638892 was delivered to you with the delivery code 8134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910638892\n\n\nBICARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('370c9149-fdaf-43f5-8430-cc06dea21639','905304259202','KEMAL ETKER  adlı müşterinizin 47876427 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('3711db42-8556-46fe-864a-92492392eee6','4915224007809','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('3714d8e7-2a94-43f7-9b99-7c3238fb67a5','41783198799','248630618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6440 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248630618\n\nYour shipment with the number 248630618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6440. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248630618\n\nBICARGO','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('3716f161-2855-4fac-a2c1-0c8f85e4e173','33634695698','Sayın KENAN ACER		, 910684336 nolu gönderiniz 7115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910684336\n\nDear KENAN ACER		, your shipment with 910684336 was delivered to you with the delivery code 7115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910684336\n\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('371a444e-c48b-42e5-b7ba-72d7d1d3c70c','905349208933','Sayın yetkili; EMRAH ERAYDIN adlı müşterinize 127552437 nolu gönderinizin masa ürünü 1 parça halinde Fatura adresinizden 18.06.2025 15:43:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('37270a26-aeab-4a45-b68c-864b92c270dd','4917624864505','ŞÖFÖR İKETİŞİM\n					+905301824880','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('37277790-bb8b-4515-a65a-70902d71106e','33651552074','Sayın FATMA FİLİZ DEMİR, 910657387 nolu gönderiniz 1658 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910657387\n\nDear FATMA FİLİZ DEMİR, your shipment with 910657387 was delivered to you with the delivery code 1658. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910657387\n\n\nBICARGO','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('37278a80-b87f-445a-b97a-343b4eeae47f','905325998198','Sayın yetkili; ŞÜKRAN ALP adlı müşterinize 614990703 nolu gönderinizin GARDOREBE TREND DOLAP ALT TABLASI,TREND ŞİFONYER ÇERCEVESİ VE AYNA ARKASI  ürünü 6 parça halinde GARDOREBE adresinizden 07.11.2024 15:58:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('3728c04b-1898-43ee-a836-dcc7ff706985','33623912069','976543269 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7699 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976543269\n\nYour shipment with the number 976543269 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7699. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976543269\n\nBICARGO','1','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL),
('372c89de-8f80-4bad-a4bc-925d9af9384a','1111222222222222','Sayın MAİL BOXES ETC , 223896175 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223896175\n\nDear MAİL BOXES ETC , your shipment with 223896175 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223896175\n\nBICARGO','2','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL),
('3733ca4e-b8bf-4995-911c-006f2b119a76','4915752547786','478794904 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5934 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478794904\n\nYour shipment with the number 478794904 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5934. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478794904\n\nBICARGO','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('373689cf-9ea8-4688-84da-ede56f4fcdb9','905336367828','Emek thibaut agit adlı müşterinizin 982292057 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('37373579-a7af-4fff-97b4-977379c1b5e9','005071104453','Sayın MAHMOUD AJİ, 248948777 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248948777\n\nDear MAHMOUD AJİ, your shipment with 248948777 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248948777\n\nBICARGO','2','c139f73d-4a85-4217-8011-d483b3fabd11',NULL),
('373d3f0c-a7ae-4208-bea5-fe16bb416549','491792205831','Sayın ELİF BEYZA ARVİŞ, 613112731 nolu gönderiniz 10319 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613112731\n\nDear ELİF BEYZA ARVİŞ, your shipment with 613112731 was delivered to you with the delivery code 10319. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613112731\n\n\nBICARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('37413496-952c-4bc0-bb42-c07afeab6b37','905307331627','ERKAM CAMİ adlı müşterinizin 027547681 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL),
('3744ac13-bed0-448a-b4fe-2d954d14c2f9','491774020606','478860616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478860616\n\nYour shipment with the number 478860616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478860616\n\nBICARGO','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('37466db0-f4f4-40b8-8a32-7919f2a820a0','33643419084','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('37560751-9b46-48f1-87f9-24823616b255','905461661672','GÜLŞEN KARATAŞ adlı müşterinizin 644859309 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('375a218d-7510-41c9-a624-bf40e69038b4','4917623201470','614650407 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9443 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614650407\n\nYour shipment with the number 614650407 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9443. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614650407\n\nBICARGO','1','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL),
('375c0fb8-49ce-4d3d-94a3-d4a551eec52a','4915901858511','6442594 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10703 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/6442594\n\nYour shipment with the number 6442594 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10703. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/6442594\n\nBICARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('375d1161-ec11-4f9c-93a0-374c0fec88b0','4915778860967','745374253 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7634 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745374253\n\nYour shipment with the number 745374253 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7634. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745374253\n\nBICARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('375f7ba1-ecce-4f10-8409-0599017acf7a','33789432951','478520504 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478520504\n\nYour shipment with the number 478520504 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478520504\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('376270b1-3c38-4d90-88ea-07e4046659a6','905323332620','ERTUĞRUL adlı müşterinizin 528433255 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('37653142-11b2-442f-acee-fd63817e7687','905075277637','SEMRA HAKAN KABİR adlı müşterinizin 745409977 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('37653ac7-c389-4b53-b7fc-c84654241843','4915739316619','Sayın OKAN CORAMAN, 745980941 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745980941\n\nDear OKAN CORAMAN, your shipment with 745980941 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745980941\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('376a6023-8605-4825-8b88-9cd08d7e7880','41768145302','Sayın GAZİ PINARBAŞI, 478125476 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478125476\n\nDear GAZİ PINARBAŞI, your shipment with 478125476 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478125476\n\nBICARGO','1','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL),
('376fb2e0-29d2-4db1-aca3-1e62ece8c3bf','4915732123789','Sayın SERHAT AGİRTAS, 515139511 nolu gönderiniz 7345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515139511\n\nDear SERHAT AGİRTAS, your shipment with 515139511 was delivered to you with the delivery code 7345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515139511\n\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('37713b1d-20a9-43eb-a118-e947d164bb86','905313340045','Sayın yetkili; FAİSAL İBRAHİM adlı müşterinize 437319119 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 10.09.2025 17:31:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('3779f28d-9eca-4768-9604-1f776311d6c5','33652381202','20390821 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/20390821\n\nYour shipment with the number 20390821 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/20390821\n\nBICARGO','1','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL),
('377c69dd-bfc9-415d-881b-c53183bb156d','905349208933','Sayın yetkili; ZEYNEP KORKMAZ adlı müşterinize 127659069 nolu gönderinizin sandalye ürünü 3 parça halinde Fatura adresinizden 21.02.2025 17:22:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('377e4e96-fdbe-417e-9a0f-65f8dde01a61','491725393009','Sayın SELİN URAK, 437152964 nolu gönderiniz 8633 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437152964\n\nDear SELİN URAK, your shipment with 437152964 was delivered to you with the delivery code 8633. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437152964\n\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('3781feab-ee44-407b-a220-24e1c1755d85','905079358213','Sayın yetkili; ÖMER YILDIZ adlı müşterinize 745249761 nolu gönderinizin VOYAGE TEKLİ + ORTA SEHPA + PUF  ürünü 3 parça halinde RİXXE  adresinizden 17.07.2025 13:01:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7979b44-eac7-41b0-a981-1f2165181d24',NULL),
('37855f5d-8753-49b0-819d-e7fa28b758f0','31619691823','Sayın FEHMİYE KESERCİ, 478839575 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478839575\n\nDear FEHMİYE KESERCİ, your shipment with 478839575 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478839575\n\nBICARGO','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('37885d2a-6159-462a-80f9-6b8dfd734341','32487972030','Sayın GÜRKAN GÜLER , 449693252 nolu gönderiniz 8997 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449693252\n\nDear GÜRKAN GÜLER , your shipment with 449693252 was delivered to you with the delivery code 8997. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449693252\n\n\nBICARGO','1','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL),
('378ba67f-10c6-46b5-a880-16501acb3b5f','491728410943','910825747 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9166 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910825747\n\nYour shipment with the number 910825747 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9166. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910825747\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('378edbb5-0c79-4f8d-ad91-30d959913f42','436604807629','808886614 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6176 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808886614\n\nYour shipment with the number 808886614 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6176. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808886614\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('378f9627-e9cc-4917-aa69-bb523f9aa3af','32470652077','Sayın SEYFETTİN , 703870981 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/703870981\n\nDear SEYFETTİN , your shipment with 703870981 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/703870981\n\nBICARGO','1','a04f974c-9931-40d4-ae61-21f5044fce18',NULL),
('378fcc80-c7bd-4515-9e78-4ff59d8c8d53','905517075149','Sayın yetkili; MİLLE FİERRA COELHO  LUDİVİNE  adlı müşterinize 478505417 nolu gönderinizin trend masa+8 sandalye +orta sehoa  ürünü 9 parça halinde GARDEROBE adresinizden 26.08.2025 14:25:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('3792cf64-8e0c-4692-8237-81d238c2fc78','905350617509','DENİZ AKGÜMÜS  adlı müşterinizin 613601743 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('37949efd-9f49-47b9-bd39-bb5a8ea41f64','32488875404','Sayın İSMAİL İSMAİL, 478262226 nolu gönderiniz 2649 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478262226\n\nDear İSMAİL İSMAİL, your shipment with 478262226 was delivered to you with the delivery code 2649. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478262226\n\n\nBICARGO','1','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL),
('37982c81-8e4b-4bab-a6a2-c8aca7d8d774','905078062550','FATMA ERDEM adlı müşterinizin 598161990 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('379dc5e7-2be2-47f5-b271-7cffc1094553','4915906493452','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('37a9838d-fb3b-432b-8fd9-e0c411c9fca3','491787704238','ŞÖFÖR NUMARASI\n					+905467896981','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('37a9f3bd-8ffa-4668-9812-9b20a83e967e','905075277637','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin PANAMA KARYOLA 2 ADET BAZASIZ ürünü 8 parça halinde ACCA adresinizden 10.10.2025 11:56:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('37abb8d2-cb57-4e55-ad46-55d0bf3d0d9f','4915785625950','011222896 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7124 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011222896\n\nYour shipment with the number 011222896 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7124. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011222896\n\nBICARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('37aeb803-eb9d-43c0-b16d-f347d85a622e','905394878216','CAN DERİN adlı müşterinizin 517337381 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('37b1df70-2fbc-4139-b7bf-d40c4ee6aea5','905336367828','MAOUD HABİBİ adlı müşterinizin 982765286 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL),
('37b39555-9677-4c87-aae9-45cee4f4d3c4','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL SANDALYE ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('37b5b842-c10c-49d7-9269-83a917d8dd90','905079358213','EBRU DEMİRHAN SSH adlı müşterinizin 745433427 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL);
INSERT INTO `whatsapp_messages` VALUES
('37b5c2fc-d4a0-4756-bd2a-8baeb3c29cc4','33678270339','Sayın OSMAN BEY, 657405652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657405652\n\nDear OSMAN BEY, your shipment with 657405652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657405652\n\nBICARGO','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('37b6580f-7775-47fa-afce-9a249a2e9d19','905325000478','POLAT BALKAYA adlı müşterinizin 412610139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('37bef25c-9d25-4594-9207-8cc87f554d51','32492429454','Sayın ANİSSA İFAR , 221924148 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221924148\n\nDear ANİSSA İFAR , your shipment with 221924148 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221924148\n\nBICARGO','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('37c12ef7-a6fd-4b44-8a01-7d19764a0be0','0033769307133','248363931 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4978 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248363931\n\nYour shipment with the number 248363931 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4978. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248363931\n\nBICARGO','2','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL),
('37c322af-2d64-43d2-8713-0fb8c63e9176','491771708842','Sayın NUMAN ALTUN, 41256945 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41256945\n\nDear NUMAN ALTUN, your shipment with 41256945 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41256945\n\nBICARGO','1','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL),
('37c63560-b491-4288-9a8e-6dd7bb35a330','33646824181','Sayın NAİMA BOURAJJOU, 221106888 nolu gönderiniz 10138 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221106888\n\nDear NAİMA BOURAJJOU, your shipment with 221106888 was delivered to you with the delivery code 10138. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221106888\n\n\nBICARGO','1','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL),
('37c65963-73f4-49ea-b986-dc0a935c7937','31613006004','449445608 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449445608\n\nYour shipment with the number 449445608 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449445608\n\nBICARGO','1','72028383-f354-4335-af98-094bc771c86d',NULL),
('37ca116a-7782-4389-89bc-b0701efe0a8e','4917632171889','Sayın RASİM YAVUZ, 598894090 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598894090\n\nDear RASİM YAVUZ, your shipment with 598894090 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598894090\n\nBICARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('37cd2511-847a-4cdb-8b0a-35327a53cae7','4917672357148','Sayın AYHAN KAHRAMAN, 91028874 nolu gönderiniz 8586 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91028874\n\nDear AYHAN KAHRAMAN, your shipment with 91028874 was delivered to you with the delivery code 8586. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91028874\n\n\nBICARGO','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('37ce9ed3-ce4d-49f0-b352-06aef3dd7fcc','905461661672','RUKİYE BARUT adlı müşterinizin 644626371 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('37d1c1c6-c46e-4e73-85a0-f41613dc42f2','11111111111','Sayın AAA, 45592606 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/45592606\n\nDear AAA, your shipment with 45592606 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/45592606\n\nBICARGO','2','8772de92-e350-425f-a8eb-0c7d440b804f',NULL),
('37d376cf-ef23-4041-9207-abd8d6bda503','905059175469','Sayın yetkili; GÖKMEN GÖNÜLTAŞ adlı müşterinize 428754067 nolu gönderinizin koltuk 3+3+1 ürünü 3 parça halinde novano adresinizden 31.12.2024 17:24:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('37d397b9-3fb0-4ee8-8335-a889388b93e7','905413792483','İLYAS ÖZBEK  adlı müşterinizin 278583277 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('37d3a3c1-567f-4434-8a40-c80d739899cb','41764721719','613168811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8269 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613168811\n\nYour shipment with the number 613168811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8269. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613168811\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('37d81318-9186-4651-b4f0-ddb91131d2d1','33770014809','478278253 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478278253\n\nYour shipment with the number 478278253 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478278253\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('37e3c48e-5f1f-4438-be8e-79909aab6838','4917682356727','Sayın FLORJEN KRASNİGİ, 982310142 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982310142\n\nDear FLORJEN KRASNİGİ, your shipment with 982310142 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982310142\n\nBICARGO','1','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL),
('37eadebe-02b2-49f4-963c-e852672281e9','32484781672','Sayın GÜLSÜM UÇAR , 221345365 nolu gönderiniz 6223 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221345365\n\nDear GÜLSÜM UÇAR , your shipment with 221345365 was delivered to you with the delivery code 6223. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221345365\n\n\nBICARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('37f207a3-9ea3-4ada-8cec-f16f9c53fd93','905394878216','Sayın yetkili; NAFİT GANİOĞLU adlı müşterinize 517255345 nolu gönderinizin Yemek Odası ürünü 8 parça halinde Fatura adresinizden 22.09.2025 13:55:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('37f37cdf-1b34-448c-bd5c-ad8f32ffc650','4917674917141','Sayın AHMET GÜNEŞ, 478285861 nolu gönderiniz 4827 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478285861\n\nDear AHMET GÜNEŞ, your shipment with 478285861 was delivered to you with the delivery code 4827. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478285861\n\n\nBICARGO','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('37f5bfbf-7deb-432d-a6bf-a2b4e6977144','33763000176','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('380310e9-35fc-4629-8167-0cee8140ae6e','4915122429753','Sayın ENVER GÜL, 478659791 nolu gönderiniz 5183 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478659791\n\nDear ENVER GÜL, your shipment with 478659791 was delivered to you with the delivery code 5183. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478659791\n\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('380612d7-827a-4e97-a6a5-8a283e8eff4c','004917631692675','Sayın SARA BOBAJ, 735173063 nolu gönderiniz 9571 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735173063\n\nDear SARA BOBAJ, your shipment with 735173063 was delivered to you with the delivery code 9571. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735173063\n\n\nBICARGO','2','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL),
('38075136-41bd-480d-87a4-6972be42f556','491774238890','644564440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644564440\n\nYour shipment with the number 644564440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644564440\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('38078235-2f47-4241-8160-9e736f5bbb8b','4917660956465','Sayın ÜMİT ALBAYRAK, 644526832 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644526832\n\nDear ÜMİT ALBAYRAK, your shipment with 644526832 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644526832\n\nBICARGO','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('380cb16c-9f47-4cc5-965d-0a88242f65fd','905075277637','Sayın yetkili; ASLIHAN GÜÇLÜ adlı müşterinize 745554582 nolu gönderinizin YATAK ürünü 1 parça halinde Fatura adresinizden 13.12.2024 16:14:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('38100c50-ceb9-43c3-9e0f-125329ba4cdc','330665221905','Sayın CAROLİE KENZA , 982212726 nolu gönderiniz 3417 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982212726\n\nDear CAROLİE KENZA , your shipment with 982212726 was delivered to you with the delivery code 3417. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982212726\n\n\nBICARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('38108fd4-54fc-4f12-82a9-422785bba746','905325000478','MUHAMMED KOKEN adlı müşterinizin 412555066 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL),
('38111f7f-285e-4592-8ba5-f7481057e1e1','4915751154309','644130393 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644130393\n\nYour shipment with the number 644130393 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644130393\n\nBICARGO','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('38143a09-d150-40cb-97b9-3ea496841151','905331602195','Sayın yetkili; FEDA DEMİRKAYA adlı müşterinize 221196305 nolu gönderinizin 90x190 cm Msm01 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:11:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69e1fe5a-461e-4d68-bdbb-b22f7bc39bdf',NULL),
('3817b127-245f-47d3-b154-85ba2d7e53ab','31624237190','221996027 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2349 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221996027\n\nYour shipment with the number 221996027 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2349. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221996027\n\nBICARGO','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('38185fd2-34e7-4d20-a880-622cc4462e12','905331602195','SERKAN KAHRAMAN adlı müşterinizin 221254389 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('381d6114-0f30-46d3-aa46-4a2e5debc894','4915560792303','745816008 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1956 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745816008\n\nYour shipment with the number 745816008 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1956. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745816008\n\nBICARGO','1','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL),
('381ea98a-e7f6-4c7b-a68d-fb9ca2901bfb','11111111111','Sayın YILDIZ ORHAN, 25.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3620051\nŞifre : 3620051\n			\nBİCARGO','2',NULL,'3b62d0b0-51d7-42b2-859b-2577ea3967c4'),
('382f34f0-a5b0-45e5-845e-2cebd610bcdf','4915115356238','ŞÖFÖR NUMARASI\n					+905467896981','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('38304e4e-c10f-484c-98b8-36192b92e6b1','547747363663733','Sayın RGDSDSDSSS, 735384295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735384295\n\nDear RGDSDSDSSS, your shipment with 735384295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735384295\n\nBICARGO','2','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL),
('383226b0-8a9d-43ce-a9ef-c99cb8fe0c43','4917661977409','Sayın Arbesa, 982653067 nolu gönderiniz 2601 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982653067\n\nDear Arbesa, your shipment with 982653067 was delivered to you with the delivery code 2601. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982653067\n\n\nBICARGO','1','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL),
('38358195-24f6-48f2-9527-856f31455c4a','905389543828','Sayın yetkili; ŞİRİN BALCIN adlı müşterinize 486181220 nolu gönderinizin Sandalye  ürünü 4 parça halinde Moe Bedding  adresinizden 12.05.2025 14:01:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('38396e57-533b-44f3-8a17-1cd8d2a74a75','905331602195','ÖZAY ÖZDEMİR YILDIZ adlı müşterinizin 221746261 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('383c5581-2805-4621-bc83-ea04e993bb2b','905079358213','SÜLEYMAN KARA adlı müşterinizin 745523335 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('383c70ca-0bb6-487e-a805-a6e55a809380','4915732408373','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('383e59df-f0d5-4da0-9d99-471365e482d0','905421855834','ZEKERİYA SOYER adlı müşterinizin 338878009 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('384027ea-6608-42ca-8a4f-d361ba73d4b1','4915227034856','735718998 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9968 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735718998\n\nYour shipment with the number 735718998 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9968. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735718998\n\nBICARGO','1','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL),
('38411e2d-9ab5-40f7-95b5-e3057e389404','491627760699','Sayın TÜLAY HANIM , 455658704 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455658704\n\nDear TÜLAY HANIM , your shipment with 455658704 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455658704\n\nBICARGO','1','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL),
('3842813f-2da9-4811-8b98-2ef570976291','41766507323','Sayın AYŞE BAĞCI, 478365640 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478365640\n\nDear AYŞE BAĞCI, your shipment with 478365640 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478365640\n\nBICARGO','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('3844c9d9-fcb0-4880-93fc-4d8decb79c43','905461661672','Sayın yetkili; KEVSER KAYAHAN adlı müşterinize 644390236 nolu gönderinizin KÖŞE KOLTUK  ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 14.10.2025 11:37:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a8fe83d-8c43-4179-8ed4-895265a42b51',NULL),
('38466000-a90f-4e59-b264-7f69726f9159','905331602195','Sayın yetkili; SERKAN KAHRAMAN adlı müşterinize 221254389 nolu gönderinizin 70x120 cm beyaz sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:35:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('3849be44-266b-4581-82f6-16471e69a067','3445353423553535','Sayın CAMLAR-SALİH AK, 248217260 nolu gönderiniz 2886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248217260\n\nDear CAMLAR-SALİH AK, your shipment with 248217260 was delivered to you with the delivery code 2886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248217260\n\n\nBICARGO','2','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('384bdabe-244b-4020-a10e-738915db0b53','31641919290','Sayın SEBİHA DEMİR, 437233194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233194\n\nDear SEBİHA DEMİR, your shipment with 437233194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437233194\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('385c7579-e9a4-4c22-a0a1-8129d77e8db4','491779291845','Sayın Öner alabaş, 478803764 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478803764\n\nDear Öner alabaş, your shipment with 478803764 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478803764\n\nBICARGO','1','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL),
('3860fdd8-9550-42d7-942c-ee488c65fe48','905313340045','NURDAN GÜNDÜZ adlı müşterinizin 437529604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('3864eb4d-50be-4da6-94f6-a6ec7ea84bee','491632403021','Sayın GÜLNAZ ATMACA, 976285905 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976285905\n\nDear GÜLNAZ ATMACA, your shipment with 976285905 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976285905\n\nBICARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('386553e4-922f-48b3-9496-bfacc125d3aa','905069116877','Sayın yetkili; AMİRA GHRAB adlı müşterinize 81723596 nolu gönderinizin KOLTUK ürünü 5 parça halinde Fatura adresinizden 21.03.2025 14:31:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('38697b9d-e318-4b6e-be18-5288f13a01ff','905304259202','Sayın yetkili; MUHAMMED YUŞA YILDIRIM adlı müşterinize 478261120 nolu gönderinizin iki adet kanepe ürünü 3 parça halinde brawwa koltuk adresinizden 20.06.2025 18:20:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('386d3651-2107-4590-8f87-233d978f70d0','491634722211','Sayın MÜCAHİT SÖYLEMEZ, 478342417 nolu gönderiniz 8018 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478342417\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 478342417 was delivered to you with the delivery code 8018. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478342417\n\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('387133c7-e191-47b8-a09f-2870ffcec03e','905454259202','KERİM KUTLU adlı müşterinizin 478263896 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL),
('38713406-20a8-4d5c-8823-5be58620bf24','905333323012','Sayın yetkili; VALMİRA RAMADANİ adlı müşterinize 695394738 nolu gönderinizin YATAŞ ürünü 1 parça halinde NEW BED adresinizden 16.06.2025 11:35:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('38754195-923e-4b95-82c0-06fb87150012','905079358213','HÜLYA KORKMAZ adlı müşterinizin 745724851 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('387984b4-68ec-47bc-93af-7a8c1efe2a90','5325000478','Sayın AAAAA BBBBB, 06.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6324448\nŞifre : 6324448\n			\nBİCARGO','1',NULL,'cab6324f-e4eb-48af-b3a4-31980247e32c'),
('387e8adb-8901-4dec-a043-a3e60277afe2','905365908694','MAİL BOXES ETC adlı müşterinizin 223923203 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL),
('387fb682-ef03-45da-baf8-20d18d0b5347','33632142652','478164511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9335 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478164511\n\nYour shipment with the number 478164511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9335. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478164511\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('388151dc-df4c-4207-b04c-6622800785ce','905313340045','Sayın yetkili; ALİ KURUÇAM adlı müşterinize 437707209 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 26.08.2025 12:10:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('3885ac92-13aa-43a6-98bf-767a2df75211','436604146690','Sayın MEHDİ HASSEİNİ, 455522020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455522020\n\nDear MEHDİ HASSEİNİ, your shipment with 455522020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455522020\n\nBICARGO','1','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL),
('388c3d0b-73f7-47e7-9f67-9911f1189400','4915754509402','437427529 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2046 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437427529\n\nYour shipment with the number 437427529 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2046. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437427529\n\nBICARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('388e2e7d-f787-41fb-a657-153cbebfe645','491722006500','478892004 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2588 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478892004\n\nYour shipment with the number 478892004 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2588. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478892004\n\nBICARGO','1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL),
('38914974-d450-435b-9c48-9a2c11b4ec34','905325000478','ZEHRA ÖZALP adlı müşterinizin 412107970 nolu gönderisi 191 parça halinde yola çıkmıştır.','1','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL),
('3892f3c6-17e8-48ef-8036-847345df3f79','905078062550','ZELİHA ÖZCAN adlı müşterinizin 598492066 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('38944c15-1fce-45e3-ab48-83fb0c409d29','436602086672','Sayın ORHAN GAZİ ÇEKİCİ, 371699257 nolu gönderiniz 6970 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371699257\n\nDear ORHAN GAZİ ÇEKİCİ, your shipment with 371699257 was delivered to you with the delivery code 6970. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371699257\n\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('3899e337-47b3-45b8-9b23-ee6c59cd505f','4915750967512','Sayın MURAT KİRİKKAYA, 613529206 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613529206\n\nDear MURAT KİRİKKAYA, your shipment with 613529206 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613529206\n\nBICARGO','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('38a78ec1-e18a-4110-8764-a67805fa3d5b','905335708965',' adlı müşterinizin 248746135 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8b8f439c-2dbf-40f1-a946-d37ea9c4566f',NULL),
('38a7d113-e90d-4ee9-8621-74452cc64e6e','905325000478','TURGAY adlı müşterinizin 412139250 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('38aa06aa-4f9e-4834-bd35-c40fb4675c1f','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478862837 nolu gönderinizin BERJER AYAĞI 4 ADET ürünü 1 parça halinde inhouse adresinizden 12.09.2025 14:38:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('38ab4ea7-de15-44df-becb-b984bf0c5aaf','4915228688524','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('38b376ec-a61c-4128-9792-79485b0e3ea3','4917624194526','Sayın DİLAN ÇELİK TOGAN, 371881042 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371881042\n\nDear DİLAN ÇELİK TOGAN, your shipment with 371881042 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371881042\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('38b70d41-e908-4ffd-b590-230528e2357a','905054335859','DURSUN GÜNBEYİ adlı müşterinizin 501243340 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL),
('38be7893-78dc-4b0d-89ac-549748217c48','905078062550','BERİVAN PALAVAN adlı müşterinizin 598903023 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('38bf6b48-626c-45c4-96bf-80727933cbbb','491785990575','Sayın RECEP ONAY, 465237157 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465237157\n\nDear RECEP ONAY, your shipment with 465237157 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465237157\n\nBICARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('38ccca08-1722-4fc0-bc39-b5dac390b2fe','31687242352','248746135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1984 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248746135\n\nYour shipment with the number 248746135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1984. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248746135\n\nBICARGO','1','8b8f439c-2dbf-40f1-a946-d37ea9c4566f',NULL),
('38ce28ed-1c7d-4943-b01d-78c4fd86ecc0','905335511664','Sayın yetkili; ALİ SAHMARANİ adlı müşterinize 371216639 nolu gönderinizin koltuk ürünü 3 parça halinde Elit Köşeci Sinan Bey adresinizden 03.10.2025 12:31:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','56569bbe-2460-4ca9-903c-508e769e4a29',NULL),
('38d18aca-216a-4543-93fc-ed9e541d1b71','4917683344866','Sayın EMRE YILMAZ SSH , 745771664 nolu gönderiniz 4975 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745771664\n\nDear EMRE YILMAZ SSH , your shipment with 745771664 was delivered to you with the delivery code 4975. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745771664\n\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('38d299ef-b5fd-416d-a942-6c1e67585889','905510396989','Sayın yetkili; ESTRELLA TÜMKAYA adlı müşterinize 319918133 nolu gönderinizin SİENA 3\'LÜ(MOONA ADINA ALINCAK) ürünü 2 parça halinde CALİFORM adresinizden 05.02.2025 10:41:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('38d3015c-e82c-4e52-ade3-720016bcc22e','905318109098','MEHDİ HASSEİNİ adlı müşterinizin 455522020 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL),
('38d7c0da-759d-4301-8314-1f49e925ce25','905075277637','ERCAN VARSAK adlı müşterinizin 745318139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('38e147a3-e26e-4174-a49a-74e2b9fdc4e7','905331602195','Sayın yetkili; AYEOLOWO SEKİNAT adlı müşterinize 221433158 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MERT SANDALYE  adresinizden 25.04.2025 12:22:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('38e552b0-3eda-44af-902f-2e08ff1af005','905461661672','Sayın yetkili; CİHAN TOKAY(K) adlı müşterinize 644407379 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 25.09.2025 18:15:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('38e5e155-65e8-4616-8728-8dc74a428066','491727767813','644741916 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5412 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644741916\n\nYour shipment with the number 644741916 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5412. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644741916\n\nBICARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('38eda3d3-dd41-41c2-aac6-8d1ec2600441','905304259202','KORAY KÜPE adlı müşterinizin 478693155 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a624a844-f729-4653-993f-bd28278f47e5',NULL),
('38f77ca5-3512-4dcc-8290-03ba80173324','905075277637','HAZİNE UCA adlı müşterinizin 745839023 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL),
('39021d05-273c-4497-bec8-fb0de63d26ca','4915901762821','Sayın CENGİZ WAGNER, 412968518 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412968518\n\nDear CENGİZ WAGNER, your shipment with 412968518 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412968518\n\nBICARGO','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('3904253a-d049-4b3f-8b2f-a9ba37e50efc','33625698024','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('3908efca-79d7-4009-b343-47a2d5d17ded','33626131875','Sayın MADAME COURTOIS IMANE, 745987581 nolu gönderiniz 4563 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745987581\n\nDear MADAME COURTOIS IMANE, your shipment with 745987581 was delivered to you with the delivery code 4563. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745987581\n\n\nBICARGO','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('390a4214-7cc8-4bf3-b26f-420776bc43ea','4917675899290','371495147 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6951 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371495147\n\nYour shipment with the number 371495147 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6951. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371495147\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('390a4b7f-1223-4554-b13e-35ff7eb7e5a2','491636774270','Sayın MOWO, 412757132 nolu gönderiniz 4610 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412757132\n\nDear MOWO, your shipment with 412757132 was delivered to you with the delivery code 4610. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412757132\n\n\nBICARGO','1','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL),
('390d36cf-5b09-41a2-84d8-3e569d6e7995','33660364663','734970518 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1405 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734970518\n\nYour shipment with the number 734970518 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1405. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734970518\n\nBICARGO','1','14395ac1-388d-436d-a633-eb7f1c0beb39',NULL),
('39116d84-128c-4982-b518-91715bec7bda','4917661875274','Sayın MEHMET SEVİM KEBELİ, 59856960 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59856960\n\nDear MEHMET SEVİM KEBELİ, your shipment with 59856960 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59856960\n\nBICARGO','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('3911ff35-fe4a-4fef-8c88-c2d7c02a3c87','905313340045','UMUTCAN ŞAHİNCİ adlı müşterinizin 437870707 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('3916718d-8d33-4b74-b859-d09336d3dd3e','4917664852334','478188178 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8806 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478188178\n\nYour shipment with the number 478188178 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8806. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478188178\n\nBICARGO','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('3918cf84-497f-4480-ae16-89d29a953c7c','33771550561','478212601 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7890 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478212601\n\nYour shipment with the number 478212601 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7890. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478212601\n\nBICARGO','1','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('3919b7d8-7e28-47d5-8f9d-5328c2a863d6','31614991851','Sayın AYSUN ELİBÜYÜK, 478273603 nolu gönderiniz 5492 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478273603\n\nDear AYSUN ELİBÜYÜK, your shipment with 478273603 was delivered to you with the delivery code 5492. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478273603\n\n\nBICARGO','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('3919cbc1-379f-4ba8-8980-3d275bce8de2','491624318595','478670997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478670997\n\nYour shipment with the number 478670997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478670997\n\nBICARGO','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('391abf77-6aca-40cb-896c-b2fef582dac5','905461661672','Sayın yetkili; DİLARA COŞKUN adlı müşterinize 644684600 nolu gönderinizin sandalye ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 25.03.2025 13:45:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('391b9f0c-e2f3-4735-bd1a-0a89e6debe02','905301592882','ZEYNEP ŞURA MUTLU  adlı müşterinizin 910990360 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fe6adfb9-14c6-4193-8c47-6fbe8f734d32',NULL),
('39201fcb-122c-4eb1-9290-1e10cc27186d','33629828903','Sayın CAMELİA BESSAL, 748663171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/748663171\n\nDear CAMELİA BESSAL, your shipment with 748663171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/748663171\n\nBICARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('3922e932-b97e-40ad-ad82-ade2f8630e5f','33621599637','Sayın İMANE LAARİ, 22130093 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22130093\n\nDear İMANE LAARİ, your shipment with 22130093 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22130093\n\nBICARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('392490f1-190a-4f5d-b694-7eb443215e64','905324097429','MURAT BAYDAR adlı müşterinizin 879845359 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('392a1f8a-aa95-44f7-8489-108a0782f0ef','4915568542682','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('392bb2e0-0ead-4496-9d40-365cb4bfdf73','905336367828','ADİSA BALANCA  adlı müşterinizin 982751509 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('392f3842-ad79-46a1-8187-ca655196dd7a','905079358213','ALİ ÖZDEN adlı müşterinizin 745978651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL),
('3932323d-dc6f-4576-a96f-a70301a703cd','905304259202','İNAN KURUCU adlı müşterinizin 478572714 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL),
('3933df5d-dae1-4a25-8e13-5fe6e7b9b062','33672637355','Sayın EMİNE AKPINAR, 231455458 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231455458\n\nDear EMİNE AKPINAR, your shipment with 231455458 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231455458\n\nBICARGO','1','967b9ee1-7adb-4c9b-9386-f8200b05df01',NULL),
('39353304-f39a-42cd-a535-67a4444d42ea','4915209792574','Sayın    BEKİR, 644567515 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644567515\n\nDear    BEKİR, your shipment with 644567515 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644567515\n\nBICARGO','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('3935e133-9f01-4aa7-af57-1a3a747ddd81','491788617240','Sayın METİN NEŞELİ, 478345732 nolu gönderiniz 3848 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478345732\n\nDear METİN NEŞELİ, your shipment with 478345732 was delivered to you with the delivery code 3848. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478345732\n\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('393607bf-1f16-42ea-8ba8-b599bb51f648','905066751402','Sayın yetkili; OSMAN GÖKBEKİŞ adlı müşterinize 524289921 nolu gönderinizin köşe koltuk ürünü 8 parça halinde Katre Koltuk adresinizden 27.06.2025 12:05:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('3937bb12-950a-408a-9899-55a4066a7e6f','32486993128','Sayın METİN MOLA, 428693052 nolu gönderiniz 1090 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428693052\n\nDear METİN MOLA, your shipment with 428693052 was delivered to you with the delivery code 1090. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428693052\n\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('393fc722-7104-4a30-a01a-e8e334891dbd','491742173010','Sayın NEGİN EHSANİFARD, 644206771 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644206771\n\nDear NEGİN EHSANİFARD, your shipment with 644206771 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644206771\n\nBICARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('39443f7a-42ac-41df-bb15-969ce9d70236','905331602195','Sayın yetkili; ANİL ZAMUR  adlı müşterinize 221204525 nolu gönderinizin 80x60x45 konik sehpa takım ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:45:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('394807aa-b6b6-4a5e-b03d-72d55834175c','905075277637','SALİHA KURT adlı müşterinizin 745251111 nolu gönderisi 74 parça halinde yola çıkmıştır.','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('39485397-0590-40e1-bf2f-f21f2b3b756a','905454259202','KEMAL ETKER adlı müşterinizin 478631020 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('3949a0b3-d840-439f-b111-a652993d91ad','491725466785','613661947 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613661947\n\nYour shipment with the number 613661947 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613661947\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('3950cd3e-4c39-4f7b-8e3d-36f280d60ddb','905461661672','SÜLEYMAN ATAR adlı müşterinizin 644653229 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('3952b403-176c-4357-b0bd-da4a79208491','32483436523','Sayın BELLA MEUBEL, 830905881 nolu gönderiniz 1744 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/830905881\n\nDear BELLA MEUBEL, your shipment with 830905881 was delivered to you with the delivery code 1744. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/830905881\n\n\nBICARGO','1','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL),
('3953511d-39c1-4b6a-b0c9-a753875f917a','33660485307','982415045 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2495 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982415045\n\nYour shipment with the number 982415045 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2495. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982415045\n\nBICARGO','1','93c365fd-397d-46ce-91b9-bdd586250f02',NULL),
('3954c1a9-d378-4dea-b514-e31945039781','9053259981980','MEHMET AKDAĞ adlı müşterinizin 614666366 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('395b0ae8-6bde-46d1-82e6-19849e1f191d','905313340045','SABRİ ÖNÜZ adlı müşterinizin 437762949 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('395b5e95-0280-42d3-8e74-dd88a2c6071d','32487361121','Sayın Roa şerif, 902159645 nolu gönderiniz 5952 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/902159645\n\nDear Roa şerif, your shipment with 902159645 was delivered to you with the delivery code 5952. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/902159645\n\n\nBICARGO','1','c551c482-a643-4cab-b50a-a3615f511791',NULL),
('3965b492-a8d7-44f8-a79b-9ff6061008d9','905517075149','KAZIM KURUCU adlı müşterinizin 478335843 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('3967ff48-b75c-4ca7-a838-e9b139a063c5','9053259981980','SEVİNÇ ÖZKAN  adlı müşterinizin 614143415 nolu gönderisi 53 parça halinde yola çıkmıştır.','2','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL),
('396bd122-8a13-47f2-b48f-9b208cda148c','4915735324307','Sayın SÜMEYRA YARİM, 371381951 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371381951\n\nDear SÜMEYRA YARİM, your shipment with 371381951 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371381951\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('396dd1cd-6469-416f-b05e-edf33d212bd8','491728496024','Sayın KAAN ALTINSOY, 437591433 nolu gönderiniz 6603 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437591433\n\nDear KAAN ALTINSOY, your shipment with 437591433 was delivered to you with the delivery code 6603. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437591433\n\n\nBICARGO','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('3976a08c-f9a7-4289-be9c-7238c8f267c7','41764103638','Sayın OKAY DERİNKUYU, 478402358 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478402358\n\nDear OKAY DERİNKUYU, your shipment with 478402358 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478402358\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('39779a74-a170-4e03-99bf-751536f3f177','905331602195','İMANE LAARİ adlı müşterinizin 22130093 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('3989d27b-af5c-4f2c-92d0-5357bdc73b9c','905454259202','DİLAVER ULUTAŞ adlı müşterinizin 478670997 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('398b4ef8-ef18-4a5d-82a8-c1ac5fb5e7db','905304259202',' SEHER GÜNAY adlı müşterinizin 478540346 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('3996fd6f-6524-42a4-8d66-c7606f09f4de','491774279097','Sayın AYKUT KAYA, 371660448 nolu gönderiniz 8763 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371660448\n\nDear AYKUT KAYA, your shipment with 371660448 was delivered to you with the delivery code 8763. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371660448\n\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('399e63e0-4039-4043-8f71-2d890b0de2b5','436763232174','DRİVER NUMBER\n					905541100849','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('39a1c927-099b-44c1-a7aa-4675cf6838c7','905423036885','FİDAYE YILDIRIM adlı müşterinizin 920821712 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('39a5ac22-fb63-49fb-8b87-dcc59c8a1959','905350617509','Sayın yetkili; MANJUTHA VATHANASEELAN adlı müşterinize 613990071 nolu gönderinizin Sandalye ürünü 2 parça halinde Fatura adresinizden 03.03.2025 13:29:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('39ad4fe1-414f-4ce3-b5f1-a0354065911f','905079358213','HASAN ÇETİN adlı müşterinizin 745810889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('39b23d1b-f050-473c-aa1b-c904444e714e','905069116877','Sayın yetkili; YUSUF AVCI adlı müşterinize 817915882 nolu gönderinizin 6ı adet sandalye bir adet masa bir adet orta sehpa bir adet puf ürünü 9 parça halinde Fatura adresinizden 29.08.2025 12:56:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('39b4b8ca-4581-4908-8bde-419cf53e1d4e','905075277637','Sayın yetkili; FATMA BİLGİN adlı müşterinize 745353139 nolu gönderinizin LENA MASA SANDALYE ürünü 1 parça halinde Fatura adresinizden 07.02.2025 14:28:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('39bebcc6-d4fd-4dda-9640-76d65309dec4','436503555735','Sayın SUADA HAMZA , 613725694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613725694\n\nDear SUADA HAMZA , your shipment with 613725694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613725694\n\nBICARGO','2','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('39bf05d8-b06b-41ef-b630-c80ad560eff7','905349208933','ROMİNA ÇÖPLÜ adlı müşterinizin 127927013 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('39c6d133-47e4-4ab6-b4fa-04a09e3701ed','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin koltuk 4+3+1+puf ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('39c938fa-4f79-4be7-aa13-f8878416af44','4917663691991','598986653 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5248 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598986653\n\nYour shipment with the number 598986653 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5248. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598986653\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('39cbf451-8c65-45a1-938c-f57112b411f2','905313340045','Sayın yetkili; FUAT SÜRER adlı müşterinize 437392386 nolu gönderinizin köşe takımı ürünü 2 parça halinde KOLTUKÇU ERSİN adresinizden 22.07.2025 14:26:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('39cdf8b6-d4a8-4974-8a27-26839456c36b','905079358213','HASAN ÇETİN adlı müşterinizin 745810889 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('39d40e88-e8d5-4ca9-8550-c6856f860e6e','905517075149','HANIM DOĞAN adlı müşterinizin 478730420 nolu gönderisi 27 parça halinde yola çıkmıştır.','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('39d5429a-b168-4cdd-92e3-f67b6d617cc2','41779993098','Sayın SADAT SAIDI, 982365685 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982365685\n\nDear SADAT SAIDI, your shipment with 982365685 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982365685\n\nBICARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('39d5fb99-a5b5-42e3-bc23-f682e94295d0','905069116877','SİBEL ÖZTAMUR adlı müşterinizin 817872283 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('39db4854-1a30-4ec5-9965-581d6788196c','905454259202','METE-TAHA TOPAL adlı müşterinizin 478281907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a285e1c-8129-4c9c-85a3-06394604421e',NULL),
('39ddf9af-9d00-42b7-ab92-5fac5410681d','905075277637','BURÇİN MEN adlı müşterinizin 745970479 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('39df18e5-abac-492f-b2eb-35989c774481','905363385813','HASAN EROL adlı müşterinizin 976568852 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('39df5d3d-e3e8-426d-bb0a-b040fa8f7c85','4917670513936','817500904 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6565 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/817500904\n\nYour shipment with the number 817500904 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6565. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/817500904\n\nBICARGO','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('39e0a050-b912-4dbe-b613-0d4426fefbb7','905459475054','Sayın yetkili; GÜLŞAH KARAKAŞ adlı müşterinize 803828322 nolu gönderinizin Karyola ürünü 5 parça halinde Fatura adresinizden 31.07.2025 11:50:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('39e2dc66-9455-47b3-aefa-a4210c6400fc','4917661141685','Sayın ZEHRA AŞIK, 478243785 nolu gönderiniz 9136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478243785\n\nDear ZEHRA AŞIK, your shipment with 478243785 was delivered to you with the delivery code 9136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478243785\n\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('39e2e004-b3ea-4934-a37f-781c3a601116','4915787850824','Sayın GAMZE ÇOKENGİN, 140681782 nolu gönderiniz 10964 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/140681782\n\nDear GAMZE ÇOKENGİN, your shipment with 140681782 was delivered to you with the delivery code 10964. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/140681782\n\n\nBICARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('39e793fe-8abe-478a-a2a6-a708e07b44fe','905335511664','Sayın yetkili; HAFİZE BALİ adlı müşterinize 371539784 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 16.05.2025 15:24:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('39f1d3a7-1b70-48cc-8d15-278600d9e374','410782698878','982844191 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9897 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982844191\n\nYour shipment with the number 982844191 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9897. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982844191\n\nBICARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('39f38933-014f-48a9-be15-8c9dad4e192d','905336367828','Sayın yetkili; HAKIMI MUSTAFA adlı müşterinize 982742157 nolu gönderinizin sandalye  ürünü 1 parça halinde Ademoğlu sandalye  adresinizden 20.02.2025 11:43:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('39f606bb-4eb4-4c6e-a0d0-6eb62b001851','2323244222444443','Sayın İSVİÇRE, 248186638 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248186638\n\nDear İSVİÇRE, your shipment with 248186638 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248186638\n\nBICARGO','2','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL),
('39fb741a-4785-47a0-b60b-fc24b9c8efc9','905304259202','Sayın yetkili; ÖZLEM RAMADAN adlı müşterinize 478150977 nolu gönderinizin masa-konsol-tv-ortasehpa ürünü 10 parça halinde GARDEROBE adresinizden 30.01.2025 11:19:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('3a11155b-4351-425c-a61f-bb9d3d15c1e7','905079358213','EBRU DEMİRHAN adlı müşterinizin 745422037 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e19392f-7b28-4ec5-bd54-c32058400252',NULL),
('3a1247d0-b0b1-45b0-a373-88165c9cb5a8','905304259202','MEHMET RIZA ÇOBANOĞLU adlı müşterinizin 478992248 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('3a158eb3-fc91-4452-a7cb-0ae93cdf2840','4917623277332','613814330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8850 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613814330\n\nYour shipment with the number 613814330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8850. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613814330\n\nBICARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('3a167561-ff3b-4147-84a2-4a7516e46f56','905336367828','AYŞE DOĞAN adlı müşterinizin 982415045 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','93c365fd-397d-46ce-91b9-bdd586250f02',NULL),
('3a19518a-7882-4fd1-9745-b3a58bff1763','33763204411','Sayın HAMİDİ SONİA (SSH), 221748184 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221748184\n\nDear HAMİDİ SONİA (SSH), your shipment with 221748184 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221748184\n\nBICARGO','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('3a1b2853-baa1-4569-92a9-db75a792f789','491632639510','Sayın LAMİSENT BUSİNESS, 221339460 nolu gönderiniz 5675 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221339460\n\nDear LAMİSENT BUSİNESS, your shipment with 221339460 was delivered to you with the delivery code 5675. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221339460\n\n\nBICARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('3a1c36ad-26b3-4f7d-9848-d55593a4f6f5','41762077419','Sayın GÜL-MURAT AVCU, 478919360 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478919360\n\nDear GÜL-MURAT AVCU, your shipment with 478919360 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478919360\n\nBICARGO','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('3a2fef05-84af-43ad-a012-5de90dd0a41d','33979359707','501872546 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4734 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501872546\n\nYour shipment with the number 501872546 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4734. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501872546\n\nBICARGO','2','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('3a3062cb-ed17-48c3-abab-9cdc1fb19400','905335511664','Sayın yetkili; CANDAN ÖZDEMİR adlı müşterinize 371251508 nolu gönderinizin KARYOLALAR ürünü 4 parça halinde albessa karyola adresinizden 07.07.2025 11:12:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('3a35ee4d-097a-4c85-986b-e179f49d880e','4915774445546','Sayın FETHİ YÜCEL , 910728512 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910728512\n\nDear FETHİ YÜCEL , your shipment with 910728512 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910728512\n\nBICARGO','1','4620449d-5bd3-49d6-816f-684d639a3e44',NULL),
('3a3a94b5-eb65-413f-8f7e-2a7f08ddcfad','905421855834','MEHMET GÜL adlı müşterinizin 33841628 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('3a3cdbd4-a435-4d78-a1e4-daa9d734d6ea','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin asos 180 baza 2 komidin şifonyer ayna puf ürünü 13 parça halinde odalife adresinizden 03.09.2025 11:31:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('3a3d25a3-5f2b-40d7-8007-f16862c576d9','491783209660','Sayın MEHMET KARA, 412977083 nolu gönderiniz 4432 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412977083\n\nDear MEHMET KARA, your shipment with 412977083 was delivered to you with the delivery code 4432. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412977083\n\n\nBICARGO','1','322aeb29-42e3-4166-8669-1fa18b704bfc',NULL),
('3a3f6dd7-b443-4f48-80d7-44ed3f3358ab','33749273890','Sayın SELCAN BOZKURT , 221118460 nolu gönderiniz 1347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221118460\n\nDear SELCAN BOZKURT , your shipment with 221118460 was delivered to you with the delivery code 1347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221118460\n\n\nBICARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('3a414ff4-8496-453c-af24-a6cf4db9387e','905318109098','Sayın yetkili; Huseyin gündüz  adlı müşterinize 455614339 nolu gönderinizin Yatak  ürünü 2 parça halinde Yatakci mustafa adresinizden 05.11.2024 11:52:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('3a42e01d-11b8-4205-bc79-b7d52ee5ea79','905325000478','GÖKHAN YETİŞ adlı müşterinizin 41295798 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3977a5d5-74d4-4a83-924b-634b068065a2',NULL),
('3a52fa10-94c6-4996-9cea-de3c8f2bbe8d','4917631430152','Sayın GASİ MUSA, 613262202 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613262202\n\nDear GASİ MUSA, your shipment with 613262202 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613262202\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('3a537aa9-9510-492e-9cf9-a878a26543ea','11111111111','Sayın SEVİNÇ ÖZKAN , 614143415 nolu gönderiniz 6002 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614143415\n\nDear SEVİNÇ ÖZKAN , your shipment with 614143415 was delivered to you with the delivery code 6002. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614143415\n\n\nBICARGO','2','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL),
('3a53858b-824f-4796-8863-2571df33356e','905454259202','GÜL-MURAT AVCU adlı müşterinizin 478449021 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('3a57b24e-517c-4918-b3eb-3d888a09ff0f','32489297598','Sayın FUAT SÜRER, 437392386 nolu gönderiniz 3850 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437392386\n\nDear FUAT SÜRER, your shipment with 437392386 was delivered to you with the delivery code 3850. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437392386\n\n\nBICARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('3a5b5d72-2a75-4acd-8d86-737492714cd6','3374492498','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','2','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('3a6130e9-625f-4c32-9338-79517ed001b4','4917680727235','437649706 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649706\n\nYour shipment with the number 437649706 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437649706\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('3a63d7a7-c037-43cb-ada1-70de0ce5c1c3','905079358213','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin PİER ÜÇLÜ KANEPE 2 ADET  ürünü 3 parça halinde NAHİTA SOFA  adresinizden 25.07.2025 12:03:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('3a6b2b49-e8d2-4233-bb71-c7bb55da1ce1','4917641531210','644615727 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644615727\n\nYour shipment with the number 644615727 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644615727\n\nBICARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('3a6bc229-2949-4bd6-9c70-979db593fd31','905517075149','METİN NEŞELİ adlı müşterinizin 478345732 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('3a6c0889-2116-43e6-80a0-8c4f7b6b68a1','4917673582903','Sayın BETÜL ÇELİK SSH, 644298325 nolu gönderiniz 5819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644298325\n\nDear BETÜL ÇELİK SSH, your shipment with 644298325 was delivered to you with the delivery code 5819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644298325\n\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('3a6e0a7a-5d61-48b0-9cfb-cb5e6408d955','905075277637','ABDULLAH DEMİR adlı müşterinizin 745744183 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL),
('3a6e4463-79ca-4599-a9e3-7c89d0213dbc','33666954029','Sayın PEPE DİMBİ GRACE, 982219496 nolu gönderiniz 7902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982219496\n\nDear PEPE DİMBİ GRACE, your shipment with 982219496 was delivered to you with the delivery code 7902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982219496\n\n\nBICARGO','1','1f693920-f2af-4070-9034-3b5ae439f603',NULL),
('3a6fc1af-31c3-4635-be90-e400e143a570','4917624766377','Sayın ALİM BAŞ, 50156405 nolu gönderiniz 1480 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/50156405\n\nDear ALİM BAŞ, your shipment with 50156405 was delivered to you with the delivery code 1480. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/50156405\n\n\nBICARGO','1','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL),
('3a709215-32d4-4c03-8ccf-d4092b6dbb44','4917620989771','Sayın KAMER DUHAN ECE(K), 644651781 nolu gönderiniz 4253 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644651781\n\nDear KAMER DUHAN ECE(K), your shipment with 644651781 was delivered to you with the delivery code 4253. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644651781\n\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('3a79aa28-cede-4313-9a62-54958e8f1615','1111111111','Sayın AAAAAAAAAA, 22315159 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22315159\n\nDear AAAAAAAAAA, your shipment with 22315159 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22315159\n\nBICARGO','2','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL),
('3a7ddbd9-caf8-45a1-b373-9605c283aa99','436641534757','Sayın DİANA MUJKİC, 371529841 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371529841\n\nDear DİANA MUJKİC, your shipment with 371529841 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371529841\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('3a82ab27-852e-43ab-8fdf-5653b6ea8278','905335511664','SEMİH TÜRKOĞLU adlı müşterinizin 371696812 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('3a8e854c-0946-4fc9-9bcd-fe03f54d2971','436604738360','221285061 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1296 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221285061\n\nYour shipment with the number 221285061 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1296. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221285061\n\nBICARGO','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('3a9028cd-cec8-494c-b736-08f1e952ad5a','905331602195','Sayın yetkili; GURAY SEYFELİ adlı müşterinize 221390997 nolu gönderinizin TRAVERTEN MASA ürünü 3 parça halinde Fatura adresinizden 02.01.2025 11:48:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('3aa3bb25-aacd-4d75-a25d-fe9e15d49420','905350617509','Sayın yetkili; DİANA BARAKAEVA adlı müşterinize 613554878 nolu gönderinizin Masa ürünü 1 parça halinde İlyas Masa adresinizden 11.06.2025 14:10:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('3aa90a39-921f-4f1b-bf6d-7d3698f0ef0f','31620957828','Sayın NİHAL ŞAHİN, 221899517 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221899517\n\nDear NİHAL ŞAHİN, your shipment with 221899517 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221899517\n\nBICARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('3aa97a32-2f5b-4bca-b102-0c2a425e7099','905079358213','ALİ ERKOCA SSH  adlı müşterinizin 745942521 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('3aaaec96-0a9e-4337-bcc9-1d183a8070a4','41613314258','Sayın ULAŞ YILDIZ, 428602278 nolu gönderiniz 1188 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428602278\n\nDear ULAŞ YILDIZ, your shipment with 428602278 was delivered to you with the delivery code 1188. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428602278\n\n\nBICARGO','2','8f38f94a-f9de-478d-9d69-21faf6e91db1',NULL),
('3aabf314-3824-410b-bea5-b279c5feb7a7','33658826838','Sayın ŞÜKRÜ ÇABUK, 248240352 nolu gönderiniz 2852 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248240352\n\nDear ŞÜKRÜ ÇABUK, your shipment with 248240352 was delivered to you with the delivery code 2852. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248240352\n\n\nBICARGO','1','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL),
('3aace625-1399-4197-8cd9-80268ae3a27f','4369911677447','Sayın GÜLÇİN İSMAİLÇEBİOĞLU, 31925609 nolu gönderiniz 6334 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31925609\n\nDear GÜLÇİN İSMAİLÇEBİOĞLU, your shipment with 31925609 was delivered to you with the delivery code 6334. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31925609\n\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('3aad7744-0ae4-4de4-806a-f86fdf84aba5','905332942204','ATIL SOPHİA adlı müşterinizin 505850944 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('3aafb088-03b8-49e2-8a6f-cc0e5c4a7909','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS DELUXE 120*200 YATAK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 15:00:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('3ab390e4-2028-4595-a503-62df1810c426','33786539844','Sayın AYDIN İLKNUR, 745545386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745545386\n\nDear AYDIN İLKNUR, your shipment with 745545386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745545386\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('3ab9bc0b-ea47-477b-aa49-1452656b4fef','905313340045','Sayın yetkili; DİLAN ÜNVER adlı müşterinize 437584936 nolu gönderinizin BAZA BAŞLIK ürünü 6 parça halinde Albessa adresinizden 22.07.2025 16:42:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('3abefcc7-2e9f-4f0d-a096-9255dcca983f','905461661672','AHMET OKUTAN adlı müşterinizin 64415501 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('3ac156d8-6a09-48dd-a4b0-42c644db3153','905318109098','AAAAAAAAA adlı müşterinizin 45592606 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8772de92-e350-425f-a8eb-0c7d440b804f',NULL),
('3ac1bae3-91f8-4cb7-8760-9b6efddcd4f2','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin KOLTUK TAKIMI 331 ürünü 5 parça halinde MOBELLA KOLTUK adresinizden 02.10.2025 17:03:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('3ac2a2a8-f2f3-490a-bf42-add031859edf','905349208933','Sayın yetkili;  İSMET CEYLAN adlı müşterinize 127241743 nolu gönderinizin masa,ayak ve sandalye ürünü 6 parça halinde MELYA adresinizden 12.03.2025 15:14:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('3ac41b0e-3eab-4ab9-9d69-cf02f7078da2','905331602195','MUHAMMED DALKARA adlı müşterinizin 221646640 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('3ac7c7e1-9c6a-4c39-98db-43f572c2b91a','31648475188','750145910 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3809 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750145910\n\nYour shipment with the number 750145910 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3809. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750145910\n\nBICARGO','1','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL),
('3acfd828-32ec-4811-b6b8-8c3533fc7195','3433434343344444','Sayın KREM KUTULARI, 223186784 nolu gönderiniz 5250 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223186784\n\nDear KREM KUTULARI, your shipment with 223186784 was delivered to you with the delivery code 5250. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223186784\n\n\nBICARGO','2','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('3ad30a9d-ef50-4fc4-87ae-a6d3c11e8d20','33787263846','Sayın ZİYA ALTIN, 745390643 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745390643\n\nDear ZİYA ALTIN, your shipment with 745390643 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745390643\n\nBICARGO','1','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL),
('3ad3ddb7-947e-434b-8fb8-9293d5b2867a','436606573775','371508043 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1128 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371508043\n\nYour shipment with the number 371508043 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1128. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371508043\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('3ad44883-f82e-46a6-8155-39a7611dbf28','905461661672','TAHSİN AKSOY adlı müşterinizin 644716997 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('3ad8d3fb-c46c-41fe-9d6f-fd833cc62661','491627680129','127945692 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10712 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127945692\n\nYour shipment with the number 127945692 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10712. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127945692\n\nBICARGO','2','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('3ade3a23-7b26-409d-9a99-63041abe7493','31633137745','Sayın İLYAS ÖZBEK , 278583277 nolu gönderiniz 7579 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/278583277\n\nDear İLYAS ÖZBEK , your shipment with 278583277 was delivered to you with the delivery code 7579. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/278583277\n\n\nBICARGO','1','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('3aedf841-2e24-41a5-83f7-12486588436c','905368336516','Sayın yetkili; ZEYNEP CABUK adlı müşterinize 515128101 nolu gönderinizin SANDALYE MASA  ürünü 7 parça halinde masami adresinizden 22.10.2025 10:32:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','effb34a0-0ad9-48cd-9191-3cdc75353428',NULL),
('3afbd3ae-7f97-4ebc-bfba-ff3ef37422be','4915734620667','644535273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8437 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644535273\n\nYour shipment with the number 644535273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8437. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644535273\n\nBICARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('3aff2152-761c-4637-9265-0f3a44965a76','491745765956','Sayın NURCAN ÖZER, 745940979 nolu gönderiniz 9557 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745940979\n\nDear NURCAN ÖZER, your shipment with 745940979 was delivered to you with the delivery code 9557. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745940979\n\n\nBICARGO','1','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL),
('3aff857c-7bd0-4368-9d77-053eb4b99b26','33637509452','Sayın NAFİT GANİOĞLU, 517255345 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517255345\n\nDear NAFİT GANİOĞLU, your shipment with 517255345 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517255345\n\nBICARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('3b01b934-62fc-4002-b7eb-fe210f2657c5','905079358213','FATMA SARI adlı müşterinizin 745619301 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('3b021e27-76e8-4a7a-916c-9c7d72560b35','436766504588','437397407 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7991 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437397407\n\nYour shipment with the number 437397407 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7991. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437397407\n\nBICARGO','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('3b029570-e9ec-4e4e-ae31-b504bb94ea0e','905331602195','KELLY DE VOS  adlı müşterinizin 221560581 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('3b089b0d-b669-445a-b690-19bb3b46deb1','905510396989','Sayın yetkili; AYHAN KOCAKAYA adlı müşterinize 31979626 nolu gönderinizin PORTA SEHPA SETİ ürünü 2 parça halinde Fatura adresinizden 05.08.2025 10:54:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('3b0b50b4-9e3d-4452-a9f3-4093b17e6b32','111111111111','Sayın FİRAS MACHANTAT, 750125400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750125400\n\nDear FİRAS MACHANTAT, your shipment with 750125400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750125400\n\nBICARGO','2','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('3b12da51-cd3b-4923-9e0a-60d4345311d2','316212833629','Sayın DURMUŞ MEVLÜT, 614873400 nolu gönderiniz 10313 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614873400\n\nDear DURMUŞ MEVLÜT, your shipment with 614873400 was delivered to you with the delivery code 10313. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614873400\n\n\nBICARGO','2','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL),
('3b1d9d92-b4ea-41c5-9517-a0152814faaf','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Traverten tekli sehpa 45 cm ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:33:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('3b25b1a9-2641-4830-b480-e48e16857a35','905335511664','Sayın yetkili; GÖKHAN ÜLKER adlı müşterinize 371944289 nolu gönderinizin MASA + SEHPA ürünü 5 parça halinde SM Tasarım adresinizden 17.07.2025 10:55:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('3b29f637-c8ca-4bda-a97e-9facb87c9372','491713463394','Sayın MAHMUT KAYA, 478705604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478705604\n\nDear MAHMUT KAYA, your shipment with 478705604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478705604\n\nBICARGO','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('3b2ffc79-e312-40f6-825c-dca3fab86bfd','905335708965','BİLAL ACAR adlı müşterinizin 735143086 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL),
('3b305de1-dcdb-47c3-9972-f22b9cf4d52d','0033769307133','Sayın FAREDİN BAJRAMİ, 248363931 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248363931\n\nDear FAREDİN BAJRAMİ, your shipment with 248363931 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248363931\n\nBICARGO','2','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL),
('3b32a855-7efc-4c1a-b2b9-9dd270488ac5','491721561971','644796086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796086\n\nYour shipment with the number 644796086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644796086\n\nBICARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('3b36debf-9eb6-4b71-983f-f763bd38cf6a','4901708970529','Sayın ZELİHA ARAS, 910280020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910280020\n\nDear ZELİHA ARAS, your shipment with 910280020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910280020\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('3b37d183-482f-4087-b923-9aae64e69935','905327099916','Sayın yetkili; EROL KIŞLAK adlı müşterinize 959626673 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde Fatura adresinizden 23.10.2025 15:29:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','58e3e5d5-2e17-40da-96ac-0310bd71ed03',NULL),
('3b3ed262-ca0a-47b6-9db3-a3c2e30cbdf9','905304259202','Sayın yetkili; RUKİYE KIRIMLI adlı müşterinize 478861689 nolu gönderinizin masa sandalye ürünü 7 parça halinde GARDEROBE adresinizden 24.03.2025 15:28:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('3b3fbca8-5751-4189-8fb6-01461e5f20bc','33666954029','Sayın PEPE DİMBİ GRACE, 982219496 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982219496\n\nDear PEPE DİMBİ GRACE, your shipment with 982219496 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982219496\n\nBICARGO','1','1f693920-f2af-4070-9034-3b5ae439f603',NULL),
('3b40cd3e-44b4-4ec3-b811-64c00591d450','905331602195','Sayın yetkili; SELCAN KURU adlı müşterinize 221208954 nolu gönderinizin 90x190 mermer desenli masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:50:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('3b42963c-fc22-44d4-97ed-c40c668a854c','905304259202','DİLAN ÖZKAN adlı müşterinizin 478125578 nolu gönderisi 2 parça halinde yola çıkmıştır.','1',NULL,NULL),
('3b4419ba-1f0d-42ff-9af6-e176d878f608','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120\'LİK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('3b44c245-d491-4310-a144-c01ff3d01047','4917683202035','371655670 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5698 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371655670\n\nYour shipment with the number 371655670 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5698. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371655670\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('3b45687e-565c-46cf-8ea8-9d66d1148c3d','31634977937','644631223 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9239 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644631223\n\nYour shipment with the number 644631223 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9239. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644631223\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('3b486f5c-9043-426a-98f2-322d5f04abc6','905331602195','Sayın yetkili; KEVSER DENİZ  adlı müşterinize 221368256 nolu gönderinizin 70x120 siyah meşe orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 29.05.2025 17:30:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('3b51d8ed-1e49-47ab-a784-4e23317c71a0','4915786757057','644859309 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9060 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644859309\n\nYour shipment with the number 644859309 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9060. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644859309\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('3b52f514-ea98-4154-9416-e2b5f9fbe69d','05388618969','MUSTAFA AZAMİ adlı müşterinizin 786398335 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('3b55353c-d177-4ad5-aaef-f4b3e7997b13','4917632064278','Sayın MUHAMMER KORKMAZ, 976187023 nolu gönderiniz 9458 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976187023\n\nDear MUHAMMER KORKMAZ, your shipment with 976187023 was delivered to you with the delivery code 9458. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976187023\n\n\nBICARGO','1','d74a364e-c899-455c-8b3f-5a445fba432a',NULL),
('3b56421f-6439-4b5a-8ddf-74390fbf3fea','111111111111111','Sayın MAİL BOXES, 223734808 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223734808\n\nDear MAİL BOXES, your shipment with 223734808 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223734808\n\nBICARGO','2','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL),
('3b5656f2-183e-4297-a015-50a9e6c8398a','4917656562784','Sayın KÖKSAL ÇELİK, 42844174 nolu gönderiniz 7755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42844174\n\nDear KÖKSAL ÇELİK, your shipment with 42844174 was delivered to you with the delivery code 7755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42844174\n\n\nBICARGO','1','c8cb8a48-a710-4ed9-befe-c11c81f0f7df',NULL),
('3b578ae0-8f07-41fe-8d7e-3e34ac9d128d','4915750864806','Sayın MUSTAFA IBRYAMOV, 745907299 nolu gönderiniz 7871 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745907299\n\nDear MUSTAFA IBRYAMOV, your shipment with 745907299 was delivered to you with the delivery code 7871. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745907299\n\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('3b591ce5-d873-4c0b-ae15-1e3841b59313','905336367828','CAROLİE KENZA  adlı müşterinizin 982212726 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('3b64543f-1c40-4b14-b015-a3ca8aab25ad','41782152595','Sayın ALİCAN KABAK , 478224735 nolu gönderiniz 1020 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478224735\n\nDear ALİCAN KABAK , your shipment with 478224735 was delivered to you with the delivery code 1020. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478224735\n\n\nBICARGO','1','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('3b65dc93-e493-429c-9cfc-9faef7d88606','4917672242930','Sayın TUNAY KOCATÜRK, 644196383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644196383\n\nDear TUNAY KOCATÜRK, your shipment with 644196383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644196383\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('3b681723-e23e-49e2-848f-74af23e6086d','32472893913','Sayın NEVİN KIRIK, 745638060 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745638060\n\nDear NEVİN KIRIK, your shipment with 745638060 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745638060\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('3b6972bb-899f-4fae-8834-14b20add2dee','4917641547802','Sayın ENVER HAN ALKAN, 37146102 nolu gönderiniz 10083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37146102\n\nDear ENVER HAN ALKAN, your shipment with 37146102 was delivered to you with the delivery code 10083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37146102\n\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('3b697ba5-b92d-46a4-8601-58e23e83d72d','905335708965',' adlı müşterinizin 248573438 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL),
('3b6c1383-0592-43f7-bbfd-52c9e70fc1a2','905325000478','PASS adlı müşterinizin 412315808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('3b6d7d34-64e9-4bac-9a55-9fc0b40b35cb','31619691823','Sayın FEHMİYE KESERCİ, 478949141 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478949141\n\nDear FEHMİYE KESERCİ, your shipment with 478949141 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478949141\n\nBICARGO','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('3b789774-579c-4b20-bf6e-b97b7afab981','905421855834','Sayın yetkili; NAGİHAN ALKIRAN adlı müşterinize 338829299 nolu gönderinizin Efes Köşe Koltuk ürünü 5 parça halinde KATRE KOLTUK adresinizden 21.08.2025 10:57:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('3b7d4615-d02d-4359-b0c0-113e29a46dd5','905304259202','YASİN OĞUZ adlı müşterinizin 478233957 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('3b87fa09-ac07-49b8-b876-dbc56697e5ed','905078062550','Sayın yetkili; ZEHRA ÜNAL adlı müşterinize 598320188 nolu gönderinizin 8 sandalye ürünü 4 parça halinde LİN SANDALYE adresinizden 08.09.2025 16:21:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('3b8b4e0d-f050-44f0-98df-f4a932d593e6','2747463727374747','412771828 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6391 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412771828\n\nYour shipment with the number 412771828 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6391. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412771828\n\nBICARGO','2','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL),
('3b8c90ab-2f27-4a94-a2c1-db99fb4c1dfd','4917662642928','Sayın SANİ ALAJBEGOVİC, 644344492 nolu gönderiniz 4836 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644344492\n\nDear SANİ ALAJBEGOVİC, your shipment with 644344492 was delivered to you with the delivery code 4836. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644344492\n\n\nBICARGO','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('3b8d178d-63a4-47e7-a8e1-c3e0f0b87578','4915788014296','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('3b8dc62f-2012-4d1a-a0f7-7feda15c5af3','3168244547','437132386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9077 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437132386\n\nYour shipment with the number 437132386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9077. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437132386\n\nBICARGO','2','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('3b8e5a8e-f12d-4749-a5b0-a0afd4ec6850','00491749246020','248720273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7760 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248720273\n\nYour shipment with the number 248720273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7760. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248720273\n\nBICARGO','2','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL),
('3b8f54f3-1234-4981-be81-3cfa932078a6','905428209234','LEYLA AYDIN adlı müşterinizin 31951233 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('3b95252e-bc6c-4a71-891e-8ed75135201f','491788532068','Sayın STEFANİA KİOSKER, 371734068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371734068\n\nDear STEFANİA KİOSKER, your shipment with 371734068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371734068\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('3b9b2ac1-3bc5-4b86-835e-5eed2d0c40dd','004915202033588','Sayın EBRU SOBAY, 437574361 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437574361\n\nDear EBRU SOBAY, your shipment with 437574361 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437574361\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('3b9d3c8d-1232-409c-b7ea-fc939d7d1203','4915736399251','ŞÖFÖR NUMARASI\n					+905467896981','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('3b9efd45-0ee3-4d52-ba33-58d61525f5e2','905443955915','İRFAN ÖZDEMİR adlı müşterinizin 614337059 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e',NULL),
('3ba004b0-3a87-45ff-9411-274ef884aed3','41789431453','Sayın RABİA NALKIRAN, 221307786 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221307786\n\nDear RABİA NALKIRAN, your shipment with 221307786 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221307786\n\nBICARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('3ba3e6e5-b032-4f3d-bbeb-b8ff97487b80','491788611744','Sayın GÜLİZAR KOCADAĞ, 745816008 nolu gönderiniz 1956 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745816008\n\nDear GÜLİZAR KOCADAĞ, your shipment with 745816008 was delivered to you with the delivery code 1956. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745816008\n\n\nBICARGO','1','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL),
('3ba6d464-08de-49e2-b337-abf9e8a88a2b','33652652450','Sayın OSMAN KILINÇ, 478205168 nolu gönderiniz 1158 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478205168\n\nDear OSMAN KILINÇ, your shipment with 478205168 was delivered to you with the delivery code 1158. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478205168\n\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('3ba9d32d-c8bd-4694-9f8e-b64608a87ede','905454259202','ERGÜN YILMAZ adlı müşterinizin 478890979 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c2738111-51d8-4195-8709-efd9bbe4d309',NULL),
('3baa872d-7c54-439d-a87c-fcb5834e5f86','1111122342423133','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','2','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('3baf5a87-8b7a-4bd2-8cae-1584cf1ff74a','4915787850824','140681782 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10964 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/140681782\n\nYour shipment with the number 140681782 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10964. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/140681782\n\nBICARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('3bb22b25-d313-49aa-acac-365f4ef10ea5','905335511664','FATİME YILMAZ adlı müşterinizin 371626943 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('3bb29ead-e443-4436-9800-cb560557799d','905461661672','Sayın yetkili; TAKİ ÇAYCI(K) adlı müşterinize 644257752 nolu gönderinizin 1 ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:29:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('3bb30bf8-04ff-45d3-aa63-8c62ab624aa0','4917683242362','Sayın KENAN BAYAR SSH , 745101735 nolu gönderiniz 6316 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745101735\n\nDear KENAN BAYAR SSH , your shipment with 745101735 was delivered to you with the delivery code 6316. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745101735\n\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('3bb46c84-1df5-441a-819c-5029ef7bc111','336702877593','478142620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1368 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478142620\n\nYour shipment with the number 478142620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1368. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478142620\n\nBICARGO','2','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('3bb4e2fc-2490-4ac3-8715-ee80cddb5781','491781789912','Sayın POLAT, 412346704 nolu gönderiniz 7773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412346704\n\nDear POLAT, your shipment with 412346704 was delivered to you with the delivery code 7773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412346704\n\n\nBICARGO','1','bb90725b-84e6-4211-8728-367d09c14525',NULL),
('3bb5ee62-8745-489e-bea5-ef626f7f35ba','905335511664','SARA CASTRO adlı müşterinizin 371287728 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('3bb745e5-fd24-4781-9443-bcabecf00579','004915254106580','Sayın PATRİK, 735329890 nolu gönderiniz 4236 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735329890\n\nDear PATRİK, your shipment with 735329890 was delivered to you with the delivery code 4236. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735329890\n\n\nBICARGO','2','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL),
('3bbd88fb-2064-4bf1-8df2-3421b7fc672d','491742419200','Sayın UMUTCAN ŞAHİNCİ, 437870707 nolu gönderiniz 3759 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437870707\n\nDear UMUTCAN ŞAHİNCİ, your shipment with 437870707 was delivered to you with the delivery code 3759. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437870707\n\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('3bc27c23-789a-4659-8e9b-ddf956f034f6','491728162123','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('3bc2c9da-e828-4407-9238-32f83eab17b1','905461661672','ERDAL AKDAĞ(K) adlı müşterinizin 644985861 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('3bc41ceb-df73-4f9c-a444-1df604e1eccf','4917620431964','910479941 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1857 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910479941\n\nYour shipment with the number 910479941 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1857. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910479941\n\nBICARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('3bc9ba17-8216-4068-906f-6451abb9b02f','4917628135179','371533444 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9587 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371533444\n\nYour shipment with the number 371533444 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9587. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371533444\n\nBICARGO','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('3bca9568-5400-4b4c-921c-a4841087016b','4917681316361','Sayın BETÜL GÜNER, 644550858 nolu gönderiniz 4359 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644550858\n\nDear BETÜL GÜNER, your shipment with 644550858 was delivered to you with the delivery code 4359. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644550858\n\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('3bcaf538-d733-4aa3-85d6-08a220d8cd96','905517075149','ENVER GÜL adlı müşterinizin 478659791 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('3bcb2eb8-143e-4dee-9473-38002d86d40a','491629293163','Sayın MÜCAHİD GÜZEL, 22162472 nolu gönderiniz 7041 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22162472\n\nDear MÜCAHİD GÜZEL, your shipment with 22162472 was delivered to you with the delivery code 7041. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22162472\n\n\nBICARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('3bcb9819-cb9f-4a3a-955e-a371a945a515','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin TV ALT BLOK ürünü 2 parça halinde Fatura adresinizden 15.10.2025 11:57:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('3bcbc6ba-20c6-4cf2-bd47-2516b7b76b4e','905454259202','MEHMET ÖZKAN adlı müşterinizin 478794904 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('3bcd58f0-c1f4-49ef-b10c-f0d50e735707','33767299223','Sayın HAKIMI MUSTAFA, 982742157 nolu gönderiniz 7846 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982742157\n\nDear HAKIMI MUSTAFA, your shipment with 982742157 was delivered to you with the delivery code 7846. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982742157\n\n\nBICARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('3bce4366-9be5-4b0e-b4b8-d87f24c76841','905454259202','Sayın yetkili; YUSUF TÜRKGELDİ adlı müşterinize 478537954 nolu gönderinizin köşe ürünü 5 parça halinde çelikbey inegöl depo adresinizden 25.04.2025 15:41:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('3bd0f97b-91c2-480b-b3e4-faae8cc8352d','905304259202','MÜCAHİT SÖYLEMEZ adlı müşterinizin 478342417 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('3bd6d7e1-0afd-42fd-9c54-3da540990cbd','0041765845886','Sayın RÜVEYDA ŞAHİN, 12771217 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12771217\n\nDear RÜVEYDA ŞAHİN, your shipment with 12771217 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/12771217\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('3bdceb0e-a308-4b79-a3ab-0283976746b4','905461661672','HASRET AVCI adlı müşterinizin 644890175 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('3bdf1fb9-6629-4ffa-902c-ee1cf7f61a76','4917681126034','ŞÖFÖR NUMARASI\n					+905467896981','1','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('3be2c1ac-398b-4458-9772-7ed46607582c','4917676660206','371672954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5938 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371672954\n\nYour shipment with the number 371672954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5938. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371672954\n\nBICARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('3be2eab4-2f3d-4816-afb1-e96477861a7e','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin 250 CM SİYAH TV ÜNİTESİ ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 14:20:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('3bed7d45-e732-4c1f-b1d7-4d2c37fed4d9','33760080094','734499902 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7779 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734499902\n\nYour shipment with the number 734499902 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7779. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734499902\n\nBICARGO','1',NULL,NULL),
('3bf2b22c-7e5d-471e-8345-a9ac30b111d4','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Traverten Sehpa ve Vazo 100 cm ürünü 1 parça halinde Fatura adresinizden 14.10.2025 14:26:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('3bf2d784-fbbc-4c81-aec4-64c8160c8cb0','905535521975','NİSRİNE  adlı müşterinizin 019814367 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('3bf60e0f-3034-421a-97f4-e82cf86d679b','491784042586','Sayın ONUR ÖZÇELİK, 371695056 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371695056\n\nDear ONUR ÖZÇELİK, your shipment with 371695056 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371695056\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('3bfeeb32-bfee-4225-b265-28ca186ef5a2','33613166090','614529512 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2588 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614529512\n\nYour shipment with the number 614529512 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2588. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614529512\n\nBICARGO','1','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('3c02c6e1-800f-4c81-a838-a60e67d53c45','4915209045743','127639932 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2820 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127639932\n\nYour shipment with the number 127639932 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2820. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127639932\n\nBICARGO','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('3c059070-ebea-4402-bc84-9d410fb25ee7','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E337 DEJAVU PORTMANTO AYNALI ürünü 1 parça halinde Fatura adresinizden 03.09.2025 14:10:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('3c06d584-1eab-4a2b-8c4a-92fb01d2c4a7','9053259981980','Sayın yetkili; MEHMET ORMANOĞLU adlı müşterinize 614636969 nolu gönderinizin PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL,PAKKO EVDELÜX ALFA PİYON MODÜL VE PAKKO EVDELÜX ALFA ŞARJLI ARA MODÜL ürünü 6 parça halinde PAKKO KOLTUK adresinizden 22.09.2025 12:23:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('3c090812-0fca-40f2-8fcb-2649f2a97241','33750583147','Sayın SULTAN GÖR, 478212601 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478212601\n\nDear SULTAN GÖR, your shipment with 478212601 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478212601\n\nBICARGO','2','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('3c0c8a2b-0ca0-49f1-aef7-32d029973f91','436766461961','371684650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371684650\n\nYour shipment with the number 371684650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371684650\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('3c0d4a24-0b6f-44e6-8b58-f5e5d7bb5a1c','33679750944','Sayın KEVSER DENİZ , 221368256 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221368256\n\nDear KEVSER DENİZ , your shipment with 221368256 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221368256\n\nBICARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('3c0d86de-5104-41b2-a6ee-59aff8ea986a','905365908694','PASS adlı müşterinizin 223441694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('3c10e79a-315a-40e6-a583-c7a8900b8355','905325998198','PINAR BARUTÇU adlı müşterinizin 6148124 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','203b6560-2fe1-4637-804e-b6b6df86b59f',NULL),
('3c155600-5588-49e1-8c34-0c0d7040c26e','905079047428','MEHMET EMİN KARAGÜZEL adlı müşterinizin 449704156 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('3c171865-1556-4c0f-9035-d738530974c8','4917660473262','Sayın GAMZE ŞAŞMA, 644523362 nolu gönderiniz 7194 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644523362\n\nDear GAMZE ŞAŞMA, your shipment with 644523362 was delivered to you with the delivery code 7194. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644523362\n\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('3c1b3eae-1199-4837-b44b-8b01b43df74a','033641874047','734627626 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8160 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734627626\n\nYour shipment with the number 734627626 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8160. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734627626\n\nBICARGO','2','8c3b10ad-bfb3-4939-a407-5ebb29115ccb',NULL),
('3c217eea-17fc-42ac-9531-448d1725d558','33658512711','Sayın TUNCAY AKAR, 745483178 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745483178\n\nDear TUNCAY AKAR, your shipment with 745483178 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745483178\n\nBICARGO','1','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL),
('3c28dbfe-db3a-4b2f-b61f-4fb85b12d27a','4917620485036','598384021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8397 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598384021\n\nYour shipment with the number 598384021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8397. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598384021\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('3c30ca50-37bd-4370-b0bb-8ac3666d12e6','905355928266','El osman adlı müşterinizin 412877197 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2d2e3588-712f-4c84-a6f5-a45bc45a416b',NULL),
('3c34c716-9c61-4fe8-881a-315ea8b53b9e','905325165070','Sayın yetkili; HASAN ÇETİNER adlı müşterinize 734230509 nolu gönderinizin PUF ürünü 1 parça halinde İnobilya Mağaza adresinizden 05.02.2025 14:02:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3218de28-55a1-4ef9-97e9-ca2400fc4715',NULL),
('3c3a3c62-3d4c-4027-bd11-ae6eeffacc3c','32489166477','Sayın ESMANUR ZENGİN , 221668922 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221668922\n\nDear ESMANUR ZENGİN , your shipment with 221668922 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221668922\n\nBICARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('3c3e9c81-b052-45c1-a143-72d1611dcff5','905078062550','Sayın yetkili; FADİME ERİMEZ adlı müşterinize 598425779 nolu gönderinizin 6 SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 02.10.2025 15:18:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('3c3f90af-50bd-44e9-8793-742c469e709c','905350617509','Sayın yetkili; TALA KURAEZAN adlı müşterinize 613137842 nolu gönderinizin Sehpa ürünü 1 parça halinde Fatura adresinizden 01.07.2025 17:49:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL),
('3c46a024-6a57-4506-a723-160f824bdbf6','41782664887','449178440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9530 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449178440\n\nYour shipment with the number 449178440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9530. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449178440\n\nBICARGO','1','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL),
('3c48881d-eda8-4b49-a273-2103f586b3cf','436602086672','Sayın ORHAN GAZİ ÇEKİCİ, 371699257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371699257\n\nDear ORHAN GAZİ ÇEKİCİ, your shipment with 371699257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371699257\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('3c535517-f389-4018-a16b-98d052b7205a','905079358213','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin SSH TEK SANDALYE  ürünü 1 parça halinde BEYMİ  adresinizden 03.10.2025 18:15:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('3c5a30d1-e5a6-4b28-a4b5-aae6762778a1','4915778521102','Sayın ENGİN TV ÜNİTESİ , 248269890 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248269890\n\nDear ENGİN TV ÜNİTESİ , your shipment with 248269890 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248269890\n\nBICARGO','2','af4e1860-0998-4434-bd62-e28f7958cebe',NULL),
('3c66d0a6-479d-427d-8eab-1c169b12aac3','905079358213','FİKRET AYDIN adlı müşterinizin 745439695 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL),
('3c6ce230-6a04-4ac7-b43e-e549e2bf2992','436767311848','Sayın HÜMEYRA ZEYREK, 37152330 nolu gönderiniz 6523 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37152330\n\nDear HÜMEYRA ZEYREK, your shipment with 37152330 was delivered to you with the delivery code 6523. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37152330\n\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('3c71ce98-2707-4f27-a3af-1d807fa24311','905428209234','ÖMER FARUK ÇANAK adlı müşterinizin 31934282 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('3c83b7b8-f818-4e30-9304-2dd9e2cee7fe','3445353423553535','Sayın CAMLAR-SALİH AK, 248217260 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248217260\n\nDear CAMLAR-SALİH AK, your shipment with 248217260 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248217260\n\nBICARGO','2','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('3c842c83-1475-490f-853e-5d62f50a2480','905336367828','SABRİNA ZAHEY adlı müşterinizin 982555492 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL),
('3c84639e-4db2-4cee-9906-c6017d6ff5a6','4917681316361','Sayın BETÜL GÜNER, 644550858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644550858\n\nDear BETÜL GÜNER, your shipment with 644550858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644550858\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('3c875267-bbb0-47a9-8ac2-525166ad371d','905304259202','SÜMEYYE ARSLAN adlı müşterinizin 478719602 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('3c8ac04a-01d7-4876-a803-3f4ead688014','905454259202','KEMAL ETKER adlı müşterinizin 478631020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('3c8d81e1-cd5e-4911-983a-25db07230b0f','491634722211','Sayın MÜCAHİT SÖYLEMEZ, 47842524 nolu gönderiniz 3743 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47842524\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 47842524 was delivered to you with the delivery code 3743. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47842524\n\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('3c8f3f7c-0ab4-4668-828d-0b374a88d89c','491738798802','Sayın MELİKE ÇALIŞKAN, 598172413 nolu gönderiniz 9233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598172413\n\nDear MELİKE ÇALIŞKAN, your shipment with 598172413 was delivered to you with the delivery code 9233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598172413\n\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('3c906b2a-69bd-4c4a-bb03-3793b3e7012d','491788532068','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('3c90d8e8-481f-410f-a57d-f81b53046606','905336367828','MAOUD HABİBİ adlı müşterinizin 982765286 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL),
('3c923d9d-6d8f-404b-8cf1-c83059e9664a','436508346455','DRİVER\n					ADNAN\n+905354622027','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('3c92a8a4-2984-465a-8525-bb0685df5dec','436505113533','524289921 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9353 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/524289921\n\nYour shipment with the number 524289921 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9353. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/524289921\n\nBICARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('3c9b9f29-afd0-4c6d-8857-38b1882f19ed','905335511664','ALİ CAN YILMAZ adlı müşterinizin 371102325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('3c9c20cc-7680-47f5-a3a1-ccc0614da718','905461661672','ÖMER GEDİK adlı müşterinizin 644113252 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('3ca3b2c6-6ad8-44ea-b688-83d0387928d3','33618459202','Sayın ALİCE CHOCRON, 478589258 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478589258\n\nDear ALİCE CHOCRON, your shipment with 478589258 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478589258\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('3ca4b0ae-50a7-498b-ac64-70e302cc2c0b','4916221534324917','ŞÖFÖR İKETİŞİM\n					+905301824880','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('3ca621e0-2ffa-4de2-a5dc-844b812a0675','004915202033588','Sayın EBRU SOBAY, 437574361 nolu gönderiniz 8711 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437574361\n\nDear EBRU SOBAY, your shipment with 437574361 was delivered to you with the delivery code 8711. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437574361\n\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('3caae0a3-95ed-4a53-993a-688454869594','491795103491','517558560 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3161 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517558560\n\nYour shipment with the number 517558560 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3161. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517558560\n\nBICARGO','1','fed099bd-765c-4045-9372-03dae428fedb',NULL),
('3cabb46a-d2e0-444e-a4e0-b1a3f22581d9','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('3caf93f4-8204-4a11-837f-a664d71b0e1f','4915756075578','Sayın YASEMİN GÜNDOĞDU, 644340759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644340759\n\nDear YASEMİN GÜNDOĞDU, your shipment with 644340759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644340759\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('3cb0a685-15f3-449e-89e9-6b1e491d37ef','32489297598','Sayın FUAT SÜRER, 437392386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437392386\n\nDear FUAT SÜRER, your shipment with 437392386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437392386\n\nBICARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('3cb3f49b-98dd-41fb-bc85-b55b60663007','41764460655','Sayın CELAL, 100605954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/100605954\n\nDear CELAL, your shipment with 100605954 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/100605954\n\nBICARGO','1','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL),
('3cb5eaaf-9ff8-438a-91c4-88b56ebf9d6b','905331602195','Sayın yetkili; GÜLSÜM UÇAR  adlı müşterinize 221345365 nolu gönderinizin 120 çap Dante ceviz masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:57:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('3cb9a535-10c9-4cdf-ac0b-60d6222ffb7b','905304259202','DAVUT DEĞİRMENCİ adlı müşterinizin 478686372 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL),
('3cbf521d-c482-4b73-a724-729465eaf2c3','905304259202','Sayın yetkili; KISMET URDOĞAN adlı müşterinize 478560084 nolu gönderinizin 2 AD. BERJER VE AYAK KUTUSU ürünü 1 parça halinde çelikbey inegöl depo adresinizden 13.02.2025 23:17:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('3cc0c21b-f632-44c1-9d29-00b23a5ead1c','33616174478','Sayın HÜLYA ÇELİK , 517910414 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517910414\n\nDear HÜLYA ÇELİK , your shipment with 517910414 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517910414\n\nBICARGO','1','398f18a6-4116-4296-8890-4d154fc30789',NULL),
('3cc217d7-baee-4935-a8e1-85950831e5c5','4915232016495','614987879 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1333 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614987879\n\nYour shipment with the number 614987879 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1333. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614987879\n\nBICARGO','1','a72800e1-54dc-4d60-b293-ca2184c62129',NULL),
('3cc295bb-5b0c-4c6f-b5cb-b33d6cf2d164','905304259202','EDİZ DİNLER adlı müşterinizin 478989383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('3cc80ed3-89c2-43b3-a40b-bfa82baf69a2','905079358213','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin FRANCO T SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 10.06.2025 11:38:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('3cc89d05-e8db-4493-8174-392c5a209abb','905335511664','Sayın yetkili; MUAMMER CANPOLAT adlı müşterinize 371376503 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 10.04.2025 12:17:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('3cd4228f-6b65-4943-9b6d-55a06e18bb2e','32489954615','Sayın ÜMİT MORCA, 644377995 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377995\n\nDear ÜMİT MORCA, your shipment with 644377995 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644377995\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('3cd7cf00-1a23-4cf7-b0e1-1cf66e37dfd9','4747473637373737','Sayın SEYFETTİN, 412223405 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412223405\n\nDear SEYFETTİN, your shipment with 412223405 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412223405\n\nBICARGO','2','c67fa905-f2ae-4d60-a3cb-8209edbe7b9c',NULL),
('3cd7d86f-8104-48ad-ab72-761613815a98','905324097429','MURAT BAYDAR adlı müşterinizin 879845359 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('3cd9f3ee-efb3-452d-81f4-6f476d057d8f','33605875913','750363306 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4712 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750363306\n\nYour shipment with the number 750363306 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4712. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750363306\n\nBICARGO','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('3cda713c-5405-4047-9892-f4b00c0b4ab2','905517075149','Sayın yetkili; AYSUN ELİBÜYÜK SSH adlı müşterinize 478646824 nolu gönderinizin kumaş ve bir adet ayak ürünü 1 parça halinde RİXXE adresinizden 24.10.2025 19:16:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26021dc0-1339-4317-be03-053c91e39d17',NULL),
('3cdbdd02-6a46-49fe-a3cb-c0b81f0217a1','4917676864801','Sayın MELEK IŞIK, 644739716 nolu gönderiniz 8276 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644739716\n\nDear MELEK IŞIK, your shipment with 644739716 was delivered to you with the delivery code 8276. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644739716\n\n\nBICARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('3ce4e88c-a296-432a-8c74-ed4ca20adcbb','4917657600955','Sayın MECİT AVCI, 478957028 nolu gönderiniz 1837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478957028\n\nDear MECİT AVCI, your shipment with 478957028 was delivered to you with the delivery code 1837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478957028\n\n\nBICARGO','2','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('3ce9dcf1-6be2-4db5-98f4-16aeba16454b','491778507163','Sayın ELİF KELEŞ, 455460659 nolu gönderiniz 10147 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455460659\n\nDear ELİF KELEŞ, your shipment with 455460659 was delivered to you with the delivery code 10147. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455460659\n\n\nBICARGO','1','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL),
('3ceae97d-7aca-45d8-88c2-63a8ad199237','905078062550','Sayın yetkili; NUSRET VAROL VURAL adlı müşterinize 598427868 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 21.08.2025 15:10:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('3cedc642-6c61-49d3-91d6-98ab1823a508','05394752647','Sayın CİHAN TOKAY(K), 644407379 nolu gönderiniz 10183 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644407379\n\nDear CİHAN TOKAY(K), your shipment with 644407379 was delivered to you with the delivery code 10183. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644407379\n\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('3cedd5e3-6553-425d-a4b8-d713b0d4e173','4917655561792','Sayın KADER ŞAHİN, 598719647 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598719647\n\nDear KADER ŞAHİN, your shipment with 598719647 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598719647\n\nBICARGO','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('3cf40636-d1e8-4d7a-bb61-0a04c5a4950c','905301592882','EKREM ASLAN adlı müşterinizin 910632087 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('3d04b963-0b5b-4664-ab02-648e3c97cc9c','33608517581','Sayın İBRAHİM AYIK , 449700444 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449700444\n\nDear İBRAHİM AYIK , your shipment with 449700444 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449700444\n\nBICARGO','1','61867c22-c86f-44a9-a203-2b810c74f596',NULL),
('3d07511a-49a7-46ce-a5fc-5f46df08f63c','905304259202','OSMAN KILINÇ adlı müşterinizin 478205168 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('3d091e36-5fc6-443b-ba34-66412ee89e14','4915147524518','745619301 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745619301\n\nYour shipment with the number 745619301 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745619301\n\nBICARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('3d0f1cbb-edfe-450b-aad6-1e1ad5cdeda5','905534084469','Sayın yetkili; ROMİNA ÇÖPLÜ adlı müşterinize 127927013 nolu gönderinizin TRAVERTEN MASA VE TRAVERTEN İKİLİ SEHPA ürünü 1 parça halinde Fatura adresinizden 24.01.2025 18:59:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('3d151772-5470-4304-aaa8-bb8332a62d55','905325998198','Sayın yetkili; ALAETTİN BAYKAN adlı müşterinize 614396499 nolu gönderinizin ZARARSIZLAR DEMET ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 27.11.2024 14:17:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74fe07f7-1a7f-4967-a60e-9e6e00adcc0d',NULL),
('3d16598b-5a6d-4c34-ac58-753ce472d734','05050220385','478675012 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5941 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478675012\n\nYour shipment with the number 478675012 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5941. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478675012\n\nBICARGO','2','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('3d17c17d-34d3-48e0-ba03-01bccd896665','32494484997','Sayın DEFNE AKAY, 478642368 nolu gönderiniz 1493 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478642368\n\nDear DEFNE AKAY, your shipment with 478642368 was delivered to you with the delivery code 1493. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478642368\n\n\nBICARGO','1','967d15a7-2096-45bd-bc90-7a65319402f4',NULL),
('3d19ced0-f60e-4ba3-9ba0-d8c05e267e11','31640579879','Sayın BARLEB KASS HANNA, 644106987 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644106987\n\nDear BARLEB KASS HANNA, your shipment with 644106987 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644106987\n\nBICARGO','2','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('3d1a72bb-8298-4ada-a9d9-3bdd4f63ef4e','32489166477','Sayın ESMANUR ZENGİN , 221668922 nolu gönderiniz 3302 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221668922\n\nDear ESMANUR ZENGİN , your shipment with 221668922 was delivered to you with the delivery code 3302. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221668922\n\n\nBICARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('3d1bd957-df0b-496d-a81d-eabc3962e918','905333221039','GÜLSEN ERDİNÇ adlı müşterinizin 750717756 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('3d1c754c-f739-4839-915e-b692e4a7f159','31634031801','Sayın MUSTAFA UZUNBOY, 47867667 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47867667\n\nDear MUSTAFA UZUNBOY, your shipment with 47867667 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47867667\n\nBICARGO','1','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL),
('3d1ffbe4-64f5-4ac2-bc02-05a0f6cdfbd3','436604962982','644319069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8993 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644319069\n\nYour shipment with the number 644319069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8993. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644319069\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('3d21cc22-b4d5-4175-9186-2bd1358d68ba','905335511664','SHİMA MAKEH VANDİ adlı müşterinizin 371865484 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('3d23f12a-5fad-4750-843e-c998e22033a7','33782340961','982545187 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10410 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982545187\n\nYour shipment with the number 982545187 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10410. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982545187\n\nBICARGO','1','7cefa81c-deac-4617-8809-7002f9076b03',NULL),
('3d256e15-65b7-4c93-8ba5-ad2d99d9e62b','905451571652','Sayın yetkili; NİLGÜN LEUKEL adlı müşterinize 531629494 nolu gönderinizin Berjer ürünü 1 parça halinde PABLO HOME adresinizden 26.09.2025 11:36:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('3d286651-d0f3-4f6c-9ee2-a49ab08a147d','491604615612','Sayın AHMET AĞIRMAN, 371413703 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371413703\n\nDear AHMET AĞIRMAN, your shipment with 371413703 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371413703\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('3d2b706c-2315-4450-9e9c-760425bf26a0','316389917702','Sayın MURAT ŞEKER , 478832291 nolu gönderiniz 10213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478832291\n\nDear MURAT ŞEKER , your shipment with 478832291 was delivered to you with the delivery code 10213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478832291\n\n\nBICARGO','2','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('3d3160c1-f62f-457b-8640-bd1a6c584915','905325000478','ENES adlı müşterinizin 41268257 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('3d391ced-0448-4668-9d00-aa735ad5ca72','905331602195','ALİHAN ARATEKİN adlı müşterinizin 221322415 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('3d3ad758-84ef-4700-a7c7-fa06a0956b42','905336367828','HAKAN ASLAN adlı müşterinizin 982858369 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL),
('3d3c710b-b30f-4942-9887-50214e3f4be2','33666268323','Sayın FİRDEVS ORHAN, 221407228 nolu gönderiniz 1621 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221407228\n\nDear FİRDEVS ORHAN, your shipment with 221407228 was delivered to you with the delivery code 1621. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221407228\n\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('3d406a72-790e-4f80-b814-b327194b2ea5','905517075149','Sayın yetkili; YEZNİK ADORYAN adlı müşterinize 47816855 nolu gönderinizin TV ÜNİTESİ ürünü 2 parça halinde medusa home adresinizden 26.09.2025 16:39:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebece0e-bf8d-4678-bf15-17e6bed10020',NULL),
('3d413a7d-12e2-4ebd-b58b-e80317bf29ab','905335511664','MEHMET AKHAN adlı müşterinizin 371998665 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('3d441410-d558-4104-9451-eef6be2845d0','33642608703','Sayın YASEF İCEL, 47865598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47865598\n\nDear YASEF İCEL, your shipment with 47865598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47865598\n\nBICARGO','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('3d45a273-984b-4751-8a07-8d373eae5f86','491723775504','Sayın BÜLENT GÜZEL, 428647459 nolu gönderiniz 7510 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428647459\n\nDear BÜLENT GÜZEL, your shipment with 428647459 was delivered to you with the delivery code 7510. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428647459\n\n\nBICARGO','1',NULL,NULL),
('3d4793e5-cf47-497d-9f47-13398054a27c','4917666559986','412608739 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8790 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412608739\n\nYour shipment with the number 412608739 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8790. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412608739\n\nBICARGO','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('3d4b1323-fb55-4971-b399-c67bd04f1151','5325000478','Sayın AAAAAAA BBBBBBBB, 15.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8918579\nŞifre : 8918579\n			\nBİCARGO','1',NULL,'8b91c8b5-7964-4aaa-a094-76edbabdef3b'),
('3d4d9881-5ac6-427b-8410-754aee65fe93','905304259202','SERKAN ÖZBAY adlı müşterinizin 478800752 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('3d4f9ca2-65c5-413f-9d9d-d511822b7421','4917684399909','Sayın ABDULLAH DEMİR, 745105520 nolu gönderiniz 6832 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745105520\n\nDear ABDULLAH DEMİR, your shipment with 745105520 was delivered to you with the delivery code 6832. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745105520\n\n\nBICARGO','1','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL),
('3d50cf04-9ca8-4173-8123-e45f01ed297d','33669711120','Sayın SEMİH ELMAS, 478173801 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478173801\n\nDear SEMİH ELMAS, your shipment with 478173801 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478173801\n\nBICARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('3d53faa9-16de-4523-899e-38b83435728f','4917631419046','Sayın NADİR KURUKOL , 428414858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428414858\n\nDear NADİR KURUKOL , your shipment with 428414858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428414858\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('3d5b0cbf-c8a7-43f4-946f-2e67903dcec5','905331602195','KAYHAN BOZKURT adlı müşterinizin 221692379 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('3d5bea2f-2038-4c3f-b779-fc294e1997a7','491788201134','Sayın ÇUVAL , 976423277 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976423277\n\nDear ÇUVAL , your shipment with 976423277 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976423277\n\nBICARGO','1','79c8efb8-c504-45ca-bec0-780372b87574',NULL),
('3d5cf037-40cc-44d7-a5df-9fd9ca88153f','4915152091392','Sayın SÜLEYMAN KAYHAN, 478763903 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478763903\n\nDear SÜLEYMAN KAYHAN, your shipment with 478763903 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478763903\n\nBICARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('3d5e6e9d-5df5-41ea-9d28-36bccf3142e0','4306641865848','Sayın İDRİS EŞKIN, 910593915 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910593915\n\nDear İDRİS EŞKIN, your shipment with 910593915 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910593915\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('3d5f3f8a-0ac4-4248-b81b-e9da04e55e99','905301592882','ROHAT KALABAŞ adlı müşterinizin 910245715 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('3d61ba4c-6842-4d6e-96ad-4ef45647c7cd','905304259202','MUSTAFA ÇELİK adlı müşterinizin 47888654 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('3d654dcc-6ae9-49ec-b6a4-972e51ddfeae','4915560261024','Sayın HALİL İBRAHİM BACAKSIZ, 976894167 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976894167\n\nDear HALİL İBRAHİM BACAKSIZ, your shipment with 976894167 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976894167\n\nBICARGO','1','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL),
('3d665dbd-e770-4543-9499-9ee483d08bcf','905069116877','Sayın yetkili; ÖZÖZGECAN URAL  adlı müşterinize 817121694 nolu gönderinizin Star köşe ürünü 6 parça halinde Fatura adresinizden 23.05.2025 15:50:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('3d6bcc3e-37b6-4e33-97b6-29d444e7d2f0','905331602195','MERVE KORKMAZYUREK adlı müşterinizin 221511033 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('3d6ec975-a80e-4789-9a52-8c9f47696c31','905079047428','MOHAMMAD MASOUD adlı müşterinizin 449234624 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL),
('3d6fdf49-fbe2-402f-8a02-a26ac81ca323','436769039960','221758948 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2302 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221758948\n\nYour shipment with the number 221758948 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2302. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221758948\n\nBICARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('3d7bd7f6-1ef8-4248-8c84-4b3a03964c41','905454259202','HALİL GÜLER adlı müşterinizin 478418764 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a95b6f69-d856-411d-92e3-628c20975e08',NULL),
('3d7f4c92-b2af-47e7-9a14-7d0fc789f939','905461661672','Sayın yetkili; GHAZAL TARIK İLHAN adlı müşterinize 644826740 nolu gönderinizin sandalye ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 08.08.2025 15:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('3d7fcbda-daa3-4af8-857d-886d7e5b0952','31611196921','Sayın ANDREW YARBUG(K), 644799923 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644799923\n\nDear ANDREW YARBUG(K), your shipment with 644799923 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644799923\n\nBICARGO','1','7e8785f1-7130-4936-8f4d-d44ffa1d9b07',NULL),
('3d80fa84-4c6c-4af4-bc74-a709529f047f','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin DRESUAR TV ÜNİTE ORTA SEHPA ürünü 9 parça halinde mobilyalar  adresinizden 21.08.2025 16:54:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('3d829200-712d-4ec5-9f9d-ab3c57aff924','004915125808648','Sayın ARZU YILDIRIM, 734525943 nolu gönderiniz 3917 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734525943\n\nDear ARZU YILDIRIM, your shipment with 734525943 was delivered to you with the delivery code 3917. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734525943\n\n\nBICARGO','2','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL),
('3d830b3c-754b-4632-ab59-61d89e581a41','905510396989','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA ORTA SEHPA / YAN SEHPA ürünü 4 parça halinde ROİS adresinizden 22.09.2025 14:18:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('3d867b8e-d60c-47df-842b-7eb325095f18','905075277637','DAVUT YILDIRIM adlı müşterinizin 745991438 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL),
('3d9151aa-aa50-4727-87fd-7bd0f9b76cd9','31647505800','Sayın HİLAL YILDIZ-MERT YETGİN, 221440431 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221440431\n\nDear HİLAL YILDIZ-MERT YETGİN, your shipment with 221440431 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221440431\n\nBICARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('3d92fb12-2de9-472b-a661-516a06ae3178','905363385813','Sayın yetkili; ÖZKAN KUYUCU adlı müşterinize 976121570 nolu gönderinizin SANDALYE ürünü 2 parça halinde Lego Chair adresinizden 25.06.2025 15:11:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('3d97ee02-e8b6-476e-a62d-2f3e63fc5965','905368336516','Sayın yetkili; VOLKAN CELİK adlı müşterinize 515785688 nolu gönderinizin masa sandalye ürünü 9 parça halinde masami adresinizden 23.07.2025 13:18:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('3d9a9dc2-d022-47bf-885c-3086ec6dc994','905011170016','HÜLYA LAÇİNOK adlı müşterinizin 380497843 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('3d9cf000-9350-437b-b532-2e3d89e84c15','1111111111111111','Sayın EMİNE-YASEMİN, 734109910 nolu gönderiniz 3721 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734109910\n\nDear EMİNE-YASEMİN, your shipment with 734109910 was delivered to you with the delivery code 3721. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734109910\n\n\nBICARGO','2','48599652-b40b-4605-9b8c-4be79cb180f3',NULL),
('3daafe8e-0482-4932-beb5-98044b652511','905059175469','Sayın yetkili; ABDULKADİR AKYURT adlı müşterinize 428851627 nolu gönderinizin cam kapak+menteşe ürünü 1 parça halinde Fatura adresinizden 08.02.2025 19:21:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('3daf72d0-3c2c-4eb7-a760-efd224e36272','491606303499','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('3db08d96-3c71-4445-97e1-f8ca8afc144d','905454259202','DİLAVER ULUTAŞ adlı müşterinizin 47836811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9016d7f6-7477-4afe-9a6c-22410434be77',NULL),
('3db15f49-2ed7-4680-8e7b-d1a3c47d253c','410782698878','Sayın jusuf mehmedi, 982844191 nolu gönderiniz 9897 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982844191\n\nDear jusuf mehmedi, your shipment with 982844191 was delivered to you with the delivery code 9897. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982844191\n\n\nBICARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('3db34747-3dc4-4ceb-a53b-2b4593e03399','4915782263491','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('3db590e1-0618-4bcd-add6-5f624eaa323f','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin müşetirinin ürünleri ürünü 6 parça halinde BİCARGO DEPO adresinizden 13.08.2025 17:49:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('3db5b68d-c7a6-4bbc-8ccc-bcfe6987a4c1','905078062550','SİHAM MAHMOUD adlı müşterinizin 598280715 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('3db7c204-e5c5-4008-a333-1a3db2e16514','491776786642','64446005 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4528 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64446005\n\nYour shipment with the number 64446005 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4528. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64446005\n\nBICARGO','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('3db81d7b-da6a-4d91-a9d5-745e738948db','05388618969','ESRA MURATOGLU adlı müşterinizin 786276080 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('3db8be0f-be6a-48eb-8e8b-d4daaafd3193','905363385813','Sayın yetkili; GÜLNAZ ATMACA adlı müşterinize 976285905 nolu gönderinizin Sandalye ürünü 2 parça halinde Lego Chair adresinizden 19.03.2025 11:39:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('3dbbe869-6f56-433a-a928-f2866088d812','491752616978','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('3dc6910a-ed15-4740-b461-bf778430f9c5','905313340045','ISRA ISKENDER adlı müşterinizin 43736182 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('3dcc46ef-7392-44e4-bea1-880d51b7e437','905333221039','FATİH KAYA adlı müşterinizin 750845897 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL),
('3dcd311d-2a3a-4cc8-8817-41df762b40f0','491725459093','Sayın SÜLEYMAN MAKAS, 910560938 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910560938\n\nDear SÜLEYMAN MAKAS, your shipment with 910560938 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910560938\n\nBICARGO','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('3dce7605-3037-40d5-bd43-9c171aeb0420','4915202016225','Sayın SUAN RASTODER, 486405325 nolu gönderiniz 5157 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486405325\n\nDear SUAN RASTODER, your shipment with 486405325 was delivered to you with the delivery code 5157. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486405325\n\n\nBICARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('3dd0ab8d-87b3-4518-b6f3-39ebd9305af5','31648497230','Sayın HATİCE GÜNGÖR, 465181388 nolu gönderiniz 2317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465181388\n\nDear HATİCE GÜNGÖR, your shipment with 465181388 was delivered to you with the delivery code 2317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465181388\n\n\nBICARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('3dd0fb9f-0720-4267-85a9-429f6b3e577e','905335708965','MUHAMMED HAMIDO adlı müşterinizin 735280128 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL),
('3dd252ed-4cf9-4397-b7c3-703cc175e2b6','41799463289','Sayın MÜLLER CYRİLL, 126525086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126525086\n\nDear MÜLLER CYRİLL, your shipment with 126525086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126525086\n\nBICARGO','1','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL),
('3dd581ce-167f-428b-bbdc-d87d9b64cd54','491744555584','Sayın TUĞBA BALIKÇI, 437154123 nolu gönderiniz 9991 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437154123\n\nDear TUĞBA BALIKÇI, your shipment with 437154123 was delivered to you with the delivery code 9991. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437154123\n\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('3de5a2b0-b8d6-4d25-bc0d-acd6dbfd4b29','905331602195','EL GHZİZAL CHAİME  adlı müşterinizin 221686736 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('3de6973b-050d-413f-9b26-7750e45a533a','905421855834','GALİP YAYLALI adlı müşterinizin 338286320 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('3dea5089-2431-4715-801e-707b5ef96b08','33760923065','223440405 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6103 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223440405\n\nYour shipment with the number 223440405 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6103. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223440405\n\nBICARGO','1','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL),
('3dee6510-31ba-4607-ae54-970e34d6b292','905079047428','SİBEL BAHÇECİ adlı müşterinizin 449902693 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL),
('3df92f2d-1e2a-4646-a4e3-5278ddafb58a','4915906477073','Sayın OSMAN ASLAN, 598127401 nolu gönderiniz 7397 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598127401\n\nDear OSMAN ASLAN, your shipment with 598127401 was delivered to you with the delivery code 7397. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598127401\n\n\nBICARGO','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('3dfb16c5-96fa-4f10-b802-ef459e98ebd6','004915255400500','248533509 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6466 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248533509\n\nYour shipment with the number 248533509 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6466. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248533509\n\nBICARGO','2','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL),
('3dfbcd41-2129-4d2e-bcc5-07fec80fd128','32498162350','412252365 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412252365\n\nYour shipment with the number 412252365 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412252365\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('3e0e39f9-09fe-4e63-8909-6ca18e335857','49162150360','Sayın SÜMEYYE ARSLAN, 478719602 nolu gönderiniz 7205 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478719602\n\nDear SÜMEYYE ARSLAN, your shipment with 478719602 was delivered to you with the delivery code 7205. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478719602\n\n\nBICARGO','2','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('3e101282-3198-4ba8-a402-8785489027a8','05379688307','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','2','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('3e14d57e-5e7d-4c40-8737-b232ca4c3548','33767550958','Sayın NURAY ÖZKAN, 412767922 nolu gönderiniz 3921 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412767922\n\nDear NURAY ÖZKAN, your shipment with 412767922 was delivered to you with the delivery code 3921. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412767922\n\n\nBICARGO','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('3e1791fe-772b-47dd-9e34-733c6bc2787e','4917632856382','İletişim \n					Şöför Murat : +905321616048','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('3e194839-b3b5-4441-9ee9-35b5bcae3a1f','905336367828','SAİDATİ AHMED  adlı müşterinizin 98274489 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('3e1d0cae-7b94-4b0b-a828-ac1a553453d2','905301592882','Sayın yetkili; SONGÜL KEKEÇ adlı müşterinize 910197116 nolu gönderinizin C SEHPA ürünü 2 parça halinde Fatura adresinizden 18.04.2025 10:48:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('3e227b1a-3591-4266-804a-c6110e94490c','491752603457','Sayın ERKAN URAL, 5983047 nolu gönderiniz 4782 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/5983047\n\nDear ERKAN URAL, your shipment with 5983047 was delivered to you with the delivery code 4782. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/5983047\n\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('3e2e7c51-827a-4d9b-b245-e244cfa4ed8c','491736493653','Sayın SANİYE BIÇAKÇI, 43774917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43774917\n\nDear SANİYE BIÇAKÇI, your shipment with 43774917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43774917\n\nBICARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('3e331e2b-79dd-429d-98cf-46830b9eb61d','4915566234500','Sayın RANİA PİSİT, 613512690 nolu gönderiniz 10937 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613512690\n\nDear RANİA PİSİT, your shipment with 613512690 was delivered to you with the delivery code 10937. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613512690\n\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('3e336ea3-90ff-4a96-8835-a4f0c1ae0e4f','','248450889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8095 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248450889\n\nYour shipment with the number 248450889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8095. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248450889\n\nBICARGO','2','87929b1a-65a1-4766-84ad-495ee7ffcb70',NULL),
('3e39737e-0319-4fc2-8c11-19e2973963ef','905442774505','OSMAN BEY adlı müşterinizin 657405652 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('3e3cbd8f-f047-4d0c-8b51-6e0a6939426a','41786933908','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('3e3e070e-f75e-4fa4-bea5-436dc84b7f74','491639801426','EURO MOBEL adlı müşterinizin 107869996 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL),
('3e3ef54f-2e8a-4bc2-879e-71687e71c7e7','4915735267419','İLETİŞİM\n					Furkan şöför = +905078826436','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('3e42a56b-c921-489c-a5ae-8eca42b6c286','4917664793999','Sayın MERVE İÇEN, 351330330 nolu gönderiniz 10631 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/351330330\n\nDear MERVE İÇEN, your shipment with 351330330 was delivered to you with the delivery code 10631. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/351330330\n\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('3e44a4f4-3e44-4eb3-b898-5e63224f9c18','905301592882','Sayın yetkili; SAMED DERE adlı müşterinize 910717262 nolu gönderinizin OPAL SANDALYE (6) ürünü 3 parça halinde Fatura adresinizden 05.03.2025 10:57:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('3e465503-d08f-4d31-91ad-575ea828a1e0','4917624194526','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('3e48ca43-4028-44ec-877e-1adcc2c16162','905335511664','İSA SÖNMEZ adlı müşterinizin 371820680 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('3e4ee9b6-fc27-4e64-9a57-2a8b679e99dd','4915751154309','Sayın FADİME AKDEMİR, 644130393 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644130393\n\nDear FADİME AKDEMİR, your shipment with 644130393 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644130393\n\nBICARGO','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('3e56943a-a6c7-4ac0-99ef-ad62d678b41d','4369914178102','Sayın ELMAS KAYA, 745411152 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745411152\n\nDear ELMAS KAYA, your shipment with 745411152 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745411152\n\nBICARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('3e665d43-3f53-4d22-aebe-52db95275fa2','32483716814','Sayın GURAY SEYFELİ, 221496522 nolu gönderiniz 10985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221496522\n\nDear GURAY SEYFELİ, your shipment with 221496522 was delivered to you with the delivery code 10985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221496522\n\n\nBICARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('3e6666e1-bf83-4c6c-a397-4f1ce5029954','905331602195','LAMİSENT BUSİNESS adlı müşterinizin 221339460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('3e691096-2011-4060-82bb-a19df95a232d','32499630637','Sayın ORKUN SÖĞÜTLÜ, 248292815 nolu gönderiniz 9324 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248292815\n\nDear ORKUN SÖĞÜTLÜ, your shipment with 248292815 was delivered to you with the delivery code 9324. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248292815\n\n\nBICARGO','1','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL),
('3e6f53e7-f475-4b30-ae9b-f204e4035521','905079047428','AKRAMİ MUHAMMED adlı müşterinizin 449292416 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL),
('3e6f5d54-3332-49e9-a57e-53a4d164e867','31641101237','Sayın MURAT ŞEKER , 478832291 nolu gönderiniz 10213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478832291\n\nDear MURAT ŞEKER , your shipment with 478832291 was delivered to you with the delivery code 10213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478832291\n\n\nBICARGO','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('3e7021df-32f7-4f1f-b52a-9d5fccc49fcb','905304259202','KIYMET KARA adlı müşterinizin 478606230 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('3e71c380-6841-4cdd-8e1e-41c7c2cc30d7','4917681229214','Sayın ADEM  GENÇ, 614553524 nolu gönderiniz 7524 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614553524\n\nDear ADEM  GENÇ, your shipment with 614553524 was delivered to you with the delivery code 7524. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614553524\n\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('3e7340c4-299a-445c-ba48-351f554a035b','33609307736','Sayın MUSA EMEK, 501622058 nolu gönderiniz 5502 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501622058\n\nDear MUSA EMEK, your shipment with 501622058 was delivered to you with the delivery code 5502. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501622058\n\n\nBICARGO','1','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL),
('3e761b09-c48c-43cc-bcc4-324f9063aaf6','905079358213','İBRAHİM ULUSOY adlı müşterinizin 74582542 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e10bc182-1962-4aff-b973-093a04c71419',NULL),
('3e7b2f59-7149-4ee6-af86-f040b9920e82','5325000478','Sayın MERT GÜNAL, 12.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6476149\nŞifre : 6476149\n			\nBİCARGO','1',NULL,'64761ce4-d931-4769-87f7-0c76857d5ab9'),
('3e7fea1a-1839-4321-8655-213d9a5d7a3f','33760923065','223275516 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223275516\n\nYour shipment with the number 223275516 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223275516\n\nBICARGO','1','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL),
('3e8341d5-95a0-4841-8b26-5565577728ce','4917630144018','Sayın İBRAHİM AKÇİN, 449215672 nolu gönderiniz 10954 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449215672\n\nDear İBRAHİM AKÇİN, your shipment with 449215672 was delivered to you with the delivery code 10954. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449215672\n\n\nBICARGO','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('3e860a93-83a7-4e3b-959a-d7602f5bbfa3','905539740010','Sayın yetkili; YASEMİN  adlı müşterinize 011894235 nolu gönderinizin sandalye ürünü 8 parça halinde kaan  adresinizden 18.07.2025 15:36:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62738f81-bb34-4a26-b713-b7972c5a1fb5',NULL),
('3e8aeea0-95ce-4193-8e6b-c74d30f4e0a1','905301592882','AHMET EMİN ALGÜL SSH adlı müşterinizin 910375036 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('3e8f941a-fc13-4a3f-903e-0265dea9f848','491728265079','613464926 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8239 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613464926\n\nYour shipment with the number 613464926 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8239. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613464926\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('3e9035f3-0d03-421f-a10d-79455c4f0e30','905304259202','FURKAN SAYGIN adlı müşterinizin 478498501 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL),
('3e964119-addb-47ce-80c1-fc94d9d2e39c','31621850088','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('3e98fe89-c65b-4513-8376-e635a60c32dd','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 29.05.2025 14:15:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('3e9bb72a-71d2-431c-bc03-81c321ceecff','4915204351936','Sayın EMİNE İMRAG, 808830873 nolu gönderiniz 2112 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808830873\n\nDear EMİNE İMRAG, your shipment with 808830873 was delivered to you with the delivery code 2112. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808830873\n\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('3e9d8272-bff5-4611-8ca4-cf0f04bde8e3','04917684676042','Sayın SARA MOHAİUDDİN, 248216907 nolu gönderiniz 10967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248216907\n\nDear SARA MOHAİUDDİN, your shipment with 248216907 was delivered to you with the delivery code 10967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248216907\n\n\nBICARGO','2','746346ca-da04-465b-bff8-fc464fa93ece',NULL),
('3ea02341-7337-482a-86ac-01d477045062','4917622920602','371251508 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371251508\n\nYour shipment with the number 371251508 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371251508\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('3ea483a4-693f-4bea-9571-80c68256f684','33979359707','Sayın TEKİN MAZLUM, 501872546 nolu gönderiniz 4734 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501872546\n\nDear TEKİN MAZLUM, your shipment with 501872546 was delivered to you with the delivery code 4734. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501872546\n\n\nBICARGO','2','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('3ea4d780-40ac-4df3-a03b-060cf9fbd63a','905336367828','Sayın yetkili; HAKIMI MUSTAFA adlı müşterinize 982742157 nolu gönderinizin sehpa  ürünü 9 parça halinde Sehpa İbrahim  adresinizden 20.02.2025 11:43:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('3ea57396-2faf-4196-9e5c-68fee6e6cfa8','905059175469','SÜMEYYE KARAMAN adlı müşterinizin 428103279 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('3ea96553-e1f9-4d26-9343-754c5baf8d5e','905335708965','MUHAMMET AL KHALAF adlı müşterinizin 735785649 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL),
('3eaaf966-23d4-470b-88d2-e45ffb010447','4915566427989','412252425 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10437 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412252425\n\nYour shipment with the number 412252425 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10437. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412252425\n\nBICARGO','1','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL),
('3eacc312-b711-4310-99df-340ae174ae9e','33763157609','Sayın ABARDİ NOURDİN, 221624848 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221624848\n\nDear ABARDİ NOURDİN, your shipment with 221624848 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221624848\n\nBICARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('3eb4994c-d4fd-4bc1-8142-a143b4557217','4917632856382','İletişim \n					Şöför Murat : +905321616048','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('3eb903a2-67e6-4fea-b40d-5444f5b0dfbb','905325000478','FURKAN adlı müşterinizin 412580908 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL),
('3ebad0eb-14d3-42c3-9e1d-9ef9dd5bc914','905349208933','EMRAH ERAYDIN adlı müşterinizin 127395599 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('3ebaf962-3991-4211-b883-06f25756aaaf','33769000460','Sayın EMİN EKRAMOĞLU, 478548963 nolu gönderiniz 10748 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478548963\n\nDear EMİN EKRAMOĞLU, your shipment with 478548963 was delivered to you with the delivery code 10748. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478548963\n\n\nBICARGO','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('3ebb240c-228a-4054-a9cd-6fd9a320d711','491639578000','Sayın Zafer bey, 412454305 nolu gönderiniz 1181 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412454305\n\nDear Zafer bey, your shipment with 412454305 was delivered to you with the delivery code 1181. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412454305\n\n\nBICARGO','1','f7f2db15-90e1-4ab2-89b6-6a61a7161bbf',NULL),
('3ebc02ec-4e74-4733-9db2-47c1664a7e91','41796569349','Sayın MUSTAFA ÖZYİĞİT , 42837513 nolu gönderiniz 6313 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42837513\n\nDear MUSTAFA ÖZYİĞİT , your shipment with 42837513 was delivered to you with the delivery code 6313. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42837513\n\n\nBICARGO','1','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL),
('3ebf28b3-263c-48f0-b232-6d99716af2a6','11111111111111','858365882 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9231 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858365882\n\nYour shipment with the number 858365882 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9231. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858365882\n\nBICARGO','2','c86b331f-7141-49b9-b684-a2a68daaa635',NULL),
('3ecc42da-bda5-4635-9684-5596e8f17df2','905313340045','MİYASE AYDIN adlı müşterinizin 437945654 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('3ecf2825-8a50-4d85-98fd-4ef8d99739f2','4917666876193','910772127 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10058 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910772127\n\nYour shipment with the number 910772127 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10058. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910772127\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('3ed3de62-61bd-419c-8c97-cc6638b608b7','491621579425','Sayın MERYEM BİRCAN ANİK, 437791709 nolu gönderiniz 1117 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437791709\n\nDear MERYEM BİRCAN ANİK, your shipment with 437791709 was delivered to you with the delivery code 1117. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437791709\n\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('3ed4d526-96fd-4be4-b977-f38e390ac954','4917623140674','Sayın ÇAĞLA YILMAZ, 74594122 nolu gönderiniz 5967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74594122\n\nDear ÇAĞLA YILMAZ, your shipment with 74594122 was delivered to you with the delivery code 5967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74594122\n\n\nBICARGO','2','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL),
('3ed957fa-cff4-4776-a2e2-773d7aed8df3','905335708965','SANDALYE adlı müşterinizin 248291895 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL),
('3edd6109-b8db-4258-a55e-b9debceddc13','905454259202','Sayın yetkili; FEHMİYE KESERCİ adlı müşterinize 478949141 nolu gönderinizin köşe-konsol-tv ünite ürünü 8 parça halinde çelikbey inegöl depo adresinizden 07.12.2024 11:38:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('3edf42c5-314e-4f01-99ff-5ddd95c768c8','33631854017','Sayın BURÇİN MEN, 745970479 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745970479\n\nDear BURÇİN MEN, your shipment with 745970479 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745970479\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('3ee24958-d222-40b1-85f7-6279ade1f51e','905335511664','SEDA YILMAZ adlı müşterinizin 371429381 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('3ee276c3-b0a2-4ba5-937b-937601e9840a','905313340045','Sayın yetkili; RASİM OZAN adlı müşterinize 437642214 nolu gönderinizin SANDALYE ürünü 3 parça halinde ard sandalye adresinizden 16.06.2025 15:26:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('3ee6cd1d-9d69-4ad5-a088-ccdf5bbd7963','4915773904587','598665171 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598665171\n\nYour shipment with the number 598665171 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598665171\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('3ef860f7-2953-497c-8ec0-7721e115a6d5','436602591422','Sayın ALİ ÖZ, 315389904 nolu gönderiniz 3675 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/315389904\n\nDear ALİ ÖZ, your shipment with 315389904 was delivered to you with the delivery code 3675. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/315389904\n\n\nBICARGO','1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL),
('3f01c39f-9ac1-4dab-852c-a7de9b7dd237','491632890514','Sayın MEHMET RIZA ÇOBANOĞLU, 478992248 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478992248\n\nDear MEHMET RIZA ÇOBANOĞLU, your shipment with 478992248 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478992248\n\nBICARGO','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('3f091884-dc01-48f8-be0a-758fe788b77b','32470620199','Sayın AHMET OKUTAN, 64415501 nolu gönderiniz 7311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64415501\n\nDear AHMET OKUTAN, your shipment with 64415501 was delivered to you with the delivery code 7311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64415501\n\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('3f0b93b4-fe28-4eed-9441-d4a6600ea662','905394878216','RABİA DULU adlı müşterinizin 517278082 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('3f0ef3df-525d-4742-87ba-04106335a907','905075277637','CEYLAN ÇELİK adlı müşterinizin 745747218 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('3f1204cd-f5d3-4f1f-ba34-9a5206c008c9','4917682107795','598130952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5275 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598130952\n\nYour shipment with the number 598130952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5275. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598130952\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('3f12682b-8e8d-41c2-af74-bb7e835b808b','905335511664','MİTHRA EKHLAS adlı müşterinizin 371665790 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('3f1715d1-275a-48b2-987e-dc323e93ae48','33626936541','976185606 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6297 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976185606\n\nYour shipment with the number 976185606 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6297. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976185606\n\nBICARGO','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('3f1887e0-d208-4113-a451-7623a1ada771','491738798802','598172413 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598172413\n\nYour shipment with the number 598172413 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598172413\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('3f1b8550-a11e-45d6-8883-67515396e8f7','905331602195','ÜLKÜ ÖZTÜRK adlı müşterinizin 221943840 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('3f2623e6-325f-42d8-893f-75aafe7e885f','905079047428','MERHDED AKHTARİ adlı müşterinizin 449680755 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL),
('3f279823-4234-4f91-b76c-9776937e6071','905336367828','ALİ ÇETİN  adlı müşterinizin 982817887 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('3f2ca869-0291-4eeb-8e4b-b98002b4774a','41764721719','Sayın BESİR FAZLİJİ, 613168811 nolu gönderiniz 8269 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613168811\n\nDear BESİR FAZLİJİ, your shipment with 613168811 was delivered to you with the delivery code 8269. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613168811\n\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('3f35897d-cd64-4370-a2e2-1e10485df674','4920350083648','223422825 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7310 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223422825\n\nYour shipment with the number 223422825 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7310. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223422825\n\nBICARGO','2','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('3f35e2b5-62da-4cff-a53e-4797e4e7b1a8','905331602195','Sayın yetkili; HAVVA KUM adlı müşterinize 221443179 nolu gönderinizin 90x190 cm Nevada kayın masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:00:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('3f3676fd-1ac5-4863-bcf9-922ae7c5ddb4','4915778860967','Sayın MERYEM BULAK, 371408514 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371408514\n\nDear MERYEM BULAK, your shipment with 371408514 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371408514\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('3f3ccf70-0abb-4cd5-ba06-e752bbc79e72','905335708965','YALÇIN adlı müşterinizin 735553146 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL),
('3f3f9338-c427-4955-a7b5-723129eede50','31687653993','Sayın HAKİF ZİNAL, 644330933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644330933\n\nDear HAKİF ZİNAL, your shipment with 644330933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644330933\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('3f4ba37e-76f6-4602-9763-752a63e850ae','491637115819','Sayın SOMİA KARABİLA SSH, 59840179 nolu gönderiniz 3325 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/59840179\n\nDear SOMİA KARABİLA SSH, your shipment with 59840179 was delivered to you with the delivery code 3325. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/59840179\n\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('3f4ba687-f00c-4b70-903e-7bd2890e089b','905461661672','ANDREW YARBUG(K) adlı müşterinizin 644799923 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7e8785f1-7130-4936-8f4d-d44ffa1d9b07',NULL),
('3f4f45da-fb2c-4746-8c10-8a62e5605d80','905336367828','Sayın yetkili; CEYLAN YILMAZ  adlı müşterinize 982464994 nolu gönderinizin Konsol  ürünü 3 parça halinde Palermo mobilya  adresinizden 10.03.2025 14:24:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('3f50d64d-14d7-4419-af3a-25a5eb7cbd45','905461661672','MUSTAFA ÖZTAŞ adlı müşterinizin 644147833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('3f53c706-664f-4c98-be0d-bbdbfcb8c4d9','905331602195','Sayın yetkili; MERAL GÖGDAS  adlı müşterinize 221965496 nolu gönderinizin 100x180 cm milas beyaz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.06.2025 18:04:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('3f57e706-c22f-44a6-84cf-73362b900577','4915750864806','Sayın MUSTAFA IBRYAMOV, 745907299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745907299\n\nDear MUSTAFA IBRYAMOV, your shipment with 745907299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745907299\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('3f5c2bfa-1942-40c3-87a0-b7cd51e1e623','491753662810','Sayın NRW MENDEN FRÖNDENBERG, 45586545 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/45586545\n\nDear NRW MENDEN FRÖNDENBERG, your shipment with 45586545 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/45586545\n\nBICARGO','1','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL),
('3f5f8d72-e904-4e58-9e2d-a4794be9ff4e','4653467627566257','Sayın SSHLAR, 817893266 nolu gönderiniz 8171 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817893266\n\nDear SSHLAR, your shipment with 817893266 was delivered to you with the delivery code 8171. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817893266\n\n\nBICARGO','2','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('3f6062de-883f-45a2-836a-432c8676c441','4915772153329','Sayın MUHTEREM KAYA, 465500768 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465500768\n\nDear MUHTEREM KAYA, your shipment with 465500768 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465500768\n\nBICARGO','1','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL),
('3f635b69-605e-4b32-84ab-0bb70ea12d4d','905332942204','DEBORAH BELOVED IDAGU adlı müşterinizin 505987989 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('3f66d8d6-c4e3-4446-87f2-27bdabf293c2','41788083391','Sayın BİANCA AGOSTİNO, 221481972 nolu gönderiniz 10498 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221481972\n\nDear BİANCA AGOSTİNO, your shipment with 221481972 was delivered to you with the delivery code 10498. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221481972\n\n\nBICARGO','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('3f6df49e-d47d-4894-9986-3f6b265a451d','32484767015','Sayın SERDAL, 412586204 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412586204\n\nDear SERDAL, your shipment with 412586204 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412586204\n\nBICARGO','1','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL),
('3f700f67-d3bc-4428-bcf7-e441a7656735','333632361757','Sayın AHMET AKAT, 817619747 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817619747\n\nDear AHMET AKAT, your shipment with 817619747 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817619747\n\nBICARGO','2','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('3f738876-d680-4424-a62c-bcdd4ca60703','33605874886','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('3f746ca1-aeac-4d93-bd61-581bd8bdcc38','436605070364','Sayın ARZU ASLAN, 675965194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675965194\n\nDear ARZU ASLAN, your shipment with 675965194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675965194\n\nBICARGO','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('3f763df0-d828-4873-ade2-496f4145565e','491722630370','371887346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9263 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371887346\n\nYour shipment with the number 371887346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9263. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371887346\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('3f8acfa1-38b1-47fc-880d-ab67faf45f69','491752616978','Sayın BERNA YİLDİRİM, 61390448 nolu gönderiniz 1837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61390448\n\nDear BERNA YİLDİRİM, your shipment with 61390448 was delivered to you with the delivery code 1837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61390448\n\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('3f8d2c40-349b-4c0b-b90d-55a694b82a2c','905443955915','NESİME BAGCI adlı müşterinizin 614652730 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL),
('3f8dc797-f3d4-4bd7-8577-a8c3ba6ecdc4','905054335859','Sayın yetkili; OGUZHAN SARP adlı müşterinize 501345257 nolu gönderinizin BONNY BERJER ürünü 1 parça halinde BRAWWA KOLTUK adresinizden 31.12.2024 10:23:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('3f8ddca3-3538-4127-b2eb-be1cc47956c5','31687211172','Sayın GÖKHAN EYCAN, 478681299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478681299\n\nDear GÖKHAN EYCAN, your shipment with 478681299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478681299\n\nBICARGO','1','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('3f8fbe7f-02d1-4b65-bfc6-4ffcf7870960','05417912611','Sayın CİHAN TOKAY(K), 644407379 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644407379\n\nDear CİHAN TOKAY(K), your shipment with 644407379 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644407379\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('3f8fc815-c2f6-412b-8663-dbb11ab476ec','33753158272','734579794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734579794\n\nYour shipment with the number 734579794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734579794\n\nBICARGO','1',NULL,NULL),
('3f906b61-74bd-4788-b4c1-dcac78c2a00f','4917624864507','910201328 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5215 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910201328\n\nYour shipment with the number 910201328 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5215. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910201328\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('3f90b505-7f79-4b48-9175-35983d0c10f8','905336367828','ESTİFANOS HABTE  adlı müşterinizin 982496646 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('3f910a16-5dc6-4fbd-8c19-1d7e4c95978b','436601893040','Sayın VOLKAN CELİK, 515785688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515785688\n\nDear VOLKAN CELİK, your shipment with 515785688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515785688\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('3f9481b0-2b73-4ca5-bd1a-2e73512bda41','491739497562','Sayın GÜLDEN KARADAĞ, 745580296 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745580296\n\nDear GÜLDEN KARADAĞ, your shipment with 745580296 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745580296\n\nBICARGO','1','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('3f99247f-17ec-4f37-bf31-89986724a4e3','905304259202','ZEYNEP CİHANGİR adlı müşterinizin 478623446 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('3f9f3042-73d6-471c-a709-8759a04a3a4c','9054439559150','Sayın yetkili; ÖMER NEBİ ÖZDEMİR adlı müşterinize 614789435 nolu gönderinizin BAMBİ BLACKSAND YATAK 140x190 VE ALEZ 2 ADET ürünü 3 parça halinde Fatura adresinizden 20.10.2025 11:50:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','1ccb123e-55ae-441d-b623-a1914d69bafb',NULL),
('3fa01899-e438-4a1c-9bb7-4a4c04a08f02','33623950988','962168012 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/962168012\n\nYour shipment with the number 962168012 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/962168012\n\nBICARGO','1','bc037735-462f-4198-8d2d-23ba6a125e18',NULL),
('3fa12e48-8fb4-4fbb-b588-3002acc96039','905336367828','NORBERTO VAZ  adlı müşterinizin 982573889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('3fa1a7a2-08bf-4771-81ed-903a4e1c7bf2','4915202113856','644796083 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4358 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796083\n\nYour shipment with the number 644796083 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4358. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644796083\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('3fa2f9bb-ded5-4257-bd3a-9bcd1b2bf033','4917621155442','478678849 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3260 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478678849\n\nYour shipment with the number 478678849 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3260. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478678849\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('3fa7083b-c98d-4f5b-b9ba-646649080973','905075277637','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin SAGA KÖŞE TAKIMI ürünü 3 parça halinde ELİTİS adresinizden 16.06.2025 16:09:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('3faf473a-45ca-4c20-8a10-74111fe9e0cb','4915152520496','745734415 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7236 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745734415\n\nYour shipment with the number 745734415 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7236. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745734415\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('3fafb9d8-9a99-4099-90c8-2e10163aa52e','33603993672','750496630 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750496630\n\nYour shipment with the number 750496630 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750496630\n\nBICARGO','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('3fbb670f-765b-415f-aa53-14b7297fe65e','33608972898','Sayın SEMAHAT ÇELİK, 221803289 nolu gönderiniz 4471 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221803289\n\nDear SEMAHAT ÇELİK, your shipment with 221803289 was delivered to you with the delivery code 4471. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221803289\n\n\nBICARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('3fbc7d3b-76c3-4b48-92fa-39cc592a151d','1111111111111','Sayın AAAAA, 100655378 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/100655378\n\nDear AAAAA, your shipment with 100655378 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/100655378\n\nBICARGO','2','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL),
('3fbebf22-d2dd-47ad-8822-c4f365a48889','33768894970','Sayın KUBİLAY AKTAR, 910473991 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910473991\n\nDear KUBİLAY AKTAR, your shipment with 910473991 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910473991\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('3fbf1db8-63d6-4b93-bbcf-de0e0472febb','905335511664','Sayın yetkili; SAFİYE TINCA adlı müşterinize 371194748 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elitis Home adresinizden 24.07.2025 10:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('3fc206e8-361e-4fb8-9f28-4be285f1e85d','491634672803','Sayın SILA SEVİL İLGÜN, 644877864 nolu gönderiniz 9555 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644877864\n\nDear SILA SEVİL İLGÜN, your shipment with 644877864 was delivered to you with the delivery code 9555. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644877864\n\n\nBICARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('3fc4178e-226b-4daa-b262-c3624745e112','4915778860967','Sayın MERYEM BULAK, 371408514 nolu gönderiniz 1877 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371408514\n\nDear MERYEM BULAK, your shipment with 371408514 was delivered to you with the delivery code 1877. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371408514\n\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('3fc51da5-eb47-45c5-b7f3-dae3eb3c4d4c','905461661672','(K)HÜSAMETTİN CANBOLAT adlı müşterinizin 644469726 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('3fcab011-be20-44b9-a3c6-753aa9c42285','4369919078247','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('3fcdc588-a791-4791-845c-9298e792d3fa','11111111111111','Sayın MUARREM NAİR, 616254479 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/616254479\n\nDear MUARREM NAİR, your shipment with 616254479 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/616254479\n\nBICARGO','2','5b410819-0339-4c69-a500-825f92b681a3',NULL),
('3fd27d68-37ba-4666-b777-e61ec0224e34','1111111111111111','Sayın ARZU, 734525943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734525943\n\nDear ARZU, your shipment with 734525943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734525943\n\nBICARGO','2','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL),
('3fd2eb0f-5f05-407d-9836-b973776a070e','905461661672','Sayın yetkili; BETÜL ÇELİK adlı müşterinize 644334455 nolu gönderinizin SEHPA ve masa ürünü 2 parça halinde Masami Mobilya adresinizden 11.04.2025 17:30:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('3fda0ed0-355e-4d87-930c-58f56d10c9ab','491742907800','Sayın CAN ÇELİK, 478507488 nolu gönderiniz 10365 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478507488\n\nDear CAN ÇELİK, your shipment with 478507488 was delivered to you with the delivery code 10365. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478507488\n\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('3fde95c3-98bd-46e7-aadd-1f5595e01a13','905331602195','Sayın yetkili; SEYİT GENÇALİOĞLU  adlı müşterinize 221476651 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 09.01.2025 10:42:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('3fe399eb-9806-49a9-bfd2-e53232f470be','6472647627466264','Sayın HARUN, 412302460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412302460\n\nDear HARUN, your shipment with 412302460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412302460\n\nBICARGO','2','f7ef839c-2795-4f15-80a8-414937600965',NULL),
('3ff06a79-5367-47ba-aad9-e5d6dc44e7dd','905075277637','EBRU DEMİRHAN SSH adlı müşterinizin 745433427 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('3ff1058e-aa2a-43e7-8863-e84f9a4e843f','905078062550','AHMAD KADİ adlı müşterinizin 598578683 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('3ffaf2fa-8124-43a4-bb60-d978c5881de3','905079358213','SEYİTHAN ASLAN adlı müşterinizin 745212688 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('3fffb391-4563-4f1a-b795-46f50ff04818','4915730928748','Sayın MUHAMMET AL KHALAF, 735785649 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735785649\n\nDear MUHAMMET AL KHALAF, your shipment with 735785649 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735785649\n\nBICARGO','1','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL),
('4004f18c-4598-420a-99de-a3a6a493b785','33782398897','644257752 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3121 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644257752\n\nYour shipment with the number 644257752 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3121. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644257752\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('4005a9d7-f251-45d4-bb5f-48e6fda7521f','905331602195','Sayın yetkili; CEM KONDU adlı müşterinize 221686815 nolu gönderinizin Balat sandalye  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:27:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('4007df65-c3f7-4f7e-bc8e-e3cd1c0c10d0','905059175469','KADİR ÖZCAN  adlı müşterinizin 428360379 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL),
('400a46dd-bb36-4a26-b319-e51791fd25ad','905079358213','Sayın yetkili; SULTAN YAŞAR  adlı müşterinize 745105230 nolu gönderinizin VOYAGE KÖŞE  ürünü 4 parça halinde RİXXE  adresinizden 03.09.2025 17:33:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143',NULL),
('400b80b2-ba7d-4cb0-acc1-5271a9cc3831','905054335859','Sayın yetkili; BOURAS ABDELGHANİ adlı müşterinize 501703321 nolu gönderinizin efes köşe ürünü 4 parça halinde KATRE adresinizden 27.03.2025 12:23:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('400caa3b-783f-476f-9b3b-9cbba12e71a3','436601666895','644716997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644716997\n\nYour shipment with the number 644716997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644716997\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('4013de59-d158-476f-9e6e-6b215df243b3','31686017559','248421874 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2283 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248421874\n\nYour shipment with the number 248421874 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2283. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248421874\n\nBICARGO','1','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL),
('40168ba4-ddeb-4301-8b7a-c44f7b296520','905336367828','NESLİHAN HANIM  adlı müşterinizin 982614868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('4016b9e9-425d-475a-8385-41fe7095c243','4915208602802','644847294 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5740 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644847294\n\nYour shipment with the number 644847294 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5740. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644847294\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('4017acdb-a0aa-463f-a783-6892b4fd7ea3','11111111111111','Sayın LÖWİK WONEN, 858365882 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858365882\n\nDear LÖWİK WONEN, your shipment with 858365882 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858365882\n\nBICARGO','2','c86b331f-7141-49b9-b684-a2a68daaa635',NULL),
('4017dd94-511b-427b-a34b-d6e48399ca1a','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin VİRAL 4 KAPILI DOLAP + ŞİFONYER + AYNA ürünü 10 parça halinde FAMILY adresinizden 07.05.2025 14:15:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('4018cf3c-f730-4dd9-b378-c2a8f3d84f8f','905418640012','ÇAĞLAR adlı müşterinizin 72247088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2afcf460-a080-4273-8901-46e80d97fa18',NULL),
('40194e47-f0b3-4758-973f-2cf9ecaa1f78','905304259202','Sayın yetkili; MELİSA SAĞLIK adlı müşterinize 478483851 nolu gönderinizin 180X200 DELÜXE YATAK ürünü 1 parça halinde çelikbey inegöl depo adresinizden 15.04.2025 17:04:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('401c1ea0-66d4-4d1a-9e8a-423bcf807fb6','491726242111','Sayın SERHAT MOUEMİN, 675799375 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675799375\n\nDear SERHAT MOUEMİN, your shipment with 675799375 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675799375\n\nBICARGO','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('40271a47-7e2f-4bdb-9d78-ee17069161fd','4915222605151','Sayın SABİNA KAYA, 598548833 nolu gönderiniz 8303 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598548833\n\nDear SABİNA KAYA, your shipment with 598548833 was delivered to you with the delivery code 8303. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598548833\n\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('402b8e0d-d96f-4fac-9f20-0ea6c5d61563','905079358213','FATMA GÜR adlı müşterinizin 745382052 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL),
('4030d85c-fa1c-40ed-aa57-5c7cc48448a2','33620174742','982726615 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1543 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982726615\n\nYour shipment with the number 982726615 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1543. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982726615\n\nBICARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('4031635d-fec3-43cf-82d8-c2aaa1cd66df','491712326850','Sayın YUSUF ALAN, 745130019 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745130019\n\nDear YUSUF ALAN, your shipment with 745130019 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745130019\n\nBICARGO','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('4032898b-3d82-4d6b-9c5e-17e6d958f6d9','905075277637','Sayın yetkili; ADEM DEMİR  adlı müşterinize 745197948 nolu gönderinizin VOYAGE KÖŞE KOLTUK  ürünü 6 parça halinde RİXXE  adresinizden 19.09.2025 14:46:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d9f810e-286d-4bae-8abd-224e036ce2c8',NULL),
('4036e642-199d-4bb9-8bc3-e89611c90a71','905304259202','ONUR PEKŞEN adlı müşterinizin 478958320 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL),
('4037be81-818a-47a6-ba7d-ad5e2f99d306','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin TÜRKMEN DEFNE KOLTUK TAKIMI 3+3+1+1 ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('40383d09-9407-4cd9-b85f-21f686d818d4','33769604042','910163146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7274 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910163146\n\nYour shipment with the number 910163146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7274. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910163146\n\nBICARGO','2','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('4041f09b-6721-4c91-b4a2-93bf6543b6be','4917624864507','Sayın AHMET EMİN GÜL, 910201328 nolu gönderiniz 5215 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910201328\n\nDear AHMET EMİN GÜL, your shipment with 910201328 was delivered to you with the delivery code 5215. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910201328\n\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('404ebf46-a830-4eca-926a-330483b81f01','905340236938',' adlı müşterinizin 146630568 nolu gönderisi 42 parça halinde yola çıkmıştır.','1',NULL,NULL),
('40516b6e-df45-4a72-8057-89189cf63396','905443955915','YASİN ÖKTEM  adlı müşterinizin 614352 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL),
('40529a26-dfdd-40d6-a9b4-234cb70e8af8','41765060550','Sayın SALİHAPİA LEULD, 231250162 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231250162\n\nDear SALİHAPİA LEULD, your shipment with 231250162 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231250162\n\nBICARGO','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('4052d896-9c0d-40da-ae06-306a03d1dcaa','15737520214','Sayın DİLAN HANIM, 486724632 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486724632\n\nDear DİLAN HANIM, your shipment with 486724632 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486724632\n\nBICARGO','2','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('405341ae-27a3-4670-8c5c-2e8884a995fd','436606332095','İletişim \n					Halil Bey (Şoför) :+905541100849','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('4055b85c-268d-4083-86a1-3dab7cf3b4d2','491627680129','Sayın  MAHMUD YUSUF ÖKDEM(SSH), 127945692 nolu gönderiniz 10712 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127945692\n\nDear  MAHMUD YUSUF ÖKDEM(SSH), your shipment with 127945692 was delivered to you with the delivery code 10712. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127945692\n\n\nBICARGO','2','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('405b90d5-723a-4c27-a572-15ea09b5afa7','4915560835617','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('405ecd3c-ec3b-419c-a135-9ed34e948c4a','905331602195','CEM KONDU adlı müşterinizin 221686815 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('4061638a-5b44-4843-9711-ca4b32862c9b','905394878216','GAMZE CAPALBO adlı müşterinizin 517147933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL),
('40643be7-f643-485d-aead-7831fdbad948','905078062550','Sayın yetkili; ERDAL PEKER adlı müşterinize 598944852 nolu gönderinizin BAZA BAŞLIK ürünü 5 parça halinde ALBESSA HOME adresinizden 28.08.2025 16:22:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9665df81-a895-4779-ad78-e6fc3e7f28df',NULL),
('40681133-9be3-4ad1-a1af-00961c6129ad','905059175469',' BİRSEN DÜZ adlı müşterinizin 428990953 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('40681871-6afa-44a9-ab18-bae0a8091c41','905336367828','DİYAR YEŞİLKAYA adlı müşterinizin 982547993 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','47709c5a-15a6-491c-924f-a72a590fd417',NULL),
('4069f62c-4516-485e-8f2b-9257161e3aa9','1111111111','Sayın RAMAZAN INTERMAX •, 12.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2420707\nŞifre : 2420707\n			\nBİCARGO','2',NULL,'c2fc42b0-7c07-4c88-ba52-9f0a89578335'),
('407e35d4-caca-41ab-90d3-9c6d11464f28','4917662386214','Sayın BURCU GÖKÇE, 478559134 nolu gönderiniz 1374 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478559134\n\nDear BURCU GÖKÇE, your shipment with 478559134 was delivered to you with the delivery code 1374. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478559134\n\n\nBICARGO','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('4081967a-8a1e-484f-975d-5dfc6a669702','905079358213','METE BOZDAĞ 1  adlı müşterinizin 745241298 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('40824993-3e5d-46c4-89a2-19c957bb4cb1','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 15.10.2025 13:09:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('4084249f-8890-4a9f-b2b6-e38c01f93744','4915904737735','Sayın ANIL ÇOKBİLİR, 644584641 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644584641\n\nDear ANIL ÇOKBİLİR, your shipment with 644584641 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644584641\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('408e85ee-e50a-40a9-8f8d-03585c2826a0','4369919159261','221476651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221476651\n\nYour shipment with the number 221476651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221476651\n\nBICARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('4090dae0-757f-4703-aae3-bffde8002800','491778777755','Sayın ORHAN KURT, 817578021 nolu gönderiniz 4285 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817578021\n\nDear ORHAN KURT, your shipment with 817578021 was delivered to you with the delivery code 4285. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817578021\n\n\nBICARGO','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('40981505-ddc5-4343-9cfb-41d42c029ad3','491551014119','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('409cc177-4119-46ec-92c6-648d9856df37','491731829748','Sayın GÖKHAN ÜLKER, 371944289 nolu gönderiniz 8457 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371944289\n\nDear GÖKHAN ÜLKER, your shipment with 371944289 was delivered to you with the delivery code 8457. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371944289\n\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('409d210f-5000-44e2-8e7a-468ed8254039','31636101599','Sayın YASİN OĞUZ, 478233957 nolu gönderiniz 1134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478233957\n\nDear YASİN OĞUZ, your shipment with 478233957 was delivered to you with the delivery code 1134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478233957\n\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('40a0f2ee-5d12-4860-95e7-3a683b1e9146','491606817658','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('40a1d293-c2dc-43ba-a000-2dedeb91f545','4369911337727','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('40a260ce-b91b-4074-80f7-64b9ffd1a0df','905461661672','Sayın yetkili; NADİYE ÇAVUŞ adlı müşterinize 644200718 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde LENTE HOME adresinizden 25.07.2025 12:08:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('40b30d1b-a3c8-4b96-aacc-414f51927012','905313340045','RASİM OZAN adlı müşterinizin 437642214 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('40b5ead7-904d-4e1d-a71f-54eef92a9c7c','1111111111','Sayın ZAKARİA MASHHOD, 248352114 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248352114\n\nDear ZAKARİA MASHHOD, your shipment with 248352114 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248352114\n\nBICARGO','2','adf0440c-3715-4603-a3a4-91b6f557e095',NULL),
('40b829eb-957d-499f-9c65-2f2d234c3de1','905313340045','GAMZE ŞAHİN adlı müşterinizin 437400305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('40bc329b-238e-4c3f-a194-870a072f66ed','4917645942929','Sayın ALEYNA KARAKUS, 613787861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613787861\n\nDear ALEYNA KARAKUS, your shipment with 613787861 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613787861\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('40bc71e4-cf52-4531-83ad-737281200ffb','33613166090','614741569 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5001 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614741569\n\nYour shipment with the number 614741569 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5001. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614741569\n\nBICARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('40bd0829-309a-428e-8272-d8616d6c82d5','905363385813','MUHAMMED EL BOUCHATTAOUI adlı müşterinizin 976235260 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('40c4282b-cb30-49ac-b960-67525bc6837b','4915736399251','437250812 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437250812\n\nYour shipment with the number 437250812 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437250812\n\nBICARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('40c5aa2e-253f-4f16-9db8-7d7d1d7746d9','905313340045','ÖZGÜR ÇEŞME adlı müşterinizin 437694817 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('40c8d490-5006-4708-9057-7e1db24f9975','4917670386373','Sayın AYLİN KIRLANGIÇ, 127221315 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127221315\n\nDear AYLİN KIRLANGIÇ, your shipment with 127221315 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127221315\n\nBICARGO','1','96741763-bc18-47ed-be48-0c973149d4fb',NULL),
('40c9bf08-2be7-4d18-8f5f-f98913cbddd0','905304259202','BERİVAN TİNTAŞ adlı müşterinizin 478994871 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('40ccd68e-f54e-4d2e-906a-d97b33bbef62','4917656525814','Sayın İBRAHİM BAĞCI SSH, 745983500 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745983500\n\nDear İBRAHİM BAĞCI SSH, your shipment with 745983500 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745983500\n\nBICARGO','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('40cd5dfa-a9b1-4bdc-afd3-1af39c119caa','436763502568','Sayın EMRE ÇELİK, 278329196 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278329196\n\nDear EMRE ÇELİK, your shipment with 278329196 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/278329196\n\nBICARGO','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('40ceede2-4a66-4409-aa7c-1b1b55260033','905313340045','Sayın yetkili; DERYA ERDOĞMUŞ adlı müşterinize 437578664 nolu gönderinizin Sandalye ürünü 3 parça halinde bicargo depo adresinizden 15.08.2025 15:15:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('40d167d4-c96f-4b75-a37d-9bcc3af2a672','905325998198','Sayın yetkili; ÜLKÜ AKIL adlı müşterinize 614726230 nolu gönderinizin SSH VİRJİN KÖŞE TAKIMI İÇİN 4 ADET AYAK 15 CM ALINACAK. ürünü 1 parça halinde FAMİLY KOLTUK BURAK BEY adresinizden 23.01.2025 10:56:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4218149-4b1c-483c-81b6-8a80932a3219',NULL),
('40d47884-44f0-44e2-ad77-f5badeb96b5d','491629139526','Sayın MEHMET AKİF ATAMAN, 750498273 nolu gönderiniz 5443 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750498273\n\nDear MEHMET AKİF ATAMAN, your shipment with 750498273 was delivered to you with the delivery code 5443. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750498273\n\n\nBICARGO','1','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL),
('40d67018-1a31-44f7-ad32-2d0924feafdd','491624193445','Sayın CEYLAN ÇELİK, 745747218 nolu gönderiniz 6858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745747218\n\nDear CEYLAN ÇELİK, your shipment with 745747218 was delivered to you with the delivery code 6858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745747218\n\n\nBICARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('40d72f7c-4aaf-433d-8f62-137cb508e448','32472837629','644763473 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5395 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644763473\n\nYour shipment with the number 644763473 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5395. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644763473\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('40d7d1c6-626a-4892-b5a9-57ab4550d305','905079358213','Sayın yetkili; SÜVEYLA TARHAN adlı müşterinize 745906539 nolu gönderinizin ASOS GOLD YATAK ODASI  ürünü 22 parça halinde ODALIFE  adresinizden 23.09.2025 13:32:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('40de8547-bc7a-47a5-8930-96ac7e4498d5','905079358213','Sayın yetkili; MILANA PRODANOVIC adlı müşterinize 745837821 nolu gönderinizin ICON KONSOL + AYNA ürünü 3 parça halinde ROIS adresinizden 17.03.2025 12:30:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('40e525ca-0a9a-4fba-a741-8892ac3b28f5','905304259202','Sayın yetkili; BERİVAN TİNTAŞ adlı müşterinize 478994871 nolu gönderinizin karyolasız yatak odası ve konsol ürünü 21 parça halinde çelikbey inegöl depo adresinizden 30.04.2025 16:06:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('40e777aa-e9de-404d-a8ef-11a41609907e','4917670363986','Sayın ALAADDİN ŞAHİN, 734460411 nolu gönderiniz 10370 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734460411\n\nDear ALAADDİN ŞAHİN, your shipment with 734460411 was delivered to you with the delivery code 10370. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734460411\n\n\nBICARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('40eab5bf-80c6-45e3-b643-2f0453a60ae1','4915158036323','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('40ec8d90-16bd-4d73-b37c-192eea80cd2c','905442774505','Sayın yetkili; MERVE ÖZÇOBAN adlı müşterinize 657192716 nolu gönderinizin Traverten masa kasası  ürünü 1 parça halinde Fatura adresinizden 08.07.2025 11:15:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('40ef0f56-6ca5-4c61-bcda-5df134431e1d','4917670281614','371434188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3421 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371434188\n\nYour shipment with the number 371434188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3421. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371434188\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('40f58a3c-32a0-4153-8c04-71c69fcd0fdd','4915737096619','50133684 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2450 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/50133684\n\nYour shipment with the number 50133684 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2450. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/50133684\n\nBICARGO','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('40f90f70-2c67-434c-96ad-f18575bb033d','11111111111','Sayın SANDALYE, 248291895 nolu gönderiniz 10616 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248291895\n\nDear SANDALYE, your shipment with 248291895 was delivered to you with the delivery code 10616. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248291895\n\n\nBICARGO','2','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL),
('40f93fb0-c414-4e82-aef4-968d1641a8bd','41786933908','Sayın ESRA ELİŞ, 428704278 nolu gönderiniz 2764 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428704278\n\nDear ESRA ELİŞ, your shipment with 428704278 was delivered to you with the delivery code 2764. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428704278\n\n\nBICARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('41040e25-4e33-4fb5-a06b-5f14c45eb9b6','4915772159477','Sayın DUYGU DEMİRHAN, 644703173 nolu gönderiniz 10082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644703173\n\nDear DUYGU DEMİRHAN, your shipment with 644703173 was delivered to you with the delivery code 10082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644703173\n\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('41051ce9-82db-4ae6-824e-16224dbeb007','33769426062','910926193 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10672 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910926193\n\nYour shipment with the number 910926193 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10672. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910926193\n\nBICARGO','1','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL),
('41080aee-131b-4026-a9b5-7f5a7afa3972','905454259202','Sayın yetkili; BÜLENT ECEVİT DUROĞLU adlı müşterinize 478368190 nolu gönderinizin KÖŞE TAKIMI ürünü 3 parça halinde Fatura adresinizden 25.12.2024 12:36:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('410d49df-cebf-4c46-bbda-7dbc66be4514','905333221039','Sayın yetkili; BARIŞ ÖZTÜRK adlı müşterinize 750355737 nolu gönderinizin 2 C sehpa  ürünü 2 parça halinde Fatura adresinizden 18.09.2025 11:23:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('4113e676-fc5c-4baa-9278-0eacc79fd736','905461661672','Sayın yetkili; ERHAN ÇEKİÇ adlı müşterinize 644445996 nolu gönderinizin MASA VE SEHPA ürünü 5 parça halinde Masami Mobilya adresinizden 23.09.2025 15:30:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('411a7877-12fa-4765-96a5-d507bfd8d49d','33664447366','Sayın RAMAZAN AÇIKEL, 412411011 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412411011\n\nDear RAMAZAN AÇIKEL, your shipment with 412411011 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412411011\n\nBICARGO','1','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL),
('411ce9e9-e573-4e6e-8f41-7fa26e739939','4369919051995','248902824 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248902824\n\nYour shipment with the number 248902824 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248902824\n\nBICARGO','1','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL),
('411fb595-3add-46ad-bfc1-81792c91e8df','4915732042277','478662278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7673 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478662278\n\nYour shipment with the number 478662278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7673. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478662278\n\nBICARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('41214995-8566-45a8-b2da-b05d9300b469','491638282124','Sayın DENİZ AKGÜMÜS , 613601743 nolu gönderiniz 7923 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613601743\n\nDear DENİZ AKGÜMÜS , your shipment with 613601743 was delivered to you with the delivery code 7923. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613601743\n\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('41253f2c-3c73-47e2-b5c1-681d60ac5365','905331602195','Sayın yetkili; ELANUR AKBALIK adlı müşterinize 221897229 nolu gönderinizin Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 14.10.2025 11:58:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90958150-7001-4d34-b42d-731ec53aa3d6',NULL),
('4126101d-0aef-48ee-b386-bc9c84ae61c7','4917670111258','Sayın SERDAL ÇEPER, 42899153 nolu gönderiniz 4457 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42899153\n\nDear SERDAL ÇEPER, your shipment with 42899153 was delivered to you with the delivery code 4457. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42899153\n\n\nBICARGO','1','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('41275415-53d5-46cd-8b5c-cd93262d8e57','905336367828','Sayın yetkili; RERHAYE KHADJA  adlı müşterinize 982834531 nolu gönderinizin Sandalye  ürünü 4 parça halinde Ademoğlu sandalye  adresinizden 10.03.2025 12:09:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('412b5b75-f5eb-478b-9c82-4c679337dfc9','4915144166539','428991499 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7463 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428991499\n\nYour shipment with the number 428991499 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7463. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428991499\n\nBICARGO','1','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL),
('412e9e02-59a6-463a-8e63-154d82863eac','905300961610','FLORENTİNA adlı müşterinizin 126561228 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL),
('41342b3f-efcb-43c5-94dc-4aa001bf1817','4917621986322','Sayın HASAN SARMAN, 982364429 nolu gönderiniz 3266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982364429\n\nDear HASAN SARMAN, your shipment with 982364429 was delivered to you with the delivery code 3266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982364429\n\n\nBICARGO','2','baae34a4-033d-4893-b696-b36e57c318f7',NULL),
('4137c58e-129f-4017-ad40-fc85be841ece','491772742981','Sayın BURCU BİNGÖLBALI , 817830150 nolu gönderiniz 7915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817830150\n\nDear BURCU BİNGÖLBALI , your shipment with 817830150 was delivered to you with the delivery code 7915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817830150\n\n\nBICARGO','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('41394194-ef24-4b30-8ca8-4ffe327fb0c1','905442774505','ONUR AKDAĞ adlı müşterinizin 65722132 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('413b6ee2-01f4-46e4-9c9e-6a180d1b3c98','33612326252','Sayın MEO JONATHON, 437452475 nolu gönderiniz 8813 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437452475\n\nDear MEO JONATHON, your shipment with 437452475 was delivered to you with the delivery code 8813. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437452475\n\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('414a010f-4934-4de2-9878-1e1466bd7730','491793933332','Sayın SERCAN KUCUR, 437626008 nolu gönderiniz 3332 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437626008\n\nDear SERCAN KUCUR, your shipment with 437626008 was delivered to you with the delivery code 3332. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437626008\n\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('414b8838-5ef7-4ce5-93a9-a1a2605b16a8','32470652077','703581635 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6725 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/703581635\n\nYour shipment with the number 703581635 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6725. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/703581635\n\nBICARGO','1','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL),
('414f2355-cc08-4374-a751-3ec5ac94298e','905076046290','Sayın GALATA , 231717770 nolu gönderiniz 3565 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231717770\n\nDear GALATA , your shipment with 231717770 was delivered to you with the delivery code 3565. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231717770\n\n\nBICARGO','1','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL),
('414f3c92-5a35-4f47-bebb-a0c1eee1ee4a','905331602195','MUHAMMED ALİ YILMAZ  adlı müşterinizin 221294149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('414fdeef-ce1e-48f5-a8cb-3f675a99a3ef','905442774505','ÇİĞDEM MURAT adlı müşterinizin 65758007 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL),
('415075b6-dbed-4bf2-b416-b5ac3386ae54','436763502568','Sayın EMRE ÇELİK, 278329196 nolu gönderiniz 3927 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/278329196\n\nDear EMRE ÇELİK, your shipment with 278329196 was delivered to you with the delivery code 3927. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/278329196\n\n\nBICARGO','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('4156b7d0-2ee4-42e0-b89e-b0fd2dc39e1c','41788774757','982843761 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982843761\n\nYour shipment with the number 982843761 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982843761\n\nBICARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('41581841-7bdd-4a72-a7d6-da4aba438b4f','905075277637','MEHMET BAYTOK SSH adlı müşterinizin 745253500 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('415ceaa2-dd55-498f-9fd2-82af68addc7b','491747042790','428604775 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4785 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428604775\n\nYour shipment with the number 428604775 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4785. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428604775\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('4161f288-4f5f-4707-a055-bf95c3ed0a63','905301592882','MUSTAFA DÜNDAR		 adlı müşterinizin 910775394 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('4161f42c-5e80-4353-8918-908988ffe78d','905304259202','SYLVİA LOPEZ adlı müşterinizin 478598314 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL),
('4165836d-6aab-4fe9-951f-cdbb27dfa264','905073106101','RECEP ONAY adlı müşterinizin 465237157 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('4166db72-f5fe-4aba-ab5f-4f4eabbad275','33679890673','61467762 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/61467762\n\nYour shipment with the number 61467762 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/61467762\n\nBICARGO','1',NULL,NULL),
('416ea61a-9c66-4f0e-97aa-174fcdda4bec','905465479064','KAYA BEY adlı müşterinizin 858854212 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b67594be-f958-4225-900b-19c5f6be08ce',NULL),
('4175c99b-c8c2-4c95-b4a5-b7660637663d','905304259202','MÜCAHİT SÖYLEMEZ adlı müşterinizin 478342417 nolu gönderisi 37 parça halinde yola çıkmıştır.','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('417e5ff8-30c0-4373-9120-76c4067ba302','905336367828','MEHMET SÜZEN adlı müşterinizin 982562609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3539abdf-5c17-413b-8a00-89b58f218933',NULL),
('417ef687-f5d4-4501-b328-ca44c2b2fdf9','32484736205','Sayın ELİF SIKI , 517157021 nolu gönderiniz 2654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517157021\n\nDear ELİF SIKI , your shipment with 517157021 was delivered to you with the delivery code 2654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517157021\n\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('4183be1b-f93f-466c-895b-afe8071b38d3','491627758662','Sayın FİRAS MACHANTAT, 750505145 nolu gönderiniz 6654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750505145\n\nDear FİRAS MACHANTAT, your shipment with 750505145 was delivered to you with the delivery code 6654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750505145\n\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('41861bfa-aba7-42e9-a4a7-558cba743bd2','31651912496','Sayın ALİ AYDIN, 428391947 nolu gönderiniz 2517 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428391947\n\nDear ALİ AYDIN, your shipment with 428391947 was delivered to you with the delivery code 2517. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428391947\n\n\nBICARGO','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('4187d1cc-2e5f-4384-ba9f-92ca92411b2e','31625064385','Sayın MURAT AKTAŞ, 163961995 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/163961995\n\nDear MURAT AKTAŞ, your shipment with 163961995 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/163961995\n\nBICARGO','1','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL),
('418ed618-acac-44f6-8448-f07c97f77d7b','905454259202','NURCAN MANSUR adlı müşterinizin 478438901 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('418ed665-b066-4588-b662-9e4c539a8af6','491742627039','371691350 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1045 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371691350\n\nYour shipment with the number 371691350 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1045. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371691350\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('419182bf-0951-4188-838f-e1a2150f3bec','33749843814','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('419a1fd6-a331-4af6-af03-9fafaf46fada','905331602195','ÇİĞDEM UĞUR FRANSA adlı müşterinizin 221158425 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('419da983-a966-4f42-a2c9-eaf145d868ff','33666954029','982219496 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982219496\n\nYour shipment with the number 982219496 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982219496\n\nBICARGO','1','1f693920-f2af-4070-9034-3b5ae439f603',NULL),
('41a184e3-692d-4cfe-ab44-838c71824e31','491634192330','803441454 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6633 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803441454\n\nYour shipment with the number 803441454 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6633. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/803441454\n\nBICARGO','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('41a30a03-8d2a-44f7-9f4f-468cedfd938f','905313340045','MESUT AKYÖN adlı müşterinizin 437481013 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('41a7214e-8acb-41b4-87df-e35a1bb9a389','905331602195','ÇİĞDEM UĞUR FRANSA adlı müşterinizin 221158425 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('41a847d2-3a75-46d2-83ba-c6cf6145ca81','4915208677667','Sayın TUĞÇE ÖNCÜ, 371120237 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120237\n\nDear TUĞÇE ÖNCÜ, your shipment with 371120237 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371120237\n\nBICARGO','1','8dcb0124-79e0-4138-838e-c613554097e7',NULL),
('41b08437-7ca5-4bde-b034-37702efa648d','31611322238','371122828 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9605 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371122828\n\nYour shipment with the number 371122828 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9605. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371122828\n\nBICARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('41b22e4b-d06b-4758-8b5b-80d5fbeb0b1f','436506740424','Sayın ALİ KURUÇAM, 437707209 nolu gönderiniz 3266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437707209\n\nDear ALİ KURUÇAM, your shipment with 437707209 was delivered to you with the delivery code 3266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437707209\n\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('41b7eb2a-0378-4997-b0bf-1676c229ca9b','905078062550','DUYGU YILDIZ adlı müşterinizin 598396998 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('41b91e55-806b-4a89-98ee-b7d982dc4132','905331602195','Sayın yetkili; HAMİDİ SONİA (SSH) adlı müşterinize 221748184 nolu gönderinizin BALAT SANDALYE (SSH) ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 07.08.2025 15:43:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('41c13238-2ae2-484d-806a-3fe4b768f610','33781435091','Sayın BARIŞ ÇOŞKUN, 745656343 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745656343\n\nDear BARIŞ ÇOŞKUN, your shipment with 745656343 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745656343\n\nBICARGO','1','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL),
('41c722a5-8229-403b-91dc-503eecd0af1b','4369911337727','745485271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4227 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745485271\n\nYour shipment with the number 745485271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4227. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745485271\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('41c758c2-f2ad-4461-b77c-3752f69b588f','491723113867','Sayın ULRİCH RİECK SÖHNE, 41279166 nolu gönderiniz 6765 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41279166\n\nDear ULRİCH RİECK SÖHNE, your shipment with 41279166 was delivered to you with the delivery code 6765. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41279166\n\n\nBICARGO','1','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL),
('41cb13b1-c396-438b-ba33-649ce20bc42b','905431026110','Sayın yetkili; İLKAY ÇİFTÇİ adlı müşterinize 35130528 nolu gönderinizin SANDALYE ürünü 8 parça halinde BALİ SANDALYE adresinizden 29.08.2025 10:45:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('41cbbc3f-65fb-4bd5-b6ea-526421ebf141','4915226123899','371876767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3607 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371876767\n\nYour shipment with the number 371876767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3607. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371876767\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('41cd0afe-c34d-4af8-8377-168fb3a3bdd3','905421855834','GÜLCAN İNCE adlı müşterinizin 33850305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('41cf36c2-2d43-4b3f-be8e-3621a2ea653c','905304259202','Sayın yetkili; ZEHRA AŞIK adlı müşterinize 478243785 nolu gönderinizin FRİDA KÖŞE (AYAKLARI KONTROL EDELİM) ürünü 6 parça halinde RİXXE adresinizden 12.05.2025 16:19:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('41d02505-e266-44b2-81d9-0c3c60798802','4915756323110','Sayın MEHMET SALDANLI, 745508995 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745508995\n\nDear MEHMET SALDANLI, your shipment with 745508995 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745508995\n\nBICARGO','1','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL),
('41d9e317-4f91-4820-b4e9-99b96ac8f150','905454259202','BURCU GÖKÇE adlı müşterinizin 478559134 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('41dc122a-6762-4a19-8b02-23fc53d98392','905070491996','MERVE HANIM adlı müşterinizin 663164000 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL),
('41dc423e-7dd2-46dc-8bc4-4189ab72fb06','491788354147','478677950 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8594 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478677950\n\nYour shipment with the number 478677950 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8594. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478677950\n\nBICARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('41dccf01-f2b1-4e02-8387-ad64da257def','3164777260','478361652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2260 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478361652\n\nYour shipment with the number 478361652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2260. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478361652\n\nBICARGO','2','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL),
('41df7d46-e27d-42ed-a17e-d1e464f5ccf1','491725785095','371421349 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371421349\n\nYour shipment with the number 371421349 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371421349\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('41e6fa35-4b8c-4c34-888d-e1d30268c1d6','491744713856','371823380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6775 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371823380\n\nYour shipment with the number 371823380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6775. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371823380\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('41e863a3-ce02-4b42-bf23-5edb20bae5de','33660617145','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('41ecde04-c50e-4b29-be9e-b85a9e5faa22','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA MASA  ürünü 4 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:14:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('41f037e5-7c60-4913-a710-34b351f43912','905313340045','Sayın yetkili; NESLİHAN CAN adlı müşterinize 437940825 nolu gönderinizin masa ürünü 4 parça halinde masami adresinizden 07.05.2025 14:32:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('41f2e5d0-c78f-4b7b-902c-c693dede4afa','905335708965','LEİPZİNG adlı müşterinizin 248133427 nolu gönderisi 39 parça halinde yola çıkmıştır.','1','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL),
('41f8251a-f5ee-4728-a395-26fa9f3104ab','491726260844','ŞÖFÖR İKETİŞİM\n					+905301824880','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('41fab77b-af97-40e5-ae42-e31185f1b96d','905304259202','ERSİN ÖZDEMİR adlı müşterinizin 478892004 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL),
('41fabe78-ca24-486e-96ea-0bb33728e597','905075277637','MUHAMMET YILDIRIM  adlı müşterinizin 745946644 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('41fc26a9-f735-401a-83e5-b9db0294d581','491637771977','598131456 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7632 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598131456\n\nYour shipment with the number 598131456 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7632. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598131456\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('41fc8bc0-7dca-4256-a0ea-bbec071f278a','905304259202','BELKISA KAPLAN adlı müşterinizin 478428380 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('420595c3-bcc4-4a49-8810-23e51d932dc1','436603406293','EDİSA MUSTAFSOVSKA adlı müşterinizin 675412794 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('4205b641-1b3f-43fe-abf0-1c3489210acf','905079358213','ÖZLEM TÜRKMEN adlı müşterinizin 745853192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('4208ff51-4f1e-4121-a1e1-c58768a0ee12','4917621650674','İLETİŞİM\n					Furkan şöför = +905078826436','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('420af010-a76d-477c-843d-0ee8bacbd971','41798262813','613374971 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10165 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613374971\n\nYour shipment with the number 613374971 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10165. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613374971\n\nBICARGO','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('420e383f-b5ce-428d-a4cd-661b5054a1bc','33658242473','31979626 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31979626\n\nYour shipment with the number 31979626 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/31979626\n\nBICARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('420fb363-b0ae-4c80-b837-07caac4c9759','905336367828','AMİNA BOUDJENNAH  adlı müşterinizin 982585914 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('420fbb7d-057a-4ca0-b8ef-59e00628d3b3','4917631090224','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('421124c4-8645-496e-9a4e-f3e561d3332a','436763463503','Sayın DİANA BARAKAEVA, 613502652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613502652\n\nDear DİANA BARAKAEVA, your shipment with 613502652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613502652\n\nBICARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('4214025a-b068-4b10-8940-03a5d8a039e2','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin ETRO ORTA SEHPA + PUF  ürünü 3 parça halinde AREA adresinizden 06.05.2025 12:55:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('4216074d-b354-4e8b-a776-f595296ceaae','905454259202','ESRA TEZCAN adlı müşterinizin 478728370 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL),
('4217d8b8-ccd0-4c6e-8352-aeaef97f9a79','173737373828383','Sayın BOLL TRADE, 412795154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412795154\n\nDear BOLL TRADE, your shipment with 412795154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412795154\n\nBICARGO','2','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('4218cfb3-a152-4a0c-afdd-92c50eec1558','905459475054','SALİH KAHRAMAN adlı müşterinizin 803441454 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('421c72f6-e403-4dcf-824d-2a340b143287','004306603838566','Sayın YONCA KILIÇ, 380417164 nolu gönderiniz 3480 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/380417164\n\nDear YONCA KILIÇ, your shipment with 380417164 was delivered to you with the delivery code 3480. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/380417164\n\n\nBICARGO','2','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('421e6a0b-a7de-4f85-9a1b-87d612688077','905421855834','Sayın yetkili; MEHMET ERTÜRK adlı müşterinize 338737901 nolu gönderinizin Efes Köşe Koltuk ürünü 7 parça halinde KATRE KOLTUK adresinizden 25.08.2025 17:00:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('421fd41a-e20c-4c2c-9475-c7f481ca8c5a','905059175469','Sayın yetkili; MUSTAFA MÜEZZİNOĞLU adlı müşterinize 428341956 nolu gönderinizin bazalı karyola+ ssh baza makası ürünü 7 parça halinde Fatura adresinizden 08.01.2025 11:19:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('4220d29b-428c-4e21-91bf-b69259fd6dda','491747474640','Sayın ÖZDEMİR YAKAN		, 910972908 nolu gönderiniz 6750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910972908\n\nDear ÖZDEMİR YAKAN		, your shipment with 910972908 was delivered to you with the delivery code 6750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910972908\n\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('422390a0-301d-4c7f-9720-dfb4ff295de8','905331602195','RABİA NALKIRAN adlı müşterinizin 221307786 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('422a300b-62aa-493f-ac14-85403dfe3abb','491728739578','Sayın ARMİN İMERİ SSH, 221471794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221471794\n\nDear ARMİN İMERİ SSH, your shipment with 221471794 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221471794\n\nBICARGO','1','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL),
('422ba722-79d6-4787-89de-b5f859e0032a','491639801426','107394609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9757 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/107394609\n\nYour shipment with the number 107394609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9757. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/107394609\n\nBICARGO','1','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL),
('422dac21-5eec-4838-b7f4-4767d2e9a386','4915217769767','Sayın TCR WARENHANDEL GMBH (MARTİN CREUTZBURG), 223853931 nolu gönderiniz 10410 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223853931\n\nDear TCR WARENHANDEL GMBH (MARTİN CREUTZBURG), your shipment with 223853931 was delivered to you with the delivery code 10410. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223853931\n\n\nBICARGO','2','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('42313c1b-0f68-4185-b700-0def9518beec','436766833448','Sayın GÜLCAN İNCE (SSH), 338840422 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338840422\n\nDear GÜLCAN İNCE (SSH), your shipment with 338840422 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338840422\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('4231e725-6bee-4a88-bd87-a193854f4be5','905079047428','NOM HASSAN ABDULE adlı müşterinizin 449806465 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd343457-fe23-4870-a5c8-17ec7d82c974',NULL),
('42350231-97ea-4df6-9f4c-7e80e54b1b9e','905336367828','Sayın yetkili; RERHAYE KHADJA  adlı müşterinize 982834531 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 11.03.2025 16:38:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('423600a6-5f21-4b55-9588-7f79a022fd6d','33617127634','221850151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7503 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221850151\n\nYour shipment with the number 221850151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7503. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221850151\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('42389973-f15b-4f49-a695-db5fcd4e0b13','905079358213','OKAN CORAMAN adlı müşterinizin 745980941 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('423d3fc3-d7b9-4a61-bf18-2d9b0cb9c8f1','33761428784','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('423ea765-3753-48e8-babf-bc3f8f7d4dad','4917630410720','Sayın GAMZE CAPALBO, 517147933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517147933\n\nDear GAMZE CAPALBO, your shipment with 517147933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517147933\n\nBICARGO','1','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL),
('4240facc-c7e0-41d9-bea4-ddd4bd855cf9','905459011033','ALİ GÖKSU  adlı müşterinizin 268145141 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL),
('424337b6-031a-452b-aee8-8174c41bd8d4','33695016273','745632580 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4676 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745632580\n\nYour shipment with the number 745632580 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4676. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745632580\n\nBICARGO','1','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL),
('4244eee8-a296-43d8-bbce-a8ffe17f06b2','905079358213','MEHMET ANDIÇ adlı müşterinizin 745759881 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('424beccb-f79a-47b8-b4c4-f436559b98a3','905517075149','Sayın yetkili; CELİNE KARA adlı müşterinize 478164511 nolu gönderinizin 160x200 yatak  ürünü 1 parça halinde Fatura adresinizden 04.10.2025 14:48:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('424fcf19-ae3f-4abb-9ff2-e1c8e7f73125','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428819984 nolu gönderinizin köşe  ürünü 5 parça halinde moderno adresinizden 31.12.2024 16:50:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('425219a5-039f-45a7-9e68-bf91d7242530','33749417037','910670298 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6175 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910670298\n\nYour shipment with the number 910670298 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6175. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910670298\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('42527f81-f5fa-4ca5-ab03-c8d0dcf19e2e','905421855834','Sayın yetkili; GÜLCAN İNCE (SSH) adlı müşterinize 338840422 nolu gönderinizin dolap kapağı ve sehpa üstü kendim getirdim ürünü 2 parça halinde İNHOUSE Exclusive adresinizden 16.06.2025 13:06:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('4252dbee-6ef3-4ada-82a5-319af6463b6f','491736344643','Sayın TUĞBA HANIM, 126421974 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126421974\n\nDear TUĞBA HANIM, your shipment with 126421974 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126421974\n\nBICARGO','1','0831e36a-bfec-49cb-862f-5d57cf563310',NULL),
('42576698-db20-4720-8422-05ab89324f92','491777095742','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('425c02e2-d753-483d-a99e-2e30134b8c3a','4915785558828','Sayın EKREM ASLAN, 910632087 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910632087\n\nDear EKREM ASLAN, your shipment with 910632087 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910632087\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('4260dc00-8c67-4e84-9f19-64c2c9a07de5','905325000478','BELÇİKA  adlı müşterinizin 412102597 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('4262d6dc-6be3-4cc8-b250-f0b7dfa4c674','32484828555','Sayın GÖKHAN ÖZYURT , 2213416 nolu gönderiniz 1132 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/2213416\n\nDear GÖKHAN ÖZYURT , your shipment with 2213416 was delivered to you with the delivery code 1132. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/2213416\n\n\nBICARGO','2','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('4264db0c-881f-45f7-8d3d-8de794a5c282','905333221039','NURGÜL ÖZDEMİR  adlı müşterinizin 750450570 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL),
('4265a72e-9ee9-493f-b31b-7d65c8d732a2','4915770884048','Sayın NURAN YILDIRIM, 910561299 nolu gönderiniz 1260 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910561299\n\nDear NURAN YILDIRIM, your shipment with 910561299 was delivered to you with the delivery code 1260. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910561299\n\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('4267359b-1cde-4c01-9214-a850d273931f','4915223499584','Sayın FARUK ANSER, 486552581 nolu gönderiniz 2317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486552581\n\nDear FARUK ANSER, your shipment with 486552581 was delivered to you with the delivery code 2317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486552581\n\n\nBICARGO','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('426752d4-6897-4780-b1b4-7646f3bed1cc','905078062550','SABİNA KAYA adlı müşterinizin 598548833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('4267c730-9098-49d6-bf4a-b7ffa270abba','4917624498009','644721676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3436 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644721676\n\nYour shipment with the number 644721676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3436. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644721676\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('426d6ee2-ed93-4908-b19c-c87e22c4e7e6','436602434621','Sayın BURHAN AKMEŞE, 745761149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745761149\n\nDear BURHAN AKMEŞE, your shipment with 745761149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745761149\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('42753c9a-4b57-4ca9-ab62-e87f6d9dd363','004917661019761','437574361 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8711 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437574361\n\nYour shipment with the number 437574361 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8711. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437574361\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('4277b659-52f9-47cd-ba7c-b06065894d27','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin BOHEM KARYOLA ŞİFONYER KOMODİN  ürünü 9 parça halinde ODDO adresinizden 30.09.2025 14:06:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('42784815-c97d-4ea9-9bf3-77ef8b79db4e','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin masa ürünü 4 parça halinde masami adresinizden 17.04.2025 17:38:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('427ef91c-c45b-4000-9cf9-8abbd0200ce3','905337836884','Sayın yetkili; GAMZE ÇOKENGİN adlı müşterinize 140681782 nolu gönderinizin Traverten orta sehpa ve yemek masası ürünü 1 parça halinde Fatura adresinizden 03.10.2025 11:51:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('42814e66-a9d3-4406-9618-0f89b2b39bdb','31657734466','Sayın HALİL AYDOĞAN, 501869420 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501869420\n\nDear HALİL AYDOĞAN, your shipment with 501869420 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501869420\n\nBICARGO','1','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL),
('428574f7-6eb2-4c4a-a481-fdbbed378bed','491735713527','478535316 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3258 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478535316\n\nYour shipment with the number 478535316 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3258. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478535316\n\nBICARGO','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('428a27eb-27b2-4ffe-8d77-c46dbd70de08','905461661672','Sayın yetkili; ÖMER YILMAZ adlı müşterinize 644763473 nolu gönderinizin C SEHPA SEHPACI SUAT 05392774545 ürünü 1 parça halinde Fatura adresinizden 27.08.2025 14:53:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('42971d03-29a2-4d61-b9a7-fd90b0d3a7df','905541100849','Sayın HALİL  İBRAHİM, 25.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3240698\nŞifre : 3240698\n			\nBİCARGO','1',NULL,'3ac24069-be87-4119-8ed6-2f478b64b3f9'),
('429847e8-6409-4dc7-8c3f-13e9e53f4070','905079358213','ELOUAZGHİ ANAİS  adlı müşterinizin 745879253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('429d5dce-4035-4e65-91a6-9fb24ea1a049','436603406293','MEHMET COPUR adlı müşterinizin 675644991 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('429e5989-d8c1-4d33-b8f0-e20797b3cc5b','41797024262','745219309 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745219309\n\nYour shipment with the number 745219309 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745219309\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('42a048f5-fd74-47a8-a7c0-e95749f87d6d','905363385813','Sayın yetkili; SAMET KÖTEN adlı müşterinize 976439318 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde Ali Turan Koltuk adresinizden 06.02.2025 12:03:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('42a093b4-c023-4c0f-a776-2ff7ca518f43','905428209234','YILMAZ KARA  adlı müşterinizin 31922563 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('42a5576f-4aad-43cf-9693-452e7b3ce404','905363385813','AYŞE ŞEKER adlı müşterinizin 976114868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('42a6aae9-a19e-40d1-8e5e-d930f9a14061','491749753629','Sayın KADİR ÖZCAN, 428417364 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428417364\n\nDear KADİR ÖZCAN, your shipment with 428417364 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428417364\n\nBICARGO','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('42a7568c-d919-4ea1-a867-e9881bf3db5c','905331602195','BUNJAMİN HALİMİ  adlı müşterinizin 221962516 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('42b9d90d-0c08-4ef3-b4fa-00a609fefd2c','905454259202','AHMET ÖZDEMİR adlı müşterinizin 478472384 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('42b9f15a-0955-444c-adaa-127058148f07','905079358213','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin DELUXE YATAK ürünü 1 parça halinde Fatura adresinizden 11.07.2025 20:18:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('42c014f3-65fa-4ec6-9742-11e98fc16e6b','33660910086','Sayın SERKAN KAHRAMAN SSH, 221348923 nolu gönderiniz 4493 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221348923\n\nDear SERKAN KAHRAMAN SSH, your shipment with 221348923 was delivered to you with the delivery code 4493. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221348923\n\n\nBICARGO','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('42c227f5-0e59-448c-8395-d853face645b','905079358213','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MACHKA BAZALI KARYOLA 180X200 ürünü 4 parça halinde FAMILY adresinizden 16.06.2025 14:12:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('42c27d5e-6a8d-49fa-bcec-7728b9214448','491639801426','EURO MOBEL adlı müşterinizin 107394609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL),
('42c28848-11eb-4ccf-b43b-163893ba1df1','491785154037','Sayın GÜLAY FASOLD, 644820551 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644820551\n\nDear GÜLAY FASOLD, your shipment with 644820551 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644820551\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('42cf41ae-7f01-45bf-9460-33be854ad317','33616745884','Sayın FATİH ÇELİK, 478603328 nolu gönderiniz 4032 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478603328\n\nDear FATİH ÇELİK, your shipment with 478603328 was delivered to you with the delivery code 4032. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478603328\n\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('42d9820a-1bee-4153-8676-ba5ae327d010','905075277637','AYHAN İÇEN adlı müşterinizin 745813483 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('42df976d-573a-4f74-98aa-fd5f87503cb5','4917683242362','745101735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6316 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745101735\n\nYour shipment with the number 745101735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6316. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745101735\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('42e1d5f9-8585-424a-a9a0-8c9cb6602b0a','33645025760','Sayın ALİ ÖZDEN , 745991962 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745991962\n\nDear ALİ ÖZDEN , your shipment with 745991962 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745991962\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('42ea8d97-7648-4077-82d6-12908e3101e6','905333221039','AHASSSDDDW adlı müşterinizin 750704426 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL),
('42f75cd1-6e4d-46c2-86fe-c81114314df3','31647505800','221440431 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221440431\n\nYour shipment with the number 221440431 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221440431\n\nBICARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('42f7ff10-e875-4e37-8163-6c92e0a22e50','4917632406392','Sayın SEYİTHAN ASLAN, 745212688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745212688\n\nDear SEYİTHAN ASLAN, your shipment with 745212688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745212688\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('42fdee1a-d3cb-4d7b-a96d-2e97b130ad93','905331602195','Sayın yetkili; SERKAN YILMAZ adlı müşterinize 22145224 nolu gönderinizin 70x120 milas beyaz orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 19.03.2025 15:42:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('42ff2279-dd7a-49b4-a47d-662a071bf26a','491743051897','Sayın MERT ÇİÇEK, 598954734 nolu gönderiniz 5927 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598954734\n\nDear MERT ÇİÇEK, your shipment with 598954734 was delivered to you with the delivery code 5927. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598954734\n\n\nBICARGO','2','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('42ffd6e0-0898-460a-ad7d-c12c42dc111d','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin İKİ ADETVODA BERJER SALDA KOLTUK ürünü 2 parça halinde Fatura adresinizden 15.09.2025 13:19:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('4300dca3-c81e-4c08-b8fe-7ee8c759fe7d','905054335859','YUSUF ATUM  adlı müşterinizin 501212768 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL),
('43064efa-ef2e-464e-b26e-12e5c7ebad94','33749843814','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('4306817d-2a63-4bd0-830e-321d3658e7d9','41798375512','Sayın NURCAN DOLDUR, 478223658 nolu gönderiniz 1354 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478223658\n\nDear NURCAN DOLDUR, your shipment with 478223658 was delivered to you with the delivery code 1354. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478223658\n\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('43081625-bded-4fb8-9d01-85b5eae1494a','905335708965','ASLI AYCİ adlı müşterinizin 73555265 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL),
('4309fac8-1a4a-4025-8e36-4b7f4fd37115','905313340045','DİANA HUSSEİN adlı müşterinizin 437917777 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('430a3b99-5989-4055-aacb-b652b0e3d001','905461661672','Sayın yetkili; RAYAN SLEİMANİ  adlı müşterinize 644403373 nolu gönderinizin MASA  ürünü 3 parça halinde Masami Mobilya adresinizden 20.05.2025 17:27:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('43144c62-c75b-4ad3-b014-e32c1abecdb5','33614374158','478154934 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3730 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478154934\n\nYour shipment with the number 478154934 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3730. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478154934\n\nBICARGO','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('4316012e-577f-4140-bdcd-3cc5f4f8ab37','905348867917','Sayın GÜRKAN DAĞ, 904803845 nolu gönderiniz 4737 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/904803845\n\nDear GÜRKAN DAĞ, your shipment with 904803845 was delivered to you with the delivery code 4737. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/904803845\n\n\nBICARGO','1','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL),
('43193509-e64d-4dff-91fb-d509f349e936','4915772514011','Sayın BURAK SARIKAYA, 745816946 nolu gönderiniz 1070 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745816946\n\nDear BURAK SARIKAYA, your shipment with 745816946 was delivered to you with the delivery code 1070. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745816946\n\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('431ae884-7147-4026-8a1c-78775b627214','4917645942929','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('4320da8a-1c4c-42ea-a02a-78388daa1a4d','33652707979','745502887 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8246 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745502887\n\nYour shipment with the number 745502887 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8246. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745502887\n\nBICARGO','1','c8f99487-f21d-467c-9282-047182f5edbf',NULL),
('4324086b-a092-451a-b5f6-a945d798ed47','4915209874981','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('432449ee-9b0c-465d-931a-0523448f7e09','905349208933','Sayın yetkili; EMRAH ERAYDIN adlı müşterinize 127395599 nolu gönderinizin köşe ve berjel ürünü 6 parça halinde 3ARDEKO adresinizden 20.02.2025 11:52:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('4328d7b4-eb4a-4c34-b11f-b93df384f7f4','491739149544','455757391 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455757391\n\nYour shipment with the number 455757391 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455757391\n\nBICARGO','1','d993ce90-f47a-45f5-b714-cf612685b50d',NULL),
('432e0396-f9be-42f4-9093-8f10d1411ddd','33788354620','Sayın FATMA KARAHAN, 478346989 nolu gönderiniz 1476 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478346989\n\nDear FATMA KARAHAN, your shipment with 478346989 was delivered to you with the delivery code 1476. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478346989\n\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('43300186-c12c-4d35-bb80-d7ff277564e5','4917672242540','Sayın ŞİRİN ASLAN, 371193272 nolu gönderiniz 5234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371193272\n\nDear ŞİRİN ASLAN, your shipment with 371193272 was delivered to you with the delivery code 5234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371193272\n\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('43308187-cde5-49aa-9d2d-d120fde56632','905075277637','EBRU DEMİRHAN SSH adlı müşterinizin 745433427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('4331ad14-db31-4746-9bb4-2e05f76aa5df','4917655430941','Sayın HÜSEYİN ÇELİK, 351888584 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351888584\n\nDear HÜSEYİN ÇELİK, your shipment with 351888584 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351888584\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('4335033c-8a65-4ae0-b0fe-34d6af4937a7','905079047428','İBRAHİM AYIK  adlı müşterinizin 449728917 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('43365829-2fb0-4d5e-8346-c119ed7e3e55','033749929034','734889822 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9963 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734889822\n\nYour shipment with the number 734889822 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9963. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734889822\n\nBICARGO','2','ca7f278f-ad79-4c38-a185-b73739ed8248',NULL),
('4337ad23-d885-4db5-ae78-a8048c3fbdbe','32488135313','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('433ee488-8d84-431f-af7e-8d365c23ca8c','4917687972563','Sayın MUSTAFA KELEŞ, 598263441 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598263441\n\nDear MUSTAFA KELEŞ, your shipment with 598263441 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598263441\n\nBICARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('43418861-9295-4cfb-bdf7-e77282e806b5','491602272143','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('4346eacc-aa0c-4d66-8936-63e7ea1eb315','905451571652','Sayın yetkili; HUSSEİN NAKAL adlı müşterinize 531606130 nolu gönderinizin YATAK DÖŞEK ürünü 4 parça halinde Albessa adresinizden 02.10.2025 10:26:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('4349acfd-579c-41e0-a683-398126c80c1c','491774238890','Sayın RABİA AKKUŞ, 644507096 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644507096\n\nDear RABİA AKKUŞ, your shipment with 644507096 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644507096\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('434c3715-c6a1-427b-8a9c-5c8784ec748c','31618085363','221724224 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10980 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221724224\n\nYour shipment with the number 221724224 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10980. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221724224\n\nBICARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('434c9f6c-390c-42ab-bb9a-9ec90b785410','4915170072402','97677559 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3425 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/97677559\n\nYour shipment with the number 97677559 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3425. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/97677559\n\nBICARGO','1','855d2794-7066-4b47-b159-2cf8816867f4',NULL),
('4350014e-dcfb-401f-acf1-d18ff3b0c3f5','905079358213','CÜNEYT BARUT adlı müşterinizin 745699153 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL),
('4350c3e8-f695-472c-972f-db05b6b85e2e','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin 2 adet kartela ürünü 1 parça halinde Fatura adresinizden 13.08.2025 17:50:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('43532e6b-542e-437a-8354-babc54885584','905301592882','Sayın yetkili; YAVUZ KOÇMAN		 adlı müşterinize 910772127 nolu gönderinizin DENİZ AYNALI KONSOL ürünü 5 parça halinde Fatura adresinizden 01.07.2025 13:29:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('435b5916-0a69-48a2-9ad0-899bded666b4','0033767846954','Sayın ALİ ŞİMŞEK, 248625081 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248625081\n\nDear ALİ ŞİMŞEK, your shipment with 248625081 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248625081\n\nBICARGO','2','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL),
('435b946d-d919-48bb-812a-b5d511773e80','905300961610','HABTEMARIAM BIZEN adlı müşterinizin 126908886 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL),
('435d1d32-0cf0-439a-8c2d-f2ba56d9b024','4917644265408','Sayın MEHMET KIRMALI SSH, 745961245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745961245\n\nDear MEHMET KIRMALI SSH, your shipment with 745961245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745961245\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('43608158-bc59-4725-a50b-9d91b1cb4659','4917670112054','Sayın FURKAN YESARİ GÜVEN, 910995300 nolu gönderiniz 10977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910995300\n\nDear FURKAN YESARİ GÜVEN, your shipment with 910995300 was delivered to you with the delivery code 10977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910995300\n\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('4363a3ad-44e5-413a-ab87-64ce04c1f628','905454259202','Sayın yetkili; SULTAN GÖR adlı müşterinize 478212601 nolu gönderinizin düğün paketi ürünü 38 parça halinde çelikbey inegöl depo adresinizden 13.12.2024 16:14:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('436d388e-abe0-4338-adb1-1a54e0fa1e89','4915223038564','61390448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61390448\n\nYour shipment with the number 61390448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61390448\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('436fc162-a671-4c72-ae20-ce1dfd207af1','491774238890','Sayın RABİA AKKUŞ, 644507096 nolu gönderiniz 7656 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644507096\n\nDear RABİA AKKUŞ, your shipment with 644507096 was delivered to you with the delivery code 7656. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644507096\n\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('4370cb61-8fb1-4db2-b366-2398c767a544','905363385813','HASSAN HUSSEİN adlı müşterinizin 976494428 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','887d1301-8182-4254-93e6-73d1ecf6af40',NULL),
('43717024-6156-4f7a-ba04-3d69e2595896','4917663069031','Sayın NİHAL KURU, 478380707 nolu gönderiniz 10818 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478380707\n\nDear NİHAL KURU, your shipment with 478380707 was delivered to you with the delivery code 10818. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478380707\n\n\nBICARGO','1','1b527261-0f20-432f-8edd-bf02ae683a47',NULL),
('4371b057-1e33-43e6-ac65-53e389cfb4e5','905079358213','HÜSEYİN KIRTAY adlı müşterinizin 745357299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad525e43-9190-4602-ac34-b389ec280f0a',NULL),
('43720e1f-8645-4345-9dc9-e49876c3c145','31611322238','Sayın MEHMET ORHAN, 371122828 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371122828\n\nDear MEHMET ORHAN, your shipment with 371122828 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371122828\n\nBICARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('4373d307-1d9c-4a2f-bbe3-51d4a18f03ec','4917620526995','ŞÖFÖR NUMARASI\n					+905467896981','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('4375a85f-1fb2-4d10-97ed-9a74c9369c00','4915510083523','Sayın HÜSEYİN AKBANA, 745191568 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745191568\n\nDear HÜSEYİN AKBANA, your shipment with 745191568 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745191568\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('4379d423-2422-4ba4-8bf0-499ff2e252e8','905318974595','RIZA KUŞÇU adlı müşterinizin 725500857 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL),
('437d06f5-2875-46f0-8aa7-8024f3b5adc6','33767911298','734965369 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9732 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734965369\n\nYour shipment with the number 734965369 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9732. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734965369\n\nBICARGO','1','d7e6d100-83c7-4980-9636-2ea6521598da',NULL),
('437d4d9a-a79c-4a74-88e0-ea016f3f3818','4915257652315','Sayın ÖZLEM GÜLER, 248653667 nolu gönderiniz 10601 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248653667\n\nDear ÖZLEM GÜLER, your shipment with 248653667 was delivered to you with the delivery code 10601. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248653667\n\n\nBICARGO','1',NULL,NULL),
('438c61ea-f12a-4550-bbbe-d4a7bc349664','905304259202','BELKISA KAPLAN adlı müşterinizin 478403794 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('438eebea-4212-4b0a-ac1e-1ae5acadadf5','33781635699','Sayın SELEN SEMERCİ, 428326285 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428326285\n\nDear SELEN SEMERCİ, your shipment with 428326285 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428326285\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('43931870-5403-480f-a6d8-ced17405c87c','905454259202','ESRA TEZCAN adlı müşterinizin 478778231 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL),
('4393f183-a0a2-4312-9afe-d7476f7c4f61','905451571652','Sayın yetkili; VİET ANH THAİ adlı müşterinize 531250587 nolu gönderinizin Masa ürünü 6 parça halinde AHMET adresinizden 23.09.2025 17:55:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('439bb1cd-b13b-4502-b2e4-65c055733123','905313340045','Sayın yetkili; IVANA ELİAS adlı müşterinize 437426295 nolu gönderinizin Kampanya köşe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:33:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('439f7066-386b-4b8f-8b47-472313df6ca0','4915906171003','Sayın ALAADDİN ŞAHİN, 734460411 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734460411\n\nDear ALAADDİN ŞAHİN, your shipment with 734460411 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734460411\n\nBICARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('43a11150-dfdc-4088-b322-d3b9640fc1c1','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin SEHPA ürünü 1 parça halinde Sehpa İbrahim  adresinizden 13.11.2024 12:49:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('43a26459-32ca-4d04-8fb7-e7384cdd5bf0','491781831118','982364429 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982364429\n\nYour shipment with the number 982364429 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982364429\n\nBICARGO','1','baae34a4-033d-4893-b696-b36e57c318f7',NULL),
('43a52a2f-077c-4166-a75a-882e2cef8129','491741928164','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('43a869bb-2912-4460-9f2b-0e9513318384','31682496201','221437904 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8738 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221437904\n\nYour shipment with the number 221437904 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8738. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221437904\n\nBICARGO','1','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL),
('43a98e80-2c11-4240-b633-3e2b7a9dd2a2','905325998198','ESMA EROĞLU adlı müşterinizin 614859961 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL),
('43aacaa2-d564-478d-8189-e826d604d5cf','905461661672','TAKİ ÇAYCI(K) adlı müşterinizin 644257752 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('43ab4cfd-5e24-4d76-84dd-bd5b2410efce','31686174189','Sayın KÖSE BEY, 750926872 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750926872\n\nDear KÖSE BEY, your shipment with 750926872 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750926872\n\nBICARGO','1','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL),
('43ada54f-93d2-4d21-830e-ea6b333054f1','491739368382','428990953 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4572 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428990953\n\nYour shipment with the number 428990953 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4572. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428990953\n\nBICARGO','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('43b78ac9-a742-492d-a580-3eaa1c1ee9cc','49017661795288','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('43c3e1c2-e032-4b4a-ab08-c2f080d826de','4917642954543','Sayın ÇİĞDEM MURAT, 65758007 nolu gönderiniz 3355 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65758007\n\nDear ÇİĞDEM MURAT, your shipment with 65758007 was delivered to you with the delivery code 3355. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65758007\n\n\nBICARGO','1','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL),
('43c6837a-0579-4764-b1c3-162b354ad10e','4917684656802','Sayın GHASAN ALBUKAİ, 289168915 nolu gönderiniz 5791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/289168915\n\nDear GHASAN ALBUKAİ, your shipment with 289168915 was delivered to you with the delivery code 5791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/289168915\n\n\nBICARGO','1','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL),
('43c720a5-d3b8-4ada-bc0d-012900d65f96','316389917702','Sayın MURAT ŞEKER , 478832291 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478832291\n\nDear MURAT ŞEKER , your shipment with 478832291 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478832291\n\nBICARGO','2','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('43c7c737-ff5e-4a91-955b-9ac34bd64635','491737165730','371998665 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371998665\n\nYour shipment with the number 371998665 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371998665\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('43c89407-b0dd-4c3a-a7bc-1dcc5db8fbd8','491737526626','613499620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613499620\n\nYour shipment with the number 613499620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613499620\n\nBICARGO','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('43dda734-a276-47a8-9cea-3e657ab9044a','905079358213','AYŞE SÖNMEZ adlı müşterinizin 745206126 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL),
('43e06d89-262a-46fd-a146-7ed7b9b43075','491726666457','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('43e400a7-db49-4d29-9645-119d8f49b76e','','745268660 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7897 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745268660\n\nYour shipment with the number 745268660 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7897. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745268660\n\nBICARGO','2','911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7',NULL),
('43e43f86-b97b-4610-a81b-c33ee69be9d5','0033669942525','Sayın YASİN ÖKTEM , 614352 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614352\n\nDear YASİN ÖKTEM , your shipment with 614352 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614352\n\nBICARGO','2','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL),
('43e4b5df-a5ec-4674-a318-0ce963759c8b','905304259202','SUNAY KURU adlı müşterinizin 478526484 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL),
('43f22952-efb6-4d26-b49b-d4cf82758dfa','33769656620','976751266 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2382 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976751266\n\nYour shipment with the number 976751266 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2382. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976751266\n\nBICARGO','1',NULL,NULL),
('43fa6ef0-a573-4aa6-b95a-ed377aab8cfc','905075277637','OKTAY SAMET ŞAHİN adlı müşterinizin 745782616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('4401c8b1-398f-404c-b6a7-f4857a5ac3b7','905548899130','Sayın MUSTAFA KIVRAK, 118176933 nolu gönderiniz 3225 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/118176933\n\nDear MUSTAFA KIVRAK, your shipment with 118176933 was delivered to you with the delivery code 3225. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/118176933\n\n\nBICARGO','1','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL),
('4402d338-c2f0-46b0-a0bf-136b6eef5fde','4915776398644','478438901 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8246 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478438901\n\nYour shipment with the number 478438901 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8246. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478438901\n\nBICARGO','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('44054263-30cb-4d31-a0f6-28c0f9aae875','905313340045','Sayın yetkili; BEN FRİHA FATMA adlı müşterinize 437321677 nolu gönderinizin Köşe koltuk ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 13.10.2025 14:30:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('440586ae-6ea3-4f52-ba09-4c476969e13e','32466169557','982858369 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5084 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982858369\n\nYour shipment with the number 982858369 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5084. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982858369\n\nBICARGO','1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL),
('44062311-d797-4b65-877f-852befb93626','491726603821','Sayın YEŞİM TOPKIRAN, 221960678 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221960678\n\nDear YEŞİM TOPKIRAN, your shipment with 221960678 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221960678\n\nBICARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('4408b9e2-4915-4a3d-9ffe-3cca075f9337','905075277637','KENAN BAYAR SSH  adlı müşterinizin 745101735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('4408f328-877a-45b5-bc60-77bbfe992746','41782155575','982751509 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982751509\n\nYour shipment with the number 982751509 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982751509\n\nBICARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('440af09f-cf49-4847-86ee-ba4a5897cc5e','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin DELUXE BAZA SETİ 120X200  ürünü 4 parça halinde Fatura adresinizden 06.08.2025 15:15:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('44158634-758b-4825-a314-c6945b947c6e','4917663388742','Sayın ZİLAN BİLİN, 478250269 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478250269\n\nDear ZİLAN BİLİN, your shipment with 478250269 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478250269\n\nBICARGO','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('4415f131-34cc-4b2c-ad25-a3aa1e7a9490','4915157638110','644847294 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5740 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644847294\n\nYour shipment with the number 644847294 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5740. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644847294\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('441e273b-aff7-4d10-8070-2fa2e30dfe5f','905079358213','ALİ ÖZDEN  adlı müşterinizin 745991962 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('441f70a6-abc0-448e-834d-d4e1ceb3a5a8','33777886864','Sayın BOUDJELLOLİ LAKHAR, 982340056 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982340056\n\nDear BOUDJELLOLİ LAKHAR, your shipment with 982340056 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982340056\n\nBICARGO','1','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL),
('4421017d-649f-4daf-a065-d27b2ce1cdbb','905336367828','BOUDJELLOLİ LAKHAR adlı müşterinizin 982340056 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL),
('44267f96-291f-467c-9534-2cbea417c501','905336367828','Sayın yetkili; SAİD ALİ  adlı müşterinize 982973548 nolu gönderinizin TV ünütesi  ürünü 1 parça halinde Lego Tv mobilya  adresinizden 21.01.2025 10:23:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('4432d3ed-f63a-459c-b21d-cdf6849dc666','33764176010','Sayın KEVSER KAYA, 478983907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478983907\n\nDear KEVSER KAYA, your shipment with 478983907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478983907\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('44341e4e-17ce-4b33-ac82-b04c0c744152','4917624386600','248710120 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248710120\n\nYour shipment with the number 248710120 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248710120\n\nBICARGO','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('44391a26-fa35-4158-bbcf-8eb0ce275828','0033613462791','Sayın HÜSEYİN DÖNERTAŞ, 24886445 nolu gönderiniz 9792 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/24886445\n\nDear HÜSEYİN DÖNERTAŞ, your shipment with 24886445 was delivered to you with the delivery code 9792. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/24886445\n\n\nBICARGO','2','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL),
('443f9dcf-ddb0-41b7-8187-96eb9bb5f8c5','3352305296','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','2','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('444431e6-5525-47c7-b06a-dc81ada7cc48','905325998198','Sayın yetkili; ÖZKAN KARAOĞLU adlı müşterinize 614200423 nolu gönderinizin BAMBİ MAGNASAND 180\'LİK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 18.12.2024 13:54:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('44444703-3f8a-49c8-bd14-3a4ba62940d2','905331602195','ERKAN TAŞDELEN  adlı müşterinizin 221397270 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('44464c1f-2073-4bfc-b820-cbefea773a66','905325165070','Sayın yetkili; ALAADDİN ŞAHİN adlı müşterinize 734460411 nolu gönderinizin şifonyer ürünü 1 parça halinde İnobilya Mağaza adresinizden 06.01.2025 16:46:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('4446f218-667a-4fb3-8b17-39d8c36a41fc','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA ÜNİTE ürünü 1 parça halinde Fatura adresinizden 12.05.2025 18:03:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('444a7620-8a0f-47e9-9370-e50f0175203f','905331602195','Sayın yetkili; MUHAMMED ÇETİN adlı müşterinize 221234413 nolu gönderinizin 80-60 CM TRAVERTEN İKİLİ SEHPA ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 16:45:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('445254db-fece-4a58-a764-36892d99701e','905331602195','Sayın yetkili; DERGHAM NAWEL  adlı müşterinize 22145441 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:27:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('445de6da-2047-4b00-abaf-0ca3de1b0f6d','905454259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde family adresinizden 02.05.2025 15:34:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('445eb75a-ea2d-4f95-87a9-c4e8c2db0435','905331602195','MUHAMMED ERDOĞAN adlı müşterinizin 221396383 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('44665c7c-b616-419c-91f7-d750b0ca8081','491737487037','531549696 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5994 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531549696\n\nYour shipment with the number 531549696 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5994. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531549696\n\nBICARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('44687ee0-5bc2-4f75-acb9-57729ac5d769','4917621136198','ŞÖFÖR İKETİŞİM\n					+905301824880','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('4468c33b-c27f-4b97-9a8e-4cac2b62aa94','905312762034','Sayın yetkili; NATASCHA DJORDJEVİC adlı müşterinize 80873489 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde STYLE SOFA adresinizden 21.07.2025 13:00:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('446ec218-72f6-4a45-9189-eb7bd1b5584c','905461661672','TAYFUN ŞENGÜL adlı müşterinizin 644424764 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('446fca27-8208-4bb0-8e2d-46ecf02a51db','32487435166','Sayın MEHMET SARIKAYA, 268368509 nolu gönderiniz 5231 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268368509\n\nDear MEHMET SARIKAYA, your shipment with 268368509 was delivered to you with the delivery code 5231. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268368509\n\n\nBICARGO','1','9c99f254-2612-4029-ac15-ffb095b93de3',NULL),
('44702210-e566-43af-a266-00fde9b00f84','4915216420316','Sayın HASAN GHASEMİ, 449329901 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449329901\n\nDear HASAN GHASEMİ, your shipment with 449329901 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449329901\n\nBICARGO','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('4470e00f-df09-4bd8-bc17-a37fac3b3df6','4917672242540','Sayın ŞİRİN ASLAN, 371193272 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371193272\n\nDear ŞİRİN ASLAN, your shipment with 371193272 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371193272\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('447214f2-8148-4051-b7a7-a9acb916c081','905059175469','Sayın yetkili; SEBAHAT KOÇAK adlı müşterinize 428761245 nolu gönderinizin Baza başlık ürünü 3 parça halinde befa yatak adresinizden 21.07.2025 12:22:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('447ed4ea-c9f3-4869-8cb8-7bf312390992','905075277637','FATMA ALTAY adlı müşterinizin 745871666 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('44806dee-8b88-4805-93ff-b13072bdeabe','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PIER PUF  ürünü 1 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:06:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('4491fe7c-e3d1-4b4e-a0b7-fdee1e80f5d3','33786784588','126371651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8860 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126371651\n\nYour shipment with the number 126371651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8860. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126371651\n\nBICARGO','1','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL),
('44923cfc-0d9c-40a6-9fcd-950fbcdce793','905312762034','Sayın yetkili; ARXHEND HOXHAJ adlı müşterinize 808384982 nolu gönderinizin Masa Takımı ürünü 11 parça halinde MASAMİ adresinizden 22.10.2025 10:31:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','27e6d149-a838-4bc0-a4d3-7fec20ae44c6',NULL),
('44952905-d7b5-482a-acf4-c395ed3e2d7e','4917634145313','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('44997dbd-5e26-4536-ad4f-e052c38a3a73','31620244050','Sayın REİNAS HAİDARİ, 644884110 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644884110\n\nDear REİNAS HAİDARİ, your shipment with 644884110 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644884110\n\nBICARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('449aa2c4-fd84-4b26-9c1b-c041d4c0b072','905517075149','Sayın yetkili; ONUR ÖZER adlı müşterinize 478733242 nolu gönderinizin ssh+komidin ürünü 1 parça halinde BİCARGO DEPO adresinizden 23.07.2025 14:16:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('44a01f56-4b7b-43f6-a23f-94147b559d26','4917634403928','Sayın BİLAL KIZILIRMAK, 371155650 nolu gönderiniz 6152 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371155650\n\nDear BİLAL KIZILIRMAK, your shipment with 371155650 was delivered to you with the delivery code 6152. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371155650\n\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('44a4e564-f24d-4b05-984c-bc9131213189','905461661672','GÜLŞAH SEVİMLİ adlı müşterinizin 644721676 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('44a54e77-c7b5-428e-9ae8-5cc1b1ce8824','33669929545','Sayın RASHİD FECİANE, 449823745 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449823745\n\nDear RASHİD FECİANE, your shipment with 449823745 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449823745\n\nBICARGO','1','582bd0ee-3bef-4bc8-9243-917189827f95',NULL),
('44a70529-1eb3-402a-8384-74b1f7c65125','905461661672','TAKİ ÇAYCI(K) adlı müşterinizin 644257752 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('44a77a8e-92c9-4ea2-b455-d0f2865d22c6','905517075149','İLKAY İNCE adlı müşterinizin 478485864 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','5552132e-e408-47bc-ab37-19083b622454',NULL),
('44a7ecea-d50d-46f3-90d2-29b5886fabcc','306978038133','Sayın OSMAN BOZKAN, 47822949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47822949\n\nDear OSMAN BOZKAN, your shipment with 47822949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47822949\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('44ab0c14-233e-4c6b-ba95-1ece7dce256a','905059175469','Sayın yetkili; serdal çeper adlı müşterinize 42899153 nolu gönderinizin köşe koltuk ürünü 4 parça halinde massi milano adresinizden 08.11.2024 12:17:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('44ac0f16-fa7f-4da3-8827-48a6c670a515','905078062550','Sayın yetkili; NERİMAN SARI adlı müşterinize 598226174 nolu gönderinizin masa sehpa ürünü 6 parça halinde RİO FATİH adresinizden 29.08.2025 16:33:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('44ac9a42-6e71-4dc2-b098-47023973b724','905331602195','Sayın yetkili; İNAN PALA adlı müşterinize 221210071 nolu gönderinizin 70x100 siyah meşe orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:46:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('44b16603-f447-4342-a799-2bb70670def7','905304259202','SELAHATTİN BAŞPINAR adlı müşterinizin 47835620 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','683d27ef-d6a6-4b68-8486-43f1c42af547',NULL),
('44b39e49-a011-4d0a-87cd-d58a44aecb10','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GARDEROBE DİOR KONSOL ürünü 1 parça halinde GARDOREBE adresinizden 08.09.2025 14:59:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('44b4af87-02f1-472d-a3b1-2c53d286a583','905461661672','Sayın yetkili; TUĞBA GÜLSEVEN SSH adlı müşterinize 644860505 nolu gönderinizin SSH PARÇALAR ürünü 3 parça halinde SİRO MOBİLYA adresinizden 28.05.2025 14:39:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('44ba733a-b214-4d62-841e-6d33bab0817f','905515519191','HASAN BEY adlı müşterinizin 448774640 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL),
('44c50f82-e441-47ec-b616-ffe0d86b58a1','436767311848','37152330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6523 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37152330\n\nYour shipment with the number 37152330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6523. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37152330\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('44c8ca58-fa10-4841-9076-be49496f225a','4917643479930','Sayın ŞADİYE GÖLEÇ, 61420700 nolu gönderiniz 4879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61420700\n\nDear ŞADİYE GÖLEÇ, your shipment with 61420700 was delivered to you with the delivery code 4879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61420700\n\n\nBICARGO','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('44c9a846-8224-4713-8c53-dcdeea0ff10a','32466461371','Sayın MEHRDAND RAZMPOUR, 478962763 nolu gönderiniz 10452 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478962763\n\nDear MEHRDAND RAZMPOUR, your shipment with 478962763 was delivered to you with the delivery code 10452. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478962763\n\n\nBICARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('44cbef26-8804-45da-877c-baa0b986c82c','905075277637','Sayın yetkili; ALİ KARADUMAN adlı müşterinize 7454878 nolu gönderinizin CASA KÖŞE KOLTUK + TEKLİ  ürünü 4 parça halinde Fatura adresinizden 10.09.2025 13:46:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('44cc6e40-bfe8-4d57-85ea-f629ff15247b','33753744343','Sayın SÜVEYLA TARHAN, 745906539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906539\n\nDear SÜVEYLA TARHAN, your shipment with 745906539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745906539\n\nBICARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('44ce861f-e84d-4de2-b2ae-675a8a9d9592','491774653260','Sayın MUSA TABARU, 231348651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231348651\n\nDear MUSA TABARU, your shipment with 231348651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231348651\n\nBICARGO','1','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL),
('44cfd8fe-1724-4c03-9966-dd46c1e446d2','4915735267419','Sayın LYUDMİLA KORUNOVSKA, 371121937 nolu gönderiniz 3533 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371121937\n\nDear LYUDMİLA KORUNOVSKA, your shipment with 371121937 was delivered to you with the delivery code 3533. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371121937\n\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('44d46366-add5-457e-89aa-6bbde0c63cfe','4917658874897','478979004 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7404 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478979004\n\nYour shipment with the number 478979004 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7404. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478979004\n\nBICARGO','1','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL),
('44d875c5-2e51-4e31-9395-4cf85abdd03f','41798624904','Sayın SELMA BAJRAMOSKA, 613633231 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613633231\n\nDear SELMA BAJRAMOSKA, your shipment with 613633231 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613633231\n\nBICARGO','1','37032355-b423-4a3a-bb38-ee78ac469313',NULL),
('44da0900-ee63-421c-ab5e-c1fcb3e1590e','9054439559150','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT KOMODİN SMART SOL ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('44da4e6d-7e36-40fc-ba9b-06c5925912b7','5325000478','Sayın ONUR ONUR, 10.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4482899\nŞifre : 4482899\n			\nBİCARGO','1',NULL,'4c4828d9-9707-439a-b671-bb6ed27bf116'),
('44dbc4a7-2611-45ba-b357-b87f4cb36c1a','32470754918','221561968 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1489 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221561968\n\nYour shipment with the number 221561968 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1489. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221561968\n\nBICARGO','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('44de8459-4b96-4c3a-b470-08ae3034401a','5325000478','Sayın MEHMET MEHMET, 12.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2444538\nŞifre : 2444538\n			\nBİCARGO','1',NULL,'bdbe2cab-db44-453f-899e-74c537e1e204'),
('44e42bdd-906e-4219-91a9-7cea625e7cd5','436603406293','Sayın yetkili; SERHAT MOUEMİN adlı müşterinize 675799375 nolu gönderinizin sandalye ürünü 4 parça halinde MASAMI adresinizden 01.07.2025 12:38:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('44ec52f6-3e93-4e35-a41f-bdb88f0cfe00','905312762034','ERHAN ALP adlı müşterinizin 808538086 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('44ee0a1d-623f-4edb-9204-4e5cec5cf4a1','4915901967333','011255060 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3881 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011255060\n\nYour shipment with the number 011255060 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3881. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011255060\n\nBICARGO','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('44f13bce-6fb0-4269-87e7-c547fc8bab66','31634565565','614390628 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2523 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614390628\n\nYour shipment with the number 614390628 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2523. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614390628\n\nBICARGO','1','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL),
('44f3ee0a-914a-45d1-ae4e-b613269816b6','4917632810959','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('44f5cb9e-221b-44f7-8840-8b42e697d667','905078062550','İVAN SLEMAN DİNO adlı müşterinizin 598410676 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('44fade0c-14c2-4543-b266-ba0fc6be0cf4','905075277637','Sayın yetkili; ÜNAL KÖR  adlı müşterinize 745660870 nolu gönderinizin tv + sehpa demonte  ürünü 4 parça halinde Fatura adresinizden 22.01.2025 11:39:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('44fc6c8f-b9fa-43b2-96b0-ca8667fe61f0','491627680129','Sayın MAHMUD YUSUF ÖKDEM, 127253098 nolu gönderiniz 3628 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127253098\n\nDear MAHMUD YUSUF ÖKDEM, your shipment with 127253098 was delivered to you with the delivery code 3628. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127253098\n\n\nBICARGO','2','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('44fee2d2-5e76-456d-a225-8ffbe7801c14','436601880277','Sayın DRAGİ DİJANA, 675951028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675951028\n\nDear DRAGİ DİJANA, your shipment with 675951028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675951028\n\nBICARGO','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('44ff3451-97eb-4777-96b8-ffe0e3f72a6e','32485363259','517291063 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10625 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517291063\n\nYour shipment with the number 517291063 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10625. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517291063\n\nBICARGO','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('450560ae-27f9-4afb-a9fc-0a70d62ff35d','905461661672','Sayın yetkili; MUHAMMET KÖSEDAĞ adlı müşterinize 644590959 nolu gönderinizin 3 ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 27.08.2025 11:35:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('450907f4-482a-43db-b81b-43aca351892f','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin 180lik yatak ürünü 1 parça halinde befa yatak adresinizden 16.09.2025 11:15:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('450bae6a-0872-432a-86e1-3aeede829eaf','31651912496','Sayın ALİ AYDIN, 428391947 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428391947\n\nDear ALİ AYDIN, your shipment with 428391947 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428391947\n\nBICARGO','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('450d0d3e-45b9-43fd-993e-650e391dfea8','905335708965','OMER AL HASHİMİ adlı müşterinizin 248203029 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL),
('45108bed-731f-4a3f-9d71-c25450685d5b','905454259202','BİRSEN KARADAVUT adlı müşterinizin 478833375 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('4513ba26-5345-4337-aa69-f917cb51a466','491741681168','Sayın ESMA YILDIRIM, 478227571 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478227571\n\nDear ESMA YILDIRIM, your shipment with 478227571 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478227571\n\nBICARGO','1',NULL,NULL),
('451935d4-d730-496e-9e33-380e4458277c','436605507330','598758154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1308 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598758154\n\nYour shipment with the number 598758154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1308. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598758154\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('451a31dc-3737-45a3-95c6-adf6835463b3','436508893388','Sayın MELDA KARA, 64451300 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64451300\n\nDear MELDA KARA, your shipment with 64451300 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64451300\n\nBICARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('451a8d1a-c37f-4416-9f6c-9fd37c3cddef','905313340045','Sayın yetkili; SATİ CENGE adlı müşterinize 437427529 nolu gönderinizin kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 14.08.2025 17:48:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('4523769d-0b34-47b5-9523-6c8f31fe81cc','905335511664','Sayın yetkili; İSA SÖNMEZ adlı müşterinize 371820680 nolu gönderinizin koltuk takımı ürünü 5 parça halinde Elit Köşeci Sinan Bey adresinizden 16.06.2025 11:40:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('4530e2bb-326d-4008-a99f-1e8025b2533a','436764709852','Sayın NURTEN TÜRK, 745220703 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745220703\n\nDear NURTEN TÜRK, your shipment with 745220703 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745220703\n\nBICARGO','1','e8a249a9-b090-42b5-ba99-445005f2b553',NULL),
('453449ca-378b-49f4-9750-344d5ac7bf8e','905394878216','MUSTAFA SEVİNDİ adlı müşterinizin 517827584 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b821f1cd-d990-4100-9455-a2c619562c1e',NULL),
('453a31f5-9581-447a-93b5-3e3c5f83acfd','33783160277','745338988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3279 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745338988\n\nYour shipment with the number 745338988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3279. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745338988\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('453eebc1-d142-45e8-9078-e727349fd342','1111111111111','Sayın YUSUF NAVRUZ , 319141495 nolu gönderiniz 10704 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319141495\n\nDear YUSUF NAVRUZ , your shipment with 319141495 was delivered to you with the delivery code 10704. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319141495\n\n\nBICARGO','2','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('454811af-2601-4136-90e1-85375831861e','33652910874','614419362 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3918 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614419362\n\nYour shipment with the number 614419362 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3918. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614419362\n\nBICARGO','1','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('45487acf-b542-4914-86eb-a230f86cec32','905304259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478361746 nolu gönderinizin KAHVEMAKİNASI ürünü 2 parça halinde çelikbey inegöl depo adresinizden 30.04.2025 16:32:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e',NULL),
('455058ee-8e91-413f-9aa1-1ed335d34b90','905325000478','NUMAN ALTUN adlı müşterinizin 41256945 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL),
('455cf0f9-936d-4463-8db4-3557d2ad78ea','491634662527','Sayın ROMİNA ÇÖPLÜ, 127927013 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127927013\n\nDear ROMİNA ÇÖPLÜ, your shipment with 127927013 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127927013\n\nBICARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('4560d419-f6cb-480e-881d-e7246d001610','905335708965','İSVİÇRE adlı müşterinizin 248186638 nolu gönderisi 65 parça halinde yola çıkmıştır.','1','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL),
('45616f83-15b3-448a-b31a-bb060a54435c','905461661672','RABİA AKKUŞ adlı müşterinizin 644507096 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('45636d48-7d3e-4655-80ef-58f4f1a931d4','491722663878','Sayın TARIK TURAN, 644769101 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644769101\n\nDear TARIK TURAN, your shipment with 644769101 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644769101\n\nBICARGO','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('45642782-1e26-4a5b-9ca6-aae8d00b0e49','905336367828','MEHMET SÜZEN  adlı müşterinizin 98238273 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('4569bad5-a160-44a2-9522-0fabb60333c6','33769604042','Sayın RAMAZAN ALTINKAYNAK, 910163146 nolu gönderiniz 7274 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910163146\n\nDear RAMAZAN ALTINKAYNAK, your shipment with 910163146 was delivered to you with the delivery code 7274. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910163146\n\n\nBICARGO','2','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('456adfc5-9a56-4d3b-9199-fa1d28eafcb1','905335511664','DİLAY MERYEM CİKU adlı müşterinizin 371737204 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0e367b6a-44c3-40e4-9097-1055385b6e27',NULL),
('456c2a44-1ca5-4619-b44d-8043f7fc6891','905517075149','Sayın yetkili; TUĞBA AKTAŞ adlı müşterinize 478687899 nolu gönderinizin masa-6 san.- konsol-tv-orta sehpa ürünü 12 parça halinde GARDEROBE adresinizden 08.08.2025 15:17:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('4572c608-99de-4849-bf3d-fc6728705d35','905059175469','Sayın yetkili; MEHMET KILINÇ adlı müşterinize 428239917 nolu gönderinizin 90lık modül  ürünü 1 parça halinde Fatura adresinizden 26.08.2025 11:15:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('4574ea8c-5ed8-4bc2-9755-b6e8ac342031','905335708965','AAAAAAAAAAAAAAA adlı müşterinizin 248849829 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL),
('457744fe-0690-48e7-9684-051ec8123f2e','491735713527','Sayın MUHAMMET ALTUNKAYA, 478535316 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478535316\n\nDear MUHAMMET ALTUNKAYA, your shipment with 478535316 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478535316\n\nBICARGO','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('457aba51-ab78-4e1c-a96e-8ebf91c6c65f','491773713548','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('457dab74-3108-431b-885a-e2ea71de7b99','905069116877','Sayın yetkili; ALEYNA adlı müşterinize 817395462 nolu gönderinizin Köşe  ürünü 4 parça halinde Fatura adresinizden 28.07.2025 11:02:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('45812de0-69f6-4820-99a7-500b75e09cbc','33621123208','478354582 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478354582\n\nYour shipment with the number 478354582 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478354582\n\nBICARGO','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('4581ea3b-8e06-4fcd-a4df-ead45f59b010','4917623171726','Sayın SEVCAN SALİ, 47888038 nolu gönderiniz 4467 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47888038\n\nDear SEVCAN SALİ, your shipment with 47888038 was delivered to you with the delivery code 4467. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47888038\n\n\nBICARGO','1','945602cc-25e3-4d66-bae2-b70fa6008882',NULL),
('4585ae11-34cf-4d5d-814a-e4f93b729792','905064141111','HATUN ŞİMŞEK adlı müşterinizin 842151692 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('4589ad54-bfc3-4ad2-b22c-5047fc592442','491747765301','371180149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10176 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371180149\n\nYour shipment with the number 371180149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10176. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371180149\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('45962c5a-5b26-4caa-b692-678b4cabb034','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA KİTAPLIK ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 15:00:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('459d3fc9-539a-4231-9dec-48890decadc7','33650234345','Sayın NURTEN MENEKŞE , 982106314 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982106314\n\nDear NURTEN MENEKŞE , your shipment with 982106314 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982106314\n\nBICARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('459ffe9f-7553-448c-b1f8-7a992480cc8e','33770014809','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('45a01d3c-14db-4e99-8a9f-d49e67c2cce0','491747474640','Sayın ÖZDEMİR YAKAN		, 910972908 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910972908\n\nDear ÖZDEMİR YAKAN		, your shipment with 910972908 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910972908\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('45a0e308-feef-4cbb-92e0-141db9996dfa','436766642937','412467921 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1764 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412467921\n\nYour shipment with the number 412467921 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1764. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412467921\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('45a89413-45e0-4734-9c56-2ba0f44687b5','491774020606','Sayın ALEV DOĞRU, 478860616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478860616\n\nDear ALEV DOĞRU, your shipment with 478860616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478860616\n\nBICARGO','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('45a94b94-799c-47d5-b74f-fa32cde8d250','905336367828','JİLLİA AMİRİ adlı müşterinizin 982630175 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d46dc46d-e5f4-4787-aee1-803a6155fef5',NULL),
('45a95f8f-bbc4-46aa-8af9-24f85d36e618','41795825997','Sayın FLORENTİNA, 126561228 nolu gönderiniz 5379 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126561228\n\nDear FLORENTİNA, your shipment with 126561228 was delivered to you with the delivery code 5379. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126561228\n\n\nBICARGO','1','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL),
('45acb54a-2002-4a43-8507-16e2a42e6949','4915756075578','644340759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644340759\n\nYour shipment with the number 644340759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644340759\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('45af186c-5bdc-4e60-b81f-e8453775c399','905079047428','AYSEL KARABULUT adlı müşterinizin 449454395 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('45b5b328-e8ea-40f7-8f36-1594084b9cf5','33781067727','Sayın MELİSA DEMİRTAŞ, 478504480 nolu gönderiniz 7008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478504480\n\nDear MELİSA DEMİRTAŞ, your shipment with 478504480 was delivered to you with the delivery code 7008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478504480\n\n\nBICARGO','1','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL),
('45b70d6b-6faf-4d07-9f0c-b94ddee0b235','905325000478','YASİN DOVENSE adlı müşterinizin 41283852 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL),
('45ba685d-3325-4b4a-bb3e-a87e731a1f33','4917630700485','Sayın MEHMET ANDIÇ, 745759881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745759881\n\nDear MEHMET ANDIÇ, your shipment with 745759881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745759881\n\nBICARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('45bbbd79-1e73-4e95-82ce-2e43b19b736a','5325000478','Sayın AAAAAAAA BBBBBBBBB, 25.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1810198\nŞifre : 1810198\n			\nBİCARGO','1',NULL,'181a019f-f84f-4bec-9e2d-64e6f0c068eb'),
('45c958b2-7349-4de2-afe2-465ede87b8a8','491746845018','Sayın EBUBEKİR ATA , 319316615 nolu gönderiniz 6185 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319316615\n\nDear EBUBEKİR ATA , your shipment with 319316615 was delivered to you with the delivery code 6185. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319316615\n\n\nBICARGO','1','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL),
('45c9d7a8-a7db-4557-8289-c8de89ad31f0','33616745884','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('45ca19da-4134-4eaf-bdb0-4e0bf2e4630f','905304259202','PELŞİN YILDIZ adlı müşterinizin 478245028 nolu gönderisi 51 parça halinde yola çıkmıştır.','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('45ca3691-b01c-43fe-b44a-a084819747bf','33768202556','221251932 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2939 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221251932\n\nYour shipment with the number 221251932 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2939. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221251932\n\nBICARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('45cad2f8-c0ce-4e00-9281-328b91900142','491795060758','Sayın DÖNDÜ ESER, 745498790 nolu gönderiniz 6893 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745498790\n\nDear DÖNDÜ ESER, your shipment with 745498790 was delivered to you with the delivery code 6893. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745498790\n\n\nBICARGO','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('45d09ed2-e59d-493e-9f52-10b76d984738','905355928266','Songül şahin adlı müşterinizin 412157634 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL),
('45d18cdd-01be-4277-8ae3-330ee0f95d8d','33781975694','Sayın ZAINOUNE LOUBNA, 613809111 nolu gönderiniz 1634 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613809111\n\nDear ZAINOUNE LOUBNA, your shipment with 613809111 was delivered to you with the delivery code 1634. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613809111\n\n\nBICARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('45d8ef7d-1df7-474e-b507-66768858a906','905350617509','Sayın yetkili; BURHAN SARİKURT adlı müşterinize 613508377 nolu gönderinizin Masa  ürünü 2 parça halinde İlyas Masa adresinizden 21.03.2025 17:55:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('45dbb5dc-894d-4a6c-9598-737ffe6da5db','33695016273','Sayın GÜLSÜM KOÇAK, 745632580 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745632580\n\nDear GÜLSÜM KOÇAK, your shipment with 745632580 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745632580\n\nBICARGO','1','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL),
('45dbd0f7-653e-4052-aff4-1c5aab46b80a','905331602195','AZİME YETİM adlı müşterinizin 221752631 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('45dced01-e087-499f-9d39-e04ae35542c0','4917620519550','Sayın İBRAHİM BAĞCI, 745197344 nolu gönderiniz 8954 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745197344\n\nDear İBRAHİM BAĞCI, your shipment with 745197344 was delivered to you with the delivery code 8954. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745197344\n\n\nBICARGO','1','a2d259a0-8a03-4763-951b-98fe714623ce',NULL),
('45e3a561-f0bd-4f8a-a209-18ed378c9dc6','905079358213','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin UNUTULAN PİER PUF  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('45e50c63-e040-4378-9728-f8260263e83a','4915254110873','Sayın FATİH ŞEKER, 910891585 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910891585\n\nDear FATİH ŞEKER, your shipment with 910891585 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910891585\n\nBICARGO','1','a69f955e-df2b-44dd-8811-569ba620bc40',NULL),
('45e61188-d7a3-45d9-92dd-4fa9532646e8','33633441072','734447528 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3709 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734447528\n\nYour shipment with the number 734447528 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3709. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734447528\n\nBICARGO','1',NULL,NULL),
('45ef5dc8-0532-448e-9cb8-00761b62322e','905461661672','GAMZE KOCAMAZ adlı müşterinizin 644682734 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('45f66f8b-afd8-4579-9314-0aac1577778f','905454259202','SADIK PALA adlı müşterinizin 478633498 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL),
('45f804c2-fe8d-4554-8a58-cbb9047ffcfe','33612326252','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('45fa21ff-6f46-4d98-8957-e6923d3a99cd','491774822488','Sayın MUAMMER SAYIN, 338822119 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338822119\n\nDear MUAMMER SAYIN, your shipment with 338822119 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338822119\n\nBICARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('45fd392d-c0bb-47c5-bbcc-c890b4f82afb','905335511664','FATMA DUMAN adlı müşterinizin 371696993 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('45fd423a-2e94-442f-994f-9db24e164865','905394878216','Sayın yetkili; MASİS YAZMACİYAN adlı müşterinize 517867004 nolu gönderinizin Koltuk Takımı 3+1 ürünü 3 parça halinde Fatura adresinizden 03.07.2025 16:54:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('45ffe390-8e3d-4af9-9506-c1bb840903ee','4915560261024','Sayın HALİL İBRAHİM BACAKSIZ, 976894167 nolu gönderiniz 4077 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976894167\n\nDear HALİL İBRAHİM BACAKSIZ, your shipment with 976894167 was delivered to you with the delivery code 4077. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976894167\n\n\nBICARGO','1','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL),
('4603427f-f416-41d6-9aba-e0109e87d163','905069116877','Sayın yetkili; ORHAN KURT adlı müşterinize 817578021 nolu gönderinizin Star köşe ürünü 7 parça halinde Fatura adresinizden 11.09.2025 13:49:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('46035cf0-1339-496f-a6d2-718809d080f3','4917663371401','371540742 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371540742\n\nYour shipment with the number 371540742 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371540742\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('460c84e8-990c-420f-8657-7a42b99f62bd','32470652077','Sayın SEYFETTİN, 703581635 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/703581635\n\nDear SEYFETTİN, your shipment with 703581635 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/703581635\n\nBICARGO','1','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL),
('460fc681-f99d-4707-82c5-10d36070291b','491795209461','Sayın GHAZAL TARIK İLHAN, 644971564 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644971564\n\nDear GHAZAL TARIK İLHAN, your shipment with 644971564 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644971564\n\nBICARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('4618472a-3498-4de4-a39d-8e6139e59511','905079358213','ERCAN VARSAK SSH  adlı müşterinizin 745282619 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('461cfe2e-a2a6-43cf-91c7-86992d5d5962','905313340045','Sayın yetkili; MİRAÇ SAKAR adlı müşterinize 437969799 nolu gönderinizin sandalye ürünü 3 parça halinde ard sandalye adresinizden 04.02.2025 16:47:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('461d834c-2441-4bfe-bd1d-18c8eb82cd9c','905075277637','BİRSEN BALIM adlı müşterinizin 74521183 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('461eb5b7-6bd7-45e4-9904-e3843ecc9a07','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin SANDALYE 6 ADET ürünü 3 parça halinde acca adresinizden 17.06.2025 11:42:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('462133e8-aea6-4d4e-b7e4-f873814f31d9','7627367263762632','Sayın TURGAY, 412139250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412139250\n\nDear TURGAY, your shipment with 412139250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412139250\n\nBICARGO','2','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('46216d8e-f0a8-49d9-975f-5f905183997f','905301592882','ATAKAN OLCAYTÜRK  adlı müşterinizin 910485088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8259588b-b757-4856-a390-2e9ec4c403c8',NULL),
('4622f373-d2ac-4c7b-bae1-2a1f38825d8f','491778507163','Sayın ELİF HANIM , 455685955 nolu gönderiniz 4218 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455685955\n\nDear ELİF HANIM , your shipment with 455685955 was delivered to you with the delivery code 4218. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455685955\n\n\nBICARGO','1','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL),
('4626a113-7b36-4947-85e7-dd60edb8563c','905075277637','PINAR SALMA adlı müşterinizin 745687103 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('46276eff-ab8e-496c-8aa8-65d6ba4bbb68','905333221039','FATİH KAYA adlı müşterinizin 750845897 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL),
('46291dbb-b231-40c8-8940-00bbc71d10df','905363385813','MEHMET ALİ ALBECER adlı müşterinizin 976747802 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('462ef771-6913-43fb-a3a0-f694b1e8999b','49913127367','Sayın HASAN PİCKEL, 223210999 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223210999\n\nDear HASAN PİCKEL, your shipment with 223210999 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223210999\n\nBICARGO','2','04757da4-5689-4b28-8662-727fabf44027',NULL),
('46315d02-4b36-45ba-b9e1-a360083a451d','015163483379','644593040 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3477 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644593040\n\nYour shipment with the number 644593040 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3477. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644593040\n\nBICARGO','2','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('4631b6bf-c891-4927-8de1-766cff9ba960','33652381202','Sayın KEVIN PAROIS, 20390821 nolu gönderiniz 3168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/20390821\n\nDear KEVIN PAROIS, your shipment with 20390821 was delivered to you with the delivery code 3168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/20390821\n\n\nBICARGO','1','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL),
('46375375-9660-4852-8f65-82cbdcf16813','4917673560925','Sayın ELFRİDA RAİCEVİC , 613510894 nolu gönderiniz 8665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613510894\n\nDear ELFRİDA RAİCEVİC , your shipment with 613510894 was delivered to you with the delivery code 8665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613510894\n\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('4639f3c7-2fbc-4d23-ad9b-0dc826323af5','905350617509','Sayın yetkili; TAHA MİRA adlı müşterinize 613362955 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 22.07.2025 14:43:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7b29836-18a7-4b80-a64c-61eeb5b079fe',NULL),
('463e8b89-cdd9-471e-a98c-1ddf2da52c90','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin TÜRKMEN HEROS  KANEPE ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('46421304-c740-41b4-8c62-8e4111c869f9','33650469375','Sayın KÜRŞAT OKUTAN, 644377360 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377360\n\nDear KÜRŞAT OKUTAN, your shipment with 644377360 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644377360\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('46421cbf-9341-450f-b4ed-984726da558d','905078062550','Sayın yetkili; OSMAN ASLAN adlı müşterinize 598127401 nolu gönderinizin MASA ürünü 3 parça halinde SM TASARIM adresinizden 09.04.2025 17:16:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('464272b2-bf0c-47a8-a895-2df0575eee22','4915111866659','644796083 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4358 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796083\n\nYour shipment with the number 644796083 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4358. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644796083\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('4646cdb3-9977-4ad4-bb15-799dfcb2f040','491792099909','Sayın GÖKKUS PİNAR, 61340935 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61340935\n\nDear GÖKKUS PİNAR, your shipment with 61340935 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61340935\n\nBICARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('4647dfad-951f-42ee-8482-69f32cdb5ef8','905428209234','OKTAY TAN adlı müşterinizin 319533001 nolu gönderisi 3 parça halinde yola çıkmıştır.','1',NULL,NULL),
('4648a6b3-003d-49e3-a343-7077228fce27','','Sayın PRISMANN-NESTE NETHERLANDS, 412157690 nolu gönderiniz 4193 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412157690\n\nDear PRISMANN-NESTE NETHERLANDS, your shipment with 412157690 was delivered to you with the delivery code 4193. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412157690\n\n\nBICARGO','2',NULL,NULL),
('46494953-3f7a-4c73-bcad-4f2ffb9a7d50','491712326850','Sayın YUSUF ALAN, 745130019 nolu gönderiniz 2777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745130019\n\nDear YUSUF ALAN, your shipment with 745130019 was delivered to you with the delivery code 2777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745130019\n\n\nBICARGO','1','ef437620-5922-42f3-91ee-d44f1d84b757',NULL),
('46495d9e-5f1b-4b24-af78-bcd971a74cf9','33783080694','982873637 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6259 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982873637\n\nYour shipment with the number 982873637 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6259. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982873637\n\nBICARGO','1','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL),
('464cbb6c-be64-4501-8012-956901504d9c','4550323382','982484679 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4717 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982484679\n\nYour shipment with the number 982484679 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4717. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982484679\n\nBICARGO','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('4654cf1b-04cc-4b89-950a-ed352bcf7064','33622632744','745978651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1441 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745978651\n\nYour shipment with the number 745978651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1441. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745978651\n\nBICARGO','1','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL),
('465d7d90-e669-43eb-935a-f1f4dc5a558a','905368336516','Sayın yetkili; GAMZE ÖRSELOGLU adlı müşterinize 515377519 nolu gönderinizin MASA SANDALYE SEHPA ürünü 13 parça halinde masami adresinizden 08.10.2025 16:49:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','04fb8dfc-07be-4e81-a060-8a8a6f53ef14',NULL),
('465fc580-9a30-40f5-b55d-118313ed660c','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin 90x170 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:42:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('465fe9b8-841b-466e-bf62-4f6f86de9180','420606704964','Sayın NATALİJE, 916836796 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/916836796\n\nDear NATALİJE, your shipment with 916836796 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/916836796\n\nBICARGO','1','45658f08-1cac-40c6-b173-5814bf12543e',NULL),
('46603e86-614a-4f85-8dc8-dd5e084281fb','905304259202','HAKAN YAZICIOĞLU adlı müşterinizin 478681830 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL),
('4666af13-ecad-4590-86d8-3fe4bd81b33c','4915560564579','817838997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8713 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817838997\n\nYour shipment with the number 817838997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8713. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817838997\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('46691a3a-9ebb-43bd-8153-2125ad89d9b1','4369910088111','Sayın FATMA SILA KAÇAK, 644194590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644194590\n\nDear FATMA SILA KAÇAK, your shipment with 644194590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644194590\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('466d870d-c3fb-4290-9a78-cb5a66dd67b2','4917683344866','745884226 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9963 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745884226\n\nYour shipment with the number 745884226 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9963. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745884226\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('4670988a-3de1-4a98-9c5d-5728be76ca43','4915757275469','Sayın FATMA SAĞLIK, 437835103 nolu gönderiniz 8136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437835103\n\nDear FATMA SAĞLIK, your shipment with 437835103 was delivered to you with the delivery code 8136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437835103\n\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('4676b70b-7c11-4a49-891e-284996d3497f','330758076179','982585914 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1214 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982585914\n\nYour shipment with the number 982585914 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1214. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982585914\n\nBICARGO','2','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('467e7b9a-3802-4850-aa3a-ed414c2f445e','905517075149','Sayın yetkili; SELDA ÇELİK adlı müşterinize 478777541 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde beymi sandalye adresinizden 06.08.2025 12:08:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('468052b9-71a8-40ac-882e-2e41684bc3e4','436763463503','DRİVER NUMBER\n					905541100849','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('46899978-d870-41b8-b65d-d9e4ad2fe455','905079358213','MUSTAFA IBRYAMOV adlı müşterinizin 745907299 nolu gönderisi 64 parça halinde yola çıkmıştır.','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('468c16bf-1675-4782-908c-077aa5051ff6','31650234175','Sayın SAİT CARCUR, 501423957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501423957\n\nDear SAİT CARCUR, your shipment with 501423957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501423957\n\nBICARGO','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('46920824-afc7-4e70-8140-37c342d29918','05531042901','478935366 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9365 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478935366\n\nYour shipment with the number 478935366 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9365. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478935366\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('469842b1-2e70-49f5-8a7e-10e1e580b6e3','905075277637','Sayın yetkili; MÜSLÜM MERDANE adlı müşterinize 74520622 nolu gönderinizin elit koltuk takımı ürünü 4 parça halinde Fatura adresinizden 22.01.2025 11:38:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('4699d7c3-0cb5-480b-9aa4-392501887f31','905336367828','Sayın yetkili; AYDIN KEMERLİ  adlı müşterinize 982837523 nolu gönderinizin sandalye ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 30.12.2024 16:38:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('469a8d24-e546-44fa-bfac-bd29488b7bfb','33601991875','Sayın ALİCE CHOCRON, 478589258 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478589258\n\nDear ALİCE CHOCRON, your shipment with 478589258 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478589258\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('469db95a-f266-4f29-b1bb-b28101eabc23','4917662467195','644658399 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5504 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644658399\n\nYour shipment with the number 644658399 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5504. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644658399\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('469e8282-a909-46fc-a905-cef86ba6d72f','31641824655','371665790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2947 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665790\n\nYour shipment with the number 371665790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2947. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371665790\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('46a2512a-5cae-4963-b888-adc52eb843b9','33616598660','Sayın LABABABİD WEJDAN, 478417862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478417862\n\nDear LABABABİD WEJDAN, your shipment with 478417862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478417862\n\nBICARGO','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('46a265ff-426e-4aaa-b3f8-13400879d65f','905461661672','Sayın yetkili; TEVFİK KÜÇÜK adlı müşterinize 644513470 nolu gönderinizin Sandalye ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 30.08.2025 12:32:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('46a312cb-481d-420d-9123-5e5188771d59','491737526626','Sayın GALİNA KAMERER , 613499620 nolu gönderiniz 9385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613499620\n\nDear GALİNA KAMERER , your shipment with 613499620 was delivered to you with the delivery code 9385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613499620\n\n\nBICARGO','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('46a64892-f234-4d37-8bc6-00959711af74','4915112196306','Sayın DİLCAN YEŞİLMEN, 371290223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371290223\n\nDear DİLCAN YEŞİLMEN, your shipment with 371290223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371290223\n\nBICARGO','1','751e7cfe-45c9-4ff6-a9db-f5b7e29356ac',NULL),
('46a8c837-99c4-42d0-83d3-52b10d0f54f6','905075277637','MURAT SABAK adlı müşterinizin 745859135 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL),
('46b4b528-c7db-4ddb-83fb-71601f576423','4917614644899','Sayın MUHAMMED EMİN TILMAZ, 65728268 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65728268\n\nDear MUHAMMED EMİN TILMAZ, your shipment with 65728268 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65728268\n\nBICARGO','1','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL),
('46b85312-00cf-4ef6-a917-90a52b6acc40','905428209234','LEYLA TACİMOĞLU adlı müşterinizin 319212544 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('46bbe87d-5574-423e-888e-9535ea77d606','4917636373200','Sayın AZİZE KAYA, 221946527 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221946527\n\nDear AZİZE KAYA, your shipment with 221946527 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221946527\n\nBICARGO','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('46bf07cc-1b52-468e-b0c4-318c376a71bf','905079358213','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin BAMBİ LATEX MASTER YATAK 180X200 1 ADET  ürünü 1 parça halinde Fatura adresinizden 23.09.2025 14:20:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('46c06697-695a-4f5b-ba37-603fa4822aa1','905517075149','Sayın yetkili; ÖMER EKŞİN adlı müşterinize 478391312 nolu gönderinizin koltuk takımı area 4+3+1+1 ürünü 4 parça halinde AREA adresinizden 01.09.2025 11:53:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('46c1001c-1652-44f3-8830-bba16d55b929','905535521975','İLAYDA FİDAN  adlı müşterinizin 019868401 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('46c3e49e-47cd-4cb0-a243-9452eb901a9f','436503440942','Sayın BURCU HANIM , 455207811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455207811\n\nDear BURCU HANIM , your shipment with 455207811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455207811\n\nBICARGO','1','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL),
('46ca46a0-ca11-44b0-a5ab-c04e779a67a1','33679512042','478415751 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2154 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478415751\n\nYour shipment with the number 478415751 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2154. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478415751\n\nBICARGO','1','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('46cba61e-ae56-4b7d-b6b0-35d278235344','5325000478','Sayın MEHMET KARAMAN, 18.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2531777\nŞifre : 2531777\n			\nBİCARGO','1',NULL,'e253177a-72af-43f4-9ca5-592caa74965a'),
('46cbfe94-22f7-4ca6-bcc3-d620cc8568e0','05394752647','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('46d9016d-4232-4ae0-b393-aa66f8abd5b7','4915222621206','Sayın SELÇUK SÖNMEZ, 803961620 nolu gönderiniz 9789 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/803961620\n\nDear SELÇUK SÖNMEZ, your shipment with 803961620 was delivered to you with the delivery code 9789. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/803961620\n\n\nBICARGO','1','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL),
('46dae9b8-a52e-48d0-ab7b-53aeec4d05e5','905517075149','Sayın yetkili; KEYVAN GHADİMİ adlı müşterinize 478363734 nolu gönderinizin 3+2+1 koltuk takımı ürünü 3 parça halinde BİCARGO DEPO adresinizden 02.07.2025 14:48:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('46dba8b2-71fe-49bb-a464-d2248df65892','905532675926','Sayın yetkili; ALİ AYDIN adlı müşterinize 428391947 nolu gönderinizin koltuk3+3+1 ürünü 3 parça halinde novano adresinizden 30.09.2025 14:55:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('46dd50a7-41fc-413e-ba42-9abaee1aaa25','33675449544','Sayın MASİS YAZMACİYAN, 517867004 nolu gönderiniz 5228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517867004\n\nDear MASİS YAZMACİYAN, your shipment with 517867004 was delivered to you with the delivery code 5228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517867004\n\n\nBICARGO','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('46e148d6-d02a-4f67-9811-585edcc7307e','4915252595049','428879207 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5789 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428879207\n\nYour shipment with the number 428879207 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5789. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428879207\n\nBICARGO','1','c928edbb-a731-4b55-bdfb-3f68dedd72df',NULL),
('46e158c6-37a9-43c4-84e6-5f99c588ac9a','436604807629','Sayın KARAARSLAN YELİZ, 808886614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808886614\n\nDear KARAARSLAN YELİZ, your shipment with 808886614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808886614\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('46e314ab-a5a8-4320-8963-a43cfc02859c','491578706465','Sayın BERKAN AĞIRMAN, 91034652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91034652\n\nDear BERKAN AĞIRMAN, your shipment with 91034652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91034652\n\nBICARGO','2','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('46e68b5e-cdb7-4fe3-b198-ed2d68eee804','905079047428','Sayın yetkili; YUSUF IŞIK adlı müşterinize 449582137 nolu gönderinizin Yatak ürünü 1 parça halinde Can yatak baza adresinizden 03.01.2025 09:39:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('46f0ad45-3371-4c1b-8875-dfe4de85741d','33612326252','Sayın MEO JONATHON SSH, 437124353 nolu gönderiniz 8306 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437124353\n\nDear MEO JONATHON SSH, your shipment with 437124353 was delivered to you with the delivery code 8306. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437124353\n\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('46f0b6a3-a9b6-470a-986e-e7f01f72e619','905336367828','TKHİLİ BOUSHABA  adlı müşterinizin 982578491 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('46f12542-14cc-4c93-b48b-13d72f98dc95','905313340045','Sayın yetkili; GAMZE ŞAHİN adlı müşterinize 437400305 nolu gönderinizin masa ürünü 3 parça halinde decoria adresinizden 09.05.2025 11:32:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('46f55a96-8ccd-452c-a1b6-492577b0f440','4917687857999','İletişim \n					Şöför Murat : +905321616048','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('46f8e772-47c0-4dde-ae08-136ebf6f30d9','905461661672','DİLARA COŞKUN adlı müşterinizin 644684600 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('46fd2d5c-6576-43fd-acca-2fb11c828d69','905332942204','Sayın yetkili; ADRİANNA WİEMANN adlı müşterinize 505724535 nolu gönderinizin kumaşlı ayna ürünü 1 parça halinde mfour adresinizden 09.10.2025 16:33:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('46fd5c5a-cfff-4503-93ca-46baea79bc3e','4917664184092','Sayın TİMUÇİN SAYIN, 221786435 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221786435\n\nDear TİMUÇİN SAYIN, your shipment with 221786435 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221786435\n\nBICARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('47021ee8-41bd-4e75-9127-7ef03cc4d528','905517075149','LABABABİD WEJDAN adlı müşterinizin 478417862 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('4704092b-b155-41b4-a745-36dfb30900b3','905336367828','SAİD ALİ  adlı müşterinizin 982973548 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('4704fce3-cedc-47d0-8742-eb218560a924','905318109098','FATMA EROĞLU  adlı müşterinizin 455757391 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d993ce90-f47a-45f5-b714-cf612685b50d',NULL),
('47050c80-3018-49d5-a5c1-b8b96f64a897','4915158584093','Sayın AYNUR DURSUN, 817136073 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817136073\n\nDear AYNUR DURSUN, your shipment with 817136073 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817136073\n\nBICARGO','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('4705abc8-f66e-4c88-975c-8b0d878622c4','905079358213','SUZAN GÜNER adlı müşterinizin 745268660 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','911c7ae7-7f82-47f1-bf3f-3aea34a7f1f7',NULL),
('4708dde5-d61e-45a9-8752-350367d83671','905079358213','KADİR DALKILIÇ adlı müşterinizin 745881843 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL),
('47108bf6-dd7d-44a6-907e-a4906a21017d','491625434501','Sayın MÜŞERREF GONCA, 745831913 nolu gönderiniz 2928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745831913\n\nDear MÜŞERREF GONCA, your shipment with 745831913 was delivered to you with the delivery code 2928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745831913\n\n\nBICARGO','1','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL),
('472075ef-5f48-490e-a44a-217d50522f79','36363737364','Sayın DEKORATA, 412417235 nolu gönderiniz 6586 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412417235\n\nDear DEKORATA, your shipment with 412417235 was delivered to you with the delivery code 6586. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412417235\n\n\nBICARGO','2','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('472715e8-a60a-4f17-9979-42480ef6eee6','905312762034','ESMA GÜNVAR adlı müşterinizin 808396862 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('472a4c6f-9bfe-4b91-be72-8700920a2153','4915774445546','Sayın TOLGA KESEN , 910796066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910796066\n\nDear TOLGA KESEN , your shipment with 910796066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910796066\n\nBICARGO','1','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL),
('472d3e66-955d-4245-b3ce-cdc88d32386a','4917642954543','Sayın ÇİĞDEM MURAT, 65758007 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65758007\n\nDear ÇİĞDEM MURAT, your shipment with 65758007 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65758007\n\nBICARGO','1','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL),
('472ea141-74ef-4880-8fcf-99ba5bc0ae6d','491725785095','Sayın HARUN ŞAHİN, 371421349 nolu gönderiniz 7604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371421349\n\nDear HARUN ŞAHİN, your shipment with 371421349 was delivered to you with the delivery code 7604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371421349\n\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('472f46fd-7548-4510-a8dc-0885f1759271','491751919255','338829299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10277 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338829299\n\nYour shipment with the number 338829299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10277. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338829299\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('4734ba91-0860-406c-b883-fa3bab7c7544','905325165070','Erkan ÖZKÖKKAYA adlı müşterinizin 734788911 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('47358fd8-4429-46fc-abe9-c0a90e4d24e8','905454259202','Sayın yetkili; ÖZGÜR BAY adlı müşterinize 47833977 nolu gönderinizin 180lik baza ve yatak ürünü 6 parça halinde çelikbey inegöl depo adresinizden 11.04.2025 15:26:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('4737153b-3353-4e91-958d-54c1c089d5ac','33699489518','221573899 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221573899\n\nYour shipment with the number 221573899 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221573899\n\nBICARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('4744148d-7007-4f54-b5e5-53f134348903','905079358213','FATMA ALTAY adlı müşterinizin 745871666 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('4749efb9-26b1-4b77-9973-eef68796321d','905313340045','Sayın yetkili; MERYEM BİRCAN ANİK adlı müşterinize 437791709 nolu gönderinizin yemek masası ürünü 3 parça halinde decoria adresinizden 22.05.2025 12:35:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('474b1dae-d26f-4f85-8324-27f54254f463','491728743891','Sayın TUĞÇE ÖZKAYA, 598587609 nolu gönderiniz 8915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598587609\n\nDear TUĞÇE ÖZKAYA, your shipment with 598587609 was delivered to you with the delivery code 8915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598587609\n\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('474b4e38-22e7-4ad7-908c-a8c35d79e3a9','4917622797061','Sayın GÜLSEREN ŞAHİN, 371494792 nolu gönderiniz 2522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371494792\n\nDear GÜLSEREN ŞAHİN, your shipment with 371494792 was delivered to you with the delivery code 2522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371494792\n\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('474cae03-8bd9-4196-b304-ebd27229577e','905075277637','İLKER BİLİCİ adlı müşterinizin 745128598 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL),
('4751db7d-3e7b-4825-9254-a30b0f45685c','033789094109','Sayın FATMA KURT ÇAKIR, 734936220 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734936220\n\nDear FATMA KURT ÇAKIR, your shipment with 734936220 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734936220\n\nBICARGO','2','34e0270e-97b8-4007-bdff-03282449c33a',NULL),
('4757d6dd-b1d0-41ca-9ebb-aa13c44d2f0b','32489309952','Sayın ELİF SIKI , 517157021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517157021\n\nDear ELİF SIKI , your shipment with 517157021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517157021\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('475f7ade-88fd-405b-a560-fb1e69cd12c0','905461661672','MUHAMMED ALİ TÜMKAYA adlı müşterinizin 64455982 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('475f7f4a-29c1-4d5b-9c22-a21352cfc5e6','905461661672','Sayın yetkili; RUKİYE BARUT SSH adlı müşterinize 644625326 nolu gönderinizin SEHPA ÜST TABLA ürünü 1 parça halinde Masami Mobilya adresinizden 27.08.2025 11:27:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('4762f916-ef0a-4702-9a0a-d006a02ec56a','905331602195','Sayın yetkili; HASAN YALÇIN adlı müşterinize 221724224 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:18:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('4763f58e-05d7-4e9c-9969-dfa52969b693','4915757272301','Sayın OKAN CORAMAN, 745980941 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745980941\n\nDear OKAN CORAMAN, your shipment with 745980941 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745980941\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('4764c498-6df1-4c94-a099-5e6ed8563c97','905301592882','NESLİHAN KÖSEM  adlı müşterinizin 910405441 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL),
('476c0869-b8ce-4912-8e3d-572a56e11571','905335708965','FATMA HANIM adlı müşterinizin 248259363 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL),
('476c8174-16e9-4b38-ab57-400df1386b8f','436607580201','Sayın  UĞUR KAPLAN , 011697836 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011697836\n\nDear  UĞUR KAPLAN , your shipment with 011697836 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011697836\n\nBICARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('476fc2b3-64bd-41b0-a064-b9860bccc77e','905331602195','SELCAN KURU adlı müşterinizin 221208954 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('4770a7d5-6450-49bd-83d3-724c6c06ea8b','491632890514','478244236 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5501 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478244236\n\nYour shipment with the number 478244236 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5501. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478244236\n\nBICARGO','1','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL),
('4771b167-df89-49c7-ae36-73955cd4c860','4917630530053','644741916 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5412 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644741916\n\nYour shipment with the number 644741916 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5412. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644741916\n\nBICARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('4771e0b1-d78b-4c71-8614-a93e4b5a44b1','33664036278','478733242 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478733242\n\nYour shipment with the number 478733242 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478733242\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('4773e395-d38a-4ed4-b95b-d6feea1a7231','436605331605','Sayın FADİME ERİMEZ, 598425779 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598425779\n\nDear FADİME ERİMEZ, your shipment with 598425779 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598425779\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('47771ceb-c503-4e96-aff8-7b1ba644de27','49015151400787','Sayın DÖNDÜ YÖRÜK SSH, 644458216 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644458216\n\nDear DÖNDÜ YÖRÜK SSH, your shipment with 644458216 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644458216\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('4778a1e6-ef4c-4b80-a5cc-909d875c3897','4917666876193','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('477bfff6-723b-4f96-8024-38cb0f16a41b','905075277637','FURKAN BAŞTEPE adlı müşterinizin 745778561 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL),
('477ca796-dfb8-404b-9e04-7d27362c0f47','4915204511037','Sayın FATMA GÜR, 745382052 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745382052\n\nDear FATMA GÜR, your shipment with 745382052 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745382052\n\nBICARGO','1','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL),
('477f3b4b-de1c-4c61-aa8b-e843d563abb4','905075277637','LEİLA GELES SSH adlı müşterinizin 745865715 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('477fb0fc-6b10-4f38-9e50-b16a56c13142','905461661672','KERİM ŞENTÜRK adlı müşterinizin 644966461 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('4781bad1-d71e-4c2a-8de4-1b02bcc94db8','33767057067','Sayın ELİF GABEL , 982536674 nolu gönderiniz 8655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982536674\n\nDear ELİF GABEL , your shipment with 982536674 was delivered to you with the delivery code 8655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982536674\n\n\nBICARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('4782bb56-8b9c-42d7-968e-a80b60fe4d5a','4915124486565','Sayın MEHMET AKDAĞ, 614666366 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614666366\n\nDear MEHMET AKDAĞ, your shipment with 614666366 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614666366\n\nBICARGO','1','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('4785856c-8cec-46a8-a23d-35d1dd1597c9','491786878785','745924426 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10935 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745924426\n\nYour shipment with the number 745924426 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10935. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745924426\n\nBICARGO','1','d78e9aef-d794-44e4-a9be-c55739db8e56',NULL),
('478a9700-2974-4d34-b593-4a750d75484d','905336367828','Sayın yetkili; ELİF GABEL  adlı müşterinize 982536674 nolu gönderinizin Sandalye  ürünü 4 parça halinde Ademoğlu sandalye  adresinizden 30.12.2024 16:40:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('478b5358-b5f6-43d1-980a-bb0583ed7bcc','33646220992','Sayın KAMEL NECBA, 745849265 nolu gönderiniz 8121 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745849265\n\nDear KAMEL NECBA, your shipment with 745849265 was delivered to you with the delivery code 8121. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745849265\n\n\nBICARGO','1','88e3316c-4816-449f-a946-ceba121ee2bb',NULL),
('47911203-4fe5-4b45-93b6-92d9605d963d','905461661672','FEMİ SALİHİ adlı müşterinizin 644100790 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('479506e6-ffe1-42aa-b0af-72dda2afdb07','905331602195','Sayın yetkili; CAN ILKAY IBOV adlı müşterinize 221225501 nolu gönderinizin 140 çap traverten masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('479a808d-f60f-4eeb-88aa-5487e11bbf27','33769502922','Sayın SAFİ, 449634859 nolu gönderiniz 3268 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449634859\n\nDear SAFİ, your shipment with 449634859 was delivered to you with the delivery code 3268. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449634859\n\n\nBICARGO','1','db66575e-7eb2-4dcc-8fa6-1fe6496897e6',NULL),
('479b5dab-0dba-4cab-9b4a-fcefb24bd5d1','4917621136198','Sayın ALPER ÖZDEMİR, 437414847 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437414847\n\nDear ALPER ÖZDEMİR, your shipment with 437414847 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437414847\n\nBICARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('479c1055-5c6a-4bc6-8dc9-2bd52ad1a093','491792099909','61340935 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8927 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61340935\n\nYour shipment with the number 61340935 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8927. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61340935\n\nBICARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('479ea1b4-7468-425f-baa3-d68777c44bf6','5444482458','319645924 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319645924\n\nYour shipment with the number 319645924 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319645924\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('47a2dd85-b96c-4de0-9fb1-974f9f91a4b3','905350617509','CİGDEM DENKER  adlı müşterinizin 613391684 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('47a39c64-1997-465e-b20e-e6ddbc0e324f','905304259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin yatak ve sehpalar ürünü 2 parça halinde Fatura adresinizden 21.05.2025 16:44:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('47a95726-e27a-4189-8334-b9b097a4b378','4384548568','52896910 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8970 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/52896910\n\nYour shipment with the number 52896910 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8970. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/52896910\n\nBICARGO','2','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL),
('47b053b3-7075-4162-b6c1-f7fd7888557d','33632415512','Sayın DİRİL NURİ, 43792999 nolu gönderiniz 3867 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43792999\n\nDear DİRİL NURİ, your shipment with 43792999 was delivered to you with the delivery code 3867. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43792999\n\n\nBICARGO','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('47b127cf-eab0-46bc-8223-6f10828c161f','336702877593','Sayın NAMIK KAYGIN, 478142620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478142620\n\nDear NAMIK KAYGIN, your shipment with 478142620 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478142620\n\nBICARGO','2','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('47b14b4b-cd21-4b25-a7db-b8ef5dcbc85f','41764537057','Sayın KISMET URDOĞAN, 478560084 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478560084\n\nDear KISMET URDOĞAN, your shipment with 478560084 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478560084\n\nBICARGO','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('47b1f300-6bf6-4e00-81ef-6752a9f14df8','436601881431','61310831 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7828 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61310831\n\nYour shipment with the number 61310831 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7828. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61310831\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('47b33936-cfe3-4601-bbf1-98a550869ccf','436608590261','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('47b37b87-2b6c-44bb-b9bd-528a0f564240','11111111111111','Sayın LÖWİK WONEN, 858365882 nolu gönderiniz 9231 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858365882\n\nDear LÖWİK WONEN, your shipment with 858365882 was delivered to you with the delivery code 9231. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858365882\n\n\nBICARGO','2','c86b331f-7141-49b9-b684-a2a68daaa635',NULL),
('47b702aa-4185-46c2-ae14-f2b75d4a78ad','905059175469','Sayın yetkili; NADİR KURUKOL  adlı müşterinize 428414858 nolu gönderinizin dolap kapak ürünü 1 parça halinde Fatura adresinizden 24.04.2025 09:54:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('47bb9dff-eac2-4b84-95ed-bff81be74072','905534084469','Sayın yetkili; İLHAN ERAYDIN adlı müşterinize 15151133 nolu gönderinizin polo köşe koltuk takımı ürünü 6 parça halinde 3ARDEKO adresinizden 20.02.2025 11:51:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('47bc2e04-af2a-4545-802e-55ea4e1d95bc','905517075149','Sayın yetkili; ENVER GÜL adlı müşterinize 478659791 nolu gönderinizin SANDALYE 8 ADET ürünü 4 parça halinde beymi sandalye adresinizden 02.09.2025 12:03:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('47bede47-0fff-4c3b-b8c0-7f1efe15b40c','905461661672','Sayın yetkili; GÜLŞEN KARATAŞ adlı müşterinize 644859309 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 02.07.2025 15:51:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('47bf291e-d487-4af2-99a9-d802356d01e3','905079358213','Sayın yetkili; HAYATİ ELBİR adlı müşterinize 745536465 nolu gönderinizin BAZA SETİ  ürünü 4 parça halinde Fatura adresinizden 07.02.2025 14:27:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('47c24844-06ab-4d0f-8c24-40dc1acc5992','41798375512','Sayın NURCAN DOLDUR, 478223658 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478223658\n\nDear NURCAN DOLDUR, your shipment with 478223658 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478223658\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('47c881db-f952-49a2-8c2f-764e64cb8576','32499836512','221240151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2172 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221240151\n\nYour shipment with the number 221240151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2172. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221240151\n\nBICARGO','1','9feff913-404e-4b4c-b57f-21740becbcff',NULL),
('47cb89cf-3f9b-4ad2-9f80-14187adbdbc9','41767113347','112189439 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10895 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/112189439\n\nYour shipment with the number 112189439 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10895. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/112189439\n\nBICARGO','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('47cbd53d-39fd-47b0-a0a1-bcbf8e772e9e','905059175469','SİBEL ÇINAR adlı müşterinizin 428511580 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL),
('47d17edd-ee13-4cce-9854-f0fa36cbb21a','32470420226','221639055 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4723 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221639055\n\nYour shipment with the number 221639055 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4723. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221639055\n\nBICARGO','1','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL),
('47d382c2-36f9-4e34-8d75-da36ee60abac','905517075149','FATMA ALBAYRAK adlı müşterinizin 478935366 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('47d4ccde-efc6-426d-9dc8-6ed447a542c8','1111111111','Sayın MURAT  KAYA, 15.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2722617\nŞifre : 2722617\n			\nBİCARGO','2',NULL,'a2722617-aa4d-4934-b5f5-591b5d50f6ce'),
('47d7721a-5fbb-47d7-9a77-cb00841ba0c9','5325000478','Sayın Aaaaaaaa Bbbbbbbb, 25.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9727771\nŞifre : 9727771\n			\nBİCARGO','1',NULL,'9c7277b7-16bb-4870-b6a2-7ce035115b31'),
('47dc5dbc-87d0-4dbc-a15c-3dc3b50a0906','905461661672','NAZIM KORKMAZER adlı müşterinizin 644771270 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('47e3cf9d-6221-4997-ab75-5cae56b809d5','905331602195','AHMED HAMEL  adlı müşterinizin 221413192 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('47e8c63a-0801-4fb4-ba23-09b96d2dbcfa','905336367828','IVANA JURİC adlı müşterinizin 982728095 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL),
('47ec344e-c6cb-49e4-9fd2-8bfb59eb4df2','491627760699','455658704 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10251 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455658704\n\nYour shipment with the number 455658704 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10251. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455658704\n\nBICARGO','1','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL),
('47f6082d-093a-4c05-aea6-02486c83e1fb','4550323382','Sayın RWWHİKA KATUSABE , 982484679 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982484679\n\nDear RWWHİKA KATUSABE , your shipment with 982484679 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982484679\n\nBICARGO','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('47f88f65-3458-4593-a377-851d0f46aafc','905461661672','Sayın yetkili; SABİHA SATICI adlı müşterinize 644520957 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 30.09.2025 14:32:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('4802b90a-8c58-4450-8760-bb8faa25f140','905300961610','TUĞBA HANIM adlı müşterinizin 126421974 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0831e36a-bfec-49cb-862f-5d57cf563310',NULL),
('481059b4-2e25-4e1b-aa6f-138064145961','905331602195','Sayın yetkili; ÜLKÜ ÖZTÜRK adlı müşterinize 221943840 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde Fatura adresinizden 02.01.2025 12:19:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('4811d12a-a94a-461e-84fc-8f60eef15921','33768280115','Sayın BÜNYAMİN ELİF ÇİLİNGİR, 570899680 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/570899680\n\nDear BÜNYAMİN ELİF ÇİLİNGİR, your shipment with 570899680 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/570899680\n\nBICARGO','1','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL),
('4816f537-bba6-459a-abf4-471e9c4555a7','905336367828','Sayın yetkili; Maria veigea  adlı müşterinize 982333020 nolu gönderinizin Fasülye koltuk takımı  ürünü 3 parça halinde Erbağ koltuk  adresinizden 07.11.2024 15:48:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('481838a4-0b08-4f1e-b456-9e879741b476','905454259202','MEHMET SENCER adlı müşterinizin 478321858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL),
('48196646-1a78-4201-9379-b2435abfe8e5','31648497230','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('48203c4d-fa16-4d78-9042-6bd89d50a1bd','905075277637','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin NOVA İKİLİ ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 28.05.2025 14:48:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('4820c530-681b-44ac-8db7-d10532a386ff','4917623926506','Sayın MERVE İÇEN, 351330330 nolu gönderiniz 10631 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/351330330\n\nDear MERVE İÇEN, your shipment with 351330330 was delivered to you with the delivery code 10631. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/351330330\n\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('4823f68b-7084-4fd9-a6bf-9c8a6b38a358','905075277637','PERİHAN GÜNAY adlı müşterinizin 745770556 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('4825f61c-4821-4400-b6a8-6a4fcf57aa8c','4915752014437','Sayın GÜLCAN ÇELİKKANAT, 428519862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428519862\n\nDear GÜLCAN ÇELİKKANAT, your shipment with 428519862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428519862\n\nBICARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('482c4fa7-be8a-45f8-8ee1-12b42f33fcce','41764103638','478984010 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5852 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478984010\n\nYour shipment with the number 478984010 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5852. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478984010\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('482ee8aa-dd5f-4355-8e95-0b8475a0511c','491781854994','Sayın MAJD KAMSHA, 745653378 nolu gönderiniz 5403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745653378\n\nDear MAJD KAMSHA, your shipment with 745653378 was delivered to you with the delivery code 5403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745653378\n\n\nBICARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('4832e02a-3100-4bf4-b25d-9c452a319133','905517075149','Sayın yetkili; ELVAN ARSLAN adlı müşterinize 47856812 nolu gönderinizin ASHLEY 180 BAZALI KARYOLA ürünü 6 parça halinde RİXXE adresinizden 22.10.2025 14:19:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bee81a54-df39-48a5-9fb3-63e75a6f2e1d',NULL),
('48344772-a2a5-4be4-9572-f20041c3e72f','491723025069','Sayın MUSTAFA ÇETİN, 982490890 nolu gönderiniz 10569 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982490890\n\nDear MUSTAFA ÇETİN, your shipment with 982490890 was delivered to you with the delivery code 10569. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982490890\n\n\nBICARGO','1','ead6dade-f350-443d-a16a-41863d612c7c',NULL),
('483d864c-59dc-4120-bfd8-246db9e90ebf','491747638534','982271871 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6244 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982271871\n\nYour shipment with the number 982271871 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6244. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982271871\n\nBICARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('483ebd4f-e652-4d9f-86ba-709e86f75c37','905079047428','EMAL ENRİQUE adlı müşterinizin 449511744 nolu gönderisi 6 parça halinde yola çıkmıştır.','1',NULL,NULL),
('48427525-0f8f-4322-8eb9-b0f3a438bf14','905434420016','CAMELİA BESSAL adlı müşterinizin 748663171 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('48445ef3-25ac-4abd-8400-4e84537fbcb8','905517075149','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 47842524 nolu gönderinizin kanepe kasası ürünü 1 parça halinde çelikbey inegöl depo adresinizden 07.07.2025 16:52:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('484f0a28-b32a-4a8b-9c13-da227e35163c','905075277637','OKAN EKİNCİ adlı müşterinizin 745873539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('484f3436-2c18-48cd-8852-63ca3632d1da','905078062550','TUBA BAŞKAŞ SSH adlı müşterinizin 598876994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('48504f67-cde3-4b0b-86ba-bed5e703f390','905079358213','BURAK SARIKAYA adlı müşterinizin 745816946 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('4851bcaf-b67a-4557-90f9-5b3869d0ffef','436763436191','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('4858dbe5-c8d4-4580-8dce-5329bd929551','905394878216','Sayın yetkili; FERHAT DEMİRCİ adlı müşterinize 517901924 nolu gönderinizin Star ve Lingo Genç Odası ürünü 28 parça halinde Fatura adresinizden 19.11.2024 10:37:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('485d45db-0a36-415d-a07f-e6720cbeed10','436763404107','Sayın TÜRKAN ÖZER, 531983278 nolu gönderiniz 3874 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531983278\n\nDear TÜRKAN ÖZER, your shipment with 531983278 was delivered to you with the delivery code 3874. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531983278\n\n\nBICARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('4863ec61-a5cd-43a9-9a44-5033c8efd7a2','905313340045','Sayın yetkili; ÖZGÜR ÇEŞME adlı müşterinize 437694817 nolu gönderinizin Kampanya köşe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:34:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('4868b592-58dd-4edf-a32f-a4b372d125e8','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin yatak odası ürünü 24 parça halinde usluer adresinizden 16.09.2025 12:35:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('486c2fd4-f2ba-40a2-b838-98d5b8eaff78','4917640533828','Sayın SAAED SALİH, 655571326 nolu gönderiniz 4006 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655571326\n\nDear SAAED SALİH, your shipment with 655571326 was delivered to you with the delivery code 4006. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655571326\n\n\nBICARGO','1','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL),
('4870bb34-6ffc-43c7-95e3-8c8c96f1e662','905075277637','Sayın yetkili; ELOUAZGHİ ANAİS  adlı müşterinize 745879253 nolu gönderinizin PİER KOLTUK TAKIMI  ürünü 3 parça halinde NAHİTA SOFA  adresinizden 08.09.2025 10:50:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('48716c50-14c2-4413-8a6d-def5d7e5483e','905325000478','EDİ adlı müşterinizin 412384414 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL),
('487aee7b-be13-4eb3-b4a4-03d4adec8de7','33626434007','428736949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4097 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428736949\n\nYour shipment with the number 428736949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4097. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428736949\n\nBICARGO','1','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL),
('48803ed9-40e2-4b64-b46e-be3979d7b883','33749417037','Sayın GÖZDE TEMİZ		, 910670298 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910670298\n\nDear GÖZDE TEMİZ		, your shipment with 910670298 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910670298\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('4888db7f-29f9-4ed7-a528-969a326f35b8','905079358213','MUSA YAMAN adlı müşterinizin 745743577 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('488a4e79-432a-4048-b7c8-209f00d0f78e','905517075149','KEYVAN GHADİMİ adlı müşterinizin 478363734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('488a57a2-8451-460f-b9af-4b0e132bc399','905394878216','SEVAY NİKOLAEVA YANKOVA adlı müşterinizin 517895646 nolu gönderisi 39 parça halinde yola çıkmıştır.','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('4894518e-28e2-4d3f-96ef-8db47ab6c353','491601209210','644593040 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3477 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644593040\n\nYour shipment with the number 644593040 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3477. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644593040\n\nBICARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('48987ad1-49b1-49b1-97c8-135de30c6793','436606200309','Sayın SAFİYE TINCA, 371194748 nolu gönderiniz 1519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371194748\n\nDear SAFİYE TINCA, your shipment with 371194748 was delivered to you with the delivery code 1519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371194748\n\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('48a0b3a4-6da4-4a63-a8eb-83602c126846','4915150003211','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('48a2850a-b0f8-4e16-adce-55e1bf19b22c','905304259202','KERİM KUTLU adlı müşterinizin 478263896 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL),
('48a5fa07-4931-425d-b94a-e5b00e489f4a','905461661672','Sayın yetkili; BARLEB KASS HANNA adlı müşterinize 644106987 nolu gönderinizin MERMER MASA VE SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 18.04.2025 10:57:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('48a63b06-2b1e-48f7-bd8a-668b71d2c166','4917670112054','Sayın FURKAN YESARİ GÜVEN, 910995300 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910995300\n\nDear FURKAN YESARİ GÜVEN, your shipment with 910995300 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910995300\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('48a7b5a2-d5ed-4122-9bc4-3726d1ba7603','447342132724','Sayın DENİSA LANGU , 982134567 nolu gönderiniz 10519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982134567\n\nDear DENİSA LANGU , your shipment with 982134567 was delivered to you with the delivery code 10519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982134567\n\n\nBICARGO','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('48a7e381-6a8c-4978-8420-ba15c9446b22','905454259202','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478431848 nolu gönderinizin 6 KAPAKLI DOLAP ürünü 7 parça halinde GARDEROBE adresinizden 24.02.2025 15:55:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('48aedd09-809d-4760-8785-19724e248365','33678241654','Sayın MUHAMMET YILDIRIM , 745946644 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745946644\n\nDear MUHAMMET YILDIRIM , your shipment with 745946644 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745946644\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('48bced4e-6012-4b22-bbf0-be3da08d2ecb','491716444408','248158562 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248158562\n\nYour shipment with the number 248158562 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248158562\n\nBICARGO','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('48bd8ed9-7683-4b72-9851-2dd8e4561f69','4917632998796','Sayın YAŞAR YALMAN SSH, 478816988 nolu gönderiniz 5865 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478816988\n\nDear YAŞAR YALMAN SSH, your shipment with 478816988 was delivered to you with the delivery code 5865. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478816988\n\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('48bf839c-7982-4fd6-9bfe-9abe1e644a23','905304259202','YÜKSEL KILIÇ adlı müşterinizin 478339779 nolu gönderisi 26 parça halinde yola çıkmıştır.','1',NULL,NULL),
('48cb04fe-37c0-48f0-81da-3b2ab46c12a6','905335511664','AYKUT KAYA adlı müşterinizin 371660448 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('48ccc8dd-a377-4a1d-a9cb-f05b1dc2d7e9','491792005887','Sayın SEBA QASEM, 976763926 nolu gönderiniz 3540 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976763926\n\nDear SEBA QASEM, your shipment with 976763926 was delivered to you with the delivery code 3540. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976763926\n\n\nBICARGO','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('48d1985f-7f79-48cc-86ce-9b91f2afec67','905011170016','ÖNDER KOCYİGİT adlı müşterinizin 380453463 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('48d2f398-5e38-432a-ace7-2736e507d227','31687335737','Sayın GÖKBEN BEYDİLLİ, 478836905 nolu gönderiniz 6677 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478836905\n\nDear GÖKBEN BEYDİLLİ, your shipment with 478836905 was delivered to you with the delivery code 6677. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478836905\n\n\nBICARGO','1','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL),
('48d69b9d-038b-4b30-aaa0-a404cbdf5641','905079047428','MEHMET EMİN KARAGÜZEL adlı müşterinizin 449704156 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('48d7fe51-5d0a-4f39-accb-3ec7740dfc66','4379259769999','Sayın TEREZA SHARİPOVA, 808790233 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808790233\n\nDear TEREZA SHARİPOVA, your shipment with 808790233 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808790233\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('48d8f536-7bc5-4cc6-b0fd-b6599bb96f90','05305840234','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','2','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('48ddc806-2f70-4cba-ba37-88c775ba69e8','905461661672','Sayın yetkili; NADİYE ÇAVUŞ adlı müşterinize 644200718 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 24.07.2025 18:00:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('48de880c-5e7d-4f9e-ac53-81caf63de610','4915111667554','Sayın DİLAVER ULUTAŞ, 47836811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47836811\n\nDear DİLAVER ULUTAŞ, your shipment with 47836811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47836811\n\nBICARGO','1','9016d7f6-7477-4afe-9a6c-22410434be77',NULL),
('48dfbda8-d3a6-4fe7-a5fc-e475e39d0e0f','905079358213','ALİ ERKOCA adlı müşterinizin 745177264 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('48e4d194-47f0-4153-a992-349ef46e592a','4915254879175','Sayın ARZU KUZUCU, 371160737 nolu gönderiniz 3069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371160737\n\nDear ARZU KUZUCU, your shipment with 371160737 was delivered to you with the delivery code 3069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371160737\n\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('48e67095-db8d-46a9-b935-16d2b09bd985','905079358213','HARUN UZUN adlı müşterinizin 745519015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL),
('48ed2c39-8b4c-4d67-ad38-a8d310975340','905059175469','GÜRSEL KURTULMUŞ adlı müşterinizin 428659303 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('48ed9a5d-d94c-4551-a950-099d286bcc02','33607979254','Sayın EMİR ASLANOĞLU, 745747559 nolu gönderiniz 3925 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745747559\n\nDear EMİR ASLANOĞLU, your shipment with 745747559 was delivered to you with the delivery code 3925. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745747559\n\n\nBICARGO','1','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL),
('48f0b946-5669-4df4-abe3-c44b5eca6671','4915172058475','613529206 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9024 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613529206\n\nYour shipment with the number 613529206 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9024. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613529206\n\nBICARGO','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('48f18618-4bfd-4a6c-8a60-a20f2c709640','905352129940','Sayın yetkili; ABDUL AHMAD adlı müşterinize 112609358 nolu gönderinizin Hanedan yataklı ürünü 4 parça halinde Fatura adresinizden 03.01.2025 15:22:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('48f4ce92-2df8-49c8-be7c-e8c8dc6d34ce','491622711992','371441090 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3389 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371441090\n\nYour shipment with the number 371441090 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3389. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371441090\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('48f650d4-bf7c-42fa-a0f4-2cfec7f6c38f','905312762034','Sayın yetkili; YASİN ERDAL adlı müşterinize 808696925 nolu gönderinizin SANDALYE ürünü 2 parça halinde MELYA SANDALYE adresinizden 23.10.2025 11:59:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b246d186-ebbb-4410-afe2-737f312e473e',NULL),
('48f7632b-e3ac-40c1-b894-b5a721b0e445','4369917101202','Sayın ZELİHA SARITAŞ, 644287826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644287826\n\nDear ZELİHA SARITAŞ, your shipment with 644287826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644287826\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('48fe3471-f798-40ec-b5f1-8dc54b30190f','00436602086672','Sayın BMD ELİF ÇEKİCİ, 412784700 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412784700\n\nDear BMD ELİF ÇEKİCİ, your shipment with 412784700 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412784700\n\nBICARGO','2','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('4906e693-6fb8-449d-9ea4-350973f186e3','905306071261','Sayın yetkili; DİLAN ŞAHİN  adlı müşterinize 765738093 nolu gönderinizin  LATTE KARYOLA  ŞİFONYER  İKİ ADET KOMODİN ürünü 11 parça halinde massiva  adresinizden 22.08.2025 19:20:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f2e85c5a-0ab0-460f-8b3f-1dce4d598818',NULL),
('4907d845-0b83-4682-91fb-e75f7b9a87a9','905079358213','Sayın yetkili; GÜLDEN KARADAĞ adlı müşterinize 745291553 nolu gönderinizin FRANCO T SANDALYE 6 AD.  ürünü 3 parça halinde BEYMİ  adresinizden 24.04.2025 14:37:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('490b98a3-3967-4e5b-a935-7f6e4c7d4a0f','01634672803','İLETİŞİM\n					Furkan şöför = +905078826436','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('490c457c-6988-44c8-8e4f-9cd7ca2d700b','491716444408','Sayın AZEM SATTAR, 248158562 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248158562\n\nDear AZEM SATTAR, your shipment with 248158562 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248158562\n\nBICARGO','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('49101b53-a6b7-402d-969e-6c689435bd71','4917681295929','Sayın HELİN ÖZDİL, 896155892 nolu gönderiniz 7356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896155892\n\nDear HELİN ÖZDİL, your shipment with 896155892 was delivered to you with the delivery code 7356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896155892\n\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('4918191f-4021-4721-9b9d-47cf590b405a','33627713470','478188105 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4859 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478188105\n\nYour shipment with the number 478188105 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4859. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478188105\n\nBICARGO','1','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL),
('491dce54-b855-4a56-bf73-a442c35198ae','905075277637','OKAN CORAMAN adlı müşterinizin 745980941 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('491de5d2-99bb-46b1-81b7-b5011e497beb','905363385813','ERDAL OCALAN adlı müşterinizin 976126416 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('491ea0b7-164d-4a42-9332-66bf0280cf62','31638732101','786252388 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6461 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786252388\n\nYour shipment with the number 786252388 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6461. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786252388\n\nBICARGO','1','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('492694f1-8ddb-46cb-bc13-ae43a4d0a098','905335708965','NAVİD BEHBODY adlı müşterinizin 735793543 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL),
('493142ca-e2f5-4e07-a112-bd5d6a362e5f','32487160490','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('4933102d-5cc2-4bca-b521-60fa4e06cb6a','005313459454','Sayın , 24889830 nolu gönderiniz 6680 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/24889830\n\nDear , your shipment with 24889830 was delivered to you with the delivery code 6680. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/24889830\n\n\nBICARGO','2','1c37ec40-77c6-4885-995d-696850992a10',NULL),
('4936be7a-1370-4e1a-a4ff-179742b26689','491782206321','Sayın AYSEL OK, 976245604 nolu gönderiniz 10795 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976245604\n\nDear AYSEL OK, your shipment with 976245604 was delivered to you with the delivery code 10795. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976245604\n\n\nBICARGO','1','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL),
('4938b1ca-de4f-4eb8-8bfb-0450ad8f88e3','905301592882','SÜLEYMAN MAKAS  adlı müşterinizin 910980337 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('49392191-cb37-4dd9-8a9d-166462e7ac29','491794959823','Sayın RECEP BEY, 858124295 nolu gönderiniz 3674 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858124295\n\nDear RECEP BEY, your shipment with 858124295 was delivered to you with the delivery code 3674. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858124295\n\n\nBICARGO','1','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL),
('493cc1d1-2245-4f8e-ab3e-5a266ea7aa25','4369911340501','644145142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644145142\n\nYour shipment with the number 644145142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644145142\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('49435f88-bcf6-4615-a5a6-112ea25b7896','33651431937','501703321 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501703321\n\nYour shipment with the number 501703321 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501703321\n\nBICARGO','1','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('4947ffdb-5d78-445a-b3d4-e32cbb578a6b','32466461371','Sayın MEHRDAND RAZMPOUR, 478962763 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478962763\n\nDear MEHRDAND RAZMPOUR, your shipment with 478962763 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478962763\n\nBICARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('494825a6-0b3c-4772-abea-586f74173298','491635214231','Sayın AYŞE TÜRKMEN , 221507815 nolu gönderiniz 8692 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221507815\n\nDear AYŞE TÜRKMEN , your shipment with 221507815 was delivered to you with the delivery code 8692. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221507815\n\n\nBICARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('49486f46-d313-45e8-a240-c4b4456a8cce','495451801422','Sayın ORHAN ÖZSOY, 745140498 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745140498\n\nDear ORHAN ÖZSOY, your shipment with 745140498 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745140498\n\nBICARGO','2','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('494a1ebb-c9f0-4fe2-8af8-5ea2a326fb97','905069116877','BURCU BİNGÖLBALI  adlı müşterinizin 817830150 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('494b694d-5f1f-4684-83e4-a1dcdea23522','00491732783896','735565748 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8155 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735565748\n\nYour shipment with the number 735565748 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8155. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735565748\n\nBICARGO','2','83b46886-5368-4d6c-8779-63f4585588f3',NULL),
('494f1d30-82ae-43a0-a48c-9c1850521727','','Sayın MÜZEYYEN ÖZDEMİR , 910163142 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910163142\n\nDear MÜZEYYEN ÖZDEMİR , your shipment with 910163142 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910163142\n\nBICARGO','2','54e0df3d-9714-48db-8da6-46af349072d3',NULL),
('49506384-d0b3-4149-9f28-37ee80880873','905323332620','ERTUĞRUL adlı müşterinizin 528433255 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('4950ace6-4ec2-490e-bfbf-c5882c859802','905461661672','Sayın yetkili; SEMA KAYALI adlı müşterinize 64448364 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 19.03.2025 15:45:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('49540bb9-1367-432a-96ff-154be9d2700f','33749274146','Sayın MOHAMMAD MASOUD, 449234624 nolu gönderiniz 2520 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449234624\n\nDear MOHAMMAD MASOUD, your shipment with 449234624 was delivered to you with the delivery code 2520. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449234624\n\n\nBICARGO','1','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL),
('4954fb88-ecd8-4d1f-bd3a-8e0cb76cade2','905075277637','Sayın yetkili; METİN PEKSERT SSH  adlı müşterinize 74597110 nolu gönderinizin SSH TEKLİ  ürünü 1 parça halinde NOVANNİ adresinizden 24.06.2025 14:45:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('495553f2-66ec-434c-bb67-43bd01f9c28d','31686174189','750822079 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7212 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750822079\n\nYour shipment with the number 750822079 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7212. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750822079\n\nBICARGO','1','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL),
('4956570e-205a-4b4c-9814-face962e5b65','33650437486','Sayın DELİL ALGUNERHAN, 478677262 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478677262\n\nDear DELİL ALGUNERHAN, your shipment with 478677262 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478677262\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('49594ef6-c9c4-444f-a3ac-a1299b231191','905335708965','TABELA adlı müşterinizin 248915549 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL),
('495a5cf9-82cb-4de9-959f-8f499b46711e','436602777312','478483851 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1406 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478483851\n\nYour shipment with the number 478483851 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1406. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478483851\n\nBICARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('495b8371-54fc-4b3d-b3dd-18a8cf6a2f0e','905350617509','Sayın yetkili; ELFRİDA RAİCEVİC  adlı müşterinize 613510894 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Moda dizayn adresinizden 01.08.2025 12:08:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('495cbc7a-1a9c-406b-bf01-98c0612299f4','4915737537059','Sayın SALAM KORKMAZ, 531445058 nolu gönderiniz 3321 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531445058\n\nDear SALAM KORKMAZ, your shipment with 531445058 was delivered to you with the delivery code 3321. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531445058\n\n\nBICARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('495cf60f-dd24-47c5-bb5f-12ef4e7dcb95','905331602195','CHERİET NAJET adlı müşterinizin 221287992 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('495e4ceb-f4d2-49c5-a874-a6048170a958','905079047428','YILDIZ DEMİR adlı müşterinizin 449715358 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fdbd5255-796f-4278-a5b0-0661f2660929',NULL),
('49623aa3-af80-4417-b172-861b1a560277','33782787916','Sayın ÖZLEM ŞEKERCİ		, 910884465 nolu gönderiniz 8539 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910884465\n\nDear ÖZLEM ŞEKERCİ		, your shipment with 910884465 was delivered to you with the delivery code 8539. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910884465\n\n\nBICARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('496518c0-a01c-49dc-886a-4931050e257a','32485026823','Sayın MEHMET ERTÜRK, 338737901 nolu gönderiniz 3356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338737901\n\nDear MEHMET ERTÜRK, your shipment with 338737901 was delivered to you with the delivery code 3356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338737901\n\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('496640b4-953f-4f3e-899b-46adc0307b3c','4917632057842','İLETİŞİM\n					Furkan şöför = +905078826436','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('4968d3e0-2c68-4053-83de-d74075486eba','4369919051995','Sayın İBRAHİM BEY, 248902824 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248902824\n\nDear İBRAHİM BEY, your shipment with 248902824 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248902824\n\nBICARGO','1','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL),
('496d55e9-a5ee-49b9-b599-f6bbfcfad50c','32472893913','Sayın NEVİN KIRIK, 745638060 nolu gönderiniz 1828 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745638060\n\nDear NEVİN KIRIK, your shipment with 745638060 was delivered to you with the delivery code 1828. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745638060\n\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('49706072-9d3b-4d11-a819-c200bb92081f','4917662337872','Sayın NECİP FAZIL ŞİMŞEK, 371261673 nolu gönderiniz 5750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371261673\n\nDear NECİP FAZIL ŞİMŞEK, your shipment with 371261673 was delivered to you with the delivery code 5750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371261673\n\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('4975a07f-3629-4932-91bf-751cff8f8f0c','905461661672','Sayın yetkili; DİLARA COŞKUN adlı müşterinize 644684600 nolu gönderinizin köşe koltuk ürünü 4 parça halinde LENTE HOME adresinizden 18.03.2025 18:08:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('4982c00c-2c80-4cf8-b3c6-ab61e6e02530','491722630370','Sayın LAİLA MANDANİ, 371887346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371887346\n\nDear LAİLA MANDANİ, your shipment with 371887346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371887346\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('4987c192-0162-416d-945d-35b469bb1bab','905350617509','WALDEMAR HEİNZ  adlı müşterinizin 613940015 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('498ab0ba-12b7-4e71-b095-974c8019dd5e','017680220658','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('49901b24-02f6-4f12-b92d-45eccc7a7288','905300961610','ERSİN adlı müşterinizin 126377805 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL),
('49946acd-e55c-49da-a578-94552bdae7e6','905451571652','TÜRKAN ÖZER adlı müşterinizin 531983278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('4994da42-7ebe-4906-9f04-28c431e4ff3a','905325000478','ALİ ÖZVEREN adlı müşterinizin 412722649 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('49970d21-9937-4412-ba01-a6a8be60bc76','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN GİZE ÇALIŞMA MASASI ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('49983e70-b314-44b4-9c6f-a65e452281fc','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin ETRO ORTA SEHPA + PUF  ürünü 3 parça halinde AREA adresinizden 06.05.2025 12:55:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('49985d8e-1fe8-44dd-b268-a939631e7fcc','33679890673','Sayın ABDİL ACAR, 61467762 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61467762\n\nDear ABDİL ACAR, your shipment with 61467762 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61467762\n\nBICARGO','1',NULL,NULL),
('499c918d-fdbe-4530-8546-fac544f0b929','905331602195','BUNJAMİN HALİMİ  adlı müşterinizin 221962516 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('499d56fb-0ed1-45e1-ac28-bc867877d41f','905301592882','YASİN YAVAŞ adlı müşterinizin 910599740 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('49a072bb-22c7-47f5-b549-c6525142aab6','905461661672','ESRA BALTACI adlı müşterinizin 644711459 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('49a70fb5-8bbd-42c1-9e2a-87cecbdadd82','905318109098','MEHMET ALİ ADIGÜZEL adlı müşterinizin 455411696 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL),
('49a9500f-e78c-4253-ac67-a3250add0f28','905075277637','NUR YILDIRIM adlı müşterinizin 745278745 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('49aa769e-0c6f-4486-8b3d-df672bcd4e95','905079358213','BURÇİN MEN adlı müşterinizin 745970479 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('49aaba8e-32b3-4e84-93c3-65ed6abeca86','905079358213','Sayın yetkili; İBRAHİM YILDIRIM adlı müşterinize 745405587 nolu gönderinizin İCON KONSOL MASA SANDALYE  ürünü 8 parça halinde ROIS adresinizden 16.05.2025 14:41:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('49ade6d2-ef55-4d52-ac20-c6d561c97a3d','4917632543868','Sayın İSA ALTUNER(K), 644422105 nolu gönderiniz 4615 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644422105\n\nDear İSA ALTUNER(K), your shipment with 644422105 was delivered to you with the delivery code 4615. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644422105\n\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('49b14976-29dd-4722-87d9-e140eed25c75','9054439559150','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ VISCOLORA YASTIK ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:33:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('49b4995f-a9f5-439c-a021-8db3cd78c086','905075277637','LEİLA GELES adlı müşterinizin 745266700 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL),
('49b962e3-452a-48c7-8f35-6dfc5aaf8983','4917663466847','Sayın BURAK SARIKAYA, 745816946 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745816946\n\nDear BURAK SARIKAYA, your shipment with 745816946 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745816946\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('49bc57f0-d6e0-41eb-8bc1-86708cf3c1ae','905079358213','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin DOLAP KAPAK  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('49c01352-6861-4238-9291-5e29c71303e3','33749000249','Sayın NOUR MOHAMMAD YAKUBİ, 982578025 nolu gönderiniz 3272 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982578025\n\nDear NOUR MOHAMMAD YAKUBİ, your shipment with 982578025 was delivered to you with the delivery code 3272. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982578025\n\n\nBICARGO','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('49c2845c-1ad7-4a53-88ac-2826251ebd5c','905354105671','PRISMANN-NESTE NETHERLANDS adlı müşterinizin 412157690 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('49c29fd7-7687-4bc8-ab9e-eb1899cdf492','905428209234','ARZU ÜNLÜ adlı müşterinizin 319829855 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('49c3e6ab-6863-425f-88cd-6c9af1d70ee7','905451571652','Sayın yetkili; SERCAN MİRCALİ adlı müşterinize 531680148 nolu gönderinizin sercan mircali ürünü 11 parça halinde Ruuf form adresinizden 24.04.2025 15:22:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26cf631a-f5d6-48f2-bd12-a1732b406f1a',NULL),
('49c662d1-ee43-4930-b8b8-66533a6a1812','905304259202','Sayın yetkili; MEHMET RIZA ÇOBANOĞLU adlı müşterinize 478992248 nolu gönderinizin konsol aynası ssh ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.02.2025 17:34:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('49c89279-833b-4a23-a194-09956842f32e','905365908694','DİEFABRİC adlı müşterinizin 223433822 nolu gönderisi 32 parça halinde yola çıkmıştır.','1','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL),
('49c93e27-468c-43da-8148-f5c43e92bdae','4915209874981','644606140 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644606140\n\nYour shipment with the number 644606140 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644606140\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('49cb2a2a-6923-4a5d-a15e-ff8eabb97891','491639801426','Sayın EURO STAR MOBEL, 412417422 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412417422\n\nDear EURO STAR MOBEL, your shipment with 412417422 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412417422\n\nBICARGO','1','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL),
('49d68416-f08c-4472-b920-bbb08d9bdced','905461661672','Sayın yetkili; ALİ SARI adlı müşterinize 64441153 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 27.03.2025 14:22:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('49d7c385-38c3-476f-81de-6aaa71352cf7','4915756323110','Sayın MEHMET SALDANLI, 745508995 nolu gönderiniz 4582 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745508995\n\nDear MEHMET SALDANLI, your shipment with 745508995 was delivered to you with the delivery code 4582. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745508995\n\n\nBICARGO','1','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL),
('49dd4594-8e71-409b-8f1a-bb61be5b2f3a','905454259202','Sayın yetkili; MELEK ÇELİK adlı müşterinize 478675012 nolu gönderinizin 3 PARÇA SSH ürünü 2 parça halinde çelikbey inegöl depo adresinizden 07.12.2024 11:38:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('49dd78c7-6945-42e3-9318-18a44fe11a37','491713217344','Sayın RASİM EKİCİ, 614462377 nolu gönderiniz 4375 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614462377\n\nDear RASİM EKİCİ, your shipment with 614462377 was delivered to you with the delivery code 4375. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614462377\n\n\nBICARGO','1','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL),
('49df0bfe-b07f-4255-a5ba-75a549f33bfa','32485874064','Sayın HİCRAN KAPLAN, 319206159 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319206159\n\nDear HİCRAN KAPLAN, your shipment with 319206159 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319206159\n\nBICARGO','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('49e5f4be-9f59-4fd7-84ed-37bb940b9ba2','905075277637','ABDULLAH DEMİR  adlı müşterinizin 745906720 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('49e95ea3-442f-495e-b18a-47a74d9092a7','905304259202','ZEKAİ TAVASLI adlı müşterinizin 478979004 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL),
('49ea6a38-f8e2-417b-ab13-b1b890f493f1','41768164040','449644504 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5618 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449644504\n\nYour shipment with the number 449644504 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5618. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449644504\n\nBICARGO','1','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL),
('49eacbad-6c9c-4c8d-8796-e0c290cc101f','905054335859','YUSUF ATUM  adlı müşterinizin 501212768 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL),
('49ed4382-888a-4e89-b1d8-00cc4ef11b4e','905394878216','CÜNEYT ŞİMŞEK  adlı müşterinizin 517512652 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL),
('49ef1c28-30a3-444e-b66a-8128db4955a6','4917656765746','Sayın ÖZLEM AKAY, 371440688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371440688\n\nDear ÖZLEM AKAY, your shipment with 371440688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371440688\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('49f26f50-2456-4c07-a278-14baf1bae33f','33658296936','616254479 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8935 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/616254479\n\nYour shipment with the number 616254479 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8935. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/616254479\n\nBICARGO','1','5b410819-0339-4c69-a500-825f92b681a3',NULL),
('49f872f3-b0e7-4e5d-9de6-23644e615b91','905365908694','PROMO HANDEL adlı müşterinizin 22391500 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','67b755d6-8527-41db-b18d-4497bd14d893',NULL),
('4a0257d4-e9aa-4aed-a01d-060e6340e672','4915560755375','745884226 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9963 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745884226\n\nYour shipment with the number 745884226 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9963. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745884226\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('4a05f264-7c7a-4732-bf63-283e4f497e14','495449192315','745968655 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745968655\n\nYour shipment with the number 745968655 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745968655\n\nBICARGO','2','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('4a0abf98-5fb0-4cb1-8104-f7b6f334fb15','4917640388186','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('4a0ba236-c210-413a-873f-abee8436a8c7','905510396989','GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinizin 31925609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('4a0bd90d-4361-4700-af4e-c7fa15b56bfb','33651149418','Sayın BİLGEN TATAR, 478764154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478764154\n\nDear BİLGEN TATAR, your shipment with 478764154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478764154\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('4a0ffd42-5d8e-4eec-8314-8b52d5a0b481','905325998198','ÖZKAN KARAOĞLU adlı müşterinizin 614200423 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('4a10cdb2-6a3e-4e52-82c2-416702a03570','905454259202','Sayın yetkili; ASLIHAN KELES adlı müşterinize 478112159 nolu gönderinizin masa  ürünü 3 parça halinde Fatura adresinizden 14.01.2025 17:03:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('4a22c603-706d-4aaa-9003-1bd187aeb85e','4917624864505','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('4a2b2154-d3eb-498d-b9ed-707bcffdf27d','31681790138','221102071 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1660 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221102071\n\nYour shipment with the number 221102071 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1660. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221102071\n\nBICARGO','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('4a32d65c-8006-48e8-ba30-66f96bd91519','905335708965','HİEM adlı müşterinizin 73597674 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL),
('4a37a0e5-5202-4058-bcd6-3e2f488235a8','905079047428','DERYA KÖSE adlı müşterinizin 449208438 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL),
('4a3cb14b-b045-4320-ba5c-2747683625d9','905454259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478957028 nolu gönderinizin Berjer ürünü 1 parça halinde çelikbey inegöl depo adresinizden 27.03.2025 11:49:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('4a438dbd-bb72-4b29-8c94-fd4a87280663','905355928266','SEYFETTİN BİLİCAN adlı müşterinizin 412741555 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3cbb1188-1698-4b6e-bd28-06d238414388',NULL),
('4a45393b-3bc2-4086-9ed7-a632e5e1b0ab','905301592882','Sayın yetkili; BERKAN AĞIRMAN adlı müşterinize 91034652 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde Fatura adresinizden 02.06.2025 12:04:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('4a4548f0-3b90-4047-8658-2724f664d829','491747353519','910697257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910697257\n\nYour shipment with the number 910697257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910697257\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('4a4f73c4-cd50-428b-bc8f-a20cd6fad1a1','33624490316','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('4a4fff9a-5257-49d5-923e-850b7ea198c5','491718442660','Sayın ALİ SARI, 64441153 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64441153\n\nDear ALİ SARI, your shipment with 64441153 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64441153\n\nBICARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('4a519a66-8ee4-44b0-b76c-0773c0d4e0e6',NULL,'Sayın yetkili; ESRA KAMBERİ adlı müşterinize 081789192 nolu gönderinizin paris yatak odası takımı ürünü 23 parça halinde Fatura adresinizden 07.02.2025 14:40:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('4a55ac3a-8f0a-4b4e-bef2-4a1ce363784c','491797333588','248968905 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7038 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248968905\n\nYour shipment with the number 248968905 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7038. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248968905\n\nBICARGO','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('4a5651de-e268-4ce2-aeaf-0322b437f1f3','491749390960','74513098 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3926 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74513098\n\nYour shipment with the number 74513098 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3926. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74513098\n\nBICARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('4a56ce9a-efad-4675-a31b-6540d9dede5c','4917662664297','501216728 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5831 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501216728\n\nYour shipment with the number 501216728 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5831. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501216728\n\nBICARGO','1','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL),
('4a5fab4d-52e5-4cdf-8a27-ca0b70128602','491725393009','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('4a60878f-ec2e-405d-9edd-195647ce4cdc','4917631605482','221854185 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10867 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221854185\n\nYour shipment with the number 221854185 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10867. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221854185\n\nBICARGO','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('4a6b75f1-ea5c-43d7-b504-b5da7c12e413','905517075149','ATİLLA POLAT adlı müşterinizin 478502129 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('4a6f4597-9766-4aea-b2ec-f0551fe617a4','33635402722','382253716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3542 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/382253716\n\nYour shipment with the number 382253716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3542. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/382253716\n\nBICARGO','1','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL),
('4a7245f3-6136-4859-a552-438177b2c154','491629891216','598405313 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5041 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598405313\n\nYour shipment with the number 598405313 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5041. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598405313\n\nBICARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('4a794ed5-f35f-4d3d-8072-994633cc71cd','4917620989771','644651781 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4253 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644651781\n\nYour shipment with the number 644651781 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4253. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644651781\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('4a7c768f-71ad-4d94-8cdd-13dbbde8dd09','905428209234','CEMAL YALÇIN SSH adlı müşterinizin 319388100 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('4a7c899b-5ac7-4a9a-8914-07c2fa2511a9','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Traverten konsol  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:33:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('4a7d4d5a-3f3f-49bc-8a19-fdaf4ca74522','491797358234','Sayın FİDAYE YILDIRIM, 920821712 nolu gönderiniz 3636 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/920821712\n\nDear FİDAYE YILDIRIM, your shipment with 920821712 was delivered to you with the delivery code 3636. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/920821712\n\n\nBICARGO','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('4a822ed5-5e4d-4cdd-8c3c-19ce1f5dc47a','31685834791','Sayın MÜCAHİD AL, 437880840 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437880840\n\nDear MÜCAHİD AL, your shipment with 437880840 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437880840\n\nBICARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('4a83a12c-1b01-4d5a-9fb1-350bae99fcc5','4917621136198','Sayın ALPER ÖZDEMİR, 437414847 nolu gönderiniz 8127 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437414847\n\nDear ALPER ÖZDEMİR, your shipment with 437414847 was delivered to you with the delivery code 8127. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437414847\n\n\nBICARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('4a83b5a4-e720-4911-abcf-9b44ab191e70','033749929034','Sayın KADİR SERZAN, 734889822 nolu gönderiniz 9963 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734889822\n\nDear KADİR SERZAN, your shipment with 734889822 was delivered to you with the delivery code 9963. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734889822\n\n\nBICARGO','2','ca7f278f-ad79-4c38-a185-b73739ed8248',NULL),
('4a87cea4-2fef-4a00-b2a6-83d2a21ed3ed','41786730121','745449587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4623 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745449587\n\nYour shipment with the number 745449587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4623. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745449587\n\nBICARGO','1','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL),
('4a8b0364-bc7b-443a-981d-0f48072e5e35','33768511676','Sayın ERDAL ULAŞ, 910645687 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910645687\n\nDear ERDAL ULAŞ, your shipment with 910645687 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910645687\n\nBICARGO','1','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL),
('4a8b72ad-a931-498a-a412-bb8960967f7b','491734349873','Sayın MUSTAFA ÖZTAŞ, 644147833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644147833\n\nDear MUSTAFA ÖZTAŞ, your shipment with 644147833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644147833\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('4a8bd133-1fc9-4fab-8c1c-94ed287c44e5','905075277637','Sayın yetkili; MURAT ERKUL SSH adlı müşterinize 745898734 nolu gönderinizin SSH KOLTUK KASASI  ürünü 1 parça halinde VAAV adresinizden 28.05.2025 15:19:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('4a8d8932-34fa-4ad1-9ac4-fdde46df5432','491766154615','Sayın HİLAL YILMAZ , 2213375 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/2213375\n\nDear HİLAL YILMAZ , your shipment with 2213375 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/2213375\n\nBICARGO','2','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('4a9070a8-5300-4af5-b76d-be993c54844d','32499876558','Sayın YAKUP KILIÇ, 478124503 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478124503\n\nDear YAKUP KILIÇ, your shipment with 478124503 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478124503\n\nBICARGO','1','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL),
('4a9798b7-3937-49d4-b89e-cc28039e9a1f','905313340045','Sayın yetkili; SEMİH CENGİZ adlı müşterinize 437551575 nolu gönderinizin SANDALYE ürünü 4 parça halinde ard sandalye adresinizden 16.06.2025 15:26:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('4a9b94e2-fbc2-4ec8-af39-a8f21acc26ae','905078062550','GÜLSÜM KÖNÜ adlı müşterinizin 598373943 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('4a9bb3d2-d0e3-4a87-84cd-87570bb936b7','491771661158','910990360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4414 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910990360\n\nYour shipment with the number 910990360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4414. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910990360\n\nBICARGO','1','fe6adfb9-14c6-4193-8c47-6fbe8f734d32',NULL),
('4a9e3305-4d93-4ef7-8ce3-3baad00cde1a','905336367828','EHSANULLAH SEDİGİ  adlı müşterinizin 982663240 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('4aa31206-6fbc-49ef-82f9-15978b756b56','491737466004','745770556 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10626 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745770556\n\nYour shipment with the number 745770556 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10626. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745770556\n\nBICARGO','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('4aa5e443-8d22-4a00-918e-30dd20bf88a7','905331602195','THOMAS MICHEL  adlı müşterinizin 221685294 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('4aa6338e-3ec2-4ee9-93c0-dec8b1be42c9','33652652450','DRİVER\n					ADNAN\n+905354622027','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('4aaf63b9-dc2a-406e-8934-362486189b7c','33623912069','Sayın NAFİLE HANIM, 976543269 nolu gönderiniz 7699 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976543269\n\nDear NAFİLE HANIM, your shipment with 976543269 was delivered to you with the delivery code 7699. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976543269\n\n\nBICARGO','1','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL),
('4aba6fd3-c740-441f-9d4d-45b5e6d8defb','905336367828','Sayın yetkili; Yassmine jadmour  adlı müşterinize 982455918 nolu gönderinizin Köşe koltuk  ürünü 3 parça halinde Comfortlife  adresinizden 06.11.2024 13:13:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('4ac02ab9-011a-4d1d-91b5-0553ba736649','4915141230280','Sayın YALÇIN BÜYÜKMURAT, 478643015 nolu gönderiniz 8038 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478643015\n\nDear YALÇIN BÜYÜKMURAT, your shipment with 478643015 was delivered to you with the delivery code 8038. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478643015\n\n\nBICARGO','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('4ac2073e-c543-4601-8f09-38e54c3c05ff','491764560707','Sayın BİNALİ BOZBAŞ, 478798827 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478798827\n\nDear BİNALİ BOZBAŞ, your shipment with 478798827 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478798827\n\nBICARGO','2','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('4ac49906-fd2e-43ba-8e3b-431c4a934161','33677050522','Sayın SİNAN YILDIZ, 478209702 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478209702\n\nDear SİNAN YILDIZ, your shipment with 478209702 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478209702\n\nBICARGO','1','22239f89-5592-49c8-b2c4-dc804b06b788',NULL),
('4ac95354-6cb7-47b7-8ed0-cd6482f40db6','905442774505','Sayın yetkili; ALİ ARSLAN  adlı müşterinize 657153999 nolu gönderinizin Traverten masa kasası  ürünü 1 parça halinde Fatura adresinizden 24.07.2025 11:02:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('4accad5b-f6da-466a-b74b-e2cdd64c6ae4','33662787707','Sayın BAHAR ORHAN, 478835180 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478835180\n\nDear BAHAR ORHAN, your shipment with 478835180 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478835180\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('4acec94e-4cf2-4570-84f9-3fc9093c6e52','905069116877','KADER KAVAL  adlı müşterinizin 817213476 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('4ad47067-c7bc-4401-80bd-0b0f38a14375','31640579879','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('4ad5028a-62b7-4435-bbda-cb79ccf4a386','905335511664','Sayın yetkili; MUHAMMED TOPAL adlı müşterinize 371681337 nolu gönderinizin KÖŞE ürünü 3 parça halinde Elitis Home adresinizden 21.08.2025 15:04:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('4ad64a88-1be3-4234-87e3-425992559957','905333323012','HÜSEYİN CANDAN adlı müşterinizin 695249199 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('4ada092e-9850-46c4-abd5-7ff9d7d37011','33763241174','Sayın YUSUF HAMZA DALKILINÇ, 478423651 nolu gönderiniz 5297 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478423651\n\nDear YUSUF HAMZA DALKILINÇ, your shipment with 478423651 was delivered to you with the delivery code 5297. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478423651\n\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('4ada55b7-14f1-4af9-a6b0-ad4ff8662b4a','31649620613','Sayın AYEOLOWO SEKİNAT, 221433158 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221433158\n\nDear AYEOLOWO SEKİNAT, your shipment with 221433158 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221433158\n\nBICARGO','2','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('4adeaeb8-09e2-47d1-9814-b3e744eec7bf','491639801426','ŞÖFÖR İKETİŞİM\n					+905301824880','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('4adee71f-5419-4a25-9456-4ef5057c7875','4917623201470','Sayın ŞÜKRAN ALP, 614990703 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614990703\n\nDear ŞÜKRAN ALP, your shipment with 614990703 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614990703\n\nBICARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('4adf08fe-56e0-4700-b56d-b84fead299d6','905451571652','PERİHAN ÖZVURAL adlı müşterinizin 531344250 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('4ae30285-7a9b-4507-9be3-cda2ca126a45','32483436523','412102597 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6002 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412102597\n\nYour shipment with the number 412102597 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6002. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412102597\n\nBICARGO','1','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('4ae67ca9-c489-4992-9a9f-5009a9d05a73','41794543642','Sayın ALTİN RAMADANİ, 61355212 nolu gönderiniz 3892 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61355212\n\nDear ALTİN RAMADANİ, your shipment with 61355212 was delivered to you with the delivery code 3892. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61355212\n\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('4ae8199c-16aa-4903-be86-a4bb5d33669f','4917631686937','Sayın ERSAN SULİMANOVSKİ, 371985580 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371985580\n\nDear ERSAN SULİMANOVSKİ, your shipment with 371985580 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371985580\n\nBICARGO','1','ab5aecf3-3848-4bed-b17f-3f3ab2404c76',NULL),
('4ae90be4-7417-43f6-b595-8d577e60f241','491787704238','371601782 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6555 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371601782\n\nYour shipment with the number 371601782 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6555. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371601782\n\nBICARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('4aeca677-0bb3-4441-90c8-d6a10a04eb96','905075277637','Sayın yetkili; ELMAS KAYA adlı müşterinize 745411152 nolu gönderinizin PETRA YEMEK MASASI  ürünü 4 parça halinde MOBİLİSTAN adresinizden 21.04.2025 17:01:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('4aeeb821-4002-4ac0-89f6-95b9a13ba927','400725755108','Sayın MİHAİ LİDİA , 982708819 nolu gönderiniz 8973 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982708819\n\nDear MİHAİ LİDİA , your shipment with 982708819 was delivered to you with the delivery code 8973. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982708819\n\n\nBICARGO','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('4aeffdcf-4ac4-426b-be12-3ecd64fa9617','436764679635','Sayın HÜLYA LAÇİNOK, 380497843 nolu gönderiniz 2185 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/380497843\n\nDear HÜLYA LAÇİNOK, your shipment with 380497843 was delivered to you with the delivery code 2185. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/380497843\n\n\nBICARGO','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('4af00630-769e-4ce3-a6af-b76297a891a1','905456068312','MUSA KIZILASLANOĞLU adlı müşterinizin 655307091 nolu gönderisi 94 parça halinde yola çıkmıştır.','1','60088545-2d2c-4c1d-8f5c-07351840a9a5',NULL),
('4af03448-5e70-454e-b8f4-8f8a63727780','905454259202','MEHMET EMİN ŞIK adlı müşterinizin 478955837 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL),
('4af08123-0dae-4b0c-83f4-af2bbaf4ae42','4917635994280','428417364 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428417364\n\nYour shipment with the number 428417364 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428417364\n\nBICARGO','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('4af0e9a9-f88b-4520-b1f5-6548d48b1183','905301592882','RUKİYE EKERBİÇER adlı müşterinizin 910638892 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('4af2513d-58c3-4c35-835c-cabbd4e11c2b','905079047428','SAHAR KADERİ adlı müşterinizin 449636092 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','ea1fd06d-6508-481d-96d9-862de4d05260',NULL),
('4af3fa7a-0bab-4a59-a469-2a36bd908bd4','905331602195','BERİVAN ERTUĞRUL  adlı müşterinizin 221559079 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('4af484c9-7718-4af9-bd90-c6ed5265e2cf','4917631419046','428819984 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1064 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428819984\n\nYour shipment with the number 428819984 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1064. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428819984\n\nBICARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('4afead12-1f30-455f-8ed9-0e45cf231611','41795028159','Sayın ENES TAHİRİ, 613803170 nolu gönderiniz 6706 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613803170\n\nDear ENES TAHİRİ, your shipment with 613803170 was delivered to you with the delivery code 6706. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613803170\n\n\nBICARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('4afff61f-d4ac-404a-a73f-c4547c4fcea5','905461661672','Sayın yetkili; ALEYNA AKAY adlı müşterinize 644500765 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 08.07.2025 14:57:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('4b0bddc1-284b-4ce8-b0eb-28d2100bce89','33635402722','Sayın AAAAAAAAAAA, 382253716 nolu gönderiniz 3542 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/382253716\n\nDear AAAAAAAAAAA, your shipment with 382253716 was delivered to you with the delivery code 3542. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/382253716\n\n\nBICARGO','1','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL),
('4b0d3c64-7ec3-494e-af1d-f0bf2c271b81','4369919243273','613554878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2679 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613554878\n\nYour shipment with the number 613554878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2679. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613554878\n\nBICARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('4b0de50e-1413-4905-96ba-3f97b5eabde5','4917660841394','Sayın M.ALİ ÇETİN, 910129924 nolu gönderiniz 2178 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910129924\n\nDear M.ALİ ÇETİN, your shipment with 910129924 was delivered to you with the delivery code 2178. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910129924\n\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('4b10ecc0-b25b-4595-894f-6c0f95bbc85b','9054439559150','OSMAN SATİCİ adlı müşterinizin 614536111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('4b15cd5a-3935-4faf-bd8f-855bd266beef','905336367828','CLEİDY MARTİNS  adlı müşterinizin 982475389 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('4b188704-e5f7-4f06-b769-748a478d2d15','905079047428','HASSAN ABDULBARİ adlı müşterinizin 44937818 nolu gönderisi 6 parça halinde yola çıkmıştır.','1',NULL,NULL),
('4b1ace96-2c93-474f-91f9-b5e6be0bbc66','9053259981980','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT KOMODİN SMART SOL ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('4b1e2a6f-8cb4-4490-a0e2-7333a2f476b9','905335511664','SEDA ULUSOYLU adlı müşterinizin 371691350 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('4b280ebf-0f6a-456b-ae46-3f4956f7b007','905336367828','DUDU AKSOY adlı müşterinizin 982944278 nolu gönderisi 27 parça halinde yola çıkmıştır.','1',NULL,NULL),
('4b2da1d3-ac1b-4e1a-88d6-2f6f3047f944','4917657744267','Sayın ÖMER VAROL(K), 644714925 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644714925\n\nDear ÖMER VAROL(K), your shipment with 644714925 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644714925\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('4b2e4ffc-bc61-430a-9324-6f90ae62af6d','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('4b2f6cf9-fa54-4d40-98ef-91ecd0fcda14','4917641085113','Sayın GÜLSEREN ŞAHİN, 371494792 nolu gönderiniz 2522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371494792\n\nDear GÜLSEREN ŞAHİN, your shipment with 371494792 was delivered to you with the delivery code 2522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371494792\n\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('4b30c088-108c-421d-9b1b-ba429d2c33c9','905075277637','İBRAHİM BAĞCI SSH adlı müşterinizin 745983500 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('4b3987b1-e05d-4181-919b-f0930fd37581','905078062550','Sayın yetkili; SABİNA KAYA adlı müşterinize 598548833 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 25.08.2025 15:18:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('4b3af264-11bd-4e7d-ab81-097df997de11','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin MILANO ORTA SEHPA  ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('4b3b8227-c94c-4a40-b38a-bdc51041a9a7','905331602195','Sayın yetkili; HASAN BİLECEN adlı müşterinize 221121416 nolu gönderinizin Sydnei sandalye Siyah metal  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:33:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('4b3baf62-533e-4a94-8253-853a0a0b67bc','4917657654361','Sayın MUSTAFA KESKİN, 745976194 nolu gönderiniz 4559 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745976194\n\nDear MUSTAFA KESKİN, your shipment with 745976194 was delivered to you with the delivery code 4559. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745976194\n\n\nBICARGO','1','97d3447f-3a32-459a-8bdd-d360b881a042',NULL),
('4b3c66b5-3b67-4357-ad9b-82cb9f26f48e','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin 6 SANDALYE  ürünü 3 parça halinde BULKA SANDALYE adresinizden 20.10.2025 13:12:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('4b3f05ea-6299-47ab-bafe-5058be928e01','905461661672','Sayın yetkili; RUKİYE TURAN adlı müşterinize 644301613 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:28:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('4b437e24-76fe-45d7-a7b5-783ce7f70e29','905304259202','GÜLSÜN UZUN adlı müşterinizin 478118994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('4b447fff-7690-47d1-ac29-9350c7db75e8','4915566766358','37119244 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3923 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37119244\n\nYour shipment with the number 37119244 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3923. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37119244\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('4b4d075e-5ee6-4112-a57b-7a519a866108','905331602195','İNAN PALA adlı müşterinizin 221210071 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('4b50b7f1-b15f-4723-8f06-035163f7a831','905442774505','DEMET HANIM adlı müşterinizin 657640918 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('4b5657fc-82e8-43e9-8290-383515414e24','05388618969','ELİZA KADRİ adlı müşterinizin 786895232 nolu gönderisi 8 parça halinde yola çıkmıştır.','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('4b56d486-3bce-4a6f-87dc-f5703e5a6f45','905304259202','HALİL GÜLER adlı müşterinizin 478418764 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a95b6f69-d856-411d-92e3-628c20975e08',NULL),
('4b576cac-d03c-4da9-963a-7ac02d5ffb82','905325000478','BERİVAN KÖKTEN adlı müşterinizin 412550726 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','cd0fea75-fde8-4eaf-b371-382be73415aa',NULL),
('4b5a1d4d-2afb-4abb-bf9b-3807d0668afc','905078062550','Sayın yetkili; DUYGU YILDIZ adlı müşterinize 598396998 nolu gönderinizin 6 SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 22.09.2025 17:20:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('4b5dfa8a-1188-4ec4-83cd-16a238054163','33666926469','221763889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9247 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221763889\n\nYour shipment with the number 221763889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9247. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221763889\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('4b6582b7-3312-42bb-8a7f-439ddab62aeb','491749591942','Sayın AZAT ALKAN, 35119636 nolu gönderiniz 7351 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/35119636\n\nDear AZAT ALKAN, your shipment with 35119636 was delivered to you with the delivery code 7351. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/35119636\n\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('4b687e10-4664-45d2-9ab8-6d92245d0191','905079358213','MEHMET SALDANLI adlı müşterinizin 745508995 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL),
('4b6b94b8-c7e0-464b-bbf8-2410b8ffcb93','9053259981980','SEVİNÇ ÖZKAN  adlı müşterinizin 614143415 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL),
('4b73b76d-0a55-4287-85d3-77b18180c7b9','491783053622','ŞÖFÖR İKETİŞİM\n					+905301824880','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('4b742e31-e8c5-497c-bb37-c23e67445ed9','4917621650674','808450440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10496 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808450440\n\nYour shipment with the number 808450440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10496. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808450440\n\nBICARGO','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('4b756b98-4dca-4306-8dce-521a22970be3','905079358213','Sayın yetkili; ARZU AKSİ adlı müşterinize 745817440 nolu gönderinizin BOHEM KOLTUK TK 3+3+1+1 ürünü 4 parça halinde Fatura adresinizden 09.05.2025 19:19:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('4b758689-41be-4869-b4a8-0f11b8deb6dd','905451571652','Sayın yetkili; HUSSEİN NAKAL adlı müşterinize 531606130 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde PABLO HOME adresinizden 06.10.2025 12:29:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('4b77d204-1314-4712-bdfc-b78124ee330f','491635214231','221507815 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8692 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221507815\n\nYour shipment with the number 221507815 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8692. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221507815\n\nBICARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('4b8731ec-0e6b-44d8-9322-39973a9b5ac1','905313340045','EDA ÇALIŞKAN adlı müşterinizin 437539983 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('4b885206-3429-42ad-adc3-2194b21f75bf','33777886864','Sayın BOUDJELLOLİ LAKHAR, 982340056 nolu gönderiniz 10995 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982340056\n\nDear BOUDJELLOLİ LAKHAR, your shipment with 982340056 was delivered to you with the delivery code 10995. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982340056\n\n\nBICARGO','1','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL),
('4b89ee7b-b55d-4fa4-a151-eddf9552a3bf','905454259202','BELKISA KAPLAN adlı müşterinizin 478403794 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('4b8b21a4-647a-4169-b9ee-e34fa93bebba','491772703881','59878032 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59878032\n\nYour shipment with the number 59878032 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59878032\n\nBICARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('4b8dcc5a-727c-4755-a80e-8eade3616195','905079358213','ÖZGÜR SEDAT YAMALAK adlı müşterinizin 74513098 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('4b91ab95-21d8-4fdc-b3e5-c99bfd0dbe80','905075277637','SEZAİ TUNÇ adlı müşterinizin 745850370 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b384d0a2-c272-4375-a026-2cf2910078c9',NULL),
('4b92aab1-d7f8-4a62-b880-3a87ad46f1c6','905336367828','jusuf mehmedi adlı müşterinizin 982844191 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('4b9be909-829e-4c5b-a6a7-31286950b0c5','905428209234','Sayın yetkili; LEYLA TACİMER  adlı müşterinize 319212544 nolu gönderinizin Sehpa ürünü 4 parça halinde Fatura adresinizden 11.02.2025 13:30:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('4ba14803-e63a-44aa-9397-dceee8effeb5','33680742499','31929392 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3978 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/31929392\n\nYour shipment with the number 31929392 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3978. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/31929392\n\nBICARGO','1','2b0da990-33f0-4a20-bc6f-d7e86a9688d7',NULL),
('4ba2781d-5ff5-48b6-9438-95229389448d','905079358213','Sayın yetkili; SSH ALPEREN DÜZENLİ  adlı müşterinize 745863981 nolu gönderinizin SSH MASA ÜST TABLASI  ürünü 1 parça halinde Fatura adresinizden 07.10.2025 13:56:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('4ba294b4-b59b-4aa0-8385-2af0fc089861','33769060012','Sayın DİLAN ÖZKAN, 478125578 nolu gönderiniz 9364 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478125578\n\nDear DİLAN ÖZKAN, your shipment with 478125578 was delivered to you with the delivery code 9364. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478125578\n\n\nBICARGO','1','81d90712-62e3-438c-bb65-68ef2f0ed8e5',NULL),
('4ba656a4-2c09-4a6a-b6f8-39720bd2011a','905336367828','NOUR MOHAMMAD YAKUBİ adlı müşterinizin 982578025 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('4ba97053-4192-4825-bfdc-bde0bde27822','4915124291903','745863981 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5312 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745863981\n\nYour shipment with the number 745863981 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5312. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745863981\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('4ba9e17b-c8ab-418a-80b0-f09c18e77543','491723113867','41279166 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6765 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41279166\n\nYour shipment with the number 41279166 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6765. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41279166\n\nBICARGO','1','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL),
('4bad1cc2-4b77-4627-8297-73b9dfb16f3b','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Masa Ayakları ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:49:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('4bb2534f-6785-44a2-abc7-1cb6d816fcfc','491747448592','47830878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47830878\n\nYour shipment with the number 47830878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47830878\n\nBICARGO','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('4bc113a2-0968-4477-a975-3857eb48c9b2','905079358213','OKAN EKİNCİ adlı müşterinizin 745873539 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('4bcd8f4b-32c4-440a-9f30-8faa55079b10','33780501083','Sayın RODRİGUES AMİNA, 982542299 nolu gönderiniz 2789 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982542299\n\nDear RODRİGUES AMİNA, your shipment with 982542299 was delivered to you with the delivery code 2789. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982542299\n\n\nBICARGO','1','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL),
('4bd3260d-35de-407e-ba74-261bf09adb90','4917680082781','644966461 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5130 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644966461\n\nYour shipment with the number 644966461 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5130. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644966461\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('4be0996b-2fc8-4efc-a483-67c3e0e9072d','4917661479043','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('4be0f716-522e-4eee-ab9a-297fe372b18a','905523438971','BESTE NUR ÖZKAYA adlı müşterinizin 896769535 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('4be2ab52-9907-4e37-b56a-520b57bc6b7e','41798262813','Sayın SELMA BAJRAMOSKA, 613374971 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613374971\n\nDear SELMA BAJRAMOSKA, your shipment with 613374971 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613374971\n\nBICARGO','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('4be7f710-919d-4010-8102-fbbd6d8fe321','4917624885131','Sayın BURCU ASLAN, 598220619 nolu gönderiniz 7642 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598220619\n\nDear BURCU ASLAN, your shipment with 598220619 was delivered to you with the delivery code 7642. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598220619\n\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('4be94ea7-39a9-4397-819f-d56fa6034f04','491622351265','613528305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8870 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613528305\n\nYour shipment with the number 613528305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8870. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613528305\n\nBICARGO','2','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('4bea95f5-9cc6-45e4-aca0-09d8f04cd186','41782110649','Sayın GÜL-MURAT AVCU, 478449021 nolu gönderiniz 8457 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478449021\n\nDear GÜL-MURAT AVCU, your shipment with 478449021 was delivered to you with the delivery code 8457. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478449021\n\n\nBICARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('4bebb6a0-7418-4ed6-bd75-dcf5e4df0f8d','436608524565','Sayın ALİHAN ARATEKİN, 221322415 nolu gönderiniz 1008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221322415\n\nDear ALİHAN ARATEKİN, your shipment with 221322415 was delivered to you with the delivery code 1008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221322415\n\n\nBICARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('4bf4bbf6-e540-42cf-9fd4-d5aec24e9ae7','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin YATAKLAR ürünü 4 parça halinde Fatura adresinizden 20.05.2025 12:01:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('4bf6162e-ce32-46df-a213-f99a6f47b1bd','905079047428','DERYA GÜLLER adlı müşterinizin 449627061 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2bc13cda-c525-42a2-a315-a0390ae06337',NULL),
('4bf94e67-c63a-40be-968a-baa844eff3d2','491747392825','Sayın MURAT KARAOĞLU, 745629044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745629044\n\nDear MURAT KARAOĞLU, your shipment with 745629044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745629044\n\nBICARGO','1','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL),
('4bf974d1-1b58-45dc-acf8-2d7d2cb17778','905313340045','Sayın yetkili; SATİ CENGE adlı müşterinize 437427529 nolu gönderinizin orta sehpa ürünü 2 parça halinde masami adresinizden 08.08.2025 14:47:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('4bfa6eef-1b0a-440b-b663-fd48fd6cb3a4','4915254790344','Sayın WASİ BAHİR , 613373885 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613373885\n\nDear WASİ BAHİR , your shipment with 613373885 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613373885\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('4bfdc63a-64d8-40c0-bf4e-73f2c6b80c87','905079358213','GÜLDEN KARADAĞ adlı müşterinizin 745291553 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('4bffcbf8-e0ba-431f-b885-c4524bb8c4c7','31621641052','Sayın PETER BOUMA, 449446169 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449446169\n\nDear PETER BOUMA, your shipment with 449446169 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449446169\n\nBICARGO','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('4c06c2a2-9904-4515-8e00-08c2fc22285f','905421855834','Sayın yetkili; HÜLYA MEŞE adlı müşterinize 338411689 nolu gönderinizin 1 Masa ve 2 adet Sehpa Üst Tablası  ürünü 6 parça halinde Fatura adresinizden 22.04.2025 11:46:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('4c0abb38-dd81-422d-9661-1990beeafa6a','4915735873115','Sayın ARZU BÖÇKÜN, 614680407 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614680407\n\nDear ARZU BÖÇKÜN, your shipment with 614680407 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614680407\n\nBICARGO','1','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('4c0c789b-448a-43e4-836d-7e5eb15c5469','491748338255','745302940 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745302940\n\nYour shipment with the number 745302940 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745302940\n\nBICARGO','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('4c0cfffe-033f-4511-afaf-8acdf1a74779','905510396989','Sayın yetkili; CEMAL YALÇIN adlı müşterinize 319116491 nolu gönderinizin TESLA KOLTUK 3+3+1+1 ürünü 6 parça halinde Bestine adresinizden 08.07.2025 14:03:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('4c106f73-ec5e-4431-8ddb-89af5003fdd0','31657147344','41295798 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41295798\n\nYour shipment with the number 41295798 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41295798\n\nBICARGO','1','3977a5d5-74d4-4a83-924b-634b068065a2',NULL),
('4c1141fd-3897-4245-9dd5-05b2c924fa4e','905059175469','TUĞBA YILMAZ adlı müşterinizin 42845475 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0968d1cc-0ba0-445c-8f49-74a0f7b6c441',NULL),
('4c135f61-f9e6-45e2-85f0-cbcb651ad63b','33781747148','Sayın ÜLKÜ ÖZTÜRK, 221943840 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221943840\n\nDear ÜLKÜ ÖZTÜRK, your shipment with 221943840 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221943840\n\nBICARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('4c139f84-b408-408b-9983-79423b683038','905331602195','MÜCAHİD GÜZEL adlı müşterinizin 22162472 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('4c166b86-6d7c-40ce-b7f8-b9d4632c71c8','905461661672','Sayın yetkili; MERT OSMAN DEMİR(K) adlı müşterinize 644153988 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 10.09.2025 11:14:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('4c185f41-c0f6-4a32-a1c5-55681a797ac1','4915737582950','Sayın SULTAN GÜNDOĞDU, 455477301 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455477301\n\nDear SULTAN GÜNDOĞDU, your shipment with 455477301 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455477301\n\nBICARGO','1','049cec7b-ec44-4295-afa5-768b2786337d',NULL),
('4c1b3947-969a-4f78-a064-a1cc06a881f9','905335511664','Sayın yetkili; ŞENGÜL BABAOĞLU adlı müşterinize 371304914 nolu gönderinizin masa + sehpa ürünü 4 parça halinde Seramik Masa Üreticisi adresinizden 05.08.2025 15:13:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('4c1daba5-13a9-44ea-bd72-ec95d8ba7ae3','313115689790','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('4c1fc6a3-d807-4eb0-8801-f6c581e37624','33651062743','Sayın  İSMET CEYLAN, 127241743 nolu gönderiniz 7022 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127241743\n\nDear  İSMET CEYLAN, your shipment with 127241743 was delivered to you with the delivery code 7022. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127241743\n\n\nBICARGO','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('4c243a90-cf15-4dd2-88ec-79c7f0843c8d','491712326850','ŞÖFÖR NUMARASI\n					+905467896981','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('4c24efd3-79f2-46fe-bf0a-48df92a5d611','4915124291903','Sayın SSH ALPEREN DÜZENLİ , 745863981 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745863981\n\nDear SSH ALPEREN DÜZENLİ , your shipment with 745863981 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745863981\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('4c287665-503e-4a18-b79f-d1958daf8a50','905461661672','Sayın yetkili; MUHAMMED ALİ TÜMKAYA adlı müşterinize 64455982 nolu gönderinizin MASA VE SEHPA TAKIMI ürünü 5 parça halinde Masami Mobilya adresinizden 26.02.2025 10:23:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('4c2b228d-d850-4e4b-8496-ceea446080eb','4915115864396','Sayın RUKEN ŞAKIR, 910187142 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910187142\n\nDear RUKEN ŞAKIR, your shipment with 910187142 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910187142\n\nBICARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('4c2ee4bb-5ab5-4c6e-8d1c-bb2f566b208d','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL YATAK ODASI TAKIMI BAZALI ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('4c2fba2c-8953-4e8a-9af9-03a22db173bc','33640502682','Sayın EL HARRAR OUASSİFA, 982666330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982666330\n\nDear EL HARRAR OUASSİFA, your shipment with 982666330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982666330\n\nBICARGO','1','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL),
('4c319f99-a464-41b9-a24f-7559bd88a918','905079358213','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin SEHPA ÜST  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('4c327ab6-6eef-4d89-b85b-23bcf1d0e752','905301592882','RUKİYE EKERBİÇER  adlı müşterinizin 910903191 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL),
('4c3698d5-20fe-4317-9ace-2395b7794ff9','905312762034','Sayın yetkili; ESMA GÜNVAR adlı müşterinize 808396862 nolu gönderinizin Köşe Takımı ürünü null parça halinde BELİTA HOME adresinizden 02.10.2025 14:44:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('4c37eec2-1853-4f79-902c-8837dc1f2014','905078062550','Sayın yetkili; FADİME ERİMEZ adlı müşterinize 598425779 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde SOFA PARS adresinizden 02.10.2025 15:28:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('4c38fd75-949d-4109-8ee4-6fca0da311e6','905059175469','Sayın yetkili; NADİR KURUKOL  adlı müşterinize 428414858 nolu gönderinizin berjer kasası ürünü 2 parça halinde Fatura adresinizden 24.04.2025 09:53:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('4c3ac327-febb-47d4-b566-f1b3298a8d45','33634738043','Sayın YUSUF ADIGÜZEL, 976942978 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976942978\n\nDear YUSUF ADIGÜZEL, your shipment with 976942978 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976942978\n\nBICARGO','1','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL),
('4c3b24da-3518-4ff9-a9a4-c096c49902d1','32488135313','Sayın BERKANT, 412252365 nolu gönderiniz 8029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412252365\n\nDear BERKANT, your shipment with 412252365 was delivered to you with the delivery code 8029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412252365\n\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('4c3c77fa-95ad-4f5b-8342-aec8dde34783','4917680117580','Sayın MEHMET GÜL, 33841628 nolu gönderiniz 4301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/33841628\n\nDear MEHMET GÜL, your shipment with 33841628 was delivered to you with the delivery code 4301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/33841628\n\n\nBICARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('4c3f8f70-2abb-458f-b849-ca5fff2e4ea4','491723213351','Sayın GÜLİSTAN ÇİÇEK, 745276835 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745276835\n\nDear GÜLİSTAN ÇİÇEK, your shipment with 745276835 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745276835\n\nBICARGO','1','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL),
('4c43ef51-89f8-4f50-a73f-f7115f36cbc1','905054335859','MEHMET KIZILDERE adlı müşterinizin 501488750 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL),
('4c446d20-8027-42e9-a187-efb088209478','5413112906','Sayın GAMZE ÖZDEMİR, 319645924 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319645924\n\nDear GAMZE ÖZDEMİR, your shipment with 319645924 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319645924\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('4c4bac30-f5e5-4b4a-aaf2-894541727a63','905350617509','Sayın yetkili; SEVVAL KELES adlı müşterinize 613495902 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 27.08.2025 11:30:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f18122e-004e-4381-bc37-c92c815065a9',NULL),
('4c4e3796-0665-4052-aa81-954ea44fbb6c','905331602195','ROHAD TOSUN  adlı müşterinizin 221529516 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('4c4ebb23-5ca3-4aed-9d99-132561e827fd','32472247513','Sayın FURKAN KAYABAŞ, 221631052 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221631052\n\nDear FURKAN KAYABAŞ, your shipment with 221631052 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221631052\n\nBICARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('4c524a19-448e-476d-a764-664ffa1892b3','905331602195','Sayın yetkili; ABDULLAH KARACA adlı müşterinize 221554711 nolu gönderinizin BALAT SANDALYE ürünü 6 parça halinde ALP SANDALYE adresinizden 10.02.2025 12:42:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('4c537a3f-9fb0-4d9a-bbca-5fd9366d8654','491632447779','Sayın ÖZKAN KARAOĞLU, 614200423 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614200423\n\nDear ÖZKAN KARAOĞLU, your shipment with 614200423 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614200423\n\nBICARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('4c569838-3966-4745-aaaa-b06356d1b61a','905325000478','DEKORATA adlı müşterinizin 412417235 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('4c571281-cbf6-4eae-bd69-6c9e9250a6ea','905517075149','Sayın yetkili; İLHAM SEVAL İNDİRME adlı müşterinize 478259590 nolu gönderinizin koltuk takımı ürünü 3 parça halinde novannş sofa adresinizden 27.06.2025 12:23:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('4c57411f-2020-4d25-a8e4-0a192fa173d2','905368336516','EMİNE MERİÇ adlı müşterinizin 51557557 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5d4df7c0-7f38-4095-847c-3996a99d1a51',NULL),
('4c586cc7-78a4-4927-b61d-eb3ade11c6d8','4915782204531','Sayın NUR YILDIRIM, 745278745 nolu gönderiniz 4664 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745278745\n\nDear NUR YILDIRIM, your shipment with 745278745 was delivered to you with the delivery code 4664. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745278745\n\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('4c5dff08-cb8f-4daa-b161-bd23428433c8','905307331627','FURKAN adlı müşterinizin 027201624 nolu gönderisi 29 parça halinde yola çıkmıştır.','1','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL),
('4c635e55-3016-4726-85f5-097f07120b92','905335708965','SARA MOHAİUDDİN adlı müşterinizin 248216907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','746346ca-da04-465b-bff8-fc464fa93ece',NULL),
('4c63d2c1-060c-4924-9a3e-9ac819d6063e','4916221534324917','ŞÖFÖR İKETİŞİM\n					+905301824880','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('4c6426ee-fc28-4cb4-bd2f-7c07bc408d60','491752512199','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('4c651ff7-264e-4adb-984b-6ac5f6101670','00491726977318','Sayın İBRAHİMİ ALİ JAN, 735500422 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735500422\n\nDear İBRAHİMİ ALİ JAN, your shipment with 735500422 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735500422\n\nBICARGO','2','563299ed-822d-490a-97cc-eb08990a8bdb',NULL),
('4c6b9b27-a595-4cbf-b57f-636e738fb88c','32483839092','Sayın SEFA SİNER, 428651654 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428651654\n\nDear SEFA SİNER, your shipment with 428651654 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428651654\n\nBICARGO','1','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL),
('4c6d49f8-bda4-4b86-848c-2ddd9007fbd1','4915772539240','İLETİŞİM\n					Furkan şöför = +905078826436','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('4c702677-3c7f-4990-afc2-2111b982105f','905535521975','METE KANDEMİRCİ adlı müşterinizin 01921294 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL),
('4c711601-6064-4728-96ae-7815ebc537f4','491716245168','Sayın AHMET CELEBCİ, 478650682 nolu gönderiniz 7609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478650682\n\nDear AHMET CELEBCİ, your shipment with 478650682 was delivered to you with the delivery code 7609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478650682\n\n\nBICARGO','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('4c71a8d5-7ba1-45d7-8dc2-94e893a5de22','491732811270','Sayın ŞEVKİ MORİNA, 976765698 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976765698\n\nDear ŞEVKİ MORİNA, your shipment with 976765698 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976765698\n\nBICARGO','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('4c727d59-8475-4590-8b0b-e7a0144827f7','497680698747','531380104 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531380104\n\nYour shipment with the number 531380104 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531380104\n\nBICARGO','2','47f285e8-830a-42cf-a352-d8268aef8cdb',NULL),
('4c8058ff-129f-4e6d-b9b4-cc8df20ba289','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin Konsol ürünü 1 parça halinde İlyas Masa adresinizden 17.06.2025 16:20:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('4c83272d-0927-4c27-b064-e29c7a9ea325','905510396989','Sayın yetkili; LEYLA AYDIN adlı müşterinize 31951233 nolu gönderinizin Köşe takımı-2 berjer ürünü 6 parça halinde Bestine adresinizden 06.01.2025 13:08:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('4c8336cb-9ad7-48fc-9f81-0f3661b2e401','905078062550','Sayın yetkili; ZEHRA ÜNAL SSH adlı müşterinize 598772340 nolu gönderinizin kaybolan masa ayakları ürünü 2 parça halinde RİO FATİH adresinizden 23.10.2025 15:13:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d068aa1a-0211-46d1-8268-db89610a5ea5',NULL),
('4c8fac20-7bdf-4593-8fca-3199a4a204cd','31641191889','Sayın DİANA HUSSEİN, 437917777 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437917777\n\nDear DİANA HUSSEİN, your shipment with 437917777 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437917777\n\nBICARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('4ca376cb-f0f3-444b-aac2-aae9124abb90','33749417037','Sayın GÖZDE TEMİZ		, 910670298 nolu gönderiniz 6175 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910670298\n\nDear GÖZDE TEMİZ		, your shipment with 910670298 was delivered to you with the delivery code 6175. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910670298\n\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('4cb6c353-086b-4666-adac-5625b040c2f1','905304259202','Sayın yetkili; NURCAN MANSUR adlı müşterinize 478377442 nolu gönderinizin KÖŞE VE 3 KUTU SANDALYE  ürünü 7 parça halinde çelikbey inegöl depo adresinizden 26.11.2024 14:19:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('4cb9bff9-5633-4d05-b4b2-d1e8b69330c0','491622496871','Sayın YOZLEM MİNCHEVA, 765564339 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765564339\n\nDear YOZLEM MİNCHEVA, your shipment with 765564339 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765564339\n\nBICARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('4cbb6c08-dab4-4900-90e5-d91d64a5b4ad','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin KÖŞE TAKIMI VE BAZA SETİ (İLKNUR YILMAZ) ürünü 1 parça halinde çelikbey inegöl depo adresinizden 25.05.2025 13:53:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('4cbf4509-4ddf-4172-84a4-d1e7c5363f1b','4917687972563','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('4cbf8124-2020-4cbe-acc3-c77b3603d0f9','9053259981980','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ VISCOLORA YASTIK ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:33:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('4cc14ce4-fbb2-4132-b7a6-d7a56988a7b7','33663262781','Sayın YUNUS HADIMLI, 644732617 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644732617\n\nDear YUNUS HADIMLI, your shipment with 644732617 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644732617\n\nBICARGO','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('4cc32b05-61ef-49fd-bdf1-b92cbafbafc5','905079358213','Sayın yetkili; ELOUAZGHİ ANAİS  adlı müşterinize 745879253 nolu gönderinizin VODA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 08.08.2025 17:20:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('4cc3c20e-7335-47d3-8d30-2c1f5282ab59','905365908694','MAİL BOXES ETC adlı müşterinizin 223923203 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL),
('4cc3f75a-d7ff-4f5b-bb0a-4e4f935f7792','905059175469','Sayın yetkili; SALİH DURAK adlı müşterinize 428718727 nolu gönderinizin bono köşe+berjer ürünü 5 parça halinde brawwa koltuk adresinizden 31.12.2024 10:23:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('4ccabec1-69f9-4624-8c9d-c3a52f419f0d','905451571652','Sayın yetkili; PERİHAN ÖZVURAL adlı müşterinize 531344250 nolu gönderinizin Yatak ürünü 6 parça halinde Albessa adresinizden 17.07.2025 12:28:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('4ccb2210-faaf-44f8-b93b-0baaed1d1178','4917682051476','Sayın JASMİNA YILMAZ, 371785400 nolu gönderiniz 8975 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371785400\n\nDear JASMİNA YILMAZ, your shipment with 371785400 was delivered to you with the delivery code 8975. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371785400\n\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('4ccc106c-9854-4ad6-938d-0a7cecd231ab','436766461961','Sayın HAFİZE BALİ, 371539784 nolu gönderiniz 1448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371539784\n\nDear HAFİZE BALİ, your shipment with 371539784 was delivered to you with the delivery code 1448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371539784\n\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('4ccce01d-5c64-423f-a0ca-47000727f264','905350617509','BERNA YİLDİRİM adlı müşterinizin 613847250 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('4cd090ef-7f33-4ef6-a641-166cbfdafe5a','491719000609','Sayın SALİH DURAK, 428718727 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428718727\n\nDear SALİH DURAK, your shipment with 428718727 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428718727\n\nBICARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('4cdf0e00-8568-486e-83a5-6d53e850ea4a','','478913776 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478913776\n\nYour shipment with the number 478913776 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478913776\n\nBICARGO','2','d7a12701-09c4-4320-85a8-07d8731effaa',NULL),
('4cdfcffe-b3ee-4ad0-af27-9313edf0886d','36363737364','412417235 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6586 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412417235\n\nYour shipment with the number 412417235 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6586. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412417235\n\nBICARGO','2','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('4ce0aea6-cdcc-4240-9897-16407362dd0e','49017657994353','Sayın NERMİN TÜREDİ, 745524390 nolu gönderiniz 3407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745524390\n\nDear NERMİN TÜREDİ, your shipment with 745524390 was delivered to you with the delivery code 3407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745524390\n\n\nBICARGO','2',NULL,NULL),
('4ce10417-35c0-420c-8546-670fec4c6341','4917684439417','Sayın ZANA, 248538815 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248538815\n\nDear ZANA, your shipment with 248538815 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248538815\n\n\nBICARGO','2','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL),
('4ce3573f-3fc0-40f6-93f8-5af880836d4a','4917631669596','Sayın EDA ABUL, 817160215 nolu gönderiniz 7657 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817160215\n\nDear EDA ABUL, your shipment with 817160215 was delivered to you with the delivery code 7657. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817160215\n\n\nBICARGO','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('4ced2162-b4f3-4ce8-899d-c57d23c79dd2','32486702531','Sayın RESUL YILMAZ, 478816607 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478816607\n\nDear RESUL YILMAZ, your shipment with 478816607 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478816607\n\nBICARGO','1','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL),
('4cf0791e-aba4-4fb7-88ff-b8216e995e90','491632639510','221339460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5675 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221339460\n\nYour shipment with the number 221339460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5675. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221339460\n\nBICARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('4cf31f95-9e9b-47d4-a2c1-9ac03cada87f','4917666234903','437539983 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6089 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437539983\n\nYour shipment with the number 437539983 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6089. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437539983\n\nBICARGO','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('4cf47f51-d05a-46a0-892f-9541018ec01f','905079358213','MURAT ERKUL SSH adlı müşterinizin 745898734 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('4cf53dc4-87c2-4235-8e1b-1eb7bd12cf61','905428209234','HİCRAN KAPLAN adlı müşterinizin 319206159 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('4cf6ca09-3549-4618-a183-7541289290ff','033627383077','Sayın ZİYA DEĞERLİ, 734782763 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734782763\n\nDear ZİYA DEĞERLİ, your shipment with 734782763 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734782763\n\nBICARGO','2','400f01f9-93ac-402c-9545-879c310ade12',NULL),
('4cf7b1a1-c516-4db3-a6a2-220c5d455b93','4915222699200','371179895 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9904 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371179895\n\nYour shipment with the number 371179895 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9904. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371179895\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('4cf85db0-d0b1-4ffd-ac88-73374440682a','905059175469','Sayın yetkili; ŞÜKRÜ AKSOY adlı müşterinize 428930069 nolu gönderinizin Koltuk kasasi ürünü 1 parça halinde onca koltuk adresinizden 21.01.2025 10:45:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('4cf8b225-0903-43bf-8451-d15395fea24a','905059175469','ALİ GÜLEÇ adlı müşterinizin 428470171 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('4cfa1cbc-f051-4f27-a1a5-98ba0eea5500','33783457448','Sayın VELİ ÖKTEN, 478284503 nolu gönderiniz 4317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478284503\n\nDear VELİ ÖKTEN, your shipment with 478284503 was delivered to you with the delivery code 4317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478284503\n\n\nBICARGO','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('4cfb30fe-01b2-4143-bea6-f09cce38e5a0','31685036791','478943291 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3969 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478943291\n\nYour shipment with the number 478943291 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3969. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478943291\n\nBICARGO','1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL),
('4cfe7e12-78d0-4b20-93fb-a6af410ec6e5','905079358213','EMRE YILMAZ SSH  adlı müşterinizin 745771664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('4cfed49b-cc5f-4b58-9a2f-6cc1a6f3ad8d','905304259202','RAMAZAN KIYMAZ adlı müşterinizin 478900175 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('4cfffd73-aa98-4c83-8508-22adab6d52a5','905461661672','SABİHA SATICI adlı müşterinizin 644520957 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('4d010eb8-eb67-4061-917a-9ca73475f086','4915154648685','380453463 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3627 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/380453463\n\nYour shipment with the number 380453463 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3627. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/380453463\n\nBICARGO','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('4d01c40f-c863-4955-bef1-8497e8051b31','905331602195','Sayın yetkili; KAYHAN BOZKURT adlı müşterinize 221692379 nolu gönderinizin 90x190 milas galaxy masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:47:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('4d04ee87-9521-4d94-a7ba-ab2b4eae6610','905352129940','SHAHRAM RECEBİ  adlı müşterinizin 112270991 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL),
('4d05f0b8-df4c-41a1-8579-0ce55f330bd1','905454259202','GÖKBEN BEYDİLLİ adlı müşterinizin 478836905 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL),
('4d06f95f-024f-45ca-b4b1-760bab106b6b','905079358213','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin RAMS KONSOL + 8 SANDALYE  ürünü 7 parça halinde FAMILY adresinizden 21.07.2025 12:37:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('4d0822b6-7cf4-40d1-817f-a4809bf294b6','905078062550','Sayın yetkili; HASSAN KHORRAM adlı müşterinize 598441020 nolu gönderinizin 8 sandalye ürünü 4 parça halinde LİN SANDALYE adresinizden 25.07.2025 16:20:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('4d0857af-7bc7-4260-b8e0-44db1f466829','905306071261','YOZLEM MİNCHEVA adlı müşterinizin 765564339 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('4d110219-1983-4e02-aa02-20ad872073af','905535521975','METE KANDEMİRCİ adlı müşterinizin 01921294 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL),
('4d1db4ef-7b03-4226-bb95-45fadbfd8a77','905363385813','NAFİLE HANIM adlı müşterinizin 976543269 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL),
('4d1f35eb-29ad-4b49-b7c2-5da78fbe3acd','905459011033','ATİLLA GÖNÜLTAŞ adlı müşterinizin 268615271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL),
('4d21fc6f-8ef1-43b0-ae49-546161bb391f','905454259202','OSMAN SÖYLEMEZ adlı müşterinizin 478325717 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('4d24f49e-a213-4354-8d0d-91f4d1f8c3a3','905517075149','Sayın yetkili; ŞÜKRAN ÖZGÜL adlı müşterinize 478739679 nolu gönderinizin KONTROL !!!ORTA SEHPA PUF VE 3 ADET YAN SEHPA  ürünü 6 parça halinde RİXXE adresinizden 14.10.2025 13:51:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4df3c44-e272-4f15-83b1-063b9f953adc',NULL),
('4d250267-dfce-49ae-afe9-43b6f5f90559','905532675926','GÜRSEL KURTULMUŞ adlı müşterinizin 428659303 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('4d2a2b08-b9c1-49f5-b289-d08dd5d19087','905312762034','Sayın yetkili; EMİNE İMRAG adlı müşterinize 808830873 nolu gönderinizin Masa+8 Sandalye ürünü 7 parça halinde MASAMİ adresinizden 19.08.2025 14:16:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('4d34d2aa-8750-4477-a6cf-9a8f3605ca27','33640248237','47833977 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6805 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47833977\n\nYour shipment with the number 47833977 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6805. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47833977\n\nBICARGO','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('4d3d53dd-3d70-430a-8310-49b945689aba','905461661672','ZAFER SARIDAŞ(K) adlı müşterinizin 644717952 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('4d400c90-5c80-4b5e-a656-547ace474c1a','32477787877','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('4d43f725-3ed6-4c5b-b489-cbcd64eae81b','905335511664','LALE AKGÜL adlı müşterinizin 371533444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('4d4535fd-1468-495a-9fe6-b9a2dcf062ab','491634714605','Sayın SEMANUR GÜLER, 598781522 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598781522\n\nDear SEMANUR GÜLER, your shipment with 598781522 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598781522\n\nBICARGO','2','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('4d4bd073-803b-4c7a-8b69-85c3c13381d6','905325000478','MOWO adlı müşterinizin 412757132 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL),
('4d5e27bd-cd36-4154-9159-a78123e583b1','905054335859','DURSUN GÜNBEYİ adlı müşterinizin 501766543 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL),
('4d615c2d-892b-4da0-8450-68fd20df1039','33778663770','221850151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7503 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221850151\n\nYour shipment with the number 221850151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7503. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221850151\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('4d6277a4-1470-4928-86b1-66304919750e','4915254883380','Sayın ERSİN, 126377805 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126377805\n\nDear ERSİN, your shipment with 126377805 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126377805\n\nBICARGO','1','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL),
('4d63507c-6fce-4ded-8d18-9b0223c9a75a','33695741200','268443203 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268443203\n\nYour shipment with the number 268443203 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/268443203\n\nBICARGO','1','c83b1650-e8ef-42b8-bd59-85142002c440',NULL),
('4d65da4b-2216-4f3f-ad6b-df5514ce1097','905461661672','FATMA SILA KAÇAK adlı müşterinizin 644194590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('4d6aa606-abdf-4497-ab0a-940f77e638fb','905451571652','ELA BAYRAM adlı müşterinizin 531737045 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('4d72266d-4428-4637-99d0-3bef4891fbd7','905336367828','SAİD ALİ  adlı müşterinizin 982973548 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('4d729bcd-c596-4e58-80fc-abdb2e423ba1','4915255838893','İLETİŞİM\n					Furkan şöför = +905078826436','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('4d78787f-ef8c-4a15-af0a-2418abf03887','491728739578','221471794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221471794\n\nYour shipment with the number 221471794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221471794\n\nBICARGO','1','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL),
('4d7d64f5-3d62-4525-a70d-00265a277bab','491634192330','Sayın SALİH KAHRAMAN, 803441454 nolu gönderiniz 6633 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/803441454\n\nDear SALİH KAHRAMAN, your shipment with 803441454 was delivered to you with the delivery code 6633. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/803441454\n\n\nBICARGO','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('4d7de091-b9d0-4ddf-b8ea-c25054bafec2','905078062550','HASSAN KHORRAM adlı müşterinizin 598441020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('4d807b3b-befa-41b2-81f2-fc9abd2b0961','491739901545','Sayın HANEFİ ALİOĞLU, 501247386 nolu gönderiniz 9935 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501247386\n\nDear HANEFİ ALİOĞLU, your shipment with 501247386 was delivered to you with the delivery code 9935. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501247386\n\n\nBICARGO','1','088fba56-0e50-4ce7-864f-7f301956e881',NULL),
('4d81a565-12a1-4eb3-acd8-162efd38b938','4915206231877','Sayın CİGDEM DENKER , 613391684 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613391684\n\nDear CİGDEM DENKER , your shipment with 613391684 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613391684\n\nBICARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('4d8464c1-f97c-4819-b777-1e4ada91a6bc','4917672242540','371193272 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5234 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371193272\n\nYour shipment with the number 371193272 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5234. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371193272\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('4d86d0ae-50a6-4700-a9be-ee388b735957','905325000478','SERDAL adlı müşterinizin 412586204 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL),
('4d878bc3-3380-49b0-ae04-0f16b14e2a65','905075277637','ASLIHAN GÜÇLÜ adlı müşterinizin 745554582 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('4d8a7b81-a279-4724-9ca3-a72e9b900c18','491748888386','7456984 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7456984\n\nYour shipment with the number 7456984 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/7456984\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('4d8cc15b-8e9e-47f3-8572-22c0728e38af','4915758509876','Sayın DİLEK KHABİL, 765729280 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765729280\n\nDear DİLEK KHABİL, your shipment with 765729280 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765729280\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('4d8e8696-3055-476f-9056-e7f3b1b33215','905335511664','İLAYDA GÜNEŞ adlı müşterinizin 371528044 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('4d8ef660-28f0-496a-8ef6-c987a35a6ecf','306978038133','478302796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10679 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478302796\n\nYour shipment with the number 478302796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10679. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478302796\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('4d8f6e13-6520-4dec-a972-efa8b454b437','905461661672','Sayın yetkili; NAZIM KORKMAZER adlı müşterinize 644771270 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LİTANİ KOLTUK adresinizden 15.05.2025 15:24:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('4d93d65d-ae41-4519-b12d-909f28801560','4917670681296','Sayın ERTAN TOSUNER, 598454821 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598454821\n\nDear ERTAN TOSUNER, your shipment with 598454821 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598454821\n\nBICARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('4d962185-57ab-4cb4-a1fb-4ece2baff43d','9054439559150','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY YATAK 180x200 ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:34:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('4d99d004-5149-4998-a272-f2705f4865d2','436766461961','371684650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371684650\n\nYour shipment with the number 371684650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371684650\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('4d9b456d-18bc-4c23-88bf-921ed1929601','33758896442','Sayın MERYEMA TEKİN, 478322325 nolu gönderiniz 9858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478322325\n\nDear MERYEMA TEKİN, your shipment with 478322325 was delivered to you with the delivery code 9858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478322325\n\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('4d9ba112-b837-4984-9f61-e154a149c1c0','33695585562','Sayın LEİLA GELES, 745266700 nolu gönderiniz 5247 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745266700\n\nDear LEİLA GELES, your shipment with 745266700 was delivered to you with the delivery code 5247. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745266700\n\n\nBICARGO','1','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL),
('4d9bd7f2-7bbe-4636-b50b-fff6d5eb4d3e','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PETEK YARMALI KÖŞE  ürünü 4 parça halinde Fatura adresinizden 29.08.2025 18:02:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('4d9d5335-78b1-4f1c-8dd2-85e1d244819c','491746845018','Sayın EBUBEKİR ATA , 319316615 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319316615\n\nDear EBUBEKİR ATA , your shipment with 319316615 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319316615\n\nBICARGO','1','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL),
('4d9dad15-b269-48d2-ae5c-d86b52a3b21b','4915758475728','Sayın MEHMET KAÇIRAN, 745484472 nolu gönderiniz 1196 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745484472\n\nDear MEHMET KAÇIRAN, your shipment with 745484472 was delivered to you with the delivery code 1196. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745484472\n\n\nBICARGO','1',NULL,NULL),
('4d9f6c5e-0ec7-4322-a695-84750c8751b1','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin Pars sofa yazılı Kumaş size bırakıldı ürünü 1 parça halinde Fatura adresinizden 03.10.2025 16:01:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('4da2df54-cead-4e0f-8673-12539c4bc255','905539740010','Sayın yetkili;  UĞUR KAPLAN  adlı müşterinize 011697836 nolu gönderinizin 6 sandalye  ürünü 3 parça halinde BULKA SANDALYE adresinizden 09.09.2025 14:21:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('4da7643a-e4b5-4af7-aa8e-b2ac3bd97ef3','905335511664','Sayın yetkili; MEHDİ SALİHU adlı müşterinize 371434188 nolu gönderinizin masa + sehpa ürünü 5 parça halinde SM Tasarım adresinizden 06.10.2025 14:01:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('4da84fa9-5293-42ba-a427-c12ac8311832','905313340045','MERYEM BİRCAN ANİK adlı müşterinizin 437791709 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('4dadd9a9-b692-4431-be55-dd8c981025c6','905331602195','EL GHZİZAL CHAİME  adlı müşterinizin 221686736 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('4db4a807-943b-4ed7-a7e3-0caa212722b3','905079358213','LEİLA GELES adlı müşterinizin 745266700 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL),
('4db4ea82-9194-4d58-9623-bb9fdef58b48','905325000478','CEMİL BEY adlı müşterinizin 412119334 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3167a684-9120-4a08-a96f-a652ac70c76f',NULL),
('4dbb86c1-804a-4eab-84b0-5153b5baace7','905517075149','DELİL ALGUNERHAN adlı müşterinizin 478677262 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('4dbd184e-2e45-41ce-8bdf-72b5dd5628e2','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160*200 BAZA ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('4dc55243-ce69-42f1-b191-ce2503833259','905363385813','Sayın yetkili; BURHAN SAĞLAM adlı müşterinize 976593604 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde SALON KOLTUK adresinizden 12.09.2025 17:46:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('4dc9e07b-7345-45c9-b415-a851f97aaf53','4917623926506','351330330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10631 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351330330\n\nYour shipment with the number 351330330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10631. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/351330330\n\nBICARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('4dd0a6d3-328d-4161-b297-d46712fe2ce1','905368336516','Sayın yetkili; SEDA -  MUSTAFA SERCAN GUNDOGMUS  adlı müşterinize 515829047 nolu gönderinizin KOLTUK ürünü 5 parça halinde TRANJET DEPO  adresinizden 13.10.2025 15:49:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a1c035d-4dfb-480e-bc9c-b1a62adfa157',NULL),
('4dd10c0f-da25-4443-ae8f-1b9b8377f51d','4915770347137','613108463 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10061 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613108463\n\nYour shipment with the number 613108463 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10061. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613108463\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('4dd5aa8b-554e-4482-82bd-558ab02caa57','491788999021','Sayın DENİZ AKGÜMÜS , 613601743 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613601743\n\nDear DENİZ AKGÜMÜS , your shipment with 613601743 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613601743\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('4dd64487-4e00-4531-8a5b-c80867a90b20','4917662469694','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('4dd744c8-f4f8-4cf5-9532-cd7e5a9bc97b','4917674917141','Sayın AHMET GÜNEŞ, 478300434 nolu gönderiniz 6410 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478300434\n\nDear AHMET GÜNEŞ, your shipment with 478300434 was delivered to you with the delivery code 6410. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478300434\n\n\nBICARGO','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('4ddfe183-5b6a-4e51-b8f3-97924b9d2586','4917662047027','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('4de093cb-9e9f-4de6-ba32-233e1adf7c13','905079047428','MİTRA MESKİNİ adlı müşterinizin 44932987 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('4de26374-1aba-4862-870b-163108c006a2','4917684455895','Sayın OKTAY TAN, 319533001 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319533001\n\nDear OKTAY TAN, your shipment with 319533001 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319533001\n\nBICARGO','1',NULL,NULL),
('4de28032-fc6e-47ff-a928-496c8d1f9db6','905517075149','AYSUN ELİBÜYÜK SSH adlı müşterinizin 478646824 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','26021dc0-1339-4317-be03-053c91e39d17',NULL),
('4de77209-3c4b-48a4-ae1f-d119c1d812d0','33763000176','Sayın KAZIM KURUCU, 478335843 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478335843\n\nDear KAZIM KURUCU, your shipment with 478335843 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478335843\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('4def7451-9732-493a-8817-3b0abcad1f8e','905321608709','CHİKH HAMZA GHUFRAN adlı müşterinizin 248707022 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('4df06241-f84c-4f15-a816-576f01ebc6e4','905079047428','SERHAT KARATAŞ  adlı müşterinizin 449197003 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL),
('4df403fa-7492-4afe-adfc-6541ff7c17e2','905325000478','LORİSWOOD adlı müşterinizin 412139015 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL),
('4df6f371-5203-4c63-a974-a70735eac80a','905442774505','BERKANT CEYLAN  adlı müşterinizin 657784193 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('4df8bda7-c79f-498f-8695-3b70ecabb594','905539740010',' UĞUR KAPLAN  adlı müşterinizin 011697836 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('4e00f62c-4b09-4940-afd5-388a0accad67','33695741200','Sayın DRANCY MEUBLE, 268443203 nolu gönderiniz 9609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268443203\n\nDear DRANCY MEUBLE, your shipment with 268443203 was delivered to you with the delivery code 9609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268443203\n\n\nBICARGO','1','c83b1650-e8ef-42b8-bd59-85142002c440',NULL),
('4e0ddedc-e98e-42fe-b995-1e7e2a78f8f1','905327099916','Sayın yetkili; EROL KIŞLAK adlı müşterinize 959626673 nolu gönderinizin GEZEGEN MASA ürünü 3 parça halinde Fatura adresinizden 23.10.2025 15:29:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','58e3e5d5-2e17-40da-96ac-0310bd71ed03',NULL),
('4e0df39b-cd23-43e2-b118-6686bf0d6645','905335708965','EUROMAT adlı müşterinizin 735293129 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL),
('4e0e51f2-2895-4270-93f4-214ce4623c23','905075277637','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MACHKA BAZALI KARYOLA 180X200 ürünü 4 parça halinde FAMILY adresinizden 16.06.2025 14:12:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('4e0f7f58-6ecf-4ede-bb30-aa1540f870ca','31640226281','644576493 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9906 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644576493\n\nYour shipment with the number 644576493 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9906. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644576493\n\nBICARGO','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('4e1a8b3d-27e6-4e57-8b67-dd20d0f10592','905461661672','Sayın yetkili; BURAK YAKUT adlı müşterinize 644975430 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde LENTE HOME adresinizden 05.08.2025 15:07:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('4e1d1c85-dfcd-4056-9dce-7bee9f150cb1','491731829748','Sayın GÖKHAN ÜLKER, 371944289 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371944289\n\nDear GÖKHAN ÜLKER, your shipment with 371944289 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371944289\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('4e1e03ec-b19a-4190-ba5d-d413f1bffb90','905355928266','BOZTAŞ adlı müşterinizin 412726953 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','aaf63331-ccff-4ade-8965-5318b9f59d6e',NULL),
('4e20dedd-871c-4e00-bbf9-f1a1a0d847e3','905331602195','SANAA ARGANE adlı müşterinizin 221573899 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('4e227e5e-9241-4e9c-bdce-47fcb011941c','491777459484','613786429 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3851 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613786429\n\nYour shipment with the number 613786429 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3851. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613786429\n\nBICARGO','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('4e270c3f-e4d5-41f4-80c4-641d7e870343','905079358213','NERMİN TÜREDİ adlı müşterinizin 745524390 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('4e3557bc-aeaa-408b-abb2-88209852ee61','491636378552','Sayın WASİ BAHİR , 613373885 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613373885\n\nDear WASİ BAHİR , your shipment with 613373885 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613373885\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('4e39a175-d16e-490a-95ca-d088b6ab8ffe','905312762034','SULTAN SEVİNÇ adlı müşterinizin 808935275 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('4e4d5682-4788-4665-9370-67e211abf231','905443955915','PINAR BARUTÇU adlı müşterinizin 614813890 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('4e506239-4ff3-49d1-9bfa-08e2eede526f','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin BOHEM KONSOL + 6 SANDALYE + ÜNİTE ALT  ürünü 10 parça halinde ODDO adresinizden 30.09.2025 14:06:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('4e54de19-33c7-41d7-b5e9-a32bade2f8ef','905449041398','SEYFETTİN  adlı müşterinizin 703870981 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a04f974c-9931-40d4-ae61-21f5044fce18',NULL),
('4e55fb6c-d028-4147-8b23-80d09141d224','905461661672','FADİME AKDEMİR adlı müşterinizin 644130393 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('4e564b3d-1073-466f-abb1-3b02dfd47161','491608350626','745873539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10614 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745873539\n\nYour shipment with the number 745873539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10614. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745873539\n\nBICARGO','2','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('4e59c00f-ab26-4eb2-a0f8-6308989e1184','905054335859','TEKİN MAZLUM adlı müşterinizin 501872546 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('4e5e50b0-fd48-4954-8358-68446da3aa5e','491638306069','221559079 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1460 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221559079\n\nYour shipment with the number 221559079 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1460. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221559079\n\nBICARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('4e6e9707-ba89-4c61-9ee6-8392d22669e1','905350617509','GASİ MUSA adlı müşterinizin 613262202 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('4e7159de-faa0-4311-8a7e-6ca458544ad8','905350617509','Sayın yetkili; SWEETA QALANAWİ  adlı müşterinize 613393068 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 25.07.2025 17:06:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('4e724468-d2f9-4116-ae3e-d615bb08de78','905394878216','Sayın yetkili; ÖZGÜR PİLİÇ adlı müşterinize 517447554 nolu gönderinizin Koltuk Takımı (3+3+1) ürünü 4 parça halinde Fatura adresinizden 20.05.2025 11:42:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('4e747e88-3a24-493b-8374-d9dd9c4c0368','905313340045','BEKİR TEKELİ adlı müşterinizin 437700144 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('4e7877d6-6000-444f-bf73-35b847ea8228','905335708965','İSABEL SEDRAYKYAN adlı müşterinizin 735977134 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL),
('4e7892f7-568f-4155-b5d2-21f2a91eb0d8','4915732042277','ŞÖFÖR NUMARASI\n					+905467896981','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('4e797e73-0116-485e-bcfd-6b1768431eef','33768511676','910645687 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7214 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910645687\n\nYour shipment with the number 910645687 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7214. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910645687\n\nBICARGO','1','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL),
('4e7a8929-ff71-4974-873a-5e5717ffccb5','33753794689','Sayın ÖZKAN ERDEM , 478784133 nolu gönderiniz 7407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478784133\n\nDear ÖZKAN ERDEM , your shipment with 478784133 was delivered to you with the delivery code 7407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478784133\n\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('4e7aa7a5-e902-4aa6-85b4-06cc12a63294','905323332620','EMRE DİNÇ adlı müşterinizin 52896910 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL),
('4e7af13c-5dac-45ad-bfc3-435bcac28214','905075277637','MAHMUT ÖZKAN adlı müşterinizin 745996696 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('4e7d9f68-2c85-42e3-9923-aa47041febd2','905335511664','Sayın yetkili; NECİP FAZIL ŞİMŞEK adlı müşterinize 371261673 nolu gönderinizin DİJİTAL BASKI MASA + SEHPA ürünü 5 parça halinde SM Tasarım adresinizden 30.06.2025 16:03:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('4e7ecbc7-5ef7-432b-acff-57d7a3c48111','436603406293','ARZU ASLAN adlı müşterinizin 675629833 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('4e7f3fd2-bd5b-436b-b7ac-5c74eda737b2','31648828012','Sayın MİYASE SARIKAYA, 221966080 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221966080\n\nDear MİYASE SARIKAYA, your shipment with 221966080 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221966080\n\nBICARGO','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('4e7fc3d2-1fc1-4959-8dd7-a4ee83d0799e','905349208933','Sayın yetkili; MAHMUD YUSUF ÖKDEM adlı müşterinize 127253098 nolu gönderinizin SANDALYE ürünü 3 parça halinde MELYA adresinizden 31.01.2025 16:09:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('4e82c26f-ba3d-4189-9cc3-5fe0e3418534','436603838566','675592889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6587 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675592889\n\nYour shipment with the number 675592889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6587. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675592889\n\nBICARGO','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('4e89849f-2f24-4aa5-b426-2c3de843ef36','905313340045','ZEYNEP ŞİMŞEK adlı müşterinizin 437442386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('4e8a190c-d9cb-470d-bc4c-f8dcbd374572','491787816278','371696812 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371696812\n\nYour shipment with the number 371696812 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371696812\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('4e8a285a-f78a-4728-8afb-87574577aba2','905011170016','ÖNDER KOCYİGİT adlı müşterinizin 380453463 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('4e8c8a93-a2f2-476d-85ad-e90e4d2d03d0','905079358213','EMRE YILMAZ adlı müşterinizin 745884226 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('4e8ddef6-9775-4d8e-86bd-f8afc731100f','905079358213','SÜVEYLA TARHAN adlı müşterinizin 745906539 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('4e8ef2e1-e827-44a0-95f2-ea39011628ab','337833578657','Sayın GÜLPERİ ÜNVER , 478415751 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478415751\n\nDear GÜLPERİ ÜNVER , your shipment with 478415751 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478415751\n\nBICARGO','2','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('4e9002c8-5cff-4905-9f28-90db490f8d07','4915772153329','465891539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3519 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465891539\n\nYour shipment with the number 465891539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3519. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465891539\n\nBICARGO','1','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL),
('4e9b2d36-ae8e-432a-8007-966ace9bf3c8','4368120943457','Sayın EDİSA MUSTAFSOVSKA, 675412794 nolu gönderiniz 4020 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675412794\n\nDear EDİSA MUSTAFSOVSKA, your shipment with 675412794 was delivered to you with the delivery code 4020. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675412794\n\n\nBICARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('4e9b38fa-19d7-4732-b24c-5f734d86c52c','33616745884','478603328 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4032 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478603328\n\nYour shipment with the number 478603328 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4032. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478603328\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('4e9bd5a9-aac3-4ced-b81a-ca68688bb6d0','905075277637','SEYİTHAN ASLAN adlı müşterinizin 745212688 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('4e9d8396-0161-47b7-9f41-a6d291532fe9','905075277637','Sayın yetkili; BURHAN AZEMİ adlı müşterinize 74594372 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 13.02.2025 23:16:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('4eab74de-2d4d-410d-bfff-77e8e66b567f','32487862116','982880880 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4738 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982880880\n\nYour shipment with the number 982880880 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4738. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982880880\n\nBICARGO','1','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL),
('4eac8c90-e0d8-4233-8ac7-e1045510bef4','905321608709','CAMLAR-SALİH AK adlı müşterinizin 248217260 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('4eb439b0-3a61-4191-854d-0f64badda825','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin komidin+şifonyer+ayna+gardırop ürünü 15 parça halinde sens dizayn adresinizden 19.12.2024 10:48:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('4ebbe90a-010d-44fc-b431-693d3aa9d365','4915738614883','412139015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3097 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412139015\n\nYour shipment with the number 412139015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3097. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412139015\n\nBICARGO','1','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL),
('4ebe7422-73ec-42dc-9b31-ef27829b733e','4915156727662','Sayın AHMET KURT, 745286096 nolu gönderiniz 7894 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745286096\n\nDear AHMET KURT, your shipment with 745286096 was delivered to you with the delivery code 7894. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745286096\n\n\nBICARGO','1','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL),
('4eccad31-bfa1-47ce-9a1b-4fe6b33f89d3','905517075149','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin sandalyeler ve puf ürünü 1 parça halinde Fatura adresinizden 22.07.2025 16:17:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('4ecf9be7-c0cf-4658-beae-d94bb3df893d','905335511664','Sayın yetkili; SVENJA KEMPEN adlı müşterinize 3718332 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 22.10.2025 13:00:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','643316ee-78c8-474d-b4d1-843fadca34cb',NULL),
('4ed20c07-6c94-4fb9-977d-b300ae26b8d2','4917680868263','Sayın HASSAN HUSSEİN, 976494428 nolu gönderiniz 9406 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976494428\n\nDear HASSAN HUSSEİN, your shipment with 976494428 was delivered to you with the delivery code 9406. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976494428\n\n\nBICARGO','1','887d1301-8182-4254-93e6-73d1ecf6af40',NULL),
('4ed40137-7200-43df-8689-0d68a3aabc69','4917621155442','Sayın ZEYNEP CİHANGİR, 478678849 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478678849\n\nDear ZEYNEP CİHANGİR, your shipment with 478678849 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478678849\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('4ed78e31-c798-4793-ac9f-6f3ead3d7c51','4917683315716','Sayın GAMZE ÖRSELOGLU, 515377519 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515377519\n\nDear GAMZE ÖRSELOGLU, your shipment with 515377519 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515377519\n\nBICARGO','1','04fb8dfc-07be-4e81-a060-8a8a6f53ef14',NULL),
('4ed87d47-d966-49e4-a08e-e65d3301e523','905078062550','ZELİHA ÖZCAN adlı müşterinizin 598492066 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('4ed8b9f5-0ce6-49ff-ac5b-e1c34ce14551','905454259202','KORAY KÜPE adlı müşterinizin 478693155 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a624a844-f729-4653-993f-bd28278f47e5',NULL),
('4ed9473f-ce8d-4972-aecc-5722cd83966c','905350617509','Sayın yetkili; VLORİNA BERİSHA adlı müşterinize 613378961 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 31.07.2025 16:41:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('4ed95384-f1d8-4ba3-85ed-4393b5d2fbcd','4915222583405','Sayın ENVER KÖK, 982549375 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982549375\n\nDear ENVER KÖK, your shipment with 982549375 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982549375\n\nBICARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('4eda32c1-5f19-4420-b1ce-e84d1985d3d3','32484568424','Sayın HAVVA KUM, 221443179 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221443179\n\nDear HAVVA KUM, your shipment with 221443179 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221443179\n\nBICARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('4edb182a-159f-422f-846f-391ebd4eb38a','49152216712','Sayın ROHAT KALABAŞ, 910245715 nolu gönderiniz 2900 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910245715\n\nDear ROHAT KALABAŞ, your shipment with 910245715 was delivered to you with the delivery code 2900. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910245715\n\n\nBICARGO','2','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('4edc40e1-9be9-4a90-bfcb-2bb8ade723dc','420606704964','916836796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2062 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/916836796\n\nYour shipment with the number 916836796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2062. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/916836796\n\nBICARGO','1','45658f08-1cac-40c6-b173-5814bf12543e',NULL),
('4eee5a77-a2e5-4a8e-aeca-d8138a8110dd','491638012299','478363734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6454 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478363734\n\nYour shipment with the number 478363734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6454. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478363734\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('4ef31b2c-4fce-4e40-b0de-c7aa0f28f801','905454259202','GÖKBEN BEYDİLLİ adlı müşterinizin 478836905 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e4376e5d-056f-4fc2-8f2c-979f3991845c',NULL),
('4ef6558d-fa1f-444a-85da-f5188c886642','32485363259','Sayın NUR SANDALCILAR, 517291063 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517291063\n\nDear NUR SANDALCILAR, your shipment with 517291063 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517291063\n\nBICARGO','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('4efb3d74-5ae0-4db6-bdbc-e4e896999c1b','905325000478','LEMAN TUNCER adlı müşterinizin 412467921 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('4efc079d-a291-404b-b21d-4ad27f013840','32484532916','338737901 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338737901\n\nYour shipment with the number 338737901 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338737901\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('4eff7e30-f786-469f-8e79-99b3e00fe293','33679049076','Sayın  SEHER GÜNAY, 478540346 nolu gönderiniz 5119 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478540346\n\nDear  SEHER GÜNAY, your shipment with 478540346 was delivered to you with the delivery code 5119. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478540346\n\n\nBICARGO','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('4f02a2b0-213b-439c-8ca4-f2db3ca66fd1','905325000478','Sayın yetkili; ABDULKADER TARRAB adlı müşterinize 412383870 nolu gönderinizin başlık ürünü 1 parça halinde Fatura adresinizden 11.07.2025 11:25:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('4f0706dc-f9f4-4d17-8f2d-cb3b5b32cf73','436604738360','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('4f087785-7c23-4a7b-9009-c380c7b2b9f7','905054335859','AHMET TEKİN adlı müşterinizin 501934466 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('4f09e74f-ae96-46ec-9e97-25ce1757692d','4915733689606','Sayın ERDİNÇ ESKİ, 745505942 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745505942\n\nDear ERDİNÇ ESKİ, your shipment with 745505942 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745505942\n\nBICARGO','2','d85df80f-4bcc-482f-949e-4393d27c0874',NULL),
('4f0a901e-e6b5-4668-b9c2-5ed36291349e','4917680520105','598903023 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6316 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598903023\n\nYour shipment with the number 598903023 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6316. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598903023\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('4f1247cf-96b5-4cb7-aacb-8dcf6856937d','4917662627829','Sayın ALAA AL- AHMAD, 5312778 nolu gönderiniz 6074 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/5312778\n\nDear ALAA AL- AHMAD, your shipment with 5312778 was delivered to you with the delivery code 6074. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/5312778\n\n\nBICARGO','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('4f1467f6-598b-48e3-bcf2-d9705a18063b','32489103760','437840419 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3039 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437840419\n\nYour shipment with the number 437840419 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3039. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437840419\n\nBICARGO','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('4f1d2b2e-afe4-4342-acd3-f629f02c3cef','491748338255','Sayın ÖZGÜR YILDIRIM, 745302940 nolu gönderiniz 8611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745302940\n\nDear ÖZGÜR YILDIRIM, your shipment with 745302940 was delivered to you with the delivery code 8611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745302940\n\n\nBICARGO','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('4f1e55ef-9ecd-4308-b137-1081f8152abd','5451801422','Sayın CANSU YENİLMEZER SSH, 745124199 nolu gönderiniz 8144 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745124199\n\nDear CANSU YENİLMEZER SSH, your shipment with 745124199 was delivered to you with the delivery code 8144. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745124199\n\n\nBICARGO','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('4f1f481a-a805-4d20-9be0-9def465379b7','33610781591','Sayın SÜLEYMAN BOZAN, 478406590 nolu gönderiniz 10403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478406590\n\nDear SÜLEYMAN BOZAN, your shipment with 478406590 was delivered to you with the delivery code 10403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478406590\n\n\nBICARGO','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('4f21bd46-50eb-433d-98cb-a699d0f94328',NULL,'SİBEL SAYDAM adlı müşterinizin 08159662 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL),
('4f29f33f-83db-4d8a-af1e-e17e6ae37bc4','905078062550','Sayın yetkili; KADER ŞAHİN adlı müşterinize 598719647 nolu gönderinizin MASA SEHPA ürünü 3 parça halinde RİO FATİH adresinizden 10.10.2025 17:23:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('4f2a9a4b-dd9f-41f1-b68e-2e7e5a46e0c5','905325000478','İHSAN KEPİR adlı müşterinizin 412299499 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('4f2b2538-9390-4dd9-9d1c-769d0ab82ff2','4917620989771','Sayın KAMER DUHAN ECE, 831899043 nolu gönderiniz 1311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/831899043\n\nDear KAMER DUHAN ECE, your shipment with 831899043 was delivered to you with the delivery code 1311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/831899043\n\n\nBICARGO','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('4f2b702d-17d6-4448-ab06-6dea8cda2e22','905079358213','SEVİLAY BÖLER adlı müşterinizin 745824914 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL),
('4f2d4f7b-83ad-45b3-845c-d5c5e6dca428','905335511664','Sayın yetkili; SILAMNIKU ALTRIN adlı müşterinize 371396579 nolu gönderinizin masa sehpa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:10:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('4f2d93c3-fb41-4799-b582-0fad91d58538','905517075149','Sayın yetkili; SELDA ÇELİK adlı müşterinize 478777541 nolu gönderinizin harmony masa ürünü 2 parça halinde BRAWWA MOBİLYA adresinizden 04.08.2025 11:20:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('4f34fd0c-b7db-4da7-8d71-885b38ba41f6','905313340045','Sayın yetkili; KAAN ALTINSOY adlı müşterinize 437591433 nolu gönderinizin masa ve sehpa ürünü 7 parça halinde masacı (ard sandalye yanında) adresinizden 19.03.2025 15:27:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('4f415798-b27a-4936-9159-78122f503e17','491631408924','72247088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4708 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/72247088\n\nYour shipment with the number 72247088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4708. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/72247088\n\nBICARGO','1','2afcf460-a080-4273-8901-46e80d97fa18',NULL),
('4f44a438-27e1-4801-823f-24f7e085da99','4917622920602','Sayın CANDAN ÖZDEMİR, 371251508 nolu gönderiniz 10394 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371251508\n\nDear CANDAN ÖZDEMİR, your shipment with 371251508 was delivered to you with the delivery code 10394. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371251508\n\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('4f4bf03d-f158-47af-b532-96558e6334f8','4917661976025','42837513 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6313 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42837513\n\nYour shipment with the number 42837513 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6313. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42837513\n\nBICARGO','2','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL),
('4f4cfa52-cf91-4807-a46b-6e1c7ca33950','4917682057600','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('4f4f512c-a64b-48ea-950e-f2b2e0258a43','905454259202','ALEV DOĞRU adlı müşterinizin 478697529 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('4f531157-2d69-48ab-8cc2-150d759dd74c','905078062550','MERT ÇİÇEK adlı müşterinizin 598954734 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('4f533927-793b-43af-b821-d452bdc6cb12','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin KÖŞE VE KANEPE MALZEME KUTUSU ürünü 1 parça halinde LENTE HOME adresinizden 28.08.2025 16:57:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('4f57513b-ec77-41ba-b3d3-f6fd7c5c8a82','905335511664','SİNEM ULUSOY adlı müşterinizin 37183091 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('4f57d2bb-c0de-4a92-9bda-a29003acfd8c','905301592882','Sayın yetkili; CAN KÜREKÇİ adlı müşterinize 910426934 nolu gönderinizin NEVRESİM TAKIMI ürünü 2 parça halinde Fatura adresinizden 15.01.2025 14:34:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('4f68e31e-7456-441f-9ca5-9734e589b3e9','33782835819','Sayın SELMA YILMAZ , 437649696 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649696\n\nDear SELMA YILMAZ , your shipment with 437649696 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437649696\n\nBICARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('4f6b37ce-f285-43b3-b76a-65a22dc0ce74','905394878216','Sayın yetkili; NAFİT GANİOĞLU adlı müşterinize 517255345 nolu gönderinizin Koltuk ürünü 3 parça halinde Fatura adresinizden 22.09.2025 13:54:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('4f6d2ec6-4b6b-4d5f-8b34-1d935610e26a','491636841244','Sayın ERGÜN GÜZEL, 193362317 nolu gönderiniz 2283 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/193362317\n\nDear ERGÜN GÜZEL, your shipment with 193362317 was delivered to you with the delivery code 2283. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/193362317\n\n\nBICARGO','1','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL),
('4f756775-88cb-4346-b613-8fe48d31e4a4','905461661672','Sayın yetkili; EDA GEÇİLİ adlı müşterinize 644726352 nolu gönderinizin sandalye ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 23.10.2025 10:27:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c90194bc-97cc-4374-adc9-37c98a4f48c9',NULL),
('4f7624f3-c3b2-4a31-97e3-96ddd513596d','33623241491','Sayın MERYEM YUMURTACI, 478154934 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478154934\n\nDear MERYEM YUMURTACI, your shipment with 478154934 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478154934\n\nBICARGO','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('4f771fde-cf64-466e-b9d9-9921a62942b9','905517075149','ENVER GÜL adlı müşterinizin 478659791 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('4f78c1a3-4b68-4861-9eed-82cfc99b4199','4917662712397','428341237 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6447 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428341237\n\nYour shipment with the number 428341237 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6447. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428341237\n\nBICARGO','1','21cea3d0-82cc-48c9-8e54-12f04fa0fc99',NULL),
('4f808907-7dae-48d8-8525-e522d4d5e3a3','905332942204','DERYA KARADENİZ adlı müşterinizin 505414907 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ee0c62fa-abac-44d0-915b-567df66647be',NULL),
('4f84258d-73a2-45fc-b760-c56d76b08a1c','33628708481','478335843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478335843\n\nYour shipment with the number 478335843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478335843\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('4f891dd5-2752-4146-a1ad-7f1949b1b66a','905454259202','Sayın yetkili; MEHRDAND RAZMPOUR adlı müşterinize 478962763 nolu gönderinizin yatak odası-yemek odası-tv-ortasehpa ürünü 28 parça halinde acca adresinizden 25.04.2025 14:24:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('4f8cf2c7-f469-4577-b075-2e4afe66524c','41794639037','Sayın ZEHRA ÜNAL, 598320188 nolu gönderiniz 10670 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598320188\n\nDear ZEHRA ÜNAL, your shipment with 598320188 was delivered to you with the delivery code 10670. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598320188\n\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('4f8f1796-f9dc-4c96-af6b-048b352b8a62','4915222735434','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('4f8f6b7e-0124-4277-adc4-d9fcf686009b','31611322238','Sayın MEHMET ORHAN, 371122828 nolu gönderiniz 9605 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371122828\n\nDear MEHMET ORHAN, your shipment with 371122828 was delivered to you with the delivery code 9605. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371122828\n\n\nBICARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('4f8f6ead-701a-40d6-98f6-4d2c779013c8','33650234345','982106314 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4557 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982106314\n\nYour shipment with the number 982106314 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4557. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982106314\n\nBICARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('4f978c83-45ee-4a17-8d77-dcdfcd7823c2','905515519191','HASAN BEY adlı müşterinizin 44831715 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL),
('4f97b6a4-6c0d-4183-960a-8a529dc4c55b','905517075149','Sayın yetkili; NURGÜL KARACAN adlı müşterinize 478412191 nolu gönderinizin Köşe-sandalye berjer ürünü 7 parça halinde RİXXE adresinizden 30.06.2025 16:16:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','026148a6-1f09-460e-bbc5-d795abe9cde4',NULL),
('4f9ade83-7697-4d76-9f9e-5f71e1fbc369','4915777530623','47855592 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1135 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47855592\n\nYour shipment with the number 47855592 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1135. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47855592\n\nBICARGO','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('4f9b5f2c-724f-47e8-83bc-045bbd7d7ce2','4917642796230','Sayın RABİJE OSMANİ, 505332275 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505332275\n\nDear RABİJE OSMANİ, your shipment with 505332275 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505332275\n\nBICARGO','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('4f9fbdaf-505f-447d-bb6c-953fe2cddde1','491795637471','371820872 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820872\n\nYour shipment with the number 371820872 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371820872\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('4fa418df-32a9-45c0-8a39-a94f0528c7ec','905335708965','AAAAAAAAAAA adlı müşterinizin 248904478 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL),
('4faacfa0-a857-4527-ac08-d85b5a428d45','905335511664','Sayın yetkili; DİLAN ÇELİK TOGAN adlı müşterinize 371881042 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 16.06.2025 16:11:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('4faadb93-2168-43af-8c87-9dc85c54d539','4915772539240','598441020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2280 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598441020\n\nYour shipment with the number 598441020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2280. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598441020\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('4fabc222-e4a8-460f-8f24-06774562ee44','905078062550','Sayın yetkili; KADER ŞAHİN adlı müşterinize 598719647 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 11.09.2025 15:59:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('4fad818b-2237-4532-b489-e5b04b2fc857','905304259202','ZEYNEP ALEYNA ÖZBEY adlı müşterinizin 478192530 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('4fb176bf-ce78-466a-95e1-2227febfe9c9','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS KOMODİN ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('4fb364cf-682e-4023-9ee2-809b7570631b','905301592882','TOLGA KESEN  adlı müşterinizin 910796066 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL),
('4fb6c94f-6e5a-40ac-9964-7baf72da61cf','905454259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478361746 nolu gönderinizin KONSOL AYNASI ürünü 1 parça halinde GARDEROBE adresinizden 29.04.2025 16:41:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e',NULL),
('4fbb80f2-1d2e-4e59-8c25-926f5b5d520e','4917635994280','Sayın KADİR ÖZCAN , 428159880 nolu gönderiniz 2667 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428159880\n\nDear KADİR ÖZCAN , your shipment with 428159880 was delivered to you with the delivery code 2667. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428159880\n\n\nBICARGO','1','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL),
('4fbea034-963c-40fe-97c5-110cf9f92c75','33769000460','Sayın EMİN EKRAMOĞLU, 478548963 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478548963\n\nDear EMİN EKRAMOĞLU, your shipment with 478548963 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478548963\n\nBICARGO','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('4fbf07b7-e3ae-41ea-8087-b39da7d384a9','905318974595','RIZA KUŞÇU adlı müşterinizin 725500857 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL),
('4fbf9e20-5266-416c-a617-c76235f904b9','905079047428','RAMİN HUSSEİNİ adlı müşterinizin 44920682 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('4fc24876-9290-4290-a238-4ca67a00c430','4917657786100','517447554 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6492 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517447554\n\nYour shipment with the number 517447554 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6492. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517447554\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('4fc81e11-229c-4a1c-833d-cf31c51fd02f','905350349029','Sayın yetkili; MERT ALİ YÖNTEM adlı müşterinize 203151723 nolu gönderinizin sandalye ürünü 3 parça halinde melya sandalya adresinizden 24.06.2025 14:39:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('4fd0862e-1f2e-429e-bb0c-a782d6030eb7','905331602195','İMANE LAARİ adlı müşterinizin 22130093 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('4fd39579-f96c-40f7-aac7-7085de6f3f33','33647208983','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('4fd4d580-2a44-4122-b3e0-1fbe960ab013','905078062550','GÜLNUR ENGİN adlı müşterinizin 598585736 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('4fd52e74-b599-4849-964e-b689ef842191','905331602195','FİRDEVS ORHAN adlı müşterinizin 221407228 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('4fd53e1d-3150-4fb1-b5e8-a22a820c1cde','4917663882376','644966461 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5130 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644966461\n\nYour shipment with the number 644966461 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5130. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644966461\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('4fd5f2d4-feed-4855-95d1-6fd41e73ecb3','3378192950','Sayın YASİN YAVAŞ, 910599740 nolu gönderiniz 8317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910599740\n\nDear YASİN YAVAŞ, your shipment with 910599740 was delivered to you with the delivery code 8317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910599740\n\n\nBICARGO','2','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('4fd99c47-3e95-4053-8925-95aa12ac133f','905335708965','ÖZLEM GÜLER adlı müşterinizin 248653667 nolu gönderisi 25 parça halinde yola çıkmıştır.','1',NULL,NULL),
('4fdd14e8-07ce-4207-a562-22a3f9912195','33770299406','Sayın MUHAMMED EL BOUCHATTAOUI, 976235260 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976235260\n\nDear MUHAMMED EL BOUCHATTAOUI, your shipment with 976235260 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976235260\n\nBICARGO','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('4fdd6cd7-1c49-4a72-8cea-9b82f950ddc6','905517075149','Sayın yetkili; OKAY DERİNKUYU adlı müşterinize 478984010 nolu gönderinizin köşe takımı ve 2 adet puf ürünü 5 parça halinde muka home adresinizden 26.06.2025 15:47:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('4fe468ce-571a-4f2e-8b18-71edfeca4a64','905313340045','Sayın yetkili; SANİYE BIÇAKÇI adlı müşterinize 43774917 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 03.09.2025 16:04:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('4ffaf253-2fc6-4599-be17-cebaea90f2c7','015908423104','Sayın DARAYYA MÖBEL, 248771792 nolu gönderiniz 2886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248771792\n\nDear DARAYYA MÖBEL, your shipment with 248771792 was delivered to you with the delivery code 2886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248771792\n\n\nBICARGO','2','9aaeab80-cfa4-4210-b789-4d7ae0454982',NULL),
('4ffc044f-9dbd-425a-a702-d8bb303af0a3','491778777755','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('4ffe7a47-83c6-43b4-b33f-23a28620f86f','905335511664','NECİP FAZIL ŞİMŞEK adlı müşterinizin 371261673 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('5000597d-3f43-4967-a480-8d607d2f556c','4917664019933','982464994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6833 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982464994\n\nYour shipment with the number 982464994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6833. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982464994\n\nBICARGO','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('500203c9-e333-4f2e-a817-e11e557fc3f8','4917635776995','Sayın SONGÜL AKKOC, 515171044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515171044\n\nDear SONGÜL AKKOC, your shipment with 515171044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515171044\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('500f1f57-3f29-4d85-8eda-ead60137df32','905461661672','SİBEL ÇEVİK adlı müşterinizin 644631223 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('50101948-8249-4918-b3e4-7c27e5c9e9a2','905350617509','Sayın yetkili; SOZDAR AKTAS adlı müşterinize 613592756 nolu gönderinizin Sandalye ürünü 4 parça halinde Ayka sandalye adresinizden 23.07.2025 13:12:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL),
('5012f7ce-d543-46fb-aad6-68712184689d','4917663287928','Sayın DÖNDÜ YÖRÜK, 644887691 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644887691\n\nDear DÖNDÜ YÖRÜK, your shipment with 644887691 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644887691\n\nBICARGO','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('5019562f-e7d1-4eb8-8a25-05d30ab349ea','905461661672','Sayın yetkili; MUHAMMED PERVANE adlı müşterinize 644784213 nolu gönderinizin TRAVERTEN  ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 29.05.2025 16:17:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3022afa3-ee21-4e5f-a3a7-5a20829729f8',NULL),
('501b2525-ce0a-4193-ad02-cb26c024cab7','4917676707917','Sayın MERYEM YILDIZ, 745957068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745957068\n\nDear MERYEM YILDIZ, your shipment with 745957068 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745957068\n\nBICARGO','1','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL),
('501eb612-92ab-4591-bdcb-4804a025963d','905461661672','ERDEL SİBEL adlı müşterinizin 644968450 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('5020c365-3424-4e9d-b3af-43e4c03c8d87','4917621155442','478623446 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8363 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478623446\n\nYour shipment with the number 478623446 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8363. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478623446\n\nBICARGO','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('502a08df-5620-4d2b-ae74-0eed4971edfd','1111111111111111','248543155 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6256 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248543155\n\nYour shipment with the number 248543155 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6256. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248543155\n\nBICARGO','2','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL),
('502c2b61-6230-4652-96b3-16de4abdc699','905325000478','ABDULKADER TARRAB adlı müşterinizin 412383870 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('502c475f-f0e4-440b-bf13-4e3a9e61a82f','491742907800','Sayın CAN ÇELİK, 478507488 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478507488\n\nDear CAN ÇELİK, your shipment with 478507488 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478507488\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('502ca15f-3b19-42e4-8ac4-f3d6f1227a7a','491728552763','Sayın YUSUF AVCI, 817915882 nolu gönderiniz 6768 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817915882\n\nDear YUSUF AVCI, your shipment with 817915882 was delivered to you with the delivery code 6768. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817915882\n\n\nBICARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('50303870-ecbf-43a8-8ba3-758403e4c84f','905059175469','Sayın yetkili; ŞÜKRÜ AKSOY adlı müşterinize 428390036 nolu gönderinizin koltuk 3+1+1 ürünü 3 parça halinde onca koltuk adresinizden 03.12.2024 15:07:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('5031c78e-d40f-49c6-b696-0010287193ea','905079358213','HİDAYET KURT adlı müşterinizin 745789797 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('5032debc-0693-4439-9a7e-e42d202d7bea','905336367828','LAMMARİ BAYA  adlı müşterinizin 98232043 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('503396fe-d3b4-453a-addd-e22a0d3c95be','491728496024','437591433 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6603 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437591433\n\nYour shipment with the number 437591433 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6603. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437591433\n\nBICARGO','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('5036a757-f04f-44d5-a0a0-be2874210b36','905301592882','RAMAZAN ALTINKAYNAK adlı müşterinizin 910163146 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('5036be4d-e09b-4d7e-b7f3-7937f55416f3','436601287333','Sayın MUSTAFA ŞİMŞEK, 338730647 nolu gönderiniz 1567 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338730647\n\nDear MUSTAFA ŞİMŞEK, your shipment with 338730647 was delivered to you with the delivery code 1567. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338730647\n\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('5037d51a-4e27-4e50-a9b7-6975005a00d9','905331602195','MERYEM BERK  adlı müşterinizin 221583384 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('50389c84-71ca-4cc2-98e2-28b9f8ba8835','4368181402521','371699257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6970 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371699257\n\nYour shipment with the number 371699257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6970. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371699257\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('503cf10a-8575-41f3-b0be-462c7958481a','4917657764675','735929791 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3543 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735929791\n\nYour shipment with the number 735929791 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3543. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735929791\n\nBICARGO','1','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL),
('503e64e6-a98b-4191-af4e-4a9401c1bd7b','4369910940808','Sayın GÜLÇİN İSMAİLÇEBİOĞLU, 31925609 nolu gönderiniz 6334 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31925609\n\nDear GÜLÇİN İSMAİLÇEBİOĞLU, your shipment with 31925609 was delivered to you with the delivery code 6334. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31925609\n\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('504165a5-1664-412e-9eed-aff29c3c3600','905454259202','VOLKAN ÖZKAN adlı müşterinizin 478702476 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL),
('5044d16b-da30-460b-8358-227161d1d659','491721843886','98283616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9706 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98283616\n\nYour shipment with the number 98283616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9706. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98283616\n\nBICARGO','1','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL),
('5045b0c1-5a25-4513-b00a-c90df292f8cc','905461661672','RUKİYE TURAN adlı müşterinizin 644301613 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('5047facc-651d-4e2b-ab9c-ca18e0960627','905454259202','Sayın yetkili; SÜLEYMAN BOZAN adlı müşterinize 478406590 nolu gönderinizin baza altı ve boya ssh ürünü 1 parça halinde çelikbey inegöl depo adresinizden 20.02.2025 11:55:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('504b67c5-8165-42ee-a4ff-f3f8a448444b','4915145859337','Sayın FERHAT , 750728735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750728735\n\nDear FERHAT , your shipment with 750728735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750728735\n\nBICARGO','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('504e0b0b-5026-4adc-a6fb-1317ac12119d','905075277637','GÜLDEN KARADAĞ adlı müşterinizin 745580296 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('504e9a93-1d6f-4e64-bb25-2e897e4d0da8','905313340045','Sayın yetkili; MERVE KARADAVUT adlı müşterinize 437233015 nolu gönderinizin sandalye ürünü 8 parça halinde mert sandalye adresinizden 24.04.2025 12:01:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('50503d7e-e2ae-44dc-ad04-089e147d7846','491772575787','ŞÖFÖR İKETİŞİM\n					+905301824880','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('5058a397-2082-48e8-8d5b-151188f46562','905075277637','Sayın yetkili; FATMA ALTAY adlı müşterinize 745871666 nolu gönderinizin KING PLATİN BAZA SETİ 160X200 ürünü 6 parça halinde Fatura adresinizden 20.05.2025 14:24:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('505d9ad9-9e1d-4a52-9126-ba2daf3df19a','3254354253235432','Sayın RAHİM MALOĞLU, 412731497 nolu gönderiniz 10673 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412731497\n\nDear RAHİM MALOĞLU, your shipment with 412731497 was delivered to you with the delivery code 10673. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412731497\n\n\nBICARGO','2','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('5062799e-c783-4e4f-934f-6d362d4eaff5','004917631517696','Sayın ANGELİNA KHALCHYTSKAYA, 73574376 nolu gönderiniz 5220 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73574376\n\nDear ANGELİNA KHALCHYTSKAYA, your shipment with 73574376 was delivered to you with the delivery code 5220. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73574376\n\n\nBICARGO','2','5b516169-2e1d-421d-a411-a20956666225',NULL),
('50627db0-ac3e-419b-bfd7-116e0f105181','905461661672','Sayın yetkili; MELEK IŞIK adlı müşterinize 644739716 nolu gönderinizin MASA ÜST TABLA ürünü 1 parça halinde Masami Mobilya adresinizden 28.04.2025 17:27:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('5066f219-f5e2-4639-81e4-e6aa30859ad4','905075277637','Sayın yetkili; SEMRA HAKAN KABİR adlı müşterinize 745409977 nolu gönderinizin İCON CEVİZ YATAK ODASI ürünü 21 parça halinde ROIS adresinizden 05.05.2025 15:01:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('507440ef-2feb-4c3d-9572-f8cbeb728406','905325165070','AKİF AĞCA adlı müşterinizin 734626870 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('50751ea4-f6f5-4daf-93a0-1b626f47b6c9','905394878216','NAZAN DENİZ adlı müşterinizin 517616028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL),
('507bcf36-7c06-46a3-946d-58040ea34a27','905075277637','ÖZNUR KOŞAK adlı müşterinizin 745283034 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL),
('507e49c2-9bdc-49e8-93ad-f0c45cdaa305','33679512042','Sayın GÜLPERİ ÜNVER , 478415751 nolu gönderiniz 2154 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478415751\n\nDear GÜLPERİ ÜNVER , your shipment with 478415751 was delivered to you with the delivery code 2154. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478415751\n\n\nBICARGO','1','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('507e9aeb-995f-4943-b006-4cae24587164','4915733741918','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('5083f7ac-d8d8-4d7a-88c6-7faa0b11dd5b','436603730710','Sayın NURİYE ŞAHİN, 221447673 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221447673\n\nDear NURİYE ŞAHİN, your shipment with 221447673 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221447673\n\nBICARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('508bf74e-542f-481e-a552-630a804946f1','4917682030293','Sayın ARTON BERİSHA , 982835475 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982835475\n\nDear ARTON BERİSHA , your shipment with 982835475 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982835475\n\nBICARGO','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('5096d21d-3c0f-4653-883e-378273b14e8e','905079358213','OKAN EKİNCİ adlı müşterinizin 745873539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('50981bd9-3d3d-417f-a51a-1308032f2d66','33611031313','644975430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7221 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644975430\n\nYour shipment with the number 644975430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7221. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644975430\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('5099ee1b-fd2a-426b-9f9d-9e4500ef80a2','905079047428','RAHİMİ adlı müşterinizin 449666503 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('5099f601-5fe0-4988-b1d7-9bfc3f19a931','905461661672','Sayın yetkili; OLSZWESKİ MATZ SSH adlı müşterinize 644706970 nolu gönderinizin Sehpa ayağı ürünü 1 parça halinde Masami Mobilya adresinizden 16.09.2025 16:49:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','211e8ae7-95cf-4dc5-9e14-70ad976a2f56',NULL),
('509ae9c0-be07-43f8-b27b-42f4998c6f2c','905079358213','EMİR ASLANOĞLU adlı müşterinizin 745747559 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL),
('50a22195-4942-4230-97e9-e155404c37bc','905336367828','MEHMET SÜZEN adlı müşterinizin 982562609 nolu gönderisi 5 parça halinde yola çıkmıştır.','1',NULL,NULL),
('50a27075-eda8-455c-9be8-b3be6788a0fa','4917672163704','Sayın ÖMER KARAMAN , 428561353 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428561353\n\nDear ÖMER KARAMAN , your shipment with 428561353 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428561353\n\nBICARGO','1','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL),
('50a41ff2-1904-4601-8fcd-c0324629a061','905454259202','KISMET URDOĞAN adlı müşterinizin 478560084 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('50a511dd-aed6-4d5d-af45-83b61c6c6929','436603406293','RECEP DUYGULU adlı müşterinizin 675139037 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('50abcd0c-f496-4be4-816a-ff102ba2df10','905461661672','ALİŞAN CERCİ(K) adlı müşterinizin 644847294 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('50aeebca-93d9-49c3-8ada-e3314e2b0c5e','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE BERJER  ürünü 1 parça halinde RİXXE  adresinizden 08.09.2025 12:15:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('50af890c-1d5c-44f7-9104-75ff2146dc38','491604615612','Sayın AHMET AĞIRMAN, 371413703 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371413703\n\nDear AHMET AĞIRMAN, your shipment with 371413703 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371413703\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('50b39080-4f8d-40e1-94bc-e52e5c06945e','491771661158','Sayın ZEYNEP ŞURA MUTLU , 910990360 nolu gönderiniz 4414 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910990360\n\nDear ZEYNEP ŞURA MUTLU , your shipment with 910990360 was delivered to you with the delivery code 4414. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910990360\n\n\nBICARGO','1','fe6adfb9-14c6-4193-8c47-6fbe8f734d32',NULL),
('50b95601-89ae-4296-8c94-1eb18a6a2d05','41788884872','Sayın YILMAZ KARA , 31922563 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31922563\n\nDear YILMAZ KARA , your shipment with 31922563 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31922563\n\nBICARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('50be2cba-2018-4fc2-a217-6ae8ba37129b','49015231361108','Sayın MARA EDEN, 982240405 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982240405\n\nDear MARA EDEN, your shipment with 982240405 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982240405\n\nBICARGO','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('50c892d9-446d-4964-99bf-41c38c5faeff','004917663208908','248573438 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7330 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248573438\n\nYour shipment with the number 248573438 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7330. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248573438\n\nBICARGO','2','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL),
('50cb8de6-e1cf-4aa3-bd19-ab08daac0521','905335511664','Sayın yetkili; MEHMET SARI adlı müşterinize 371820872 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 16.07.2025 10:12:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('50cd8013-6286-4e02-a70a-dc0f055eff3f','905442774505','ERGÜN AKSOY adlı müşterinizin 657147391 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('50ce53f4-37a3-4642-9eac-b45ae6cde094','32470798418','22137977 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8603 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22137977\n\nYour shipment with the number 22137977 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8603. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/22137977\n\nBICARGO','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('50cea9a7-9f8b-4054-a80f-fee7b0771337','905301592882','ÖZKAN ÖZKOŞAR		 adlı müşterinizin 910482480 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('50cf7d99-1c2f-4dec-b538-8d33d827e906','4915788014296','Sayın NADİR KURUKOL, 428819984 nolu gönderiniz 1064 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428819984\n\nDear NADİR KURUKOL, your shipment with 428819984 was delivered to you with the delivery code 1064. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428819984\n\n\nBICARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('50d0be7d-fd0d-40cd-8795-d1fe68e4a0a7','4917681000439','Sayın CEMAL İBRAHİMBAŞ, 437222135 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437222135\n\nDear CEMAL İBRAHİMBAŞ, your shipment with 437222135 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437222135\n\nBICARGO','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('50d1cb05-9d9b-43eb-ae6d-1d8207cb5570','49176849361733','100972804 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7807 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/100972804\n\nYour shipment with the number 100972804 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7807. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/100972804\n\nBICARGO','2','3810b138-eae3-49b3-94fb-6ece3e64ea2e',NULL),
('50d3cfb3-6ff0-481d-94bc-d757d788cb81','4917623882618','Sayın MURAT ERKUL, 745639167 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745639167\n\nDear MURAT ERKUL, your shipment with 745639167 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745639167\n\nBICARGO','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('50da2bf6-4cdd-4fcc-81b2-7301de8ab284','436606573775','Sayın BÜŞRA POYRAZ, 371508043 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371508043\n\nDear BÜŞRA POYRAZ, your shipment with 371508043 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371508043\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('50dfb763-f113-45e3-91f4-b10d62d6f096','33682615843','Sayın MUSTAFA YILMAZ SSH , 745338988 nolu gönderiniz 3279 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745338988\n\nDear MUSTAFA YILMAZ SSH , your shipment with 745338988 was delivered to you with the delivery code 3279. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745338988\n\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('50e6805c-1a06-421a-b0f1-0c46d1c2270f','4917662337872','Sayın NECİP FAZIL ŞİMŞEK, 371261673 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371261673\n\nDear NECİP FAZIL ŞİMŞEK, your shipment with 371261673 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371261673\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('50ec123e-9662-4c1f-aef8-abac6c7c4452','491783209660','Sayın BRÜHL CAMİSİ, 41283002 nolu gönderiniz 6647 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41283002\n\nDear BRÜHL CAMİSİ, your shipment with 41283002 was delivered to you with the delivery code 6647. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41283002\n\n\nBICARGO','1','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL),
('50ec7347-b803-4f5a-88bb-10d78814a82a','4915255838893','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('50ec758d-413e-48f8-a862-fcb6d68acb5f','33627391444','Sayın FİRDEVS ORHAN, 221407228 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221407228\n\nDear FİRDEVS ORHAN, your shipment with 221407228 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221407228\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('50ee4764-8e6d-4ab0-bdd5-09f1bff66213','905331602195','NECMİYE AMET adlı müşterinizin 221801165 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('50f18d3b-b6c7-459f-bc38-89ff6af8a8e2','33788061133','Sayın BOUAZZA SANNA , 221264394 nolu gönderiniz 9197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221264394\n\nDear BOUAZZA SANNA , your shipment with 221264394 was delivered to you with the delivery code 9197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221264394\n\n\nBICARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('50f65a4b-4339-4759-9b57-c71db65f0ce0','32488863952','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('50fb19ff-55c4-4cc0-bae4-048023ce6469','4917622304263','Sayın SİBEL SAYDAM, 08159662 nolu gönderiniz 1944 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/08159662\n\nDear SİBEL SAYDAM, your shipment with 08159662 was delivered to you with the delivery code 1944. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/08159662\n\n\nBICARGO','1','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL),
('50fd2a3b-035c-43c4-a59e-90bae03992d8','491603349147','319918133 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8976 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319918133\n\nYour shipment with the number 319918133 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8976. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319918133\n\nBICARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('5100a0b3-4289-4d6c-9b5e-d23cb4672cc3','905304259202','Sayın yetkili; SÜLEYMAN KAYHAN adlı müşterinize 478763903 nolu gönderinizin orta sehpa  ürünü 1 parça halinde family adresinizden 18.02.2025 19:28:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('510bf263-dceb-41c2-b978-91649a037843','491744713856','ŞÖFÖR İKETİŞİM\n					+905301824880','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('510f9f6e-0cca-4f4e-8952-324183a899d2','905421855834','Sayın yetkili; NURTEN YILMAZ adlı müşterinize 338411614 nolu gönderinizin Libra Şifonyer ürünü 5 parça halinde Zümer Mobilya adresinizden 02.09.2025 11:50:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('511a4aea-4c33-47df-9e06-de9ddf4ae1f8','905517075149','Sayın yetkili; YUSUF BARAN adlı müşterinize 478450171 nolu gönderinizin MASA-6 SANDALYE-KONSOL-TV- ORTA SEHPA ürünü 14 parça halinde medusa home adresinizden 26.09.2025 16:47:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('511bf140-5878-4b0e-a1e3-07a7ac0d46e4','905461661672','MERYEM KAYA adlı müşterinizin 644178445 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('511fc4c3-54d7-44eb-a80a-5068a00791af','31634277467','Sayın AYLİN GÜNGÖR, 663458477 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663458477\n\nDear AYLİN GÜNGÖR, your shipment with 663458477 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/663458477\n\nBICARGO','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('51211649-e579-4f0b-a007-520b85117d4e','3365262758','Sayın ALİ ÇETİN , 982817887 nolu gönderiniz 4575 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982817887\n\nDear ALİ ÇETİN , your shipment with 982817887 was delivered to you with the delivery code 4575. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982817887\n\n\nBICARGO','2','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('51262ab6-909b-480c-8477-1b1cf7d6d9c8','33785173918','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('512acad9-1b12-42fe-ba3f-65c436cecca6','33640388556','745946644 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5551 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745946644\n\nYour shipment with the number 745946644 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5551. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745946644\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('512e4f41-e4a9-4601-ba8a-883b5a4bbe25','905540182920','Sayın HASAN BEY, 448805304 nolu gönderiniz 2071 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/448805304\n\nDear HASAN BEY, your shipment with 448805304 was delivered to you with the delivery code 2071. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/448805304\n\n\nBICARGO','1','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL),
('513216f1-cb7f-4f59-b587-b1894844f33b','905331602195','GURAY SEYFELİ adlı müşterinizin 221496522 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('513d5b2d-8c59-4634-80be-49b7eb7986bc','436506511162','Sayın MUHAMMED ALİ ASLAN, 437982892 nolu gönderiniz 6818 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437982892\n\nDear MUHAMMED ALİ ASLAN, your shipment with 437982892 was delivered to you with the delivery code 6818. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437982892\n\n\nBICARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('513def40-57e8-4eef-845b-7cf2a7720598','4917655112033','Sayın SSH ALPEREN DÜZENLİ , 745863981 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745863981\n\nDear SSH ALPEREN DÜZENLİ , your shipment with 745863981 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745863981\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('51427263-fb8b-4866-8fa0-a0e8ffe40a18','905325000478','MURAT  adlı müşterinizin 412716766 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL),
('5142894a-44b2-47d7-89be-83edab1f2f32','905332942204','ELİF GÖKTAN adlı müşterinizin 505770346 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('5144af22-fed5-4659-8103-9c14dc7b0979','33621632990','Sayın EMRE AKŞEHİRLİ, 478188105 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478188105\n\nDear EMRE AKŞEHİRLİ, your shipment with 478188105 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478188105\n\nBICARGO','2','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL),
('515566dc-598b-4d93-98da-da317c665476','905079047428','Sayın yetkili; Ayşegül telli adlı müşterinize 449962472 nolu gönderinizin Köşe takımı 3 paket sandalye 1 orta sehpa  ürünü 3 parça halinde Fatura adresinizden 01.11.2024 10:43:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('515790ed-189b-4a72-a44d-c3a7e71c9baa','4917621986322','Sayın HASAN SARMAN, 982364429 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982364429\n\nDear HASAN SARMAN, your shipment with 982364429 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982364429\n\nBICARGO','2','baae34a4-033d-4893-b696-b36e57c318f7',NULL),
('515c1678-1b6c-4e10-9d7f-36cfa7c1123a','905304259202','MELİSA DEMİRTAŞ adlı müşterinizin 478504480 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL),
('516abb50-2c6a-4131-8f80-d6cf2ad4c443','491635169159','Sayın ZEKİYE TOPATAN, 644877146 nolu gönderiniz 3681 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644877146\n\nDear ZEKİYE TOPATAN, your shipment with 644877146 was delivered to you with the delivery code 3681. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644877146\n\n\nBICARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('51710100-1815-46c3-af79-bdfa0afab10d','4915120786621','478180584 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478180584\n\nYour shipment with the number 478180584 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478180584\n\nBICARGO','1','5d21188b-b8cb-4158-a0f7-00dfe6b2d1a1',NULL),
('5171bd63-488a-46eb-8f92-e904eef732fd','4917685637648','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('51777807-cdbf-4439-af36-e2cd3de9a5af','33783160277','Sayın MUSTAFA YILMAZ SSH , 745338988 nolu gönderiniz 3279 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745338988\n\nDear MUSTAFA YILMAZ SSH , your shipment with 745338988 was delivered to you with the delivery code 3279. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745338988\n\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('5178c874-dd61-4016-95b1-7d701480f383','32477787877','Sayın ERTUĞRUL, 528433255 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/528433255\n\nDear ERTUĞRUL, your shipment with 528433255 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/528433255\n\nBICARGO','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('517b5493-bf46-4433-a327-2c7cc1d292ac','905301592882','MUSA ÖZER		 adlı müşterinizin 910586114 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('517b846f-56f3-4313-8a5b-5f324824de2c','905350617509','SWEETA QALANAWİ  adlı müşterinizin 613393068 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('517d9297-2959-46b0-af7d-3df912af4312','905331602195','Sayın yetkili; BÜŞRA NUR ÇELEBİ adlı müşterinize 221278187 nolu gönderinizin Balat sandalye siyah  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:41:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('517fa214-3c3f-4126-956a-e5915d0b93f9','905454259202','ASLAN GÜLŞEN adlı müşterinizin 478647079 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b3402260-d451-4d00-8ed8-35b3af56080f',NULL),
('518260a7-34b0-47da-b6ba-d3b9e8faef09','905454259202','GÜL KAYAS ARSLANMUGÜL adlı müşterinizin 478188178 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('518469d7-b0d4-426e-b474-7db2d9f11c3d','905075277637','MUHAMMET TÜRKMEN adlı müşterinizin 745952430 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('5184dfe7-804e-4e43-8acf-b5002ca110a6','905075277637','DELİL ÖZTÜRK SSH adlı müşterinizin 745786401 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('5186144a-bcd5-4279-956b-931c9f2b5f60','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PRAGMA L DOLAP + ADA + ŞİFONYER + PUF ürünü 16 parça halinde FAMILY adresinizden 21.08.2025 11:42:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('5189a949-ce35-4eae-b3bd-166205d8a700','905431026110','Sayın yetkili; AZAT ALKAN adlı müşterinize 35119636 nolu gönderinizin SANDALYE ürünü 3 parça halinde HAMZA ÖZKAN SANDALYE adresinizden 18.08.2025 15:31:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('518f4549-9b0b-4fc9-a794-3fd2a3ac1a9d','31641672960','657301470 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657301470\n\nYour shipment with the number 657301470 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657301470\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('51921849-213b-425e-a004-0e6075409a8f','491723655773','745481313 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9278 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745481313\n\nYour shipment with the number 745481313 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9278. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745481313\n\nBICARGO','1',NULL,NULL),
('51928746-49dc-4391-aa37-83346b579ebb','33760923065','Sayın MURAT YILMAZ, 223440405 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223440405\n\nDear MURAT YILMAZ, your shipment with 223440405 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223440405\n\nBICARGO','1','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL),
('519c0881-fffb-4247-8de9-c5f9e40e6782','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN GİZE KOMODİN ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('519d2e2a-9b60-4aa2-b4f4-a44dd05061b9','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('519dca0b-06ac-4b31-86a5-e6fd872222d4','905331602195','MİYASE SARIKAYA adlı müşterinizin 221966080 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('51a04b49-f648-45f7-8cda-2e7f25b2ac28','41782148595','Sayın ASLIHAN KELES, 478112159 nolu gönderiniz 1760 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478112159\n\nDear ASLIHAN KELES, your shipment with 478112159 was delivered to you with the delivery code 1760. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478112159\n\n\nBICARGO','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('51a43f6e-94a7-4402-8d91-0ddee9e63577','491786615616','Sayın YILDIRIM  ASLAN , 614766744 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614766744\n\nDear YILDIRIM  ASLAN , your shipment with 614766744 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614766744\n\nBICARGO','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('51a5f408-b122-4f34-9e2b-5ed75b105f4c','41764537057','Sayın KISMET URDOĞAN, 478449275 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478449275\n\nDear KISMET URDOĞAN, your shipment with 478449275 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478449275\n\nBICARGO','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('51a640af-c3cc-4110-a8ca-283d3435f27d','33667410242','221204525 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221204525\n\nYour shipment with the number 221204525 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221204525\n\nBICARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('51a75851-8cba-496f-bc05-dbdbfdab1b99','4917663870920','Sayın AZAT ALKAN, 35119636 nolu gönderiniz 7351 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/35119636\n\nDear AZAT ALKAN, your shipment with 35119636 was delivered to you with the delivery code 7351. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/35119636\n\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('51b3fb16-a01b-4223-a1a5-a48ac5cbf7ea','905335511664','ÖZLEM AKAY adlı müşterinizin 371440688 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('51b450b9-8c0b-4f5b-9292-57cd23bc618d','905539740010','ESRA İSMAİL adlı müşterinizin 011940661 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL),
('51b8b191-8096-4e9d-88ca-ef97753882e1','905075277637','YASEMİN YILDIZ adlı müşterinizin 745346486 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','d4eec699-15e8-4023-b611-78ceb15be51f',NULL),
('51c3ca55-dbde-488c-a75a-7b4ab103bb7e','905079358213','YUSUF SARIKAN adlı müşterinizin 745767667 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('51c641da-aece-48ed-9963-233aaf538b69','491725951880','Sayın HÜLYA ŞENEL , 011195834 nolu gönderiniz 8949 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011195834\n\nDear HÜLYA ŞENEL , your shipment with 011195834 was delivered to you with the delivery code 8949. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011195834\n\n\nBICARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('51ccbc44-ddc1-423b-9ad5-c22a51a65478','491732013160','371749484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2143 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371749484\n\nYour shipment with the number 371749484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2143. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371749484\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('51d061c4-9ffc-4a2c-81b5-c3a7ee284d63','33695724672','Sayın ZAINOUNE LOUBNA, 613809111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613809111\n\nDear ZAINOUNE LOUBNA, your shipment with 613809111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613809111\n\nBICARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('51d32f8d-e58f-452b-a630-b247889b2c5c','33698869736','515747086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10114 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515747086\n\nYour shipment with the number 515747086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10114. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515747086\n\nBICARGO','1','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('51d3d075-91af-4f86-a676-ee070c3d7353','017631598105','Sayın MERT GÖKMEN, 644796086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796086\n\nDear MERT GÖKMEN, your shipment with 644796086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644796086\n\nBICARGO','2','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('51d5f2e8-c810-4408-81da-b643bb3b09a7','905331602195','SAİDA ELAZZOUZİ  adlı müşterinizin 221282484 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('51d844a1-80bb-4606-aa10-69111ac56705','31686432673','Sayın SERKAN ÖZBAY, 478800752 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478800752\n\nDear SERKAN ÖZBAY, your shipment with 478800752 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478800752\n\nBICARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('51dc155f-b8fb-44b6-9113-5e946cf97974','905078062550','MAHMUD BİRÜKOF adlı müşterinizin 598754271 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('51ddf301-9ed3-4e49-b381-770d8206d78f','4915731326705','Sayın DAVUT BİNGÖL, 598530881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598530881\n\nDear DAVUT BİNGÖL, your shipment with 598530881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598530881\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('51e12d47-937d-4040-b818-8f4fc5bfcc89','33682615843','Sayın MUSTAFA YILMAZ SSH , 745338988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745338988\n\nDear MUSTAFA YILMAZ SSH , your shipment with 745338988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745338988\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('51e18118-5f3b-4850-8906-e982244a1f1e','4915254879175','371160737 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371160737\n\nYour shipment with the number 371160737 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371160737\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('51e35a25-8e01-4935-a927-bb70da59c791','33783160277','DRİVER\n					ADNAN\n+905354622027','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('51e89d9f-4bcd-489c-8a2f-883592fcbc22','905078062550','Sayın yetkili; MELİKE ÇALIŞKAN adlı müşterinize 598172413 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde SM TASARIM adresinizden 29.08.2025 16:53:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('51e8dd35-12c2-4ffd-90bd-5f093242702d','330667702698','Sayın BYTYCİ REZARDE, 982773684 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982773684\n\nDear BYTYCİ REZARDE, your shipment with 982773684 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982773684\n\nBICARGO','1','98c40a46-22d8-4470-84a1-302a19073f0d',NULL),
('51ed9082-a925-424c-bd99-9b9552f45155','4915510083523','745191568 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745191568\n\nYour shipment with the number 745191568 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745191568\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('51f2f87b-55f7-4193-887f-ce7c471e32fa','4917684018597','745398311 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10154 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745398311\n\nYour shipment with the number 745398311 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10154. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745398311\n\nBICARGO','1','c8832652-771d-469e-b661-4fd13d628789',NULL),
('51f4f0bc-cd61-4dc6-9ce8-527a3cb58307','905454259202','Sayın yetkili; AHMET ÖZDEMİR adlı müşterinize 478622556 nolu gönderinizin konsol ve köşe 4.5m3 ürünü 9 parça halinde çelikbey inegöl depo adresinizden 23.11.2024 17:07:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('51f96a4f-9bbc-46f9-a313-9fd09669a69b','33786032286','478261585 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478261585\n\nYour shipment with the number 478261585 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478261585\n\nBICARGO','1','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL),
('51ff4acc-89c3-4fbe-b26d-cc16ebaceaab','905069116877','YUSUF AVCI adlı müşterinizin 817915882 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('5200c46f-31d8-4856-a720-be6214cf849c','4915251454520','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('5202b4a1-1faf-4658-b2e7-df82bf078150','905336367828','ROBERT HASİMOVOC adlı müşterinizin 982189682 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL),
('52065786-e28d-4480-8741-86bf1ee9346e','905313340045','Sayın yetkili; MÜCAHİD AL SSH adlı müşterinize 437379015 nolu gönderinizin SSH BOYA ürünü 1 parça halinde bicargo depo adresinizden 25.09.2025 11:04:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('52076b6b-c884-40b9-8759-7d32869c9ae5','436763676926','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('520b8bc2-8fbd-4006-b995-ecea71816bfb','491725700454','Sayın ÇİÇEK MÖBEL, 046517356 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/046517356\n\nDear ÇİÇEK MÖBEL, your shipment with 046517356 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/046517356\n\nBICARGO','1','b21c6f76-2185-4cbb-ae48-70494372e886',NULL),
('521156ff-1ffe-44fd-91db-fa2122b15a32','33785173918','478906000 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478906000\n\nYour shipment with the number 478906000 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478906000\n\nBICARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('521187cd-536a-4c96-9a70-2cb752532697','905335708965','TAŞLAR adlı müşterinizin 248475044 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL),
('52125b32-85a1-4737-bba0-5de65d237b98','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin KANEPE ürünü 2 parça halinde LENTE HOME adresinizden 28.08.2025 16:57:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('5212f7f8-ca70-463c-b676-88580fce41d1','410782698878','Sayın jusuf mehmedi, 982844191 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982844191\n\nDear jusuf mehmedi, your shipment with 982844191 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982844191\n\nBICARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('5215b413-c43a-4134-9d13-9c5865b2bcbb','33618459202','478589258 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8387 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478589258\n\nYour shipment with the number 478589258 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8387. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478589258\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('5219b794-66d1-4c98-a8e0-6b52b7f81691','4915774029504','61480625 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7336 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/61480625\n\nYour shipment with the number 61480625 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7336. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/61480625\n\nBICARGO','1','f67e7508-1afa-4901-b396-faae504c1726',NULL),
('521a0afb-7a3a-43fc-b0a1-51409c6714c7','9054439559150','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('521b1960-1f52-4ed5-8b78-8bf650ecc572','491788608416','Sayın MERAL GÖGDAS , 221965496 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221965496\n\nDear MERAL GÖGDAS , your shipment with 221965496 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221965496\n\nBICARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('521b1f0e-956b-425f-8975-8b85c7d88893','41797342584','DRİVER\n					ADNAN\n+905354622027','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('521b3d99-fd94-42d3-8391-8388c7ff6c26','905075277637','Sayın yetkili; OKAN CORAMAN adlı müşterinize 745980941 nolu gönderinizin PETEK KÖŞE KOLTUK  ürünü 4 parça halinde ELİTİS adresinizden 29.09.2025 12:40:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('521be7a3-e272-42fc-859a-da48b4470578','33751255527','Sayın ZEESHAN AHMAD FAROOQ, 486874151 nolu gönderiniz 5730 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486874151\n\nDear ZEESHAN AHMAD FAROOQ, your shipment with 486874151 was delivered to you with the delivery code 5730. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486874151\n\n\nBICARGO','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('521f421a-b4bf-4656-826a-ad91bc679675','436609507300','745464679 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3784 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745464679\n\nYour shipment with the number 745464679 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3784. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745464679\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('52202a7f-244b-4503-96c1-78dc901609f6','905079358213','AYSEL ASLAN adlı müşterinizin 745606440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL),
('52235bfc-668d-422d-ac5a-f144a59fc5d0','4917687857999','Sayın MELİSA , 817630523 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817630523\n\nDear MELİSA , your shipment with 817630523 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817630523\n\nBICARGO','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('522385b5-8160-4191-bd78-1e12c07759c9','491726827478','Sayın SEVGİ BOLAT, 598250504 nolu gönderiniz 10836 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598250504\n\nDear SEVGİ BOLAT, your shipment with 598250504 was delivered to you with the delivery code 10836. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598250504\n\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('5223f70a-eb3e-437a-9628-c1a146f701e6','4915730878935','Sayın SUAT TUGAL, 644443664 nolu gönderiniz 5224 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644443664\n\nDear SUAT TUGAL, your shipment with 644443664 was delivered to you with the delivery code 5224. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644443664\n\n\nBICARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('52245926-57ca-4415-b16a-552e6fd0d645','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin orta sehpa ürünü 2 parça halinde masami adresinizden 08.08.2025 14:47:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('52273514-c61e-4b28-aa15-6f65d91c6e0b','33782338105','428761245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3418 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428761245\n\nYour shipment with the number 428761245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3418. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428761245\n\nBICARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('52289a09-360c-43cb-8e39-90d8460b503f','905461661672','SEDA TULGAR adlı müşterinizin 644152675 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('52308a35-efc5-4229-b33c-70cd15fe2e04','491739366502','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('5231cc89-b8d2-4373-ae8d-029cd880fa0b','905325000478','MOONBEAM HOME adlı müşterinizin 412284149 nolu gönderisi 29 parça halinde yola çıkmıştır.','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('52364bac-845b-4ac1-9bba-7c8211a2e510','436602341063','Sayın HANİFE TURAN, 437355925 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437355925\n\nDear HANİFE TURAN, your shipment with 437355925 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437355925\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('5239f6de-2249-4d9d-93e0-c3ebbd13e95a','905454259202','ZİLAN BİLİN adlı müşterinizin 478250269 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('523d1e98-b085-4262-b904-4d01e1ac7904','4915785563559','371186967 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371186967\n\nYour shipment with the number 371186967 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371186967\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('523f48c6-3914-456e-8cbf-141ffb60932e','4917663287928','Sayın DÖNDÜ YÖRÜK SSH, 644458216 nolu gönderiniz 8558 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644458216\n\nDear DÖNDÜ YÖRÜK SSH, your shipment with 644458216 was delivered to you with the delivery code 8558. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644458216\n\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('523fe64d-59bd-4d60-8f01-792a1f4e5598','905423036885','Sayın ALMİRA, 920610594 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/920610594\n\nDear ALMİRA, your shipment with 920610594 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/920610594\n\nBICARGO','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('5243054b-6c85-4921-b9c0-837485602750','905368336516','FOUAD BJA adlı müşterinizin 515103460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('52479fa3-bf35-4364-9936-2faa40d88a26','905075277637','Sayın yetkili; NUR YILDIRIM adlı müşterinize 745278745 nolu gönderinizin PİER KARYOLA + 2 KOMODİN  ürünü 11 parça halinde MOBİLİSTAN adresinizden 22.09.2025 18:11:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('5247b677-ec53-420a-96f5-a72a903ba4b7','436607858584','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('52481e98-f6a2-4fe4-a440-9088a6e181c5','905510396989','AYHAN KOCAKAYA adlı müşterinizin 31979626 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('524a5300-d547-4f3a-a556-490ac9c4595c','905078062550','MELİKE ÇALIŞKAN adlı müşterinizin 598172413 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('52512d4e-e107-468d-abfa-a73ea2d00307','905332942204','MONİCA TODERAŞ adlı müşterinizin 505597041 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('5256012e-7cbf-4caa-853d-171557a990d0','905335511664','Sayın yetkili; SHİMA MAKEH VANDİ adlı müşterinize 371865484 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.09.2025 17:32:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('525a4828-1489-48a0-8fd2-b35a7465f92e','4917620954584','Sayın BESTENUR ÖZKAYA SSH, 896998229 nolu gönderiniz 3422 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896998229\n\nDear BESTENUR ÖZKAYA SSH, your shipment with 896998229 was delivered to you with the delivery code 3422. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896998229\n\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('525bf56d-8776-4982-b453-d3c0c4bce945','31641319611','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('525ca16f-e0da-4b4a-aa54-565fcdb90591','4917657600955','Sayın MECİT AVCI, 478957028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478957028\n\nDear MECİT AVCI, your shipment with 478957028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478957028\n\nBICARGO','2','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('525d321e-7dff-4959-8c46-2c0e5603fbab','905331602195','Sayın yetkili; NURGÜL ÖZER adlı müşterinize 221191139 nolu gönderinizin Tv ünitesi  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 08.09.2025 11:49:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('525e59a6-572b-4315-a462-286fbe73a4ab','4915774445546','910728512 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8577 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910728512\n\nYour shipment with the number 910728512 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8577. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910728512\n\nBICARGO','1','4620449d-5bd3-49d6-816f-684d639a3e44',NULL),
('525fe6e1-7ba3-4db1-9ab0-3fd87c99aa86','905078062550','Sayın yetkili; FADİME ERİMEZ adlı müşterinize 598425779 nolu gönderinizin MASA ürünü 2 parça halinde RİO FATİH adresinizden 19.09.2025 10:34:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('52627c30-1e39-4100-9df1-6a8c654ed2d8','905356395415','MURAT AKTAŞ adlı müşterinizin 163961995 nolu gönderisi 139 parça halinde yola çıkmıştır.','1','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL),
('52658d2e-f5cf-4990-8cd2-d4935462ec7a','4915787850824','Sayın GAMZE ÇOKENGİN, 140681782 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/140681782\n\nDear GAMZE ÇOKENGİN, your shipment with 140681782 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/140681782\n\nBICARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('5265b4f9-18b7-4902-8faf-de5e4d009cc3','31619691823','478949141 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2693 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478949141\n\nYour shipment with the number 478949141 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2693. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478949141\n\nBICARGO','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('5266e7f2-bead-4030-bf7f-8deb69918442','436601666895','DRİVER NUMBER\n					905541100849','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('5267d2a8-efa8-4b37-9824-90003ac1157d','491781529585','Sayın KUDRET KALK, 371804669 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371804669\n\nDear KUDRET KALK, your shipment with 371804669 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371804669\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('5268588d-c378-4d66-b1de-3b02ace4f9e1','905461661672','Sayın yetkili; CYNTHİA GARLEE adlı müşterinize 644126759 nolu gönderinizin TRAVERTEN MASA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 03.07.2025 16:43:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('52692842-f5ec-4fa5-95d3-d88a72e0253b','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 1 AD. BRONZE ADA ŞİFONYER ürünü 6 parça halinde EYFEL adresinizden 19.09.2025 12:02:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('5278f2a9-6306-4249-af7c-90e41eb76039','4915566264535','221694221 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2433 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221694221\n\nYour shipment with the number 221694221 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2433. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221694221\n\nBICARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('527c615c-782c-4315-8dc2-31c2c1e205e0','9053259981980','MEHMET ORMANOĞLU adlı müşterinizin 614636969 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('527ca05c-8833-49c7-a74e-f92ab0125af7','4917663371401','Sayın NERGİZ TOPRAK, 371540742 nolu gönderiniz 5051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371540742\n\nDear NERGİZ TOPRAK, your shipment with 371540742 was delivered to you with the delivery code 5051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371540742\n\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('527f2572-0269-4bcf-a96b-fb9e3924ba74','905075277637','Sayın yetkili; İSRAFİL ŞENGÖNÜL adlı müşterinize 745297087 nolu gönderinizin VİRAL YATAK ODASI ürünü 1 parça halinde FAMILY  adresinizden 12.03.2025 21:25:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('52817c6a-d61b-4b58-a29a-3504cb29f5f0','33744724088','Sayın EDİZ DİNLER, 478783487 nolu gönderiniz 5102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478783487\n\nDear EDİZ DİNLER, your shipment with 478783487 was delivered to you with the delivery code 5102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478783487\n\n\nBICARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('528c1f25-75e8-4dfe-89ce-56a07b6fa4a7','905313340045','Sayın yetkili; ZERDOUN SALOME adlı müşterinize 437573248 nolu gönderinizin Sandalye ürünü 3 parça halinde masami adresinizden 13.08.2025 14:26:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('528c52f9-5e1b-4375-8b50-80d77c9bba4b','491735396163','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('528cae98-318e-48a7-b239-0701571e890d','905301592882','CUMALİ ERCAN adlı müşterinizin 910759399 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('528ce4ba-f967-49ed-b6bb-febc89e403b3','905325000478','DEKOR ARSLAN adlı müşterinizin 412332862 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('5291a7db-e507-422d-9d26-60e7f4e29d0f','905461661672','Sayın yetkili; SONGÜL BALTACI adlı müşterinize 64446005 nolu gönderinizin TRAVERTEN MASA VE SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 02.04.2025 09:55:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('52942fe0-d438-4b3e-80cd-d3efceb9ebb9','905335511664','AYLİN AY adlı müşterinizin 371201111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('529b87c6-3488-4c3e-a289-f4a67ab877b0','491621091849','Sayın SEVİM KAMER, 478151970 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478151970\n\nDear SEVİM KAMER, your shipment with 478151970 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478151970\n\nBICARGO','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('529d1c82-a7b7-473e-b9da-5c847e46936f','905331602195','HATEM  adlı müşterinizin 221341784 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('529dc216-46c9-47a9-a479-428a01b62e09','31620957828','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('52a13225-bf08-4de8-b279-257903fc81c3','905510396989','Aferdidita ukshinaj adlı müşterinizin 319835776 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4598b25d-5bcc-42b3-8fc2-57baa395b0d3',NULL),
('52a2d40b-b0b8-4d4a-802f-98cdc255bd33','32478764812','221560581 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10862 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221560581\n\nYour shipment with the number 221560581 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10862. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221560581\n\nBICARGO','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('52a6fe3f-94c2-4e37-b636-717ec393f773','491608415396','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('52a7a036-2fa6-46f4-a226-5c9eac2d8472','905313340045','TUĞBA BALIKÇI adlı müşterinizin 437154123 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('52a7d9ee-7d5f-4817-b94a-ebe41978a682','4917663287928','644887691 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7692 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644887691\n\nYour shipment with the number 644887691 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7692. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644887691\n\nBICARGO','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('52aaebe7-7caa-4788-a4ac-3751a3747060','491787704238','Sayın RECEP TABAKOĞLU, 371601782 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371601782\n\nDear RECEP TABAKOĞLU, your shipment with 371601782 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371601782\n\nBICARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('52aec175-deb7-4298-ac3d-35752f7f6578','905331602195','ESMANUR ZENGİN  adlı müşterinizin 221668922 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('52b06164-e5c5-41ee-b9bc-01031468f883','905335708965','HİEM OMAİRAT  adlı müşterinizin 73597674 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL),
('52bd3174-049d-4160-86e2-ac67c970227f','905461661672','Sayın yetkili; ERHAN ÇEKİÇ adlı müşterinize 644445996 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde LENTE HOME adresinizden 23.09.2025 14:02:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('52c4fff5-f885-4a72-83b9-8548bb21a988','7627367263762632','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('52cac7f5-90c5-4127-bde0-b3085ee1ff24','905451571652','CEM TOPYÜREK adlı müşterinizin 53111592 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('52d15ebb-323e-493f-acad-0a550351e50d','905457153410','NATALİJE adlı müşterinizin 916836796 nolu gönderisi 79 parça halinde yola çıkmıştır.','1','45658f08-1cac-40c6-b173-5814bf12543e',NULL),
('52d7b5ec-d789-4601-84c9-94f683cea022','491793933332','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('52d82bb6-e1ef-4796-8b0e-aa1b8e0bf84b','905335708965','ÖRÜMCEK adlı müşterinizin 248692077 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL),
('52de9011-55b9-4887-8e43-cb7824593736','905075277637','MUSTAFA YILMAZ adlı müşterinizin 745445888 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL),
('52dfdbc7-1af0-4c8e-b037-500965abd056','905059175469',' BİRSEN DÜZ adlı müşterinizin 428990953 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('52f23be8-5999-4d68-b94d-677df4f715aa','4917623385759','Sayın SONGÜL AKKOC, 515171044 nolu gönderiniz 5742 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515171044\n\nDear SONGÜL AKKOC, your shipment with 515171044 was delivered to you with the delivery code 5742. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515171044\n\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('52f28e9d-3ccf-4d75-8eb0-5e84bac59c17','905461661672','FATMA SILA KAÇAK adlı müşterinizin 644194590 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('52f3ace0-71c9-4bfd-851c-3f6e22c96686','436606573775','Sayın BÜŞRA POYRAZ, 371508043 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371508043\n\nDear BÜŞRA POYRAZ, your shipment with 371508043 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371508043\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('52f56216-5f9a-4fbf-aa3e-82f15d0ceafb','4915144166539','42844174 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42844174\n\nYour shipment with the number 42844174 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42844174\n\nBICARGO','1','c8cb8a48-a710-4ed9-befe-c11c81f0f7df',NULL),
('52f5e910-1433-43f7-8fe8-52aa5583392a','905517075149','Sayın yetkili; AYŞEGÜL GÖKTEPE adlı müşterinize 478545457 nolu gönderinizin KÖŞE TAKIMI  ürünü 4 parça halinde SAGA KÖŞE adresinizden 10.07.2025 16:52:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('5303688b-2134-43ef-9a2d-06cdfc3cd641','491637115819','59840179 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3325 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59840179\n\nYour shipment with the number 59840179 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3325. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59840179\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('5304e42b-219b-43a5-b0df-9fd51e77620d','32484828555','2213416 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1132 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/2213416\n\nYour shipment with the number 2213416 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1132. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/2213416\n\nBICARGO','2','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('53089486-7ab9-48bf-878b-869bd3b01d19','491773328964','Sayın HASAN ŞİMŞEK , 817317858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817317858\n\nDear HASAN ŞİMŞEK , your shipment with 817317858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817317858\n\nBICARGO','1','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL),
('53090d07-3524-4d62-8ef3-029b48b70a05','905517075149','Sayın yetkili; SEPİDEH AJORLOO adlı müşterinize 478854135 nolu gönderinizin 4 adet sandalye 1 adet benç ürünü 3 parça halinde beymi sandalye adresinizden 17.07.2025 15:10:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('530bec26-741c-40ce-b1a3-70f74155c9b0','905301592882','Sayın yetkili; RUKİYE EKERBİÇER adlı müşterinize 910638892 nolu gönderinizin SANDALYE ürünü 6 parça halinde Fatura adresinizden 15.01.2025 14:35:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('5313f0fb-6e8c-4e2c-8648-4cf5cdc1f4d8','905078062550','Sayın yetkili; ERDAL PEKER adlı müşterinize 598944852 nolu gönderinizin MASA SEHPA ürünü 6 parça halinde RİO FATİH adresinizden 22.09.2025 15:01:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9665df81-a895-4779-ad78-e6fc3e7f28df',NULL),
('5314c9e4-f783-4db9-987a-577e401802b9','4917620715846','Sayın ABBAS GELERİ, 517914097 nolu gönderiniz 5613 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517914097\n\nDear ABBAS GELERİ, your shipment with 517914097 was delivered to you with the delivery code 5613. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517914097\n\n\nBICARGO','1','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL),
('531731e0-09db-41cb-aa8b-6b6de53287c1','33658630958','Sayın FARUK YÜCEL, 478867058 nolu gönderiniz 5397 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478867058\n\nDear FARUK YÜCEL, your shipment with 478867058 was delivered to you with the delivery code 5397. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478867058\n\n\nBICARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('5317be40-4e1c-4341-951a-7f898dbf3b1e','491741853822','Sayın HAYATİ ELBİR, 745536465 nolu gönderiniz 9301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745536465\n\nDear HAYATİ ELBİR, your shipment with 745536465 was delivered to you with the delivery code 9301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745536465\n\n\nBICARGO','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('531e69e3-6bdd-422b-8ce1-bed068615905','905075277637','Sayın yetkili; HANİFE YILMAZ adlı müşterinize 745252636 nolu gönderinizin FELİX KÖŞE  ürünü 2 parça halinde Fatura adresinizden 16.04.2025 11:50:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('532331aa-8e60-4318-a902-3e3b61b06cae','4917663056847','Sayın YETKİN TOKER, 478120731 nolu gönderiniz 1846 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478120731\n\nDear YETKİN TOKER, your shipment with 478120731 was delivered to you with the delivery code 1846. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478120731\n\n\nBICARGO','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('53327b34-cb1a-4e67-a66f-18d91c689802','905325000478','COŞKUN MURAT AKTAŞ  adlı müşterinizin 41246036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('533636a1-3662-47a1-b2c8-166d70379f89','4917663388742','478250269 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478250269\n\nYour shipment with the number 478250269 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478250269\n\nBICARGO','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('533a29d0-10ee-4f03-8a7a-5eb6aab25d9c','33660468423','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('533b2fb4-e6ae-43df-b84e-21a43552a0a0','436503555735','DRİVER NUMBER\n					905541100849','2','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('533b80c7-480c-4843-a64c-960f59d68e63','905461661672','MUHAMMED PERVANE  adlı müşterinizin 644531622 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('533bce29-28fc-4bdf-a70c-0d002095ffa1','32499836512','Sayın MOHAMED SAİD ZARZAURİ, 221240151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221240151\n\nDear MOHAMED SAİD ZARZAURİ, your shipment with 221240151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221240151\n\nBICARGO','1','9feff913-404e-4b4c-b57f-21740becbcff',NULL),
('534100fd-a56c-4ddd-a1ee-0a4133630835','905301592882','Sayın yetkili; MUSTAFA DÜNDAR adlı müşterinize 91030681 nolu gönderinizin ZİGON SEHPA ürünü 2 parça halinde Fatura adresinizden 16.04.2025 11:13:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('5343de10-25c3-418b-b47b-e56ce3c0a91f','4917662248908','İLETİŞİM\n					Furkan şöför = +905078826436','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('534adb8f-e34d-4dfc-84a1-b4cc0ef9db9f','905456068312','YUSUF KAYA adlı müşterinizin 655200069 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL),
('534fa133-33fc-448f-8cf4-f56fef737da6','905304259202','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478431848 nolu gönderinizin 3+3+1 KOLTUK TAKIMI ürünü 6 parça halinde çelikbey inegöl depo adresinizden 12.03.2025 21:27:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('535300dc-741c-421d-8e55-eac8efe515be','31641101237','478832291 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478832291\n\nYour shipment with the number 478832291 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478832291\n\nBICARGO','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('53570118-5837-4fc9-9f72-ffe6cce28f94','905442774505','KIYMET HANIM  adlı müşterinizin 657635062 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('5360a847-b9ab-442b-924a-1be16cfc2384','905079358213','MEHMET SALDANLI adlı müşterinizin 745508995 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL),
('53610954-ae5d-4350-90cb-5ae8519fa970','4917661928608','Sayın NURGÜL ÖZDEMİR, 75056602 nolu gönderiniz 2948 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/75056602\n\nDear NURGÜL ÖZDEMİR, your shipment with 75056602 was delivered to you with the delivery code 2948. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/75056602\n\n\nBICARGO','1','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL),
('5363feb9-b524-4842-a143-eeb2b7b96708','33787231451','Sayın Gruppomino, 231429780 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231429780\n\nDear Gruppomino, your shipment with 231429780 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231429780\n\nBICARGO','1','d850bd2e-4975-4529-8b56-6564706b808f',NULL),
('5366945d-56b0-42eb-9117-da0a03111096','905079047428','Sayın yetkili; İBRAHİM AKÇİN adlı müşterinize 449215672 nolu gönderinizin 3-3-1.  Koltuk takımı ürünü 3 parça halinde Fatura adresinizden 15.11.2024 10:47:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('53680e2c-0c93-4115-86e5-cc108f16415b','905335511664','Sayın yetkili; HÜMEYRA ZEYREK adlı müşterinize 37152330 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:13:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('53761487-ce6b-4188-836a-0bbf736439a3','4917630410720','Sayın GAMZE CAPALBO - GABRİELE, 517395181 nolu gönderiniz 3622 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517395181\n\nDear GAMZE CAPALBO - GABRİELE, your shipment with 517395181 was delivered to you with the delivery code 3622. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517395181\n\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('537700ad-dc10-4c2e-a00c-805e62ddc89c','491638627978','Sayın İLYAS KAHRİMAN, 745799900 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745799900\n\nDear İLYAS KAHRİMAN, your shipment with 745799900 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745799900\n\nBICARGO','1','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL),
('5378623e-6b50-4583-8638-91819cd4f402','4917662792602','Sayın FATMA ALTAY, 745871666 nolu gönderiniz 6494 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745871666\n\nDear FATMA ALTAY, your shipment with 745871666 was delivered to you with the delivery code 6494. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745871666\n\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('537bf7af-461d-4231-98f3-e603f61e997a','4917684715486','Sayın TALHA KARA, 598384021 nolu gönderiniz 8397 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598384021\n\nDear TALHA KARA, your shipment with 598384021 was delivered to you with the delivery code 8397. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598384021\n\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('53831e0b-a8a4-4aff-a2cb-09c8da6d0538','905331602195','Sayın yetkili; KAYHAN BOZKURT adlı müşterinize 221692379 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:47:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('53879185-5196-477b-9f48-579dc981fd8f','436605107396','808935275 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7302 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808935275\n\nYour shipment with the number 808935275 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7302. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808935275\n\nBICARGO','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('5388345f-1e99-49a8-b826-5327d883c35c','491776418748','Sayın AHMET ÖZDEMİR, 478622556 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478622556\n\nDear AHMET ÖZDEMİR, your shipment with 478622556 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478622556\n\nBICARGO','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('538fcc33-371c-4b47-bef1-93a14ec1638b','5325000478','Sayın sedat sedat, 28.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1711814\nŞifre : 1711814\n			\nBİCARGO','1',NULL,'17ad1fd1-8d1f-4a98-8834-b7fb2d4c1d48'),
('5392c814-1eb2-4b2d-9ced-fd440a381b93','00491782351151','735233033 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1200 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735233033\n\nYour shipment with the number 735233033 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1200. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735233033\n\nBICARGO','2','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL),
('53953aa3-1ece-45b6-aa4c-b85f6c531437','31623610676','Sayın MAZİJA IBRAHIMOVİC, 221417499 nolu gönderiniz 7014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221417499\n\nDear MAZİJA IBRAHIMOVİC, your shipment with 221417499 was delivered to you with the delivery code 7014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221417499\n\n\nBICARGO','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('539bb79b-cc65-4556-b888-72843ff8189b','905301592882','AYNUR ÖZDEMİR  adlı müşterinizin 91062607 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2791c56f-7265-461d-b1bf-4a378276ed53',NULL),
('539d72dc-96a3-49cd-be2d-c88ae2ff9bc4','905079358213','LEİLA GELES SSH adlı müşterinizin 745865715 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('539df18b-5cc4-40ff-a22c-0d647dee96b1','491624583604','478418480 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6120 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478418480\n\nYour shipment with the number 478418480 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6120. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478418480\n\nBICARGO','1','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL),
('53a3c73a-1b23-4f00-acaa-29f810d57c99','33667821840','Sayın JEUNE ROSE DARLYNE, 221892935 nolu gönderiniz 1086 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221892935\n\nDear JEUNE ROSE DARLYNE, your shipment with 221892935 was delivered to you with the delivery code 1086. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221892935\n\n\nBICARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('53bc8b38-6c93-489a-820e-5d56602e8274','905079358213','OKTAY SAMET ŞAHİN adlı müşterinizin 745782616 nolu gönderisi 55 parça halinde yola çıkmıştır.','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('53bf6d2e-ef37-4bd6-bd92-61049ba51c60','905075277637','HAZİNE UCA adlı müşterinizin 745839023 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL),
('53c7d47c-4cc5-4f53-a024-df983c493ebe','905331602195','AMANY MOUSA adlı müşterinizin 22134117 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('53d4792a-8df3-40d7-ba81-a0111558709f','4917672708890','Sayın ERAY ASLANCAN, 745294810 nolu gönderiniz 8317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745294810\n\nDear ERAY ASLANCAN, your shipment with 745294810 was delivered to you with the delivery code 8317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745294810\n\n\nBICARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('53d5e113-6ba3-4f63-87a6-e2140de3db4f','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160*200 BAZA ANTRASİT ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('53d96e96-a556-4c59-8f4f-e036dd8a6c1f','905331602195','HASAN BİLECEN adlı müşterinizin 221121416 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('53e6411f-4226-4efe-9f59-07534b70e2da','905313340045','ÖZGÜR ÇEŞME adlı müşterinizin 437540085 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','fb70c94c-78cc-4a1f-9b09-616f804975bb',NULL),
('53ed89a5-dc07-4561-a5c0-a5491b8624db','4917672416653','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('53f1ee93-bd9f-492f-bba3-95ef91af9222','905336367828','POLAT HANIM adlı müşterinizin 982644032 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('53f34da2-875d-4919-a7b1-a7fe74d95a1c','4915758318201','98285799 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1527 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98285799\n\nYour shipment with the number 98285799 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1527. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98285799\n\nBICARGO','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('53f4215d-be98-4847-ae55-313071208903','905461661672','Sayın yetkili; FATMA SILA KAÇAK adlı müşterinize 644194590 nolu gönderinizin köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 03.10.2025 12:18:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('53f4b2b0-47a0-416b-867d-f5ab35145788','905078062550','TOLGA KAPLAN adlı müşterinizin 598463425 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('53f4fe92-b411-4852-9577-af84421ae41c','4917672523276','Sayın FERHAD MORİD, 598188038 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598188038\n\nDear FERHAD MORİD, your shipment with 598188038 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598188038\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('53f54255-5863-4dbd-988f-8c839fc1d696','491624296622','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('53f5f094-4bbb-4194-b4bc-9aebea26aa48','905075277637','SEZER HATUN adlı müşterinizin 745249081 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('53f94a63-1b5e-44c6-828b-5132f9b99bcc','905461661672','Sayın yetkili; BLANDİ ZOTA adlı müşterinize 644965833 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 24.04.2025 17:14:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('53fcf649-20cd-4419-8375-badd9933c7da','491774279097','371660448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8763 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371660448\n\nYour shipment with the number 371660448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8763. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371660448\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('54005fa0-21b5-471e-a70d-98b0650535b2','905349208933',' MAHMUD YUSUF ÖKDEM(SSH) adlı müşterinizin 127945692 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('5406075d-27ce-40b0-a7d3-9b3b5b98c3a9','33769187229','478192530 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478192530\n\nYour shipment with the number 478192530 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478192530\n\nBICARGO','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('54090d08-fb40-426e-9b78-4664462cc1e1','491783142283','Sayın İLYAS GÖK, 598982184 nolu gönderiniz 3921 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598982184\n\nDear İLYAS GÖK, your shipment with 598982184 was delivered to you with the delivery code 3921. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598982184\n\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('540c540d-ed6c-4e41-8b30-772ee742d061','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin TV Ünite ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:49:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('540cd361-ab76-4be5-9681-0371af954c88','4917660886216','449281517 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3651 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449281517\n\nYour shipment with the number 449281517 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3651. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449281517\n\nBICARGO','1','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL),
('540cd8c0-4c02-474d-b976-48a070c4e796','905335708965','SUMMSTOFF IMKEGENOSSENSCHAFT adlı müşterinizin 248243194 nolu gönderisi 101 parça halinde yola çıkmıştır.','1','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL),
('540df165-b67a-48a0-89ef-44ce276fc6c5','4917662211030','Sayın HÜSEYİN KIRTAY, 745357299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745357299\n\nDear HÜSEYİN KIRTAY, your shipment with 745357299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745357299\n\nBICARGO','1','ad525e43-9190-4602-ac34-b389ec280f0a',NULL),
('54133979-cce5-43ae-9e94-4d975b08365b','905079358213','SELİNAY ORHAN adlı müşterinizin 745398311 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','c8832652-771d-469e-b661-4fd13d628789',NULL),
('54238aba-f461-4702-a957-e9a0dd114dee','32485188062','Sayın DAVUT KAYHAN , 517887763 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517887763\n\nDear DAVUT KAYHAN , your shipment with 517887763 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517887763\n\nBICARGO','1','16c1502b-604e-4738-a2f1-13c522febb96',NULL),
('542a3a10-0c9f-4df5-84a2-909c1ebc3296','32470754918','Sayın MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH), 221561968 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221561968\n\nDear MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH), your shipment with 221561968 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221561968\n\nBICARGO','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('542b8823-db51-4ed8-afdc-98d1d22c6c05','436603406293','Sayın yetkili; SEVDE SOYUÖZ adlı müşterinize 675253974 nolu gönderinizin orta sehpa ürünü 2 parça halinde MASAMI adresinizden 19.08.2025 14:14:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('542bf49b-f45e-45ef-9be8-f1ea82281303','905336367828','Sayın yetkili; NASIR NOORI  adlı müşterinize 982558117 nolu gönderinizin baza başlık  ürünü 3 parça halinde Marki baza  adresinizden 30.12.2024 10:41:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('542d2a37-4da5-4870-bd7c-81703808daaf','905332942204','Sayın yetkili; DEBORAH BELOVED IDAGU adlı müşterinize 505987989 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MODE adresinizden 29.07.2025 12:26:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('542fd2c2-1377-4447-a0e2-fccb9c523081','905059175469','TUĞBA YILMAZ adlı müşterinizin 42845475 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','0968d1cc-0ba0-445c-8f49-74a0f7b6c441',NULL),
('54340f44-a067-438c-a211-43df4b5945f6','905442774505','CİHAN KÖSELER adlı müşterinizin 657734229 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d534081c-07c5-470c-bed4-f699f4319aa1',NULL),
('5435e78e-e440-4845-bcd6-5c666a794e68','41796408561','478224735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1020 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478224735\n\nYour shipment with the number 478224735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1020. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478224735\n\nBICARGO','1','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('5437b1e1-6651-4d01-9dcd-b4117500ff94','3374492498','Sayın ÖMER KARAN, 478165569 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478165569\n\nDear ÖMER KARAN, your shipment with 478165569 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478165569\n\nBICARGO','2','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('543aa87f-0c4e-46f5-896a-5ee98278dee0','491638317510','45559266 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/45559266\n\nYour shipment with the number 45559266 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/45559266\n\nBICARGO','1','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL),
('543d080e-902e-461b-8257-587b535b8576','33640502682','Sayın EL HARRAR OUASSİFA, 982666330 nolu gönderiniz 4829 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982666330\n\nDear EL HARRAR OUASSİFA, your shipment with 982666330 was delivered to you with the delivery code 4829. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982666330\n\n\nBICARGO','1','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL),
('543f64fe-06f9-4eee-b4a1-7c8ae810391d','905079358213','Sayın yetkili; FATMA ALTAY adlı müşterinize 745871666 nolu gönderinizin KING PLATİN BAZA SETİ 160X200 ürünü 6 parça halinde Fatura adresinizden 20.05.2025 14:24:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('5442a732-e375-4d7f-b949-6c47d7daa163','905454259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478957028 nolu gönderinizin yemek odası ürünü 12 parça halinde GARDEROBE adresinizden 24.03.2025 17:43:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('544447da-4b56-4444-8b0f-a756077b0b28','4917623882618','745639167 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7299 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745639167\n\nYour shipment with the number 745639167 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7299. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745639167\n\nBICARGO','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('5444aceb-343f-461d-8b69-850576eb60fe','491608415396','Sayın SEMİH YEŞİLYAYLA, 371716908 nolu gönderiniz 6005 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371716908\n\nDear SEMİH YEŞİLYAYLA, your shipment with 371716908 was delivered to you with the delivery code 6005. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371716908\n\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('544be87b-8d32-4cb8-9aa0-db0eb3a4f1ce','31650899845','Sayın YASİN OĞUZ, 478233957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478233957\n\nDear YASİN OĞUZ, your shipment with 478233957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478233957\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('54527704-4b25-42d8-9408-042215ab0410','905357955726','Mirkan cem adlı müşterinizin 315164103 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','36f25521-b01c-4589-be32-1479a5a1b79e',NULL),
('5455151d-2266-4b54-9f92-75ebab637c8f','905336367828','TKHİLİ BOUSHABA  adlı müşterinizin 982578491 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('54580519-976e-4238-ab03-0253c82154d3','491625165832','ŞÖFÖR NUMARASI\n					+905467896981','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('5459a890-7343-4c3c-b7c6-1b685d8b0c10','31687440743','Sayın AYEOLOWO SEKİNAT, 221433158 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221433158\n\nDear AYEOLOWO SEKİNAT, your shipment with 221433158 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221433158\n\nBICARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('545bbacc-a3be-490c-81ee-0a6aca95bf30','41764331829','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('545ff54d-2efc-44dc-baf2-598d211e3489','905078062550','Sayın yetkili; FERHAD MORİD adlı müşterinize 598188038 nolu gönderinizin masa ürünü 2 parça halinde RİO FATİH adresinizden 15.08.2025 15:57:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('54657eaf-042f-4729-bd1d-872376b4f2cc','491764813040','478101413 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478101413\n\nYour shipment with the number 478101413 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478101413\n\nBICARGO','2','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('547589da-4906-46a4-abac-78e678204934','4917680857659','Sayın ISMAİL REMMO, 61330729 nolu gönderiniz 4153 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61330729\n\nDear ISMAİL REMMO, your shipment with 61330729 was delivered to you with the delivery code 4153. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61330729\n\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('54760d22-bfcf-4f44-a184-f246b5e3a2c4','905335511664','SARA CASTRO adlı müşterinizin 371287728 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('54761cee-e18c-4f15-abfe-d9c3b12b48b0','4306641865848','Sayın İDRİS EŞKIN, 910593915 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910593915\n\nDear İDRİS EŞKIN, your shipment with 910593915 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910593915\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('547adb3c-bf0f-4180-b6c8-f139f0640893','41788774757','Sayın MAGBULE DZELİLİ, 982843761 nolu gönderiniz 2500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982843761\n\nDear MAGBULE DZELİLİ, your shipment with 982843761 was delivered to you with the delivery code 2500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982843761\n\n\nBICARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('547bc5b4-0572-4c52-b05c-fc707c4ff311','33650178129','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('54805bae-7441-4250-a7ca-c170eef78006','33610781591','478778961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9240 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478778961\n\nYour shipment with the number 478778961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9240. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478778961\n\nBICARGO','1','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL),
('5494b633-57b0-4d48-9a7d-e6e4cae3062b','4917662792602','Sayın FATMA ALTAY, 745871666 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745871666\n\nDear FATMA ALTAY, your shipment with 745871666 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745871666\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('5495a6eb-5278-45c3-b224-c058bc255d64','33662243896','Sayın HELENA GÖKKAYA, 150685221 nolu gönderiniz 6994 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/150685221\n\nDear HELENA GÖKKAYA, your shipment with 150685221 was delivered to you with the delivery code 6994. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/150685221\n\n\nBICARGO','1','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('54a1f8af-1a80-4f73-916d-9550df12a742','4917632975827','Sayın MURAT ERKUL SSH, 745898734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745898734\n\nDear MURAT ERKUL SSH, your shipment with 745898734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745898734\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('54a41c4d-86fe-4a7c-a842-731e0992b3e1','905075277637','KENAN SOYLU adlı müşterinizin 74534951 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('54a8efcc-3eaa-425a-bd22-bedae26ce51d','491624610120','Sayın İBRAHİM TÜRK, 598479723 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598479723\n\nDear İBRAHİM TÜRK, your shipment with 598479723 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598479723\n\nBICARGO','1','5dbeb578-3815-46c4-8be9-34c6782e8dab',NULL),
('54ad5a47-14ea-4026-abf4-6cdad770efae','32487655588','Sayın MEHDİ NAEİMİ, 319275080 nolu gönderiniz 3727 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319275080\n\nDear MEHDİ NAEİMİ, your shipment with 319275080 was delivered to you with the delivery code 3727. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319275080\n\n\nBICARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('54b45e8b-ef3f-45e7-a6af-2f08c8339631','4915208790958','44926965 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9140 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44926965\n\nYour shipment with the number 44926965 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9140. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44926965\n\nBICARGO','1','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL),
('54b68116-665d-4684-b727-9677c9a37aea','905333221039','BARIŞ ÖZTÜRK adlı müşterinizin 750355737 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('54b92c64-4922-4993-82df-7309ac2ca952','33751366069','Sayın SERHAT ERDOĞMUŞ, 449558519 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449558519\n\nDear SERHAT ERDOĞMUŞ, your shipment with 449558519 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449558519\n\nBICARGO','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('54bbfbe3-241a-43a3-a890-21d0e94168b0','31611378787','221362176 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7497 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221362176\n\nYour shipment with the number 221362176 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7497. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221362176\n\nBICARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('54bf6c4c-2ace-4b9b-a937-774d06ff0e85','905313340045','Sayın yetkili; BİROL ELİBOL adlı müşterinize 437609907 nolu gönderinizin kampanya köşe takımı ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 24.07.2025 16:27:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('54bf9e90-c5e4-4533-9f2d-7d41991f2581','33616450587','418857351 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8277 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/418857351\n\nYour shipment with the number 418857351 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8277. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/418857351\n\nBICARGO','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('54c30bdc-87a3-4530-94e4-2c6b405a2597','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS DELUXE 120*200 BAZA ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('54ca1c4d-89d1-4898-95aa-cb22d1829cd0','905325998198','PINAR BARUTÇU adlı müşterinizin 6148124 nolu gönderisi 4 parça halinde yola çıkmıştır.','1',NULL,NULL),
('54ccdefc-14ac-4b70-8ba8-0a2e007477e8','436603406293','MEHMET COPUR adlı müşterinizin 675644991 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('54ce2a8a-96ff-47b3-944c-986adf41d216','491709634304','Sayın RANJA SABRİ , 221904119 nolu gönderiniz 7585 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221904119\n\nDear RANJA SABRİ , your shipment with 221904119 was delivered to you with the delivery code 7585. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221904119\n\n\nBICARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('54d10313-84a7-4eef-92e6-cee41f5d1a9e','41764259879','412987652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412987652\n\nYour shipment with the number 412987652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412987652\n\nBICARGO','1','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL),
('54d4f702-8f67-43f8-921b-7ff5a9f851f8','905301592882','ÖZDEMİR YAKAN		 adlı müşterinizin 910972908 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('54d5ee95-b847-407e-9f88-1393040c1322','905454259202','NADİDE BAHÇEÇİOĞLU adlı müşterinizin 478283773 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL),
('54d75c18-065b-4505-ad34-7cc272732f86','4917682057600','598130952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5275 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598130952\n\nYour shipment with the number 598130952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5275. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598130952\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('54d91b29-2616-4ce8-be18-0380b8775851','33643896068','Sayın MAHMUT ÇELİK, 478370539 nolu gönderiniz 3413 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478370539\n\nDear MAHMUT ÇELİK, your shipment with 478370539 was delivered to you with the delivery code 3413. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478370539\n\n\nBICARGO','1','e637af8d-f91f-4227-b5af-f95f10dd7e2f',NULL),
('54dddf31-2c6e-4d43-9145-faacbc0319d1','4917632298382','İLETİŞİM\n					Furkan şöför = +905078826436','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('54df681e-e86f-4840-9c77-2e92a9f7dd46','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin TRAVERTEN  YEMEK MASASI 2 ORTA SEHPA 1 YEMEK MASA ÜSTÜ ürünü 1 parça halinde Fatura adresinizden 19.08.2025 12:13:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('54dfecfb-b76e-4ba5-a0d4-93f0319cea76','905054335859','Sayın yetkili; OĞUZHAN SARP - SSH adlı müşterinize 501700728 nolu gönderinizin LOGİSTİC E BIRAKILDI ürünü 1 parça halinde Fatura adresinizden 26.03.2025 11:37:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','21546945-039e-423a-a388-34ddf8d28654',NULL),
('54e5efa4-cab9-4e3c-8eeb-fd9866309e09','4915252659401','Sayın DİLARA COŞKUN, 644684600 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644684600\n\nDear DİLARA COŞKUN, your shipment with 644684600 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644684600\n\nBICARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('54e63911-bf4a-444c-bc3f-e13fdf3fc607','491772575787','879845359 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/879845359\n\nYour shipment with the number 879845359 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/879845359\n\nBICARGO','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('54e84415-850f-4ef7-9624-53d6b42fba7d','4917624188930','Sayın GİZEM KARAVİL, 786820149 nolu gönderiniz 3457 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786820149\n\nDear GİZEM KARAVİL, your shipment with 786820149 was delivered to you with the delivery code 3457. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786820149\n\n\nBICARGO','1','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('54ebd8ae-eb0e-4450-8336-67eaea03d985','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin DORA MASA / 8 SANDALYE ürünü 7 parça halinde DOSSİ adresinizden 19.09.2025 14:49:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('54edb155-7301-4d7d-ac8a-d707bbd13510','905335708965','MUHSİN AKTEPE adlı müşterinizin 248977442 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5ff5ecc-8494-400b-acf9-c8906860204a',NULL),
('54f45f96-d061-43a1-b737-3c61b7eea27b','05357772672','842151692 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9092 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/842151692\n\nYour shipment with the number 842151692 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9092. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/842151692\n\nBICARGO','2','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('54f8651a-1824-4eda-9794-a2269eb0e35a','905078062550','Sayın yetkili; FATMA ERDEM adlı müşterinize 598161990 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 11.07.2025 14:02:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('54fb6e75-0321-4f5d-8cad-d69d3c980e20','31640579879','644106987 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644106987\n\nYour shipment with the number 644106987 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644106987\n\nBICARGO','2','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('54ff83d3-7e8b-486c-8b99-348c6cb65951','905454259202','AHMET CELEBCİ adlı müşterinizin 478650682 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('55004385-26b5-45fd-88fa-66b6d4597bce','05531042901','Sayın FATMA ALBAYRAK, 478935366 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478935366\n\nDear FATMA ALBAYRAK, your shipment with 478935366 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478935366\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('5504ff39-486a-4a80-9276-bb2ed3792bbb','4917670880874','Sayın YAVUZ GÜNEŞ, 59874048 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59874048\n\nDear YAVUZ GÜNEŞ, your shipment with 59874048 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59874048\n\nBICARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('55083bb8-9b5e-4c4d-a397-7c1b187730d0','33622831464','98222175 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2384 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98222175\n\nYour shipment with the number 98222175 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2384. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98222175\n\nBICARGO','1','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL),
('550d8818-1688-4868-b040-5e2bc46186c3','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin virjin bazalı karyola-komidinler-şifonyer ürünü 10 parça halinde family adresinizden 28.08.2025 14:16:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('5510beda-663f-4acb-abfc-3a8e4c5f304e','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin sandalye ürünü 3 parça halinde DURMUŞLAR SANDALYE adresinizden 29.05.2025 15:22:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('5510d8ec-7ee4-4d69-8f0f-fd4f49884260','4917664025602','745671718 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8303 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745671718\n\nYour shipment with the number 745671718 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8303. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745671718\n\nBICARGO','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('55136402-3c40-4a15-8f94-163f0f095d15','4916221534324917','Sayın GÖKHAN UYSAN, 42873500 nolu gönderiniz 9535 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42873500\n\nDear GÖKHAN UYSAN, your shipment with 42873500 was delivered to you with the delivery code 9535. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42873500\n\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('5516021b-78ed-4afa-b439-2b7011c4b65e','4917684650922','745972164 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1842 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745972164\n\nYour shipment with the number 745972164 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1842. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745972164\n\nBICARGO','1','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL),
('5517eeb4-5580-4454-98cd-1b2f0d770101','31640226281','Sayın HÜSEYİN ÇELEBİ, 644576493 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644576493\n\nDear HÜSEYİN ÇELEBİ, your shipment with 644576493 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644576493\n\nBICARGO','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('551cc96d-234b-42df-b517-6cc64180207b','32493872964','Sayın TUĞBA AKTAŞ, 478687899 nolu gönderiniz 5180 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478687899\n\nDear TUĞBA AKTAŞ, your shipment with 478687899 was delivered to you with the delivery code 5180. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478687899\n\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('55200d93-3e12-47c9-bc26-0d05b6e102b2','905075277637','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin BONNY YAN SEHPA  ürünü 2 parça halinde BRAWWA MOBİLYA BÖLÜMÜ adresinizden 08.07.2025 17:11:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('5522835d-053e-4f06-af2f-afe3037b064e','00491627384252','734955536 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7732 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734955536\n\nYour shipment with the number 734955536 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7732. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734955536\n\nBICARGO','2','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL),
('552b0788-063e-4fd5-85db-0f248bdb0fa7','1111111111111111','Sayın AAAAAAAAAAAAAA, 73574376 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73574376\n\nDear AAAAAAAAAAAAAA, your shipment with 73574376 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73574376\n\nBICARGO','2','5b516169-2e1d-421d-a411-a20956666225',NULL),
('552c1c6e-6aa0-4db1-be43-22b07e70e8fc','004917642976478','73570714 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5696 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73570714\n\nYour shipment with the number 73570714 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5696. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73570714\n\nBICARGO','2','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL),
('553072d6-3bd9-4a56-9199-8e316e955173','905075277637','Sayın yetkili; AYŞE SÖNMEZ adlı müşterinize 745206126 nolu gönderinizin PARİS KÖŞE KOLTUK ürünü 3 parça halinde Fatura adresinizden 06.03.2025 13:14:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL);
INSERT INTO `whatsapp_messages` VALUES
('5532c18c-fcb0-4e8a-8248-5cafa21ce8b0','31627024701','Sayın BERKANT CEYLAN , 657784193 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657784193\n\nDear BERKANT CEYLAN , your shipment with 657784193 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657784193\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('55370dc9-d499-4157-9724-3f87c3d6efcb','905331602195','MERAL GÖGDAS  adlı müşterinizin 221965496 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('55396e4f-41a1-4fc6-afa8-711fe3c6410d','905442774505','Sayın yetkili; HAKİM AZZOUZ adlı müşterinize 657301470 nolu gönderinizin Traverten kasa ürünü 1 parça halinde Fatura adresinizden 24.07.2025 11:02:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('5539df85-cf98-46d2-999e-f177d8faa6fb','111111111111111','Sayın AAAAAAAAAAAAAAA, 248849829 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248849829\n\nDear AAAAAAAAAAAAAAA, your shipment with 248849829 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248849829\n\nBICARGO','2','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL),
('554390a2-6fb2-4b7b-ae1b-ab711e4658d2','905331602195','HURİYE SERBEST adlı müşterinizin 221416180 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('5543abe5-04ea-4451-8ced-bfb4da58108f','905078062550','KADER ŞAHİN adlı müşterinizin 598719647 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('5543d028-f2b9-4b5f-9945-095a64614eb8','4915566234500','613464926 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8239 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613464926\n\nYour shipment with the number 613464926 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8239. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613464926\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('5544316c-5923-4a85-b563-6664c01ef737','33645025760','Sayın ALİ ÖZDEN , 745991962 nolu gönderiniz 10500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745991962\n\nDear ALİ ÖZDEN , your shipment with 745991962 was delivered to you with the delivery code 10500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745991962\n\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('55444ece-58cc-465c-8297-1ad09726257b','4917670362806','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('5544b83e-960d-49fc-a0b4-799d94b250ae','905075277637','MUSTAFA KESKİN adlı müşterinizin 745976194 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','97d3447f-3a32-459a-8bdd-d360b881a042',NULL),
('55537f0c-c328-406f-a5f8-2095e1e1482c','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin 40x40 traverten orta sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:42:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('5554df9d-5e4b-447a-ab0e-1eed8bb89eae','905389543828','Sayın yetkili; FARIH SANAE adlı müşterinize 486609627 nolu gönderinizin Karyola ürünü 4 parça halinde Moe Bedding adresinizden 08.09.2025 15:15:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('55560b99-3118-453d-a177-efd6171410ea','33658781000','Sayın RAMAZAN ALTINKAYNAK, 910163146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910163146\n\nDear RAMAZAN ALTINKAYNAK, your shipment with 910163146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910163146\n\nBICARGO','1','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('5558eaf3-8242-4082-b86a-c9c616f4f55e','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ESKALA LİNE KÖŞE BLOK DOLAP ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('555a244e-54b6-43b8-b94a-fdf1faa724af','49017640508000','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('555d4f89-83e8-412e-aade-7391043066bb','4915756850025','644754778 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6625 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644754778\n\nYour shipment with the number 644754778 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6625. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644754778\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('555e7915-a56f-4a5f-9e62-7e7e1e53df6e','905069116877','SİBEL ÖZTAMUR adlı müşterinizin 817872283 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('555fd7df-90e5-4638-8029-8e7420dadc66','491715317113','Sayın BEYTULLAH AKSOY, 644826911 nolu gönderiniz 9992 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644826911\n\nDear BEYTULLAH AKSOY, your shipment with 644826911 was delivered to you with the delivery code 9992. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644826911\n\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('556d0d1c-9fd7-48b6-afe7-557cba934632','41795226139','Sayın ISENİ ELMEDİNA , 221967241 nolu gönderiniz 3215 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221967241\n\nDear ISENİ ELMEDİNA , your shipment with 221967241 was delivered to you with the delivery code 3215. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221967241\n\n\nBICARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('556d7760-ac79-4b81-9040-35d92ef8358f','4917683344866','Sayın EMRE YILMAZ, 745884226 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745884226\n\nDear EMRE YILMAZ, your shipment with 745884226 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745884226\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('55720645-934a-4b87-9108-189ad0f45dc5','491625434501','745433427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9940 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745433427\n\nYour shipment with the number 745433427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9940. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745433427\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('5572dc09-54af-4d9c-a338-a27c43ed2730','905335511664','ALEYNA İREP adlı müşterinizin 37119244 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('55761d75-b6a7-4851-bc82-a9893a8a293a','491784042586','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('55768dd5-df6a-41b3-a211-de71ca95c681','905336367828','Sayın yetkili; BOGDAN MADALİNA  adlı müşterinize 982376655 nolu gönderinizin Sehpa  ürünü 2 parça halinde Sehpa İbrahim  adresinizden 27.02.2025 17:47:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24b32008-080d-4cf2-b2e3-73b35877738d',NULL),
('5576f0eb-1a4a-4661-a421-20253493eb60','491772447174','Sayın ADEM  GENÇ, 614553524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614553524\n\nDear ADEM  GENÇ, your shipment with 614553524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614553524\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('55787594-8faa-4991-9c9d-3a54869d4073','33768894970','Sayın KUBİLAY AKTAR, 910473991 nolu gönderiniz 6060 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910473991\n\nDear KUBİLAY AKTAR, your shipment with 910473991 was delivered to you with the delivery code 6060. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910473991\n\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('55797a14-84eb-4d8c-a73d-02418fcae388','491749320466','478644533 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2216 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478644533\n\nYour shipment with the number 478644533 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2216. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478644533\n\nBICARGO','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('557a84ba-57c5-4b53-ba48-7a54bc97698a','4915566766358','Sayın ALEYNA İREP, 37119244 nolu gönderiniz 3923 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37119244\n\nDear ALEYNA İREP, your shipment with 37119244 was delivered to you with the delivery code 3923. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37119244\n\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('558d16c1-651d-4ca3-ab2b-61324e9a25c0','905325000478','MURAT YALIN adlı müşterinizin 412330197 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL),
('558f99cd-c736-4c61-aceb-fdd50227b8bd','330695878603','Sayın SELAHATTİN BAŞPINAR, 47835620 nolu gönderiniz 1274 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47835620\n\nDear SELAHATTİN BAŞPINAR, your shipment with 47835620 was delivered to you with the delivery code 1274. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47835620\n\n\nBICARGO','1','683d27ef-d6a6-4b68-8486-43f1c42af547',NULL),
('55913d7c-ae1c-4c71-8e03-c65797049e0b','4917632498561','644100790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1576 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644100790\n\nYour shipment with the number 644100790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1576. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644100790\n\nBICARGO','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('55942f4e-2e66-450b-8eac-67bfb464d60a','31655504455','Sayın MEHMET KILINÇ, 428239917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428239917\n\nDear MEHMET KILINÇ, your shipment with 428239917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428239917\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('55951d08-922f-44c2-8eac-a8eaf89f2396','31687750912','Sayın SALİHA ŞERİF, 221651438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221651438\n\nDear SALİHA ŞERİF, your shipment with 221651438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221651438\n\nBICARGO','1','0ca39cb3-cb01-4190-946c-6ebea8eb1b68',NULL),
('55983b04-b6d1-4548-bd76-7807572737bf','01733972547','644682734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3419 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644682734\n\nYour shipment with the number 644682734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3419. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644682734\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('559a9525-3514-47a6-b53c-b25b71c2144e','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin KÖŞE ürünü 5 parça halinde KARYOLA adresinizden 17.10.2025 15:21:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('559d0965-1338-4601-af42-e5e0cb56a8ac','4917664681539','Sayın BERKAN AĞIRMAN, 91034652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91034652\n\nDear BERKAN AĞIRMAN, your shipment with 91034652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91034652\n\nBICARGO','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('55a53ec8-359a-4e47-84ce-ffd01219e145','905079358213','Sayın yetkili; BURÇİN MEN adlı müşterinize 745970479 nolu gönderinizin BLACKLINE DOLAP  ürünü 3 parça halinde RİXXE  adresinizden 03.09.2025 18:00:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('55a92380-a76d-4974-a5b9-542cdff8d2cb','491722947166','Sayın Erkan ÖZKÖKKAYA, 734788911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734788911\n\nDear Erkan ÖZKÖKKAYA, your shipment with 734788911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734788911\n\nBICARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('55abd248-850d-4568-b66e-1f58a4d51ba6','491728162123','Sayın ŞENGÜL BABAOĞLU, 371304914 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371304914\n\nDear ŞENGÜL BABAOĞLU, your shipment with 371304914 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371304914\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('55acf215-8608-417a-b0a9-c435b365d298','491743051897','598954734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5927 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598954734\n\nYour shipment with the number 598954734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5927. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598954734\n\nBICARGO','2','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('55b15b74-c48f-44d4-be8c-7d43a99a0baa','905431026110','Sayın yetkili; MERVE İÇEN adlı müşterinize 351330330 nolu gönderinizin köşe koltuk ürünü 5 parça halinde LENTA SOFA adresinizden 16.09.2025 16:58:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('55b66e99-ac78-4be3-9514-1dd22aab1534','3748376263636373','Sayın BİLGEN TATAR, 478901590 nolu gönderiniz 10251 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478901590\n\nDear BİLGEN TATAR, your shipment with 478901590 was delivered to you with the delivery code 10251. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478901590\n\n\nBICARGO','2','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('55b9e9c1-6839-458d-8a55-a5e741fbb728','905331602195','EMİLY RAMİREZ adlı müşterinizin 221897784 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('55c14030-f0ec-47dd-b69e-bedd86bb0bd1','31648122803','Sayın ERKAN KARAKUŞ , 248614567 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248614567\n\nDear ERKAN KARAKUŞ , your shipment with 248614567 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248614567\n\nBICARGO','1','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL),
('55c1fb49-6940-46b2-bc94-af49cae9a06d','491773889396','Sayın FATMA DUMAN, 371696993 nolu gönderiniz 9247 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371696993\n\nDear FATMA DUMAN, your shipment with 371696993 was delivered to you with the delivery code 9247. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371696993\n\n\nBICARGO','1','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('55ce065c-02dd-45a8-a180-d75d9e0e9a61','017656921957','Sayın RAMİN HUSSEİNİ, 44920682 nolu gönderiniz 5093 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44920682\n\nDear RAMİN HUSSEİNİ, your shipment with 44920682 was delivered to you with the delivery code 5093. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44920682\n\n\nBICARGO','2','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('55d2e3d9-4c96-48a2-b3b4-a1c3e4ed9a93','905335511664','Sayın yetkili; ENVER HAN ALKAN adlı müşterinize 37146102 nolu gönderinizin masa ürünü 2 parça halinde SM Tasarım adresinizden 21.07.2025 10:35:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('55d9e58f-d69a-469b-99b9-2c564fc52fcd','4917680857659','Sayın ISMAİL REMMO, 613813844 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613813844\n\nDear ISMAİL REMMO, your shipment with 613813844 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613813844\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('55de1b7b-f74c-4269-9747-605767ecf1ce','905335708965','İSVİÇRE adlı müşterinizin 248186638 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL),
('55e1d4ef-3b08-4350-9f0e-c4652a7567f5','905304259202','MEHRDAND RAZMPOUR adlı müşterinizin 478962763 nolu gönderisi 32 parça halinde yola çıkmıştır.','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('55e355ee-e831-454a-a1fa-d3c97ba03692','436641583122','Sayın HÜLYA KORKMAZ, 745724851 nolu gönderiniz 3602 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745724851\n\nDear HÜLYA KORKMAZ, your shipment with 745724851 was delivered to you with the delivery code 3602. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745724851\n\n\nBICARGO','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('55e51f36-3a08-4a48-9294-6739f5f8d42f','905336367828','Sayın yetkili; ??? adlı müşterinize 982426968 nolu gönderinizin Koltuk  ürünü 4 parça halinde Fatura adresinizden 18.07.2025 15:16:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('55e714bd-ddbe-4ef8-8d4c-f61a1c9891cf','905075277637','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin PLATİN YATAK 180X200 ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:12:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('55eae1eb-e5b7-4302-9027-c2f0c61d892c','905079358213','RABEB HOCQUARD adlı müşterinizin 74541057 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('55eb000a-f443-459b-bee1-33dce45bbf58','905451571652','MALİHA CETİN adlı müşterinizin 531309772 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('55ece548-1ad7-4eb8-a3a9-7bb18ca3e65a','41798375512','478223658 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1354 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478223658\n\nYour shipment with the number 478223658 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1354. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478223658\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('55edeeaf-cb1a-4e9d-99a8-08f91244880c','5354287784','Sayın MİTHAT MİTHAT, 23.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7314663\nŞifre : 7314663\n			\nBİCARGO','1',NULL,'f731f466-bf33-479e-af39-1ef919b02c88'),
('55fbe1a6-dd7a-4920-9763-4a684c5d2f70','1111111111','Sayın AAAA BBBBBB, 11.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2619344\nŞifre : 2619344\n			\nBİCARGO','2',NULL,'2c6a1c9e-fad3-44d2-8812-5ebe40baad05'),
('5600de03-8b58-4fc2-a6e6-94ddd443be86','905454259202','HAKAN YAZICIOĞLU adlı müşterinizin 478807426 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a570254-b092-4922-92c1-beea8773ea63',NULL),
('5600e6c3-c1f3-46da-94c4-5e96319ae606','905517075149','MEHMET ALİ ŞAHİN adlı müşterinizin 478616973 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('5608fbb4-f405-47be-8d25-f8895b97589a','905461661672','RAMAZAN HAVAÇEKEN(K) adlı müşterinizin 644879098 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('560dcbd2-2d55-4f59-b7f6-9698fbfe6653','4915221698583','Sayın REZA ÖMERİ, 449968881 nolu gönderiniz 8219 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449968881\n\nDear REZA ÖMERİ, your shipment with 449968881 was delivered to you with the delivery code 8219. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449968881\n\n\nBICARGO','1','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL),
('5611da17-e177-4bfb-b48f-dada29e0b716','905539740010','FAHRİYE KARTAL adlı müşterinizin 011255060 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('56145c38-513c-4d5f-9c2e-0d3d75df3987','905079358213','MUSTAFA YILMAZ SSH  adlı müşterinizin 745338988 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('561a6aa0-e3a6-41b6-a4b4-67b310f3aafd','905075277637','Sayın yetkili; ASLIHAN GÜÇLÜ adlı müşterinize 745554582 nolu gönderinizin HALI ürünü 1 parça halinde Fatura adresinizden 13.12.2024 16:13:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('561b8997-3ddb-4141-ba6d-9f389743f7a4','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin YATAK ürünü 1 parça halinde Fatura adresinizden 31.07.2025 14:56:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('561e8d69-05fc-4be3-83dc-b06813e2a817','905325998198','ÇİLEM KAYNI adlı müşterinizin 61428079 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL),
('561f7963-eb29-4a54-92db-4eb00d5766c3','491797333588','Sayın EMRE, 248968905 nolu gönderiniz 7038 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248968905\n\nDear EMRE, your shipment with 248968905 was delivered to you with the delivery code 7038. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248968905\n\n\nBICARGO','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('56214738-19ab-4308-820f-b373212ae16d','4915115356238','ŞÖFÖR NUMARASI\n					+905467896981','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('56248b53-cb58-431d-9949-cc875f770d96','905335511664','Sayın yetkili; JASMİNA YILMAZ adlı müşterinize 371785400 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 08.05.2025 14:49:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('56277a4e-5f55-4f50-a181-5ef735e8d518','905336367828','donya bazaz adlı müşterinizin 982692076 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('562f0c4f-1bc5-43cb-8e57-5692bf5a2149','4915223076449','ŞÖFÖR NUMARASI\n					+905467896981','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('56368678-7ec6-49c3-8a1e-ddeb65f01edc','003140374207','Sayın ERDİNÇ GENÇER, 745262490 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745262490\n\nDear ERDİNÇ GENÇER, your shipment with 745262490 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745262490\n\nBICARGO','2','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL),
('56377d18-e830-4f5c-a9b1-e4172a6a60f5','31650899845','478233957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478233957\n\nYour shipment with the number 478233957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478233957\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('5639a51b-36f5-4c89-b46f-8f730058d0df','491578629363','644178445 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644178445\n\nYour shipment with the number 644178445 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644178445\n\nBICARGO','2','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('563ba9aa-4227-437b-9832-b3742cd2ef93','905301592882','Sayın yetkili; BELGİN YAĞLI		 adlı müşterinize 910762495 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde Fatura adresinizden 25.07.2025 12:49:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('5646f15a-777e-4df9-8ccf-20e2f73fa8bc','4917657934133','Sayın EJDER SOLAK, 47838085 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47838085\n\nDear EJDER SOLAK, your shipment with 47838085 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47838085\n\nBICARGO','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('564904e1-d1e1-4a3d-a462-7c84cba6771a','491726428404','Sayın MEHMET BATMAZ, 46558561 nolu gönderiniz 3016 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/46558561\n\nDear MEHMET BATMAZ, your shipment with 46558561 was delivered to you with the delivery code 3016. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/46558561\n\n\nBICARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('564a483c-ddce-4bea-94be-6e264a5565fe','905443955915','NESİME BAGCI adlı müşterinizin 614652730 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL),
('564a4f3d-3cf3-407f-b97b-ed497a507686','905079047428','KECKİN GÜLÜZAR adlı müşterinizin 449921347 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','72595593-1c70-4451-8d5d-15322ee88f0f',NULL),
('564fcf23-a785-42ab-86fc-70d7b51f8918','905336367828','Sayın yetkili; ALİ ÇETİN  adlı müşterinize 982817887 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 10.01.2025 14:29:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('5652710a-1dfe-49be-93b2-558fcfa24db3','4917622528451','Sayın LİBELLA FRİSEURBEDAR , 231216092 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231216092\n\nDear LİBELLA FRİSEURBEDAR , your shipment with 231216092 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231216092\n\nBICARGO','1','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL),
('5653f4c7-1cb8-4cd0-90c8-73f114e2887c','905331602195','Sayın yetkili; AHMED AZEEZ  adlı müşterinize 221364325 nolu gönderinizin Natura sandalye siyah ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:19:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('56560830-d80b-4b19-93da-edb0e09e446d','436609950405','Sayın VOLKAN CELİK, 515785688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515785688\n\nDear VOLKAN CELİK, your shipment with 515785688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515785688\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('565632f4-73ff-4b05-8f7c-988fadee0df3','905079358213','MUSTAFA YILMAZ adlı müşterinizin 745445888 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL),
('56575fa9-7852-4489-b67d-ef5da35a5417','491621988472','Sayın HALİLOVİÇ ELMA, 371104317 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371104317\n\nDear HALİLOVİÇ ELMA, your shipment with 371104317 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371104317\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('5659fe62-74b8-4305-8fa3-d6ffbd1492d0','905461661672','RUKİYE BARUT SSH adlı müşterinizin 644625326 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('56606dcc-5dd0-4861-949a-c899dd76993f','1111111111','Sayın CAVDAROĞLU, 412955343 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412955343\n\nDear CAVDAROĞLU, your shipment with 412955343 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412955343\n\nBICARGO','2','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('566124dc-7fa0-4ef9-97cd-35230703c6a0','905446974799','Sayın yetkili; ŞENEL KURU adlı müşterinize 776312220 nolu gönderinizin karyola başlık ürünü 4 parça halinde ALFA YATAK YENİCE adresinizden 13.10.2025 12:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL),
('5663d109-13c0-4727-aa4b-169fd0b6a42e','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('5665f6c3-d913-415d-be47-aa202278550b','4368184013442','Sayın MEHMET COPUR, 675644991 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675644991\n\nDear MEHMET COPUR, your shipment with 675644991 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675644991\n\nBICARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('5669392f-3b27-44c9-b651-f051781d3f0d','491781529585','Sayın KUDRET KALK, 371804669 nolu gönderiniz 3063 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371804669\n\nDear KUDRET KALK, your shipment with 371804669 was delivered to you with the delivery code 3063. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371804669\n\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('566c4781-2206-4708-9bb0-e85bf7cd23d5','905421855834','Sayın yetkili; NAGİHAN ALKIRAN adlı müşterinize 338829299 nolu gönderinizin Verona Sandalye ürünü 3 parça halinde Occa Sandalye adresinizden 21.08.2025 15:33:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('566f7ebd-1641-4cb8-93af-c84b59784d25','4917685433742','Sayın HASAN KAYA, 64413417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64413417\n\nDear HASAN KAYA, your shipment with 64413417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64413417\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('5672c3db-0b0d-4c83-a833-c7c007e26c49','491721729468673','478403352 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478403352\n\nYour shipment with the number 478403352 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478403352\n\nBICARGO','2','b006cc45-9807-4678-89ca-491086a75064',NULL),
('5677a48f-c392-40c1-9014-54d8ed7aab29','4917623527687','74594122 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74594122\n\nYour shipment with the number 74594122 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74594122\n\nBICARGO','1','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL),
('5678663a-58d4-433b-83a2-a6c0ca492536','5325000578','Sayın Mehmet Karaman, 13.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1547443\nŞifre : 1547443\n			\nBİCARGO','1',NULL,'d15474ba-d4d3-4b8e-a5a1-bea3948aa1b1'),
('56799c4d-9936-453f-8fde-3da65da23d55','41764331829','Sayın NURCAN DOLDUR, 478223658 nolu gönderiniz 1354 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478223658\n\nDear NURCAN DOLDUR, your shipment with 478223658 was delivered to you with the delivery code 1354. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478223658\n\n\nBICARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('567da962-430a-46e0-ad24-4a613f9dca0a',NULL,'ESRA KAMBERİ adlı müşterinizin 081789192 nolu gönderisi 23 parça halinde yola çıkmıştır.','2','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('567eea50-dd6c-4c85-81e5-57911be0e09a','905331602195','PINAR ÇİÇEK adlı müşterinizin 221970338 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('5685a10e-7f7f-4178-8518-8f5ba2721d33','33771744012','Sayın TAKİ ÇAYCI(K), 644257752 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644257752\n\nDear TAKİ ÇAYCI(K), your shipment with 644257752 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644257752\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('5689d95c-9b06-4ec2-b1eb-cc1a106f8368','4915750975472','Sayın HALİL GÜLER, 478418764 nolu gönderiniz 6279 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478418764\n\nDear HALİL GÜLER, your shipment with 478418764 was delivered to you with the delivery code 6279. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478418764\n\n\nBICARGO','2','a95b6f69-d856-411d-92e3-628c20975e08',NULL),
('568b2810-337f-4bb3-b6d4-4b8999b375b0','905331602195','Sayın yetkili; TALL YOANN adlı müşterinize 221132707 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 21.01.2025 12:25:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('568cdac4-092a-43db-baf4-d56f871458c2','4917624718439','598148104 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3046 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598148104\n\nYour shipment with the number 598148104 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3046. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598148104\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('56915524-2b2b-4c41-a145-d491839ac3aa','33668292449','Sayın DİLARA TARHAN, 745233031 nolu gönderiniz 4429 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745233031\n\nDear DİLARA TARHAN, your shipment with 745233031 was delivered to you with the delivery code 4429. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745233031\n\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('569b5e24-c946-4564-96e2-b0aeb0046d2f','4356256625652652','223444495 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2150 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223444495\n\nYour shipment with the number 223444495 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2150. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223444495\n\nBICARGO','2','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL),
('569b656c-5831-4b7d-9c41-7fa269369e7a','4917624915178','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('569be064-36df-4161-ba59-1a0a19631542','905335511664','Sayın yetkili; EBRU AKSU adlı müşterinize 371117320 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 26.08.2025 18:34:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a5af105-d0c8-46fd-ad7c-0aa1fac82094',NULL),
('569c6079-5b56-4fa4-b2d3-3b5c08757ad3','41764103638','Sayın OKAY DERİNKUYU, 478402358 nolu gönderiniz 8803 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478402358\n\nDear OKAY DERİNKUYU, your shipment with 478402358 was delivered to you with the delivery code 8803. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478402358\n\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('569c9c89-8291-4050-acc6-c9666d9c7600','905350617509','Sayın yetkili; BAKACAK GİRAY adlı müşterinize 613814330 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 24.06.2025 11:33:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('56a87b3e-7dbf-4411-b890-d993ab7802c9','905336367828','SABRİNA ZAHEY adlı müşterinizin 982555492 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL),
('56aac983-fbe7-45bc-bbc2-d450eb1eabc5','4915228688524','Sayın YASEMİN KARAKOC, 976430102 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976430102\n\nDear YASEMİN KARAKOC, your shipment with 976430102 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976430102\n\nBICARGO','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('56aba316-da55-468f-a4ee-44911ae9757d','33618425759','Sayın SERHAT KARATAŞ , 449197003 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449197003\n\nDear SERHAT KARATAŞ , your shipment with 449197003 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449197003\n\nBICARGO','1','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL),
('56ac46f4-9550-40da-b59e-2d72ee601b0f','31686174189','Sayın CEMAL KÖSE, 750822079 nolu gönderiniz 7212 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750822079\n\nDear CEMAL KÖSE, your shipment with 750822079 was delivered to you with the delivery code 7212. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750822079\n\n\nBICARGO','1','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL),
('56b08630-62d7-4aa5-a325-7c78333df96e','33695016273','Sayın GÜLSÜM KOÇAK, 745632580 nolu gönderiniz 4676 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745632580\n\nDear GÜLSÜM KOÇAK, your shipment with 745632580 was delivered to you with the delivery code 4676. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745632580\n\n\nBICARGO','1','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL),
('56b576ed-4be3-4a6e-a09f-a4e04db3d004','905313340045','STEFAN SUCEVİC adlı müşterinizin 437133708 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('56b64ecd-4033-4b33-b557-47e0810af9f4','32498162350','Sayın BERKANT, 412252365 nolu gönderiniz 8029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412252365\n\nDear BERKANT, your shipment with 412252365 was delivered to you with the delivery code 8029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412252365\n\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('56b8e03f-dab7-43b6-91f4-28a136a32635','4917682417039','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('56bd374e-456e-4e20-932b-a6a034829c1e','905461661672','Sayın yetkili; GAMZE ŞAŞMA adlı müşterinize 644523362 nolu gönderinizin KÖŞE KOLTUK  ürünü 4 parça halinde RESTTİME KOLTUK adresinizden 05.05.2025 15:38:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('56be4a72-175d-4525-b39e-5b5a36827b26','905461661672','EMRE GÖZÜM(K) adlı müşterinizin 644312365 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('56c1e513-56aa-4c34-b51b-29ca13ce5b5b','905461661672','Sayın yetkili; GÜLŞEN KARATAŞ adlı müşterinize 644859309 nolu gönderinizin MERMER ÜST TABLA  ürünü 1 parça halinde FURKAN MERMER adresinizden 08.07.2025 14:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('56c36373-46b5-4cce-b149-10e2c3ee33b5','905355928266','BOZTAŞ adlı müşterinizin 412726953 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aaf63331-ccff-4ade-8965-5318b9f59d6e',NULL),
('56c6e696-6746-4488-bcfe-90453ead2cef','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL YATAK ODASI ürünü 21 parça halinde Fatura adresinizden 16.05.2025 18:12:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('56c73b98-06d8-42c7-bc3c-f0087c3c6012','4917621638496','Sayın ARZU AKSİ, 745817440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745817440\n\nDear ARZU AKSİ, your shipment with 745817440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745817440\n\nBICARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('56c73efa-3510-4a05-ad7b-3647626ee4be','41763221453','Sayın ZEHRA ÜNAL, 598320188 nolu gönderiniz 10670 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598320188\n\nDear ZEHRA ÜNAL, your shipment with 598320188 was delivered to you with the delivery code 10670. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598320188\n\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('56c7d146-6e25-434d-9256-f9c58a3c788c','491744713856','Sayın BERKAN AKTÜRK, 371823380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371823380\n\nDear BERKAN AKTÜRK, your shipment with 371823380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371823380\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('56c95d7e-6826-497d-b8d0-7bdf230d56b3','436602434621','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('56c963c0-6138-420f-b949-042155d14c2e','905421855834','MARİANE SARKİS adlı müşterinizin 338426911 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('56d217cc-9dab-41d7-839c-49dc8d5a3bb9','004915125808648','734525943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3917 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734525943\n\nYour shipment with the number 734525943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3917. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734525943\n\nBICARGO','2','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL),
('56d299c4-aae0-43cb-a976-6e535cba737d','9053259981980','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY YATAK 180x200 ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:34:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('56d75368-70aa-4b3c-ad73-7895ed1ecf67','905461661672','Sayın yetkili; ESRA MOLLA(K) adlı müşterinize 64471370 nolu gönderinizin karyola ürünü 3 parça halinde ALBESSA DESİGN adresinizden 02.10.2025 10:08:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf1f4b78-8b96-4650-9e12-82af1edcf06d',NULL),
('56d7fe3a-9575-4523-9bbc-20d26402ab85','905313340045','Sayın yetkili; ALPER ÖZDEMİR adlı müşterinize 437414847 nolu gönderinizin orta sehpa ürünü 4 parça halinde decoria adresinizden 02.06.2025 14:46:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('56e0f4b6-26a3-4a1f-9363-21955c23a7b1','31620244050','644490677 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7080 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644490677\n\nYour shipment with the number 644490677 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7080. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644490677\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('56e3c9ae-64a6-455f-abdd-1d40f4b3b898','905079358213','Sayın yetkili; MAJD KAMSHA adlı müşterinize 745653378 nolu gönderinizin PIER SANDALYE  ürünü 3 parça halinde Fatura adresinizden 23.09.2025 10:48:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('56e63361-c313-414a-a5d5-022f00bcbcb9','33772302875','449780250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6470 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449780250\n\nYour shipment with the number 449780250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6470. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449780250\n\nBICARGO','1','f9c61776-accb-469f-88e4-b551ad871fe8',NULL),
('56e8608d-0c3a-433e-b429-729fadc419b4','905335511664','Sayın yetkili; SÜLEYMAN SUNGUR adlı müşterinize 371365041 nolu gönderinizin TRAVERTEN MASA + SEHPA ürünü 1 parça halinde Fatura adresinizden 25.07.2025 10:37:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('56eb6820-c477-4af4-a5b7-d99c1d90d4eb','905442774505','ÇİĞDEM MURAT adlı müşterinizin 65758007 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL),
('56ed214b-f970-49ad-bb06-8f48975df644','491606817658','Sayın AKIN COŞKUNSU, 371365427 nolu gönderiniz 8032 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371365427\n\nDear AKIN COŞKUNSU, your shipment with 371365427 was delivered to you with the delivery code 8032. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371365427\n\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('56f280cf-424e-43df-9713-91666a736327','41768145302','Sayın GAZİ PINARBAŞI, 478125476 nolu gönderiniz 8794 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478125476\n\nDear GAZİ PINARBAŞI, your shipment with 478125476 was delivered to you with the delivery code 8794. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478125476\n\n\nBICARGO','1','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL),
('56f3036b-fe58-47b3-b45b-e318ca796710','905059175469','Sayın yetkili; GÜLCAN ÇELİKKANAT adlı müşterinize 428519862 nolu gönderinizin köşe  ürünü 4 parça halinde massi milano adresinizden 06.01.2025 13:49:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('56f3ca4d-9997-4831-9f2c-bee2e10e30f0','905078062550','Sayın yetkili; AHMET GÜMÜŞ adlı müşterinize 598387436 nolu gönderinizin SEHPA ürünü 2 parça halinde SM TASARIM adresinizden 02.10.2025 13:02:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('56f499d6-0fc7-4ddc-a710-2d06c474dfb1','4917641531210','Sayın SELİN ÖZALP, 644615727 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644615727\n\nDear SELİN ÖZALP, your shipment with 644615727 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644615727\n\n\nBICARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('56f589ee-ea21-474b-82a0-00810a6b80c3','4915254883380','Sayın ERSİN, 126377805 nolu gönderiniz 1409 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126377805\n\nDear ERSİN, your shipment with 126377805 was delivered to you with the delivery code 1409. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126377805\n\n\nBICARGO','1','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL),
('56f7d81b-97aa-4bbd-b57b-b121af3b6093','905304259202','ADEM ŞAHİN adlı müşterinizin 478685156 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL),
('56fc4797-6e49-4697-88d9-7d18e4ebc7ad','905454259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin masa-sehpalar ürünü 2 parça halinde çelikbey inegöl depo adresinizden 08.05.2025 14:30:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('56fe95a4-d8ac-4502-b212-d99d5e49c051','905075277637','MÜŞERREF GONCA adlı müşterinizin 745831913 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL),
('56ff1208-3f7c-44a0-bcf6-2ec94a13244c','33487361121','Sayın AKRAH ABDULNASSER, 412968011 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412968011\n\nDear AKRAH ABDULNASSER, your shipment with 412968011 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412968011\n\nBICARGO','2','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL),
('5700bcb3-c721-4832-9855-12555dc1ace9','32489297598','437392386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3850 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437392386\n\nYour shipment with the number 437392386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3850. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437392386\n\nBICARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('57044c49-d3cb-4aeb-8596-1af628ff0617','905075277637','Sayın yetkili; ÖMER YILDIZ adlı müşterinize 745249761 nolu gönderinizin VOYAGE KÖŞE KOLTUK  ürünü 3 parça halinde RİXXE  adresinizden 17.07.2025 13:01:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7979b44-eac7-41b0-a981-1f2165181d24',NULL),
('5708162f-9ab8-4423-a0a8-1393d02740e9','905333221039','FERHAT  adlı müşterinizin 750728735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('5708b4d7-f939-4db2-b64b-04e39f5374c2','905461661672','ÖMER VAROL(K) adlı müşterinizin 644714925 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('57094877-8277-4f86-8193-46104e05bd8b','905461661672','Sayın yetkili; KIYMET DALMAN(K) adlı müşterinize 644742878 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 06.10.2025 16:48:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('57096f7c-dd7b-48ed-9f79-24a2f89b8787','01794421633','Sayın NİLGÜN LEUKEL, 531629494 nolu gönderiniz 3037 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531629494\n\nDear NİLGÜN LEUKEL, your shipment with 531629494 was delivered to you with the delivery code 3037. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531629494\n\n\nBICARGO','2','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('570c395e-28b6-4907-9e78-3247c881b1c1','905325000478','Sayın yetkili; (CANSHOME) ALİ GALİP DUMAN adlı müşterinize 412383524 nolu gönderinizin Canshome ürünü 9 parça halinde Fatura adresinizden 01.09.2025 12:56:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c76c212f-c2f8-492d-9608-3c99a318c621',NULL),
('570f1ac7-5d8e-4285-9686-94584518a0bb','352621224281','Sayın NURKOVİC JASMİN, 982176810 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982176810\n\nDear NURKOVİC JASMİN, your shipment with 982176810 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982176810\n\nBICARGO','1','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL),
('57174552-810e-4d4c-ac33-b7a644825359','33651400749','Sayın ÖZKAN ÖZKOŞAR		, 910482480 nolu gönderiniz 1612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910482480\n\nDear ÖZKAN ÖZKOŞAR		, your shipment with 910482480 was delivered to you with the delivery code 1612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910482480\n\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('57223e7e-9f16-4953-8afc-acf7d4798737','4747732737737827','Sayın HOZAN, 73529249 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73529249\n\nDear HOZAN, your shipment with 73529249 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73529249\n\nBICARGO','2','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL),
('57234303-64e6-4b20-afb4-6c18e253238e','905313340045','Sayın yetkili; NİSA PARLAR adlı müşterinize 437895842 nolu gönderinizin orta sehpa ürünü 2 parça halinde masami adresinizden 08.08.2025 14:48:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('57238ded-d7de-47b7-b052-8ebe90fa9454','491629768572','Sayın ESRA BALTACI, 644711459 nolu gönderiniz 7040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644711459\n\nDear ESRA BALTACI, your shipment with 644711459 was delivered to you with the delivery code 7040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644711459\n\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('57250b95-1717-49f9-9f11-febb2d6f263d','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin SANDALYE ürünü 2 parça halinde GARDEROBE adresinizden 20.05.2025 14:51:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('5728e4f4-b98e-42d0-acc6-23293e543247','905539740010','YEŞİM AKGÜN  adlı müşterinizin 011716616 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('57292034-f92d-4bbc-8758-9e166fb03bbe','905461661672','Sayın yetkili; CANSEL KUŞ adlı müşterinize 644684020 nolu gönderinizin traverten masa ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 07.08.2025 14:38:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('5731be17-0698-46b4-9577-f8c958e5cfa6','33768416130','745547550 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6738 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745547550\n\nYour shipment with the number 745547550 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6738. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745547550\n\nBICARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('573556a3-1f33-479f-89b6-1b5663a54479','4915788624211','Sayın MUSTAFA ÇELİK, 478945094 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478945094\n\nDear MUSTAFA ÇELİK, your shipment with 478945094 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478945094\n\nBICARGO','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('57367230-da81-4100-882e-f86fe8aef4a8','4917687849417','478723327 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6041 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478723327\n\nYour shipment with the number 478723327 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6041. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478723327\n\nBICARGO','1','476a35ac-9d9d-4d70-a965-370a980951c2',NULL),
('5739404b-cb08-4b3e-80d0-f41f275121f3','31611470628','221883606 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8153 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221883606\n\nYour shipment with the number 221883606 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8153. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221883606\n\nBICARGO','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('573c7c7a-7880-4bfe-bc4a-28ea5be631d1','905313340045','Sayın yetkili; CEM BÜYÜKDEMİRCİ adlı müşterinize 437545074 nolu gönderinizin Kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 06.09.2025 12:58:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('5742053b-17c0-4793-b1d6-b9b5a6373792','905461661672','Sayın yetkili; BETÜL GÜNER adlı müşterinize 644550858 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 28.08.2025 11:57:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('57425429-bc9f-4bca-926c-74d99d62d70c','373737278373','Sayın MERYEMA TEKİN, 478958383 nolu gönderiniz 10755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478958383\n\nDear MERYEMA TEKİN, your shipment with 478958383 was delivered to you with the delivery code 10755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478958383\n\n\nBICARGO','2','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('5743ff78-9593-40ed-a970-a5b63e8bdf7b','4917635994280','428159880 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2667 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428159880\n\nYour shipment with the number 428159880 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2667. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428159880\n\nBICARGO','1','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL),
('5745e908-4f88-4494-8c4a-b0916917b130','905451571652','PERİHAN ÖZVURAL adlı müşterinizin 531344250 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('5746ae13-7edc-4526-9572-04924ceb7f94','905335511664','Sayın yetkili; SEMİH YEŞİLYAYLA adlı müşterinize 371716908 nolu gönderinizin sandalye ürünü 8 parça halinde Sandalyeci Bekir adresinizden 24.09.2025 16:28:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('5755cc8b-b924-4046-aee7-18f977b5c1f9','905336367828','HİLAL YAVUZ adlı müşterinizin 982194447 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL),
('575978cd-afa3-4a18-a596-a3384a6c7445','905349208933',' ELİF MUHCU adlı müşterinizin 127281736 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('5759d0a7-4644-4409-b83b-01e8fb5172f2','4915152072002','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('575bd44d-a3a0-486a-8d64-1f891f7c44b0','32470652077','Sayın SEYFETTİN, 703581635 nolu gönderiniz 6725 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/703581635\n\nDear SEYFETTİN, your shipment with 703581635 was delivered to you with the delivery code 6725. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/703581635\n\n\nBICARGO','1','06683822-5af1-4c0e-a0e5-5ca26659fb23',NULL),
('575d34fa-178c-4d87-91b9-38f1ffd2ebb0','049015778795333','248418017 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248418017\n\nYour shipment with the number 248418017 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248418017\n\nBICARGO','2','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL),
('5762cfc8-ef7d-4f00-ae2e-6f56a0e17b5a','4917922929386','33841628 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33841628\n\nYour shipment with the number 33841628 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/33841628\n\nBICARGO','2','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('576676c7-6c66-425f-9e8c-443dea766444','33751366069','449558519 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449558519\n\nYour shipment with the number 449558519 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449558519\n\nBICARGO','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('57695690-e169-4751-9d57-13d7773bb1b4','436603406293','Sayın ARZU ASLAN, 675629833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675629833\n\nDear ARZU ASLAN, your shipment with 675629833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675629833\n\nBICARGO','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('576be48f-f0ca-4af4-a02f-ce3aff9087f6','905313340045','Sayın yetkili; SEMİH CENGİZ adlı müşterinize 437551575 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde PABLO HOME adresinizden 18.06.2025 11:31:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('576d303c-23e2-492c-9f86-462b4e219e9d','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin YATAKLAR ürünü 4 parça halinde Fatura adresinizden 20.05.2025 12:01:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('5773800a-ac0a-433c-a259-3c1f8f406660','31614355006','Sayın AKIN KARUT, 644775291 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644775291\n\nDear AKIN KARUT, your shipment with 644775291 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644775291\n\nBICARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('57771085-cac0-4b79-9d12-0d577d246f63','4917661287885','Sayın MEHMET ORMANOĞLU, 614636969 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614636969\n\nDear MEHMET ORMANOĞLU, your shipment with 614636969 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614636969\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('577c91e9-462f-4601-bd34-6c446ef826a3','33651871381','Sayın YASSMİNE JADMOUR, 982455918 nolu gönderiniz 9795 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982455918\n\nDear YASSMİNE JADMOUR, your shipment with 982455918 was delivered to you with the delivery code 9795. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982455918\n\n\nBICARGO','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('577dbf9a-54f9-4713-80af-840191339ed6','4560523452','Sayın SİHAM MAHMOUD, 598280715 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598280715\n\nDear SİHAM MAHMOUD, your shipment with 598280715 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598280715\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('5781ab85-3db5-43bf-9da4-31fb05da3c82','495118315683','644100790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1576 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644100790\n\nYour shipment with the number 644100790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1576. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644100790\n\nBICARGO','2','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('5784f2ce-c9b0-42b5-a6cf-08053cabf864','905075277637','MEHMET KIRMALI SSH adlı müşterinizin 745961245 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('5788d05f-f870-43e3-ac3c-1cf9c61128fc','905312762034','Sayın yetkili; ESMA GÜNVAR adlı müşterinize 808396862 nolu gönderinizin Köşe Takımı ürünü 3 parça halinde BELİTA HOME adresinizden 02.10.2025 14:45:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('5788f6be-73d7-43a6-9a50-174cd4678991','491742627039','Sayın SEDA ULUSOYLU, 371691350 nolu gönderiniz 1045 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371691350\n\nDear SEDA ULUSOYLU, your shipment with 371691350 was delivered to you with the delivery code 1045. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371691350\n\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('57894c22-979d-41bf-8372-748884552a04','905312762034','ESMA GÜNVAR adlı müşterinizin 808396862 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('578b64fe-eb92-4c13-afc5-21fee8675d71','905336367828','GHATİA PARASCHİVA adlı müşterinizin 982163675 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('57922a19-b200-4fcd-ac2d-2d7653fbf3d6','905075277637','ERDİNÇ GENÇER adlı müşterinizin 745262490 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL),
('5795c148-36c8-4d84-b2e0-40eccd008b0b','905331602195','Sayın yetkili; GODİNA REJEP  adlı müşterinize 221157320 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 03.03.2025 12:15:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('579718c8-7416-4725-a05d-bce2948d4cda','905454259202','BURCU GÖKÇE adlı müşterinizin 478559134 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('579909f1-4cab-4628-bfb1-23ff9ff4fd05','491726666457','598396998 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598396998\n\nYour shipment with the number 598396998 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598396998\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('579bf03e-17a4-49fa-b53a-e4e11c2afbb0','436606319101','Sayın ALİ CAN YILMAZ, 371102325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371102325\n\nDear ALİ CAN YILMAZ, your shipment with 371102325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371102325\n\nBICARGO','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('579c4baa-bc41-4120-9872-7039d18f7337','905078062550','Sayın yetkili; YAVUZ GÜNEŞ adlı müşterinize 59874048 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde SM TASARIM adresinizden 23.09.2025 10:40:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('579da246-ed56-41c4-a71f-e3b05d60283d','905335708965','İSABEL SEDRAYKYAN adlı müşterinizin 735977134 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL),
('579f3e04-6d47-4f0a-9c73-cf6f860ac0a9','33651723010','Sayın İLYAS ÖNSÜZ, 745334668 nolu gönderiniz 7642 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745334668\n\nDear İLYAS ÖNSÜZ, your shipment with 745334668 was delivered to you with the delivery code 7642. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745334668\n\n\nBICARGO','1','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL),
('57a300b3-ed7f-40e6-aeda-e5664469b9ce','31625064385','Sayın BOLL TRADE, 412173308 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412173308\n\nDear BOLL TRADE, your shipment with 412173308 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412173308\n\nBICARGO','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('57a316d5-be20-4c69-8298-a840d392ab06','4915785558828','Sayın EKREM ASLAN, 91059017 nolu gönderiniz 8118 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91059017\n\nDear EKREM ASLAN, your shipment with 91059017 was delivered to you with the delivery code 8118. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91059017\n\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('57a3465b-8374-40bc-80eb-555de5808933','4917693356695','Sayın CEYLAN ÇELİK, 745747218 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745747218\n\nDear CEYLAN ÇELİK, your shipment with 745747218 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745747218\n\nBICARGO','2','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('57a82b52-5985-4190-bb90-19a83736535c','905365908694','MAİL BOXES adlı müşterinizin 223254418 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL),
('57a83816-ab4f-4003-9b83-9ab46879cef7','31681124473','Sayın ÖZAY ÖZDEMİR YILDIZ (SSH), 221530805 nolu gönderiniz 10468 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221530805\n\nDear ÖZAY ÖZDEMİR YILDIZ (SSH), your shipment with 221530805 was delivered to you with the delivery code 10468. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221530805\n\n\nBICARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('57a97087-e927-4a28-8385-5877e78a23d6','4917661993409','Sayın MUSTAFA ÜNLÜSOY, 478479612 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478479612\n\nDear MUSTAFA ÜNLÜSOY, your shipment with 478479612 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478479612\n\nBICARGO','1','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL),
('57abbf8f-b310-462a-9a55-92f54256c7ea','33650437486','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('57af5976-5010-479d-aeb3-0ce34a2928d6','905510396989','GAMZE ÖZDEMİR adlı müşterinizin 319645924 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('57b2428d-8810-41cd-9684-5f9ba772dd72','905365908694','HASAN PİCKEL adlı müşterinizin 223210999 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','04757da4-5689-4b28-8662-727fabf44027',NULL),
('57bdc56a-74b1-4a5a-b09b-fc7e41a8d115','905368336516','FOUAD BJA adlı müşterinizin 515103460 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('57c4a356-b078-4448-a415-23688bc8b924','491604615612','Sayın AHMET AĞIRMAN, 371413703 nolu gönderiniz 8985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371413703\n\nDear AHMET AĞIRMAN, your shipment with 371413703 was delivered to you with the delivery code 8985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371413703\n\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('57c548a9-c5a0-40d8-b05e-5f3d65b0aa63','905356395415','MURAT AKTAŞ adlı müşterinizin 163961995 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL),
('57cf65bc-acdc-474a-b989-d05e75321b9c','905325000478','EREN adlı müşterinizin 412922680 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL),
('57d0542c-2935-4591-a475-1c9606055b49','4917632724714','598220619 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7642 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598220619\n\nYour shipment with the number 598220619 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7642. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598220619\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('57d6b3c7-75f2-4649-91f0-088f38f375ac','905325000478','MURAT  adlı müşterinizin 412716766 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL),
('57d7fb1f-d710-463b-8308-862aa271685a','905075277637','NİLÜFER YAMAN adlı müşterinizin 745972164 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL),
('57d978ac-6e5a-4676-a99f-686ffbc8da4c','491738798802','Sayın MELİKE ÇALIŞKAN, 598172413 nolu gönderiniz 9233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598172413\n\nDear MELİKE ÇALIŞKAN, your shipment with 598172413 was delivered to you with the delivery code 9233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598172413\n\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('57db86b1-8271-4570-a422-14b1ea6586c4','491774238890','644507096 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7656 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644507096\n\nYour shipment with the number 644507096 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7656. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644507096\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('57e44803-45e2-4a62-a0b7-acdcf366008a','004915255400500','Sayın HALİT KADİM, 248533509 nolu gönderiniz 6466 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248533509\n\nDear HALİT KADİM, your shipment with 248533509 was delivered to you with the delivery code 6466. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248533509\n\n\nBICARGO','2','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL),
('57e49455-48c3-49ae-991e-7c10e5e9d7d3','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin SEHPA ürünü 1 parça halinde Masami Mobilya adresinizden 26.09.2025 14:53:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('57ea194a-812b-43e0-8efb-af7916539e23','905523438971','KATRİN MESİNGER adlı müşterinizin 896847151 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('57ed63d8-9bac-46da-8265-bd19443d1dfe','905461661672','GÜLAY FASOLD adlı müşterinizin 644820551 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('57ef57fa-d345-4104-be88-30ab5a0ded1f','491787074737','Sayın ERKAM CAMİ, 027547681 nolu gönderiniz 4913 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/027547681\n\nDear ERKAM CAMİ, your shipment with 027547681 was delivered to you with the delivery code 4913. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/027547681\n\n\nBICARGO','1','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL),
('57f1071f-2533-4e70-b5d8-0ef0d438c97f','4917670381209','Sayın HÜDAYİ HARMANCI, 64422113 nolu gönderiniz 5376 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64422113\n\nDear HÜDAYİ HARMANCI, your shipment with 64422113 was delivered to you with the delivery code 5376. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64422113\n\n\nBICARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('57f326e7-a49e-41b4-ad19-bda0304f2fd1','32483436523','Sayın BELLA MEUBEL, 412102597 nolu gönderiniz 6002 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412102597\n\nDear BELLA MEUBEL, your shipment with 412102597 was delivered to you with the delivery code 6002. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412102597\n\n\nBICARGO','1','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('57f5b2e1-186e-4a4b-b135-813eb19a2aa9','905059175469','Sayın yetkili; ŞÜKRÜ AKSOY adlı müşterinize 428930069 nolu gönderinizin koltuk ayagı ssh ürünü 1 parça halinde Fatura adresinizden 13.01.2025 17:22:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('57f7aeef-734a-4909-8688-24462e40e41c','905331602195','Sayın yetkili; İLAYDA CALINALTI adlı müşterinize 22137977 nolu gönderinizin Balat sandalye galxy bej ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:25:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('57f7e9dc-b04f-4b38-bdea-e90de448d5f3','491634503423','910586114 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3432 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910586114\n\nYour shipment with the number 910586114 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3432. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910586114\n\nBICARGO','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('57f8327b-a5f9-44b1-8c49-3605af97ec03','491607764360','Sayın İPEK ÇAKMAKÇI, 505129515 nolu gönderiniz 9569 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505129515\n\nDear İPEK ÇAKMAKÇI, your shipment with 505129515 was delivered to you with the delivery code 9569. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505129515\n\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('58029c95-4924-4360-8538-3066cbeaa1ce','491632326581','478930985 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2244 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478930985\n\nYour shipment with the number 478930985 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2244. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478930985\n\nBICARGO','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('5803c1a6-7130-4310-8953-a2686f1787fa','905059175469','Sayın yetkili; SALİH DURAK adlı müşterinize 428718727 nolu gönderinizin 180lik yatak rollpack ürünü 1 parça halinde befa yatak adresinizden 02.01.2025 10:31:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('58058654-ed26-4221-85f5-33afb1df2db2','905325000478','DJDJFJDNDND adlı müşterinizin 412838128 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('58074fe5-526c-4452-ab9e-d408cdd83e8b','4917630550743','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('5808c4dd-e6fe-4b2c-b62a-949952a8348f','905331602195','Sayın yetkili; TBATOU SELMA  adlı müşterinize 221649442 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 29.01.2025 15:50:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('58090fe0-30ee-4a41-bcc6-656d4cec6551','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Traverten masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:34:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('580f4ce2-4176-4787-ae19-e4579da6911e','491734349873','Sayın MUSTAFA ÖZTAŞ, 644147833 nolu gönderiniz 6489 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644147833\n\nDear MUSTAFA ÖZTAŞ, your shipment with 644147833 was delivered to you with the delivery code 6489. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644147833\n\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('5814f878-56d7-4035-b786-886094015ed8','0033651431937','Sayın BOURAS ABDELGHANİ, 501703321 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501703321\n\nDear BOURAS ABDELGHANİ, your shipment with 501703321 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501703321\n\nBICARGO','2','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('581548e5-0519-4ca5-b4fb-5bda425aad50','33753319527','478431848 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478431848\n\nYour shipment with the number 478431848 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478431848\n\nBICARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('5819d446-dafc-4cbd-891d-0f2feec2b1b5','4915256924287','644903033 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9081 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644903033\n\nYour shipment with the number 644903033 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9081. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644903033\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('5821905b-9811-48a9-b3eb-6a7a748e172c','905461661672','MELİSA DÜZME adlı müşterinizin 644796083 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('58249c5d-5c5d-4e29-bf16-6bad45fce6de','905313340045','Sayın yetkili; DİANA HUSSEİN adlı müşterinize 437917777 nolu gönderinizin masa  ürünü 6 parça halinde masami adresinizden 07.05.2025 14:32:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('582bccec-7707-4279-bbd4-26d8bff996cf','41796133167','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('582be078-9478-40d7-a891-d5cb6b75bf1e','32473991543','449769276 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449769276\n\nYour shipment with the number 449769276 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449769276\n\nBICARGO','1','ce4c8f08-9110-4882-8b15-e54368f68914',NULL),
('582d5034-c6fa-41e9-ab3b-f00bf20d4d31','32487655588','Sayın MEHDİ NAEİMİ, 319276460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319276460\n\nDear MEHDİ NAEİMİ, your shipment with 319276460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319276460\n\nBICARGO','1','4475a939-a408-4d10-a256-61dc03f279da',NULL),
('582da1d0-0374-4a3c-bfd7-ae0f501b672a','0000000000000000','Sayın ESKİŞEHİR 2, 412472932 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412472932\n\nDear ESKİŞEHİR 2, your shipment with 412472932 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412472932\n\nBICARGO','2','0c0919ed-e869-4b33-a525-8e05358a4852',NULL),
('58314056-d301-498b-9ca1-a71c4557d19d','905301592882','Sayın yetkili; RAMAZAN ALTINKAYNAK adlı müşterinize 910163146 nolu gönderinizin PREMİUM U KÖŞE KOLTUK ürünü 7 parça halinde Fatura adresinizden 02.04.2025 12:32:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('5834b483-d63c-4dac-b9d2-e4764aabd81b','31648828012','Sayın MİYASE SARIKAYA, 221966080 nolu gönderiniz 4095 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221966080\n\nDear MİYASE SARIKAYA, your shipment with 221966080 was delivered to you with the delivery code 4095. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221966080\n\n\nBICARGO','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('583605f5-9f41-4212-9393-cb1b7fe3ce43','905356503956','AAAAAAAAAAA adlı müşterinizin 027517327 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL),
('583a036f-657a-4e21-8492-e1ef51222ffd','905331602195','ÖZGÜR GÖKÜZÜM adlı müşterinizin 22142813 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('583b45dd-c51a-4634-b5d7-fe284df1000c','4917622304263','Sayın SİBEL SAYDAM, 08159662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/08159662\n\nDear SİBEL SAYDAM, your shipment with 08159662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/08159662\n\nBICARGO','1','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL),
('583f3ba7-4448-484a-a605-8cb2fa62c2eb','4917621638496','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('58444e22-0c1e-4f51-bf63-e66d19ae4dc9','','Sayın MUSTAFA KORKMAZ, 428184423 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428184423\n\nDear MUSTAFA KORKMAZ, your shipment with 428184423 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428184423\n\nBICARGO','2',NULL,NULL),
('5845a35d-9bc8-4f3a-bba7-66ebb1688f50','905335708965','WALLA DİAB adlı müşterinizin 735718998 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL),
('5849a016-0d23-47d3-956a-383cb5603994','436605971568','Sayın ALİ ALBAY, 517205085 nolu gönderiniz 3233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517205085\n\nDear ALİ ALBAY, your shipment with 517205085 was delivered to you with the delivery code 3233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517205085\n\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('5849f592-cc92-43f1-ab90-b00188a1b4f8','905079047428','EMAL ENRİQUE adlı müşterinizin 449511744 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57ca2461-e718-4402-86f5-359b366200e6',NULL),
('5850e063-bdf7-4d1b-9e86-c53eb3700f32','905301592882','Sayın yetkili; M.ALİ ÇETİN adlı müşterinize 910129924 nolu gönderinizin 3lü Koltuk  ürünü 1 parça halinde Fatura adresinizden 13.10.2025 12:17:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('58532743-4c37-4cca-9119-f6f304a55b68','33768511676','Sayın FATMA FİLİZ DEMİR, 910657387 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910657387\n\nDear FATMA FİLİZ DEMİR, your shipment with 910657387 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910657387\n\nBICARGO','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('585b0551-f315-409f-b1d8-64dd1fbab150','4560523452','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('585d51b6-90f6-40d3-95a5-44c44c5f8711','905313340045','FAİSAL İBRAHİM adlı müşterinizin 437319119 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('585e666c-b1d6-44f9-a3db-4f1177ce7281','4915906432284','501452801 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7494 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501452801\n\nYour shipment with the number 501452801 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7494. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501452801\n\nBICARGO','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('585f9a95-cf28-42c0-a2c2-0a930018ac6b','905454259202','Sayın yetkili; SÜMEYYE ARSLAN adlı müşterinize 478355116 nolu gönderinizin KÖŞE TAKIMI 2,5 M3 GZÜEL VİDEO ÇEKMEMZ ürünü 3 parça halinde çelikbey inegöl depo adresinizden 15.11.2024 19:16:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('58680359-4cd2-42c9-9548-896b51e01287','905454259202','MUHAMMET ALTUNKAYA adlı müşterinizin 478681042 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('586a1002-54d4-4398-ba66-17754fbc15e9','491726507208','Sayın BUSE HOME, 755919446 nolu gönderiniz 10213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/755919446\n\nDear BUSE HOME, your shipment with 755919446 was delivered to you with the delivery code 10213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/755919446\n\n\nBICARGO','1','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL),
('586a4486-ba3d-4f5a-952f-9c345f34a845','905331602195','GURAY SEYFELİ adlı müşterinizin 221390997 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('586dfa85-890c-4e52-9d16-91f04c9fa0d3','33781975694','613809111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1634 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613809111\n\nYour shipment with the number 613809111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1634. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613809111\n\nBICARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('586e276c-e237-4d79-867f-945199aa8576','905331602195','MOHAMED SAİD ZARZAURİ adlı müşterinizin 221240151 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9feff913-404e-4b4c-b57f-21740becbcff',NULL),
('586e58a8-217c-460d-8a25-cc576e81f68b','4915158856914','598493196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4013 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598493196\n\nYour shipment with the number 598493196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4013. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598493196\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('586f40ab-edb8-420d-a24a-d85a3a537ef3','905454259202','LEMAN EMRE adlı müşterinizin 478913776 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d7a12701-09c4-4320-85a8-07d8731effaa',NULL),
('58721594-8df6-4b80-9de6-f39fce12cce0','33783164469','412109820 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3861 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412109820\n\nYour shipment with the number 412109820 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3861. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412109820\n\nBICARGO','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('5877d533-efcb-480a-b8b3-41acc283f578','33769844475','221413192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1455 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221413192\n\nYour shipment with the number 221413192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1455. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221413192\n\nBICARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('587d4fc0-c46b-4d3e-955f-4fc0879796c0','4917677017660','Sayın MARİNELA MARİNKOVİC, 505948491 nolu gönderiniz 5263 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505948491\n\nDear MARİNELA MARİNKOVİC, your shipment with 505948491 was delivered to you with the delivery code 5263. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505948491\n\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('587ed158-ff7d-409a-a67f-97a0be7ac85c','905059175469','MEHMET KILINÇ adlı müşterinizin 428173598 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('5880dd99-d0a0-47c8-9368-620528fc11de','31614272440','657832584 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657832584\n\nYour shipment with the number 657832584 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657832584\n\nBICARGO','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('58852437-c805-459a-ac7a-cd9efe193cf8','5334943834','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('58861d17-4632-42d5-b464-b0fdea76bc2e','905331602195','Sayın yetkili; NAGLA NAGUİB MAHFOUD adlı müşterinize 221383692 nolu gönderinizin 90x200 koyu ceviz masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:09:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d',NULL),
('588d5f5e-86b5-42b0-9efc-ab18295f69eb','491789146885','Sayın BİROL ELİBOL, 437609907 nolu gönderiniz 9076 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437609907\n\nDear BİROL ELİBOL, your shipment with 437609907 was delivered to you with the delivery code 9076. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437609907\n\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('588d7138-550f-4e15-af87-34d5a89ea588','491736344643','Sayın TUĞBA HANIM, 126421974 nolu gönderiniz 9116 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126421974\n\nDear TUĞBA HANIM, your shipment with 126421974 was delivered to you with the delivery code 9116. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126421974\n\n\nBICARGO','1','0831e36a-bfec-49cb-862f-5d57cf563310',NULL),
('589016cd-6c20-4dfc-8705-41b4d80a9ec0','491632213386','Sayın ISRA ISKENDER, 43736182 nolu gönderiniz 10892 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43736182\n\nDear ISRA ISKENDER, your shipment with 43736182 was delivered to you with the delivery code 10892. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43736182\n\n\nBICARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('5890c961-be72-4755-8db7-ca7ce3f70886','905079358213','BURHAN AKMEŞE adlı müşterinizin 745761149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('5890cf16-2807-41e4-af6a-131c5a6e7e67','4915772515215','644901751 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6525 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644901751\n\nYour shipment with the number 644901751 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6525. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644901751\n\nBICARGO','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('58914bf4-2b66-4e35-a163-7470132a272c','491634257044','Sayın ŞÜKRÜ AKSOY, 428490126 nolu gönderiniz 2363 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428490126\n\nDear ŞÜKRÜ AKSOY, your shipment with 428490126 was delivered to you with the delivery code 2363. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428490126\n\n\nBICARGO','1','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL),
('589219a3-caeb-4aca-a22a-af91dc45d25e','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin MALDİV YATAK ODASI DOLAP 8 KAPAKLI ürünü 25 parça halinde acca adresinizden 20.05.2025 16:58:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('58969f12-5b07-474d-b2b8-a265b3234323','905363385813','ÇUVAL  adlı müşterinizin 976423277 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','79c8efb8-c504-45ca-bec0-780372b87574',NULL),
('58997ab4-af74-434e-b8d7-1e9bb4834071','905059175469','SİDAR AKDENİZ adlı müşterinizin 428178028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('58a04f33-6d24-4576-a750-d86872469824','01729404068','644834421 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10089 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644834421\n\nYour shipment with the number 644834421 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10089. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644834421\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('58a19e93-42fe-422e-b2cd-87582b63ba92','905059175469','Sayın yetkili; ESRA ELİŞ adlı müşterinize 428704278 nolu gönderinizin ortas+2yan sehpa+puf ürünü 4 parça halinde family adresinizden 23.05.2025 15:16:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('58a52a38-b7f0-40ef-9cbf-7e17c96264f3','905356395415','MURAT AKTAŞ adlı müşterinizin 163401674 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL),
('58a558e0-cee0-4dad-9fee-6505154d5257','436603002938','437306380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4025 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437306380\n\nYour shipment with the number 437306380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4025. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437306380\n\nBICARGO','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('58a63194-75ee-47ae-81a1-d3831e4b916e','905069116877','Sayın yetkili; AYYNUR DURSUN adlı müşterinize 817136073 nolu gönderinizin Star köşe ürünü 7 parça halinde Fatura adresinizden 20.05.2025 10:53:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('58a96f44-e3a1-4437-b600-6342082fed22','905454259202','DİLAVER ULUTAŞ adlı müşterinizin 478670997 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('58b00e0f-a313-42d2-8c1f-21bc0ed68cf4','905069116877','EDA ABUL adlı müşterinizin 817160215 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('58b1474a-a488-4a30-a5a9-25fec1c67839','33760972020','745439695 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745439695\n\nYour shipment with the number 745439695 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745439695\n\nBICARGO','1','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL),
('58b8261b-05c3-477b-ad21-2df10730b088','491778339684','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('58bf7206-b479-4acf-9c9d-ca1873999dff','491788204430','Sayın SAHDİYE BİSKİN, 614707427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614707427\n\nDear SAHDİYE BİSKİN, your shipment with 614707427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614707427\n\nBICARGO','1','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL),
('58c0b982-ca8c-4ebd-9488-34003320300c','905461661672','GAMZE ŞAŞMA adlı müşterinizin 644523362 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('58c1c10e-8c66-4d00-91c0-3fd6597b2b74','905350617509','MEHMET GÖK adlı müşterinizin 613420026 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('58c2093f-877e-48e2-b7d0-090e7b6a6518','41788884872','31922563 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10575 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/31922563\n\nYour shipment with the number 31922563 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10575. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/31922563\n\nBICARGO','1','c7e797cf-e784-4ba3-bf54-33ba82cd024b',NULL),
('58c22e3a-414b-49f9-9c66-8abe328b961e','32487435166','268368509 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5231 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/268368509\n\nYour shipment with the number 268368509 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5231. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/268368509\n\nBICARGO','1','9c99f254-2612-4029-ac15-ffb095b93de3',NULL),
('58c29024-6183-4cfd-bcc2-b397bf15c0b2','4444444444444444','Sayın HİEM, 73597674 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73597674\n\nDear HİEM, your shipment with 73597674 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73597674\n\nBICARGO','2','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL),
('58c3f6cb-6aa9-4e73-ab08-7df15fb839aa','905421855834','NURTEN YILMAZ adlı müşterinizin 338411614 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('58c91259-ad76-45ae-ba78-049aaeac62c1','905335511664','BİLAL KIZILIRMAK adlı müşterinizin 371155650 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('58ca99e0-d5c5-41b6-a9d3-14b02f62103e','905075277637','DİLARA TARHAN adlı müşterinizin 745233031 nolu gönderisi 43 parça halinde yola çıkmıştır.','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('58cc4880-4257-41dc-8f4a-44c28183434f','4917635994280','Sayın KADİR ÖZCAN, 428417364 nolu gönderiniz 9115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428417364\n\nDear KADİR ÖZCAN, your shipment with 428417364 was delivered to you with the delivery code 9115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428417364\n\n\nBICARGO','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('58d2297d-6d3c-44da-bf4b-eb71caca73b1','905335511664','Sayın yetkili; HAFİZE BALİ adlı müşterinize 371684650 nolu gönderinizin SEHPA ürünü 2 parça halinde SM Tasarım adresinizden 01.07.2025 17:03:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('58d8abed-f8f0-4b19-9b68-67788d74bb78','905517075149','Sayın yetkili; SAVAŞ ÖZTÜRK  adlı müşterinize 478514572 nolu gönderinizin MASA VE ORTA SEHPA ürünü 3 parça halinde vaav adresinizden 22.10.2025 15:11:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c624cc-2fc1-4839-b08d-b9e1310a053d',NULL),
('58d90054-19a1-4258-a0bd-ec3147b08c2e','905313340045','RASİM OZAN adlı müşterinizin 437642214 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('58def01e-dc0d-4af8-a5e4-fd6ebdf042c1','905079047428','HASRET BEYAZIT adlı müşterinizin 449196428 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL),
('58df17ea-3212-48b2-8765-16006f0cbcd6','905335708965','HFDJDJDJDJDKKJFDW adlı müşterinizin 735814007 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','67f3e803-506e-4fab-b999-051b7a0368e2',NULL),
('58e24aa1-fc08-4699-9623-caf51a4001f5','905079358213','KENAN BAYAR adlı müşterinizin 74568874 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('58e28d1c-9bb4-4cf1-acf0-1f5cf7578585','4915228807643','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('58e3a9e5-f602-4eaa-8481-54a4ed9c9d28','32484427086','478816607 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478816607\n\nYour shipment with the number 478816607 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478816607\n\nBICARGO','1','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL),
('58eaa2e8-7a2a-4a97-b508-873ff39655b5','905075277637','BARIŞ ÇOŞKUN adlı müşterinizin 745656343 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL),
('58eaeb25-f14c-444e-af68-0972e34740df','31685834791','Sayın MÜCAHİD AL SSH, 437379015 nolu gönderiniz 10881 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437379015\n\nDear MÜCAHİD AL SSH, your shipment with 437379015 was delivered to you with the delivery code 10881. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437379015\n\n\nBICARGO','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('58ee8187-c424-41fe-b102-c336caa73874','905454259202','RAMAZAN KIYMAZ adlı müşterinizin 478900175 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('58f1d972-f376-485b-9144-2038d87f3908','905054335859','MUSA EMEK adlı müşterinizin 501786631 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL),
('58f305b3-05a1-4f0a-a44f-301b5a7a74d5','491725393009','Sayın SELİN URAK, 437152964 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437152964\n\nDear SELİN URAK, your shipment with 437152964 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437152964\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('58f9ac25-8366-4b0c-b0d5-0e1111f35732','905312762034','TAYFUN TATLIGÜN adlı müşterinizin 8087036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('58f9b8e7-0fd5-4e45-a0ba-a1da63130b8f','4379259769999','Sayın TEREZA SHARİPOVA, 808790233 nolu gönderiniz 7943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808790233\n\nDear TEREZA SHARİPOVA, your shipment with 808790233 was delivered to you with the delivery code 7943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808790233\n\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('58fa0e3e-90c7-42c2-b886-0e7f70de416a','905461661672','Sayın yetkili; GAMZE ŞAŞMA adlı müşterinize 644523362 nolu gönderinizin SANDALYE ürünü 3 parça halinde ALPEREN SANDALYE adresinizden 05.05.2025 15:35:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('59003664-c4e2-4f8c-a776-7d249ab7ef8c','436603703477','Sayın FAZİLET ÖZÇELİK, 437232562 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437232562\n\nDear FAZİLET ÖZÇELİK, your shipment with 437232562 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437232562\n\nBICARGO','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('5901f6a8-0312-419e-b45a-a9b4b0127120','491621912454','Sayın Özcan nazlı, 478281011 nolu gönderiniz 3458 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478281011\n\nDear Özcan nazlı, your shipment with 478281011 was delivered to you with the delivery code 3458. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478281011\n\n\nBICARGO','1','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL),
('590215ac-fd26-4677-a2b2-14169f17e1fd','4915208904469','745818939 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5818 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745818939\n\nYour shipment with the number 745818939 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5818. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745818939\n\nBICARGO','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('59024a3f-c9d9-4c8d-aa2f-d86dad7022de','4915206102072','Sayın , 454592303 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/454592303\n\nDear , your shipment with 454592303 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/454592303\n\nBICARGO','1','b659a388-1c45-405b-a478-fa4eb2398376',NULL),
('5902589e-03d4-4640-a358-46dcbe5916f6','905331602195','Sayın yetkili; BETÜL ULUÇAY adlı müşterinize 221893262 nolu gönderinizin Balat sandalye  ürünü 8 parça halinde MERT SANDALYE  adresinizden 25.04.2025 11:47:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9',NULL),
('590c9988-db7a-49db-bf5d-1a0512ecbf56','31641919290','Sayın SEBİHA DEMİR, 437233194 nolu gönderiniz 4463 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437233194\n\nDear SEBİHA DEMİR, your shipment with 437233194 was delivered to you with the delivery code 4463. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437233194\n\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('590cb235-8b03-4581-97fa-5046ad0b6660','905079358213','ALİ KARADUMAN adlı müşterinizin 7454878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('590f7415-3d6f-4a63-a239-6c2ff62faaba','4917614644899','65728268 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1631 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65728268\n\nYour shipment with the number 65728268 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1631. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/65728268\n\nBICARGO','1','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL),
('590fb8b9-cb9e-467e-85a4-bc8ef9ca5c86','905075277637','Sayın yetkili; GÜLDEN KARADAĞ adlı müşterinize 745580296 nolu gönderinizin YEMEK MASASI ürünü 3 parça halinde Fatura adresinizden 25.03.2025 22:20:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('59108579-08f1-44b9-88b1-0a77dc3099d3','4524951213','Sayın FİROUZEH NOORZAİ, 982561254 nolu gönderiniz 6515 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982561254\n\nDear FİROUZEH NOORZAİ, your shipment with 982561254 was delivered to you with the delivery code 6515. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982561254\n\n\nBICARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('5917fb4a-3be7-4bc0-889b-a219be55984f','4917642201800','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('59199855-f610-4dcf-b5d7-d4936677ef08','4915778776524','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('5919bdf1-1015-4b96-8f9a-1250ff49ff08','4915752948798','Sayın METİN PEKSERT, 745645972 nolu gönderiniz 9678 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745645972\n\nDear METİN PEKSERT, your shipment with 745645972 was delivered to you with the delivery code 9678. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745645972\n\n\nBICARGO','1','e30052e8-31ee-42d9-b11e-50298f473091',NULL),
('591bc49b-92d7-4982-af48-44c5b35dc6b7','905454259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478783487 nolu gönderinizin MERLİN KOLTUK TAKIMI ürünü 4 parça halinde çelikbey inegöl depo adresinizden 18.04.2025 17:15:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('592bb616-8929-455b-80e7-88016649d7d2','4915256924287','Sayın MAZHAR BAYMAN, 644903033 nolu gönderiniz 9081 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644903033\n\nDear MAZHAR BAYMAN, your shipment with 644903033 was delivered to you with the delivery code 9081. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644903033\n\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('592cdf3a-a0de-4c62-80a6-866c87d27208','905304259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin 180X200 DELÜXE YATAK ürünü 1 parça halinde Fatura adresinizden 19.06.2025 12:59:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('592d0872-29fa-4efb-96fb-bc394baa4024','4915171697261','Sayın BÜLENT ECEVİT DUROĞLU, 478368190 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478368190\n\nDear BÜLENT ECEVİT DUROĞLU, your shipment with 478368190 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478368190\n\nBICARGO','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('592e0bd1-5014-49ca-8ff0-35534fb1d101','4915788014296','Sayın NADİR KURUKOL , 428414858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428414858\n\nDear NADİR KURUKOL , your shipment with 428414858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428414858\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('592e4b92-3f34-4ce6-a6c2-15af85ef3261','491607634230','Sayın ESRA İSMAİL, 011940661 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011940661\n\nDear ESRA İSMAİL, your shipment with 011940661 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011940661\n\nBICARGO','1','6f09bf36-0623-4409-a371-888d1bbf7a91',NULL),
('593d63f5-de71-4b03-a58f-3307ff6ddac9','905313340045','Sayın yetkili; ALİ KURUÇAM adlı müşterinize 437707209 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:36:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('59429151-1c6a-4ac9-b919-a28bdb2d023a','905331602195','SERKAN YILMAZ adlı müşterinizin 22145224 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('5945fa68-6ddb-47a0-a115-e2b59241ddbf','905075277637','ALİ KARADUMAN adlı müşterinizin 7454878 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('5946a446-5249-4d1a-ab76-232a0af6b644','31620957828','Sayın NİHAL ŞAHİN, 221899517 nolu gönderiniz 5053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221899517\n\nDear NİHAL ŞAHİN, your shipment with 221899517 was delivered to you with the delivery code 5053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221899517\n\n\nBICARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('594ac684-d3b9-4601-97dd-7072a4983ee3','905304259202','Öner alabaş adlı müşterinizin 478803764 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL),
('59550ffd-ef60-4f85-92d7-e171108adfec','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 1 ADET PUF ürünü 1 parça halinde MOBİLYAMEVİME DEPO  adresinizden 08.10.2025 16:25:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('595e820c-d031-4f41-96b7-0a290bb59d81','905331602195','Sayın yetkili; GURAY SEYFELİ adlı müşterinize 221390997 nolu gönderinizin TRAVERTEN SEHPA ürünü 2 parça halinde Fatura adresinizden 02.01.2025 11:48:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('59694128-d011-4cbb-bbc2-746047087a09','33668485580','Sayın KEMAL ETKER, 478631020 nolu gönderiniz 7537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478631020\n\nDear KEMAL ETKER, your shipment with 478631020 was delivered to you with the delivery code 7537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478631020\n\n\nBICARGO','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('596f5acd-3c96-4125-9e27-33ab89690038','4915560835617','371120278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120278\n\nYour shipment with the number 371120278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371120278\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('596fa0ff-e325-4c5a-9a30-a845743f33f4','33768416130','Sayın EMRE AFYON , 745547550 nolu gönderiniz 6738 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745547550\n\nDear EMRE AFYON , your shipment with 745547550 was delivered to you with the delivery code 6738. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745547550\n\n\nBICARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('59762cd3-b917-4586-8469-1e6f94e22477','173737373828383','Sayın BOLL TRADE, 412795154 nolu gönderiniz 4875 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412795154\n\nDear BOLL TRADE, your shipment with 412795154 was delivered to you with the delivery code 4875. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412795154\n\n\nBICARGO','2','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('59792dfe-12f2-4d1f-bb37-e374f0a51f9e','905349208933',' MAHMUD YUSUF ÖKDEM(SSH) adlı müşterinizin 127945692 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('598179fb-6bb2-489b-a7e8-73f5398712c5','33676496054','Sayın NAFİLE ÖCALAN, 976821188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976821188\n\nDear NAFİLE ÖCALAN, your shipment with 976821188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976821188\n\nBICARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('59819302-7818-45cc-a672-20a410fbe374','905073106101','RECEP ONAY  adlı müşterinizin 465313266 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','149850c7-89eb-4248-a529-b235c5710935',NULL),
('59853108-4a72-4dc3-875c-3e60734d24c5','49163348754','976898541 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1646 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976898541\n\nYour shipment with the number 976898541 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1646. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976898541\n\nBICARGO','2','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL),
('59870e63-4021-47ba-ac74-51f42ea806c0','905454259202','SÜLEYMAN BOZAN adlı müşterinizin 478406590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('59887a51-f6c8-4db3-8537-500199982b11','905461661672','SONGÜL BALTACI adlı müşterinizin 64446005 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('599a78fd-7424-4df1-a7a4-36aa7e86415a','905451571652','CEM TOPYÜREK adlı müşterinizin 53111592 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('599c681e-fe52-4fe9-9023-6d8c7c640ac3','004306603838566','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','2','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('599f50db-7228-4b5b-adf4-ae3dc39e5399','491716168674','Sayın YUSA ELLİALTI, 808427332 nolu gönderiniz 8345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808427332\n\nDear YUSA ELLİALTI, your shipment with 808427332 was delivered to you with the delivery code 8345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808427332\n\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('59a02fa2-f456-4a90-9b78-044333a20373','905331602195','HASAN BİLECEN adlı müşterinizin 221121416 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('59a3932e-3373-4f87-b731-4dc1f68cd3d9','905336367828','İBRAHİM KARABACAK  adlı müşterinizin 98222175 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL),
('59a750d0-c0a4-4a2b-b4f3-77c78e6b999b','4917621666906','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('59abe3da-20d5-40e2-bd2c-364c3e923137','32487361121','902159645 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5952 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/902159645\n\nYour shipment with the number 902159645 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5952. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/902159645\n\nBICARGO','1','c551c482-a643-4cab-b50a-a3615f511791',NULL),
('59ae7d86-be26-49bc-bc89-d2e41336132e','905333221039','Sayın yetkili; BARIŞ ÖZTÜRK adlı müşterinize 750355737 nolu gönderinizin 2 üclü  ürünü 2 parça halinde Fatura adresinizden 18.09.2025 15:29:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('59b1e74c-83d9-4c72-9704-7d6b6a13a041','905304259202','LEMAN EMRE adlı müşterinizin 478913776 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7a12701-09c4-4320-85a8-07d8731effaa',NULL),
('59b3a32a-86f5-4bb7-ae42-3ddd891a2c97','491786878785','Sayın ÜMMÜGÜLSÜM KARAKUŞ, 745924426 nolu gönderiniz 10935 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745924426\n\nDear ÜMMÜGÜLSÜM KARAKUŞ, your shipment with 745924426 was delivered to you with the delivery code 10935. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745924426\n\n\nBICARGO','1','d78e9aef-d794-44e4-a9be-c55739db8e56',NULL),
('59b40c06-62d6-45eb-a834-7eb4ca22868e','905443955915','ÜLKÜ AKIL adlı müşterinizin 61480625 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f67e7508-1afa-4901-b396-faae504c1726',NULL),
('59b4502f-a3e4-4b85-9354-edd2ee16d5cb','905335708965','MUHAMMET AL KHALAF adlı müşterinizin 735785649 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL),
('59b5c3cd-d163-41d8-af68-f69146d70953','4917632975827','Sayın MURAT ERKUL SSH, 745898734 nolu gönderiniz 8401 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745898734\n\nDear MURAT ERKUL SSH, your shipment with 745898734 was delivered to you with the delivery code 8401. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745898734\n\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('59b9732f-47fc-4670-bf75-35d92ccd3d52','33699946659','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('59ba766f-abb6-49b0-9cec-6a11a177a7d1','905075277637','GİZEM YAZICI  adlı müşterinizin 745582484 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('59bafec4-4b6d-482c-9254-63aded021316','4915168460456','Sayın GÖNÜL GİDER, 428671806 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428671806\n\nDear GÖNÜL GİDER, your shipment with 428671806 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428671806\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('59bc17e3-b4bb-4f0f-9df8-e49eed842e05','905079358213','NURCAN ÖZER adlı müşterinizin 745940979 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL),
('59bf09b3-1b38-4eb4-85a1-6bf48de9933e','905335511664','Sayın yetkili; SARA CASTRO adlı müşterinize 371287728 nolu gönderinizin traverten masa ürünü 1 parça halinde Fatura adresinizden 02.05.2025 14:36:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('59c18c78-31d7-44d9-943a-0fdaa5b38331','491601209210','Sayın MAHSUN ALDEMİR(K), 644593040 nolu gönderiniz 3477 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644593040\n\nDear MAHSUN ALDEMİR(K), your shipment with 644593040 was delivered to you with the delivery code 3477. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644593040\n\n\nBICARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('59c1e22d-79c3-4913-bed1-de24199332aa','0041796408561','Sayın ALİCAN KABAK , 478224735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478224735\n\nDear ALİCAN KABAK , your shipment with 478224735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478224735\n\nBICARGO','2','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('59c2d612-c481-4632-a269-0008594ff673','4917680626495','Sayın ALİYE GÖRDÜK, 598156869 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598156869\n\nDear ALİYE GÖRDÜK, your shipment with 598156869 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598156869\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('59c486da-7880-4e7c-b713-aa5f1d7beb0e','905336367828','Sayın yetkili; Maria veigea  adlı müşterinize 982333020 nolu gönderinizin Sehpa  ürünü 1 parça halinde Sehpa İbrahim  adresinizden 04.11.2024 11:03:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('59c4c2a9-f732-4361-91fa-db98263eb40a','905304259202','MUHAMMET ALTUNKAYA adlı müşterinizin 478681042 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('59cadc21-05ea-4c51-b44d-64188808f09c','004917621208041','73529249 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8732 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73529249\n\nYour shipment with the number 73529249 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8732. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73529249\n\nBICARGO','2','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL),
('59cc0bb5-eb8d-4bbb-899e-431815d2df83','31648497230','465634666 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10933 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465634666\n\nYour shipment with the number 465634666 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10933. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/465634666\n\nBICARGO','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('59cf7274-d0c1-4889-9fc8-f7248239d7ff','4917622528451','Sayın LİBELLA FRİSEURBEDAR , 231216092 nolu gönderiniz 2022 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231216092\n\nDear LİBELLA FRİSEURBEDAR , your shipment with 231216092 was delivered to you with the delivery code 2022. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231216092\n\n\nBICARGO','1','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL),
('59d62077-5c0d-499b-bdf9-73e178fbc9de','905459011033','BİRGÜL ÖRNEK adlı müşterinizin 268188607 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2630e226-f8e4-4780-bd53-00a42db1e018',NULL),
('59d86b9a-50fb-448a-83b0-2688c2208ed3','905454259202','GÖKHAN EYCAN adlı müşterinizin 478681299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('59dc2644-396a-47dc-9d05-a32612a07b14','905331602195','ABDULLAH KARACA adlı müşterinizin 221554711 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('59dd7d72-132f-4c04-9af8-3751bd3c7e3f','33651400749','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('59de2a5c-fc96-40fb-a2a7-ff3a4320f2ef','33768242208','1936694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2055 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/1936694\n\nYour shipment with the number 1936694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2055. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/1936694\n\nBICARGO','1','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL),
('59dea2a0-31c7-4339-b819-487c6fd2b8b0','905332942204','Sayın yetkili; ATIL SOPHİA adlı müşterinize 505850944 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 09.09.2025 18:40:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('59e2e249-3de6-4124-8e37-93e9b8480caf','33650437486','478677262 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478677262\n\nYour shipment with the number 478677262 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478677262\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('59e33259-18e8-4f6d-8baa-96013629d9fe','905079358213','Sayın yetkili; MERYEM BULAK  adlı müşterinize 745374253 nolu gönderinizin KING PLATİN BAZA SET 180X200 ürünü 4 parça halinde Fatura adresinizden 15.09.2025 19:43:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('59e3964f-4e2c-482d-8b15-e7ff0192c1da','905331602195','BARBOSA SHANNA  adlı müşterinizin 221403218 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('59e993e8-bd53-4fb9-a367-ed982a779432','004917631692675','Sayın SARA BOBAJ, 735173063 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735173063\n\nDear SARA BOBAJ, your shipment with 735173063 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735173063\n\nBICARGO','2','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL),
('59f26bbe-4435-4adb-b685-0e59c78893aa','905321608709','CEM OKUMUŞ adlı müşterinizin 248883377 nolu gönderisi 42 parça halinde yola çıkmıştır.','1','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL),
('59f29051-5cfc-43b3-9c4c-5fb9f1519fa1','905313340045','SEBİHA DEMİR adlı müşterinizin 437233194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('59f4359e-7f68-4114-b32a-836cdc1824ec','905443955915','AYHAN KILIÇ adlı müşterinizin 614134006 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','93cfee64-4853-4395-af0b-9caa4355f18f',NULL),
('59f75af3-d3ec-48ee-8e2b-5fec0400e61b','31633087507','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('59f7b487-cd2a-45c0-8be1-acb41e7f2680','905313340045','Sayın yetkili; MİRAÇ SAKAR adlı müşterinize 437969799 nolu gönderinizin baza set ürünü 7 parça halinde Albessa adresinizden 28.01.2025 13:00:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('59f83c84-68b7-491f-a2f1-e28825bb5d33','4917663371401','Sayın NERGİZ TOPRAK, 371540742 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371540742\n\nDear NERGİZ TOPRAK, your shipment with 371540742 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371540742\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('59fd88f9-1917-4dbf-8ea0-788c0a1463df','905335511664','TAYLAN KAZAL adlı müşterinizin 371179895 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('59fe8125-109e-4e28-b6df-4c5d8fcc3f29','905336367828','NORBERTO VAZ  adlı müşterinizin 982573889 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('5a025782-5a67-411a-b71f-6f1dcc83b378','905461661672','GHAZAL TARIK İLHAN adlı müşterinizin 644971564 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('5a026088-1b41-4081-a19f-59f944134c67','905079358213','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin TOSCANA YATAK ODASI ürünü 31 parça halinde Fatura adresinizden 22.08.2025 12:30:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('5a05caf3-e255-41a9-a81b-06c66716c57e','41797513051','Sayın SAFİYE ÇITAK, 745959029 nolu gönderiniz 2843 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745959029\n\nDear SAFİYE ÇITAK, your shipment with 745959029 was delivered to you with the delivery code 2843. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745959029\n\n\nBICARGO','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('5a0754c8-5f80-4b59-a6c2-8068324b572a','41764721719','Sayın BESİR FAZLİJİ, 613168811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613168811\n\nDear BESİR FAZLİJİ, your shipment with 613168811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613168811\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('5a0c174e-7971-4000-a3b5-194bbd17c220','31614272440','Sayın HAKİM AZZOUZ, 657301470 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657301470\n\nDear HAKİM AZZOUZ, your shipment with 657301470 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657301470\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('5a0f7b0c-7848-4aae-b364-ebe6a7c7c060','4915158036323','Sayın CEMAL YALÇIN SSH, 319388100 nolu gönderiniz 1499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319388100\n\nDear CEMAL YALÇIN SSH, your shipment with 319388100 was delivered to you with the delivery code 1499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319388100\n\n\nBICARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('5a10252b-3d73-4134-8094-45a0ca92a18d','905331602195','Sayın yetkili; LEJLA GUDİC  adlı müşterinize 221758948 nolu gönderinizin 120 çap dante ceviz masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 17.06.2025 16:56:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('5a13915a-ea53-4ee4-92f3-80d1f6aebb74','905333323012','GIULİA CLARA CASAGRANDE  adlı müşterinizin 69529713 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('5a149d20-c649-42d7-86d0-5bdd47ea3046','905336367828','ALİ BÜKLÜ adlı müşterinizin 982506182 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','9c622fdf-272f-4650-ac75-c35e205b6022',NULL),
('5a175400-6f70-4985-b298-8bd8e4230e03','33695878939','501934466 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8156 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501934466\n\nYour shipment with the number 501934466 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8156. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501934466\n\nBICARGO','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('5a18a4a7-64db-4197-89dc-537e955f7ad7','32494160305','Sayın MEHMET ALİ YİĞİT, 221441605 nolu gönderiniz 3287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221441605\n\nDear MEHMET ALİ YİĞİT, your shipment with 221441605 was delivered to you with the delivery code 3287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221441605\n\n\nBICARGO','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('5a19d849-4d23-4872-88d6-686a04825e27','4917662248908','745282619 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745282619\n\nYour shipment with the number 745282619 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745282619\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('5a1e86b8-1f81-406b-a42e-04967ba72f1b','905331602195','SEYİT GENÇALİOĞLU  adlı müşterinizin 221476651 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('5a1faafb-f413-4272-a307-8ebb6e4fed27','4917656765746','371440688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3207 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371440688\n\nYour shipment with the number 371440688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3207. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371440688\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('5a2a94e1-2fa7-4db6-b324-a0bf5b88b31b','905335511664','ELİF KAVUCUK adlı müşterinizin 37197237 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('5a2ccecf-83c8-4b9d-88d4-9e1a7ab10263','905325000478','AKRAH ABDULNASSER adlı müşterinizin 412968011 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL),
('5a314af7-98b9-4cef-9338-209137cafd5e','4915566115310','Sayın GÜLCAN ÇELİKKANAT, 428519862 nolu gönderiniz 7584 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428519862\n\nDear GÜLCAN ÇELİKKANAT, your shipment with 428519862 was delivered to you with the delivery code 7584. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428519862\n\n\nBICARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('5a346793-3a4d-4b32-8482-d7dee28c9609','436644740291','Sayın ALİ ALBAY, 517205085 nolu gönderiniz 3233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517205085\n\nDear ALİ ALBAY, your shipment with 517205085 was delivered to you with the delivery code 3233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517205085\n\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('5a3555b9-b9d1-4a94-98ba-e8e04bdb4817','5344645190','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','2','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('5a37276e-47c0-4166-903b-a88240c0e265','4368120902265','598427868 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598427868\n\nYour shipment with the number 598427868 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598427868\n\nBICARGO','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('5a375cd0-e195-4321-b9e6-d6da56ed34d5','905325000478','MOONBEAM HOME adlı müşterinizin 412284149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('5a39c4c7-f4a2-49cc-b170-15072a64ddc1','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL KOLTUK TAKIMI  ürünü 7 parça halinde Fatura adresinizden 21.05.2025 18:13:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('5a3d0290-1e00-403b-a4fa-c9be4e52c273','11111111111','Sayın ELİF HANIM , 455685955 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455685955\n\nDear ELİF HANIM , your shipment with 455685955 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455685955\n\nBICARGO','2','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL),
('5a3e95df-33f4-4091-8278-21c37632af10','905336367828','KEMAL TAŞTAN adlı müşterinizin 982405831 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL),
('5a4660f0-ce68-4f96-9db0-bfa7045269e5','4917620398976','Sayın BELGİZAR GEZİCİ, 745173444 nolu gönderiniz 4887 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745173444\n\nDear BELGİZAR GEZİCİ, your shipment with 745173444 was delivered to you with the delivery code 4887. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745173444\n\n\nBICARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('5a47a2fd-b85a-4cd5-9e63-0c6739fb0cc2','32489389683','Sayın GÜLAY KIZIL, 221598709 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221598709\n\nDear GÜLAY KIZIL, your shipment with 221598709 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221598709\n\nBICARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('5a54cd88-00f2-4602-bb2c-9dfc7c82ed0b','4917631419046','Sayın NADİR KURUKOL, 428819984 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428819984\n\nDear NADİR KURUKOL, your shipment with 428819984 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428819984\n\nBICARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('5a554d8f-52df-41d1-8d11-9ddf864da101','4917655270836','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('5a58b328-ff8e-41ad-98c6-3061f86b06b3','905336367828','MUSTAFA ÇETİN adlı müşterinizin 982490890 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ead6dade-f350-443d-a16a-41863d612c7c',NULL),
('5a5d0ed2-3437-472c-82ee-dd7a37ba1109',NULL,'DONYA AL HAİDARİ adlı müşterinizin 081411095 nolu gönderisi 21 parça halinde yola çıkmıştır.','2','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('5a5ee659-5962-455e-87fe-93ead77c66c8','905335708965','ÖZGÜL KONAKÇI adlı müşterinizin 735326602 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL),
('5a5efff0-7960-4f13-a1e7-5ff5f409db60','905335708965','ASLI AYCİ adlı müşterinizin 73555265 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3ee9e633-d24c-4516-8992-e6b95c9dc558',NULL),
('5a6328ff-aed5-4404-9341-548f7b72f404','905331602195','Sayın yetkili; ALİ ÖZKİLİSLİ-GİZEM SEVDE adlı müşterinize 221600878 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde Fatura adresinizden 28.01.2025 16:30:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2b78b1a-acb8-4599-be16-f4aa7cc745b8',NULL),
('5a642a29-86eb-4da2-92c0-4d7a2859a016','905355891131','Roa şerif adlı müşterinizin 902159645 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c551c482-a643-4cab-b50a-a3615f511791',NULL),
('5a64b31f-7c40-429a-bef4-da3c78827c44','33787053460','Sayın EMRAH ERAYDIN, 127552437 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127552437\n\nDear EMRAH ERAYDIN, your shipment with 127552437 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127552437\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('5a673ff5-cb39-4799-90e9-700121888a66','491728162123','İLETİŞİM\n					Furkan şöför = +905078826436','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('5a684a3a-fed5-4fb3-aeff-5e55081332e7','1111111111','Sayın BİLGİN  AYDIN, 13.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3357569\nŞifre : 3357569\n			\nBİCARGO','2',NULL,'33575f69-1bd5-4954-a74a-8872b1d00a7f'),
('5a68fe12-6bc1-4c91-a0b3-46e85102bb6f','491627321230','Sayın YASEMİN GÜNDOĞDU, 644340759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644340759\n\nDear YASEMİN GÜNDOĞDU, your shipment with 644340759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644340759\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('5a6e3aff-0e33-41ac-9904-585dd14beae5','905461661672','Sayın yetkili; ÖMER VAROL(K) adlı müşterinize 644714925 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 24.09.2025 16:06:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('5a741076-1c82-4d05-95b3-885423191bb4','4917620526995','Sayın SONGÜL KEKEÇ, 910197116 nolu gönderiniz 3976 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910197116\n\nDear SONGÜL KEKEÇ, your shipment with 910197116 was delivered to you with the delivery code 3976. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910197116\n\n\nBICARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('5a7e27a2-f181-4541-a6ab-61f4efaccd88','905331602195','HİLAL YILMAZ  adlı müşterinizin 2213375 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('5a7e51fe-fdf9-4319-9275-10e1eb96d6f6','3637373838383848','Sayın ONUR AKDAĞ, 65722132 nolu gönderiniz 10092 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65722132\n\nDear ONUR AKDAĞ, your shipment with 65722132 was delivered to you with the delivery code 10092. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65722132\n\n\nBICARGO','2','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('5a7e8369-d0f2-4a7c-ad74-8d5d83134a4c','491796922955','976866527 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976866527\n\nYour shipment with the number 976866527 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976866527\n\nBICARGO','1','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL),
('5a81fca6-7711-4ef3-b414-c8ce4a07b2c9','491623245493','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('5a85d317-9830-478e-bc83-39a1cf560186','905394878216','NUR SANDALCILAR adlı müşterinizin 517291063 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('5a8c866b-f1d0-4b8d-bd53-dc6e85d752b9','491778777755','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('5a8f290c-2ef7-4f99-8849-1a5f99a3a365','33783160277','Sayın MUSTAFA YILMAZ, 745445888 nolu gönderiniz 7491 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745445888\n\nDear MUSTAFA YILMAZ, your shipment with 745445888 was delivered to you with the delivery code 7491. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745445888\n\n\nBICARGO','1','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL),
('5a8ff35a-273e-403c-9e53-e97c32ecafef','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 1 AD. BRONZE ADA ŞİFONYER ürünü 6 parça halinde EYFEL adresinizden 19.09.2025 12:02:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('5a91b6ce-54fd-4f3d-98ce-a70294b331bb','4915201870026','Sayın ALEYNA AKAY, 644500765 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644500765\n\nDear ALEYNA AKAY, your shipment with 644500765 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644500765\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('5a923dc0-f8e9-4342-8792-4e56596c4781','905331602195','Sayın yetkili; BABERIH LEİLA  adlı müşterinize 221164226 nolu gönderinizin 90x190 milas masa ürünü 3 parça halinde Fatura adresinizden 27.01.2025 11:02:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('5a941253-e14b-4ae6-86c8-7f8a9c5c49f3','32467686443','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('5a9a8a92-f16e-4b4d-8b2e-2bf456e721d3','00436602086672','412784700 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1807 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412784700\n\nYour shipment with the number 412784700 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1807. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412784700\n\nBICARGO','2','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('5aa2840f-a5cc-44fc-8b53-983555176ec0','004917621719741','Sayın NAVİD BEHBODY, 735793543 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735793543\n\nDear NAVİD BEHBODY, your shipment with 735793543 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735793543\n\nBICARGO','2','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL),
('5aacc298-debf-4577-917c-b01dcc92eba2','905312762034','Sayın yetkili; NATASCHA DJORDJEVİC adlı müşterinize 80873489 nolu gönderinizin SANDALYE ürünü 4 parça halinde EL AKSAPAPEL adresinizden 21.07.2025 13:08:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('5aae21ae-7705-4805-99b3-ead542cf3b07','905075277637','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER KOLTUK TAKIMI  ürünü 19 parça halinde NAHİTA SOFA  adresinizden 14.10.2025 13:33:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('5ab29921-f4ee-4050-a46c-34774b003310','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin 2 ADET 90X200 YATAK ürünü 2 parça halinde Fatura adresinizden 11.09.2025 15:29:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('5ab5e712-b5cd-4461-a358-a37b80a2a7e1','33744724088','478989383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7802 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478989383\n\nYour shipment with the number 478989383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7802. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478989383\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('5ab86551-d442-4522-8941-4467b8c95781','4915204351936','İletişim \n					Şöför Uğur Acar +905424435917','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('5accf120-6f7e-418a-896a-5243699ad291','905331602195','Sayın yetkili; ANİSSA İFAR  adlı müşterinize 221924148 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde Fatura adresinizden 07.02.2025 15:04:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('5acf5300-5052-4690-9886-894da9c4790e','905075277637','BURAK SARIKAYA adlı müşterinizin 745816946 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('5acf5597-7739-4bca-904e-9e57574fb7d0','33660711568','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('5ad334a7-ab2f-471c-b3b8-4df89705f378','049015778795333','Sayın ASAAD KEBBEH, 248418017 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248418017\n\nDear ASAAD KEBBEH, your shipment with 248418017 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248418017\n\nBICARGO','2','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL),
('5ad8df0b-a80a-4d38-baac-873027538f25','905059175469','ULAŞ YILDIZ adlı müşterinizin 428177245 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL),
('5adb6ffb-8e39-423a-ae73-35f35154232e','00491633905186','Sayın ÖZGÜL KONAKÇI, 735326602 nolu gönderiniz 6424 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735326602\n\nDear ÖZGÜL KONAKÇI, your shipment with 735326602 was delivered to you with the delivery code 6424. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735326602\n\n\nBICARGO','2','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL),
('5adffd02-8c79-4a85-a0ac-038e3b6ff5d4','905335708965','MİHRİBAN SİS -TRANSJET adlı müşterinizin 735637082 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL),
('5ae0db41-0829-407b-8cc3-cc083e68362b','905325998198','ÇİLEM KAYNI adlı müşterinizin 614508817 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL),
('5af26c2e-fb1d-45ec-9ab4-dbde317a170a','905461661672','CANSU BEYAZ adlı müşterinizin 644282587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('5af78fdb-83cd-40b0-a0e7-835cebad81ac','32485062930','Sayın DAVUT KAYHAN , 517887763 nolu gönderiniz 2306 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517887763\n\nDear DAVUT KAYHAN , your shipment with 517887763 was delivered to you with the delivery code 2306. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517887763\n\n\nBICARGO','1','16c1502b-604e-4738-a2f1-13c522febb96',NULL),
('5af87a47-f335-434d-8478-51d6fa981da1','905075277637','ÖZLEM TURA adlı müşterinizin 745808637 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('5afd2bd9-066a-456a-804d-fc76dd2f27c4','32485026823','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('5b00064b-bdec-402f-bd69-5dc39ea68aa2','491731888801','Sayın CİHAN KÖSELER, 657734229 nolu gönderiniz 2106 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657734229\n\nDear CİHAN KÖSELER, your shipment with 657734229 was delivered to you with the delivery code 2106. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657734229\n\n\nBICARGO','1','d534081c-07c5-470c-bed4-f699f4319aa1',NULL),
('5b030f96-5cf3-470f-8f42-3f5cf54658f3','905428209234','REYHAN BİLDİRİCİ adlı müşterinizin 3198601 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL),
('5b07c6f3-4bfc-4e7d-96a6-2f52543f31bb','905079358213','Sayın yetkili; HÜSEYİN ÖÇAL SSH  adlı müşterinize 745350597 nolu gönderinizin BAZA  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('5b0b8b25-bb77-44cc-9f4e-a3e65a33e8e4','4915124010499','Sayın NECMİYE AMET, 221801165 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221801165\n\nDear NECMİYE AMET, your shipment with 221801165 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221801165\n\nBICARGO','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('5b0c7ed1-8c9e-4738-8f9f-bdaac19fb83e','4917632961366','Sayın YUNUS EMRE ÖZAGİR, 531988506 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531988506\n\nDear YUNUS EMRE ÖZAGİR, your shipment with 531988506 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531988506\n\nBICARGO','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('5b0e0328-a35f-45f3-84a2-dc5023430d72','905331602195','SAMİR KERANOVİC  adlı müşterinizin 221837026 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('5b0f05a7-90cd-4922-8ddd-39894195e3da','31687916596','Sayın MELEK KAYMAZ(K), 644547865 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644547865\n\nDear MELEK KAYMAZ(K), your shipment with 644547865 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644547865\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('5b15ec9a-057c-4338-b97b-027402164ba4','905442774505','Sayın yetkili; KIYMET HANIM  adlı müşterinize 657635062 nolu gönderinizin Traverten masa kasası  ürünü 1 parça halinde Fatura adresinizden 08.07.2025 11:15:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('5b1624e0-f3c7-4da9-ac8d-fd23dab72b81','491639179546','598161990 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598161990\n\nYour shipment with the number 598161990 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598161990\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('5b1adb9b-43c0-499e-8587-a4a225782793','905069116877','CEMİLE İLHAN adlı müşterinizin 817239122 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('5b1b0ef9-7301-4a4e-939b-4bb8ceebe13d','33749894912','910638892 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910638892\n\nYour shipment with the number 910638892 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910638892\n\nBICARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('5b1bbc40-31df-491f-a8eb-6dcc4ad14de5','491711177115','Sayın BERİVAN PALAVAN, 598903023 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598903023\n\nDear BERİVAN PALAVAN, your shipment with 598903023 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598903023\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('5b2279b0-1948-42fc-a34b-ad059af8e944','004915254106580','Sayın PATRİCA, 735139102 nolu gönderiniz 1092 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735139102\n\nDear PATRİCA, your shipment with 735139102 was delivered to you with the delivery code 1092. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735139102\n\n\nBICARGO','2','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL),
('5b228a9a-bc82-4928-90f7-861835c4bbbb','905461661672','Sayın yetkili; HÜDAYİ HARMANCI adlı müşterinize 64422113 nolu gönderinizin SANDALYE ürünü 2 parça halinde DURMUŞLAR SANDALYE adresinizden 06.10.2025 14:23:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('5b22af1f-a0a7-442d-ba79-4d56145fe4ea','905461661672','YUNUS HADIMLI adlı müşterinizin 644732617 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('5b27711f-3db6-4a56-9aa2-92bc21627b6e','905335708965','JASMİNA AGA adlı müşterinizin 735271543 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL),
('5b29750b-aea1-45da-a174-35283293e9ec','905075277637','Sayın yetkili; METİN PEKSERT SSH adlı müşterinize 745430976 nolu gönderinizin TEKLİ + OTURUM FONDU + KIRLENT YÜZÜ ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:25:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('5b2a3414-0922-42e5-b9fa-efe899837724','905313340045','Sayın yetkili; HAZAL BATUR adlı müşterinize 437712381 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde pars koltuk adresinizden 02.09.2025 11:30:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('5b2d0534-2e88-4354-924e-c4ed749166e9','4917662992402','Sayın GÜLSÜM KÖNÜ, 598373943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598373943\n\nDear GÜLSÜM KÖNÜ, your shipment with 598373943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598373943\n\nBICARGO','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('5b2ddacd-3f0b-49cf-a77a-c506564bdd5a','4917637605694','Sayın DEBORAH BELOVED IDAGU, 505987989 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505987989\n\nDear DEBORAH BELOVED IDAGU, your shipment with 505987989 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505987989\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('5b30734f-7cc1-458c-91fa-9ae818606d88','491789377871','Sayın FATMA İSAOĞLU, 449557088 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449557088\n\nDear FATMA İSAOĞLU, your shipment with 449557088 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449557088\n\nBICARGO','1','084daa7f-3636-427c-9862-03f8214bc1f5',NULL),
('5b3183b7-5d1e-4ba1-94b7-9e8a6aa052b2','905335511664','ŞENGÜL BABAOĞLU adlı müşterinizin 371304914 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('5b31bf06-ba08-4c77-84c7-227f2b30cf4a','436602434621','Sayın BURHAN AKMEŞE, 745761149 nolu gönderiniz 8488 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745761149\n\nDear BURHAN AKMEŞE, your shipment with 745761149 was delivered to you with the delivery code 8488. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745761149\n\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('5b35126f-2e43-4cb2-894b-4278898e9d1e','905304259202','İBRAHİM TANKAZ adlı müşterinizin 47815812 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('5b35971b-a3d9-4fb0-9c09-c1bfb0c93a73','330659794019','Sayın RERHAYE KHADJA , 982834531 nolu gönderiniz 9084 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982834531\n\nDear RERHAYE KHADJA , your shipment with 982834531 was delivered to you with the delivery code 9084. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982834531\n\n\nBICARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('5b35d123-ca46-498f-9767-d0f262eedaeb','436607576919','Sayın SAHAR KADERİ, 449636092 nolu gönderiniz 8038 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449636092\n\nDear SAHAR KADERİ, your shipment with 449636092 was delivered to you with the delivery code 8038. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449636092\n\n\nBICARGO','1','ea1fd06d-6508-481d-96d9-862de4d05260',NULL),
('5b385d72-d6a4-4216-bd9f-9cb391e3a0e4','905461661672','Sayın yetkili; ABDULLAH ÖĞRETEN SSH adlı müşterinize 644486114 nolu gönderinizin MASA ÜST TABLA ürünü 1 parça halinde Masami Mobilya adresinizden 26.08.2025 10:27:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','449a0466-41c0-4cc0-8da6-376268e5bdfd',NULL),
('5b3d2c27-ffeb-4613-9264-e43224a2c315','905336367828','MOHAMMED ASİF KARİMİ adlı müşterinizin 982501931 nolu gönderisi 5 parça halinde yola çıkmıştır.','1',NULL,NULL),
('5b3e0f1e-4eb5-47a2-bfd2-b6b26440d1f0','905336367828','NURKOVİC JASMİN adlı müşterinizin 982176810 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL),
('5b46af04-70bd-4749-9d10-240fb8f063d2','491725459093','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('5b4bb05c-9ffc-4457-8e71-43f32519f6c2','491728705267','Sayın ZEHRA AŞIK, 478243785 nolu gönderiniz 9136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478243785\n\nDear ZEHRA AŞIK, your shipment with 478243785 was delivered to you with the delivery code 9136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478243785\n\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('5b4c3c2e-2630-4c9e-8040-5d2af116acd8','905331602195','Sayın yetkili; SEMAHAT ÇELİK adlı müşterinize 221803289 nolu gönderinizin BALAT SANDALYE ürünü 8 parça halinde Fatura adresinizden 10.01.2025 10:34:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('5b51cae1-e2fb-4a52-8d4b-91ae27055897','4369919053808','982674617 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10414 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982674617\n\nYour shipment with the number 982674617 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10414. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982674617\n\nBICARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('5b529129-8018-4d4b-b153-bc8fd0ba2f1b','4915777530623','Sayın YAREN ÇAKALLI, 47855592 nolu gönderiniz 1135 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47855592\n\nDear YAREN ÇAKALLI, your shipment with 47855592 was delivered to you with the delivery code 1135. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47855592\n\n\nBICARGO','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('5b566212-4c78-4ff2-9a1c-da49854b0533','33769010323','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('5b580657-5750-4eff-ae05-6fcee2ee4ff0','905313340045','YASEMİN ÖZKILINÇ adlı müşterinizin 437819954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('5b599e7b-2eb2-4019-a37d-39811c6e4da8','905335708965','ASAAD KEBBEH adlı müşterinizin 248418017 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL),
('5b5e0708-7c55-48cd-99ca-2c5fdec08591','0436781221026','Sayın ALPEREN URHANOĞLU, 412366586 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412366586\n\nDear ALPEREN URHANOĞLU, your shipment with 412366586 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412366586\n\nBICARGO','2','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL),
('5b60331d-45c2-4444-b36b-3a1212d18348','33788354620','478346989 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1476 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478346989\n\nYour shipment with the number 478346989 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1476. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478346989\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('5b6074bf-4571-4c81-a922-deb63a3b2b36','015163483379','Sayın MAHSUN ALDEMİR(K), 644593040 nolu gönderiniz 3477 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644593040\n\nDear MAHSUN ALDEMİR(K), your shipment with 644593040 was delivered to you with the delivery code 3477. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644593040\n\n\nBICARGO','2','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('5b64db4a-043e-49b0-a787-9a447db336a4','32483028074','478537954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4234 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478537954\n\nYour shipment with the number 478537954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4234. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478537954\n\nBICARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('5b6a70df-3287-479a-9cae-fde91843fedf','905313340045','UMUT ETHEM EMRE  adlı müşterinizin 437101296 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('5b6d7062-92e5-42b5-b95c-953b34b1369d','4917632543868','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('5b6dbfb6-a180-41b3-85b1-7496bb6e409a','905054335859','RUHAT DEĞİRMENCİ  adlı müşterinizin 501626049 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL),
('5b723f57-2944-4c0b-9105-06600dda87ec','4917623595130','613393068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6509 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613393068\n\nYour shipment with the number 613393068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6509. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613393068\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('5b77938d-fc49-4ba3-b1e1-2ca3bb42bc73','905325000478','SERDAL adlı müşterinizin 412586204 nolu gönderisi 176 parça halinde yola çıkmıştır.','1','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL),
('5b7b0905-61b1-4963-bec5-470ebade6365','4915735267419','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('5b7bba00-e2fb-4015-abb9-816b73c201e2','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin 4 tek kişilik set 1çift kişilik yatak ürünü 13 parça halinde Fatura adresinizden 01.10.2025 12:15:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('5b83912e-c487-4e87-b3ff-0acf4667b3f5','905075277637','MEHMET KIRMALI SSH adlı müşterinizin 745961245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('5b868c44-9314-478c-9d77-f7acca09e3f9','905079358213','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin BONNY KÖŞE KOLTUK + TEKLİ  ürünü 7 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 10.07.2025 16:04:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('5b8b1ffc-04c9-4c25-842b-fa800214b84a','905357955726','Serkan yıldız adlı müşterinizin 315752826 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL),
('5b9066b0-b25b-4cbe-9bf6-19a533e54bd9','905304259202','Sayın yetkili; ZEKERİYA EMİN adlı müşterinize 478825542 nolu gönderinizin KÖŞE ürünü 4 parça halinde SAGA KÖŞE adresinizden 29.05.2025 12:10:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','42a4ed0b-8222-43be-8854-f98e1ac39e41',NULL),
('5b927d9e-0547-4c16-9cc6-9f80a8ffa3c2','31648122803','248614567 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9399 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248614567\n\nYour shipment with the number 248614567 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9399. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248614567\n\nBICARGO','1','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL),
('5b9552df-3cc3-4298-a7d0-41e827a19319','905304259202','Sayın yetkili; ALİCAN KABAK  adlı müşterinize 478224735 nolu gönderinizin köşe takımı ürünü 3 parça halinde çelikbey inegöl depo adresinizden 22.01.2025 11:39:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('5b95c748-ba85-4532-a9b6-313c7b5c2367','905304259202','BEKİR DOĞAN  adlı müşterinizin 478168461 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('5b97370a-be3f-4747-b83a-4bd2e90aa6d7','4917683242362','Sayın KENAN BAYAR, 74568874 nolu gönderiniz 8311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74568874\n\nDear KENAN BAYAR, your shipment with 74568874 was delivered to you with the delivery code 8311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74568874\n\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('5b9cf54c-5edb-446a-9c4f-f274886554a1','905336367828','MOHAMMED MALHA  adlı müşterinizin 982125625 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('5b9dc03f-6efe-4d10-b475-e1245d5cdd8b','905072738632','42845475 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9989 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42845475\n\nYour shipment with the number 42845475 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9989. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42845475\n\nBICARGO','1','0968d1cc-0ba0-445c-8f49-74a0f7b6c441',NULL),
('5b9e44ab-c441-44a9-a758-3569093ea710','436763463503','Sayın DİANA BARAKAEVA, 613502652 nolu gönderiniz 9385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613502652\n\nDear DİANA BARAKAEVA, your shipment with 613502652 was delivered to you with the delivery code 9385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613502652\n\n\nBICARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('5ba40d09-f2d6-49cb-9f32-48a80b5feb7f','905517075149','OĞUZHAN TIĞ adlı müşterinizin 478824521 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('5baa3253-b6ea-4457-a05c-a45f040774d0','4917624864505','Sayın AHMET EMİN ALGÜL SSH, 910375036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910375036\n\nDear AHMET EMİN ALGÜL SSH, your shipment with 910375036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910375036\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('5baf02c0-72f4-456f-b518-eb259c9b9a78','905350617509','Sayın yetkili; GÖKKUS PİNAR adlı müşterinize 61340935 nolu gönderinizin Sehpa ürünü 2 parça halinde İlyas Masa adresinizden 06.10.2025 10:33:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('5bb2898f-44d4-4d03-a473-7e58ad8a9809','905517075149','SEVİM KAMER adlı müşterinizin 478151970 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('5bb3e123-908e-4733-84cb-66d5318ddb61','33749894912','Sayın RUKİYE EKERBİÇER , 910903191 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910903191\n\nDear RUKİYE EKERBİÇER , your shipment with 910903191 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910903191\n\nBICARGO','1','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL),
('5bb46b93-bfbb-45af-940c-9df4d6755b97','905388618969','Sayın yetkili; ALBNORA MUSTAFA  adlı müşterinize 786286562 nolu gönderinizin Sandalye ürünü 3 parça halinde Ayka chair  adresinizden 14.04.2025 14:02:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('5bbb8b1b-6896-427a-bc8f-a429e6804007','905461661672','Sayın yetkili; SELİN ÖZALP adlı müşterinize 644615727 nolu gönderinizin SANDALYE ürünü 1 parça halinde BALİ SANDALYE adresinizden 21.04.2025 10:34:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('5bbc0253-9129-45c0-b832-118b2dd53aab','491736518131','505770346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9699 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505770346\n\nYour shipment with the number 505770346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9699. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505770346\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('5bbf2150-83dd-4d7a-9856-87ff3716060f','33744884261','Sayın ERDEL SİBEL, 644968450 nolu gönderiniz 5584 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644968450\n\nDear ERDEL SİBEL, your shipment with 644968450 was delivered to you with the delivery code 5584. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644968450\n\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('5bc3d949-e6b3-469b-8e79-5845c118f8ed','4915731719721','Sayın MOHAMAD SULAİMAN, 248810550 nolu gönderiniz 3961 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248810550\n\nDear MOHAMAD SULAİMAN, your shipment with 248810550 was delivered to you with the delivery code 3961. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248810550\n\n\nBICARGO','1',NULL,NULL),
('5bc8c9a3-5a19-4f75-80fb-40d662192f71','0000000000000000','Sayın ESKİŞEHİR, 412289507 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412289507\n\nDear ESKİŞEHİR, your shipment with 412289507 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412289507\n\nBICARGO','2','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL),
('5bcab177-6aea-487b-afe7-8fb4545d614c','33699946659','İletişim \n					Halil Bey (Şoför) :+905541100849','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('5bcc15ac-f9a4-4ca6-8af0-c0ee02e17b52','4917662386214','478559134 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1374 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478559134\n\nYour shipment with the number 478559134 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1374. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478559134\n\nBICARGO','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('5bd2bec2-bd80-4ce4-ab93-fb4c09a0cb2c','4915152520496','Sayın HATİCE ÖZEN, 745734415 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745734415\n\nDear HATİCE ÖZEN, your shipment with 745734415 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745734415\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('5bd6179c-ecf7-41a8-8bd5-5d221ed6395f','905079358213','Sayın yetkili; PINAR SALMA adlı müşterinize 745687103 nolu gönderinizin KING PLATIN BAZA SET 180X200 ürünü 4 parça halinde Fatura adresinizden 23.02.2025 15:23:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('5bd77809-1983-40d4-876f-a9e64c336174','905497405500','MUSTAFA SAİT ÖZDEMİR adlı müşterinizin 203497868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL),
('5bd95866-3dcf-495a-a74a-1d255e197d7f','905454259202','Sayın yetkili; EMİN EKRAMOĞLU adlı müşterinize 478337610 nolu gönderinizin ŞİFONYER AYNASI ürünü 1 parça halinde HGO-KİRPİ GENÇ ODASI adresinizden 13.05.2025 16:28:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('5bdac8eb-5174-4d1a-86bd-6dd02654299b','4917630133122','644445996 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2843 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644445996\n\nYour shipment with the number 644445996 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2843. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644445996\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('5bdc556e-338e-49b6-92b4-27ab958d9749','905332942204','Sayın yetkili; MELİNA KAHALİ adlı müşterinize 50538335 nolu gönderinizin koltuk ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:26:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','269b4bca-6e23-4b7c-a9d2-e7abf0e79373',NULL),
('5be21ff8-4d3b-4a2c-8559-015872e8709f','905313340045','Sayın yetkili; EDA ÇALIŞKAN adlı müşterinize 437539983 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 25.08.2025 13:41:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('5be2b5db-39e6-41d3-b4be-b77b69f983e8','4917621490516','428480095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2300 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428480095\n\nYour shipment with the number 428480095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2300. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428480095\n\nBICARGO','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('5be558f2-ee94-47b3-8feb-ee4efa9166a6','33652266722','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('5bee54f9-d509-402b-980b-8888a8358e27','9053259981980','Sayın yetkili; ARZU BÖÇKÜN adlı müşterinize 614496263 nolu gönderinizin DUVA LUCCA KANEPE AYAĞI 2 ADET ürünü 1 parça halinde Fatura adresinizden 26.03.2025 11:30:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','528a4efc-5102-4165-8106-60f8052866e1',NULL),
('5beffc80-5e78-49d6-809d-de7ec8586809','4917620398976','745173444 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4887 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745173444\n\nYour shipment with the number 745173444 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4887. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745173444\n\nBICARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('5bf52561-4152-46af-bb1d-72fd38748d96','32483112952','657258901 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2934 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657258901\n\nYour shipment with the number 657258901 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2934. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657258901\n\nBICARGO','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('5bf5bd21-868f-4fa7-8d3d-9ac6f70e3749','905461661672','Sayın yetkili; REİNAS HAİDARİ adlı müşterinize 644884110 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 25.03.2025 18:52:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('5bfb1210-c7f2-4afc-bf39-c0edd45d0f08','491722006500','478392276 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9172 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478392276\n\nYour shipment with the number 478392276 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9172. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478392276\n\nBICARGO','1','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL),
('5bfd18ac-cd44-44ca-92a3-d821a512d34e','4917632810959','Sayın SERKAN DOKKAL, 598961970 nolu gönderiniz 1030 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598961970\n\nDear SERKAN DOKKAL, your shipment with 598961970 was delivered to you with the delivery code 1030. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598961970\n\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('5bff510b-f083-4095-b0e2-ce9d742264ac','905443955915','MURAT BAĞCI adlı müşterinizin 614460765 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL),
('5c01f99b-d2b0-4234-87f3-cf3ed9a2090f','905300961610','FLORENTİNA adlı müşterinizin 126561228 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL),
('5c02fa28-985f-4f17-a153-84eae7814970','491771708842','Sayın NUMAN ALTUN, 41256945 nolu gönderiniz 3405 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41256945\n\nDear NUMAN ALTUN, your shipment with 41256945 was delivered to you with the delivery code 3405. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41256945\n\n\nBICARGO','1','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL),
('5c06e194-2372-4de2-b523-0c92de33a983','905304259202','MÜZEYYEN TEYMUROĞLU adlı müşterinizin 478677950 nolu gönderisi 42 parça halinde yola çıkmıştır.','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('5c0abfaf-05af-4c38-a825-91232c1d14cb','905079047428','RAHİMİ adlı müşterinizin 449445608 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72028383-f354-4335-af98-094bc771c86d',NULL),
('5c0d1579-842b-4b87-a40f-6b1e2ab04e20','31687242352','Sayın , 248746135 nolu gönderiniz 1984 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248746135\n\nDear , your shipment with 248746135 was delivered to you with the delivery code 1984. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248746135\n\n\nBICARGO','1','8b8f439c-2dbf-40f1-a946-d37ea9c4566f',NULL),
('5c1081c4-a4ca-4864-be2e-db3c3d4381c0','0033771681508','Sayın YALÇIN, 735553146 nolu gönderiniz 7162 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735553146\n\nDear YALÇIN, your shipment with 735553146 was delivered to you with the delivery code 7162. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735553146\n\n\nBICARGO','2','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL),
('5c1164ae-2400-49f6-ade2-74adb42bc250','436602444902','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('5c164b42-104a-42c6-a433-d4f4feb79b43','905336367828','BRAHIMA NAIMA adlı müşterinizin 982446186 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('5c23224d-73a8-48fb-b07d-ac9b28ba7cb1','491778777755','Sayın ORHAN KURT, 817578021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817578021\n\nDear ORHAN KURT, your shipment with 817578021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817578021\n\nBICARGO','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('5c23a820-ca67-4510-9359-5c7327b27e4e','32478764812','Sayın KELLY DE VOS , 221560581 nolu gönderiniz 10862 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221560581\n\nDear KELLY DE VOS , your shipment with 221560581 was delivered to you with the delivery code 10862. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221560581\n\n\nBICARGO','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('5c2c07c8-92de-4b36-9375-5f972a5adac6','905350617509','ENES TAHİRİ adlı müşterinizin 613803170 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('5c2cba88-7793-42a7-a5be-d8b489b245e6','4915735873115','614680407 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10737 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614680407\n\nYour shipment with the number 614680407 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10737. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614680407\n\nBICARGO','1','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('5c2eb555-b2fb-4913-b6d0-b8e347444cb2','905079358213','Sayın yetkili; HASAN ÇETİN adlı müşterinize 745810889 nolu gönderinizin ÖZEL MASA 165 CM  ürünü 3 parça halinde GÜMÜŞ MASA adresinizden 24.09.2025 17:38:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('5c2f947d-e8e9-4e13-9795-82741e59237c','33784196938','Sayın ALİ DİNAR, 478185886 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478185886\n\nDear ALİ DİNAR, your shipment with 478185886 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478185886\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('5c2fea1a-240f-48be-aedd-0a363a0baf4e','905325000478','MESUT-ŞENOL adlı müşterinizin 412206514 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','50ac71ad-f352-4f3f-9611-9447396e01a3',NULL),
('5c329ec1-cba0-4ce4-9158-f20fa4451f63','905325165070','Sayın yetkili; Erkan ÖZKÖKKAYA adlı müşterinize 734788911 nolu gönderinizin GOLF Berjer ürünü 2 parça halinde ALYAMO adresinizden 13.11.2024 17:24:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('5c35999c-765b-4ec9-99f0-ae809e807237','330235750785','478505417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1170 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478505417\n\nYour shipment with the number 478505417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1170. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478505417\n\nBICARGO','2','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('5c368166-99d4-4779-b56c-953fa6aff7b8','4915772639272','Sayın EMİLE ARSLAN, 37142091 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37142091\n\nDear EMİLE ARSLAN, your shipment with 37142091 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37142091\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('5c42642b-1ad3-44b6-9569-04d1a76ac485','','ELVİN ÇETİN adlı müşterinizin 734955536 nolu gönderisi 10 parça halinde yola çıkmıştır.','2','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL),
('5c46be3f-5590-4bef-9192-30f835c7cb41','905335511664','Sayın yetkili; EBRU ALTUNTAŞ adlı müşterinize 37165070 nolu gönderinizin MASA ürünü 1 parça halinde SM Tasarım adresinizden 21.07.2025 15:39:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2cd4df69-3bf7-4556-b02d-248a7c9eed51',NULL),
('5c5a7927-5e0b-480a-a21d-d64a869580f2','905443955915','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614741569 nolu gönderinizin ALLEGRO MİLANO MASA ürünü 3 parça halinde ALLEGRO  adresinizden 27.01.2025 14:15:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('5c5ac316-71de-403f-b56b-e56326f7331d','491774653260','Sayın MUSA TABARU, 231348651 nolu gönderiniz 3883 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231348651\n\nDear MUSA TABARU, your shipment with 231348651 was delivered to you with the delivery code 3883. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231348651\n\n\nBICARGO','1','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL),
('5c5fa7c2-8ca8-4d37-9538-814903b66581','905054335859','MAHRİCAN DERİN adlı müşterinizin 501848451 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL),
('5c607285-b326-4f82-8bd2-dca0c5350fb5','49162150360','478719602 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7205 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478719602\n\nYour shipment with the number 478719602 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7205. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478719602\n\nBICARGO','2','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('5c625246-b6d2-49ab-bcdd-7d215015387e','4368864127387','Sayın ABBAS GHULANI , 982978293 nolu gönderiniz 7939 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982978293\n\nDear ABBAS GHULANI , your shipment with 982978293 was delivered to you with the delivery code 7939. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982978293\n\n\nBICARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('5c62abff-4eb4-480c-ad15-787603bd247a','11111111111','Sayın ERCAN KARADAVUT , 248315101 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248315101\n\nDear ERCAN KARADAVUT , your shipment with 248315101 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248315101\n\nBICARGO','2','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL),
('5c62db0f-4a91-4742-87d2-96ac842ea487','905331602195','Sayın yetkili; HATİCE GÜRBAY adlı müşterinize 22140129 nolu gönderinizin MİLAS BEYAZ ORTA SEHPA ürünü 2 parça halinde Fatura adresinizden 03.01.2025 11:13:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('5c665481-4ff8-458a-900e-06db823fcd71','905075277637','Sayın yetkili; SÜVEYLA TARHAN adlı müşterinize 745906539 nolu gönderinizin DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 24.09.2025 13:45:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('5c666073-4c8a-4d8b-bb80-0675feafb14c','905331602195','AKKAY NADİA adlı müşterinizin 22133183 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL),
('5c67e5f9-8c81-4e62-83c0-bc61a9228a5d','4917660894702','Sayın YAŞAR YALMAN, 478559056 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478559056\n\nDear YAŞAR YALMAN, your shipment with 478559056 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478559056\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('5c6e1adf-bbdd-4ebe-9747-1a595f98a262','905079358213','Abbas sertaç adlı müşterinizin 745715303 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7af47c44-93b1-42ec-813b-77c155a1b050',NULL),
('5c6fad91-4446-4f57-aa26-7f3b37200aa2','4917615735547','Sayın ÖMER VAROL(K), 644714925 nolu gönderiniz 6830 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644714925\n\nDear ÖMER VAROL(K), your shipment with 644714925 was delivered to you with the delivery code 6830. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644714925\n\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('5c7021be-9cff-4f55-9f38-2d53dc2f1f32','905451571652','Sayın yetkili; SERCAN MİRCALİ adlı müşterinize 531549696 nolu gönderinizin TRAVERTİN MASA 300x100 ürünü 2 parça halinde Fatura adresinizden 29.04.2025 10:23:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('5c7785cb-4851-4f4f-8b9c-45f2d7a4e480','905075277637','ÖZGÜR YILDIRIM adlı müşterinizin 745302940 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('5c7e0602-f577-492f-85f4-d17886bc0c84','4915785625950','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('5c848319-b50a-462c-b48f-4289a93c016b','905075277637','Sayın yetkili; LEİLA GELES SSH adlı müşterinize 745865715 nolu gönderinizin SSH KÖŞE PARÇASI  ürünü 1 parça halinde Fatura adresinizden 09.05.2025 12:14:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('5c873b88-76a2-4a71-a896-b84a2a64eafe','4917779666161','Sayın KIYMET DALMAN(K), 644742878 nolu gönderiniz 7900 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644742878\n\nDear KIYMET DALMAN(K), your shipment with 644742878 was delivered to you with the delivery code 7900. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644742878\n\n\nBICARGO','2','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('5c890745-1a76-4bce-b083-5be8463b9dc5','4915225646424','Sayın HÜSEYİN PEKTAŞ, 745193877 nolu gönderiniz 6709 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745193877\n\nDear HÜSEYİN PEKTAŞ, your shipment with 745193877 was delivered to you with the delivery code 6709. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745193877\n\n\nBICARGO','1','b562fd3b-e30e-4218-a985-6517692ba823',NULL),
('5c89aa2c-37ee-496d-94c8-5abf773fc8ac','31625064385','163961995 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2511 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/163961995\n\nYour shipment with the number 163961995 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2511. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/163961995\n\nBICARGO','1','99f6416e-f8e9-4260-942f-3c4c6b6fdae6',NULL),
('5c8a68ca-2cbc-4c13-b711-ea621916664a','905059175469','Sayın yetkili; İMDAT KILIÇASLAN adlı müşterinize 428480095 nolu gönderinizin köşe koltuk  ürünü 4 parça halinde massi milano adresinizden 09.12.2024 11:29:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('5c8f0cab-ac60-4583-9f54-a983acba7aaf','33622632744','Sayın ALİ ÖZDEN, 745978651 nolu gönderiniz 1441 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745978651\n\nDear ALİ ÖZDEN, your shipment with 745978651 was delivered to you with the delivery code 1441. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745978651\n\n\nBICARGO','1','4ff50bd5-680b-45e9-8634-5c6a78e87f56',NULL),
('5c93349a-2c3b-4079-b7f3-6247a14fce2f','4333635914929','Sayın KECKİN GÜLÜZAR, 449921347 nolu gönderiniz 8541 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449921347\n\nDear KECKİN GÜLÜZAR, your shipment with 449921347 was delivered to you with the delivery code 8541. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449921347\n\n\nBICARGO','2','72595593-1c70-4451-8d5d-15322ee88f0f',NULL),
('5c965eea-454a-46c7-8d03-5965b22c18fd','33768511676','910657387 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1658 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910657387\n\nYour shipment with the number 910657387 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1658. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910657387\n\nBICARGO','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('5c96e38e-e49c-41c1-b116-2f8e90f8b03c','31646621867','Sayın TUĞRA NUR DÜZGÜN, 644298759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298759\n\nDear TUĞRA NUR DÜZGÜN, your shipment with 644298759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644298759\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('5c97c35e-7663-4457-ae31-cccfb565fb19','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin KARYOLA ürünü 6 parça halinde ALBESSA DESİGN adresinizden 29.05.2025 15:43:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('5c988449-0617-4708-aafe-b8cc3ff2c63c','32483028074','Sayın YUSUF TÜRKGELDİ, 478537954 nolu gönderiniz 4234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478537954\n\nDear YUSUF TÜRKGELDİ, your shipment with 478537954 was delivered to you with the delivery code 4234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478537954\n\n\nBICARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('5c9bbd07-a859-4e15-a7a6-5f0534fecc50','436765714761','Sayın  ELİF MUHCU, 127281736 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127281736\n\nDear  ELİF MUHCU, your shipment with 127281736 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127281736\n\nBICARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('5c9ef538-6a62-4073-ae0d-397949e5dff3','4917621221122','Sayın MOHAMED CHAMLALİ, 221920880 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221920880\n\nDear MOHAMED CHAMLALİ, your shipment with 221920880 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221920880\n\nBICARGO','1','c6e5fe36-4cb2-4837-b35f-93523014a3bd',NULL),
('5ca429b8-0524-4fb1-8628-11014a208951','31681164065','Sayın MENEKŞE SEVEN, 598508016 nolu gönderiniz 7582 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598508016\n\nDear MENEKŞE SEVEN, your shipment with 598508016 was delivered to you with the delivery code 7582. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598508016\n\n\nBICARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('5ca90384-377b-4c6f-8706-adfbc18dac2d','4917621610242','644635640 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6747 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644635640\n\nYour shipment with the number 644635640 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6747. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644635640\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('5cae17ef-35cb-474a-9675-02b7f6cecd68','905461661672','GAMZE ŞAŞMA adlı müşterinizin 644523362 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('5cae8e53-3905-4c40-8e52-8c4c657a5568','491788617240','Sayın METİN NEŞELİ, 478345732 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478345732\n\nDear METİN NEŞELİ, your shipment with 478345732 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478345732\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('5cb4b6e8-b5dc-442b-837b-585b128da82d','905079047428','DERYA KÖSE adlı müşterinizin 449208438 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL),
('5cb79cab-b244-49cd-91a5-2525ffff2bb2','436606332095','Sayın SERKAN ELGİT , 61310831 nolu gönderiniz 7828 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61310831\n\nDear SERKAN ELGİT , your shipment with 61310831 was delivered to you with the delivery code 7828. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61310831\n\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('5cba3f1c-4b93-46b8-bb6d-c93be11a66a6','905059175469','Sayın yetkili; HASAN ÖZSOY adlı müşterinize 428653750 nolu gönderinizin köşe ürünü 5 parça halinde sude adresinizden 25.08.2025 15:04:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('5cbc5b7d-0b9d-4b65-a465-05ca7c2a36b6',NULL,'Sayın yetkili; FATEMEH HOSSAİNİ adlı müşterinize 112787965 nolu gönderinizin Koltuk  ürünü 4 parça halinde Erba koltuk imalat  adresinizden 19.11.2024 12:41:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('5cbcab98-05ac-4355-ae31-9fd6f1acc5ce','905461661672','Sayın yetkili; NADİYE ÇAVUŞ adlı müşterinize 644200718 nolu gönderinizin SANDALYE ürünü 4 parça halinde ELAKSA SANDALYE adresinizden 28.07.2025 11:24:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('5cbd34c2-3b30-43be-b32d-b01b5a481a62','905349208933','Sayın yetkili; MAHMUD YUSUF ÖKDEM adlı müşterinize 127253098 nolu gönderinizin MERMER VE SEHPA ürünü 3 parça halinde Oylat Mermer  adresinizden 07.02.2025 14:40:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('5cbd7c3b-6189-4b11-9788-2f71ec7ac6ca','905517075149','İLHAM SEVAL İNDİRME adlı müşterinizin 478259590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('5cbfe2a3-de7b-43af-aeb1-9eb92e43d1fd','4917663208908','248568702 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6613 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248568702\n\nYour shipment with the number 248568702 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6613. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248568702\n\nBICARGO','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('5cc212ab-e520-44cf-97d0-957594c065a8','905540182920','448153102 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8598 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/448153102\n\nYour shipment with the number 448153102 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8598. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/448153102\n\nBICARGO','1','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL),
('5cc46f83-b24a-424c-9ecc-1fbd3c2b6aff','905313340045','MERVE KARADAVUT adlı müşterinizin 437233015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('5cc8873f-9dc2-4697-8843-5ef19721585f','31648963092','Sayın SİAART MERMER, 663743560 nolu gönderiniz 9595 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/663743560\n\nDear SİAART MERMER, your shipment with 663743560 was delivered to you with the delivery code 9595. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/663743560\n\n\nBICARGO','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('5cd55020-9acb-4007-81d6-9ce6955bfbee','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin DÖŞEK ürünü 1 parça halinde Fatura adresinizden 30.05.2025 12:01:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('5cd59660-08b6-4181-95fc-1590da68cdc0','905331602195','Sayın yetkili; NİHAL ŞAHİN adlı müşterinize 221899517 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:33:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('5cd67fad-f33a-4161-b8c0-7e547585abf5','905349208933','MAHMUD YUSUF ÖKDEM adlı müşterinizin 127253098 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('5cdab152-65b3-46df-8d3d-45da01bfbc42','004917672312771','Sayın CANSU EVCİ, 735318305 nolu gönderiniz 3942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735318305\n\nDear CANSU EVCİ, your shipment with 735318305 was delivered to you with the delivery code 3942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735318305\n\n\nBICARGO','2','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL),
('5cdc04db-b7f9-4db9-9c58-577e9822b4e9','905313340045','Sayın yetkili; ISRA ISKENDER adlı müşterinize 43736182 nolu gönderinizin 3 kutu sandalye ürünü 4 parça halinde ard sandalye adresinizden 19.03.2025 15:23:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('5cdfe1a5-20d2-4ad3-a8cb-5d97b4af4127','905075277637','TUNCAY AKAR adlı müşterinizin 745483178 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL),
('5ce60e04-7f1c-4554-9f25-422b36dd80b3','905331602195','Sayın yetkili; ANİL ZAMUR  adlı müşterinize 221204525 nolu gönderinizin 90x190 koyu ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:45:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('5ced2e41-20fa-4a10-9562-81b22f3928aa','905421855834','ZEKERİYA SOYER adlı müşterinizin 338878009 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('5ced32b4-c74a-4a27-a8de-8ac0a3de7797','905510396989','EBUBEKİR ATA  adlı müşterinizin 319316615 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL),
('5ced405e-8c5b-4d86-be14-8d64b05f7b6d','491766154615','Sayın HİLAL YILMAZ , 2213375 nolu gönderiniz 5304 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/2213375\n\nDear HİLAL YILMAZ , your shipment with 2213375 was delivered to you with the delivery code 5304. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/2213375\n\n\nBICARGO','2','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('5cf29562-ed59-496e-9334-9ffef8813343','905461661672','Sayın yetkili; BARLEB KASS HANNA adlı müşterinize 644106987 nolu gönderinizin SEHPA AYAĞI ürünü 1 parça halinde Masami Mobilya adresinizden 28.04.2025 17:26:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('5cf4b706-18c6-4304-99fd-86c8b755e557','33787231451','231429780 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7541 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231429780\n\nYour shipment with the number 231429780 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7541. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231429780\n\nBICARGO','1','d850bd2e-4975-4529-8b56-6564706b808f',NULL),
('5cf5c2a6-a25a-4338-b6a4-243431613549','4915753286470','Sayın SEMA KAYALI, 64448364 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64448364\n\nDear SEMA KAYALI, your shipment with 64448364 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64448364\n\nBICARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('5cf656e7-5cf9-46f1-b8a7-a7f71f3bb11a','9054439559150','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614868518 nolu gönderinizin ALLEGRO MİLANO SANDALYE İÇİN RUTUŞ BOYASI  ürünü 1 parça halinde ALLEGRO  adresinizden 07.04.2025 16:09:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('5cf688cb-93c9-42ce-a255-38d91c8f6a56','905350617509','Sayın yetkili; BERNA YİLDİRİM adlı müşterinize 613847250 nolu gönderinizin Karyola ürünü 6 parça halinde Moe Bedding adresinizden 18.06.2025 14:18:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('5cf6f555-5b11-4a20-8255-938b330f0e11','905443955915','YASİN ÖKTEM  adlı müşterinizin 614352 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL),
('5cfc9157-1fb1-41e8-be5a-c220d477ad70','905331602195','İLAYDA CALINALTI adlı müşterinizin 22137977 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('5cfe583a-87da-4a68-a98d-02673aeb0246','4915150003211','Sayın ERGÜN AKSOY, 657147391 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657147391\n\nDear ERGÜN AKSOY, your shipment with 657147391 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657147391\n\nBICARGO','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('5d025393-cc6c-4274-a609-c26971cc3d46','491742555594','Sayın TUĞBA BALIKÇI, 437154123 nolu gönderiniz 9991 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437154123\n\nDear TUĞBA BALIKÇI, your shipment with 437154123 was delivered to you with the delivery code 9991. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437154123\n\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('5d04d3b4-a115-47ba-a578-7769bb94b343','491741928164','371528044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371528044\n\nYour shipment with the number 371528044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371528044\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('5d070200-25ff-4f06-81e4-9fcc2d0b40d6','40754578343','Sayın MİAMİ STYLE , 982999114 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982999114\n\nDear MİAMİ STYLE , your shipment with 982999114 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982999114\n\nBICARGO','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('5d0813b4-4089-478b-95a8-3c180d81cff9','491739128442','910225013 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6392 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910225013\n\nYour shipment with the number 910225013 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6392. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910225013\n\nBICARGO','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('5d089df9-b92a-4e9a-bd77-913363b89ba1','436642175788','371521572 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10402 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371521572\n\nYour shipment with the number 371521572 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10402. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371521572\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('5d107047-306d-4577-92b0-963f804b5a07','905454259202','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478431848 nolu gönderinizin 100*200 YATAK ürünü 1 parça halinde çelikbey inegöl depo adresinizden 12.03.2025 21:27:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('5d29d7c5-2473-4390-b0da-260bfacbd86a','905461661672','Sayın yetkili; MUSTAFA ÖZTAŞ adlı müşterinize 644147833 nolu gönderinizin sandalye ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 06.08.2025 11:22:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('5d322c70-6af3-44af-8aa6-b9e2109f274b','905336367828','Sayın yetkili; SAİMİR BALLA  adlı müşterinize 982431907 nolu gönderinizin Baza  ürünü 2 parça halinde Marki baza  adresinizden 27.02.2025 16:23:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('5d3659cb-69e8-4af4-806a-0293bbfd9cd1','905336367828','ERKAN UYSAL  adlı müşterinizin 982271871 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('5d3eef3e-16d5-4a41-844a-5a6f3a1cdebd','905335708965','2 3 LÜ adlı müşterinizin 248538815 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL),
('5d419a7e-f034-4811-99bd-e9fdc30828aa','4917634403928','Sayın BİLAL KIZILIRMAK, 371155650 nolu gönderiniz 6152 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371155650\n\nDear BİLAL KIZILIRMAK, your shipment with 371155650 was delivered to you with the delivery code 6152. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371155650\n\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('5d4214f6-0c08-4864-af32-30767a8434cf','905451571652','BUKET AKDAG adlı müşterinizin 531380104 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','47f285e8-830a-42cf-a352-d8268aef8cdb',NULL),
('5d471d4c-4136-4bf4-beb8-fd63001035cc','905331602195','ALİYE DALKAYA adlı müşterinizin 221763889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('5d4b7473-131e-49bc-a714-af5a256e09ef','491778507163','Sayın ELİF KELEŞ, 455460659 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455460659\n\nDear ELİF KELEŞ, your shipment with 455460659 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455460659\n\nBICARGO','1','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL),
('5d4c988d-4e66-4bd8-a8dc-c604e6d93d04','491639801426','Sayın MUSTAFA, 107623614 nolu gönderiniz 4027 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/107623614\n\nDear MUSTAFA, your shipment with 107623614 was delivered to you with the delivery code 4027. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/107623614\n\n\nBICARGO','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('5d4cfa6f-aa69-4db5-a9d2-1e618444ce1e','905313340045','GÜL KOÇAK adlı müşterinizin 437672074 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('5d52be0e-7d5b-4233-87ab-c43b3d8df37a','31625064385','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('5d53e76a-3e31-42ac-988f-af8e3e0bceb9','905332942204','Sayın yetkili; DEBORAH BELOVED IDAGU adlı müşterinize 505987989 nolu gönderinizin sandalye ürünü 3 parça halinde mfour adresinizden 29.07.2025 12:15:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('5d5a6268-4c6d-4631-9db4-6389d69b7fca','905075277637','NUR YILDIRIM adlı müşterinizin 745278745 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('5d5a75f9-4278-4380-8780-2de6dcce10bc','905336367828','MİNE GÖKÜZÜM adlı müşterinizin 982992264 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL),
('5d5da7ee-bc15-42d8-a7ee-4c1d344e5f7f','905461661672','Sayın yetkili; ÜMİT MORCA adlı müşterinize 644377995 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 25.06.2025 17:52:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('5d636ac2-0947-4593-9ef4-a944abf667a3','4917623385759','Sayın SONGÜL AKKOC, 515171044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515171044\n\nDear SONGÜL AKKOC, your shipment with 515171044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515171044\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('5d657e96-d061-4bf0-9d83-e3ef78b0499e','4917634365178','Sayın SERAP ÖZTEK, 437660658 nolu gönderiniz 5915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437660658\n\nDear SERAP ÖZTEK, your shipment with 437660658 was delivered to you with the delivery code 5915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437660658\n\n\nBICARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('5d664075-0383-4b83-af25-37ad99319826','905079047428','SİBEL BAHÇECİ adlı müşterinizin 449902693 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL),
('5d67540e-a760-4e64-8ae2-6e0c133331c7','4915118402012','Sayın ABDÜLKERİM AKDAS, 248359668 nolu gönderiniz 3792 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248359668\n\nDear ABDÜLKERİM AKDAS, your shipment with 248359668 was delivered to you with the delivery code 3792. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248359668\n\n\nBICARGO','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('5d684357-7950-497b-ac94-e6b50bd746b7','05388618969','Sayın yetkili; JESSİCA PAPST adlı müşterinize 786156168 nolu gönderinizin Ayka chair  ürünü 3 parça halinde Ayka chair  adresinizden 16.10.2025 15:38:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f82a6da6-d534-481f-99b5-f2618145eed1',NULL),
('5d7083b9-f44f-4bc6-b849-876370fee2ca','905461661672','MELEK IŞIK adlı müşterinizin 644739716 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('5d72f6a4-c235-40b3-ba27-be8618ea5c37','','Sayın , 146630568 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/146630568\n\nDear , your shipment with 146630568 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/146630568\n\nBICARGO','2',NULL,NULL),
('5d783760-dcaf-495b-a4d5-1fe7b75560c6','905363385813','Sayın yetkili; SONGÜL GÜRKAN adlı müşterinize 976843037 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde SALON KOLTUK adresinizden 17.03.2025 11:26:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('5d783d51-0b4e-41ca-a6ce-1ed5ecf0f309','905304259202','İBRAHİM TANKAZ adlı müşterinizin 478354582 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('5d79cd8d-9051-49b1-9141-37fc3a5c46aa','436644740291','Sayın ALİ ALBAY, 517205085 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517205085\n\nDear ALİ ALBAY, your shipment with 517205085 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517205085\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('5d7a8f31-c6a6-4c6a-8087-9e6b62725614','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin RAMS YATAK ODASI ürünü 18 parça halinde FAMILY  adresinizden 19.03.2025 17:00:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('5d7aff9d-9d69-472f-ada3-72e51e34edfe','905443955915','RASİM EKİCİ adlı müşterinizin 614462377 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL),
('5d7b4bf5-464e-44ec-8730-1a9efd034a7a','33698945005','Sayın SERHAT ÇAÇAN, 745303876 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745303876\n\nDear SERHAT ÇAÇAN, your shipment with 745303876 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745303876\n\nBICARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('5d7fb013-1e58-40da-8d94-734b76a1fbd7','33771744012','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('5d806b95-109e-4232-9d01-8e3115531042','905331602195','Sayın yetkili; MUHAMMED ÇETİN adlı müşterinize 221234413 nolu gönderinizin SYDNEİ SİYAH METAL SANDALYE ürünü 3 parça halinde MERT SANDALYE  adresinizden 27.03.2025 15:14:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('5d8c67af-4508-49e4-8066-c4072282fef3','905363385813','Sayın yetkili; RABİA GÜNER adlı müşterinize 97684781 nolu gönderinizin Köşe Koltuk ürünü 3 parça halinde SALON KOLTUK adresinizden 03.03.2025 12:38:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('5d8cf1f4-454e-4819-b3a8-ce48b4b1bab3','491795103491','Sayın RAMAZAN SEVİ, 517558560 nolu gönderiniz 3161 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517558560\n\nDear RAMAZAN SEVİ, your shipment with 517558560 was delivered to you with the delivery code 3161. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517558560\n\n\nBICARGO','1','fed099bd-765c-4045-9372-03dae428fedb',NULL),
('5d908817-d601-4124-8dfd-e44835a9cba3','32491914908','Sayın EDİ, 412384414 nolu gönderiniz 7450 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412384414\n\nDear EDİ, your shipment with 412384414 was delivered to you with the delivery code 7450. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412384414\n\n\nBICARGO','1','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL),
('5d918f4a-a2a4-4567-a2e5-21e79a4b0456','905075277637','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin ODDOLUX MASA SANDALYE  ürünü 6 parça halinde ODDO adresinizden 08.09.2025 12:05:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('5d91ed67-eec6-435e-8a11-ba1dc927ed1e','33785173918','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('5d931b34-4eb7-401a-8199-e859fab2f3b3','4915154689430','Sayın ENVER GÜL, 478659791 nolu gönderiniz 5183 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478659791\n\nDear ENVER GÜL, your shipment with 478659791 was delivered to you with the delivery code 5183. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478659791\n\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('5d951fa6-496e-4ec6-ac3c-70ab7ac2bc18','905517075149','ERKUT PEKTAŞ adlı müşterinizin 478474988 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('5d969c12-565b-49e5-aa8a-e149d265d41a','905079358213','Sayın yetkili; CEYLAN ÇELİK adlı müşterinize 745747218 nolu gönderinizin KING PLATİN BAZA 100X200 2 TK ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:16:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('5d994ae0-8d1e-40ec-878d-a6f9191fc63c','905301592882','Sayın yetkili; EKREM ASLAN adlı müşterinize 910632087 nolu gönderinizin SSH ürünü 13 parça halinde Fatura adresinizden 01.08.2025 12:49:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('5d9b9cdc-9a93-47ac-b43e-79923fb84697','905431026110','Sayın yetkili; MERVE İÇEN adlı müşterinize 351330330 nolu gönderinizin sandalye ürünü 6 parça halinde BALİ SANDALYE adresinizden 16.09.2025 17:08:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('5d9f1ce8-4d1b-424a-b7b7-c594dd461581','4917682051476','Sayın JASMİNA YILMAZ, 371785400 nolu gönderiniz 8975 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371785400\n\nDear JASMİNA YILMAZ, your shipment with 371785400 was delivered to you with the delivery code 8975. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371785400\n\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('5dab25db-4da2-426b-84d1-d9fae333e801','31640888503','Sayın KORAY KÜPE, 478693155 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478693155\n\nDear KORAY KÜPE, your shipment with 478693155 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478693155\n\nBICARGO','1','a624a844-f729-4653-993f-bd28278f47e5',NULL),
('5dac7572-666a-4a06-b39e-aa8efeb24885','4915255996436','614508817 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614508817\n\nYour shipment with the number 614508817 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614508817\n\nBICARGO','1','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL),
('5db725a1-0116-48a1-85ae-58caa4b987a7','4917634365178','437660658 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437660658\n\nYour shipment with the number 437660658 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437660658\n\nBICARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('5dbcb449-4b57-4b5a-ae69-fdfd5b1fd8b3','4917634315393','598405313 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5041 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598405313\n\nYour shipment with the number 598405313 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5041. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598405313\n\nBICARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('5dc4885f-a5af-4673-adc2-043d15eb9f27','05357772672','Sayın HATUN ŞİMŞEK, 842151692 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/842151692\n\nDear HATUN ŞİMŞEK, your shipment with 842151692 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/842151692\n\nBICARGO','2','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('5dca8287-7d0f-4789-92ea-e01d161c8234','905313340045','NESLİHAN CAN adlı müşterinizin 437940825 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('5dcb39f8-9fec-42d1-b8ea-8b3f8d71f873','905517075149','BİLGEN TATAR adlı müşterinizin 478901590 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('5dcfae0f-7fc0-4b4f-9b3b-db1451075134','4917620519550','745869069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745869069\n\nYour shipment with the number 745869069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745869069\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('5dd4f1b5-fe2a-41b1-aa77-0871349e6638','330620164241','Sayın TKHİLİ NAİDA, 982318245 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982318245\n\nDear TKHİLİ NAİDA, your shipment with 982318245 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982318245\n\n\nBICARGO','1','226e99fa-2222-409d-9c22-ab0639c760f9',NULL),
('5dd82379-d5a0-473c-a857-d0d71c0bdc3d','905304259202','ZEYNEP CİHANGİR adlı müşterinizin 478678849 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('5dd83e82-b34c-4c09-a207-30e67d6b6313','905335511664','SELÇUK SÖNMEZ adlı müşterinizin 371183095 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('5dd8cfc7-335e-4f93-9b7f-b623151d6cec','4369910363377','Sayın GÖKMEN GÖNÜLTAŞ, 428754067 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428754067\n\nDear GÖKMEN GÖNÜLTAŞ, your shipment with 428754067 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428754067\n\nBICARGO','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('5dda0977-6cdc-4511-842c-dd4e48efa65d','1111111111111111','Sayın FİRAS MACHANTAT, 750125400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750125400\n\nDear FİRAS MACHANTAT, your shipment with 750125400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750125400\n\nBICARGO','2','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('5ddb6c8a-6c6f-410c-bce2-89fe496e636c','905075277637','Sayın yetkili; BERKANT YAŞA adlı müşterinize 745717474 nolu gönderinizin BONNY TEKLİ  ürünü 1 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 13.03.2025 14:51:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('5de01ff4-6bf4-4e36-8107-6527007983db','905336367828','ŞEYDA ŞAHİN adlı müşterinizin 9824380 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL),
('5de04671-db57-40ee-ab4d-9eb0f1369fb5','4917682107795','Sayın ENES KARABAŞOĞLU, 598130952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598130952\n\nDear ENES KARABAŞOĞLU, your shipment with 598130952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598130952\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('5de60fde-31d6-4ec2-be3e-7791f17777ed','905327099916','ERCAN DİKME adlı müşterinizin 959658567 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','5e8ddd62-748e-4719-9bad-9f588fc2c7d3',NULL),
('5de972ad-4ca3-4259-994c-896e4e17b460','4915566264535','Sayın AYNUR KAPUCU, 221694221 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221694221\n\nDear AYNUR KAPUCU, your shipment with 221694221 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221694221\n\nBICARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('5deb84ee-4e17-4380-ad13-ed97d9690812','905421855834','YUŞA SOYER adlı müşterinizin 338678802 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL),
('5dec88b9-bad5-487b-8b01-bf1056fd0a31','33769000460','478337610 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478337610\n\nYour shipment with the number 478337610 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478337610\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('5deeec75-f3d5-4523-bd10-d18406c73021','4915780460011','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('5deeffff-6bd5-4681-ac13-debcbf682b32','004915229410362','735272751 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5751 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735272751\n\nYour shipment with the number 735272751 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5751. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735272751\n\nBICARGO','2','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL),
('5defdc26-0c02-4a77-89ab-1dba9c3795cc','905461661672','Sayın yetkili; RABİA AKKUŞ adlı müşterinize 644507096 nolu gönderinizin köşe Koltuk ürünü 5 parça halinde LENTE HOME adresinizden 26.05.2025 14:35:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('5df281b4-178c-495d-8ead-746339c501a4','11111111111111','Sayın MESUT AKYÖN, 437481013 nolu gönderiniz 9532 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437481013\n\nDear MESUT AKYÖN, your shipment with 437481013 was delivered to you with the delivery code 9532. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437481013\n\n\nBICARGO','2','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('5dfb42fa-f964-4bb1-8045-a23ea5aa4e6b','491778507163','455685955 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4218 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455685955\n\nYour shipment with the number 455685955 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4218. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455685955\n\nBICARGO','1','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL),
('5dfdbeb5-7510-4426-9bc2-a8cad66e3c5a','905059175469','KADİR ÖZCAN  adlı müşterinizin 428159880 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL),
('5e02b476-172e-4b00-a541-a9a257249ebd','436603406293','MARTİN MARİNKOVİC adlı müşterinizin 675885408 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('5e02ff16-11fe-4a7e-8fbe-d2f13396a6b9','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('5e04abc3-81a6-4f48-9386-c6f163c8651a','905431026110','Sayın yetkili; MERVE İÇEN adlı müşterinize 351330330 nolu gönderinizin masa ürünü 3 parça halinde MASAMİ adresinizden 16.09.2025 16:49:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('5e0541a0-5518-48a1-855b-3f5a68ee7294','33751366069','Sayın SERHAT ERDOĞMUŞ, 449558519 nolu gönderiniz 8896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449558519\n\nDear SERHAT ERDOĞMUŞ, your shipment with 449558519 was delivered to you with the delivery code 8896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449558519\n\n\nBICARGO','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('5e089e19-bf4f-489e-aa54-3a2964b5e1ae','33753794689','478784133 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478784133\n\nYour shipment with the number 478784133 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478784133\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('5e0a2699-8b7c-4de2-af1b-820912f218ae',NULL,' MUSTAFA KHALİFEH adlı müşterinizin 081982015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('5e0fef91-f8fc-4f13-80d1-71de3eaee13e','905313340045','DOBREA NİCOLETA SSH adlı müşterinizin 437132386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('5e127634-1777-4ad0-a8cc-834853202e61','33668667974','Sayın BAL CİHAN, 614908568 nolu gönderiniz 2813 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614908568\n\nDear BAL CİHAN, your shipment with 614908568 was delivered to you with the delivery code 2813. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614908568\n\n\nBICARGO','1','f169361d-a98a-44cd-9be5-0d014e87b896',NULL),
('5e14ed99-676d-4543-9f66-2313858a62e0','491741630656','Sayın BEKİR TEKELİ, 437700144 nolu gönderiniz 6115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437700144\n\nDear BEKİR TEKELİ, your shipment with 437700144 was delivered to you with the delivery code 6115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437700144\n\n\nBICARGO','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('5e1513d1-9dcd-4166-a248-4d9821731336','905331602195','HURİYE SERBEST adlı müşterinizin 221416180 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('5e193119-5eac-4bf9-a895-7bca60b5deb7','5325000478','Sayın ERGÜN ERGÜN, 02.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0938744\nŞifre : 0938744\n			\nBİCARGO','1',NULL,'be093fb8-7446-49af-8917-367653a1e741'),
('5e19bd84-d888-492f-b781-bcd50ad7a30a','33787053460','Sayın EMRAH ERAYDIN, 127395599 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127395599\n\nDear EMRAH ERAYDIN, your shipment with 127395599 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127395599\n\nBICARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('5e19cc27-d904-41c7-bf57-7bbeabc89c3e','330758774283','982681083 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8956 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982681083\n\nYour shipment with the number 982681083 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8956. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982681083\n\nBICARGO','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('5e1b58b7-e73c-4cfe-a202-426f69e46166','31634559022','Sayın ÖMER ALİ ALKAN, 319897198 nolu gönderiniz 8077 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319897198\n\nDear ÖMER ALİ ALKAN, your shipment with 319897198 was delivered to you with the delivery code 8077. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319897198\n\n\nBICARGO','1','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL),
('5e1ed1d4-323c-48ea-957d-61239bd027fc','436601909208','334206952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8658 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/334206952\n\nYour shipment with the number 334206952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8658. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/334206952\n\nBICARGO','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('5e23a3dc-3fe0-4728-b46b-c6fa7c6b1de8','31681041112','Sayın FUNDA HANIM, 412149383 nolu gönderiniz 9689 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412149383\n\nDear FUNDA HANIM, your shipment with 412149383 was delivered to you with the delivery code 9689. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412149383\n\n\nBICARGO','1','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL),
('5e252594-36c1-488b-9256-ffa83c22a4fc','905343753391','Sayın yetkili; SEDA ERSÖZ adlı müşterinize 644823609 nolu gönderinizin MASA VE ORTA SEHPA ürünü 4 parça halinde AZUR MOBİLYA adresinizden 25.02.2025 11:14:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('5e270b84-960c-4a68-8294-de0071748639','9053259981980','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY BASLIK 190 CM ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:34:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('5e2d5403-a15d-4997-bbac-4fc5ada6b10a','436769208586','Sayın MİKAİL ÖZBEK, 675749315 nolu gönderiniz 10473 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675749315\n\nDear MİKAİL ÖZBEK, your shipment with 675749315 was delivered to you with the delivery code 10473. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675749315\n\n\nBICARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('5e2e70d1-0967-49a1-8c58-0d74fad19490','491743051897','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','2','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('5e2eec1b-bb52-4f27-814d-2454d70493ec','31638631333','Sayın HARUN YILDIRIM, 657782 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657782\n\nDear HARUN YILDIRIM, your shipment with 657782 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657782\n\nBICARGO','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('5e2fd251-76fd-4368-b237-96f65d2470d5','31686439941','221583384 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9893 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221583384\n\nYour shipment with the number 221583384 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9893. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221583384\n\nBICARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('5e381796-07c9-4e68-9c8e-3245cfbbf33e','491747042790','Sayın TÜLAY AYDIN, 428604775 nolu gönderiniz 4785 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428604775\n\nDear TÜLAY AYDIN, your shipment with 428604775 was delivered to you with the delivery code 4785. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428604775\n\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('5e39d2ef-4b23-4977-91a1-76ae95b6dc05','4915733741918','Sayın MAZHAR BAYMAN SSH, 644803178 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644803178\n\nDear MAZHAR BAYMAN SSH, your shipment with 644803178 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644803178\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('5e3de82a-57fe-43ff-9b5a-833d7125afcc','905335511664','Sayın yetkili; TUĞBA COŞKUN adlı müşterinize 371672954 nolu gönderinizin masa sehpa ürünü 5 parça halinde SM Tasarım adresinizden 24.04.2025 18:11:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('5e44e563-586d-4935-bc99-9476d520c3aa','4369919588138','80873489 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/80873489\n\nYour shipment with the number 80873489 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/80873489\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('5e4c1e6c-46a7-4f1e-b4b8-43d0fbf945c5','905079358213','SEDAT ÇİFÇİ  adlı müşterinizin 745538897 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('5e5227f5-cdcd-44b6-b8e4-cdad7954f7aa','905428209234','Meliha yüksek adlı müşterinizin 319458159 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','29175f89-ad14-442c-b1fb-71c9053ba227',NULL),
('5e56f075-253c-4925-80e2-ad7debd0c872','905365908694','MURAT YILMAZ adlı müşterinizin 223440405 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL),
('5e5da153-2f34-487d-b915-9d292212c2b4','491719000609','428718727 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9428 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428718727\n\nYour shipment with the number 428718727 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9428. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428718727\n\nBICARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('5e601945-e48b-4555-82c0-fb712f002f4a','4917630360547','ŞÖFÖR NUMARASI\n					+905467896981','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('5e61bb3a-b016-4097-a8a0-c81111f7c126','33786300110','221594735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3519 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221594735\n\nYour shipment with the number 221594735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3519. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221594735\n\nBICARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('5e667815-42e5-4bc7-8573-f5a5165a9c0e','905517075149','Sayın yetkili; OKAY DERİNKUYU adlı müşterinize 478984010 nolu gönderinizin yatak odası ve puf ürünü 25 parça halinde şahinler ahşap adresinizden 02.07.2025 15:05:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('5e6afe17-4b1d-4ac1-91c2-d819b598c379','905054335859','YUSUF KAYA adlı müşterinizin 501428847 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL),
('5e6d1660-0697-415d-bb99-8b8f2216f232','310650615822','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('5e6da94b-796a-40a6-aaaa-fb6baf2f20b6','0033666437319','248974894 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7946 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248974894\n\nYour shipment with the number 248974894 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7946. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248974894\n\nBICARGO','2','b094bf7e-153f-4984-b737-f7bdece60165',NULL),
('5e6e31e6-e52e-47ea-9061-5affe884bc62','4917632998796','Sayın YAŞAR YALMAN SSH, 478168587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478168587\n\nDear YAŞAR YALMAN SSH, your shipment with 478168587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478168587\n\nBICARGO','1','fe463485-2cc1-4a74-bdc7-66f943713679',NULL),
('5e743737-d19f-452f-88a3-3573bf33bb3a','33652350138','Sayın CELİNE KARA, 478164511 nolu gönderiniz 9335 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478164511\n\nDear CELİNE KARA, your shipment with 478164511 was delivered to you with the delivery code 9335. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478164511\n\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('5e755d1f-c58a-4263-990a-36c3ce425263','905454259202','NEVZAT KAHRAMAN adlı müşterinizin 478212125 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL),
('5e77e342-4789-4eb0-a962-ad85c7098776','905069116877','EDA ABUL adlı müşterinizin 817160215 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('5e78b90c-99ac-423a-bc9b-f8920c89ed03','436605954440','Sayın SARAH KLEİN, 505153730 nolu gönderiniz 8869 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505153730\n\nDear SARAH KLEİN, your shipment with 505153730 was delivered to you with the delivery code 8869. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505153730\n\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('5e7b9dfc-595a-4a5b-8c8d-b201744b66e3','494621092008','Sayın SEVİM KAMER, 478524376 nolu gönderiniz 1228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478524376\n\nDear SEVİM KAMER, your shipment with 478524376 was delivered to you with the delivery code 1228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478524376\n\n\nBICARGO','2','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('5e7d3718-126d-4491-a406-56807a7e617c','905331602195','BİANCA AGOSTİNHO adlı müşterinizin 221439268 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('5e817893-7b07-4637-94a5-b34bf39edb10','41786878898','Sayın AUCHLİ ANA , 221616369 nolu gönderiniz 7912 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221616369\n\nDear AUCHLİ ANA , your shipment with 221616369 was delivered to you with the delivery code 7912. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221616369\n\n\nBICARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('5e8596e3-7b58-4d54-b434-7cc56a71cccc','330788238988','Sayın RABEB HOCQUARD, 74541057 nolu gönderiniz 3213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74541057\n\nDear RABEB HOCQUARD, your shipment with 74541057 was delivered to you with the delivery code 3213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74541057\n\n\nBICARGO','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('5e860482-9862-47e5-8cc6-d6e476531a0a','00491739094453','735280128 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735280128\n\nYour shipment with the number 735280128 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735280128\n\nBICARGO','2','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL),
('5e86e30a-9127-4594-9122-2f977d15c17a','1111111111','Sayın HOMAM AL FAJJARİ, 223575392 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223575392\n\nDear HOMAM AL FAJJARİ, your shipment with 223575392 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223575392\n\nBICARGO','2','649029c3-dc44-4148-9d1c-afdd4ca73418',NULL),
('5e8a5f10-5ce7-4d89-b66f-68b21717db43','4915901358916','Sayın ZEYNEP CİHANGİR, 478678849 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478678849\n\nDear ZEYNEP CİHANGİR, your shipment with 478678849 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478678849\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('5e8b143b-a0ca-4bdc-94a0-8b0b64c97d9c','4917646295086','745332643 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5380 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745332643\n\nYour shipment with the number 745332643 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5380. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745332643\n\nBICARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('5e8b4801-cf4c-4ea1-8b58-a51ea7a7d5b1','905059175469','SÜMEYYE KARAMAN adlı müşterinizin 428103279 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('5e977b01-6040-4d03-bd30-a856a6127442','436609950405','515785688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6892 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515785688\n\nYour shipment with the number 515785688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6892. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515785688\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('5e97a348-5064-4fd6-a1fb-bbe7f21bdce5','905059175469','SİDAR AKDENİZ  adlı müşterinizin 42877136 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL),
('5e9a2432-4b46-4d70-832e-1983e6c774cd','4915207719720','Sayın SAMİ CENGİZ , 248213954 nolu gönderiniz 6862 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248213954\n\nDear SAMİ CENGİZ , your shipment with 248213954 was delivered to you with the delivery code 6862. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248213954\n\n\nBICARGO','1','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL),
('5e9eff1b-a2bc-49fa-a54f-b6a03aae9933','905079358213','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin BONNY TV ÜNİTESİ  ürünü 4 parça halinde BRAWWA MOBİLYA BÖLÜMÜ adresinizden 16.10.2025 11:15:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('5e9f2fb1-abf0-4c5a-8425-5f24b3053df7','905454259202','Sayın yetkili; SÜLEYMAN KAYHAN adlı müşterinize 478763903 nolu gönderinizin DOLAP*BAZA VE YATAKLAR ürünü 1 parça halinde çelikbey inegöl depo adresinizden 18.02.2025 19:28:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('5e9f3c40-1d58-46c1-8654-7ccf3db09e95','491749868075','231712628 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7961 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231712628\n\nYour shipment with the number 231712628 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7961. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231712628\n\nBICARGO','1','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL),
('5ea18aca-2fa9-4e16-b4ec-cced43a73e24','905454259202','Leman emre adlı müşterinizin 478361652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26b9febf-7e0a-455c-acf6-ac5b4fe7b20d',NULL),
('5ea43789-6ac7-4ca6-b4b5-89679a4fdd02','905461661672','ANIL ÇOKBİLİR adlı müşterinizin 644584641 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('5ea4ff02-d420-4f7d-8b19-04db05f5d562','4917670009817','Sayın ROSA DİDİEVA, 52817450 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/52817450\n\nDear ROSA DİDİEVA, your shipment with 52817450 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/52817450\n\nBICARGO','1','2094040d-2cfd-4028-9115-e50a2e855156',NULL),
('5ea5f6a9-6b9c-4011-8e56-42579f4d4ec9','4917684484965','Sayın HÜSEYİN ÇELİK, 351888584 nolu gönderiniz 5536 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/351888584\n\nDear HÜSEYİN ÇELİK, your shipment with 351888584 was delivered to you with the delivery code 5536. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/351888584\n\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('5ea7c884-2fb0-40df-b1fd-a0359db0b043','33613393054','Sayın SİNGH PERWİNDEJİT, 418120869 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/418120869\n\nDear SİNGH PERWİNDEJİT, your shipment with 418120869 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/418120869\n\nBICARGO','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('5eaad856-adfb-4989-a9b1-ce3c2b7a138d','905454259202','ONUR PEKŞEN adlı müşterinizin 478958320 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL),
('5eac1787-fe6d-4afd-8075-13f053ed759a','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin sandalye ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('5eace6f1-2932-463b-a813-c38b4b5c0905','49017657994353','745524390 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745524390\n\nYour shipment with the number 745524390 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745524390\n\nBICARGO','2',NULL,NULL),
('5eacfcf6-c577-4b00-9a3c-a1cd6c6f8c8b','4917624766377','Sayın ALİM BAŞ, 50133574 nolu gönderiniz 2722 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/50133574\n\nDear ALİM BAŞ, your shipment with 50133574 was delivered to you with the delivery code 2722. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/50133574\n\n\nBICARGO','1','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL),
('5eb26c83-3815-4e80-b2ee-bfb64b21af82','32488006856','Sayın HİCRAN KAPLAN, 319206159 nolu gönderiniz 3472 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319206159\n\nDear HİCRAN KAPLAN, your shipment with 319206159 was delivered to you with the delivery code 3472. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319206159\n\n\nBICARGO','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('5eb3e584-54a3-49c4-9fb1-a6d0b2054c82','491631500970','100799933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7191 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/100799933\n\nYour shipment with the number 100799933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7191. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/100799933\n\nBICARGO','1','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL),
('5ebcd228-dcc2-45ef-a13e-8610b4a304fb','436604738360','Sayın NURSELİ KÖSE , 221285061 nolu gönderiniz 1296 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221285061\n\nDear NURSELİ KÖSE , your shipment with 221285061 was delivered to you with the delivery code 1296. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221285061\n\n\nBICARGO','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('5ebde429-bce5-4d48-9f74-813366c55e6c','4915147201286','Sayın İSA SÖNMEZ, 371820680 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820680\n\nDear İSA SÖNMEZ, your shipment with 371820680 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371820680\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('5ebf8057-8e63-4bc9-a275-7f86b7e7b016','4915147201286','Sayın İSA SÖNMEZ, 371820680 nolu gönderiniz 3264 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371820680\n\nDear İSA SÖNMEZ, your shipment with 371820680 was delivered to you with the delivery code 3264. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371820680\n\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('5ec13573-363a-425a-9243-31c4d7b95d17','41798375512','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('5ec5f23d-6315-4d4e-be27-8f81b822a687','905306071261','Sayın yetkili; YOZLEM MİNCHEVA adlı müşterinize 765564339 nolu gönderinizin KARİN TV ÜNİTESİ 210 CM  ürünü 2 parça halinde ESDİVA DESİNG adresinizden 29.09.2025 12:09:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('5ec6aaf1-fb41-471b-a4d1-dd0552967629','9054439559150','İSMET  IRMAK adlı müşterinizin 614659832 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('5eca1932-c2a8-47a2-82f2-c617210b7278','33640388556','Sayın MUHAMMET YILDIRIM , 745946644 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745946644\n\nDear MUHAMMET YILDIRIM , your shipment with 745946644 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745946644\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('5ecc9b2b-be15-47d2-8d28-363ec6904294','905428209234','ÖMER ALİ ALKAN adlı müşterinizin 319897198 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','2e9c0bdc-1469-4642-8dc7-5a45d837bbe0',NULL),
('5ecd544f-82e2-46cb-aff1-ddbecf82c474','4917680173048','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('5ed090e0-7f31-4d68-bec0-def84a241523','4915773625355','371665826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2623 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665826\n\nYour shipment with the number 371665826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2623. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371665826\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('5ed23b97-b458-4085-8d7a-14bb20e27f25','4915754602001','Sayın TURGAY YILDIRIM, 428510909 nolu gönderiniz 7598 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428510909\n\nDear TURGAY YILDIRIM, your shipment with 428510909 was delivered to you with the delivery code 7598. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428510909\n\n\nBICARGO','1','31910f60-232b-44e2-8f56-f03979280a12',NULL),
('5ed6f613-bf1b-4678-8b4d-864b2585ccc1','31625064385','Sayın MURAT BEY, 16334418 nolu gönderiniz 10411 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/16334418\n\nDear MURAT BEY, your shipment with 16334418 was delivered to you with the delivery code 10411. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/16334418\n\n\nBICARGO','1','83fe2028-17f9-4b82-a141-f935042a08dd',NULL),
('5edbf090-0d12-4767-9471-88361741e062','1111111111111111','Sayın YATAK ODASI, 248143023 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248143023\n\nDear YATAK ODASI, your shipment with 248143023 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248143023\n\nBICARGO','2','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL),
('5ee9a06d-b912-4387-a9d5-5e16232e6004','306974560448','Sayın SAİMİR BALLA , 982431907 nolu gönderiniz 6912 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982431907\n\nDear SAİMİR BALLA , your shipment with 982431907 was delivered to you with the delivery code 6912. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982431907\n\n\nBICARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('5eec7847-e7da-4989-85c0-2e2a7d35da00','905331602195','Sayın yetkili; SWETLANA NESCHİNSKİ adlı müşterinize 221989961 nolu gönderinizin 90x160 cm siyah meşe masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 20.05.2025 17:28:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('5ef0dabb-9ef9-49ab-9191-ccd8d68acbd8','905350617509','WALDEMAR HEİNZ  adlı müşterinizin 613940015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('5ef23be8-75db-4890-8cc5-56ec755765ba','00491630241746','Sayın ROYA SHARİFİ, 248614196 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248614196\n\nDear ROYA SHARİFİ, your shipment with 248614196 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248614196\n\nBICARGO','2','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL),
('5ef3d180-9bba-43c3-a6f7-6196ad6fa315','905079047428','MEHMET ÇANKAYA adlı müşterinizin 449136824 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('5ef7c046-0e3b-4dc3-8c0f-3361006591b5','41793377228','Sayın MUHAMMET EL CASİM, 248435862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248435862\n\nDear MUHAMMET EL CASİM, your shipment with 248435862 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248435862\n\nBICARGO','1','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL),
('5f014ba3-3084-4419-8365-5091c97d9e4f','4917623973787','Sayın BÜLENT KILIÇ, 817682643 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817682643\n\nDear BÜLENT KILIÇ, your shipment with 817682643 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817682643\n\nBICARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('5f048c43-5abd-48ad-9cbe-e8bbff85ff58','905534084469','Sayın yetkili; BURCU ŞİMŞEK adlı müşterinize 12752907 nolu gönderinizin MOON ORTA SEHPA ürünü 1 parça halinde ANKA adresinizden 23.01.2025 10:29:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('5f0b9edb-4629-4564-abe5-22a0c99998cf','33754109043','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('5f0fac46-02d9-4e22-8360-c18548fab879','4917630150861','Sayın SADIK PALA, 478633498 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478633498\n\nDear SADIK PALA, your shipment with 478633498 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478633498\n\nBICARGO','1','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL),
('5f144a59-71bf-4d2c-a66b-7931b1485b2e','491637115819','Sayın SOMİA KARABİLA SSH, 59840179 nolu gönderiniz 3325 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/59840179\n\nDear SOMİA KARABİLA SSH, your shipment with 59840179 was delivered to you with the delivery code 3325. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/59840179\n\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('5f1e7c05-e7e0-4972-9015-6e4a3ac7056a','5652568796','Sayın AAAA BBBB, 30.07.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3819935\nŞifre : 3819935\n			\nBİCARGO','2',NULL,'381f9935-45e3-4ffc-92f4-b280022d45a6'),
('5f1f99e3-f1d9-4c04-85ae-00875910f977','436607950540','43752518 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4688 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43752518\n\nYour shipment with the number 43752518 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4688. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43752518\n\nBICARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('5f21d34e-23f8-4370-86c9-5d22383eb7c2','33651656494','745297087 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2882 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745297087\n\nYour shipment with the number 745297087 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2882. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745297087\n\nBICARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('5f23bd03-ea22-431f-8108-c386e931c9ac','905300961610','FİKRETE RAPCİ adlı müşterinizin 126806100 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','476b3b22-cc52-456b-baca-94ab2554e38d',NULL),
('5f252a3b-9288-4951-9cd6-54ad01dd00de','33634229527','Sayın İNAN KURUCU, 478572714 nolu gönderiniz 4721 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478572714\n\nDear İNAN KURUCU, your shipment with 478572714 was delivered to you with the delivery code 4721. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478572714\n\n\nBICARGO','2','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL),
('5f27966f-e109-4cd2-9ada-12c8721aa928','491607553949','Sayın SİBEL ÖZTAMUR, 817872283 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817872283\n\nDear SİBEL ÖZTAMUR, your shipment with 817872283 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817872283\n\nBICARGO','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('5f2b4e32-52da-4890-8d96-47339e883143','905078062550','Sayın yetkili; CEMİLE VE HÜSEYİN ŞAHİN adlı müşterinize 598697614 nolu gönderinizin MASA ürünü 3 parça halinde RİO FATİH adresinizden 19.09.2025 10:20:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d3e4434c-1317-4092-aed5-8cc884ab1ae7',NULL),
('5f2c005a-c1c2-41ae-af55-124adb8998f0','905078062550','ENES KARABAŞOĞLU adlı müşterinizin 598130952 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('5f2d7ee3-8242-47f0-9baf-a47a2ea6564c','4915772153329','Sayın MUHTEREM KAYA, 465891539 nolu gönderiniz 3519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465891539\n\nDear MUHTEREM KAYA, your shipment with 465891539 was delivered to you with the delivery code 3519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465891539\n\n\nBICARGO','1','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL),
('5f2efe79-0a13-45fe-98e1-4a9bf0e161ba','491772575787','Sayın MURAT BAYDAR, 879845359 nolu gönderiniz 8681 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/879845359\n\nDear MURAT BAYDAR, your shipment with 879845359 was delivered to you with the delivery code 8681. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/879845359\n\n\nBICARGO','1','91983c05-77bb-427d-b258-13e5f5aca93a',NULL),
('5f2f9fbd-d544-4a1a-af21-06552f263c14','491758184316','Sayın YUSUF ATUM , 501212768 nolu gönderiniz 9834 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501212768\n\nDear YUSUF ATUM , your shipment with 501212768 was delivered to you with the delivery code 9834. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501212768\n\n\nBICARGO','1','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL),
('5f36049d-8c93-4d94-be4b-e513a440ca92','905454259202','Sayın yetkili; RAMAZAN KIYMAZ adlı müşterinize 478900175 nolu gönderinizin koltuk masa sandalye orta sehpa ürünü 11 parça halinde çelikbey inegöl depo adresinizden 11.01.2025 17:54:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('5f4206d1-1804-4963-814e-520825d502d0','5225555555','Sayın MEHMET  KARAMAN, 02.07.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3767964\nŞifre : 3767964\n			\nBİCARGO','2',NULL,'decb3b76-796f-4a09-b900-664277387267'),
('5f4a1023-aa7f-4090-9678-d3224fc8ec72','905079358213','Sayın yetkili; EBRU DEMİRHAN SSH adlı müşterinize 745433427 nolu gönderinizin SSH SEHPA KIRLENT  ürünü 3 parça halinde Fatura adresinizden 09.07.2025 17:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('5f4bc308-498f-4249-adc4-0e7ce1f03f2f','41786933908','428704278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2764 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428704278\n\nYour shipment with the number 428704278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2764. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428704278\n\nBICARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('5f5b8139-91ec-4ae7-86fc-e7cedfd1ed1a','905421855834','NURTEN YILMAZ (SSH)  adlı müşterinizin 338842710 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('5f5d095a-bdbd-4921-9e30-a65eea84c2a2','9053259981980','MEHMET ORMANOĞLU adlı müşterinizin 614636969 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('5f5e1778-8039-4ff9-bf01-0ba9780cfcd8','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS 2 KAPILI ÇEKMECELİ DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('5f60bfc6-8b06-4759-ad0c-cf883e1bde7c','905461661672','HASRET AVCI adlı müşterinizin 644890175 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('5f6289a8-77b3-4650-94bb-0d41eb3b4944','491736344643','126421974 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9116 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126421974\n\nYour shipment with the number 126421974 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9116. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126421974\n\nBICARGO','1','0831e36a-bfec-49cb-862f-5d57cf563310',NULL),
('5f640208-929e-46bf-ba7b-76753cc0f293','905078062550','Sayın yetkili; ZEHRA ÜNAL adlı müşterinize 598320188 nolu gönderinizin köşe koltuk ürünü 7 parça halinde MERTSOY KOLTUK adresinizden 03.09.2025 10:38:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('5f6e4a5d-a90b-4949-9144-a690e08615f1','905335511664','Sayın yetkili; AYCAN ÇOLAK adlı müşterinize 371120278 nolu gönderinizin 2 adet karyola + döşekleri ürünü 8 parça halinde albessa karyola adresinizden 24.09.2025 14:01:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('5f6fce0c-6a6d-41a0-940a-46cc02087ec4','4917624206670','Sayın DİLARA ALAMOORİ, 982632860 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982632860\n\nDear DİLARA ALAMOORİ, your shipment with 982632860 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982632860\n\nBICARGO','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('5f72d791-702a-48c9-9cb6-b438982500b5','32487879077','Sayın SEDA -  MUSTAFA SERCAN GUNDOGMUS , 515829047 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515829047\n\nDear SEDA -  MUSTAFA SERCAN GUNDOGMUS , your shipment with 515829047 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515829047\n\nBICARGO','1','7a1c035d-4dfb-480e-bc9c-b1a62adfa157',NULL),
('5f72f3e5-cfcc-4d75-8f78-b43ba4bb55fc','4917684770342','Sayın MUHAMMED PERVANE , 644531622 nolu gönderiniz 4345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644531622\n\nDear MUHAMMED PERVANE , your shipment with 644531622 was delivered to you with the delivery code 4345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644531622\n\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('5f78113a-b713-4d92-ae7c-d85c14ba5b71','33660990222','Sayın KEMAL ETKER, 478631020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478631020\n\nDear KEMAL ETKER, your shipment with 478631020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478631020\n\nBICARGO','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('5f7b36f8-4272-401f-a72b-e1d57a92fa38','905075277637','HÜLYA KORKMAZ adlı müşterinizin 745724851 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('5f7f9847-3e41-48d3-8709-c5a146977517','0033769535449','127504677 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10905 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127504677\n\nYour shipment with the number 127504677 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10905. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127504677\n\nBICARGO','2','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('5f841957-99f1-4f25-8184-066e17ed24e3','491625968428','Sayın BETÜL ÇELİK SSH, 644298325 nolu gönderiniz 5819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644298325\n\nDear BETÜL ÇELİK SSH, your shipment with 644298325 was delivered to you with the delivery code 5819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644298325\n\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('5f85fa04-4fcd-4f61-a0df-1e2d5f0eafae','491623487541','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('5f93ac78-b30f-4bf5-a95d-33b025d7de83','905069116877','AMİRA GHRAB adlı müşterinizin 81723596 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('5f963263-9464-400e-99a1-e2591c0cfb48','905333323012','GIULİA CLARA CASAGRANDE  adlı müşterinizin 69529713 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('5f9a8304-417b-4d13-b301-679063c8d0f2','491621091849','478524376 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478524376\n\nYour shipment with the number 478524376 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478524376\n\nBICARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('5f9cab74-739d-40d8-99a8-75228873f237','905459011033','ALİ GÖKSU  adlı müşterinizin 268145141 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL),
('5fa0200b-027a-4ae0-a73c-176140a48c55','491797358234','İLETİŞİM\n					Furkan şöför = +905078826436','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('5fa62393-50bd-4e3d-b6a2-ca630879b093','905335511664','Sayın yetkili; HARUN ŞAHİN adlı müşterinize 371421349 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde Elitis Home adresinizden 26.08.2025 18:35:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('5fa836fd-bc33-4fb9-b312-06c7bd197255','41794543642','İletişim \n					Halil Bey (Şoför) :+905541100849','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('5fa8625c-b795-4f90-bd29-bdab83a68763','905540182920','Sayın HASAN BEY, 448153102 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/448153102\n\nDear HASAN BEY, your shipment with 448153102 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/448153102\n\nBICARGO','1','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL),
('5fab3610-3ac3-468b-b782-97273ca10098','33623950988','962908456 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8540 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/962908456\n\nYour shipment with the number 962908456 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8540. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/962908456\n\nBICARGO','1','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL),
('5fab6737-8970-4474-93ef-1d18f8fdd0a5','905335708965','MURAT KARADAĞ adlı müşterinizin 248211803 nolu gönderisi 120 parça halinde yola çıkmıştır.','1','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL),
('5fab82fd-83ae-4985-a8fc-956e605bac79','004917640716853','73598166 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1411 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73598166\n\nYour shipment with the number 73598166 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1411. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73598166\n\nBICARGO','2','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL),
('5fb2d4dc-861e-4ccf-b77e-9b6180e04e79','905461661672','MUHAMMED PERVANE  adlı müşterinizin 644531622 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('5fb6174d-6497-49ef-8ce3-b1efa47c06b9','905079358213','NİLÜFER YAMAN SSH  adlı müşterinizin 745525130 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('5fb9318d-d0a6-4881-ae95-af37bb5f3512','491736344643','126200859 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5815 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126200859\n\nYour shipment with the number 126200859 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5815. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126200859\n\nBICARGO','1','10dfbc80-73df-4c1a-ad9e-b38e2b9a5ad7',NULL),
('5fc228cd-3e1b-4395-b96b-b61652ffcb34','905461661672','Sayın yetkili; MELEK KAYMAZ(K) adlı müşterinize 644547865 nolu gönderinizin SANDALYE ürünü 6 parça halinde ELAKSA SANDALYE adresinizden 19.09.2025 14:38:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('5fc38378-20ac-4c2e-8eee-d620b719aa86','4915115356238','745291553 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9305 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745291553\n\nYour shipment with the number 745291553 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9305. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745291553\n\nBICARGO','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('5fc6ee41-282c-4132-8cdc-47c91a18b9b4','33626413222','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('5fca864a-badb-4cca-aa4e-096d0cb2b7b6','32492429454','Sayın ANİSSA İFAR , 221924148 nolu gönderiniz 10881 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221924148\n\nDear ANİSSA İFAR , your shipment with 221924148 was delivered to you with the delivery code 10881. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221924148\n\n\nBICARGO','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('5fcc3402-ff8a-4a64-bc7d-70fc031f8ffd','905321608709','TURGAY adlı müşterinizin 248240825 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('5fd1b3b6-8d3a-4b84-9288-5abbd7842b1b','905459475054','SALİH KAHRAMAN adlı müşterinizin 803441454 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('5fe0f09f-31ce-4dd0-ae35-9a4196f1e3dc','905336367828','Sayın yetkili; VEDAT ÜZER  adlı müşterinize 982342488 nolu gönderinizin 3+3+1+1 koltuk takımk  ürünü 5 parça halinde samet koltuk  adresinizden 20.02.2025 11:43:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('5fe24ff0-d018-4342-bb8c-e021d99e4f2d','905456068312','KAZIM CENGİZ adlı müşterinizin 655935224 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL),
('5fe4830f-8825-4f5e-bd0c-d6076f14f640','905075277637','EMEL SERPMEN adlı müşterinizin 745311878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('5fe4dc47-ca9f-4805-bdc4-6842846e5354','4917672239456','745712790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2436 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745712790\n\nYour shipment with the number 745712790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2436. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745712790\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('5fe56e01-c618-46d6-9e71-1a8edeffce35','491784897423','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('5feb40e9-0a26-4acb-b7ef-cb81a847616f','905336367828','Sayın yetkili; AYHAN ATEŞ adlı müşterinize 982979874 nolu gönderinizin sandalye ürünü 4 parça halinde Ademoğlu sandalye  adresinizden 30.12.2024 16:36:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('5fee1002-b54b-40fb-a4ca-0423e66de9e2','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL PUF ürünü 1 parça halinde ŞAHİNLER  adresinizden 03.09.2025 13:43:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('5ff500d8-065e-4a0f-92de-3d99b5991fb1','436605312866','Sayın NESLİHAN CAN, 437940825 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437940825\n\nDear NESLİHAN CAN, your shipment with 437940825 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437940825\n\nBICARGO','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('5ff55f4e-5ed9-422d-bf8e-728031d27f1d','905454259202','Sayın yetkili; MUSTAFA ÇELİK adlı müşterinize 47888654 nolu gönderinizin ünite ürünü 2 parça halinde çelikbey inegöl depo adresinizden 22.01.2025 11:40:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('5ff6033d-493f-45af-aec2-928cd56dfaae','905355928266','MEHMET KARA adlı müşterinizin 412977083 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','322aeb29-42e3-4166-8669-1fa18b704bfc',NULL),
('5ff63947-4d6e-4e08-b981-24f048468a8c','1628102357','Sayın GÖKHAN BEKTAŞ , 910352489 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910352489\n\nDear GÖKHAN BEKTAŞ , your shipment with 910352489 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910352489\n\nBICARGO','2','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL),
('5ffc3e5e-2296-49f1-8dd2-bc5b7b3187f2','905442774505','MUSTAFA ÖZÇOBAN adlı müşterinizin 657264606 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL),
('5ffcd758-d93a-4efb-bd3e-162f7a1c1a76','41762293875','437969799 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6590 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437969799\n\nYour shipment with the number 437969799 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6590. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437969799\n\nBICARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('5ffd2e5e-8642-4ebe-af8d-0690665af190','5334943834','Sayın FAHRETTİN AKISKA, 478339664 nolu gönderiniz 5284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478339664\n\nDear FAHRETTİN AKISKA, your shipment with 478339664 was delivered to you with the delivery code 5284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478339664\n\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('5fff5513-5820-4c72-b05c-87b34ab6aeca','4917660886216','Sayın FATMİRA CELA, 449281517 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449281517\n\nDear FATMİRA CELA, your shipment with 449281517 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449281517\n\nBICARGO','1','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL),
('60007732-543a-4847-b1a5-6fe8905adcd4','905517075149','BİLGEN TATAR adlı müşterinizin 478764154 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('600275a0-479d-4bc2-b747-9afce96a0e6f','017623277332','Sayın BAKACAK GİRAY, 613814330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613814330\n\nDear BAKACAK GİRAY, your shipment with 613814330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613814330\n\nBICARGO','2','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('60042215-ecbd-46fa-a2fb-0e2cf8ca38e6','33781747148','Sayın ÜLKÜ ÖZTÜRK, 221943840 nolu gönderiniz 9226 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221943840\n\nDear ÜLKÜ ÖZTÜRK, your shipment with 221943840 was delivered to you with the delivery code 9226. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221943840\n\n\nBICARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('6004e0e1-bc5f-4927-874f-9bd0249c45cb','33769707760','Sayın BARBOSA SHANNA , 221403218 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221403218\n\nDear BARBOSA SHANNA , your shipment with 221403218 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221403218\n\nBICARGO','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('60068a83-29e6-4342-92b9-c4ca561d5e0e','4915755392332','910762495 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3901 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910762495\n\nYour shipment with the number 910762495 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3901. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910762495\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('6013bf7c-d0df-4872-a774-c43be529695c','33613166090','Sayın NURKAN AŞIR, 614868518 nolu gönderiniz 9701 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614868518\n\nDear NURKAN AŞIR, your shipment with 614868518 was delivered to you with the delivery code 9701. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614868518\n\n\nBICARGO','1','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('6016b284-db65-4e3c-8a0c-03c86a0ec8d7','905461661672','Sayın yetkili; KERİM ŞENTÜRK adlı müşterinize 644966461 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde Fatura adresinizden 12.05.2025 16:42:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('601b60ed-eca3-4875-a66f-6be6d7ebb3d4','4917631329672','Sayın AYHAN İÇEN, 745813483 nolu gönderiniz 5941 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745813483\n\nDear AYHAN İÇEN, your shipment with 745813483 was delivered to you with the delivery code 5941. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745813483\n\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('601c4caa-4fb2-4a28-8fb1-cd97a15816ca','33658561334','Sayın FURKAN SAYGIN, 478498501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478498501\n\nDear FURKAN SAYGIN, your shipment with 478498501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478498501\n\nBICARGO','1','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL),
('6025488c-5f2f-49cf-9a06-6981ea3172cc','905335511664','Sayın yetkili; NESLİHAN DEMİR adlı müşterinize 371586742 nolu gönderinizin sandalye ürünü 8 parça halinde Sandalyeci Bekir adresinizden 28.04.2025 17:00:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('6027d3a5-973a-4f54-8afe-b2587ee6f832','4917662467195','Sayın OLSZWESKİ MATZ, 644658399 nolu gönderiniz 5504 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644658399\n\nDear OLSZWESKİ MATZ, your shipment with 644658399 was delivered to you with the delivery code 5504. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644658399\n\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('6027f799-cc2c-477c-8676-3d5baf3e6cef','905301592882','Sayın yetkili; ZELİHA ARAS adlı müşterinize 910280020 nolu gönderinizin MASA+KONSOL+ 2 ADET ORTA SEHPA ürünü 12 parça halinde Fatura adresinizden 18.04.2025 10:42:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('6029c3b3-ca81-47c8-9152-adb730dd5669','4915560564579','Sayın VENERA RUSTEMİ, 817838997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817838997\n\nDear VENERA RUSTEMİ, your shipment with 817838997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817838997\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('602f4b29-ff0e-4c49-ba56-3b4d6ab39b7b','905078062550','Sayın yetkili; FATİH YÜKSEL adlı müşterinize 59878032 nolu gönderinizin köşe koltuk ürünü 3 parça halinde ELİTİS HOME adresinizden 08.10.2025 12:16:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('603216da-d440-47ee-bbe8-07b233ec79a5','905335708965','HÜLYA AKKOÇ adlı müşterinizin 735384295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL),
('603c2ca3-6450-464e-ac1b-bcf00a230133','905350617509','SERKAN ELGİT  adlı müşterinizin 61310831 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('603e6d83-4983-4e78-a713-9b9c65b33d02','905335511664','Sayın yetkili; AHMET AĞIRMAN adlı müşterinize 371413703 nolu gönderinizin karyola + döşek + komidinler ürünü 7 parça halinde albessa karyola adresinizden 08.08.2025 15:16:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('6040d2cc-e55a-49e4-ab9a-da8f4a557b84','905331602195','BABERIH LEİLA  adlı müşterinizin 221164226 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('60443b2a-8bb8-48a6-8b07-8c2189341d73','905075277637','HÜSEYİN ÖÇAL SSH  adlı müşterinizin 745350597 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('6045be04-9b38-4393-ba4f-10e3146b6efe','905349208933','Sayın yetkili; EMRAH ERAYDIN adlı müşterinize 127395599 nolu gönderinizin sehpa ürünü 1 parça halinde ERİZA adresinizden 20.02.2025 11:52:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2d77708-f738-416d-a601-6a86aa678898',NULL),
('604e9fac-245d-426c-a30e-eb5d7951d246','905079358213','Sayın yetkili; EMRE AFYON  adlı müşterinize 745547550 nolu gönderinizin SİENA GENÇ ODASI ürünü 10 parça halinde Fatura adresinizden 12.03.2025 21:26:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('60536dc1-6a8f-4332-8026-ea270dfb419c','491726468929','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('605446c6-a49a-4aef-b313-aa6397ccace1','905428209234','MEHDİ NAEİMİ adlı müşterinizin 319276460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4475a939-a408-4d10-a256-61dc03f279da',NULL),
('605695a0-57db-48b4-af9a-cc351a07e09f','905517075149','Sayın yetkili; AYŞEGÜL GÖKTEPE adlı müşterinize 478774501 nolu gönderinizin 8 ADET SANDALYE AYAĞI (METAL) ürünü 2 parça halinde GARDEROBE adresinizden 03.09.2025 14:45:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('60588f58-e73f-4370-9a77-ffeda731aeeb','436609069660','Sayın HASAN ÇALIK , 982720250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982720250\n\nDear HASAN ÇALIK , your shipment with 982720250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982720250\n\nBICARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('605d4836-78ba-4c53-ae92-b62e05cd0a26','905079358213','KENAN SOYLU adlı müşterinizin 74534951 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('606390e8-5922-4272-94a7-ba703f27b41e','905336367828','HİLAL YAVUZ adlı müşterinizin 982194447 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL),
('6063b906-1a5c-4c1d-90d6-96d8ad5ed823','447342132724','Sayın DENİSA LANGU , 982134567 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982134567\n\nDear DENİSA LANGU , your shipment with 982134567 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982134567\n\nBICARGO','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('6069f4bb-a700-4a8c-91a3-5b44d36cfca3','905454259202','GÜL KAYAS ARSLANMUGÜL adlı müşterinizin 478188178 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('606f4764-c714-4ecd-a7b9-490938c2274d','33783160277','Sayın MUSTAFA YILMAZ, 745636493 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745636493\n\nDear MUSTAFA YILMAZ, your shipment with 745636493 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745636493\n\nBICARGO','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('606ffd16-b930-4dd7-ad24-df7c490ac756','0033758584410','657153999 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4089 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657153999\n\nYour shipment with the number 657153999 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4089. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657153999\n\nBICARGO','2','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('6074d0ca-f01b-49a8-8c9d-9cf8412ae13f','33783196763','Sayın VOLKAN ÖZCAN, 517495121 nolu gönderiniz 10541 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517495121\n\nDear VOLKAN ÖZCAN, your shipment with 517495121 was delivered to you with the delivery code 10541. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517495121\n\n\nBICARGO','1','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL),
('6074e6ad-ecc9-4ede-939e-d6033b3b1671','4917670549547','Sayın FURKAN BAŞTEPE, 745778561 nolu gönderiniz 10974 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745778561\n\nDear FURKAN BAŞTEPE, your shipment with 745778561 was delivered to you with the delivery code 10974. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745778561\n\n\nBICARGO','1','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL),
('60780678-c052-46be-96e9-70772b74c53d','905331602195','ÜLKÜ ÖZTÜRK adlı müşterinizin 221943840 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('607a13d8-9383-434c-a09d-4cbf384b7e0a','00491777048158','Sayın , 248425122 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248425122\n\nDear , your shipment with 248425122 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248425122\n\nBICARGO','2','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL),
('60805a23-40b2-452b-bb7e-2b9954471dde','905325000478','KARABAS LANDMASCHİNEN adlı müşterinizin 412977009 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fe32732-478d-4914-8b33-290a72aa934f',NULL),
('6085cd4c-b968-43ef-9c96-a601dcc850f4','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 15.10.2025 13:09:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('60884ef7-2ee9-4d70-89e6-0be19707c92f','905461661672','Sayın yetkili; YASEMİN GÜNDOĞDU adlı müşterinize 644340759 nolu gönderinizin TRAVERTEN MASA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 29.04.2025 15:22:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('608c22c4-079e-4b45-993f-82e43afac1b0','905368336516','Sayın yetkili; GAMZE ÖRSELOGLU adlı müşterinize 515377519 nolu gönderinizin KOLTUK  ürünü 5 parça halinde TRANJET DEPO  adresinizden 13.10.2025 16:04:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','04fb8dfc-07be-4e81-a060-8a8a6f53ef14',NULL),
('609307dc-1cde-4e54-a5b4-6cf1724c330c','905054335859','SUZAN ALTIPARMAK adlı müşterinizin 501339138 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e5d95e08-a8c0-4133-845e-d93395f55044',NULL),
('60968c8b-f7f2-4340-81c9-f367ab930f14','905079358213','METİN PEKSERT SSH adlı müşterinizin 745933378 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('60a38861-ffc7-42dc-a38b-f2578d5b86e5','41764397280','Sayın BORAN ALBAYRAK, 598668612 nolu gönderiniz 3209 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598668612\n\nDear BORAN ALBAYRAK, your shipment with 598668612 was delivered to you with the delivery code 3209. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598668612\n\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('60a9e281-9755-418b-ad55-98448901eb70','33789432951','Sayın MURAT KALKAN, 478520504 nolu gönderiniz 1915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478520504\n\nDear MURAT KALKAN, your shipment with 478520504 was delivered to you with the delivery code 1915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478520504\n\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('60aa69b1-0b6f-4d1c-b150-b3299339aaac','33642608703','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('60ac46aa-4e57-4ea7-a978-0e45ab8c787d','905335511664','Sayın yetkili; RECEP TABAKOĞLU adlı müşterinize 371601782 nolu gönderinizin koltuk takımı ürünü 6 parça halinde Pars Koltuk adresinizden 28.04.2025 18:15:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('60ac77cb-2a24-48b9-889a-68e14b262618','905325998198','BURAK TÜRKEŞ adlı müşterinizin 614458088 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c1cea88c-608d-4453-b63a-81ba0b909940',NULL),
('60b48dbc-4546-4202-8f90-9b61bee7a8fb','905336367828','Sayın yetkili; Jalal aslam  adlı müşterinize 982966360 nolu gönderinizin Koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 06.11.2024 13:13:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('60b94a44-952e-41e5-9e93-400d417c2acd','905335511664','Sayın yetkili; KUDRET KALK adlı müşterinize 371804669 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 30.04.2025 17:39:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('60c14236-5624-43f2-a5ab-fbab57346c75','4915256314885','Sayın BURHAN BAYRAKTAR, 644758410 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644758410\n\nDear BURHAN BAYRAKTAR, your shipment with 644758410 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644758410\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('60c3f3ac-c364-4e68-8e09-bf4957afa18e','491629293163','Sayın MÜCAHİD GÜZEL, 22162472 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22162472\n\nDear MÜCAHİD GÜZEL, your shipment with 22162472 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22162472\n\nBICARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('60ce37c5-25ff-4482-af5c-49480459abee','905350349029','MELİSA YILMAZ adlı müşterinizin 203519424 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('60d0a7fe-9d7b-4973-93bb-d95b911ea165','33602366647','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('60d2aca4-15f4-4bc9-a8b6-4405bf585080','905461661672','ERDEM ŞAHİN(K) adlı müşterinizin 644522996 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','56c417cf-c265-4351-92f6-09fa93a1f112',NULL),
('60d783ed-0ac5-4849-a578-1a62042e07d4','491728705267','Sayın ZEHRA AŞIK, 478243785 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478243785\n\nDear ZEHRA AŞIK, your shipment with 478243785 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478243785\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('60e5f819-ea34-4b3b-ac51-169fa0bb84ef','905333221039','SİBEL OĞUZ adlı müşterinizin 750951041 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL),
('60e94e9a-ceca-453e-b5e8-d5a348d48b69','905451571652','IMAN JAWİD adlı müşterinizin 531245816 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('60eb44a7-ec5b-4d5a-b897-d48923fa9484','31638631333','657782 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4760 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657782\n\nYour shipment with the number 657782 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4760. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657782\n\nBICARGO','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('60f0d86a-41ad-4f16-9e16-217fbc1d8447','33783071401','Sayın HÜSEYİN GÜNGÖRMEZ, 655111652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655111652\n\nDear HÜSEYİN GÜNGÖRMEZ, your shipment with 655111652 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655111652\n\nBICARGO','1',NULL,NULL),
('60f4bc8d-69c5-45da-9c4d-b0eb8fc9e75c','905517075149','FATMA KARAHAN adlı müşterinizin 478346989 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('60f579af-7e1c-47cc-9cce-df6f593a3f3c','31625064385','Sayın MURAT AKTAŞ, 163401674 nolu gönderiniz 8267 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/163401674\n\nDear MURAT AKTAŞ, your shipment with 163401674 was delivered to you with the delivery code 8267. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/163401674\n\n\nBICARGO','1','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL),
('60f6b579-5b8c-4e8b-a809-b822aa4fc6f9','905335511664','BİLAL KIZILIRMAK adlı müşterinizin 371155650 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('60ff934a-d44e-4860-9a79-57365164ef33','491747865915','Sayın MUHSİN GÜMÜŞ, 910225013 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910225013\n\nDear MUHSİN GÜMÜŞ, your shipment with 910225013 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910225013\n\nBICARGO','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('6102b606-2432-4806-902b-3ac08dda5cf3','436603406293','Sayın yetkili; SUHAD AL-ASADİ  adlı müşterinize 675124573 nolu gönderinizin sandalye ürünü 2 parça halinde MASAMI adresinizden 07.07.2025 10:28:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('61035cc1-843f-420e-8ab5-42e8ee5d48bb','49176849361733','Sayın YUSUF, 100972804 nolu gönderiniz 7807 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/100972804\n\nDear YUSUF, your shipment with 100972804 was delivered to you with the delivery code 7807. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/100972804\n\n\nBICARGO','2','3810b138-eae3-49b3-94fb-6ece3e64ea2e',NULL),
('610dbade-fe85-4b06-bf46-c15636fb1d2e','905454259202','Sayın yetkili; FESİH DOĞAN adlı müşterinize 47853753 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde çelikbey inegöl depo adresinizden 20.02.2025 11:42:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('610e4459-f61b-4acb-a776-f4a544e088ff','905336367828','Sayın yetkili; ŞAHİN MUAMMER adlı müşterinize 982840804 nolu gönderinizin sehpa  ürünü 1 parça halinde Riyo home adresinizden 20.02.2025 11:42:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('6115d0c5-b212-481d-9d34-768ca5d8948f','33699946659','Sayın BELKISA KAPLAN, 478570794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478570794\n\nDear BELKISA KAPLAN, your shipment with 478570794 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478570794\n\nBICARGO','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('6118789e-f045-49cb-8d42-50755ef5fb07','4368181273062','DRİVER\n					ADNAN\n+905354622027','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('611d956b-e827-42e1-9602-7843bcc82ed1','491734175349','Sayın AYNUR KANDEMIR, 486184665 nolu gönderiniz 9111 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486184665\n\nDear AYNUR KANDEMIR, your shipment with 486184665 was delivered to you with the delivery code 9111. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486184665\n\n\nBICARGO','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('6127a818-d836-4c45-909f-55ff1e473e24','41797342584','Sayın ROHAD TOSUN , 221529516 nolu gönderiniz 2306 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221529516\n\nDear ROHAD TOSUN , your shipment with 221529516 was delivered to you with the delivery code 2306. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221529516\n\n\nBICARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('612d4fb2-e069-4551-8b41-25cb577e75e5','905325000478','MURAT AKTAŞ adlı müşterinizin 412400536 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','37d103ae-cd34-456d-bf73-1ddb563d8a20',NULL),
('612fcbf5-fcd8-43ce-ba2f-7acb97a13273','905461661672','YASEMİN GÜNDOĞDU adlı müşterinizin 644340759 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('61406291-294d-43d5-b6cb-9cab3db148db','33695585562','745266700 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5247 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745266700\n\nYour shipment with the number 745266700 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5247. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745266700\n\nBICARGO','1','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL),
('614160b8-d45e-4981-baa8-e4467ba654e6','905301592882','Sayın yetkili; RUKİYE EKERBİÇER adlı müşterinize 910638892 nolu gönderinizin KOLTUK METAL AYAKLAR ürünü 1 parça halinde Fatura adresinizden 15.01.2025 14:34:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('6144e771-c0de-424c-a9a6-65e3106aecb1','5444482458','Sayın DİLBER ÖZTÜRK, 319585140 nolu gönderiniz 3350 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319585140\n\nDear DİLBER ÖZTÜRK, your shipment with 319585140 was delivered to you with the delivery code 3350. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319585140\n\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('6146fe98-7d98-4032-835f-e8174fe7ef67','905054335859','Sayın yetkili; AHMET TEKİN adlı müşterinize 501934466 nolu gönderinizin maldiv koltuk takımı(3+3+1) ürünü 3 parça halinde DGN adresinizden 13.01.2025 15:42:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('6149ec36-d495-454c-85bb-6b469c8cce03','905078062550','Sayın yetkili; CEMİLE VE HÜSEYİN ŞAHİN adlı müşterinize 598697614 nolu gönderinizin HEDİYE ürünü 1 parça halinde NLUXHOME DEPO adresinizden 10.10.2025 17:11:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d3e4434c-1317-4092-aed5-8cc884ab1ae7',NULL),
('614ae721-5a3e-4212-9db5-5dc94f8da9d5','905069116877','ZEHRA adlı müşterinizin 817918521 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('614b9bec-bb41-457d-8be2-6c340eff32b3','31634686585','Sayın TUĞRA NUR DÜZGÜN, 644298759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298759\n\nDear TUĞRA NUR DÜZGÜN, your shipment with 644298759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644298759\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('614bb81e-ffbb-4a08-8ea0-a6c9e476d197','905517075149','NURCAN DOLDUR adlı müşterinizin 478223658 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('614e4577-c051-4bb9-93ca-5e3c4044be7a','905442774505','Sayın yetkili; HARUN YILDIRIM adlı müşterinize 657782 nolu gönderinizin Traverten mermer kasası  ürünü 1 parça halinde Fatura adresinizden 11.07.2025 13:52:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('61503d62-5918-49df-a1e3-5279e23666ad','905078062550','Sayın yetkili; MEHMET ULUIŞIK adlı müşterinize 598614826 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 15.08.2025 16:16:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('61539ce4-dd77-44ae-b127-0dcd7e6765a0','905079358213','FATMA BİLGİN adlı müşterinizin 745353139 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('6155d121-e353-45dd-99ca-da7eb8a93c2e','32483589693','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('6157e310-6527-426a-a405-9274027e80bf','33633949591','Sayın MEHMET SENCER, 478321858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478321858\n\nDear MEHMET SENCER, your shipment with 478321858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478321858\n\nBICARGO','1','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL),
('6159b80b-8612-4406-8e07-2eeb3252e070','905075277637','NEVİN KIRIK adlı müşterinizin 745638060 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('6160b42e-fc8d-4612-988a-7c83449a327d','905313340045','CEMAL İBRAHİMBAŞ adlı müşterinizin 437222135 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('6160fccc-74d2-40c7-803d-8d113f6ed73a','905336367828','Sayın yetkili; SERKAN DAĞ  adlı müşterinize 982432822 nolu gönderinizin Konsol -ayna  ürünü 3 parça halinde Palermo mobilya  adresinizden 26.11.2024 15:25:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('61614867-1707-4958-80af-898118cf2142','33769997691','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('6161f604-61da-452b-bc36-f612e83b80c8','905368336516','Sayın yetkili; SERHAT AGİRTAS adlı müşterinize 515139511 nolu gönderinizin Masa Sandalye Orta sehpa ürünü 11 parça halinde masami adresinizden 19.08.2025 14:17:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('61669726-7a1e-40f3-adef-9fe83e31798a','905335511664','Sayın yetkili; SEDA ULUSOYLU adlı müşterinize 371691350 nolu gönderinizin traverten masa +sehpa ürünü 1 parça halinde Fatura adresinizden 06.08.2025 14:38:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('6167918f-703b-4ff6-8a4b-1ce111188cae','905335708965','JASMİNA AGA adlı müşterinizin 735271543 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL),
('616969fc-f991-48e0-811e-d019dbc29739','0031641290838','248864808 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10151 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248864808\n\nYour shipment with the number 248864808 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10151. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248864808\n\nBICARGO','2','f8fc3b49-9b9c-4432-80be-0d9ce15dac6e',NULL),
('6169e035-2661-4ab2-9f95-95ca07d7e9e7','905539740010','FAHRİYE KARTAL adlı müşterinizin 011255060 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('616a8ba8-0430-482f-a56c-3e0aa6800737','905304259202','Sayın yetkili; GÜL KAYAS ARSLANMUGÜL adlı müşterinize 478188178 nolu gönderinizin 3+3+1+1 KOLTUK TAKIMI ürünü 4 parça halinde çelikbey inegöl depo adresinizden 07.02.2025 14:28:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('6170fbe3-24e5-40d3-916c-ee0fd69f3608','0436605966832','Sayın ALPEREN URHANOĞLU, 412366586 nolu gönderiniz 6796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412366586\n\nDear ALPEREN URHANOĞLU, your shipment with 412366586 was delivered to you with the delivery code 6796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412366586\n\n\nBICARGO','2','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL),
('6172215a-f4cc-4b4f-82d1-9f26bd327c6a','31620923693','Sayın SAMET ERGİSİ, 011766113 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011766113\n\nDear SAMET ERGİSİ, your shipment with 011766113 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011766113\n\nBICARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('6174d974-2f80-4044-82db-7df9a075c5b2','1111111111','Sayın ADNAN  DURSUM, 10.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9064411\nŞifre : 9064411\n			\nBİCARGO','2',NULL,'9e06441c-1bec-4f47-847f-83bea94f8369'),
('617bc8be-f9f2-4466-934c-896720d3f5e5','33769060012','478125578 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9364 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478125578\n\nYour shipment with the number 478125578 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9364. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478125578\n\nBICARGO','1',NULL,NULL),
('617ee5bb-4eaa-4f49-b5b6-79f66499665f','31613006004','Sayın RAHİMİ, 449445608 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449445608\n\nDear RAHİMİ, your shipment with 449445608 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449445608\n\nBICARGO','1','72028383-f354-4335-af98-094bc771c86d',NULL),
('6182ea17-f7ef-46a7-8724-91aec638ef79','33783709896','Sayın MARİNE NETO, 43720744 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43720744\n\nDear MARİNE NETO, your shipment with 43720744 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43720744\n\nBICARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('61831abf-f58e-4901-ae1b-58bf078ef372','905301592882','ZELİHA AKCAN adlı müşterinizin 910120533 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL),
('6192584f-e6fd-4731-b36d-c3afa4aa145b','4917670362806','531480968 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2631 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531480968\n\nYour shipment with the number 531480968 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2631. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531480968\n\nBICARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('6193cb55-8156-489b-9167-825c5f6b3c5a','0436643585040','Sayın CAN GLAS GMBH, 412603598 nolu gönderiniz 8678 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412603598\n\nDear CAN GLAS GMBH, your shipment with 412603598 was delivered to you with the delivery code 8678. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412603598\n\n\nBICARGO','2','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL),
('6194b40c-a7ac-4bb3-8376-5e42f14307ba','41765187366','Sayın SÜMEYYE KARAMAN, 428103279 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428103279\n\nDear SÜMEYYE KARAMAN, your shipment with 428103279 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428103279\n\nBICARGO','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('619aa994-1fa8-4297-824f-7362b6585ff8','33669929545','Sayın RASHİD FECİANE, 449823745 nolu gönderiniz 2096 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449823745\n\nDear RASHİD FECİANE, your shipment with 449823745 was delivered to you with the delivery code 2096. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449823745\n\n\nBICARGO','1','582bd0ee-3bef-4bc8-9243-917189827f95',NULL),
('619e1164-787c-44c0-bfca-0daf53be426f','905431026110','TAYFUN COŞGUN adlı müşterinizin 351519592 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('619f954a-d00a-4b02-a6ca-13a64455a0ce','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU FİLELİ BİLGİSAYAR KOLTUĞU ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('61a13852-e61d-484e-9e07-0bca0e4ef8fb','905313340045','Sayın yetkili; KEMAL URLAN  adlı müşterinize 43755091 nolu gönderinizin Köşe koltuk ürünü 2 parça halinde Lansse home  adresinizden 22.08.2025 15:34:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('61a1c33c-4045-4fcd-893e-c74a4d3b2c3a','491736564566','Sayın ERHAN ALP, 808538086 nolu gönderiniz 9967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808538086\n\nDear ERHAN ALP, your shipment with 808538086 was delivered to you with the delivery code 9967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808538086\n\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('61ae38c0-fe4d-4bd4-887c-e1b36521c198','491789273072','Sayın ARİC AKA, 221350993 nolu gönderiniz 7555 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221350993\n\nDear ARİC AKA, your shipment with 221350993 was delivered to you with the delivery code 7555. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221350993\n\n\nBICARGO','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('61af9056-8a5f-44e9-8d10-9e764b72f5dd','4917661423024','Sayın UFUK SANATÇI, 43783689 nolu gönderiniz 5284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43783689\n\nDear UFUK SANATÇI, your shipment with 43783689 was delivered to you with the delivery code 5284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43783689\n\n\nBICARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('61b43b72-6acf-409d-aea0-ce93fa7148f6','31614556700','517903636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4091 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517903636\n\nYour shipment with the number 517903636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4091. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517903636\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('61b9a752-6d2c-4a68-8d64-e0a535302b4c','905325000478','ULRİCH RİECK SÖHNE adlı müşterinizin 41279166 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','837cee4f-9e79-4aa8-b135-399bc5f2e9ab',NULL),
('61ba742b-69ad-4783-bf06-b8e7e66b123e','4915771101675','Sayın YUSUF ÖZKULLUK, 808146332 nolu gönderiniz 3552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808146332\n\nDear YUSUF ÖZKULLUK, your shipment with 808146332 was delivered to you with the delivery code 3552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808146332\n\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('61bbc602-80eb-46e2-b511-7df70189a458','905517075149','Sayın yetkili; FATİH ÇELİK adlı müşterinize 478603328 nolu gönderinizin tv ünitesi ürünü 1 parça halinde acca adresinizden 12.09.2025 14:26:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('61bf97aa-7a43-47bc-88cb-6a60d7dfcc4b','33660990222','DRİVER\n					ADNAN\n+905354622027','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('61c117a4-45e8-44d9-9418-e652e546d9a2','31655504455','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('61c2eb1a-3147-48d8-a0f7-6189debe7c47','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Natura sandalye  ürünü 4 parça halinde Fatura adresinizden 27.02.2025 16:00:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('61c3968b-5ac6-4ee8-883c-2683622d771d','905454259202','GÜLPERİ ÜNVER  adlı müşterinizin 478415751 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2abdc40e-c15a-4ac5-a5b1-459adbffa8dd',NULL),
('61c74531-fba7-49ef-818e-b16fa0d35aec','905335511664','SAHİN DİNÇ adlı müşterinizin 371514006 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('61cc7360-4635-4ef5-b7dc-7272a17fa533','905461661672','RABİA AKKUŞ SSH adlı müşterinizin 644564440 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('61cec94d-b984-4fc1-9cce-2b930634d886','4915151400304','Sayın SALİM TEKE, 371884796 nolu gönderiniz 7847 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371884796\n\nDear SALİM TEKE, your shipment with 371884796 was delivered to you with the delivery code 7847. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371884796\n\n\nBICARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('61cf9a9f-b98d-4ed3-8f35-f5ae1ae5be33','436609950405','Sayın VOLKAN CELİK, 515785688 nolu gönderiniz 6892 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515785688\n\nDear VOLKAN CELİK, your shipment with 515785688 was delivered to you with the delivery code 6892. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515785688\n\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('61d28c5b-a634-4333-bbe6-bcb4ebe5cd6d','905325000478','NİZAMETTİN ALAGÖZ  adlı müşterinizin 412970240 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL),
('61d5ca67-0741-490b-bf65-68af6fc4539a','33783895898','Sayın ADEM KILINÇ, 478117771 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478117771\n\nDear ADEM KILINÇ, your shipment with 478117771 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478117771\n\nBICARGO','1','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL),
('61d9c772-501f-4165-a268-b0d85acffe99','905517075149','YUSUF HAMZA DALKILINÇ adlı müşterinizin 478423651 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('61dc77d5-cfe7-4565-a77b-e592d5fca967','33618459202','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('61de55d2-b823-4c08-84e0-3c7776571531','4915208790958','Sayın HUSNA ISHAGZAİ, 44926965 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44926965\n\nDear HUSNA ISHAGZAİ, your shipment with 44926965 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44926965\n\nBICARGO','1','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL),
('61df01a4-c816-48eb-bc5b-ac3b35dc13ea','33642608703','478723817 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6144 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478723817\n\nYour shipment with the number 478723817 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6144. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478723817\n\nBICARGO','1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL),
('61e0a327-2d3b-4603-9ddd-b05068039b5b','905079047428','HASAN GHASEMİ adlı müşterinizin 449329901 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('61e177d6-230a-4838-ac1f-48028205ba14','491788999021','613601743 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7923 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613601743\n\nYour shipment with the number 613601743 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7923. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613601743\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('61e6aad8-a429-49a5-acc3-21dd8e3b2c22','905461661672','Sayın yetkili; ALEYNA AKAY(GÜLŞEN KARATAŞ) adlı müşterinize 644423895 nolu gönderinizin onarım malzemeleri size bırakıldı ürünü 1 parça halinde Fatura adresinizden 06.08.2025 10:53:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('61e830fa-2e14-46fe-bf35-42145f0a1ce4','32499810587','221685294 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3129 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221685294\n\nYour shipment with the number 221685294 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3129. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221685294\n\nBICARGO','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('61f0bb07-a12e-4e50-8dce-964a9c4220a1','4915731326705','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('61f5ea2f-72da-45ae-8aed-bb8be088a022','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin AQUA YEMEK ODASI KONSOL MASA 10 SANDALYE ürünü 10 parça halinde AREA adresinizden 04.08.2025 15:50:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('61f93286-63cc-48d4-ab97-5658dcba0dfe','33782119084','223719427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223719427\n\nYour shipment with the number 223719427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223719427\n\nBICARGO','1','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL),
('61fc4251-df05-40c5-9451-d71cb37835ca','905325000478','BERAT adlı müşterinizin 412485805 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('61fe32eb-a427-488c-93ef-7b370f492f87','905350617509','Sayın yetkili; IRA YİLDİRİM  adlı müşterinize 613297420 nolu gönderinizin Sandalye ürünü 3 parça halinde Fatura adresinizden 25.03.2025 12:58:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('61fed57f-ad23-4d17-9cd0-504051fdbe50','905313340045','Sayın yetkili; MERVE BEKTİK adlı müşterinize 43752518 nolu gönderinizin orta sehpa  ürünü 2 parça halinde masami adresinizden 08.08.2025 14:47:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('6204c376-5f20-4dc3-9a9d-3648c780dbb4','4915755392332','Sayın BELGİN YAĞLI		, 910762495 nolu gönderiniz 3901 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910762495\n\nDear BELGİN YAĞLI		, your shipment with 910762495 was delivered to you with the delivery code 3901. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910762495\n\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('6207e9c9-fe84-4142-86bf-baef4198284c','33640388556','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('62085534-cbac-4a25-94ec-7621560b9e63','015163483379','Sayın MAHSUN ALDEMİR(K), 644593040 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644593040\n\nDear MAHSUN ALDEMİR(K), your shipment with 644593040 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644593040\n\nBICARGO','2','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('620a450f-9196-4ab1-9e9b-8e86542c30d9','49176630348266','Sayın AMELA MULİC , 982972858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982972858\n\nDear AMELA MULİC , your shipment with 982972858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982972858\n\nBICARGO','2','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('620c7832-719d-46c2-a77b-68777f95b2f1','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA CALVİN MASA ürünü 4 parça halinde LİDYA MOBİLYA  adresinizden 24.09.2025 11:19:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('620f4a4e-999d-4d4c-aa6b-780aa1456cce','905323332620','ROSA DİDİEVA adlı müşterinizin 52817450 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2094040d-2cfd-4028-9115-e50a2e855156',NULL),
('621072ed-0223-42ba-8ead-ccce346541f4','905075277637','KENAN BAYAR adlı müşterinizin 74568874 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('6215125b-b427-4175-8168-cdca05e5107b','491628599053','976441354 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976441354\n\nYour shipment with the number 976441354 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976441354\n\nBICARGO','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('621e3143-c817-4627-b13a-4d3e02189604','31615081540','Sayın REİNAS HAİDARİ SSH, 644490677 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644490677\n\nDear REİNAS HAİDARİ SSH, your shipment with 644490677 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644490677\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('622306ae-d72c-4901-9d5d-eecb0f001eb3','905461661672','ERDEL SİBEL adlı müşterinizin 644968450 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('6229d6ef-b6e3-4e95-a523-922b3cfe0639','4915161573588','Sayın AYŞEGÜL GÖKTEPE, 478774501 nolu gönderiniz 1287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478774501\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478774501 was delivered to you with the delivery code 1287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478774501\n\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('6232c211-ba8b-4d80-afcf-a46864f145b2','905454259202','Sayın yetkili; İBRAHİM TANKAZ adlı müşterinize 478354582 nolu gönderinizin 1 AD. SSNDALYE VE RUTUŞ BOYASI ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.02.2025 17:34:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('62337df1-11ad-49c2-b235-9c767dd4847c','41783198799','DRİVER NUMBER\n					905541100849','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('62357273-aa3d-4984-89c7-c1638358a65f','491725700454','Sayın yetkili; ÇİÇEK MÖBEL adlı müşterinize 046517356 nolu gönderinizin Sandalye ürünü 10 parça halinde Fatura adresinizden 19.09.2025 16:43:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b21c6f76-2185-4cbb-ae48-70494372e886',NULL),
('623d4db5-3c5d-4f0b-8893-10627eaf1a28','491726507208','755919446 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/755919446\n\nYour shipment with the number 755919446 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/755919446\n\nBICARGO','1','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL),
('62413396-4a79-4386-9c8c-1d9e368af27d','491785050597','Sayın SABİHA SATICI, 644520957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644520957\n\nDear SABİHA SATICI, your shipment with 644520957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644520957\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('624570c9-b074-422f-aece-2c4a803a5598','4917631033403','644200718 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8478 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644200718\n\nYour shipment with the number 644200718 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8478. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644200718\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('6247f3b7-3fd4-4239-af6b-3dfd2bed7e2c','004917630153600','735389141 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3070 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735389141\n\nYour shipment with the number 735389141 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3070. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735389141\n\nBICARGO','2','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL),
('624c33e1-7cdc-4ce2-85c1-e982244cd388','905449041398','SEYFETTİN  adlı müşterinizin 703870981 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a04f974c-9931-40d4-ae61-21f5044fce18',NULL),
('624d72bf-2727-4bc7-923d-320f15520143','41799421699','126274786 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3182 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126274786\n\nYour shipment with the number 126274786 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3182. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126274786\n\nBICARGO','1','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL),
('62536dcd-0028-4a1e-99cc-2f680fe75724','4917630410720','517395181 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3622 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517395181\n\nYour shipment with the number 517395181 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3622. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517395181\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('62559cb3-53c9-42db-8e4c-7299eb18e8dd','905304259202','Sayın yetkili; GÜL-MURAT AVCU adlı müşterinize 478919360 nolu gönderinizin BAZA ÜST DEMİRİ-MAKASLAR- AYAKLAR ürünü 4 parça halinde family adresinizden 11.04.2025 15:27:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('625c13c9-4b48-480a-8283-66e0e7e6cd5f','905076046290','Sayın GALATA , 231717770 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231717770\n\nDear GALATA , your shipment with 231717770 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231717770\n\nBICARGO','1','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL),
('625c7f79-7a64-471f-bad3-ef8c6acc874e','905336367828','SERKAN DAĞ  adlı müşterinizin 982432822 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('62634220-4054-4f9c-a50e-567c5ef38f60','9054439559150','NURKAN AŞIR adlı müşterinizin 614529512 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('626358cf-93b4-4385-be20-8c1dbee468a4','905454259202','ZEYNEP CİHANGİR adlı müşterinizin 478678849 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('62652f78-fe98-42da-a23f-8cb900888c46','905312762034','Sayın yetkili; OUAFAA EL-FARNİZİ LAABİCH adlı müşterinize 808443666 nolu gönderinizin Masa Takımı ürünü 6 parça halinde MASAMİ adresinizden 17.10.2025 14:27:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d69dff48-c846-4f9b-b0f8-fd1e65799ff6',NULL),
('62670ef2-d65a-4203-900f-53245225e051','33612326252','Sayın MEO JONATHON, 437452475 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437452475\n\nDear MEO JONATHON, your shipment with 437452475 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437452475\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('62689efe-9855-4706-bf0e-4e7d71873c58','905336367828','NATASH SALİMİ adlı müşterinizin 982196265 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL),
('626b6b1f-651f-4f8a-a720-520cf6f194b2','4915752948798','Sayın METİN PEKSERT SSH , 74597110 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74597110\n\nDear METİN PEKSERT SSH , your shipment with 74597110 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74597110\n\nBICARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('626e7e93-4321-420c-aadf-cf9689bd04fa','905079358213','PINAR SALMA SSH  adlı müşterinizin 745332643 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('62737830-6453-4548-b440-1ef8e258bf2d','905075277637','Sayın yetkili; NİLÜFER YAMAN SSH  adlı müşterinize 745525130 nolu gönderinizin KOMODİN PANO + MALZEME KUTUSU SSH  ürünü 2 parça halinde Fatura adresinizden 06.08.2025 16:19:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('62768a43-2ff4-4968-a771-503045c758e9','905079358213','ALİ ERKOCA adlı müşterinizin 745177264 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('627ebf7d-a048-4ff4-bbb9-af66ec6d6620','905301592882','MUHSİN GÜMÜŞ adlı müşterinizin 910225013 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('62882be0-f2d9-4974-b2b2-173566daea4e','905336367828','DİYAR YEŞİLKAYA adlı müşterinizin 982547993 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','47709c5a-15a6-491c-924f-a72a590fd417',NULL),
('62890b5c-3dd4-4222-bb53-de8c8ebc903f','436603406293','MERAL KELES adlı müşterinizin 675890872 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('62917994-93d0-4a9f-b6bf-98a959e20c14','905454259202','Sayın yetkili; İREM AKÇORA adlı müşterinize 478930985 nolu gönderinizin 2 pk ssh ürünü 2 parça halinde çelikbey inegöl depo adresinizden 19.01.2025 19:10:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('629304c6-ba5f-4280-8198-42556b529d8c','905335511664','Sayın yetkili; HAMİYET KARASOY adlı müşterinize 371876767 nolu gönderinizin özel üretim tv ürünü 4 parça halinde Matışlı Mobilya adresinizden 06.10.2025 16:40:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('629350e9-f909-4322-83ff-5b066a5ff51b','4915201870026','644423895 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644423895\n\nYour shipment with the number 644423895 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644423895\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('62a0a1a5-a8c0-4749-8fb3-16b597ad9458','4977219162688','74597110 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5804 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74597110\n\nYour shipment with the number 74597110 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5804. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/74597110\n\nBICARGO','2','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('62ac452b-3c9b-4f95-b8a5-faff7623600a','491787159677','745140498 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8349 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745140498\n\nYour shipment with the number 745140498 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8349. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745140498\n\nBICARGO','1','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('62acd451-7eb6-4107-baf7-3467331a514b','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Rams Yatak Odası Takımı ürünü 17 parça halinde Family Mobilya adresinizden 28.04.2025 10:57:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('62bb396d-93b6-409b-85c6-5256d01180f8','905331602195','MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH) adlı müşterinizin 221561968 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('62bd3d22-a509-4967-a8fb-76731ed8abb2','436605971568','Sayın ALİ ALBAY, 517205085 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517205085\n\nDear ALİ ALBAY, your shipment with 517205085 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517205085\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('62bfca49-6413-41de-9981-ef04f7e2615d','4917634145313','Sayın MURAT BALTACI(K), 644762741 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644762741\n\nDear MURAT BALTACI(K), your shipment with 644762741 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644762741\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('62c4ee84-06ee-4550-b6cd-dfb158f8a399','905394878216','GAMZE CAPALBO - GABRİELE adlı müşterinizin 517395181 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('62cd56d9-4bb0-4806-9d0d-3912a79bccfd','491786857560','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('62cdf8c7-ccb3-46bb-834a-2cdedb815352','905350349029','Sayın yetkili; MELİSA YILMAZ adlı müşterinize 203519424 nolu gönderinizin 250X300 KÖŞE KOLTUK ürünü 5 parça halinde EFE HOME adresinizden 13.05.2025 12:17:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('62d1208b-a8b7-4df1-821c-1fb895b1278b','905059175469','AYŞE ERDEM adlı müşterinizin 428226833 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL),
('62d1f91f-c3cd-42a5-aad6-d2746d5b6845','11111111111','Sayın GAZZEL, 126908301 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126908301\n\nDear GAZZEL, your shipment with 126908301 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126908301\n\nBICARGO','2','863a4d29-ce12-4697-a15e-977449f015c7',NULL),
('62d44525-e3ed-4fbd-b392-7e38a86127e7','33753468202','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('62d462d1-3480-4ecb-8b6f-3de360ee64cf','905079358213','ÇAĞLA YILMAZ adlı müşterinizin 74594122 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL),
('62dfa161-a7c1-4411-b111-a5a3f14b82ff','4917643479930','Sayın ŞADİYE GÖLEÇ, 61420700 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61420700\n\nDear ŞADİYE GÖLEÇ, your shipment with 61420700 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61420700\n\nBICARGO','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('62dfb14b-8ff1-4270-847f-c93e0c57218a','905325000478','EREN adlı müşterinizin 412922680 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL),
('62e043c1-a748-4028-ba77-72479dea53b2','3333333333333','Sayın HELİN, 735298003 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735298003\n\nDear HELİN, your shipment with 735298003 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735298003\n\nBICARGO','2','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL),
('62e35829-5c19-4983-b2c6-430e6cf1dd3a','905413792483','FERHAT CAN adlı müşterinizin 278498481 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('62eaa3e5-7c06-48d0-8ae8-30b65f8abd00','436609197422','Sayın ŞEYDA ŞAHİN, 9824380 nolu gönderiniz 10290 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/9824380\n\nDear ŞEYDA ŞAHİN, your shipment with 9824380 was delivered to you with the delivery code 10290. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/9824380\n\n\nBICARGO','1','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL),
('62f13958-318c-4f07-a84e-8a4e633a679a','491631905914','Sayın MUHAMMET UCBAY, 011428040 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011428040\n\nDear MUHAMMET UCBAY, your shipment with 011428040 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011428040\n\nBICARGO','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('62f14ab2-22fe-4380-8855-cb8289946533','905394878216','VOLKAN ÖZCAN adlı müşterinizin 517495121 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL),
('62f509ce-3c38-4981-9050-2668c28a8884','905336367828','HASAN ÇALIK  adlı müşterinizin 982720250 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('62f50db0-f3ca-4c7b-8648-5d1cd4788259','905306071261','Sayın yetkili; ŞULE ÇAYIR  adlı müşterinize 765501651 nolu gönderinizin 8 adet sandalye  ürünü 4 parça halinde ARTEV HOME  adresinizden 08.09.2025 15:31:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('62f69d3d-214f-4057-b9ca-10c4f7a24bec','436644579917','Sayın ABBAS ARSLAN, 278440694 nolu gönderiniz 6021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/278440694\n\nDear ABBAS ARSLAN, your shipment with 278440694 was delivered to you with the delivery code 6021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/278440694\n\n\nBICARGO','1','87226e30-fe1d-481b-8c10-e309459138ca',NULL),
('62f8116d-9594-46a7-a847-2343e76bb953','491777070885','Sayın SEVGİ ÖZÇELİK , 765627791 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765627791\n\nDear SEVGİ ÖZÇELİK , your shipment with 765627791 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765627791\n\nBICARGO','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('62fd17d9-8d92-49ce-8849-6964f5389b42','905331602195','NURSELİ KÖSE  adlı müşterinizin 221285061 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('62fd7724-2f4e-44ca-ac21-e5b8cc43f45f','33641852217','Sayın CLEİDY MARTİNS , 982475389 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982475389\n\nDear CLEİDY MARTİNS , your shipment with 982475389 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982475389\n\nBICARGO','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('6300457b-0cc1-4a7d-a9e3-c434bb219be9','905079358213','MUHAMMET TÜRKMEN adlı müşterinizin 745952430 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('63016335-5fd3-4287-a484-c797af4b2626','491774646467','Sayın TAYFUN TATLIGÜN, 8087036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8087036\n\nDear TAYFUN TATLIGÜN, your shipment with 8087036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/8087036\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('630661f5-3ac0-43fb-a8c4-4da6e143e940','905331602195','NAİMA BOURAJJOU adlı müşterinizin 221106888 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL),
('630c06a2-5a60-4682-ba73-b3b01bea12eb','905454259202','MUHAMMET ALTUNKAYA adlı müşterinizin 478535316 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('630fb433-05ab-433b-a3ec-189f80166bf0','31686094393','Sayın SERKAN YILMAZ, 22145224 nolu gönderiniz 2327 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22145224\n\nDear SERKAN YILMAZ, your shipment with 22145224 was delivered to you with the delivery code 2327. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22145224\n\n\nBICARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('63119fbb-b327-4040-a344-b665b0c86ba6','4915201870026','Sayın (GÜLŞEN KARATAŞ) SSH , 644423895 nolu gönderiniz 9067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644423895\n\nDear (GÜLŞEN KARATAŞ) SSH , your shipment with 644423895 was delivered to you with the delivery code 9067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644423895\n\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('632abcb0-bf23-46cd-8547-af60db8f9f80','491738882350','248648996 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10805 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248648996\n\nYour shipment with the number 248648996 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10805. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248648996\n\nBICARGO','1','17a3d3ea-9822-46c1-a225-976edf021056',NULL),
('632d01a1-b1eb-4af2-b839-b3afde8db9ee','436763404107','Sayın TÜRKAN ÖZER, 531983278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531983278\n\nDear TÜRKAN ÖZER, your shipment with 531983278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531983278\n\nBICARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('632e591b-f435-4de7-a8dd-67abae18e3e1','33642608703','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('632f8ea8-08f1-4aed-bec1-d019d9afff4f','905517075149','Sayın yetkili; YEZNİK ADORYAN adlı müşterinize 47816855 nolu gönderinizin MASA VE 6 ADET SANDALYE ürünü 5 parça halinde FAMİLY KOLTUK adresinizden 14.10.2025 14:42:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebece0e-bf8d-4678-bf15-17e6bed10020',NULL),
('633429b2-69c0-481e-8774-0e8bd0e71d38','32499630637','Sayın ORKUN SÖĞÜTLÜ, 248292815 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248292815\n\nDear ORKUN SÖĞÜTLÜ, your shipment with 248292815 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248292815\n\nBICARGO','1','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL),
('633491b1-b8a9-4e6b-a23a-6099283b4295','33769293116','Sayın ABDULLAH DEMİR, 449239758 nolu gönderiniz 6451 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449239758\n\nDear ABDULLAH DEMİR, your shipment with 449239758 was delivered to you with the delivery code 6451. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449239758\n\n\nBICARGO','1','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL),
('6337c756-d0c9-42e2-bb44-640ddfaa2be6','33646220992','745849265 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8121 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745849265\n\nYour shipment with the number 745849265 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8121. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745849265\n\nBICARGO','1','88e3316c-4816-449f-a946-ceba121ee2bb',NULL),
('633a9c07-89c6-4543-be8c-d52e36b5f0b6','31621494387','644330933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5760 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644330933\n\nYour shipment with the number 644330933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5760. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644330933\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('633af729-5f3b-4cf1-ac57-27c4f7990868','905079047428','HUSNA ISHAGZAİ adlı müşterinizin 44926965 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL),
('633befe5-71b9-4fe3-bbce-86a3002e8b8f','905434420016','Sayın yetkili; CAMELİA BESSAL adlı müşterinize 748663171 nolu gönderinizin 1 ADET BOHEM MASA / ODDO LİFE ürünü 4 parça halinde Fatura adresinizden 06.11.2024 17:05:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e2e4dbe-5815-4688-acd8-82ba0120462c',NULL),
('633d1bfd-275d-42e7-88d8-bc6868d42b51','491788201397','Sayın BURHAN SARİKURT, 613508377 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613508377\n\nDear BURHAN SARİKURT, your shipment with 613508377 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613508377\n\nBICARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('633ddd0b-6b01-4f9a-ba34-dc2799576ed0','905335708965','YALÇIN adlı müşterinizin 735553146 nolu gönderisi 93 parça halinde yola çıkmıştır.','1','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL),
('633e49ae-809a-4128-9781-33cd0adae5fc','41792382873','371396579 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9450 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371396579\n\nYour shipment with the number 371396579 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9450. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371396579\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('633fa119-5dec-40ec-920a-5310f2dd53e7','905331602195','Sayın yetkili; AYŞE TÜRKMEN  adlı müşterinize 221507815 nolu gönderinizin TV ünitesi  ürünü 1 parça halinde Fatura adresinizden 13.01.2025 10:21:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('6340062a-096f-4c3f-b006-41ad8560881e','905300961610','ERKAN AKSOY adlı müşterinizin 126824871 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','90a8f7ac-5c28-443a-9cbe-23f5c2942327',NULL),
('6340a771-bbfd-4297-812d-f8dc51ef1049','4915152091392','Sayın RAMAZAN KAYHAN SSH, 478885112 nolu gönderiniz 5801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478885112\n\nDear RAMAZAN KAYHAN SSH, your shipment with 478885112 was delivered to you with the delivery code 5801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478885112\n\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('6344d68d-a9db-4569-9816-e938753a49a0','905532675926','Sayın yetkili; ESRA SAATÇİ adlı müşterinize 428905379 nolu gönderinizin ünite+orta sehpa ürünü 5 parça halinde Fatura adresinizden 10.10.2025 16:42:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL),
('6346404d-3907-4ab9-99c3-19b5cdc4ec61','905350617509','Sayın yetkili; NURETTİN BAYRAK  adlı müşterinize 613661947 nolu gönderinizin Köşe koltuk ürünü 2 parça halinde Moda dizayn adresinizden 14.08.2025 14:57:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('6347509c-974b-4e52-917d-fb156c998235','905078062550','Sayın yetkili; NUSRET VAROL VURAL adlı müşterinize 598427868 nolu gönderinizin TRAVERTEN SEHPA ürünü 1 parça halinde Fatura adresinizden 22.08.2025 14:29:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('634aebbb-2220-4d57-bc19-e50f5bfceea2','4917656562784','Sayın KÖKSAL ÇELİK, 42844174 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42844174\n\nDear KÖKSAL ÇELİK, your shipment with 42844174 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42844174\n\nBICARGO','1','c8cb8a48-a710-4ed9-befe-c11c81f0f7df',NULL),
('634c0a16-a555-48b9-96f2-c5aa46d1ccf2','4917449179710','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','2','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('634cb4ce-1cf1-4a02-91c6-0820ef01cfe1','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin HALI ürünü 9 parça halinde COOL HALI  adresinizden 22.01.2025 10:57:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('63510814-91ae-4178-9de7-a71d383fd153','905079358213','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin FRİDA ORTA SEHPA + PUF  ürünü 2 parça halinde RİXXE  adresinizden 15.10.2025 14:20:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('63556d74-0416-4646-b445-b920d98c73b2','905075277637','Sayın yetkili; İSRAFİL ŞENGÖNÜL adlı müşterinize 745297087 nolu gönderinizin RAMS YEMEK ODASI ürünü 28 parça halinde FAMILY  adresinizden 12.03.2025 21:25:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('63599e5c-95dd-4c9b-8239-74b3144c74ac','491751501286','98238273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8326 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98238273\n\nYour shipment with the number 98238273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8326. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98238273\n\nBICARGO','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('635b7a3a-1c6d-4bf6-a8cf-fdfcfe8e0be7','905335511664','Sayın yetkili; ELÇİN COŞKUN adlı müşterinize 371456634 nolu gönderinizin köşe takımı + puf ürünü 3 parça halinde Elitis Home adresinizden 22.10.2025 12:01:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a2010327-e9ab-4331-9de9-8dfb1da2f54d',NULL),
('635d3bdf-ed85-4781-8013-ad0e5a364f40','4917632298382','Sayın ERCAN VARSAK, 745318139 nolu gönderiniz 6954 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745318139\n\nDear ERCAN VARSAK, your shipment with 745318139 was delivered to you with the delivery code 6954. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745318139\n\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('635f4f07-3a1b-43f1-9186-7055ee438323','05388999874','319116491 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1890 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319116491\n\nYour shipment with the number 319116491 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1890. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319116491\n\nBICARGO','2','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('636113ee-7bcd-406c-b8ff-0e9490a29ea0','905451571652','VİET ANH THAİ adlı müşterinizin 531250587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('63616b75-a174-45c5-8b09-1156b98d4bd6','905331602195','ÖZAY ÖZDEMİR YILDIZ (SSH) adlı müşterinizin 221530805 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('6361d2f2-2fe3-4d19-a48c-1cb4dfe10a09','905459011033','MEHMET SARIKAYA adlı müşterinizin 268368509 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c99f254-2612-4029-ac15-ffb095b93de3',NULL),
('6366353f-e9f8-4161-a43e-fcc947fd5cd1','905454259202','ZEYNEP ALEYNA ÖZBEY adlı müşterinizin 478101302 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL),
('6370b45a-b67d-4878-990f-09ccf7b7594d','905461661672','TARIK TURAN adlı müşterinizin 644769101 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('6378980d-2d70-4fb7-ad00-dbc6f640f140','905301592882','BERKAN AĞIRMAN adlı müşterinizin 910899167 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('637ba6e2-a4c1-414e-ae8e-5e6f2e37c5e3','436604232899','Sayın SERKAN SİLAN, 657785918 nolu gönderiniz 1168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657785918\n\nDear SERKAN SİLAN, your shipment with 657785918 was delivered to you with the delivery code 1168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657785918\n\n\nBICARGO','1','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL),
('637bc364-9a4a-49e3-8859-09c83293dcc8','31645212604','Sayın ÇAĞLA SEVİNÇ, 745243104 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745243104\n\nDear ÇAĞLA SEVİNÇ, your shipment with 745243104 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745243104\n\nBICARGO','1','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL),
('637c31bd-aaaa-49cc-8301-6a5e6dbffbd5','905454259202','İREM AKÇORA adlı müşterinizin 478930985 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','47dfe68f-7a1e-4d9e-8d1f-d23bf6cac506',NULL),
('637fa9ca-5689-4559-b523-7fffab95587f','491742714883','598668612 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3209 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598668612\n\nYour shipment with the number 598668612 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3209. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598668612\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('637fb8c5-446d-4b47-b773-25d7778f7952','905333221039','GÜLSEN ERDİNÇ adlı müşterinizin 750717756 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('638420cb-0ede-47ab-86f5-c6f2b7644ede','491758664558','Sayın NADİDE BAHÇEÇİOĞLU, 478283773 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478283773\n\nDear NADİDE BAHÇEÇİOĞLU, your shipment with 478283773 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478283773\n\nBICARGO','1','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL),
('63888df7-6e41-444f-9466-f4406fa8065d','491717951084','896847151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4625 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896847151\n\nYour shipment with the number 896847151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4625. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896847151\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('63891dc0-cb82-4609-822f-f896cab05800','905335708965',' adlı müşterinizin 248864808 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f8fc3b49-9b9c-4432-80be-0d9ce15dac6e',NULL),
('638940ce-5e57-4288-a5f6-b5a56c4314ab','5325000478','Sayın ADNAN ADNAN, 11.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8832814\nŞifre : 8832814\n			\nBİCARGO','1',NULL,'eb88f328-c1ca-431b-ad68-6f414d275615'),
('6389c302-da5e-44cc-9e1a-7435d561a462','491795209461','Sayın GHAZAL TARIK İLHAN, 644826740 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826740\n\nDear GHAZAL TARIK İLHAN, your shipment with 644826740 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644826740\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('638a2c46-a50d-4e2f-a297-b5433d09b2bb','4917656985678','644762741 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3327 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644762741\n\nYour shipment with the number 644762741 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3327. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644762741\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('638a82af-c713-4813-9c30-1ef6564a24d5','905313340045','Sayın yetkili; NURİYE İKİZKAYA adlı müşterinize 437854000 nolu gönderinizin kampanya köşe takımı ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 14.08.2025 17:48:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('638b336e-7596-4e9f-9f06-e35f50311a55','33603993672','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('638c02ad-7133-4bad-8e0b-ea3f645404bf','4917655430941','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('63923732-76f6-4a83-ae04-b2f2380a85a1','33652961737','976192214 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10530 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976192214\n\nYour shipment with the number 976192214 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10530. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976192214\n\nBICARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('6396b83b-2f08-4ef6-8e67-440abed9cdc0','491716168674','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('6396d068-8d2a-4eef-a4ce-5817d82c9a06','49017662030920','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('6397159d-0494-4be3-9d3a-6f8d0db66e83','905451571652','Sayın yetkili; PERİHAN ÖZVURAL adlı müşterinize 531344250 nolu gönderinizin Sandalye ürünü 6 parça halinde M four sandalye adresinizden 23.07.2025 11:13:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('6399329d-f9b9-4c1f-a803-278274871207','905363385813','HİLAL POLAT ÇELİK adlı müşterinizin 976866527 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL),
('639e501a-1757-47d1-9893-2107a1f5e5b0','905079047428','LYDİE MAKALU adlı müşterinizin 449780250 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f9c61776-accb-469f-88e4-b551ad871fe8',NULL),
('63a9b623-5933-4cac-9d42-b4cde47c1d58','491783919050','Sayın MÜCAHİT SÖYLEMEZ, 47842524 nolu gönderiniz 3743 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47842524\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 47842524 was delivered to you with the delivery code 3743. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47842524\n\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('63aaf34b-5f91-4a90-8d4e-e8fe11d6f904','491628528011','Sayın MOSTAFA RAZOUK, 146630568 nolu gönderiniz 9702 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/146630568\n\nDear MOSTAFA RAZOUK, your shipment with 146630568 was delivered to you with the delivery code 9702. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/146630568\n\n\nBICARGO','1','cd21e329-02ee-479d-aa79-d66d804db51d',NULL),
('63acf289-7bf2-4f4c-afca-847829b4c521','4917620210271','Sayın AMANY MOUSA, 22134117 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22134117\n\nDear AMANY MOUSA, your shipment with 22134117 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22134117\n\nBICARGO','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('63b10a6a-344a-4822-aef6-78f3f9114d9e','330769065408','Sayın POLAT HANIM, 982644032 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982644032\n\nDear POLAT HANIM, your shipment with 982644032 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982644032\n\nBICARGO','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('63b68f49-5e80-421d-b218-64a971cf74c8','4917682057600','Sayın ENES KARABAŞOĞLU, 598130952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598130952\n\nDear ENES KARABAŞOĞLU, your shipment with 598130952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598130952\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('63b7113d-0af8-4ee6-965c-8dcd8d202b20','5392130416','Sayın ADNAN DURSUN, 14.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2352437\nŞifre : 2352437\n			\nBİCARGO','1',NULL,'2a352437-950c-42a9-9135-55482cf3977c'),
('63bb6f65-df8b-4136-91bc-6124be1764e3','4917661070525','745606440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3753 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745606440\n\nYour shipment with the number 745606440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3753. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745606440\n\nBICARGO','1','39fe7b17-1a25-490e-8486-f344c7b112d9',NULL),
('63bc0574-2362-4408-8562-b5a1f230dda0','4917624811097','İletişim \n					Şöför Uğur Acar +905424435917','1','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('63bea686-c12d-49dd-b09c-9140e1a17f67','33695724672','Sayın ZAINOUNE LOUBNA, 613809111 nolu gönderiniz 1634 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613809111\n\nDear ZAINOUNE LOUBNA, your shipment with 613809111 was delivered to you with the delivery code 1634. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613809111\n\n\nBICARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('63c5f07b-4aa3-4621-a830-eab18c147296','905079047428','HASSAN ABDULBARİ adlı müşterinizin 44937818 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61dd2e23-34d6-44a9-9516-6e9c953b281e',NULL),
('63cadd2a-d2b5-4263-87a6-7d1c269251d8','491776418748','Sayın AHMET ÖZDEMİR, 478622556 nolu gönderiniz 6905 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478622556\n\nDear AHMET ÖZDEMİR, your shipment with 478622556 was delivered to you with the delivery code 6905. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478622556\n\n\nBICARGO','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('63d2978a-a92f-473f-9e7f-7c8d380ac05c','05388618969','Sayın yetkili; MUSTAFA AZAMİ  adlı müşterinize 786668251 nolu gönderinizin Şifonyer ürünü 2 parça halinde Hıdır ılyas adresinizden 29.04.2025 13:11:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('63d5641c-c688-4df5-aa8c-828dda8b7202','4915222699200','Sayın TAYLAN KAZAL, 371179895 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371179895\n\nDear TAYLAN KAZAL, your shipment with 371179895 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371179895\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('63d5ee1d-2090-4bd2-9cf4-a06aebccb8df','905335511664','SILAMNIKU ALTRIN adlı müşterinizin 371396579 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('63dd385c-9d04-4ef0-8719-1ef290d8eeff',NULL,'ŞÜKRÜ AKSOY adlı müşterinizin 428930069 nolu gönderisi 2 parça halinde yola çıkmıştır.','2','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('63e2db86-f980-4a88-b88b-07cd4321ded3','33695430000','Sayın AYŞE SÖNMEZ, 745206126 nolu gönderiniz 1082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745206126\n\nDear AYŞE SÖNMEZ, your shipment with 745206126 was delivered to you with the delivery code 1082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745206126\n\n\nBICARGO','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL),
('63e45a5b-c22e-496f-bba2-44a1b0a1e453','330753353258','982331367 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7342 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982331367\n\nYour shipment with the number 982331367 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7342. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982331367\n\nBICARGO','1','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL),
('63e4d277-e263-40ec-9f75-5d4ce5ed7446','32489883387','437694817 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2677 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437694817\n\nYour shipment with the number 437694817 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2677. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437694817\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('63ec9d3a-d30f-4cf0-acd1-31d5c279149d','905350617509','IRA YİLDİRİM  adlı müşterinizin 613297420 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('63ee362e-dfb8-41e9-ab70-7de8d445cc7b','905069116877','ALEYNA adlı müşterinizin 817395462 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('63f40521-5528-49fc-b6ec-eb27e7c03168','32487361121','Sayın Roa şerif, 902159645 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/902159645\n\nDear Roa şerif, your shipment with 902159645 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/902159645\n\nBICARGO','1','c551c482-a643-4cab-b50a-a3615f511791',NULL),
('63f4b19d-cc3b-487e-a63d-8b9188a0817e','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin EWODA LENS ŞİFONYER BOY AYNASI ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('63f8b4d0-4514-4f0b-8a11-1e1b5ff93f58','491747765301','Sayın DERYA BAYRAK, 371180149 nolu gönderiniz 10176 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371180149\n\nDear DERYA BAYRAK, your shipment with 371180149 was delivered to you with the delivery code 10176. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371180149\n\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('6404590a-db4c-42cf-be7b-e21beeb1102b','33699946659','Sayın BELKISA KAPLAN, 478403794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478403794\n\nDear BELKISA KAPLAN, your shipment with 478403794 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478403794\n\nBICARGO','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('6405d35c-e2dd-4691-80a2-10b24fed1399','905454259202','MECİT AVCI adlı müşterinizin 478957028 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('640ed29b-c693-44db-9e00-000156613d06','905451571652','YUNUS EMRE ÖZAGİR adlı müşterinizin 531988506 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('640f284c-25c0-46bd-aa05-88694bb26ff2','4917680117580','İletişim \n					Şöför Uğur Acar +905424435917','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('64159d21-9fd5-466f-acba-fc845eff2ef3','491637771977','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('64191bf3-25fc-4226-8e03-22bc805badca','4901733860312','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('641afc46-1036-4da1-ab95-c3466940df87','330769082765','Sayın SAMPAİ CATHERİNE, 982118676 nolu gönderiniz 8963 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982118676\n\nDear SAMPAİ CATHERİNE, your shipment with 982118676 was delivered to you with the delivery code 8963. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982118676\n\n\nBICARGO','1','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL),
('641f47e1-83b4-49f4-9ee1-884d3738530e','31638631333','Sayın DEMET HANIM, 657640918 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657640918\n\nDear DEMET HANIM, your shipment with 657640918 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657640918\n\nBICARGO','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('641fb85c-d211-44b8-817a-2c5cdf3f1a84','32485026823','338737901 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338737901\n\nYour shipment with the number 338737901 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338737901\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('6422170e-4407-4868-a580-c7c44a299242','905461661672','Sayın yetkili; MELİSA DÜZME adlı müşterinize 644796083 nolu gönderinizin SANDALYE ürünü 4 parça halinde ELAKSA SANDALYE adresinizden 21.08.2025 15:20:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('64230605-2c56-4262-85d9-4147800c3abe','1111111111111111','Sayın CAM BALKON, 858854212 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858854212\n\nDear CAM BALKON, your shipment with 858854212 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858854212\n\nBICARGO','2','b67594be-f958-4225-900b-19c5f6be08ce',NULL),
('64283224-7590-41b9-8296-d8acc273c9fb','905054335859','MAHRİCAN DERİN adlı müşterinizin 501848451 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL),
('642bb508-f261-4505-99f7-3608e54ecc31','905079047428','YILDIZ DEMİR adlı müşterinizin 449715358 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','fdbd5255-796f-4278-a5b0-0661f2660929',NULL),
('6439d31d-6e06-4cc4-af06-4d049fef93fa','31611699188','65722585 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/65722585\n\nYour shipment with the number 65722585 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/65722585\n\nBICARGO','1','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL),
('643ae739-9820-485e-beaf-3a8b778aab8a','905079358213','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin MERMER DESEN MASA + SEHPA  ürünü 7 parça halinde GÜMÜŞ MASA adresinizden 12.06.2025 17:10:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('643efa8e-9be8-45e5-86f4-c6483059b665','4915731155565','248890689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3789 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248890689\n\nYour shipment with the number 248890689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3789. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248890689\n\nBICARGO','1','62c72b38-75cc-4808-b1d5-7296d0000146',NULL),
('643f12d9-8ab3-4848-a5ac-360e8cc37bb3','905355928266','SEBAHATTİN ÜNVER adlı müşterinizin 412225517 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','33559e2b-89eb-400e-bccc-223d68f8842e',NULL),
('643f77b0-35ae-4add-8c50-e0a95a008de3','905421855834','GÜLCAN İNCE (SSH) adlı müşterinizin 338840422 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('6440115a-01de-4032-9a69-3977f4f043f7','491629336430','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('6447cce7-ad74-409b-bc3c-131609887862','905079358213','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin DELUXE 160LIK YATAK  ürünü 1 parça halinde Fatura adresinizden 22.08.2025 12:36:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('644b5687-a79b-400c-909d-0fa85fd78d52','310650615822','338286320 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4805 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338286320\n\nYour shipment with the number 338286320 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4805. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338286320\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('64522031-18dc-4893-b668-717771a2cf35','905352129940','SHAHRAM RECEBİ  adlı müşterinizin 112270991 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL),
('6452a028-668d-459b-bc20-b0601a19335d','905331602195','RANJA SABRİ  adlı müşterinizin 221904119 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('64534de6-aa06-459e-ac02-962e91d5b891','4917657934135','Sayın EJDER SOLAK, 47838085 nolu gönderiniz 9287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47838085\n\nDear EJDER SOLAK, your shipment with 47838085 was delivered to you with the delivery code 9287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47838085\n\n\nBICARGO','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('6459a12c-3d9c-4da8-829a-f2eedec375af','905350617509','OGULCAN BAYRAM adlı müşterinizin 613822987 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('645b6f5a-7708-469d-9585-df305f359426','491606817658','371365427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8032 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365427\n\nYour shipment with the number 371365427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8032. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371365427\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('645bb838-7981-45e4-8f5b-431e17f7743c','905350617509','ASLAN MURTAZALİEV adlı müşterinizin 613669036 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('645da525-5f19-44c2-b5f2-744a9880ec1f','905331602195','Sayın yetkili; BUNJAMİN HALİMİ  adlı müşterinize 221962516 nolu gönderinizin 70x120 cm traverten orta sehpa  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:59:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('64602ba5-8a09-4c84-abd8-fb71b8b435a6','5413112906','Sayın DİLBER ÖZTÜRK, 319585140 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319585140\n\nDear DİLBER ÖZTÜRK, your shipment with 319585140 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319585140\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('64682451-c0b3-4d35-939e-aba6023c6db8','31614556700','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('646fbe78-a6ff-48cb-bca2-7692c89452be','905079358213','MERVE DAYI adlı müşterinizin 745869069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('6472ae73-c2d2-4c3d-a014-c7c8cab0ed7a','905078062550','NERİMAN SARI adlı müşterinizin 598226174 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('6472e58e-01bb-4f77-9604-9d256983e2bb','905350617509','Sayın yetkili; EDONJETA GOLAJ  adlı müşterinize 613165111 nolu gönderinizin Masa ürünü 1 parça halinde Fatura adresinizden 25.04.2025 17:23:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','22d0b545-968c-4731-9428-8683cd6b2cc3',NULL),
('64755757-02d9-4582-b0b1-67086a83a9a1','905331602195','HASAN YALÇIN adlı müşterinizin 221724224 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('647bb8d9-ef4b-4358-ba2d-5869e97b5ba1','905363385813','SEBA QASEM adlı müşterinizin 976763926 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('647db91b-1daa-4007-b89c-7ef576804f59','491728705267','478243785 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478243785\n\nYour shipment with the number 478243785 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478243785\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('6482202c-de40-499e-8443-1ef089e52a08','33665171012','Sayın ŞAHİN MUAMMER, 982840804 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982840804\n\nDear ŞAHİN MUAMMER, your shipment with 982840804 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982840804\n\nBICARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('64872111-5169-402c-8e0d-db7c9ed2531c','905079358213','ÖZLEM TURA adlı müşterinizin 745808637 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('64882640-1762-4ce7-8145-09048c6b34e4','905510396989','MUSTAFA NARİN adlı müşterinizin 319911664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL),
('648a5ee3-ca74-4e02-ad23-e54e819ddf5a','905336367828','Sayın yetkili; ALİ ÇETİN  adlı müşterinize 982817887 nolu gönderinizin Sineklik  ürünü 1 parça halinde Fatura adresinizden 10.01.2025 14:37:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('6491b200-e85f-496d-9a03-517bf36ca497','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA 2 KAPILI ASKILI DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 15:00:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('64920044-00f7-443d-aa49-0b256e3633b4','905304259202','SONER DEMİRCİ adlı müşterinizin 478422219 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','0ba6c8d6-d6aa-48ba-8ad1-17b48014aed1',NULL),
('6492399e-9be9-4980-90c6-a889b45f4768','905079358213','MURAT ERKUL SSH adlı müşterinizin 745898734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('64938db1-1bbb-4b61-b0ef-68f9c0ec9aae','905456068312','DİKİŞ MAKİNASI adlı müşterinizin 655583517 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL),
('6494cf55-6cd2-4981-a95b-a7d8fe1b3d8a','905336367828','ORASAN DAVUT  adlı müşterinizin 98275727 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('649a85a5-df06-489f-ad26-1a4ff9b7a20c','33781907685','Sayın HAVVA GÜL, 976530579 nolu gönderiniz 2359 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976530579\n\nDear HAVVA GÜL, your shipment with 976530579 was delivered to you with the delivery code 2359. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976530579\n\n\nBICARGO','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('649c44d7-88dd-4020-b041-bf021dea955e','905332942204','Sayın yetkili; İPEK ÇAKMAKÇI adlı müşterinize 505129515 nolu gönderinizin sandalye ürünü 3 parça halinde mfour adresinizden 29.08.2025 12:56:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('64a446f2-e945-42fb-9cf9-0afc0cb8e693','41794403640','Sayın ŞİRİN BALCIN, 486181220 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486181220\n\nDear ŞİRİN BALCIN, your shipment with 486181220 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486181220\n\nBICARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('64a9c9dd-0a2a-4693-8081-f9ec7d5569c0','436607580201','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('64ac1eff-5ee1-40f9-8d17-b95c755f3417','41764721719','DRİVER\n					ADNAN\n+905354622027','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('64ac4f31-52b7-4ee8-8273-525e2e2a5697','32490219325','Sayın MUSTAFA MÜEZZİNOĞLU, 428459785 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428459785\n\nDear MUSTAFA MÜEZZİNOĞLU, your shipment with 428459785 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428459785\n\nBICARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('64aff971-7ed8-47ba-977a-3c8bd7807253','33672637355','231455458 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3322 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231455458\n\nYour shipment with the number 231455458 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3322. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231455458\n\nBICARGO','1','967b9ee1-7adb-4c9b-9386-f8200b05df01',NULL),
('64b0529f-aca6-4030-a478-143187f4c97f','905461661672','DELİL ÖZÇELİK adlı müşterinizin 644680025 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('64b0ee5a-d3ed-4b60-b38d-c6dd4f25d126','33660711568','Sayın NURGÜL ÖZER, 221191139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221191139\n\nDear NURGÜL ÖZER, your shipment with 221191139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221191139\n\nBICARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('64b31920-f382-4f34-b6b7-981fe6649055','905451571652','ALAA AL- AHMAD adlı müşterinizin 5312778 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('64b924d6-1c47-49da-9f81-b4abc9724a49','31614272440','İletişim \n					Şöför Murat : +905321616048','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('64b9ab48-b139-4d5b-8485-5eccdcddd96d','905325998198','YILDIRIM  ASLAN  adlı müşterinizin 614766744 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('64c3686c-c78b-4b64-b129-9d7b1d45af55','905079358213','NESRİN DUMAN adlı müşterinizin 745166392 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL),
('64c59ab6-d461-402a-beb5-6a3838b1837c','905079358213','LEİLA GELES SSH adlı müşterinizin 745865715 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('64c5dfdf-1a7b-49de-92c6-52f143b4f511','905336367828','Sayın yetkili; LOULOU FİRAS  adlı müşterinize 982754836 nolu gönderinizin yatak  ürünü 19 parça halinde Fatura adresinizden 20.02.2025 11:43:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('64c60ec0-873c-4b00-bf52-563a76f39276','33607954368','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('64c7c507-0645-4730-a4de-63d84fbab024','905331602195','GURAY SEYFELİ adlı müşterinizin 221496522 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('64c7efdc-0b55-427b-8314-531ef4681856','4369917101202','644287826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10458 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644287826\n\nYour shipment with the number 644287826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10458. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644287826\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('64c8749c-7efc-4692-8d58-3012a51e33e8','5325000478','Sayın Adnan Adnan, 14.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8262585\nŞifre : 8262585\n			\nBİCARGO','1',NULL,'8262d585-bae7-47f4-973a-eef1afacb0ad'),
('64ce52dc-389b-4121-869d-4dd1dfdac461','491734349873','644147833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6489 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644147833\n\nYour shipment with the number 644147833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6489. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644147833\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('64dc24a5-b314-4b46-8399-252d5f8eb534','4915771101675','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('64ddb6ef-e789-4cc5-90c6-623b6ef322a7','33605874886','745952430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2328 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745952430\n\nYour shipment with the number 745952430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2328. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745952430\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('64e0b1d3-c3b5-4f66-b922-27d4e4691886','905454259202','ÖZKAN BALCI adlı müşterinizin 478261585 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL),
('64e5f8d8-18af-4ab6-88df-3dd34224e26a','905304259202','GÜL-MURAT AVCU adlı müşterinizin 478919360 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('64e8f31d-fc3c-458a-8698-ded8e7c8167b','32489954615','644760466 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6159 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644760466\n\nYour shipment with the number 644760466 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6159. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644760466\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('64f1b227-d38b-4881-96ba-80d4a207cd2c','33651400749','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('64f387bc-3089-402b-b2e3-cc053ee85f66','491713217344','Sayın RASİM EKİCİ, 614462377 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614462377\n\nDear RASİM EKİCİ, your shipment with 614462377 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614462377\n\nBICARGO','1','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL),
('64f3d4f1-3487-47cd-92a6-6ca7475ad756','33771602575','221624652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8299 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221624652\n\nYour shipment with the number 221624652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8299. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221624652\n\nBICARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('64f6cf67-72c7-40f5-835b-9c5dcc930c96','905461661672','Sayın yetkili; HATİCE ÇETİN(K) adlı müşterinize 644834421 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 17:07:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('65004679-d182-4d8d-8f48-c2d2c0533347','491729283228','371857345 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6102 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371857345\n\nYour shipment with the number 371857345 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6102. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371857345\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('6500834e-39e5-44fd-b865-3b43d5d1997a','905454259202','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478431848 nolu gönderinizin 180 X 200 BAZA SETİ (AHMET CELEBCİ) ürünü 1 parça halinde çelikbey inegöl depo adresinizden 12.03.2025 21:27:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('65034864-da46-426e-8923-de0b713461ba','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 29.05.2025 12:25:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('6508e35a-056d-4d02-ab1f-5f6885c53599','905336367828','ORASAN DAVUT  adlı müşterinizin 98275727 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('650a6206-7907-41dc-9ac2-8498c7101737','31648076421','Sayın AHMET GÖKÇEK , 973510341 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/973510341\n\nDear AHMET GÖKÇEK , your shipment with 973510341 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/973510341\n\nBICARGO','1','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL),
('650b2483-ed2f-44f2-b44f-73899fd69a96','905517075149','Sayın yetkili; BİLAL AYTAR adlı müşterinize 478702481 nolu gönderinizin köşe takımı ve berjer ürünü 5 parça halinde RİXXE adresinizden 22.10.2025 14:30:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2001cb25-64fc-43dd-827f-15869eca039f',NULL),
('651126a6-9ace-416e-beda-a42111352ced','33753285709','Sayın ÖZKAN ERDEM , 478784133 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478784133\n\nDear ÖZKAN ERDEM , your shipment with 478784133 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478784133\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('651875ab-a60b-47d1-bd8a-a641a642d162','905325000478','HÜSEYİN SAYLAN adlı müşterinizin 412678735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('651cab24-9755-4cb1-8c0a-da4fef687cbe','491626958911','Sayın SABİHA SATICI, 644520957 nolu gönderiniz 7427 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644520957\n\nDear SABİHA SATICI, your shipment with 644520957 was delivered to you with the delivery code 7427. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644520957\n\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('651e107c-ab64-40bc-a77e-f860ebebc023','905454259202','Sayın yetkili; YETKİN TOKER adlı müşterinize 478120731 nolu gönderinizin 1660lık set ürünü 4 parça halinde çelikbey inegöl depo adresinizden 26.01.2025 13:28:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('652082d1-5f26-4cf8-a7fa-d734fead373b','905306071261','KADER YILDIZ adlı müşterinizin 765600734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('6521b550-70dd-41af-ab45-4cc27b9cce30','905075277637','ZEYNEP ALKIŞ adlı müşterinizin 745964132 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3f82ae91-19cb-4663-bb33-377d660eea84',NULL),
('65222926-e0bd-469c-9130-55067d1566d3','905331602195','Sayın yetkili; AYŞE TÜRKMEN  adlı müşterinize 221507815 nolu gönderinizin Konsol ürünü 1 parça halinde Fatura adresinizden 13.01.2025 10:21:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('652db72a-09f5-4379-a014-82d8ed99a4f2','905363385813','SOUQİ İMANE adlı müşterinizin 976185606 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('6535c831-d7f9-4753-9618-5a6d8885caf9','4917672523276','598188038 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598188038\n\nYour shipment with the number 598188038 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598188038\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('653619b9-44cb-4831-9266-de83321f49e8','905300961610','XHEMİLE KURBOGAJ adlı müşterinizin 126274786 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL),
('65365770-d824-4b21-ab88-f8625a35e4ce','905304259202','YAKUP KILIÇ adlı müşterinizin 478124503 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL),
('653915c8-51e7-4aec-8aa7-727897a8efd6','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('653cb527-e9a8-4911-bf1d-9c162825956a','905335708965','TABLO adlı müşterinizin 248209461 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL),
('65424998-10d6-4101-9c25-6159e23528e9','436766461961','371539784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371539784\n\nYour shipment with the number 371539784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371539784\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('6542820d-87a8-4383-aecd-9b5bab2fd761','4915770347137','Sayın VAİSE İBRAHİM, 613108463 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613108463\n\nDear VAİSE İBRAHİM, your shipment with 613108463 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613108463\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('65445aa0-2080-487f-a151-7a3daaeba7b5','33634270535','515463699 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5113 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515463699\n\nYour shipment with the number 515463699 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5113. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515463699\n\nBICARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('6544f9e4-0edb-4860-8177-4a776e36da88','32493360527','319275080 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3727 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319275080\n\nYour shipment with the number 319275080 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3727. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319275080\n\nBICARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('654e5ede-a9f2-48d7-a823-1ee6ed2fa897','905461661672','TUĞBA GÜLSEVEN adlı müşterinizin 64434778 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('6551faa5-3450-40b2-848b-f0ad31388cd0','4917682030293','982835475 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8724 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982835475\n\nYour shipment with the number 982835475 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8724. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982835475\n\nBICARGO','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('655947a4-5e60-462f-b232-9c53a8ef3e9c','905335511664','AHMET AĞIRMAN adlı müşterinizin 371413703 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('65596281-70cd-42cd-9c71-432728d704f8','33650437486','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('6559bff4-4ab2-416a-9d30-d7021dcced84','905349208933','EMRAH ERAYDIN adlı müşterinizin 127552437 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('655a8435-d924-4a45-9ff3-5542c14d357a','31634686585','644298759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10903 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298759\n\nYour shipment with the number 644298759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10903. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644298759\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('655bbe29-bbc0-4861-8303-ec689e2a1932','905333323012','Sayın yetkili; BRADLEY MÜLHAUSER adlı müşterinize 695734625 nolu gönderinizin masa sandalye ürünü 8 parça halinde Fatura adresinizden 10.10.2025 13:58:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ea76b05-b121-495a-8d2a-ccda072629c6',NULL),
('655c4948-2084-4c2f-8353-2bd95d324705','905510396989','Sayın yetkili; AYHAN KOCAKAYA adlı müşterinize 31979626 nolu gönderinizin TESLA KÖŞE + 2 ADET BERJER ürünü 6 parça halinde Bestine adresinizden 31.07.2025 16:48:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('65679a37-7743-4432-b827-ccfec6133a1c','905301592882','İDRİS EŞKIN adlı müşterinizin 910593915 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('656823f7-9618-4a96-84cf-7deb05bf4226','491621366098','Sayın ÜMRAN HANIM, 248853188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248853188\n\nDear ÜMRAN HANIM, your shipment with 248853188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248853188\n\nBICARGO','1','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL),
('6568a6a9-198e-401c-809f-d7ec62ac323f','33652652450','Sayın OSMAN KILINÇ, 478205168 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478205168\n\nDear OSMAN KILINÇ, your shipment with 478205168 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478205168\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('656a7846-2ad4-4ec6-b5c5-df29957b2ebf','905301592882','Sayın yetkili; YASEMİN ERKAN adlı müşterinize 910152598 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 20.10.2025 11:09:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('656b51ad-759a-4e9d-b10c-164d41466ecd','905079358213','FATMA GÜR adlı müşterinizin 745382052 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL),
('656c2011-c52d-414e-8750-ad90cef91804','4917623595130','Sayın SWEETA QALANAWİ , 613393068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613393068\n\nDear SWEETA QALANAWİ , your shipment with 613393068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613393068\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('65724bd0-c150-40f5-87f0-40f2e4e748fe','4915147077400','Sayın EMİNE MERİÇ, 51557557 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/51557557\n\nDear EMİNE MERİÇ, your shipment with 51557557 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/51557557\n\nBICARGO','1','5d4df7c0-7f38-4095-847c-3996a99d1a51',NULL),
('65730f2c-5470-4dcd-96c9-adb974175922','491707003988','64441153 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6314 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64441153\n\nYour shipment with the number 64441153 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6314. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64441153\n\nBICARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('657449b4-1853-49c6-8176-3fbfde923d66','4917623385759','515171044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5742 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515171044\n\nYour shipment with the number 515171044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5742. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515171044\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('6574d303-db35-4f2e-bdb4-3030c93d87e0','33642364836','221132707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9231 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221132707\n\nYour shipment with the number 221132707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9231. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221132707\n\nBICARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('657e0780-5ce2-43d0-903e-4094f4611e59','905059175469','Sayın yetkili; ERDOĞAN DEMİREL adlı müşterinize 428172853 nolu gönderinizin koltuk ürünü 4 parça halinde chessa adresinizden 08.07.2025 12:09:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL),
('657f2617-3ae5-41e5-ab82-6d8f54c19eb2','905336367828','FERİDE USLI  adlı müşterinizin 982674617 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('6582189b-e17e-4824-9661-ec9a328088e6','33644764905','Sayın NİHAT SEMOĞLU, 745175736 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745175736\n\nDear NİHAT SEMOĞLU, your shipment with 745175736 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745175736\n\nBICARGO','1','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL),
('65828476-93ab-4ff2-a6b7-f6922642fd10','905325000478','POLAT İSTİKRAR  adlı müşterinizin 412596038 nolu gönderisi 35 parça halinde yola çıkmıştır.','1','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL),
('6587374a-4a46-4e47-b0ec-7e59335b5c49','4915206306725','Sayın AYHAN İÇEN, 745813483 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745813483\n\nDear AYHAN İÇEN, your shipment with 745813483 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745813483\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('6587b01c-a7cf-4e04-9fc0-22111beb766d','905313340045','MÜCAHİD AL SSH adlı müşterinizin 437379015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('6588058f-bc0d-4444-8753-dd4a37d1c88a','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin KONFOR KOLTUK TAKIMI ürünü 5 parça halinde Fatura adresinizden 17.06.2025 12:19:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('658d15ea-9faa-4701-891a-d6d14d2e005b','31633087507','Sayın UMUT ETHEM EMRE , 437101296 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437101296\n\nDear UMUT ETHEM EMRE , your shipment with 437101296 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437101296\n\nBICARGO','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('658dac84-69d2-4ff8-9302-fef1d0d1d7d9','905443955915','DURMUŞ MEVLÜT adlı müşterinizin 614873400 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL),
('6593eaa1-18d3-4f9b-8fbe-e30ffa2f9311','905075277637','Sayın yetkili; MEHMET KIRMALI SSH adlı müşterinize 745961245 nolu gönderinizin SSH SIRT MİNDERİ ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:10:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('65950ae0-8cb9-49e0-b330-e98edfe85771','905331602195','ARİC AKA adlı müşterinizin 221350993 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('6597b184-27ba-46d2-a41e-77c7c217e30b','905454259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin 180X200 DELÜXE YATAK ürünü 1 parça halinde Fatura adresinizden 19.06.2025 12:59:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('6599281d-052a-44c8-b66a-a3f10d8864c1','49017662030920','Sayın ZEKERİYA SOYER, 338878009 nolu gönderiniz 10498 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338878009\n\nDear ZEKERİYA SOYER, your shipment with 338878009 was delivered to you with the delivery code 10498. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338878009\n\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('6599bef6-ee03-4836-bafc-6f10942d4e2d','436503601028','Sayın TEKİN ÇİLLİ, 315959949 nolu gönderiniz 4243 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/315959949\n\nDear TEKİN ÇİLLİ, your shipment with 315959949 was delivered to you with the delivery code 4243. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/315959949\n\n\nBICARGO','1','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL),
('659e578d-836f-44fa-8621-2fa3d54326a0','905331602195','Sayın yetkili; İBRAHİM AKIN  adlı müşterinize 221594735 nolu gönderinizin Balat sandalye ceviz ürünü 8 parça halinde MASAMİ MOBİLYA adresinizden 25.08.2025 10:39:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('65a1419f-4b4f-47b0-8be5-763167abea5b','905079358213','DİLARA TARHAN adlı müşterinizin 745233031 nolu gönderisi 43 parça halinde yola çıkmıştır.','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('65a25c7b-ef9a-4422-b028-0f1e0e44da87','33975706258','Sayın ABDULLAH ÖZER		, 910594430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910594430\n\nDear ABDULLAH ÖZER		, your shipment with 910594430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910594430\n\nBICARGO','2','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('65a35a0b-2d64-491e-89f9-c7af3c958190','905368336516','Sayın yetkili; FOUAD BJA adlı müşterinize 515103460 nolu gönderinizin masa  ürünü 2 parça halinde masami adresinizden 11.07.2025 13:54:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('65a6a381-ce06-4322-9b1d-864e6ced2af0','4915124010499','221801165 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5957 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221801165\n\nYour shipment with the number 221801165 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5957. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221801165\n\nBICARGO','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('65a8272b-15d0-4b21-a489-365ab3f06b41','905079358213','GÜLÜZAR KECKİN adlı müşterinizin 745276257 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('65ae689a-1af4-4789-930d-0a150c9ef0ee','491741928164','Sayın İLAYDA GÜNEŞ, 371528044 nolu gönderiniz 2082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371528044\n\nDear İLAYDA GÜNEŞ, your shipment with 371528044 was delivered to you with the delivery code 2082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371528044\n\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('65b0e561-e7d2-462b-859a-3eb22e309e86','905349208933','ALESSANDRA ALTAVİLLA adlı müşterinizin 127343940 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('65b4b0e7-e2d2-41ad-95e2-b962e116b643','905331602195','Sayın yetkili; SAİDA ELAZZOUZİ  adlı müşterinize 221282484 nolu gönderinizin 90x150-190 orlando koyu ceviz açılır masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:57:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('65b53239-2848-4c70-8f6a-64a4dfe0255a','4915111667554','47836811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3511 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47836811\n\nYour shipment with the number 47836811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3511. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47836811\n\nBICARGO','1','9016d7f6-7477-4afe-9a6c-22410434be77',NULL),
('65b80f01-6d25-4dd8-a3c7-d1a34606c3f7','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin KÖŞE+2 AD. BERJER ürünü 8 parça halinde RİXXE adresinizden 01.08.2025 12:26:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('65b8f2df-7ba6-462f-9a69-2c539a353fce','33646824181','Sayın NAİMA BOURAJJOU, 22186590 nolu gönderiniz 6644 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22186590\n\nDear NAİMA BOURAJJOU, your shipment with 22186590 was delivered to you with the delivery code 6644. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22186590\n\n\nBICARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('65bbbcb1-e1c2-4002-8d39-22287b31626c','33648776910','162733891 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/162733891\n\nYour shipment with the number 162733891 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/162733891\n\nBICARGO','1','ee55d774-0af3-44a4-a04d-c52632a73128',NULL),
('65c0a36a-7ecd-4d0d-bced-ca9e55682e07','905336367828','ESTİFANOS HABTE  adlı müşterinizin 982496646 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('65c3772a-e6b8-417d-9630-f70365b94a6b','905517075149','ONUR ÖZER adlı müşterinizin 478733242 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('65d07028-a22b-4284-a9c3-38bde0005dd3','93788616359','Sayın Ramish mirzayer, 449354047 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449354047\n\nDear Ramish mirzayer, your shipment with 449354047 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449354047\n\nBICARGO','1','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL),
('65d85bee-a93e-4e85-9c65-966eecfdb559','494621092008','Sayın SEVİM KAMER, 478151970 nolu gönderiniz 2408 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478151970\n\nDear SEVİM KAMER, your shipment with 478151970 was delivered to you with the delivery code 2408. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478151970\n\n\nBICARGO','2','78b69f29-3789-4968-b725-c04339316224',NULL),
('65da8dbb-9abc-4618-8883-97cb29c40197','905075277637','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM KOLTUK TAKIMI  ürünü 4 parça halinde INHOUSE  adresinizden 10.06.2025 11:49:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('65db940c-2164-4c16-8860-8b2e08d0e0b2','33753319527','Sayın MERYEMA TEKİN, 478431848 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478431848\n\nDear MERYEMA TEKİN, your shipment with 478431848 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478431848\n\nBICARGO','1','5be6a019-e31c-4bdd-ac62-bd037d756e64',NULL),
('65dbc37f-f4f6-4690-82aa-c333545d7c45','4917672416653','Sayın ANAHİTA MORİD, 598412225 nolu gönderiniz 7006 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598412225\n\nDear ANAHİTA MORİD, your shipment with 598412225 was delivered to you with the delivery code 7006. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598412225\n\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('65e23f30-02b5-48ba-a8d9-c924a81e8f4b','31651912496','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('65e5de21-ed62-4436-a6de-99f9c74b645c','905079358213','Sayın yetkili; HASAN ÇETİN adlı müşterinize 745810889 nolu gönderinizin TREND SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 26.09.2025 17:03:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('65e625b7-a853-4a4e-bc03-6c08f077571f','905388618969','Sayın yetkili; GİZEM KARAVİL adlı müşterinize 786820149 nolu gönderinizin Sandalye  ürünü 3 parça halinde Fatura adresinizden 14.04.2025 12:13:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('65ef434c-70c5-4e03-bf61-428e58533cfe','4917661479043','598876994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598876994\n\nYour shipment with the number 598876994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598876994\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('65f2b92c-31f9-4986-8bb8-1704beb92c2f','905078062550','BURCU ASLAN adlı müşterinizin 598220619 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('65f8fd0f-e56d-4750-9bcf-9d2705d8e222','905333323012','Sayın yetkili; VALMİRA RAMADANİ adlı müşterinize 695394738 nolu gönderinizin KARYOLA ürünü 4 parça halinde ALBESA  adresinizden 16.06.2025 11:35:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('6606be6d-c057-4af5-a9b9-1fb898d6e5df','32485530941','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('660785cd-2e0d-49b1-b16f-63b996da2d84','905336367828','MİHAİ LİDİA  adlı müşterinizin 982708819 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('660c6acb-f1df-48c5-b03e-e827fbff456e','4915739477075','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('660d7214-2926-4f41-a063-1750d0c60c62','905079358213','Sayın yetkili; NUR YILDIRIM adlı müşterinize 745278745 nolu gönderinizin DELUXE YATAK 180X200  ürünü 1 parça halinde Fatura adresinizden 22.09.2025 19:25:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('661006d3-d9e7-49a3-a854-3650227e8700','905325000478','NUMAN ALTUN adlı müşterinizin 41256945 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL),
('6610766f-f452-4957-a040-494a97696f75','4916221534324917','Sayın GÖKHAN UYSAN, 42873500 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42873500\n\nDear GÖKHAN UYSAN, your shipment with 42873500 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42873500\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('66137137-940d-46f9-827f-1f3cd4f6ffd2','905517075149','ÖZKAN ERDEM  adlı müşterinizin 478862837 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('661ae590-d887-4eeb-a440-b3b9ebe26e09','4920350083648','Sayın DİE FABRİK OUTLET, 223249369 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223249369\n\nDear DİE FABRİK OUTLET, your shipment with 223249369 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223249369\n\nBICARGO','2','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL),
('6623000a-a032-47bd-a64c-9db95b058629','905304259202','Sayın yetkili; EMİN EKRAMOĞLU adlı müşterinize 478548963 nolu gönderinizin BAZA İÇ MALZEMELERİ MAKAS KUTUSU VE DOLAP DİKMELERİ ürünü 4 parça halinde AREA adresinizden 16.04.2025 16:28:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('66238665-0b95-4d4b-ba00-1339b06f4ab7','4915785558828','Sayın EKREM ASLAN, 910632087 nolu gönderiniz 8152 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910632087\n\nDear EKREM ASLAN, your shipment with 910632087 was delivered to you with the delivery code 8152. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910632087\n\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('66254ed0-ba58-4bc8-9915-580fdddef3a7','31681124473','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('66279add-39d0-4708-bb1d-4318dd226e0f','4915901358916','ŞÖFÖR İKETİŞİM\n					+905301824880','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('6629f532-6619-473f-8f91-be777f05cc7d','905336367828','Sayın yetkili; CAROLİE KENZA  adlı müşterinize 982212726 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 09.01.2025 17:13:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('662dcb54-c336-4cf8-aecd-924cae1a6961','41768446429','449448008 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6191 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449448008\n\nYour shipment with the number 449448008 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6191. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449448008\n\nBICARGO','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('662f909b-4346-48d1-9c05-ecd7a2d73fbc','905363385813','ÇUVAL  adlı müşterinizin 976423277 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','79c8efb8-c504-45ca-bec0-780372b87574',NULL),
('6632322a-882a-41a4-a2ed-50c965ca6d05','905304259202','Özcan nazlı adlı müşterinizin 478281011 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL),
('663327ae-ad33-49d2-a75f-eac518cfb918','4917630133122','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('663736bb-9679-4cc0-bb64-c12c6a525b2e','004917640716853','Sayın BİLAL KARROUCH, 73598166 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73598166\n\nDear BİLAL KARROUCH, your shipment with 73598166 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73598166\n\nBICARGO','2','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL),
('66382386-37c0-4a45-8582-a306605c2586','436603775115','Sayın STEFAN SUCEVİC, 437133708 nolu gönderiniz 10120 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437133708\n\nDear STEFAN SUCEVİC, your shipment with 437133708 was delivered to you with the delivery code 10120. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437133708\n\n\nBICARGO','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('663f0949-1490-49aa-ae2a-b0a281785d40','905301592882','MÜZEYYEN ÖZDEMİR  adlı müşterinizin 910163142 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54e0df3d-9714-48db-8da6-46af349072d3',NULL),
('66416b58-39a5-496b-bee2-c22fd96296ef','31614851530','Sayın AYSUN ELİBÜYÜK SSH, 478646824 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478646824\n\nDear AYSUN ELİBÜYÜK SSH, your shipment with 478646824 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478646824\n\nBICARGO','2','26021dc0-1339-4317-be03-053c91e39d17',NULL),
('6641fc07-a4d9-4e5d-bccf-9390b5dbed88','33631854017','745970479 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9709 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745970479\n\nYour shipment with the number 745970479 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9709. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745970479\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('66452262-bcd9-4d25-a84d-e444403d99b1','4369913555140','8176511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3747 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8176511\n\nYour shipment with the number 8176511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3747. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/8176511\n\nBICARGO','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('664791f2-ca2f-48ec-bbea-145c4e52bb74','436766504588','Sayın NİNA ÖZÇELİK, 437397407 nolu gönderiniz 7991 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437397407\n\nDear NİNA ÖZÇELİK, your shipment with 437397407 was delivered to you with the delivery code 7991. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437397407\n\n\nBICARGO','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('6648a4aa-3143-4bd6-875d-4e7abcb2e8eb','4917621155442','ŞÖFÖR İKETİŞİM\n					+905301824880','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('664c1994-c227-43aa-bf5b-ed3b251621f7','4915738754138','Sayın MUSTAFA ÇELİK, 478945094 nolu gönderiniz 8167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478945094\n\nDear MUSTAFA ÇELİK, your shipment with 478945094 was delivered to you with the delivery code 8167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478945094\n\n\nBICARGO','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('664ecc3e-80b2-4899-b533-d3856168272c','905079358213','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin MALDİV YATAK ODASI ürünü 21 parça halinde ACCA adresinizden 02.07.2025 15:19:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('665038ea-308a-4199-84dc-6ccd69373211','4917612343333','Sayın HAKAN AKDAĞ, 412418230 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412418230\n\nDear HAKAN AKDAĞ, your shipment with 412418230 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412418230\n\nBICARGO','1','f0b553df-a781-4ccd-a273-f9c311927595',NULL),
('6654f502-430e-4f11-b7c9-1e2231027c5f','905454259202','SEVCAN SALİ adlı müşterinizin 478863315 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('665c274b-e03b-4d8c-af59-1bd1e87fec69','905075277637','Sayın yetkili; GÜLÜZAR KECKİN adlı müşterinize 745276257 nolu gönderinizin KİNG PLATİN BAZA SET 160LIK  ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:20:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('666149b3-20df-4aa4-9347-54d1d7be4371','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin 90*190 CM MASA ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 14:19:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('6661d11b-2a0c-42bc-ab94-ba9a2ebca98f','905461661672','ZAFER SARIDAŞ(K) adlı müşterinizin 644717952 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('666cc3c2-8eb3-4b6a-ba73-86908bca6ea7','905325000478','NİZAMETTİN adlı müşterinizin 412280381 nolu gönderisi 54 parça halinde yola çıkmıştır.','1','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('666ce78d-e97e-4674-bf97-34907229f658','905349208933','Sayın yetkili; RÜVEYDA ŞAHİN adlı müşterinize 12771217 nolu gönderinizin PUF MODUL KASASI ürünü 1 parça halinde Fatura adresinizden 20.08.2025 14:50:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('6672a38c-3bdb-4b27-b0de-4b70f10c1bd4','436605273426','675885408 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2101 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675885408\n\nYour shipment with the number 675885408 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2101. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675885408\n\nBICARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('6672c264-2bbb-4932-acaf-ab5eda5bb3f9','4915255838893','478161304 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1269 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478161304\n\nYour shipment with the number 478161304 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1269. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478161304\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('66833e49-6f1a-4cde-8172-355fe6119e3b','905335708965','ALİ ŞİMŞEK adlı müşterinizin 735736030 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL),
('6683b063-f8cd-4792-8a05-181431677333','905079358213','SEMRA HAKAN KABİR adlı müşterinizin 745409977 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('6684e264-bd1a-4842-955a-609d43918d75','4915773625355','Sayın MERVE DEĞİRMENCİ, 371665826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665826\n\nDear MERVE DEĞİRMENCİ, your shipment with 371665826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371665826\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('66889242-cda2-4610-9260-498f2dd66a2a','905313340045','Sayın yetkili; MARİGLEN SHKEMBİ adlı müşterinize 437431907 nolu gönderinizin sandalye  ürünü 5 parça halinde ard sandalye adresinizden 09.05.2025 19:19:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('6688b722-7ca0-4a28-953e-d696c20c65c5','905331602195','Sayın yetkili; AYEOLOWO SEKİNAT adlı müşterinize 221433158 nolu gönderinizin 90x190 nevada ceviz masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 20.05.2025 17:42:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('668c2843-2724-472e-bf1f-c5ebb228c268','905461661672','Sayın yetkili; KERİM ŞENTÜRK adlı müşterinize 644966461 nolu gönderinizin MASA VE ORTA SEHPA ürünü 3 parça halinde Masami Mobilya adresinizden 07.05.2025 14:47:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('668d64f7-654a-4234-96fc-3cf2ee9fef85','491717001300','Sayın SERKAN DAĞ , 982432822 nolu gönderiniz 8504 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982432822\n\nDear SERKAN DAĞ , your shipment with 982432822 was delivered to you with the delivery code 8504. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982432822\n\n\nBICARGO','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('66962b8e-5e72-4722-8b7d-afa77a2f0954','905313340045','ALİ KURUÇAM adlı müşterinizin 437707209 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('66994122-41df-4dc3-b71c-3fa36c6da5be','4915901967333','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('669d2043-0221-4649-bb8a-6971abbc0714','4917661518920','Sayın ALPER ALBAYRAK, 371400028 nolu gönderiniz 2731 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371400028\n\nDear ALPER ALBAYRAK, your shipment with 371400028 was delivered to you with the delivery code 2731. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371400028\n\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('669dcea0-a1b7-48ef-8841-89e0a55be7e5','330235750785','İletişim \n					Şöför Uğur Acar +905424435917','2','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('66a1ece4-bd7c-46d2-b29d-1d0661e0659f','905079358213','Sayın yetkili; SÜVEYLA TARHAN adlı müşterinize 745906539 nolu gönderinizin DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 24.09.2025 13:45:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('66a2efc0-2704-4934-8911-ebd7442173d9','330769082765','Sayın SAMPAİ CATHERİNE, 982118676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982118676\n\nDear SAMPAİ CATHERİNE, your shipment with 982118676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982118676\n\nBICARGO','1','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL),
('66a46fc7-2f7f-42d4-a429-ee6e0d1f9341','905331602195','Sayın yetkili; HATEM  adlı müşterinize 221341784 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde Fatura adresinizden 18.12.2024 16:28:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('66a785d6-490d-45da-9e4f-94762d946953','491734523187','Sayın GHAZAL TARIK İLHAN, 644826740 nolu gönderiniz 9310 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644826740\n\nDear GHAZAL TARIK İLHAN, your shipment with 644826740 was delivered to you with the delivery code 9310. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644826740\n\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('66ad0639-ab89-41bd-a39c-20e3b02ce8cc','905304259202','MUSTAFA ÇELİK adlı müşterinizin 478945094 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('66b069ee-a185-4244-8ad9-e1bd5ea8e372','33652723801','Sayın AYNUR ÖZDEMİR , 91062607 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91062607\n\nDear AYNUR ÖZDEMİR , your shipment with 91062607 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91062607\n\nBICARGO','1','2791c56f-7265-461d-b1bf-4a378276ed53',NULL),
('66b29c05-a996-4517-934b-00f86e15c6f2','01737526626','613499620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613499620\n\nYour shipment with the number 613499620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613499620\n\nBICARGO','2','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('66b3a45c-e9e1-4a16-be69-8821946659b0','905313340045','KAAN ALTINSOY adlı müşterinizin 437591433 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('66b3d114-66a1-4f2c-aef8-9a644d71c557','33771771223','910594430 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10046 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910594430\n\nYour shipment with the number 910594430 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10046. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910594430\n\nBICARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('66b57093-3084-4de2-817a-970c915c4c10','33634695698','Sayın KENAN ACER		, 910684336 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910684336\n\nDear KENAN ACER		, your shipment with 910684336 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910684336\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('66b5dccf-c3c2-400c-afe5-2141c7da82d5','33662698743','Sayın LESLİE SEROR , 22144793 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22144793\n\nDear LESLİE SEROR , your shipment with 22144793 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22144793\n\nBICARGO','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('66b79548-c404-4338-94e9-bba7794cad96','491786878785','Sayın ÜMMÜGÜLSÜM KARAKUŞ SSH , 745967323 nolu gönderiniz 5591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745967323\n\nDear ÜMMÜGÜLSÜM KARAKUŞ SSH , your shipment with 745967323 was delivered to you with the delivery code 5591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745967323\n\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('66b795e2-ea87-431e-a3ce-22f21b5c1b9e','905079358213','Sayın yetkili; MURAT ERKUL SSH adlı müşterinize 745898734 nolu gönderinizin SSH KOLTUK KASASI  ürünü 1 parça halinde VAAV adresinizden 28.05.2025 15:19:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('66b9aaa1-0447-4a2b-82a4-1cce438d9767','905335708965','PİPET adlı müşterinizin 248284003 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','acc18069-a61f-4cc1-b29c-0024e5408038',NULL),
('66bb82f3-c0ac-4777-bc62-a6af3acac06a','4915560755375','Sayın EMRE YILMAZ, 745884226 nolu gönderiniz 9963 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745884226\n\nDear EMRE YILMAZ, your shipment with 745884226 was delivered to you with the delivery code 9963. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745884226\n\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('66c0ba2c-4151-4f62-b953-40c838e6db6c','905461661672','Sayın yetkili; GÜLŞEN YİRMİBEŞOĞLU adlı müşterinize 644563405 nolu gönderinizin MASA ürünü 2 parça halinde Masami Mobilya adresinizden 02.10.2025 12:51:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526de5bb-5478-4ac9-aaab-26c962aa787b',NULL),
('66c58a9a-9844-4cd6-a4ea-037229aec85e','905332942204','SARAH KLEİN adlı müşterinizin 505153730 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('66c677d7-c540-4125-b0e7-f15fd16efb6e','905461661672','RAMAZAN HAVAÇEKEN(K) adlı müşterinizin 644879098 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('66cfb53e-5ebc-4c96-9106-718c81704951','905318109098','ELİF KELEŞ adlı müşterinizin 455460659 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL),
('66d0a193-0da5-4e40-9433-adcfdd604785','436602341063','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('66d0fe1c-5eeb-4ebc-98f4-1797128548da','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde mobilyalar  adresinizden 17.10.2025 16:04:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('66d2b14b-978f-48da-b50c-2c918e26a8ad','491621337891','Sayın NURİ ÖZKAN, 347986383 nolu gönderiniz 1636 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/347986383\n\nDear NURİ ÖZKAN, your shipment with 347986383 was delivered to you with the delivery code 1636. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/347986383\n\n\nBICARGO','1','792fcb83-3583-425f-8515-80f98a19c7f3',NULL),
('66d34fee-60b9-42e1-818e-9a3b642d5ada','491632506225','817121694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7842 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817121694\n\nYour shipment with the number 817121694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7842. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817121694\n\nBICARGO','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('66d54b05-e0ac-4224-854c-95f1b6414ebc','491749753629','Sayın KADİR ÖZCAN , 428159880 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428159880\n\nDear KADİR ÖZCAN , your shipment with 428159880 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428159880\n\nBICARGO','1','1bda9f39-f27b-4736-be6f-b3d3489888ad',NULL),
('66d5b6cb-5b86-474e-a49b-6a386055a9ec','4917672523276','İLETİŞİM\n					Furkan şöför = +905078826436','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('66d85e5b-7672-4824-8425-4cc910dcc781','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437786734 nolu gönderinizin Tv ünitesi ürünü 2 parça halinde bicargo depo adresinizden 14.08.2025 10:56:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('66dd273e-fdba-4329-9f5c-61becb295d98','33781949735','Sayın RAMAZAN SARIKAYA, 7347113 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7347113\n\nDear RAMAZAN SARIKAYA, your shipment with 7347113 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/7347113\n\nBICARGO','1',NULL,NULL),
('66e48cbe-462a-41ff-ab95-569d1b4da9ff','491726827478','598250504 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10836 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598250504\n\nYour shipment with the number 598250504 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10836. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598250504\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('66e4f3d6-77de-4ea9-b0e0-368b53541e99','33643419084','011804405 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3690 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011804405\n\nYour shipment with the number 011804405 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3690. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011804405\n\nBICARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('66e87806-878d-4dc6-b85e-dcd1c0b53ec8','905331602195','HASAN BİLECEN (SSH) adlı müşterinizin 221996027 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('66ea21b6-2e7f-465a-9ec9-7203cf3559d2','4917631212460','Sayın SEDA KURTDİNÇEL, 745431846 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745431846\n\nDear SEDA KURTDİNÇEL, your shipment with 745431846 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745431846\n\nBICARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('66eab15d-73c6-48d2-964c-7b9e2d0ccf16','4915738159369','Sayın YILDIRIM  ASLAN , 614766744 nolu gönderiniz 4298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614766744\n\nDear YILDIRIM  ASLAN , your shipment with 614766744 was delivered to you with the delivery code 4298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614766744\n\n\nBICARGO','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('66ecdce6-92ab-4166-ae54-3635ba261178','33603603944','44937818 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44937818\n\nYour shipment with the number 44937818 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44937818\n\nBICARGO','1',NULL,NULL),
('66ed9988-b760-4df3-b2df-f122c5a52eb1','905079358213','SEZAİ TUNÇ adlı müşterinizin 745850370 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b384d0a2-c272-4375-a026-2cf2910078c9',NULL),
('66f028d1-d610-4ddc-9275-a7b054e38cf3','436601909208','Sayın AHMET YILDIRIM, 334206952 nolu gönderiniz 8658 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/334206952\n\nDear AHMET YILDIRIM, your shipment with 334206952 was delivered to you with the delivery code 8658. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/334206952\n\n\nBICARGO','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('66f0bd4c-62c8-4c53-9906-672099ecf5d0','905517075149','Sayın yetkili; BİNALİ BOZBAS adlı müşterinize 478790178 nolu gönderinizin Ayak papucu ürünü 1 parça halinde PUFFİN adresinizden 30.06.2025 16:12:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0dca27d-4e30-4743-8f98-0a016e2624ec',NULL),
('66f0daa7-1777-400d-b7a6-1bf7f08ec610','905350617509','Sayın yetkili; DENİZ AKGÜMÜS  adlı müşterinize 613601743 nolu gönderinizin Sandalye ürünü 4 parça halinde Mfoursandalye adresinizden 22.07.2025 14:32:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('66f3a433-c2a5-4dfe-ad74-d6adb5dddfcb','905075277637','ELMAS KAYA adlı müşterinizin 745411152 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('66f5fde6-dfd4-44a2-affa-9e8dc62430c4','905079358213','DAVUT YILDIRIM adlı müşterinizin 745991438 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL),
('66f9babd-1340-49f9-83b3-e7ab7aec90ae','9053259981980','Sayın yetkili; NECMETTİN BEYAZİT adlı müşterinize 614601595 nolu gönderinizin BAMBİ BLACKSAND BASLIK 150 CM,BAMBİ BLACKSAND BAZA 150x200 VE BAMBİ BLACKSAND YATAK 150x200 ürünü 4 parça halinde Fatura adresinizden 22.10.2025 12:05:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6ec88ca1-f52a-40e6-9c14-f95cfc64427a',NULL),
('670168e1-c564-4463-9764-8c78f61b86cc','31619008872','745531225 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4571 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745531225\n\nYour shipment with the number 745531225 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4571. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745531225\n\nBICARGO','1','e7849612-fcb8-4368-bba8-194c1abdf919',NULL),
('67057cfa-4424-4270-8722-fc2debe5b5ec','33786539844','Sayın AYDIN İLKNUR, 745545386 nolu gönderiniz 9887 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745545386\n\nDear AYDIN İLKNUR, your shipment with 745545386 was delivered to you with the delivery code 9887. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745545386\n\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('67098245-9ad6-44ba-9f8c-7e44cea5cac9','491781356131','478118994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1467 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478118994\n\nYour shipment with the number 478118994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1467. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478118994\n\nBICARGO','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('670a724e-ae0e-4362-9621-f6e71bcedd36','4917670325071','Sayın ESRA BALTACI, 644711459 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644711459\n\nDear ESRA BALTACI, your shipment with 644711459 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644711459\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('670b6dc1-2a9f-4d43-8d35-072f8a15e9a1','4915785625950','Sayın EMRE KIZIL SSH, 011222896 nolu gönderiniz 7124 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011222896\n\nDear EMRE KIZIL SSH, your shipment with 011222896 was delivered to you with the delivery code 7124. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011222896\n\n\nBICARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('670c59c5-4d65-448c-9742-7ddd9363ded1','4915756457295','Sayın FATMA BİLGİN, 745353139 nolu gönderiniz 9124 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745353139\n\nDear FATMA BİLGİN, your shipment with 745353139 was delivered to you with the delivery code 9124. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745353139\n\n\nBICARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('670cd907-f5a2-4d75-9732-c4d68c8c879a','31641506768','644631223 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9239 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644631223\n\nYour shipment with the number 644631223 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9239. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644631223\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('670d0ee8-a728-4689-b00d-701a8b27b1f7','4915112339457','613910788 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1195 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613910788\n\nYour shipment with the number 613910788 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1195. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613910788\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('670e92d6-a43d-430c-a369-cf924c625cb3','33640248237','Sayın ÖZGÜR BAY, 47833977 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47833977\n\nDear ÖZGÜR BAY, your shipment with 47833977 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47833977\n\nBICARGO','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('6713b980-2aee-45b2-bc42-50ecb1030bda','905336367828','MASUD SALAH adlı müşterinizin 982320208 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL),
('67173632-b359-48cd-9de0-233b05faa99b','905461661672','Sayın yetkili; ESRA MAT(K) adlı müşterinize 644484322 nolu gönderinizin traverten ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 11.09.2025 13:27:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('6718597f-f32a-48ae-9010-3a79ec0a832f','4915758509876','765729280 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7196 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765729280\n\nYour shipment with the number 765729280 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7196. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765729280\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('67199154-393b-40a4-9e7c-e6dadfcd826f','905335511664','Sayın yetkili; ORHAN GAZİ ÇEKİCİ adlı müşterinize 371699257 nolu gönderinizin köşe takımı ürünü 5 parça halinde Elitis Home adresinizden 28.04.2025 16:58:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('671d5276-1df1-4a3d-9ae0-67cb83deb5f0','905461661672','Sayın yetkili; GÜLAY FASOLD adlı müşterinize 644820551 nolu gönderinizin MASA 3 ürünü 3 parça halinde Masami Mobilya adresinizden 20.05.2025 17:25:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('671ece3b-906f-4080-8107-cd658b945441','905079358213','MADAME COURTOIS IMANE adlı müşterinizin 745987581 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('6721d969-239f-4a30-81db-a6521cdd6485','905304259202','VOLKAN ÖZKAN adlı müşterinizin 478741910 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d14c8be1-206d-44a7-97dc-bb0f2ac15937',NULL),
('6722ba13-67ea-4cf7-b428-c22264ececdc','905335511664','Sayın yetkili; MERYEM BULAK adlı müşterinize 371408514 nolu gönderinizin masa + sehpa ürünü 5 parça halinde SM Tasarım adresinizden 01.07.2025 13:27:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('672531d8-0d76-4895-8a56-cb34c22e9099','431728611102','DRİVER NUMBER\n					905541100849','2','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('67283e43-9c17-4e88-ac84-679953fdd616','905356395415','MURAT adlı müşterinizin 163229349 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6d8023fb-7e68-4b37-8709-816c5519380e',NULL),
('67284fa9-e441-4d19-8535-a53dd64f6bd6','905517075149','CAN KUL  adlı müşterinizin 478161304 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('6737a35d-d5cd-4508-a478-cb11104b2756','491751501286','Sayın MEHMET SÜZEN , 98238273 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98238273\n\nDear MEHMET SÜZEN , your shipment with 98238273 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98238273\n\nBICARGO','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('673a4724-d9bf-4047-bf97-e6d85f39e6a1','3434574663476434','Sayın ENES, 412746738 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412746738\n\nDear ENES, your shipment with 412746738 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412746738\n\nBICARGO','2','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL),
('67408657-3417-47ab-85cf-1b63d7b9e2e3','4379259769999','808790233 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808790233\n\nYour shipment with the number 808790233 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808790233\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('6743e5ed-fb8d-470d-8491-4c4c568d56d3','33641568371','976819499 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9152 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976819499\n\nYour shipment with the number 976819499 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9152. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976819499\n\nBICARGO','1','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL),
('67453e2f-bde6-4c42-b172-ca5dbc77ae17','4917620210271','22134117 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7968 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22134117\n\nYour shipment with the number 22134117 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7968. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22134117\n\nBICARGO','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('6747a89a-6011-4a98-9b96-03ee836d80a2','491728552763','Sayın YUSUF AVCI, 817915882 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817915882\n\nDear YUSUF AVCI, your shipment with 817915882 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817915882\n\nBICARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('67481d3e-ebf3-4184-be39-6281bc90eeb8','905059175469','MEHMET KILINÇ adlı müşterinizin 428173598 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('6748b66d-c4f4-436a-9e00-08331ec0a576','905313340045','SATİ CENGE adlı müşterinizin 437427529 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('674d7dba-30a1-44bc-8572-00bd8bc6495c','9054439559150','OSMAN SATİCİ adlı müşterinizin 614536111 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('674e21be-130c-4f4a-8e74-784ab748df07','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin MERMER DESEN MASA + İKİLİ SEHPA  ürünü 5 parça halinde GÜMÜŞ MASA adresinizden 12.05.2025 16:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('67514827-87bd-4a45-818a-015e06acb0bc','491741853822','745536465 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745536465\n\nYour shipment with the number 745536465 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745536465\n\nBICARGO','1','045d42d0-3ff6-4046-b437-9e4080f515c5',NULL),
('6751b78c-c4c0-47f0-940a-ae753727f02f','3165428312','Sayın ESRA TEZCAN, 478778231 nolu gönderiniz 8287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478778231\n\nDear ESRA TEZCAN, your shipment with 478778231 was delivered to you with the delivery code 8287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478778231\n\n\nBICARGO','2','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL),
('6751cbb9-f7d0-4b0b-a038-22a6fa7be23c','4915751330310','Sayın ADEM BÜYÜK, 371913094 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371913094\n\nDear ADEM BÜYÜK, your shipment with 371913094 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371913094\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('67528746-31c9-42fe-9bd2-85177c0e76e0','3445353423553535','248217260 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248217260\n\nYour shipment with the number 248217260 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248217260\n\nBICARGO','2','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('67567db5-b98b-4c70-935d-75037aad2c98','32495328608','644377995 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377995\n\nYour shipment with the number 644377995 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644377995\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('675d65ca-fcbf-40d7-b88b-00308b0ef68b','905331602195','FEHMİ TÜRK adlı müşterinizin 221570854 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('675dbb1c-1208-4937-bbd8-03e4a17e177f','905304259202','AHMET BAYDAR adlı müşterinizin 478943291 nolu gönderisi 70 parça halinde yola çıkmıştır.','1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL),
('67610d21-bca5-40cc-89d1-e146e95ab723','436763404107','DRİVER NUMBER\n					905541100849','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('6763f077-28eb-4717-beb3-f7a1eb3443f8','491778339684','Sayın NUR YILDIRIM, 745278745 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745278745\n\nDear NUR YILDIRIM, your shipment with 745278745 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745278745\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('676a52cd-5734-45c9-b163-89a721b544cb','905313340045','Sayın yetkili; METİN EROL adlı müşterinize 437306380 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 21.08.2025 14:01:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('676d10e0-bc4c-49a3-a8a6-e5b283fbcecd','49913127367','223210999 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7737 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223210999\n\nYour shipment with the number 223210999 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7737. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223210999\n\nBICARGO','2','04757da4-5689-4b28-8662-727fabf44027',NULL),
('676e98d2-856f-4ce0-b191-8dbda31231e0','33652599311','Sayın HATİCE ÖZTÜRK, 221621737 nolu gönderiniz 2857 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221621737\n\nDear HATİCE ÖZTÜRK, your shipment with 221621737 was delivered to you with the delivery code 2857. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221621737\n\n\nBICARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('676edbad-dd1d-4a10-9843-49e094712e67','905454259202','Sayın yetkili; KEMAL ETKER  adlı müşterinize 47876427 nolu gönderinizin dolap parçaları ürünü 2 parça halinde AREA adresinizden 16.04.2025 16:27:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('6780f961-e3db-41f4-be97-d08042c6a4b2','491737075108','Sayın ELİZA KADRİ, 786895232 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786895232\n\nDear ELİZA KADRİ, your shipment with 786895232 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786895232\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('67817e12-3939-4e70-b11d-ca4d5b9cdb56','491708511252','Sayın MELİKE BAYINDIR, 371398805 nolu gönderiniz 4547 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371398805\n\nDear MELİKE BAYINDIR, your shipment with 371398805 was delivered to you with the delivery code 4547. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371398805\n\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('6782c5a4-18fc-42ea-a8f3-69cde4f1bb1c','436601407495','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('67833598-6cf8-4e1c-b4f5-8592bac1c9f2','905075277637','Sayın yetkili; SERHAT ÇAÇAN adlı müşterinize 745303876 nolu gönderinizin RAMS YAN SEHPA  ürünü 1 parça halinde Fatura adresinizden 03.02.2025 20:55:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('6783f42a-b956-42e8-9e10-c07f5ff9050c','333651501156','478906000 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478906000\n\nYour shipment with the number 478906000 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478906000\n\nBICARGO','2','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('67849141-be7f-4294-b164-1fbc6176ab96','4917670742870','Sayın (GÜLŞEN KARATAŞ) SSH , 644423895 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644423895\n\nDear (GÜLŞEN KARATAŞ) SSH , your shipment with 644423895 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644423895\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('67876dea-aba5-42f0-aa71-73f5302a09cc','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin KARYOLA ürünü 5 parça halinde PARLAK EV MOBİLYA adresinizden 24.09.2025 15:55:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('67898c90-1380-40e3-856c-a80e16d6f777','905350617509','Sayın yetkili; LAURA SCHMİTT adlı müşterinize 613721320 nolu gönderinizin Masa ürünü 4 parça halinde İlyas Masa adresinizden 06.10.2025 10:31:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','64f79831-49d1-48f5-a6e6-698737009565',NULL),
('67953dbd-79e0-494b-b3e9-e34c73d16fb8','4917680857659','613813844 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6120 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613813844\n\nYour shipment with the number 613813844 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6120. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613813844\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('6795df7f-ef16-4838-bc95-ae4987142d39','905356503956',' adlı müşterinizin 027339599 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','368245d4-9f2d-4657-8e21-783fb08ea560',NULL),
('67963747-b52c-4acc-8be2-c6d759acdd31','905075277637','ALİ ÖZDEN  adlı müşterinizin 745991962 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('679ac55e-75aa-4a73-8996-20af05ddbc18','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin şifonyer ürünü 1 parça halinde Fatura adresinizden 25.05.2025 13:53:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('679e1a9d-3f16-4b23-b823-0f255f000c7b','905079358213','MÜSLÜM MERDANE adlı müşterinizin 74520622 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('67a86372-7a84-4b20-8b52-ad6030a5a273','905350617509','Sayın yetkili; DİLBERAY MELLO adlı müşterinize 613199072 nolu gönderinizin Masa ürünü 1 parça halinde İlyas Masa adresinizden 24.06.2025 11:33:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('67a9bc37-57c5-4ce1-abc9-46dbad81580d','905079358213','ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinizin 745967323 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('67aa8110-84de-48a7-81bf-862d3a701a6e','33783164469','Sayın MAHMUT KAHRAMAN, 412109820 nolu gönderiniz 3861 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412109820\n\nDear MAHMUT KAHRAMAN, your shipment with 412109820 was delivered to you with the delivery code 3861. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412109820\n\n\nBICARGO','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('67aabb6d-e6dd-451c-91a0-fcb917401b8c','4917655249340','Sayın ÜLKÜ AKIL, 61480625 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61480625\n\nDear ÜLKÜ AKIL, your shipment with 61480625 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61480625\n\nBICARGO','1','f67e7508-1afa-4901-b396-faae504c1726',NULL),
('67af0d4e-b2cc-40a8-bca4-794cde9aa7e5','436609250606','515129438 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515129438\n\nYour shipment with the number 515129438 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515129438\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('67b02887-edb6-4fe6-a75d-45f76f2f4243','905304259202','Sayın yetkili; FERDİ KURT adlı müşterinize 478996959 nolu gönderinizin 180x200 bazalı karyola ürünü 5 parça halinde şahinler ahşap adresinizden 12.05.2025 15:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('67bbf0d8-264a-4e0a-82da-383f2d7f1520','905335511664','SİNEM ULUSOY adlı müşterinizin 37183091 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('67be83d9-ef5b-46fc-ba36-f84e23db8765','905079358213','ZİYA ALTIN adlı müşterinizin 745390643 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL),
('67bf2f25-5b89-471b-bd88-12619df9c842','4917645789684','Sayın YASEMİN YAŞA, 745818939 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745818939\n\nDear YASEMİN YAŞA, your shipment with 745818939 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745818939\n\nBICARGO','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('67c1e40a-1485-44e3-ab8c-97c7ad1b39fa','905075277637','YUSUF YILMAZ adlı müşterinizin 745481313 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('67c3012c-3e0d-4e31-8ff5-f5cc24a8416f','4915737582950','455165840 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455165840\n\nYour shipment with the number 455165840 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455165840\n\nBICARGO','1','567de155-b820-4225-ac37-23f88ed0500c',NULL),
('67c65d90-250f-4780-9b4e-0521f2830294','905335511664','Sayın yetkili; MURAT TEKİN adlı müşterinize 371437952 nolu gönderinizin seramik masa ürünü 3 parça halinde Seramik Masa Üreticisi adresinizden 28.04.2025 15:06:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('67c9230c-90da-478b-92f1-57a35d1c5f87','905335511664','NESLİHAN DEMİR adlı müşterinizin 371586742 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('67cd24a9-1c59-419f-81b6-86af005d5d71','32696805834','Sayın ANTEP SOFRASI, 85814402 nolu gönderiniz 8871 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/85814402\n\nDear ANTEP SOFRASI, your shipment with 85814402 was delivered to you with the delivery code 8871. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/85814402\n\n\nBICARGO','2','c660ccad-df7b-45ce-a388-95120ceea510',NULL),
('67d0bf02-ca42-4bab-a52a-550fb9f4779d','905079047428','Arif ağca adlı müşterinizin 449837324 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','6be99b5d-41a3-4b9e-a67f-f951b7f620ed',NULL),
('67d309b5-b365-4f90-810f-c449ead367b9','4917632257124','Sayın KADİR SÜLÜN, 428696149 nolu gönderiniz 4780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428696149\n\nDear KADİR SÜLÜN, your shipment with 428696149 was delivered to you with the delivery code 4780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428696149\n\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('67dd4f86-bbdd-45c9-8865-2ccec6955bb1','31611378787','Sayın VEYSEL POLAT, 221362176 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221362176\n\nDear VEYSEL POLAT, your shipment with 221362176 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221362176\n\nBICARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('67ddf966-dd9a-484b-b551-b592e13cce21','34698865709','Sayın FAZIL İSPANYA, 42892944 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42892944\n\nDear FAZIL İSPANYA, your shipment with 42892944 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42892944\n\nBICARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('67dfaa24-3046-44df-9139-d6d7cf8489e4','5444482458','319585140 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3350 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319585140\n\nYour shipment with the number 319585140 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3350. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319585140\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('67e19b66-f074-43f0-b157-badddf43d488','4917630550743','Sayın NESLİHAN DEMİR, 371586742 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371586742\n\nDear NESLİHAN DEMİR, your shipment with 371586742 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371586742\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('67e49c75-a308-41f1-93e7-3fc94384df89','33656867217','Sayın ÜNAL KÖR , 745660870 nolu gönderiniz 9512 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745660870\n\nDear ÜNAL KÖR , your shipment with 745660870 was delivered to you with the delivery code 9512. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745660870\n\n\nBICARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('67e65285-9a0a-426c-82c2-ad849e2cf102','905365908694','DİE FABRİK adlı müşterinizin 223823107 nolu gönderisi 255 parça halinde yola çıkmıştır.','1','12f34352-3245-4b1c-af57-1762c30010cd',NULL),
('67e7b581-bc70-4e78-ac9f-d758aa55064c','905331602195','Sayın yetkili; EMİLY RAMİREZ adlı müşterinize 221897784 nolu gönderinizin Natura sandalye siyah ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:41:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('67e81ff0-a09a-425b-97f8-a475b08df9bd','491791902931','Sayın MOWO, 412846685 nolu gönderiniz 7931 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412846685\n\nDear MOWO, your shipment with 412846685 was delivered to you with the delivery code 7931. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412846685\n\n\nBICARGO','1','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('67ee5cad-db4c-4723-b53f-7b17d5c94c65','905325000478','BRÜHL CAMİSİ adlı müşterinizin 41283002 nolu gönderisi 32 parça halinde yola çıkmıştır.','1','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL),
('67ef578a-9d93-4502-b2f4-dc1ccf535b9c','4915157638110','Sayın ALİŞAN CERCİ(K), 644847294 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644847294\n\nDear ALİŞAN CERCİ(K), your shipment with 644847294 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644847294\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('67f126e9-729e-49d7-8547-2cb1f7d2f311','436607735988','DRİVER\n					ADNAN\n+905354622027','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('67f6ced1-ac43-430c-8530-941b7ecfb369','491777474184','Sayın HASAN KAYA, 64413417 nolu gönderiniz 6500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64413417\n\nDear HASAN KAYA, your shipment with 64413417 was delivered to you with the delivery code 6500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64413417\n\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('67fcf106-02f4-45e3-bafa-1429acea7ba6','905454259202','Sayın yetkili; EJDER SOLAK adlı müşterinize 47838085 nolu gönderinizin kumaş ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.02.2025 17:35:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('6811388e-0b28-4483-b35d-e343e246b79b','905335708965','ERKAN KARAKUŞ  adlı müşterinizin 248614567 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL),
('68119d4c-fa1b-4646-a983-cea09e04d22d','905461661672','Sayın yetkili; SANİ ALAJBEGOVİC adlı müşterinize 644344492 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 03.07.2025 16:38:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('68124ec3-989a-4984-b03d-4d7dadb0e256','4915757838054','Sayın FATMA ALTAY, 745871666 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745871666\n\nDear FATMA ALTAY, your shipment with 745871666 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745871666\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('6816344a-6d40-4356-8577-16323d287431','905325000478','YASİN DOVENSE adlı müşterinizin 41283852 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL),
('68188d22-253a-41aa-a728-35b3d2053b3e','33769997691','Sayın KENAN ACER		, 910684336 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910684336\n\nDear KENAN ACER		, your shipment with 910684336 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910684336\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('6818b9a7-92b5-43ab-9a7c-0558c541a677','4915204346659','Sayın (K)SİNEM İDRİZAJ , 644880161 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644880161\n\nDear (K)SİNEM İDRİZAJ , your shipment with 644880161 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644880161\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('681c297d-7b12-48fa-b683-69cbccdb106d','491721561971','Sayın MERT GÖKMEN, 644796086 nolu gönderiniz 7896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644796086\n\nDear MERT GÖKMEN, your shipment with 644796086 was delivered to you with the delivery code 7896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644796086\n\n\nBICARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('68227739-7619-4756-a692-34074bfc50e4','905304259202','Sayın yetkili; ÖMER KARAN adlı müşterinize 478165569 nolu gönderinizin KÖŞE TAKIMI ürünü 7 parça halinde PUFFİN adresinizden 08.05.2025 14:56:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('68278f02-4d2d-4748-8d2f-f4c5077e37ea','9054439559150','Sayın yetkili; MEHMET AKDAĞ adlı müşterinize 614666366 nolu gönderinizin BAMBİ ELARIN DOGAL UYKU PAKETI CK,BAMBİ MAGNASAND 160*200 YATAK,BAMBİ VANILLA BASLIK 160 CM R:BK-179 VANILLA VE BAMBİ VANILLA LOOP HVZ BAZA 160x200 R:BK-179 VANILLA ürünü 4 parça halinde Fatura adresinizden 24.09.2025 12:54:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('6827aa65-73e6-4fc6-8d4a-f3df7949bc2a','905350617509','Sayın yetkili; KHALED SEMMO  adlı müşterinize 613175888 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde Pablo koltuk adresinizden 18.08.2025 14:38:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('682dc338-6868-4693-8197-2d394250a537','905079358213','Sayın yetkili; AYHAN İÇEN adlı müşterinize 745813483 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü 3 parça halinde Fatura adresinizden 09.07.2025 17:29:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('682f90e8-d839-4bd5-a5ad-248ccc1ec140','905461661672','Sayın yetkili; MELEK KAYMAZ(K) adlı müşterinize 644547865 nolu gönderinizin Ayak ürünü 3 parça halinde Masami Mobilya adresinizden 23.09.2025 15:28:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('6837b8e1-36a2-4d76-8198-a7675d91856f','905331602195','Sayın yetkili; ASHLEY BLANCO RODRİGEZ adlı müşterinize 221417545 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde MERT SANDALYE  adresinizden 10.03.2025 15:09:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('683d537d-254a-4285-aeb3-d95ae30e2096','905336367828','Sayın yetkili; SAİDATİ AHMED  adlı müşterinize 98274489 nolu gönderinizin SANDALYE  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 09.01.2025 17:00:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('684c1ea6-ae95-42ed-8e01-c923adcb7166','491794359151','517619393 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517619393\n\nYour shipment with the number 517619393 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517619393\n\nBICARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('684c4616-b5b3-4956-8568-2be8bcacda91','436769706003','437713339 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6517 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437713339\n\nYour shipment with the number 437713339 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6517. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437713339\n\nBICARGO','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('68558bf7-7a9a-4ac0-9c4c-14fc1efa258c','905335708965','GİZEM ÖZKAN adlı müşterinizin 73589256 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('6859f5a4-7ef4-4a65-9e4b-41e71b82e7a9','905304259202','Sayın yetkili; AHMET GÜNEŞ adlı müşterinize 478285861 nolu gönderinizin köşe modül ssh ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.04.2025 17:53:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('685d78e7-7793-4dff-b3ad-38607de26ae4','905517075149','Sayın yetkili; BÜNYAMİN ILIKSOY adlı müşterinize 478668622 nolu gönderinizin 3+3+1+1 KOLTUK ürünü 4 parça halinde Fatura adresinizden 25.09.2025 18:32:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('685f0176-0bdd-4c82-baba-a70a26843b94','41763221453','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('685f1610-5c3c-4411-9447-227d8c3e48f6','905451571652','YUNUS EMRE ÖZAGİR adlı müşterinizin 531988506 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('685f55bd-c8a0-4f3d-8e5f-751824564858','905306071261','Sayın yetkili; DİLEK KHABİL adlı müşterinize 765729280 nolu gönderinizin 4+2 Cupra dolap  ürünü 13 parça halinde Odaon mobilya  adresinizden 11.08.2025 15:37:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('68644c0d-d328-48e2-9a3b-b595a9172c1c','31613006004','Sayın RAHİMİ, 449666503 nolu gönderiniz 1802 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449666503\n\nDear RAHİMİ, your shipment with 449666503 was delivered to you with the delivery code 1802. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449666503\n\n\nBICARGO','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('6865b17f-73ef-4071-a084-ca3daac5e385','905323540531','GÜRKAN DAĞ  adlı müşterinizin 904863225 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL),
('6865d589-d276-4079-a4ca-33db2916de86','491786733975','598387436 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598387436\n\nYour shipment with the number 598387436 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598387436\n\nBICARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('686af9d9-1ef4-4a51-aac2-90ad7faec6e0','491724221941','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('686b37e5-d6cd-40ca-9046-037ad531f68b','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin FAMİLY DELON  AYNALI SAATİ  ürünü 1 parça halinde Fatura adresinizden 19.09.2025 14:37:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('686c75a2-35b9-422d-a2fa-d4d39ef9af2a','905431026110','Sayın yetkili; TAYFUN COŞGUN adlı müşterinize 351519592 nolu gönderinizin köşe ürünü 5 parça halinde LENTA SOFA adresinizden 16.10.2025 11:14:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('686e4413-e0fd-495a-87f7-7fd5277af549','905304259202','AYŞE BAĞCI adlı müşterinizin 478365640 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('686f37fb-2a05-494c-b84f-870992a57e87','4901732611373','Sayın IVANA JURİC, 982728095 nolu gönderiniz 7899 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982728095\n\nDear IVANA JURİC, your shipment with 982728095 was delivered to you with the delivery code 7899. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982728095\n\n\nBICARGO','2','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL),
('686f7f3c-338d-463d-9fbe-ef7b422420a2','11111111111','412315808 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412315808\n\nYour shipment with the number 412315808 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412315808\n\nBICARGO','2','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('687544c3-0647-4662-88a9-a6773aea832f','491626393170','Sayın TUĞBA GÜLSEVEN SSH, 644860505 nolu gönderiniz 9913 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644860505\n\nDear TUĞBA GÜLSEVEN SSH, your shipment with 644860505 was delivered to you with the delivery code 9913. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644860505\n\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('68777385-edd7-4855-beb4-78cd32de8207','32466345026','Sayın DURSUN GÜNBEYİ, 501243340 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501243340\n\nDear DURSUN GÜNBEYİ, your shipment with 501243340 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501243340\n\nBICARGO','1','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL),
('6878e790-11fc-42f8-8867-2fea6dc7b062','905075277637','Sayın yetkili; SEDA KURTDİNÇEL adlı müşterinize 745431846 nolu gönderinizin BONNY KÖŞE KOLTUK  ürünü 4 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 04.08.2025 14:44:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('687a8fea-e25d-4340-8411-dcbc72f75483','905336367828','Sayın yetkili; jusuf mehmedi adlı müşterinize 982844191 nolu gönderinizin 160*200 yatak ürünü 1 parça halinde Marki baza  adresinizden 13.11.2024 10:26:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('68816645-349d-4c77-be64-79117389b3e1','491774279097','Sayın AYKUT KAYA, 371660448 nolu gönderiniz 8763 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371660448\n\nDear AYKUT KAYA, your shipment with 371660448 was delivered to you with the delivery code 8763. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371660448\n\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('68864864-1bf8-4322-8b15-c5061ea681f2','905331602195','Sayın yetkili; HURİYE SERBEST adlı müşterinize 221416180 nolu gönderinizin Traverten tv ünitesi  ürünü 2 parça halinde Fatura adresinizden 20.01.2025 12:00:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('68878df2-0767-4cec-84a9-904a27e4cf84','01729404068','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('6888f0c6-8b8f-410c-943d-603ec17b876d','491725785095','İletişim \n					Şöför Uğur Acar +905424435917','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('688bd869-06a4-4dea-8259-268cd22f6b96','41787614204','Sayın ÖMER KOLAT, 478593603 nolu gönderiniz 10034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478593603\n\nDear ÖMER KOLAT, your shipment with 478593603 was delivered to you with the delivery code 10034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478593603\n\n\nBICARGO','1','28745864-aae9-4957-9346-b61332e96fff',NULL),
('68903128-e41e-426e-b310-69b678d8de18','905301592882','Sayın yetkili; BERKAN AĞIRMAN adlı müşterinize 910899167 nolu gönderinizin Vegas Sandalye ürünü 3 parça halinde Fatura adresinizden 15.05.2025 11:36:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('6898b5a3-047b-4407-b566-62a51ed4957d','905335708965','VEFA ÇAĞLAR SÖNMEZ adlı müşterinizin 248746531 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL),
('689a122d-3239-4006-865c-15309dfa302e','4917674917141','Sayın AHMET GÜNEŞ, 478300434 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478300434\n\nDear AHMET GÜNEŞ, your shipment with 478300434 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478300434\n\nBICARGO','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('689ed964-0f2b-4923-95a5-e9a969bf4d8c','905331602195','Sayın yetkili; BETÜL YILDIZ adlı müşterinize 221811614 nolu gönderinizin 80 ve 60 çap Traverten sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 17.10.2025 14:34:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('68a000ba-030b-4a04-8ca7-36e75cae810b','905335511664','ELÇİN ÖZDEMİR adlı müşterinizin 371860514 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('68a37285-919e-48df-baa6-2cbd88d7541a','905421855834','Sayın yetkili; MESUL OLGUN adlı müşterinize 338607005 nolu gönderinizin Mostar üçlü koltuk ürünü 1 parça halinde Fatura adresinizden 17.03.2025 14:33:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('68a8c142-0ff9-413d-b242-d3623ea3eeb7','905325000478','Sayın yetkili; ABDULKADER TARRAB adlı müşterinize 412383870 nolu gönderinizin baza ürünü 1 parça halinde Fatura adresinizden 11.07.2025 11:25:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('68ad3a59-0ee2-4ab0-95aa-a0f54702dfae','905318109098','YILMAZ ÇELİK adlı müşterinizin 455160997 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','39bb85ad-efc0-4fc2-9377-e76f06d914ca',NULL),
('68aee6a7-a4c1-4e4f-aa48-7b6596d32a0a','33650178129','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('68aef8cb-ecc5-48eb-aa07-a1f1aeb778dc','4917635994280','Sayın KADİR ÖZCAN , 428360379 nolu gönderiniz 3639 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428360379\n\nDear KADİR ÖZCAN , your shipment with 428360379 was delivered to you with the delivery code 3639. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428360379\n\n\nBICARGO','1','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL),
('68b05a4a-3ba9-4d79-9ced-1f9b977fe62c','905069116877','Sayın yetkili; DANFA adlı müşterinize 817288476 nolu gönderinizin 2 kutu sandalye  ürünü 2 parça halinde Fatura adresinizden 02.10.2025 17:29:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('68b3e954-232f-49a6-9f4a-4b0f93320a20','905313340045','UFUK SANATÇI adlı müşterinizin 43783689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('68b3f1cf-275f-4fd2-bb00-afe8d31ab2e7','4915255996436','Sayın ÇİLEM KAYNI, 614508817 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614508817\n\nDear ÇİLEM KAYNI, your shipment with 614508817 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614508817\n\nBICARGO','1','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL),
('68bf5270-3666-4631-b875-4aa18d54a28d','491778682427','478662278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7673 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478662278\n\nYour shipment with the number 478662278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7673. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478662278\n\nBICARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('68c00e13-31ec-411a-ab82-a19bd831e70e','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Sandalye ürünü 3 parça halinde Lego Chair adresinizden 31.01.2025 15:40:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('68c3c8e4-f485-4755-bbcd-773206ff6641','32493467320','Sayın EMİLY RAMİREZ, 221897784 nolu gönderiniz 3372 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221897784\n\nDear EMİLY RAMİREZ, your shipment with 221897784 was delivered to you with the delivery code 3372. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221897784\n\n\nBICARGO','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('68c717a7-5946-4050-89f9-8b0e8fc676ce','33620525658','221164226 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5603 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221164226\n\nYour shipment with the number 221164226 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5603. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221164226\n\nBICARGO','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('68c8993a-9ef8-499c-b12f-3f2882326b9c','33626131875','745987581 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4563 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745987581\n\nYour shipment with the number 745987581 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4563. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745987581\n\nBICARGO','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('68c98767-63f4-41d1-8e97-68a9b9c20710','4915152072002','Sayın MERT OSMAN DEMİR(K), 644153988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644153988\n\nDear MERT OSMAN DEMİR(K), your shipment with 644153988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644153988\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('68cb42af-383a-43e5-8e2c-494788168f1d','905301592882','Sayın yetkili; AYHAN KAHRAMAN adlı müşterinize 91028874 nolu gönderinizin Deniz koltuk takımı  ürünü 1 parça halinde Fatura adresinizden 26.03.2025 11:36:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('68d6f398-05a8-4515-8158-a322950dbee7','905534084469','Sayın yetkili; ROMİNA ÇÖPLÜ adlı müşterinize 127927013 nolu gönderinizin SANDALYE ürünü 1 parça halinde MELYA adresinizden 24.01.2025 18:59:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('68db9b7f-2ec5-40d3-b6f8-a3a97d71f1b9','4366488118073','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('68dd8421-a2ec-4d2d-a90b-180c782b3b56','491749390960','Sayın ÖZGÜR SEDAT YAMALAK, 74513098 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74513098\n\nDear ÖZGÜR SEDAT YAMALAK, your shipment with 74513098 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74513098\n\nBICARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('68e0b9d8-9f3c-4f8a-b4aa-6799e266626b','33602366647','745249081 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745249081\n\nYour shipment with the number 745249081 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745249081\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('68e7b028-0cf6-4db0-85f3-04ff21354d17','493760828565','Sayın BARAN YILDIZ, 745455914 nolu gönderiniz 3511 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745455914\n\nDear BARAN YILDIZ, your shipment with 745455914 was delivered to you with the delivery code 3511. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745455914\n\n\nBICARGO','2','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL),
('68ea1189-fd28-481e-9089-50a3d88cf018','905350617509','ELİF BEYZA ARVİŞ adlı müşterinizin 613112731 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('68ea86ff-ec3c-47e9-b5c5-154b7a4fdefa','491637510415','Sayın MERLİNDA MERDJANİ, 248849829 nolu gönderiniz 10609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248849829\n\nDear MERLİNDA MERDJANİ, your shipment with 248849829 was delivered to you with the delivery code 10609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248849829\n\n\nBICARGO','1','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL),
('68eba19d-6f35-43c4-aa54-16fbc0368d5e','33769005262','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('68f7d4bc-5a9a-4007-9cbb-e23db5197aa3','905350617509','Sayın yetkili; GÖKKUS PİNAR adlı müşterinize 61340935 nolu gönderinizin Köşe koltuk ürünü 3 parça halinde Albessa adresinizden 09.10.2025 14:31:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('68fa1122-cc69-442e-b812-f5a94dacb2a2','4917624966741','976121570 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1138 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976121570\n\nYour shipment with the number 976121570 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1138. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976121570\n\nBICARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('69038609-8083-4117-b202-17a7df3ff37b','33699946659','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('6904915d-3439-43ba-b7c8-f68ce97cd890','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin VİRAL 4 KAPILI DOLAP + ŞİFONYER + AYNA ürünü 10 parça halinde FAMILY adresinizden 07.05.2025 14:15:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('6909656f-7e5d-495a-acc7-1274781f7f35','33601991875','Sayın ALİCE CHOCRON, 478589258 nolu gönderiniz 8387 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478589258\n\nDear ALİCE CHOCRON, your shipment with 478589258 was delivered to you with the delivery code 8387. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478589258\n\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('690ac850-a587-43e4-92df-065537dc13ac','905461661672','Sayın yetkili; ÜMİT MORCA adlı müşterinize 644377995 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 24.06.2025 14:16:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('690d5609-60a6-44fa-9b9b-e430ddb46303','905313340045','HANİFE TURAN adlı müşterinizin 437355925 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('6911f55d-814d-47dd-a111-f09ad37494c0','4915259738238','Sayın ÜMMÜGÜLSÜM KARAKUŞ SSH , 745967323 nolu gönderiniz 5591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745967323\n\nDear ÜMMÜGÜLSÜM KARAKUŞ SSH , your shipment with 745967323 was delivered to you with the delivery code 5591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745967323\n\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('69139b77-da7c-4a0e-acbb-1c88d0073085','905313340045','Sayın yetkili; MERYEM BİRCAN ANİK adlı müşterinize 437791709 nolu gönderinizin orta sehpa üst tablası ürünü 1 parça halinde decoria adresinizden 22.05.2025 12:35:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('691fc88f-d69b-427a-ba1e-9a66df5f8b92','310681538881','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('69246f70-be03-4442-ac98-7be45b4670c9','4915778776524','İLETİŞİM\n					Furkan şöför = +905078826436','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('6925246b-b9c7-44f3-9290-e23631936764','4917681000439','437222135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6666 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437222135\n\nYour shipment with the number 437222135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6666. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437222135\n\nBICARGO','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('6925b8a3-2700-4d24-b93f-fdd1c99b132b','4915115356238','Sayın GÜLDEN KARADAĞ, 745580296 nolu gönderiniz 5155 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745580296\n\nDear GÜLDEN KARADAĞ, your shipment with 745580296 was delivered to you with the delivery code 5155. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745580296\n\n\nBICARGO','2','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('69260ac8-cce1-4cdd-839f-623f7c981d54','41787438626','221416180 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221416180\n\nYour shipment with the number 221416180 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221416180\n\nBICARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('69270dd1-bf1e-410f-a425-dfdf890cd066','491787159677','Sayın ORHAN ÖZSOY, 745140498 nolu gönderiniz 8349 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745140498\n\nDear ORHAN ÖZSOY, your shipment with 745140498 was delivered to you with the delivery code 8349. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745140498\n\n\nBICARGO','1','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('692caad2-2995-4e8c-b38d-7eb3ba4df4eb','905461661672','YASEMİN GÜNDOĞDU adlı müşterinizin 644340759 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('692ed837-73ea-4bbd-8d99-b4d21714c8e5','905079358213','FATMA ALTAY adlı müşterinizin 745871666 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('69336c4e-065b-4b21-80c6-f9e4af5dc91c','491626234457','Sayın İSMAİL TURŞUCU		, 910697257 nolu gönderiniz 5669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910697257\n\nDear İSMAİL TURŞUCU		, your shipment with 910697257 was delivered to you with the delivery code 5669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910697257\n\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('69360c19-c78a-4330-9546-e8e815b76947','06607038670','Sayın ERDAL AKDAĞ(K), 644985861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644985861\n\nDear ERDAL AKDAĞ(K), your shipment with 644985861 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644985861\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('6936c923-03df-4051-9b6d-5fcaf397e65e','491766044656','74565294 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9907 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74565294\n\nYour shipment with the number 74565294 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9907. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74565294\n\nBICARGO','2','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL),
('6936cd76-95ef-40ad-8aad-826bdaf312a5','905054335859','SAAİD HUSSEİN adlı müşterinizin 501760708 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL),
('693bc0ac-6fe4-4c1d-a926-e8dd3ae7b88f','','428839296 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5778 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428839296\n\nYour shipment with the number 428839296 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5778. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428839296\n\nBICARGO','2','5834e5ad-035b-4bd5-ba17-95504a0c5e1a',NULL),
('693d4c22-4e63-461c-8a04-45f09bcaafe6','4917643479930','61420700 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/61420700\n\nYour shipment with the number 61420700 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/61420700\n\nBICARGO','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('69421ec6-8a84-4bab-9ca6-2e04d39c9d63','905542969953','Sayın TUĞBA YILMAZ, 428160643 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428160643\n\nDear TUĞBA YILMAZ, your shipment with 428160643 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428160643\n\nBICARGO','1','0d464a57-d48d-4898-8ed5-05d911433d8e',NULL),
('694c44ef-ac4f-4545-ab44-36b37a85b8e8','00491627384252','Sayın ELVİN ÇETİN, 734955536 nolu gönderiniz 7732 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734955536\n\nDear ELVİN ÇETİN, your shipment with 734955536 was delivered to you with the delivery code 7732. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734955536\n\n\nBICARGO','2','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL),
('694daae1-091c-4b0b-be89-da2b6bd15106','905534084469','Sayın yetkili; BURCU ŞİMŞEK adlı müşterinize 12752907 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde MELYA adresinizden 24.01.2025 17:55:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('694ddaed-80ad-45ad-a029-4c6e13080de6','49017640508000','35130528 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35130528\n\nYour shipment with the number 35130528 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/35130528\n\nBICARGO','2','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('69522457-db11-43e7-b8f9-6ad4b897c772','33608517581','449728917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3254 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449728917\n\nYour shipment with the number 449728917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3254. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449728917\n\nBICARGO','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('6952ef2a-1c80-4a75-8a1e-5b9554403bb1','4915259155926','Sayın SİBEL BAHÇECİ, 449902693 nolu gönderiniz 2083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449902693\n\nDear SİBEL BAHÇECİ, your shipment with 449902693 was delivered to you with the delivery code 2083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449902693\n\n\nBICARGO','1','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL),
('6956d736-affd-4e99-9a5d-3d2b64888fb6','905365908694','HOMAM AL FAJJARİ adlı müşterinizin 223575392 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','649029c3-dc44-4148-9d1c-afdd4ca73418',NULL),
('69593314-550b-45f1-82cf-0088927a6c31','4917685967745','Sayın ERDEMCAN GÖZÜBÜYÜK, 37159654 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37159654\n\nDear ERDEMCAN GÖZÜBÜYÜK, your shipment with 37159654 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37159654\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('69603d6b-7f4f-4e38-8314-1636cd07be92','1111111111111111','734109910 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3721 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734109910\n\nYour shipment with the number 734109910 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3721. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734109910\n\nBICARGO','2','48599652-b40b-4605-9b8c-4be79cb180f3',NULL),
('69649775-4714-49e7-8097-f48c17de168c','905075277637','Sayın yetkili; METİN PEKSERT SSH adlı müşterinize 745933378 nolu gönderinizin TEKLİ  ürünü 1 parça halinde Fatura adresinizden 27.03.2025 11:40:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('696c9df5-432a-40d1-9a42-c623f467b421','436766461961','Sayın HAFİZE BALİ, 371684650 nolu gönderiniz 8040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371684650\n\nDear HAFİZE BALİ, your shipment with 371684650 was delivered to you with the delivery code 8040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371684650\n\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('697681b9-1111-421f-9f8d-0ee592978709','905079358213','MURAT ERKUL adlı müşterinizin 745639167 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('6976a271-9948-4e97-be12-9748dddb511a','310645034303','Sayın BEA JONGERİUS, 982984016 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982984016\n\nDear BEA JONGERİUS, your shipment with 982984016 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982984016\n\nBICARGO','1','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL),
('6977df1b-766b-4f3a-8f15-b11448f724b4','905461661672','BARAN YILDIZ adlı müşterinizin 644832811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('697a2d46-c044-414d-b4a3-84f0ec6eb1c0','905532675926','ABDULLAH SÖNMEZ adlı müşterinizin 428107185 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('69820d15-796b-447b-ba39-9cbf1dde8dec','905066751402','Sayın yetkili; OSMAN GÖKBEKİŞ adlı müşterinize 524289921 nolu gönderinizin masa ayağı ürünü 2 parça halinde inhouse Koltuk adresinizden 27.06.2025 11:52:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('698518c6-c147-453f-84b5-2d780313f010','4917664205279','162571177 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6930 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/162571177\n\nYour shipment with the number 162571177 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6930. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/162571177\n\nBICARGO','1','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL),
('69874682-5b1e-4233-9151-55d087c42412','905454259202','SÜLEYMAN ERDOĞAN adlı müşterinizin 478723327 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','476a35ac-9d9d-4d70-a965-370a980951c2',NULL),
('698ffc88-dcd7-439d-bd92-c90ac5e18d99','33618459202','Sayın ALİCE CHOCRON, 478589258 nolu gönderiniz 8387 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478589258\n\nDear ALİCE CHOCRON, your shipment with 478589258 was delivered to you with the delivery code 8387. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478589258\n\n\nBICARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('69940724-7e67-4903-b3db-5249396f10b9','32486080855','Sayın AKKAY NADİA, 22133183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22133183\n\nDear AKKAY NADİA, your shipment with 22133183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22133183\n\nBICARGO','1','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL),
('69990189-667a-4b25-9296-a13560799e98','491729060799','Sayın YUSUF ASLANYÜREK, 478746196 nolu gönderiniz 6780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478746196\n\nDear YUSUF ASLANYÜREK, your shipment with 478746196 was delivered to you with the delivery code 6780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478746196\n\n\nBICARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('69a3743d-a368-4a50-a761-f1aeb6454f48','4915735318430','127530070 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2731 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127530070\n\nYour shipment with the number 127530070 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2731. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127530070\n\nBICARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('69a8c0fc-e5bb-405c-ba4a-d5478e736cc5','31619691823','Sayın FEHMİYE KESERCİ, 478839575 nolu gönderiniz 4290 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478839575\n\nDear FEHMİYE KESERCİ, your shipment with 478839575 was delivered to you with the delivery code 4290. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478839575\n\n\nBICARGO','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('69ab255c-0b4c-493a-84db-a8d24d0513d5','4915236632469','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('69b0bc21-f704-4041-9419-9363e79d972f','33605918727','Sayın İRFAN AKTAŞ , 501167444 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501167444\n\nDear İRFAN AKTAŞ , your shipment with 501167444 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501167444\n\nBICARGO','1','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL),
('69b2497d-ca1d-47be-aa18-77b5b86b816c','905363385813','YUSUF ADIGÜZEL adlı müşterinizin 976942978 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL),
('69b9cbf5-f892-4ab7-8a5e-1ca3e72725d6','905304259202','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478972804 nolu gönderinizin YATAK( DOLAPSIZ)-YEMEK-ÜNİTE-SEHPALAR ürünü 38 parça halinde AREA adresinizden 22.01.2025 14:48:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('69ba1794-4c01-48ba-9f8a-8ee1d9e51300','491601818240','Sayın BARAN YILDIZ, 644832811 nolu gönderiniz 7804 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644832811\n\nDear BARAN YILDIZ, your shipment with 644832811 was delivered to you with the delivery code 7804. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644832811\n\n\nBICARGO','2','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('69be5419-dc3d-4f73-b89d-d8485acc3683','905304259202','YASEF İÇEL adlı müşterinizin 478723817 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL),
('69c05d2a-57b0-459e-91fe-70164736b618','905336367828','MALHA MUHAMMED adlı müşterinizin 982873637 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL),
('69ca4588-2c4a-443f-aa8f-25e9985f86bd','905336367828','Sayın yetkili; AMİNA BOUDJENNAH  adlı müşterinize 982585914 nolu gönderinizin konsol  ürünü 2 parça halinde Brn mobilya  adresinizden 14.02.2025 17:12:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('69cd7905-967f-4bcb-bb80-70e7b75b3f29','491726402592','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('69d969ec-750b-4930-b7c1-4d0194131c79','905461661672','Sayın yetkili; TÜLAY ÇAĞLAR adlı müşterinize 644637792 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:21:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('69dff35f-eb4c-44fd-8b9d-a4664ec6d715','491626958911','Sayın SABİHA SATICI, 644520957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644520957\n\nDear SABİHA SATICI, your shipment with 644520957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644520957\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('69e11823-bb0e-439b-aad4-d58950d3bd56','','449837324 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449837324\n\nYour shipment with the number 449837324 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449837324\n\nBICARGO','2','6be99b5d-41a3-4b9e-a67f-f951b7f620ed',NULL),
('69e1b424-2429-4972-9f9f-8d24fd6eadf8','1111222222222222','Sayın MAİL BOXES ETC , 223896175 nolu gönderiniz 2564 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223896175\n\nDear MAİL BOXES ETC , your shipment with 223896175 was delivered to you with the delivery code 2564. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223896175\n\n\nBICARGO','2','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL),
('69e3d955-7696-492e-8dfc-38c7ffa8137d','905517075149','YUSUF BARAN adlı müşterinizin 478450171 nolu gönderisi 46 parça halinde yola çıkmıştır.','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('69e4548c-fa7b-42e8-94dc-669b91b91638','4917620374888','Sayın ÖZLEM RECEP ÇANAK, 478966296 nolu gönderiniz 8793 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478966296\n\nDear ÖZLEM RECEP ÇANAK, your shipment with 478966296 was delivered to you with the delivery code 8793. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478966296\n\n\nBICARGO','1','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('69ed0c3f-09af-41b3-bfad-036853c3682a','4915771419674','Sayın FERHAT CAN, 278498481 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278498481\n\nDear FERHAT CAN, your shipment with 278498481 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/278498481\n\nBICARGO','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('69f5669a-b94c-4082-b0ff-a263e9689669','905054335859','Sayın yetkili; TEKİN MAZLUM adlı müşterinize 501872546 nolu gönderinizin RİGA KOLTUK TAKIMI 3 3 1 1  ürünü 4 parça halinde DGN adresinizden 05.12.2024 11:45:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('69f971f9-3fbf-42a9-ab2a-8dc29fa58b46','905461661672','GHAZAL TARIK İLHAN adlı müşterinizin 644971564 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('69fac63a-86c3-4f3d-b800-ce29f0513faa','320465508210','Sayın MUSA LÖK, 517521279 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517521279\n\nDear MUSA LÖK, your shipment with 517521279 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517521279\n\nBICARGO','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('69fb3fde-f983-4649-92ed-41f13e8e100c','905325000478','BOLL TRADE adlı müşterinizin 412795154 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('69fc5f88-8601-400d-a344-43105dfcc45e','491725785095','Sayın HARUN ŞAHİN, 371421349 nolu gönderiniz 7604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371421349\n\nDear HARUN ŞAHİN, your shipment with 371421349 was delivered to you with the delivery code 7604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371421349\n\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('6a0288e2-65cd-4c67-8164-170e19d1e9b8','905079358213','HATİCE KARABAĞCA SSH  adlı müşterinizin 745658808 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('6a03ee55-cff5-445f-a575-69e403796574','905079358213','MURAT SABAK adlı müşterinizin 745859135 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL),
('6a047359-c13b-4fef-aeb8-8ce93dfdee43','4915756455656','Sayın SAMET KÖTEN, 976439318 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976439318\n\nDear SAMET KÖTEN, your shipment with 976439318 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976439318\n\nBICARGO','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('6a04c119-7e22-4423-8851-3e05bf44790e','4915782263491','614901187 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2832 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614901187\n\nYour shipment with the number 614901187 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2832. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614901187\n\nBICARGO','1','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('6a06705c-a304-4dc3-9db4-033e9b699a1d','905331602195','AYNUR KAPUCU adlı müşterinizin 221694221 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('6a07c5d6-929b-4a5d-b1f1-2e1044a7702f','4915738614883','Sayın LORİSWOOD, 412139015 nolu gönderiniz 3097 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412139015\n\nDear LORİSWOOD, your shipment with 412139015 was delivered to you with the delivery code 3097. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412139015\n\n\nBICARGO','1','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL),
('6a0daf04-8286-4593-a578-6e6852542dec','4917634311162','37176846 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3904 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/37176846\n\nYour shipment with the number 37176846 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3904. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/37176846\n\nBICARGO','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('6a0ec564-8c0e-4cd0-99e1-5450658c8c01','905350617509','Sayın yetkili; ELFRİDA RAİCEVİC  adlı müşterinize 613510894 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 30.07.2025 14:38:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('6a19fe5e-1303-44ab-95d3-02634e1b8c65','491742627039','Sayın SEDA ULUSOYLU, 371691350 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371691350\n\nDear SEDA ULUSOYLU, your shipment with 371691350 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371691350\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('6a1dadc4-2ac4-43ab-a290-dbfb4065a7a7','00491742894095','Sayın İSMET  IRMAK, 614659832 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614659832\n\nDear İSMET  IRMAK, your shipment with 614659832 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614659832\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('6a1e933b-7ae5-48df-ae2f-f132760d07da','491624318595','Sayın DİLAVER ULUTAŞ, 478670997 nolu gönderiniz 4550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478670997\n\nDear DİLAVER ULUTAŞ, your shipment with 478670997 was delivered to you with the delivery code 4550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478670997\n\n\nBICARGO','1','ef1198dc-03c9-4c56-80d9-0d4fe298cc66',NULL),
('6a1ff512-c006-42dc-a6a5-ab96af27c05d','41782502188','Sayın SABRİNA ZAHEY, 982555492 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982555492\n\nDear SABRİNA ZAHEY, your shipment with 982555492 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982555492\n\nBICARGO','1','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL),
('6a22b476-552d-4f74-84be-29734f27bdce','905079358213','HATİCE ÖZEN adlı müşterinizin 745734415 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('6a2501c3-c446-4a84-83d1-4857a7f352f4','436642175788','Sayın MAGDALENA DELİJANOVA, 371521572 nolu gönderiniz 10402 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371521572\n\nDear MAGDALENA DELİJANOVA, your shipment with 371521572 was delivered to you with the delivery code 10402. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371521572\n\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('6a293d40-887b-4761-8161-8171d5c0810a','4917632856382','Sayın AYLİN MİYANYEDİ, 598444930 nolu gönderiniz 5474 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598444930\n\nDear AYLİN MİYANYEDİ, your shipment with 598444930 was delivered to you with the delivery code 5474. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598444930\n\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('6a2b8616-6fb0-4d1e-bfa1-5a45788d4c67','905517075149','Sayın yetkili; CAN KUL  adlı müşterinize 478161304 nolu gönderinizin 23-26 eylül arası orda değil ürünü 1 parça halinde Fatura adresinizden 04.09.2025 17:30:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('6a39d986-6b30-4101-97cf-2cce777b6428','905059175469','KÖKSAL ÇELİK adlı müşterinizin 428991499 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL),
('6a4b013e-b9bd-415e-af03-0e6e4539cc7c','905079358213','Sayın yetkili; SADET DURSUN adlı müşterinize 74546300 nolu gönderinizin TUANA KÖŞE TAKIMI ürünü 3 parça halinde Fatura adresinizden 20.02.2025 15:47:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bcc57c6c-154f-43e9-bfcc-5d4a7225b29a',NULL),
('6a50fcff-6833-4a5f-93cd-2edcc510e0f2','905365908694','DİE FABRİK OUTLET  adlı müşterinizin 223631242 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL),
('6a53abe7-b623-49e2-835b-fd25000e4a14','491728265079','613512690 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10937 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613512690\n\nYour shipment with the number 613512690 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10937. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613512690\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('6a53d769-da1c-4024-9816-b703b2af03c2','32487280627','Sayın TEVFİK KÜÇÜK, 644513470 nolu gönderiniz 10177 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644513470\n\nDear TEVFİK KÜÇÜK, your shipment with 644513470 was delivered to you with the delivery code 10177. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644513470\n\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('6a550dd6-99e3-4afe-bf7b-6810c7ae1fb0','4369919243273','Sayın DİANA BARAKAEVA, 613502652 nolu gönderiniz 9385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613502652\n\nDear DİANA BARAKAEVA, your shipment with 613502652 was delivered to you with the delivery code 9385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613502652\n\n\nBICARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('6a58c9d3-614f-463c-9e9d-d418ac31aa67','905335511664','İSA SÖNMEZ adlı müşterinizin 371820680 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('6a5af798-7329-4ece-a3bc-29dddc377e62','436763463503','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('6a5b7ab6-92f7-4078-bd71-adaa4c37d7cf','33609307736','501622058 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5502 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501622058\n\nYour shipment with the number 501622058 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5502. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501622058\n\nBICARGO','1','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL),
('6a6189f9-7937-4e4e-a6aa-564192963013','905350617509','BURHAN SARİKURT adlı müşterinizin 613508377 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('6a629d12-3333-498b-98e3-94a06d1478d1','905331602195','ÖZGÜR GÖKÜZÜM adlı müşterinizin 22142813 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('6a633061-4f25-4e65-893d-cb56a9f1a1b1','436606544408','Sayın SUHAD AL-ASADİ , 675124573 nolu gönderiniz 3295 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675124573\n\nDear SUHAD AL-ASADİ , your shipment with 675124573 was delivered to you with the delivery code 3295. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675124573\n\n\nBICARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('6a640ee9-e36b-449f-884c-4b2974a89b73','905368336516','Sayın yetkili; ZEHRA ÖZTÜRK adlı müşterinize 515491042 nolu gönderinizin SANDALYE ürünü 4 parça halinde masami adresinizden 23.09.2025 16:07:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54f6e131-a6a8-449c-94bf-fd5f1f3719a5',NULL),
('6a643c57-f7a6-4ca7-8820-186804dadd1e','4916093919802','Sayın BEYZA ÇALIK, 644644115 nolu gönderiniz 2744 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644644115\n\nDear BEYZA ÇALIK, your shipment with 644644115 was delivered to you with the delivery code 2744. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644644115\n\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('6a668f57-ec07-425c-a05b-bca84e71e821','6472647627466264','412302460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412302460\n\nYour shipment with the number 412302460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412302460\n\nBICARGO','2','f7ef839c-2795-4f15-80a8-414937600965',NULL),
('6a6bdc78-178d-4013-a7de-23c7fb73d985','905336367828','YASSMİNE JADMOUR adlı müşterinizin 982455918 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('6a6c11c2-898d-48ab-b413-aac9e0c6cf24','436608636840','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('6a737408-5dc2-4bff-a383-16692dc97aff','0000905534084469','EROL ERDOĞAN adlı müşterinizin 151236689 nolu gönderisi 9 parça halinde yola çıkmıştır.','2','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('6a7554c6-7b1c-4e00-ad92-d899f1ac48fc','00436505113533','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','2','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('6a7a0446-d1a0-43ff-addf-d967d2fd3a17','','478516951 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478516951\n\nYour shipment with the number 478516951 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478516951\n\nBICARGO','2','5a03448d-5de2-4154-86a6-c1af699ed137',NULL),
('6a7ba987-f7ee-4206-a3a1-1ef1d2ed91b3','33651909991','Sayın OGUZHAN SARP, 501345257 nolu gönderiniz 6147 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501345257\n\nDear OGUZHAN SARP, your shipment with 501345257 was delivered to you with the delivery code 6147. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501345257\n\n\nBICARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('6a7c5af0-1546-42bb-ac28-b89477a1d729','4917672708890','745294810 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745294810\n\nYour shipment with the number 745294810 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745294810\n\nBICARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('6a7cb3af-c821-400b-aee7-14bc8c55a4f4','905331602195','NAİMA BOURAJJOU adlı müşterinizin 22186590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('6a7fa318-c514-4427-9e25-4d58bda002a1','436508346455','Sayın HİLAL DEMİR, 644145142 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644145142\n\nDear HİLAL DEMİR, your shipment with 644145142 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644145142\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('6a7faebc-7b2c-40cf-ab89-456c89c61c86','905075277637','Sayın yetkili; MUHAMMET TÜRKMEN adlı müşterinize 745952430 nolu gönderinizin KİNG PLATİN BAZA SETİ 120X200 ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:15:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('6a80e14f-a3de-4f13-af73-23cf12538a33','4917662047027','644422105 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4615 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644422105\n\nYour shipment with the number 644422105 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4615. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644422105\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('6a87d7fb-864c-4a73-b0b8-2941d78feded','905335708965','SAİT BEY adlı müşterinizin 735814007 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','67f3e803-506e-4fab-b999-051b7a0368e2',NULL),
('6a8915bf-8704-4c54-9daf-0e2809ff4042','905428209234','Sayın yetkili; MEHDİ NAEİMİ adlı müşterinize 319275080 nolu gönderinizin MOZART 3-3-1 ürünü 3 parça halinde Fatura adresinizden 30.06.2025 14:12:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('6a894ff7-8408-4e1c-801b-fb1e1add2d43','491777095742','Sayın NURİYE İKİZKAYA, 437854000 nolu gönderiniz 7739 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437854000\n\nDear NURİYE İKİZKAYA, your shipment with 437854000 was delivered to you with the delivery code 7739. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437854000\n\n\nBICARGO','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('6a8a5530-feb5-44ff-a2f4-ce02eaa16bc1','4915754509402','Sayın SATİ CENGE, 437427529 nolu gönderiniz 2046 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437427529\n\nDear SATİ CENGE, your shipment with 437427529 was delivered to you with the delivery code 2046. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437427529\n\n\nBICARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('6a8d80fa-6b38-4638-a2ee-7720c1f075cf','4917683412499','786276080 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9491 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/786276080\n\nYour shipment with the number 786276080 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9491. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/786276080\n\nBICARGO','1','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('6a956b8f-d839-4333-90dc-9d62a06c68d7','905075277637','Sayın yetkili; MEHMET ANDIÇ adlı müşterinize 745759881 nolu gönderinizin TOFİ BERJER  ürünü 2 parça halinde VAAV adresinizden 25.09.2025 11:27:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('6a98faec-d64d-47e8-9469-f5635d518e8d','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Mermer lider den alınacak  ürünü 1 parça halinde Fatura adresinizden 15.09.2025 15:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('6a9a97d2-4173-435d-b6f6-dbdf1e97a12f','4917612343333','412418230 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412418230\n\nYour shipment with the number 412418230 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412418230\n\nBICARGO','1','f0b553df-a781-4ccd-a273-f9c311927595',NULL),
('6a9e27bf-271a-406b-8e07-17065d092e42','905079358213','HALİDE ÖZAY adlı müşterinizin 745208965 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('6aa535f9-5966-41c7-807e-eeb7f90f537b','491784598984','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('6ab04d8b-3882-4f75-92b4-ff733651fa8e','905428209234','Sayın yetkili; GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinize 31925609 nolu gönderinizin tesla köşe takımı ürünü 5 parça halinde bestline  adresinizden 06.05.2025 12:04:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('6ab2d283-6fb1-4322-ae79-57f6df61c231','30697562034','478957028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478957028\n\nYour shipment with the number 478957028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478957028\n\nBICARGO','2','d448143d-3fcc-4fc3-8d37-30d1af2dec9e',NULL),
('6ab46bec-87f3-451c-8a36-b80049d592ea','905304259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde family adresinizden 02.05.2025 15:34:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('6ab639a8-f7b7-4397-9d05-4ceb6e5874b3','33627054551','Sayın LAMMARİ BAYA , 98232043 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98232043\n\nDear LAMMARİ BAYA , your shipment with 98232043 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98232043\n\nBICARGO','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('6ab9c6c2-ee39-45cd-9a88-8423fed0700f','905079047428','DERYA GÜLLER adlı müşterinizin 449627061 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2bc13cda-c525-42a2-a315-a0390ae06337',NULL),
('6abd93a7-531b-4477-b867-5e297ed2aa69','436765022153','Sayın NURAY DURAN, 515261200 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515261200\n\nDear NURAY DURAN, your shipment with 515261200 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515261200\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('6abec7a0-6cbc-4a5f-b780-42f6dfd288c6','905325000478','VEYSİ BALKAYA adlı müşterinizin 412252425 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL),
('6ac0ee48-5b0a-435e-9128-a41d1d25cfa1','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO DOLAP,LİDYA SOHO KÖŞE DOLAP,LİDYA SOHO İKİ KAPILI DOLAP,LİDYA SOHO TEK KAPILI DOLAP,GRANDBEDS DELUXE 160*200 YATAK,BEYLER 2TAY-6090-266 AYNALI TABLO 60*90 ürünü 13 parça halinde Fatura adresinizden 19.09.2025 14:38:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('6ac55aa5-5a17-444b-8f4d-51f5bbedec94','05388618969','NERMİN KAZAN  adlı müşterinizin 786146097 nolu gönderisi 25 parça halinde yola çıkmıştır.','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('6ac8e01c-5e15-4c9f-afba-1d440128b4a0','33781488787','Sayın ÖMER EKŞİN, 478391312 nolu gönderiniz 1541 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478391312\n\nDear ÖMER EKŞİN, your shipment with 478391312 was delivered to you with the delivery code 1541. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478391312\n\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('6acc21dd-b96b-499b-bea2-86027f843413','491776418748','Sayın AHMET ÖZDEMİR, 478472384 nolu gönderiniz 7197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478472384\n\nDear AHMET ÖZDEMİR, your shipment with 478472384 was delivered to you with the delivery code 7197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478472384\n\n\nBICARGO','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('6acfa177-d59b-4567-a3d8-7d248089e064','905304259202','Sayın yetkili; EMİN EKRAMOĞLU adlı müşterinize 478337610 nolu gönderinizin BAZA PARÇALARI ürünü 1 parça halinde Fatura adresinizden 15.05.2025 12:06:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('6ad0a1da-448d-48db-bd5d-a84d48c9c356','905079358213','HATİCE KARABAĞCA SSH  adlı müşterinizin 745658808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('6ada609d-66e1-47b9-8f46-05cc6e48bd47','5325000478','Sayın LEVENT LEVENT, 17.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3847602\nŞifre : 3847602\n			\nBİCARGO','1',NULL,'3c847602-8428-494a-84ce-0c9c9392db1a'),
('6adac200-afd7-4bd1-9e13-5c25b2535512','5354954215','910825747 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9166 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910825747\n\nYour shipment with the number 910825747 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9166. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910825747\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('6add6968-e21d-43e2-ad0d-e9d6b41ed642','1111111111111111','Sayın PARWEZ MOHAMMADİ, 248694668 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248694668\n\nDear PARWEZ MOHAMMADİ, your shipment with 248694668 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248694668\n\nBICARGO','2','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL),
('6adeb8fe-1b69-4107-a0c6-c895a9a9c5c7','905336367828','Sayın yetkili; SAİD ALİ  adlı müşterinize 982973548 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 21.01.2025 10:33:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('6ae9de88-d13f-4d11-bc33-0fbbd0864436','905075277637','Sayın yetkili; BERKANT YAŞA adlı müşterinize 745717474 nolu gönderinizin PETRA DOLAP ürünü 16 parça halinde MOBİLİSTAN adresinizden 14.03.2025 12:31:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('6af9e0ab-89dc-438c-b028-eabf8b1b11c4','31627024701','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('6affbe6e-4718-49d8-84dc-89a75ede93ac','905078062550','Sayın yetkili; İBRAHİM YEŞİLKAYA adlı müşterinize 598211009 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 18.07.2025 10:28:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('6b01454e-3b50-4d7b-a2d8-3f944bffc8c2','905075277637','HÜSEYİN KIRTAY adlı müşterinizin 745357299 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ad525e43-9190-4602-ac34-b389ec280f0a',NULL),
('6b0369dd-a7d8-4b99-8435-a10d777484a2','905079047428','RAMİN HUSSEİNİ adlı müşterinizin 44920682 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('6b040742-9f76-4366-86df-669405f28112','905443955915','Sayın yetkili; YILDIRIM ASLAN adlı müşterinize 614339204 nolu gönderinizin FALCON BERJER ARKA SOL AYAK SİYAH RENK 1 ADET  ürünü 1 parça halinde PAKKO KOLTUK adresinizden 23.12.2024 12:58:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('6b07acec-7021-4c65-ab52-b5fcf8fd3a64','33636159677','338474620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10538 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338474620\n\nYour shipment with the number 338474620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10538. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338474620\n\nBICARGO','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('6b07bb52-4347-4263-8ed6-edb52146701b','905304259202','YAKUP KILIÇ adlı müşterinizin 478516951 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5a03448d-5de2-4154-86a6-c1af699ed137',NULL),
('6b07f53a-5e05-494a-9c2d-1088c1e6c709','491709634304','Sayın RANJA SABRİ , 221904119 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221904119\n\nDear RANJA SABRİ , your shipment with 221904119 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221904119\n\nBICARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('6b09d3f7-53c5-466e-b993-f4e7f339ef8a','905304259202','EMRE AKŞEHİRLİ adlı müşterinizin 478188105 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL),
('6b0dc47a-3f7c-4aa2-b802-c419e7afc478','4917628135179','Sayın LALE AKGÜL, 371533444 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371533444\n\nDear LALE AKGÜL, your shipment with 371533444 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371533444\n\nBICARGO','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('6b157407-64b4-45f7-abf5-993d095dfd48','41765060550','DRİVER NUMBER\n					905541100849','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('6b1c10d1-ffe4-487a-9d71-cada03aba9e1','491737165730','Sayın MEHMET AKHAN, 371998665 nolu gönderiniz 3896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371998665\n\nDear MEHMET AKHAN, your shipment with 371998665 was delivered to you with the delivery code 3896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371998665\n\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('6b1ef5a5-4efd-419a-937b-ea1c8ea7f8b8','4915776398644','Sayın NURCAN MANSUR, 478438901 nolu gönderiniz 8246 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478438901\n\nDear NURCAN MANSUR, your shipment with 478438901 was delivered to you with the delivery code 8246. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478438901\n\n\nBICARGO','1','90e4117b-333a-4d53-b6d1-0ec61b7315b8',NULL),
('6b213b48-5c9b-49cf-b4f9-540fd7bb203c','33782340961','Sayın TAMES PREİN JANY, 982545187 nolu gönderiniz 10410 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982545187\n\nDear TAMES PREİN JANY, your shipment with 982545187 was delivered to you with the delivery code 10410. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982545187\n\n\nBICARGO','1','7cefa81c-deac-4617-8809-7002f9076b03',NULL),
('6b25fe9a-85ea-4f13-aa22-2cffb92bdcac','436765022153','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('6b277dbf-06bf-4cbf-ab2c-202d0912d70e','33609521096','Sayın İPEK ÇİFTÇİ, 478300917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478300917\n\nDear İPEK ÇİFTÇİ, your shipment with 478300917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478300917\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('6b2a7d53-5c00-4810-bd49-be19142bc6a6','33644759531','734245011 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10503 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734245011\n\nYour shipment with the number 734245011 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10503. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734245011\n\nBICARGO','1',NULL,NULL),
('6b3018f2-960f-4c30-863c-c11aba7f20bf','4917449179710','Sayın MUSTAFA KELEŞ, 598263441 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598263441\n\nDear MUSTAFA KELEŞ, your shipment with 598263441 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598263441\n\nBICARGO','2','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('6b336c6e-e230-47d0-854e-3d5e003e1d5b','905335708965','YAKUP TEKE adlı müşterinizin 735565748 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83b46886-5368-4d6c-8779-63f4585588f3',NULL),
('6b348e98-00e8-4756-a265-151624674879','905454259202','Sayın yetkili; YASİN OĞUZ adlı müşterinize 478233957 nolu gönderinizin ÜÇ ADET YATAK SETİ ürünü 12 parça halinde Fatura adresinizden 20.05.2025 12:48:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('6b39d7c6-6d55-4cec-afff-7b9848c6c1a2','436603605379','Sayın ONUR MAHAR, 019113818 nolu gönderiniz 2906 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/019113818\n\nDear ONUR MAHAR, your shipment with 019113818 was delivered to you with the delivery code 2906. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/019113818\n\n\nBICARGO','1','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('6b407e84-5a6a-49ea-a13c-6145efe131f9','4915208790958','Sayın HUSNA ISHAGZAİ, 44926965 nolu gönderiniz 9140 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44926965\n\nDear HUSNA ISHAGZAİ, your shipment with 44926965 was delivered to you with the delivery code 9140. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44926965\n\n\nBICARGO','1','bec65e06-6270-4da0-8ec5-c65be8d1c4e4',NULL),
('6b46d140-63c3-4c29-8d94-77667021cfd8','4917676864801','ŞÖFÖR NUMARASI\n					+905467896981','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('6b55c71a-5dba-4c6f-8c27-0e9e95c9630a','905461661672','Sayın yetkili; MUSA CAN KOÇAK adlı müşterinize 644389756 nolu gönderinizin MASA ürünü 2 parça halinde Masami Mobilya adresinizden 25.06.2025 17:56:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('6b584d59-ac3a-43dc-9e4c-9e2f7fe24851','4915753642605','Sayın SEDA TULGAR, 644152675 nolu gönderiniz 2550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644152675\n\nDear SEDA TULGAR, your shipment with 644152675 was delivered to you with the delivery code 2550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644152675\n\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('6b5a54b9-d40f-4f75-aa56-62489ecb13c9','905331602195','HAVVA KUM adlı müşterinizin 221443179 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('6b5ea011-cdc1-4429-ae10-dd9cad0773b9','905331602195','SWETLANA NESCHİNSKİ adlı müşterinizin 221989961 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('6b5fd71d-2171-4b9e-8992-c62c04dd0ceb','905335708965','ERFURT  MOBİLYA KOLTUK adlı müşterinizin 248568702 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('6b6457e9-e403-40cf-a45d-83024e91f4fe','4915223038564','Sayın BERNA YİLDİRİM, 613847250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613847250\n\nDear BERNA YİLDİRİM, your shipment with 613847250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613847250\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('6b6675bc-a97c-44b5-8435-2d4c7088b720','905079358213','ÖZLEM TÜRKMEN adlı müşterinizin 745853192 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('6b66cca4-99cd-4a34-84e3-cd4fcb68135a','905075277637','Sayın yetkili; RAMAZAN DUMAN adlı müşterinize 745343811 nolu gönderinizin ELİT KÖŞE KOLTUK  ürünü 4 parça halinde SİNAN KÖŞE  adresinizden 16.06.2025 11:40:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('6b683022-1a37-417f-8e2e-6661ba4c69cb','05417350813','Sayın ÖZLEM RECEP ÇANAK, 478966296 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478966296\n\nDear ÖZLEM RECEP ÇANAK, your shipment with 478966296 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478966296\n\nBICARGO','2','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('6b6b3c65-06ef-49f7-acb3-de717750429c','4917623983797','478815317 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1910 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478815317\n\nYour shipment with the number 478815317 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1910. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478815317\n\nBICARGO','1','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL),
('6b6b731b-12d7-4ca9-a4e6-f433763a3302','31687653993','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('6b709b9a-4984-48ad-af0c-df95cfd35899','4915151400304','ŞÖFÖR NUMARASI\n					+905467896981','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('6b72d3c9-b60c-4baf-a37c-719e3e1f7278','491628157309','614969446 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2220 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614969446\n\nYour shipment with the number 614969446 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2220. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614969446\n\nBICARGO','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('6b74002d-d204-4a8f-91fb-52bb4ac6b9d7','905318109098','FATMA EROĞLU adlı müşterinizin 455165840 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','567de155-b820-4225-ac37-23f88ed0500c',NULL),
('6b7658fd-8539-4433-8367-1c86d441e02c','33767299223','Sayın HAKIMI MUSTAFA, 982742157 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982742157\n\nDear HAKIMI MUSTAFA, your shipment with 982742157 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982742157\n\nBICARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('6b770dad-5849-4ccb-892a-30821cd8045d','4917624811097','614536111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614536111\n\nYour shipment with the number 614536111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614536111\n\nBICARGO','1','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('6b7cc3e9-a4cc-4e1e-bdae-c98c40b7a48e','905335511664','SILAMNIKU ALTRIN adlı müşterinizin 371396579 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('6b7d113f-4adb-4bd4-8354-5ad9fd7b293c','905534084469','AŞKIN TUN adlı müşterinizin 127105973 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d26f3f5-1617-4627-a308-2aea49169455',NULL),
('6b7db8e9-d096-4e4b-8e98-f98c688dafc5','491772447174','614553524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7524 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614553524\n\nYour shipment with the number 614553524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7524. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614553524\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('6b814cb8-63d1-40c6-a202-93a5d53a0950','05453430091','Sayın EMRE GÖZÜM(K), 644312365 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644312365\n\nDear EMRE GÖZÜM(K), your shipment with 644312365 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644312365\n\nBICARGO','2','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('6b883e38-e43c-4703-b6e2-510ca78a5565','4368184013442','675644991 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4219 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675644991\n\nYour shipment with the number 675644991 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4219. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675644991\n\nBICARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('6b8b9548-4f72-4689-adb2-695bd35fef8e','905312762034','Sayın yetkili; YUSUF ÖZKULLUK adlı müşterinize 808146332 nolu gönderinizin Masa Takımı ürünü 11 parça halinde MASAMİ adresinizden 12.09.2025 11:02:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('6b9d949a-87bc-491a-9a48-4e2161c126d3','33785173918','Sayın BESNA ULUĞ, 478906000 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478906000\n\nDear BESNA ULUĞ, your shipment with 478906000 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478906000\n\nBICARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('6b9f7f18-5f78-489d-aa37-e9e4606ec468','905454259202','Sayın yetkili; MÜZEYYEN TEYMUROĞLU adlı müşterinize 478677950 nolu gönderinizin PERDE ürünü 1 parça halinde çelikbey inegöl depo adresinizden 27.02.2025 13:39:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('6b9fdb0b-d3a9-442e-929e-e8d69b7f5481','905335511664','NESLİHAN DEMİR adlı müşterinizin 371586742 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('6ba57e95-e5c4-457e-a4c8-c4d751474c2d','905350617509','Sayın yetkili; SOZDAR AKTAS adlı müşterinize 613592756 nolu gönderinizin Traverten sehpa ürünü 1 parça halinde Fatura adresinizden 24.07.2025 11:03:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL),
('6ba90e7e-b229-4acd-9fb8-47c469172093','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin monz ç.masası-kitaplık-şifonyer ürünü 6 parça halinde HGO-KİRPİ GENÇ ODASI adresinizden 18.09.2025 14:31:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('6bc200d5-02d0-4a96-883c-148935f7e524','905365908694','BESTFULFİLLER adlı müşterinizin 22330381 nolu gönderisi 250 parça halinde yola çıkmıştır.','1','519c4dcc-e8d4-4545-8bfe-61ee397d5447',NULL),
('6bc337e8-0bfb-4058-ab74-b26971fb6dd8','905449041398','SEYFETTİN adlı müşterinizin 703183067 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','90273c80-e292-4a76-8be5-a4c812e9f569',NULL),
('6bca0bf4-2b09-4a1c-8e34-a5eaa593a327','4917681316361','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('6bcd4db9-d60f-4696-808c-86c882d14f9c','905079358213','KENAN BAYAR SSH  adlı müşterinizin 745101735 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('6bdee0e8-463d-416c-91c8-02ab2c7ffa5b','436601287333','338730647 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1567 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338730647\n\nYour shipment with the number 338730647 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1567. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338730647\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('6be00d7c-3d71-429a-9356-01846aac4aee','905336367828','LOSİF LOUNT MİRİUTA adlı müşterinizin 982592763 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL),
('6be22685-8a69-4453-9065-1500d23dbae4','4917660894702','Sayın YAŞAR YALMAN SSH, 478816988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478816988\n\nDear YAŞAR YALMAN SSH, your shipment with 478816988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478816988\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('6be840b0-15fa-4f06-887a-abcc51d88a75','905451571652','MEİSSA AL KHALED adlı müşterinizin 531480968 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('6beb6641-850c-485c-9642-a5fb24dcd71c','33665221905','982126318 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3834 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982126318\n\nYour shipment with the number 982126318 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3834. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982126318\n\nBICARGO','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('6bebce54-af01-4966-ac98-13388c157d14','905331602195','Sayın yetkili; NURİYE ŞAHİN adlı müşterinize 221447673 nolu gönderinizin Balat sandalye beyaz ürünü 6 parça halinde ALP SANDALYE adresinizden 03.03.2025 12:51:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('6bedd866-e864-4122-b919-a75320dc698e','905054335859','HANEFİ ALİOĞLU adlı müşterinizin 501667618 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL),
('6bee6b9c-2d1a-4b3c-9bd0-ea0fb512e5f1','3434243234534544','Sayın MOWO, 412846685 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412846685\n\nDear MOWO, your shipment with 412846685 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412846685\n\nBICARGO','2','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('6c00c4be-fa3e-4d94-a884-61277f0a685b','491722006627','515956879 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2358 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515956879\n\nYour shipment with the number 515956879 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2358. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515956879\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('6c00d6c5-e752-47d5-abf4-eaca1089765b','4917681126034','Sayın MUSTAFA AZAMİ, 786398335 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786398335\n\nDear MUSTAFA AZAMİ, your shipment with 786398335 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786398335\n\nBICARGO','1','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('6c04349b-1c35-4da7-8daa-5e1b2cb8e55c','905461661672','FEMİ SALİHİ adlı müşterinizin 644100790 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('6c043594-fe7d-4c25-93b2-3673bcdd40fa','905510396989','AFERDİTA UKSHİNAS adlı müşterinizin 31912550 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL),
('6c070c30-43f0-4ac9-8efa-c7dcf8bde1a8','905388618969','DONİKA adlı müşterinizin 786849282 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL),
('6c0a4d57-8b1b-4e28-8622-ef2a7ec9b1f7','905318109098','BURCU HANIM  adlı müşterinizin 455207811 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL),
('6c0a7654-ed43-4b45-bae6-48673ddc366f','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin köşe koltuk  ürünü 4 parça halinde LENTE HOME adresinizden 26.05.2025 14:33:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('6c0e64a8-2ca1-4d7d-be70-5057534f8a80','263737372737','Sayın DJDJFJDNDND, 412838128 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412838128\n\nDear DJDJFJDNDND, your shipment with 412838128 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412838128\n\nBICARGO','2','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('6c0e8a71-63ad-41d3-b8f2-55d98770b4e0','905059175469','SİBEL ÇINAR adlı müşterinizin 428736949 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL),
('6c1ad776-fbf4-464e-b0c2-16677a32a0dc','4917670344465','Sayın HATİCE KARABAĞCA SSH , 745658808 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745658808\n\nDear HATİCE KARABAĞCA SSH , your shipment with 745658808 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745658808\n\nBICARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('6c1cc2e9-8b25-468b-b6d3-b1cd8bc77046','905350617509','RANİA PİSİT adlı müşterinizin 613512690 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('6c1ea82a-4974-4226-8581-8c903ef155c3','4915780460011','Sayın MAHMUD BİRÜKOF, 598754271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598754271\n\nDear MAHMUD BİRÜKOF, your shipment with 598754271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598754271\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('6c1feca9-8024-4e60-a038-97e7472d490d','905301592882','YAKUP KOÇOĞLU adlı müşterinizin 910778068 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('6c274e92-a203-49ab-be20-b6b45c1ba249','4917662627829','Sayın ALAA AL- AHMAD, 5312778 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5312778\n\nDear ALAA AL- AHMAD, your shipment with 5312778 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/5312778\n\nBICARGO','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('6c27e27c-9543-4489-9fdd-eb59c4df0ca9','33783080694','Sayın MALHA MUHAMMED, 982873637 nolu gönderiniz 6259 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982873637\n\nDear MALHA MUHAMMED, your shipment with 982873637 was delivered to you with the delivery code 6259. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982873637\n\n\nBICARGO','1','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL),
('6c2a2d53-8f7c-4790-973c-4bdddece0b8c','33616412161','Sayın SÜLEYMAN KARA, 745523335 nolu gönderiniz 9712 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745523335\n\nDear SÜLEYMAN KARA, your shipment with 745523335 was delivered to you with the delivery code 9712. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745523335\n\n\nBICARGO','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('6c2ab45c-96a7-47e8-9e04-bcb1f2c34381','333651501156','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','2','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('6c2ddd81-61e7-47c6-adac-4753edb2b367','33652599311','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('6c2ed8f0-59c0-4ad2-a3e6-ae5c5991be37','905075277637','MURAT ERKUL adlı müşterinizin 745639167 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5be4396-bdd8-419f-b266-a5f1a1f8df07',NULL),
('6c3056e7-d2a1-4780-849a-228d5663ae19','491738882350','Sayın INNSTRABE , 248648996 nolu gönderiniz 10805 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248648996\n\nDear INNSTRABE , your shipment with 248648996 was delivered to you with the delivery code 10805. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248648996\n\n\nBICARGO','1','17a3d3ea-9822-46c1-a225-976edf021056',NULL),
('6c30986c-abe0-4b69-9d5b-366895dcd5e8','31641978848','Sayın HÜLYA MEŞE, 338411689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338411689\n\nDear HÜLYA MEŞE, your shipment with 338411689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338411689\n\nBICARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('6c330096-356c-4146-a777-b05e89bc05b5','491638282124','613601743 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7923 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613601743\n\nYour shipment with the number 613601743 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7923. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613601743\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('6c36f98c-de49-48af-8983-64b26c06d249','436609855451','Sayın FATMA KAYA, 371579541 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371579541\n\nDear FATMA KAYA, your shipment with 371579541 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371579541\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('6c38e441-0b72-4ca3-926b-27be0ffe584c','905336367828','Sayın yetkili; THOMAS TELAH adlı müşterinize 982681083 nolu gönderinizin koltuk takımı ürünü 4 parça halinde Comfortlife  adresinizden 12.06.2025 18:17:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('6c39b62c-9f37-491c-9785-cfb3666d91da','905075277637','MÜŞERREF GONCA adlı müşterinizin 745831913 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL),
('6c4264c3-6b37-4a8a-92a5-cefe9d5d79c3','905075277637','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM YATAK ODASI  (KARYOLASIZ) ürünü 16 parça halinde ACCA adresinizden 27.05.2025 17:26:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('6c4396fc-c9b8-40b1-93dc-213e7e9a7363','905313340045','HÜSEYİN ELİF TUNCA  adlı müşterinizin 437809521 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','090e53a7-9f47-40c2-990b-65dbc36b9e2c',NULL),
('6c44543f-fa12-4186-857f-e4f2f1cd2af5','4917632868288','Sayın DEMET DEDE, 478409459 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478409459\n\nDear DEMET DEDE, your shipment with 478409459 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478409459\n\nBICARGO','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('6c45420c-7b11-4c3f-88fd-1d0c71a34630','905073106101','MUHTEREM KAYA adlı müşterinizin 465891539 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL),
('6c475a3e-6e0f-4b62-bac2-9a8352129519','4917624864507','ŞÖFÖR İKETİŞİM\n					+905301824880','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('6c4cfb99-02eb-4027-8e78-34ed0ab2bcfd','4917647800347','319382208 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8504 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319382208\n\nYour shipment with the number 319382208 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8504. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319382208\n\nBICARGO','1','1b20804a-76a0-418e-b22d-40783c68915b',NULL),
('6c4d8b95-fcf4-43c3-9fa5-d226e4253459','905075277637','SSH ALPEREN DÜZENLİ  adlı müşterinizin 745863981 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('6c4ef351-8175-4ad4-876d-52144d1aeedf','491713800212','598102662 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8261 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598102662\n\nYour shipment with the number 598102662 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8261. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598102662\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('6c50de84-30d2-4c69-a3ad-79523254410e','33660617145','437233015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9297 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233015\n\nYour shipment with the number 437233015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9297. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437233015\n\nBICARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('6c511a2e-d0b6-4b03-ada4-a4e1fbf9f070','905461661672','Sayın yetkili; TÜLAY ÇAĞLAR adlı müşterinize 644637792 nolu gönderinizin MASA ürünü 2 parça halinde Masami Mobilya adresinizden 26.09.2025 14:51:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('6c52c793-e0fb-40a9-9519-0cae18297f25','905078062550','Sayın yetkili; SADİJE KAMBERİ adlı müşterinize 59841260 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 08.10.2025 14:50:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e1208ff-8f5b-4346-a832-196d997bdb96',NULL),
('6c5c49c7-c615-46e3-bb64-f7aa8ba13724','32470652077','Sayın SEYFETTİN, 268437547 nolu gönderiniz 1519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268437547\n\nDear SEYFETTİN, your shipment with 268437547 was delivered to you with the delivery code 1519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268437547\n\n\nBICARGO','1','e3d501f7-bb6a-427a-b83e-dcb6d20860d4',NULL),
('6c627e90-472d-4795-9f50-f291e45e46ec','4917664132163','371865484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371865484\n\nYour shipment with the number 371865484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371865484\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('6c6574b5-2336-4743-b0b6-329b67c5a044','4369911677447','Sayın GÜLÇİN İSMAİLÇEBİOĞLU, 31925609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31925609\n\nDear GÜLÇİN İSMAİLÇEBİOĞLU, your shipment with 31925609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31925609\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('6c6ab346-510d-45d5-844c-902c0fcdece3','4917681017112','598961911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9315 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961911\n\nYour shipment with the number 598961911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9315. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598961911\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('6c6bb8ef-f9b4-4975-9ec8-02d52e2a85ab','491781789912','Sayın POLAT, 412346704 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412346704\n\nDear POLAT, your shipment with 412346704 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412346704\n\nBICARGO','1','bb90725b-84e6-4211-8728-367d09c14525',NULL),
('6c6c3113-573e-48a5-94f9-a52fe695c360','905442774505','DEMET HANIM adlı müşterinizin 657640918 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('6c6c353d-34ea-4b29-813a-29f9fe54d49b','4917670477850','Sayın FATİH KAYA, 750845897 nolu gönderiniz 3268 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750845897\n\nDear FATİH KAYA, your shipment with 750845897 was delivered to you with the delivery code 3268. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750845897\n\n\nBICARGO','1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL),
('6c6c52b9-cea6-43f2-ac14-9942d661f117','374747383838848','Sayın GÜLSEN ERDİNÇ, 750717756 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750717756\n\nDear GÜLSEN ERDİNÇ, your shipment with 750717756 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750717756\n\nBICARGO','2','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('6c6fa854-1ce9-4381-a674-ed7c03a57f17','31648475188','Sayın SEMANUR KÜTÜKÇÜ, 750145910 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750145910\n\nDear SEMANUR KÜTÜKÇÜ, your shipment with 750145910 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750145910\n\nBICARGO','1','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL),
('6c7175cb-2d1d-4bfd-94b1-cab1d6be0a21','905078062550','Sayın yetkili; MELİSSA KARACAKAYA adlı müşterinize 598961911 nolu gönderinizin köşe modül ssh ürünü 1 parça halinde MERTSOY KOLTUK adresinizden 15.08.2025 16:21:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('6c735923-bb55-44a6-82fe-6148dc9c814f','905336367828','ŞAHİN DOROTHE adlı müşterinizin 98298396 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('6c758a9c-2c25-4bdb-9c33-c5144fb992ab','436767311848','Sayın HÜMEYRA ZEYREK, 37152330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37152330\n\nDear HÜMEYRA ZEYREK, your shipment with 37152330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37152330\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('6c772501-60d0-4aa8-a663-fa1a0709a011','33664834021','Sayın YASİN ARSLAN , 517205467 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517205467\n\nDear YASİN ARSLAN , your shipment with 517205467 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517205467\n\nBICARGO','1','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL),
('6c7cfcfa-604b-466e-9ce7-ca64eba04042','49015779002510','Sayın ROBERT HASİMOVOC, 982189682 nolu gönderiniz 6393 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982189682\n\nDear ROBERT HASİMOVOC, your shipment with 982189682 was delivered to you with the delivery code 6393. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982189682\n\n\nBICARGO','1','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL),
('6c7dc189-0e7d-4dc6-8975-68fc20ec1c83','905461661672','SEMA KUZULUK adlı müşterinizin 644653549 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('6c811143-e1fd-457c-969e-57f8f04aa391','905368336516','GAMZE ÖRSELOGLU adlı müşterinizin 515377519 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','04fb8dfc-07be-4e81-a060-8a8a6f53ef14',NULL),
('6c90a550-d9cc-4ecd-bc55-1edf867a531c','905301592882','ATAKAN OLCAYTÜRK adlı müşterinizin 910251573 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('6c90d0c8-cd47-48d8-8a95-0dc7fbaf520e','905075277637','BARAN YILDIZ adlı müşterinizin 745455914 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL),
('6c911ac6-91de-4697-bf3b-9ca52f415321','4917620715846','Sayın ABBAS GELERİ, 517914097 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517914097\n\nDear ABBAS GELERİ, your shipment with 517914097 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517914097\n\nBICARGO','1','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL),
('6c9645cd-8165-4d65-88cf-146cb5d007bf','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin PRADA ORTA SEHPA ürünü 2 parça halinde SERBEST MOB adresinizden 19.09.2025 14:49:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('6c974c2f-e218-4bab-8061-6abebdc96d32','905304259202','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin orta sehpa 2ad. ürünü 1 parça halinde Fatura adresinizden 21.05.2025 16:43:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('6c98ab12-931e-4bb3-bb23-5bd87de0a5fc','905331602195','SERKAN YILMAZ adlı müşterinizin 22145224 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('6c9f5b9a-4f7a-477d-92e8-7f70f8a99baf','905461661672','Sayın yetkili; HAKİF ZİNAL adlı müşterinize 644330933 nolu gönderinizin BLOK SEHPA ürünü 1 parça halinde Masami Mobilya adresinizden 17.06.2025 17:01:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('6ca221c1-2d0d-4ef3-8fdc-58ca72f225b6','905355928266','Hasan bey adlı müşterinizin 412800723 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6348c7e-4b86-444e-859f-29dce263d04b',NULL),
('6ca38098-daf2-4a0d-8788-1e335328f063','905325165070','Sayın yetkili; HASAN ÇETİNER adlı müşterinize 734230509 nolu gönderinizin RUGBY KÖŞE KOLTUK ürünü 3 parça halinde puffin adresinizden 03.02.2025 12:53:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3218de28-55a1-4ef9-97e9-ca2400fc4715',NULL),
('6ca404fc-36a7-4b96-8d20-f8482a650529','905332942204','Sayın yetkili; ADRİANNA WİEMANN adlı müşterinize 505724535 nolu gönderinizin sandalye ürünü 6 parça halinde mfour adresinizden 09.10.2025 16:33:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('6ca97758-15e8-4646-b7c5-7b762d94bf70','4915223038564','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('6cb0e871-5636-41ae-bd1d-ac583c583925','7627367263762632','İLETİŞİM\n					Furkan şöför = +905078826436','2','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('6cb17ed6-1661-4ff7-ac06-68968ba81fbe','5325000478','Sayın serhat serhat, 07.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9624207\nŞifre : 9624207\n			\nBİCARGO','1',NULL,'e9624207-f65d-451c-9ab0-5f510c811052'),
('6cb1fa92-6dc1-4bbd-ba61-939f2481cc53','491738798802','Sayın MELİKE ÇALIŞKAN, 598172413 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598172413\n\nDear MELİKE ÇALIŞKAN, your shipment with 598172413 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598172413\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('6cb9114c-f392-466d-9936-c477ec8df9b1','905335511664','NERMİNA SKENDERİ adlı müşterinizin 371749484 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('6cba6f52-c53f-488e-981a-c9a32e19a26f','905331602195','Sayın yetkili; BUNJAMİN HALİMİ  adlı müşterinize 221962516 nolu gönderinizin 100x220 cm traverten masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:59:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('6cbf2932-d831-45b3-993e-9420a6e69f22','905461661672','Sayın yetkili; MAZHAR BAYMAN adlı müşterinize 644903033 nolu gönderinizin SEHPA TAKIMI ürünü 2 parça halinde Masami Mobilya adresinizden 29.05.2025 17:37:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('6cc8b18f-87d3-4906-8da1-81f87917fedb','4915147542838','Sayın DERYA GÜLLER, 449627061 nolu gönderiniz 2238 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449627061\n\nDear DERYA GÜLLER, your shipment with 449627061 was delivered to you with the delivery code 2238. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449627061\n\n\nBICARGO','1','2bc13cda-c525-42a2-a315-a0390ae06337',NULL),
('6cc8b73e-7067-4923-9b6c-2b0f61a0ab97','4917660894702','478559056 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478559056\n\nYour shipment with the number 478559056 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478559056\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('6cc9f29c-12d0-40ce-9aef-303acff506ac','905356395415','MURAT  adlı müşterinizin 163548367 nolu gönderisi 52 parça halinde yola çıkmıştır.','1','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL),
('6cca43a6-867b-463a-a7da-ab7a27bedb42','905075277637','Sayın yetkili; SERHAT ÇAÇAN adlı müşterinize 745303876 nolu gönderinizin RAMS KOLTUK TAKIMI  ürünü 4 parça halinde Fatura adresinizden 03.02.2025 20:55:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('6cd143fe-f0ca-4f94-8d64-0a9a79ff2d28','905331602195','BURCU GELİR  adlı müşterinizin 221461818 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('6cd35beb-dd18-40be-9c72-0a2709259dcb','4917624125549','Sayın BURAK SOYSAL, 817893403 nolu gönderiniz 7410 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817893403\n\nDear BURAK SOYSAL, your shipment with 817893403 was delivered to you with the delivery code 7410. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817893403\n\n\nBICARGO','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('6cd44605-a9db-48f9-baf8-6eabd7bb678c','905461661672','SELİN ÖZALP adlı müşterinizin 644615727 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('6cd77347-1496-41b9-a375-bf1278406c07','004915738159369','Sayın YILDIRIM ASLAN, 614339204 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614339204\n\nDear YILDIRIM ASLAN, your shipment with 614339204 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614339204\n\nBICARGO','2','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('6ce2bfa5-f9f5-4e4e-b73e-af081138f0db','4915258150752','Sayın YILDIZ GÜNGÖR , 633870078 nolu gönderiniz 2391 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/633870078\n\nDear YILDIZ GÜNGÖR , your shipment with 633870078 was delivered to you with the delivery code 2391. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/633870078\n\n\nBICARGO','1','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL),
('6ce9e012-6466-4b08-8553-f29d443969a7','905350617509','ISMAİL REMMO adlı müşterinizin 61330729 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('6ceb0f93-09ac-4083-8541-47f7881d91c6','4915783935236','64455982 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9834 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64455982\n\nYour shipment with the number 64455982 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9834. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64455982\n\nBICARGO','2','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('6cf12411-1f59-4396-991c-bcf5c8ae6725','905075277637','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin VODA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 23.07.2025 12:50:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('6cf251b8-ec0b-4d5a-87ad-a2decedbd597','905325000478','Sayın yetkili; ALİ ÖZVEREN adlı müşterinize 412722649 nolu gönderinizin Koltuk ürünü 4 parça halinde Fatura adresinizden 11.10.2025 15:16:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('6cf9fa15-2262-4fd2-aa9c-7a67b64270cd','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin LAMBADER ürünü 1 parça halinde Fatura adresinizden 01.10.2025 16:30:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('6cff9b99-0383-4d6e-b946-b7b37061d748','491702765634','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('6d000fe0-2eef-4648-8cb5-de895989e85b','3165428312','Sayın ESRA TEZCAN, 478778231 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478778231\n\nDear ESRA TEZCAN, your shipment with 478778231 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478778231\n\nBICARGO','2','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL),
('6d026bcd-ff2b-47ee-9936-68f8db975fc7','905079358213','Sayın yetkili; ERCAN VARSAK SSH  adlı müşterinize 745282619 nolu gönderinizin MASA KAYITI  ürünü 1 parça halinde Fatura adresinizden 03.09.2025 12:55:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('6d0863ef-9a64-4baf-bed0-1f94a0b4803a','905069116877','BURAK SOYSAL adlı müşterinizin 817893403 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('6d097470-3192-479d-bd72-173b8d078cee','436507400301','478474988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10272 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478474988\n\nYour shipment with the number 478474988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10272. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478474988\n\nBICARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('6d12af27-2b85-4a28-a258-7fe40cafc18f','33767512328','Sayın MİHRİBAN ÖZEN, 644776565 nolu gönderiniz 5205 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644776565\n\nDear MİHRİBAN ÖZEN, your shipment with 644776565 was delivered to you with the delivery code 5205. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644776565\n\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('6d12ecbe-a5e7-4923-aeff-6bda795f3785','0032487655588','Sayın MEHDİ NAEİMİ, 319275080 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319275080\n\nDear MEHDİ NAEİMİ, your shipment with 319275080 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319275080\n\nBICARGO','2','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('6d13723a-765f-46fc-ac5a-d24fcaca312d','33680267085','126922033 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7225 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126922033\n\nYour shipment with the number 126922033 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7225. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126922033\n\nBICARGO','1','9f748f02-e185-45e0-9d24-ee921761490f',NULL),
('6d153a6d-10af-4418-a6b3-dd52c40aa8a8','905461661672','SEPAN MOHAMMED adlı müşterinizin 644107524 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('6d19ec29-6885-45e7-90ef-dafc90e5352d','5325000478','Sayın MURAT KAYA, 29.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5163627\nŞifre : 5163627\n			\nBİCARGO','1',NULL,'516f3f6e-2ef7-47cb-83a8-b799f3e0916b'),
('6d2338a7-200c-4eb6-9ab1-e136b0683995','436765735090','Sayın VOLKAN ARAZ, 745553590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745553590\n\nDear VOLKAN ARAZ, your shipment with 745553590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745553590\n\nBICARGO','1','6220c77f-761e-462c-a359-ad8d9ba79902',NULL),
('6d28fb5d-f9f5-4b7b-bc21-8110260f8f13','905336367828','MİNE GÖKÜZÜM adlı müşterinizin 982992264 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL),
('6d2ab28e-a010-4ed8-85cd-b2d3b2ea4fc9','41765187366','Sayın SÜMEYYE KARAMAN, 428958532 nolu gönderiniz 2235 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428958532\n\nDear SÜMEYYE KARAMAN, your shipment with 428958532 was delivered to you with the delivery code 2235. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428958532\n\n\nBICARGO','1','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL),
('6d2f2552-8ffc-4d0c-bf13-2e14976e11e3','905079358213','HÜSEYİN ÖÇAL SSH  adlı müşterinizin 745350597 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('6d2fbb1a-1ff6-43f9-99eb-8380943caf2e','905331602195','Sayın yetkili; ABARDİ NOURDİN adlı müşterinize 221624848 nolu gönderinizin 70x120 orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:51:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('6d344b0f-42c5-4f97-8161-73b1324822ec','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:56:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('6d35b681-fc99-410b-a2e1-eaa52185ca76','491784042586','Sayın ONUR ÖZÇELİK, 371695056 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371695056\n\nDear ONUR ÖZÇELİK, your shipment with 371695056 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371695056\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('6d3623e2-1039-4d94-81e7-22dadc46331f','905079358213','MEHMET BAYTOK SSH adlı müşterinizin 745253500 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('6d3a1bee-b4b5-46c1-9450-aa9e3fa6c744','905336367828','Sayın yetkili; AMELA MULİC  adlı müşterinize 982972858 nolu gönderinizin masa  ürünü 1 parça halinde Brn mobilya  adresinizden 15.11.2024 15:43:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('6d3d729e-87fb-47e6-8d6c-341154376f32','4917663056847','478120731 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1846 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478120731\n\nYour shipment with the number 478120731 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1846. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478120731\n\nBICARGO','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('6d3d8b25-b5eb-4422-9fee-3ee8f2ada882','905428209234','Sayın yetkili; USJJS AL adlı müşterinize 319928581 nolu gönderinizin SANDALYE ürünü 1 parça halinde Fatura adresinizden 26.12.2024 13:19:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35cd7f79-46ea-4b11-b481-f22dd082a5d0',NULL),
('6d3db01a-8bec-4e42-916f-9e1e796738f8','905301592882','NURAN YILDIRIM adlı müşterinizin 910561299 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('6d45820f-9af2-4e6c-aaa4-ed605f0fa413','491747474640','910972908 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910972908\n\nYour shipment with the number 910972908 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910972908\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('6d478275-ceb3-44d2-bb89-a160624b53f4','905301592882','NESLİHAN KÖSEM		 adlı müşterinizin 910316067 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('6d47d607-ecdd-4284-bb44-63cc7cf55681','32470620199','64415501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64415501\n\nYour shipment with the number 64415501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64415501\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('6d485950-5581-4046-9036-938d8770f361','905079358213','Sayın yetkili; MEHMET KIRMALI adlı müşterinize 745471905 nolu gönderinizin KING PLATİN YATAK 140 ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:25:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('6d4c02d7-2b20-4f8c-bca7-536a5edde692','4917612343333','Sayın HAKAN AKDAĞ, 412418230 nolu gönderiniz 8735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412418230\n\nDear HAKAN AKDAĞ, your shipment with 412418230 was delivered to you with the delivery code 8735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412418230\n\n\nBICARGO','1','f0b553df-a781-4ccd-a273-f9c311927595',NULL),
('6d4dfff1-5178-49dd-8051-c778202193e8','905421855834','NAGİHAN ALKIRAN adlı müşterinizin 338829299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('6d53192f-c994-4977-8e5d-5b5026d326bf','491778507163','455460659 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10147 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455460659\n\nYour shipment with the number 455460659 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10147. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455460659\n\nBICARGO','1','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL),
('6d538159-2e9f-4742-8bb3-b7852c3f762b','905325000478','ELİF HANIM adlı müşterinizin 412871738 nolu gönderisi 99 parça halinde yola çıkmıştır.','1','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL),
('6d574e08-61e1-4fd0-8e8d-cac5347ec731','905331602195','HİLAL YILDIZ-MERT YETGİN adlı müşterinizin 221440431 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('6d59ec32-9e15-4b53-a975-2de36c07f5ba','905335511664','SAFİYE TINCA adlı müşterinizin 371194748 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('6d5b046d-e1a2-4afc-8951-5cf30a7788cf','905331602195','Sayın yetkili; FİRDEVS ORHAN adlı müşterinize 221407228 nolu gönderinizin 200 cm Tv ünitesi ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:03:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('6d5bd116-0da3-4c83-abfe-57408e4e751e','905079358213','Sayın yetkili; ÖZGÜR YILDIRIM adlı müşterinize 745302940 nolu gönderinizin ÜÇLÜ KOLTUK 2 ADET  ürünü 3 parça halinde Fatura adresinizden 22.01.2025 11:44:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('6d608c69-9d25-4156-b3cf-9c0550ed9f76','905349208933','Sayın yetkili; ZEYNEP KORKMAZ adlı müşterinize 127659069 nolu gönderinizin masa ve sehpa ürünü 3 parça halinde azur  adresinizden 21.02.2025 17:22:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('6d60bcba-3b64-46c0-9643-7a3f8da368ee','33787094714','Sayın ZEYNEP ALKIŞ, 745964132 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745964132\n\nDear ZEYNEP ALKIŞ, your shipment with 745964132 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745964132\n\nBICARGO','1','3f82ae91-19cb-4663-bb33-377d660eea84',NULL),
('6d648db8-9a3b-4415-a011-c3ca72b5d8cb','905321608709','AZEM SATTAR adlı müşterinizin 248158562 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('6d672451-81df-4d1d-9cac-514bcf1395bc','33626422127','Sayın BOUSLİMAİN ECHOUAK, 982868918 nolu gönderiniz 1708 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982868918\n\nDear BOUSLİMAİN ECHOUAK, your shipment with 982868918 was delivered to you with the delivery code 1708. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982868918\n\n\nBICARGO','1','24096b71-5b5e-4da8-9191-8e3168102053',NULL),
('6d7c5194-c20e-4ebf-88d3-6c068c259492','4917681017112','Sayın MELİSSA KARACAKAYA, 598961911 nolu gönderiniz 9315 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598961911\n\nDear MELİSSA KARACAKAYA, your shipment with 598961911 was delivered to you with the delivery code 9315. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598961911\n\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('6d7deef8-641a-4e83-b00a-2d99fdc09d9d','4915904737735','Sayın ANIL ÇOKBİLİR, 644584641 nolu gönderiniz 10343 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644584641\n\nDear ANIL ÇOKBİLİR, your shipment with 644584641 was delivered to you with the delivery code 10343. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644584641\n\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('6d8803bf-1147-4db5-ba25-421083fa4a15','905304259202','EDİZ DİNLER adlı müşterinizin 478783487 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('6d8901ff-d38f-4212-86d7-e61eb33c2ec5','491624583604','Sayın FARUK EMRE KAYA, 478418480 nolu gönderiniz 6120 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478418480\n\nDear FARUK EMRE KAYA, your shipment with 478418480 was delivered to you with the delivery code 6120. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478418480\n\n\nBICARGO','1','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL),
('6d8a7357-614a-4ce5-aba3-91abab05b27f','905335511664','SOFİA KYRİAKİDOU adlı müşterinizin 371186967 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('6d9096dc-592a-4f3d-8f6c-af58381fc57f','4915904737735','644584641 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10343 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644584641\n\nYour shipment with the number 644584641 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10343. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644584641\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('6d91bfa8-f986-4103-8915-fb933b4709a9','905304259202','YETKİN TOKER adlı müşterinizin 478120731 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','71ea314b-7a45-4dd6-ac6a-722d8715f15e',NULL),
('6d9620a0-1dd9-4596-a319-2a7cf6668643','491786788734','Sayın GİZEM TIRPAN, 37140435 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37140435\n\nDear GİZEM TIRPAN, your shipment with 37140435 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37140435\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('6d99788d-18b2-4805-b14d-176151736b5f','33676203285','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('6d9a58c6-0630-4830-84c5-e1673d38aad1','491747392825','745629044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745629044\n\nYour shipment with the number 745629044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745629044\n\nBICARGO','1','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL),
('6da195ea-b8b8-4bc8-bf94-0b722c60db0d','4915738614883','Sayın LORİSWOOD, 412139015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412139015\n\nDear LORİSWOOD, your shipment with 412139015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412139015\n\nBICARGO','1','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL),
('6da32203-789f-4a63-861c-66eea7d17ad3','491781529585','Sayın KUDRET KALK, 371804669 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371804669\n\nDear KUDRET KALK, your shipment with 371804669 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371804669\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('6da53c00-f94b-45b5-9b52-e2518cde5a62','905078062550','Sayın yetkili; GÜLNUR ENGİN adlı müşterinize 598585736 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 22.07.2025 17:02:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('6da54906-30e9-49a6-9a1a-eb519e39988c','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde 3ARDEKO KOLTUK adresinizden 10.03.2025 11:34:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('6da5ad5d-527e-40e2-be87-d213bdcb04d6','4917681316361','Sayın BETÜL GÜNER, 644550858 nolu gönderiniz 4359 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644550858\n\nDear BETÜL GÜNER, your shipment with 644550858 was delivered to you with the delivery code 4359. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644550858\n\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('6da636c7-0a99-4bb3-98b7-aa96336d2ece','4917632147972','Sayın FURKAN BARUT, 644644143 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644143\n\nDear FURKAN BARUT, your shipment with 644644143 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644644143\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('6da8463d-7ff7-4cdd-abba-bb613b3d07ea','905313340045','CEM BÜYÜKDEMİRCİ adlı müşterinizin 437545074 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('6da9e1bb-2e6f-4840-b952-a0e6e6bd78a9','905078062550','Sayın yetkili; İBRAHİM TÜRK adlı müşterinize 598479723 nolu gönderinizin masa sehpa ürünü 5 parça halinde RİO FATİH adresinizden 19.09.2025 10:24:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5dbeb578-3815-46c4-8be9-34c6782e8dab',NULL),
('6dafa011-0292-4605-9101-dc73436b4c4e','3361479705','478417862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478417862\n\nYour shipment with the number 478417862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478417862\n\nBICARGO','2','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('6db0f66d-d414-4dd2-aac4-e7a5fb5fe381','4917664963406','644664237 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644664237\n\nYour shipment with the number 644664237 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644664237\n\nBICARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('6db35580-f353-40f0-a85f-74ac71ab841a','905075277637','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MERMER DESEN SEHPA  ürünü 1 parça halinde Fatura adresinizden 18.06.2025 17:45:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('6dc4ff41-bfef-4049-8c3a-3ade32a9eea1','4917682107795','İLETİŞİM\n					Furkan şöför = +905078826436','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('6dc9cb2b-1b21-40a6-b3ae-c70c872d71ee','905357955726','ALİ ÖZ adlı müşterinizin 315389904 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL),
('6dcad8d3-96ca-434f-89f5-1e8087d219fc','905304259202','MUHAMMET ÖZKAN adlı müşterinizin 47830878 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('6dcdb778-407f-43ad-baf4-94ff29838b05','41782412222','Sayın BUNJAMİN HALİMİ , 221962516 nolu gönderiniz 10054 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221962516\n\nDear BUNJAMİN HALİMİ , your shipment with 221962516 was delivered to you with the delivery code 10054. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221962516\n\n\nBICARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('6dd1f6af-236e-4361-b92c-497c2215d822','491787704238','Sayın RECEP TABAKOĞLU, 371601782 nolu gönderiniz 6555 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371601782\n\nDear RECEP TABAKOĞLU, your shipment with 371601782 was delivered to you with the delivery code 6555. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371601782\n\n\nBICARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('6dd46b1a-aa24-44d3-b34f-37a809615280','491722839598','478325717 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3271 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478325717\n\nYour shipment with the number 478325717 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3271. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478325717\n\nBICARGO','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('6dd5a3d1-04ac-4228-af36-91827711c5c6','905461661672','SEPAN MOHAMMED adlı müşterinizin 644107524 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('6dd5ad58-0eb2-4cd4-a667-0e41110aeaac','33771744012','Sayın TAKİ ÇAYCI(K), 644257752 nolu gönderiniz 3121 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644257752\n\nDear TAKİ ÇAYCI(K), your shipment with 644257752 was delivered to you with the delivery code 3121. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644257752\n\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('6dd8febb-af54-4012-8213-05935e2cefba','436765207297','Sayın MARİA JONANOVİC, 449417757 nolu gönderiniz 10627 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449417757\n\nDear MARİA JONANOVİC, your shipment with 449417757 was delivered to you with the delivery code 10627. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449417757\n\n\nBICARGO','1','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL),
('6dd97cad-1710-4ada-b0f7-3f808ee3a60c','436601407495','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('6de05ae5-781f-4686-9574-d8621314854d','4917644265407','Sayın MEHMET KIRMALI SSH, 745961245 nolu gönderiniz 10773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745961245\n\nDear MEHMET KIRMALI SSH, your shipment with 745961245 was delivered to you with the delivery code 10773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745961245\n\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('6de10cda-bc8a-49d8-9d14-225bc08cd741','905075277637','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin MERMER DESEN MASA + İKİLİ SEHPA  ürünü 4 parça halinde GÜMÜŞ MASA adresinizden 28.07.2025 17:03:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('6de2eff2-8174-48c5-b508-1a129c53f59b','33610635771','Sayın OSMANAJ VALDRİN, 221746947 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221746947\n\nDear OSMANAJ VALDRİN, your shipment with 221746947 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221746947\n\nBICARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('6de572cd-a057-4f98-b061-af49402cf36e','33768242208','Sayın HALİL İBRAHİM AKALIN , 1936694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/1936694\n\nDear HALİL İBRAHİM AKALIN , your shipment with 1936694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/1936694\n\nBICARGO','1','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL),
('6dea2fc2-c65b-42a2-8907-03bd8b4c8f8c','491634722211','478342417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8018 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478342417\n\nYour shipment with the number 478342417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8018. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478342417\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('6dec2862-0b58-4765-ab74-296affd1aa1d','905423036885','ALMİRA adlı müşterinizin 920610594 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('6df5ff76-1002-458e-86ec-94c70c695db4','905461661672','REİNAS HAİDARİ adlı müşterinizin 644884110 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('6e01e405-fe8e-4644-9166-fb56880e8319','905456068312','HÜSEYİN GÜNGÖRMEZ adlı müşterinizin 655111652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5520c68-91f4-4a26-99dc-18b77f9d5c29',NULL),
('6e03a816-67db-42ca-b98d-7d8d95d44e05','905515519191','HASAN BEY adlı müşterinizin 44831715 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL),
('6e0568ab-111c-4e0f-92d7-8b117cdd14ce','33602366647','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('6e071634-7b5a-4137-968c-77881b556936','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin şifonyer ürünü 1 parça halinde Fatura adresinizden 25.05.2025 13:53:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('6e1749aa-6a19-4348-b49a-c0df43703e17','33786985474','982405831 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8708 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982405831\n\nYour shipment with the number 982405831 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8708. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982405831\n\nBICARGO','1','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL),
('6e193911-8b68-411f-aeb2-fc86805ab4b6','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 13.03.2025 16:45:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('6e1d7d5a-f905-4273-a1e5-9d9e5f4ab1b2','436602591422','Sayın ALİ ÖZ, 315389904 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/315389904\n\nDear ALİ ÖZ, your shipment with 315389904 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/315389904\n\nBICARGO','1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL),
('6e1eb1f7-f8d9-441f-8b82-8adf03fa7c2a','33763000176','478335843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478335843\n\nYour shipment with the number 478335843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478335843\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('6e1ff581-c068-4e89-a406-90f140c32948','4915208602802','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('6e2107ae-4873-4ee0-af85-3e23321c014a','33783081098','Sayın SELEN SEMERCİ, 428326285 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428326285\n\nDear SELEN SEMERCİ, your shipment with 428326285 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428326285\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('6e258bb3-18bb-4cd2-a3a9-73b80c8427d7','905313340045','SERAP ÖZTEK adlı müşterinizin 437660658 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('6e27e273-4f39-4f79-a486-b0f9fa6d8dd2','905079358213','CANSU YENİLMEZER SSH adlı müşterinizin 745124199 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('6e2a04e2-fd3a-4af1-aa40-a3a5e04a127f','4915776398644','Sayın NURCAN MANSUR, 478377442 nolu gönderiniz 7273 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478377442\n\nDear NURCAN MANSUR, your shipment with 478377442 was delivered to you with the delivery code 7273. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478377442\n\n\nBICARGO','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('6e2e5a1a-d787-4591-ba5c-8da797a3fb5f','4917680243657','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('6e3397a7-8d0b-4832-9d93-8e3f4584a205','905332942204','Sayın yetkili; MONİCA TODERAŞ adlı müşterinize 505597041 nolu gönderinizin masa ve sandalye  ürünü 9 parça halinde Fatura adresinizden 21.07.2025 12:52:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('6e351e3f-6a6d-47ba-b68b-3517364f8529','905325998198','ABDİL ACAR adlı müşterinizin 61467762 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bceef6ba-e1ee-4daa-b926-518c0bbcce5d',NULL),
('6e360c93-dd5c-4770-b767-1537272d72a6','905079358213','Sayın yetkili; YUSUF SARIKAN adlı müşterinize 745767667 nolu gönderinizin BONNY KÖŞE TAKIMI ürünü 5 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 27.03.2025 17:16:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('6e370674-8bde-4ab6-b6c1-9c46df570786','905052681508','Sayın yetkili; NURTEN BALCI adlı müşterinize 504809900 nolu gönderinizin Sandelye  ürünü 3 parça halinde Ard sandelye  adresinizden 20.10.2025 10:38:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf6d827f-7ff6-4e1e-948c-99dab63704e4',NULL),
('6e37f696-476e-4c48-8f41-f74e638aca32','905356503956','412316933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3156 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412316933\n\nYour shipment with the number 412316933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3156. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412316933\n\nBICARGO','1','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL),
('6e444214-c64b-4eab-aacb-803a904c6ed7','4915752948798','745933378 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745933378\n\nYour shipment with the number 745933378 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745933378\n\nBICARGO','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('6e44ec51-78a1-4da5-ada6-c24c5701ca08','436606319101','Sayın ALİ CAN YILMAZ, 371102325 nolu gönderiniz 4364 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371102325\n\nDear ALİ CAN YILMAZ, your shipment with 371102325 was delivered to you with the delivery code 4364. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371102325\n\n\nBICARGO','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('6e48d870-771b-40c5-b7ff-451afb39d8e8','152636273636363','Sayın AAAAAA, 248135683 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248135683\n\nDear AAAAAA, your shipment with 248135683 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248135683\n\nBICARGO','2','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL),
('6e4ca416-75ae-4d24-b096-436e1a6e4482','905313340045','Sayın yetkili; SELİN URAK adlı müşterinize 437152964 nolu gönderinizin Sandalye ürünü 4 parça halinde ard sandalye adresinizden 03.09.2025 16:05:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('6e4ed3b5-7f04-4d20-95cb-5f50401dc2d6','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin baza bırakılıp 6 kapaklı dolap alınacak ürünü 7 parça halinde AREA adresinizden 16.10.2025 14:53:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('6e5ebbca-3661-4dc6-8806-adb3eab02f4a','4917676733022','Sayın MERİÇ KARACAN , 570417524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/570417524\n\nDear MERİÇ KARACAN , your shipment with 570417524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/570417524\n\nBICARGO','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('6e637146-efd1-4e98-aec7-997715eed028','32478764812','Sayın KELLY DE VOS , 221560581 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221560581\n\nDear KELLY DE VOS , your shipment with 221560581 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221560581\n\nBICARGO','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('6e63cf21-a97f-41a5-83a7-5467ca3f8a6b','33767846954','Sayın ALİ ŞİMŞEK, 982333020 nolu gönderiniz 3550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982333020\n\nDear ALİ ŞİMŞEK, your shipment with 982333020 was delivered to you with the delivery code 3550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982333020\n\n\nBICARGO','1','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('6e699c3e-3864-4e46-8bf0-42f5eecdfd68','905459011033','DRANCY MEUBLE adlı müşterinizin 268443203 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','c83b1650-e8ef-42b8-bd59-85142002c440',NULL),
('6e6e5890-428d-4d91-b35e-83bdde00629a','4917624748581','Sayın YUSUF KAYA, 655200069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655200069\n\nDear YUSUF KAYA, your shipment with 655200069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655200069\n\nBICARGO','1','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL),
('6e71ba4d-c3fc-4e2a-9f74-b39987eefd14','905325000478','MOWO adlı müşterinizin 412757132 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL),
('6e7a6f6f-e8c5-455b-b32c-dccb3a0a35f0','905350617509','Sayın yetkili; SAUDİN CURİC adlı müşterinize 613745862 nolu gönderinizin Masa ürünü 5 parça halinde Masami adresinizden 30.07.2025 11:10:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8',NULL),
('6e810b1d-a11a-4506-94af-0ce7d5745058','4915222621206','371183095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3562 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371183095\n\nYour shipment with the number 371183095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3562. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371183095\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('6e8b475c-4dac-4780-b894-5f2366c02f67','491778339684','745278745 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4664 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745278745\n\nYour shipment with the number 745278745 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4664. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745278745\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('6e970ef2-4f9b-44c3-99aa-ab5178f98c7d','905336367828','QASIM MOHAMMADİ adlı müşterinizin 982331367 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL),
('6e9a6f2b-47d2-4950-8f99-b5a4e3330ba1','905336367828','BOUDJELLOLİ LAKHAR adlı müşterinizin 982340056 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL),
('6e9f4062-419c-436e-9002-e55b16fdaf20','33652627588','982408783 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6095 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982408783\n\nYour shipment with the number 982408783 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6095. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982408783\n\nBICARGO','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('6ea26023-6b3d-41ac-91c6-96b863a77e92','491626958911','644520957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7427 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644520957\n\nYour shipment with the number 644520957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7427. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644520957\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('6ea705e6-d637-4ce0-984e-1299301cbafc','905363385813','SONGÜL GÜRKAN adlı müşterinizin 976843037 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('6ea73a65-92e8-4147-a5d8-4b3978f9b407','905336367828','RERHAYE KHADJA  adlı müşterinizin 982834531 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('6eb89f16-5988-4b5c-b23d-519a13360c34','33681254075','Sayın FATMA KARAHAN, 478346989 nolu gönderiniz 1476 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478346989\n\nDear FATMA KARAHAN, your shipment with 478346989 was delivered to you with the delivery code 1476. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478346989\n\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('6eb9b0a9-3ab5-44a2-a531-2f606fcbf895','905461661672','Sayın yetkili; KÜRŞAT OKUTAN adlı müşterinize 644377360 nolu gönderinizin SANDALYE ürünü 6 parça halinde DURMUŞLAR SANDALYE adresinizden 08.07.2025 14:15:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('6eb9bbc7-cede-498f-88aa-a08280b0f181','491735396163','371626943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2983 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371626943\n\nYour shipment with the number 371626943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2983. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371626943\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('6ebcd63b-707e-4644-b137-80f83f52eb68','33761750666','Sayın MEHMET KIZILDERE, 501488750 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501488750\n\nDear MEHMET KIZILDERE, your shipment with 501488750 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501488750\n\nBICARGO','1','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL),
('6ebf911d-e912-47bc-97ce-7a1b1bf1a202','4915258150752','Sayın YILDIZ GÜNGÖR , 633870078 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/633870078\n\nDear YILDIZ GÜNGÖR , your shipment with 633870078 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/633870078\n\nBICARGO','1','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL),
('6ec5d38b-ce5e-45f9-bd98-8daba628995c','491728865904','Sayın MUSTAFA ÖZTAŞ, 644147833 nolu gönderiniz 6489 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644147833\n\nDear MUSTAFA ÖZTAŞ, your shipment with 644147833 was delivered to you with the delivery code 6489. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644147833\n\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('6eca9e9d-b4d3-4eab-a5d8-580c63758ce3','905534084469','Sayın yetkili; NEVZAT HACIOĞLU adlı müşterinize 15153034 nolu gönderinizin SANDALYE ürünü 4 parça halinde Fatura adresinizden 21.04.2025 14:05:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('6ecaf21a-b7d8-47af-a9bb-33a6b07e40dd','33621123208','Sayın İBRAHİM TANKAZ, 47815812 nolu gönderiniz 2407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47815812\n\nDear İBRAHİM TANKAZ, your shipment with 47815812 was delivered to you with the delivery code 2407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47815812\n\n\nBICARGO','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('6ed34312-b464-4c06-9571-94385a2f312a','905313340045','Sayın yetkili; CEM BÜYÜKDEMİRCİ adlı müşterinize 437545074 nolu gönderinizin Sandalye ürünü 6 parça halinde MFOUR SANDALYE adresinizden 03.09.2025 15:00:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('6ed558e7-8dbb-453b-acb0-0f6a1bf204e4','905335511664','GİZEM TIRPAN adlı müşterinizin 37140435 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('6ed7a2b0-8f3f-4146-be4a-6d3c8bae41ca','905054335859','OGUZHAN SARP adlı müşterinizin 501345257 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('6edeedd1-4338-4ba4-8116-d5e7a438acee','4917662786074','Sayın JULJANA TARLLAMİSHAJ , 613568438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613568438\n\nDear JULJANA TARLLAMİSHAJ , your shipment with 613568438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613568438\n\nBICARGO','1','0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2',NULL),
('6ee102c2-da1d-4f3a-a0ff-8b7bef40fd1d','436603406293','SEVDE SOYUÖZ adlı müşterinizin 675253974 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('6ee430ac-6d87-440c-9ce7-56c28d0eee0b','33771550561','Sayın SULTAN GÖR, 478885043 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478885043\n\nDear SULTAN GÖR, your shipment with 478885043 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478885043\n\nBICARGO','1','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('6ee9b540-3425-41be-a3e5-94113ea62656','4917663208908','Sayın ERFURT  MOBİLYA KOLTUK, 248568702 nolu gönderiniz 6613 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248568702\n\nDear ERFURT  MOBİLYA KOLTUK, your shipment with 248568702 was delivered to you with the delivery code 6613. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248568702\n\n\nBICARGO','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('6ee9f048-0318-416c-9aee-7dbca6e34e1e','905336367828','Sayın yetkili; SELAMAWİT ESTİFANOS  adlı müşterinize 982495052 nolu gönderinizin Tv Ünütesi  ürünü 2 parça halinde Palermo mobilya  adresinizden 20.01.2025 18:01:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('6eea235d-0e01-4e03-affc-0b07cb952550','905331602195','Sayın yetkili; SANAA ARGANE adlı müşterinize 221573899 nolu gönderinizin 90x190 cm milas beyaz masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:38:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('6eea6c1e-61ef-4217-9c43-2a4ca52b7af7','4917664273200','Sayın REBEKKA İRMER, 644113100 nolu gönderiniz 2735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644113100\n\nDear REBEKKA İRMER, your shipment with 644113100 was delivered to you with the delivery code 2735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644113100\n\n\nBICARGO','2','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('6eea7f70-530d-483d-901b-ebeca0c2f62e','33617505236','Sayın MEO JONATHON, 437452475 nolu gönderiniz 8813 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437452475\n\nDear MEO JONATHON, your shipment with 437452475 was delivered to you with the delivery code 8813. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437452475\n\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('6eeb386c-967d-4a61-9e9c-9fe7b96cc329','436763676926','Sayın IVANA JURCEVİC, 437869312 nolu gönderiniz 4317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437869312\n\nDear IVANA JURCEVİC, your shipment with 437869312 was delivered to you with the delivery code 4317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437869312\n\n\nBICARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('6eed14f7-97fe-4404-8bdb-ce00ae65ad3b','4915737582950','455477301 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8793 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455477301\n\nYour shipment with the number 455477301 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8793. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455477301\n\nBICARGO','1','049cec7b-ec44-4295-afa5-768b2786337d',NULL),
('6eeecf8c-6f90-4b03-b9b5-21997a3a14f1','905331602195','AHMED AZEEZ  adlı müşterinizin 221364325 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('6ef2a9b1-9005-404a-ab89-30e4296d94b2','905461661672','Sayın yetkili; İSA ALTUNER(K) adlı müşterinize 644422105 nolu gönderinizin TRAVERTEN SİZDE ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 08.09.2025 12:27:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('6ef4d7f1-f67e-4b68-a364-65c17a98ab10','905078062550','ROJDA BİNGÖL adlı müşterinizin 598665171 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('6ef83f6b-7170-42a9-80a2-6d0657913b18','905079358213','Sayın yetkili; MEHMET KIRMALI adlı müşterinize 745471905 nolu gönderinizin FELİX KÖŞE TAKIMI ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:25:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('6efe4df5-f8bc-41f7-a0b8-9aa85cba90dd','905335511664','ELİF KAVUCUK adlı müşterinizin 37197237 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('6efe6181-82c1-4824-93c0-df1d71d6deba','905301592882','BİRCAN ŞAHİN adlı müşterinizin 91074356 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('6f089bc3-20b0-4c18-94cd-2272abcce3ce','4915739316619','Sayın OKAN CORAMAN, 745980941 nolu gönderiniz 8167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745980941\n\nDear OKAN CORAMAN, your shipment with 745980941 was delivered to you with the delivery code 8167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745980941\n\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('6f0bc4a9-3181-4304-b305-be735663794b','41763213206','735271543 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735271543\n\nYour shipment with the number 735271543 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735271543\n\nBICARGO','1','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL),
('6f18142f-99c6-4e8d-b85c-06241a31c597','905079358213','Sayın yetkili; MEHMET ANDIÇ adlı müşterinize 745759881 nolu gönderinizin TOFİ BERJER  ürünü 2 parça halinde VAAV adresinizden 25.09.2025 11:27:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('6f1b5673-cb4c-49b7-9e13-a857afeeaf35','32467611773','478245028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3525 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478245028\n\nYour shipment with the number 478245028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3525. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478245028\n\nBICARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('6f1c3225-8668-47dd-a409-c588dd67f853','905331602195','DİJWAR TAŞÇEVİREN adlı müşterinizin 221485829 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('6f1c87cd-9e95-470e-9a4c-c7addc781dcd','4917620552211','248284961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4038 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248284961\n\nYour shipment with the number 248284961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4038. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248284961\n\nBICARGO','1','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL),
('6f2033f6-c8d3-41a1-8682-0affde686099','4917632298382','Sayın ERCAN VARSAK SSH , 745282619 nolu gönderiniz 5475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745282619\n\nDear ERCAN VARSAK SSH , your shipment with 745282619 was delivered to you with the delivery code 5475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745282619\n\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('6f2368f2-320d-4018-bad8-5419ae47e03a','32465396386','Sayın TAYSUMA ESET, 221944135 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221944135\n\nDear TAYSUMA ESET, your shipment with 221944135 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221944135\n\nBICARGO','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('6f2ac348-b03b-440e-8873-fd2f8d8c578d','491702765634','Sayın ERKAN URAL, 5983047 nolu gönderiniz 4782 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/5983047\n\nDear ERKAN URAL, your shipment with 5983047 was delivered to you with the delivery code 4782. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/5983047\n\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('6f2b5b1b-2bfc-4d8e-a84a-5a6571054220','31641978848','Sayın HÜLYA MEŞE, 338411689 nolu gönderiniz 4962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338411689\n\nDear HÜLYA MEŞE, your shipment with 338411689 was delivered to you with the delivery code 4962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338411689\n\n\nBICARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('6f3006ba-4f33-4ff0-939c-61b26c5403ca','905331602195','Sayın yetkili; MERYEM BERK  adlı müşterinize 221583384 nolu gönderinizin Milas masa 90*150 cm ürünü 3 parça halinde Fatura adresinizden 08.01.2025 11:22:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('6f306aff-9552-4dec-843b-f2d03662da6a','491708511252','Sayın MELİKE BAYINDIR, 371398805 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371398805\n\nDear MELİKE BAYINDIR, your shipment with 371398805 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371398805\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('6f373a79-e77a-4233-b688-ce20c00b5ac7','905461661672','Sayın yetkili; AMAL EL JABBARİ adlı müşterinize 644789157 nolu gönderinizin Orta sehpa ürünü 2 parça halinde Masami Mobilya adresinizden 28.04.2025 17:26:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('6f42a09b-5332-4743-b8e2-f55829c0762a','4363702086493','Sayın EDOLİNA AJETİ REXHEPİ, 478749881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478749881\n\nDear EDOLİNA AJETİ REXHEPİ, your shipment with 478749881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478749881\n\nBICARGO','2','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('6f464420-2ec2-4189-bbc4-30bb88e883b8','4917621775296','Sayın OMER AL HASHİMİ, 248203029 nolu gönderiniz 1635 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248203029\n\nDear OMER AL HASHİMİ, your shipment with 248203029 was delivered to you with the delivery code 1635. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248203029\n\n\nBICARGO','2','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL),
('6f472508-456f-42d7-a898-5ea8c1f93a6d','905363385813','YUSUF ADIGÜZEL adlı müşterinizin 976942978 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','33e70679-b537-4fdc-8ce5-40aa59bc19f2',NULL),
('6f48a5a0-a761-4395-a95b-eac91e0ef624','905331602195','Sayın yetkili; MERAL GÖGDAS  adlı müşterinize 221965496 nolu gönderinizin Balat sandalye beyaz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 25.06.2025 18:06:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('6f5109b1-08de-4a7c-8974-2ea82f077283','33695774017','Sayın OĞUZHAN TIĞ, 478824521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478824521\n\nDear OĞUZHAN TIĞ, your shipment with 478824521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478824521\n\nBICARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('6f51912a-ec03-4df0-87c5-ddd33a6ec637','905461661672','Sayın yetkili; GHAZAL TARIK İLHAN adlı müşterinize 644971564 nolu gönderinizin Traverten Masa  ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 08.03.2025 16:25:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('6f51b563-d1cd-4bb4-8537-a90f68f64c3f','905530309780','Sayın yetkili; WALİ MAADAN adlı müşterinize 418857351 nolu gönderinizin sandalye masami ürünü 3 parça halinde Fatura adresinizden 01.07.2025 12:45:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('6f525956-2a32-4848-9b3d-13dee2206ec7','905318109098','HÜLYA GÜNDOĞDU adlı müşterinizin 455568872 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL),
('6f56ff63-d80b-4ef5-ad2b-304be76c8695','4915254883380','12630810 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3904 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/12630810\n\nYour shipment with the number 12630810 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3904. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/12630810\n\nBICARGO','1','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL),
('6f5b238c-5017-4349-bd84-e3aed5cdb1dd','4917683277906','Sayın ÇUVALLAR, 24891590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/24891590\n\nDear ÇUVALLAR, your shipment with 24891590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/24891590\n\nBICARGO','1','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL),
('6f5dcb1d-1272-45d9-b226-f9e0f21628c5','905075277637','İBRAHİM BAĞCI SSH adlı müşterinizin 745983500 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('6f6a406f-dda3-47ee-b064-5e9434843d0c','33651051557','982578491 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1506 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982578491\n\nYour shipment with the number 982578491 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1506. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982578491\n\nBICARGO','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('6f6bbefb-2e39-4d05-9aea-794c0d5a0838','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin SAHRA GENÇ ODASI ürünü 11 parça halinde GENCECİX adresinizden 02.04.2025 11:09:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('6f6d49b1-b775-433c-82b5-c863369412a6','436602341063','Sayın HANİFE TURAN, 437355925 nolu gönderiniz 6097 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437355925\n\nDear HANİFE TURAN, your shipment with 437355925 was delivered to you with the delivery code 6097. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437355925\n\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('6f6df53a-46a7-4826-acee-eccd39736117','4917620431964','Sayın SELCAN ALTINSOY, 910479941 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910479941\n\nDear SELCAN ALTINSOY, your shipment with 910479941 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910479941\n\nBICARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('6f7107f9-44cd-493a-a3a8-bdafa47f3377','905357816059','CELAL adlı müşterinizin 100605954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL),
('6f782d5a-b758-43b4-b4dc-8058db5c3f67','905461661672','Sayın yetkili; YAKUP AKYOL adlı müşterinize 644741916 nolu gönderinizin sandalye ürünü 4 parça halinde ELAKSA SANDALYE adresinizden 10.10.2025 11:50:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('6f7a9439-caac-4e3a-bd39-cf46433ed951','905454259202','Sayın yetkili; FERDİ KURT adlı müşterinize 478996959 nolu gönderinizin 180x200 yatak ürünü 1 parça halinde BİCARGO DEPO adresinizden 12.05.2025 15:57:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('6f7eacd1-57b1-4341-8a72-602256f2c0c4','4915772159477','ŞÖFÖR İKETİŞİM\n					+905301824880','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('6f7ee6b2-a745-4663-bacd-8cd5398372c7','905350617509','NURETTİN BAYRAK  adlı müşterinizin 613661947 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('6f80b094-27fa-4d2c-9761-bfaf5a447466','4306641865848','910593915 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6693 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910593915\n\nYour shipment with the number 910593915 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6693. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910593915\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('6f844142-5a72-4da8-8a40-73969a7e7dbe','491788532068','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('6f85fc96-c3ee-4a0e-98a2-aa9ce14e69c1','905317943903','Sayın MUSA VARICI , 897291641 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/897291641\n\nDear MUSA VARICI , your shipment with 897291641 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/897291641\n\nBICARGO','1','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL),
('6f86ecc2-c8ab-4f84-a31d-8c9757ae9f5a','905079358213','MAHMUT ÖZKAN adlı müşterinizin 745996696 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('6f879ca8-b5d8-44b9-93a2-0bfdf93b62d2','31681743936','Sayın REYHAN BİLDİRİCİ, 3198601 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/3198601\n\nDear REYHAN BİLDİRİCİ, your shipment with 3198601 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/3198601\n\nBICARGO','1','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL),
('6f8e090d-7bca-4dec-adda-c47aa085206d','491729567967','Sayın AKİF AĞCA, 734626870 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734626870\n\nDear AKİF AĞCA, your shipment with 734626870 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734626870\n\nBICARGO','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('6f97d321-eae4-46a4-b48d-a0763025ddea','905510396989','ÖMER FARUK ÇANAK adlı müşterinizin 31934282 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('6f9b58d1-683f-4c86-a5a3-9afa73c018c2','905335708965','ERCAN KARADAVUT  adlı müşterinizin 248315101 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL),
('6f9cb085-b7aa-4606-8484-7339cfd63e5b','905304259202','EMİN EKRAMOĞLU adlı müşterinizin 478678748 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL),
('6fa8e1fd-324a-4be1-a880-4ec9772e939b','905454259202','FERDİ KURT adlı müşterinizin 478996959 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('6faa15a1-215b-43a5-aeba-6cf83dea89d1','905304259202','Sayın yetkili; OSMAN KILINÇ adlı müşterinize 478205168 nolu gönderinizin 1 adet köşe modül ürünü 1 parça halinde PUFFİN adresinizden 15.05.2025 14:16:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('6fae01c9-1ba7-44a3-8454-c6ed4998e35c','436603406293','YONCA KİLİC adlı müşterinizin 675592889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('6fb538d7-9da4-4c40-b688-01c228257cb9','4917681316361','644550858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4359 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644550858\n\nYour shipment with the number 644550858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4359. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644550858\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('6fb5ab85-c06a-4ed0-8524-55bdf839557c','905394878216','Sayın yetkili; SENEL YILMAZ adlı müşterinize 517365072 nolu gönderinizin C Sehpa ürünü 1 parça halinde Fatura adresinizden 15.05.2025 11:14:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('6fbe4453-6566-46ed-af91-b64aa27be4e0','33783623343','İletişim \n					Halil Bey (Şoför) :+905541100849','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('6fc896bc-c105-4bd7-a0f9-1aa3d184811c','905301592882','Sayın yetkili; ATAKAN OLCAYTÜRK adlı müşterinize 910251573 nolu gönderinizin ARTOO ÜÇLÜ KOLTUK ürünü 1 parça halinde Fatura adresinizden 02.04.2025 09:53:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('6fc8a6bd-bbfc-4ff9-8bf7-79be9149c6a2','05388618969','Sayın ELİZA KADRİ, 786895232 nolu gönderiniz 6801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786895232\n\nDear ELİZA KADRİ, your shipment with 786895232 was delivered to you with the delivery code 6801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786895232\n\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('6fcaabcb-6081-4eb3-a475-8c5959751ec2','905336367828','Sayın yetkili; FİROUZEH NOORZAİ adlı müşterinize 982561254 nolu gönderinizin sandalye  ürünü 6 parça halinde Ademoğlu sandalye  adresinizden 07.08.2025 17:37:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('6fccfa58-4616-40e9-9a33-e1f3eabce60f','905069116877','HASAN ŞİMŞEK  adlı müşterinizin 817317858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL),
('6fd006f5-49ae-41e4-bc54-03e4ee473815','33679049076','Sayın  SEHER GÜNAY, 478540346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478540346\n\nDear  SEHER GÜNAY, your shipment with 478540346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478540346\n\nBICARGO','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('6fd1381d-6a48-41c2-8902-c22379dbff8e','4915231306886','449475255 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10393 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449475255\n\nYour shipment with the number 449475255 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10393. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449475255\n\nBICARGO','1','887939c6-c572-4048-9ec2-13b2ba75c706',NULL),
('6fd54338-f9fe-4875-8c76-bd354a66d999','4917683383437','428135973 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1762 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428135973\n\nYour shipment with the number 428135973 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1762. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428135973\n\nBICARGO','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('6fd56706-98d1-47a7-a970-818f8222ecda','4917623527687','Sayın ÇAĞLA YILMAZ, 74594122 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74594122\n\nDear ÇAĞLA YILMAZ, your shipment with 74594122 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74594122\n\nBICARGO','1','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL),
('6fdde445-8b56-4948-afea-1d3765e4a321','4917670413077','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('6fe26fe3-b8ab-4b5c-b028-1050af0112fb','905461661672','Sayın yetkili; ÖMER VAROL(K) adlı müşterinize 644714925 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 24.09.2025 16:06:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('6fe7f2fe-7f85-4b3c-a271-3e317f6227fd','4915566942853','Sayın EBRU DEMİRHAN SSH, 745433427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745433427\n\nDear EBRU DEMİRHAN SSH, your shipment with 745433427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745433427\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('6fe8d0d5-ce41-4d8e-868e-66c2d40bdaf6','31641824655','Sayın MİTHRA EKHLAS, 371665790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665790\n\nDear MİTHRA EKHLAS, your shipment with 371665790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371665790\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('6fee6619-ef3d-4c9b-a7cd-0e988d34079e','905461661672','   BEKİR adlı müşterinizin 644567515 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('6ff7998f-87ac-427d-9e4e-07c4dd9dfcf3','4917624686469','371628660 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9441 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371628660\n\nYour shipment with the number 371628660 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9441. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371628660\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('6ffeb5f7-bd3d-4edd-b420-81c894fbb7b9','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 31.12.2024 10:57:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('7000d2c9-c942-43b6-9325-fb203e21667e','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin HALİKARNAS GENÇ OD  DOLAP KOMODİN KARYOLA  ürünü 10 parça halinde SEVEN KIDS adresinizden 29.07.2025 17:01:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('7002d264-e153-49b3-bc42-4b12f55f1e39','491638306069','Sayın BERİVAN ERTUĞRUL , 221559079 nolu gönderiniz 1460 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221559079\n\nDear BERİVAN ERTUĞRUL , your shipment with 221559079 was delivered to you with the delivery code 1460. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221559079\n\n\nBICARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('70050598-7225-42e0-9e41-38e21190aa51','905079358213','İSRAFİL ŞENGÖNÜL adlı müşterinizin 745297087 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','01c7f991-854b-4e63-a448-14857c24f6f1',NULL),
('70057e5b-c4f7-473f-a9b0-bbc7f9236df6','905394878216','Sayın yetkili; ÖZEN GÖKYEŞİL adlı müşterinize 517619393 nolu gönderinizin Sandalye ürünü 3 parça halinde Fatura adresinizden 16.10.2025 17:42:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('70064dde-52b4-4486-9020-6b85c3ad206d','905336367828','LYNDA MOUSSA adlı müşterinizin 982425532 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13aba735-b82d-4898-a98c-4167bb80085c',NULL),
('7008cbf3-1c3d-4580-a686-003e97da6525','905517075149','İLHAM SEVAL İNDİRME adlı müşterinizin 478259590 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('700e8393-c8e0-4736-90b2-39b6bcff9393','905461661672','Sayın yetkili;    BEKİR adlı müşterinize 644567515 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 27.02.2025 15:50:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('70131304-3348-4605-ab95-7e30236b3f5d','905078062550','MUSTAFA KELEŞ adlı müşterinizin 598263441 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('7013e15f-53ca-48cc-be5f-87911d283f01','33652126348','Sayın FERHAT DEMİRCİ, 517901924 nolu gönderiniz 2154 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517901924\n\nDear FERHAT DEMİRCİ, your shipment with 517901924 was delivered to you with the delivery code 2154. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517901924\n\n\nBICARGO','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('7018b6a3-a8ed-4887-842d-457b21751c95','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin BAĞDAT KARYOLA 2 KOMODİN ürünü 15 parça halinde AKYOL adresinizden 19.09.2025 11:14:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('7019f7da-f7e0-4cb3-bc04-f6beae86f98a','905454259202','SÜLEYMAN BOZAN adlı müşterinizin 478778961 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL),
('701cb55b-2b35-49e2-baa2-b763bad3b035','905075277637','EMRE YILMAZ adlı müşterinizin 745884226 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('7032b55f-fea1-4b52-a431-1b156036c5d7','905078062550','Sayın yetkili; ENES İSMET UGUZ adlı müşterinize 598986653 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde ELİTİS HOME adresinizden 26.08.2025 18:26:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('7033e108-dbd3-4baa-82ec-fa4cb12fa539','905331602195','BOUAZZA SANNA  adlı müşterinizin 221264394 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('7033fc3e-ca87-4759-b21c-1f7d70bc2169','33786784588','Sayın MEHMET KELEK, 126371651 nolu gönderiniz 8860 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126371651\n\nDear MEHMET KELEK, your shipment with 126371651 was delivered to you with the delivery code 8860. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126371651\n\n\nBICARGO','1','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL),
('7034f663-9edd-4362-a4af-b1f1216d8e37','905079047428','JAFARİ SAYED OMİD adlı müşterinizin 449448008 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('7037ae63-2498-46dc-8c4e-64f741ba7e28','905461661672','MELİSA DÜZME adlı müşterinizin 644796083 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('703d7706-8146-4fd6-98b9-86db1104a733','491601818240','644832811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7804 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644832811\n\nYour shipment with the number 644832811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7804. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644832811\n\nBICARGO','2','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('703f4342-5e24-45e7-aaac-ecd2651b3233','33753822818','Sayın NOM HASSAN ABDULE, 449806465 nolu gönderiniz 6036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449806465\n\nDear NOM HASSAN ABDULE, your shipment with 449806465 was delivered to you with the delivery code 6036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449806465\n\n\nBICARGO','1','bd343457-fe23-4870-a5c8-17ec7d82c974',NULL),
('70446187-56d1-41e2-aeab-239def2e5908','491738798802','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('7048eca0-5232-4531-a67a-5788dbcacf76','905325165070','Erkan ÖZKÖKKAYA adlı müşterinizin 734788911 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('704b95bb-dedc-47ff-9d8c-58941d9a3296','32475529099','745177264 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1788 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745177264\n\nYour shipment with the number 745177264 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1788. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745177264\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('704d34d7-62ef-4629-a0b8-e73435fd7fd1','436503440942','455207811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8594 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455207811\n\nYour shipment with the number 455207811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8594. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455207811\n\nBICARGO','1','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL),
('704ef8c3-971d-4ed7-a887-306d5f9c7a85','015209328224','Sayın ABDULLAH ÖĞRETEN, 644917251 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644917251\n\nDear ABDULLAH ÖĞRETEN, your shipment with 644917251 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644917251\n\nBICARGO','2','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('704efa09-79de-4b33-a257-dbdabf70b854','05305275922','Sayın HALİL ÖZDEMİR, 478138166 nolu gönderiniz 10249 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478138166\n\nDear HALİL ÖZDEMİR, your shipment with 478138166 was delivered to you with the delivery code 10249. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478138166\n\n\nBICARGO','2','d2d6e485-b5cd-40eb-aea4-a35691e6fe83',NULL),
('704fcd7b-9f8a-4930-a8bd-b44a5bf07a47','905325000478','İHSAN KEPİR adlı müşterinizin 412299499 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('705427d6-68dc-4407-8055-7a5bac6da9c9','905497405500','KEVIN PAROIS adlı müşterinizin 20390821 nolu gönderisi 68 parça halinde yola çıkmıştır.','1','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL),
('705573f6-a73c-4622-8e1b-4b55ac63fb34','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 2 SET DÖŞEK  ürünü 2 parça halinde döşek adresinizden 22.08.2025 13:22:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('705ce2f0-dfd1-4f6f-8a45-60593da3bdbb','4917672416653','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('705d306d-de28-4639-b996-17c6d03bab5e','905461661672','BURHAN BAYRAKTAR adlı müşterinizin 644758410 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('705db1ac-406e-4f1d-b44b-b8c5ca43e9d0','905306071261','DİLEK KHABİL adlı müşterinizin 765729280 nolu gönderisi 29 parça halinde yola çıkmıştır.','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('705f7d7e-c9f5-4528-8a5c-16b4e9a6e726','491717001300','982432822 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8504 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982432822\n\nYour shipment with the number 982432822 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8504. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982432822\n\nBICARGO','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('7061663f-0f76-49a6-af56-6c7e3d456205','4917680448730','Sayın MEHMET EMİN KARAGÜZEL, 449704156 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449704156\n\nDear MEHMET EMİN KARAGÜZEL, your shipment with 449704156 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449704156\n\nBICARGO','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('706742e9-0335-42d5-ac82-c01c4033f194','905078062550','HAYRİYE BOZKURT adlı müşterinizin 598405313 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('70692597-e0be-410c-a338-d1848acb6623','905389543828','SUAN RASTODER adlı müşterinizin 486405325 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('706b4f40-a161-4da5-bfb2-3aa9399a3aa4','436606332095','61310831 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7828 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61310831\n\nYour shipment with the number 61310831 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7828. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61310831\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('706fcafa-746b-4e35-ad9f-5882f471b7b5','4915783856117','Sayın MELEK IŞIK, 64418413 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64418413\n\nDear MELEK IŞIK, your shipment with 64418413 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64418413\n\nBICARGO','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('7071bb7c-5d2b-4c99-9f57-bb8875be4f48','31634640299','Sayın İLKER BİLİCİ, 745128598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745128598\n\nDear İLKER BİLİCİ, your shipment with 745128598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745128598\n\nBICARGO','1','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL),
('707235dd-f4f1-42c5-98ab-ca7fe9b412fc','905461661672','CANSU BEYAZ adlı müşterinizin 644282587 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('7072b727-8224-4ed3-95f0-43cba805c4e1','905011170016','Sayın yetkili; AAAAAAAAAAAA adlı müşterinize 380497843 nolu gönderinizin MASA SANDALYE ürünü 6 parça halinde Fatura adresinizden 21.03.2025 18:07:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('70736f18-5773-4a82-b0dc-5cdbd49ceb3c','491789146885','Sayın BİROL ELİBOL, 437609907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437609907\n\nDear BİROL ELİBOL, your shipment with 437609907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437609907\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('7075b272-5fcf-4dbd-a5e0-58e0e03a1724','33755431348','Sayın EHSANULLAH SEDİGİ , 982663240 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982663240\n\nDear EHSANULLAH SEDİGİ , your shipment with 982663240 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982663240\n\nBICARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('707688a8-5170-4acd-88e5-0971f6b3b892','4915222583405','982549375 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982549375\n\nYour shipment with the number 982549375 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982549375\n\nBICARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('707a6efa-0aa9-4113-ba5a-81973fde902f','905075277637','Sayın yetkili; HATİCE KARABAĞCA SSH  adlı müşterinize 745658808 nolu gönderinizin SSH BAŞLIK VE RAF  ürünü 2 parça halinde Fatura adresinizden 28.05.2025 14:43:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('707b45a2-07e2-4bdb-ae8a-db78fe03cf4d','4915738754138','Sayın MUSTAFA ÇELİK, 47888654 nolu gönderiniz 3922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47888654\n\nDear MUSTAFA ÇELİK, your shipment with 47888654 was delivered to you with the delivery code 3922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47888654\n\n\nBICARGO','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('707d3fcd-ea0c-4cb9-a341-8f582d05756b','905059175469','SELEN SEMERCİ adlı müşterinizin 428326285 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('708389f2-07cf-4f61-8da7-53c6e1bcbfc9','491632890514','Sayın MEHMET RIZA ÇOBANOĞLU, 478992248 nolu gönderiniz 9912 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478992248\n\nDear MEHMET RIZA ÇOBANOĞLU, your shipment with 478992248 was delivered to you with the delivery code 9912. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478992248\n\n\nBICARGO','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('708f5535-4a9f-4e11-a9fa-d6a5d950cf49','905363385813','ZEHRA OCALAN adlı müşterinizin 976192214 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('70919c83-2d01-4d6f-bb91-4d5d180fcf36','1111111111111111','248592138 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248592138\n\nYour shipment with the number 248592138 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248592138\n\nBICARGO','2','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL),
('709953ae-c905-4d6a-943c-c39f4266f326','905517075149','METİN NEŞELİ adlı müşterinizin 478345732 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('70a582f0-4b67-480f-9223-243082754cbe','436603227029','Sayın BURHAN AKMEŞE, 745761149 nolu gönderiniz 8488 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745761149\n\nDear BURHAN AKMEŞE, your shipment with 745761149 was delivered to you with the delivery code 8488. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745761149\n\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('70a936e9-ff33-4f8c-91bd-bdac53c1aa6f','33688096085','910778068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7461 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910778068\n\nYour shipment with the number 910778068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7461. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910778068\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('70ac64c9-250c-4121-b0e8-12ca767858a8','33663551431','Sayın NORBERTO VAZ , 982573889 nolu gönderiniz 2229 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982573889\n\nDear NORBERTO VAZ , your shipment with 982573889 was delivered to you with the delivery code 2229. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982573889\n\n\nBICARGO','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('70acd660-ba3a-4757-a1c3-0b202f04afde','905331602195','Sayın yetkili; RANJA SABRİ  adlı müşterinize 221904119 nolu gönderinizin 65 cm çap sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 01.07.2025 12:31:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('70af8d99-b01c-4a00-8d19-472f716cd076','905368336516','Sayın yetkili; HÜSEYİN ARDUC adlı müşterinize 515967328 nolu gönderinizin KOLTUK ürünü 4 parça halinde TRANJET DEPO  adresinizden 13.10.2025 16:04:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44536842-36f0-437b-afe2-58a8df62b9df',NULL),
('70b05a9d-f0eb-4304-9774-e0eb9ee02135','33679750944','Sayın KEVSER DENİZ , 221368256 nolu gönderiniz 9587 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221368256\n\nDear KEVSER DENİZ , your shipment with 221368256 was delivered to you with the delivery code 9587. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221368256\n\n\nBICARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('70b7eb58-763d-491b-b3b4-8a153068fd28','905331602195','NECMİYE AMET adlı müşterinizin 221801165 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('70bbd8af-1c49-4a51-9271-0f9a9828bec3','4917644265407','Sayın MEHMET KIRMALI SSH, 745961245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745961245\n\nDear MEHMET KIRMALI SSH, your shipment with 745961245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745961245\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('70bc5e8a-9bef-4fbc-8d70-6ac96d4b3edf','905461661672','Sayın yetkili; MUSA CAN KOÇAK adlı müşterinize 644389756 nolu gönderinizin SANDALYE ürünü 3 parça halinde ALPEREN SANDALYE adresinizden 01.07.2025 15:38:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('70c7889c-3aaa-4564-b2a1-58bf9911203e','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin koltuk ürünü 3 parça halinde NINAS HOME adresinizden 27.08.2025 14:06:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('70c81845-bf72-46ae-a5a8-3bb757f0050a','905510396989','MEHDİ NAEİMİ adlı müşterinizin 319275080 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('70cda4b6-dfdc-4a00-8994-5b0771e30cc8','4917657842770','Sayın RABİJE OSMANİ, 505332275 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505332275\n\nDear RABİJE OSMANİ, your shipment with 505332275 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505332275\n\nBICARGO','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('70cee083-32b2-4e99-9b7f-3286acfef89c','4917624386600','Sayın İSMAİL ŞANLI, 248710120 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248710120\n\nDear İSMAİL ŞANLI, your shipment with 248710120 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248710120\n\nBICARGO','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('70cf9665-d0c2-41c8-b0d1-f5bd3eedf3a0','4917655270836','Sayın KAMER DUHAN ECE(K), 644651781 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644651781\n\nDear KAMER DUHAN ECE(K), your shipment with 644651781 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644651781\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('70d2a041-cd82-4d3e-a033-ac834bea999a','905078062550','Sayın yetkili; SEMANUR GÜLER adlı müşterinize 598781522 nolu gönderinizin MASA SEHPA ürünü 6 parça halinde RİO FATİH adresinizden 16.07.2025 17:47:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('70d2b5e6-34a3-4407-b237-fb5d2aca8eb1','905078062550','FATMA ERDEM adlı müşterinizin 598161990 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('70d41415-fc99-488e-984e-26dae6bf367d','905312762034','YUSA ELLİALTI adlı müşterinizin 808427332 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('70d52e50-5498-4fb7-b850-aaa00ecef26f','905389543828','DİLAN HANIM adlı müşterinizin 486724632 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('70d53217-f975-44d8-aab8-562975e478d2','031681694818','Sayın İBRAHİM AKÇORA, 412679110 nolu gönderiniz 5665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412679110\n\nDear İBRAHİM AKÇORA, your shipment with 412679110 was delivered to you with the delivery code 5665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412679110\n\n\nBICARGO','2','d25fd827-385a-48f1-8993-4f48129b3530',NULL),
('70d6469c-6eeb-4df2-bcdd-8c33c87fe880','905517075149','Sayın yetkili; BESNA ULUĞ adlı müşterinize 478906000 nolu gönderinizin PİER 3+3+1 KOLTUK TK VE KUMAŞ ürünü 3 parça halinde nahita sofa (dayı) adresinizden 15.09.2025 13:45:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('70d6f04d-1666-411b-baea-f9699210b4fb','905301592882','NURAY KARABURUN  adlı müşterinizin 910407767 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL),
('70da5858-e4b6-4a7b-8869-8130bd6260af','905456068312','KAZIM CENGİZ adlı müşterinizin 655935224 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL),
('70e19f1c-301f-401b-9a1b-72336c8118a3','33630048786','Sayın AYHAN ATEŞ, 982979874 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982979874\n\nDear AYHAN ATEŞ, your shipment with 982979874 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982979874\n\nBICARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('70e5bc61-75e7-4b65-a23a-04ef92b24257','33768432369','Sayın TÜRKAN DEMİR, 570121325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/570121325\n\nDear TÜRKAN DEMİR, your shipment with 570121325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/570121325\n\nBICARGO','1','ed98c31c-308d-4856-9efd-a92eb1603386',NULL),
('70e67858-5f96-4cf8-b0b5-4f4f8c42f3aa','905078062550','Sayın yetkili; SEYHAN GÜNDÜZ adlı müşterinize 598148104 nolu gönderinizin köşe koltuk ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 05.08.2025 15:02:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('70ecb4c6-566a-41f5-b6e7-3199a6767915','491782692542','Sayın ELFRİDA RAİCEVİC , 613510894 nolu gönderiniz 8665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613510894\n\nDear ELFRİDA RAİCEVİC , your shipment with 613510894 was delivered to you with the delivery code 8665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613510894\n\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('70f41cfb-cdaa-41ec-a19b-78d8ffaad20b','41796133167','Sayın GÜLŞAH KUŞ, 745219309 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745219309\n\nDear GÜLŞAH KUŞ, your shipment with 745219309 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745219309\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('70f89258-3d9a-4abb-aae7-80ed58220356','905421855834','HÜLYA MEŞE adlı müşterinizin 338411689 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('70f96887-e76f-4dba-89ca-dc5b5b28432b','41786878898','221616369 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7912 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221616369\n\nYour shipment with the number 221616369 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7912. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221616369\n\nBICARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('70fa2197-3921-4f58-9aee-c487d2f6b4d6','905075277637','Sayın yetkili; HASAN ÇETİN adlı müşterinize 745810889 nolu gönderinizin TREND SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 26.09.2025 17:03:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('70fdc74a-d5c6-4089-bc0d-86a18ecda9f4','5325000478','Sayın YILDIZ ORHAN, 15.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3214144\nŞifre : 3214144\n			\nBİCARGO','1',NULL,'d32a141a-efed-4aa4-8db8-a628a34c49e2'),
('71028427-8cd6-4475-9ed9-f1771302e6c1','905335511664','Sayın yetkili; SEDA YILMAZ adlı müşterinize 371429381 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 28.04.2025 16:59:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('71044105-6ad5-44af-8016-25be159bcc5f','905331602195','Sayın yetkili; GÖKHAN ÖZYURT  adlı müşterinize 2213416 nolu gönderinizin Balat sandalye koyu ceviz ürünü 6 parça halinde Fatura adresinizden 18.03.2025 17:03:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('7106cc2c-4823-4f3f-9a2f-643ec9739db8','4915233653344','437791163 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2666 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437791163\n\nYour shipment with the number 437791163 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2666. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437791163\n\nBICARGO','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('7107f1de-b067-4e42-a26f-3ba35ec14a5f','905336367828','PEPE DİMBİ GRACE adlı müşterinizin 982219496 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1f693920-f2af-4070-9034-3b5ae439f603',NULL),
('710a31f3-6b78-4fc1-94f8-6495af32967f','32484564147','Sayın YUSUF TÜRKGELDİ, 478537954 nolu gönderiniz 4234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478537954\n\nDear YUSUF TÜRKGELDİ, your shipment with 478537954 was delivered to you with the delivery code 4234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478537954\n\n\nBICARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('710cf9de-bf16-4877-ada1-36df6c27fc12','905079358213','MERYEM BULAK  adlı müşterinizin 745374253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('711114a9-3708-4013-92ff-fbcd6a7e4ee2','905461661672','AMAL EL JABBARİ adlı müşterinizin 644789157 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('7112e975-5f63-4e81-95c7-e8306b15a758','905313340045','Sayın yetkili; DİLAN ÜNVER adlı müşterinize 437584936 nolu gönderinizin SEHPA ürünü 3 parça halinde DORTHOME OFİS adresinizden 23.07.2025 13:05:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('711a740b-6972-470a-933a-dfb2c69997b3','491777466973','Sayın ATAKAN OLCAYTÜRK, 910251573 nolu gönderiniz 5676 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910251573\n\nDear ATAKAN OLCAYTÜRK, your shipment with 910251573 was delivered to you with the delivery code 5676. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910251573\n\n\nBICARGO','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('711c27af-0d0f-4cea-bd59-07dae327eb07','491786878785','745967323 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745967323\n\nYour shipment with the number 745967323 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745967323\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('711e5583-a864-479b-9fcb-0590eb074de5','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin Krem ekru boya  ürünü 1 parça halinde Masami Mobilya adresinizden 22.09.2025 18:24:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('711f88ed-9296-4680-a18b-846929ba63f9','905394878216','ELİF SIKI  adlı müşterinizin 517157021 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('7122e38f-c287-4e85-949e-172d9b267212','905304259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin sandalyeler-şifonyer pufu ve aynası  ürünü 6 parça halinde çelikbey inegöl depo adresinizden 08.05.2025 17:52:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('7124fc50-bb6a-430f-956a-9c7f6d999d81','905336367828','YASMİNE  adlı müşterinizin 982824242 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('71267312-4f57-48d8-ab25-260cbaaeee78','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Baza başlık yatak ürünü 3 parça halinde Marki baza  adresinizden 08.11.2024 13:49:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('7126b77a-69d0-45f4-95cf-d33ab1c768a5','905079358213','HAKAN CANBAY adlı müşterinizin 74565941 nolu gönderisi 32 parça halinde yola çıkmıştır.','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('71311295-63cf-4636-bc62-d73d24f9d81f','004917663284963','Sayın İSABEL SEDRAYKYAN, 735977134 nolu gönderiniz 5387 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735977134\n\nDear İSABEL SEDRAYKYAN, your shipment with 735977134 was delivered to you with the delivery code 5387. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735977134\n\n\nBICARGO','2','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL),
('7132f866-a7ba-44d2-8480-f40b871ebdba','905307331627','ERKAM CAMİ adlı müşterinizin 027547681 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL),
('7137961f-b301-41c0-a124-9ed362fc72ba','905517075149','Sayın yetkili; CAN KUL  adlı müşterinize 478161304 nolu gönderinizin 3+2+1 loft koltuk takımı  ürünü 3 parça halinde ganze koltuk adresinizden 04.09.2025 17:30:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('71388e8b-af02-49b7-ac49-f0fe722849de','33770349060','Sayın EYÜP KIZILASLAN, 655919587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655919587\n\nDear EYÜP KIZILASLAN, your shipment with 655919587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655919587\n\nBICARGO','1','88d46ad5-3201-49c1-bafb-3c271a911158',NULL),
('713da67f-a978-4549-8d90-7a43418e6352','33652423048','Sayın ÖMER EKŞİN, 478391312 nolu gönderiniz 1541 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478391312\n\nDear ÖMER EKŞİN, your shipment with 478391312 was delivered to you with the delivery code 1541. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478391312\n\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('713e888a-9218-4e06-a1c9-25e5a1483408','4917656525814','Sayın MERVE DAYI, 745869069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745869069\n\nDear MERVE DAYI, your shipment with 745869069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745869069\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('71415c73-4e20-47f3-b128-d9a6beeefc31','491625165832','Sayın REUAN SHAMO , 221947357 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221947357\n\nDear REUAN SHAMO , your shipment with 221947357 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221947357\n\nBICARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('714293a6-d026-4860-9404-86c06b81e51e','905336367828','Sayın yetkili; AYHAN AKTAŞ  adlı müşterinize 982685222 nolu gönderinizin Koltuk takımı  ürünü 5 parça halinde Comfortlife  adresinizden 11.01.2025 17:55:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('71457b2d-b3ce-4c8f-9bdc-35b826b2a3fe','33781747148','221943840 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9226 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221943840\n\nYour shipment with the number 221943840 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9226. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221943840\n\nBICARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('714bc872-a5f8-48c5-b102-afe52dbec11e','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin PİER AYNA  ürünü 1 parça halinde MOBİLİSTAN adresinizden 19.09.2025 14:28:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('71509023-720f-4eb1-baad-04cd899ae1cd','491784364840','Sayın RUKİYE TURAN, 644301613 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644301613\n\nDear RUKİYE TURAN, your shipment with 644301613 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644301613\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('7155f096-c68f-4648-a2b4-53d9f9f9b0ae','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PLATİN YATAK 180X200 2 ADET  ürünü 2 parça halinde Fatura adresinizden 30.08.2025 16:54:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('7162563c-b90c-4181-ba54-b9988632ea41','905331602195','HATİCE GÜRBAY adlı müşterinizin 22140129 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('7168b3e7-8578-4a99-b611-ec6b171c2f87','491795637471','Sayın MEHMET SARI, 371820872 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820872\n\nDear MEHMET SARI, your shipment with 371820872 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371820872\n\nBICARGO','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('71819ae8-570a-4f1c-a81a-c09e1d80e957',NULL,'ALPEREN BAYRAM adlı müşterinizin 65722585 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL),
('7181a10e-3fdd-4bdc-8183-590f6e53874e','491728162123','371304914 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371304914\n\nYour shipment with the number 371304914 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371304914\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('71832261-5474-4f91-be65-d0d203e3cc41','905054335859','SUZAN ALTIPARMAK adlı müşterinizin 501339138 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5d95e08-a8c0-4133-845e-d93395f55044',NULL),
('718406fb-8a4e-460c-9cc4-309c0a3ea0cd','905079358213','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin TOFİ KOLTUK TAKIMI 3+3+1 + ORTA SEHPA  ürünü 4 parça halinde VAAV adresinizden 26.09.2025 12:10:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('7189852f-2954-40af-831f-77a44f929509','4917624686469','Sayın SUAT TURA, 371628660 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371628660\n\nDear SUAT TURA, your shipment with 371628660 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371628660\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('718cb3f8-e6ea-450b-91df-af4111f82213','9053259981980','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160*200 YATAK  ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('719224f1-90ab-4f77-8d17-9a4ab48bccac','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223337181 nolu gönderisi 155 parça halinde yola çıkmıştır.','1','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL),
('7194e6b7-0417-48ea-99e5-b208fd0220a2','905336367828','BRHZAD ALİKHANİ  adlı müşterinizin 982402434 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('719c2b31-85f3-4d62-bd7d-ce86063cd235','31641824655','Sayın MİTHRA EKHLAS, 371665790 nolu gönderiniz 2947 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371665790\n\nDear MİTHRA EKHLAS, your shipment with 371665790 was delivered to you with the delivery code 2947. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371665790\n\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('719ff1eb-4ea1-403a-9fc1-3f33eb453a70','31685438613','22164822 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22164822\n\nYour shipment with the number 22164822 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22164822\n\nBICARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('71aa7679-a27a-4560-9959-0a75bb902433','905059175469','Sayın yetkili; ESMERAY ÇOBAN adlı müşterinize 428633070 nolu gönderinizin 2 berjer  ürünü 2 parça halinde inliva koltuk adresinizden 21.01.2025 13:32:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('71ac2e64-e282-4646-92eb-1743f0f71a15','905336367828','NURKOVİC JASMİN adlı müşterinizin 982176810 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL),
('71ada8f5-febe-47c6-a3a6-171e45248bd8','436602050348','644194590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8240 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644194590\n\nYour shipment with the number 644194590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8240. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644194590\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('71b145d5-3996-4c07-a957-47536647d62a','905335511664','ERDEMCAN GÖZÜBÜYÜK adlı müşterinizin 37159654 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('71be3670-8b44-4d6d-bc4b-c22a24e1f128','905461661672','ANIL ÇOKBİLİR adlı müşterinizin 644584641 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('71bea1b9-80c3-4fe5-b9e0-4043fbb0828d','436766642937','Sayın LEMAN TUNCER, 412467921 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412467921\n\nDear LEMAN TUNCER, your shipment with 412467921 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412467921\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('71bf52a2-1ab8-452d-be3c-67324ca410bf','4917685967745','Sayın ERDEMCAN GÖZÜBÜYÜK, 37159654 nolu gönderiniz 7611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37159654\n\nDear ERDEMCAN GÖZÜBÜYÜK, your shipment with 37159654 was delivered to you with the delivery code 7611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37159654\n\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('71c0f33c-a5e7-41ca-b885-34629b4b76b0','41786730121','Sayın AYŞE KUTLU, 745449587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745449587\n\nDear AYŞE KUTLU, your shipment with 745449587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745449587\n\nBICARGO','1','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL),
('71c5abc3-734a-4c06-b159-c8084c93d087','015209328224','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','2','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('71c795fa-6088-4a9f-9ba7-0a1ff2bcfd23','4917632868288','Sayın DEMET DEDE, 478409459 nolu gönderiniz 8813 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478409459\n\nDear DEMET DEDE, your shipment with 478409459 was delivered to you with the delivery code 8813. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478409459\n\n\nBICARGO','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('71caa417-88db-495c-a28c-5fd56530ceb0','33789432951','Sayın MURAT KALKAN, 478520504 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478520504\n\nDear MURAT KALKAN, your shipment with 478520504 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478520504\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('71cdb459-f53a-410f-927e-d4906d677e15','32455122888','74529534 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6745 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74529534\n\nYour shipment with the number 74529534 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6745. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74529534\n\nBICARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('71ce469f-477d-4b50-bc17-9a3449da2528','905434420016','LUSYA YILDIRIM  adlı müşterinizin 748330948 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL),
('71ce60b1-c19d-4aec-90e1-0bce6be7c7e7','905335511664','Sayın yetkili; ONUR ÖZÇELİK adlı müşterinize 371695056 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 26.08.2025 18:35:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('71d3aeda-ded9-4d03-9b27-a6e32cd412d6','436606200309','İletişim \n					Halil Bey (Şoför) :+905541100849','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('71d63b4c-bb80-4d3f-9d52-47f515aca82b','905331602195','ARMİN İMERİ SSH adlı müşterinizin 221471794 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL),
('71d8aae3-5e9e-4497-9af1-ec27d36fc5a1','905325000478','ROMARİO AVELOO (BAŞTÜRK)  adlı müşterinizin 412757812 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','808b4ef9-a87c-49a2-938f-85cb6e7e8004',NULL),
('71df7cc3-a85f-44cc-ae31-94789b23dca6','436767311848','Sayın HÜMEYRA ZEYREK, 37152330 nolu gönderiniz 6523 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37152330\n\nDear HÜMEYRA ZEYREK, your shipment with 37152330 was delivered to you with the delivery code 6523. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37152330\n\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('71e2cd03-54a9-4ea8-b9b6-c512d4cc36f6','33751029586','Sayın NATASH SALİMİ, 982196265 nolu gönderiniz 7713 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982196265\n\nDear NATASH SALİMİ, your shipment with 982196265 was delivered to you with the delivery code 7713. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982196265\n\n\nBICARGO','1','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL),
('71e441a5-a3b1-4352-80e0-ddac2157c8de','05539740010','AYDIN SARI adlı müşterinizin 011620933 nolu gönderisi 57 parça halinde yola çıkmıştır.','2','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL),
('71eb719a-ca2e-4306-901b-2b4e82e43f29','491639801426','MUSTAFA adlı müşterinizin 107623614 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('71eec1cd-a964-467b-9bef-a4b024885611','004917632525030','817918521 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7190 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817918521\n\nYour shipment with the number 817918521 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7190. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817918521\n\nBICARGO','2','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('71f61b0d-bcf8-412b-ac8f-754465b6c289','31616177298','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('71f6e9fd-6236-4b9d-9e53-129ecee9100a','33651143736','Sayın MARİANE SARKİS, 338426911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338426911\n\nDear MARİANE SARKİS, your shipment with 338426911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338426911\n\nBICARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('71f8993c-588d-4172-9863-9313e8a80e09','905336367828','AYŞE DOĞAN adlı müşterinizin 982415045 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93c365fd-397d-46ce-91b9-bdd586250f02',NULL),
('71f9194e-0250-4eda-9db8-00fa880262ca','905394878216','FERHAT DEMİRCİ adlı müşterinizin 517901924 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('71fc6cf6-7575-48d2-9302-8c36255da060','905532675926','GÖNÜL GİDER adlı müşterinizin 428671806 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('7200d54c-8029-452c-a015-edc187221824','436763810050','Sayın HAKAN AKDEMİR, 478110382 nolu gönderiniz 6082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478110382\n\nDear HAKAN AKDEMİR, your shipment with 478110382 was delivered to you with the delivery code 6082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478110382\n\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('72054c9e-1576-415b-a866-aeeaff902273','4917683383437','Sayın FATİH KAZAR, 428135973 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428135973\n\nDear FATİH KAZAR, your shipment with 428135973 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428135973\n\nBICARGO','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('720797d5-8d34-4236-a7f3-abd82e008f38','436641534757','371529841 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4829 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371529841\n\nYour shipment with the number 371529841 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4829. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371529841\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('720ff2cf-9ae3-40d8-8511-9eb0a6dd6628','905355928266','Zafer bey adlı müşterinizin 412454305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f7f2db15-90e1-4ab2-89b6-6a61a7161bbf',NULL),
('721208b6-cee1-4c96-b977-8b25b86cc152','905313340045','SENA ONMAZ  adlı müşterinizin 43714618 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('7218c9e0-5443-4f7e-b1dd-b39126e63d75','4915738317562','Sayın CİGDEM DENKER , 613391684 nolu gönderiniz 6304 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613391684\n\nDear CİGDEM DENKER , your shipment with 613391684 was delivered to you with the delivery code 6304. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613391684\n\n\nBICARGO','2','db01aefa-720b-410d-8344-0672007b060d',NULL),
('721947e0-4811-42e4-802b-9e0d9ebace6c','491739542704','Sayın MERAL YAZICI, 478101413 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478101413\n\nDear MERAL YAZICI, your shipment with 478101413 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478101413\n\nBICARGO','1','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('72198b4a-6878-4cfe-a732-0f6ccd51fc75','31687653993','Sayın HAKİF ZİNAL, 644330933 nolu gönderiniz 5760 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644330933\n\nDear HAKİF ZİNAL, your shipment with 644330933 was delivered to you with the delivery code 5760. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644330933\n\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('7219924a-6cf7-4c0c-952e-b00cbb6a4356','905363385813','Sayın yetkili; AYŞE ŞEKER adlı müşterinize 976114868 nolu gönderinizin Kanepe  ürünü 2 parça halinde SALON KOLTUK adresinizden 11.07.2025 18:44:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('721ad4cf-5b69-41e1-8c67-35042a6fa7cf','491774619575','Sayın ÖMER GEDİK, 644113252 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113252\n\nDear ÖMER GEDİK, your shipment with 644113252 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644113252\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('721cc708-4e53-438b-9bd9-6f1d09f97414','905301592882','Sayın yetkili; YASEMİN ERKAN adlı müşterinize 910152598 nolu gönderinizin 2 ADET SEHPA ürünü 2 parça halinde Fatura adresinizden 20.10.2025 11:09:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('721dc7f7-8161-4420-856e-0cb38a64f3b2','4915213260096','Sayın AHMET KURT, 745286096 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745286096\n\nDear AHMET KURT, your shipment with 745286096 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745286096\n\nBICARGO','1','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL),
('7221bb2a-1f64-4a44-b0b7-5ed085f1eacf','905365908694','PASS adlı müşterinizin 223441694 nolu gönderisi 230 parça halinde yola çıkmıştır.','1','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('72366120-9004-4f37-80be-6264a9f9a6d2','33782039319','DRİVER\n					ADNAN\n+905354622027','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('723cf094-0944-4e89-90f9-2e10671c5b15','05388618969','MUSTAFA AZAMİ  adlı müşterinizin 786668251 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('7240b7ad-476f-4d1c-b80c-6f2efa701907','491715317113','644826911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9992 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826911\n\nYour shipment with the number 644826911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9992. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644826911\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('7242fd8c-11a8-4e41-a7e9-b32b8cfb18b6','33751255527','486874151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5730 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486874151\n\nYour shipment with the number 486874151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5730. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486874151\n\nBICARGO','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('7243186b-f3e4-47da-a65b-45b23bb8aa72','905331602195','Sayın yetkili; DERGHAM NAWEL  adlı müşterinize 22145441 nolu gönderinizin 60 çap yuvarlak sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:31:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('724a4a11-61ea-4a73-9293-b9ff3cdab67b','905335511664','Sayın yetkili; SUAT TURA adlı müşterinize 371628660 nolu gönderinizin masa + sehpa ürünü 5 parça halinde SM Tasarım adresinizden 01.07.2025 13:27:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('724dcfac-1860-44a6-b30d-230068b482f3','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin İNCİ GENÇ ODASI ürünü 12 parça halinde GENCECİX adresinizden 02.04.2025 11:08:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('7253e9fd-f39b-4ff5-befa-445abfcfdef0','33749000249','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('725766f9-4250-4b29-88aa-f2076c2c7415','4915147201286','371820680 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3264 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820680\n\nYour shipment with the number 371820680 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3264. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371820680\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('725780b8-a960-492d-9707-8caf5c4c3d81','491738569767','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('7258e8e6-a8e5-45fe-8560-aa4392f59ee9','905515519191','HASAN BEY adlı müşterinizin 448805304 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL),
('725c7b2a-a045-4426-adf2-a0441fc01f48','905331602195','Sayın yetkili; ÖZGÜR GÖKÜZÜM adlı müşterinize 22142813 nolu gönderinizin 100 çap orta sehpa ürünü 1 parça halinde Fatura adresinizden 23.05.2025 09:29:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('7260ddfb-7073-4f83-9c47-e2c1b614bd38','905540182920','Sayın Hasan bey, 412800723 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412800723\n\nDear Hasan bey, your shipment with 412800723 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412800723\n\nBICARGO','1','d6348c7e-4b86-444e-859f-29dce263d04b',NULL),
('72626c5c-617d-4c35-b155-52d3b2ca6eb1','905394878216','SENEL YILMAZ adlı müşterinizin 517365072 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('7265bd9c-1c03-451f-9cf2-21284dfeaf83','905389543828','Sayın yetkili; SUAN RASTODER adlı müşterinize 486405325 nolu gönderinizin Karyola ürünü 5 parça halinde Moe Bedding  adresinizden 03.07.2025 15:27:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('726748b3-930c-4250-9fdc-98defa281f0d','905075277637','MURAT ERKUL SSH adlı müşterinizin 745898734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('726a9a74-8507-47fc-8082-cce3cfcf7505','905331602195','JASSEY COLİNE adlı müşterinizin 221190454 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('726f2ab5-e1f6-4a88-8735-01bb6eebd75f','4915251454520','Sayın ENES İSMET UGUZ, 598986653 nolu gönderiniz 5248 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598986653\n\nDear ENES İSMET UGUZ, your shipment with 598986653 was delivered to you with the delivery code 5248. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598986653\n\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('7274a970-8b02-43c7-9ef5-c604c397358d','905461661672','ÖZCAN ŞAHİN adlı müşterinizin 644589662 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','846144fe-95bb-4d2a-83ea-4552d599f458',NULL),
('72752650-be79-4fad-a83d-8636655a5d80','491621912454','Sayın Özcan nazlı, 478281011 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478281011\n\nDear Özcan nazlı, your shipment with 478281011 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478281011\n\nBICARGO','1','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL),
('7275d8f3-4b79-4ca4-b270-1593a4c04149','905517075149','OSMAN BOZKAN adlı müşterinizin 478302796 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('72820782-1238-4211-9df7-4ed8cf6e7cf0','491712347917','371191289 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371191289\n\nYour shipment with the number 371191289 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371191289\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('72825b81-a67a-4bf2-ad6a-20e0f7d91ab5','905335511664','Sayın yetkili; SAHİN DİNÇ adlı müşterinize 371514006 nolu gönderinizin karyola takımı ürünü 6 parça halinde albessa karyola adresinizden 16.07.2025 16:07:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('728414f7-4a3f-4f0a-83ac-76ac3b0ee6a0','905454259202','BİRSEN KARADAVUT adlı müşterinizin 478833375 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('72845193-9e71-4893-81ab-712846902f05','905399896752','YASİN YAMANOĞLU adlı müşterinizin 93566108 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL),
('72896a22-8124-43d6-b8f3-1f97ad037af5','905350617509','BAKACAK GİRAY adlı müşterinizin 613814330 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('728fde47-af89-4b13-80ac-fec1f347a85d','905069116877','NURŞEN ADACI adlı müşterinizin 8176511 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('729066c8-7021-4dcf-8d2c-c6ec4baa37c8','4915257652315','Sayın ÖZLEM GÜLER, 248653667 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248653667\n\nDear ÖZLEM GÜLER, your shipment with 248653667 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248653667\n\nBICARGO','1',NULL,NULL),
('7297cb85-b5f8-4612-9d39-abe0ef4c4d01','905075277637','GÜLİSTAN ÇİÇEK adlı müşterinizin 745276835 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL),
('729a5efe-c9c0-434f-a316-557b5af756b1','33786300110','Sayın İBRAHİM AKIN, 465524926 nolu gönderiniz 9677 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465524926\n\nDear İBRAHİM AKIN, your shipment with 465524926 was delivered to you with the delivery code 9677. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465524926\n\n\nBICARGO','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('729ba465-108c-4b98-a527-e6c6c3c64aaa','33782976683','765501651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1573 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765501651\n\nYour shipment with the number 765501651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1573. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765501651\n\nBICARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('729c1c38-604d-4e21-a178-201a2483cf59','905078062550','SOMİA KARABİLA SSH adlı müşterinizin 59840179 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('729c33cc-e908-466a-b4ac-92839c869e72','33644764905','Sayın NİHAT SEMOĞLU, 745175736 nolu gönderiniz 6219 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745175736\n\nDear NİHAT SEMOĞLU, your shipment with 745175736 was delivered to you with the delivery code 6219. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745175736\n\n\nBICARGO','1','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL),
('72a21913-77c8-42f7-8388-8558cd0e7b81','491624296622','Sayın (K)HÜSAMETTİN CANBOLAT, 644469726 nolu gönderiniz 1611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644469726\n\nDear (K)HÜSAMETTİN CANBOLAT, your shipment with 644469726 was delivered to you with the delivery code 1611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644469726\n\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('72a8e0a4-3841-4893-a062-23e16e71bd2c','4917632545443','338842710 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338842710\n\nYour shipment with the number 338842710 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338842710\n\nBICARGO','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('72a987d0-853d-4096-9cf8-1abb2a850dd5','905079047428','İBRAHİM AYIK  adlı müşterinizin 449700444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61867c22-c86f-44a9-a203-2b810c74f596',NULL),
('72ac4276-b029-4e18-92a0-5b157883cd68','905336367828','EL HARRAR OUASSİFA adlı müşterinizin 982666330 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL),
('72b0caaa-6ced-4d34-9d4d-3925de851ded','4917623129728','598168850 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9539 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598168850\n\nYour shipment with the number 598168850 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9539. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598168850\n\nBICARGO','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('72b69eb2-e899-4d7d-98c2-2af2251a36c8','32486080855','22133183 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7359 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22133183\n\nYour shipment with the number 22133183 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7359. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22133183\n\nBICARGO','1','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL),
('72b9f658-ea01-41dd-b8dd-8cb0e2639c60','436604882013','Sayın AKKİZ TOPCU, 515129438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515129438\n\nDear AKKİZ TOPCU, your shipment with 515129438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515129438\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('72c15379-5bd0-4553-b6ea-522a4b72d399','905461661672','OSMAN ALTUN adlı müşterinizin 644901751 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('72c8cd1a-92a8-4620-9dfa-b8b8eae46104','905304259202','Sayın yetkili; SEVCAN SALİ adlı müşterinize 478863315 nolu gönderinizin KÖŞE-MASA-SANDALYE ORTA SEHPA-BERJER ürünü 12 parça halinde çelikbey inegöl depo adresinizden 29.11.2024 16:16:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38c7e847-02cf-481b-b2ca-7299334fad05',NULL),
('72ca523f-4112-43b5-9595-24fdb3d6f9b3','32486379906','127865742 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2025 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127865742\n\nYour shipment with the number 127865742 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2025. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127865742\n\nBICARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('72cbac21-c62e-43c8-b1db-414909cd751a','491762348854','428857511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428857511\n\nYour shipment with the number 428857511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428857511\n\nBICARGO','2','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('72d4f384-40c0-43cc-9c88-3fa2e3ccf75c','4917620585657','Sayın SEDA YILMAZ, 371429381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371429381\n\nDear SEDA YILMAZ, your shipment with 371429381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371429381\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('72d503ce-5141-496c-8853-cf105b025d75','33745103912','Sayın ELİF HANIM, 412871738 nolu gönderiniz 9008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412871738\n\nDear ELİF HANIM, your shipment with 412871738 was delivered to you with the delivery code 9008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412871738\n\n\nBICARGO','1','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL),
('72d52e0a-dfa7-4d87-8442-61d1cea50339','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL TV ÜNİTESİ ÜST BLOK ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('72d974bc-96c0-4661-b97f-d385c1b2f464','905079047428','REZA OMERİ adlı müşterinizin 449394658 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','6a397517-cdaf-4836-a678-f168177b94a2',NULL),
('72db3441-f18d-419a-881a-c68895e0146d','905079358213','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin ÖZEL MASA + SEHPA  ürünü 6 parça halinde GÜMÜŞ MASA adresinizden 16.10.2025 15:30:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('72dbc46f-b60a-4aa3-95c6-933024e6576a','32470420226','Sayın AYŞE ACAR, 221639055 nolu gönderiniz 4723 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221639055\n\nDear AYŞE ACAR, your shipment with 221639055 was delivered to you with the delivery code 4723. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221639055\n\n\nBICARGO','1','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL),
('72de7856-a86e-46c9-a6f4-ed6e8430946e','004917621208041','Sayın HANAN ALİKHAN, 73529249 nolu gönderiniz 8732 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73529249\n\nDear HANAN ALİKHAN, your shipment with 73529249 was delivered to you with the delivery code 8732. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73529249\n\n\nBICARGO','2','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL);
INSERT INTO `whatsapp_messages` VALUES
('72e2a85d-5b50-4788-8a3e-eb78828b3cdb','4917644265408','745471905 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2179 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745471905\n\nYour shipment with the number 745471905 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2179. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745471905\n\nBICARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('72e68798-09f1-4500-952a-4ff670be51c9','905447402789','735143086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8166 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735143086\n\nYour shipment with the number 735143086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8166. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735143086\n\nBICARGO','1','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL),
('72e751db-a58a-4a5c-ac5c-475bed30888c','4915906493452','Sayın EMEL ALATAŞ, 43789661 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43789661\n\nDear EMEL ALATAŞ, your shipment with 43789661 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43789661\n\nBICARGO','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('72e80c82-57e9-4dc1-a4bf-c8293bb75034','905331602195','Sayın yetkili; PINAR ÇİÇEK adlı müşterinize 221970338 nolu gönderinizin 70*110 CM SEHPA ürünü 2 parça halinde Fatura adresinizden 13.01.2025 10:16:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('72e89ccf-a415-4817-b7a8-64fe214ccf3e','33626335448','Sayın KENAN SOYLU, 74534951 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74534951\n\nDear KENAN SOYLU, your shipment with 74534951 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74534951\n\nBICARGO','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('72eb1ffd-5ec2-4c91-90cb-d02dc31cdaef','436603406293','Sayın yetkili; YONCA KİLİC adlı müşterinize 675592889 nolu gönderinizin koltuk ürünü 4 parça halinde LIONSE  adresinizden 04.06.2025 14:13:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('72edf5e8-c132-42e3-b8a6-3951e11387cc','905461661672','Sayın yetkili; EBRU TÜRKMEN adlı müşterinize 644495739 nolu gönderinizin MASA ETRALVİNG 17.SK ürünü 3 parça halinde Fatura adresinizden 22.10.2025 16:05:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e1f8bc1-fbc6-4a17-9981-db921860e228',NULL),
('72ee0e1c-1125-43d9-a4d2-6a25a537bd17','32484574195','478124503 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478124503\n\nYour shipment with the number 478124503 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478124503\n\nBICARGO','1','6a0da1c8-000c-4513-b226-ac4e7f8c7a30',NULL),
('72f3506f-f166-4c58-8519-a9961918a395','4915785847007','613940015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1596 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613940015\n\nYour shipment with the number 613940015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1596. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613940015\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('72f47733-e969-48b2-8183-776125d09c2e','905301592882','EKREM ASLAN adlı müşterinizin 910632087 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('72f5c063-c1d2-4bbf-97fa-e0acf2ab71cb','905075277637','BEYTUK KAPLAN adlı müşterinizin 745724680 nolu gönderisi 41 parça halinde yola çıkmıştır.','1','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL),
('72f7c1cf-ac67-4797-8f44-0c423c0d64cb','491631905914','Sayın MUHAMMET UCBAY, 011428040 nolu gönderiniz 8903 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011428040\n\nDear MUHAMMET UCBAY, your shipment with 011428040 was delivered to you with the delivery code 8903. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011428040\n\n\nBICARGO','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('72f8c9d8-887b-46f5-bf64-f3fd964b560b','491783900759','644481653 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1775 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644481653\n\nYour shipment with the number 644481653 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1775. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644481653\n\nBICARGO','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('72f92209-3648-4c1b-9e81-719d1402e28d','4917670281614','Sayın MEHDİ SALİHU, 371434188 nolu gönderiniz 3421 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371434188\n\nDear MEHDİ SALİHU, your shipment with 371434188 was delivered to you with the delivery code 3421. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371434188\n\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('72ff5192-0841-4989-a2df-424331710c0a','491705532123','982320208 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982320208\n\nYour shipment with the number 982320208 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982320208\n\nBICARGO','1','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL),
('72ffc726-2d89-4e0f-815f-a33841928551','491726668460','334873891 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4629 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/334873891\n\nYour shipment with the number 334873891 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4629. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/334873891\n\nBICARGO','1','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL),
('7304b812-6d14-41ba-9647-f597730bb783','905350349029','Sayın yetkili; MELİSA YILMAZ adlı müşterinize 203519424 nolu gönderinizin NEWBED YATAK RULO ürünü 1 parça halinde NEWBED adresinizden 13.05.2025 12:00:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('73084d56-7107-498e-a164-b91a899add5f','905394878216','MUSTAFA SEVİNDİ adlı müşterinizin 517827584 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b821f1cd-d990-4100-9455-a2c619562c1e',NULL),
('730b6589-e12a-4cec-a5d9-0e5c9ad11613','436606596708','517827584 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517827584\n\nYour shipment with the number 517827584 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517827584\n\nBICARGO','1','b821f1cd-d990-4100-9455-a2c619562c1e',NULL),
('730e68db-103d-4c73-8312-10cef9d2f18a','905336367828','Sayın yetkili; YASMİNE  adlı müşterinize 982824242 nolu gönderinizin sandalye  ürünü 1 parça halinde Ademoğlu sandalye  adresinizden 30.12.2024 16:40:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('730fb208-ffa2-4652-a9d7-a38cd4ab5584','905461661672','BETÜL ÇELİK SSH adlı müşterinizin 644298325 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('731213b2-c8a3-44e1-ab9b-c651a7167f4d','491729060799','478746196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478746196\n\nYour shipment with the number 478746196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478746196\n\nBICARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('7312783a-36e4-45ba-87b3-9a393a112882','33640564045','982799609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982799609\n\nYour shipment with the number 982799609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982799609\n\nBICARGO','1','2473140a-52f5-4b86-a285-e3de923dde5c',NULL),
('73142d9e-26cc-4a99-862c-298bda58bc42','905517075149','Sayın yetkili; BİLGEN TATAR SSH adlı müşterinize 478237582 nolu gönderinizin KOMİDİN ÜST ORTA SEHPA  VE ÜNİTE ÖN ürünü 3 parça halinde RİXXE adresinizden 22.10.2025 15:37:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','681a9409-dfea-4051-898e-57fa8d7d2fef',NULL),
('7317b3b2-5815-41ce-b940-f48b6a4f06d5','33642266995','412722649 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9936 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412722649\n\nYour shipment with the number 412722649 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9936. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412722649\n\nBICARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('731b3d0f-950c-4155-8a68-b3ecc5a09181','905332942204','Sayın yetkili; DERYA KARADENİZ adlı müşterinize 505414907 nolu gönderinizin masa orta sehpa ürünü 5 parça halinde masami adresinizden 22.10.2025 10:33:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee0c62fa-abac-44d0-915b-567df66647be',NULL),
('731e6150-8c17-4602-b0f9-1e4cdbb4d5ff','905335511664','TUĞÇE ÖNCÜ adlı müşterinizin 371120237 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8dcb0124-79e0-4138-838e-c613554097e7',NULL),
('731f4840-ea4c-4e9f-a2bd-468d9f943219','491722006627','Sayın FATİH YİGİT, 515956879 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515956879\n\nDear FATİH YİGİT, your shipment with 515956879 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515956879\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('73234d09-727e-423c-b124-5bf3e89fcb2d','33647208983','Sayın AHMET AKAT, 817619747 nolu gönderiniz 2916 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817619747\n\nDear AHMET AKAT, your shipment with 817619747 was delivered to you with the delivery code 2916. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817619747\n\n\nBICARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('732a2ab9-5010-4fac-8b0c-68add21f2ca2','905365908694','MEHMET ALİ ÇAKIROĞLU  adlı müşterinizin 223744518 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1f667c31-0a45-4450-be98-281039258085',NULL),
('732a90fd-31a7-4ea2-a8ed-857f66c55980','33617127634','Sayın M.CEDRİC KLEINDIENST (SSH), 221105277 nolu gönderiniz 3585 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221105277\n\nDear M.CEDRİC KLEINDIENST (SSH), your shipment with 221105277 was delivered to you with the delivery code 3585. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221105277\n\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('7331b789-140c-46c4-ac04-d4d7510958f7','905350617509','Sayın yetkili; BURHAN SARIKURT adlı müşterinize 613431273 nolu gönderinizin Sandalye ürünü 1 parça halinde Ayka sandalye adresinizden 24.04.2025 12:46:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('733511c5-80db-406d-84eb-75a185be5e84','905517075149','BÜNYAMİN ILIKSOY adlı müşterinizin 478668622 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('73383d9d-4241-43e8-99fb-9af8bfdb2d68','905075277637','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER MASA + TV ALT  ürünü 8 parça halinde MOBİLİSTAN adresinizden 09.10.2025 11:21:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('733966f8-7760-463f-8735-621d0a7b4da8','905075277637','GÜLİZAR KOCADAĞ adlı müşterinizin 745816008 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3416941c-5567-46cf-8f2b-ec732315a5b8',NULL),
('73397802-6d25-42de-8943-4bd65bc9552c','33766319183','Sayın GÖZDE TEMİZ		, 910670298 nolu gönderiniz 6175 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910670298\n\nDear GÖZDE TEMİZ		, your shipment with 910670298 was delivered to you with the delivery code 6175. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910670298\n\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('734048f9-2e47-4ac3-a0c8-3cdb291461a4','905335511664','Sayın yetkili; İLAYDA GÜNEŞ adlı müşterinize 371528044 nolu gönderinizin keramik masa ürünü 3 parça halinde Seramik Masa Üreticisi adresinizden 09.05.2025 15:57:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('7340816d-366d-429b-a22a-432d7d24b7fd','436766536472','Sayın HAKAN AKDEMİR, 478110382 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478110382\n\nDear HAKAN AKDEMİR, your shipment with 478110382 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478110382\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('73418bd9-2aad-4d70-a38c-b15b16950d1c','905335511664','LYUDMİLA KORUNOVSKA adlı müşterinizin 371121937 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('7341b83c-8931-4fd8-a24d-f74a0d47e874','905517075149','SEVİM KAMER adlı müşterinizin 478524376 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('734255e6-042e-4f10-9d36-528fffa4b680','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('73491840-c48e-462a-9b70-e199634afe95','905394878216','NAFİT GANİOĞLU adlı müşterinizin 517255345 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('734b9d03-3dd3-4b11-a615-785073b1650c','4917684770342','644531622 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644531622\n\nYour shipment with the number 644531622 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644531622\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('734ccf09-43ae-4087-848c-eb2a79da417d','905465479064','HALUK ÖZTOPRAK adlı müşterinizin 858708990 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL),
('735142c5-7d7f-4585-8f17-8106efbf5f1e','33650469375','644377360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377360\n\nYour shipment with the number 644377360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644377360\n\nBICARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('7353a68e-94a7-48a0-8290-6977cdc32367','4917624811097','Sayın OSMAN SATİCİ, 614536111 nolu gönderiniz 8902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614536111\n\nDear OSMAN SATİCİ, your shipment with 614536111 was delivered to you with the delivery code 8902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614536111\n\n\nBICARGO','1','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('7355bfe0-abbb-45f6-b14b-de4586d01977','905461661672','MERT GÖKMEN adlı müşterinizin 644796086 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('7359cdc5-5866-44e8-a17f-0263038c3f25','33768910967','745208965 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10163 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745208965\n\nYour shipment with the number 745208965 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10163. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745208965\n\nBICARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('735ac74e-c8ac-44b6-9000-3f44058599e8','4917662746063','Sayın RASHİCA ADNAN, 73558075 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73558075\n\nDear RASHİCA ADNAN, your shipment with 73558075 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73558075\n\nBICARGO','1','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL),
('735dc5f8-008b-413a-8872-9aa60ae75f09','33751280603','Sayın HANIM DOĞAN, 478730420 nolu gönderiniz 4128 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478730420\n\nDear HANIM DOĞAN, your shipment with 478730420 was delivered to you with the delivery code 4128. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478730420\n\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('735dcea8-bd05-4f57-bb0a-9d3bccf00b1a','905078062550','AHMAD KADİ adlı müşterinizin 598102662 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('735f4899-72c9-470e-928f-210a993282c6','905335511664','Sayın yetkili; CELALETTİN ÖZKAY adlı müşterinize 371797202 nolu gönderinizin koltuk takımı ürünü 3 parça halinde Elit Köşeci Sinan Bey adresinizden 03.09.2025 11:11:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ee1e536-13dc-4a76-a70e-ab75c46f193b',NULL),
('7362f425-9e77-4f21-809c-3e416c938501','491725459093','Sayın SÜLEYMAN MAKAS , 910980337 nolu gönderiniz 8657 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910980337\n\nDear SÜLEYMAN MAKAS , your shipment with 910980337 was delivered to you with the delivery code 8657. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910980337\n\n\nBICARGO','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('73631326-6d3f-4e21-b5e6-5803889d1daf','905539740010',' UĞUR KAPLAN  adlı müşterinizin 011697836 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('73646439-04a4-4a84-af19-d9fbf95105ce','4915171697261','478368190 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1453 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478368190\n\nYour shipment with the number 478368190 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1453. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478368190\n\nBICARGO','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('736b5429-1f1b-4223-a532-dcc23464cbac','31642407835','517903636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4091 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517903636\n\nYour shipment with the number 517903636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4091. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517903636\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('736c9b6c-2c45-4fe1-b6e8-48f90feda57f','9053259981980','Sayın yetkili; İSMAİL AYTEKİN adlı müşterinize 614443513 nolu gönderinizin BAMBİ BLACKSAND 160x200 SET,BLACKSAND YASTIK 2 ADET VE SIVI GEÇİRMEZ PED ALEZ ÇF.KŞ.160*200 ürünü 4 parça halinde Fatura adresinizden 27.10.2025 15:33:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','62bf8206-794c-42ff-b904-4820a312f32b',NULL),
('7370701a-2a46-44a4-87ae-90d2a02c5790','4915771101675','808146332 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808146332\n\nYour shipment with the number 808146332 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808146332\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('737399a6-7dd3-4942-aae0-2e3b67fa05a6','1111122342423133','223379282 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9493 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223379282\n\nYour shipment with the number 223379282 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9493. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223379282\n\nBICARGO','2','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('7374a1b0-9071-40df-a6a7-f908c274bbee','905517075149','MERYEMA TEKİN adlı müşterinizin 478322325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('7378477f-b52e-4bd6-8e83-4e6a30c05a9a','905078062550','Sayın yetkili; CAN ÖZKAN adlı müşterinize 598262809 nolu gönderinizin 8 SANDALYE ürünü 4 parça halinde LİN SANDALYE adresinizden 17.09.2025 11:52:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('737be78c-ebcf-40c8-8ab9-ddae63b5562e','905350349029','MERT ALİ YÖNTEM adlı müşterinizin 203151723 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('737e1bad-6d1d-417a-bb89-987d4544155a','905454259202','Hyusein petrov adlı müşterinizin 478702716 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','34998387-c573-429b-a68a-d13a844cfc40',NULL),
('738196a3-8e38-4d3b-8e4f-e28c5ebb6339','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND ŞİFONYER ÇEKMECE ÖNÜ ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('73837772-fb53-4afd-90c8-d491e6cf18b6','905307331627','Sayın FURKAN, 027201624 nolu gönderiniz 6993 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/027201624\n\nDear FURKAN, your shipment with 027201624 was delivered to you with the delivery code 6993. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/027201624\n\n\nBICARGO','1','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL),
('7383be33-e809-4478-b62c-0ea6bb9ba8f1','905517075149','ÖMER EKŞİN adlı müşterinizin 478391312 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('73936877-a56b-470e-9327-e14a368bcc06','905454259202','SULTAN GÖR adlı müşterinizin 478885043 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af1de73f-c335-48ff-a271-54ebfe04fc91',NULL),
('73953dfd-bc31-4a70-ba2b-07c24839494c','905075277637','SUAT TANER adlı müşterinizin 745129121 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('7396c965-2ee6-4501-ae59-47c457911217','4915116506734','Sayın İBRAHİM ULUSOY, 74582542 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74582542\n\nDear İBRAHİM ULUSOY, your shipment with 74582542 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74582542\n\nBICARGO','1','e10bc182-1962-4aff-b973-093a04c71419',NULL),
('73984fe1-7e31-40e6-88f1-78feca4525ba','491785990575','Sayın RECEP ONAY , 465313266 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465313266\n\nDear RECEP ONAY , your shipment with 465313266 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465313266\n\nBICARGO','1','149850c7-89eb-4248-a529-b235c5710935',NULL),
('739b4481-8710-4861-8b92-0f91869237f9','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin HALİKARNAS GENÇ OD  DOLAP KOMODİN KARYOLA  ürünü 10 parça halinde SEVEN KIDS adresinizden 29.07.2025 17:01:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('739f1a79-ec11-4f32-b9c0-4c04db6afaef','491608350626','Sayın OKAN EKİNCİ, 745873539 nolu gönderiniz 10614 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745873539\n\nDear OKAN EKİNCİ, your shipment with 745873539 was delivered to you with the delivery code 10614. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745873539\n\n\nBICARGO','2','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('73a0a4ad-29d4-4097-b427-b3e9837b1fb7','410786081031','Sayın VLORİNA BERİSHA, 613378961 nolu gönderiniz 4827 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613378961\n\nDear VLORİNA BERİSHA, your shipment with 613378961 was delivered to you with the delivery code 4827. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613378961\n\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('73a15100-fcfa-4563-8038-679c8a7176a4','491623325353','ŞÖFÖR İKETİŞİM\n					+905301824880','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('73a1cae5-226b-4520-b3ac-ceedad27e193','905313340045','ÖZGÜR ÇEŞME adlı müşterinizin 437694817 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('73a39de7-e773-4aff-96a3-f8228f7d0d31','905451571652','Sayın yetkili; TÜRKAN ÖZER adlı müşterinize 531983278 nolu gönderinizin MASA VE SEHPA ürünü 6 parça halinde BİFURNİ adresinizden 02.06.2025 14:59:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('73a3a27d-2047-4c8c-af30-df31c6c2fe5e','436764679635','Sayın HÜLYA LAÇİNOK, 380497843 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/380497843\n\nDear HÜLYA LAÇİNOK, your shipment with 380497843 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/380497843\n\nBICARGO','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('73a6732e-c9ee-4515-b9ad-132fc1f1c2c9','00491732783896','Sayın YAKUP TEKE, 735565748 nolu gönderiniz 8155 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735565748\n\nDear YAKUP TEKE, your shipment with 735565748 was delivered to you with the delivery code 8155. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735565748\n\n\nBICARGO','2','83b46886-5368-4d6c-8779-63f4585588f3',NULL),
('73ab8aa4-fa2c-4743-a4e6-80754a306d08','905313340045','ALPER ÖZDEMİR adlı müşterinizin 437414847 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('73b7f37b-d37f-449f-9992-e0c7fada3edf','491627680129','127253098 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3628 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127253098\n\nYour shipment with the number 127253098 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3628. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127253098\n\nBICARGO','2','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('73ba22b1-4664-4852-a999-1f41979b88ca','905461661672','Sayın yetkili; HİLAL DEMİR adlı müşterinize 644145142 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 13.05.2025 16:18:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('73bc5398-3ab2-425e-8669-3383f1a43f9c','33668485580','478631020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7537 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478631020\n\nYour shipment with the number 478631020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7537. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478631020\n\nBICARGO','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('73bc9107-5ccb-4458-9363-9e7c34569c63','905301592882','Sayın yetkili; MUHSİN GÜMÜŞ adlı müşterinize 910225013 nolu gönderinizin DENİZ KOLTUK ürünü 3 parça halinde NOVANO adresinizden 20.02.2025 18:04:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('73c568c7-d12c-4319-ae72-101058351deb','905461661672','Sayın yetkili; SILA SEVİL İLGÜN adlı müşterinize 644877864 nolu gönderinizin SANDALYE ürünü 3 parça halinde ALPEREN SANDALYE adresinizden 28.08.2025 11:51:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('73c6f4cb-55d6-4b5c-b087-f3a2f943e013','4917624742044','081789192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/081789192\n\nYour shipment with the number 081789192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/081789192\n\nBICARGO','1','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('73c87033-bac6-4baf-a102-244fc32fbcf9','4368181727723','Sayın LOWENSTERN, 412990147 nolu gönderiniz 1109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412990147\n\nDear LOWENSTERN, your shipment with 412990147 was delivered to you with the delivery code 1109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412990147\n\n\nBICARGO','1','def82a96-8956-42bc-885f-988dfa22f789',NULL),
('73d47b45-46cc-40ca-b5d9-17842b7a2d90','49162150360','Sayın SÜMEYYE ARSLAN, 478355116 nolu gönderiniz 4991 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478355116\n\nDear SÜMEYYE ARSLAN, your shipment with 478355116 was delivered to you with the delivery code 4991. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478355116\n\n\nBICARGO','2','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('73d75815-333a-43f1-96f4-be697e4e1f0f','33769010323','Sayın SENEL YILMAZ, 517365072 nolu gönderiniz 1034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517365072\n\nDear SENEL YILMAZ, your shipment with 517365072 was delivered to you with the delivery code 1034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517365072\n\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('73d77f64-4fd3-4424-ab30-b7e94d4256d2','905075277637','GÜLDEN KARADAĞ adlı müşterinizin 745291553 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('73dd2a14-dd20-414a-872e-8c5e46c1b904','491739366502','Sayın SARA CASTRO, 371287728 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371287728\n\nDear SARA CASTRO, your shipment with 371287728 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371287728\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('73e08d8a-c9c2-4b0a-82c4-c01b50409b09','905364752848','MUSA TABARU adlı müşterinizin 231348651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL),
('73e938fb-1f17-4331-bfeb-b7c99400d772','905301592882','Sayın yetkili; AHMET EMİN GÜL adlı müşterinize 910201328 nolu gönderinizin C SEHPA ürünü 1 parça halinde Fatura adresinizden 28.05.2025 15:15:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('73f3833c-ade3-429b-a053-3e8cf9688cd2','4915730902133','745508995 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4582 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745508995\n\nYour shipment with the number 745508995 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4582. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745508995\n\nBICARGO','1','69f93507-2cdd-4907-8d7a-258e6ecfc342',NULL),
('73f59852-16b6-4685-a8b5-14e4995a1769','4915217769767','Sayın TCR WARENHANDEL GMBH (MARTİN CREUTZBURG), 223853931 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223853931\n\nDear TCR WARENHANDEL GMBH (MARTİN CREUTZBURG), your shipment with 223853931 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223853931\n\nBICARGO','2','2100dfc1-4753-442b-b0f7-5bc9cc0e593a',NULL),
('73f8a4ff-2720-4476-8a77-c5ffaade5142','0033673412285','735525138 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5419 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735525138\n\nYour shipment with the number 735525138 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5419. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735525138\n\nBICARGO','2','70679c39-169c-46b4-9b96-b3994b9aee84',NULL),
('73f9067d-f4a3-4f87-891b-9850110af06c','33610781591','Sayın SÜLEYMAN BOZAN, 478406590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478406590\n\nDear SÜLEYMAN BOZAN, your shipment with 478406590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478406590\n\nBICARGO','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('73fb7c9a-155d-4d52-b2b2-b5eaf4142e32','31681581501','Sayın İHSAN KUMUR, 221825192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221825192\n\nDear İHSAN KUMUR, your shipment with 221825192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221825192\n\nBICARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('73fe55c2-4ef5-47a4-b91c-668555678f4b','431703503576','478474988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10272 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478474988\n\nYour shipment with the number 478474988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10272. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478474988\n\nBICARGO','2','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('73ff3952-0f60-4bc1-9b92-e7f235e408e2','4917677697727','64422113 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5376 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64422113\n\nYour shipment with the number 64422113 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5376. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64422113\n\nBICARGO','2','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('74009207-16ee-4186-822f-7dc2cd32d945','905079358213','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin KRİSTAL YEMEK MASASI ürünü 3 parça halinde Fatura adresinizden 27.05.2025 17:57:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('74013e82-54b3-47f3-a3d9-f8a88d12fa82','905075277637','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM YEMEK ODASI + ORTA SEHPA  ürünü 10 parça halinde ACCA adresinizden 27.05.2025 17:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('7404ce89-58d0-4e86-98cc-443d81944323','905075277637','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin VİRAL KARYOLA BAZALI  ürünü 6 parça halinde FAMILY adresinizden 08.10.2025 11:37:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('74060bcb-2eef-46b1-9b7f-57d8bbded488','905454259202','FESİH DOĞAN adlı müşterinizin 47853753 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('7407b5c2-ab4f-4416-9e61-e8834a1e4a68','491637394774','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('7408adb3-b3c4-4e78-abfb-6d8edd510bec','41767113347','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('740d663b-94dd-4832-87b6-c615a753f68e','905428209234','GAMZE ÖZDEMİR adlı müşterinizin 319645924 nolu gönderisi 65 parça halinde yola çıkmıştır.','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('740f23e1-fb4c-4404-80b6-dcd675627aa0','4917623973787','817682643 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817682643\n\nYour shipment with the number 817682643 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817682643\n\nBICARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('7414a26f-dcd2-4d6b-a9d2-60c661169a95','905313340045','MESUT AKYÖN adlı müşterinizin 437481013 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('7414c5b2-01df-4561-9723-c29553ff2a63','905454259202','Sayın yetkili; ZİLAN BİLİN adlı müşterinize 478250269 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde çelikbey inegöl depo adresinizden 14.01.2025 17:36:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e1add8c-7e20-424c-83f0-cdb80a06f744',NULL),
('741b29cf-dd4c-4a94-9dc6-e5afb06a6486','33605537745','Sayın MME MENAUR RACHİDO, 449890150 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449890150\n\nDear MME MENAUR RACHİDO, your shipment with 449890150 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449890150\n\nBICARGO','1','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL),
('741b65a0-261c-4b2a-88f9-7bc32581627e','905312762034','Sayın yetkili; ERHAN ALP adlı müşterinize 808538086 nolu gönderinizin Masa Takımı ürünü 6 parça halinde MASAMİ adresinizden 12.09.2025 11:03:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('7423ffcf-1479-4de6-a82f-3af451cdd898','32483547124','Sayın GURAY SEYFELİ, 221390997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221390997\n\nDear GURAY SEYFELİ, your shipment with 221390997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221390997\n\nBICARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('742c7357-2cfa-4d91-b8e9-4cc2e683163d','905079047428','Sayın yetkili; İBRAHİM AYIK adlı müşterinize 449181756 nolu gönderinizin 4-3-1 koltuk takımı.   3 paket sandalye. Masa orta sehoa yatak baza ürünü 1 parça halinde Fatura adresinizden 27.03.2025 16:41:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','076f6dac-8fe6-4bac-b210-2dda825192db',NULL),
('742ea0ec-9378-4fc6-b9fa-b1018c15f0e3','491779689978','Sayın HÜSEYİN SAYLAN, 412678735 nolu gönderiniz 8030 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412678735\n\nDear HÜSEYİN SAYLAN, your shipment with 412678735 was delivered to you with the delivery code 8030. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412678735\n\n\nBICARGO','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('742f4385-cd6b-4789-8f2e-c57195d7ecbe','32477787877','528433255 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1426 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/528433255\n\nYour shipment with the number 528433255 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1426. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/528433255\n\nBICARGO','1','4c96cdc2-5925-4a3e-88ac-0186ce15c8e9',NULL),
('743080fd-4877-4c55-84da-ef28f0f8c63f','905335511664','Sayın yetkili; HATİCE BOZ adlı müşterinize 371441090 nolu gönderinizin mermer masa ürünü 1 parça halinde Fatura adresinizden 06.08.2025 14:38:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('743b1cc9-985d-4b7f-82b8-8cf123ce8771','32485874064','319206159 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3472 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319206159\n\nYour shipment with the number 319206159 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3472. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319206159\n\nBICARGO','1','39388d94-97db-4210-9b52-61151393cf23',NULL),
('74453597-3eef-477d-8209-79d000e6cd63','491724221941','Sayın BÜŞRA NUR ÇELEBİ, 221278187 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221278187\n\nDear BÜŞRA NUR ÇELEBİ, your shipment with 221278187 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221278187\n\nBICARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('74460041-83ce-49ac-833f-a142b8f3c705','491781424421','Sayın DAVUT YILDIRIM, 745991438 nolu gönderiniz 9473 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745991438\n\nDear DAVUT YILDIRIM, your shipment with 745991438 was delivered to you with the delivery code 9473. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745991438\n\n\nBICARGO','1','a7037727-81db-4381-841e-e0b4f6b5366b',NULL),
('74495c57-3dae-4324-9134-a7fc93159e5a','905321608709','CEM OKUMUŞ adlı müşterinizin 248883377 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c6e2777-797b-45ae-b55b-1a2b5ee437ac',NULL),
('74498970-828c-440f-9a73-e83b6652df16','4917631133245','Sayın AMİRA GHRAB, 81723596 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/81723596\n\nDear AMİRA GHRAB, your shipment with 81723596 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/81723596\n\nBICARGO','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('74547122-fbd2-4c55-8ea8-1c733407bdd3','905461661672','Sayın yetkili; BLANDİ ZOTA adlı müşterinize 644965833 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 22.04.2025 11:51:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('74555330-6eb6-4984-9ec7-66f5550091a7','','Sayın LEX-DCP DETTMER CONTAİNER, 412996718 nolu gönderiniz 3217 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412996718\n\nDear LEX-DCP DETTMER CONTAİNER, your shipment with 412996718 was delivered to you with the delivery code 3217. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412996718\n\n\nBICARGO','2',NULL,NULL),
('745906da-9a2a-45e8-a0b2-920fb2a2e0b3','905078062550','YAVUZ GÜNEŞ adlı müşterinizin 59874048 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('74640d5a-44b1-482d-89d4-50ff7445a73d','905548899130','Sayın MUSTAFA KIVRAK, 118176933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/118176933\n\nDear MUSTAFA KIVRAK, your shipment with 118176933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/118176933\n\nBICARGO','1','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL),
('7464eef2-18d4-41a1-97bd-c9b17130c46e','4917657743687','Sayın AMİN SAKİ, 982372153 nolu gönderiniz 1536 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982372153\n\nDear AMİN SAKİ, your shipment with 982372153 was delivered to you with the delivery code 1536. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982372153\n\n\nBICARGO','1','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL),
('746e1480-34d7-4faf-a516-5cb930148a87','905313340045','SEMİH CENGİZ adlı müşterinizin 437551575 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('746f276d-ca9f-4716-a3c8-e7b759145622','905335511664','ORHAN GAZİ ÇEKİCİ adlı müşterinizin 371699257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('7472dd2a-dc19-4ce7-924f-2034a7ce45f0','33758896442','Sayın MERYEMA TEKİN, 478322325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478322325\n\nDear MERYEMA TEKİN, your shipment with 478322325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478322325\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('74743068-3b11-4f3d-b947-a67ac2ae9a58','33675449544','517867004 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517867004\n\nYour shipment with the number 517867004 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517867004\n\nBICARGO','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('74749c2d-a9a3-42dc-baad-90ea8d282c98','905461661672','(K)SİNEM İDRİZAJ  adlı müşterinizin 644880161 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('747a4cf0-cc31-4889-ab50-4853f76f955b','436606200309','Sayın SAFİYE TINCA, 371194748 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371194748\n\nDear SAFİYE TINCA, your shipment with 371194748 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371194748\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('747b2452-09e9-4b6c-87b3-6448634dca41','905079358213','Sayın yetkili; ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinize 745967323 nolu gönderinizin SSH KÖŞE PRÇ + SEHPA  ürünü 2 parça halinde Fatura adresinizden 28.05.2025 14:46:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('747b6e25-4d0e-4a89-ae1d-eab92c18ca28','33749496070','Sayın EMİN EKRAMOĞLU, 478678748 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478678748\n\nDear EMİN EKRAMOĞLU, your shipment with 478678748 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478678748\n\nBICARGO','1','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL),
('747f43fc-a389-43c6-98de-324cb0211ec0','015908423104','248771792 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248771792\n\nYour shipment with the number 248771792 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248771792\n\nBICARGO','2','9aaeab80-cfa4-4210-b789-4d7ae0454982',NULL),
('748204e3-0367-4b8b-858d-8cdd29367f1f','491773384706','Sayın YASEMİN YILDIZ, 745346486 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745346486\n\nDear YASEMİN YILDIZ, your shipment with 745346486 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745346486\n\nBICARGO','1','d4eec699-15e8-4023-b611-78ceb15be51f',NULL),
('748299ff-2641-4872-b795-4a1878b2bbbd','31636532119','Sayın ZEYNEP KORKMAZ, 127659069 nolu gönderiniz 3246 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127659069\n\nDear ZEYNEP KORKMAZ, your shipment with 127659069 was delivered to you with the delivery code 3246. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127659069\n\n\nBICARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('7483e380-6e2f-489b-a217-a8124b6bc51a','4917640451459','Sayın ROJDA BİNGÖL, 598665171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598665171\n\nDear ROJDA BİNGÖL, your shipment with 598665171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598665171\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('7484e84b-890a-463b-a9af-278553b58ef6','33787752471','26896907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3133 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/26896907\n\nYour shipment with the number 26896907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3133. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/26896907\n\nBICARGO','1','4895452e-4598-4194-8203-cf9f5506200a',NULL),
('74866291-7eb9-416a-8068-eb8ffc545e57','491742627039','371691350 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1045 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371691350\n\nYour shipment with the number 371691350 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1045. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371691350\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('748810ad-b7ff-40c2-9485-043d6ec2c693','4917680448730','Sayın MEHMET EMİN KARAGÜZEL, 449665773 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449665773\n\nDear MEHMET EMİN KARAGÜZEL, your shipment with 449665773 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449665773\n\nBICARGO','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('7488b705-b056-4f99-a83c-02b91486e137','905335511664','HAFİZE BALİ adlı müşterinizin 371539784 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('749165b6-299b-4dd1-9d3e-b8071f2ef6f7','905075277637','HUSSRAH MUHAMAD adlı müşterinizin 745464679 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('7492ba85-04c1-46ca-8b19-be6e41cd2528','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND ŞİFONYER SAĞ VE SOL KAPAĞI ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('7497f1c4-133f-4380-982d-a2556222d26e','33755431348','982663240 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10458 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982663240\n\nYour shipment with the number 982663240 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10458. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982663240\n\nBICARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('7499794d-6efe-4899-8b1c-f98787573a7c','905363385813','Sayın yetkili; ÖZKAN KUYUCU adlı müşterinize 976121570 nolu gönderinizin BENCH ürünü 1 parça halinde GÖKAY KOLTUK adresinizden 18.06.2025 14:09:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('74a32de4-261b-4fe3-908e-362ab26f0479',NULL,'ESRA KAMBERİ adlı müşterinizin 081789192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('74a3632f-ce5f-4636-998a-8529d8ad4c83','905510396989','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin MADRİD 3-3-1-1 ürünü 5 parça halinde natty adresinizden 19.09.2025 12:28:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('74a5159b-9d53-4a01-9337-e78bdd02bb8a','905331602195','SADOUN ABDELKADİR adlı müşterinizin 221804377 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('74a74376-3be4-423d-98f8-9510a661776b','','614289770 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614289770\n\nYour shipment with the number 614289770 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614289770\n\nBICARGO','2','b413a505-b0a4-4081-803d-a0776c7e84fc',NULL),
('74a9e629-8392-4e58-b29b-74ab6cdb6003','905431026110','İLKAY ÇİFTÇİ adlı müşterinizin 35130528 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('74aa37dd-37f0-4163-adc2-d537c449b17d','905079358213','ASLIHAN GÜÇLÜ adlı müşterinizin 745554582 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('74bc974f-00c8-427a-a0c3-a40d59a9ed5b','905454259202','MEHMET ÇOBAN adlı müşterinizin 478244236 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL),
('74c6fcc6-54d0-41a3-b758-8de9a521fb05','111111111111','Sayın TURGAY, 248240825 nolu gönderiniz 9684 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248240825\n\nDear TURGAY, your shipment with 248240825 was delivered to you with the delivery code 9684. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248240825\n\n\nBICARGO','2','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('74c7cf12-c5e4-42a2-bfb4-d35f0370011b','436603406293','Sayın yetkili; RECEP DUYGULU adlı müşterinize 675139037 nolu gönderinizin konsol ürünü 2 parça halinde MASAMI adresinizden 28.08.2025 17:47:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('74cbdabf-da8d-4f12-8946-28e146059702','905461661672','SEMA KUZULUK SSH adlı müşterinizin 644635640 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('74cc39a9-5576-400a-8fe9-79cad54272ba','905336367828','AYHAN ATEŞ adlı müşterinizin 982979874 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('74cfdf8d-ec74-4b8c-a480-28b399bebb9d','905428209234','MEHDİ NAEİMİ adlı müşterinizin 319275080 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('74d2f00b-252f-46a2-970f-3f9a6c7dabc4','905325000478','HAKAN AKDAĞ adlı müşterinizin 412418230 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0b553df-a781-4ccd-a273-f9c311927595',NULL),
('74d8030f-8755-4656-9861-f24823f81495','905075277637','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin KING PLATIN BAZA SETİ  ürünü 4 parça halinde Fatura adresinizden 20.05.2025 14:24:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('74d885d5-b1ce-483c-a29c-19cbd24f3a54','905428209234','ARZU ÜNLÜ adlı müşterinizin 319515461 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('74db7a98-3fe9-44ce-9a5e-d23abc21f9aa','4915115356238','745580296 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5155 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745580296\n\nYour shipment with the number 745580296 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5155. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745580296\n\nBICARGO','2','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('74db9885-d0cb-4caa-afaa-f7c3ca232a49','905306071261','Sayın yetkili; EMRE ALTUN  adlı müşterinize 765828045 nolu gönderinizin orta sehpa ürünü 3 parça halinde belita  adresinizden 08.10.2025 11:19:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('74dbb267-06ef-4123-b145-47484c12a2e2','491773713548','Sayın TUNCAY KOÇOĞLU, 465844619 nolu gönderiniz 2935 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465844619\n\nDear TUNCAY KOÇOĞLU, your shipment with 465844619 was delivered to you with the delivery code 2935. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465844619\n\n\nBICARGO','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('74dd6ee4-7606-4134-bf14-b86c80494fdb','0767059929','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('74dfc9d6-6950-4a5a-9e33-0e498227c095','905301592882','YAVUZ KOÇMAN		 adlı müşterinizin 910772127 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('74eb60c3-ed72-4cfe-8e50-72726fe2e595','4917670549547','745778561 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10974 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745778561\n\nYour shipment with the number 745778561 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10974. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745778561\n\nBICARGO','1','4ea10ab4-061b-4394-9937-abf14e77d39b',NULL),
('74f44d18-98c7-49b7-a1c8-e63aed625a4e','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223249369 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL),
('750079ac-5762-4d14-ab0a-90adb4a8d05c','905075277637','MEHMET DAĞDEVİREN adlı müşterinizin 745485271 nolu gönderisi 45 parça halinde yola çıkmıştır.','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('7515efef-9fb5-4568-8e9c-3ba329556fa4','491732013160','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('7519ebdc-f79c-4420-a44a-2d43b1e57d72','905535521975','ONUR MAHAR adlı müşterinizin 019113818 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('751dc52f-5579-469b-ad5c-31a40bf89e12','905517075149','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 47842524 nolu gönderinizin dolap alt tabla ürünü 1 parça halinde acca adresinizden 07.07.2025 16:29:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('75241538-2967-4eef-8bae-f441e0244c85','33664587030','745767667 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745767667\n\nYour shipment with the number 745767667 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745767667\n\nBICARGO','1','06e21650-25ae-4be2-b1dd-31866d6e20f9',NULL),
('7524a0b6-75a5-4b2d-aeb3-9a0a64ee2a37','905075277637','ÇAĞLA YILMAZ adlı müşterinizin 74594122 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ee001c6-de4d-4cf2-89fa-9fd9588b6576',NULL),
('7532b395-a690-4409-bcb9-80479bf45725','337533944622','Sayın FESİH DOĞAN, 47853753 nolu gönderiniz 8314 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47853753\n\nDear FESİH DOĞAN, your shipment with 47853753 was delivered to you with the delivery code 8314. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47853753\n\n\nBICARGO','2','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('75384375-e51a-4a6a-b923-6626e0676c4b','31650234175','Sayın SAİT CARCUR, 501874784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501874784\n\nDear SAİT CARCUR, your shipment with 501874784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501874784\n\nBICARGO','1','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL),
('75395eff-9556-4a0a-9967-268e76fc7d53','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin 45 CM TEKLİ SEHPA ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 14:20:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('753b9ea7-3155-41e1-94a5-f02134ef800f','905304259202','DEFNE AKAY adlı müşterinizin 478642368 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','967d15a7-2096-45bd-bc90-7a65319402f4',NULL),
('754356f9-a507-49f8-8688-b3bd17fa504f','905510396989','CEMAL YALÇIN SSH adlı müşterinizin 319388100 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('75456cd5-63ff-4a45-be4c-2da81ba805f7','905079358213','SEVİLAY BÖLER adlı müşterinizin 745824914 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL),
('75499838-021f-44d1-985b-6c0fab5aeb34','4915772539240','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('754c5f6e-7575-4d38-9203-129cada4cdb7','491785618388','644859309 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9060 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644859309\n\nYour shipment with the number 644859309 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9060. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644859309\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('754cf968-6581-410b-a128-e3eca9f80b79','05380623114','Sayın NAFİT GANİOĞLU, 517255345 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517255345\n\nDear NAFİT GANİOĞLU, your shipment with 517255345 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517255345\n\nBICARGO','2','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('754d8d00-e698-402d-9d2b-9675c3e61611','905461661672','TEVFİK KÜÇÜK adlı müşterinizin 644513470 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('754ddce8-aa10-40f7-9f32-4b5357a1d85a','905325998198','HALİT ŞEN adlı müşterinizin 614474485 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL),
('7560b870-46ae-4ae1-8f24-d6e577a2dced','491733557232','Sayın SEVGİ BOLAT, 598250504 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598250504\n\nDear SEVGİ BOLAT, your shipment with 598250504 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598250504\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('756282d5-fe23-453e-8ca1-a96066017443','31625064385','Sayın MURAT AKTAŞ, 412842533 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412842533\n\nDear MURAT AKTAŞ, your shipment with 412842533 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412842533\n\nBICARGO','1','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL),
('7565e4b1-6bb2-4fef-92e8-986b558dbca9','4915750730726','Sayın SAKİNA RAHİMİ, 449874608 nolu gönderiniz 2354 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449874608\n\nDear SAKİNA RAHİMİ, your shipment with 449874608 was delivered to you with the delivery code 2354. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449874608\n\n\nBICARGO','1','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL),
('756ae1af-ad9d-4d06-8b95-086f66dbd9c1','905350617509','Sayın yetkili; ALEYNA KARAKUS adlı müşterinize 613787861 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 23.09.2025 18:20:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('756b6de0-1d21-4acf-a5fc-c987251bfbb1','4915731363686','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('756e1fdf-c356-45c2-8843-31f99b76d546','436766536472','Sayın HAKAN AKDEMİR, 478110382 nolu gönderiniz 6082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478110382\n\nDear HAKAN AKDEMİR, your shipment with 478110382 was delivered to you with the delivery code 6082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478110382\n\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('756edc45-a4fb-4c6a-b953-9022adbfa9cc','905079047428','RASHİD FECİANE adlı müşterinizin 449823745 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','582bd0ee-3bef-4bc8-9243-917189827f95',NULL),
('756fe0c0-cc0f-4da7-a7af-a2a5fad352ea','31614272440','Sayın AHMET GÜVEN, 657832584 nolu gönderiniz 9537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657832584\n\nDear AHMET GÜVEN, your shipment with 657832584 was delivered to you with the delivery code 9537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657832584\n\n\nBICARGO','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('7570590d-2f6e-48e7-b1d0-47c9349cf735','4917624864505','Sayın AHMET EMİN GÜL, 910201328 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910201328\n\nDear AHMET EMİN GÜL, your shipment with 910201328 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910201328\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('7572a78f-a7c8-467d-b27b-e61320763d4f','31624237190','Sayın HASAN BİLECEN (SSH), 221996027 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221996027\n\nDear HASAN BİLECEN (SSH), your shipment with 221996027 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221996027\n\nBICARGO','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('75733ab8-3510-4064-82e6-e2c03c65334d','905304259202','ÖMER KARAN adlı müşterinizin 478165569 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('7574fde3-4804-4611-9ee2-6cec0f9968bf','4915733940520','Sayın ÖZLEM KIZILARSLAN, 644650618 nolu gönderiniz 7367 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644650618\n\nDear ÖZLEM KIZILARSLAN, your shipment with 644650618 was delivered to you with the delivery code 7367. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644650618\n\n\nBICARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('7577c8dd-0f72-46ba-9c0f-7b105c50bf16','905461661672','Sayın yetkili; EBRU TÜRKMEN adlı müşterinize 644495739 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde LENTE HOME adresinizden 10.10.2025 12:32:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e1f8bc1-fbc6-4a17-9981-db921860e228',NULL),
('757851ce-f7a6-4731-8ab5-678d76f99a4c','905059175469','GÖKHAN UYSAN adlı müşterinizin 42873500 nolu gönderisi 45 parça halinde yola çıkmıştır.','1','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('75796eb4-20a7-44dc-906f-b9c81c642ea8','905075277637','ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinizin 745967323 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('757b34a9-0ba3-4459-b3e1-b13c7ea765e9','4369916121712','Sayın YASEMİN ÖZKILINÇ, 437819954 nolu gönderiniz 2216 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437819954\n\nDear YASEMİN ÖZKILINÇ, your shipment with 437819954 was delivered to you with the delivery code 2216. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437819954\n\n\nBICARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('757bafbd-5f3d-40b6-94e2-1692297a8951','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 6 SANDALYE ürünü 6 parça halinde RUUFFROM adresinizden 22.08.2025 13:21:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('757c9c59-87a5-4b86-b4a2-e45264116ec0','4367761978240','Sayın ASLAN MURTAZALİEV, 613669036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613669036\n\nDear ASLAN MURTAZALİEV, your shipment with 613669036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613669036\n\nBICARGO','2','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('757eb5da-b5d3-45e9-a492-29c342e06a52','905075277637','YASEMİN YAŞA adlı müşterinizin 745818939 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('75820bad-c3f6-4719-b933-01f3949e1a30','33744210474','Sayın ATİLLA POLAT, 478502129 nolu gönderiniz 8287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478502129\n\nDear ATİLLA POLAT, your shipment with 478502129 was delivered to you with the delivery code 8287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478502129\n\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('75838c88-320e-43d6-83f5-a163475ccb29','905335511664','DİLCAN YEŞİLMEN adlı müşterinizin 371290223 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','751e7cfe-45c9-4ff6-a9db-f5b7e29356ac',NULL),
('75892ee7-37a4-41b0-9e93-078851ca65e1','905079358213','Sayın yetkili; AYDIN İLKNUR adlı müşterinize 745545386 nolu gönderinizin 140X200 KING PLATİN BAZA SET  ürünü 4 parça halinde Fatura adresinizden 22.08.2025 12:31:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('759a12ed-5528-4180-a808-473b001c6c93','905078062550','Sayın yetkili; SOMİA KARABİLA SSH adlı müşterinize 59840179 nolu gönderinizin SSH MODÜL ürünü 2 parça halinde NLUXHOME DEPO adresinizden 19.08.2025 16:39:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('759bd37f-0826-43cf-9a05-00bd434fa461','4915751330310','371913094 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371913094\n\nYour shipment with the number 371913094 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371913094\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('759c107b-be3b-4582-952e-691105e88159','905331602195','Sayın yetkili; HİLAL YILDIZ-MERT YETGİN adlı müşterinize 221440431 nolu gönderinizin Nevada masa 90x190 ürünü 3 parça halinde Fatura adresinizden 23.01.2025 11:03:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','235ede83-046c-43b3-a7f1-746b19237d67',NULL),
('75a4b557-cc58-4755-8e13-2a9fea6f7941','905313340045','NİNA ÖZÇELİK adlı müşterinizin 437397407 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('75a5c422-0686-4a09-b41c-b45ccd2cc8b2','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin konsol bombeli yan- masa orta parçaları-rutuş boyası ürünü 3 parça halinde kuka adresinizden 02.06.2025 17:20:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('75a756e7-fc33-48a2-84a3-e74aecbcd88b','01749180995','Sayın HATİCE ÇETİN(K), 644834421 nolu gönderiniz 10089 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644834421\n\nDear HATİCE ÇETİN(K), your shipment with 644834421 was delivered to you with the delivery code 10089. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644834421\n\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('75abdca5-3af0-4be3-9058-612fc7371ea9','4917676733022','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('75aecd86-80c6-4736-9535-1f1b298ccdb3','4915736399251','Sayın CENNET YAVUZ, 437250812 nolu gönderiniz 4431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437250812\n\nDear CENNET YAVUZ, your shipment with 437250812 was delivered to you with the delivery code 4431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437250812\n\n\nBICARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('75afe0a3-458e-4f43-8e36-1cc75004e67a','905454259202','MELİSA DEMİRTAŞ adlı müşterinizin 478757775 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('75b0ecce-cdb7-4834-972c-e2cd833d82d9','491621003138','Sayın FAHREDDİN ÖZENC, 745283309 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745283309\n\nDear FAHREDDİN ÖZENC, your shipment with 745283309 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745283309\n\nBICARGO','1','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL),
('75b53b31-e015-4ed4-866f-58720b8a5ef6','905331602195','Sayın yetkili; LEPETİT CRİSTELLE (SSH) adlı müşterinize 221901011 nolu gönderinizin Balat sandalye (ssh) ürünü 6 parça halinde ALP SANDALYE adresinizden 20.05.2025 15:42:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3ace9aac-a197-4e9b-9f08-d07c0b7f938b',NULL),
('75ba4228-df3b-40ab-af25-7194febd1931','491627758662','Sayın FİRAS MACHANTAT, 750125400 nolu gönderiniz 5222 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750125400\n\nDear FİRAS MACHANTAT, your shipment with 750125400 was delivered to you with the delivery code 5222. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750125400\n\n\nBICARGO','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('75c33cca-f869-4f7e-bfb2-a5bf6289551a','4917662543723','Sayın SEDA ERSÖZ, 644823609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644823609\n\nDear SEDA ERSÖZ, your shipment with 644823609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644823609\n\nBICARGO','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('75c4c81d-b453-466b-8704-bbc1776bbb32','4917670037980','Sayın MARİNELA MARİNKOVİC, 505948491 nolu gönderiniz 5263 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505948491\n\nDear MARİNELA MARİNKOVİC, your shipment with 505948491 was delivered to you with the delivery code 5263. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505948491\n\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('75c7a2e0-1756-4ea4-9b62-41cd2abe07bc','905336367828','Sayın yetkili; ALİ ÇETİN  adlı müşterinize 982408783 nolu gönderinizin sineklik  ürünü 1 parça halinde Fatura adresinizden 11.02.2025 11:26:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('75c956e7-5d4c-4055-8a29-6a9ac9995285','491728739578','Sayın ARMİN IMERİ , 221867394 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221867394\n\nDear ARMİN IMERİ , your shipment with 221867394 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221867394\n\nBICARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('75d41e0a-7890-40b9-89f5-07db79cbb3b8','905331602195','BABERIH LEİLA  adlı müşterinizin 221164226 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f6d4c8cd-bc6e-4af1-9285-67ed28f49565',NULL),
('75d578c8-8342-422b-83be-67009c590e81','905313340045','SERAP ÖZTEK adlı müşterinizin 437660658 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('75d6576f-c5fd-4bfc-aca6-0494eaf1d7b6','905313340045','Sayın yetkili; SİBEL HİTAY adlı müşterinize 437812245 nolu gönderinizin kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 01.09.2025 11:27:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('75dbabf3-06af-4d2a-83a5-a54882b4f4ce','905333323012','Sayın yetkili; GİULİA CLARA CASAGRANDE adlı müşterinize 695274055 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde VERAS LİFE adresinizden 16.06.2025 17:29:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb6dbf38-0841-4b1c-8e3d-c3593de38040',NULL),
('75e75aa7-ac98-4b43-b025-2d578448b4f8','4917670413077','598454821 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598454821\n\nYour shipment with the number 598454821 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598454821\n\nBICARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('75e7e85b-c1a1-4a18-bce0-6b96860435cc','905079358213','Sayın yetkili; HAKAN CANBAY adlı müşterinize 74565941 nolu gönderinizin PLATİN YATAK 180X200 ürünü 1 parça halinde Fatura adresinizden 19.01.2025 19:07:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('75f1e928-f098-4307-9489-eb19ac500cfb','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin masa  ürünü 2 parça halinde Riyo home adresinizden 30.12.2024 11:03:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('75f42653-8265-48a4-bf38-303b47aad17c','905335708965','SARA MOHAİUDDİN adlı müşterinizin 248216907 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','746346ca-da04-465b-bff8-fc464fa93ece',NULL),
('75fb5d43-0b01-47c6-97b9-78581b52d969','905301592882','GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinizin 910825747 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('75fc8876-8f7a-456c-bd07-069ce175ce0d','33605874886','Sayın MUHAMMET TÜRKMEN, 745952430 nolu gönderiniz 2328 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745952430\n\nDear MUHAMMET TÜRKMEN, your shipment with 745952430 was delivered to you with the delivery code 2328. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745952430\n\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('75ff98f9-a14a-4b1b-9f09-7515702181a6','905443955915','Sayın yetkili; ŞÜKRAN ALP adlı müşterinize 614990703 nolu gönderinizin Sehpa ürünü 1 parça halinde Fatura adresinizden 08.11.2024 13:21:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('7602ff9c-815d-485a-9fc9-03952fb66de2','905079358213','İBRAHİM YILDIRIM adlı müşterinizin 745405587 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('7606b14e-9cbe-4fb9-80b1-1b494a204f06','905335511664','LAİLA MANDANİ adlı müşterinizin 371887346 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('76072341-b191-425b-ab59-79b8bcdc0fde','436608636840','338730647 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1567 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338730647\n\nYour shipment with the number 338730647 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1567. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338730647\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('7610f98a-e548-46e9-9cdb-73d46ceab6c7','905364752848','ÖZGÜR BOZKURT adlı müşterinizin 231211138 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL),
('761ecab6-8bc4-4f85-8b6e-474f48446092','4917662226476','Sayın VİET ANH THAİ, 531250587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531250587\n\nDear VİET ANH THAİ, your shipment with 531250587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531250587\n\nBICARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('762350d2-afbb-442d-88ce-0c11afb5c31b','32484569917','Sayın FEHMİ TÜRK, 221570854 nolu gönderiniz 9191 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221570854\n\nDear FEHMİ TÜRK, your shipment with 221570854 was delivered to you with the delivery code 9191. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221570854\n\n\nBICARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('76255540-3d0b-450d-90fc-74bdb236e38c','411798150062','455568872 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6239 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455568872\n\nYour shipment with the number 455568872 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6239. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455568872\n\nBICARGO','2','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL),
('7626ed2f-dd4f-4938-a181-78f3b40b1ff2','905534084469','Sayın yetkili; İLHAN ERAYDIN adlı müşterinize 15151133 nolu gönderinizin mermer masa ayağı ürünü 2 parça halinde MELYA SANDALYE adresinizden 20.02.2025 15:40:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('762728da-ad35-4de4-8bca-55e81cc7695c','32479973950','Sayın MEHMET EMİN ŞIK, 478955837 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478955837\n\nDear MEHMET EMİN ŞIK, your shipment with 478955837 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478955837\n\nBICARGO','1','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL),
('762df0e5-5438-4ee6-aa30-2fc4ae866b92','905335511664','Sayın yetkili; ÖZLEM AKAY adlı müşterinize 371440688 nolu gönderinizin DİJİTAL BASKI MASA + SEHPA ürünü 5 parça halinde SM Tasarım adresinizden 01.07.2025 13:27:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('7632a932-b16e-4e4e-95b9-0d39e288ad56','905313340045','FAZİLET ÖZÇELİK adlı müşterinizin 437232562 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('7636e573-2af6-40ff-9350-bb4cf2ba72d0','33780501083','982542299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2789 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982542299\n\nYour shipment with the number 982542299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2789. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982542299\n\nBICARGO','1','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL),
('763b97a5-9518-4f46-8c4a-27bd1ef9194a','905079358213','NİHAT SEMOĞLU adlı müşterinizin 745175736 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL),
('763f4b41-5992-4ebd-99eb-901f367eb1a2','32696805834','85814402 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8871 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/85814402\n\nYour shipment with the number 85814402 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8871. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/85814402\n\nBICARGO','2','c660ccad-df7b-45ce-a388-95120ceea510',NULL),
('764018ac-a396-4acf-be19-034a7b0d8438','905451571652','Sayın yetkili; NİLGÜN LEUKEL adlı müşterinize 531629494 nolu gönderinizin Seramik masa ve sehpa ürünü 5 parça halinde MASAMİ adresinizden 23.09.2025 11:58:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('76433287-cdec-42c2-9f3c-93d0955be7ef','4917632298382','Sayın ERCAN VARSAK SSH , 745282619 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745282619\n\nDear ERCAN VARSAK SSH , your shipment with 745282619 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745282619\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('76481819-3dec-46c4-9da6-9f7d8b6f7e1e','905078062550','İBRAHİM YEŞİLKAYA adlı müşterinizin 598211009 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('7649041d-80de-470a-9489-459bfd263d74','33642608703','47865598 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4980 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47865598\n\nYour shipment with the number 47865598 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4980. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47865598\n\nBICARGO','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('7649fe79-f9e8-4fb5-b61c-0420d4fff518','01749180995','644834421 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10089 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644834421\n\nYour shipment with the number 644834421 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10089. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644834421\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('764b27d3-9071-49f1-bad7-19d09180e0ad','905079358213','Sayın yetkili; EMRE YILMAZ adlı müşterinize 745884226 nolu gönderinizin TREND YEMEK MASASI ürünü 3 parça halinde GARDEROBE adresinizden 07.05.2025 13:22:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('764c2d9c-e38f-4fac-be21-11d99afafb65','31629103799','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('764cac92-32dd-45c4-a9bd-d36f9222e141','4369914178102','745411152 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2165 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745411152\n\nYour shipment with the number 745411152 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2165. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745411152\n\nBICARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('764f9838-6464-48b6-89c0-4ff0ce775d4e','905075277637','Sayın yetkili; SERHAT ÇAÇAN adlı müşterinize 745303876 nolu gönderinizin RAMS TV ÜNİTESİ ürünü 1 parça halinde Fatura adresinizden 03.02.2025 20:55:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('764faaa4-bd71-4ee1-a4a8-a913b72011d6','31650492862','Sayın KADİR DALKILIÇ, 745881843 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745881843\n\nDear KADİR DALKILIÇ, your shipment with 745881843 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745881843\n\nBICARGO','1','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL),
('7654e8db-cc23-4647-9ec8-42b3ee7356e6','4915208560567','Sayın ESMA EROĞLU, 614859961 nolu gönderiniz 9695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614859961\n\nDear ESMA EROĞLU, your shipment with 614859961 was delivered to you with the delivery code 9695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614859961\n\n\nBICARGO','1','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL),
('7657e7e7-cd9e-4b5d-bac1-43fcfd79267d','33749273890','Sayın SELCAN BOZKURT , 221118460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221118460\n\nDear SELCAN BOZKURT , your shipment with 221118460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221118460\n\nBICARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('765ba447-c535-4514-a5be-5fcb46824dcf','905517075149','CAN ÇELİK adlı müşterinizin 478507488 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('765c1c9b-4a44-4da1-93ba-29a589d66c56','4917678708676','745170376 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7737 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745170376\n\nYour shipment with the number 745170376 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7737. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745170376\n\nBICARGO','1','0e979831-071a-44d0-92b5-b61f986da797',NULL),
('765cdeb5-1eed-4b49-a478-3667067295f0','4915124291903','Sayın SSH ALPEREN DÜZENLİ , 745863981 nolu gönderiniz 5312 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745863981\n\nDear SSH ALPEREN DÜZENLİ , your shipment with 745863981 was delivered to you with the delivery code 5312. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745863981\n\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('765e5e74-4db9-4127-914c-73a7f93408c5','491796697290','Sayın PERİHAN ÖZVURAL, 531344250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531344250\n\nDear PERİHAN ÖZVURAL, your shipment with 531344250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531344250\n\nBICARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('7663624b-6e5b-471a-9c80-da7860e46bec','33763204411','221949733 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3451 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221949733\n\nYour shipment with the number 221949733 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3451. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221949733\n\nBICARGO','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('76658336-1861-421b-8e88-15124487e015','905304259202','AYŞE KONDAL adlı müşterinizin 478530755 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('766ab70b-0c75-4cc2-bfd9-db622b0ba3d1','905073106101','MEHMET BATMAZ adlı müşterinizin 46558561 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('766d8b64-2f99-45c8-ac78-98b8f637eda4','31642163844','Sayın SABRİ ÖNÜZ, 437762949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437762949\n\nDear SABRİ ÖNÜZ, your shipment with 437762949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437762949\n\nBICARGO','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('766f7bca-cd60-4200-bd8d-939f2fb91fbd','905445745615','Sayın ALEYNA KARAKUS, 613787861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613787861\n\nDear ALEYNA KARAKUS, your shipment with 613787861 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613787861\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('7671f35f-dc5a-4480-bf97-3c62dcc410e1','905075277637','KENAN BAYAR adlı müşterinizin 74568874 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('7671fe01-7d07-426a-9843-29edcd9566d7','31625064385','163548367 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/163548367\n\nYour shipment with the number 163548367 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/163548367\n\nBICARGO','1','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL),
('767a1218-652a-45f4-91a8-92d0566ef10a','01729404068','Sayın HATİCE ÇETİN(K), 644834421 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644834421\n\nDear HATİCE ÇETİN(K), your shipment with 644834421 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644834421\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('767b3f92-078e-4923-a29c-49416d1287ae','4917632257124','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('767caedf-ca7e-4a3c-b583-c4a8ebb722af','905331602195','BARBOSA SHANNA  adlı müşterinizin 221403218 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('76868cac-7ce0-4a98-9201-c2c3d3c81ef0','4917670882754','Sayın DONYA AL HAİDARİ, 081411095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/081411095\n\nDear DONYA AL HAİDARİ, your shipment with 081411095 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/081411095\n\nBICARGO','1','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('76871e68-58c9-4449-b47b-66fd5ad6e6c7','905078062550','Sayın yetkili; AHMET GÜMÜŞ adlı müşterinize 598387436 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde HARUNCAN SOFA adresinizden 01.10.2025 12:43:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('768a02a6-7ad3-442c-b578-1d2a288f54a5','905517075149','NURCAN DOLDUR adlı müşterinizin 478223658 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('768c6d9d-08e9-4bf4-9ebd-df7b4f601604','905312762034','TAYFUN TATLIGÜN adlı müşterinizin 8087036 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('768db677-160f-4769-bfbb-a61ac99d47ff','4917631669596','Sayın EDA ABUL, 817160215 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817160215\n\nDear EDA ABUL, your shipment with 817160215 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817160215\n\nBICARGO','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('768dfd34-5291-4182-8023-d799ea062600','313115689790','Sayın IMAN JAWİD, 531245816 nolu gönderiniz 6485 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531245816\n\nDear IMAN JAWİD, your shipment with 531245816 was delivered to you with the delivery code 6485. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531245816\n\n\nBICARGO','2','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('768edf0c-614d-4f36-89be-b07d05d655a2','491759698096','Sayın IRA YİLDİRİM , 613297420 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613297420\n\nDear IRA YİLDİRİM , your shipment with 613297420 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613297420\n\nBICARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('768f3e84-b9a5-48af-a470-5b4b5bd7e0c8','5325000478','Sayın AAAA BBBBB, 27.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9539601\nŞifre : 9539601\n			\nBİCARGO','1',NULL,'95d39b60-193e-460a-8e07-0929aa9f2949'),
('7690173b-60c2-48b1-87a1-b02296e42291','491626393170','Sayın TUĞBA GÜLSEVEN SSH, 644860505 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644860505\n\nDear TUĞBA GÜLSEVEN SSH, your shipment with 644860505 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644860505\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('7690b75d-2e77-4e31-bf6b-bd0fa04b34ae','905079358213','Sayın yetkili; GİZEM YAZICI  adlı müşterinize 745582484 nolu gönderinizin PETRA YATAK OD. ürünü 24 parça halinde Fatura adresinizden 03.02.2025 20:51:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('7692806c-02ed-46fa-aad5-a7aac9e28db1','905075277637','NURTEN TÜRK adlı müşterinizin 745220703 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e8a249a9-b090-42b5-ba99-445005f2b553',NULL),
('7694b0fb-8d7d-4e09-aa30-ef570c508ccd','33647785711','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('76950218-cdb0-46b6-bfa1-af54b42bb13c','4915204591677','Sayın ZÜLFİKAR CAN, 745936573 nolu gönderiniz 7934 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745936573\n\nDear ZÜLFİKAR CAN, your shipment with 745936573 was delivered to you with the delivery code 7934. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745936573\n\n\nBICARGO','1','6c005507-054f-4904-8f84-b0774ba70335',NULL),
('76a0af4c-0beb-4339-ad37-8e1195d60ecb','05539740010','Sayın yetkili; HÜLYA ŞENEL  adlı müşterinize 011195834 nolu gönderinizin KARYOLA ürünü 3 parça halinde KARYOLA adresinizden 22.08.2025 10:09:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('76a3e6cb-f780-4332-bd29-bb6a94498009','905313340045','Sayın yetkili; DİANA HUSSEİN adlı müşterinize 437917777 nolu gönderinizin sandalye ürünü 3 parça halinde HATEM sandalye adresinizden 13.05.2025 15:33:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('76a6f3bc-71a5-486c-a6ec-dcf22f99b34b','905336367828','THOMAS TELAH adlı müşterinizin 982681083 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('76af6d58-f9f7-4fcd-9fad-aab8111ae9aa','4915201348727','Sayın NURSEL ALİOĞLU, 221272241 nolu gönderiniz 7620 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221272241\n\nDear NURSEL ALİOĞLU, your shipment with 221272241 was delivered to you with the delivery code 7620. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221272241\n\n\nBICARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('76b2d72d-2c1b-448e-8f29-ce4e46f464c5','491746858313','478643015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8038 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478643015\n\nYour shipment with the number 478643015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8038. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478643015\n\nBICARGO','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('76b4ebee-b0f1-4637-bcac-e16c28e6962b','436602050348','Sayın FATMA SILA KAÇAK, 644194590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644194590\n\nDear FATMA SILA KAÇAK, your shipment with 644194590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644194590\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('76b65023-5233-4a45-98e9-c27cb6be41da','33652652450','Sayın PELŞİN YILDIZ, 478245028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478245028\n\nDear PELŞİN YILDIZ, your shipment with 478245028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478245028\n\nBICARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('76b777ca-3901-4bbc-9476-2cfeff58d9dd','905313340045','BEN FRİHA FATMA adlı müşterinizin 437321677 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('76b95268-4cda-4a9b-b736-436315d10052','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin RİTİM YATAK ODASI (ŞİFONYERSİZ) ürünü 15 parça halinde Fatura adresinizden 08.07.2025 17:27:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('76bb5742-a9ef-496d-8c8c-ff00efd082dd','905336367828','SERKAN DAĞ  adlı müşterinizin 982432822 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','623aef24-2f33-4ceb-b49b-a0d41b424435',NULL),
('76bc5300-7540-48c5-82a8-64e5adf3813e','905331602195','NURSEL ALİOĞLU adlı müşterinizin 221272241 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('76bc78aa-b1b8-4126-9a0e-c8f5ed240cbb','905363385813','Sayın yetkili; ERDAL OCALAN adlı müşterinize 976126416 nolu gönderinizin Koltuk ürünü 5 parça halinde SALON KOLTUK adresinizden 02.01.2025 14:47:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('76bed63f-2570-40f0-8802-b8d10bd6e426','32484568424','Sayın HAVVA KUM, 221443179 nolu gönderiniz 1405 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221443179\n\nDear HAVVA KUM, your shipment with 221443179 was delivered to you with the delivery code 1405. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221443179\n\n\nBICARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('76c0665a-fbe1-4b52-af5a-40c0549d1adf','905454259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478783487 nolu gönderinizin DOLAP  ürünü 9 parça halinde acca adresinizden 14.04.2025 10:56:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('76c09e95-0fdb-4512-935f-b73d2749c2cc','4915730253868','İletişim \n					Şöför Murat : +905321616048','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('76c4ae3b-3e22-45a9-b5d6-e9d85167cf24','905454259202','ERGÜN YILMAZ adlı müşterinizin 478890979 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c2738111-51d8-4195-8709-efd9bbe4d309',NULL),
('76cb7ad3-5ea1-4b36-a42f-af877fa80e99','41765582020','31912550 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4729 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/31912550\n\nYour shipment with the number 31912550 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4729. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/31912550\n\nBICARGO','1','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL),
('76cdfcf1-d1bf-480d-ae1e-1567704fb9a7','905454259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde GARDEROBE adresinizden 08.05.2025 14:30:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('76d3ea33-9cae-42ac-9345-14aabae521fb','905461661672','SILA SEVİL İLGÜN adlı müşterinizin 644877864 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('76e99ddf-318a-4490-a729-755c37343948','905335511664','Sayın yetkili; AHMET AĞIRMAN adlı müşterinize 371747945 nolu gönderinizin YATAK TAKIMI ürünü 7 parça halinde albessa karyola adresinizden 26.08.2025 10:43:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e1bcc6c-d49a-4ede-abe4-f49246a8b1ef',NULL),
('76ef0255-2059-4099-aa67-e79bbfa7f1b8','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin masa ve 6 det sandalye-karyola-şifonyer puf-çamaşırlık-2 adet komidin ürünü 19 parça halinde AREA adresinizden 01.10.2025 14:23:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('76f1d291-a1de-4134-91f8-60bb170185b6','905532675926','Sayın yetkili; ABDULLAH SÖNMEZ adlı müşterinize 428107185 nolu gönderinizin c sehpa 3 adet ürünü 1 parça halinde Fatura adresinizden 15.09.2025 16:13:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('76f489e5-de7c-4f7d-93d0-7461cdeca167','905075277637','METİN PEKSERT SSH adlı müşterinizin 745933378 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('77040c30-679f-44c3-bb40-d2f19ffed329','32489883387','Sayın ÖZGÜR ÇEŞME, 437540085 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437540085\n\nDear ÖZGÜR ÇEŞME, your shipment with 437540085 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437540085\n\nBICARGO','1','fb70c94c-78cc-4a1f-9b09-616f804975bb',NULL),
('770a1ce6-6a78-4ab6-b189-b4bbc5c02caf','4917631090224','Sayın SİBEL HİTAY, 437812245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437812245\n\nDear SİBEL HİTAY, your shipment with 437812245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437812245\n\nBICARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('770cd3f4-e92c-4eab-aaf5-bf274bed1b2f','31624237190','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('77113fde-59b0-49c8-bf6b-dcd0d7cde55f','4917657693085','745839023 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1811 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745839023\n\nYour shipment with the number 745839023 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1811. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745839023\n\nBICARGO','1','d406bcf9-208d-4398-83bc-73bfdd569d39',NULL),
('7711bde1-b0b7-4568-aa65-9431c342ff38','905335458833','BİRSEN YILMAZ adlı müşterinizin 334873891 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL),
('77128bd2-547e-4766-9c1d-f9f8f2723c1b','015112339457','Sayın DİLBERAY MELLO, 613199072 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613199072\n\nDear DİLBERAY MELLO, your shipment with 613199072 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613199072\n\nBICARGO','2','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('7719c491-7c99-455c-a7cb-ab4e90d56509','905325000478','SEYFETTİN adlı müşterinizin 41298450 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('771ec76d-332b-40af-a6c9-9f59da26f3d9','436603406293','ARZU ASLAN adlı müşterinizin 675629833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('77202bdb-9209-47cd-9289-a90a038a60d0','905454259202','Sayın yetkili; MUHAMMET ÖZKAN adlı müşterinize 47830878 nolu gönderinizin koltuk -yemek odası-ortasehpa ürünü 16 parça halinde çelikbey inegöl depo adresinizden 26.01.2025 13:23:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('77224c94-4489-4e12-83f5-7688ec612b72','330667702698','Sayın BYTYCİ REZARDE, 982773684 nolu gönderiniz 10695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982773684\n\nDear BYTYCİ REZARDE, your shipment with 982773684 was delivered to you with the delivery code 10695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982773684\n\n\nBICARGO','1','98c40a46-22d8-4470-84a1-302a19073f0d',NULL),
('772594e8-e203-4b4a-ae09-4e627b40bd7e','905325000478','HASAN BEY (İRFAN) adlı müşterinizin 412797306 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('7726030a-8d85-4935-ae29-928e81132683','436609136123','Sayın MONİCA TODERAŞ, 505597041 nolu gönderiniz 3193 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505597041\n\nDear MONİCA TODERAŞ, your shipment with 505597041 was delivered to you with the delivery code 3193. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505597041\n\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('772d64e7-17a0-47ea-b0b8-00731c472715','33787870311','Sayın MUHAMMED ÇETİN, 221234413 nolu gönderiniz 5254 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221234413\n\nDear MUHAMMED ÇETİN, your shipment with 221234413 was delivered to you with the delivery code 5254. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221234413\n\n\nBICARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('772dd3d2-1ec8-4366-bbc4-cecc99421c28','905363385813','RUKİYE DARDANOĞLU adlı müşterinizin 976521198 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL),
('772e44c4-a2fd-4bb7-840f-70dea676efea','491713468875','437426295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10844 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437426295\n\nYour shipment with the number 437426295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10844. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437426295\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('77352237-5a99-4c5f-97fa-c802970b7cf8','905325000478','BERKANT adlı müşterinizin 412252365 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('7735a13b-896a-4899-b909-3229cc344d50','905517075149','KEYVAN GHADİMİ adlı müşterinizin 478363734 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('773faa84-5d43-4e2a-9aeb-831856c5d0bc','905335511664','ALPER ALBAYRAK adlı müşterinizin 371400028 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('773fba41-685e-4fdc-9514-5daa4efb58d7','491625752306','478363734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6454 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478363734\n\nYour shipment with the number 478363734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6454. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478363734\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('7746846c-7289-4866-bf2c-78b5a2851c39','905079358213','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin MERMER DESEN MASA  ürünü 4 parça halinde GÜMÜŞ MASA adresinizden 18.06.2025 15:33:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('774a9d8b-10f9-4f33-b0e7-6bf14c895bef','11111111111','Sayın ERDOĞAN ERTÜRK, 01.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0587819\nŞifre : 0587819\n			\nBİCARGO','2',NULL,'05e8de78-1979-427a-85ea-4116295aadf5'),
('775032af-6677-4d17-9864-0edbb92cf4c6','4917662992402','598373943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5694 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598373943\n\nYour shipment with the number 598373943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5694. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598373943\n\nBICARGO','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('77536ec9-1e28-42bc-a76a-7a87cb1b1a89','905517075149','Sayın yetkili; YUSUF BARAN adlı müşterinize 478450171 nolu gönderinizin YATAK ürünü 1 parça halinde Fatura adresinizden 30.09.2025 13:54:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('7754b462-b478-4a99-ad09-d24a68bd7450','491622351265','Sayın SEVİM KARATEKE , 613528305 nolu gönderiniz 8870 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613528305\n\nDear SEVİM KARATEKE , your shipment with 613528305 was delivered to you with the delivery code 8870. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613528305\n\n\nBICARGO','2','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('77556347-1721-4549-b688-195030dc9565','905336367828','Sayın yetkili; ESTİFANOS HABTE  adlı müşterinize 982496646 nolu gönderinizin masa  ürünü 2 parça halinde Fatura adresinizden 11.08.2025 16:31:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('7757aaf5-504e-4d47-8e03-855156c6fa2a','905336367828','SONJA HUSSAİNİ  adlı müşterinizin 982529212 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('775a0fdf-39cd-4971-8e09-2fc545c8a32d','31634506011','614460765 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2101 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614460765\n\nYour shipment with the number 614460765 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2101. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614460765\n\nBICARGO','1','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL),
('775c03ca-f68f-4dca-b718-6edd2447a2ca','4369913555140','Sayın NURŞEN ADACI, 8176511 nolu gönderiniz 3747 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/8176511\n\nDear NURŞEN ADACI, your shipment with 8176511 was delivered to you with the delivery code 3747. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/8176511\n\n\nBICARGO','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('775c06a1-a0d3-4d8b-b8e8-bdb5fa7bce20','4917662149337','Sayın UMUT YÖRÜK, 644243216 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644243216\n\nDear UMUT YÖRÜK, your shipment with 644243216 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644243216\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('775cc60c-4a60-4112-b6d0-de507715e55a','4917670801496','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('7760684c-0467-4586-b778-f2c20ab1b068','905336367828','TKHİLİ NAİDA adlı müşterinizin 982318245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','226e99fa-2222-409d-9c22-ab0639c760f9',NULL),
('7761390d-f999-4866-ad1a-12c6d2a1f8c1','33682073450','478598314 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8015 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478598314\n\nYour shipment with the number 478598314 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8015. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478598314\n\nBICARGO','1','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL),
('77623278-4966-486a-85ef-7cd17ebe3068','491634491802','982547993 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1988 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982547993\n\nYour shipment with the number 982547993 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1988. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982547993\n\nBICARGO','1','47709c5a-15a6-491c-924f-a72a590fd417',NULL),
('7763b3d6-567c-4f3d-877f-1904fa1090c4','905394878216','Sayın yetkili; TARİK ERCAN adlı müşterinize 517274063 nolu gönderinizin Zigon Sehpa ürünü 1 parça halinde Fatura adresinizden 30.05.2025 11:18:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c19abe66-cb76-4c21-ad00-4ba1ed3d223c',NULL),
('77643d65-898f-4b1d-af44-b579e6eda879','905355928266','BATTAL adlı müşterinizin 412565065 nolu gönderisi 1 parça halinde yola çıkmıştır.','1',NULL,NULL),
('7772c2ed-485f-4132-8150-192b529eea0f','31613006004','Sayın RAHİMİ, 449445608 nolu gönderiniz 8036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449445608\n\nDear RAHİMİ, your shipment with 449445608 was delivered to you with the delivery code 8036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449445608\n\n\nBICARGO','1','72028383-f354-4335-af98-094bc771c86d',NULL),
('7778ba1f-fcaa-42c2-b702-d91d2ffd5f0c','491748888386','Sayın ÖMER ÇALIK SSH , 7456984 nolu gönderiniz 5448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/7456984\n\nDear ÖMER ÇALIK SSH , your shipment with 7456984 was delivered to you with the delivery code 5448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/7456984\n\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('777a28ae-b2fb-4264-90c6-a9ba0404d9f2','905454259202','FEHMİYE KESERCİ adlı müşterinizin 478839575 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c2a467e-0e16-4b5c-93dc-bdb7504d2fec',NULL),
('777d339a-9a97-4985-9766-dd678cf24b10','4917622968923','Sayın ALİ AKKAN, 43725194 nolu gönderiniz 3739 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43725194\n\nDear ALİ AKKAN, your shipment with 43725194 was delivered to you with the delivery code 3739. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43725194\n\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('77881a54-766f-4c82-be48-f03191d13731','4917634403928','Sayın BİLAL KIZILIRMAK, 371155650 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371155650\n\nDear BİLAL KIZILIRMAK, your shipment with 371155650 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371155650\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('77883fc4-d197-4e80-8526-106815aae719','905461661672','(GÜLŞEN KARATAŞ) SSH  adlı müşterinizin 644423895 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('77892b4d-0a56-4659-8547-6d18b8f036f5','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin konsol+masa ürünü 5 parça halinde rk mobilya adresinizden 16.09.2025 11:33:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('7789d628-4a1c-447f-9b9f-5de58727a1a0','905364752848','SALİHAPİA LEULD adlı müşterinizin 231250162 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('778a9db3-8948-4452-bb21-691ba1f4f7cf','905336367828','DİLARA ALAMOORİ adlı müşterinizin 982632860 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('7791d41a-c613-4079-a4a1-aec9fbec1d9a','905350617509','KÜBRA YAMAN adlı müşterinizin 613251938 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('7795bee4-e648-4d31-935e-4712c9b1ba22','31640251699','745409977 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745409977\n\nYour shipment with the number 745409977 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745409977\n\nBICARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('779b269c-85c6-43b1-8ee8-fae9d346216d',NULL,' MUSTAFA KHALİFEH adlı müşterinizin 081982015 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('779f8fec-fc16-49d6-8c21-58ce1666eb81','905313340045','FAİSAL İBRAHİM adlı müşterinizin 437319119 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('77a0d798-d919-4134-b41a-94ea64369527','491751919255','Sayın NAGİHAN ALKIRAN, 338829299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338829299\n\nDear NAGİHAN ALKIRAN, your shipment with 338829299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338829299\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('77a2da86-2e00-4170-99a0-92e2ed4e1f4b','905461661672','Sayın yetkili; GÜLŞEN KARATAŞ adlı müşterinize 644859309 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 25.06.2025 17:59:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('77a5f480-9099-4848-bc42-d3a49b2816e1','905350617509','Sayın yetkili; GÖKKUS PİNAR adlı müşterinize 61340935 nolu gönderinizin Berjer ürünü 1 parça halinde Albessa adresinizden 09.10.2025 14:31:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('77a7293a-f563-49aa-82c5-3f5b55cd722d','4917623256596','478318204 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5741 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478318204\n\nYour shipment with the number 478318204 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5741. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478318204\n\nBICARGO','1','f5c275d6-254f-4e0f-9c07-7da2730731cc',NULL),
('77a87fbc-dd34-466a-a781-4b355b665ed3','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin dubai şifonyer ürünü 5 parça halinde şahinler ahşap adresinizden 10.09.2025 14:09:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('77a8f585-0d7b-43f6-8efa-796167cf4505','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin YAYLI YATAK  ürünü 5 parça halinde BED HOME YATAK adresinizden 04.11.2024 14:15:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('77b4f605-595c-44af-8a0c-db709a87a539','3165428312','478778231 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478778231\n\nYour shipment with the number 478778231 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478778231\n\nBICARGO','2','661ddd47-5b72-400b-be6c-10d5c422f4c3',NULL),
('77b86633-8a68-44e2-a7d9-322c75554de3','905454259202','ASLI ALTINTAŞ adlı müşterinizin 478775583 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('77bb9277-c65d-49e7-9086-77e20cbce0d6','491774238890','Sayın RABİA AKKUŞ SSH, 644564440 nolu gönderiniz 3110 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644564440\n\nDear RABİA AKKUŞ SSH, your shipment with 644564440 was delivered to you with the delivery code 3110. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644564440\n\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('77bbb12f-ebc2-47af-8e2c-5e3a959d9f36','905075277637','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin BAMBİ LATEX MASTER YATAK 180X200 1 ADET  ürünü 1 parça halinde Fatura adresinizden 23.09.2025 14:20:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('77c64ac9-ce0d-4141-84d2-e3747d24fadb','491747765301','Sayın DERYA BAYRAK, 371180149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371180149\n\nDear DERYA BAYRAK, your shipment with 371180149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371180149\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('77ca43f0-9b10-40c2-9f4e-344ed5850f3a','4915233653344','Sayın CEYDA KARA, 437791163 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437791163\n\nDear CEYDA KARA, your shipment with 437791163 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437791163\n\nBICARGO','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('77cdbac0-2305-4fc5-aca5-728fba37e023','905412810757','SEZGİN- FURKAN ÇULLUK adlı müşterinizin 162571177 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL),
('77cfe257-2d24-46ca-942b-0be097cffaca','905069116877','VENERA RUSTEMİ adlı müşterinizin 817838997 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('77d16fad-532d-43c1-8486-dcdb5759c09e','905075277637','METİN PEKSERT SSH  adlı müşterinizin 74597110 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('77d48d40-b6ba-402d-ac49-3834f746ad3c','31619691823','Sayın FEHMİYE KESERCİ, 478949141 nolu gönderiniz 2693 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478949141\n\nDear FEHMİYE KESERCİ, your shipment with 478949141 was delivered to you with the delivery code 2693. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478949141\n\n\nBICARGO','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('77d654bb-4c6e-405c-9928-8c91d8a1e62f','4917663707432','Sayın FEVRİ YALÇIN, 750135738 nolu gönderiniz 6320 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750135738\n\nDear FEVRİ YALÇIN, your shipment with 750135738 was delivered to you with the delivery code 6320. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750135738\n\n\nBICARGO','1','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL),
('77d6c7e1-2bf4-4a2d-bd4b-a1b62d2a0143','4917661141685','478243785 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478243785\n\nYour shipment with the number 478243785 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478243785\n\nBICARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('77d733db-dc0a-4700-84cc-49f194ecdb08','905059175469','MUSTAFA ÖZYİĞİT  adlı müşterinizin 42837513 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL),
('77d78955-66e4-414f-b246-38338b6ccb15','33647785711','Sayın JASSEY COLİNE, 221190454 nolu gönderiniz 7712 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221190454\n\nDear JASSEY COLİNE, your shipment with 221190454 was delivered to you with the delivery code 7712. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221190454\n\n\nBICARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('77d992b8-5311-4b74-a7d2-d18ab9567785','905437954809','KAMER DUHAN ECE adlı müşterinizin 831899043 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('77de3410-f135-46aa-b478-861b5b2c5ebd','4917658150125','Sayın DAVUT DEĞİRMENCİ, 478686372 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478686372\n\nDear DAVUT DEĞİRMENCİ, your shipment with 478686372 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478686372\n\nBICARGO','1','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL),
('77dea7ce-9b74-47de-9386-4171690f52bb','436767311848','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('77e59947-7cd9-4c9e-af8c-3e4857bb78ee','4917662248908','Sayın ERCAN VARSAK SSH , 745282619 nolu gönderiniz 5475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745282619\n\nDear ERCAN VARSAK SSH , your shipment with 745282619 was delivered to you with the delivery code 5475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745282619\n\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('77e842a7-2e6a-4126-a012-9ee2677d539c','905075277637','İSMAİL ÖZAY  adlı müşterinizin 745423192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('77eb7ff7-de23-4b0d-bf9c-e8ae5cbf66ae','905331602195','Sayın yetkili; SAMİR KERANOVİC  adlı müşterinize 221837026 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 14:13:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('77edbbe6-846f-42be-957e-dfe5e7f7d100','491712347917','Sayın EMEL ÖZTÜRK, 371191289 nolu gönderiniz 1798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371191289\n\nDear EMEL ÖZTÜRK, your shipment with 371191289 was delivered to you with the delivery code 1798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371191289\n\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('77eddd39-06ac-442f-86dc-0de2c3cfc6a6','905517075149','BÜNYAMİN ILIKSOY adlı müşterinizin 478668622 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('77eddd95-c0dc-481b-83df-8e0ea53953b2','905301592882','BERFİN HALİS ŞENGÜL adlı müşterinizin 910572875 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('77f43392-11ff-470f-bdfc-1293bf0e9cf6','33638503809','Sayın SADIK BEYSİR, 517110811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517110811\n\nDear SADIK BEYSİR, your shipment with 517110811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517110811\n\nBICARGO','1','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL),
('7804d2dc-5fc4-4098-994e-bfa989032ba0','4916094922910','223385669 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6950 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223385669\n\nYour shipment with the number 223385669 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6950. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223385669\n\nBICARGO','1','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL),
('78058772-eb6a-4ebe-8fee-6c485a910e75','31631493312','Sayın SİBEL OĞUZ, 750951041 nolu gönderiniz 3058 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750951041\n\nDear SİBEL OĞUZ, your shipment with 750951041 was delivered to you with the delivery code 3058. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750951041\n\n\nBICARGO','1','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL),
('7807ac25-49a1-49e6-8f19-2659197ae267','905079358213','Sayın yetkili; ÜNAL KÖR  adlı müşterinize 745660870 nolu gönderinizin koltuk 3+3+1 ürünü 3 parça halinde Fatura adresinizden 22.01.2025 11:38:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('78129d4a-3d23-45b8-80bc-f65a98b5af04','905331602195','Sayın yetkili; LEPETİT CRİSTELLE adlı müşterinize 221251932 nolu gönderinizin 80x180 masa üst tabla ürünü 1 parça halinde Fatura adresinizden 23.07.2025 11:33:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('7812e67b-7bf4-4d82-ab96-a4ada4656033','905461661672','Sayın yetkili; SİBEL ÇEVİK adlı müşterinize 644631223 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde LENTE HOME adresinizden 13.05.2025 16:18:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('78135c8e-cd06-48df-9c94-1f86427b7c58','4915232016495','Sayın KIYMET ŞAHİN, 614987879 nolu gönderiniz 1333 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614987879\n\nDear KIYMET ŞAHİN, your shipment with 614987879 was delivered to you with the delivery code 1333. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614987879\n\n\nBICARGO','1','a72800e1-54dc-4d60-b293-ca2184c62129',NULL),
('7816c3b3-82be-44a8-8dc2-bdf91336f75c','905350617509','RANİA PİSİT adlı müşterinizin 613464926 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('781e2e86-cc1d-414c-b1ca-10cbb110f48f','905079358213','YUSUF ALAN SSH  adlı müşterinizin 745639343 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('781f6b26-9807-4362-a71e-d7d9cd98a34a','905325000478','RAHİM MALOĞLU adlı müşterinizin 412731497 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('78294789-7212-4385-8460-bf81cd51a47e','905331602195','HATEM  adlı müşterinizin 221341784 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('782db46a-e563-4df7-9101-60746cba72bc','1111111111','Sayın ZAKARİA MASHHOD, 248352114 nolu gönderiniz 9783 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248352114\n\nDear ZAKARİA MASHHOD, your shipment with 248352114 was delivered to you with the delivery code 9783. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248352114\n\n\nBICARGO','2','adf0440c-3715-4603-a3a4-91b6f557e095',NULL),
('78331983-5c65-4e49-8ecd-b8870d8111a7','4917620485036','Sayın TALHA KARA, 598384021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598384021\n\nDear TALHA KARA, your shipment with 598384021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598384021\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('78344564-0e1b-44ad-b751-391727d86ea8','905304259202','İNAN KURUCU adlı müşterinizin 478572714 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ce7ae4ad-2b4a-4f14-97b1-6031c225aff2',NULL),
('78374d03-be73-4f14-9eb0-f7f0a07b21a5','015209328224','Sayın ABDULLAH ÖĞRETEN, 644917251 nolu gönderiniz 5800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644917251\n\nDear ABDULLAH ÖĞRETEN, your shipment with 644917251 was delivered to you with the delivery code 5800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644917251\n\n\nBICARGO','2','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('783a6532-1d17-4a03-b723-35c1d319147c','33782642365','Sayın LOULOU FİRAS , 982754836 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982754836\n\nDear LOULOU FİRAS , your shipment with 982754836 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982754836\n\nBICARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('783aeabc-56cc-43ab-ae42-49f202ba2819','905389543828','AYNUR KANDEMIR adlı müşterinizin 486184665 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('78419f47-5e6d-4337-ae8a-9907c63029cf','905336367828','Sayın yetkili; HABİL ŞENER  adlı müşterinize 982864044 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 11.03.2025 16:34:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('784346b4-98d3-42b3-b298-4701d43059c2','491729283228','Sayın METE AKGÜL, 371857345 nolu gönderiniz 6102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371857345\n\nDear METE AKGÜL, your shipment with 371857345 was delivered to you with the delivery code 6102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371857345\n\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('78441163-aad2-446e-b31e-0e76faf53649','4356256625652652','Sayın MEDZENİTH GMBH, 223444495 nolu gönderiniz 2150 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223444495\n\nDear MEDZENİTH GMBH, your shipment with 223444495 was delivered to you with the delivery code 2150. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223444495\n\n\nBICARGO','2','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL),
('784619da-bba1-48e4-81a3-bf31cae14967','491782203045','Sayın ALEV DOĞRU, 478860616 nolu gönderiniz 2347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478860616\n\nDear ALEV DOĞRU, your shipment with 478860616 was delivered to you with the delivery code 2347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478860616\n\n\nBICARGO','1','56059bd6-d32a-4603-91da-c059737a036d',NULL),
('784678d3-ca87-42cc-a86e-8c926248e06b','4915751330310','Sayın ADEM BÜYÜK, 371913094 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371913094\n\nDear ADEM BÜYÜK, your shipment with 371913094 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371913094\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('78499fef-b06f-4174-9098-741462bfdac8','905335708965','ZEKERİYA AKTAŞ adlı müşterinizin 735525138 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70679c39-169c-46b4-9b96-b3994b9aee84',NULL),
('785166d3-e003-4134-b729-43b8231559d4','4915901858511','Sayın ZELİHA ÖCAL, 6442594 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/6442594\n\nDear ZELİHA ÖCAL, your shipment with 6442594 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/6442594\n\nBICARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('78519977-57e5-4f47-ab94-4e7e8a339113','905336367828','Sayın yetkili; HASAN ÇALIK  adlı müşterinize 982720250 nolu gönderinizin Sehpa  ürünü 1 parça halinde Sehpa İbrahim  adresinizden 14.08.2025 10:49:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('7851f5df-75f0-4edc-94f0-a1584cec8151','33767294981','Sayın NASIR NOORI , 982558117 nolu gönderiniz 4199 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982558117\n\nDear NASIR NOORI , your shipment with 982558117 was delivered to you with the delivery code 4199. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982558117\n\n\nBICARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('785c2e38-ae4c-4f6a-b883-4152fd8ac1e0','4915770884048','İletişim \n					Şöför Uğur Acar +905424435917','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('785f01e5-7e30-4e94-aa4d-41e20ed7b142','491785050597','644520957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7427 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644520957\n\nYour shipment with the number 644520957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7427. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644520957\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('785feb16-db69-49fc-8764-14109b219aed','330766449064','Sayın MİHRİBAN ÖZEN, 644776565 nolu gönderiniz 5205 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644776565\n\nDear MİHRİBAN ÖZEN, your shipment with 644776565 was delivered to you with the delivery code 5205. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644776565\n\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('78612340-e9c4-477d-919a-0c2aed139104','436608152569','428122550 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9172 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428122550\n\nYour shipment with the number 428122550 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9172. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428122550\n\nBICARGO','1','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL),
('7866885e-bb78-4ceb-b43a-94ead47f9515','4917663707432','750135738 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6320 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750135738\n\nYour shipment with the number 750135738 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6320. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750135738\n\nBICARGO','1','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL),
('7873326b-c502-4aad-8249-740be0081596','31634977937','Sayın SİBEL ÇEVİK, 644631223 nolu gönderiniz 9239 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644631223\n\nDear SİBEL ÇEVİK, your shipment with 644631223 was delivered to you with the delivery code 9239. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644631223\n\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('7873c195-c71d-46fa-9ee7-3d8d2c453999','905301592882','NECİP DELİPOYRAZ  adlı müşterinizin 910943161 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL),
('787513ea-50a9-4f4c-a72d-8a705ab986ca','905318109098','FATMA EROĞLU  adlı müşterinizin 455757391 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d993ce90-f47a-45f5-b714-cf612685b50d',NULL),
('7875266b-5f46-485a-833b-1d097510fa3a','4917670681296','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('787c2115-ad2a-4c2f-b296-274c64536e13','33766392423','DRİVER\n					ADNAN\n+905354622027','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('787e245c-ad87-4b82-855b-42c27a429150','31619008872','Sayın Müyesser koçak, 745531225 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745531225\n\nDear Müyesser koçak, your shipment with 745531225 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745531225\n\nBICARGO','1','e7849612-fcb8-4368-bba8-194c1abdf919',NULL),
('78846448-8fb7-4031-b202-f71bf2041f45','905331602195','Sayın yetkili; SELCAN BOZKURT  adlı müşterinize 221118460 nolu gönderinizin 80x160 marmo masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 29.05.2025 17:28:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('78849ae5-28f1-4ce0-b7e0-c48dbfc44fcf','905335511664','Sayın yetkili; MELİKE BAYINDIR adlı müşterinize 371398805 nolu gönderinizin DİJİTAL BASKI MASA + SEHPA ürünü 5 parça halinde SM Tasarım adresinizden 30.06.2025 20:18:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('7886f050-4a40-47aa-a9f1-6e9fd969743f','4917631097857','Sayın SONGÜL GÜRKAN, 976843037 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976843037\n\nDear SONGÜL GÜRKAN, your shipment with 976843037 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976843037\n\nBICARGO','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('78887df4-207d-4898-880b-d668080cd0f9','4368184013442','Sayın MEHMET COPUR, 675644991 nolu gönderiniz 4219 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675644991\n\nDear MEHMET COPUR, your shipment with 675644991 was delivered to you with the delivery code 4219. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675644991\n\n\nBICARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('78952a0d-652e-4ddf-a118-a43c2ec1308c','33635914929','745249081 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745249081\n\nYour shipment with the number 745249081 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745249081\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('7895d29b-de44-41dd-b3dd-d0c9ac1caafc','4915147045689','Sayın ZEHRA ÖZALP, 223963997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223963997\n\nDear ZEHRA ÖZALP, your shipment with 223963997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223963997\n\nBICARGO','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('789848f9-2feb-401b-91ba-5bd09b86591d','4917672226001','Sayın GÖKHAN ZÜRLÜER, 598157006 nolu gönderiniz 7649 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598157006\n\nDear GÖKHAN ZÜRLÜER, your shipment with 598157006 was delivered to you with the delivery code 7649. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598157006\n\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('78ad116c-02b9-4f1e-b47a-2b47c51401cf','905304259202','Sayın yetkili; RAMAZAN KAYHAN adlı müşterinize 478972804 nolu gönderinizin KOLTUK TAKIMI ürünü 6 parça halinde GANZE adresinizden 22.01.2025 17:05:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f232c8f-e293-4ee2-91bc-c04fc04ca3f9',NULL),
('78adcb84-a843-4508-be60-b722748575e4','491729060799','ŞÖFÖR NUMARASI\n					+905467896981','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('78af956b-3df0-488e-9793-140f44c8bb14','905331602195','AZİZE KAYA adlı müşterinizin 221946527 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('78b10f47-fed8-4900-8959-010b35fde8fb','491793933332','Sayın SERCAN KUCUR, 437626008 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437626008\n\nDear SERCAN KUCUR, your shipment with 437626008 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437626008\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('78bb5e07-d42e-4cc8-a7ad-49090c62c139','491639578000','Sayın HALİME ÜNSAL, 429340012 nolu gönderiniz 5658 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/429340012\n\nDear HALİME ÜNSAL, your shipment with 429340012 was delivered to you with the delivery code 5658. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/429340012\n\n\nBICARGO','1','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL),
('78bb8983-581d-406b-8e7e-af5a3ffa6aa5','33769502922','Sayın SAFİ, 449634859 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449634859\n\nDear SAFİ, your shipment with 449634859 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449634859\n\nBICARGO','1',NULL,NULL),
('78c626f6-ffed-4c4d-af7c-01e6e278bc13','33769010323','Sayın SENEL YILMAZ, 517365072 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517365072\n\nDear SENEL YILMAZ, your shipment with 517365072 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517365072\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('78c98624-0b76-4e39-9d06-eff85322b8c1','4368184013442','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('78ceef43-423f-4610-80a6-1bad555488f1','905325000478','ESKİŞEHİR 2 adlı müşterinizin 412472932 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c0919ed-e869-4b33-a525-8e05358a4852',NULL),
('78cfb5ae-601c-4e81-9c3f-78b2fe523ae5','905069116877','NADİNE NATUR adlı müşterinizin 817303639 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('78d507c1-1273-46da-8f92-c60fe27428be','4915750730726','Sayın SAKİNA RAHİMİ , 449108957 nolu gönderiniz 7079 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449108957\n\nDear SAKİNA RAHİMİ , your shipment with 449108957 was delivered to you with the delivery code 7079. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449108957\n\n\nBICARGO','1','72d228c3-4890-476a-b92a-a7a953a0be97',NULL),
('78db2c5b-980d-4d00-becf-d53893350a6e','111111111111','248240825 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9684 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248240825\n\nYour shipment with the number 248240825 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9684. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248240825\n\nBICARGO','2','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('78dcc407-8595-4f3d-b89c-7a3808c0b3a0','905079047428','MEHMET EMİN KARAGÜZEL adlı müşterinizin 449665773 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('78e1ef1f-bd53-4b8e-8249-139de7b006c8','4917673560925','613510894 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8665 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613510894\n\nYour shipment with the number 613510894 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8665. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613510894\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('78ee9437-9f87-4df5-b6fc-6726687ee3c4','41787614204','478733683 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8908 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478733683\n\nYour shipment with the number 478733683 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8908. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478733683\n\nBICARGO','1','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL),
('78f8913a-0ab8-4a95-986b-7df0409704ce','5439765092','Sayın YUSUF BARAN, 478450171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478450171\n\nDear YUSUF BARAN, your shipment with 478450171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478450171\n\nBICARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('78fa609e-03ca-4202-bf1a-4bd1e532a00b','4545544545343443','Sayın EREN, 412922680 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412922680\n\nDear EREN, your shipment with 412922680 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412922680\n\nBICARGO','2','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL),
('78fa6638-ee84-4af4-867a-3790c05b9f52','905304259202',' SEHER GÜNAY adlı müşterinizin 478540346 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72f1e393-e099-4538-86f0-2e59b27b9761',NULL),
('78fc1e0c-029e-4734-bffa-c605510204a6','905335511664','JASMİNA YILMAZ adlı müşterinizin 371785400 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('78fe1206-2782-485c-aebf-1202e1513483','905331602195','Sayın yetkili; İMANE LAARİ adlı müşterinize 22130093 nolu gönderinizin Nevada ceviz masa 100*200 cm ürünü 3 parça halinde Fatura adresinizden 08.01.2025 11:22:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('7909f791-045d-4b33-a044-9cce093cd6d5','33644892137','Sayın MEHMET ÇANKAYA, 449136824 nolu gönderiniz 2763 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449136824\n\nDear MEHMET ÇANKAYA, your shipment with 449136824 was delivered to you with the delivery code 2763. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449136824\n\n\nBICARGO','1','5eb60d14-02a3-405b-84ef-2be197850002',NULL),
('790b832e-11ff-45f4-b7f2-41bb7b68728f','33658561334','Sayın FURKAN SAYGIN, 478498501 nolu gönderiniz 8681 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478498501\n\nDear FURKAN SAYGIN, your shipment with 478498501 was delivered to you with the delivery code 8681. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478498501\n\n\nBICARGO','1','b9b2c28d-8252-4049-8b72-6810977e2ff3',NULL),
('7910dc2a-7fcd-4516-bbfe-a54b0444adb9','003140374207','Sayın ERDİNÇ GENÇER, 745262490 nolu gönderiniz 8907 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745262490\n\nDear ERDİNÇ GENÇER, your shipment with 745262490 was delivered to you with the delivery code 8907. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745262490\n\n\nBICARGO','2','8ec34b98-cd6b-4969-b5da-337d1130a80a',NULL),
('791e9c74-c3ec-40b4-b56b-f0faf4c1d015','31638631333','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('791ecd2e-65c6-443c-aa50-70e45f07ce47','33669942525','614352 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8856 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614352\n\nYour shipment with the number 614352 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8856. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614352\n\nBICARGO','1','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL),
('791ed0cb-cea8-4f83-9e1c-5c46999dcbd7','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin 300*300 L KÖŞE KOLTUK ürünü 4 parça halinde Ovimo koltuk adresinizden 27.03.2025 16:45:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('7922992e-b3a5-4868-ab24-20d55b520c0b','905325000478','BOLL TRADE adlı müşterinizin 412173308 nolu gönderisi 111 parça halinde yola çıkmıştır.','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('79269c2e-0eac-45a2-898a-f52466710029','905331602195','AYŞE TÜRKMEN  adlı müşterinizin 221507815 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('7927605c-7a70-47be-b021-f5e8a7815d9d','5325000478','Sayın AAAAAAA BBBBBBBB, 30.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4813619\nŞifre : 4813619\n			\nBİCARGO','1',NULL,'48d1afe3-6d19-44da-863e-7181c7b173cd'),
('792762a9-af7f-4774-b810-e39ca4c585ec','','ARZU YILDIRIM adlı müşterinizin 734525943 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL),
('79291760-5094-4b73-b77e-a8ffd39e7b93','33788354620','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('792ca9a6-42dc-43f2-9f3f-3737f1b7b7c7','33759392497','Sayın DERGHAM NAWEL , 22145441 nolu gönderiniz 2662 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22145441\n\nDear DERGHAM NAWEL , your shipment with 22145441 was delivered to you with the delivery code 2662. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22145441\n\n\nBICARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('793129bf-e64e-4ebc-baea-bf3625d29387','4917647661534','Sayın SUNAİM İBESKİ, 982498702 nolu gönderiniz 4899 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982498702\n\nDear SUNAİM İBESKİ, your shipment with 982498702 was delivered to you with the delivery code 4899. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982498702\n\n\nBICARGO','1','226d454f-504a-4c41-9f7c-2a37ac051991',NULL),
('7931a4d2-939d-40cc-9b48-fe3f5dd66b85','905300961610','İSHOAK ABU BAKER adlı müşterinizin 126938963 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL),
('79320142-6312-4f82-93b9-b1185544da93','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin MALDİV YATAK ODASI DOLAP 8 KAPAKLI ürünü 25 parça halinde acca adresinizden 20.05.2025 16:58:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('7937b86f-fde8-407b-a9f3-0200ab6044c8','905331602195','Sayın yetkili; BARBOSA SHANNA  adlı müşterinize 221403218 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde ALP SANDALYE adresinizden 06.03.2025 14:36:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('793b381b-ada7-4b51-8c30-a40332805046','905377244117','BUSE HOME adlı müşterinizin 755919446 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL),
('793b8ba3-2fae-40b7-9e22-1f02109ca45f','491634613400','Sayın SİDAR AKDENİZ , 42877136 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42877136\n\nDear SİDAR AKDENİZ , your shipment with 42877136 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42877136\n\nBICARGO','1','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL),
('7940bb55-4ac3-4a41-a7bf-c6c00b7d69c4','905078062550','Sayın yetkili; SEVGİ BOLAT adlı müşterinize 598250504 nolu gönderinizin SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 18.07.2025 17:49:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('7943541e-3a69-4fd8-bdec-8562868bb6bf','905461661672','Sayın yetkili; ABDULLAH ÖĞRETEN adlı müşterinize 644917251 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 16.07.2025 15:52:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('794f433b-1433-4019-ae0e-8892de1aa1e2','905075277637','FATMA ÜNSAL adlı müşterinizin 74565294 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL),
('7955c60f-bd17-44a9-ab7d-f8b0cea7faa0','905325000478','MUHAMMED NURTEREB adlı müşterinizin 412608739 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('79592403-5a3f-4d7c-b5d1-4514593160d5','905331602195','Sayın yetkili; NİHAL ŞAHİN adlı müşterinize 221899517 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:33:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('795ae88b-e5b5-44f3-9ab8-771a010acd4c','905079047428','DIANA ÇELİKER adlı müşterinizin 449974141 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('795db85d-ac6d-4530-8dce-fd57b41078a0','4915223499584','486552581 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486552581\n\nYour shipment with the number 486552581 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486552581\n\nBICARGO','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('79628483-541f-4c25-98eb-d4a0583aea03','905309753633','MUARREM NAİR adlı müşterinizin 616254479 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','5b410819-0339-4c69-a500-825f92b681a3',NULL),
('7962aead-fee0-44fc-b84d-01a7b0095088','905325000478','VEYSİ BALKAYA adlı müşterinizin 412252425 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL),
('7967b438-9a8e-450d-abed-1cd162c6622d','905313340045','Sayın yetkili; UMUTCAN ŞAHİNCİ adlı müşterinize 437870707 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 22.08.2025 15:41:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('796821c8-a574-4920-acce-b89531eb2263','905327399716','ÖZKAN ALTUN adlı müşterinizin 223867751 nolu gönderisi 99 parça halinde yola çıkmıştır.','1','cbed5de9-ec7b-4304-94aa-2149a3ee9549',NULL),
('7968285d-5413-4f25-99c1-b472ffc9785d','905517075149','FATİH ÇELİK adlı müşterinizin 478603328 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('796c077c-1fed-4b6f-9b3d-eabb7bb1e7e2','31655504455','Sayın MEHMET KILINÇ, 428173598 nolu gönderiniz 7076 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428173598\n\nDear MEHMET KILINÇ, your shipment with 428173598 was delivered to you with the delivery code 7076. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428173598\n\n\nBICARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('796c5d91-5c78-4777-98af-f46fd7fcc105','33613166090','Sayın NURKAN AŞIR, 614868518 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614868518\n\nDear NURKAN AŞIR, your shipment with 614868518 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614868518\n\nBICARGO','1','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('796f8f1a-4bd1-49ca-8e01-63ebc29766be','41764460655','Sayın CELAL, 100605954 nolu gönderiniz 8730 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/100605954\n\nDear CELAL, your shipment with 100605954 was delivered to you with the delivery code 8730. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/100605954\n\n\nBICARGO','1','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL),
('79722f15-6356-45b3-acf3-a4f34ba9595c','905072738632','Sayın TUĞBA YILMAZ, 42845475 nolu gönderiniz 9989 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42845475\n\nDear TUĞBA YILMAZ, your shipment with 42845475 was delivered to you with the delivery code 9989. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42845475\n\n\nBICARGO','1','0968d1cc-0ba0-445c-8f49-74a0f7b6c441',NULL),
('7973b5e8-1d78-4da6-b4c4-04d5a6c6747a','4917680676918','Sayın BEYZA ÇALIK, 644644115 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644115\n\nDear BEYZA ÇALIK, your shipment with 644644115 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644644115\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('7975e389-464e-43f7-878a-7e8c847d44fd','4915560273745','644567515 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644567515\n\nYour shipment with the number 644567515 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644567515\n\nBICARGO','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('7976a510-c0ed-4652-8e61-cf2fbbc86e49','905534917566','428653750 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428653750\n\nYour shipment with the number 428653750 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428653750\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('798257ed-9bb0-4d57-8be1-6303cbf53a5a','905394878216','Sayın yetkili; SENEL YILMAZ adlı müşterinize 517365072 nolu gönderinizin Koltuk Takımı (3+2+1+1) ürünü 4 parça halinde Fatura adresinizden 15.05.2025 11:14:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('7984e641-06b2-4e9e-815a-c6019bfb584a','905078062550','Sayın yetkili; MEHMET SEVİM KEBELİ adlı müşterinize 59856960 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 08.10.2025 14:57:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('798c6f69-0fa1-46da-96ba-e252a53a876f','905349208933',' ELİF MUHCU adlı müşterinizin 127281736 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('798db8be-b077-47e6-a4a8-b84d5467861f','4916221534324917','42873500 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9535 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42873500\n\nYour shipment with the number 42873500 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9535. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/42873500\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('799604e5-d483-4f49-b636-0a3ced3cf470','905325998198','İRFAN MUTLU adlı müşterinizin 614390628 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL),
('79a37b45-f6f8-46fc-a8e5-64688142f794','33678270339','657405652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657405652\n\nYour shipment with the number 657405652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657405652\n\nBICARGO','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('79aa293b-94a5-4cab-a5da-8ecc5c73c575','3361479705','Sayın LABABABİD WEJDAN, 478417862 nolu gönderiniz 2665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478417862\n\nDear LABABABİD WEJDAN, your shipment with 478417862 was delivered to you with the delivery code 2665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478417862\n\n\nBICARGO','2','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('79af0818-a887-4501-9419-dfb418bead0d','4917640451459','Sayın ROJDA BİNGÖL, 598665171 nolu gönderiniz 4755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598665171\n\nDear ROJDA BİNGÖL, your shipment with 598665171 was delivered to you with the delivery code 4755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598665171\n\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('79b419bf-569b-4fdb-841d-dbc6c9fc5aa7','436609030413','505597041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3193 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505597041\n\nYour shipment with the number 505597041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3193. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505597041\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('79b6487e-5188-486b-9864-439ac8cd0320','905054335859','DURSUN GÜNBEYİ adlı müşterinizin 501766543 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL),
('79b9eb81-f1e8-4ae6-aad6-0520e2075939','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('79becdf3-4234-4958-a68a-ed7ef96252f8','004917642060637','Sayın AŞKIN TUN, 127105973 nolu gönderiniz 9257 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127105973\n\nDear AŞKIN TUN, your shipment with 127105973 was delivered to you with the delivery code 9257. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127105973\n\n\nBICARGO','2','9d26f3f5-1617-4627-a308-2aea49169455',NULL),
('79bf9b0b-db57-4956-85bd-c4665787b7fd','33745103912','Sayın ELİF HANIM, 412871738 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412871738\n\nDear ELİF HANIM, your shipment with 412871738 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412871738\n\nBICARGO','1','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL),
('79c7c1c8-6e08-40e1-a579-b49f0fbf56c5','491716168674','808427332 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808427332\n\nYour shipment with the number 808427332 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808427332\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('79cab797-9074-4169-8665-74d747bce36e','905313340045','EMEL ALATAŞ adlı müşterinizin 43789661 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('79d19e2a-2001-48d2-bd42-dd3ba42d8163','436769084848','Sayın KIYMET HANIM , 657635062 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657635062\n\nDear KIYMET HANIM , your shipment with 657635062 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657635062\n\nBICARGO','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('79d56bfd-1c93-4205-bec9-361dffdc8bce','33662092706','Sayın İRFAN AKTAŞ , 501167444 nolu gönderiniz 4604 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501167444\n\nDear İRFAN AKTAŞ , your shipment with 501167444 was delivered to you with the delivery code 4604. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501167444\n\n\nBICARGO','1','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL),
('79dfe88e-fdf6-4f30-b468-42117ae76381','436606573775','371508043 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1128 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371508043\n\nYour shipment with the number 371508043 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1128. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371508043\n\nBICARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('79e37b3a-d852-4736-8a5b-ec28320e7c72','491787704238','371601782 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6555 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371601782\n\nYour shipment with the number 371601782 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6555. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371601782\n\nBICARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('79e820a5-5ff5-475c-9754-13d6f38c1702','905313340045','Sayın yetkili; SİBEL HİTAY adlı müşterinize 437812245 nolu gönderinizin sandalye ürünü 3 parça halinde HATEM sandalye adresinizden 03.09.2025 14:07:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('79fb539b-e285-426b-93a0-75a22bc28725','4915222818917','Sayın DİLAY MERYEM CİKU, 371737204 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371737204\n\nDear DİLAY MERYEM CİKU, your shipment with 371737204 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371737204\n\nBICARGO','1','0e367b6a-44c3-40e4-9097-1055385b6e27',NULL),
('79fb637f-cb3d-4d72-bb75-829e3627fd80','4917641547802','37146102 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37146102\n\nYour shipment with the number 37146102 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37146102\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('79fcadc0-2b4c-4e83-bd5f-076252bac9ba','905461661672','RAYAN SLEİMANİ  adlı müşterinizin 644403373 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('7a0116ad-cdd7-4db9-9306-451f958c7534','4916091826970','Sayın HATİCE ÖZEN, 745734415 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745734415\n\nDear HATİCE ÖZEN, your shipment with 745734415 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745734415\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('7a021768-f3b0-4d7d-ac9c-5aa77183e8a9','905389543828','FARUK ANSER adlı müşterinizin 486552581 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('7a055a80-874f-4f0d-bfb5-f25c74e946ca','32490219326','428459785 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8224 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428459785\n\nYour shipment with the number 428459785 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8224. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428459785\n\nBICARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('7a05fb0f-fe7b-4b50-a761-fc3c3ad9fe97','4915774500125','Sayın BELGİN YAĞLI		, 910762495 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910762495\n\nDear BELGİN YAĞLI		, your shipment with 910762495 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910762495\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('7a0c27ff-518b-4afe-93b9-e376029f5bb5','905517075149','OĞUZHAN TIĞ adlı müşterinizin 478824521 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('7a0fd8d9-1b17-4303-8b0b-8f88ca732807','905363385813','Sayın yetkili; SONER UZUN adlı müşterinize 976680764 nolu gönderinizin KÖŞE KOLTUK TAKIMI ürünü 7 parça halinde SALON KOLTUK adresinizden 25.06.2025 17:11:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('7a15bf02-9776-48c4-b55f-f9ce08e4786e','31641191889','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('7a198ffd-6fd8-41b0-b118-9da5f838a7dc','33671902832','910948770 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1815 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910948770\n\nYour shipment with the number 910948770 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1815. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910948770\n\nBICARGO','1','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('7a1b4125-06d7-4e21-a3d7-622c174989f0','31630905029','Sayın CYNTHİA GARLEE, 644126759 nolu gönderiniz 6153 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644126759\n\nDear CYNTHİA GARLEE, your shipment with 644126759 was delivered to you with the delivery code 6153. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644126759\n\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('7a1e3ed3-749f-4550-b12e-f9538624cc2b','905459011033','MEHMET SARIKAYA adlı müşterinizin 268368509 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','9c99f254-2612-4029-ac15-ffb095b93de3',NULL),
('7a21cfff-495d-46e0-811f-52e737343de9','491709668487','Sayın KATRİN MESİNGER, 896847151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896847151\n\nDear KATRİN MESİNGER, your shipment with 896847151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896847151\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('7a284c8d-c724-4d3a-8903-bdf72e5ec80c','491776418748','Sayın AHMET ÖZDEMİR, 478472384 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478472384\n\nDear AHMET ÖZDEMİR, your shipment with 478472384 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478472384\n\nBICARGO','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('7a31c612-8f90-48a6-84a3-66ffd5af12f1','4915771101675','Sayın YUSUF ÖZKULLUK, 808146332 nolu gönderiniz 3552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808146332\n\nDear YUSUF ÖZKULLUK, your shipment with 808146332 was delivered to you with the delivery code 3552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808146332\n\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('7a393c95-3c79-49aa-ac22-8ed89571327f','9053259981980','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614529512 nolu gönderinizin ALLEGRO MİLANO MASA ÜST TABLASI SSH  ürünü 1 parça halinde Fatura adresinizden 26.06.2025 12:43:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('7a3c0b28-b9e1-45ad-82f1-e9bc0cc1a1e2','491725459093','Sayın SÜLEYMAN MAKAS, 910560938 nolu gönderiniz 7144 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910560938\n\nDear SÜLEYMAN MAKAS, your shipment with 910560938 was delivered to you with the delivery code 7144. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910560938\n\n\nBICARGO','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('7a3f8b93-f96e-4df7-847f-063f2686cf42','491627758662','750125400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5222 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750125400\n\nYour shipment with the number 750125400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5222. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750125400\n\nBICARGO','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('7a44de9b-a423-45cd-a51e-e5d86b2b5431','491742184791','Sayın YUSUF ALAN SSH , 745639343 nolu gönderiniz 5861 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745639343\n\nDear YUSUF ALAN SSH , your shipment with 745639343 was delivered to you with the delivery code 5861. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745639343\n\n\nBICARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('7a46f7b8-e477-4639-822e-54e4439295d9','4915783856117','Sayın MELEK IŞIK, 644739716 nolu gönderiniz 8276 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644739716\n\nDear MELEK IŞIK, your shipment with 644739716 was delivered to you with the delivery code 8276. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644739716\n\n\nBICARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('7a47ebdd-fdce-4323-b2a2-ce6d03db3346','905313340045','Sayın yetkili; MİRAÇ SAKAR adlı müşterinize 437969799 nolu gönderinizin tv ünitesi ürünü 1 parça halinde Tv Üniteci adresinizden 28.01.2025 14:02:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('7a4c569f-6c1b-481a-b0a9-8924d346b439','905335511664','Sayın yetkili; SALİM TEKE adlı müşterinize 371884796 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 28.04.2025 17:00:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('7a5a3736-f809-442b-a79f-07e4f8c6c990','905331602195','Sayın yetkili; SAİDA ELAZZOUZİ  adlı müşterinize 221282484 nolu gönderinizin Eliza sandalye koyu ceviz  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:41:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('7a5cad04-84d7-401c-90ad-505aaf8b0ee4','905304259202','Sayın yetkili; ZEYNEP CİHANGİR adlı müşterinize 478623446 nolu gönderinizin Köşe takımı ürünü 6 parça halinde vaav adresinizden 24.03.2025 17:30:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('7a60e40a-7884-4e4f-9497-a2c94dc0390e','4915734807422','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('7a6161ac-0115-4b92-a47c-81c073ac9380','4917670742870','Sayın ALEYNA AKAY, 644500765 nolu gönderiniz 3036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644500765\n\nDear ALEYNA AKAY, your shipment with 644500765 was delivered to you with the delivery code 3036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644500765\n\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('7a638fb4-0e3c-487b-aedf-da8bf326004b','905421855834','Sayın yetkili; MUAMMER SAYIN adlı müşterinize 338822119 nolu gönderinizin Masa ve Sehpa ürünü 4 parça halinde Bi’Furni adresinizden 13.12.2024 16:45:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('7a70346e-0ebf-4e68-9f57-844fe5e26bc8','905304259202','ZEKAİ TAVASLI adlı müşterinizin 478979004 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL),
('7a72130b-0d3b-4eb9-9f41-c5a27c5e5c38','436604046200','Sayın YILDIZ DEMİR, 449715358 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449715358\n\nDear YILDIZ DEMİR, your shipment with 449715358 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449715358\n\nBICARGO','1','fdbd5255-796f-4278-a5b0-0661f2660929',NULL),
('7a73069c-a1ef-43a1-b99d-e77527f42a29','905335511664','DUYGU METE adlı müşterinizin 371394707 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('7a754aab-7078-4eb7-ae8c-a0504bce4e84','9053259981980','Sayın yetkili; MEHMET AKDAĞ adlı müşterinize 614666366 nolu gönderinizin BAMBİ ELARIN DOGAL UYKU PAKETI CK,BAMBİ MAGNASAND 160*200 YATAK,BAMBİ VANILLA BASLIK 160 CM R:BK-179 VANILLA VE BAMBİ VANILLA LOOP HVZ BAZA 160x200 R:BK-179 VANILLA ürünü 4 parça halinde Fatura adresinizden 24.09.2025 12:54:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('7a833ab4-7841-492d-ac35-24a9d2cdb386','905357816059','CELAL adlı müşterinizin 100605954 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL),
('7a845fef-0c7e-4f33-8b19-1ba5eca43253','905313340045','Sayın yetkili; SANİYE BIÇAKÇI adlı müşterinize 43774917 nolu gönderinizin Cam sehpa  ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('7a85409f-58d8-42fb-9540-0b2b70f61636','491791163970','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('7a8bdbcb-6c16-4e71-a3f3-bc59b8065a39','905336367828','NASIR NOORI  adlı müşterinizin 982558117 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('7a8c3266-3462-4e9c-b864-b2e0dbbe3858','4917662386214','Sayın BURCU GÖKÇE, 478559134 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478559134\n\nDear BURCU GÖKÇE, your shipment with 478559134 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478559134\n\nBICARGO','1','249874ad-8b13-436d-be45-fc0a2c651a43',NULL),
('7a8daa6e-d576-46bf-a68a-18f713d1a585','31638446688','Sayın VEFA ÇAĞLAR SÖNMEZ, 248746531 nolu gönderiniz 2684 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248746531\n\nDear VEFA ÇAĞLAR SÖNMEZ, your shipment with 248746531 was delivered to you with the delivery code 2684. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248746531\n\n\nBICARGO','1','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL),
('7a8fcf99-b560-4171-aa55-faabba4b999e','4366488118073','Sayın SARAH KLEİN, 505153730 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505153730\n\nDear SARAH KLEİN, your shipment with 505153730 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505153730\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('7a967b6c-6e1e-478f-af96-124e7063334a','004915730034297','248211803 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10534 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248211803\n\nYour shipment with the number 248211803 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10534. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248211803\n\nBICARGO','2','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL),
('7a993df0-2801-4332-9eaf-02a1fd3d6843','905365908694','AAAAAAAAAA adlı müşterinizin 22315159 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL),
('7a99e1a5-2326-4418-8a71-f4a685dce086','905510396989','Sayın yetkili; LEYLA TACİMER  adlı müşterinize 319212544 nolu gönderinizin SANDALYE ürünü 8 parça halinde DOSSİ adresinizden 11.02.2025 13:14:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('7a9e9e6d-55c8-47bf-9d40-1cf648cf7f4e','4334434234324324','Sayın İHSAN KEPİR, 412378459 nolu gönderiniz 10668 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412378459\n\nDear İHSAN KEPİR, your shipment with 412378459 was delivered to you with the delivery code 10668. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412378459\n\n\nBICARGO','2','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL),
('7aa06f8a-0267-49d3-890b-264d96650edd','31615081540','Sayın REİNAS HAİDARİ SSH, 644490677 nolu gönderiniz 7080 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644490677\n\nDear REİNAS HAİDARİ SSH, your shipment with 644490677 was delivered to you with the delivery code 7080. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644490677\n\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('7aa0912b-ef82-445a-991d-ca66a3275df6','4917655112033','745863981 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5312 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745863981\n\nYour shipment with the number 745863981 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5312. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745863981\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('7aa3041f-e9c9-49ce-819e-23765af5b96f','491736631768','Sayın ERKAN BAYRAK, 428222834 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428222834\n\nDear ERKAN BAYRAK, your shipment with 428222834 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428222834\n\nBICARGO','2','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('7aa5ef32-5399-463e-b5f0-0b575771713b','905331602195','NURSEL ALİOĞLU adlı müşterinizin 221272241 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('7aa7dd36-3b07-401a-abfa-a87a247b13bd','4915234223357','Sayın NERİMAN SARI, 598226174 nolu gönderiniz 6547 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598226174\n\nDear NERİMAN SARI, your shipment with 598226174 was delivered to you with the delivery code 6547. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598226174\n\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('7aa95c73-9e66-4f1d-8184-06c8801b699b','905331602195','ARİC AKA adlı müşterinizin 221350993 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('7ab0351f-51c4-4d96-a40b-c4d3268de2eb','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND ŞİFONYER ÜST TABLASI ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('7ab3e7b2-8ebe-4f4f-9394-6aedd727d82e','905461661672','HÜDAYİ HARMANCI adlı müşterinizin 64422113 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('7ab40271-0678-4c08-a4e5-22a3fab999c9','905306071261','SEVGİ ÖZÇELİK  adlı müşterinizin 765627791 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('7ab79d1d-2b25-4132-88d3-bd96199575c0','4917684700417','Sayın NURTEN-HASAN ÇAKMAK, 478644410 nolu gönderiniz 5398 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478644410\n\nDear NURTEN-HASAN ÇAKMAK, your shipment with 478644410 was delivered to you with the delivery code 5398. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478644410\n\n\nBICARGO','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('7abbc4f4-1f0c-4180-a583-03a5d09b136f','905075277637','ALİ ÖZDEN  adlı müşterinizin 745991962 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('7abbf934-622b-4170-810d-d279b8232018','905079047428','Sayın yetkili; AYNUR KAYKUSUZ  adlı müşterinize 449224087 nolu gönderinizin 3-3-1-1 koltuk takımı ürünü 5 parça halinde cs home adresinizden 18.12.2024 14:51:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2575d832-a07d-426e-9b9e-deb29806d1d4',NULL),
('7ac14ced-54af-4a46-b978-0e86e9460f7b','905331602195','Sayın yetkili; ALİHAN ARATEKİN adlı müşterinize 221322415 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 27.01.2025 13:48:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('7ac2246c-7cac-4c82-9315-9604a2c99e12','4915757275469','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('7ac96df7-babb-456e-9af8-54a0e8071eac','0041765845886','Sayın RÜVEYDA ŞAHİN, 12771217 nolu gönderiniz 7417 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/12771217\n\nDear RÜVEYDA ŞAHİN, your shipment with 12771217 was delivered to you with the delivery code 7417. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/12771217\n\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('7acd2d28-bbb6-4fcf-b7b2-edcee3d84ba5','32466345026','Sayın DURSUN GÜNBEYİ, 501766543 nolu gönderiniz 2464 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501766543\n\nDear DURSUN GÜNBEYİ, your shipment with 501766543 was delivered to you with the delivery code 2464. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501766543\n\n\nBICARGO','1','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL),
('7ad1fb24-5bfa-4115-817f-84cda15002fe','436609136123','Sayın MONİCA TODERAŞ, 505597041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505597041\n\nDear MONİCA TODERAŞ, your shipment with 505597041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505597041\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('7ad3a310-1b60-4c4c-b3af-821824b1ae6c','4917646701488','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('7ad4b4d3-ddb2-4de5-b176-f9a11e858015','32455122888','Sayın DELİL ÖZTÜRK, 74529534 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74529534\n\nDear DELİL ÖZTÜRK, your shipment with 74529534 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74529534\n\nBICARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('7ad72366-6c28-4f73-a93b-4641d2cae6cf','4542392394','İLETİŞİM\n					Furkan şöför = +905078826436','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('7ada33ea-c274-4da3-9702-6ea7effd3bde','436607576919','Sayın SAHAR KADERİ, 449636092 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449636092\n\nDear SAHAR KADERİ, your shipment with 449636092 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449636092\n\nBICARGO','1','ea1fd06d-6508-481d-96d9-862de4d05260',NULL),
('7adae09d-44a0-4045-9b3c-96f4ce1c399f','33625698024','478278253 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478278253\n\nYour shipment with the number 478278253 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478278253\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('7ae0ce32-c547-4ee7-8abf-613edce12481','33624490316','Sayın DELİL ALGUNERHAN, 478677262 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478677262\n\nDear DELİL ALGUNERHAN, your shipment with 478677262 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478677262\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('7ae252d8-702e-4f58-9e0b-a1ef82eff106','905336367828','YASSMİNE JADMOUR adlı müşterinizin 982455918 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('7ae4ce24-0899-4591-b2cb-fb4f2eba2f5c','4917672708890','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('7ae6abb9-2789-4f56-888e-64f0a84caded','33664036278','Sayın ONUR ÖZER, 478733242 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478733242\n\nDear ONUR ÖZER, your shipment with 478733242 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478733242\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('7ae90b7c-96b4-4ff4-8cb7-a099a93e356e','32470620199','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('7aecb4c9-acf4-4200-bbf0-88b51efd47c2','905073106101','HATİCE GÜNGÖR adlı müşterinizin 465181388 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('7aed16de-4c40-4e2b-8243-af5cc01cb098','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin PİER AYNA  ürünü 1 parça halinde MOBİLİSTAN adresinizden 19.09.2025 14:28:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('7aeeeaa1-fe1d-443a-96f4-af4ec69d0335','905454259202','NAMIK KAYGIN adlı müşterinizin 478142620 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9134b63f-7d66-4eba-936c-7bc7dbbabe6a',NULL),
('7aef29f3-c9a3-465f-bc7d-f3086862b2bd','32474864705','428633070 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3895 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428633070\n\nYour shipment with the number 428633070 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3895. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428633070\n\nBICARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('7af02e5f-4903-4220-8ec0-cc6588dd05a7','905331602195','Sayın yetkili; SALİHA ŞERİF adlı müşterinize 221651438 nolu gönderinizin Balat sandalye galaxy krem  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:28:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ca39cb3-cb01-4190-946c-6ebea8eb1b68',NULL),
('7af7b383-228c-4eba-ba26-13ea9f3752fc','373737278373','İletişim \n					Şöför Uğur Acar +905424435917','2','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('7afa5285-5883-43b5-bed4-39876420b681','4917641547802','Sayın ENVER HAN ALKAN, 37146102 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37146102\n\nDear ENVER HAN ALKAN, your shipment with 37146102 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37146102\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('7afb1f9d-0074-484c-93e1-71629b4cc7fe','5325000478','Sayın Halil ibrahim  Söke, 26.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4245504\nŞifre : 4245504\n			\nBİCARGO','1',NULL,'424d5de5-0cbf-4a64-83fc-d0cbf49df82e'),
('7afe0cd8-2433-4e4f-a4db-4e3bdce9caa4','33767294981','982558117 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4199 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982558117\n\nYour shipment with the number 982558117 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4199. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982558117\n\nBICARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('7afe50cf-02a8-44cf-a5e2-71d7e20aca29','33745172654','Sayın SAİDATİ AHMED , 98274489 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98274489\n\nDear SAİDATİ AHMED , your shipment with 98274489 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98274489\n\nBICARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('7afe6e80-db58-4f63-bf54-32ff36dd4002','905363385813','YASEMİN KARAKOC adlı müşterinizin 976430102 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('7afee4fa-612b-402f-aed6-aa53979e5622','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 2 ADET ŞİFONYER+AYNA ürünü 8 parça halinde EYFEL adresinizden 19.09.2025 12:02:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('7b007dbe-4bc4-47d6-b273-d366774b2933','491551014119','Sayın FATMA ALBAYRAK, 478935366 nolu gönderiniz 9365 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478935366\n\nDear FATMA ALBAYRAK, your shipment with 478935366 was delivered to you with the delivery code 9365. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478935366\n\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('7b05e1dc-382e-4b22-a04d-c441fc4202f3','4915560835617','Sayın AYCAN ÇOLAK, 371120278 nolu gönderiniz 1053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371120278\n\nDear AYCAN ÇOLAK, your shipment with 371120278 was delivered to you with the delivery code 1053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371120278\n\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('7b07f8d8-0013-44a4-94b1-bce52fbea44c','905517075149','Sayın yetkili; AYSUN ELİBÜYÜK adlı müşterinize 478273603 nolu gönderinizin frida köşe +kumaş ürünü 2 parça halinde RİXXE adresinizden 25.09.2025 10:35:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('7b085985-a1b3-4e3c-8a9a-9eeaef35fd1f','33641852217','982475389 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10176 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982475389\n\nYour shipment with the number 982475389 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10176. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982475389\n\nBICARGO','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('7b08cb50-d7e1-49a6-b831-28ff689e2ecb','905075277637','HİDAYET KURT adlı müşterinizin 745789797 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('7b0af719-d5bd-46bb-bdb3-2b08290327ae','9053259981980','Sayın yetkili; ADEM  GENÇ adlı müşterinize 614553524 nolu gönderinizin PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL VE PAKKO EVDELÜX ALFA PİYON MODÜL ürünü 4 parça halinde Fatura adresinizden 10.09.2025 15:16:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('7b0de062-0696-42b6-ae2a-bf9c2dde7f84','33751280603','478730420 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4128 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478730420\n\nYour shipment with the number 478730420 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4128. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478730420\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('7b0e0b34-db04-4b73-a725-bffc148102bc','905335511664','Sayın yetkili; ELİSABETH BRUCH adlı müşterinize 371807983 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 08.05.2025 14:47:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('7b140afb-62d1-427c-8623-d7a3dfae8721','4915147045689','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('7b147066-59f8-4432-97f9-27c7f894c6b6','31619649864','437158505 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5778 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437158505\n\nYour shipment with the number 437158505 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5778. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437158505\n\nBICARGO','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('7b150774-5196-4f71-9467-ad5d3c44ada8','905461661672','Sayın yetkili; KAMER DUHAN ECE(K) adlı müşterinize 644651781 nolu gönderinizin köşe koltuk ürünü 5 parça halinde OSMAN TOSUN KOLTUKÇU adresinizden 29.09.2025 12:19:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('7b1a0d72-7b5e-498f-b498-b83662b22a19','4917632498561','Sayın FEMİ SALİHİ, 644100790 nolu gönderiniz 1576 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644100790\n\nDear FEMİ SALİHİ, your shipment with 644100790 was delivered to you with the delivery code 1576. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644100790\n\n\nBICARGO','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('7b1cad38-c9da-4cd5-bfcb-cfd399d56dbf','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin KÖŞE TAKIMI VE BAZA SETİ (İLKNUR YILMAZ) ürünü 1 parça halinde çelikbey inegöl depo adresinizden 25.05.2025 13:53:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('7b2004dc-7303-42d7-9f51-a62230298dac','436766461961','Sayın HAFİZE BALİ, 371539784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371539784\n\nDear HAFİZE BALİ, your shipment with 371539784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371539784\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('7b2009ea-43f7-4137-a52c-5464cab18af4','491777095742','437854000 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437854000\n\nYour shipment with the number 437854000 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437854000\n\nBICARGO','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('7b2bb170-8321-425d-86cd-cbccce137948','33749426479','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('7b2c6297-6941-4f5d-bc8f-b9cf7d6e3673','491629284220','Sayın İLHAM SEVAL İNDİRME, 478259590 nolu gönderiniz 10124 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478259590\n\nDear İLHAM SEVAL İNDİRME, your shipment with 478259590 was delivered to you with the delivery code 10124. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478259590\n\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('7b36117a-a44d-45a3-898e-e37f4c3a3297','905517075149','FATİH ÇELİK adlı müşterinizin 478603328 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('7b397fec-3b41-4dc2-a8c4-58e1c99197ff','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU DENGEMA S80 LAILA SANDALYE ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('7b3d8227-803c-4244-91a8-21cccd2560a9','905079358213','KAMEL NECBA adlı müşterinizin 745849265 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','88e3316c-4816-449f-a946-ceba121ee2bb',NULL),
('7b3fdfb1-d2f5-45ee-8a44-40ad758968dc','4917664852334','Sayın GÜL KAYAS ARSLANMUGÜL, 478188178 nolu gönderiniz 8806 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478188178\n\nDear GÜL KAYAS ARSLANMUGÜL, your shipment with 478188178 was delivered to you with the delivery code 8806. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478188178\n\n\nBICARGO','1','63fb504d-4814-482e-9dca-ed3716a960e5',NULL),
('7b443c86-1809-4376-9978-28f100be9d4f','905078062550','Sayın yetkili; MENEKŞE SEVEN adlı müşterinize 598508016 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 10.04.2025 15:54:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('7b47932d-7266-4d57-a0ab-ac3f7d594849','4917657742944','İLETİŞİM\n					Furkan şöför = +905078826436','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('7b4a8dc6-2e9a-42b7-a295-062d19ac156b','491774279097','371660448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8763 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371660448\n\nYour shipment with the number 371660448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8763. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371660448\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('7b52a0bb-e5d8-4574-a086-e8ca762313d0','905312762034','VELİT FİLİZ adlı müşterinizin 808450440 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('7b5e4501-869d-4376-a7b2-d4bd794f75a7','4915734541843','Sayın FATİH YİGİT, 515956879 nolu gönderiniz 2358 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515956879\n\nDear FATİH YİGİT, your shipment with 515956879 was delivered to you with the delivery code 2358. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515956879\n\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('7b66251f-17c7-4140-af42-15428286df5b','905368336516','Sayın yetkili; YOLCU EVİN adlı müşterinize 515463699 nolu gönderinizin masa sandalye ürünü 6 parça halinde Fatura adresinizden 08.10.2025 16:53:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('7b6cb9e0-99ad-44ff-840c-52e2d005f399','905454259202','GÜLSÜN UZUN adlı müşterinizin 478118994 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('7b6ed3c9-7e73-4359-a940-679782f62cbb','905461661672','Sayın yetkili; NAZIM KORKMAZER adlı müşterinize 644771270 nolu gönderinizin PUF  ürünü 2 parça halinde LİTANİ KOLTUK adresinizden 15.05.2025 15:24:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('7b6f9bc9-db5f-4dcf-afe5-6a2722310d14','4917656562784','Sayın KÖKSAL ÇELİK, 428991499 nolu gönderiniz 7463 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428991499\n\nDear KÖKSAL ÇELİK, your shipment with 428991499 was delivered to you with the delivery code 7463. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428991499\n\n\nBICARGO','1','a17d6f12-6eff-4b1b-9b35-fbbd3d3a1c8d',NULL),
('7b73dcc4-24d3-46fd-8a87-ba4802c72be8','905075277637','SAFİYE ÇITAK adlı müşterinizin 745959029 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f483e682-c963-48b9-8959-a369cedd8ffc',NULL),
('7b74bbed-3093-498c-9765-b76d394ba711','330665221905','Sayın CAROLİE KENZA , 982212726 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982212726\n\nDear CAROLİE KENZA , your shipment with 982212726 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982212726\n\nBICARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('7b7e2515-9dd7-4f5a-9d11-1a3b40319afa','905054335859','ERSİN ESEN adlı müşterinizin 501256266 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL),
('7b885fa8-dd56-4b9e-bd31-99607a4acb7b','33652341181','478185886 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6033 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478185886\n\nYour shipment with the number 478185886 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6033. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478185886\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('7b8ace73-66ec-4c97-9716-60420208f212','905451571652','Sayın yetkili; İBRAHİM PİLİG adlı müşterinize 531724547 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde PABLO HOME adresinizden 30.04.2025 12:37:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('7b960732-d3af-4c0e-9ae5-eee6daec9665','4901733860312','Sayın ZELİHA ARAS, 910280020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910280020\n\nDear ZELİHA ARAS, your shipment with 910280020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910280020\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('7b98e0da-cbe2-4f89-bcc7-7a7c86af156b','491713800212','İLETİŞİM\n					Furkan şöför = +905078826436','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('7b9bb308-7024-4460-9161-eafad1517462','436609266371','745810889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745810889\n\nYour shipment with the number 745810889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745810889\n\nBICARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('7b9ecb79-3888-4b8f-932f-2bdd89a69d87','4917624864507','910375036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1174 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910375036\n\nYour shipment with the number 910375036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1174. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910375036\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('7ba14ef0-095c-4582-94df-feb3f6267acb','491634722211','47842524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3743 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47842524\n\nYour shipment with the number 47842524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3743. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47842524\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('7ba4eddb-7a6a-4f1c-bf5c-150624b42d95','33781020589','910405441 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9706 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910405441\n\nYour shipment with the number 910405441 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9706. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910405441\n\nBICARGO','1','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL),
('7ba53e53-f447-4a70-a7d8-a9b3c01fb4d2','491787074737','Sayın FURKAN, 412580908 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412580908\n\nDear FURKAN, your shipment with 412580908 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412580908\n\nBICARGO','1','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL),
('7ba56a64-717d-46fe-9174-97ccef700a12','33769000460','Sayın EMİN EKRAMOĞLU, 478337610 nolu gönderiniz 7431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478337610\n\nDear EMİN EKRAMOĞLU, your shipment with 478337610 was delivered to you with the delivery code 7431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478337610\n\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('7ba5f683-8867-4dc6-a4aa-2d9eb18a696d','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin sandalye ürünü 3 parça halinde ard sandalye adresinizden 17.04.2025 15:37:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('7ba91166-b804-4a8e-a4fa-e35e3a7eb57c','905079358213','Sayın yetkili; OKAN CORAMAN adlı müşterinize 745980941 nolu gönderinizin PETEK KÖŞE KOLTUK  ürünü 4 parça halinde ELİTİS adresinizden 29.09.2025 12:40:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('7ba9f388-1719-465f-a098-1fa3ce48959b','905363385813','ADEM ÖZKAN adlı müşterinizin 976779460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('7bae8222-dbe6-473a-a4aa-e565030b2454','31640599400','Sayın ALİ GALİP DUMAN, 583643470 nolu gönderiniz 4848 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/583643470\n\nDear ALİ GALİP DUMAN, your shipment with 583643470 was delivered to you with the delivery code 4848. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/583643470\n\n\nBICARGO','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('7bb0ef17-cebf-4943-8571-6c9cd44a6309','4915906385820','613814330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8850 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613814330\n\nYour shipment with the number 613814330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8850. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613814330\n\nBICARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('7bb0f3b7-c4ee-47c9-90c0-c1988dc5df60','491746723171','735384295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3383 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735384295\n\nYour shipment with the number 735384295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3383. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735384295\n\nBICARGO','1','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL),
('7bb20ffe-99ca-4cd4-a90a-34fa267e798a','41794403640','Sayın ŞİRİN BALCIN, 486181220 nolu gönderiniz 2893 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486181220\n\nDear ŞİRİN BALCIN, your shipment with 486181220 was delivered to you with the delivery code 2893. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486181220\n\n\nBICARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('7bb6c5e9-5598-43b7-a5d2-8ee7cb3e13d8','905079358213','SUAT TANER adlı müşterinizin 745129121 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('7bb95731-12bf-460e-a08e-84c3a66e564a','41782487327','Sayın ZERDEŞT DALMIŞ, 455726286 nolu gönderiniz 3700 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455726286\n\nDear ZERDEŞT DALMIŞ, your shipment with 455726286 was delivered to you with the delivery code 3700. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455726286\n\n\nBICARGO','1','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL),
('7bc6e4cc-5abc-4c3c-9b82-aeed66106e02','905318109098','AAA adlı müşterinizin 4551399 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL),
('7bc768b3-2e1b-4700-b699-a62267fc83bc','905075277637','EMRE YILMAZ SSH  adlı müşterinizin 745771664 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('7bcf8e58-2808-4505-ba2a-5d929ee0040e','4915782263491','Sayın GÜNGÖR SAK, 614901187 nolu gönderiniz 2832 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614901187\n\nDear GÜNGÖR SAK, your shipment with 614901187 was delivered to you with the delivery code 2832. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614901187\n\n\nBICARGO','1','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('7bd06cb9-283d-49aa-be39-8ef7d196b613','32488135313','412252365 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412252365\n\nYour shipment with the number 412252365 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412252365\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('7bd24b74-50cc-4fc4-8160-5a427df889eb','4917630133122','Sayın ERHAN ÇEKİÇ, 644445996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644445996\n\nDear ERHAN ÇEKİÇ, your shipment with 644445996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644445996\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('7bd705a3-b40e-4683-aedb-9af01118450f','491634491802','Sayın DİYAR YEŞİLKAYA, 982547993 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982547993\n\nDear DİYAR YEŞİLKAYA, your shipment with 982547993 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982547993\n\nBICARGO','1','47709c5a-15a6-491c-924f-a72a590fd417',NULL),
('7bddedb7-6591-4f23-9025-c7814fd2934a','905313340045','KAAN ALTINSOY adlı müşterinizin 437591433 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1935d2c6-346a-4632-90ac-9fab7da8d3f6',NULL),
('7bde271e-6313-44c3-8400-843ed35a177a','905461661672','Sayın yetkili; MUHAMMET KÖSEDAĞ(K) adlı müşterinize 644590959 nolu gönderinizin AFYON TRAVERTEN  ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 09.09.2025 10:41:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('7bdf4995-1d8c-437c-b0b1-51c6e391078d','4916093919802','Sayın BEYZA ÇALIK, 644644115 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644115\n\nDear BEYZA ÇALIK, your shipment with 644644115 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644644115\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('7bdfd163-474b-4246-9015-ca4a3661f974','33652326324','Sayın AAAAAAAAAAA, 027517327 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/027517327\n\nDear AAAAAAAAAAA, your shipment with 027517327 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/027517327\n\nBICARGO','1','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL),
('7be2ba0f-a192-4d73-9344-98fb0aacc4b3','905517075149','Sayın yetkili; KEVSER KAYA adlı müşterinize 478983907 nolu gönderinizin 190cm masa ve 6 adet sandalye  ürünü 2 parça halinde BRAWWA MOBİLYA adresinizden 04.08.2025 11:21:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('7be30c33-0715-4ab5-8a33-d8b1851e670e','905059175469','GÖKMEN GÖNÜLTAŞ adlı müşterinizin 428754067 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','cd35ec88-bdc3-424b-b4e8-9fb49c5b9e96',NULL),
('7beafa01-44e7-49c3-8db0-c88070857cd8','004915730034297','Sayın MURAT KARADAĞ, 248211803 nolu gönderiniz 10534 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248211803\n\nDear MURAT KARADAĞ, your shipment with 248211803 was delivered to you with the delivery code 10534. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248211803\n\n\nBICARGO','2','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL),
('7beb629a-3a29-4b10-9b5b-0248aab565b0','41764103638','Sayın OKAY DERİNKUYU, 478984010 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478984010\n\nDear OKAY DERİNKUYU, your shipment with 478984010 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478984010\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('7bec2f1a-5baa-45a8-ad95-8389407c61e9','1111111111111111','Sayın EMİNE-YASEMİN, 734109910 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734109910\n\nDear EMİNE-YASEMİN, your shipment with 734109910 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734109910\n\nBICARGO','2','48599652-b40b-4605-9b8c-4be79cb180f3',NULL),
('7bf1b6f0-6723-4ab9-b458-1e9f78afd8d4','491636774270','412757132 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4610 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412757132\n\nYour shipment with the number 412757132 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4610. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412757132\n\nBICARGO','1','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL),
('7bf4aadc-9c8f-469e-9bef-2c57e879557a','905054335859','YENER DOĞAN adlı müşterinizin 50119540 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','30753652-c249-4370-954e-0eb227ea17aa',NULL),
('7bf64ea1-272e-4f68-8706-1242ba5099ef','905079358213','Sayın yetkili; EMRE YILMAZ adlı müşterinize 745884226 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 09.05.2025 15:56:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('7bf73319-f2c8-4158-be33-b53350a58bd5','4917674951049','Sayın OSMAN BOZKAN, 47822949 nolu gönderiniz 2380 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47822949\n\nDear OSMAN BOZKAN, your shipment with 47822949 was delivered to you with the delivery code 2380. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47822949\n\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('7bf92675-0dba-4796-bb3d-55d509e68d5d','491632040337','Sayın GÖKHAN ZÜRLÜER, 598157006 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598157006\n\nDear GÖKHAN ZÜRLÜER, your shipment with 598157006 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598157006\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('7bfa45e3-d060-4e94-8d75-6a4a26674fcc','4369910288849','Sayın ELMAS KAYA, 745411152 nolu gönderiniz 2165 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745411152\n\nDear ELMAS KAYA, your shipment with 745411152 was delivered to you with the delivery code 2165. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745411152\n\n\nBICARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('7bfd6843-60d9-4808-bfab-73c97a151624','4917662786074','Sayın JULJANA TARLLAMİSHAJ , 613568438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613568438\n\nDear JULJANA TARLLAMİSHAJ , your shipment with 613568438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613568438\n\nBICARGO','1','0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2',NULL),
('7bffb375-8793-4316-bf14-8d29b1b60a79','905313340045','UMUTCAN ŞAHİNCİ adlı müşterinizin 437870707 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('7c025ccb-ec5d-4824-a364-d01396ef6aa0','436609400015','Sayın MERVE ÖZÇOBAN, 657192716 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657192716\n\nDear MERVE ÖZÇOBAN, your shipment with 657192716 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657192716\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('7c033b74-bf3b-4107-9c9b-8b7727126293','905331602195','Sayın yetkili; AMANY MOUSA adlı müşterinize 22134117 nolu gönderinizin Sydney sandalye  ürünü 3 parça halinde Fatura adresinizden 18.12.2024 16:48:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('7c037624-371d-498f-927e-3f892f361487','905079047428','KECKİN GÜLÜZAR adlı müşterinizin 449921347 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72595593-1c70-4451-8d5d-15322ee88f0f',NULL),
('7c1ceb4f-60f1-4f32-8026-381738259bdd','905461661672','Sayın yetkili; AYLA BAYKAL adlı müşterinize 644606140 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 03.10.2025 11:50:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('7c207147-f8da-4b10-93e1-545b1be9f54d','905059175469','HAVVA-HÜMEYRA DEMİR adlı müşterinizin 42851120 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL),
('7c22c266-7388-4a9b-a894-3854e001fa1c','4915224149443','Sayın RUHAT DEĞİRMENCİ , 501626049 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501626049\n\nDear RUHAT DEĞİRMENCİ , your shipment with 501626049 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501626049\n\nBICARGO','1','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL),
('7c2527db-6521-4e34-a960-0ee78640e32f','11111111111','Sayın ?, 655688103 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655688103\n\nDear ?, your shipment with 655688103 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655688103\n\nBICARGO','2','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL),
('7c2911c6-746d-4906-a883-1d67f3ab337d','4915234223362','Sayın NERİMAN SARI, 598226174 nolu gönderiniz 6547 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598226174\n\nDear NERİMAN SARI, your shipment with 598226174 was delivered to you with the delivery code 6547. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598226174\n\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('7c2a7b78-e2ee-4003-ac44-bb89106d0cf2','905336367828','MİHAİ LİDİA  adlı müşterinizin 982708819 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('7c2b8696-1854-417d-89af-30d2df177e85','905331602195','M.CEDRİC KLEINDIENST (SSH) adlı müşterinizin 221105277 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('7c3057fb-d40c-462f-90ae-4390329ed079','905331602195','Sayın yetkili; RANJA SABRİ  adlı müşterinize 221904119 nolu gönderinizin 90x200 seramik masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 01.07.2025 12:30:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('7c30e955-f7ac-4540-b5c7-67f5509e49c8','4915204907905','Sayın FUNDA CAMDAN, 923419994 nolu gönderiniz 5840 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/923419994\n\nDear FUNDA CAMDAN, your shipment with 923419994 was delivered to you with the delivery code 5840. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/923419994\n\n\nBICARGO','1','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL),
('7c320f58-8f7c-4c6e-b2aa-d8565a864c20','491718076930','Sayın BAHAR SARI, 478525280 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478525280\n\nDear BAHAR SARI, your shipment with 478525280 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478525280\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('7c33e5bb-2adc-4b18-bbb4-b85393b37450','4915227034856','Sayın WALLA DİAB, 735718998 nolu gönderiniz 9968 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735718998\n\nDear WALLA DİAB, your shipment with 735718998 was delivered to you with the delivery code 9968. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735718998\n\n\nBICARGO','1','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL),
('7c441952-6bd2-41de-8b94-9b04aeec1822','905331602195','HAMİDİ SONİA  adlı müşterinizin 221949733 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('7c45641e-d6ed-4682-9044-1ff314840ade','905078062550','Sayın yetkili; SERKAN DOKKAL adlı müşterinize 598961970 nolu gönderinizin köşe koltuk ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 25.07.2025 11:55:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('7c4619ad-a345-4ab7-9d7b-4fdab937ab29','32492429454','221924148 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10881 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221924148\n\nYour shipment with the number 221924148 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10881. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221924148\n\nBICARGO','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('7c47cc2b-1679-4d19-8871-ced179b57709','4917672868336','478345732 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3848 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478345732\n\nYour shipment with the number 478345732 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3848. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478345732\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('7c4ef48c-01f7-4b7b-b7df-91c493b7e318','905078062550','Sayın yetkili; BORAN ALBAYRAK adlı müşterinize 598668612 nolu gönderinizin MASA ürünü 3 parça halinde RİO FATİH adresinizden 16.07.2025 17:47:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('7c4f5d4b-a1e3-4aba-8eee-149850127804','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GARDEROBE DİOR KONSOL ürünü 1 parça halinde GARDOREBE adresinizden 08.09.2025 14:59:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('7c50c6c3-e3d9-44c3-bbaf-eba82daa696d','905461661672','BLANDİ ZOTA adlı müşterinizin 644965833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('7c5542a4-1748-4753-a38d-beba78f56b90','4917631133245','Sayın AMİRA GHRAB, 81723596 nolu gönderiniz 7435 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/81723596\n\nDear AMİRA GHRAB, your shipment with 81723596 was delivered to you with the delivery code 7435. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/81723596\n\n\nBICARGO','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('7c66df8b-07b8-4a78-b339-c880c0533ae2','905304259202','GAZİ PINARBAŞI adlı müşterinizin 478125476 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL),
('7c6db80b-a767-4837-ab47-8e5ac07fa96d','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin puf mağaza ürünü 1 parça halinde Fatura adresinizden 26.05.2025 14:33:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('7c70cb26-d22d-4968-8568-c6f1e76b46c7','4915771101675','808146332 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808146332\n\nYour shipment with the number 808146332 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808146332\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('7c739a86-cd73-4a5f-81d8-2da969821100','4917632856382','598444930 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5474 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598444930\n\nYour shipment with the number 598444930 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5474. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598444930\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('7c73aaaa-372c-4d7b-b7c5-f301f0cdf269','33763889303','Sayın ÖZGÜR BOZKURT, 231211138 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231211138\n\nDear ÖZGÜR BOZKURT, your shipment with 231211138 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/231211138\n\nBICARGO','1','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL),
('7c744faa-8ce7-40d7-a3bc-3c2f84c624fc','905059175469','Sayın yetkili; MEHMET KILINÇ adlı müşterinize 428173598 nolu gönderinizin köşe ürünü 5 parça halinde katre koltuk adresinizden 30.06.2025 13:16:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('7c746fa8-bd91-44e9-9a33-873689ddab7d','491621988472','Sayın HALİLOVİÇ ELMA, 371104317 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371104317\n\nDear HALİLOVİÇ ELMA, your shipment with 371104317 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371104317\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('7c74cf49-35d5-4590-8dae-ee22b4581323','491772522817','745823692 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4041 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745823692\n\nYour shipment with the number 745823692 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4041. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745823692\n\nBICARGO','1','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL),
('7c75cb84-9ead-4745-8584-019dcfb13914','330750840793','Sayın ŞAHİN DOROTHE, 98298396 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98298396\n\nDear ŞAHİN DOROTHE, your shipment with 98298396 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98298396\n\nBICARGO','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('7c781a42-bdb5-4733-816b-8f9c8cfb7244','905335511664','FATMA DUMAN adlı müşterinizin 371696993 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('7c7c1895-cbc8-4e25-8341-765807fa00b8','905443955915','ÜLKÜ AKIL adlı müşterinizin 61480625 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','f67e7508-1afa-4901-b396-faae504c1726',NULL),
('7c7dc44f-5006-4b9e-b8fa-5b2bcd00714a','4917684484965','351888584 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5536 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351888584\n\nYour shipment with the number 351888584 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5536. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/351888584\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('7c7dfcd3-a045-4182-a24a-2d52192674d7','905335708965','LEİPZİNG adlı müşterinizin 248133427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL),
('7c813064-c812-4dc8-a94f-135ec32d6b17','905304259202','İSMAİL İSMAİL adlı müşterinizin 478262226 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL),
('7c886a76-bc03-4b32-b52d-0feccbca3bbd','905335708965','MUHAMMET EL CASİM adlı müşterinizin 248435862 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL),
('7c8adf7b-c0cf-4add-9bc6-6262e2643d60','905331602195','Sayın yetkili; ALİYE DALKAYA adlı müşterinize 221763889 nolu gönderinizin 90x190 Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:01:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('7c8d37e1-36b4-4b71-a1b3-256dc27189c8','491636759658','Sayın AMAL EL JABBARİ, 644789157 nolu gönderiniz 7597 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644789157\n\nDear AMAL EL JABBARİ, your shipment with 644789157 was delivered to you with the delivery code 7597. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644789157\n\n\nBICARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('7c8daef1-611a-4241-bd49-c1e6ec6267f3','905510396989','ABUZER TEKCE adlı müşterinizin 319232330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('7c8efa56-b0e3-4010-9495-4b55377bab8f','2325643653447647','655644248 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3262 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655644248\n\nYour shipment with the number 655644248 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3262. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655644248\n\nBICARGO','2','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL),
('7c91e6c4-d17d-4000-a61a-daf95316cae6','49176030609788','Sayın ERKAN TAŞDELEN , 221397270 nolu gönderiniz 6099 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221397270\n\nDear ERKAN TAŞDELEN , your shipment with 221397270 was delivered to you with the delivery code 6099. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221397270\n\n\nBICARGO','2','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('7c9558b7-4c1e-4073-98fa-0ce71bd786f8','905078062550','HASSAN KHORRAM adlı müşterinizin 598441020 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('7c96dd8d-3de5-41b9-a63d-defb72837806','905336367828','Sayın yetkili; ABBAS GHULANI  adlı müşterinize 982978293 nolu gönderinizin Sandalye  ürünü 2 parça halinde Ademoğlu sandalye  adresinizden 13.08.2025 10:15:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('7c9e0697-fbb5-4513-a46a-5b380cdb08de','31686094393','22145224 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2327 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22145224\n\nYour shipment with the number 22145224 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2327. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22145224\n\nBICARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('7ca6f157-2803-4f0f-a3af-d602a7ca1db0','491781976531','59878032 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59878032\n\nYour shipment with the number 59878032 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59878032\n\nBICARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('7cb3d8d5-4a3c-4d70-85e5-925501469a32','905350617509','ALTİN RAMADANİ adlı müşterinizin 61355212 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('7cb4cb74-aabb-4499-a036-9dabf744a2a1','4917678708676','Sayın ÖZKAN KAYACAN, 745170376 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745170376\n\nDear ÖZKAN KAYACAN, your shipment with 745170376 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745170376\n\nBICARGO','1','0e979831-071a-44d0-92b5-b61f986da797',NULL),
('7cb95cdc-843b-4e14-a372-b3e76d78b1de','333632361757','817619747 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2916 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817619747\n\nYour shipment with the number 817619747 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2916. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817619747\n\nBICARGO','2','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('7cbab44b-704b-48af-a41c-c5f44b83c977',NULL,'ALPEREN BAYRAM adlı müşterinizin 65722585 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL),
('7cbb2997-c2b8-44f4-b493-e7108522d001','905075277637','Sayın yetkili; BURAK SARIKAYA adlı müşterinize 745816946 nolu gönderinizin DELUXE 90X190 BAZA SETİ 1 ADET  ürünü 3 parça halinde Fatura adresinizden 30.09.2025 12:29:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('7cc048aa-7f1a-4284-8e7f-c210964b91b9','905461661672','Sayın yetkili; ÖMER VAROL(K) adlı müşterinize 644714925 nolu gönderinizin MALZEME KUTUSU ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 24.09.2025 16:05:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('7cc0619e-a40b-4909-8765-3370796e983c','905350617509','DENİZ AKGÜMÜS  adlı müşterinizin 613601743 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('7cc11860-2e15-4923-b2a9-7b4141232a82','905313340045','Sayın yetkili; EZGİ YÜCEL adlı müşterinize 437713339 nolu gönderinizin kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 12.08.2025 17:35:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('7cc15c03-f253-469c-8e23-1e68039307bf','905078062550','Sayın yetkili; MUSTAFA KELEŞ adlı müşterinize 598263441 nolu gönderinizin MASA SEHPA ürünü 11 parça halinde RİO FATİH adresinizden 16.09.2025 10:47:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('7cc48bb4-48e4-43dd-9829-084e299f747e','905331602195','Sayın yetkili; ERKAN TAŞDELEN  adlı müşterinize 221397270 nolu gönderinizin 90x190 Marmo masa  ürünü 3 parça halinde Fatura adresinizden 23.01.2025 11:00:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('7ccba615-1ee1-46c4-81c2-10b84fc732b0','33664143322','Sayın HASAN DOYRAN, 454880224 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/454880224\n\nDear HASAN DOYRAN, your shipment with 454880224 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/454880224\n\nBICARGO','1','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL),
('7cd06f98-e98e-4604-b2b0-6f4e94359232','905325000478','RIDVAN BEY adlı müşterinizin 412241218 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL),
('7cd7dfc1-412f-4113-93a9-6fa2d9386ac0','905327099916','Sayın yetkili; FEYZULLAH ALTEKİN adlı müşterinize 959513288 nolu gönderinizin MİLANO KARYOLA 180*200 ürünü 6 parça halinde FENER MOBİLYA adresinizden 13.10.2025 12:48:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a9e92a4f-2e0c-410b-8783-a6088e15e8db',NULL),
('7cd9e8bc-640a-44ad-9d99-1d424704c4d4','905350617509','Sayın yetkili; SEVVAL KELES adlı müşterinize 613495902 nolu gönderinizin Sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 20.08.2025 18:39:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f18122e-004e-4381-bc37-c92c815065a9',NULL),
('7ce59042-1bb2-4d3c-be39-ff7d327c02f3','905075277637','CÜNEYT BARUT adlı müşterinizin 745699153 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL),
('7ce7e6a5-5bac-4378-be10-3011f5b32a3a','4917640498968','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('7ce9fdb6-4766-4350-a2f9-da948a0aa2af','905301592882','Sayın yetkili; İBRAHİM TURŞUCU		 adlı müşterinize 910697257 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 20.06.2025 11:58:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('7ceaaecc-f384-4828-905b-b67316fcc190','905350617509','Sayın yetkili; ENES TAHİRİ adlı müşterinize 613803170 nolu gönderinizin Karyola+döşek+2 adet komodin ürünü 9 parça halinde Fatura adresinizden 09.04.2025 17:20:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('7cecb8d4-f182-4e29-9675-e06dddbc1806','905461661672','Sayın yetkili; GÜLAY FASOLD adlı müşterinize 644820551 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 02.05.2025 11:18:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('7cef2184-d423-435d-915b-eb6f128c5dd0','905301592882','Sayın yetkili; ÖZDEMİR YAKAN		 adlı müşterinize 910972908 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 12.09.2025 17:12:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('7cf049a7-0c08-41f4-bdb7-90b6d6319598','4915124010499','Sayın NECMİYE AMET, 221801165 nolu gönderiniz 5957 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221801165\n\nDear NECMİYE AMET, your shipment with 221801165 was delivered to you with the delivery code 5957. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221801165\n\n\nBICARGO','1','5c7ee7c7-55ec-4754-bb1a-69a26c30fff6',NULL),
('7cf1e7df-aea3-46c1-8483-b179981c00ad','905335511664','Sayın yetkili; FATMA KAYA adlı müşterinize 371579541 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 14.05.2025 11:01:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('7cf3d1be-f1cc-401c-aaf4-29ba960ac63a','905075277637','BARIŞ ÇOŞKUN adlı müşterinizin 745656343 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9667990f-57b0-4e89-ac6c-4a2ef8899bf0',NULL),
('7cf6de48-bac2-4f3e-9382-8b9089ee2d94','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 10.10.2025 10:46:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('7cff30bf-f30d-474d-a49c-80498440cf82','33769061663','Sayın RAMAZAN KIYMAZ, 478900175 nolu gönderiniz 1773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478900175\n\nDear RAMAZAN KIYMAZ, your shipment with 478900175 was delivered to you with the delivery code 1773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478900175\n\n\nBICARGO','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('7d00b6fd-4b99-4cc6-9540-f5f7a2f482f7','905313340045','Sayın yetkili; SERCAN KUCUR adlı müşterinize 437626008 nolu gönderinizin Koltuk takımı+berjer+puf ürünü 5 parça halinde fe-ha concept adresinizden 29.08.2025 10:52:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('7d00d0e0-b91b-4e66-a7aa-5caea153c573','33771744012','644257752 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3121 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644257752\n\nYour shipment with the number 644257752 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3121. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644257752\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('7d01fe4a-f3f7-4bb5-9f8a-47c9c65dde89','905079358213','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin VOYAGE KÖŞE KOLTUK ürünü 5 parça halinde RİXXE  adresinizden 09.09.2025 11:29:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('7d03e51d-0f50-4973-8407-c57e38256043','491604615612','İletişim \n					Şöför Uğur Acar +905424435917','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('7d03fe5f-d756-4626-989f-94f71a3e406a','004915906397569','Sayın İLDA TOKOVİÇ, 735520226 nolu gönderiniz 7992 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735520226\n\nDear İLDA TOKOVİÇ, your shipment with 735520226 was delivered to you with the delivery code 7992. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735520226\n\n\nBICARGO','2','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL),
('7d041b0c-b4c1-41c4-a342-36c846e7a2f4','905301592882','CENGİZ SAKALI  adlı müşterinizin 910926193 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL),
('7d0ca1d5-f24a-4c61-a55c-5bd31b8246d2','4917670490126','Sayın TUĞÇE SUER , 765484490 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765484490\n\nDear TUĞÇE SUER , your shipment with 765484490 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765484490\n\nBICARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('7d0efe4d-89a9-427e-bea3-2cb504c15a76','905079358213','Sayın yetkili; PINAR SALMA SSH  adlı müşterinize 745332643 nolu gönderinizin SSH TEK BAZA  ürünü 1 parça halinde Fatura adresinizden 06.08.2025 16:19:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('7d111505-40ae-4561-a8c8-449b877c50a9','905313340045','Sayın yetkili; GÜL KOÇAK adlı müşterinize 437672074 nolu gönderinizin kampanya köşe takımı  ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 24.07.2025 16:25:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('7d15d8e1-b196-4d9f-ad8f-03b829b55254','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('7d168640-b449-473c-8ca8-73ec861f44b5','004917632786230','Sayın OZAN YEŞİL, 735442629 nolu gönderiniz 7634 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735442629\n\nDear OZAN YEŞİL, your shipment with 735442629 was delivered to you with the delivery code 7634. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735442629\n\n\nBICARGO','2','4f91d654-f578-426a-8133-5299ed48d624',NULL),
('7d16c53a-579d-4974-a568-0ddec914fbcb','905443955915','Sayın yetkili; ÖZKAN KARAOĞLU adlı müşterinize 614200423 nolu gönderinizin BAMBİ MAGNASAND 180*200 YATAK ürünü 1 parça halinde Fatura adresinizden 18.12.2024 13:54:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('7d296a43-1876-43f7-9e78-e12937041716','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin RANA MASA  ürünü 2 parça halinde Fatura adresinizden 01.10.2025 12:25:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('7d2b8223-c4a3-4fc9-8298-d462a2658689','905079358213','MERVE DAYI adlı müşterinizin 745869069 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('7d346ffb-df31-4a67-932a-7732daa25d97','4917661977409','982653067 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2601 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982653067\n\nYour shipment with the number 982653067 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2601. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982653067\n\nBICARGO','1','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL),
('7d392775-b5c3-4e54-a87f-073471ab834b','5324145618','517867004 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517867004\n\nYour shipment with the number 517867004 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517867004\n\nBICARGO','2','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('7d3b07ab-38b0-4298-9f5d-109164c1b225','905301592882','Sayın yetkili; YAVUZ KOÇMAN		 adlı müşterinize 910772127 nolu gönderinizin ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 16.07.2025 14:06:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('7d424f7f-8d40-4afc-8b24-ca8b430e3f87','111111111111','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','2','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('7d4701ab-2091-49e3-959e-36a37797d21f','905078062550','Sayın yetkili; MERT ÇİÇEK adlı müşterinize 598954734 nolu gönderinizin BAZA BAŞLIK ürünü 6 parça halinde ALBESSA HOME adresinizden 14.08.2025 11:51:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('7d48c46a-374c-49c8-bac1-8a7f1bf5e947','4917622161768','Sayın SAMER JİNİED, 42845711 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42845711\n\nDear SAMER JİNİED, your shipment with 42845711 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42845711\n\nBICARGO','1','00f85745-0785-4a7a-9691-f650a9d585f2',NULL),
('7d4bdbe3-da85-47dc-847a-034bb4afa4b7','310681538881','Sayın GALİP YAYLALI, 338286320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338286320\n\nDear GALİP YAYLALI, your shipment with 338286320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338286320\n\nBICARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('7d4f2f0d-ef07-4f2e-a390-99d84e34cd5f','905336367828','BRAHIMA NAIMA adlı müşterinizin 982446186 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('7d51cb97-12d7-4fe6-b488-1503d4441aea','905335511664','RECEP TABAKOĞLU adlı müşterinizin 371601782 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('7d527638-a83a-4797-b01a-e46eaff434bf','905331602195','NİHAL ŞAHİN adlı müşterinizin 221899517 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('7d5589c5-e56c-426a-89c1-19f94916ab74','4915154648685','Sayın ÖNDER KOCYİGİT, 380453463 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/380453463\n\nDear ÖNDER KOCYİGİT, your shipment with 380453463 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/380453463\n\nBICARGO','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('7d6cc18d-e2b6-4939-8c6c-c35fda7b2cae','905075277637','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin MALDİV YEMEK ODASI  ürünü 8 parça halinde ACCA adresinizden 17.10.2025 15:02:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('7d71ceb7-e703-4ebb-9dfb-8fe0d10c39c1','33682073450','478647079 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2749 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478647079\n\nYour shipment with the number 478647079 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2749. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478647079\n\nBICARGO','1','b3402260-d451-4d00-8ed8-35b3af56080f',NULL),
('7d75222a-bbe6-4daa-85e3-272c3b010263','41763265325','Sayın JELENA BARATOVİC, 126245978 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126245978\n\nDear JELENA BARATOVİC, your shipment with 126245978 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126245978\n\nBICARGO','1','05161621-4074-4395-a4ac-b594dfcce0f9',NULL),
('7d76ba4f-f044-4597-afd1-7a8a42b29e1b','4915208677667','Sayın TUĞÇE ÖNCÜ, 371120237 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120237\n\nDear TUĞÇE ÖNCÜ, your shipment with 371120237 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371120237\n\nBICARGO','1','8dcb0124-79e0-4138-838e-c613554097e7',NULL),
('7d76fbc1-069d-4239-ac76-862a3773dd91','905075277637','Sayın yetkili; DELİL ÖZTÜRK SSH adlı müşterinize 745786401 nolu gönderinizin dolap kapak + malzeme pk  ürünü 3 parça halinde MOBİLİSTAN adresinizden 23.05.2025 09:31:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('7d773316-e7c5-452a-adf7-9ba19ea1b36b','33609376931','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('7d774476-869e-4317-8be1-8f927dc20160','905517075149','Sayın yetkili; OKAY DERİNKUYU adlı müşterinize 478402358 nolu gönderinizin müşterinin kalan ürünleri ürünü 1 parça halinde BİCARGO DEPO adresinizden 09.09.2025 11:52:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('7d7c7a30-7342-4be8-a260-98077678e2d8','33618425759','Sayın SERHAT KARATAŞ , 449197003 nolu gönderiniz 2546 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449197003\n\nDear SERHAT KARATAŞ , your shipment with 449197003 was delivered to you with the delivery code 2546. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449197003\n\n\nBICARGO','1','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL),
('7d7d9677-67b8-4fe8-9d63-ffec198a7b98','905325000478','MEHMET ÇİL adlı müşterinizin 412450269 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2eac751e-9abb-4289-a78f-365093ac6e16',NULL),
('7d7ec18e-fed7-4d84-a6fb-fdf94418f105','00491520424249','Sayın SUAT, 248103321 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248103321\n\nDear SUAT, your shipment with 248103321 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248103321\n\nBICARGO','2','791e33b7-8896-46f8-95f8-717ff7671574',NULL),
('7d817ead-e26f-4718-b257-57bf9c90a833','905461661672','Sayın yetkili; BETÜL ÇELİK SSH adlı müşterinize 644298325 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Masami Mobilya adresinizden 24.06.2025 15:37:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('7d84528d-7200-445d-b67e-142ce45219e3','905331602195','DERGHAM NAWEL  adlı müşterinizin 22145441 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('7d861da1-b1d4-43c6-a6a5-1972914f4b0a','905078062550','Sayın yetkili; MAHMUD BİRÜKOF adlı müşterinize 598754271 nolu gönderinizin MASA ürünü 2 parça halinde SM TASARIM adresinizden 02.10.2025 13:01:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('7d8659fc-d331-43f7-aab7-43b35bff3442','4917632881676','644917251 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644917251\n\nYour shipment with the number 644917251 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644917251\n\nBICARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('7d87835e-7989-4f29-9831-78dc1e8e95a7','33626434007','Sayın SİBEL ÇINAR, 428511580 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428511580\n\nDear SİBEL ÇINAR, your shipment with 428511580 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428511580\n\nBICARGO','1','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL),
('7d87ef56-f59a-4ed5-81dc-ea742248b7b7','4917632216516','221989961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3309 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221989961\n\nYour shipment with the number 221989961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3309. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221989961\n\nBICARGO','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('7d88a1d2-27e4-497f-b90f-5cdf875007f3','905443955915','KIYMET ŞAHİN adlı müşterinizin 614987879 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a72800e1-54dc-4d60-b293-ca2184c62129',NULL),
('7d897034-2617-4e27-9a32-22177a8c97f5','4917621666906','371807983 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1142 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371807983\n\nYour shipment with the number 371807983 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1142. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371807983\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('7d89faca-f488-4830-8555-1e802c998126','11111111111','614143415 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6002 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614143415\n\nYour shipment with the number 614143415 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6002. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614143415\n\nBICARGO','2','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL),
('7d96382f-74f6-4d13-bba7-fe0eee28e457','905079358213','Sayın yetkili; BERKANT YAŞA SSH  adlı müşterinize 745712790 nolu gönderinizin SSH DOLAP PARÇALARI  ürünü 5 parça halinde Fatura adresinizden 18.07.2025 17:42:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('7d9aea0d-1a47-4538-850c-b638433ed688','33751280603','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('7d9be2a1-2a2e-473f-95f4-0e1aed4f754a','4917664132163','Sayın SHİMA MAKEH VANDİ, 371865484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371865484\n\nDear SHİMA MAKEH VANDİ, your shipment with 371865484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371865484\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('7d9c032e-d2d7-43e6-a5da-5ceeb48a5b65','491632213386','Sayın ISRA ISKENDER, 43736182 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43736182\n\nDear ISRA ISKENDER, your shipment with 43736182 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43736182\n\nBICARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('7d9d2163-2ff2-4cfe-9ee2-d70a599b446a','4917621696450','644823609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4389 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644823609\n\nYour shipment with the number 644823609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4389. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644823609\n\nBICARGO','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('7d9d800d-78b0-4912-92f9-06cde8aeae9d','905323540531','GÜRKAN DAĞ adlı müşterinizin 904803845 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL),
('7d9dd895-2a94-4418-924e-0ed1701a9405','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin SANDALYE ürünü 2 parça halinde WOXX FURNİTURE adresinizden 11.11.2024 10:36:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('7d9ef8aa-6287-4500-a70d-55b9945b7fee','33666268323','Sayın FİRDEVS ORHAN, 221407228 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221407228\n\nDear FİRDEVS ORHAN, your shipment with 221407228 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221407228\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('7d9f295f-2508-48e6-9d45-224ec1c6020f','4917663874660','44932987 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10100 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44932987\n\nYour shipment with the number 44932987 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10100. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44932987\n\nBICARGO','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('7d9fe60e-3cfd-4115-a044-f2962fbe7b04','905075277637','DÖNDÜ ESER adlı müşterinizin 745498790 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('7da9f1bb-5f7b-4abb-bd8b-9dbe4987c47d','905335511664','Sayın yetkili; SİNEM ULUSOY adlı müşterinize 37183091 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 16.07.2025 18:31:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('7daee46f-0aa1-4c0f-9029-f142066e6e0f','01783097953','613822987 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5071 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613822987\n\nYour shipment with the number 613822987 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5071. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613822987\n\nBICARGO','2','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('7db14aa2-7013-417c-8814-6938b564652f','40756878017','Sayın GHATİA PARASCHİVA, 982163675 nolu gönderiniz 2489 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982163675\n\nDear GHATİA PARASCHİVA, your shipment with 982163675 was delivered to you with the delivery code 2489. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982163675\n\n\nBICARGO','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('7db2645a-8c31-4250-99d3-6c647a7a1448','33761054646','Sayın HAKAN YAZICIOĞLU, 478807426 nolu gönderiniz 2937 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478807426\n\nDear HAKAN YAZICIOĞLU, your shipment with 478807426 was delivered to you with the delivery code 2937. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478807426\n\n\nBICARGO','1','3a570254-b092-4922-92c1-beea8773ea63',NULL),
('7db8850d-18ab-4372-9c1c-f1e200bdb2f7','33762279977','412647671 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6660 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412647671\n\nYour shipment with the number 412647671 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6660. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412647671\n\nBICARGO','1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL),
('7dbac161-76bc-4f3a-8b3a-40374a61afc9','905517075149','ÖZKAN ERDEM  adlı müşterinizin 478862837 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('7dbf1d32-7d44-433d-9cd3-ff68e9ccf933','05531042901','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('7dbfb01c-9878-48d2-8693-0f7516e398be','41764965010','126908886 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10160 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126908886\n\nYour shipment with the number 126908886 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10160. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126908886\n\nBICARGO','1','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL),
('7dc176d6-e56f-49f8-ae10-4b76ec966395','33753285709','478784133 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478784133\n\nYour shipment with the number 478784133 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478784133\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('7dc4b9d3-2f6e-4093-aa52-cce62b91d10f','49017662030920','338878009 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10498 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338878009\n\nYour shipment with the number 338878009 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10498. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338878009\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('7dc67591-76bb-487a-9165-0ef5bb7354ec','5325000478','Sayın AAAAAAA BBBBBBB, 08.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8534846\nŞifre : 8534846\n			\nBİCARGO','1',NULL,'a85a3dda-e4c8-4693-bdde-b568f029378b'),
('7dc9b8d1-266e-4f23-9d5f-1d3d8567e07d','905313340045','Sayın yetkili; SERAP ÖZTEK adlı müşterinize 437660658 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 26.08.2025 12:15:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('7dcf22f9-4483-4191-913e-77bf4c5dff8a','905517075149','BİLGEN TATAR adlı müşterinizin 478764154 nolu gönderisi 47 parça halinde yola çıkmıştır.','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('7dd8ddae-bb90-4ee8-b083-fdff0f2829a6','33652423048','478391312 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1541 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478391312\n\nYour shipment with the number 478391312 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1541. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478391312\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('7dde2ed1-4355-444c-ab02-442180729ed4','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU DENGEMA 361 ZEN MASA BEYAZ MERMER-KROMAJ AYAK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('7de8d9d2-6144-4576-b1bb-6a5633bb83e4','905317943903','897291641 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10280 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/897291641\n\nYour shipment with the number 897291641 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10280. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/897291641\n\nBICARGO','2','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL),
('7dea0181-98b1-4245-9812-72097541651e','905331602195','Sayın yetkili; ŞERAFETTİN KOYUNCU adlı müşterinize 221817193 nolu gönderinizin 90x200 Msm 01 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:10:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8551d3c1-420d-41bd-a461-00738dd54bda',NULL),
('7dec1bed-d1f3-4251-bb74-88c28b2290c8','4917666559986','Sayın MOHAMAD NOUR TARRAB, 248739379 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248739379\n\nDear MOHAMAD NOUR TARRAB, your shipment with 248739379 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248739379\n\nBICARGO','1','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL),
('7dee3443-57d6-471f-b09a-e95ece10a452','33647335236','Sayın ATİLLA GÖNÜLTAŞ, 268615271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268615271\n\nDear ATİLLA GÖNÜLTAŞ, your shipment with 268615271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268615271\n\nBICARGO','1','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL),
('7df44ae1-14af-4f53-b269-e9a47a04b05d','905394878216','RABİA DULU adlı müşterinizin 517278082 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('7df826db-83ba-4e3e-8249-65721ecd9b3f','06649942512','644985861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644985861\n\nYour shipment with the number 644985861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644985861\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('7df8eadb-a75e-4bdf-a8ab-45b5c3d79b0a','905079358213','NURTEN TÜRK adlı müşterinizin 745220703 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e8a249a9-b090-42b5-ba99-445005f2b553',NULL),
('7df94f32-1e7f-4d39-9f95-424b7725ec31','905078062550','Sayın yetkili; İBRAHİM YEŞİLKAYA adlı müşterinize 598211009 nolu gönderinizin MASA ürünü 2 parça halinde SM TASARIM adresinizden 18.07.2025 10:22:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('7dfdc34b-7a30-4c8c-8654-ae7305f1aedb','905394878216','FUAT HUT adlı müşterinizin 517903636 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('7dfedc5e-b7db-4b13-b2cf-7e2f9515a51b','905335708965','MANGAL MÖBEL adlı müşterinizin 735340001 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL),
('7e01f751-7b6d-4af5-9e78-58c84f52d3a9','31625064385','Sayın MURAT AKTAŞ, 163401674 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/163401674\n\nDear MURAT AKTAŞ, your shipment with 163401674 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/163401674\n\nBICARGO','1','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL),
('7e03b341-ce90-4872-8721-b52892701bd4','33780501083','Sayın RODRİGUES AMİNA, 982542299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982542299\n\nDear RODRİGUES AMİNA, your shipment with 982542299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982542299\n\nBICARGO','1','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL),
('7e077c54-5bfc-4641-bbaa-fabbfee2bced','905539740010','KAM.   TUBA YİLDİRİM adlı müşterinizin 011804405 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('7e100883-a44b-46fc-a799-1f4c8ee1952c','33699946659','Sayın BELKISA KAPLAN, 478428380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478428380\n\nDear BELKISA KAPLAN, your shipment with 478428380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478428380\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('7e112c23-7751-44f3-a73c-a77390811663','905461661672','Sayın yetkili; YAKUP AKYOL adlı müşterinize 644741916 nolu gönderinizin traverten ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 10.10.2025 13:17:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('7e12da0e-801f-4d5d-b930-f0bdc0d35d2f','31621494387','644391223 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644391223\n\nYour shipment with the number 644391223 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644391223\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('7e1b85bd-fde3-4306-9bab-34030f051554','33698172262','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('7e1d7607-e5e3-4d6d-8342-ca5dbf782ba4','905465479064','ANTEP SOFRASI adlı müşterinizin 85814402 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c660ccad-df7b-45ce-a388-95120ceea510',NULL),
('7e1ff812-fae4-48c1-acd0-dc5955cc758e','4917656772155','Sayın MEHMET ULUIŞIK, 598614826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598614826\n\nDear MEHMET ULUIŞIK, your shipment with 598614826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598614826\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('7e20c160-c4df-485b-b355-b4e52fd34248','33778663770','Sayın M.CEDRİC KLEINDIENST (SSH), 221105277 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221105277\n\nDear M.CEDRİC KLEINDIENST (SSH), your shipment with 221105277 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221105277\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('7e27f4de-7342-4f69-98e4-3885d0a6ccd7','4917660878841','614350153 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3584 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614350153\n\nYour shipment with the number 614350153 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3584. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614350153\n\nBICARGO','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('7e2a6636-f3fe-4e76-83f6-a642d8dd0874','4306603197698','Sayın ESRA SEZEN, 428122550 nolu gönderiniz 9172 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428122550\n\nDear ESRA SEZEN, your shipment with 428122550 was delivered to you with the delivery code 9172. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428122550\n\n\nBICARGO','1','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL),
('7e2ee1fa-9df1-4274-8c88-06ba497a3826','905350866560','Sayın CAN DERİN, 517337381 nolu gönderiniz 10454 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517337381\n\nDear CAN DERİN, your shipment with 517337381 was delivered to you with the delivery code 10454. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517337381\n\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('7e3261de-476d-427d-8038-0fd4eaf092f5','905335511664','ADEM BÜYÜK adlı müşterinizin 371913094 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('7e32aefc-2f4d-4214-bb96-a54db6d1823d','491781975056','Sayın MUHAMMED YUŞA YILDIRIM, 478261120 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478261120\n\nDear MUHAMMED YUŞA YILDIRIM, your shipment with 478261120 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478261120\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('7e359a07-ecdb-4861-9c47-7eddb1ca5d3f','41794613009','Sayın MONİKA MORKİ , 449693939 nolu gönderiniz 4129 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449693939\n\nDear MONİKA MORKİ , your shipment with 449693939 was delivered to you with the delivery code 4129. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449693939\n\n\nBICARGO','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('7e37004b-23d9-4ec1-9114-556d9fb40db9','905497405500','MUSTAFA SAİT ÖZDEMİR adlı müşterinizin 203497868 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL),
('7e3d8e66-ed4f-4621-bb9f-1e309b51bbb7','33660468423','Sayın İNAN PALA, 221210071 nolu gönderiniz 9123 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221210071\n\nDear İNAN PALA, your shipment with 221210071 was delivered to you with the delivery code 9123. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221210071\n\n\nBICARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('7e42a6dd-6a18-446d-b7d0-b5ef48d65893','905078062550','Sayın yetkili; SİHAM MAHMOUD adlı müşterinize 598280715 nolu gönderinizin BAZA BAŞLIK ürünü 7 parça halinde ALBESSA HOME adresinizden 14.08.2025 12:11:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('7e43d474-fedf-4b5c-9935-0f45e959efe5','905461661672','KAMER DUHAN ECE(K) adlı müşterinizin 644651781 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('7e45ba48-68c0-439c-8e36-f9ec03fca868','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin YATAK ODASI  ürünü 20 parça halinde Fatura adresinizden 16.11.2024 15:53:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('7e4bda60-174b-4b2e-a8ea-697935ef39ab','4917630530053','Sayın YAKUP AKYOL, 644741916 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644741916\n\nDear YAKUP AKYOL, your shipment with 644741916 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644741916\n\nBICARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('7e4ea885-0ca3-4028-84af-b2aba8f1e469','905054335859','İRFAN AKTAŞ  adlı müşterinizin 501167444 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL),
('7e51db05-b6d1-4f8a-a89f-21ce1dbb4839','33767885681','Sayın ZERDOUN SALOME, 437573248 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437573248\n\nDear ZERDOUN SALOME, your shipment with 437573248 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437573248\n\nBICARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('7e5af6fa-f56a-4bf6-bdca-8edabbd82141','9054439559150','ARZU BÖÇKÜN adlı müşterinizin 614680407 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('7e5bef84-9822-475a-a04d-73a72dd0b4fa','491739128442','Sayın MUHSİN GÜMÜŞ, 910225013 nolu gönderiniz 6392 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910225013\n\nDear MUHSİN GÜMÜŞ, your shipment with 910225013 was delivered to you with the delivery code 6392. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910225013\n\n\nBICARGO','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('7e5f3e9d-5cbc-49ad-9d7e-fcd4e9bdea0a','905331602195','GÜLSÜM UÇAR  adlı müşterinizin 221345365 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('7e5fbb9a-85f1-46b2-bedf-e1fd1bea99e7','4542392394','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('7e61fbed-2aff-4ee5-ae58-56ec5f98d92e','33652449725','478764154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478764154\n\nYour shipment with the number 478764154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478764154\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('7e662ca3-ac53-483a-abc7-f8de7070c99e','905331602195','L.DOUİRİ adlı müşterinizin 221997933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('7e68b874-be03-44a0-9e44-d1364bd3264e','905350617509','Sayın yetkili; SUADA HAMZA  adlı müşterinize 613990020 nolu gönderinizin Masa ürünü null parça halinde İlyas Masa adresinizden 11.06.2025 14:10:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('7e6a0d0f-8013-4240-8069-bb2246fce771','491726468929','Sayın ZELİHA ÖZCAN, 598492066 nolu gönderiniz 2548 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598492066\n\nDear ZELİHA ÖZCAN, your shipment with 598492066 was delivered to you with the delivery code 2548. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598492066\n\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('7e6ada8c-9769-4799-b04b-89b72babdf9b','905059175469','SEBAHAT KOÇAK adlı müşterinizin 428761245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('7e6ee48e-6a88-4283-94a9-11dcc29c92e8','905394878216','Sayın yetkili; ELİF SIKI  adlı müşterinize 517157021 nolu gönderinizin Zigon Sehpa ürünü 5 parça halinde Fatura adresinizden 08.07.2025 10:58:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('7e6fa195-0fd1-423e-a556-9bb0ef0cb367','491786857560','Sayın MUHAMMET KÖSEDAĞ(K), 644590959 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644590959\n\nDear MUHAMMET KÖSEDAĞ(K), your shipment with 644590959 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644590959\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('7e73c7ef-47b8-4880-8d60-e814a8857d86','5325000478','Sayın MERT GÜNAL, 20.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9656943\nŞifre : 9656943\n			\nBİCARGO','1',NULL,'9656d9e4-a381-4143-957d-98a2f19361a5'),
('7e75b735-3bdd-4046-82a3-01378fbaebaa','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin PRADA ORTA SEHPA ürünü 2 parça halinde SERBEST MOB adresinizden 19.09.2025 14:49:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('7e77fa8d-a322-42b2-b239-12f6736c864b','32470754918','Sayın MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH), 221561968 nolu gönderiniz 1489 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221561968\n\nDear MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH), your shipment with 221561968 was delivered to you with the delivery code 1489. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221561968\n\n\nBICARGO','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('7e804de1-988c-4662-8bdb-c2764ad11056','905079358213','HANİFE YILMAZ adlı müşterinizin 745252636 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('7e80ec6a-c13c-45c8-8bb1-33d9692832f0','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin Parteon ve focus ç.masasışifonyer kitaplık  ürünü 15 parça halinde seven kids adresinizden 09.10.2025 14:07:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('7e817905-5de1-4c3b-9152-baa8436e5d5e','905443955915','Sayın yetkili; YILDIRIM ASLAN adlı müşterinize 614339204 nolu gönderinizin FALCON BERJER KASASI SİYAH RENK 2 ADET ürünü 1 parça halinde PAKKO KOLTUK adresinizden 23.12.2024 12:33:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('7e821a03-a0df-4941-bd85-045b2023539b','905364752848','LİBELLA FRİSEURBEDAR  adlı müşterinizin 231216092 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL),
('7e832e6f-f6d7-495d-b290-d0c4e454cd05','111111111111','Sayın YUSUF ATUM , 501212768 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501212768\n\nDear YUSUF ATUM , your shipment with 501212768 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501212768\n\nBICARGO','2','22aac75b-880d-4ec6-b9a5-586a4d8ba155',NULL),
('7e8a238e-3280-4df5-ad8c-9cc76355c873','905336367828','JİLLİA AMİRİ adlı müşterinizin 982630175 nolu gönderisi 31 parça halinde yola çıkmıştır.','1',NULL,NULL),
('7e91af5a-1565-4d41-af5b-0e4829e96287','905335708965','MESUT BEY adlı müşterinizin 248720273 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL),
('7e967a23-92fd-4fe7-b22b-1bbb4008ec4f','436607081476','Sayın MİKAİL VUREL, 315903894 nolu gönderiniz 1052 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/315903894\n\nDear MİKAİL VUREL, your shipment with 315903894 was delivered to you with the delivery code 1052. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/315903894\n\n\nBICARGO','1','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL),
('7e98666e-d5df-4cde-b7f1-1f6d230a1922','905075277637','Sayın yetkili; SULTAN YAŞAR  adlı müşterinize 745105230 nolu gönderinizin VOYAGE TEKLİ  ürünü 1 parça halinde RİXXE  adresinizden 14.10.2025 13:52:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143',NULL),
('7ea3c3a8-cf2d-456b-ae1c-122e7f9c2ba4','905336367828','QASIM MOHAMMADİ adlı müşterinizin 982331367 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL),
('7ea40825-8073-437d-b4b9-c23b7c017d7f','905079358213','HARUN KAYA adlı müşterinizin 745180441 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL),
('7ea538b0-bf92-4cef-83e8-17e8e16acf02','905459011033','SAS CONFORT CONCEPT adlı müşterinizin 268163356 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL),
('7ea58406-b273-4569-8cf5-55e5176aa9a8','905461661672','BEYTULLAH AKSOY adlı müşterinizin 644826911 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('7ea5d480-6640-4141-9895-9f7b4a78b156','905075277637','ÖZLEM TÜRKMEN adlı müşterinizin 745853192 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('7ea61d16-4364-45b0-9758-f0920106e70f','905337836884','Sayın yetkili; AHU AYYILDIZ adlı müşterinize 140421350 nolu gönderinizin sehpa ve halı ürünü 2 parça halinde Fatura adresinizden 24.10.2025 13:34:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29897483-14ac-4404-8bba-38c2a76aa9a9',NULL),
('7ea8fad9-e25c-4acc-ae0d-c2b2706fc9a8','491738610898','614462377 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4375 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614462377\n\nYour shipment with the number 614462377 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4375. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614462377\n\nBICARGO','1','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL),
('7ea9a422-8ca9-4bbf-bb0a-b78a22ec8e94','905313340045','Sayın yetkili; MANOLYA PELİN ERDOĞAN ÖZÇELİK adlı müşterinize 437649706 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 10.09.2025 11:11:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('7eac2419-8896-4c9b-a98c-1b2b380f2dcf','41613314258','428177245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2275 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428177245\n\nYour shipment with the number 428177245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2275. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428177245\n\nBICARGO','2','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL),
('7eacb7ca-b7eb-40b2-bdfe-99aa57813903','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin 6 sanalye ürünü 3 parça halinde fulaş sandalye adresinizden 27.12.2024 14:56:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('7eae7378-50fd-4805-8520-e450cbee8e7c','5421009721','Sayın OKAN EKİNCİ, 745873539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745873539\n\nDear OKAN EKİNCİ, your shipment with 745873539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745873539\n\nBICARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('7eb5a55c-46ef-4457-9ae0-aa83e7814b34','005071104453','248948777 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1565 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248948777\n\nYour shipment with the number 248948777 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1565. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248948777\n\nBICARGO','2','c139f73d-4a85-4217-8011-d483b3fabd11',NULL),
('7eb9795a-d121-46ae-8597-7c79ca6aca93','31625064385','Sayın COŞKUN MURAT AKTAŞ , 41246036 nolu gönderiniz 3766 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41246036\n\nDear COŞKUN MURAT AKTAŞ , your shipment with 41246036 was delivered to you with the delivery code 3766. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41246036\n\n\nBICARGO','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('7ec999f3-d201-41c8-9ab4-b85ae24c2c42','32465395227','Sayın SEVAY NİKOLAEVA YANKOVA, 517895646 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517895646\n\nDear SEVAY NİKOLAEVA YANKOVA, your shipment with 517895646 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517895646\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('7ecf6d4a-490f-4d87-8372-90fa7b3bbb2f','33782835819','Sayın SELMA YILMAZ , 437649696 nolu gönderiniz 7738 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437649696\n\nDear SELMA YILMAZ , your shipment with 437649696 was delivered to you with the delivery code 7738. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437649696\n\n\nBICARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('7ed9beec-2ff0-4e12-b1fb-8fc76c621d0b','905461661672','NAZIM KORKMAZER adlı müşterinizin 644771270 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('7eda6864-5227-4a90-be51-5438392a725c','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE KÖŞE TAKIMI  ürünü 4 parça halinde RİXXE  adresinizden 08.09.2025 12:15:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('7edadd75-0a14-4d67-91eb-bcc726f5634e','33676578058','745964132 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9323 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745964132\n\nYour shipment with the number 745964132 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9323. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745964132\n\nBICARGO','1','3f82ae91-19cb-4663-bb33-377d660eea84',NULL),
('7edb8ffb-3833-425b-89d6-256394d492f2','491716245168','478650682 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478650682\n\nYour shipment with the number 478650682 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478650682\n\nBICARGO','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('7edc8017-1fe7-4194-a392-23c2c510015e','905336367828','SERVET ERDOĞAN adlı müşterinizin 982426968 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('7edc9d1a-0b6e-45aa-ad62-22eddfd246d4','436601881431','Sayın SERKAN ELGİT , 61310831 nolu gönderiniz 7828 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61310831\n\nDear SERKAN ELGİT , your shipment with 61310831 was delivered to you with the delivery code 7828. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61310831\n\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('7ee028fe-e3d9-4020-a1f9-7d1f6513856d','4917623983797','Sayın SAVAŞ AKTAŞ, 478815317 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478815317\n\nDear SAVAŞ AKTAŞ, your shipment with 478815317 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478815317\n\nBICARGO','1','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL),
('7ee15aa0-2141-432b-85a7-c73de5794d55','905365908694','CANSEL YILMAZ adlı müşterinizin 223275516 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL),
('7ee25dcf-be6d-4d44-9a0f-1a920795cbb7','0041799084222','Sayın SEMİL HADZİ, 735905073 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735905073\n\nDear SEMİL HADZİ, your shipment with 735905073 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735905073\n\nBICARGO','2','36d04374-8820-448d-9e27-e2a098baa9f9',NULL),
('7ee6064c-ef16-4cb0-8544-ccb46dcc09bb','4915752948798','74597110 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5804 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74597110\n\nYour shipment with the number 74597110 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5804. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/74597110\n\nBICARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('7eea5935-1d13-4018-a197-4d2504f84b35','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 05.05.2025 16:47:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('7eeb4215-6513-49dc-b02d-b309a1859402','41795825997','Sayın FLORENTİNA, 126561228 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126561228\n\nDear FLORENTİNA, your shipment with 126561228 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126561228\n\nBICARGO','1','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL),
('7eebc7da-7a23-471c-a6c1-9f44805f27e4','905054335859','BİROL KURNAZ adlı müşterinizin 501452801 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('7eec0ecf-0b3b-4adb-80a6-afd4cb40a65b','4917670211470','Sayın SEYİTHAN ASLAN, 745212688 nolu gönderiniz 4669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745212688\n\nDear SEYİTHAN ASLAN, your shipment with 745212688 was delivered to you with the delivery code 4669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745212688\n\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('7eed7657-ecfa-45c8-b8e3-04ae764f5be8','4917657685014','Sayın NERMİN KAZAN , 786146097 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786146097\n\nDear NERMİN KAZAN , your shipment with 786146097 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786146097\n\nBICARGO','1','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('7ef63d66-1e76-4573-98df-83c0281bd1f2','4917670801496','Sayın SİNEM ULUSOY, 37183091 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37183091\n\nDear SİNEM ULUSOY, your shipment with 37183091 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37183091\n\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('7efc188b-18dc-41a3-8593-a08b1dfab4be','4915735324307','Sayın SÜMEYRA YARİM, 371381951 nolu gönderiniz 8319 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371381951\n\nDear SÜMEYRA YARİM, your shipment with 371381951 was delivered to you with the delivery code 8319. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371381951\n\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('7efd4e0e-d253-4c13-b9fc-0968a63d3a4c','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160*200 YATAK ANTRASİT ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('7f014288-bf9f-4146-b39e-5fe7e6fe5cbb','905335511664','Sayın yetkili; BÜŞRA POYRAZ adlı müşterinize 371508043 nolu gönderinizin MASA SEHPA  ürünü 4 parça halinde SM Tasarım adresinizden 19.08.2025 15:05:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('7f03c8ed-7d17-4d42-889d-d228179b6781','33782212899','Sayın AYŞE KONDAL, 478971881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478971881\n\nDear AYŞE KONDAL, your shipment with 478971881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478971881\n\nBICARGO','1','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL),
('7f08945f-bbf1-4573-abe4-e09e5e3b501b','4915785422322','Sayın ZÜLAL KABA , 765472156 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765472156\n\nDear ZÜLAL KABA , your shipment with 765472156 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765472156\n\nBICARGO','1','fe1bf79f-2efb-488d-8554-0ec73016bf8c',NULL),
('7f0aaae3-5044-48d7-8132-8d89308ef17e','905301592882','Sayın yetkili; ROHAT KALABAŞ adlı müşterinize 910245715 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 4 parça halinde NOVANO adresinizden 19.03.2025 17:45:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('7f0d2198-2b85-4df8-8ace-7982b80ce93a','31620244050','Sayın REİNAS HAİDARİ SSH, 644490677 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644490677\n\nDear REİNAS HAİDARİ SSH, your shipment with 644490677 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644490677\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('7f0eeeac-daa5-4cc5-9762-bc95e18afc8f','905335511664','SUAT TURA adlı müşterinizin 371628660 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('7f0f30bd-18df-4350-849b-f0b94429f297','491728436940','Sayın MÜŞERREF GONCA, 745831913 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745831913\n\nDear MÜŞERREF GONCA, your shipment with 745831913 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745831913\n\nBICARGO','1','1588a62a-68c3-4ab3-a790-c8924ac0f9c2',NULL),
('7f195a05-bc65-47dd-ad47-5c78fa9102ad','491776418748','478622556 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6905 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478622556\n\nYour shipment with the number 478622556 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6905. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478622556\n\nBICARGO','1','aa5c731f-f0ea-43c7-9644-2e9bd7d45c48',NULL),
('7f21fab3-11ab-435b-8afc-2c2aea5f97ad','33607979254','Sayın EMİR ASLANOĞLU, 745747559 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745747559\n\nDear EMİR ASLANOĞLU, your shipment with 745747559 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745747559\n\nBICARGO','1','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL),
('7f238f08-dff0-445e-a61d-dc61709c0f75','905331602195','Sayın yetkili; NURİYE ŞAHİN adlı müşterinize 221447673 nolu gönderinizin 60x100 orta sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 21.04.2025 14:18:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('7f244932-46dd-4618-bf0a-6c2908b31627','491729567967','Sayın AKİF AĞCA, 734626870 nolu gönderiniz 10747 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734626870\n\nDear AKİF AĞCA, your shipment with 734626870 was delivered to you with the delivery code 10747. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734626870\n\n\nBICARGO','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('7f25a8ea-71ab-4331-baab-db89e8000357','1111111111111111','Sayın BRÜKSEL, 248592138 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248592138\n\nDear BRÜKSEL, your shipment with 248592138 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248592138\n\nBICARGO','2','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL),
('7f26f795-9f37-425c-ad12-f203855cd902','905301592882','Sayın yetkili; YAVUZ KOÇMAN		 adlı müşterinize 910772127 nolu gönderinizin KONFOR PUF ürünü 1 parça halinde Fatura adresinizden 16.07.2025 14:06:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('7f2b5ea6-25cd-441e-93e0-df292563c32b','905335511664','EMEL ÖZTÜRK adlı müşterinizin 371191289 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('7f312f28-857e-47da-8b12-6fe746b0d91d','905304259202','Sayın yetkili; DEMET DEDE adlı müşterinize 478409459 nolu gönderinizin yemek odası+köşe  ürünü 11 parça halinde çelikbey inegöl depo adresinizden 28.12.2024 17:41:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('7f325894-7cba-43fc-9ecc-e5866f372342','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN SSH  adlı müşterinize 745693868 nolu gönderinizin SSH PUF  ürünü 1 parça halinde FAMILY adresinizden 23.10.2025 11:44:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','866ff076-12a1-4d7b-8ebc-b64544beb08e',NULL),
('7f37e105-ea3e-48d7-866c-d488b7eba7b6','905517075149','Sayın yetkili; SAMET BEY adlı müşterinize 478544570 nolu gönderinizin YATAK ODASI -MASA- SANDALYE ürünü 31 parça halinde RİXXE adresinizden 22.10.2025 14:12:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('7f3a40d5-c8a5-4829-aecc-828be9f46b17','905331602195','Sayın yetkili; ESMANUR ZENGİN  adlı müşterinize 221668922 nolu gönderinizin 70x120 traverten Orta sehpa  ürünü 2 parça halinde Fatura adresinizden 10.03.2025 15:08:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('7f3b19e6-c750-4ef9-87d7-d132d9d798fa','905336367828','Sayın yetkili; jusuf mehmedi adlı müşterinize 982844191 nolu gönderinizin yatak odası  ürünü 16 parça halinde emin mobilya adresinizden 13.11.2024 11:15:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('7f417509-4210-409a-b76c-e9280f3e9828','436601425568','Sayın AKRAMİ MUHAMMED, 449292416 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449292416\n\nDear AKRAMİ MUHAMMED, your shipment with 449292416 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449292416\n\nBICARGO','1','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL),
('7f455c60-014d-4169-a9a5-d4d6305c314c','905357955726','Ahmet özçiçek adlı müşterinizin 31515833 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','65c0e929-3375-4985-8c4f-62681ad7745f',NULL),
('7f479a08-51f9-403e-a455-ed78d4d23791','905461661672','Sayın yetkili; RAMAZAN HAVAÇEKEN(K) adlı müşterinize 644879098 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 18:01:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('7f49a674-c4bb-44eb-8d27-37362bbb8d05','491748888386','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('7f4f876b-8801-4dd0-b80f-f052646b56fb','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin Tv ünitesi ürünü 1 parça halinde İlyas Masa adresinizden 17.06.2025 16:21:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('7f517bc3-42d6-4fc3-900e-4383ed7fdade','4917682107795','Sayın ENES KARABAŞOĞLU, 598130952 nolu gönderiniz 5275 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598130952\n\nDear ENES KARABAŞOĞLU, your shipment with 598130952 was delivered to you with the delivery code 5275. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598130952\n\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('7f51a66a-5a04-4c88-bc1d-f964219634ba','436766833448','DRİVER NUMBER\n					905541100849','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('7f54ca11-4f58-4f00-a595-6c52ed4ca415','32467701837','Sayın HÜSEYİN ÖZGÜR, 412903351 nolu gönderiniz 2829 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412903351\n\nDear HÜSEYİN ÖZGÜR, your shipment with 412903351 was delivered to you with the delivery code 2829. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412903351\n\n\nBICARGO','1','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL),
('7f54ec0c-7001-4cf4-b2da-1ddc61553c04','905461661672','FURKAN BARUT adlı müşterinizin 644644143 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('7f585953-bc59-4da3-8062-7e3181864827','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin VİRAL BAZALI KARYOLA + ADA + 2 KOMODİN  ürünü 20 parça halinde FAMILY adresinizden 21.08.2025 11:42:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('7f5d542a-a9c7-4cee-b003-d97f75b4e676','905335708965','ABDÜLKERİM AKDAS adlı müşterinizin 248359668 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('7f5fd369-2974-46b3-a342-64afdf981c30','33749417037','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('7f5fda19-7fe8-4dc7-9f0d-350248491b59','905394878216','BARAN RAKİP adlı müşterinizin 517764616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('7f62b5dd-dc2c-488c-8edd-6c80721e45e0','491777070885','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('7f63d1ec-7f72-40b3-b788-56b9d5aaaaf9','491741928164','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('7f63e3bc-5913-49f0-8083-d3677c62f8cf','905313340045','Sayın yetkili; ISRA ISKENDER adlı müşterinize 43736182 nolu gönderinizin masa ürünü 2 parça halinde masami adresinizden 21.03.2025 11:54:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('7f6b1692-7e95-46ee-9dec-8743ff0df14a','491733039881','Sayın AYŞEGÜL GÖKTEPE, 478545457 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478545457\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478545457 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478545457\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('7f71ac84-1cb5-4405-98d4-bb805be689d4','905517075149','Sayın yetkili; ALİ RIZA ÇOLAK adlı müşterinize 478881148 nolu gönderinizin yatak odası takımı + dolap ürünü 29 parça halinde AREA adresinizden 16.10.2025 14:52:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','53342718-86b2-40d9-a013-7091e0df1800',NULL),
('7f74b262-eebf-4870-9b93-844f666745ac','905054335859','YUSUF KAYA adlı müşterinizin 501760253 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL),
('7f75cff6-d463-46f5-9bcd-c18b811c34be','33662539381','Sayın HATUN ŞİMŞEK, 842151692 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/842151692\n\nDear HATUN ŞİMŞEK, your shipment with 842151692 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/842151692\n\nBICARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('7f7639b3-3907-4f1a-b852-ed6714687fd2','1111111111111','Sayın ÇOŞKUN ŞENEL, 41288739 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41288739\n\nDear ÇOŞKUN ŞENEL, your shipment with 41288739 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41288739\n\nBICARGO','2','e55441b7-eaf6-4645-ac39-b0befcc429b1',NULL),
('7f774f48-85cd-40cd-9ae5-e1ce8cff2557','905331602195','Sayın yetkili; ABBES İMEN  adlı müşterinize 221407742 nolu gönderinizin Beyaz TV ünitesi 240 cm ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:11:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1384e7-3101-476b-be1f-bb10a9abe0b3',NULL),
('7f7a3497-ba2b-44a1-a2dc-c282ca4a59cf','4369919053808','Sayın FERİDE USLI , 982674617 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982674617\n\nDear FERİDE USLI , your shipment with 982674617 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982674617\n\nBICARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('7f7b8074-4e50-46f5-82fc-e1a1aac9ac76','905313340045','EZGİ YÜCEL adlı müşterinizin 437713339 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('7f7b85c2-256f-45a7-9485-9df96a223b45','33669077826','Sayın GİZEM ÖZKAN, 73589256 nolu gönderiniz 5979 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73589256\n\nDear GİZEM ÖZKAN, your shipment with 73589256 was delivered to you with the delivery code 5979. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73589256\n\n\nBICARGO','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('7f7bd081-c161-4568-8f55-1193174185ff','4915771101675','Sayın YUSUF ÖZKULLUK, 808146332 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808146332\n\nDear YUSUF ÖZKULLUK, your shipment with 808146332 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808146332\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('7f7ee7d5-aebb-49db-a1e8-9d02390ea534','905336367828','Sayın yetkili; NASIR NOORI  adlı müşterinize 982558117 nolu gönderinizin yatak  ürünü 1 parça halinde Fatura adresinizden 30.12.2024 17:41:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('7f7f2c8b-631f-46ac-b7f1-653563f4b930','41775230627','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('7f80b070-b155-48fd-b89a-35e4b95564bb','0031641290838','Sayın , 248864808 nolu gönderiniz 10151 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248864808\n\nDear , your shipment with 248864808 was delivered to you with the delivery code 10151. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248864808\n\n\nBICARGO','2','f8fc3b49-9b9c-4432-80be-0d9ce15dac6e',NULL),
('7f815524-80ab-49a2-a9e6-18fc05d9346b','905331602195','LEJLA GUDİC  adlı müşterinizin 221758948 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('7f870616-094c-41e0-bf1c-85a5890dc7e0','4917682319373','Sayın DERYA BALİ, 644178035 nolu gönderiniz 9253 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644178035\n\nDear DERYA BALİ, your shipment with 644178035 was delivered to you with the delivery code 9253. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644178035\n\n\nBICARGO','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('7f8b40b2-76be-4b41-bdb9-b21514f2e45f','905304259202','METE-TAHA TOPAL adlı müşterinizin 478281907 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','4a285e1c-8129-4c9c-85a3-06394604421e',NULL),
('7f8c5d15-8815-4c66-b3f9-d81eac61b9e9','491747765301','Sayın DERYA BAYRAK, 371180149 nolu gönderiniz 10176 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371180149\n\nDear DERYA BAYRAK, your shipment with 371180149 was delivered to you with the delivery code 10176. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371180149\n\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('7f8f9bc9-52c8-4b61-92ae-3cb96eb8e350','4915788580085','412206514 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5544 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412206514\n\nYour shipment with the number 412206514 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5544. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412206514\n\nBICARGO','1','50ac71ad-f352-4f3f-9611-9447396e01a3',NULL),
('7f98389e-1fb5-4de0-b1c1-bc2670d4342b','905075277637','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin BOHEM KONSOL MASA SANDALYE ürünü 10 parça halinde ACCA adresinizden 25.08.2025 11:29:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('7f9ec6ed-aaa3-41fe-a475-cc85088c0d90','4915753286470','64448364 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7015 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64448364\n\nYour shipment with the number 64448364 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7015. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64448364\n\nBICARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('7fa2752b-afb4-45f1-8ae3-2ad458f3de98','905428209234','DİLBER ÖZTÜRK adlı müşterinizin 319585140 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('7fa6ffa5-1c2e-441f-9a23-a8838c374d7a','4917622702695','Sayın BAHATTİN AGİT ÇELİK, 614350153 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614350153\n\nDear BAHATTİN AGİT ÇELİK, your shipment with 614350153 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614350153\n\nBICARGO','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('7fa7735a-a297-4cfa-873d-c2279c7c26fc','491747823424','İletişim \n					Şöför Uğur Acar +905424435917','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('7fa7d52f-0e37-4fe0-bff0-3ff3b6bca77d','491728410943','Sayın GÜLSÜM ÖZBAY DÜZGÜN, 910825747 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910825747\n\nDear GÜLSÜM ÖZBAY DÜZGÜN, your shipment with 910825747 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910825747\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('7fa8e6c9-2692-47e6-b5c7-a3979d5dbe59','4917646295086','Sayın PINAR SALMA, 745687103 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745687103\n\nDear PINAR SALMA, your shipment with 745687103 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745687103\n\nBICARGO','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('7fac5690-710d-42bc-96c5-eb4b50022153','32495328608','Sayın ÜMİT MORCA SSH, 644760466 nolu gönderiniz 6159 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644760466\n\nDear ÜMİT MORCA SSH, your shipment with 644760466 was delivered to you with the delivery code 6159. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644760466\n\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('7fae393b-270c-489c-9e84-113bd337bd11','491738569767','Sayın OKTAY SAMET ŞAHİN, 745782616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745782616\n\nDear OKTAY SAMET ŞAHİN, your shipment with 745782616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745782616\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('7fb3d4e4-b33a-42b4-a211-8876946057b5','491728739578','Sayın ARMİN IMERİ , 221867394 nolu gönderiniz 8009 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221867394\n\nDear ARMİN IMERİ , your shipment with 221867394 was delivered to you with the delivery code 8009. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221867394\n\n\nBICARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('7fb72abe-5939-464a-bb82-09592fc7d400','436608590261','598758154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1308 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598758154\n\nYour shipment with the number 598758154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1308. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598758154\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('7fbb0b4b-ba3f-4b1a-81ea-198fce0cd8f1','905301592882','AYNUR ÖZDEMİR  adlı müşterinizin 91062607 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','2791c56f-7265-461d-b1bf-4a378276ed53',NULL),
('7fbefd8b-1c9f-4b5b-ab85-c2b7cf4d1414','31648076421','Sayın AHMET GÖKÇEK , 973510341 nolu gönderiniz 7822 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/973510341\n\nDear AHMET GÖKÇEK , your shipment with 973510341 was delivered to you with the delivery code 7822. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/973510341\n\n\nBICARGO','1','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL),
('7fc451e6-2817-4356-8525-a3844d1e9754','4917621650674','Sayın VELİT FİLİZ, 808450440 nolu gönderiniz 10496 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808450440\n\nDear VELİT FİLİZ, your shipment with 808450440 was delivered to you with the delivery code 10496. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808450440\n\n\nBICARGO','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('7fcba4dc-ba87-484f-8798-cde7fc52349a','4917693356695','745747218 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745747218\n\nYour shipment with the number 745747218 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745747218\n\nBICARGO','2','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('7fcc39f1-e2a7-4e77-831d-6cc2140a11a8','905313340045','Sayın yetkili; MERVE KARADAVUT adlı müşterinize 437998346 nolu gönderinizin 1 modül SSH ürünü 1 parça halinde bestline koltuk adresinizden 08.09.2025 12:02:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('7fce0376-6bdf-4e76-a56f-3c3a4dd5de87','436603406293','Sayın yetkili; MEHMET COPUR adlı müşterinize 675644991 nolu gönderinizin YATAK ürünü 7 parça halinde TRANSJET DEPO adresinizden 21.08.2025 11:22:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('7fd27510-b5db-43fd-a6dd-7bdfc0e5ce75','905331602195','Sayın yetkili; FİRDEVS ORHAN adlı müşterinize 221407228 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:03:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('7fd72e1a-0c92-4397-92a7-33658833ba46','4915208602802','Sayın ALİŞAN CERCİ(K), 644847294 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644847294\n\nDear ALİŞAN CERCİ(K), your shipment with 644847294 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644847294\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('7fdadc5a-f8fd-4b87-bca9-eaa4f7d99519','905412810757','HACI KURBAN BAŞTÜRK  adlı müşterinizin 162733891 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee55d774-0af3-44a4-a04d-c52632a73128',NULL),
('7fdf64f5-7105-4e87-b08d-ba47f4f8d5e2','0000000000000000','412289507 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2884 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412289507\n\nYour shipment with the number 412289507 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2884. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412289507\n\nBICARGO','2','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL),
('7fe46b47-7ad5-478a-bc71-62028c3b448f','491723213351','745276835 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3443 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745276835\n\nYour shipment with the number 745276835 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3443. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745276835\n\nBICARGO','1','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL),
('7fe7d5bc-a865-420f-8dce-cee832e175ff','310621327442','Sayın SUZAN ALTIPARMAK, 501339138 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501339138\n\nDear SUZAN ALTIPARMAK, your shipment with 501339138 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501339138\n\nBICARGO','1','e5d95e08-a8c0-4133-845e-d93395f55044',NULL),
('7feaaaed-75c6-46ba-87fb-ab89501b8ded','33646824181','Sayın NAİMA BOURAJJOU, 221106888 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221106888\n\nDear NAİMA BOURAJJOU, your shipment with 221106888 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221106888\n\nBICARGO','1','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL),
('7ff0ba97-35fe-4b69-a0dd-3f4642fca64f','4917670801496','Sayın SİNEM ULUSOY, 37183091 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37183091\n\nDear SİNEM ULUSOY, your shipment with 37183091 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37183091\n\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('7ff2372c-8b03-4c2d-9fa7-7fb8c5f826e9','436765735040','745553590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3905 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745553590\n\nYour shipment with the number 745553590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3905. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745553590\n\nBICARGO','1','6220c77f-761e-462c-a359-ad8d9ba79902',NULL),
('7ffdfddf-55f7-4d42-9551-5b4ce66f1967','4915228688524','976430102 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7699 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976430102\n\nYour shipment with the number 976430102 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7699. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976430102\n\nBICARGO','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('7ffedd1a-5cb8-4284-b038-a3756b1c3e3f','32493977862','Sayın GODİNA REJEP , 221157320 nolu gönderiniz 9689 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221157320\n\nDear GODİNA REJEP , your shipment with 221157320 was delivered to you with the delivery code 9689. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221157320\n\n\nBICARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('80011b16-5a15-4467-9714-e6598dca8a68','491777519570','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('8004feb6-cb5b-489a-b3f9-e0a75ca3c45e','905517075149','ALİCE CHOCRON adlı müşterinizin 478589258 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('8005260e-0561-4278-99e1-a64fc26c88bd','905517075149','BESNA ULUĞ adlı müşterinizin 478906000 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('80053055-7bba-4d54-8e65-29ea20f88e2b','4917681321777','61330729 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4153 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61330729\n\nYour shipment with the number 61330729 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4153. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61330729\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('80063fca-65a0-4cbc-80fb-4a8bfeb57074','4917641453096','598463425 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4640 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598463425\n\nYour shipment with the number 598463425 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4640. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598463425\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('80080fde-6bae-4b3c-8791-15dfb4ac8750','4917661287885','614636969 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6042 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614636969\n\nYour shipment with the number 614636969 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6042. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614636969\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('8009258e-6c46-4509-a06e-8ce6359e3a2e','33782976683','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('8016af69-b8a9-41ec-bb4c-2f1b8521d6e8','9053259981980','Sayın yetkili; ÖMER NEBİ ÖZDEMİR adlı müşterinize 614789435 nolu gönderinizin BAMBİ BLACKSAND YATAK 140x190 VE ALEZ 2 ADET ürünü 3 parça halinde Fatura adresinizden 20.10.2025 11:50:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','1ccb123e-55ae-441d-b623-a1914d69bafb',NULL),
('8018aa47-8e90-4bdd-ab76-65f19b7e986a','905336367828','REZA MUHAMMEDİ adlı müşterinizin 982292794 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL),
('801a980d-8c87-42ee-b6b1-34a4cdfce8ee','905078062550','Sayın yetkili; CEMİLE VE HÜSEYİN ŞAHİN adlı müşterinize 598697614 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde HARUNCAN SOFA adresinizden 10.09.2025 11:22:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d3e4434c-1317-4092-aed5-8cc884ab1ae7',NULL),
('80200c4b-b74f-46df-a852-2edd4f52997d','31625064385','Sayın BOLL TRADE, 412173308 nolu gönderiniz 2962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412173308\n\nDear BOLL TRADE, your shipment with 412173308 was delivered to you with the delivery code 2962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412173308\n\n\nBICARGO','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('802140d5-dc5d-4a16-a652-887d5b174fe3','905321608709','ZAKARİA MASHHOD adlı müşterinizin 248352114 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','adf0440c-3715-4603-a3a4-91b6f557e095',NULL),
('803098d9-b7b2-4826-8055-a9ea8425c35f','4915228807643','Sayın SERKAN DOKKAL, 598961970 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961970\n\nDear SERKAN DOKKAL, your shipment with 598961970 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598961970\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('80324e65-ece5-4af7-883d-dea1bc784b91','4915753005551','817747938 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10408 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817747938\n\nYour shipment with the number 817747938 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10408. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817747938\n\nBICARGO','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('80327704-a1f2-4904-9588-d5e824e6596c','905075277637','BEYTUK KAPLAN adlı müşterinizin 745724680 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL),
('80361a4c-5811-47a4-af02-0970760ba2b4','905059175469','Sayın yetkili; SÜMEYYE KARAMAN adlı müşterinize 428103279 nolu gönderinizin berjer ürünü 1 parça halinde massi milano adresinizden 07.02.2025 11:16:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('8045f11a-0833-4184-a9dd-5e55df754c9e','4915734900369','Sayın ELÇİN ÖZDEMİR, 371860514 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371860514\n\nDear ELÇİN ÖZDEMİR, your shipment with 371860514 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371860514\n\nBICARGO','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('804758b6-f6e7-45dc-bc7a-8b53663e2d1e','905461661672','MURAT BALTACI(K) adlı müşterinizin 644762741 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('8048fdea-c4da-4d50-95ac-1a1b3c31b776','491629865985','437313362 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5686 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437313362\n\nYour shipment with the number 437313362 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5686. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437313362\n\nBICARGO','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('804924c7-5c0b-4ea9-986b-19349780ba51','905517075149','Sayın yetkili; YUSUF BARAN adlı müşterinize 478450171 nolu gönderinizin YATAK ODASI TAKIMI L DOLAPLI ürünü 27 parça halinde garderobe adresinizden 13.10.2025 11:05:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('804c19c3-144e-47a6-a298-09f78ebfab7e','4917684656802','Sayın GHASAN ALBUKAİ, 289392695 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/289392695\n\nDear GHASAN ALBUKAİ, your shipment with 289392695 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/289392695\n\nBICARGO','1','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL),
('804ead70-f576-4176-9cc8-150310e684bf','33651871381','Sayın YASSMİNE JADMOUR, 982455918 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982455918\n\nDear YASSMİNE JADMOUR, your shipment with 982455918 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982455918\n\nBICARGO','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('8055f0bd-972d-4a2a-9d08-9eaf7e54a66f','491722373298','221485829 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221485829\n\nYour shipment with the number 221485829 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221485829\n\nBICARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('805aed97-ffff-4725-9b95-4aa5a80fd9c1','491638012299','Sayın KEYVAN GHADİMİ, 478363734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478363734\n\nDear KEYVAN GHADİMİ, your shipment with 478363734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478363734\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('805d942d-cf64-47dc-9bf1-d4362e3d554f','4917624966741','Sayın ÖZKAN KUYUCU, 976121570 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976121570\n\nDear ÖZKAN KUYUCU, your shipment with 976121570 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976121570\n\nBICARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('8068f2f2-cecd-4666-9f0a-f67be25c9f19','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin kotuk 3+3+1 ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('806dd4dc-ca26-4447-9261-123698c9b23f','32489642440','982402434 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7590 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982402434\n\nYour shipment with the number 982402434 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7590. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982402434\n\nBICARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('806f6316-9e4d-49c3-8258-bc358c3db444','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO 6 KAPAKLI DOLAP-PAKET 9/8  ürünü 10 parça halinde LİDYA MOBİLYA  adresinizden 19.09.2025 14:38:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('8070021e-76a3-48cf-a9d2-eebc45a34294','905510396989','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin İCON DOLAP / KARYOLA / 2 KOMODİN ürünü 12 parça halinde ROİS adresinizden 22.09.2025 14:30:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('807036fa-c1fd-4426-8ecc-66660d9ad595','905336367828','Sayın yetkili; ADİSA BALANCA  adlı müşterinize 982751509 nolu gönderinizin masa + sehpa  ürünü 5 parça halinde Fatura adresinizden 12.08.2025 15:41:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('8079125f-dc64-459d-b416-555ef4ce4464','33782976683','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('807b1830-cd23-44d9-a224-3b669c9d523f','905461661672','Sayın yetkili; OLSZWESKİ MATZ adlı müşterinize 644658399 nolu gönderinizin Sehpa ayağı ürünü 1 parça halinde Masami Mobilya adresinizden 21.07.2025 10:20:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('807ba4d1-d31c-45c6-b48e-7309fec59fa1','31643641346','Sayın GÖKHAN EYCAN, 478681299 nolu gönderiniz 10348 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478681299\n\nDear GÖKHAN EYCAN, your shipment with 478681299 was delivered to you with the delivery code 10348. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478681299\n\n\nBICARGO','2','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('80853d07-b94a-43c7-a5a4-9dce77d378bb','05388618969','Sayın yetkili; DURJANT adlı müşterinize 786476168 nolu gönderinizin Travertin yemek masası  ürünü 2 parça halinde Fatura adresinizden 22.10.2025 15:49:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','40f4a8a2-0c08-45ca-b2a2-587b0f53b46f',NULL),
('8087de06-7440-4dc5-988b-43426a4caaf5','33623704351','Sayın SEDAT ARSLAN, 412359172 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412359172\n\nDear SEDAT ARSLAN, your shipment with 412359172 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412359172\n\nBICARGO','1','032b3134-3092-40b9-b2b2-be3390b4726e',NULL),
('808905a3-21d1-4bc4-9cfb-6f0498f8f79a','905313340045','Sayın yetkili; FATMA SAĞLIK adlı müşterinize 437835103 nolu gönderinizin kampanya köşe takımı ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 12.08.2025 17:36:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('80936c2d-5e63-416f-a9b3-13ecfade720d','905079358213','Sayın yetkili; LEİLA GELES SSH adlı müşterinize 745865715 nolu gönderinizin SSH MASA ÜST SEHPA AYAK + ZİGON  ürünü 3 parça halinde Fatura adresinizden 09.05.2025 12:14:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('80937d03-39ef-49b3-8968-97d9e2050e9d','4915252103069','Sayın  İLKER YAVAŞOĞLU, 613252288 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613252288\n\nDear  İLKER YAVAŞOĞLU, your shipment with 613252288 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613252288\n\nBICARGO','1','3b2b9553-2254-427e-9970-41bddf8e65b0',NULL),
('8093d9dc-19c7-40a5-a98e-e2cca5289b07','905534084469','Sayın yetkili; NEVZAT HACIOĞLU adlı müşterinize 15153034 nolu gönderinizin MASA ürünü 3 parça halinde Fatura adresinizden 21.04.2025 13:57:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('80985507-d41c-44fd-af18-6242261d85d8','905454259202','SÜMEYYE ARSLAN adlı müşterinizin 478719602 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('8099ac2e-a0ce-4ea2-8ff7-c9cfba944aae','32483027058','Sayın GÜLSEN ERDİNÇ SSH, 75052392 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/75052392\n\nDear GÜLSEN ERDİNÇ SSH, your shipment with 75052392 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/75052392\n\nBICARGO','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('809a3631-d56e-4f2f-8eb2-7ceee75abbc7','905331602195','MİHAND SAFAE  adlı müşterinizin 221257971 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('809b44e4-56eb-43bb-9f55-52a162633ff9','4915739347909','91074356 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4790 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91074356\n\nYour shipment with the number 91074356 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4790. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91074356\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('809d3c33-9f3a-43ff-8fdc-319e57fd3a0e','905335708965','SUMMSTOFF IMKEGENOSSENSCHAFT adlı müşterinizin 248243194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL),
('809fc33e-79c9-4240-8ed0-d7346c31e2e4','436609069660','982720250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5511 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982720250\n\nYour shipment with the number 982720250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5511. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982720250\n\nBICARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('80a41c00-0617-4f4d-8ba3-7712b2aed7cd','5388999874','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','2','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('80a55e84-6014-4ccf-a92b-a05df6ff0d0e','33616450587','İletişim \n					Halil Bey (Şoför) :+905541100849','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('80a88368-9d6b-460e-8186-e9ca616175c7','5325000478','Sayın MERT GÜNAL, 23.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9856286\nŞifre : 9856286\n			\nBİCARGO','1',NULL,'e9856286-e4fb-4a20-b86d-a2d532d46b0a'),
('80afbc59-44f4-4cf4-a290-90539fcdd2de','905350617509','Sayın yetkili; ZAINOUNE LOUBNA adlı müşterinize 613809111 nolu gönderinizin Masa +6 adet sandalye + orta sehpa ürünü 9 parça halinde Fatura adresinizden 24.03.2025 16:17:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('80b08507-9b8d-4d92-80b6-c848ac065e0d','33688096085','Sayın YAKUP KOÇOĞLU, 910778068 nolu gönderiniz 7461 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910778068\n\nDear YAKUP KOÇOĞLU, your shipment with 910778068 was delivered to you with the delivery code 7461. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910778068\n\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('80b0dfee-393d-49de-a913-565a96be5952','905312762034','Sayın yetkili; KİM KNÖPFLE adlı müşterinize 808690841 nolu gönderinizin MASA TAKIMI ürünü 9 parça halinde MASAMİ adresinizden 24.10.2025 11:21:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','340801e4-6036-4b2f-9cae-d51385895b71',NULL),
('80b3f6da-539d-447c-bd92-bc9e89bd3c76','33761428784','644783664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10159 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644783664\n\nYour shipment with the number 644783664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10159. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644783664\n\nBICARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('80b50382-2fb6-4e19-a93a-0517f4eb35fd','33641568371','Sayın HASAN ULUSOY, 976819499 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976819499\n\nDear HASAN ULUSOY, your shipment with 976819499 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976819499\n\nBICARGO','1','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL),
('80b6082c-e220-41fe-9c5e-d40020e1e99f','33662698743','Sayın LESLİE SEROR , 22144793 nolu gönderiniz 1714 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22144793\n\nDear LESLİE SEROR , your shipment with 22144793 was delivered to you with the delivery code 1714. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22144793\n\n\nBICARGO','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('80bc8393-17e4-4deb-a297-321bd0b010b7','3352305296','Sayın BÜNYAMİN ILIKSOY, 478668622 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478668622\n\nDear BÜNYAMİN ILIKSOY, your shipment with 478668622 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478668622\n\nBICARGO','2','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('80bf3137-043d-4d77-96a6-89af8f3c01e8','33783623343','Sayın YUSUF HAMZA DALKILINÇ, 478423651 nolu gönderiniz 5297 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478423651\n\nDear YUSUF HAMZA DALKILINÇ, your shipment with 478423651 was delivered to you with the delivery code 5297. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478423651\n\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('80c032ab-5386-4420-8565-1a49d3beb367','905075277637','SEDA KURTDİNÇEL adlı müşterinizin 745431846 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('80c0bbda-ab20-4e60-8fe6-d90dffe17326','33651254936','Sayın AYŞE SÖNMEZ, 745206126 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745206126\n\nDear AYŞE SÖNMEZ, your shipment with 745206126 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745206126\n\nBICARGO','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL),
('80c3cf9f-0db7-4f58-a266-8ebcd4ebd36d','905313340045','ALİ AKKAN adlı müşterinizin 43725194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('80c538ca-f3cc-4bf4-9135-1334bbdbe024','905454259202','Sayın yetkili; ALEV DOĞRU adlı müşterinize 478697529 nolu gönderinizin Ssh masa parçaları ürünü 2 parça halinde family adresinizden 27.03.2025 11:42:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('80c63654-d2de-4706-b761-edca3a9676bd','905336367828','VARELA FURTADO ELLİS adlı müşterinizin 982716246 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','05621906-10fc-483c-89a6-f51e344e576b',NULL),
('80c75b80-5123-4c69-a37a-02adab42b4c9','31627024701','Sayın BERKANT CEYLAN , 657784193 nolu gönderiniz 6596 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657784193\n\nDear BERKANT CEYLAN , your shipment with 657784193 was delivered to you with the delivery code 6596. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657784193\n\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('80c86c22-d878-4d00-a06f-143f2f7797cb','905075277637','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin TREND YEMEK MASASI  ürünü 3 parça halinde GARDEROBE adresinizden 07.05.2025 13:22:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('80c8b029-29a8-4c83-bd7a-06fd1f2d7b2d','33766554745','Sayın ABDUL AHMAD, 112609358 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/112609358\n\nDear ABDUL AHMAD, your shipment with 112609358 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/112609358\n\nBICARGO','1','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('80d20d96-9c35-40f2-806f-f3fbb03ce5c4','4915222605151','598548833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8303 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598548833\n\nYour shipment with the number 598548833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8303. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598548833\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('80d4bf84-5f92-4212-8a6c-7d905f442751','31641672960','Sayın HAKİM AZZOUZ, 657301470 nolu gönderiniz 4197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657301470\n\nDear HAKİM AZZOUZ, your shipment with 657301470 was delivered to you with the delivery code 4197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657301470\n\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('80d689da-9237-4584-9809-ee3ee3f4afbc','33613166090','İletişim \n					Halil Bey (Şoför) :+905541100849','1','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('80e6308f-228f-495d-a6c6-f7e698d1a728','905079358213','DÖNDÜ ESER adlı müşterinizin 745498790 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('80f315b4-f4a4-421d-b789-cfc48722bdf7','33751029586','Sayın NATASH SALİMİ, 982196265 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982196265\n\nDear NATASH SALİMİ, your shipment with 982196265 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982196265\n\nBICARGO','1','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL),
('80f497f7-905a-4d58-9f18-02c71c374c91','905517075149','Sayın yetkili; YUSUF BARAN adlı müşterinize 478450171 nolu gönderinizin 3+3+1+1 KOLTUK TAKIMI ürünü 4 parça halinde ikon koltuk adresinizden 20.10.2025 16:28:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('80f7300f-8b49-4909-a664-f1b804743d3f','491789151262','Sayın UMUTCAN ŞAHİNCİ, 437870707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437870707\n\nDear UMUTCAN ŞAHİNCİ, your shipment with 437870707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437870707\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('80f7f38d-48f2-441b-ba64-a66704b3eef8','491772522817','Sayın İBRAHİM KAYA, 745823692 nolu gönderiniz 4041 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745823692\n\nDear İBRAHİM KAYA, your shipment with 745823692 was delivered to you with the delivery code 4041. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745823692\n\n\nBICARGO','1','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL),
('80fbb02b-8394-447c-94af-d52e166983ee','4917622797061','Sayın GÜLSEREN ŞAHİN, 371494792 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371494792\n\nDear GÜLSEREN ŞAHİN, your shipment with 371494792 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371494792\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('80fd37dd-9aef-4a00-9202-f6160d68cdb8','905335708965',' adlı müşterinizin 248618650 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d7dfcf55-ee39-4764-87f9-17c50166c245',NULL),
('81071cb5-e24e-465f-95d8-5300faca7a01','5325000478','Sayın YILDIZ ORHAN, 12.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3877359\nŞifre : 3877359\n			\nBİCARGO','1',NULL,'38f77fc3-5f98-4f20-8995-d0cbc6cfead8'),
('81082863-11ec-446f-8e14-a804a7707b41','905304259202','EMİN EKRAMOĞLU adlı müşterinizin 478337610 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('810d49af-55af-4a65-94e4-ffc0de03047d','905059175469','Sayın yetkili; FATİH KAZAR adlı müşterinize 428182749 nolu gönderinizin 2 sandalye ürünü 1 parça halinde Fatura adresinizden 23.07.2025 14:12:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('810daaba-1fb0-47a4-b500-809bf63367e6','31657147344','Sayın GÖKHAN YETİŞ, 41295798 nolu gönderiniz 3168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41295798\n\nDear GÖKHAN YETİŞ, your shipment with 41295798 was delivered to you with the delivery code 3168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41295798\n\n\nBICARGO','1','3977a5d5-74d4-4a83-924b-634b068065a2',NULL),
('8111a659-d780-46f9-b964-7d81294cf98b','31641888341','Sayın NESRİN DUMAN, 745166392 nolu gönderiniz 10836 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745166392\n\nDear NESRİN DUMAN, your shipment with 745166392 was delivered to you with the delivery code 10836. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745166392\n\n\nBICARGO','1','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL),
('8112998e-4513-42e7-8c28-b1d784635417','49117670112264','42899153 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4457 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42899153\n\nYour shipment with the number 42899153 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4457. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42899153\n\nBICARGO','2','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('8114f5ee-e218-4520-85b4-246f86b51a81','905313340045','Sayın yetkili; MEHMET SEKBAN adlı müşterinize 437840419 nolu gönderinizin Kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 25.08.2025 13:42:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('8118d1cf-6141-4a48-b4dc-ce0644f26e30','905454259202','EMİN EKRAMOĞLU adlı müşterinizin 478548963 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('811a1208-1a59-4d13-8a41-36adaed1c00c','33685686692','Sayın MURAT KALKAN, 478520504 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478520504\n\nDear MURAT KALKAN, your shipment with 478520504 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478520504\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('811de410-6a1b-473a-8c25-8a6cbd650076','905078062550','AYLİN MİYANYEDİ adlı müşterinizin 598444930 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('812ceab4-30fc-41e7-94a8-697dd89d0f65','905079358213','Sayın yetkili; HATİCE KARABAĞCA SSH  adlı müşterinize 745658808 nolu gönderinizin SSH BAŞLIK VE RAF  ürünü 2 parça halinde Fatura adresinizden 28.05.2025 14:43:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('8130b6d0-d955-4b70-a16e-1953ab4cf229','41764340270','745824761 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4004 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745824761\n\nYour shipment with the number 745824761 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4004. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745824761\n\nBICARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('813d382e-cd37-47f2-be84-798b47a55ae0','','614337059 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5860 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614337059\n\nYour shipment with the number 614337059 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5860. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614337059\n\nBICARGO','2','bf3ae7e5-4e75-4c2c-9a7d-a29e7e05806e',NULL),
('814298a7-6e67-49db-be99-1babee8df3a9','905075277637','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin MERLİN KOLTUK TAKIMI ürünü 4 parça halinde INHOUSE  adresinizden 10.06.2025 11:44:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('81439359-3fda-432f-a9ec-6ce3ffd06f80','33782501255','745582484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8589 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745582484\n\nYour shipment with the number 745582484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8589. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745582484\n\nBICARGO','1','755f29ea-0c4a-4711-8cef-0e6360e5867f',NULL),
('81445ffc-4ee2-41ce-b523-4183946c410d','31619649864','Sayın ELVAN DURSUN, 437158505 nolu gönderiniz 5778 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437158505\n\nDear ELVAN DURSUN, your shipment with 437158505 was delivered to you with the delivery code 5778. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437158505\n\n\nBICARGO','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('814b4ac9-19c0-45d1-b4c3-e560102d929e','905539740010','Sayın yetkili; KAM.   TUBA YİLDİRİM adlı müşterinize 011804405 nolu gönderinizin KÖŞE+BENCH ürünü 4 parça halinde KARYOLA adresinizden 06.10.2025 10:47:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('814e755c-d93d-458b-b301-a687e219e252','491785431226','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('814ef7a1-21d1-4c97-b8f9-61a9a85649c0','4917641830880','976983661 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6468 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976983661\n\nYour shipment with the number 976983661 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6468. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976983661\n\nBICARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('814fd63c-4f8f-4bb1-9c1e-339c575e4191','905069116877','Sayın yetkili; MELİSA  adlı müşterinize 817630523 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Fatura adresinizden 28.07.2025 11:02:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('8154b3fe-8458-4b64-a111-9503f90dea30','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin BEYLER 2TAY-DR-320 AYNALI TABLO 3\'LÜ 80*80 ürünü 1 parça halinde Fatura adresinizden 08.09.2025 15:00:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('815af54f-4026-4400-b05e-23f1106263e7','905069116877','Sayın yetkili; KADER KAVAL  adlı müşterinize 817213476 nolu gönderinizin Star köşe  ürünü 6 parça halinde Fatura adresinizden 02.05.2025 11:53:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('815e4483-4330-453e-9ca1-729a66ee15da','491779822285','Sayın RUKİYE BARUT SSH, 644625326 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644625326\n\nDear RUKİYE BARUT SSH, your shipment with 644625326 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644625326\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('815e83b6-7c5f-43fe-a31e-5edf6a819d2f','33618347342','614345013 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2586 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614345013\n\nYour shipment with the number 614345013 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2586. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614345013\n\nBICARGO','1','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL),
('81605e1f-40cb-403b-98ae-90b6ba9029b1','33651723010','745334668 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7642 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745334668\n\nYour shipment with the number 745334668 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7642. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745334668\n\nBICARGO','1','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL),
('81640966-f760-4df9-98c1-02c379b8694e','905461661672','MELDA KARA adlı müşterinizin 64451300 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('81665f01-3ef0-44ac-b8f2-8703e33ff7a0','905301592882','Sayın yetkili; ABDULLAH ÖZER		 adlı müşterinize 910594430 nolu gönderinizin ÇELİK BAZA ürünü 2 parça halinde Fatura adresinizden 26.09.2025 18:09:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('816812cf-dd31-49a5-9988-242718c2fdf7','491624193445','Sayın CEYLAN ÇELİK, 745747218 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745747218\n\nDear CEYLAN ÇELİK, your shipment with 745747218 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745747218\n\nBICARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('816af016-9963-402b-afe1-8ac5aaaeee73','905454259202','Sayın yetkili; MEHRDAND RAZMPOUR adlı müşterinize 478962763 nolu gönderinizin koltuk takımı ve yatağı ürünü 4 parça halinde çelikbey inegöl depo adresinizden 15.04.2025 17:08:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('816afc1a-93ad-46a3-8795-900c9146b0da','4915254883380','Sayın , 12630810 nolu gönderiniz 3904 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/12630810\n\nDear , your shipment with 12630810 was delivered to you with the delivery code 3904. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/12630810\n\n\nBICARGO','1','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL),
('816bce5d-bc20-402f-b82c-ff15ae11d139','905069116877','HASAN ŞİMŞEK  adlı müşterinizin 817317858 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL),
('8170e807-dad0-4491-a138-4cc4b8d6e616','4917681017112','Sayın MELİSSA KARACAKAYA, 598961911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961911\n\nDear MELİSSA KARACAKAYA, your shipment with 598961911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598961911\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('81744d34-4730-4e4a-8483-75c7157db3a7','359896871111','Sayın REYHAN, 41286775 nolu gönderiniz 10824 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41286775\n\nDear REYHAN, your shipment with 41286775 was delivered to you with the delivery code 10824. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41286775\n\n\nBICARGO','1','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL),
('8185aed5-b221-4a6e-be2b-c7af81907914','905079047428','Sayın yetkili; JAFARİ SAYED OMİD adlı müşterinize 449448008 nolu gönderinizin Koltuk takımı.  3-2-1-1.  Sehpa  ürünü 5 parça halinde Fatura adresinizden 06.02.2025 17:05:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('8189f064-ea94-4529-9e0a-79b262eea12c','905313340045','ESME GÜNEŞ adlı müşterinizin 437256638 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('818ada14-c862-455a-a18b-230123a623b1','905363385813','SONGÜL GÜRKAN adlı müşterinizin 976843037 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('818d6149-23dd-45d0-92f6-f91aa3aa599f','41793422327','Sayın SÜLEYMAN SUNGUR, 371365041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365041\n\nDear SÜLEYMAN SUNGUR, your shipment with 371365041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371365041\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('818fa9e2-57ac-48d3-a628-0a0e1b65cd21','905331602195','Sayın yetkili; NURSEL ALİOĞLU adlı müşterinize 221272241 nolu gönderinizin 70 cm yuvarlak orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:49:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('819200e3-e378-48b8-9ef5-2192e2920d40','32484767015','Sayın SERDAL, 412586204 nolu gönderiniz 5727 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412586204\n\nDear SERDAL, your shipment with 412586204 was delivered to you with the delivery code 5727. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412586204\n\n\nBICARGO','1','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL),
('819614c2-9e14-485c-981b-e87ed94071ef','491734175349','Sayın AYNUR KANDEMIR, 486184665 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486184665\n\nDear AYNUR KANDEMIR, your shipment with 486184665 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486184665\n\nBICARGO','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('8197ac86-4264-462f-aaa9-643ae6eceb5a','4917620398976','ŞÖFÖR NUMARASI\n					+905467896981','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('8199737e-e43d-4bb8-b58f-24569338517f','4917682051476','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('81a5f7f4-b0f5-4760-a2a7-8b3bab14393f','33603993672','Sayın HEROLİND PROVATAJ, 750496630 nolu gönderiniz 9040 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750496630\n\nDear HEROLİND PROVATAJ, your shipment with 750496630 was delivered to you with the delivery code 9040. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750496630\n\n\nBICARGO','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('81b2b5e7-26a5-4113-a7c7-7576fa25f0ce','905331602195','Sayın yetkili; AUCHLİ ANA  adlı müşterinize 221616369 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:58:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('81b9e0fd-6744-4f3f-ae17-9f61b891e2de','905305444386','ALİ GALİP DUMAN adlı müşterinizin 583643470 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('81bd135b-acae-4118-82f5-b74b79eb69bb','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin LAMBADER ürünü 1 parça halinde Fatura adresinizden 01.10.2025 16:30:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('81c10268-5cd3-4e86-8935-2b98ab9c7c5f','905325000478','Sayın yetkili; Test adlı müşterinize 412751955 nolu gönderinizin Test ürünü 1 parça halinde Fatura adresinizden 24.10.2024 12:00:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bc9cdd42-f20d-47dd-a305-ef4f97580e2c',NULL),
('81c39ec3-e63c-4916-afc2-5826ced3dcae','4306607478961','982329375 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8985 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982329375\n\nYour shipment with the number 982329375 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8985. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982329375\n\nBICARGO','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('81c46e11-eafd-469b-9348-351976c6ade0','905331602195','ASMA SOULTANA  adlı müşterinizin 221854185 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('81ca0d6f-251a-4e8d-95f3-6b3b4b64ddca','491779772088','644771270 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4599 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644771270\n\nYour shipment with the number 644771270 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4599. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644771270\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('81cd1ce0-d218-45c6-a22f-1146dd4491a6','31625064385','Sayın MURAT, 4127825 nolu gönderiniz 6306 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/4127825\n\nDear MURAT, your shipment with 4127825 was delivered to you with the delivery code 6306. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/4127825\n\n\nBICARGO','1','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL),
('81ceab7d-eb3c-4902-94a8-71efebfb5a64','3363870091','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','2','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('81cfdf9a-2213-4b09-9975-00e7040e0241','905454259202','NEVZAT KAHRAMAN adlı müşterinizin 478212125 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL),
('81d285e7-1deb-4838-b4b1-df3c755cc857','4917664272042','Sayın REBEKKA İRMER, 644113100 nolu gönderiniz 2735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644113100\n\nDear REBEKKA İRMER, your shipment with 644113100 was delivered to you with the delivery code 2735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644113100\n\n\nBICARGO','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('81d784bf-2def-4b4f-a041-ac0da6f9ea2e','4369910940808','Sayın GÜLÇİN İSMAİLÇEBİOĞLU, 31925609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31925609\n\nDear GÜLÇİN İSMAİLÇEBİOĞLU, your shipment with 31925609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31925609\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('81d98832-b2c1-4671-94d4-2ff8d4a3160a','491717089315','Sayın FERHAT KARACA, 504780984 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/504780984\n\nDear FERHAT KARACA, your shipment with 504780984 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/504780984\n\nBICARGO','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('81de263a-d986-4f92-8f45-00f442a0e841','33668292449','745233031 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4429 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745233031\n\nYour shipment with the number 745233031 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4429. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745233031\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('81e1b27c-f5c7-4bc9-a651-257c4f766595','905454259202','FERDİ KURT adlı müşterinizin 478996959 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('81e3bd78-29c4-4e67-82b2-dfc8743c8534','41765044236','Sayın FİKRETE RAPCİ, 126806100 nolu gönderiniz 9119 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126806100\n\nDear FİKRETE RAPCİ, your shipment with 126806100 was delivered to you with the delivery code 9119. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126806100\n\n\nBICARGO','1','476b3b22-cc52-456b-baca-94ab2554e38d',NULL),
('81e86a15-e01e-4db0-936c-ba30b71df817','905365908694','MAİL BOXES adlı müşterinizin 223254418 nolu gönderisi 164 parça halinde yola çıkmıştır.','1','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL),
('81e8778b-6c3a-4216-a621-63294c3136d7','905534084469','AŞKIN TUN adlı müşterinizin 127105973 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','9d26f3f5-1617-4627-a308-2aea49169455',NULL),
('81e8d028-91d3-4c37-828f-a20c951e0d47','905421855834','Sayın yetkili; SEZER DOĞAN adlı müşterinize 338474620 nolu gönderinizin Meyra Koltuk ürünü 4 parça halinde İNHOUSE Exclusive adresinizden 03.12.2024 12:35:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('81ef8d26-6308-4995-a524-7e5b5e012e73','436607081476','315903894 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1052 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/315903894\n\nYour shipment with the number 315903894 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1052. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/315903894\n\nBICARGO','1','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL),
('81f74805-c8e1-43b8-9d12-35fdb0f15961','4915771101675','Sayın YUSUF ÖZKULLUK, 808146332 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808146332\n\nDear YUSUF ÖZKULLUK, your shipment with 808146332 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808146332\n\nBICARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('81f750a4-a3a3-4dfc-903b-2e0bb14a10c7','905442774505','Sayın yetkili; ONUR AKDAĞ adlı müşterinize 65722132 nolu gönderinizin Traverten masa ürünü 1 parça halinde Fatura adresinizden 03.07.2025 16:38:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('81fa7545-1c45-48c7-b06e-bddd72ed40e6','905368336516','SONGÜL AKKOC adlı müşterinizin 515171044 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('81fc9a87-778a-4c70-a930-b0b2950a5a74','0483639632','Sayın DUDU AKSOY, 982944278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982944278\n\nDear DUDU AKSOY, your shipment with 982944278 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982944278\n\nBICARGO','2',NULL,NULL),
('81fdb26d-31c6-4ad8-a021-7d1321cae575','33786539844','745545386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9887 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745545386\n\nYour shipment with the number 745545386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9887. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745545386\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('82046bcf-c40a-43db-8676-b2ac73e377d7','905069116877','NİSRİN GHARİB HASSAN  adlı müşterinizin 817747938 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('820513a5-b355-442e-9c6a-5711d9f8777a','905461661672','SEDA ERSÖZ adlı müşterinizin 644823609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('8206d01f-b81c-4f38-8809-32d2ce533c90','41764307026','Sayın ALMİRA, 126229931 nolu gönderiniz 1254 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126229931\n\nDear ALMİRA, your shipment with 126229931 was delivered to you with the delivery code 1254. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126229931\n\n\nBICARGO','1','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL),
('82070845-d995-4f08-80ef-2e7dd9f9ab41','32483436523','830905881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1744 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/830905881\n\nYour shipment with the number 830905881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1744. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/830905881\n\nBICARGO','1','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL),
('82078d1d-25c8-42f9-9cbd-0c107cbec171','31634031801','Sayın MUSTAFA UZUNBOY, 478618410 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478618410\n\nDear MUSTAFA UZUNBOY, your shipment with 478618410 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478618410\n\nBICARGO','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('820c69d6-f58d-4580-b9df-a7c525b50429','491722373298','Sayın DİJWAR TAŞÇEVİREN, 221485829 nolu gönderiniz 9796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221485829\n\nDear DİJWAR TAŞÇEVİREN, your shipment with 221485829 was delivered to you with the delivery code 9796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221485829\n\n\nBICARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('820e0cc5-3499-4254-8c2f-1743e61885b5','905517075149','BAHAR ORHAN adlı müşterinizin 478835180 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('8211522f-1318-453e-b731-7a38d042ed13','0033767846954','Sayın ALİ ŞİMŞEK, 248625081 nolu gönderiniz 5775 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248625081\n\nDear ALİ ŞİMŞEK, your shipment with 248625081 was delivered to you with the delivery code 5775. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248625081\n\n\nBICARGO','2','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL),
('82118682-be84-4b44-a18c-3dbe5a0618e7','33646824181','Sayın NAİMA BOURAJJOU, 22186590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22186590\n\nDear NAİMA BOURAJJOU, your shipment with 22186590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22186590\n\nBICARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('8211dd44-0ae4-4040-960b-c0d02f76ddda','491627420193','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('8214cafd-b426-472e-953a-13d95e6082e1','905301592882','MUHSİN GÜMÜŞ adlı müşterinizin 910225013 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e0c4f0d4-cef1-4622-8782-650f949049ae',NULL),
('821add8f-1a15-47fc-9653-5eecd55ed623','905461661672','Sayın yetkili; RAMAZAN AY adlı müşterinize 644542202 nolu gönderinizin Köşe koltuk ürünü 3 parça halinde Fatura adresinizden 26.04.2025 11:02:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('821f1a30-4c8c-4abc-acaa-9b2c114c9448','491715317113','Sayın BEYTULLAH AKSOY, 644826911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826911\n\nDear BEYTULLAH AKSOY, your shipment with 644826911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644826911\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('8221111b-457a-4505-8a7b-c3f14353db1e','33660910086','221254389 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1515 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221254389\n\nYour shipment with the number 221254389 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1515. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221254389\n\nBICARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('822532e4-c4cb-4611-8e17-9a057c8b2126','436609197422','9824380 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10290 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/9824380\n\nYour shipment with the number 9824380 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10290. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/9824380\n\nBICARGO','1','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL),
('8225a724-f0b1-4f12-aa2f-ddcb1bcc73c1','905349208933','RÜVEYDA ŞAHİN adlı müşterinizin 127150146 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('8225fc27-8908-4753-9e87-e28d5ec3a1b6','905331602195','Sayın yetkili; İBRAHİM MERMERCİ adlı müşterinize 221102071 nolu gönderinizin Balat sandalye koyu ceviz ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 18.06.2025 15:17:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('822f4c9c-04d4-47f3-9b4b-adaf754219c8','905350617509','Sayın yetkili; MURAT KİRİKKAYA adlı müşterinize 613529206 nolu gönderinizin Masa ürünü 3 parça halinde Bünyamin Masa adresinizden 25.03.2025 14:44:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('82300221-dc9b-46a9-81ba-5bff20fe5ff4','905461661672','Sayın yetkili; NEGİN EHSANİFARD adlı müşterinize 644206771 nolu gönderinizin MASA VE ORTA SEHPA TAKIMI ürünü 4 parça halinde Masami Mobilya adresinizden 13.03.2025 16:45:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('82300835-a851-4f3a-8a22-83e527ae417f','33613962945','734391005 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3866 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734391005\n\nYour shipment with the number 734391005 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3866. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734391005\n\nBICARGO','1',NULL,NULL),
('82345994-c1cb-45a7-a979-7950bca17db0','436605673801','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('82365c9b-379b-43b0-8614-9188ab3a3d93','905335708965','MOHAMAD NOUR TARRAB adlı müşterinizin 248739379 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL),
('8236a8aa-4078-4c95-b8b2-5e83f6dd869f','905454259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin yatak odası ürünü 21 parça halinde acca adresinizden 20.05.2025 17:01:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('8237d993-3218-4d57-8d41-034da3e17ac3','4917674917141','478285861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4827 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478285861\n\nYour shipment with the number 478285861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4827. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478285861\n\nBICARGO','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('82420ae9-0cd1-4541-b94c-72aa3f2f296e','4368120902265','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598427868\n\nBICARGO','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('82464e98-dbd5-4326-aa7b-b5a53860c8e9','905075277637','ÜMMÜGÜLSÜM KARAKUŞ adlı müşterinizin 745924426 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d78e9aef-d794-44e4-a9be-c55739db8e56',NULL),
('824dad44-c9cf-4714-807b-e51e772d16ee','33762006399','Sayın ALİ KARADUMAN, 7454878 nolu gönderiniz 2800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/7454878\n\nDear ALİ KARADUMAN, your shipment with 7454878 was delivered to you with the delivery code 2800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/7454878\n\n\nBICARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('824dfd7c-76ec-4658-acfd-cfef39f958c8','32494160305','221441605 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221441605\n\nYour shipment with the number 221441605 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221441605\n\nBICARGO','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('824ebc42-1990-4f93-a0d7-a4c7b48f278c','33651036902','Sayın LEYLA TACİMOĞLU, 319212544 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319212544\n\nDear LEYLA TACİMOĞLU, your shipment with 319212544 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319212544\n\nBICARGO','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('824ec121-8eee-42a6-94a9-36a6f9a6e2ee','4915222634759','Sayın MEHMET GÖK, 613420026 nolu gönderiniz 1857 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613420026\n\nDear MEHMET GÖK, your shipment with 613420026 was delivered to you with the delivery code 1857. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613420026\n\n\nBICARGO','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('82577a39-3305-4860-bc77-1a28cb9ed122','905331602195','İLAYDA CALINALTI adlı müşterinizin 22137977 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('8259acde-7c32-42e1-8cd4-29067488af57','905517075149','Sayın yetkili; OĞUZHAN TIĞ adlı müşterinize 478824521 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde beymi sandalye adresinizden 23.07.2025 12:51:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('825be259-03ff-41ab-8a3f-1c4f10b6ea01','4917632871716','Sayın ENDER CAN ORHAN, 371836215 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371836215\n\nDear ENDER CAN ORHAN, your shipment with 371836215 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371836215\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('825e5355-260e-49c9-a7eb-c3156d04e0f7','905078062550','FERHAD MORİD adlı müşterinizin 598188038 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('825ebcb0-8f32-4c07-acf4-d489597a6054','4917632998796','Sayın YAŞAR YALMAN SSH, 478816988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478816988\n\nDear YAŞAR YALMAN SSH, your shipment with 478816988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478816988\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('8262edfa-0115-4682-8008-6ba86b4ce14a','905078062550','Sayın yetkili; İVAN SLEMAN DİNO adlı müşterinize 598410676 nolu gönderinizin 4 SANDALYE ürünü 2 parça halinde LİN SANDALYE adresinizden 22.09.2025 12:14:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('8274cccb-b760-4858-8609-8b2047c16c18','905336367828','TÜLAY KILIÇ adlı müşterinizin 982880880 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL),
('82777e08-4095-43e0-9d8d-c81cbb2cd332','905336367828','Sayın yetkili; AYHAN AKTAŞ  adlı müşterinize 982685222 nolu gönderinizin Sandalye  ürünü 4 parça halinde Fatura adresinizden 10.01.2025 17:05:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('82782aca-adbc-4402-a176-cb4e6fb5e4c8','905331602195','Sayın yetkili; ÇİĞDEM UĞUR FRANSA adlı müşterinize 221158425 nolu gönderinizin 80x60x45 Sehpa seti ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:34:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('827a212a-eaa3-4865-bc20-24249481a262','4917661338122','Sayın ETEM FIRAT YÜKSEL(K), 644664237 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644664237\n\nDear ETEM FIRAT YÜKSEL(K), your shipment with 644664237 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644664237\n\nBICARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('827bc42e-8710-48e6-9cb6-a42b6f29a429','905079358213','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin VİRAL BAZALI KARYOLA  ürünü 6 parça halinde FAMILY adresinizden 22.08.2025 18:46:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('8281f733-cff5-4bc6-abe6-813732dbb250','905331602195','Sayın yetkili; L.DOUİRİ adlı müşterinize 221997933 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 20.05.2025 17:36:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('8284370a-7ddf-4922-91c2-bf19f590a3f1','905059175469','SERDAL ÇEPER adlı müşterinizin 42899153 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('8285f76a-2fdc-4cde-8f7f-93ea13251e6b','905461661672','Sayın yetkili; HATİCE ÇETİN(K) adlı müşterinize 644834421 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 16:58:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('82865314-b6a8-4569-8616-dd197eba9fd1','33754109043','478668622 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5389 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478668622\n\nYour shipment with the number 478668622 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5389. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478668622\n\nBICARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('8291adef-e657-41e4-8942-d89ba08cf7c8','31687509269','Sayın ABDULLAH KARACA, 221554711 nolu gönderiniz 5059 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221554711\n\nDear ABDULLAH KARACA, your shipment with 221554711 was delivered to you with the delivery code 5059. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221554711\n\n\nBICARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('829232d0-99e7-4f55-8841-0e4ca7498d0a','32489103760','Sayın MEHMET SEKBAN, 437840419 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437840419\n\nDear MEHMET SEKBAN, your shipment with 437840419 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437840419\n\nBICARGO','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('82952880-e5b2-4459-b1e0-09a5ba739631','905451571652','Sayın yetkili; CEM TOPYÜREK adlı müşterinize 53111592 nolu gönderinizin Köşe ürünü 4 parça halinde PABLO HOME adresinizden 11.08.2025 14:06:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('8296f3e1-eaec-4a74-90e4-9ca9dcd30e51','491716245168','Sayın AHMET CELEBCİ, 478650682 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478650682\n\nDear AHMET CELEBCİ, your shipment with 478650682 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478650682\n\nBICARGO','1','955fd2d1-deec-43d2-babf-7c48c40d74f0',NULL),
('829a5af5-f113-4cfd-b676-7baf3e8df01e','33628622755','221686736 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4372 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221686736\n\nYour shipment with the number 221686736 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4372. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221686736\n\nBICARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('829c060c-a01b-4605-b7ce-62c621238a11','436601407495','808396862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5004 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808396862\n\nYour shipment with the number 808396862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5004. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808396862\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('82a6ad75-6e9a-4cec-b644-db635c2c7b4c','905335511664','Sayın yetkili; ENVER HAN ALKAN adlı müşterinize 37146102 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 19.08.2025 17:16:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('82a70a04-0be3-403a-8a95-ebc10d39ce05','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin MASA VE ORTA- SEHPA-DOLAP  ürünü 12 parça halinde BİCARGO DEPO adresinizden 20.05.2025 11:59:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('82aae18f-9332-4dca-85f6-8549aa291292','33652350138','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('82ab9e32-7a8a-4e99-b471-b067f5c92b0c','31638732101','Sayın NURCAN KURNAZ, 786252388 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786252388\n\nDear NURCAN KURNAZ, your shipment with 786252388 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786252388\n\nBICARGO','1','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('82b0ee7f-3495-4a1d-9e6d-c34d4935cf14','4917656765746','Sayın ÖZLEM AKAY, 371440688 nolu gönderiniz 3207 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371440688\n\nDear ÖZLEM AKAY, your shipment with 371440688 was delivered to you with the delivery code 3207. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371440688\n\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('82b9f16a-c86f-47b1-bcea-3de335a873e8','4915568542682','Sayın OKTAY SAMET ŞAHİN, 745782616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745782616\n\nDear OKTAY SAMET ŞAHİN, your shipment with 745782616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745782616\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('82bac1b6-63d9-405c-921b-bb8199dd50bd','491621003138','745283309 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9217 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745283309\n\nYour shipment with the number 745283309 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9217. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745283309\n\nBICARGO','1','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL),
('82c393d7-dc2a-406e-8dd2-82018a4a8e5d','905517075149','MUHAMMED YUŞA YILDIRIM adlı müşterinizin 478261120 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('82c6a51a-c789-454e-a6da-eb0a413e69d9','4915752014437','428519862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7584 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428519862\n\nYour shipment with the number 428519862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7584. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428519862\n\nBICARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('82cb5b63-0f22-4fa4-b7ca-a6cc8c91e997','905331602195','Sayın yetkili; FEHMİ TÜRK adlı müşterinize 221570854 nolu gönderinizin 100x240 cm beyaz milas masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 17.06.2025 16:58:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('82cf86e7-26b1-4c3b-9589-a1254ee10689','905079047428','ENİ SYLEJMANİ adlı müşterinizin 449178440 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL),
('82d0feb1-8605-48f1-8a09-a9452f22c77e','905413792483','ÖMER SOLAK adlı müşterinizin 27829651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL),
('82dd754a-e6f4-4a40-889e-4c4ecaaba166','905456068312','ŞÜKRÜ YÜCE adlı müşterinizin 655688103 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL),
('82dd7a6a-e776-418d-89f1-f08a9804087c','4917620210271','Sayın AMANY MOUSA, 22134117 nolu gönderiniz 7968 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22134117\n\nDear AMANY MOUSA, your shipment with 22134117 was delivered to you with the delivery code 7968. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22134117\n\n\nBICARGO','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('82e1ac70-9ca8-4eb0-a70c-81369b746b06','905331602195','NURİYE ŞAHİN adlı müşterinizin 221447673 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('82e6391d-1c4f-4527-b0ce-b1ca2f7b34db','905336367828','RODRİGUES AMİNA adlı müşterinizin 982542299 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e015be65-fcb6-4e8a-8bc0-935d14b02ec6',NULL),
('82e70b76-ed2b-4cf8-bb8e-56afd5274248','905059175469','HÜSEYİN ERCAN NAMAL adlı müşterinizin 428225143 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','175392bb-7213-43c6-b3da-6b01f5de3b51',NULL),
('82eb27ba-fdcb-4dc4-808c-5d54f0beae87','33695585562','Sayın LEİLA GELES, 745266700 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745266700\n\nDear LEİLA GELES, your shipment with 745266700 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745266700\n\nBICARGO','1','28d7d2ec-ff1b-4dfc-895f-17904bc60866',NULL),
('82ebcd8d-af06-49e3-8574-cacc7d00b174','33635494107','DRİVER\n					ADNAN\n+905354622027','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('82ec8bfe-c316-4306-8b3a-c7d46627e570','33769707760','221403218 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5085 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221403218\n\nYour shipment with the number 221403218 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5085. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221403218\n\nBICARGO','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('82fddde5-d2c8-45cd-b8a3-c8a896c37474','905335458833','Sayın yetkili; AHMET YILDIRIM adlı müşterinize 334206952 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Fatura adresinizden 12.08.2025 19:15:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('82ff8727-f596-4858-b8a9-cb7c38e5dd03','32484767015','412586204 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5727 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412586204\n\nYour shipment with the number 412586204 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5727. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412586204\n\nBICARGO','1','84ead5c5-3c6f-4c94-bfaf-62c790476a67',NULL),
('8300ee01-e9a6-4ad8-8f0f-2bdb005475f8','491741928164','Sayın İLAYDA GÜNEŞ, 371528044 nolu gönderiniz 2082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371528044\n\nDear İLAYDA GÜNEŞ, your shipment with 371528044 was delivered to you with the delivery code 2082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371528044\n\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('8302889f-be4c-4a21-bbf2-81659bf2b3be','4917681295929','Sayın HELİN ÖZDİL, 896155892 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896155892\n\nDear HELİN ÖZDİL, your shipment with 896155892 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896155892\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('83122e82-0f5c-4cff-88d5-6d0c808563be','491774677358','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('83126d29-771d-4bee-80f6-b758df9216d5','905075277637','YASEMİN YAŞA adlı müşterinizin 745818939 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('8317b357-94fe-4f55-9100-2ca37fd98767','4917672328748','Sayın ŞÜKRÜ AK, 598445423 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598445423\n\nDear ŞÜKRÜ AK, your shipment with 598445423 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598445423\n\nBICARGO','1','a42a1c77-dffe-41cf-b2b2-08ccedab680b',NULL),
('83193096-32fd-4e91-bab4-da6fd9008549','905331602195','Sayın yetkili; ESMANUR ZENGİN  adlı müşterinize 221668922 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde Fatura adresinizden 10.03.2025 15:09:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab128945-3927-4eb2-ab95-c3e7b5334f18',NULL),
('8319432f-fc79-4ede-a617-f0785e1e5e79','33609376931','Sayın ELOUAZGHİ ANAİS , 745879253 nolu gönderiniz 7372 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745879253\n\nDear ELOUAZGHİ ANAİS , your shipment with 745879253 was delivered to you with the delivery code 7372. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745879253\n\n\nBICARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('8319eb4e-308a-4c8a-bd3d-036466f2653f','4915782470438','745699153 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8238 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745699153\n\nYour shipment with the number 745699153 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8238. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745699153\n\nBICARGO','1','92a101d5-f2e2-4731-8009-aa9ff0df1038',NULL),
('831bb8c3-8463-4662-97d6-117e72accc28','9053259981980','BURAK TÜRKEŞ adlı müşterinizin 614419362 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('831bd1b1-ca55-4b1a-9638-6988d2d11b07','491752309322','644717952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644717952\n\nYour shipment with the number 644717952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644717952\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('831c85f5-1d6e-4474-91bf-78e77b998e67','33650234345','Sayın NESLİHAN HANIM , 982614868 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982614868\n\nDear NESLİHAN HANIM , your shipment with 982614868 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982614868\n\nBICARGO','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('831d2f3c-3f39-4c3f-98f0-9e16d0d5f926','491729086965','ŞÖFÖR NUMARASI\n					+905467896981','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('83296d14-1521-425d-999c-981cd8e82512','31625064385','Sayın MURAT BEY, 16334418 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/16334418\n\nDear MURAT BEY, your shipment with 16334418 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/16334418\n\nBICARGO','1','83fe2028-17f9-4b82-a141-f935042a08dd',NULL),
('8329ab36-8828-4be8-9686-9634cb6166d3','436609400015','657264606 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3054 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657264606\n\nYour shipment with the number 657264606 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3054. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657264606\n\nBICARGO','1','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL),
('832b5ad6-6548-4f3a-adc1-37535b6b5e07','33768242208','Sayın HALİL İBRAHİM AKALIN , 1936694 nolu gönderiniz 2055 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/1936694\n\nDear HALİL İBRAHİM AKALIN , your shipment with 1936694 was delivered to you with the delivery code 2055. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/1936694\n\n\nBICARGO','1','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL),
('832bd756-7b5f-40c9-893c-2097ef49c935','33769135395','750486427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7557 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750486427\n\nYour shipment with the number 750486427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7557. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750486427\n\nBICARGO','1','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL),
('833345bc-b969-4a66-80e9-6a89ac72e5ed','4917624811097','Sayın OSMAN SATİCİ, 614536111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614536111\n\nDear OSMAN SATİCİ, your shipment with 614536111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614536111\n\nBICARGO','1','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('833b6377-4ab3-4e9e-b4bd-2a665f8a0d58','905079358213','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin PLATİN YATAK 180X200 ürünü 2 parça halinde Fatura adresinizden 23.06.2025 13:31:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('83466ad8-ff74-4972-a5bc-f2408d0a1dd4','905461661672','Sayın yetkili; MUSA CAN KOÇAK adlı müşterinize 644389756 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MODO KOLTUK adresinizden 11.07.2025 10:16:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('83481732-611e-4963-929a-9ee559b159de','905304259202','EMEL YILDIZ adlı müşterinizin 478644533 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','35cb8f31-e838-41db-b77a-66b99e847841',NULL),
('83482e90-3941-4b8d-bfeb-af8a19d716ab','905355928266','HÜSEYİN ÖZGÜR adlı müşterinizin 412903351 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL),
('83490bfe-c0f6-4c3f-a43f-2ed0d3dc6c20','905331602195','HAMİDİ SONİA (SSH) adlı müşterinizin 221748184 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('834bc01f-f345-48c8-ae80-c47377a94875','905079358213','Sayın yetkili; SERPİL KACIR adlı müşterinize 745141319 nolu gönderinizin İCON SANDALYE  ürünü 3 parça halinde ROIS adresinizden 27.10.2025 16:12:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','401ecd97-fb17-4288-b2ea-4445b8cdc4f1',NULL),
('835346a8-5944-49f0-8822-2be16ee921e3','905510396989','LEYLA AYDIN adlı müşterinizin 31951233 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('8355f03d-2cdf-4fbc-8523-1b5892ac1f64','4917681126034','786668251 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786668251\n\nYour shipment with the number 786668251 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786668251\n\nBICARGO','1','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('8359f699-5e27-401b-9400-e0d621718762','905335511664','LALE AKGÜL adlı müşterinizin 371533444 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('835acfb8-1387-4edd-81ad-a52e530770cc','4368120439831','43714618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43714618\n\nYour shipment with the number 43714618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43714618\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('835b4ec9-c712-4817-bdc7-7f9148d1fe55','905313340045','Sayın yetkili; DERYA ERDOĞMUŞ adlı müşterinize 437578664 nolu gönderinizin Kampanya puf ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 14.08.2025 17:42:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('835ccaf2-7952-4141-9a26-2d24d0450576','905075277637','MILANA PRODANOVIC adlı müşterinizin 745837821 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('835d1e5f-d679-4a61-b7c8-78c41a79d532','905333221039','GÜLSEN ERDİNÇ SSH adlı müşterinizin 75052392 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('835e4968-03a0-43b7-a40b-8b799c89d644','905059175469','Sayın yetkili; SALİH DURAK adlı müşterinize 428718727 nolu gönderinizin orta sehpa ürünü 2 parça halinde Fatura adresinizden 24.12.2024 13:11:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('835eab35-5648-4399-a9b3-d49fb5e25e85','4917660841394','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('83632cba-f806-464c-ac0e-4bb897b18880','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 15.10.2025 13:09:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('836b5fe5-d5f5-4c3e-80ad-5c2366b01c71','905461661672','İSA ALTUNER(K) adlı müşterinizin 644422105 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('8373ae59-b086-45d1-88f4-673f5cee3ac6','905517075149','Sayın yetkili; MURAT KALKAN adlı müşterinize 478520504 nolu gönderinizin 160X200 YATAK ürünü 1 parça halinde BİCARGO DEPO adresinizden 07.10.2025 16:38:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('8379280a-e8dd-4233-8e55-2ad915c1ce6a','905510396989','CEMAL YALÇIN SSH adlı müşterinizin 319388100 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('837a542f-ac23-4475-a28f-e2853b47c6b6','905054335859','HANEFİ ALİOĞLU adlı müşterinizin 501247386 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','088fba56-0e50-4ce7-864f-7f301956e881',NULL),
('837f80a1-7e23-4f00-8812-b0ac1704b88b','905335708965','KHALED AHMAD adlı müşterinizin 248890689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','62c72b38-75cc-4808-b1d5-7296d0000146',NULL),
('83840309-5a46-47c7-9501-9effb466f73d','905454259202','MELİH ÜNAL adlı müşterinizin 478235858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL),
('8386a853-f702-4555-8f31-0177b30bad98','905428209234','ARZU ÜNLÜ adlı müşterinizin 319829855 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('838794da-6a76-4e34-948b-4d48ede3562f','905079358213','BİRSEN BALIM adlı müşterinizin 74521183 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('838c36b8-b95f-477a-b882-79277584a1e4','491622351265','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','2','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('838da192-9196-4522-9537-c2e3f769868b','491774619575','Sayın ÖMER GEDİK, 644113252 nolu gönderiniz 3803 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644113252\n\nDear ÖMER GEDİK, your shipment with 644113252 was delivered to you with the delivery code 3803. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644113252\n\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('838eddee-ee21-4652-8e45-818386228472','905079358213','Sayın yetkili; ALİ KARADUMAN adlı müşterinize 7454878 nolu gönderinizin CASA KÖŞE KOLTUK + TEKLİ  ürünü 4 parça halinde Fatura adresinizden 10.09.2025 13:46:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('838f1936-412e-4017-8a18-437373aff0d6','32455122888','745786401 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6132 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745786401\n\nYour shipment with the number 745786401 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6132. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745786401\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('839055bb-e180-4fc0-a68a-3e1246a3c5ca','4917672315833','Sayın ALBNORA MUSTAFA , 786286562 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786286562\n\nDear ALBNORA MUSTAFA , your shipment with 786286562 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786286562\n\nBICARGO','1','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('8390f129-a7ea-4ced-85d2-584d73ba0cc2','491621366098','248853188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5884 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248853188\n\nYour shipment with the number 248853188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5884. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248853188\n\nBICARGO','1','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL),
('839141bb-478d-4d35-8065-0f5d9ad48971','905350617509','Sayın yetkili; JULJANA TARLLAMİSHAJ  adlı müşterinize 613568438 nolu gönderinizin Masa ürünü 4 parça halinde İlyas Masa adresinizden 06.10.2025 10:30:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ed87bf6-99c4-42b7-9793-fe3cc3bb6cf2',NULL),
('8392e5fe-6f56-4c74-950b-7501417d64fc','905336367828','Sayın yetkili; MAGBULE DZELİLİ adlı müşterinize 982843761 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 20.01.2025 12:42:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('8394bce2-6cd6-4587-8ba7-14927ba36ac5','33695878939','Sayın AHMET TEKİN, 501934466 nolu gönderiniz 8156 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501934466\n\nDear AHMET TEKİN, your shipment with 501934466 was delivered to you with the delivery code 8156. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501934466\n\n\nBICARGO','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('8397eac5-5135-4024-b948-cce7b9ec70e8','905355928266','SEDAT ARSLAN adlı müşterinizin 412359172 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','032b3134-3092-40b9-b2b2-be3390b4726e',NULL),
('839a214f-6f59-4eec-b444-bcefcde3626b','9053259981980','İSMET  IRMAK adlı müşterinizin 614659832 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('839a53bc-c268-4dc6-8a17-64145a74b5f7','4917631329672','Sayın AYHAN İÇEN, 745813483 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745813483\n\nDear AYHAN İÇEN, your shipment with 745813483 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745813483\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('839e5141-9bcb-4408-82ac-b1ab5353d600','491737325307','ŞÖFÖR NUMARASI\n					+905467896981','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('839e9868-5d9f-4ad4-ab41-8fd417683b57','436603846067','Sayın YILMAZ İNAÇ, 501901219 nolu gönderiniz 5816 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501901219\n\nDear YILMAZ İNAÇ, your shipment with 501901219 was delivered to you with the delivery code 5816. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501901219\n\n\nBICARGO','1',NULL,NULL),
('83a33614-8cb7-49c9-959c-70135b3fc5f0','33768384960','Sayın ATİLLA POLAT, 478502129 nolu gönderiniz 8287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478502129\n\nDear ATİLLA POLAT, your shipment with 478502129 was delivered to you with the delivery code 8287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478502129\n\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('83a75025-02b3-4a05-8f48-640a5185a240','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin Traverten Masa ürünü 1 parça halinde Fatura adresinizden 20.06.2025 19:15:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('83aa4085-b4bc-43dc-811d-1055fb476082','491711177115','598903023 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6316 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598903023\n\nYour shipment with the number 598903023 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6316. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598903023\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('83aaac90-5314-4e73-a997-0623038266d2','4917632856382','Sayın AYLİN MİYANYEDİ, 598444930 nolu gönderiniz 5474 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598444930\n\nDear AYLİN MİYANYEDİ, your shipment with 598444930 was delivered to you with the delivery code 5474. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598444930\n\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('83ab2927-2453-4629-b501-34a6c61cf929','31621494387','Sayın HAKİF ZİNAL SSH, 644391223 nolu gönderiniz 2902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644391223\n\nDear HAKİF ZİNAL SSH, your shipment with 644391223 was delivered to you with the delivery code 2902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644391223\n\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('83ac97bf-ff27-43b6-9698-b320bef4ee5d','436609250606','Sayın AKKİZ TOPCU, 515129438 nolu gönderiniz 3043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515129438\n\nDear AKKİZ TOPCU, your shipment with 515129438 was delivered to you with the delivery code 3043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515129438\n\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('83accc64-6dad-4801-8d68-c1cf4b37f5a5','33603127893','Sayın TEKİN MAZLUM, 501872546 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501872546\n\nDear TEKİN MAZLUM, your shipment with 501872546 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501872546\n\nBICARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('83bc5361-2015-46e3-8825-02f07ba4c8a3','905304259202','İBRAHİM TANKAZ adlı müşterinizin 47815812 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('83c56736-dc34-4478-8238-aaf498d8c357','905335511664','KADİR ÜZER adlı müşterinizin 371495147 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('83c69b35-1c6b-48c4-a241-972cfc88635a','905461661672','Sayın yetkili; GHAZAL TARIK İLHAN adlı müşterinize 644971564 nolu gönderinizin Sandalye ürünü 4 parça halinde ÇINAR SANDALYE adresinizden 05.03.2025 11:27:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','92ef11d7-249d-45f0-a76f-8b59e5a6399e',NULL),
('83c8eecf-4b65-4abd-839e-c5b45161a946','905454259202','ÖZGÜR BAY adlı müşterinizin 47833977 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('83d9b66c-1e2b-4325-a6fc-7378cb16f726','491636216129','Sayın ALİ AKKAN, 43725194 nolu gönderiniz 3739 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43725194\n\nDear ALİ AKKAN, your shipment with 43725194 was delivered to you with the delivery code 3739. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43725194\n\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('83dbafdc-ac48-463a-a77e-3ce4706515d6','4917636373200','Sayın AZİZE KAYA, 221946527 nolu gönderiniz 4589 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221946527\n\nDear AZİZE KAYA, your shipment with 221946527 was delivered to you with the delivery code 4589. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221946527\n\n\nBICARGO','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('83dd6ad8-7fd6-44ef-8700-2564f55dfc19','4915738317562','Sayın CİGDEM DENKER , 613391684 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613391684\n\nDear CİGDEM DENKER , your shipment with 613391684 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613391684\n\nBICARGO','2','db01aefa-720b-410d-8344-0672007b060d',NULL),
('83dd89dd-98b2-4298-b4a4-3760326f21c4','4917682057600','İLETİŞİM\n					Furkan şöför = +905078826436','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('83e9583e-5fa2-4bed-b02b-e1cdc949602e','905442774505','MUHAMMED EMİN TILMAZ adlı müşterinizin 65728268 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL),
('83eefef0-1ea1-4ae3-80fe-e4940bf96b94','33660617145','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('83f25047-9346-43ae-92fe-232fe604cb26','4915147016161','Sayın ESRA MAT(K), 644484322 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644484322\n\nDear ESRA MAT(K), your shipment with 644484322 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644484322\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('83f7a6f3-e5d7-4ff0-81d4-0d380d29e4a4','905336367828','CAROLİE KENZA  adlı müşterinizin 982212726 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('83f8d08d-52c4-4409-949c-f560f6e4d51f','4915785558827','91059017 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8118 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91059017\n\nYour shipment with the number 91059017 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8118. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91059017\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('83faade7-bcc1-4ed0-8abe-5605dfd55129','33640564045','Sayın MON NAM ALEMİ, 982799609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982799609\n\nDear MON NAM ALEMİ, your shipment with 982799609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982799609\n\nBICARGO','1','2473140a-52f5-4b86-a285-e3de923dde5c',NULL),
('83fbc086-f6b3-4e35-8e29-252f905cd189','4367761978240','613669036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5752 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613669036\n\nYour shipment with the number 613669036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5752. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613669036\n\nBICARGO','2','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('8400f6df-9cea-46d5-857f-cfbd5374e71b','905325000478','OTTOMAN adlı müşterinizin 412608739 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('84039f9c-2bb2-496b-b74b-7f17c4067b54','905461661672','KERİM ŞENTÜRK adlı müşterinizin 644966461 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('8408ca79-e474-4c90-b92d-1aca1292ac4f','905331602195','Sayın yetkili; L.DOUİRİ adlı müşterinize 221997933 nolu gönderinizin 100x200 cm siyah meşe masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 20.05.2025 17:32:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('840d8c3d-42e5-40d1-b45f-307476173e49','31614367096','Sayın İRFAN MUTLU, 614390628 nolu gönderiniz 2523 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614390628\n\nDear İRFAN MUTLU, your shipment with 614390628 was delivered to you with the delivery code 2523. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614390628\n\n\nBICARGO','1','e1bb043d-37c4-4f82-9935-600eeef13a23',NULL),
('840db7d7-02ee-4694-98c9-5ceeda45b5c0','491732807579','745353139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9124 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745353139\n\nYour shipment with the number 745353139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9124. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745353139\n\nBICARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('84115e59-678f-4313-a2cb-ffe0ec786199','905318109098','BURCU HANIM  adlı müşterinizin 455207811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL),
('8419932e-2756-412a-be20-90191ebcaecf','4917632257124','Sayın KADİR SÜLÜN, 428696149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428696149\n\nDear KADİR SÜLÜN, your shipment with 428696149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428696149\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('8419c761-8b82-4fc2-9621-9db746fd7a89','015163483379','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('84202d70-2571-49ac-af76-b35b653fce82','905301592882','SÜLEYMAN MAKAS adlı müşterinizin 910560938 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('84240eff-849f-4b3b-ba37-65bfa5d3ced4','905331602195','GODİNA REJEP  adlı müşterinizin 221157320 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('842ae763-8493-4ba6-adf1-88d3c5fd335f','905461661672','Sayın yetkili; GAMZE KOCAMAZ SSH adlı müşterinize 644537401 nolu gönderinizin Sandalye ürünü 1 parça halinde ÇINAR SANDALYE adresinizden 06.10.2025 14:43:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','abe5ef68-f84c-446c-b39b-d13674dbab80',NULL),
('842aeabe-2931-4f65-9011-a09a6685a87a','905539740010','FERHAT SANUÇ  SSH adlı müşterinizin 011131883 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('84360b6e-0dad-4bb0-a12b-34e9803a3fe8','905331602195','TEBIB MYRIAM  adlı müşterinizin 221603036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('84366fc6-377c-414c-8490-051c6341d3fd','31681790138','Sayın İBRAHİM MERMERCİ, 221102071 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221102071\n\nDear İBRAHİM MERMERCİ, your shipment with 221102071 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221102071\n\nBICARGO','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('84369e09-ba4f-43c3-a1a4-ffb8c9ee961a','491639801426','Sayın EURO MOBEL, 107394609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107394609\n\nDear EURO MOBEL, your shipment with 107394609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/107394609\n\nBICARGO','1','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL),
('8437cd22-3759-4b57-b9d9-de3de5a5daa5','5325000478','Sayın AAAA BBBBB, 23.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1758747\nŞifre : 1758747\n			\nBİCARGO','1',NULL,'17587478-e8f1-4fbe-afd1-d9025c9583a4'),
('8438308d-ce85-41da-aee4-f160f4cd6238','905331602195','Sayın yetkili; BETÜL ULUÇAY adlı müşterinize 221893262 nolu gönderinizin 100x240 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:15:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9',NULL),
('84384f3f-e2a1-4063-ae4d-fde7183727de','4915785847007','Sayın WALDEMAR HEİNZ , 613940015 nolu gönderiniz 1596 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613940015\n\nDear WALDEMAR HEİNZ , your shipment with 613940015 was delivered to you with the delivery code 1596. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613940015\n\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('8439d4df-81a1-4d78-8141-f37480e8ba6a','905301592882','Sayın yetkili; YASİN YAVAŞ adlı müşterinize 910599740 nolu gönderinizin DENİZ KOLTUK ürünü 4 parça halinde NOVANO adresinizden 10.02.2025 15:41:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('843c44a3-98c8-42e2-a682-7e785b6677bb','4917622372512','Sayın MUAMMER CANPOLAT, 371376503 nolu gönderiniz 2131 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371376503\n\nDear MUAMMER CANPOLAT, your shipment with 371376503 was delivered to you with the delivery code 2131. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371376503\n\n\nBICARGO','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('843e9321-cebd-4099-8faa-767d7cfa3e11','905313340045','Sayın yetkili; ALPER ÖZDEMİR adlı müşterinize 437414847 nolu gönderinizin baza başlık ürünü 3 parça halinde Albessa adresinizden 29.05.2025 15:44:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('8445afc0-8ad2-4b48-9142-5ef29908209a','5325000478','Sayın YILDIZ  ORHAN, 07.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1410613\nŞifre : 1410613\n			\nBİCARGO','1',NULL,'1ec41061-3001-4522-bd70-1daeeb3cba8f'),
('84477c59-201b-413f-a302-206bf6d591ca','905313340045','FAZİLET ÖZÇELİK adlı müşterinizin 437232562 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('84499ddb-ba85-4c6f-b542-ae922e1debaa','4917643489874','910972908 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910972908\n\nYour shipment with the number 910972908 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910972908\n\nBICARGO','1','b67a7550-5843-4b01-a562-83d265c4d1bd',NULL),
('844b18ba-a1b2-404b-bd25-d68321ab1982','491708511252','Sayın MELİKE BAYINDIR, 371398805 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371398805\n\nDear MELİKE BAYINDIR, your shipment with 371398805 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371398805\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('8451fae2-af02-409e-8e57-ce28f688ee59','905079047428','YUSUF IŞIK adlı müşterinizin 449582137 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('8453c884-4469-47a4-942a-80fe63de1540','436603215138','Sayın ÖZLEM TÜRKMEN, 745853192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745853192\n\nDear ÖZLEM TÜRKMEN, your shipment with 745853192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745853192\n\nBICARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('84555157-3a0d-41b5-9f49-1bb8f156c8a0','905510396989','Sayın yetkili; YUSUF NAVRUZ  adlı müşterinize 319141495 nolu gönderinizin Konsol tv alt ürünü 3 parça halinde KUKA HOME adresinizden 26.03.2025 18:09:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('845a4d1c-f877-4148-a259-531c634716f2','905079358213','Sayın yetkili; DURMUŞ YÜKSEKTEPE adlı müşterinize 745935889 nolu gönderinizin KOMODİN  ürünü 2 parça halinde Fatura adresinizden 27.02.2025 14:44:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3feebec9-f45b-4b23-9292-7a6a93bc7d05',NULL),
('84680185-3617-495f-8c09-45f98565cb5d','905079358213','KADİR DALKILIÇ adlı müşterinizin 745881843 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL),
('84680bc5-71f0-47a8-a3aa-d5d078ebb276','491773384706','Sayın YASEMİN YILDIZ, 745968655 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745968655\n\nDear YASEMİN YILDIZ, your shipment with 745968655 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745968655\n\nBICARGO','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('846c1d4a-7391-43c9-b741-1ef576f76fdb','905079047428','Sayın yetkili; NURGÜL YILMAZ adlı müşterinize 449393754 nolu gönderinizin Tv ünitesi  ürünü 1 parça halinde Fatura adresinizden 19.12.2024 13:46:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('846c5936-1ca0-4979-af64-53c84a426cb9','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin 3+3+1+1 koltuk ürünü 4 parça halinde dgn adresinizden 27.12.2024 14:42:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('846d05b0-9825-4985-bd0e-7e40eec1d4de','905331602195','FURKAN KAYABAŞ adlı müşterinizin 221631052 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('84787aa4-03cd-475e-8bba-d67f466925cd','436702040780','Sayın RECEP DUYGULU, 675139037 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675139037\n\nDear RECEP DUYGULU, your shipment with 675139037 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675139037\n\nBICARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('847963d1-11d2-47be-bf27-fea7808d7b7f','4917681321777','Sayın ISMAİL REMMO, 613813844 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613813844\n\nDear ISMAİL REMMO, your shipment with 613813844 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613813844\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('847db170-2baa-4029-9338-da8d9050d526','491717089315','Sayın FERHAT KARACA, 504780984 nolu gönderiniz 5202 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/504780984\n\nDear FERHAT KARACA, your shipment with 504780984 was delivered to you with the delivery code 5202. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/504780984\n\n\nBICARGO','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('847dd34f-1f67-44da-b141-bf8e9ce492ac','1111222222222222','223896175 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2564 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223896175\n\nYour shipment with the number 223896175 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2564. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223896175\n\nBICARGO','2','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL),
('8484f453-bedc-4bb9-90f6-2ddf14de4a82','41762077419','Sayın GÜL-MURAT AVCU, 478449021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478449021\n\nDear GÜL-MURAT AVCU, your shipment with 478449021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478449021\n\nBICARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('84856835-111e-4b46-8ed4-1c3f1a3d3f09','1628102357','910352489 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910352489\n\nYour shipment with the number 910352489 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910352489\n\nBICARGO','2','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL),
('84895a1d-013f-431f-ad1d-c2ecd0205e3c','337713211538','Sayın ÖZLEM RAMADAN, 478150977 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478150977\n\nDear ÖZLEM RAMADAN, your shipment with 478150977 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478150977\n\nBICARGO','2','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('8491e20e-3ef7-4eaf-b63f-3d8e96e17fe1','4369910288849','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('8492c9a8-b3bd-43a9-8860-ccba591ac494','3464537473687444','Sayın MAİL BOXES, 223254418 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223254418\n\nDear MAİL BOXES, your shipment with 223254418 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223254418\n\nBICARGO','2','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL),
('84939159-7304-4077-b83b-204ae8b90530','905325000478',' adlı müşterinizin 412903480 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e221f07b-ec1d-448a-801d-7d5296e3b735',NULL),
('8496b3da-0915-42e9-ae39-521fa3d08b63','491623245493','644153988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2058 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644153988\n\nYour shipment with the number 644153988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2058. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644153988\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('84983df5-9c9f-4d2e-9628-404159fe3475','32497224149','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('849c3cf7-812e-4712-8037-61ecfdb4892d','905304259202','KENAN KARAKAYA adlı müşterinizin 478805224 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL),
('849e81fe-5435-43da-9b07-503abda86ae7','905421855834','NAGİHAN ALKIRAN adlı müşterinizin 338829299 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('849ef579-0c34-4325-a3d1-85709b15f59b','4917630122956','Sayın RANA PEKER CİNGÖZ, 735159660 nolu gönderiniz 8290 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735159660\n\nDear RANA PEKER CİNGÖZ, your shipment with 735159660 was delivered to you with the delivery code 8290. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735159660\n\n\nBICARGO','1','406ebbb4-13b5-4567-9950-1d118159195d',NULL),
('84a2f4ad-b17b-40f0-be79-ef561ed1b7e7','0000000000','Sayın BAHADIR BAHADIR, 14.06.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5202271\nŞifre : 5202271\n			\nBİCARGO','2',NULL,'52c02271-6eae-4be1-a572-d97f124d470a'),
('84a92618-0994-46c4-ad26-f049e8fedea2','905304259202','BELKIS DUMAN adlı müşterinizin 478662278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('84aed1bd-2c57-4b3d-a17f-b779be6ab7d9','4917631090224','İLETİŞİM\n					Furkan şöför = +905078826436','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('84afc2c9-dea0-43a3-b94b-e04b972862b3','4915737096619','Sayın ŞAZİYE KARABACAK, 50133684 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/50133684\n\nDear ŞAZİYE KARABACAK, your shipment with 50133684 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/50133684\n\nBICARGO','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('84b0e0e5-d2e9-415e-9be4-6b7740151c62','905078062550','CAN ÖZKAN adlı müşterinizin 598262809 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('84b90bef-b908-4f2f-bb38-27aefcc4b918','4915229249274','Sayın BİRGÜL ÖRNEK, 268188607 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268188607\n\nDear BİRGÜL ÖRNEK, your shipment with 268188607 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268188607\n\nBICARGO','1','2630e226-f8e4-4780-bd53-00a42db1e018',NULL),
('84b9b5a7-ddb5-439d-8e72-357db24b11af','905454259202','Sayın yetkili; YAREN ÇAKALLI adlı müşterinize 47855592 nolu gönderinizin köşe koltuk ürünü 4 parça halinde onca koltuk adresinizden 14.03.2025 16:30:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('84bc53cc-e110-4512-a8f4-0e6381694f97','','AAAAA adlı müşterinizin 100655378 nolu gönderisi 28 parça halinde yola çıkmıştır.','2','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL),
('84bf90db-3f82-437c-9c4b-12ed14b2a9c9','4915772539240','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('84c13eac-d0bd-498e-b4f2-0d44cb9ffe25','4917642201800','Sayın TUNAY KOCATÜRK, 644196383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644196383\n\nDear TUNAY KOCATÜRK, your shipment with 644196383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644196383\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('84c3c81f-1e52-40e6-a613-aabd61788002','905349208933',' İSMET CEYLAN adlı müşterinizin 127241743 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('84cf734d-56db-461a-a11e-9fef0301eaf3','905461661672','Sayın yetkili; ESRA BALTACI adlı müşterinize 644711459 nolu gönderinizin HALI ürünü 2 parça halinde Fatura adresinizden 02.07.2025 16:34:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('84d5394f-0f2d-47e9-b164-094676bede0e','4917663287928','Sayın DÖNDÜ YÖRÜK SSH, 644458216 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644458216\n\nDear DÖNDÜ YÖRÜK SSH, your shipment with 644458216 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644458216\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('84db33ed-9a1e-4c11-abb9-908dd837a5f1','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('84dd5b06-6aab-48c7-82c8-3cf371853311','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin ayna ürünü 1 parça halinde aynacı adresinizden 17.04.2025 15:49:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('84df2185-f3e3-4ab3-abe8-a813122727b1','316633137745','Sayın İLYAS ÖZBEK , 278583277 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278583277\n\nDear İLYAS ÖZBEK , your shipment with 278583277 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/278583277\n\nBICARGO','2','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('84e1549d-0a25-4e36-97d5-530829807719','4915770347137','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('84e2035f-7f0a-4ff2-8586-8dcf6f4dca04','41793422327','Sayın SÜLEYMAN SUNGUR, 371365041 nolu gönderiniz 2096 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371365041\n\nDear SÜLEYMAN SUNGUR, your shipment with 371365041 was delivered to you with the delivery code 2096. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371365041\n\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('84e53da6-d628-4b31-ac85-e64d82dbbfcd','905394878216','ABBAS GELERİ adlı müşterinizin 517914097 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL),
('84e9be66-c595-4f94-9f16-2412ed4437e8','905335708965','CANSU EVCİ adlı müşterinizin 735318305 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL),
('84ed3027-e52d-4e59-878e-eb1b5e8f8fda','905300961610','MEHMET KELEK adlı müşterinizin 126371651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL),
('84f19eec-453f-4d99-a6a9-c9528cb0f2eb','004917672312771','735318305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735318305\n\nYour shipment with the number 735318305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735318305\n\nBICARGO','2','8f4e86b2-0ef1-4837-b7be-63270a8f0af2',NULL),
('84f4942a-e928-4671-9321-73d42f007919','05539740010','Sayın yetkili; HÜLYA ŞENEL  adlı müşterinize 011195834 nolu gönderinizin MASA TV ÜNİTE KOMİDİN  ürünü 4 parça halinde mobilyalar  adresinizden 27.08.2025 14:09:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('84fa4c16-26cc-4464-86f9-e6b6dcedde96','905331602195','Sayın yetkili; MERYEM BERK  adlı müşterinize 221583384 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde Fatura adresinizden 13.01.2025 12:14:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('85084852-52d8-4bcf-b429-c4685fce4bb2','905304259202','ALEV DOĞRU adlı müşterinizin 478697529 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('8508a61a-2c1b-4ada-a400-73d89a776531','905349208933','ARİFE SARI adlı müşterinizin 127865742 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('850d80f8-ec50-4043-bc21-dab5e0f943a8','905461661672','Sayın yetkili; NEGİN EHSANİFARD adlı müşterinize 644206771 nolu gönderinizin SANDALYE ürünü 4 parça halinde BALİ SANDALYE adresinizden 13.03.2025 13:35:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af3c24bb-f60e-414f-9ee5-8ecc68adbfff',NULL),
('8515c8c6-f52f-4350-b660-202f60b73250','905534084469','Sayın yetkili; BURCU ŞİMŞEK adlı müşterinize 12752907 nolu gönderinizin EFES KÖŞE TAKIMI ürünü 4 parça halinde KATRE KOLTUK adresinizden 22.01.2025 14:22:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('8516d910-2839-4007-b624-fb9db1b5ea8b','905315980893','ERKAN ÇELİK  adlı müşterinizin 911398945 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','36c2bf88-d916-406a-9c75-5831ceac476b',NULL),
('851ae629-984b-4bfb-bd6d-72a9bf7965a6','5325000478','Sayın MEHMET KARAMAN, 07.08.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6893822\nŞifre : 6893822\n			\nBİCARGO','1',NULL,'68938225-8232-4d60-ad2a-917bacc4ae21'),
('8523cbdf-dd24-4ba8-8262-ba2bcc1488bc','905517075149','Sayın yetkili; FATMA ALBAYRAK adlı müşterinize 478935366 nolu gönderinizin köşe takımı ürünü 3 parça halinde BİCARGO DEPO adresinizden 23.07.2025 14:09:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('8525c900-8c43-4768-afa1-d23b22740719','905517075149','Sayın yetkili; HAKAN AKDEMİR adlı müşterinize 478110382 nolu gönderinizin TOKYO YATAK ODASI ürünü 18 parça halinde AREA adresinizden 18.08.2025 12:09:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('852c5a13-cf7d-482d-bc19-eee65f6867ab','31640905029','Sayın CYNTHİA GARLEE, 644126759 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644126759\n\nDear CYNTHİA GARLEE, your shipment with 644126759 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644126759\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('852d910b-72c8-48e7-9982-2f8fe79bd0ea','905079047428','SERHAT KARATAŞ  adlı müşterinizin 449197003 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2c4fddf4-35c6-4e66-a529-d3bcad5bb71b',NULL),
('852f310a-a5a6-4491-a1b7-5bc3dba12461','33769005262','Sayın ERDEL SİBEL SSH, 644426448 nolu gönderiniz 7232 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644426448\n\nDear ERDEL SİBEL SSH, your shipment with 644426448 was delivered to you with the delivery code 7232. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644426448\n\n\nBICARGO','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('8531854b-3ff5-4d85-bb2a-a8967fbe7e72','32493360527','Sayın MEHDİ NAEİMİ, 319275080 nolu gönderiniz 3727 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319275080\n\nDear MEHDİ NAEİMİ, your shipment with 319275080 was delivered to you with the delivery code 3727. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319275080\n\n\nBICARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('85362bf4-080f-4551-8217-dc5c87ba48a5','491638482506','644820551 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9966 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644820551\n\nYour shipment with the number 644820551 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9966. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644820551\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('85365190-57a0-4fb4-8115-f1860fd14632','436705563218','Sayın EDOLİNA AJETİ REXHEPİ, 478749881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478749881\n\nDear EDOLİNA AJETİ REXHEPİ, your shipment with 478749881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478749881\n\nBICARGO','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('85380a25-7a1a-4033-9879-5640e53719c8','31627024701','Sayın BERKANT CEYLAN , 657784193 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657784193\n\nDear BERKANT CEYLAN , your shipment with 657784193 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657784193\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('853c411f-a4a3-4c43-9e59-e0edcf3893eb','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin sandalye ürünü 6 parça halinde MFOUR SANDALYE adresinizden 16.09.2025 17:23:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('853e133b-0ba5-4ecd-809f-61bf714d45dc','4917641556413','Sayın SAAİD HUSSEİN, 501760708 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501760708\n\nDear SAAİD HUSSEİN, your shipment with 501760708 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501760708\n\nBICARGO','1','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL),
('853fba07-004c-413e-916f-65971bd4704f','905413792483','FERHAT CAN adlı müşterinizin 278498481 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('85409bf5-44c9-4399-938b-e73f20ec346e','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin LUJO GENÇ ODASI ürünü 13 parça halinde Fatura adresinizden 13.03.2025 15:40:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('85429aed-f44e-4913-83ba-02c677b80719','905070491996','SİAART MERMER adlı müşterinizin 663743560 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('8547cfed-b63c-4675-b16c-3ec54592d043','436608524565','221322415 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221322415\n\nYour shipment with the number 221322415 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221322415\n\nBICARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('854a0038-b0ef-4822-8d3d-d8e29420ab31','491639801426','107869996 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1706 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/107869996\n\nYour shipment with the number 107869996 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1706. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/107869996\n\nBICARGO','1','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL),
('854ab8a9-e1f3-44b7-9310-699cf348e154','491728743891','İletişim \n					Şöför Uğur Acar +905424435917','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('8557b7db-4233-4776-965b-775bb9cdc79a','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin Bazalı karyola ve puf ürünü 1 parça halinde mobilistan adresinizden 14.08.2025 11:28:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('85580ee2-4a3d-493b-adea-4989a534b21a','905461661672','HAKİF ZİNAL adlı müşterinizin 644330933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('8562cc01-2a3e-43a5-b253-497acc11cebb','905335511664','TAYLAN KAZAL adlı müşterinizin 371179895 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('8563a1d2-ae3a-4272-bc6f-2f6f038423f9','905335708965','İBRAHİM BEY adlı müşterinizin 248902824 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL),
('8564f5b2-4ac3-4bff-928b-464eff5700c4','4915226123899','371876767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3607 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371876767\n\nYour shipment with the number 371876767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3607. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371876767\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('8564fe8e-0dc0-4de7-80fd-43e38814878b','905350617509','Sayın yetkili; WASİ BAHİR  adlı müşterinize 613373885 nolu gönderinizin Karyola ürünü 6 parça halinde Albessa adresinizden 17.07.2025 12:28:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('856ad228-2c87-42cb-8ab4-bca54d255137','31624464120','428173598 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7076 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428173598\n\nYour shipment with the number 428173598 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7076. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428173598\n\nBICARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('8570ba84-119b-434e-9806-03c0e74fcb55','4915772159477','Sayın DUYGU DEMİRHAN, 644703173 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644703173\n\nDear DUYGU DEMİRHAN, your shipment with 644703173 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644703173\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('857308ef-7bf2-42e9-81be-c5e0445bff20','905454259202','Sayın yetkili; FERDİ KURT adlı müşterinize 478996959 nolu gönderinizin 180x200 bazalı karyola ürünü 5 parça halinde şahinler ahşap adresinizden 12.05.2025 15:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('8578ff5a-343c-48cb-9509-5ff9b9e50330','905331602195','Sayın yetkili; HATİCE GÜRBAY adlı müşterinize 22140129 nolu gönderinizin BALAT SANDALYE ürünü 6 parça halinde Fatura adresinizden 02.01.2025 11:43:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('8579b20d-964a-42a7-b28a-00429193b4dd','31687509269','221554711 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5059 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221554711\n\nYour shipment with the number 221554711 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5059. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221554711\n\nBICARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('857b0fc4-fa62-41b7-bbe5-e5d9438c9264','491622496871','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('857c0797-045f-4864-8c8c-cbcff04acf9d','905075277637','Sayın yetkili; OKAN CORAMAN adlı müşterinize 745980941 nolu gönderinizin ÖZEL ÜRETİM MASA  ürünü 3 parça halinde GÜMÜŞ MASA adresinizden 24.09.2025 17:35:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('857db8d3-950a-4bd8-a43d-3496791de309','905075277637','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin ORTA SEHPA  ürünü 2 parça halinde GÜMÜŞ MASA adresinizden 28.07.2025 17:02:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('857fcbfd-1bdb-42dd-bd87-76208aba347c','4917611633498','Sayın İBRAHİM YEŞİLKAYA, 598211009 nolu gönderiniz 1693 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598211009\n\nDear İBRAHİM YEŞİLKAYA, your shipment with 598211009 was delivered to you with the delivery code 1693. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598211009\n\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('858129c4-53b6-4e1e-8be9-990c689b64c8','905079358213','Sayın yetkili; SERHAT ÇAÇAN adlı müşterinize 745303876 nolu gönderinizin RAMS MASA SANDALYE  ürünü 5 parça halinde Fatura adresinizden 03.02.2025 20:55:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('85816282-558d-4139-8320-3fd22d999f2b','905079047428','ZAHRA REZAEİ adlı müşterinizin 449768376 nolu gönderisi 5 parça halinde yola çıkmıştır.','1',NULL,NULL),
('8583171e-6a46-4190-982b-1eb75f8d9206','491639578000','HALİME ÜNSAL adlı müşterinizin 429340012 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL),
('85842ea9-2475-4f05-b2d0-91bee3e1aca4','31611699188','Sayın ALPEREN BAYRAM, 65722585 nolu gönderiniz 6298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65722585\n\nDear ALPEREN BAYRAM, your shipment with 65722585 was delivered to you with the delivery code 6298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65722585\n\n\nBICARGO','1','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL),
('858488d2-85b8-4995-9138-272e626d1676','491735389289','Sayın YASEMİN MUTLU, 598131456 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598131456\n\nDear YASEMİN MUTLU, your shipment with 598131456 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598131456\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('8584c688-e70d-414e-aa2c-479bf204bac8','4917656765746','371440688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3207 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371440688\n\nYour shipment with the number 371440688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3207. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371440688\n\nBICARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('85917d8c-fe05-44a2-8384-a309f84bec78','905461661672','Sayın yetkili; MİHRİBAN ÖZEN adlı müşterinize 644776565 nolu gönderinizin SANDALYE ürünü 8 parça halinde DURMUŞLAR SANDALYE adresinizden 23.05.2025 18:19:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('85932793-6f19-45c5-9a08-82aa34ad8614','905011170016','HÜLYA LAÇİNOK adlı müşterinizin 380497843 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','59dde410-951f-46d0-a70c-9d7bad1aa73f',NULL),
('85975f06-ca84-4d07-a0b5-f80773edd618','905454259202','Sayın yetkili; AYŞE BAĞCI adlı müşterinize 478365640 nolu gönderinizin 2 ADETSET VE 2 ADET KOMİDİN ürünü 10 parça halinde çelikbey inegöl depo adresinizden 22.01.2025 11:39:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('859f252d-e7f5-4b83-bf7b-d7be47b6cdac','','319324843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3970 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319324843\n\nYour shipment with the number 319324843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3970. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319324843\n\nBICARGO','2','37f59dff-6352-4082-a18f-d2696e483eff',NULL),
('85a07523-0392-4655-a4da-7691614aebf8','4917684455895','Sayın OKTAY TAN, 319533001 nolu gönderiniz 2864 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319533001\n\nDear OKTAY TAN, your shipment with 319533001 was delivered to you with the delivery code 2864. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319533001\n\n\nBICARGO','1','aeac836e-0479-4329-a118-27c77a0ff22d',NULL),
('85a0c441-2662-4e2a-ae1d-f83450e8f4d1','491773713548','465782662 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9423 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465782662\n\nYour shipment with the number 465782662 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9423. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/465782662\n\nBICARGO','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('85a58d6e-04b4-4e64-bec9-ecf50e9fc703','41786601705','Sayın Ruta andom, 449279198 nolu gönderiniz 2270 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449279198\n\nDear Ruta andom, your shipment with 449279198 was delivered to you with the delivery code 2270. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449279198\n\n\nBICARGO','1','cf0a7126-8c37-496d-8b00-8c055624489a',NULL),
('85a913af-f910-464b-81e1-06a55be50448','436763232174','Sayın MERAL KELES, 675890872 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675890872\n\nDear MERAL KELES, your shipment with 675890872 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675890872\n\nBICARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('85af91ab-7c64-49c7-9b95-597fa1876f61','905301592882','Sayın yetkili; ZELİHA AKCAN adlı müşterinize 910291071 nolu gönderinizin BERJER+ SEHPALAR ürünü 3 parça halinde Fatura adresinizden 05.02.2025 14:23:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('85b0d0f9-a456-4948-a30a-1fccfd05266c','4917630158799','371681337 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371681337\n\nYour shipment with the number 371681337 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371681337\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('85b212f9-4c75-43c9-a402-3911d92cd1c3','4915757275469','437835103 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437835103\n\nYour shipment with the number 437835103 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437835103\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('85b6f556-12d0-4aaa-9de6-27d944385311','33788688334','Sayın İBRAHİM YILDIRIM, 745405587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745405587\n\nDear İBRAHİM YILDIRIM, your shipment with 745405587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745405587\n\nBICARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('85b96161-3c6d-4478-a0a5-ba50190a02dc','905078062550','Sayın yetkili; MERT ÇİÇEK adlı müşterinize 598954734 nolu gönderinizin 6 SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 14.08.2025 15:07:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('85bd10cf-b215-42bc-9cff-22f20c67743c','491787575752','Sayın MEHMET ALİ ŞAHİN, 478616973 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478616973\n\nDear MEHMET ALİ ŞAHİN, your shipment with 478616973 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478616973\n\nBICARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('85bdfc76-af33-4a3c-a983-b2018a7dd494','4917631419046','Sayın NADİR KURUKOL, 428131786 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428131786\n\nDear NADİR KURUKOL, your shipment with 428131786 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428131786\n\nBICARGO','1','36207ae6-947b-4a63-b98b-478d30a194b6',NULL),
('85c34c14-66b5-4ae7-a530-d5d32864afce','905059175469','MUSTAFA MÜEZZİNOĞLU  adlı müşterinizin 428538007 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL),
('85c92544-4327-415b-a85e-5b8c98716745','905079358213','AHMET KURT adlı müşterinizin 745286096 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL),
('85c9915d-d4bd-4c39-a108-974fff3df06f','1122323232323232','Sayın TAŞLAR, 248475044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248475044\n\nDear TAŞLAR, your shipment with 248475044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248475044\n\nBICARGO','2','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL),
('85cc46ae-9a82-4430-82e5-4b888f6b860d','905335511664','Sayın yetkili; GİZEM TIRPAN adlı müşterinize 37140435 nolu gönderinizin KERAMİK MASA + SEHPA ürünü 4 parça halinde Seramik Masa Üreticisi adresinizden 30.06.2025 13:42:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('85ccd0f2-a7ff-4e0d-8f03-6ecf3bd9f356','905301592882','Sayın yetkili; ÖZLEM ŞEKERCİ		 adlı müşterinize 910884465 nolu gönderinizin DENİZ KOLTUK ürünü 2 parça halinde Fatura adresinizden 25.03.2025 11:33:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('85cdc5a3-9745-476a-a0c5-c1408c2ccca5','905336367828','Sayın yetkili; MEHMET SÜZEN  adlı müşterinize 98238273 nolu gönderinizin Koltuk takımı masa ayağı sehpa ürünü 4 parça halinde Comfortlife  adresinizden 18.01.2025 12:37:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('85ce720d-9a66-4fb3-9451-b3604f3afd5a','4917657742944','371801847 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371801847\n\nYour shipment with the number 371801847 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371801847\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('85cf6ac1-0f75-4a5b-b4c0-d3381aa99edb','4917620431964','Sayın SELCAN ALTINSOY, 910479941 nolu gönderiniz 1857 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910479941\n\nDear SELCAN ALTINSOY, your shipment with 910479941 was delivered to you with the delivery code 1857. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910479941\n\n\nBICARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('85d03bae-412d-4484-a5b2-1c8f96e6827b','905517075149','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin BOHEM KONSOL ürünü 3 parça halinde acca adresinizden 22.07.2025 16:17:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('85d240dc-1671-480f-9d5a-f9f12dc4013f','905454259202','PELŞİN YILDIZ adlı müşterinizin 478245028 nolu gönderisi 51 parça halinde yola çıkmıştır.','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('85d857be-1ef8-4cf9-bb5a-2f1ce85d6754','4917630158799','Sayın MUHAMMED TOPAL, 371681337 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371681337\n\nDear MUHAMMED TOPAL, your shipment with 371681337 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371681337\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('85d8c086-ddde-4cee-bffa-0f56fcab57ee','491774279097','Sayın AYKUT KAYA, 371660448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371660448\n\nDear AYKUT KAYA, your shipment with 371660448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371660448\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('85db3a61-91c9-4db9-a1a7-a555b99d85f9','33769844475','Sayın AHMED HAMEL , 221413192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221413192\n\nDear AHMED HAMEL , your shipment with 221413192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221413192\n\nBICARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('85dc0a46-545f-4ef2-afa3-25f8fceb4436','491748731890','675253974 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7194 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675253974\n\nYour shipment with the number 675253974 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7194. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675253974\n\nBICARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('85e29d12-60e6-4b61-a5fa-0918648a6ef6','905335708965','HOLLANDA adlı müşterinizin 248602682 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL),
('85e421e4-f6cb-4f56-81c9-e81c21e7bc73','905523438971','BESTENUR ÖZKAYA SSH adlı müşterinizin 896998229 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('85e4c35f-1a79-4486-a32d-9216c8b085ee','436604393878','Sayın MEDİNE POLAT, 817488957 nolu gönderiniz 3179 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817488957\n\nDear MEDİNE POLAT, your shipment with 817488957 was delivered to you with the delivery code 3179. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817488957\n\n\nBICARGO','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('85e79ce8-4e2c-49f4-a38b-8a212a8d8bd8','905451571652','Sayın yetkili; MALİHA CETİN adlı müşterinize 531309772 nolu gönderinizin Sandalye ürünü 3 parça halinde MASAMİ adresinizden 22.09.2025 18:02:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('85eb656f-3841-4ee2-9249-b8b99d5756da','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('85ebe49d-c1b3-40a4-9bab-af307d3baaea','33605875913','Sayın HALİT SEVER, 750363306 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750363306\n\nDear HALİT SEVER, your shipment with 750363306 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750363306\n\nBICARGO','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('85ed0b10-8954-4718-a9da-c73b96f7a476','905313340045','Sayın yetkili; MERVE KARADAVUT adlı müşterinize 437233015 nolu gönderinizin köşe  ürünü 6 parça halinde bestline koltuk adresinizden 30.04.2025 17:54:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('86026c05-0c03-4a86-9b79-f0d682e1169f','905335511664','METE AKGÜL adlı müşterinizin 371857345 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('86066458-df94-4e6a-8e4a-ff84cd92d051','1111111111111111','Sayın MUHAMMED KOKEN, 412555066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412555066\n\nDear MUHAMMED KOKEN, your shipment with 412555066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412555066\n\nBICARGO','2','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL),
('8607142b-9a86-4c7e-a2c8-e5ac5d1dce6e','234242762767242','Sayın DİE FABRİK, 223823107 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223823107\n\nDear DİE FABRİK, your shipment with 223823107 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223823107\n\nBICARGO','2','12f34352-3245-4b1c-af57-1762c30010cd',NULL),
('8609d1fa-faca-43c1-b192-107184c7eb4b','4917620811001','Sayın İVAN SLEMAN DİNO, 598410676 nolu gönderiniz 4889 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598410676\n\nDear İVAN SLEMAN DİNO, your shipment with 598410676 was delivered to you with the delivery code 4889. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598410676\n\n\nBICARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('860ae862-1557-4d62-b59f-9a7b5d1bce4c','33762279977','Sayın ÖMER METZ, 412647671 nolu gönderiniz 6660 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412647671\n\nDear ÖMER METZ, your shipment with 412647671 was delivered to you with the delivery code 6660. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412647671\n\n\nBICARGO','1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL),
('860e1a4f-81a9-4636-988b-29e78fc5f6f8','33767941492','221970338 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3171 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221970338\n\nYour shipment with the number 221970338 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3171. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221970338\n\nBICARGO','1','6ea42d00-b759-44f3-889c-15eaf3bf614e',NULL),
('8610e53b-8aef-463d-a95a-4bbc520719ff','905350617509','KUTAY KENAN TOMUR adlı müşterinizin 613976667 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('8611b4e2-10ef-4615-b908-8b8032848929','31625064385','412716766 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9222 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412716766\n\nYour shipment with the number 412716766 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9222. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412716766\n\nBICARGO','1','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL),
('8614dac9-90f9-4539-b510-d4b0070171e7','4917673582903','Sayın BETÜL ÇELİK SSH, 644298325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298325\n\nDear BETÜL ÇELİK SSH, your shipment with 644298325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644298325\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('86175883-96be-4231-9a88-65d0ca590194','4917624188930','Sayın GİZEM KARAVİL, 786820149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786820149\n\nDear GİZEM KARAVİL, your shipment with 786820149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786820149\n\nBICARGO','1','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('861fb13d-0e6f-475a-a158-b71cfc60b0ef','4915757299057','Sayın ZELİHA ÖZCAN, 598492066 nolu gönderiniz 2548 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598492066\n\nDear ZELİHA ÖZCAN, your shipment with 598492066 was delivered to you with the delivery code 2548. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598492066\n\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('86213f84-886d-4930-9602-2d199e8e4313','4917634403928','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('8623237a-d886-42f9-a848-da4f71363a5d','32494889531','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('8623b058-d6a2-4242-b5dc-005661375e47','905075277637','VOLKAN ARAZ adlı müşterinizin 745553590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6220c77f-761e-462c-a359-ad8d9ba79902',NULL),
('8627bb6e-b246-497e-a328-c169f25f5dac','905377176639','MUSTAFA KIVRAK adlı müşterinizin 118176933 nolu gönderisi 45 parça halinde yola çıkmıştır.','1','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL),
('862d1c51-bbe7-48b0-8ea5-fe12035d935a','491784897423','Sayın BESTENUR ÖZKAYA SSH, 896998229 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896998229\n\nDear BESTENUR ÖZKAYA SSH, your shipment with 896998229 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896998229\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('862d8cb6-ca88-4e8f-b255-403c4a1e9f3e','4917646701488','808922349 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7485 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808922349\n\nYour shipment with the number 808922349 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7485. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808922349\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('862de64d-7f1a-43ea-b7dd-4ad53d20f12c','491723845058','Sayın NASTENA IROBE-POŞETLER, 248539327 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248539327\n\nDear NASTENA IROBE-POŞETLER, your shipment with 248539327 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248539327\n\nBICARGO','1','3753ec0d-793c-43d2-920b-d39827ee0154',NULL),
('862e5c49-b24f-4558-bc5a-ab0881d07939','905078062550','Sayın yetkili; UĞUR KOŞAR adlı müşterinize 59884902 nolu gönderinizin 2 ADET KANEPE ürünü 6 parça halinde MERTSOY KOLTUK adresinizden 01.10.2025 12:26:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3a225f2-c8cb-4a31-8e3c-625ef81a5f5a',NULL),
('862f718d-b2a9-4c00-915a-c6169c86a4a7','4917621490516','Sayın İMDAT KILIÇASLAN, 428480095 nolu gönderiniz 2300 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428480095\n\nDear İMDAT KILIÇASLAN, your shipment with 428480095 was delivered to you with the delivery code 2300. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428480095\n\n\nBICARGO','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('86325192-857f-492d-9a12-6827eee1d3d8','905325000478','HARUN adlı müşterinizin 412302460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f7ef839c-2795-4f15-80a8-414937600965',NULL),
('8632d6ba-f3fb-4794-a7c2-8392ce18b82d','491792099913','Sayın GÖKKUS PİNAR, 61340935 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61340935\n\nDear GÖKKUS PİNAR, your shipment with 61340935 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61340935\n\nBICARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('86388a04-bf5a-4938-994c-2d1556fb157c','905079358213','ABDULLAH ÇELİK adlı müşterinizin 745714095 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab41b8c0-66a4-4c51-ba67-322b1df9498b',NULL),
('863ac532-a6f0-4f06-86a2-e9fc03cbf394','491727832300','Sayın IVANA ELİAS, 437426295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437426295\n\nDear IVANA ELİAS, your shipment with 437426295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437426295\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('863bac1d-3f4b-457c-9c42-39a9942174b8','33763241174','Sayın YUSUF HAMZA DALKILINÇ, 478423651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478423651\n\nDear YUSUF HAMZA DALKILINÇ, your shipment with 478423651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478423651\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('8640dae5-a4e0-4c01-a7bf-73c23db011dc','4917645275694','Sayın SELİN URAK, 437152964 nolu gönderiniz 8633 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437152964\n\nDear SELİN URAK, your shipment with 437152964 was delivered to you with the delivery code 8633. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437152964\n\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('8640ed9e-902f-4e59-9106-0494baac6ad0','905075277637','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin VOYAGE YATAK ODASI  ürünü 25 parça halinde RİXXE  adresinizden 09.09.2025 13:57:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('86423054-8e42-4252-a791-2b2a86f1583b','905421855834','Sayın yetkili; MEHMET GÜL adlı müşterinize 33841628 nolu gönderinizin Polo Sandalye ürünü 3 parça halinde Emek Sandalye adresinizden 08.08.2025 17:10:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('86438882-92a3-46dd-a6a3-2484d020d70c','905075277637','İLKER BİLİCİ adlı müşterinizin 745128598 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed79e715-5409-4641-b31c-ef0bd037b83b',NULL),
('8643ea5a-111f-40f5-9ff4-5d9c8e4dd9fc','4917678708676','Sayın ÖZKAN KAYACAN, 745170376 nolu gönderiniz 7737 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745170376\n\nDear ÖZKAN KAYACAN, your shipment with 745170376 was delivered to you with the delivery code 7737. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745170376\n\n\nBICARGO','1','0e979831-071a-44d0-92b5-b61f986da797',NULL),
('8648e448-aff0-4e01-af09-bfdb10560910','905332942204','Sayın yetkili; İPEK ÇAKMAKÇI adlı müşterinize 505129515 nolu gönderinizin masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 29.08.2025 12:45:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('864c9205-bc33-4eca-8723-6b62672868a6','41765200676','Sayın MANJUTHA VATHANASEELAN, 613990071 nolu gönderiniz 10622 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613990071\n\nDear MANJUTHA VATHANASEELAN, your shipment with 613990071 was delivered to you with the delivery code 10622. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613990071\n\n\nBICARGO','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('864e9505-501b-49ab-9823-e2e49aa977f8','4917663371401','371540742 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371540742\n\nYour shipment with the number 371540742 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371540742\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('865535fb-c3fe-43c1-932c-be495e51689d','4917662627829','İLETİŞİM\n					Furkan şöför = +905078826436','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('865b0803-3c09-4f92-b9b8-38e602633242','4917624742044','Sayın ESRA KAMBERİ, 081789192 nolu gönderiniz 9915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/081789192\n\nDear ESRA KAMBERİ, your shipment with 081789192 was delivered to you with the delivery code 9915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/081789192\n\n\nBICARGO','1','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('865b43da-cb51-4210-bba0-00899244c255','33663551431','982573889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2229 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982573889\n\nYour shipment with the number 982573889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2229. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982573889\n\nBICARGO','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('865e8c5d-96db-411b-ba0e-e2adf0430fb7','4915739428286','Sayın MURAT KARAOĞLU, 745629044 nolu gönderiniz 2819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745629044\n\nDear MURAT KARAOĞLU, your shipment with 745629044 was delivered to you with the delivery code 2819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745629044\n\n\nBICARGO','1','1db28ca3-8c27-419d-877e-64aa6a075f69',NULL),
('8664319e-1569-474c-8ff4-53bf572e12a7','00491777048158','248425122 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9851 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248425122\n\nYour shipment with the number 248425122 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9851. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248425122\n\nBICARGO','2','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL),
('866629e4-6ee4-476f-a206-8cdd67f0f9b3','4915164418447','Sayın SELİM EROL, 976577497 nolu gönderiniz 4034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976577497\n\nDear SELİM EROL, your shipment with 976577497 was delivered to you with the delivery code 4034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976577497\n\n\nBICARGO','1','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL),
('86670eb9-9809-41ff-88aa-562c94941967','4917692916375','745789797 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8742 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745789797\n\nYour shipment with the number 745789797 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8742. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745789797\n\nBICARGO','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('866c94e2-5e69-4e0d-aab6-10b9d57d244d','905517075149','Sayın yetkili; SAVAŞ ÖZTÜRK  adlı müşterinize 478514572 nolu gönderinizin 6 ADET SANDALYE ürünü 3 parça halinde beymi sandalye adresinizden 08.10.2025 10:34:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c624cc-2fc1-4839-b08d-b9e1310a053d',NULL),
('866cc399-6921-456e-8a4d-a0f509049c8c','905079358213','Sayın yetkili; SEDA KURTDİNÇEL adlı müşterinize 745431846 nolu gönderinizin BONNY KÖŞE KOLTUK  ürünü 4 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 04.08.2025 14:44:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('866e6fd3-650b-4531-8386-959d67092a3c','4917681266759','Sayın ALİ GÖKSU , 268145141 nolu gönderiniz 4945 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268145141\n\nDear ALİ GÖKSU , your shipment with 268145141 was delivered to you with the delivery code 4945. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268145141\n\n\nBICARGO','1','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL),
('8675430a-02bf-417b-a89d-3b0dcabd9d1b','905454259202','SADIK PALA adlı müşterinizin 478633498 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL),
('86759813-97ac-412e-ab44-ab9310d83db2','905461661672','Sayın yetkili; BEYTULLAH AKSOY adlı müşterinize 644826911 nolu gönderinizin TRAVERTEN  ürünü 2 parça halinde AFYON TRAVERTEN adresinizden 28.04.2025 18:18:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('867bd45d-d485-473b-8d4f-8c32e2104201','905461661672','REBEKKA İRMER adlı müşterinizin 644113100 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('867e7759-3136-429f-90c4-94bacee239e7','905079358213','Sayın yetkili; EMRE YILMAZ SSH  adlı müşterinize 745771664 nolu gönderinizin KOLTUK KASASI 2 PARÇA  ürünü 1 parça halinde VAAV adresinizden 30.06.2025 13:33:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('868230dc-c402-467b-8bcb-12c60334f1d9','905363385813','Sayın yetkili; Mustafa İlhan adlı müşterinize 976369647 nolu gönderinizin Mobilya ürünü 3 parça halinde Recai Yılmaz adresinizden 08.11.2024 10:57:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('868c1f50-a721-4225-b34d-b0d3d0de6555','905335511664','Sayın yetkili; GAMZE TUNÇ adlı müşterinize 371245433 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 22.10.2025 13:00:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bf98fdf-48e1-48eb-89ed-995b2100ba96',NULL),
('868e49a7-d8cc-4243-a4fe-d04684382e1d','905304259202','ZEHRA AŞIK adlı müşterinizin 478243785 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('868eacd2-d9da-432f-958b-257268359d21','905301592882','ÖZKAN ÖZKOŞAR adlı müşterinizin 910756975 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('869653fe-2e54-4c7d-84a9-0bc5cf11d82c','905079358213','Sayın yetkili; BERKANT YAŞA adlı müşterinize 745717474 nolu gönderinizin BONNY KÖŞE TAKIMI  ürünü 4 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 13.03.2025 14:51:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('8696e32a-fe8f-48de-bb98-9362238328ee','491795290795','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','2','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('86978d92-cd7b-4b8b-8ef0-324cd2ca3217','4917632868288','478409459 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8813 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478409459\n\nYour shipment with the number 478409459 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8813. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478409459\n\nBICARGO','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('86994402-e660-4fa6-b1b7-172bb4cefa8d','4915256924287','644803178 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10084 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644803178\n\nYour shipment with the number 644803178 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10084. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644803178\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('869a842d-c172-4543-8d7a-6f747dc3f6de','31641824655','Sayın MİTHRA EKHLAS, 371665790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665790\n\nDear MİTHRA EKHLAS, your shipment with 371665790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371665790\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('869eb5d0-cd89-4560-a1c9-273159a1c5d2','491772447174','Sayın ADEM  GENÇ, 614553524 nolu gönderiniz 7524 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614553524\n\nDear ADEM  GENÇ, your shipment with 614553524 was delivered to you with the delivery code 7524. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614553524\n\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('86a1b30a-58b3-4ebf-ab50-063d2107d4b2','905442774505','OSMAN BEY adlı müşterinizin 657405652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('86a4789d-5353-4539-ae9a-c327f612c498','4917672726152','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('86a6af9e-c823-432f-b661-f502409fd962','4917670490126','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('86a7d5bc-d3ca-4061-82c8-50050d863c69','33647785711','221190454 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7712 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221190454\n\nYour shipment with the number 221190454 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7712. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221190454\n\nBICARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('86a8204b-4772-4f37-952c-a97c72a355ff','41799463289','126525086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4229 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126525086\n\nYour shipment with the number 126525086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4229. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126525086\n\nBICARGO','1','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL),
('86a9609f-9e97-4730-af5c-62e84fb7bab8','905454259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin yemek odası ürünü 10 parça halinde family adresinizden 15.04.2025 14:58:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('86abaab4-aae1-461f-8b00-a0e71a392aec','905079358213','Sayın yetkili; EMRE AFYON  adlı müşterinize 745547550 nolu gönderinizin FRİDA KOLTUK TAKIMI ürünü 1 parça halinde Fatura adresinizden 12.03.2025 21:26:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('86ac613b-370a-48b8-a57f-118170fbdfd0','33625698024','Sayın MİNA ANNABİ, 478278253 nolu gönderiniz 5448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478278253\n\nDear MİNA ANNABİ, your shipment with 478278253 was delivered to you with the delivery code 5448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478278253\n\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('86ae6e2c-5071-47f9-b2a2-c54cacd37235','905336367828','DUDU AKSOY adlı müşterinizin 982944278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127',NULL),
('86b005e4-4392-4a79-86c2-8487e2acc96a','905301592882','Sayın yetkili; BERKAN AĞIRMAN adlı müşterinize 910781464 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde Fatura adresinizden 31.07.2025 15:11:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','79baeae2-c29e-4ea3-ae77-ef38917cdcf3',NULL),
('86b13525-1f5e-4b39-8c1c-b990e5a356dd','4915256314885','Sayın BURHAN BAYRAKTAR, 644758410 nolu gönderiniz 3129 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644758410\n\nDear BURHAN BAYRAKTAR, your shipment with 644758410 was delivered to you with the delivery code 3129. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644758410\n\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('86b411ca-fac3-411d-bda2-ed7f43d90af2','905079358213','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin NOVA İKİLİ ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 28.05.2025 14:48:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('86b965ed-7040-4e90-9252-9ca05fd9ff13','905421855834','Sayın yetkili; RAUF ÇALIŞ adlı müşterinize 338991013 nolu gönderinizin Star Köşe Koltuk ve Berjer  ürünü 4 parça halinde Mutlular Koltuk (Özispa Binası) adresinizden 18.12.2024 10:27:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f10b88a4-5160-4b26-9eda-5026590612c9',NULL),
('86bb1094-e5a7-4b61-ab07-aa4d54b8cb15','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL PUF ürünü 1 parça halinde ŞAHİNLER  adresinizden 03.09.2025 13:43:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('86bca94e-b5c6-42fb-882b-299702878013','436608524565','Sayın ALİHAN ARATEKİN, 221322415 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221322415\n\nDear ALİHAN ARATEKİN, your shipment with 221322415 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221322415\n\nBICARGO','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('86bdbadc-1c97-4eed-b02f-88f3ff4e55c4','4917664681539','910899167 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3135 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910899167\n\nYour shipment with the number 910899167 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3135. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910899167\n\nBICARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('86c28773-bba4-4a42-b863-53b17bcde5ee','905078062550','ENES İSMET UGUZ adlı müşterinizin 598986653 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('86c559d2-b970-431d-b047-761c4df604fd','436606593598','Sayın MUSTAFA SEVİNDİ, 517827584 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517827584\n\nDear MUSTAFA SEVİNDİ, your shipment with 517827584 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517827584\n\nBICARGO','1','b821f1cd-d990-4100-9455-a2c619562c1e',NULL),
('86c71a1f-cd43-4276-8422-cb82555f3984','4915759307313','Sayın MUHAMMET ALTUNKAYA, 478681042 nolu gönderiniz 10204 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478681042\n\nDear MUHAMMET ALTUNKAYA, your shipment with 478681042 was delivered to you with the delivery code 10204. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478681042\n\n\nBICARGO','1','ca108024-5dae-4885-b583-30c8f69c510c',NULL),
('86cfe9f2-3e68-48cc-a26c-f26ad4faece9','41763247775','Sayın GEZİM PLUSHİ, 982629756 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982629756\n\nDear GEZİM PLUSHİ, your shipment with 982629756 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982629756\n\nBICARGO','1','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL),
('86d71579-8e4b-4173-9cda-1cfa4f9c856c','905079358213','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin YEMEK MASASI  + SEHPA  ürünü 5 parça halinde GÜMÜŞ MASA adresinizden 12.05.2025 16:29:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('86d71ebb-a447-4f2e-aa45-52d96502b2d3','905461661672','REİNAS HAİDARİ SSH adlı müşterinizin 644490677 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('86dd65e6-0f5f-4946-8806-c7a5cf7477e8','4915224134737','Sayın DERYA ERDOĞMUŞ, 437578664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437578664\n\nDear DERYA ERDOĞMUŞ, your shipment with 437578664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437578664\n\nBICARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('86dda3d1-fa3f-4613-99e7-3a471c6aff00','491781976531','Sayın FATİH YÜKSEL, 59878032 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59878032\n\nDear FATİH YÜKSEL, your shipment with 59878032 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59878032\n\nBICARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('86ddacb5-f3cc-4115-96a8-faad7d1c241a','4917682417039','İLETİŞİM\n					Furkan şöför = +905078826436','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('86de23cd-dbd8-495e-8e8d-b9f73f2b4f0c','905443955915','BAL CİHAN adlı müşterinizin 614908568 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f169361d-a98a-44cd-9be5-0d014e87b896',NULL),
('86e2a7a4-51a8-4f21-a1a8-0566dfcdd9ff','33749273890','221118460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221118460\n\nYour shipment with the number 221118460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221118460\n\nBICARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('86e91c2e-8439-4bf3-9ddb-9d51de69a32b','905301592882','TOLGA KESEN  adlı müşterinizin 910796066 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL),
('86ecdfcd-43f1-4fce-969e-2ded1e5264fe','905325000478','BELLA MEUBEL adlı müşterinizin 412102597 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('86ecf278-1508-44bb-b8c3-521eaf7fbbea','4915739271239','Sayın SELCAN KURU, 221208954 nolu gönderiniz 10733 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221208954\n\nDear SELCAN KURU, your shipment with 221208954 was delivered to you with the delivery code 10733. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221208954\n\n\nBICARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('86efd4dd-9e27-4c65-bbef-81800f134edd','905331602195','Sayın yetkili; ARMİN IMERİ  adlı müşterinize 221867394 nolu gönderinizin 80x60x45 orta sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 26.04.2025 15:54:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('86f430ac-ecdf-42e6-9a9b-411fe0088f51','436603406293','SERHAT MOUEMİN adlı müşterinizin 675799375 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('86f4b43c-1c7a-4c6c-b5f8-fd484a00b707','905078062550','Sayın yetkili; RASİM YAVUZ adlı müşterinize 598894090 nolu gönderinizin baza başlık ürünü 4 parça halinde ALBESSA HOME adresinizden 16.09.2025 14:55:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('86f50df2-bfae-46a1-9d7c-38dc661ca1e4','491737165730','Sayın MEHMET AKHAN, 371998665 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371998665\n\nDear MEHMET AKHAN, your shipment with 371998665 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371998665\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('86ff0192-6a5c-4ec2-a198-05c9880d0fc8','905317943903','Sayın MUSA VARICI , 897291641 nolu gönderiniz 10280 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/897291641\n\nDear MUSA VARICI , your shipment with 897291641 was delivered to you with the delivery code 10280. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/897291641\n\n\nBICARGO','2','bd13ecf4-c9e1-49ad-bf11-98f0926f0bd1',NULL),
('8700cae8-e94d-4278-9154-3ad2342310ca','905335511664','Sayın yetkili; NESLİHAN DEMİR adlı müşterinize 371586742 nolu gönderinizin seramik masa ürünü 4 parça halinde Seramik Masa Üreticisi adresinizden 28.04.2025 15:06:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('870224d7-3ce0-4fd9-bcc9-10a114845006','491639052092','Sayın VAİSE İBRAHİM, 613108463 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613108463\n\nDear VAİSE İBRAHİM, your shipment with 613108463 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613108463\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('870a90a2-ad88-47f9-a1ef-e350f36a6804','491752616978','Sayın BERNA YİLDİRİM, 61390448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61390448\n\nDear BERNA YİLDİRİM, your shipment with 61390448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61390448\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('870ecf61-556c-48d5-a432-60eac5bf2f18','905301592882','SÜLEYMAN MAKAS adlı müşterinizin 910560938 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('872508c9-7c43-4760-b7b4-3f46e1b45342','152636273636363','248135683 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248135683\n\nYour shipment with the number 248135683 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248135683\n\nBICARGO','2','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL),
('8726f638-6d21-4553-aa0f-d22f36ced6b7','33681254075','Sayın FATMA KARAHAN, 478346989 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478346989\n\nDear FATMA KARAHAN, your shipment with 478346989 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478346989\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('872f4df4-6351-4833-bccd-ab32a9923e82','491622711992','371441090 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3389 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371441090\n\nYour shipment with the number 371441090 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3389. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371441090\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('87308033-2541-4169-949f-fbf1f302a540','905335708965','CONSİGNEE adlı müşterinizin 2487154 nolu gönderisi 58 parça halinde yola çıkmıştır.','1','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL),
('8730ea40-d991-46ab-83da-9fbaa439b736','4917662149337','Sayın UMUT YÖRÜK, 644243216 nolu gönderiniz 8083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644243216\n\nDear UMUT YÖRÜK, your shipment with 644243216 was delivered to you with the delivery code 8083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644243216\n\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('8737f568-388c-4017-9d99-82f2763f0339','905078062550','FADİME ERİMEZ adlı müşterinizin 598425779 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('874483f4-bd89-4656-aa94-ca519d1b9257','905350617509','Sayın yetkili; SEVİM KARATEKE  adlı müşterinize 613528305 nolu gönderinizin Masa ürünü 2 parça halinde İlyas Masa adresinizden 01.08.2025 11:49:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('8744e7f2-2bd5-440b-844e-787f511a0fff','33663551431','Sayın NORBERTO VAZ , 982573889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982573889\n\nDear NORBERTO VAZ , your shipment with 982573889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982573889\n\nBICARGO','1','d488fa09-b4c4-4a16-b3c7-6b5959ff762c',NULL),
('874b2649-ad35-4030-9e50-ef9ebcbdfd6f','4915787836767','Sayın ERDEM ŞAHİN(K), 644522996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644522996\n\nDear ERDEM ŞAHİN(K), your shipment with 644522996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644522996\n\nBICARGO','1','56c417cf-c265-4351-92f6-09fa93a1f112',NULL),
('87521488-32d7-4b30-be2f-b8911b0a41b8','4367763453759','Sayın ALİ KURUÇAM, 437707209 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437707209\n\nDear ALİ KURUÇAM, your shipment with 437707209 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437707209\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('8753bbfb-a1c2-4fe5-9f4b-180fd77dc6ae','4917620811001','598410676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4889 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598410676\n\nYour shipment with the number 598410676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4889. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598410676\n\nBICARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('875408f5-918e-480d-af1f-b99083bdf4a1','33768950442','Sayın ÇİĞDEM UĞUR FRANSA, 221158425 nolu gönderiniz 9418 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221158425\n\nDear ÇİĞDEM UĞUR FRANSA, your shipment with 221158425 was delivered to you with the delivery code 9418. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221158425\n\n\nBICARGO','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('87547306-f41a-42db-972a-8a95ddf6a65c','905335511664','Sayın yetkili; İLAYDA GÜNEŞ SSH adlı müşterinize 371280361 nolu gönderinizin SSH MASA AYAĞI ürünü 2 parça halinde Elitis Home adresinizden 26.08.2025 18:35:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('875a88fe-2dc4-40c4-a941-1260a62cf8e4','33695498919','745390643 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9493 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745390643\n\nYour shipment with the number 745390643 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9493. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745390643\n\nBICARGO','1','a8bd3c61-ea6f-4b4b-9dc8-6a8216426958',NULL),
('8762b77a-fd47-4f39-9cdc-1fcf75ef9576','41765200676','613990071 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10622 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613990071\n\nYour shipment with the number 613990071 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10622. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613990071\n\nBICARGO','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('8764802b-9f74-42bc-8935-40744c4ee176','905325000478','LOWENSTERN adlı müşterinizin 412990147 nolu gönderisi 27 parça halinde yola çıkmıştır.','1','def82a96-8956-42bc-885f-988dfa22f789',NULL),
('876d8d5d-c1df-4dc0-9d39-2672dc07a3f7','491742714883','İletişim \n					Halil Bey (Şoför) :+905541100849','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('876f3194-a40b-4592-b3de-bf5242302b64','905335511664','ARZU KUZUCU adlı müşterinizin 371160737 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('8770c7b1-3c09-4331-bb07-8aaa0e0a2235','905079047428','FARİSHTE AHMEDİ adlı müşterinizin 44940434 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','6df88176-a01f-4232-a091-4e10895a39df',NULL),
('8774da65-b81e-4d96-8308-2852856c19d3','4917639148019','91030681 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10895 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91030681\n\nYour shipment with the number 91030681 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10895. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91030681\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('8777a4fc-15eb-41eb-afeb-e00014aa1f7e','905517075149','Sayın yetkili; ERKUT PEKTAŞ adlı müşterinize 478474988 nolu gönderinizin köşe-berjer-sehpalar ürünü 8 parça halinde RİXXE adresinizden 08.09.2025 12:06:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('877870a7-7d00-4ce9-a6bd-db04f7f4d897','33652910874','Sayın BURAK TÜRKEŞ, 614458088 nolu gönderiniz 6362 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614458088\n\nDear BURAK TÜRKEŞ, your shipment with 614458088 was delivered to you with the delivery code 6362. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614458088\n\n\nBICARGO','1','c1cea88c-608d-4453-b63a-81ba0b909940',NULL),
('877c1403-4fdd-4782-8b86-550d1543671d','905078062550','Sayın yetkili; ZEHRA ÜNAL adlı müşterinize 598320188 nolu gönderinizin baza başlık ürünü 4 parça halinde ALBESSA HOME adresinizden 25.08.2025 11:48:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('877d515e-618b-4493-97b2-f2451bfdd38a','905069116877','MELİSA  adlı müşterinizin 817630523 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('877e6f77-6c1e-412c-9dcc-72735a076146','905079358213','FATMA ÜNSAL adlı müşterinizin 74565294 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','a6f1c3bd-9788-43da-8af3-996af9bfb0b2',NULL),
('8782964b-0a3c-48a5-be68-c43db992213c','905325165070','ÖZLEM SAĞIR adlı müşterinizin 73427297 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('878a1732-cfdb-4d38-ba2a-c2ab0c552b64','05539740010','FERHAT SANUÇ adlı müşterinizin 011573387 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('878b7ef3-d4e5-4940-84a0-a00de59ba045','491759161362','478281907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8684 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478281907\n\nYour shipment with the number 478281907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8684. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478281907\n\nBICARGO','1','4a285e1c-8129-4c9c-85a3-06394604421e',NULL),
('8795445a-15ed-4769-8d95-ba998355e275','4917641556413','501760708 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9052 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501760708\n\nYour shipment with the number 501760708 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9052. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501760708\n\nBICARGO','1','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL),
('8799db4b-719e-408e-9049-589460dd586f','41768248382','221941793 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2716 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221941793\n\nYour shipment with the number 221941793 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2716. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221941793\n\nBICARGO','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('879fa99f-564f-4fde-bdc0-b8d42cc0976f','491762348854','Sayın ÖMER KARAMAN, 428857511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428857511\n\nDear ÖMER KARAMAN, your shipment with 428857511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428857511\n\nBICARGO','2','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('87a0b8c2-62c2-4958-aaa8-a4de91697d7a','31686432673','Sayın SERKAN ÖZBAY, 478800752 nolu gönderiniz 7109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478800752\n\nDear SERKAN ÖZBAY, your shipment with 478800752 was delivered to you with the delivery code 7109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478800752\n\n\nBICARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('87a2870f-88f3-459f-b133-e5ee103502f7','905079358213','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin ÖZEL MASA  ürünü 2 parça halinde GÜMÜŞ MASA adresinizden 21.07.2025 10:30:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('87a5cd74-4f92-4029-81e4-95dbf0482231','33784196938','Sayın ALİ DİNAR, 478185886 nolu gönderiniz 6033 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478185886\n\nDear ALİ DİNAR, your shipment with 478185886 was delivered to you with the delivery code 6033. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478185886\n\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('87a660a7-d2d6-45bd-a301-b426849ffa80','33769844475','Sayın AHMED HAMEL , 221413192 nolu gönderiniz 1455 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221413192\n\nDear AHMED HAMEL , your shipment with 221413192 was delivered to you with the delivery code 1455. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221413192\n\n\nBICARGO','1','9c4a2d66-51b7-4378-aeac-e9b8af1f063a',NULL),
('87a6b248-9b53-4e11-a0a6-e30ee259cde9','905079358213','BERKANT YAŞA adlı müşterinizin 745717474 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('87a8e431-48e5-4433-ac71-989521dcd382','491788649783','Sayın MASOUME IBRAHİMKHEL, 735211280 nolu gönderiniz 3524 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735211280\n\nDear MASOUME IBRAHİMKHEL, your shipment with 735211280 was delivered to you with the delivery code 3524. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735211280\n\n\nBICARGO','1','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL),
('87b12e74-0ed3-416e-9bf9-af27b390c9f8','905301592882','Sayın yetkili; SONGÜL KEKEÇ adlı müşterinize 910197116 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 18.04.2025 10:48:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('87bbd15b-88ef-4a90-8feb-5229975b7504','905050303939','ENİSA YEKTA  adlı müşterinizin 923436295 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('87c3a306-1f0c-45da-a39d-50bf2bdc1b9f','4917674917141','Sayın AHMET GÜNEŞ, 478285861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478285861\n\nDear AHMET GÜNEŞ, your shipment with 478285861 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478285861\n\nBICARGO','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('87cf00ab-815f-42a6-ae43-b83224e3d1e8','905394878216','Sayın yetkili; ÖZGÜR PİLİÇ adlı müşterinize 517447554 nolu gönderinizin Yemek Odası Takımı ürünü 10 parça halinde Fatura adresinizden 20.05.2025 11:42:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('87d3e73e-7682-4c8b-9332-8744d54095e1','491775901111','Sayın ARZU ÜNLÜ, 319515461 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319515461\n\nDear ARZU ÜNLÜ, your shipment with 319515461 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319515461\n\nBICARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('87d98fcb-667b-49be-a5a6-0ac86c5bfd24','33610781591','478406590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478406590\n\nYour shipment with the number 478406590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478406590\n\nBICARGO','1','b2b86e6d-e570-4c38-ac25-e910c71c1e2f',NULL),
('87dbec88-f0ff-4992-a952-af2c13aed3fc','905075277637','Sayın yetkili; SEZER HATUN adlı müşterinize 745249081 nolu gönderinizin KING PLATİN BAZA SET 120LIK  ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:18:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('87dc5be9-e6c8-4cfd-8ab2-30bb783bf01d','49173496047','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','2','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('87df9396-adc2-4465-9a4a-78b22304677f','4917630360547','Sayın İBRAHİM PİLİG, 531724547 nolu gönderiniz 4926 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531724547\n\nDear İBRAHİM PİLİG, your shipment with 531724547 was delivered to you with the delivery code 4926. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531724547\n\n\nBICARGO','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('87e07b12-34f0-453a-a826-95de6e611e65','491705532123','Sayın MASUD SALAH, 982320208 nolu gönderiniz 2110 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982320208\n\nDear MASUD SALAH, your shipment with 982320208 was delivered to you with the delivery code 2110. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982320208\n\n\nBICARGO','1','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL),
('87e4907c-f1df-4ed0-8590-ba290058b8d9','4917670211470','745212688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745212688\n\nYour shipment with the number 745212688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745212688\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('87ea8a19-6351-41a6-a525-0a6341450dcf','31650899845','Sayın YASİN OĞUZ, 478233957 nolu gönderiniz 1134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478233957\n\nDear YASİN OĞUZ, your shipment with 478233957 was delivered to you with the delivery code 1134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478233957\n\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('87eaa2f5-ca70-436f-ad0b-71af7670ff43','33652441407','Sayın AHMET TEKİN, 501934466 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501934466\n\nDear AHMET TEKİN, your shipment with 501934466 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501934466\n\nBICARGO','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('87ed5a2d-a80c-4123-8923-accd6039c7fc','905461661672','Sayın yetkili; TARIK TURAN adlı müşterinize 644769101 nolu gönderinizin AFYON TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 10.10.2025 13:14:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('87ee46fa-b8eb-4f03-a22e-ced7babed4b4','905075277637','OKAN EKİNCİ adlı müşterinizin 745873539 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('87eeb3c2-a76e-4483-933b-1304fc083e15','5388999874','Sayın CEMAL YALÇIN SSH, 319388100 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319388100\n\nDear CEMAL YALÇIN SSH, your shipment with 319388100 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319388100\n\nBICARGO','2','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('87f00622-891d-4668-9340-0b7a9984bdff','905301592882','Sayın yetkili; SÜLEYMAN MAKAS adlı müşterinize 910560938 nolu gönderinizin KONFOR KOLTUK ürünü 4 parça halinde Fatura adresinizden 06.03.2025 12:11:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f9e67fd0-ab8e-4143-94a8-e48dd36700d0',NULL),
('87f52b33-cfdc-4a39-ab2f-8cf35f536eb4','905335511664','Sayın yetkili; AHMET AĞIRMAN adlı müşterinize 371413703 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 05.08.2025 11:15:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('87f99c92-fe0f-4c94-ba70-f091342fac36','905078062550','MEHMET ULUIŞIK adlı müşterinizin 598614826 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('87fc1059-cbf0-49db-a8bb-71fc1c141872','905325998198','ABDİL ACAR adlı müşterinizin 614788293 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL),
('87fd3642-d7db-4b12-8ae7-7699f9c8043d','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin BAZA BAŞLIK  ürünü 2 parça halinde KARYOLA adresinizden 17.10.2025 15:20:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('87feb4ec-a060-44b3-8346-fe0d0b0d5525','491752512199','Sayın NAGİHAN ALKIRAN, 338829299 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338829299\n\nDear NAGİHAN ALKIRAN, your shipment with 338829299 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338829299\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('88068357-5fc9-47d2-9c82-1cdf47692bbc','905461661672','Sayın yetkili; BERNARD BEJİQ adlı müşterinize 644714329 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 26.02.2025 10:20:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('880afd87-087b-4d19-aceb-1082d584d270','905331602195','Sayın yetkili; MUHAMMED ALİ YILMAZ  adlı müşterinize 221294149 nolu gönderinizin 90x150-190 siyah açılır masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 21.04.2025 14:20:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('88135205-25b8-433e-8670-8b1cff4a2cdf','905331602195','Sayın yetkili; İHSAN KUMUR adlı müşterinize 221825192 nolu gönderinizin 90x150-190 açılır traverten masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:41:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('88154b6c-5a15-49d2-80bb-39b8c126c29b','905331602195','FURKAN KAYABAŞ adlı müşterinizin 221631052 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('881d5acd-ed2f-460e-a772-3843d917bbf7','905442774505','Sayın yetkili; BERKANT CEYLAN  adlı müşterinize 657784193 nolu gönderinizin MERMER ürünü 1 parça halinde Fatura adresinizden 17.09.2025 12:17:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('882529d2-b67f-4a87-b2e5-a8be1a1faabb','905079047428','İBRAHİM AYIK  adlı müşterinizin 449728917 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('8826348e-526a-4ca8-8f62-e6468040f07e','491726603821','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('882c3f0f-ed20-4b58-859d-889dcb7f8856','4915208688801','Sayın TARIK TURAN, 644769101 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644769101\n\nDear TARIK TURAN, your shipment with 644769101 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644769101\n\nBICARGO','1','5289d63f-a7a4-464d-80ad-20c84233ff2b',NULL),
('882d944a-ab3c-4f89-880f-9640ab6d1fa2','4917628135179','Sayın LALE AKGÜL, 371533444 nolu gönderiniz 9587 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371533444\n\nDear LALE AKGÜL, your shipment with 371533444 was delivered to you with the delivery code 9587. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371533444\n\n\nBICARGO','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('882de82a-36cb-48a4-b35f-8e82667b1f8c','905336367828','ARTON BERİSHA  adlı müşterinizin 982835475 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('882fc988-a2f5-4645-9a53-0ce715b98809','4917646701488','Sayın SABRİNA METZGER , 808922349 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808922349\n\nDear SABRİNA METZGER , your shipment with 808922349 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808922349\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('88322314-0b48-4497-9c33-17f41d5c88ed','905356503956','AYHAN TÜRKMEN adlı müşterinizin 027527659 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL),
('88324935-82a3-4609-a8dc-50b2e23659fb','4917674951049','478302796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10679 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478302796\n\nYour shipment with the number 478302796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10679. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478302796\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('8837efce-2d29-428f-b98c-c68d710eb785','905333221039','NURGÜL ÖZDEMİR adlı müşterinizin 75056602 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL),
('8838f59c-aaa4-42cb-b53f-aed48e1cc956','33783071401','655111652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5078 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655111652\n\nYour shipment with the number 655111652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5078. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655111652\n\nBICARGO','1',NULL,NULL),
('883b88a3-614a-4aea-8ca9-271d38d6048e','905336367828','Sayın yetkili; birsat melake  adlı müşterinize 982639053 nolu gönderinizin konsol  ürünü 1 parça halinde nacar mobilya  adresinizden 13.11.2024 10:16:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('883d6fdd-01b0-4424-a11c-0c2c0485abeb','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin PRADA ORTA SEHPA ürünü 1 parça halinde SERBEST MOB adresinizden 19.09.2025 12:43:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('883e3034-9170-4cff-9994-2b405e12e77a','491779772088','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz 4599 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 was delivered to you with the delivery code 4599. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644771270\n\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('88406a2f-014f-4a5b-9a10-f576d47f877d','905335511664','AYCAN ÇOLAK adlı müşterinizin 371120278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('884220d7-8baf-48cd-97da-ceef3e0fc8fe','905075277637','Sayın yetkili; YASEMİN YILDIZ adlı müşterinize 745968655 nolu gönderinizin VİRAL KOMODİN ürünü 1 parça halinde Fatura adresinizden 24.03.2025 15:15:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('884e261e-c21d-4bca-985c-c06cf2a9e475','491632447779','614200423 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5393 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614200423\n\nYour shipment with the number 614200423 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5393. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614200423\n\nBICARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('884e6543-b056-43c6-9cfc-af531fb55462','4917624748581','Sayın YUSUF KAYA, 655200069 nolu gönderiniz 2226 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655200069\n\nDear YUSUF KAYA, your shipment with 655200069 was delivered to you with the delivery code 2226. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655200069\n\n\nBICARGO','1','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL),
('8854d082-12d8-43c6-bc60-621ba0254a64','491575264110','Sayın PINAR BARUTÇU, 6148124 nolu gönderiniz 10287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/6148124\n\nDear PINAR BARUTÇU, your shipment with 6148124 was delivered to you with the delivery code 10287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/6148124\n\n\nBICARGO','2','203b6560-2fe1-4637-804e-b6b6df86b59f',NULL),
('8855ccbd-8627-4f69-b60c-c85519ae9daf','905368336516','SERHAT AGİRTAS adlı müşterinizin 515139511 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('8855d01e-854d-4dc4-bba8-9b83dcccb7cb','32484568424','221443179 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1405 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221443179\n\nYour shipment with the number 221443179 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1405. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221443179\n\nBICARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('8858819c-d853-4ad5-a3ef-2cc025f79bbe','905325000478','EUROMOBEL adlı müşterinizin 412395565 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a451f68c-dd26-4757-af49-72fa26f23f80',NULL),
('88591f5c-1cce-45d7-a951-f8d86e773ca6','905461661672','TUĞBA GÜLSEVEN SSH adlı müşterinizin 644860505 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('885fe807-0347-4989-b891-b71a55bb7e21','491712347917','Sayın EMEL ÖZTÜRK, 371191289 nolu gönderiniz 1798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371191289\n\nDear EMEL ÖZTÜRK, your shipment with 371191289 was delivered to you with the delivery code 1798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371191289\n\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('885feaff-539d-4075-a420-ab06cf526b29','491772742981','817830150 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817830150\n\nYour shipment with the number 817830150 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817830150\n\nBICARGO','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('88652b54-fae3-4054-ab77-26c7d5c9b49a','905331602195','Sayın yetkili; DİJWAR TAŞÇEVİREN adlı müşterinize 221485829 nolu gönderinizin 60 çap ceviz ve traverten sehpalar  ürünü 2 parça halinde Fatura adresinizden 11.09.2025 13:48:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dedf152d-bf4e-47e1-b412-9078997573d4',NULL),
('886bbf76-69f0-471a-b760-d5f0548bf996','004915255400500','Sayın HALİT KADİM, 248533509 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248533509\n\nDear HALİT KADİM, your shipment with 248533509 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248533509\n\nBICARGO','2','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL),
('886ff039-6478-4d05-aea2-6a30b55b8e16','905333323012','Sayın yetkili; ERKAN LJUTFİJİ adlı müşterinize 695864567 nolu gönderinizin köşe koltuk ürünü 6 parça halinde Fatura adresinizden 23.10.2025 13:46:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d495dc82-5d1b-46f4-a06b-4a1ad44cbbc6',NULL),
('88713b33-7ace-4e97-805b-e4ab00b2e009','33774908152','Sayın VEDAT ÜZER , 982342488 nolu gönderiniz 4795 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982342488\n\nDear VEDAT ÜZER , your shipment with 982342488 was delivered to you with the delivery code 4795. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982342488\n\n\nBICARGO','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('8886c37a-2a1b-4cc5-8967-e680cb5b768e','905313340045','Sayın yetkili; MİRAÇ SAKAR adlı müşterinize 437969799 nolu gönderinizin masa ve sehpa ürünü 6 parça halinde welusse home adresinizden 28.01.2025 14:15:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('888bd87d-25b8-460e-a394-fb1a2483e397','905465479064','LÖWİK WONEN adlı müşterinizin 858365882 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c86b331f-7141-49b9-b684-a2a68daaa635',NULL),
('888d6c72-0270-47e9-84ba-8962028641e2','491776464425','Sayın SAMET ÖZTÜRK , 911787432 nolu gönderiniz 10569 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/911787432\n\nDear SAMET ÖZTÜRK , your shipment with 911787432 was delivered to you with the delivery code 10569. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/911787432\n\n\nBICARGO','1','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL),
('888e6b5e-d274-4495-ad27-ddf5b2a5f70f','905054335859','NUSRET GÜNEŞ  adlı müşterinizin 501163993 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3943ece-5f39-454b-89e6-213b14b5658f',NULL),
('888f6fd5-49a0-4b24-bfee-b6b2b9f6d386','491748787633','613175888 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1056 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613175888\n\nYour shipment with the number 613175888 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1056. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613175888\n\nBICARGO','2','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('8893ec30-aaeb-4ac6-9c64-d72a4dc7a3e5','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin masa ürünü 3 parça halinde Comfortlife  adresinizden 30.12.2024 13:49:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('88941bd4-a82e-46a9-ad8d-d411a24900f0','491713468875','Sayın IVANA ELİAS, 437426295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437426295\n\nDear IVANA ELİAS, your shipment with 437426295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437426295\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('889f4d9f-6ee6-4fdb-8b0e-1cb5261cc9fb','33666141635','745233031 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4429 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745233031\n\nYour shipment with the number 745233031 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4429. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745233031\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('88a45af5-0e6f-4672-9427-86e806498843','4915778860967','Sayın MERYEM BULAK, 371408514 nolu gönderiniz 1877 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371408514\n\nDear MERYEM BULAK, your shipment with 371408514 was delivered to you with the delivery code 1877. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371408514\n\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('88a50e4f-347e-4b4e-b817-3b1581f9f572','905069116877','ALEYNA adlı müşterinizin 817395462 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('88ac4662-098e-4f51-b282-e5e30cab531f','905331602195','Sayın yetkili; KEVSER DENİZ  adlı müşterinize 221368256 nolu gönderinizin 90x190 siyah meşe masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 29.05.2025 17:30:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('88b64ae4-52ee-405d-af1a-e4f531204e86','905312762034','Sayın yetkili; SABRİNA METZGER  adlı müşterinize 808922349 nolu gönderinizin Köşe Takımı ürünü 4 parça halinde STYLE SOFA adresinizden 10.10.2025 19:46:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('88b73540-d882-43e1-9633-a1500fd63ca5','4917625035893','Sayın SWEETA QALANAWİ , 613393068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613393068\n\nDear SWEETA QALANAWİ , your shipment with 613393068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613393068\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('88b9756a-30d9-4c11-8581-c668d3184c4a','31621850088','Sayın EBRU PAYAS, 657408169 nolu gönderiniz 6579 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657408169\n\nDear EBRU PAYAS, your shipment with 657408169 was delivered to you with the delivery code 6579. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657408169\n\n\nBICARGO','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('88ba6fc1-c001-401b-ae35-15316f08cdd4','905079358213','Sayın yetkili; İSMAİL ÖZAY  adlı müşterinize 745423192 nolu gönderinizin SSH YATAK 160X200  ürünü 1 parça halinde Fatura adresinizden 16.05.2025 19:06:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('88c14ea6-2acd-445b-b35b-54baefbbe949','4915204907905','923419994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5840 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/923419994\n\nYour shipment with the number 923419994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5840. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/923419994\n\nBICARGO','1','9f65e17e-c684-49ab-8966-be09ed865fe2',NULL),
('88c38125-4252-4df3-b0c3-cc2ff12c616d','4915560261024','Sayın HALİL İBRAHİM BACAKSIZ, 97623604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/97623604\n\nDear HALİL İBRAHİM BACAKSIZ, your shipment with 97623604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/97623604\n\nBICARGO','1','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL),
('88c60e0c-4458-4db5-bf4a-f7dc4e926ad1','4915750864806','745907299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7871 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745907299\n\nYour shipment with the number 745907299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7871. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745907299\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('88c9fd3a-b51d-4388-bcc1-64ad1fa1a568','905431026110','Sayın yetkili; AZAT ALKAN adlı müşterinize 35119636 nolu gönderinizin BERJER ürünü 1 parça halinde 3ARDEKO adresinizden 19.08.2025 16:53:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('88ca1e7c-2f45-41da-a146-26ec062e36f9','4917654974069','Sayın NURTEN-HASAN ÇAKMAK, 478644410 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478644410\n\nDear NURTEN-HASAN ÇAKMAK, your shipment with 478644410 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478644410\n\nBICARGO','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('88d67ab1-682c-45fe-b609-861c54f1bb44','33744210474','478502129 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478502129\n\nYour shipment with the number 478502129 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478502129\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('88d752cd-b12f-4fa9-a70c-563510a69133','905335708965','MOHAMAD NOUR TARRAB adlı müşterinizin 248739379 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL),
('88d86af8-eed0-4001-9dd8-3239e7d40035','905331602195','CHERİET NAJET adlı müşterinizin 221287992 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('88d8ebb4-30b9-46c6-a606-516e86a2b50d','905069116877','AYNUR DURSUN adlı müşterinizin 817136073 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('88d989ff-1542-4227-8f14-e75e9f6b02f3','905075277637','AYŞE ÖZSOY adlı müşterinizin 745132796 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8d846a6b-e2c3-45bd-928c-7238130acfdf',NULL),
('88dd80d8-334d-45dd-ab74-c07f4fb5fa7d','491632101189','Sayın SELİNAY ORHAN, 745398311 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745398311\n\nDear SELİNAY ORHAN, your shipment with 745398311 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745398311\n\nBICARGO','1','c8832652-771d-469e-b661-4fd13d628789',NULL),
('88df4659-0646-4195-ba36-39b4f02dd487','905054335859','RUHAT DEĞİRMENCİ  adlı müşterinizin 501626049 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL),
('88df934a-297d-4705-8a40-2c14d722a2e6','436769600864','412467921 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1764 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412467921\n\nYour shipment with the number 412467921 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1764. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412467921\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('88e2aa18-5da1-44cc-8801-02f32030db9d','905530309780','SİNGH PERWİNDEJİT adlı müşterinizin 418120869 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('88e4ddc9-fdfa-45d7-8c56-98b0c553b2cc','905304259202','Hyusein petrov adlı müşterinizin 478702716 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','34998387-c573-429b-a68a-d13a844cfc40',NULL),
('88e7a888-38da-46d5-ab3b-5795f687b7c8','491784897423','896769535 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6357 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896769535\n\nYour shipment with the number 896769535 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6357. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896769535\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('88f07624-19a5-45f3-96ec-36a80f89309d','491637115819','Sayın SOMİA KARABİLA SSH, 59840179 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59840179\n\nDear SOMİA KARABİLA SSH, your shipment with 59840179 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59840179\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('88f16b87-5e7a-4831-83ab-2d352fa29ca8','436605487120','Sayın HANİFE YILMAZ, 745252636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745252636\n\nDear HANİFE YILMAZ, your shipment with 745252636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745252636\n\nBICARGO','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('88f3f790-ea7b-4b45-9d73-028fc1474fca','4917680082781','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('88f57fe3-9ab7-4b94-9284-738ccf9da5bb','33666268323','221407228 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1621 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221407228\n\nYour shipment with the number 221407228 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1621. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221407228\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('88fd2cdb-edb9-4073-9aa9-586a7613af95','05059175469','MUSTAFA KORKMAZ adlı müşterinizin 428184423 nolu gönderisi 14 parça halinde yola çıkmıştır.','2',NULL,NULL),
('88fd7f56-3daa-4187-9c49-7aeba2a07818','905079358213','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin LAROS KARYOLA - PUF  ürünü 6 parça halinde Fatura adresinizden 20.08.2025 16:32:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('88fd82e4-f99d-49dc-972b-20ceb9acd8c4','3445353423553535','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('88fd9100-9102-4c3b-85c9-5a064e9fca6f','4368864127387','Sayın ABBAS GHULANI , 982978293 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982978293\n\nDear ABBAS GHULANI , your shipment with 982978293 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982978293\n\nBICARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('88fd9951-174d-4428-838b-83296ff8d211','905335708965','ÇUVALLAR adlı müşterinizin 24891590 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL),
('88fe6d10-aa80-44dc-a2e3-fc5e384d265a','33768365488','Sayın ÖZLEM ŞEKERCİ		, 910884465 nolu gönderiniz 8539 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910884465\n\nDear ÖZLEM ŞEKERCİ		, your shipment with 910884465 was delivered to you with the delivery code 8539. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910884465\n\n\nBICARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('89031694-2ee2-4c0e-a552-c28cc4bde70e','9053259981980','İSMET  IRMAK adlı müşterinizin 614659832 nolu gönderisi 119 parça halinde yola çıkmıştır.','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('89174c83-8c27-4fba-a3c6-c1639d3ce630','31634506011','Sayın MURAT BAĞCI, 614460765 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614460765\n\nDear MURAT BAĞCI, your shipment with 614460765 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614460765\n\nBICARGO','1','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL),
('891895bd-a277-4a9b-a732-9066650ad85b','4917663706491','Sayın AYŞE ŞEKER, 976114868 nolu gönderiniz 1777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976114868\n\nDear AYŞE ŞEKER, your shipment with 976114868 was delivered to you with the delivery code 1777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976114868\n\n\nBICARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('8919c44f-bf57-48f3-bf1b-2ac0887f9a4b','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin BAĞDAT KARYOLA 2 KOMODİN ürünü 15 parça halinde AKYOL adresinizden 19.09.2025 11:14:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('891d8f88-c25a-4fb6-b918-08e3eebce487','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL TV ÜNİTESİ ALT BLOK ŞÖMİNELİ ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('891dfadf-866a-4938-b722-76ac3820b80a','905078062550','MELİKZADE AHMET ATAY adlı müşterinizin 598493196 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('89204d84-fce2-41a5-9340-082e283b5ba4','32487160490','64415501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64415501\n\nYour shipment with the number 64415501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64415501\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('89233771-8a00-48c6-ab66-818366c8cc03','905331602195','Sayın yetkili; MUSA BEKİM adlı müşterinize 221624652 nolu gönderinizin 80x20 dresuar ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:46:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('8927a600-9fec-45a2-8142-716551d5168f','491637771977','Sayın YASEMİN MUTLU, 598131456 nolu gönderiniz 7632 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598131456\n\nDear YASEMİN MUTLU, your shipment with 598131456 was delivered to you with the delivery code 7632. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598131456\n\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('8931da8e-a37b-49c4-9c02-c6529b714e62','905079358213','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin MERLİN KOLTUK TAKIMI ürünü 4 parça halinde INHOUSE  adresinizden 10.06.2025 11:44:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('89330f09-2e63-4a98-989a-0f58d51486c1','905442774505','MERVE KIZILIRMAK adlı müşterinizin 657258901 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('8935a587-6270-4422-98cd-aa5f0f028172','905336367828','FLORJEN KRASNİGİ adlı müşterinizin 982310142 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL),
('89366e4a-4683-4e8e-8710-a13125547f4a','33638503809','517110811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517110811\n\nYour shipment with the number 517110811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517110811\n\nBICARGO','1','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL),
('8936fb08-8191-4188-8741-81d96451ab99','33766392423','Sayın MARİGLEN SHKEMBİ, 437431907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437431907\n\nDear MARİGLEN SHKEMBİ, your shipment with 437431907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437431907\n\nBICARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('8938c274-19c1-429d-baa1-b62f18e93c51','3747473663636373','Sayın ONUR MAHAR, 019113818 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019113818\n\nDear ONUR MAHAR, your shipment with 019113818 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/019113818\n\nBICARGO','2','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('8939a70c-397e-48fc-a335-5f26c83eb946','4917664132163','Sayın SHİMA MAKEH VANDİ, 371865484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371865484\n\nDear SHİMA MAKEH VANDİ, your shipment with 371865484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371865484\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('893c5c85-5ab4-481c-a209-75c31c09af92','491791902931','412846685 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7931 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412846685\n\nYour shipment with the number 412846685 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7931. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412846685\n\nBICARGO','1','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('894aee68-cd12-4a71-a2a4-8ef7196316d3','491741677309','Sayın ALPER ALBAYRAK, 371400028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371400028\n\nDear ALPER ALBAYRAK, your shipment with 371400028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371400028\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('894b46b4-72b6-4b72-82e4-2ddf6402c4c5','905454259202','Sayın yetkili; ÖZLEM RAMADAN adlı müşterinize 478150977 nolu gönderinizin 8 adet sandalye ürünü 4 parça halinde beymi sandalye adresinizden 29.01.2025 11:34:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('894fd70f-aa3d-4f94-bb55-ac06922e4f7d','33698234123','982446186 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3808 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982446186\n\nYour shipment with the number 982446186 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3808. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982446186\n\nBICARGO','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('8954c4c5-123d-43ff-a153-d09c8c73b668','905349208933','YUNUS BEY adlı müşterinizin 127504677 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('89580480-8d63-404a-b55c-d2b8815c01c9','905335511664','Sayın yetkili; ELİF KAVUCUK adlı müşterinize 37197237 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 21.03.2025 14:10:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('8960a678-7538-42c3-949c-de83573282ef','905510396989','ARZU ÜNLÜ adlı müşterinizin 319515461 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('896176a8-7057-47ba-bfa8-154371d9be07','905336367828','Sayın yetkili; AYDIN KEMERLİ  adlı müşterinize 982837523 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 30.12.2024 14:05:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('896493d7-17f5-49ac-9455-b0dcbc3ca088','33651400749','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('896ae3b8-122d-4542-bc96-266cdde363d1','31648122803','Sayın ERKAN KARAKUŞ , 248614567 nolu gönderiniz 9399 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248614567\n\nDear ERKAN KARAKUŞ , your shipment with 248614567 was delivered to you with the delivery code 9399. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248614567\n\n\nBICARGO','1','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL),
('896cf06e-5961-457e-b9d2-19362fca3ce8','4915204351936','Sayın EMİNE İMRAG, 808830873 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808830873\n\nDear EMİNE İMRAG, your shipment with 808830873 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808830873\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('896de292-cfce-4b1f-9c5b-6fbb7fdcc268','905389543828','ŞİRİN BALCIN adlı müşterinizin 486181220 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('89719044-2b20-40e4-bac7-ea757e3dad4b','905335458833','AHMET YILDIRIM adlı müşterinizin 334206952 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('8972d3ef-077e-4cf1-88a2-a7b351bb342c','33637302044','Sayın CENGİZ SAKALI , 910926193 nolu gönderiniz 10672 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910926193\n\nDear CENGİZ SAKALI , your shipment with 910926193 was delivered to you with the delivery code 10672. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910926193\n\n\nBICARGO','1','737675a9-68eb-41a7-946f-b0dfff8d03bf',NULL),
('8973b72a-7cfb-4543-8fa3-81f040cf75c2','491724690226','Sayın ŞEVKET ZİRİH, 478545295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478545295\n\nDear ŞEVKET ZİRİH, your shipment with 478545295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478545295\n\nBICARGO','1','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('897d10ad-e373-4753-960e-c18f18ad8b5c','905388618969','ESRA MURATOGLU adlı müşterinizin 786276080 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('89891412-7238-4042-9308-7f2458116946','33651552074','Sayın ERDAL ULAŞ, 910645687 nolu gönderiniz 7214 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910645687\n\nDear ERDAL ULAŞ, your shipment with 910645687 was delivered to you with the delivery code 7214. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910645687\n\n\nBICARGO','1','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL),
('89893ee9-78f7-44d9-8d46-0c696a080335','905331602195','ANİL ZAMUR  adlı müşterinizin 221204525 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('898a0621-4389-4561-91f2-381592895782','436605954440','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('898a98a6-02be-4ab8-ad29-beaa65f8911e','4917657842770','505332275 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505332275\n\nYour shipment with the number 505332275 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505332275\n\nBICARGO','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('898eb147-0413-43f7-b3b5-12d20f1794dd','5444482458','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('898f840f-c085-4580-b94a-a91d9f3aa913','905331602195','ÖZAY ÖZDEMİR YILDIZ (SSH) adlı müşterinizin 221530805 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('898fb87c-853e-49bd-b0fd-62e216b718c9','33783160277','Sayın MUSTAFA YILMAZ SSH , 745338988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745338988\n\nDear MUSTAFA YILMAZ SSH , your shipment with 745338988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745338988\n\nBICARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('89929a0e-7131-47e1-803f-812aebf09dff','905075277637','Sayın yetkili; BURÇİN MEN adlı müşterinize 745970479 nolu gönderinizin BLACKLINE DOLAP  ürünü 3 parça halinde RİXXE  adresinizden 03.09.2025 18:00:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('89983eef-3092-4e4f-865a-afc923612266','0614160996','Sayın ATIL SOPHİA, 505850944 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505850944\n\nDear ATIL SOPHİA, your shipment with 505850944 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505850944\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('899cb7ae-0186-4e0c-b73f-4f389fae98cb','905350617509','Sayın yetkili; SEVİM KARATEKE  adlı müşterinize 613528305 nolu gönderinizin Sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 01.08.2025 12:21:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('899d0442-a7b0-48d4-9b23-4f09b8dea619','905331602195','Sayın yetkili; SANAA ARGANE adlı müşterinize 221573899 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 11.08.2025 15:48:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('89a8e477-6c04-4c6f-b065-69dd89b1ab53','31686017559','Sayın AMMAR ALANİ , 248421874 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248421874\n\nDear AMMAR ALANİ , your shipment with 248421874 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248421874\n\nBICARGO','1','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL),
('89ae5b8b-fa4c-4432-bb0a-180e4365c6ce','5325000478','Sayın ADNAN DURSUN, 06.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1985864\nŞifre : 1985864\n			\nBİCARGO','1',NULL,'1f98c5bf-cc86-4e49-b222-f618c5da23fe'),
('89afa9b0-baa2-4fe0-b055-eafc511a21dd','4917672242930','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('89b0654d-8c0d-4119-a908-a76cfa59469c','905461661672','Sayın yetkili; CANSU BEYAZ adlı müşterinize 644282587 nolu gönderinizin sandalye ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 10.03.2025 14:07:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('89bf5a7f-4628-4ea6-93e6-957abdf05dad','905363385813','Sayın yetkili; Mustafa İlhan adlı müşterinize 976369647 nolu gönderinizin Koltuk ürünü 5 parça halinde SALON KOLTUK adresinizden 08.11.2024 10:45:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('89c32549-e542-478d-8f54-9b2d16bcc5c7','32472247513','221631052 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9200 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221631052\n\nYour shipment with the number 221631052 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9200. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221631052\n\nBICARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('89c38b45-aad1-4c79-a535-32e7aad2c359','905335511664','Sayın yetkili; HARUN ŞAHİN adlı müşterinize 371421349 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde SM Tasarım adresinizden 19.08.2025 15:05:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('89c49f88-f3d0-411e-b070-bad772f563c1','905304259202','Sayın yetkili; YASİN OĞUZ adlı müşterinize 478233957 nolu gönderinizin ÜÇ ADET YATAK SETİ ürünü 12 parça halinde Fatura adresinizden 20.05.2025 12:48:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('89d48f88-84ff-4476-bf4b-27859587ba51','905075277637','HÜSEYİN ÖÇAL SSH  adlı müşterinizin 745350597 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('89d92e02-4820-4a28-88c8-c1a8c8ffe335','33768423506','Sayın HATEM , 221341784 nolu gönderiniz 2717 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221341784\n\nDear HATEM , your shipment with 221341784 was delivered to you with the delivery code 2717. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221341784\n\n\nBICARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('89de4d79-4f4e-4616-80bc-ce805777bdc9','33771771223','Sayın ABDULLAH ÖZER		, 910594430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910594430\n\nDear ABDULLAH ÖZER		, your shipment with 910594430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910594430\n\nBICARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('89e0b90a-ecdc-4770-865f-35015bacd302','436604565532','Sayın MERVE HANIM, 663164000 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663164000\n\nDear MERVE HANIM, your shipment with 663164000 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/663164000\n\nBICARGO','1','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL),
('89e0c6ab-4318-4034-ae2c-970b6b60702c','491636718375','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('89e7235b-ccc1-4474-b458-c1bcc6056dcd','31655012632','Sayın SAİT CARCUR, 501423957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501423957\n\nDear SAİT CARCUR, your shipment with 501423957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501423957\n\nBICARGO','2','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('89ece441-a978-4d43-b146-05016131873f','491785990575','Sayın RECEP ONAY , 465313266 nolu gönderiniz 9580 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465313266\n\nDear RECEP ONAY , your shipment with 465313266 was delivered to you with the delivery code 9580. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465313266\n\n\nBICARGO','1','149850c7-89eb-4248-a529-b235c5710935',NULL),
('89ed10aa-f11a-4023-9b90-58ec2271e29a','905517075149','Sayın yetkili; KISMET ÖZTÜRK adlı müşterinize 478892203 nolu gönderinizin 6 ADET  SANDALYE ürünü 3 parça halinde karma sandalye adresinizden 18.08.2025 15:19:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','537f327a-f919-43fa-9be8-fa8d0af3cf00',NULL),
('89f2164f-634d-487e-a6f2-4d1faee278e0','905363385813','MEHMET KANBEROĞLU adlı müşterinizin 976441354 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('89f8c026-b94b-4a9d-8cef-43de6711c1f1','4915208560567','614859961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614859961\n\nYour shipment with the number 614859961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614859961\n\nBICARGO','1','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL),
('89f96be7-dde0-4cf3-b69b-70469da7f79c','905318109098','TÜLAY HANIM  adlı müşterinizin 455658704 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL),
('89ff83fe-27bc-4729-9e56-292510093008','905517075149','FAHRETTİN AKISKA adlı müşterinizin 478339664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('8a029dc9-ec98-4076-9902-15dd90d12119','905421855834','Sayın yetkili; MUAMMER SAYIN adlı müşterinize 338822119 nolu gönderinizin inci köşe koltuk ürünü 4 parça halinde Nar Concept adresinizden 13.12.2024 15:41:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('8a045265-c65e-4d06-b482-7689ba7906b9','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin yatak 160x200 ürünü 1 parça halinde Fatura adresinizden 14.08.2025 11:28:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('8a0ed914-43c3-4a62-96c1-1e48c6e6d239','31614754134','203497868 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6013 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/203497868\n\nYour shipment with the number 203497868 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6013. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/203497868\n\nBICARGO','1','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL),
('8a0fab31-ebb4-4162-9c6a-b59f893c5704','4917672239456','Sayın BERKANT YAŞA SSH , 745712790 nolu gönderiniz 2436 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745712790\n\nDear BERKANT YAŞA SSH , your shipment with 745712790 was delivered to you with the delivery code 2436. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745712790\n\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('8a10b3a4-bb0c-4302-8a6b-fb2ff2553e10','32490369779','745177264 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1788 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745177264\n\nYour shipment with the number 745177264 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1788. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745177264\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('8a10f7b8-0787-4104-b178-7cc09617e734','4369910728517','Sayın KENAN SEKMEN , 01914447 nolu gönderiniz 6068 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/01914447\n\nDear KENAN SEKMEN , your shipment with 01914447 was delivered to you with the delivery code 6068. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/01914447\n\n\nBICARGO','1','97182860-1f38-433b-b884-7944ccda1a30',NULL),
('8a11d27c-cf29-4128-b5d8-47f2147bdf75','4917663882376','Sayın KERİM ŞENTÜRK, 644966461 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644966461\n\nDear KERİM ŞENTÜRK, your shipment with 644966461 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644966461\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('8a1759fc-15ba-4622-be1d-f3c08cb12ce4','31621283629','Sayın DURMUŞ MEVLÜT, 614425900 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614425900\n\nDear DURMUŞ MEVLÜT, your shipment with 614425900 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614425900\n\nBICARGO','1','711413e7-9565-452a-b808-a0700618dc85',NULL),
('8a17aa33-b485-409a-a015-dae9b8ca6780','905079047428','SAKİNA RAHİMİ adlı müşterinizin 449874608 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL),
('8a1bbf7e-ca16-4a11-b58b-3f30224a1c25','9050780625509999','HAYRİYE BOZKURT adlı müşterinizin 598405313 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('8a1ca07e-aa64-4807-9788-c2342d1b6afb','905079358213','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin BOHEM DOLAP KOMODİN ŞİFONYER ürünü 13 parça halinde ACCA adresinizden 25.08.2025 11:29:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('8a1cb9e3-f838-48a3-847f-e647c1f9dc27','905461661672','ŞENOL AKKOYUN adlı müşterinizin 644535273 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('8a2348fe-ae8f-42b6-9649-d8a16ac817d2','4917684650922','745525130 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4732 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745525130\n\nYour shipment with the number 745525130 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4732. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745525130\n\nBICARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('8a23d526-2cf2-4f79-b3a3-7b12448c097a','4915901350790','Sayın ABDULKADER TARRAB, 412383870 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412383870\n\nDear ABDULKADER TARRAB, your shipment with 412383870 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412383870\n\nBICARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('8a2ae884-e6cd-4118-884e-15d7ce22b788','41765060550','Sayın SALİHAPİA LEULD, 231250162 nolu gönderiniz 5356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231250162\n\nDear SALİHAPİA LEULD, your shipment with 231250162 was delivered to you with the delivery code 5356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231250162\n\n\nBICARGO','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('8a2b67b4-6f01-4130-8c12-b7ecc83152d5','905075277637','Sayın yetkili; AYHAN İÇEN adlı müşterinize 745813483 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü null parça halinde Fatura adresinizden 09.07.2025 17:29:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('8a2b6ac3-7464-4331-9468-dddc2f273a0a','4915223038564','Sayın BERNA YİLDİRİM, 61390448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61390448\n\nDear BERNA YİLDİRİM, your shipment with 61390448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61390448\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('8a2b8b64-98f9-4185-8e16-93282fb81b67','491637115819','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('8a2cf075-51b8-43e8-8fc7-f158c8b057ba','905313340045','Sayın yetkili; ELVAN DURSUN adlı müşterinize 437158505 nolu gönderinizin kampanya köşe ürünü 4 parça halinde bicargo depo adresinizden 06.09.2025 14:09:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('8a2d2253-fe45-4ce6-9b61-1d4001147191','4917663228369','Sayın YAVUZ GÜNEŞ, 59874048 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59874048\n\nDear YAVUZ GÜNEŞ, your shipment with 59874048 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59874048\n\nBICARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('8a2e3ddf-b728-4889-bf46-54c351b0c6c3','905331602195','AUCHLİ ANA  adlı müşterinizin 221616369 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('8a361588-58ed-4c82-acfe-910304362eca','905331602195','Sayın yetkili; BERİVAN ERTUĞRUL  adlı müşterinize 221559079 nolu gönderinizin 90x190 Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.08.2025 10:36:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('8a386112-7f19-492c-b69f-707ebb567d6e','905534084469','Sayın yetkili; NEVZAT HACIOĞLU adlı müşterinize 15153034 nolu gönderinizin KÖŞE KOTUK TAKIMI ürünü 2 parça halinde Fatura adresinizden 24.04.2025 14:58:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('8a3c1a68-f2bd-4310-aeb7-b0e97533bb89','905333221039','MEHMET AKİF ATAMAN adlı müşterinizin 750498273 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL),
('8a40d99d-db75-41eb-b542-3f26dd96608e','436642175788','371521572 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10402 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371521572\n\nYour shipment with the number 371521572 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10402. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371521572\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('8a46c035-38b3-4b3f-9ba0-6597ddd702b1','31641101237','Sayın MURAT ŞEKER , 478832291 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478832291\n\nDear MURAT ŞEKER , your shipment with 478832291 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478832291\n\nBICARGO','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('8a49c46d-3043-418a-8688-6777eb281d4e','33616563372','Sayın DANFA, 817288476 nolu gönderiniz 2935 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817288476\n\nDear DANFA, your shipment with 817288476 was delivered to you with the delivery code 2935. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817288476\n\n\nBICARGO','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('8a4c01e9-419e-474d-81af-d4e36c8ff712','4917661327084','Sayın DUYGU METE, 371394707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371394707\n\nDear DUYGU METE, your shipment with 371394707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371394707\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('8a5386ec-bd45-46c9-a4f9-8c527385bf21','41788864551','478593603 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478593603\n\nYour shipment with the number 478593603 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478593603\n\nBICARGO','1','28745864-aae9-4957-9346-b61332e96fff',NULL),
('8a594583-c636-413f-9478-8b0dc932877f','33651400749','910756975 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910756975\n\nYour shipment with the number 910756975 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910756975\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('8a5980bb-ca04-4507-997d-cf31b7aeca88','905054335859','ŞAZİYE KARABACAK adlı müşterinizin 50133684 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('8a5b7294-dfa3-448d-8577-b22e90178419','31646621867','644298759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10903 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298759\n\nYour shipment with the number 644298759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10903. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644298759\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('8a665402-932d-4cc6-8c69-70d8a4ab97bd','491728162123','Sayın ŞENGÜL BABAOĞLU, 371304914 nolu gönderiniz 8774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371304914\n\nDear ŞENGÜL BABAOĞLU, your shipment with 371304914 was delivered to you with the delivery code 8774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371304914\n\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('8a67ac9d-0199-48b2-bc1d-9b4b87470a94','4917661925156','İletişim \n					Şöför Uğur Acar +905424435917','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('8a6b65ca-9671-42fb-a245-8f7260a2a544','33769135395','Sayın ZÜLEYHA MUĞLU, 750486427 nolu gönderiniz 7557 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750486427\n\nDear ZÜLEYHA MUĞLU, your shipment with 750486427 was delivered to you with the delivery code 7557. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750486427\n\n\nBICARGO','1','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL),
('8a771162-651d-46a7-b98b-80c01d200c96','905075277637','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin MONNA BAZALI KARYOLA  ürünü 6 parça halinde RİXXE  adresinizden 05.08.2025 09:43:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('8a7f4272-3a35-48a5-8c91-a1f5218d40bc','905451571652','VİET ANH THAİ adlı müşterinizin 531250587 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('8a867201-f3c6-4d57-ab9a-8b4719e6455d','491747444351','Sayın MUHAMMET ÖZKAN, 47830878 nolu gönderiniz 3915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47830878\n\nDear MUHAMMET ÖZKAN, your shipment with 47830878 was delivered to you with the delivery code 3915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47830878\n\n\nBICARGO','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('8a8818a3-b6c9-4fb6-8b54-6a299727a199','33632142652','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('8a885652-dcda-4661-bf5b-4c1bf649d821','4384548568','Sayın EMRE DİNÇ, 52896910 nolu gönderiniz 8970 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/52896910\n\nDear EMRE DİNÇ, your shipment with 52896910 was delivered to you with the delivery code 8970. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/52896910\n\n\nBICARGO','2','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL),
('8a8ae300-a27d-47e1-8908-a9c274d3399a','905300961610','SEZER BEY adlı müşterinizin 126922033 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','9f748f02-e185-45e0-9d24-ee921761490f',NULL),
('8a8e9d3a-25bc-4d23-a882-ce04292118bf','491638317510','Sayın MUSTAFA , 45559266 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/45559266\n\nDear MUSTAFA , your shipment with 45559266 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/45559266\n\nBICARGO','1','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL),
('8a952f38-60aa-4070-a8d0-356b7b4ac301','4915735267419','Sayın LYUDMİLA KORUNOVSKA, 371121937 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371121937\n\nDear LYUDMİLA KORUNOVSKA, your shipment with 371121937 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371121937\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('8a99edbb-fdbb-46e0-9112-0301c39a0526','4915778860967','Sayın MERYEM BULAK , 745374253 nolu gönderiniz 7634 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745374253\n\nDear MERYEM BULAK , your shipment with 745374253 was delivered to you with the delivery code 7634. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745374253\n\n\nBICARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('8a9ec91c-9a33-44e8-9b36-f69a8e1fdc7b','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin DELUXE YATAK 100X200 ürünü 1 parça halinde Fatura adresinizden 06.08.2025 15:15:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('8a9f5582-558d-4150-8976-a967ef182a9e','4915560261024','Sayın HALİL İBRAHİM BACAKSIZ, 97623604 nolu gönderiniz 10712 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/97623604\n\nDear HALİL İBRAHİM BACAKSIZ, your shipment with 97623604 was delivered to you with the delivery code 10712. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/97623604\n\n\nBICARGO','1','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL),
('8aa2ebfd-1749-45aa-8aa4-2e914e522143','905075277637','MILANA PRODANOVIC adlı müşterinizin 745837821 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('8aa6dfab-79f3-4a51-849b-7479af426304','905517075149','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin 6 kapaklı dolap ürünü 7 parça halinde GARDEROBE adresinizden 11.07.2025 10:37:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('8ab3ec52-3073-4110-ab41-fd9a7e60602f','905350617509','Sayın yetkili; ASUDE FİLİZER adlı müşterinize 613786429 nolu gönderinizin Masa+orta sehpa ürünü 5 parça halinde Masami adresinizden 11.04.2025 17:37:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('8ab538fa-4a79-4d73-9c19-f76b0db500e0','330753353258','Sayın QASIM MOHAMMADİ, 982331367 nolu gönderiniz 7342 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982331367\n\nDear QASIM MOHAMMADİ, your shipment with 982331367 was delivered to you with the delivery code 7342. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982331367\n\n\nBICARGO','1','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL),
('8ab8a8fa-b549-4555-be24-ff843448367b','905318109098','AAA adlı müşterinizin 45592606 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','8772de92-e350-425f-a8eb-0c7d440b804f',NULL),
('8ac06a42-6c75-4be8-b9d5-a9dc2bc8349c','905331602195','MUHAMMED ARACI adlı müşterinizin 221247114 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('8ac196d0-327b-41cf-a302-17b147fe214f','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin YEMEK MASASI ürünü 3 parça halinde mobilyalar  adresinizden 17.10.2025 16:04:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('8aceab05-a02e-424d-9aa1-a5751b1ad3d8','905368336516','SEDA -  MUSTAFA SERCAN GUNDOGMUS  adlı müşterinizin 515829047 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','7a1c035d-4dfb-480e-bc9c-b1a62adfa157',NULL),
('8ad0766f-384a-491f-bae9-ec3413e7464e','33783160277','Sayın MUSTAFA YILMAZ, 745445888 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745445888\n\nDear MUSTAFA YILMAZ, your shipment with 745445888 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745445888\n\nBICARGO','1','177d16d4-44e0-4c83-bf57-ccaa02fc61de',NULL),
('8ad21e2a-c5b4-4d1e-a866-daeeeaddbab4','491741928164','Sayın İLAYDA GÜNEŞ, 371528044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371528044\n\nDear İLAYDA GÜNEŞ, your shipment with 371528044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371528044\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('8ad9e428-94f0-4783-b428-50d14ef9c74e','41764721719','Sayın BESİR FAZLİJİ, 613168811 nolu gönderiniz 8269 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613168811\n\nDear BESİR FAZLİJİ, your shipment with 613168811 was delivered to you with the delivery code 8269. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613168811\n\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('8adf23bb-d8f8-4ecc-8125-e8fc2d5634c0','905331602195','Sayın yetkili; TALL YOANN adlı müşterinize 221132707 nolu gönderinizin 90x190 nevada ceviz  masa ürünü 3 parça halinde Fatura adresinizden 21.01.2025 11:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('8ae51dcf-a2a3-41c0-ab73-b671f3776aae','905331602195','Sayın yetkili; MUHAMMED-ÖZGÜL KÜÇÜKTAŞ(SSH) adlı müşterinize 221561968 nolu gönderinizin 45 çap sehpa üst  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:21:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('8af371e9-23fc-46de-a6d3-afe7fe36f203','905428209234','REYHAN BİLDİRİCİ adlı müşterinizin 3198601 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL),
('8af445d2-d1d1-4886-b866-db42b1ec7431','33651994085','97684781 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8237 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/97684781\n\nYour shipment with the number 97684781 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8237. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/97684781\n\nBICARGO','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('8af8f497-d23f-4a81-83fc-aef1e50f5c57','41794543642','Sayın ALTİN RAMADANİ, 61355212 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61355212\n\nDear ALTİN RAMADANİ, your shipment with 61355212 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61355212\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('8afb2696-7529-4817-aecd-c6e7f49a1135','4915771337736','Sayın ŞÜKRÜ AK, 598445423 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598445423\n\nDear ŞÜKRÜ AK, your shipment with 598445423 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598445423\n\nBICARGO','1','a42a1c77-dffe-41cf-b2b2-08ccedab680b',NULL),
('8afc735a-9716-446e-8b35-afd4e2f9fa27','2132132231321','Sayın ASASSADASDSA, 382253716 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/382253716\n\nDear ASASSADASDSA, your shipment with 382253716 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/382253716\n\nBICARGO','2','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL),
('8afd3ad0-0846-4627-b48d-5ec10e693327','905079358213','MEHMET KAÇIRAN adlı müşterinizin 745484472 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('8b017513-6515-4d4d-9472-5a52da4f7a31','33782398897','Sayın TAKİ ÇAYCI(K), 644257752 nolu gönderiniz 3121 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644257752\n\nDear TAKİ ÇAYCI(K), your shipment with 644257752 was delivered to you with the delivery code 3121. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644257752\n\n\nBICARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('8b0320ba-32d6-4094-9d57-ffa67faa2ffe','905461661672','Sayın yetkili; MELDA KARA adlı müşterinize 64451300 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 27.03.2025 14:19:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('8b08a6ab-5b13-46c2-a232-9d7ceb90700e','905069116877','Sayın yetkili; GİZEM YILDIRIM adlı müşterinize 817500904 nolu gönderinizin KOLTUK ürünü 6 parça halinde Fatura adresinizden 21.03.2025 14:31:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('8b0e7430-1432-40e0-81f2-ab55eda38c73','4917632216516','Sayın SWETLANA NESCHİNSKİ, 221989961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221989961\n\nDear SWETLANA NESCHİNSKİ, your shipment with 221989961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221989961\n\nBICARGO','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('8b138c12-93e2-4dbd-a39a-cc393c3fc633','4917670174690','Sayın KADER KAVAL , 817213476 nolu gönderiniz 9261 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817213476\n\nDear KADER KAVAL , your shipment with 817213476 was delivered to you with the delivery code 9261. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817213476\n\n\nBICARGO','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('8b1c8461-b1db-421a-8e61-c3edaf01fb00','4915254883380','Sayın , 12630810 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12630810\n\nDear , your shipment with 12630810 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/12630810\n\nBICARGO','1','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL),
('8b1d4577-d3a1-4378-b63c-c87897408da8','4917681106453','Sayın RUKİYE BARUT SSH, 644625326 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644625326\n\nDear RUKİYE BARUT SSH, your shipment with 644625326 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644625326\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('8b1db863-acdd-48e1-bb1f-e2fdb54ad943','905079358213','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin KING PLATIN BAZA SETİ  ürünü 4 parça halinde Fatura adresinizden 20.05.2025 14:24:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('8b20896b-9d45-4ac2-adab-e0e29e335e76','905079358213','Sayın yetkili; RAMAZAN DUMAN adlı müşterinize 745343811 nolu gönderinizin ELİT KÖŞE KOLTUK  ürünü 4 parça halinde SİNAN KÖŞE  adresinizden 16.06.2025 11:40:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('8b224333-de49-4e5f-a686-a5eb87efc8b6','436607081476','Sayın MİKAİL VUREL, 315903894 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/315903894\n\nDear MİKAİL VUREL, your shipment with 315903894 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/315903894\n\nBICARGO','1','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL),
('8b28f371-6bc9-48a8-8226-4903be9227bb','905079358213','ÖMER ÇALIK SSH  adlı müşterinizin 7456984 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('8b29aa16-9d22-4bb1-8f29-d0577075e576','32489389683','Sayın GÜLAY KIZIL, 221598709 nolu gönderiniz 2916 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221598709\n\nDear GÜLAY KIZIL, your shipment with 221598709 was delivered to you with the delivery code 2916. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221598709\n\n\nBICARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('8b2e4770-69b3-463b-975d-36d5cd82329b','905301592882','FATMA FİLİZ DEMİR adlı müşterinizin 910657387 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('8b301408-4bdf-4bb9-977a-9efbfbc55e83','0436781221026','412366586 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412366586\n\nYour shipment with the number 412366586 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412366586\n\nBICARGO','2','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL),
('8b320309-0988-4923-ae9f-8eb7d4a54087','905075277637','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin VİRAL BAZALI KARYOLA  ürünü 6 parça halinde FAMILY adresinizden 22.08.2025 18:46:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('8b340792-e01a-4bfd-a18a-42c68168e7ea','905079358213','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin TREND YEMEK MASASI  ürünü 3 parça halinde GARDEROBE adresinizden 07.05.2025 13:22:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('8b35a3ad-7fb1-460d-8c82-aa50035306d4','905461661672','BERNARD BEJİQ adlı müşterinizin 644714329 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('8b3a2f71-8812-4612-8799-67ebc0c29ee0','9053259981980','Sayın yetkili; OSMAN SATİCİ adlı müşterinize 614536111 nolu gönderinizin TÜRKMEN PORTO KÖŞE TAKIMI (3,12 X 2,60 CM) ürünü 4 parça halinde Fatura adresinizden 20.08.2025 14:28:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('8b3f053d-e427-4bc5-95b9-4bb9624e0200','905075277637','İSMAİL ÖZAY  adlı müşterinizin 745423192 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('8b3f46bc-67b6-47e9-9b1e-7091cfa06989','4917620022816','Sayın AYLİN AY, 371201111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371201111\n\nDear AYLİN AY, your shipment with 371201111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371201111\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('8b4664d9-ef9a-4057-b817-1345d626cb14','905312762034','Sayın yetkili; TEREZA SHARİPOVA adlı müşterinize 808790233 nolu gönderinizin Seramik Masa+6 Sandalye ürünü 8 parça halinde MASAMİ adresinizden 19.08.2025 14:16:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('8b4adea8-4ade-4447-be35-b1a980700c4e','41786601705','449279198 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2270 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449279198\n\nYour shipment with the number 449279198 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2270. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449279198\n\nBICARGO','1','cf0a7126-8c37-496d-8b00-8c055624489a',NULL),
('8b4c360f-d8ba-4171-85c6-595ac9a1d18b','4915730878935','Sayın SUAT TUGAL, 644443664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644443664\n\nDear SUAT TUGAL, your shipment with 644443664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644443664\n\nBICARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('8b4dc149-c57b-4165-8ffb-35a595f130ef','31629103799','011131883 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9428 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011131883\n\nYour shipment with the number 011131883 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9428. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011131883\n\nBICARGO','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('8b51309d-89f5-4a5b-84ec-d96c16863d91','905079358213','CEYLAN ÇELİK adlı müşterinizin 745747218 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('8b536a17-5b42-455a-a3cb-00c5e9d32928','4917620811001','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('8b537f03-da70-4466-a639-7d37f7baf119','33767845756','Sayın KÜBRA ARPA, 501588943 nolu gönderiniz 1197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501588943\n\nDear KÜBRA ARPA, your shipment with 501588943 was delivered to you with the delivery code 1197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501588943\n\n\nBICARGO','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('8b5b7863-cfd4-4d6e-a7f1-d8efd98f7d87','491629891216','Sayın HAYRİYE BOZKURT, 598405313 nolu gönderiniz 5041 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598405313\n\nDear HAYRİYE BOZKURT, your shipment with 598405313 was delivered to you with the delivery code 5041. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598405313\n\n\nBICARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('8b5c4199-8616-4392-a535-f55720fa290d','905075277637','ÖMER ÇALIK adlı müşterinizin 745127322 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL),
('8b5d60b3-1b0a-4998-a528-162bd54fd78f','4917621376557','Sayın CAN DERİN, 517337381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517337381\n\nDear CAN DERİN, your shipment with 517337381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517337381\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('8b5fb34d-1abf-444d-8d17-61b3ddc814d6','905300961610','ALMİRA adlı müşterinizin 126229931 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL),
('8b5fd72e-5338-40b3-a768-c983ed4f5a67','004915906397569','Sayın İLDA TOKOVİÇ, 735520226 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735520226\n\nDear İLDA TOKOVİÇ, your shipment with 735520226 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735520226\n\nBICARGO','2','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL),
('8b6170ac-d916-4955-a319-e58fd07376d1','905461661672','ALEYNA AKAY adlı müşterinizin 644500765 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('8b6179fa-02f5-407d-9dc6-361bc2094e9b','905078062550','ERKAN URAL adlı müşterinizin 5983047 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('8b69304e-e89d-4723-adda-ae3526464f0d','4915115830326','Sayın RAMAZAN KAYHAN SSH, 478885112 nolu gönderiniz 5801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478885112\n\nDear RAMAZAN KAYHAN SSH, your shipment with 478885112 was delivered to you with the delivery code 5801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478885112\n\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('8b69e96d-a915-45b8-a3cb-2fea9938da50','4917672315833','Sayın ALBNORA MUSTAFA , 786286562 nolu gönderiniz 7612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786286562\n\nDear ALBNORA MUSTAFA , your shipment with 786286562 was delivered to you with the delivery code 7612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786286562\n\n\nBICARGO','1','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('8b6dff80-7708-415f-b1b6-5ae58f19516b','4917664272042','Sayın REBEKKA İRMER, 644113100 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113100\n\nDear REBEKKA İRMER, your shipment with 644113100 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644113100\n\nBICARGO','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('8b71bc74-1002-46b0-822d-83f1f5ded915','4915202074220','Sayın CANKUT BEY, 858200454 nolu gönderiniz 4856 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858200454\n\nDear CANKUT BEY, your shipment with 858200454 was delivered to you with the delivery code 4856. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858200454\n\n\nBICARGO','1','3e323a55-ba70-413e-929d-bc1527816bbc',NULL),
('8b7eb6ea-ab5a-4ae4-bc49-a3186ecedb5b','905335511664','Sayın yetkili; ORHAN GAZİ ÇEKİCİ adlı müşterinize 371699257 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 28.04.2025 16:59:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('8b7ee299-5029-4ced-b0c4-719f3d7f2bb4','4368181402521','Sayın ORHAN GAZİ ÇEKİCİ, 371699257 nolu gönderiniz 6970 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371699257\n\nDear ORHAN GAZİ ÇEKİCİ, your shipment with 371699257 was delivered to you with the delivery code 6970. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371699257\n\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('8b83b76f-4584-4825-b801-7495e7976928','905349208933','Sayın yetkili; MAHMUD YUSUF ÖKDEM adlı müşterinize 127253098 nolu gönderinizin MASA VE SEHPA AYAK ürünü 3 parça halinde MELYA adresinizden 05.02.2025 15:27:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e88a712-77d4-4c0d-9244-0239da63195b',NULL),
('8b874eb8-7267-49c8-9f82-8d9b7379005b','491788201397','613431273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8265 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613431273\n\nYour shipment with the number 613431273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8265. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613431273\n\nBICARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('8b88e792-577c-4dfc-842f-b16018f186af','4917623590552','Sayın RABİA DULU, 517278082 nolu gönderiniz 5305 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517278082\n\nDear RABİA DULU, your shipment with 517278082 was delivered to you with the delivery code 5305. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517278082\n\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('8b8a2c3b-56f2-4058-92d9-0f2e2b0acdf9','905075277637','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin BONNY TV ÜNİTESİ  ürünü 4 parça halinde BRAWWA MOBİLYA BÖLÜMÜ adresinizden 16.10.2025 11:15:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('8b8ab380-9474-4288-938c-45768c312178','33616450587','Sayın WALİ MAADAN, 418857351 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/418857351\n\nDear WALİ MAADAN, your shipment with 418857351 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/418857351\n\nBICARGO','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('8b8e6bfd-ff3a-4fd4-86c7-09ea3693646d','41768164040','Sayın ZOE BACHTOLD, 449644504 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449644504\n\nDear ZOE BACHTOLD, your shipment with 449644504 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449644504\n\nBICARGO','1','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL),
('8b8ebc42-931a-4829-820a-ff79c8629f50','41765187366','Sayın SÜMEYYE KARAMAN, 428103279 nolu gönderiniz 8652 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428103279\n\nDear SÜMEYYE KARAMAN, your shipment with 428103279 was delivered to you with the delivery code 8652. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428103279\n\n\nBICARGO','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('8b91e278-92f6-4cd0-9212-188e08822f4f','905331602195','Sayın yetkili; EMBİYE DENİZ  adlı müşterinize 221394764 nolu gönderinizin 90x150-190 Traverten açılır masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 17.10.2025 14:31:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7faf0313-0350-4d8f-ae44-2086dabb4ea7',NULL),
('8b9a6595-70f4-48f8-ab4e-95222841bc4b','4917683122321','745283034 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1672 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745283034\n\nYour shipment with the number 745283034 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1672. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745283034\n\nBICARGO','1','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL),
('8b9b7544-13e0-423a-90f4-4b1865456a94','491639578000','HALİME ÜNSAL adlı müşterinizin 429340012 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL),
('8ba6182d-7894-48ed-874f-a47aeaa6fe9c','491736564566','808538086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808538086\n\nYour shipment with the number 808538086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808538086\n\nBICARGO','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('8ba9eea5-be96-48c9-b664-7bb45307c2a9','905331602195','ISENİ ELMEDİNA  adlı müşterinizin 221967241 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('8bae74e3-56e7-4e5f-a05d-868cb86bfa6d','33650063869','Sayın AYSEL-İSMAİL ÇILGIN, 478928003 nolu gönderiniz 7522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478928003\n\nDear AYSEL-İSMAİL ÇILGIN, your shipment with 478928003 was delivered to you with the delivery code 7522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478928003\n\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('8bb0cac3-2f47-47f7-b2bd-8dd28ca7081e','491737165730','Sayın MEHMET AKHAN, 371998665 nolu gönderiniz 3896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371998665\n\nDear MEHMET AKHAN, your shipment with 371998665 was delivered to you with the delivery code 3896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371998665\n\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('8bb272a3-9549-4431-bfab-e4f4b2605470','905336367828','Sayın yetkili; AYDIN KEMERLİ  adlı müşterinize 982837523 nolu gönderinizin başlık  ürünü 1 parça halinde Marki baza  adresinizden 30.12.2024 10:41:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('8bb31615-a816-48b0-ae7d-e9c549cbe83e','33665171012','982840804 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6261 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982840804\n\nYour shipment with the number 982840804 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6261. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982840804\n\nBICARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('8bb392f1-71ca-4cfe-9fc1-ff1091e55abe','4917643510470','Sayın ALBAN HASANİ, 486741087 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486741087\n\nDear ALBAN HASANİ, your shipment with 486741087 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486741087\n\nBICARGO','1','308ddadc-251a-4960-a99e-9154ac7e4c88',NULL),
('8bb73e85-e772-405d-8744-49e1f63b5004','905335511664','FATİME YILMAZ adlı müşterinizin 371626943 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('8bbad2d2-7b76-4181-8a97-850e93e94ee9','905461661672','SUAT TUGAL adlı müşterinizin 644443664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('8bbc2b5d-ef57-4b79-8818-5489c3dd30a9','33652652450','Sayın OSMAN KILINÇ, 478205168 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478205168\n\nDear OSMAN KILINÇ, your shipment with 478205168 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478205168\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('8bbed253-2ff7-4226-876b-b4827f4d60d8','33778663770','Sayın M.CEDRİC KLEINDIENST (SSH), 221105277 nolu gönderiniz 3585 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221105277\n\nDear M.CEDRİC KLEINDIENST (SSH), your shipment with 221105277 was delivered to you with the delivery code 3585. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221105277\n\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('8bc136f5-7c77-48a5-aa19-9185e1052102','4917662226476','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('8bc14bb4-caaf-48de-bf37-331c019a60fb','4915205605713','616724751 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3871 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/616724751\n\nYour shipment with the number 616724751 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3871. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/616724751\n\nBICARGO','1','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL),
('8bc29055-557c-4af9-9242-0793dc6473e0','491605646374','Sayın ZELİHA AKCAN, 910291071 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910291071\n\nDear ZELİHA AKCAN, your shipment with 910291071 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910291071\n\nBICARGO','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('8bc66b75-3aee-4f28-9fda-a7e7668624f5','905075277637','VOLKAN ARAZ adlı müşterinizin 745553590 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','6220c77f-761e-462c-a359-ad8d9ba79902',NULL),
('8bcf63f1-70e5-41d3-8fb0-ee0d6f602733','32485432209','Sayın YUSUF KAYA, 501428847 nolu gönderiniz 7619 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501428847\n\nDear YUSUF KAYA, your shipment with 501428847 was delivered to you with the delivery code 7619. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501428847\n\n\nBICARGO','1','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL),
('8bd180af-871d-43a4-a527-4d4f2ae3b1e7','9054439559150','MEHMET ORMANOĞLU adlı müşterinizin 614636969 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('8bdca222-25a4-4b07-9ad2-e0477be47fea','491738592864','Sayın  NARİN ABDİ, 081581964 nolu gönderiniz 2537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/081581964\n\nDear  NARİN ABDİ, your shipment with 081581964 was delivered to you with the delivery code 2537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/081581964\n\n\nBICARGO','1','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('8bde24bc-fac6-436b-a11a-f0acbd1606f9','31634977937','ŞÖFÖR İKETİŞİM\n					+905301824880','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('8be0dc2f-b82b-444b-bb53-4b827fda5be6','31648475188','Sayın SEMANUR KÜTÜKÇÜ, 750145910 nolu gönderiniz 3809 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750145910\n\nDear SEMANUR KÜTÜKÇÜ, your shipment with 750145910 was delivered to you with the delivery code 3809. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750145910\n\n\nBICARGO','1','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL),
('8be45c9f-f11d-4f01-830d-7d6bc122e446','905304259202','EDİZ DİNLER adlı müşterinizin 478989383 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('8be81757-a158-4a39-88e5-25bde5aefe74','4917632147972','Sayın FURKAN BARUT, 644644143 nolu gönderiniz 8609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644644143\n\nDear FURKAN BARUT, your shipment with 644644143 was delivered to you with the delivery code 8609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644644143\n\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('8bf2d630-b9ac-4369-bfaa-f19bcad42a10','41788864551','Sayın ÖMER KOLAT, 478593603 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478593603\n\nDear ÖMER KOLAT, your shipment with 478593603 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478593603\n\nBICARGO','1','28745864-aae9-4957-9346-b61332e96fff',NULL),
('8bfb23a5-e944-40a0-ac4d-785aa2b7e5ed','49538618969','Sayın NERMİN KAZAN , 786146097 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786146097\n\nDear NERMİN KAZAN , your shipment with 786146097 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786146097\n\nBICARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('8bfd6618-9fe4-4a19-bc86-b5125d4ba28d','905079358213','SEZER HATUN adlı müşterinizin 745249081 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('8c004829-e213-49e9-a015-595a5b2f4e4e','905301592882','Sayın yetkili; SELCAN ALTINSOY adlı müşterinize 910479941 nolu gönderinizin MALDİV YATAK ODASI ürünü 21 parça halinde ACCA MOBİLYA adresinizden 30.01.2025 15:48:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('8c0141b8-a867-49e7-b73c-e5ca65145574','49017661795288','Sayın İLKAY ÇİFTÇİ, 35130528 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35130528\n\nDear İLKAY ÇİFTÇİ, your shipment with 35130528 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/35130528\n\nBICARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('8c01fed1-45c7-4483-b6ac-eb8057ff4550','32484781672','Sayın GÜLSÜM UÇAR , 221345365 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221345365\n\nDear GÜLSÜM UÇAR , your shipment with 221345365 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221345365\n\nBICARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('8c03d9cb-bd92-441d-9e71-38c240a2a989','905325000478','NURAY ÖZKAN adlı müşterinizin 412767922 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('8c066261-eceb-4aef-b091-ca33bb6f3995','905304259202','Sayın yetkili; SERKAN ÖZBAY adlı müşterinize 478800752 nolu gönderinizin köşe ve iki adet tek kişilk set ürünü 9 parça halinde çelikbey inegöl depo adresinizden 25.04.2025 16:14:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('8c0a38b3-3fb5-4124-a03b-9ab85077b950','905078062550','NUSRET VAROL VURAL adlı müşterinizin 598427868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('8c124cc7-3ece-4f28-862a-e8617e7d5e3a','4915788624211','478945094 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478945094\n\nYour shipment with the number 478945094 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478945094\n\nBICARGO','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('8c150026-1825-4436-b6ba-5f0272eb06ec','905325000478','CENGİZ WAGNER adlı müşterinizin 412968518 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('8c19568f-4c29-4c38-99bf-3010bdbf0b61','3637373838383848','65722132 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10092 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65722132\n\nYour shipment with the number 65722132 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10092. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/65722132\n\nBICARGO','2','e16f7651-2afd-45bc-9a35-39463a07d099',NULL),
('8c209632-d80b-440a-860a-5cecd546ee8e','905313340045','HANİFE TURAN adlı müşterinizin 437355925 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('8c242f20-c926-4a1e-ad3a-c6a7349d9c0a','4915222699200','Sayın TAYLAN KAZAL, 371179895 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371179895\n\nDear TAYLAN KAZAL, your shipment with 371179895 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371179895\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('8c2a385c-6cb0-43f5-9f22-09eafd48d5f7','4917670742870','Sayın ALEYNA AKAY, 644500765 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644500765\n\nDear ALEYNA AKAY, your shipment with 644500765 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644500765\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('8c2db7cb-4b58-4d8c-b2a6-523082d3b97b','31612139530','Sayın DURMUŞ MEVLÜT, 614873400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614873400\n\nDear DURMUŞ MEVLÜT, your shipment with 614873400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614873400\n\nBICARGO','1','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL),
('8c339aa3-9210-4354-ae30-5002d54ba50a','905461661672','Sayın yetkili; YUNUS HADIMLI adlı müşterinize 644732617 nolu gönderinizin KOLTUK TAKIMI ürünü 3 parça halinde ADEN SOFA adresinizden 19.03.2025 11:13:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('8c37dc92-11b9-4e6c-a453-6bb55fec51b4','905350617509','Sayın yetkili; DİLBERAY MELLO adlı müşterinize 613910788 nolu gönderinizin Sandalye ürünü 4 parça halinde Ayka sandalye adresinizden 05.05.2025 15:52:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('8c3f1ce2-747d-437e-b8db-f6225f9ffa30','491784084802','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('8c449a17-44ee-406a-b717-8e9de47d6e21','905363385813','RABİA GÜNER adlı müşterinizin 97684781 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('8c4ddea4-3c4f-405a-8bc6-894ba0cbcdd0','491773328964','817317858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2221 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/817317858\n\nYour shipment with the number 817317858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2221. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/817317858\n\nBICARGO','1','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL),
('8c537b99-694d-4c87-b806-5acd27ed01ea','905451571652','ELA BAYRAM adlı müşterinizin 531737045 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('8c5dd7d3-59c9-4c1e-8722-32915e01ce15','4915204222121','Sayın SAHİN DİNÇ, 371514006 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371514006\n\nDear SAHİN DİNÇ, your shipment with 371514006 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371514006\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('8c604706-9a17-48f1-9b5a-d4e282350f1c','905368336516','NURAY DURAN adlı müşterinizin 515261200 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('8c655e56-86e9-4b2d-972f-70f7579e0da9','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin Yatak ürünü 1 parça halinde Fatura adresinizden 15.08.2025 13:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('8c68a9b8-63a1-4090-88e9-e304968d59ae','905523438971','KATRİN MESİNGER adlı müşterinizin 896847151 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('8c6b6cba-4be6-491c-9c9c-b54c7f78be50','491713800212','Sayın AHMAD KADİ, 598578683 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598578683\n\nDear AHMAD KADİ, your shipment with 598578683 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598578683\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('8c6f8406-1a44-4589-bc33-e39c2ef4e6c4','4915259155926','Sayın SİBEL BAHÇECİ, 449902693 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449902693\n\nDear SİBEL BAHÇECİ, your shipment with 449902693 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449902693\n\nBICARGO','1','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL),
('8c78ba2d-fc0c-45da-89cd-8709aa2e6672','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin SİESTA KÖŞE TAKIMI ürünü 6 parça halinde SOFANDA KOLTUK (İRONMOBİ) adresinizden 22.01.2025 16:01:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('8c7960be-9875-4e4f-b225-129c4195d935','33787068261','910304835 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910304835\n\nYour shipment with the number 910304835 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910304835\n\nBICARGO','1','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL),
('8c7b2674-73d6-4d9d-a191-ac83aac78906','33762006399','Sayın ALİ KARADUMAN, 7454878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7454878\n\nDear ALİ KARADUMAN, your shipment with 7454878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/7454878\n\nBICARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('8c85e107-ae8e-49dd-9165-a6c0b26fa232','4917623277332','Sayın BAKACAK GİRAY, 613814330 nolu gönderiniz 8850 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613814330\n\nDear BAKACAK GİRAY, your shipment with 613814330 was delivered to you with the delivery code 8850. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613814330\n\n\nBICARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('8c8bb289-7a83-4f15-8ea2-bc735b72189f','491639801426','412417422 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5582 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412417422\n\nYour shipment with the number 412417422 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5582. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412417422\n\nBICARGO','1','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL),
('8c8d3147-7989-427c-9953-a906d9dff638','905335511664','SUAT TURA adlı müşterinizin 371628660 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('8c91218a-f546-43c2-9e84-0a1ae54bfe29','33774908152','Sayın VEDAT ÜZER , 982342488 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982342488\n\nDear VEDAT ÜZER , your shipment with 982342488 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982342488\n\nBICARGO','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('8c913a77-efa0-401a-8c14-74b3da11b67e','04917684676042','Sayın SARA MOHAİUDDİN, 248216907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248216907\n\nDear SARA MOHAİUDDİN, your shipment with 248216907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248216907\n\nBICARGO','2','746346ca-da04-465b-bff8-fc464fa93ece',NULL),
('8c931f9e-62c4-4ead-a21c-0b46346f2dc6','905335511664','ENVER HAN ALKAN adlı müşterinizin 37146102 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('8c93c056-2abf-415c-96b2-debd478f8349','905451571652','Sayın yetkili; SİNEM GÖKÇE adlı müşterinize 531340061 nolu gönderinizin Tv ünitesi sehpa masa ürünü 7 parça halinde BİFURNİ adresinizden 07.07.2025 14:40:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('8c981ce0-0124-4665-bc49-60c1bd61d285','436609821810','Sayın ABDULLAH DEMİR , 745906720 nolu gönderiniz 2502 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745906720\n\nDear ABDULLAH DEMİR , your shipment with 745906720 was delivered to you with the delivery code 2502. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745906720\n\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('8c9bcac0-7a63-44ea-9ae1-0f24eaa868bf','905075277637','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin BAMBİ LATEX MASTER YATAK 160X200 2 ADET ürünü 4 parça halinde Fatura adresinizden 18.09.2025 14:19:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('8ca12616-dbe4-4390-96c0-e76745e8c065','49795927502','Sayın ÖZCAN ŞAHİN, 644589662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644589662\n\nDear ÖZCAN ŞAHİN, your shipment with 644589662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644589662\n\nBICARGO','2','846144fe-95bb-4d2a-83ea-4552d599f458',NULL),
('8ca531e4-6395-4de6-b22a-539d3c806f53','905331602195','İNAN PALA adlı müşterinizin 221210071 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('8ca58b7d-67b3-4b59-acc7-46c91a4cb2ba','9054439559150','MEHMET AKDAĞ adlı müşterinizin 614666366 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('8caacd96-1b16-40ed-9f89-645c291080a1','33782093093','455614339 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455614339\n\nYour shipment with the number 455614339 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455614339\n\nBICARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('8cad431d-e85b-470e-beeb-3c2771dcc2a7','905461661672','CYNTHİA GARLEE adlı müşterinizin 644126759 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('8caeafaa-8c7e-40e6-ae8b-0004433a6364','33744724088','Sayın EDİZ DİNLER, 478783487 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478783487\n\nDear EDİZ DİNLER, your shipment with 478783487 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478783487\n\nBICARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('8cb5fe05-79d0-47ca-ba1e-f40f239d0cf5','33767911298','Sayın ENDER ÖZBAKAR, 734965369 nolu gönderiniz 9732 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734965369\n\nDear ENDER ÖZBAKAR, your shipment with 734965369 was delivered to you with the delivery code 9732. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734965369\n\n\nBICARGO','1','d7e6d100-83c7-4980-9636-2ea6521598da',NULL),
('8cbb1ce1-d328-405c-bd30-e2709626d9e8','436606200309','Sayın SAFİYE TINCA, 371194748 nolu gönderiniz 1519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371194748\n\nDear SAFİYE TINCA, your shipment with 371194748 was delivered to you with the delivery code 1519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371194748\n\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('8cc07719-c7c9-4aa6-832a-ab881ba174ea','491629768572','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('8cc4d58a-f3ba-473a-8543-6bd6d75926eb','905461661672','Sayın yetkili; EBRU TÜRKMEN adlı müşterinize 644495739 nolu gönderinizin Sandalye  ürünü 1 parça halinde ELAKSA SANDALYE adresinizden 22.10.2025 16:00:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e1f8bc1-fbc6-4a17-9981-db921860e228',NULL),
('8cc67858-f8aa-4cb5-8835-6e6c67ac3e70','4917657764675','Sayın RUKİYE BİÇEM KAPAN, 735929791 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735929791\n\nDear RUKİYE BİÇEM KAPAN, your shipment with 735929791 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735929791\n\nBICARGO','1','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL),
('8ccb539b-b6c9-439d-b889-77d09cfba110','905540182920','Sayın Hasan bey, 412800723 nolu gönderiniz 2459 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412800723\n\nDear Hasan bey, your shipment with 412800723 was delivered to you with the delivery code 2459. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412800723\n\n\nBICARGO','1','d6348c7e-4b86-444e-859f-29dce263d04b',NULL),
('8ccbd35c-66bf-4e2a-aac4-0d00157bcb13','905304259202','HAKAN YAZICIOĞLU adlı müşterinizin 478807426 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3a570254-b092-4922-92c1-beea8773ea63',NULL),
('8ccdc5c3-6bdd-4dc9-8789-b2a8f62578f4','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223337181 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL),
('8ccfc098-8bd1-4287-9d5e-9c444d86f0d8','491712703199','Sayın EMEL SERPMEN, 745311878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745311878\n\nDear EMEL SERPMEN, your shipment with 745311878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745311878\n\nBICARGO','1','ea3c1c28-a33e-4d1d-8643-1634f428c2c7',NULL),
('8cd59055-c3c8-41db-be3f-e1282ebc85f1','905079358213','Sayın yetkili; PERİHAN GÜNAY adlı müşterinize 745770556 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü 4 parça halinde Fatura adresinizden 27.03.2025 11:40:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('8cd74d52-ff14-492c-8761-1aa767fc3cea','33640502682','982666330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4829 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982666330\n\nYour shipment with the number 982666330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4829. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982666330\n\nBICARGO','1','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL),
('8cdffa62-f047-4ded-9525-9e74eafeb4d4',NULL,' NARİN ABDİ adlı müşterinizin 081581964 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('8ce0f281-50c2-4623-b013-6357d11ef57b','4915111866659','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('8ce27a5b-35f4-49f9-b589-717bbc9cba1a','905075277637','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin VOYAGE KOLTUK TAKIMI 3+2+1+1 ürünü 5 parça halinde RİXXE  adresinizden 17.09.2025 10:39:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('8ce32a58-a0ec-43d7-bf9f-de400020d8c3','491727368947','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('8ce3b0d2-3ec4-4a56-a503-5eb6b212d377','905517075149','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 47876680 nolu gönderinizin SANDALYE AYAKLARI 6 ADET ürünü 2 parça halinde GARDEROBE adresinizden 03.09.2025 14:45:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5242bea6-83a9-46c0-b42f-249dd7e9ef0a',NULL),
('8ce5b93a-e8b4-4b30-91aa-facfe987a57c','33788243398','Sayın Emek thibaut agit, 982292057 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982292057\n\nDear Emek thibaut agit, your shipment with 982292057 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982292057\n\nBICARGO','2','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('8ce8dca7-396e-480c-b352-7c9855ea3a43','905350617509','Sayın yetkili; BAKACAK GİRAY adlı müşterinize 613814330 nolu gönderinizin Sehpa ürünü 3 parça halinde İlyas Masa adresinizden 24.06.2025 11:33:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('8ceb8537-d0fc-4f5e-ac99-89203508063c','4915112339457','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('8cedd81d-f731-4692-87d9-4c2d1e2e2f23','33603865506','91062607 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5961 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/91062607\n\nYour shipment with the number 91062607 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5961. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/91062607\n\nBICARGO','1','2791c56f-7265-461d-b1bf-4a378276ed53',NULL),
('8cf1466b-fe4b-496c-879d-06a174f7df6f','905517075149','AYŞEGÜL GÖKTEPE adlı müşterinizin 478774501 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('8cff79f0-d488-4d58-bff5-57873b4c1b64','491621988472','Sayın HALİLOVİÇ ELMA, 371104317 nolu gönderiniz 4411 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371104317\n\nDear HALİLOVİÇ ELMA, your shipment with 371104317 was delivered to you with the delivery code 4411. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371104317\n\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('8d0de2d3-d424-44b4-8bf9-4fce75cb91a6','905335708965',' adlı müşterinizin 248535027 nolu gönderisi 43 parça halinde yola çıkmıştır.','1','e3a57d2d-4adf-4846-9fa6-c92de9e727ae',NULL),
('8d12b36b-a70a-4ce4-bc47-36b027385c30','33788856164','Sayın ERKAN ÇEVİK, 41291679 nolu gönderiniz 9710 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41291679\n\nDear ERKAN ÇEVİK, your shipment with 41291679 was delivered to you with the delivery code 9710. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41291679\n\n\nBICARGO','1','0d40e91f-6390-4121-9303-5976e9f6f226',NULL),
('8d176873-fd1f-4c5d-bdef-1437bf6a6847','436604882013','Sayın AKKİZ TOPCU, 515129438 nolu gönderiniz 3043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515129438\n\nDear AKKİZ TOPCU, your shipment with 515129438 was delivered to you with the delivery code 3043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515129438\n\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('8d1eb2b4-46e9-4100-abaf-1261599f0cb2','4917620172453','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('8d23165b-f074-4e6d-ba4d-e97c4dda3f61','905454259202','KISMET URDOĞAN adlı müşterinizin 478560084 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('8d2426f3-a411-4eb7-9939-b763b16d9c41','905454259202','MUSTAFA ÇELİK adlı müşterinizin 47888654 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','dee76d86-fa33-4f64-84d6-a8bb4fd71acc',NULL),
('8d2537e6-211c-4d38-8f88-d1b9ba8d97e8','905510396989','MEHDİ NAEİMİ adlı müşterinizin 319275080 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('8d27bac3-044b-4243-b633-deb98cb48c9d','4915782204531','Sayın NUR YILDIRIM, 745278745 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745278745\n\nDear NUR YILDIRIM, your shipment with 745278745 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745278745\n\nBICARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('8d331a92-5dfa-4de5-b8d5-694e356ebd09','905313340045','CEYDA KARA adlı müşterinizin 437791163 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('8d36b8dd-d800-4410-8e4d-cb9078e3e2cd','31687440743','Sayın AYEOLOWO SEKİNAT, 221433158 nolu gönderiniz 8612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221433158\n\nDear AYEOLOWO SEKİNAT, your shipment with 221433158 was delivered to you with the delivery code 8612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221433158\n\n\nBICARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('8d381064-ee32-4825-89c5-52aeabefb6c5','905078062550','Sayın yetkili; CAN ÖZKAN adlı müşterinize 598262809 nolu gönderinizin MASA ürünü 2 parça halinde SM TASARIM adresinizden 17.09.2025 11:59:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('8d39b8d0-0fcb-4996-adfa-68c9a78c7162','31687440743','221433158 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221433158\n\nYour shipment with the number 221433158 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221433158\n\nBICARGO','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('8d3d6107-88c4-45d4-8438-8ea6cda65d6f','905365908694','KREM KUTULARI adlı müşterinizin 223186784 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('8d44f195-48ee-4c57-acb6-23c9de5d9e21','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 15.10.2025 13:09:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('8d46ceed-5df2-49bc-9f01-28b355c4ec82','4917681266759','Sayın ALİ GÖKSU , 268145141 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268145141\n\nDear ALİ GÖKSU , your shipment with 268145141 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268145141\n\nBICARGO','1','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL),
('8d4ad45d-87a7-4f6d-9178-95d4f9cded21','905447402789','Sayın BİLAL ACAR, 735143086 nolu gönderiniz 8166 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735143086\n\nDear BİLAL ACAR, your shipment with 735143086 was delivered to you with the delivery code 8166. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735143086\n\n\nBICARGO','1','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL),
('8d4cf537-542f-48a3-b824-818d07c59508','33623241491','Sayın MERYEM YUMURTACI, 478154934 nolu gönderiniz 3730 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478154934\n\nDear MERYEM YUMURTACI, your shipment with 478154934 was delivered to you with the delivery code 3730. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478154934\n\n\nBICARGO','1','8b1f42c0-ccaa-4899-9782-c3ad13f853c3',NULL),
('8d4e5160-44a2-4c9e-885e-3b6e68ad48f5','905075277637','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin STOCKHOLM KOLTUK 3+3+1 ürünü 5 parça halinde VAAV adresinizden 28.08.2025 15:58:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('8d4fa8f1-b6d6-4ac5-8e5c-fdddc7fd0d56','33613393054','418120869 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6673 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/418120869\n\nYour shipment with the number 418120869 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6673. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/418120869\n\nBICARGO','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('8d61030f-95eb-4365-95bb-ccd9c99cb378','491742627039','Sayın SEDA ULUSOYLU, 371691350 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371691350\n\nDear SEDA ULUSOYLU, your shipment with 371691350 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371691350\n\nBICARGO','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('8d62919c-cb00-4ff2-a3e3-0ede4f6342ef','491624296602','644469726 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644469726\n\nYour shipment with the number 644469726 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644469726\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('8d62fb44-df9f-415b-8915-c633878ea22e','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223317066 nolu gönderisi 126 parça halinde yola çıkmıştır.','1','69ac6a84-035b-4ab3-b3f0-63c8136753f8',NULL),
('8d632860-c4ec-41b4-befe-3393cc632bca','33609307736','501786631 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10814 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501786631\n\nYour shipment with the number 501786631 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10814. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501786631\n\nBICARGO','1','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL),
('8d6a20cb-7c95-414c-a344-12ff57e9a32a','905461661672','Sayın yetkili; SEMA KUZULUK SSH adlı müşterinize 644635640 nolu gönderinizin TRAVERTEN MASA VE SEHPA ÜST TABLA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 28.05.2025 15:06:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('8d6bffb8-4e43-4e94-b3ce-c7b700f23f98','4915756457295','Sayın FATMA BİLGİN, 745353139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745353139\n\nDear FATMA BİLGİN, your shipment with 745353139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745353139\n\nBICARGO','1','e98d59d4-4583-412c-bfc4-6bec0baeab2b',NULL),
('8d711c78-02f0-4c45-8369-25fd8cab1e82','905335511664','Sayın yetkili; SAFİYE TINCA adlı müşterinize 371194748 nolu gönderinizin sehpa ürünü 2 parça halinde SM Tasarım adresinizden 21.07.2025 15:39:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('8d72da63-45d2-4ded-94e4-1ab05e68345a','905079358213','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin MERMER DESEN MASA + İKİLİ SEHPA  ürünü 4 parça halinde GÜMÜŞ MASA adresinizden 28.07.2025 17:03:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('8d731df5-959b-42da-803d-335c8bc76913','4915778521102','Sayın ENGİN TV ÜNİTESİ , 248269890 nolu gönderiniz 2314 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248269890\n\nDear ENGİN TV ÜNİTESİ , your shipment with 248269890 was delivered to you with the delivery code 2314. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248269890\n\n\nBICARGO','2','af4e1860-0998-4434-bd62-e28f7958cebe',NULL),
('8d73a1ac-c2be-450e-9866-d47e9ecb955e','905355928266','BATTAL adlı müşterinizin 412565065 nolu gönderisi 33 parça halinde yola çıkmıştır.','1',NULL,NULL),
('8d77df63-8410-4979-8fa6-f2b14b527e20','33650063869','Sayın AYSEL-İSMAİL ÇILGIN, 478928003 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478928003\n\nDear AYSEL-İSMAİL ÇILGIN, your shipment with 478928003 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478928003\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('8d7a2cef-be06-4446-9487-1364578d806d','905079358213','Sayın yetkili; BURÇİN MEN adlı müşterinize 745970479 nolu gönderinizin BLACKLINE SİFONYER AYNA PUF  ürünü 7 parça halinde Fatura adresinizden 09.09.2025 17:19:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('8d7ecc64-c374-4b85-9c75-0984b70008fd','436604414246','858708990 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7259 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858708990\n\nYour shipment with the number 858708990 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7259. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858708990\n\nBICARGO','1','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL),
('8d7ef32a-b0bf-4c09-a2a1-cf2f671ac6a7','905075277637','YASEMİN YILDIZ adlı müşterinizin 745346486 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d4eec699-15e8-4023-b611-78ceb15be51f',NULL),
('8d80d347-5b57-40c4-abec-d8311879a24f','905335511664','AKIN COŞKUNSU adlı müşterinizin 371365427 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('8d8136b0-ed9d-48f5-875e-d841e9d62416','4915758196530','745912057 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10869 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745912057\n\nYour shipment with the number 745912057 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10869. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745912057\n\nBICARGO','1','b52527d5-1a66-4241-b1c3-b951b7b28f51',NULL),
('8d859707-22b2-4f44-bb8f-9baf65a6234d','905331602195','Sayın yetkili; MUHAMMED DALKARA adlı müşterinize 221646640 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 20.06.2025 18:50:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('8d877738-ffb9-4cc0-83ea-53b96a0fdeb5','905312762034','YUSA ELLİALTI adlı müşterinizin 808427332 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('8d89a2df-0241-4a0a-a233-5439837023bb','4917624206670','Sayın DİLARA ALAMOORİ, 982632860 nolu gönderiniz 9471 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982632860\n\nDear DİLARA ALAMOORİ, your shipment with 982632860 was delivered to you with the delivery code 9471. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982632860\n\n\nBICARGO','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('8d8a2ff4-3944-48de-881d-d1bda440dc27','491737466004','Sayın PERİHAN GÜNAY, 745770556 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745770556\n\nDear PERİHAN GÜNAY, your shipment with 745770556 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745770556\n\nBICARGO','1','469ffe47-8345-4906-aaad-d07f19e1be1f',NULL),
('8d8f3443-e16b-478b-a102-fce5204afc74','4977219162688','745430976 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9888 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745430976\n\nYour shipment with the number 745430976 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9888. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745430976\n\nBICARGO','2','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('8d906a6e-fb7a-4cf1-bd0e-256b5058a49e','31625064385','Sayın MURAT AKTAŞ, 412400536 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412400536\n\nDear MURAT AKTAŞ, your shipment with 412400536 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412400536\n\nBICARGO','1','37d103ae-cd34-456d-bf73-1ddb563d8a20',NULL),
('8d9188ff-7765-44fb-a5e7-7eb436d27214','905336367828','Sayın yetkili; birsat melake  adlı müşterinize 982639053 nolu gönderinizin konsol  ürünü 1 parça halinde nacar mobilya  adresinizden 13.11.2024 10:16:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('8d9b82db-31e5-4c47-bede-8f8640ec7993','905079358213','AYŞE SÖNMEZ adlı müşterinizin 745206126 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','65292c0d-b0ed-44c8-838b-2022b2fd13ac',NULL),
('8d9cff2b-b083-42d4-81b6-b3a7dd35939e','4368120439831','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('8da41e94-1417-4a94-99b1-ac532308aa67','905078062550','MELİKZADE AHMET ATAY adlı müşterinizin 598493196 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('8dac1fa5-9d50-454b-91bf-a1024598feb8','4917666559986','Sayın OTTOMAN, 412608739 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412608739\n\nDear OTTOMAN, your shipment with 412608739 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412608739\n\nBICARGO','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('8dad282a-b5c5-4fb1-a8bb-388379e3abca','41799421699','Sayın XHEMİLE KURBOGAJ, 126274786 nolu gönderiniz 3182 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126274786\n\nDear XHEMİLE KURBOGAJ, your shipment with 126274786 was delivered to you with the delivery code 3182. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126274786\n\n\nBICARGO','1','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL),
('8dad289e-0e49-464f-b546-1cff2bff2516','4915231405303','478984010 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5852 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478984010\n\nYour shipment with the number 478984010 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5852. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478984010\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('8db3aa0c-8570-45dd-83e2-9077f5c0df4a','905336367828','SÜMEYYE KALKAN  adlı müşterinizin 98258846 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('8db44d20-de04-4c2e-a005-0dc92ff399ca','4917684245023','Sayın SEMA KUZULUK SSH, 644635640 nolu gönderiniz 6747 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644635640\n\nDear SEMA KUZULUK SSH, your shipment with 644635640 was delivered to you with the delivery code 6747. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644635640\n\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('8db578bd-1254-4321-afdc-fb9d18823409','905510396989','Aferdidita ukshinaj adlı müşterinizin 319835776 nolu gönderisi 46 parça halinde yola çıkmıştır.','1','4598b25d-5bcc-42b3-8fc2-57baa395b0d3',NULL),
('8dbb35ac-93a2-4088-aa12-c8babb7cffd6','905335511664','Sayın yetkili; ALPER ALBAYRAK adlı müşterinize 371400028 nolu gönderinizin köşe takımı ürünü 1 parça halinde Elitis Home adresinizden 04.09.2025 16:33:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('8dc04b86-52ad-4dea-9502-3d6b9fd11283','33605537745','Sayın MME MENAUR RACHİDO, 449890150 nolu gönderiniz 7327 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449890150\n\nDear MME MENAUR RACHİDO, your shipment with 449890150 was delivered to you with the delivery code 7327. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449890150\n\n\nBICARGO','1','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL),
('8dc42e07-d8aa-471d-a868-3af6912b0da0','905335511664','BÜŞRA POYRAZ adlı müşterinizin 371508043 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('8dc7e3ec-645f-49ff-811e-50d7ee554c92','491785431226','613175888 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1056 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613175888\n\nYour shipment with the number 613175888 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1056. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613175888\n\nBICARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('8dcaffb6-c00d-4f11-b473-358e84834fc7','33695585562','Sayın LEİLA GELES SSH, 745865715 nolu gönderiniz 8250 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745865715\n\nDear LEİLA GELES SSH, your shipment with 745865715 was delivered to you with the delivery code 8250. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745865715\n\n\nBICARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('8dcef5d6-5304-4da5-b685-5866cc172bc9','33749990296','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('8dd32a88-5e14-4b92-979b-89575b8a6682','4917621775296','Sayın OMER AL HASHİMİ, 248203029 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248203029\n\nDear OMER AL HASHİMİ, your shipment with 248203029 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248203029\n\nBICARGO','2','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL),
('8dd60b5a-4f03-411e-b12d-28af9b65ac0e','4915112339457','613199072 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7875 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613199072\n\nYour shipment with the number 613199072 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7875. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613199072\n\nBICARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('8dde2714-7861-46b7-a0de-6bd6ec3459bb','905394878216','Sayın yetkili; MUSA LÖK adlı müşterinize 517521279 nolu gönderinizin Koltuk Takımı ürünü 4 parça halinde Fatura adresinizden 13.01.2025 10:15:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('8de07315-5ab0-4e3a-9e74-ed089ae854d5','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Aura Berjer ürünü 1 parça halinde HomestMobilya adresinizden 12.05.2025 14:41:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('8de493fe-70b2-4207-bc0e-cf2decafc797',NULL,'Sayın yetkili;  NARİN ABDİ adlı müşterinize 081581964 nolu gönderinizin BOHEM SET ürünü 3 parça halinde Fatura adresinizden 14.02.2025 10:33:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('8de6320a-01f6-4d00-82df-2365eb582865','33695774017','478824521 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9984 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478824521\n\nYour shipment with the number 478824521 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9984. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478824521\n\nBICARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('8dea5958-e284-4aa4-8f56-e42dfbc539a9','41792382873','371396579 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9450 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371396579\n\nYour shipment with the number 371396579 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9450. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371396579\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('8df2173f-3c0e-47e6-9dd0-811b5575e05d','33787068261','Sayın EMRULLAH ŞENGÜL, 910304835 nolu gönderiniz 5611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910304835\n\nDear EMRULLAH ŞENGÜL, your shipment with 910304835 was delivered to you with the delivery code 5611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910304835\n\n\nBICARGO','1','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL),
('8df45710-f783-4e2d-a2e9-863e2aa4e516','41762266970','786254351 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1178 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/786254351\n\nYour shipment with the number 786254351 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1178. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/786254351\n\nBICARGO','1','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL),
('8df68400-6652-46a3-8e87-af1971bd8dbb','905069116877','Sayın yetkili; DANFA adlı müşterinize 817288476 nolu gönderinizin 2 kutu sandalye  ürünü 2 parça halinde Fatura adresinizden 02.10.2025 17:28:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('8e01a757-66bb-4298-8ef1-c6d6b65b1d74','905054335859','MUSA EMEK adlı müşterinizin 501622058 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL),
('8e0608f8-5996-4f41-af43-f08e5d1e8454',NULL,'FATEMEH HOSSAİNİ adlı müşterinizin 112787965 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('8e0af769-ce49-4f46-98c7-6bd772543d2e','905336367828','Sayın yetkili; ŞAHİN MUAMMER adlı müşterinize 982840804 nolu gönderinizin sandalye  ürünü 1 parça halinde Ademoğlu sandalye  adresinizden 20.02.2025 11:42:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('8e13d843-e069-413d-a2fc-600f6eb05bad','905331602195','AKKAY NADİA adlı müşterinizin 22133183 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL),
('8e14dd41-0b9e-491c-8794-605e14f94cbd','33782039319','221686815 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221686815\n\nYour shipment with the number 221686815 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221686815\n\nBICARGO','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('8e188a2e-10d6-4063-a22a-9ddd13932fdb','491744713856','ŞÖFÖR İKETİŞİM\n					+905301824880','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('8e1fb991-db28-4be6-babf-b8f9c1265a08','4915152091392','478763903 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10714 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478763903\n\nYour shipment with the number 478763903 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10714. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478763903\n\nBICARGO','1','0884b3d4-5cc0-44eb-9508-2f4bc25839ac',NULL),
('8e21430e-0616-4c56-99ea-54179d9e2188','905304259202','İNCİ TOKGÖZ adlı müşterinizin 478240909 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('8e218a50-f0f1-4022-aa09-6e5737fb4349','33602366647','Sayın GÜLÜZAR KECKİN, 745276257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745276257\n\nDear GÜLÜZAR KECKİN, your shipment with 745276257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745276257\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('8e2bc4a7-cbef-45f6-9e14-0ffcea1f60ec','4915737520214','Sayın DİLAN HANIM, 486724632 nolu gönderiniz 4608 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/486724632\n\nDear DİLAN HANIM, your shipment with 486724632 was delivered to you with the delivery code 4608. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/486724632\n\n\nBICARGO','1','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('8e37cda8-a688-4d03-a0a9-a97a628e737b','905307331627','FURKAN adlı müşterinizin 027201624 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL),
('8e3af617-a64c-4392-b09c-5094b76f77bb','905352711900','BÜLENT KILIÇ adlı müşterinizin 817682643 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('8e429dc7-e104-4f49-af6a-f1b8eb9a6863','4915789196176','Sayın TAYFUN COŞGUN, 351519592 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351519592\n\nDear TAYFUN COŞGUN, your shipment with 351519592 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351519592\n\nBICARGO','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('8e4633a7-e155-42fc-9454-80d51389f206','905354141537','830611219 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2495 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/830611219\n\nYour shipment with the number 830611219 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2495. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/830611219\n\nBICARGO','1','5e333a30-7986-4a32-be40-ecb91b558892',NULL),
('8e54f985-5c3e-4449-93f7-1f33b177b5ec','905443955915','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614741569 nolu gönderinizin DOĞA MODERN PARİS KANEPE ürünü 1 parça halinde DOĞA MODERN adresinizden 27.01.2025 15:31:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('8e58cf59-642c-46df-bba2-f34b0ddd5570','905454259202','FEHMİYE KESERCİ adlı müşterinizin 478949141 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','ac7ab08c-6eaa-4002-9075-7a985dd13c18',NULL),
('8e5c4e34-0dc6-4658-a79e-bcfb07f1cb2d','905079358213','ABDULLAH DEMİR  adlı müşterinizin 745906720 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('8e6420d5-40f1-486a-a55d-8ae79fa6ca81','905335708965','ALİ ŞİMŞEK adlı müşterinizin 735736030 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL),
('8e670061-e57e-4d5b-a348-ba415b400a11','9053259981980','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160*200 BAZA ürünü 2 parça halinde Fatura adresinizden 22.10.2025 15:03:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('8e68b1e7-6800-4acb-8fa0-bb64e8f45c58','905461661672','Sayın yetkili; TUĞBA GÜLSEVEN adlı müşterinize 64434778 nolu gönderinizin YATAK ODASI ürünü 22 parça halinde SİRO MOBİLYA adresinizden 14.03.2025 15:14:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('8e6dc567-1e14-41fd-a939-d81156d22d0e','905336367828','Sayın yetkili; NOUR MOHAMMAD YAKUBİ adlı müşterinize 982578025 nolu gönderinizin koltuk takımı ürünü 5 parça halinde Comfortlife  adresinizden 12.06.2025 18:16:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('8e7f1195-4a20-426f-ad22-e05dbd90a2ca','905075277637','HALİDE ÖZAY adlı müşterinizin 745208965 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('8e7fc143-dba7-4138-8ca2-90c7872ee1a3','905079047428','MUSTAFA AİT adlı müşterinizin 449769276 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ce4c8f08-9110-4882-8b15-e54368f68914',NULL),
('8e80594f-3ecd-4bec-b776-949e4e060905','33781635699','428326285 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9362 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428326285\n\nYour shipment with the number 428326285 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9362. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428326285\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('8e809663-bdf3-479f-b155-373a8cc0ec79','905517075149','BECET ÖZDEMİR adlı müşterinizin 478221533 nolu gönderisi 63 parça halinde yola çıkmıştır.','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('8e88802a-7e76-4dbe-ad6c-e8509029f587','491736493653','Sayın SANİYE BIÇAKÇI, 43774917 nolu gönderiniz 2807 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43774917\n\nDear SANİYE BIÇAKÇI, your shipment with 43774917 was delivered to you with the delivery code 2807. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43774917\n\n\nBICARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('8e8b300a-185d-4ff8-b6cc-8bb007064e05','33621355129','Sayın SENEL YILMAZ, 517365072 nolu gönderiniz 1034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517365072\n\nDear SENEL YILMAZ, your shipment with 517365072 was delivered to you with the delivery code 1034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517365072\n\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('8e8b7162-bd16-4da6-97ae-6b3901f72817','905075277637','OKTAY SAMET ŞAHİN adlı müşterinizin 745782616 nolu gönderisi 55 parça halinde yola çıkmıştır.','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('8e8b973b-6241-4985-ae0b-85e1993890aa','4915733572257','Sayın OLSZWESKİ MATZ, 644658399 nolu gönderiniz 5504 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644658399\n\nDear OLSZWESKİ MATZ, your shipment with 644658399 was delivered to you with the delivery code 5504. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644658399\n\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('8e8c154b-d9f0-4f10-975e-ff6c8fc9f561','905331602195','Sayın yetkili; TAYSUMA ESET adlı müşterinize 221944135 nolu gönderinizin Balat sandalye  ürünü 4 parça halinde MERT SANDALYE  adresinizden 27.02.2025 13:00:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('8e8c8f52-f487-492c-9991-31ef568cf2d3','905313340045','Sayın yetkili; MERVE BEKTİK adlı müşterinize 43752518 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 08.08.2025 14:47:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('8e8ea361-c7ef-46a9-b996-e71918d5e26d','4917630133122','Sayın ERHAN ÇEKİÇ, 644445996 nolu gönderiniz 2843 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644445996\n\nDear ERHAN ÇEKİÇ, your shipment with 644445996 was delivered to you with the delivery code 2843. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644445996\n\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('8e8f0dce-afb6-4312-99da-08d82ffdc0cd','9054439559150','GÜNGÖR SAK adlı müşterinizin 614901187 nolu gönderisi 8 parça halinde yola çıkmıştır.','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('8e982288-b8a2-4718-91cc-9fb8d8ef82fb','905059175469','ESRA SEZEN adlı müşterinizin 428122550 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL),
('8ea17122-5558-4fe7-a68f-7034dbfcb287','905331602195','RANJA SABRİ  adlı müşterinizin 221904119 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('8ea1ca63-aab7-4df4-9be7-1f2d4306b822','905331602195','LEPETİT CRİSTELLE adlı müşterinizin 221251932 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('8ea492fa-0cda-46ec-8968-c500874bf9e2','4917660866627','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('8eaa9ce8-0f95-402a-8458-9f1eedca0575','33782787916','910884465 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8539 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910884465\n\nYour shipment with the number 910884465 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8539. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910884465\n\nBICARGO','1','57416db8-ee86-40d4-9d10-8a10779dc24c',NULL),
('8eb0a3ba-8df8-46d9-86be-4900ea1949d8','905335708965','ERKAN SOYSAL adlı müşterinizin 248543155 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL),
('8eb4211d-23ff-45e7-8147-7bb3b613436d','33768120568','Sayın DEKOR ARSLAN, 412332862 nolu gönderiniz 3136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412332862\n\nDear DEKOR ARSLAN, your shipment with 412332862 was delivered to you with the delivery code 3136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412332862\n\n\nBICARGO','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('8ebdb796-8640-4647-8841-998fd79ebca0','0646051742','Sayın YOLCU EVİN, 515463699 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515463699\n\nDear YOLCU EVİN, your shipment with 515463699 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515463699\n\nBICARGO','2','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('8ebddda7-3c85-4f7a-83f9-8bf44331ab88','905325998198','MURAT BAĞCI adlı müşterinizin 614460765 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL),
('8ebfccbe-83e8-4a18-9559-fb131c258fe8','31611299714','İletişim \n					Şöför Murat : +905321616048','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('8ec18a78-ae92-4071-84b4-a6d6944744f6','1111111111111','319141495 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10704 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319141495\n\nYour shipment with the number 319141495 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10704. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319141495\n\nBICARGO','2','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('8ecd20ab-8205-4e90-9659-29c219708cd6','41765923442','Sayın ALİ BÜKLÜ, 982506182 nolu gönderiniz 2021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982506182\n\nDear ALİ BÜKLÜ, your shipment with 982506182 was delivered to you with the delivery code 2021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982506182\n\n\nBICARGO','1','9c622fdf-272f-4650-ac75-c35e205b6022',NULL),
('8ecdce8b-8dce-40b6-bc72-7ae8868042e7','905335458833','AHMET YILDIRIM adlı müşterinizin 334206952 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('8ecf864d-0a99-4bab-b6ce-8c271a9728f9','905325000478','REYHAN adlı müşterinizin 41286775 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL),
('8ed06390-3130-46a0-bc3e-e02825bd99ae','4917683122321','Sayın ÖZNUR KOŞAK, 745283034 nolu gönderiniz 1672 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745283034\n\nDear ÖZNUR KOŞAK, your shipment with 745283034 was delivered to you with the delivery code 1672. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745283034\n\n\nBICARGO','1','131fd469-6ac9-4301-8b36-4007cc1563c0',NULL),
('8ed3ff9a-23eb-4e86-aab0-08e7b023a26d','905075277637','GÜLÜZAR KECKİN adlı müşterinizin 745276257 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('8ed9824e-a6ae-418b-84f3-bebb6a11bfe4','905335708965','MAHMOUD AJİ adlı müşterinizin 248948777 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c139f73d-4a85-4217-8011-d483b3fabd11',NULL),
('8ee069d5-24ad-421a-b7c1-7fab18b6b859','905325000478','ALPEREN URHANOĞLU adlı müşterinizin 412366586 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5e10a116-1ecb-4aba-8b9d-2cd155929a91',NULL),
('8ee474a7-d483-4706-aa02-12ecb8ff27bb','4369919078247','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('8ee5910f-7b97-4525-9ede-e4cfdb91fedd','905340236938','MOSTAFA RAZOUK adlı müşterinizin 146630568 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd21e329-02ee-479d-aa79-d66d804db51d',NULL),
('8ee9aa57-c896-4f3a-a1a9-1b56661c3fa7','905461661672','CAN ALTIN adlı müşterinizin 644110179 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('8eeb4d21-4e91-4964-950a-60db16d2e86a','905335708965',' adlı müşterinizin 248383650 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd527c1b-2a83-4e69-9c2d-979c479102b0',NULL),
('8eef0d2d-721c-4e1b-9319-0288da729df8','4915732042277','Sayın BELKIS DUMAN, 478662278 nolu gönderiniz 7673 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478662278\n\nDear BELKIS DUMAN, your shipment with 478662278 was delivered to you with the delivery code 7673. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478662278\n\n\nBICARGO','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('8eef25dc-bb28-45a2-9a6a-cefbcec909e8','33609726291','517512652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3934 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517512652\n\nYour shipment with the number 517512652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3934. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517512652\n\nBICARGO','1','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL),
('8ef36e89-972c-488e-87a3-8d1120b40831','436508893388','64451300 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64451300\n\nYour shipment with the number 64451300 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64451300\n\nBICARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('8ef71467-add2-4214-bebe-485d9edce326','905539740010','HÜLYA ŞENEL  adlı müşterinizin 011195834 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('8ef7ae8e-9fbb-46ed-99cc-5d5b468cda7e','905523438971','BESTE NUR ÖZKAYA adlı müşterinizin 896769535 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('8ef831ab-b62d-4b56-a44f-4653324cd81f','905313340045','Sayın yetkili; ÖZGÜR ÇEŞME adlı müşterinize 437694817 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 22.09.2025 17:01:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('8efdedc8-3d82-418b-a052-0d88266e3a8d','905331602195','NURGÜL ÖZER adlı müşterinizin 221191139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7a425bb-cfdf-4d19-a194-e17082ccd37b',NULL),
('8eff2e7d-b087-4d4f-aeee-23c7ba4109b7','905517075149','RAMAZAN KAYHAN SSH adlı müşterinizin 478885112 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('8eff44f9-2da8-4b40-a93b-6df3fe114e88','905336367828','Sayın yetkili; EHSANULLAH SEDİGİ  adlı müşterinize 982663240 nolu gönderinizin sehpa  ürünü 1 parça halinde Comfortlife  adresinizden 12.02.2025 11:49:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('8f084b74-e3c7-481b-adc3-46fc6129196f','31618085363','Sayın HASAN YALÇIN, 221724224 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221724224\n\nDear HASAN YALÇIN, your shipment with 221724224 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221724224\n\nBICARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('8f0c20a9-6b8b-4e6d-9149-a5a5d58f2b06','905331602195','Sayın yetkili; LATİFA KHAZROUKI adlı müşterinize 221139773 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:19:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('8f1a7385-b3a2-45d7-a12e-616db8615db8','905331602195','ABARDİ NOURDİN adlı müşterinizin 221624848 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('8f1acf5a-ef42-4d35-8340-dd574f6c8032','4917657744267','644714925 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6830 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644714925\n\nYour shipment with the number 644714925 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6830. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644714925\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('8f1da44f-6114-40c4-a8a1-d8bc53be8a69','905350617509','BESİR FAZLİJİ adlı müşterinizin 613168811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('8f1f026f-73ae-46d9-9d72-31cd3c64fabe','905336367828','ALİ BÜKLÜ adlı müşterinizin 982506182 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c622fdf-272f-4650-ac75-c35e205b6022',NULL),
('8f22c47c-9d80-446b-abfb-d9f836ffb2da','905325000478','MURAT AKTAŞ adlı müşterinizin 412842533 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL),
('8f252999-d393-4562-b714-12ca00a3c284','49017661795288','Sayın İLKAY ÇİFTÇİ, 35130528 nolu gönderiniz 6922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/35130528\n\nDear İLKAY ÇİFTÇİ, your shipment with 35130528 was delivered to you with the delivery code 6922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/35130528\n\n\nBICARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('8f257407-62ab-4b1b-af1b-48e7ec987bae','31636599387','Sayın ANDREW YARBUG(K), 644799923 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644799923\n\nDear ANDREW YARBUG(K), your shipment with 644799923 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644799923\n\nBICARGO','1','7e8785f1-7130-4936-8f4d-d44ffa1d9b07',NULL),
('8f28caad-01e4-4749-bb35-a875d9af8e68','905331602195','MUHAMMED ÇETİN adlı müşterinizin 221234413 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('8f2e18a5-4d5b-4610-853d-1ac0fd27b744','4917671209008','437626008 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3332 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437626008\n\nYour shipment with the number 437626008 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3332. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437626008\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('8f34f529-0324-478e-92b7-15e0a5c73c88','4915204613986','734788911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9308 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734788911\n\nYour shipment with the number 734788911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9308. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734788911\n\nBICARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('8f3920d2-2849-496b-9c45-955dd0c2afae','905325000478','DEKORASYON adlı müşterinizin 412771828 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL),
('8f3cf24c-c2f5-47c8-89cc-25cbde6eac44','33698945005','745303876 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5203 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745303876\n\nYour shipment with the number 745303876 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5203. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745303876\n\nBICARGO','1','4d0b2acc-d1c8-46aa-b839-b13854fbe901',NULL),
('8f3f4ebd-118b-4b02-bf98-4ee6662968ce','436765917420','221247114 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2012 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221247114\n\nYour shipment with the number 221247114 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2012. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221247114\n\nBICARGO','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('8f434774-3793-4a1a-9b9c-4f4b099efcac','016099741733','Sayın İSMET  IRMAK, 614659832 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614659832\n\nDear İSMET  IRMAK, your shipment with 614659832 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614659832\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('8f43dbd3-3366-44be-8505-9154fa3a75ac','491791457419','Sayın CANSEL KUŞ, 644684020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644684020\n\nDear CANSEL KUŞ, your shipment with 644684020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644684020\n\nBICARGO','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('8f4964f6-b32d-47f4-b84a-19476f06bfde','4917642942119','Sayın AYŞE ERDEM, 428226833 nolu gönderiniz 10043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428226833\n\nDear AYŞE ERDEM, your shipment with 428226833 was delivered to you with the delivery code 10043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428226833\n\n\nBICARGO','1','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL),
('8f4a9cd9-41df-49f5-a62c-71445e316af8','905454259202','ÖMER KARAN adlı müşterinizin 478165569 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('8f4fe982-7764-4482-bcc0-5de988688c45','491722839598','Sayın OSMAN SÖYLEMEZ, 478325717 nolu gönderiniz 3271 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478325717\n\nDear OSMAN SÖYLEMEZ, your shipment with 478325717 was delivered to you with the delivery code 3271. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478325717\n\n\nBICARGO','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('8f55fdb9-215d-41a7-b57b-b4d5b9c6b254','905356503956',' adlı müşterinizin 027734999 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','51128593-b736-40db-b3d3-679310ee1e96',NULL),
('8f5ca715-d179-4bab-95c9-e039ed8032e8','905336367828','BOUKİ BOUCHRA adlı müşterinizin 982918194 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL),
('8f63cea0-83cd-4d5c-ab41-bcce81777819','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin berjer-kasa-sibular ürünü 2 parça halinde çelikbey inegöl depo adresinizden 23.06.2025 13:33:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('8f64acd7-24fb-4fac-8f0b-157e2f2ef6ef','2747463727374747','Sayın DEKORASYON, 412771828 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412771828\n\nDear DEKORASYON, your shipment with 412771828 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412771828\n\nBICARGO','2','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL),
('8f6bfb91-1e2e-46ba-a4a6-abb4b69e8cfa','4917646701488','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('8f6c75b5-41a3-41c3-b8bc-cef44487fb4d','905075277637','LEİLA GELES SSH adlı müşterinizin 745865715 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('8f7177a1-e4df-4266-b890-4b3f3fb631ad','905336367828','Sayın yetkili; ADİSA BALANCA  adlı müşterinize 982751509 nolu gönderinizin baza başlık yatak ürünü 1 parça halinde Marki baza  adresinizden 12.08.2025 16:06:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('8f729ed0-a435-4b9e-a6a0-ce00a06a02c5','905079047428','FATMİRA CELA adlı müşterinizin 449281517 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL),
('8f755d88-cba4-4249-9d90-7d9f5359aa20','33669931427','Sayın MEHMET KIZILDERE, 501488750 nolu gönderiniz 6499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501488750\n\nDear MEHMET KIZILDERE, your shipment with 501488750 was delivered to you with the delivery code 6499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501488750\n\n\nBICARGO','1','5ab946bf-4daf-4a95-a7b6-8f3505531252',NULL),
('8f762d08-2fe8-4777-90da-9d7648512308','4977219162688','Sayın METİN PEKSERT SSH , 74597110 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74597110\n\nDear METİN PEKSERT SSH , your shipment with 74597110 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74597110\n\nBICARGO','2','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('8f78352d-f615-44b9-a9c7-6202156fa71d','491773384706','745346486 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2758 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745346486\n\nYour shipment with the number 745346486 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2758. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745346486\n\nBICARGO','1','d4eec699-15e8-4023-b611-78ceb15be51f',NULL),
('8f7a69da-0e5d-4158-9f7e-8bb991bc93eb','33768910967','İletişim \n					Şöför Uğur Acar +905424435917','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('8f7f9ea1-31b6-4c80-8b64-04a0a9fc3655','905436605051','HELENA GÖKKAYA adlı müşterinizin 150685221 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('8f80624e-7b27-4005-b073-55cbf6a4e6ba','905451571652','MALİHA CETİN adlı müşterinizin 531309772 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('8f82631d-480b-487f-813b-c73981303c99','33761054646','478807426 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2937 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478807426\n\nYour shipment with the number 478807426 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2937. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478807426\n\nBICARGO','1','3a570254-b092-4922-92c1-beea8773ea63',NULL),
('8f8b1dcb-917d-496f-9552-fac1cef20e88','905349208933','Sayın yetkili; HARUN ERCAN adlı müşterinize 127847689 nolu gönderinizin karyola takımı ve yatak ürünü 5 parça halinde ALBESSA MOBİLYA adresinizden 14.05.2025 12:43:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('8f908c9d-83de-4f35-b4ee-55609f02310d','33786300110','Sayın İBRAHİM AKIN , 221594735 nolu gönderiniz 3519 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221594735\n\nDear İBRAHİM AKIN , your shipment with 221594735 was delivered to you with the delivery code 3519. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221594735\n\n\nBICARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('8fa2bd6d-4e0c-4753-a4c0-8d800a5cfde6','905335511664','Sayın yetkili; SILAMNIKU ALTRIN adlı müşterinize 371396579 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 14.05.2025 11:20:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('8fa48ed2-e8d1-4ba5-ba0d-d04a6c529c09','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin BAZALI KARYOLA ürünü 6 parça halinde ALBESSA DESİGN adresinizden 10.03.2025 11:17:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('8fa5c5bb-08a1-4519-99f2-56e16e3d9646','4915206231877','Sayın CİGDEM DENKER , 613391684 nolu gönderiniz 6304 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613391684\n\nDear CİGDEM DENKER , your shipment with 613391684 was delivered to you with the delivery code 6304. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613391684\n\n\nBICARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('8fa67733-58ab-4a60-b0c5-7f1fa3103f5e','33975706258','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','2','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('8fa730b1-f5bd-444e-ad76-333fe3ad1480','4917922929386','İletişim \n					Şöför Uğur Acar +905424435917','2','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('8fa941e6-4f96-4dbf-aff4-dcf161cd2641','31634031801','478618410 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2088 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478618410\n\nYour shipment with the number 478618410 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2088. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478618410\n\nBICARGO','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('8faa3d3d-8968-4405-a657-96f3d3306335','905454259202','YUSUF TÜRKGELDİ adlı müşterinizin 478537954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('8fb3b6ae-5f5b-422f-bd37-dfbcc1535b18','905331602195','Sayın yetkili; JASSEY COLİNE adlı müşterinize 221190454 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:35:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('8fc0dd85-dc21-4521-b450-37d6aeea5ac1','905304259202','Sayın yetkili; KEMAL ETKER adlı müşterinize 478631020 nolu gönderinizin yatak odası-masa sandalye-2 ad kanepe orta sehpa ürünü 31 parça halinde Fatura adresinizden 11.01.2025 17:54:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c4474eef-8bc5-41c6-90ed-9545793a31cf',NULL),
('8fc50872-8941-4292-9d11-4c572a770280','905079047428','Sayın yetkili; DIANA ÇELİKER adlı müşterinize 449974141 nolu gönderinizin Köşe takımı ürünü 3 parça halinde Fatura adresinizden 21.02.2025 12:18:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('8fc5cae8-1927-4f2b-bea2-03162f7e9aae','1781401509','Sayın SAMED DERE, 910717262 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910717262\n\nDear SAMED DERE, your shipment with 910717262 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910717262\n\nBICARGO','2','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('8fcaccb9-a2b0-48c9-8e65-3071db1688d7','905301592882','GÖKHAN BEKTAŞ  adlı müşterinizin 910352489 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL),
('8fcf0f9f-2778-4aff-aa6e-7e8b67fccd39','491776698040','614474485 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614474485\n\nYour shipment with the number 614474485 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614474485\n\nBICARGO','2','c5ec9d69-bb2f-4aba-896d-c9e40c0158c4',NULL),
('8fd88463-c52f-46d6-a73f-6de861e71dd2','905456068312','YUSUF KAYA adlı müşterinizin 655200069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c895ea94-60a8-412e-8679-dd76f5821b5e',NULL),
('8fdc0e14-1a3f-4e73-9300-1dfed1e598bf','4917642942119','428226833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428226833\n\nYour shipment with the number 428226833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428226833\n\nBICARGO','1','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL),
('8fdc68f7-4bc5-4696-bc23-080bd6c88f6f','905301592882','ABDULLAH ÖZER		 adlı müşterinizin 910594430 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('8fe0021a-a698-4e25-9ac9-5a759165c499','4368181273062','Sayın GAFUR NUHA, 43758285 nolu gönderiniz 4867 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43758285\n\nDear GAFUR NUHA, your shipment with 43758285 was delivered to you with the delivery code 4867. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43758285\n\n\nBICARGO','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('8fe12bcf-790a-4f07-9205-4427b30ffc30','4915757838054','Sayın FATMA ALTAY, 745871666 nolu gönderiniz 6494 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745871666\n\nDear FATMA ALTAY, your shipment with 745871666 was delivered to you with the delivery code 6494. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745871666\n\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('8fe4e902-5620-4fca-a222-be9c2decb9d9','436603406293','YONCA KİLİC adlı müşterinizin 675592889 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('8fe4f783-2160-4fb8-807c-035a41587bb0','491726260844','Sayın CEMİLE İLHAN, 817239122 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817239122\n\nDear CEMİLE İLHAN, your shipment with 817239122 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817239122\n\nBICARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('8fe7f15f-cf88-4688-b995-52d4099747a4','905459011033','SAS CONFORT CONCEPT adlı müşterinizin 268163356 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL),
('8fe88cf5-5ccc-45f4-a4ca-b3d4021803fc','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin ETRO KOLTUK TAKIMI  ürünü 4 parça halinde AREA adresinizden 06.05.2025 12:55:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('8fefc3a5-efe5-4097-9d75-c3c74f00f3ba','4917682356727','982310142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9726 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982310142\n\nYour shipment with the number 982310142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9726. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982310142\n\nBICARGO','1','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL),
('8ff0b079-fb4a-493b-b006-b1eb1e46b951','905078062550','Sayın yetkili; NUSRET VAROL VURAL adlı müşterinize 598427868 nolu gönderinizin baza başlık ürünü 6 parça halinde ALBESSA HOME adresinizden 01.08.2025 15:02:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('8ff57bae-3dde-4ab8-9432-f41f65be8d8c','905413792483','EMRE ÇELİK adlı müşterinizin 278329196 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('8ff65727-177b-40cf-bf67-0cdb730268ed','491772522817','Sayın İBRAHİM KAYA, 745823692 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745823692\n\nDear İBRAHİM KAYA, your shipment with 745823692 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745823692\n\nBICARGO','1','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL),
('90037c09-7849-4d7b-bbf0-52e1a3b96c32','06607038670','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('9003e197-cc82-43dd-8e7e-ff61391fff1a','905461661672','Sayın yetkili; EMRE GÖZÜM(K) adlı müşterinize 644312365 nolu gönderinizin SİNEKLİK MAĞAZADAN ALINACAK ürünü 1 parça halinde Fatura adresinizden 17.10.2025 10:43:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('90094a99-bc88-46a8-a702-d5c47c9b31a8','436765714761','127281736 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127281736\n\nYour shipment with the number 127281736 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127281736\n\nBICARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('900d8afd-3c8e-443e-a391-85cf94196c33','4915737960433','449393754 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6015 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449393754\n\nYour shipment with the number 449393754 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6015. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449393754\n\nBICARGO','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('90164b1c-7f27-40ef-82e5-e6f8ea456553','31633087507','437101296 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9210 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437101296\n\nYour shipment with the number 437101296 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9210. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437101296\n\nBICARGO','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('90169b76-bcf7-4072-be84-a9e30a2fece1','436604807629','808886614 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6176 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808886614\n\nYour shipment with the number 808886614 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6176. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808886614\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('901712da-7fed-4883-976f-42cbab5f2c9e','306978038133','47822949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2380 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47822949\n\nYour shipment with the number 47822949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2380. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47822949\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('90173c5f-40cc-48be-ab4a-485d405ee7aa','491725700454','Sayın yetkili; ÇİÇEK MÖBEL adlı müşterinize 046517356 nolu gönderinizin Koltuk azra ürünü 7 parça halinde Fatura adresinizden 08.10.2025 18:10:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b21c6f76-2185-4cbb-ae48-70494372e886',NULL),
('9019d8c7-4754-4287-89f6-c55f1f7fe8fd','905461661672','Sayın yetkili; ALEYNA AKAY adlı müşterinize 644500765 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 16.07.2025 15:52:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('901c21f3-cd66-4c62-ad9c-7016c9bbe52e','1636363626363636','151258703 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1821 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/151258703\n\nYour shipment with the number 151258703 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1821. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/151258703\n\nBICARGO','2','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('9021fca5-21f6-48d2-b03b-af539f8a3685','905428209234','Meliha yüksek adlı müşterinizin 319458159 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','29175f89-ad14-442c-b1fb-71c9053ba227',NULL),
('9023cbe1-ffbd-4d77-875f-37d66d650b92','905461661672','Sayın yetkili; GÜLAY FASOLD adlı müşterinize 644820551 nolu gönderinizin ORTA SEHPA  ürünü 2 parça halinde Masami Mobilya adresinizden 20.05.2025 17:25:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('902884ad-f024-4faf-ac6b-5b7045afd9e9','4916091826970','745734415 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7236 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745734415\n\nYour shipment with the number 745734415 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7236. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745734415\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('902ca066-f55e-4214-b104-c7b18090f059','905539740010','EMRE KIZIL SSH adlı müşterinizin 011222896 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('902d1258-2336-4700-8d46-bbc913a612f1','905054335859','HALİL AYDOĞAN adlı müşterinizin 501869420 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL),
('90389856-6944-47ed-97ea-bfaa7a8c6504','905331602195','MEHMET ALİ YİĞİT adlı müşterinizin 221441605 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('903a11cd-4977-49b8-a6fa-95ac9873bb91','5556268485','910245715 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2900 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910245715\n\nYour shipment with the number 910245715 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2900. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910245715\n\nBICARGO','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('903b5aad-abc6-4c28-9b00-c29703e646f2','32495328608','Sayın ÜMİT MORCA SSH, 644760466 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644760466\n\nDear ÜMİT MORCA SSH, your shipment with 644760466 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644760466\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('903dabff-dc1e-45b0-aa02-cb300b60a8ef','491729344122','478705604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1059 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478705604\n\nYour shipment with the number 478705604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1059. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478705604\n\nBICARGO','1','b859ef01-6d86-4a7c-881c-0c4d9c9eeee1',NULL),
('903e2d59-b93a-439d-a7c0-176a2e655855','1111111111111111','Sayın AAAAAAA, 735660192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735660192\n\nDear AAAAAAA, your shipment with 735660192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735660192\n\nBICARGO','2','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL),
('9041f98f-a279-4f2e-9416-f7e92b3d4cca','491783919050','Sayın MÜCAHİT SÖYLEMEZ, 47842524 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47842524\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 47842524 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47842524\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('9042bc8e-3c67-4bae-b86c-b08096edbfc1','905325165070','AKİF AĞCA adlı müşterinizin 734626870 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('904e5744-4312-4daa-abad-6b99aa5a324c','491743967643','Sayın RUKİYE DARDANOĞLU, 976521198 nolu gönderiniz 9880 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976521198\n\nDear RUKİYE DARDANOĞLU, your shipment with 976521198 was delivered to you with the delivery code 9880. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976521198\n\n\nBICARGO','1','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL),
('9051423b-1e80-4a1d-87fe-a9e1cfa1b4d0','32485453027','959168443 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1906 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959168443\n\nYour shipment with the number 959168443 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1906. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/959168443\n\nBICARGO','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('9056c170-16ba-499f-856d-bd12620e69d1','4915560564579','817838997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8713 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817838997\n\nYour shipment with the number 817838997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8713. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817838997\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('90591f91-5de6-439f-b772-999b7a0fb217','905079358213','Sayın yetkili; ÖMER YILDIZ adlı müşterinize 745249761 nolu gönderinizin VOYAGE KÖŞE KOLTUK  ürünü 3 parça halinde RİXXE  adresinizden 17.07.2025 13:01:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7979b44-eac7-41b0-a981-1f2165181d24',NULL),
('905b4345-824a-46c5-aafa-0f5662207e33','905335511664','Sayın yetkili; TAYLAN KAZAL adlı müşterinize 371179895 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 04.09.2025 16:33:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('905c1190-e679-42a2-a00d-fe3a791554c9','05417912611','Sayın CİHAN TOKAY(K), 644407379 nolu gönderiniz 10183 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644407379\n\nDear CİHAN TOKAY(K), your shipment with 644407379 was delivered to you with the delivery code 10183. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644407379\n\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('905d5791-fe44-4914-86fa-255cfb619a6b','4915204766042','Sayın RAMAZAN DUMAN, 745343811 nolu gönderiniz 1669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745343811\n\nDear RAMAZAN DUMAN, your shipment with 745343811 was delivered to you with the delivery code 1669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745343811\n\n\nBICARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('905dec87-12b7-4072-8950-af13e0550610','905079358213','ABDULLAH DEMİR adlı müşterinizin 745744183 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL),
('905f402f-8c80-4eaa-8fda-3377dedaed90','905078062550','TALHA KARA adlı müşterinizin 598384021 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('906227c5-6f4d-41b3-a8b1-25f77c930251','905461661672','Sayın yetkili; SUAT TUGAL adlı müşterinize 644443664 nolu gönderinizin MASA ürünü 2 parça halinde RENN MOBİLYA adresinizden 11.04.2025 15:20:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('90647094-92cf-4f06-a64b-950a043f4377','4917684656802','Sayın GHASAN ALBUKAİ, 289168915 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/289168915\n\nDear GHASAN ALBUKAİ, your shipment with 289168915 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/289168915\n\nBICARGO','1','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL),
('906adbde-ed5b-461b-9d61-59705a70fbf4','41799421699','Sayın XHEMİLE KURBOGAJ, 126274786 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126274786\n\nDear XHEMİLE KURBOGAJ, your shipment with 126274786 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126274786\n\nBICARGO','1','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL),
('906b3286-8219-4207-9005-6fa89ce57305','905304259202','ZEYNEP ALEYNA ÖZBEY adlı müşterinizin 478192530 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('906d28ea-dc90-43db-9d72-b4de391839bf','905517075149','Sayın yetkili; NURHAN BEYRUL adlı müşterinize 478205052 nolu gönderinizin 2 adet bazalı karyola ve yatakları (120lik ve 180 lik) ürünü 1 parça halinde Fatura adresinizden 14.10.2025 10:45:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc0e2c81-da3d-4fbc-8c40-257556b597e4',NULL),
('90701fd9-4713-4e75-ac98-ec2d3aed7fbe','33753468202','268262151 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3480 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268262151\n\nYour shipment with the number 268262151 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3480. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/268262151\n\nBICARGO','1','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('90703716-b4bc-4eb2-96b5-3c6b477b098d','905304259202','ASLI ALTINTAŞ adlı müşterinizin 478775583 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('9071b472-5d2e-4cfb-921a-dffe1d9cb3f9','01705204782','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('9073bc19-5907-4546-ab44-5a0665ad4d17','905075277637','ZEYNEP ALKIŞ adlı müşterinizin 745964132 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f82ae91-19cb-4663-bb33-377d660eea84',NULL),
('9073e5c4-b44e-485a-8950-b7ef5ff8d6ec','905335511664','METE AKGÜL adlı müşterinizin 371857345 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('9076559c-694a-484b-83aa-ae9aacfe6b89','905364752848','LİBELLA FRİSEURBEDAR  adlı müşterinizin 231216092 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd3e8ade-ee0a-4141-9b8f-81a23c9c49af',NULL),
('90789f67-e213-4da7-9153-272bd03b25aa','905424434016','HÜSEYİN KAYAOĞLU adlı müşterinizin 853766753 nolu gönderisi 80 parça halinde yola çıkmıştır.','1','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL),
('907c315e-56d4-4790-8093-a3625bb2e33b','4915204511037','Sayın FATMA GÜR, 745382052 nolu gönderiniz 5219 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745382052\n\nDear FATMA GÜR, your shipment with 745382052 was delivered to you with the delivery code 5219. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745382052\n\n\nBICARGO','1','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL),
('907dd62e-4179-41a7-bc44-56e47b984bbb','33652723801','Sayın AYNUR ÖZDEMİR , 91062607 nolu gönderiniz 5961 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91062607\n\nDear AYNUR ÖZDEMİR , your shipment with 91062607 was delivered to you with the delivery code 5961. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91062607\n\n\nBICARGO','1','2791c56f-7265-461d-b1bf-4a378276ed53',NULL),
('907f0334-3424-4b8a-b175-01f7057d0f9d','4917660956465','644526832 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644526832\n\nYour shipment with the number 644526832 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644526832\n\nBICARGO','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('9084645b-7e05-439a-bfa9-28de4aa42f33','31612139530','614873400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10313 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614873400\n\nYour shipment with the number 614873400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10313. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614873400\n\nBICARGO','1','1e9d42ff-05cc-460b-bc22-065b93bef5b5',NULL),
('90852011-97c0-465b-a1d4-0343b03735c5','905510396989','ARZU ÜNLÜ adlı müşterinizin 319829855 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('90905f4e-82b0-42de-9aff-ce61adde92ad','41765845886','Sayın RÜVEYDA ŞAHİN, 127150146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127150146\n\nDear RÜVEYDA ŞAHİN, your shipment with 127150146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127150146\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('9091111d-fabc-4147-9a8c-4754e514b1d1','905301592882','Sayın yetkili; MUSTAFA DÜNDAR		 adlı müşterinize 910775394 nolu gönderinizin SWİSS KOLTUK ürünü 3 parça halinde EVDELÜX KOLTUK adresinizden 14.02.2025 11:49:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('9091262e-b2cd-42ef-af97-61a0aa934efd','4915776361097','ŞÖFÖR İKETİŞİM\n					+905301824880','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('90996520-cab6-4991-af7c-8bf0fb788fa3','4917684805467','613508377 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3916 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613508377\n\nYour shipment with the number 613508377 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3916. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613508377\n\nBICARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('909a1156-ee97-42a2-84ca-84af206b9027','493760828565','745455914 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3511 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745455914\n\nYour shipment with the number 745455914 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3511. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745455914\n\nBICARGO','2','f07faed6-78e8-4324-9668-3a2d9d15f43d',NULL),
('909b470f-0755-4299-b507-3e76d3b1516e','905075277637','Sayın yetkili; FATMA SARI  adlı müşterinize 7455365 nolu gönderinizin SANDALYE 6 ADET  ürünü 3 parça halinde AYME HOME MEHMET adresinizden 03.07.2025 17:41:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458258c9-fe44-4947-9731-45517b0b0dba',NULL),
('909dda47-831a-45cf-9edd-b8632b2abecd','491632890514','478992248 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9912 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478992248\n\nYour shipment with the number 478992248 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9912. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478992248\n\nBICARGO','1','c106b212-52f4-41f3-8f99-1ac006f2e5af',NULL),
('909df6ee-da05-4c24-a908-705a650c3df4','905050303939','Sayın YASİN DOVENSE, 41283852 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41283852\n\nDear YASİN DOVENSE, your shipment with 41283852 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41283852\n\nBICARGO','1','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL),
('90a1670c-e505-4973-b1e2-2a282dea3ae9','491725459093','Sayın SÜLEYMAN MAKAS , 910980337 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910980337\n\nDear SÜLEYMAN MAKAS , your shipment with 910980337 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910980337\n\nBICARGO','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('90a93685-8d95-41e9-9257-69bb27cca3c2','492315800773','501163993 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6294 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501163993\n\nYour shipment with the number 501163993 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6294. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501163993\n\nBICARGO','2','e3943ece-5f39-454b-89e6-213b14b5658f',NULL),
('90ad6456-9f96-45a3-bf3e-5295da93e2e7','905075277637','BERKANT YAŞA SSH  adlı müşterinizin 745712790 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('90b24412-c4c7-469e-8cad-3810a8a41219','905304259202','KAZIM YOL adlı müşterinizin 478202878 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','702ebb26-b834-4081-a58c-2279f0d9af03',NULL),
('90b5d7c4-49b9-4c97-874a-839a34b5f39f','905075277637','METİN PEKSERT SSH adlı müşterinizin 745430976 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('90bf2acb-dbac-451e-8032-1caa41e3182f','4915154689430','478659791 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5183 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478659791\n\nYour shipment with the number 478659791 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5183. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478659791\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('90c32ac6-175f-4d2d-839f-d6962aaecd50','41788774757','Sayın VEBİ DZELLİ, 98222656 nolu gönderiniz 9468 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98222656\n\nDear VEBİ DZELLİ, your shipment with 98222656 was delivered to you with the delivery code 9468. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98222656\n\n\nBICARGO','1','df564c56-1964-45d7-946b-9c1121729fa8',NULL),
('90c560b9-65db-418a-997f-13e76dd2f136','905300961610','MÜLLER CYRİLL adlı müşterinizin 126525086 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','dff1c5a1-30f8-4700-8e1d-0fbf6bb2cfb4',NULL),
('90c7ea09-c2e7-4d79-8fec-714748fa09f2','905349208933','BURCU ŞİMŞEK adlı müşterinizin 12752907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('90caf6c0-5776-4624-a193-8614a17abfef','4917684650922','Sayın NİLÜFER YAMAN, 745972164 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745972164\n\nDear NİLÜFER YAMAN, your shipment with 745972164 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745972164\n\nBICARGO','1','8203fdec-99ef-4eea-b5d2-7dc3476dfcf5',NULL);
INSERT INTO `whatsapp_messages` VALUES
('90d1eb2c-45d4-4c16-bd2b-fbb1bd177b2f','436503555735','Sayın SUADA HAMZA , 613725694 nolu gönderiniz 6274 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613725694\n\nDear SUADA HAMZA , your shipment with 613725694 was delivered to you with the delivery code 6274. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613725694\n\n\nBICARGO','2','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('90d5278a-9cf4-4a1b-a4d8-bd633bc01086','905313340045','MEHMET SEKBAN adlı müşterinizin 437840419 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('90d6d99e-eb0d-4f0c-8c6f-5356a30fd26b','41764721719','Sayın BESİR FAZLİJİ, 613168811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613168811\n\nDear BESİR FAZLİJİ, your shipment with 613168811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613168811\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('90df1859-031e-48ee-abd4-272b07d549ac','9054439559150','ADEM  GENÇ adlı müşterinizin 614553524 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('90e0adab-39f2-45ae-964c-080b3e539694','905336367828','Sayın yetkili; ADİSA BALANCA  adlı müşterinize 982751509 nolu gönderinizin sandalye  ürünü 1 parça halinde Ademoğlu sandalye  adresinizden 12.08.2025 15:55:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('90e10ef3-cd7a-4a32-85ae-28f2e5e3f552','905331602195','Sayın yetkili; SEYİT GENÇALİOĞLU  adlı müşterinize 221476651 nolu gönderinizin Köşe koltuk  ürünü 2 parça halinde Ovimo koltuk adresinizden 09.01.2025 10:42:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('90e2b5e4-ec1f-4f42-886f-c582eb9ff526','33651128899','Sayın NURAY KARABURUN , 910407767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910407767\n\nDear NURAY KARABURUN , your shipment with 910407767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910407767\n\nBICARGO','1','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL),
('90e4a56d-93fb-48df-8432-9795a3d66eac','905054335859','Sayın yetkili; TEKİN MAZLUM adlı müşterinize 501872546 nolu gönderinizin SANDALYE ürünü 4 parça halinde Fatura adresinizden 02.01.2025 15:10:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('90ee8300-2740-4bca-8b77-2c75c57cf67c','905075277637','Sayın yetkili; ERCAN VARSAK SSH  adlı müşterinize 745282619 nolu gönderinizin BOHEM DOLAP KAPAKLARI SSH  ürünü 1 parça halinde ACCA adresinizden 26.08.2025 16:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('90f180f3-4e31-423e-8948-cd3eca220781','905059175469','Sayın yetkili; GÖKHAN UYSAN adlı müşterinize 42873500 nolu gönderinizin yatak ürünü 21 parça halinde Fatura adresinizden 30.05.2025 17:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('90f1944a-71b5-4196-89fd-0cbe1a835d29','491797361185','22140129 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9281 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22140129\n\nYour shipment with the number 22140129 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9281. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22140129\n\nBICARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('90f3716f-4ff9-428a-b575-a1fe04b292ac','41798624904','Sayın SELMA BAJRAMOSKA, 613633231 nolu gönderiniz 8960 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613633231\n\nDear SELMA BAJRAMOSKA, your shipment with 613633231 was delivered to you with the delivery code 8960. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613633231\n\n\nBICARGO','1','37032355-b423-4a3a-bb38-ee78ac469313',NULL),
('90f76df8-e253-48a1-86ec-56dc2e100d59','905325000478','TABELA adlı müşterinizin 412548356 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL),
('90fea34d-79c6-42cd-be72-768e72b6b6e2','905517075149','HANIM DOĞAN adlı müşterinizin 478730420 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('91029355-e0d2-4723-bb71-81ef0c83199e','491782206321','976245604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10795 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976245604\n\nYour shipment with the number 976245604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10795. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976245604\n\nBICARGO','1','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL),
('91049995-1d66-4ddc-abe3-1b43351c40c0','905510396989','EBUBEKİR ATA  adlı müşterinizin 319316615 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL),
('9105048b-6e01-42b9-a4d3-7cf5ff1c693b','4847477382939394','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','2','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('910669f4-7814-4046-ac8e-8924d8cf7f58','905335708965','ROYA SHARİFİ adlı müşterinizin 248614196 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL),
('91067667-48e0-43cb-a27d-ead11b9e2a32','9054439559150','ARZU BÖÇKÜN adlı müşterinizin 614680407 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('910d61af-0866-44dc-b520-7a233ea3f6ba','905336367828','ADİSA BALANCA  adlı müşterinizin 982751509 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('911156d5-e727-49da-869b-4b26da892b72','4915772539240','Sayın HASSAN KHORRAM, 598441020 nolu gönderiniz 2280 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598441020\n\nDear HASSAN KHORRAM, your shipment with 598441020 was delivered to you with the delivery code 2280. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598441020\n\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('91187dc2-343f-4318-a54a-34c02e9b45e3','4369910398530','Sayın CANAN ŞENEL, 644319069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644319069\n\nDear CANAN ŞENEL, your shipment with 644319069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644319069\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('9119c41e-0a79-4e50-82a7-505ff3433987','905454259202','YASEF İCEL adlı müşterinizin 47865598 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('911b6e01-5d90-4ff3-a3c0-751766541881','33612326252','437452475 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8813 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437452475\n\nYour shipment with the number 437452475 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8813. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437452475\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('911e02dc-e26d-43f9-b181-cbe2da1575e0','436603406293','Sayın yetkili; EDİSA MUSTAFSOVSKA adlı müşterinize 675412794 nolu gönderinizin sandalye ürünü 2 parça halinde Melya sandalye adresinizden 02.10.2025 17:15:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('911e49ee-b4b6-4120-bd72-8647264d1844','905059175469','Sayın yetkili; serdal çeper adlı müşterinize 42899153 nolu gönderinizin yan sehpa 2 adet+orta sehpa+puf ürünü 5 parça halinde family adresinizden 07.11.2024 16:53:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d01b4f69-9644-4e00-b4be-407f21dbd835',NULL),
('91202f55-0f39-4bcf-9cea-1ae767e6f01c','905461661672','MELEK IŞIK adlı müşterinizin 64418413 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('9120c361-d96e-4560-8dc4-d9a2c774b33b','33786300110','465524926 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9677 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465524926\n\nYour shipment with the number 465524926 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9677. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/465524926\n\nBICARGO','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('91217c70-9dc7-4522-acdd-3d6ab64dfed4','4917621701947','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('91242e80-d96d-471f-9d0e-1c8629a2e354','4915785563559','Sayın SOFİA KYRİAKİDOU, 371186967 nolu gönderiniz 1051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371186967\n\nDear SOFİA KYRİAKİDOU, your shipment with 371186967 was delivered to you with the delivery code 1051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371186967\n\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('912db2c5-90cd-4cbe-a64d-6b3623af84a8','33668105646','Sayın BURCU GELİR , 221461818 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221461818\n\nDear BURCU GELİR , your shipment with 221461818 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221461818\n\nBICARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('912f5430-203d-422f-b307-c19ec54a10e2','4917661518920','371400028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2731 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371400028\n\nYour shipment with the number 371400028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2731. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371400028\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('9134c90b-2459-45f7-b9a9-6af46c4cde85','4917641547802','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('9135e340-5249-4e5a-92c9-7ea3a995eb5c','33666268323','İletişim \n					Şöför Uğur Acar +905424435917','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('913624ab-77a4-4a74-8d1b-6c568892b389','905510396989','GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinizin 31925609 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('9139beeb-5908-4a13-8413-bcdc7fffc2fc','3748376263636373','478901590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10251 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478901590\n\nYour shipment with the number 478901590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10251. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478901590\n\nBICARGO','2','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('913e410e-bcde-437c-b221-8445ba76e4d1','491778742178','598548833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8303 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598548833\n\nYour shipment with the number 598548833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8303. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598548833\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('914d7af8-119f-4efc-8910-ac580e6c6273','905313340045','GÜL KOÇAK adlı müşterinizin 437672074 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('9152d30c-2fa1-40e0-9963-e34afbfd8b84','905331602195','ŞEYMA BOZDAĞ adlı müşterinizin 221940723 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('91580fde-0291-4b9b-ac1f-b291a6613761','905079358213','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin 160X200 DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 17.09.2025 10:53:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('915bc517-6ee4-491e-95a3-2b46d11e9bf8','905363385813','Sayın yetkili; SONER UZUN adlı müşterinize 976680764 nolu gönderinizin MASA TAKIMI ürünü 6 parça halinde Recai Yılmaz adresinizden 24.06.2025 14:54:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('915c9104-b074-4303-872b-f3fad1ea2daa','905428209234','ÖMER FARUK ÇANAK adlı müşterinizin 31934282 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('915d40ed-36e8-4e82-af4a-c2cd3b00996c','905313340045','ZERDOUN SALOME adlı müşterinizin 437573248 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('9161e1d0-2847-47de-873c-bcaf9ad87d05','905517075149','Sayın yetkili; YUSUF HAMZA DALKILINÇ adlı müşterinize 478423651 nolu gönderinizin Kanepe ayak kutusu  ürünü 1 parça halinde inhouse adresinizden 17.07.2025 12:43:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('916ab787-bfd9-405c-8c1a-394a413b0ab7','41793422327','371365041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365041\n\nYour shipment with the number 371365041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371365041\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('917023b8-2270-4b0c-a868-33b3cf2091f2','491726741919','Sayın DIANA ÇELİKER, 449974141 nolu gönderiniz 1798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449974141\n\nDear DIANA ÇELİKER, your shipment with 449974141 was delivered to you with the delivery code 1798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449974141\n\n\nBICARGO','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('917313ad-447d-461f-97cd-d0e08ee7f559','41798943300','Sayın ALTİN RAMADANİ, 61355212 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61355212\n\nDear ALTİN RAMADANİ, your shipment with 61355212 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61355212\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('917ab485-c8a7-4645-bbe1-22cb3fc88706','491634491802','Sayın DİYAR YEŞİLKAYA, 982547993 nolu gönderiniz 1988 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982547993\n\nDear DİYAR YEŞİLKAYA, your shipment with 982547993 was delivered to you with the delivery code 1988. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982547993\n\n\nBICARGO','1','47709c5a-15a6-491c-924f-a72a590fd417',NULL),
('917ab6dd-20df-4a68-b43e-507e3eb2d182','4917661479043','Sayın TUBA BAŞKAŞ SSH, 598876994 nolu gönderiniz 1168 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598876994\n\nDear TUBA BAŞKAŞ SSH, your shipment with 598876994 was delivered to you with the delivery code 1168. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598876994\n\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('918a9adc-b461-49d0-a99e-501ba3dfde28','905335511664','DİLAN ÇELİK TOGAN adlı müşterinizin 371881042 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('918c3ebf-dddb-4c9d-aaf2-3d67576b6be7','31638631333','Sayın DEMET HANIM, 657640918 nolu gönderiniz 2408 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657640918\n\nDear DEMET HANIM, your shipment with 657640918 was delivered to you with the delivery code 2408. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657640918\n\n\nBICARGO','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('9190cba3-c6b4-4e8e-93de-5beea83b3957','905336367828','Sayın yetkili; AMELA MULİC  adlı müşterinize 982972858 nolu gönderinizin sehpa  ürünü 2 parça halinde Sehpa İbrahim  adresinizden 15.11.2024 15:25:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('91944a09-7af1-40e6-bc79-57c2023b4e78','492352549133','Sayın ABDULLAH DEMİR, 745744183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745744183\n\nDear ABDULLAH DEMİR, your shipment with 745744183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745744183\n\nBICARGO','2','f67ccbd8-fb5a-4345-aaf5-bb5631c7c482',NULL),
('9195363f-b35e-40d1-9bc4-070e637176e2','491728162123','İLETİŞİM\n					Furkan şöför = +905078826436','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('919d3e8a-6c7c-4ddf-a13d-dc680f547df1','41798624904','Sayın SELMA BAJRAMOSKA, 613374971 nolu gönderiniz 10165 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613374971\n\nDear SELMA BAJRAMOSKA, your shipment with 613374971 was delivered to you with the delivery code 10165. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613374971\n\n\nBICARGO','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('91ae3399-9483-4384-9b65-0678cba8ed25','33621123208','Sayın İBRAHİM TANKAZ, 47815812 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47815812\n\nDear İBRAHİM TANKAZ, your shipment with 47815812 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47815812\n\nBICARGO','1','97df81d0-5a59-4e29-bb48-4768b4a079cd',NULL),
('91b08a28-d1d5-4107-b9f6-00aeb91f503b','905054335859','KÜBRA ARPA adlı müşterinizin 501588943 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('91b6cdba-38ef-44be-acbb-e75f61fcfb47','4917622702695','Sayın BAHATTİN AGİT ÇELİK, 614350153 nolu gönderiniz 3584 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614350153\n\nDear BAHATTİN AGİT ÇELİK, your shipment with 614350153 was delivered to you with the delivery code 3584. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614350153\n\n\nBICARGO','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('91b8df76-1fd4-45bd-a840-8334e67f7f3b','905368336516','YOLCU EVİN adlı müşterinizin 515463699 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('91b8ffb7-7f57-491c-900d-884cf69117be','905363385813','HAVVA GÜL adlı müşterinizin 976530579 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('91b9b49f-5038-4b4d-a1f6-93a936658f54','491727368947','Sayın MERT ÇİÇEK, 598954734 nolu gönderiniz 5927 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598954734\n\nDear MERT ÇİÇEK, your shipment with 598954734 was delivered to you with the delivery code 5927. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598954734\n\n\nBICARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('91ba1504-5200-4da6-b1c4-9ec0704404fa','4915751613198','Sayın SEPİDEH AJORLOO, 478854135 nolu gönderiniz 3399 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478854135\n\nDear SEPİDEH AJORLOO, your shipment with 478854135 was delivered to you with the delivery code 3399. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478854135\n\n\nBICARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('91c09f9b-fbd5-4c7c-a946-4c1e094b9821','491752603457','5983047 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4782 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5983047\n\nYour shipment with the number 5983047 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4782. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/5983047\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('91c2a540-ca50-490c-b5d7-f2a6fc9d8878','33753158272','Sayın FİLİZ KARAAĞAÇ, 734579794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734579794\n\nDear FİLİZ KARAAĞAÇ, your shipment with 734579794 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734579794\n\nBICARGO','1',NULL,NULL),
('91c51be7-f4d4-404f-9772-0a2e92d19d13','905313340045','MERVE KARADAVUT adlı müşterinizin 437233015 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('91c5b363-ba2b-45f6-a84b-94541c993bd8','004915258770812','Sayın HİEM OMAİRAT , 73597674 nolu gönderiniz 9162 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73597674\n\nDear HİEM OMAİRAT , your shipment with 73597674 was delivered to you with the delivery code 9162. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73597674\n\n\nBICARGO','2','c52b15d8-9b4e-4fa7-be5d-e3ec291cb51f',NULL),
('91c68b29-8b81-4aa5-b4f9-ddc60bfe42eb','5325000478','Sayın AAAAAA BBBBBBB, 26.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6094500\nŞifre : 6094500\n			\nBİCARGO','1',NULL,'60cc9c45-e005-43ac-9846-aca99952ff14'),
('91cbd820-3049-4e49-b772-f852a70094d3','905336367828','Sayın yetkili; AMELA MULİC  adlı müşterinize 982972858 nolu gönderinizin 3+3+1 koltuk  ürünü 3 parça halinde Comfortlife  adresinizden 15.11.2024 15:16:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('91dd6a7d-8743-4505-b0e9-6208d5b9f2b8','905069116877','Sayın yetkili; NİSRİN GHARİB HASSAN  adlı müşterinize 817747938 nolu gönderinizin Star köşe ürünü 6 parça halinde Fatura adresinizden 20.05.2025 10:56:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('91e6442e-ff9a-4f2c-83e2-a1027a452478','4917630112093','Sayın BERFİN HALİS ŞENGÜL, 910572875 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910572875\n\nDear BERFİN HALİS ŞENGÜL, your shipment with 910572875 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910572875\n\nBICARGO','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('91e72897-83e8-46cc-8fe2-38fa036c8545','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin ASOS GOLD MASA SANDALYE  ürünü 8 parça halinde ODALIFE  adresinizden 18.09.2025 16:33:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('91e99562-910f-4868-a1af-bef35d4221f1','9053259981980','Sayın yetkili; ARZU BÖÇKÜN adlı müşterinize 614496263 nolu gönderinizin DUVA LUCCA ORTA AYAK 2 ADET ürünü 1 parça halinde Fatura adresinizden 26.03.2025 11:30:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','528a4efc-5102-4165-8106-60f8052866e1',NULL),
('91e9f099-6735-4adf-8f29-1348fe455fa5','905331602195','Sayın yetkili; LEPETİT CHRİSTELLE adlı müşterinize 221987558 nolu gönderinizin 80x180 traverten masa  ürünü 3 parça halinde Fatura adresinizden 27.01.2025 11:03:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('91ecb651-fde8-4aea-b809-d72e3a2194aa','905073106101','TUNCAY KOÇOĞLU adlı müşterinizin 465844619 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('91efa0e9-cf25-44fd-9743-951d9bc01bef','905301592882','NURAY KARABURUN  adlı müşterinizin 910407767 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e11f564b-74bf-4751-85eb-7e44c0361b37',NULL),
('91f04788-7a6c-4302-85b7-e99d610e8a57','11111111111111','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','2','1e6caf49-6860-42e7-be14-c5cb6dd899e2',NULL),
('91fcea4d-0ba2-40d1-9d32-b53819bdb866','905325998198','ŞÜKRAN ALP adlı müşterinizin 614650407 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL),
('91fd5f00-bdc4-4e3f-8477-1a116bde820c','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin BEYLER 1IPA-100-G PİYANO AYNA GÜMÜŞ ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('920927fb-e78b-4e73-8204-3c5cf2e65b28','05380623114','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','2','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('92098796-9b57-42c7-80cc-56359eacd480','905368336516','Sayın yetkili; EMİNE MERİÇ adlı müşterinize 51557557 nolu gönderinizin masa sandalye ürünü 9 parça halinde masami adresinizden 26.09.2025 14:08:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d4df7c0-7f38-4095-847c-3996a99d1a51',NULL),
('92098c12-e6a7-440a-ba15-77a063c51802','491793908788','745251111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745251111\n\nYour shipment with the number 745251111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745251111\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('920ba27a-8dea-492f-ad8e-ad0914d57c90','905078062550','Sayın yetkili; DUYGU YILDIZ adlı müşterinize 598396998 nolu gönderinizin HALI ürünü 1 parça halinde NLUXHOME DEPO adresinizden 27.08.2025 17:36:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('9219569e-c64a-4a5b-ae9e-95eb3c1d8cfa','491722006500','Sayın ERSİN ÖZDEMİR, 478392276 nolu gönderiniz 9172 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478392276\n\nDear ERSİN ÖZDEMİR, your shipment with 478392276 was delivered to you with the delivery code 9172. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478392276\n\n\nBICARGO','1','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL),
('921d78eb-57dd-4561-b34e-f88f8d532734','491726119322','Sayın HAKAN CANBAY, 74565941 nolu gönderiniz 10854 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74565941\n\nDear HAKAN CANBAY, your shipment with 74565941 was delivered to you with the delivery code 10854. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74565941\n\n\nBICARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('9220e570-01f4-4ac7-98bd-621dcdf0862a','905517075149','CAN ÇELİK adlı müşterinizin 478507488 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('92259dec-a4a8-40cb-8efa-4adb03c4af29','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin perde ürünü 3 parça halinde Fatura adresinizden 07.10.2025 16:45:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('922a3038-f97b-48e6-a8a8-6631b842e98a','57373737882','Sayın VEDAT DURKAN, 20.07.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9503544\nŞifre : 9503544\n			\nBİCARGO','2',NULL,'9b5035ef-abfd-44f8-8720-9ecc2608b463'),
('922b97ad-8ba9-44e8-aac8-f28d838bfb46','32470620199','Sayın AHMET OKUTAN, 64415501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64415501\n\nDear AHMET OKUTAN, your shipment with 64415501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64415501\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('9230950a-87ff-42f9-9039-23b2c78ba36b','4917663882376','Sayın KERİM ŞENTÜRK, 644966461 nolu gönderiniz 5130 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644966461\n\nDear KERİM ŞENTÜRK, your shipment with 644966461 was delivered to you with the delivery code 5130. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644966461\n\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('9231921f-958a-4ec4-8cd6-e2559d0994e9','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin SANDALYE ürünü 7 parça halinde ELAKSA SANDALYE adresinizden 22.09.2025 15:16:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('92383291-3f83-4fdb-9a4d-7fff4dd3d45b','4917646701488','808922349 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7485 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808922349\n\nYour shipment with the number 808922349 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7485. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808922349\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('9239e235-b717-41ae-a845-c6ee42264a1c','354646466464444','Sayın SUMMSTOFF IMKEGENOSSENSCHAFT, 248243194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248243194\n\nDear SUMMSTOFF IMKEGENOSSENSCHAFT, your shipment with 248243194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248243194\n\nBICARGO','2','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL),
('923a7530-c4c5-4ba1-95fc-dedc77ec66db','491741677309','Sayın ALPER ALBAYRAK, 371400028 nolu gönderiniz 2731 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371400028\n\nDear ALPER ALBAYRAK, your shipment with 371400028 was delivered to you with the delivery code 2731. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371400028\n\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('923a7a8e-4e88-4c3b-999d-29b39a0eff5d','905451571652','NİLGÜN LEUKEL adlı müşterinizin 531629494 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('923cec26-ec4b-4773-9db4-727b391d42d3','905059175469','SELEN SEMERCİ adlı müşterinizin 428326285 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('9241190f-f5d7-4c8a-9169-836615316020','33652528141','Sayın MUSA KIZILASLANOĞLU, 655307091 nolu gönderiniz 8121 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655307091\n\nDear MUSA KIZILASLANOĞLU, your shipment with 655307091 was delivered to you with the delivery code 8121. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655307091\n\n\nBICARGO','1','60088545-2d2c-4c1d-8f5c-07351840a9a5',NULL),
('924f7186-2603-4de0-949e-48e911563727','4915730253868','598585736 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4471 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598585736\n\nYour shipment with the number 598585736 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4471. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598585736\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('9251511e-4945-4d22-97ed-4f74ea746bb7','4917661977861','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('9253fe37-013f-47ef-9e61-223ea86ae4c9','905331602195','Sayın yetkili; AYNUR KAPUCU adlı müşterinize 221694221 nolu gönderinizin 90x150-190 ekru krem açılır masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:24:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('925428e5-332e-4e63-b4fc-d5dec9183fa3','32488922343','Sayın SEDA -  MUSTAFA SERCAN GUNDOGMUS , 515829047 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515829047\n\nDear SEDA -  MUSTAFA SERCAN GUNDOGMUS , your shipment with 515829047 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515829047\n\nBICARGO','1','7a1c035d-4dfb-480e-bc9c-b1a62adfa157',NULL),
('92542c74-950b-4383-b7ea-4850fa02bfbf','','027336842 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2047 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027336842\n\nYour shipment with the number 027336842 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2047. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027336842\n\nBICARGO','2','1864d9b1-dcd3-4670-aa46-78f5576aa7cd',NULL),
('9258f272-240a-4397-9f1a-6a68d7c17390','33646824181','221106888 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10138 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221106888\n\nYour shipment with the number 221106888 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10138. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221106888\n\nBICARGO','1','967bb071-1af8-4c06-bfd2-0cb20530dd7d',NULL),
('925abf4d-04ab-449a-8b02-5588538931dc','905301592882','Sayın yetkili; FATMA FİLİZ DEMİR adlı müşterinize 910657387 nolu gönderinizin DELUXE KOLTUK ürünü 6 parça halinde SOFARES MOBİLYA adresinizden 21.01.2025 11:37:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('925e7556-860e-4cb5-b997-31a7283d955b','905313340045','Sayın yetkili; MİYASE AYDIN adlı müşterinize 437945654 nolu gönderinizin Sandalye ürünü 3 parça halinde HATEM sandalye adresinizden 13.08.2025 12:23:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('925fbc09-29a9-4d5b-84c4-fa3f93df9430','905461661672','Sayın yetkili; GÜLŞEN KARATAŞ adlı müşterinize 644859309 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 25.06.2025 17:59:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('9264b118-c77f-4635-9368-bed2f28b9f98','4917632961366','531988506 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9146 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531988506\n\nYour shipment with the number 531988506 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9146. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531988506\n\nBICARGO','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('9265a282-a3dd-4e3c-9ea3-54d31020ca60','4915222699200','371179895 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9904 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371179895\n\nYour shipment with the number 371179895 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9904. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371179895\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('92683dcc-e3fa-4264-89d8-47d56eaff155','4917620747376','Sayın  MUSTAFA KHALİFEH, 081982015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/081982015\n\nDear  MUSTAFA KHALİFEH, your shipment with 081982015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/081982015\n\nBICARGO','1','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('926dadce-e9d4-48df-a827-2edb0d92d3c7','905306071261','Sayın yetkili; EMRE ALTUN  adlı müşterinize 765828045 nolu gönderinizin köşe koltuk  ve berjer  ürünü 5 parça halinde belita  adresinizden 08.10.2025 11:19:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('92799b16-0277-470d-beee-67251273221d','905079358213','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin KÖŞE + 1 TEKLİ  ürünü 5 parça halinde ELİTİS adresinizden 23.07.2025 12:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('927a22f2-c660-4d80-b71d-f165ff7f7ff0','491794727704','Sayın RAMAZAN SEVİ, 517558560 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517558560\n\nDear RAMAZAN SEVİ, your shipment with 517558560 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517558560\n\nBICARGO','1','fed099bd-765c-4045-9372-03dae428fedb',NULL),
('927f62e3-7abb-4e5e-ace5-3a09348dfc99','491721843886','Sayın FIRAT BEY, 98283616 nolu gönderiniz 9706 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98283616\n\nDear FIRAT BEY, your shipment with 98283616 was delivered to you with the delivery code 9706. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98283616\n\n\nBICARGO','1','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL),
('92806282-37df-4110-b350-1151d67021dd','4915172036890','Sayın ZELİHA AKCAN, 910291071 nolu gönderiniz 7768 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910291071\n\nDear ZELİHA AKCAN, your shipment with 910291071 was delivered to you with the delivery code 7768. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910291071\n\n\nBICARGO','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('92817ef6-fb83-4b71-bce0-2141cec4505b','31641319611','Sayın HÜLYA MEŞE, 338411689 nolu gönderiniz 4962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338411689\n\nDear HÜLYA MEŞE, your shipment with 338411689 was delivered to you with the delivery code 4962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338411689\n\n\nBICARGO','1','df701c4a-c387-4a31-b317-a8fec3d8ae59',NULL),
('92832e2d-1028-4a79-8a99-e999ffa52e0b','4917620989771','831899043 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/831899043\n\nYour shipment with the number 831899043 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/831899043\n\nBICARGO','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('92856f11-2208-4821-8a86-05c6fe9cde9d','905075277637','ÖMER ÇALIK SSH  adlı müşterinizin 7456984 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('928612b9-a521-4058-b860-f87dcf7792ad','436607576919','449636092 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8038 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449636092\n\nYour shipment with the number 449636092 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8038. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449636092\n\nBICARGO','1','ea1fd06d-6508-481d-96d9-862de4d05260',NULL),
('928b978f-ebe2-4f1b-97a8-3ec09d2695f0','33627054551','Sayın LAMMARİ BAYA , 98232043 nolu gönderiniz 1942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98232043\n\nDear LAMMARİ BAYA , your shipment with 98232043 was delivered to you with the delivery code 1942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98232043\n\n\nBICARGO','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('928d7c24-9d0f-49a0-b7bb-346dc1285ab7','32483547124','Sayın GURAY SEYFELİ, 221496522 nolu gönderiniz 10985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221496522\n\nDear GURAY SEYFELİ, your shipment with 221496522 was delivered to you with the delivery code 10985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221496522\n\n\nBICARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('92923d0b-d126-4373-8ec3-40e877a354ed','905304259202','Sayın yetkili; MÜZEYYEN TEYMUROĞLU adlı müşterinize 478677950 nolu gönderinizin DÜĞÜN PAKETİ ürünü 40 parça halinde çelikbey inegöl depo adresinizden 27.02.2025 13:39:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13b7e986-8aa5-48cf-8d62-fdb2c0c334f3',NULL),
('9292bf84-e7a8-44aa-9e08-68506a524660','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin Sandalye ürünü 3 parça halinde fulaş sandalye adresinizden 22.09.2025 20:08:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('9298701c-1199-4b54-8702-e41063e33538','491723655773','Sayın YUSUF YILMAZ, 745481313 nolu gönderiniz 9278 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745481313\n\nDear YUSUF YILMAZ, your shipment with 745481313 was delivered to you with the delivery code 9278. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745481313\n\n\nBICARGO','1',NULL,NULL),
('929ef1b9-d95f-46a8-a926-785500272c35','905332942204','Sayın yetkili; MURAT BAŞAR adlı müşterinize 50552381 nolu gönderinizin masa-orta sehpa ürünü 5 parça halinde masami adresinizden 08.10.2025 17:57:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','668dd554-9513-4da3-8f96-649ae0505732',NULL),
('92a21618-def1-482a-aafe-2407afdede1e','4917662664297','Sayın MURAT YALIN, 501216728 nolu gönderiniz 5831 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501216728\n\nDear MURAT YALIN, your shipment with 501216728 was delivered to you with the delivery code 5831. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501216728\n\n\nBICARGO','1','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL),
('92a29b2d-cb28-453c-898a-f8381a1e7c3e','33650187030','Sayın METE BOZDAĞ 1 , 745241298 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745241298\n\nDear METE BOZDAĞ 1 , your shipment with 745241298 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745241298\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('92a2afdf-05c7-42c6-90ec-a72f1fe8c058','4917680220658','Sayın SILA SEVİL İLGÜN, 644877864 nolu gönderiniz 9555 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644877864\n\nDear SILA SEVİL İLGÜN, your shipment with 644877864 was delivered to you with the delivery code 9555. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644877864\n\n\nBICARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('92a30608-71af-451d-a5ad-b43d7511e9a0','905301592882','BERFİN HALİS ŞENGÜL adlı müşterinizin 910572875 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('92a77dad-bc97-46df-a8d8-08cb56400284','905075277637','PINAR SALMA adlı müşterinizin 745687103 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('92a9542c-3ad0-4cfb-af67-fddd0bab080d','905079358213','EBRU DEMİRHAN SSH adlı müşterinizin 745433427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('92b02ae8-91fa-4b48-af92-e4fee6411a68','905078062550','Sayın yetkili; CEMİLE VE HÜSEYİN ŞAHİN adlı müşterinize 598697614 nolu gönderinizin BAZA BAŞLIK ürünü 4 parça halinde ALBESSA HOME adresinizden 02.10.2025 10:30:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d3e4434c-1317-4092-aed5-8cc884ab1ae7',NULL),
('92b12773-8f9f-491e-9ce5-7ee9fcea9553','905313340045','İPEK CANTÜRK adlı müşterinizin 437313362 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('92b17bc0-6063-45ca-b044-c5cf29a4a1ed','905075277637','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin MERMER DESEN MASA + SEHPA  ürünü 7 parça halinde GÜMÜŞ MASA adresinizden 12.06.2025 17:10:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('92b62115-2afa-4844-b542-186a0e7abd92','905461661672','Sayın yetkili; OLSZWESKİ MATZ adlı müşterinize 644658399 nolu gönderinizin Seramik masa ürünü 2 parça halinde Fatura adresinizden 18.07.2025 11:57:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('92baf790-67d8-4568-9f3f-edacc3847525','33769187229','Sayın ZEYNEP ALEYNA ÖZBEY, 478192530 nolu gönderiniz 9431 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478192530\n\nDear ZEYNEP ALEYNA ÖZBEY, your shipment with 478192530 was delivered to you with the delivery code 9431. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478192530\n\n\nBICARGO','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('92bd6a6f-8379-4628-81a1-9078d2ee03d5','905335511664','Sayın yetkili; ŞİRİN ASLAN adlı müşterinize 371193272 nolu gönderinizin köşe takımı + puf ürünü 3 parça halinde Elitis Home adresinizden 15.05.2025 13:48:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('92c270b6-21d4-4295-80bd-9477c0963a09','359896871111','41286775 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10824 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41286775\n\nYour shipment with the number 41286775 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10824. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41286775\n\nBICARGO','1','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL),
('92c2f74b-ff25-41a9-bf50-890f1f6afa03','33664143322','454880224 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5817 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/454880224\n\nYour shipment with the number 454880224 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5817. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/454880224\n\nBICARGO','1','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL),
('92c35a19-d097-485d-b2d4-dd6ebada037d','4917672239456','745717474 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5924 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745717474\n\nYour shipment with the number 745717474 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5924. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745717474\n\nBICARGO','1','895e1a54-1679-4334-a0d8-1b1901c592a5',NULL),
('92c4d532-cffc-4698-87a7-cb0ded64b35b','905365908694','MAİL BOXES ETC adlı müşterinizin 223379282 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('92c57dec-d531-4cc8-84ba-0fa4c5309f6a','491795060734','745498790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6893 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745498790\n\nYour shipment with the number 745498790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6893. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745498790\n\nBICARGO','1','a68ff85d-0ddc-4b4b-8585-e95e4f9e2597',NULL),
('92c62136-6a01-4c5f-85c2-dd2c3486914e','0033758584410','Sayın ALİ ARSLAN , 657153999 nolu gönderiniz 4089 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657153999\n\nDear ALİ ARSLAN , your shipment with 657153999 was delivered to you with the delivery code 4089. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657153999\n\n\nBICARGO','2','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('92c62d04-6866-47b9-b52d-6f6d3a573915','905335511664','LAİLA MANDANİ adlı müşterinizin 371887346 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('92cd1721-ba1d-4a92-8afd-5a259a3c361a','3363870091','Sayın SÜVEYLA TARHAN, 745906539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906539\n\nDear SÜVEYLA TARHAN, your shipment with 745906539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745906539\n\nBICARGO','2','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('92d46b11-5bb9-45b4-9edf-cc7a8f09e8a6','33618347342','Sayın MUHAMMER SARI, 614345013 nolu gönderiniz 2586 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614345013\n\nDear MUHAMMER SARI, your shipment with 614345013 was delivered to you with the delivery code 2586. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614345013\n\n\nBICARGO','1','5594587a-f999-49e2-b9f8-adc5bdadc779',NULL),
('92d5b58d-08c3-4638-92bf-57e1ae3e5004','31619008872','Sayın Müyesser koçak, 745531225 nolu gönderiniz 4571 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745531225\n\nDear Müyesser koçak, your shipment with 745531225 was delivered to you with the delivery code 4571. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745531225\n\n\nBICARGO','1','e7849612-fcb8-4368-bba8-194c1abdf919',NULL),
('92d7871e-aa12-4071-96ba-18e7105ad594','491725184945','44998008 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9711 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44998008\n\nYour shipment with the number 44998008 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9711. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44998008\n\nBICARGO','1','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL),
('92e01887-713a-4e15-9e46-4f092a017320','31687916596','Sayın MELEK KAYMAZ(K), 644547865 nolu gönderiniz 7688 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644547865\n\nDear MELEK KAYMAZ(K), your shipment with 644547865 was delivered to you with the delivery code 7688. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644547865\n\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('92e07339-4238-4ff6-a28a-b9433a591c31','905332942204','Sayın yetkili; ELİF GÖKTAN adlı müşterinize 505770346 nolu gönderinizin masa orta sehpa sandalye ürünü 1 parça halinde Fatura adresinizden 23.07.2025 11:14:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('92e83901-3fdb-47a4-8b3b-ef320397a94d','491787704238','Sayın RECEP TABAKOĞLU, 371601782 nolu gönderiniz 6555 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371601782\n\nDear RECEP TABAKOĞLU, your shipment with 371601782 was delivered to you with the delivery code 6555. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371601782\n\n\nBICARGO','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('92ec4dc7-e605-4bb4-ae7c-9815d55a436b','905350617509','Sayın yetkili; DİANA İLKER adlı müşterinize 613252288 nolu gönderinizin Masa ürünü 1 parça halinde İlyas Masa adresinizden 29.09.2025 10:20:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b2b9553-2254-427e-9970-41bddf8e65b0',NULL),
('92f62407-d959-4ba8-a8f4-2624dfe33f87','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin BAZA ürünü 4 parça halinde Fatura adresinizden 03.07.2025 17:00:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('92f6db14-7376-49c2-88e6-32c8709d439f','491775901111','Sayın ARZU ÜNLÜ, 319829855 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319829855\n\nDear ARZU ÜNLÜ, your shipment with 319829855 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319829855\n\nBICARGO','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('9301b418-053c-4ff3-af5a-c2e8ce8ebb0f','491629139526','750498273 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5443 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750498273\n\nYour shipment with the number 750498273 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5443. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750498273\n\nBICARGO','1','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL),
('930381ff-2a8d-4db6-9b57-f3a8325f7848','905454259202','Sayın yetkili; GÖKHAN EYCAN adlı müşterinize 478681299 nolu gönderinizin düğün paketi+140x200 set ürünü 48 parça halinde çelikbey inegöl depo adresinizden 28.12.2024 17:41:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('93187403-426f-4eda-9e1b-3d3386a4e2c5','905078062550','SERKAN DOKKAL adlı müşterinizin 598961970 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('931a25e9-a931-4302-8c8e-1b987de658ed','4917680626495','Sayın ALİYE GÖRDÜK, 598156869 nolu gönderiniz 4475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598156869\n\nDear ALİYE GÖRDÜK, your shipment with 598156869 was delivered to you with the delivery code 4475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598156869\n\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('931a8234-b0b3-45ae-a35f-706b5db3cb92','905069116877','Sayın yetkili; EDA ABUL adlı müşterinize 817160215 nolu gönderinizin Köşe  ürünü 4 parça halinde Fatura adresinizden 02.09.2025 11:59:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3a1ac48-b527-42d9-94b5-e4019b6f4591',NULL),
('931afae9-f6c4-4757-8541-fa9183ff8b6f','905079358213','NUR YILDIRIM adlı müşterinizin 745278745 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('931ec7d1-0155-4375-bfbe-7e1263185ac6','905331602195','Sayın yetkili; GÖKHAN ÖZYURT  adlı müşterinize 2213416 nolu gönderinizin 70x120 traverten Orta sehpa  ürünü 2 parça halinde Fatura adresinizden 18.03.2025 17:03:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('931f4ec0-6feb-478d-975a-d6135d61876b','491728265079','Sayın RANİA PİSİT, 613512690 nolu gönderiniz 10937 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613512690\n\nDear RANİA PİSİT, your shipment with 613512690 was delivered to you with the delivery code 10937. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613512690\n\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('9323642e-61a5-4329-89ef-37edaac112c5','905325000478','HAKAN AKDAĞ adlı müşterinizin 412418230 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f0b553df-a781-4ccd-a273-f9c311927595',NULL),
('93254d85-4296-428a-a6b1-d8050eea6be9','4917664132163','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('932b705b-17e7-489b-a6e7-827892c2b3ca','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin SMART 1-1 BERJER ürünü 3 parça halinde SOFA FLEX adresinizden 19.09.2025 12:35:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('93318165-3b45-498e-92da-91d8ca430086','4917620787419','Sayın CAN ÖZKAN, 598262809 nolu gönderiniz 5338 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598262809\n\nDear CAN ÖZKAN, your shipment with 598262809 was delivered to you with the delivery code 5338. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598262809\n\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('9331dd37-b6c3-4a1e-965e-863c5d9a3ace','33651617359','478685156 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7410 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478685156\n\nYour shipment with the number 478685156 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7410. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478685156\n\nBICARGO','1','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL),
('93369862-8e1a-40b8-a34c-6d230ddb7d53','491789273072','221350993 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7555 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221350993\n\nYour shipment with the number 221350993 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7555. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221350993\n\nBICARGO','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('933b4ffa-d521-4ef4-b17a-cbc595556856','33660910086','Sayın SERKAN KAHRAMAN, 221254389 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221254389\n\nDear SERKAN KAHRAMAN, your shipment with 221254389 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221254389\n\nBICARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('933f40a9-5efe-496d-9694-81270c836e01','33651871381','982455918 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9795 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982455918\n\nYour shipment with the number 982455918 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9795. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982455918\n\nBICARGO','1','9afe7094-ce46-4441-8b6f-2e0a7ff9dc54',NULL),
('9347b596-19bf-45d4-be4b-32a5f68042ee','905461661672','Sayın yetkili; SEMA KAYALI adlı müşterinize 64448364 nolu gönderinizin SANDALYE ürünü 8 parça halinde LENTE HOME adresinizden 20.03.2025 13:47:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('93499300-d656-49bf-a19b-8b199a5173e2','905454259202','EDİZ DİNLER adlı müşterinizin 478989383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('934a0385-4851-42f5-a680-8b57e2643df5','33647335236','Sayın ATİLLA GÖNÜLTAŞ, 268615271 nolu gönderiniz 6879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268615271\n\nDear ATİLLA GÖNÜLTAŞ, your shipment with 268615271 was delivered to you with the delivery code 6879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268615271\n\n\nBICARGO','1','0527ee67-fe4f-4982-b162-501d694f6d0e',NULL),
('934b29ac-a7ef-4ea2-bf8d-e2040679e957','905301592882','Sayın yetkili; FURKAN YESARİ GÜVEN adlı müşterinize 910995300 nolu gönderinizin KONFOR KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 18.09.2025 16:46:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('934bd008-d8ff-48c4-8095-f049d2e84215','306978038133','Sayın OSMAN BOZKAN, 478302796 nolu gönderiniz 10679 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478302796\n\nDear OSMAN BOZKAN, your shipment with 478302796 was delivered to you with the delivery code 10679. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478302796\n\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('9356687a-a5f3-47eb-9a65-077eefc885cb','905331602195','AZİME YETİM adlı müşterinizin 221752631 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('93589a61-3016-454b-aa75-d6c19e5f667f','33769000460','478678748 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478678748\n\nYour shipment with the number 478678748 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478678748\n\nBICARGO','1','b989a112-5f6f-468a-9d42-1bf6bdbf3300',NULL),
('935bd3f5-20e0-4bed-8dd3-6a2838436d12','905079047428','SAKİNA RAHİMİ adlı müşterinizin 449874608 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL),
('936164f4-10b2-467b-9d8d-7228123bd832','491748787633','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','2','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('9362e1ff-79e6-43ca-9b75-ce74770b6821','905306071261','EMRE ALTUN  adlı müşterinizin 765828045 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('93669fb7-c22b-43c3-98b0-b7bb52f18326','905454259202','EMRE AKŞEHİRLİ adlı müşterinizin 478188105 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL),
('9374a7e5-e384-4c4c-8f14-2476b505c6c9','4915786757057','İletişim \n					Şöför Murat : +905321616048','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('9379f7c4-0c9d-4253-a1c5-63ece5932b46','491623325353','644703173 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644703173\n\nYour shipment with the number 644703173 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644703173\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('937a071a-5aea-4746-b05d-f3062a7cad02','491605646374','Sayın ZELİHA AKCAN, 910120533 nolu gönderiniz 3973 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910120533\n\nDear ZELİHA AKCAN, your shipment with 910120533 was delivered to you with the delivery code 3973. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910120533\n\n\nBICARGO','1','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL),
('9381f2fa-7f62-49d3-a80e-29b0f984ae3e','4915784616270','Sayın TUĞBA GÜLSEVEN SSH, 644860505 nolu gönderiniz 9913 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644860505\n\nDear TUĞBA GÜLSEVEN SSH, your shipment with 644860505 was delivered to you with the delivery code 9913. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644860505\n\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('9386e10c-e467-47a4-8e06-d5165fe81d23','491707609047','Sayın HAVVA-HÜMEYRA DEMİR, 42851120 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42851120\n\nDear HAVVA-HÜMEYRA DEMİR, your shipment with 42851120 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42851120\n\nBICARGO','1','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL),
('938700e6-d1b9-4be8-9ca9-a3a610be4d28','491759990232','Sayın DEBORAH BELOVED IDAGU, 505987989 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505987989\n\nDear DEBORAH BELOVED IDAGU, your shipment with 505987989 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505987989\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('9387ef7e-d4b0-445f-b3b8-6fc0c3954438','905331602195','Sayın yetkili; ARMİN IMERİ  adlı müşterinize 221867394 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 25.04.2025 11:47:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('93999ed1-be0d-4bea-bacf-8539be7ae319','33623950988','Sayın İSA KAPLAN , 962908456 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/962908456\n\nDear İSA KAPLAN , your shipment with 962908456 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/962908456\n\nBICARGO','1','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL),
('939d3e3e-3950-441f-9361-c8fa87bd6f39','436766642937','Sayın LEMAN TUNCER, 412467921 nolu gönderiniz 1764 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412467921\n\nDear LEMAN TUNCER, your shipment with 412467921 was delivered to you with the delivery code 1764. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412467921\n\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('939ee6e2-ff46-494b-aba7-9a100b38d4aa','905394878216','Sayın yetkili; RABİA DULU adlı müşterinize 517278082 nolu gönderinizin Koltuk Takımı (3+3+1+1) ürünü 4 parça halinde Fatura adresinizden 21.05.2025 11:58:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('93a3a4db-7720-42fc-bb95-8a3ecfbea915','004915733909244','735258843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6211 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735258843\n\nYour shipment with the number 735258843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6211. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735258843\n\nBICARGO','2','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL),
('93a3fb69-0f5f-4d3f-93eb-058503339e57','905075277637','SEMRA HAKAN KABİR adlı müşterinizin 745409977 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('93a4f10b-f3fd-4667-828c-f49bf7820be3','4917670880874','59874048 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9262 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59874048\n\nYour shipment with the number 59874048 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9262. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59874048\n\nBICARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('93a87cfa-81ef-4e18-b3c1-2a4c9d336ece','0031687542541','73547719 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1933 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73547719\n\nYour shipment with the number 73547719 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1933. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73547719\n\nBICARGO','2','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL),
('93ada6f1-14ea-42f1-a785-2c9f6f9db994','4917670742870','Sayın (GÜLŞEN KARATAŞ) SSH , 644423895 nolu gönderiniz 9067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644423895\n\nDear (GÜLŞEN KARATAŞ) SSH , your shipment with 644423895 was delivered to you with the delivery code 9067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644423895\n\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('93adfe42-3e70-4eac-bae6-861dcd580529','4379259769999','Sayın TEREZA SHARİPOVA, 808790233 nolu gönderiniz 7943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808790233\n\nDear TEREZA SHARİPOVA, your shipment with 808790233 was delivered to you with the delivery code 7943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808790233\n\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('93b60bbc-09e0-446c-ac9c-edbefb59671d','905078062550','SEYHAN GÜNDÜZ adlı müşterinizin 598148104 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('93b892a2-dd75-4255-8964-cea3b874fafd','4917674917141','478300434 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6410 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478300434\n\nYour shipment with the number 478300434 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6410. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478300434\n\nBICARGO','1','e81b1e15-b8dc-4eb4-8edc-6bac321e5e00',NULL),
('93ba0ff9-e43d-4f40-ad34-3b156464ef62','905313340045','Sayın yetkili; UFUK SANATÇI adlı müşterinize 43783689 nolu gönderinizin Sandalye ürünü 3 parça halinde bicargo depo adresinizden 15.08.2025 15:13:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('93ce3853-f561-4cad-8907-ee5474b18b89','4917657742944','İLETİŞİM\n					Furkan şöför = +905078826436','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('93d0ab37-c231-4bf5-8148-1aaec3aa2f0c','905350617509','OGULCAN BAYRAM adlı müşterinizin 613822987 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('93d5f4dd-0f09-49ce-b4c2-c69c34077224','905517075149','Sayın yetkili; FAHRETTİN AKISKA adlı müşterinize 478339664 nolu gönderinizin kanepe 1 adet ürünü 1 parça halinde inhouse adresinizden 16.09.2025 13:02:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('93db405f-d097-4068-b1a5-553f7555fb94','905304259202','AHMET GÜNEŞ adlı müşterinizin 478285861 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('93e4dd8b-e3f4-47f2-bd43-5f11e4079f21','905304259202','FERDİ KURT adlı müşterinizin 478996959 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('93e62ede-a710-4760-bdbb-aeedd13870c2','905306071261','YOZLEM MİNCHEVA adlı müşterinizin 765564339 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('93ec4b70-d26d-4ac1-a10d-62ea6006fbfa','5556268485','Sayın ROHAT KALABAŞ, 910245715 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910245715\n\nDear ROHAT KALABAŞ, your shipment with 910245715 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910245715\n\nBICARGO','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('93eed222-2abd-461c-bade-73faa2d00b0b','9050543358590','BOURAS ABDELGHANİ adlı müşterinizin 501703321 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('93f2e193-3dc1-478a-a00b-f5dfa0a0a8ff','905075277637','MAJD KAMSHA adlı müşterinizin 745653378 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('93f459dc-d00b-45f2-9a3a-2ad4f9b28da9','4917683383437','Sayın FATİH KAZAR, 428135973 nolu gönderiniz 1762 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428135973\n\nDear FATİH KAZAR, your shipment with 428135973 was delivered to you with the delivery code 1762. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428135973\n\n\nBICARGO','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('93fa7e41-36d1-432d-b6b8-0d219cb3f642','905079358213','MERYEM BULAK  adlı müşterinizin 745374253 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('93fb1925-23c6-427f-8e9c-85050f671cdb','905365908694','MAİL BOXES adlı müşterinizin 223734808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL),
('93feafac-7847-48ab-8f9f-1122a211f7d2','905461661672','RAMAZAN AY adlı müşterinizin 644542202 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('940100aa-c515-4965-8856-e0368a49eb2c','33616745884','Sayın FATİH ÇELİK, 478603328 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478603328\n\nDear FATİH ÇELİK, your shipment with 478603328 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478603328\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('940262a6-27f2-4f1d-87e7-08cf324de18f','905461661672','BETÜL ÇELİK SSH adlı müşterinizin 644298325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('940356d3-5a76-4985-b974-eb706b830038','4917680868263','Sayın HASSAN BEY, 976893568 nolu gönderiniz 5771 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976893568\n\nDear HASSAN BEY, your shipment with 976893568 was delivered to you with the delivery code 5771. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976893568\n\n\nBICARGO','1','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL),
('94109e71-b6ec-45ee-bb31-f64887e3fa48','905079358213','Sayın yetkili; MÜSLÜM MERDANE adlı müşterinize 74520622 nolu gönderinizin rota masa sandalye  ürünü 29 parça halinde Fatura adresinizden 22.01.2025 11:38:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('9415cdb4-9267-4071-8bf5-d988030bc740','4917631686937','Sayın ERSAN SULİMANOVSKİ, 371985580 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371985580\n\nDear ERSAN SULİMANOVSKİ, your shipment with 371985580 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371985580\n\nBICARGO','1','ab5aecf3-3848-4bed-b17f-3f3ab2404c76',NULL),
('942147d7-239c-438d-a41a-2c6168e66511','905078062550','FADİME ERİMEZ adlı müşterinizin 598425779 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('94225153-880f-4662-b11e-997f7481f52f','359885267323','Sayın MEHMED SHABAN , 982893962 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982893962\n\nDear MEHMED SHABAN , your shipment with 982893962 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982893962\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('942334fa-a291-4195-9c0f-35b9617afb09','4915774874594','221511033 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8946 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221511033\n\nYour shipment with the number 221511033 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8946. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221511033\n\nBICARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('9425d2df-24aa-44a2-a701-0252272d3fc2','905461661672','ALİ SARI adlı müşterinizin 64441153 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('9428f203-7f58-4ffd-98e8-bed18560d66b','017660006494','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('9432dd01-823b-4189-9481-8ed130824cb0','1111111111','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','2','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('943738fe-ea67-4d41-b83a-af56e3bb4d85','0031687542541','Sayın MURAT, 73547719 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73547719\n\nDear MURAT, your shipment with 73547719 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73547719\n\nBICARGO','2','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL),
('943aaa99-7b0f-4949-9c3f-8045008e34f6','905461661672','Sayın yetkili; KEVSER KAYAHAN adlı müşterinize 644390236 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 14.10.2025 11:37:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a8fe83d-8c43-4179-8ed4-895265a42b51',NULL),
('9440ca93-0999-45ae-bc83-3a877e3c91ad','491777095742','Sayın NURİYE İKİZKAYA, 437854000 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437854000\n\nDear NURİYE İKİZKAYA, your shipment with 437854000 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437854000\n\nBICARGO','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('9448c5bb-0d1c-4efa-8a52-ce0457882a51','4917632057842','Sayın DANİAL ARAMESHK , 613191069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613191069\n\nDear DANİAL ARAMESHK , your shipment with 613191069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613191069\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('944ca27b-3fd4-4827-8356-ad2b54880723','905079358213','Sayın yetkili; SÜLEYMAN KARA adlı müşterinize 745523335 nolu gönderinizin KING PLATIN BAZA SETİ 140X200 ürünü 4 parça halinde Fatura adresinizden 23.02.2025 15:13:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('944d593c-bd65-4592-9b59-d7f479702478','905336367828','LOULOU FİRAS  adlı müşterinizin 982754836 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('944ef211-36f0-4776-a216-cab17ebdc971','905313340045','DERYA ERDOĞMUŞ SSH adlı müşterinizin 437527391 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('94550d17-f8f8-40a8-aa85-9e3550ea9e56','905079047428','SAKİNA RAHİMİ  adlı müşterinizin 449108957 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','72d228c3-4890-476a-b92a-a7a953a0be97',NULL),
('9458d026-40e9-4694-9885-4132a77c433f','491793908788','Sayın SALİHA KURT, 745251111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745251111\n\nDear SALİHA KURT, your shipment with 745251111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745251111\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('945a79e5-b95b-4303-b3ae-356585a0df53','32490219325','428341956 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428341956\n\nYour shipment with the number 428341956 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428341956\n\nBICARGO','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('945e26a0-9eba-4d90-8e28-be606f38d3ba','436601909208','Sayın AHMET YILDIRIM, 334206952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/334206952\n\nDear AHMET YILDIRIM, your shipment with 334206952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/334206952\n\nBICARGO','1','1c435a89-18ee-4459-a82f-d4e80b7c4daa',NULL),
('945f0a0b-443e-4dc5-a6b1-4e9721c817f9','33634048698','Sayın LATİFA KHAZROUKI, 221139773 nolu gönderiniz 10440 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221139773\n\nDear LATİFA KHAZROUKI, your shipment with 221139773 was delivered to you with the delivery code 10440. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221139773\n\n\nBICARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('946468fd-4a26-49dd-80d7-67542d0cf17f','4915158856914','Sayın MELİKZADE AHMET ATAY, 598493196 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598493196\n\nDear MELİKZADE AHMET ATAY, your shipment with 598493196 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598493196\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('9466bb72-439c-45f4-b24b-2bad1f775a35','905428209234','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin MADRİD 3-3-1-1 ürünü 5 parça halinde natty adresinizden 19.09.2025 12:28:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('9468af05-96a5-408c-9dbe-d39a39b2e623','905517075149','MERYEMA TEKİN adlı müşterinizin 478322325 nolu gönderisi 46 parça halinde yola çıkmıştır.','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('94697914-7bfd-491f-bff5-be7eb46508af','905059175469','ŞÜKRÜ AKSOY adlı müşterinizin 428930069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('946c14d5-dcdd-4628-bd44-1036f1257b4e','05325000478','Sayın LEVENT LEVENT, 09.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1387574\nŞifre : 1387574\n			\nBİCARGO','2',NULL,'1a38de7a-5bc7-45be-9578-30a537364045'),
('946f015f-0ac4-4247-9571-77496e54e2ea','436763676926','Sayın IVANA JURCEVİC, 437869312 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437869312\n\nDear IVANA JURCEVİC, your shipment with 437869312 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437869312\n\nBICARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('946f22b6-a1a1-4366-85eb-160a1d41a702','905313340045','DOBREA NİCOLETA SSH adlı müşterinizin 437132386 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('947348dd-b318-45ba-aa8f-9cd8fb0c1bf9','4917656864788','127343940 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6488 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127343940\n\nYour shipment with the number 127343940 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6488. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127343940\n\nBICARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('947570cf-98c6-476a-aad0-807e513b9b37','33617505236','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('947d7d0a-41af-4d83-8582-b11c140f5b8c','905059175469','MUSTAFA ÖZYİĞİT  adlı müşterinizin 42837513 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL),
('9481579d-5b1e-471b-939d-2600aa102164','005071104453','Sayın MAHMOUD AJİ, 248948777 nolu gönderiniz 1565 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248948777\n\nDear MAHMOUD AJİ, your shipment with 248948777 was delivered to you with the delivery code 1565. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248948777\n\n\nBICARGO','2','c139f73d-4a85-4217-8011-d483b3fabd11',NULL),
('94815ca3-f194-4044-8db4-8c050c767a5b','32487655588','319275080 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3727 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319275080\n\nYour shipment with the number 319275080 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3727. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319275080\n\nBICARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('948533fc-3248-43c6-84c4-c52c6ec20b48','905079047428','SERHAT ERDOĞMUŞ adlı müşterinizin 449558519 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('9485a7f0-9619-4660-b0ab-850e22ecbc8f','4917681266759','268145141 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4945 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/268145141\n\nYour shipment with the number 268145141 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4945. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/268145141\n\nBICARGO','1','bc3edf3c-08ad-439c-b6ee-9b055fb20fab',NULL),
('94871105-20c3-4d98-b743-24b2fa6a6bb1','905461661672','RAYAN SLEİMANİ  adlı müşterinizin 644403373 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('948df583-6a83-4d2d-9ddc-6b7f367cda35','905052681508','FERHAT KARACA adlı müşterinizin 504780984 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('949710d0-5ec9-4bde-82a9-dcbfd3a8d418','4917622033486','614525681 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2221 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614525681\n\nYour shipment with the number 614525681 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2221. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614525681\n\nBICARGO','1','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('94979825-d19a-43a4-afef-d1cc5137a90f','4915774500125','910762495 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3901 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910762495\n\nYour shipment with the number 910762495 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3901. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910762495\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('94995ecc-171b-4dd1-a3bf-c9e5e1e58d61','0767059929','505850944 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505850944\n\nYour shipment with the number 505850944 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505850944\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('94a3c5c8-9b64-414a-a8d7-26867d89bc9b','905059175469','Sayın yetkili; ESMERAY ÇOBAN adlı müşterinize 428633070 nolu gönderinizin köşe ürünü 3 parça halinde inliva koltuk adresinizden 21.01.2025 13:32:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('94a8b954-84f7-4e65-9752-2a49759baecd','905301592882','GÖKHAN BEKTAŞ  adlı müşterinizin 910352489 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL),
('94a976fe-254c-4056-981e-cba6de214e7d','905331602195','NAİMA BOURAJJOU adlı müşterinizin 22186590 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('94ab6244-d21a-4154-9698-e7b8bf9478bf','4915204104793','613297420 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4966 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613297420\n\nYour shipment with the number 613297420 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4966. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613297420\n\nBICARGO','1','383f84ab-67a9-43c3-89be-23dcca380e91',NULL),
('94acfff4-3633-4656-95ac-85ea5d64fb34','905454259202','Sayın yetkili; GÜL-MURAT AVCU adlı müşterinize 478449021 nolu gönderinizin YATK-YEMEK-TV-ORTA SEHPA (8ANDALYE) ürünü 1 parça halinde family adresinizden 05.03.2025 12:01:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6555f7e8-59ef-4ebf-ab04-5e7fab746f3a',NULL),
('94b27d54-f671-4762-8020-e998eb9e0812','905443955915','Sayın yetkili; YILDIRIM ASLAN adlı müşterinize 614339204 nolu gönderinizin 3’LÜ KANEPE KASASI SİYAH RENK 1 ADET ürünü 1 parça halinde PAKKO KOLTUK adresinizden 23.12.2024 12:33:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('94b57ec5-9363-451f-aaca-4450af329454','4917632843611','Sayın YAVUZ GENÇ , 449801040 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449801040\n\nDear YAVUZ GENÇ , your shipment with 449801040 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449801040\n\nBICARGO','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('94b6b8ab-615c-4c6f-b2d6-62491e9b4ef9','491726668460','Sayın BİRSEN YILMAZ, 334873891 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/334873891\n\nDear BİRSEN YILMAZ, your shipment with 334873891 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/334873891\n\nBICARGO','1','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL),
('94b6e46d-a899-4a3b-bd94-315908839b61','905394878216','YASİN ARSLAN  adlı müşterinizin 517205467 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL),
('94bc7903-4116-4f7a-9ad8-95185a3480d3','9054439559150','Sayın yetkili; İSMAİL AYTEKİN adlı müşterinize 614443513 nolu gönderinizin BAMBİ BLACKSAND 160x200 SET,BLACKSAND YASTIK 2 ADET VE SIVI GEÇİRMEZ PED ALEZ ÇF.KŞ.160*200 ürünü 4 parça halinde Fatura adresinizden 27.10.2025 15:33:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','62bf8206-794c-42ff-b904-4820a312f32b',NULL),
('94c46736-e54a-412a-a99b-18d727290367','905079047428','Sayın yetkili; AYSEL KARABULUT adlı müşterinize 449454395 nolu gönderinizin Koltuk takımı 3-3-1 ürünü 3 parça halinde Fatura adresinizden 22.11.2024 16:21:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('94c585cf-2340-47c7-a673-5c237b602f94','491789146885','437609907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9076 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437609907\n\nYour shipment with the number 437609907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9076. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437609907\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('94c6739b-4380-4917-933f-85bec2e9ce8a','905349208933','MEDİNE ÖKDEN adlı müşterinizin 127639932 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('94c6743e-9baa-4c03-a2ef-58bca68b64dd','033782054435','Sayın ALİ KIZILKAYA, 734482220 nolu gönderiniz 1140 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734482220\n\nDear ALİ KIZILKAYA, your shipment with 734482220 was delivered to you with the delivery code 1140. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734482220\n\n\nBICARGO','2','313ea73f-ae21-453f-98ea-2178061648bd',NULL),
('94c82d25-0cdf-46bd-8ec1-c2b1a2304354','905301592882','Sayın yetkili; MUSTAFA DÜNDAR		 adlı müşterinize 910775394 nolu gönderinizin MOON MASA+ SANDALYELER ürünü 5 parça halinde SEZA MOBİLYA adresinizden 14.02.2025 12:49:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('94c850b3-4cca-4e24-97d3-6e0d1f4c8e58','905059175469','Sayın yetkili; ESMERAY ÇOBAN adlı müşterinize 428633070 nolu gönderinizin kumaş ürünü 1 parça halinde Fatura adresinizden 26.01.2025 13:22:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('94c9a78c-562f-4594-89c7-e13b64e24c2a','905079358213','YUSUF YILMAZ adlı müşterinizin 745481313 nolu gönderisi 8 parça halinde yola çıkmıştır.','1',NULL,NULL),
('94d1c786-8db7-4973-9b11-fa2ba61b1b3c','436766461961','Sayın HAFİZE BALİ, 371539784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371539784\n\nDear HAFİZE BALİ, your shipment with 371539784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371539784\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('94d54831-fa33-4aca-b8ac-07a8b8971d01','905304259202','BEKİR DOĞAN  adlı müşterinizin 478168461 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('94d7cee6-c283-4564-aef6-6fbbc775d98c','905335511664','Sayın yetkili; ALEV BAYGÜNDÜZ adlı müşterinize 371903427 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 28.04.2025 11:14:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d829d78-94c2-4e78-a544-eebc09aa13b0',NULL),
('94dbf2f4-fa12-48f3-a3b1-0651407c9026','491622711992','Sayın HATİCE BOZ, 371441090 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371441090\n\nDear HATİCE BOZ, your shipment with 371441090 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371441090\n\nBICARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('94dcc488-e6a8-4546-b13a-6420954ab281','9054439559150','Sayın yetkili; ADEM  GENÇ adlı müşterinize 614553524 nolu gönderinizin PAKKO EVDELÜX ALFA KOLLU MODÜL 2 ADET,PAKKO EVDELÜX ALFA KÖŞE MODÜL VE PAKKO EVDELÜX ALFA PİYON MODÜL ürünü 4 parça halinde Fatura adresinizden 10.09.2025 15:16:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('94dce4da-5416-427b-b1a2-72985d7ac468','905350617509','Sayın yetkili; BERNA YİLDİRİM adlı müşterinize 613847250 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 17.06.2025 16:17:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('94e9a781-7fb4-46cb-8e5f-c371eb001eca','905064141111','Sayın yetkili; HATUN ŞİMŞEK adlı müşterinize 842151692 nolu gönderinizin NEVADA PUF ürünü 1 parça halinde masami  adresinizden 08.10.2025 16:55:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('94e9b1e1-4363-451a-8a48-e2679f4b8cb3','905335708965','ENGİN TV ÜNİTESİ  adlı müşterinizin 248269890 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af4e1860-0998-4434-bd62-e28f7958cebe',NULL),
('94ea3fb3-7e97-42c1-aad2-7bee69cf243c','905335708965','FAREDİN BAJRAMİ adlı müşterinizin 248363931 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL),
('94ea5ea2-8349-41ba-8cf8-f02b9c3ad5e1','4915232158548','644826911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9992 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826911\n\nYour shipment with the number 644826911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9992. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644826911\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('94eb08cd-14dc-46cb-b0fa-066757faa156','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin ares bazalı karyola 2 adet komidin benç ürünü 8 parça halinde Fatura adresinizden 03.09.2025 14:41:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('94f61337-924a-42c7-b533-b0a990ecefdb','491797759335','Sayın NADİYE ÇAVUŞ, 644200718 nolu gönderiniz 8478 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644200718\n\nDear NADİYE ÇAVUŞ, your shipment with 644200718 was delivered to you with the delivery code 8478. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644200718\n\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('94f7617e-8026-4557-99ba-7392ce352fe5','905079047428','MONİKA MORKİ  adlı müşterinizin 449693939 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('9504d08a-8166-409e-a707-c4e0c7dee5f6','905461661672','Sayın yetkili; MUSA CAN KOÇAK adlı müşterinize 644389756 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 25.06.2025 17:56:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('95054041-b6cf-4b73-9092-c7b98e53993a','33652652450','478205168 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1158 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478205168\n\nYour shipment with the number 478205168 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1158. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478205168\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('95056986-a2d9-4bf5-9032-26987b241528','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Sehpa ürünü 1 parça halinde Fatura adresinizden 17.10.2025 10:23:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('950a84c8-89dc-4326-b24f-02411e145a53','905335511664','Sayın yetkili; FATMA DUMAN adlı müşterinize 371696993 nolu gönderinizin Köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 21.03.2025 14:10:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('95105162-1aa8-47fa-a8bc-589e720f459a','491777466973','910251573 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5676 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910251573\n\nYour shipment with the number 910251573 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5676. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910251573\n\nBICARGO','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('9510ff7e-de95-481c-83a4-63b2fb4d1afd','905331602195','ÖZAY ÖZDEMİR YILDIZ adlı müşterinizin 221746261 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('95126ef0-3bb9-4312-b21b-0078186660c4','491629815489','Sayın SALİHA KURT, 745251111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745251111\n\nDear SALİHA KURT, your shipment with 745251111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745251111\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('95156135-58ed-450f-8301-ad6b3094934b','905054335859','MURAT YALIN adlı müşterinizin 501216728 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54106caa-0b40-4d00-bc8f-c90cc5a93c72',NULL),
('95158443-397a-426a-bbc9-115ea115d549','905304259202','ÖZKAN BALCI adlı müşterinizin 478261585 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL),
('9515e1f7-deef-4387-8508-c95e188dd8a2','4915752861277','Sayın RABİA AKKUŞ SSH, 644564440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644564440\n\nDear RABİA AKKUŞ SSH, your shipment with 644564440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644564440\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('95169a41-037e-4902-9427-849417a93c25','491774677358','Sayın FATMA SAĞLIK, 437835103 nolu gönderiniz 8136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437835103\n\nDear FATMA SAĞLIK, your shipment with 437835103 was delivered to you with the delivery code 8136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437835103\n\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('9518239a-7610-4a1b-aaf6-027256377a7c','32472893913','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('9518c287-658b-4137-94b7-1a7be96a3bc5','436606772849','Sayın SÜMEYYE KALKAN , 98258846 nolu gönderiniz 1359 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98258846\n\nDear SÜMEYYE KALKAN , your shipment with 98258846 was delivered to you with the delivery code 1359. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98258846\n\n\nBICARGO','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('951a188d-1044-456b-926d-186f11c1a561','4369919243273','Sayın DİANA BARAKAEVA, 613554878 nolu gönderiniz 2679 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613554878\n\nDear DİANA BARAKAEVA, your shipment with 613554878 was delivered to you with the delivery code 2679. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613554878\n\n\nBICARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('951c1150-b019-4ea8-acf5-5fe82cd9e5eb','33623704351','Sayın SEDAT ARSLAN, 412359172 nolu gönderiniz 1982 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412359172\n\nDear SEDAT ARSLAN, your shipment with 412359172 was delivered to you with the delivery code 1982. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412359172\n\n\nBICARGO','1','032b3134-3092-40b9-b2b2-be3390b4726e',NULL),
('9520c46c-c9b1-41b1-b2f7-ecacf3220545','49171241720','Sayın ŞEVKET ZİRİH, 478545295 nolu gönderiniz 9770 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478545295\n\nDear ŞEVKET ZİRİH, your shipment with 478545295 was delivered to you with the delivery code 9770. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478545295\n\n\nBICARGO','2','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('952a51a9-7be3-4f06-b422-9aceb266c0a3','905461661672','Sayın yetkili; HASAN KAYA adlı müşterinize 64413417 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 19.09.2025 11:32:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('95302c97-06ee-48b5-a1c1-33252c5022b5','436605487120','745252636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7190 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745252636\n\nYour shipment with the number 745252636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7190. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745252636\n\nBICARGO','1','ed99f25e-1517-4d36-8082-0827ffa4aaa5',NULL),
('9531af4a-63e2-439d-b474-3fdcd904b509','4917683412499','Sayın ESRA MURATOGLU, 786276080 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786276080\n\nDear ESRA MURATOGLU, your shipment with 786276080 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786276080\n\nBICARGO','1','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('95389be8-ff8f-453d-a711-270248e11cde','905079358213','ERDİNÇ ESKİ adlı müşterinizin 745505942 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d85df80f-4bcc-482f-949e-4393d27c0874',NULL),
('953b48ad-5a7d-4c5f-87f5-588de6538401','491735389289','598131456 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7632 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598131456\n\nYour shipment with the number 598131456 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7632. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598131456\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('953d9a5a-f0cf-4377-9c85-03126c16567a','4379259769999','Sayın TEREZA SHARİPOVA, 808790233 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808790233\n\nDear TEREZA SHARİPOVA, your shipment with 808790233 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808790233\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('953e8e40-8131-46f4-95f2-cfc608559420','4917670742870','644500765 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644500765\n\nYour shipment with the number 644500765 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644500765\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('953f043e-0a3c-41b2-992d-03a6d71ed868','4917681321777','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('9540edb2-a2dd-4226-b07a-59786fc3ab10','905301592882','Sayın yetkili; ERDAL ULAŞ		 adlı müşterinize 910611541 nolu gönderinizin KOLTUK AYAĞI+ ZİGON SEHPA  ürünü 2 parça halinde Fatura adresinizden 26.02.2025 09:31:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','581b4f00-ddd5-472c-b485-0863440ffc50',NULL),
('9542fe72-10d4-45a8-be4b-0d1c1fa8aba7','32467736626','Sayın YASEMİN ERKAN, 910152598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910152598\n\nDear YASEMİN ERKAN, your shipment with 910152598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910152598\n\nBICARGO','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('95526572-c51d-42bd-8d87-a2d4b30fa35b','32470174105','Sayın GÜRSEL KURTULMUŞ, 428659303 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428659303\n\nDear GÜRSEL KURTULMUŞ, your shipment with 428659303 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428659303\n\nBICARGO','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('955aa646-ed7e-48f8-8f55-75576b38c2d2','4917624742044','Sayın ESRA KAMBERİ, 081789192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/081789192\n\nDear ESRA KAMBERİ, your shipment with 081789192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/081789192\n\nBICARGO','1','b9c00c19-4cd1-40b4-b93c-2fa738520c65',NULL),
('955b0a30-329d-4a18-92a4-5a55f8c12c79','4915204222121','Sayın SAHİN DİNÇ, 371514006 nolu gönderiniz 2109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371514006\n\nDear SAHİN DİNÇ, your shipment with 371514006 was delivered to you with the delivery code 2109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371514006\n\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('9562ffb4-619f-439d-a909-dee56eba1c9d','33698869736','Sayın SEMA PALA , 515747086 nolu gönderiniz 10114 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515747086\n\nDear SEMA PALA , your shipment with 515747086 was delivered to you with the delivery code 10114. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515747086\n\n\nBICARGO','1','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('9563b35e-4fcf-45bd-8a51-942d829631a9','41782224348','112270991 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1227 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/112270991\n\nYour shipment with the number 112270991 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1227. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/112270991\n\nBICARGO','1','b2f13caf-67d6-4df1-879e-de1a8b1019c1',NULL),
('9565ad4e-4f57-4f6b-9950-53376ce5d594','31646621867','Sayın TUĞRA NUR DÜZGÜN, 644298759 nolu gönderiniz 10903 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644298759\n\nDear TUĞRA NUR DÜZGÜN, your shipment with 644298759 was delivered to you with the delivery code 10903. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644298759\n\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('95661d72-7809-47cd-9dd2-9ca2d0415817','4917663834666','644615727 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644615727\n\nYour shipment with the number 644615727 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644615727\n\nBICARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('9566df6e-da0d-4ddb-ab0c-a46644e328d1','1355333110','Sayın DİYAR İSVİÇRE, 29.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7826819\nŞifre : 7826819\n			\nBİCARGO','2',NULL,'fd78c268-e19d-4846-a93a-7f307d082c25'),
('95712ea9-2f3c-492c-b2e0-f4bd134c0e5e','905075277637','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin BONNY KÖŞE KOLTUK + TEKLİ  ürünü 7 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 10.07.2025 16:04:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('9571a09b-38a7-4f3d-8cf6-24605a730c02','436609855451','Sayın FATMA KAYA, 371579541 nolu gönderiniz 4034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371579541\n\nDear FATMA KAYA, your shipment with 371579541 was delivered to you with the delivery code 4034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371579541\n\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('9579e051-0fdc-453b-9dea-db5957d222b1','4917622372512','371376503 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2131 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371376503\n\nYour shipment with the number 371376503 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2131. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371376503\n\nBICARGO','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('957cb8bf-ac9e-4fe2-bccd-913d8223efb9','905301592882','MUSA ÖZER		 adlı müşterinizin 910586114 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2f96bf63-9b6a-4629-9bf1-1f428f44e517',NULL),
('957edbc6-a780-48f3-b1d1-e213a926ae10','31630905029','644126759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6153 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644126759\n\nYour shipment with the number 644126759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6153. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644126759\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('958109aa-922b-42bb-a084-5a02bc5ac952','4917644265407','DRİVER\n					ADNAN\n+905354622027','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('95824110-b888-4a26-8097-14fc307f0cd2','905331602195','Sayın yetkili; SELCAN BOZKURT  adlı müşterinize 221118460 nolu gönderinizin Balat sandalye siyah  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 29.05.2025 17:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('958912bd-f9e1-4504-a067-c9e64a662935','33648138449','478117771 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478117771\n\nYour shipment with the number 478117771 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478117771\n\nBICARGO','1','ab950112-9d6b-4ec6-916c-a8cb79c8a7bb',NULL),
('9592ff09-7255-49ae-8de0-87d34aa71fd9','4917623595130','Sayın SWEETA QALANAWİ , 613393068 nolu gönderiniz 6509 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613393068\n\nDear SWEETA QALANAWİ , your shipment with 613393068 was delivered to you with the delivery code 6509. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613393068\n\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('9597fe6c-b442-49f2-a56e-9bba02d2d72d','905075277637','AHMET KURT adlı müşterinizin 745286096 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','56779a22-f184-44a7-8ac7-070b7bbde2dd',NULL),
('9599233e-aace-43e5-a85b-1488a060fa0f','33749426479','Sayın MEHMET BAYTOK SSH, 745253500 nolu gönderiniz 8522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745253500\n\nDear MEHMET BAYTOK SSH, your shipment with 745253500 was delivered to you with the delivery code 8522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745253500\n\n\nBICARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('959c078b-f289-479a-b284-7cdac8e10952','33760923065','Sayın CANSEL YILMAZ, 223275516 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223275516\n\nDear CANSEL YILMAZ, your shipment with 223275516 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223275516\n\nBICARGO','1','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL),
('95a037ec-1138-43c3-933e-3f113d604983','491636718375','Sayın İNCİ TOKGÖZ, 478240909 nolu gönderiniz 3672 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478240909\n\nDear İNCİ TOKGÖZ, your shipment with 478240909 was delivered to you with the delivery code 3672. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478240909\n\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('95a71de8-4b84-44a3-b5ae-1a3253d6449d','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN GİZE KOMODİN ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('95a820cd-f5c2-4fee-aec3-dfe4272e2ea2','905075277637','MERVE DAYI adlı müşterinizin 745869069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('95accb21-2359-42a1-a529-bda0b07730af','905350617509','SWEETA QALANAWİ  adlı müşterinizin 613393068 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('95add32b-df36-47ad-9702-b36c1c416414','32489954615','644377995 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377995\n\nYour shipment with the number 644377995 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644377995\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('95adf976-0b24-49ec-8c16-89ebebf4ac3d','905336367828','REZA MUHAMMEDİ adlı müşterinizin 982292794 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL),
('95b7764e-cd2a-428f-9533-91574d64a9c7','33783160277','Sayın MUSTAFA YILMAZ, 745636493 nolu gönderiniz 9444 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745636493\n\nDear MUSTAFA YILMAZ, your shipment with 745636493 was delivered to you with the delivery code 9444. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745636493\n\n\nBICARGO','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('95bcf544-0f26-43e4-891a-a6ec2346290b','491623325353','Sayın DUYGU DEMİRHAN, 644703173 nolu gönderiniz 10082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644703173\n\nDear DUYGU DEMİRHAN, your shipment with 644703173 was delivered to you with the delivery code 10082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644703173\n\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('95c1a040-ba81-4cf5-8830-79c29e96663e','4915785558828','910632087 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8152 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910632087\n\nYour shipment with the number 910632087 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8152. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910632087\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('95c29d88-009b-4811-a65b-50828203e4d9','33666051702','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('95c4a921-1be9-42e9-ada1-d90d3c46885f','4917675899290','Sayın KADİR ÜZER, 371495147 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371495147\n\nDear KADİR ÜZER, your shipment with 371495147 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371495147\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('95d4f57b-4880-44a8-bea3-f1a81143f578','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ (SSH) adlı müşterinize 221530805 nolu gönderinizin Sehpa ssh ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:19:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('95d80f67-526d-4993-a3bb-32facc5a389a','4917663371401','Sayın NERGİZ TOPRAK, 371540742 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371540742\n\nDear NERGİZ TOPRAK, your shipment with 371540742 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371540742\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('95d871cb-8c26-4711-9ec8-b160a630dba6','905078062550','Sayın yetkili; İLYAS GÖK adlı müşterinize 598982184 nolu gönderinizin KÖŞE KOLTUK ürünü 7 parça halinde MERTSOY KOLTUK adresinizden 20.08.2025 15:03:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('95df9004-ec29-4e2b-9837-ba32745bb3a4','905539740010','Sayın yetkili;  UĞUR KAPLAN  adlı müşterinize 011697836 nolu gönderinizin traverten masa  ürünü 1 parça halinde Fatura adresinizden 09.09.2025 10:41:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac9528e4-d408-4c6a-9cb5-664445eb6c37',NULL),
('95e3533e-a8d6-44c2-84ef-5d66695a99ff','905079358213','GÖKHAN ÇAYLAK adlı müşterinizin 745808994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('95e933ab-f0a9-4c89-a16b-2484ae575edf','905054335859','ENVER GÜLMEZ adlı müşterinizin 501981507 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','04b906a6-7837-4515-810d-2b36aefb9873',NULL),
('95e9cf26-89c6-4bdb-ba18-4e2c797615f7','436603406293','Sayın yetkili; MERAL KELES adlı müşterinize 675890872 nolu gönderinizin sandalye ürünü 3 parça halinde MASAMI adresinizden 28.05.2025 17:48:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('95f15485-d438-4b7c-b734-3b47444cdca1','5325000478','Sayın AAAAAA BBBBB, 02.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2726996\nŞifre : 2726996\n			\nBİCARGO','1',NULL,'d272c69b-ff96-475f-9355-592e3bf8c36a'),
('95f329f5-2aec-4e82-888b-5c3e8e15ce50','905331602195','Sayın yetkili; MİYASE SARIKAYA adlı müşterinize 221966080 nolu gönderinizin balat sandalye ürünü 5 parça halinde Fatura adresinizden 20.02.2025 15:10:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('95f4ea5a-57c4-4c71-94aa-2e8ddf2614b6','905461661672','Sayın yetkili; MAHSUN ALDEMİR(K) adlı müşterinize 644593040 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 18.09.2025 11:13:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('95fabe81-391c-49c4-b4aa-5e6fae0053e8','905050303939','ENİSA YEKTA  adlı müşterinizin 923436295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('95fb30f3-0c52-4697-a095-6519cbd1e302','905356503956','MAĞAZA adlı müşterinizin 027336842 nolu gönderisi 69 parça halinde yola çıkmıştır.','1','1864d9b1-dcd3-4670-aa46-78f5576aa7cd',NULL),
('9603aaa1-399e-4c45-af7f-ed22a244f01f','491791163970','644301613 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644301613\n\nYour shipment with the number 644301613 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644301613\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('960cc54a-ff19-414a-b31f-09bce360ca39','33782338105','Sayın SEBAHAT KOÇAK, 428761245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428761245\n\nDear SEBAHAT KOÇAK, your shipment with 428761245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428761245\n\nBICARGO','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('9612a704-a077-4cb6-a4c9-a8461da74745','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 27.08.2025 11:36:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('96154a07-a059-4a75-b723-f32df6be6ff4','905350617509','Sayın yetkili; BURHAN SARİKURT adlı müşterinize 613508377 nolu gönderinizin 3 kutu sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 21.03.2025 18:03:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('961a16d8-2a47-43f1-9955-d199fee97a1e','905312762034','TEREZA SHARİPOVA adlı müşterinizin 808790233 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('961a32cd-1e1f-44b0-99f3-56ffeafd53e4','491639801426','Sayın EURO STAR MOBEL, 107870370 nolu gönderiniz 2925 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/107870370\n\nDear EURO STAR MOBEL, your shipment with 107870370 was delivered to you with the delivery code 2925. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/107870370\n\n\nBICARGO','1','4ac57e98-4d31-4029-af5c-63c778250adc',NULL),
('961fb80b-0dd2-44df-9a5f-7dd17c6a6108','4915158856914','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('9621c6bf-9898-41e3-9c7e-e96006dfac52','4915208602802','Sayın ALİŞAN CERCİ(K), 644847294 nolu gönderiniz 5740 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644847294\n\nDear ALİŞAN CERCİ(K), your shipment with 644847294 was delivered to you with the delivery code 5740. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644847294\n\n\nBICARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('962d5a16-4341-4117-ba35-4e7d64c241a2','33745172654','Sayın SAİDATİ AHMED , 98274489 nolu gönderiniz 3962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98274489\n\nDear SAİDATİ AHMED , your shipment with 98274489 was delivered to you with the delivery code 3962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98274489\n\n\nBICARGO','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('962d9eb6-c4f8-4848-bdac-4f3740afd151','905301592882','Sayın yetkili; SAMED DERE adlı müşterinize 910717262 nolu gönderinizin NATURA KÖŞE KOLTUK ürünü 3 parça halinde Fatura adresinizden 24.03.2025 12:42:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('962da5fb-2844-4624-b832-afd17bfa5b1c','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin MASA VE ORTA- SEHPA-DOLAP  ürünü 12 parça halinde BİCARGO DEPO adresinizden 20.05.2025 11:59:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('962dcb7b-d31a-4f73-8fd6-0ca493ea9011','4915785558827','Sayın EKREM ASLAN, 91059017 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91059017\n\nDear EKREM ASLAN, your shipment with 91059017 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91059017\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('9630874f-3d91-4c22-a1f0-31c0cd064e2f','4917684805467','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('9631508a-7ff9-4af1-8674-1f992cebc5c7','4917670954169','Sayın SEYHAN GÜNDÜZ, 598148104 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598148104\n\nDear SEYHAN GÜNDÜZ, your shipment with 598148104 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598148104\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('9632df27-edd9-4082-8a73-753600f956fb','31634031801','Sayın MUSTAFA UZUNBOY, 47867667 nolu gönderiniz 5456 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47867667\n\nDear MUSTAFA UZUNBOY, your shipment with 47867667 was delivered to you with the delivery code 5456. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47867667\n\n\nBICARGO','1','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL),
('9633b4d6-821e-4cfd-bc94-b233b1eae01e','4917632724714','Sayın BURCU ASLAN, 598220619 nolu gönderiniz 7642 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598220619\n\nDear BURCU ASLAN, your shipment with 598220619 was delivered to you with the delivery code 7642. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598220619\n\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('96388d81-aea1-4caa-9412-ae449fdea58f','905461661672','Sayın yetkili; OLSZWESKİ MATZ adlı müşterinize 644658399 nolu gönderinizin Masa ayağı ürünü 1 parça halinde Masami Mobilya adresinizden 21.07.2025 16:03:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('96390848-18cf-4085-9d43-e9554a0bd0e4','905079358213','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin PALERMO KARYOLA BAZASIZ ürünü 5 parça halinde AREA adresinizden 18.09.2025 14:23:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('963944c0-ec77-4f2e-a518-1f5d0c3beeb4','905363385813','HASAN EROL adlı müşterinizin 976568852 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('963cae33-f2b1-4163-ad3b-5a14ab69a4a6','4916097979747','Sayın DELİL ÖZÇELİK, 644680025 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644680025\n\nDear DELİL ÖZÇELİK, your shipment with 644680025 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644680025\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('963cf4a2-d33c-4d17-aefd-36125ad87750','491726741919','449974141 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449974141\n\nYour shipment with the number 449974141 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449974141\n\nBICARGO','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('9645a942-8e82-4909-9271-0d4909983d14','32487655588','319276460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7009 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319276460\n\nYour shipment with the number 319276460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7009. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319276460\n\nBICARGO','1','4475a939-a408-4d10-a256-61dc03f279da',NULL),
('9646f5c9-634b-454a-8fc5-3f86a1a0420c','905331602195','Sayın yetkili; BERİVAN ERTUĞRUL  adlı müşterinize 221559079 nolu gönderinizin Balat sandalye koyu ceviz ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 07.08.2025 15:37:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('96564545-3da5-491e-b575-d586c5bad46a','905539740010','Sayın yetkili; EMRE KIZIL ALMANYA SSH adlı müşterinize 011222896 nolu gönderinizin 6 adet 3 kutu ürünü 3 parça halinde BULKA SANDALYE adresinizden 29.08.2025 12:41:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('965b9d7e-a16e-4f3e-a2f5-67f7f1ca436b','41794580561','Sayın HÜSEYİN CANDAN, 695249199 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/695249199\n\nDear HÜSEYİN CANDAN, your shipment with 695249199 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/695249199\n\nBICARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('965e7c87-9d14-4b64-926f-6a39038e6617','905069116877','ÖZGE ÖZTÜRK adlı müşterinizin 817121694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('96603e26-b11b-441c-b4d6-9fe9c40cd4ac','905335511664','GÖKHAN ÜLKER adlı müşterinizin 371944289 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('966fd0c2-90c4-4895-8101-fdaac0e5667e','5325000478','Sayın SERHAT BBBBBBB, 11.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7991478\nŞifre : 7991478\n			\nBİCARGO','1',NULL,'7f9e914c-f7f8-47e1-b3b0-281aafbc8157'),
('9671700b-c092-4ee1-abfd-1132ce003fff','905335708965','HANAN ALİKHAN adlı müşterinizin 73529249 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ca97344f-8f56-4954-b65a-e497b3d804a4',NULL),
('9677c8a1-124b-4bd8-9d4f-701feeea6ec2','33770299406','İletişim \n					Halil Bey (Şoför) :+905541100849','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('967f5fe5-46b0-4d6c-818f-f80c8fc445b4','4917779666161','644742878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7900 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644742878\n\nYour shipment with the number 644742878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7900. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644742878\n\nBICARGO','2','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('96885963-37da-475a-90f6-bfbb45a6f3e8','905075277637','ORHAN ÖZSOY adlı müşterinizin 745140498 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('96892483-fa2c-4432-b3cd-36cb1c51f311','4917620519550','Sayın MERVE DAYI, 745869069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745869069\n\nDear MERVE DAYI, your shipment with 745869069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745869069\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('9689f7c3-72cf-4c69-859f-6ed01472e9d4','4917620954584','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('968a4c7c-5ee6-45a4-9f75-7e1a9c20bc0e','33677050522','Sayın SİNAN YILDIZ, 478209702 nolu gönderiniz 6908 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478209702\n\nDear SİNAN YILDIZ, your shipment with 478209702 was delivered to you with the delivery code 6908. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478209702\n\n\nBICARGO','1','22239f89-5592-49c8-b2c4-dc804b06b788',NULL),
('968dcff4-0736-4e45-9afd-66bdcd4c9368','905446974799','Sayın yetkili; ŞENEL KURU adlı müşterinize 776312220 nolu gönderinizin mutfak masası + perde  ürünü 2 parça halinde Fatura adresinizden 10.10.2025 17:29:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL),
('968e28d8-3731-40ff-8790-3b075219fb3b','4917634403928','Sayın BİLAL KIZILIRMAK, 371155650 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371155650\n\nDear BİLAL KIZILIRMAK, your shipment with 371155650 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371155650\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('96905e47-b3ea-4a37-abf2-90142072dcff','9054439559150','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY HVZ BAZA 180x200 ürünü 2 parça halinde Fatura adresinizden 03.09.2025 11:34:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('96973358-63ca-4e80-9d4d-fa4aa334508d','905079358213','NUR YILDIRIM adlı müşterinizin 745278745 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('9699c3bf-61b5-43ae-a51a-295e27f83db4','491751919255','Sayın NAGİHAN ALKIRAN, 338829299 nolu gönderiniz 10277 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338829299\n\nDear NAGİHAN ALKIRAN, your shipment with 338829299 was delivered to you with the delivery code 10277. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338829299\n\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('969d17bd-615c-4f51-9c82-4fbfff36ff63','905059175469','AYŞE ERDEM adlı müşterinizin 428226833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f572ceaf-0b46-48ec-916f-1f64fb264425',NULL),
('969eee42-23b6-4048-91c8-de390c4412c5','905394878216','Sayın yetkili; RABİA DULU adlı müşterinize 517278082 nolu gönderinizin Hediye Zigon Sehpa (Küçük Kutu) ürünü 1 parça halinde Fatura adresinizden 21.05.2025 11:58:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('969f2041-c969-403a-a008-ff3a97d04df7','31621494387','Sayın HAKİF ZİNAL, 644330933 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644330933\n\nDear HAKİF ZİNAL, your shipment with 644330933 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644330933\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('96a29642-d178-4745-8749-996a1ca3b7b4','41764460655','100605954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8730 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/100605954\n\nYour shipment with the number 100605954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8730. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/100605954\n\nBICARGO','1','a3560d76-087f-40a9-8bed-913dfa8f5663',NULL),
('96a42646-b048-497f-8727-8433c139392a','905525002621','Sayın SEMİH AYDIN, 046487702 nolu gönderiniz 1608 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/046487702\n\nDear SEMİH AYDIN, your shipment with 046487702 was delivered to you with the delivery code 1608. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/046487702\n\n\nBICARGO','2','2f1cee80-98e2-4491-8790-84b0795e2440',NULL),
('96a53de3-813a-4aab-9538-8a6ff5f5a927','905075277637','BURHAN AKMEŞE adlı müşterinizin 745761149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('96a7db55-ca22-4106-a523-5d9b026ee96c','00491725826815','Sayın ELİF KAVUCUK, 37197237 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37197237\n\nDear ELİF KAVUCUK, your shipment with 37197237 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37197237\n\nBICARGO','2','6d4039b6-c00e-459a-95f4-bdff009aedea',NULL),
('96aa1f35-17a7-49fa-9e0a-c2ce7ebbd510','33627713470','Sayın EMRE AKŞEHİRLİ, 478188105 nolu gönderiniz 4859 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478188105\n\nDear EMRE AKŞEHİRLİ, your shipment with 478188105 was delivered to you with the delivery code 4859. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478188105\n\n\nBICARGO','1','ec51c14f-fbdf-4aae-950c-63cb48e29c49',NULL),
('96ad1277-5ff8-45b1-8e48-e2b12caddba3','41763213206','Sayın JASMİNA AGA, 735271543 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735271543\n\nDear JASMİNA AGA, your shipment with 735271543 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735271543\n\nBICARGO','1','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL),
('96af2edc-3495-447d-b194-2a7db50f565b','4915210309033','910129924 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2178 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910129924\n\nYour shipment with the number 910129924 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2178. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910129924\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('96afc654-5246-4065-b884-107bd065435a','905331602195','Sayın yetkili; NAGLA NAGUİB MAHFOUD adlı müşterinize 221383692 nolu gönderinizin 60 çap yuvarlak sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:09:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d',NULL),
('96b05677-7597-4669-8e97-e3f31c2f54c0','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin star köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 15.08.2025 10:01:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('96b2d0a1-c2e3-4018-b04e-0dc25a2fe598','905313340045','Sayın yetkili; MERVE BEKTİK adlı müşterinize 43752518 nolu gönderinizin kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 12.08.2025 17:38:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('96b31f3c-d79c-40f4-955e-76b9f10dd2b3','905461661672','Sayın yetkili; MELDA KARA adlı müşterinize 64451300 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 02.04.2025 11:52:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('96bcbf8a-d419-480e-bcbe-73ba1e24336c','35363553466363','Sayın HFDJDJDJDJDKKJFDW, 735814007 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735814007\n\nDear HFDJDJDJDJDKKJFDW, your shipment with 735814007 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735814007\n\nBICARGO','2','67f3e803-506e-4fab-b999-051b7a0368e2',NULL),
('96c0c1ad-15d9-4119-bd70-69f8d602f5d7','905075277637','Sayın yetkili; MUSTAFA YILMAZ SSH  adlı müşterinize 745338988 nolu gönderinizin 90lık başlık  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('96c0e61c-a8dd-44ec-b9c3-c72ed6c7b3e4','905075277637','ÖMER ÇALIK adlı müşterinizin 745127322 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL),
('96c45bff-9c36-4a79-aa1c-dfa56c76b27b','00306988787488','Sayın FATMA HANIM, 248259363 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248259363\n\nDear FATMA HANIM, your shipment with 248259363 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248259363\n\nBICARGO','2','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL),
('96c5ec75-b9f1-469b-bf64-7a287f47fe34','11548852244','Sayın MERT  GÜNAL, 29.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3498072\nŞifre : 3498072\n			\nBİCARGO','2',NULL,'34e9dac8-0b72-4c9c-a3cd-d018c395e342'),
('96c68fc2-191d-4f86-803b-84631c974e36','4917629501949','Sayın ARBESA SADRİJAJ, 982533088 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982533088\n\nDear ARBESA SADRİJAJ, your shipment with 982533088 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982533088\n\nBICARGO','2','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL),
('96cb0d73-c87b-451f-b69e-5d9743f4fc03','491776786642','Sayın SONGÜL BALTACI, 64446005 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64446005\n\nDear SONGÜL BALTACI, your shipment with 64446005 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64446005\n\nBICARGO','1','a192b2d2-c02c-4ace-bf0f-2c0ce0fd14dd',NULL),
('96cb23c2-d206-4814-8b51-fc2c3309ce5f','905350617509','MANJUTHA VATHANASEELAN adlı müşterinizin 613990071 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('96cc65fa-5e9b-4963-8d28-dbe9054b1a0a','31640251699','Sayın SEMRA HAKAN KABİR, 745409977 nolu gönderiniz 1928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745409977\n\nDear SEMRA HAKAN KABİR, your shipment with 745409977 was delivered to you with the delivery code 1928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745409977\n\n\nBICARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('96d361a6-e198-42d5-bd79-af93e48c7b20','905335511664','Sayın yetkili; METE AKGÜL adlı müşterinize 371857345 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 30.04.2025 17:40:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('96d4ac87-d25a-4feb-b4da-4ab5a03ca083','33766554745','112609358 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8755 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/112609358\n\nYour shipment with the number 112609358 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8755. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/112609358\n\nBICARGO','1','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('96d64c84-3b0f-4a97-8a32-0f14f7217454','41793422327','371365041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365041\n\nYour shipment with the number 371365041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371365041\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('96d7da21-ef3a-4299-848a-7641439a735a','33769000460','478548963 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10748 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478548963\n\nYour shipment with the number 478548963 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10748. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478548963\n\nBICARGO','1','15245f29-ed5d-405d-b5b2-37fae1f3e5f6',NULL),
('96d8960b-b787-492a-bfac-973c2e264cc6','905343753391','Sayın yetkili; MELEK IŞIK adlı müşterinize 64418413 nolu gönderinizin MASA VE ORTA SEHPA ürünü 4 parça halinde Fatura adresinizden 25.02.2025 11:13:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('96e1c803-35ef-4c89-9479-01ce7d090763','905304259202','Sayın yetkili; SERKAN ÖZBAY  adlı müşterinize 478432075 nolu gönderinizin ssh ürünü 1 parça halinde Fatura adresinizden 24.06.2025 13:45:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e929693b-b959-44d7-9fa1-907fe175f670',NULL),
('96e39a70-b949-459e-bcb2-d508381e524a','905461661672','Sayın yetkili; BLANDİ ZOTA adlı müşterinize 644965833 nolu gönderinizin MERMER MASA ürünü 1 parça halinde FURKAN MERMER adresinizden 24.04.2025 17:15:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('96e4dcdb-cc32-4a0f-9c5a-74df35790993','905335511664','ÖZLEM POLAT adlı müşterinizin 37176846 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('96e6487f-87e5-4cce-9595-402206f51b9d','4917664184092','Sayın TİMUÇİN SAYIN, 221786435 nolu gönderiniz 5536 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221786435\n\nDear TİMUÇİN SAYIN, your shipment with 221786435 was delivered to you with the delivery code 5536. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221786435\n\n\nBICARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('96ed8ed3-1d0e-444b-9086-de2206d12401','173737373828383','412795154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4875 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412795154\n\nYour shipment with the number 412795154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4875. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412795154\n\nBICARGO','2','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('96f02b50-c035-4175-84c0-f5a83fe574ab','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 1 ADET ORTA SEHPA ürünü 1 parça halinde MOBİLYAMEVİME DEPO  adresinizden 08.10.2025 16:25:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('96f13fdd-cb6e-4018-a84c-5155ddaf1f52','40741604282','Sayın ORASAN DAVUT , 98275727 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98275727\n\nDear ORASAN DAVUT , your shipment with 98275727 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98275727\n\nBICARGO','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('96f27b74-bd58-47ae-bb36-8717018da074','905461661672','Sayın yetkili; ALİŞAN CERCİ(K) adlı müşterinize 644847294 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:07:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('96f8012d-6f61-428f-9fdf-4976b06ac4ab','11111111111','Sayın YATAKLAR , 455411696 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455411696\n\nDear YATAKLAR , your shipment with 455411696 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455411696\n\nBICARGO','2','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL),
('96fd1ee5-752f-4d11-bf71-d2da6ce0b244','905451571652','Sayın yetkili; SALAM KORKMAZ adlı müşterinize 531445058 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde PABLO HOME adresinizden 01.07.2025 15:09:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('96fe922a-f8c5-4ccd-a81f-80801498887b','33652599311','Sayın HATİCE ÖZTÜRK, 221621737 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221621737\n\nDear HATİCE ÖZTÜRK, your shipment with 221621737 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221621737\n\nBICARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('9700c5d0-d93f-45c8-b24f-1b7d0153b3b7','905325000478','MUHAMMED KOKEN adlı müşterinizin 412555066 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL),
('97048f2c-d982-4a8f-a592-4128dad7aabf','905332942204','İPEK ÇAKMAKÇI adlı müşterinizin 505129515 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('9708756e-37fc-4846-bd5e-4cf3e4d66835','4917681094812','Sayın TAYFUN ŞENGÜL, 644424764 nolu gönderiniz 7577 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644424764\n\nDear TAYFUN ŞENGÜL, your shipment with 644424764 was delivered to you with the delivery code 7577. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644424764\n\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('9709d36c-93c7-4b24-af06-cb6ee881b9c0','4917685637648','Sayın CAN ÇELİK, 478507488 nolu gönderiniz 10365 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478507488\n\nDear CAN ÇELİK, your shipment with 478507488 was delivered to you with the delivery code 10365. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478507488\n\n\nBICARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('97121085-2d13-4253-a82b-3d9e9935d647','905313340045','ESRA KAYA adlı müşterinizin 437514624 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('971325a6-338e-4d9d-bf76-d6ad89826647','436607950540','Sayın MİYASE AYDIN, 437945654 nolu gönderiniz 8946 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437945654\n\nDear MİYASE AYDIN, your shipment with 437945654 was delivered to you with the delivery code 8946. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437945654\n\n\nBICARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('97154a52-8cb6-4a12-86da-114d272c3c74','4922039168112','Sayın KAZIM CENGİZ, 655935224 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655935224\n\nDear KAZIM CENGİZ, your shipment with 655935224 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655935224\n\nBICARGO','2','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL),
('97193ea0-6456-4c8c-b631-8f633d891f54','905313340045','UMUT ETHEM EMRE  adlı müşterinizin 437101296 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('9722d7e0-8892-4b20-a4e9-9af69c74f6a5','33769707760','Sayın BARBOSA SHANNA , 221403218 nolu gönderiniz 5085 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221403218\n\nDear BARBOSA SHANNA , your shipment with 221403218 was delivered to you with the delivery code 5085. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221403218\n\n\nBICARGO','1','381be1c2-928b-42d0-a2f3-8a80afb39ed3',NULL),
('97240fde-ecca-4560-8932-e6f8ac1ee994','905079047428','Ramish mirzayer adlı müşterinizin 449354047 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','144e05b1-97f8-4419-b9c5-ec6fc2546f88',NULL),
('972a73e6-ede0-4188-9418-6060805d65f8','905389543828','ZEESHAN AHMAD FAROOQ adlı müşterinizin 486874151 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('972f8164-35e6-4cc4-ae50-652201019818','905454259202','SERKAN ÖZBAY adlı müşterinizin 478800752 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('97316c5c-5258-4213-9bbb-56850ccf72cc','33651153601','Sayın BÜNYAMİN ELİF ÇİLİNGİR, 570899680 nolu gönderiniz 10911 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/570899680\n\nDear BÜNYAMİN ELİF ÇİLİNGİR, your shipment with 570899680 was delivered to you with the delivery code 10911. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/570899680\n\n\nBICARGO','1','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL),
('9736c3a4-13c8-4212-957d-b06c5260280d','905350617509','Sayın yetkili; MEHMET GÖK adlı müşterinize 613420026 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 11.04.2025 17:37:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','864782d3-b9d9-42bb-b370-cce193db468b',NULL),
('9738e5ad-8b47-42aa-a8dd-949d7751d8f4','4915115979347','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('97447ec0-1fc4-4e31-b73e-443230a87270','436603406293','MARTİN MARİNKOVİC adlı müşterinizin 675885408 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('9744cbc9-bd17-41ec-945c-4aba2c14527b','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA CALVİN MASA ürünü 4 parça halinde LİDYA MOBİLYA  adresinizden 24.09.2025 11:19:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('974688e5-82b3-44f2-9ca9-aa5fff007598','905075277637','HATİCE KARABAĞCA SSH  adlı müşterinizin 745658808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('974916ae-ca18-4ea4-8dbb-cafa8e9ea320','905075277637','MERVE DAYI adlı müşterinizin 745869069 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('974a0504-73f9-4982-8cba-fc078392262f','31648497230','465181388 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2317 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465181388\n\nYour shipment with the number 465181388 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2317. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/465181388\n\nBICARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('974b0bd0-02cc-46a6-aad3-00ea3febc36d','31685834791','437379015 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10881 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437379015\n\nYour shipment with the number 437379015 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10881. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437379015\n\nBICARGO','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('974b15e9-5728-4224-b1ad-1aa6ff95e488','4915201870026','644500765 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644500765\n\nYour shipment with the number 644500765 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644500765\n\nBICARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('974baa29-7260-4558-aec9-06bdaf5738f3','4915259738238','745967323 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5591 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745967323\n\nYour shipment with the number 745967323 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5591. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745967323\n\nBICARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('974c6a70-3887-4a20-9d53-61581d0671ae','905461661672','RABİA AKKUŞ adlı müşterinizin 644507096 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('97518f16-f457-41b5-bb29-a3772f8baa5d','32483112952','Sayın MERVE KIZILIRMAK, 657258901 nolu gönderiniz 2934 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657258901\n\nDear MERVE KIZILIRMAK, your shipment with 657258901 was delivered to you with the delivery code 2934. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657258901\n\n\nBICARGO','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('9761db62-f865-43b9-966d-a70d6ce56b8f','905335708965','PATRİK adlı müşterinizin 735329890 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL),
('9764ed73-5b23-41b7-8198-e634befc74cb','491778682427','ŞÖFÖR NUMARASI\n					+905467896981','1','0aaad212-a936-42da-a38a-78f129b220bb',NULL),
('97652047-eb97-4629-a51c-30df0ed640c8','905350617509','Sayın yetkili; SAUDİN CURİC adlı müşterinize 613745862 nolu gönderinizin Sehpa ürünü 1 parça halinde Masami adresinizden 30.07.2025 11:10:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7bc9f4ec-7fcf-432f-916b-dfd99ec231f8',NULL),
('9766f38e-251b-46b8-a7bd-604bec201f8f','31640905029','644126759 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6153 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644126759\n\nYour shipment with the number 644126759 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6153. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644126759\n\nBICARGO','1','f442c18d-3b28-447e-b106-1af2fe511995',NULL),
('976741c9-331a-4764-a3ec-080548fb73ef','4917632226340','Sayın SEZGİN- FURKAN ÇULLUK, 162571177 nolu gönderiniz 6930 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/162571177\n\nDear SEZGİN- FURKAN ÇULLUK, your shipment with 162571177 was delivered to you with the delivery code 6930. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/162571177\n\n\nBICARGO','1','f53e9e60-357b-4a35-b093-f6db8c2a511e',NULL),
('976a9341-cf7e-492e-b642-3a09a0ede3da','491631500970','Sayın AHMAD ALHASAN, 100799933 nolu gönderiniz 7191 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/100799933\n\nDear AHMAD ALHASAN, your shipment with 100799933 was delivered to you with the delivery code 7191. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/100799933\n\n\nBICARGO','1','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL),
('976b50f4-4d56-4879-8816-c7444d275ca8','41763213206','Sayın JASMİNA AGA, 735271543 nolu gönderiniz 6612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735271543\n\nDear JASMİNA AGA, your shipment with 735271543 was delivered to you with the delivery code 6612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735271543\n\n\nBICARGO','1','bffb100f-3ff7-4c20-b550-4d2bd55fc67f',NULL),
('976d812e-62d1-4725-8081-57636c60c113','905075277637','MEHMET GÜRKAN adlı müşterinizin 745661183 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL),
('97729451-498b-4225-bf53-3aba665f5f72','491638317510','Sayın MUSTAFA , 45559266 nolu gönderiniz 2552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/45559266\n\nDear MUSTAFA , your shipment with 45559266 was delivered to you with the delivery code 2552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/45559266\n\n\nBICARGO','1','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL),
('9779db98-3163-4b2b-8652-b1120c1e580c','4915223076449','371437952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371437952\n\nYour shipment with the number 371437952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371437952\n\nBICARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('977b0edb-f6cd-4820-beb4-5c79be332087','905325000478','ESKİŞEHİR adlı müşterinizin 412289507 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL),
('977e76c1-6649-4039-bc10-94714d239b38','4917620585657','371429381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7346 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371429381\n\nYour shipment with the number 371429381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7346. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371429381\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('977ed7f3-0580-4cac-80fb-e07552d6a0cf','4356256625652652','Sayın MEDZENİTH GMBH, 223444495 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223444495\n\nDear MEDZENİTH GMBH, your shipment with 223444495 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223444495\n\nBICARGO','2','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL),
('97839aad-4a84-420e-b24d-01101c3c3d2d','905079047428','Sayın yetkili; İBRAHİM AYIK  adlı müşterinize 449728917 nolu gönderinizin Sehpa   masa.  Orta sehpa.  4 paket sandalye DEVAMI DEPODA  ürünü 8 parça halinde Fatura adresinizden 16.04.2025 16:54:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('97846aca-f0eb-4be3-9956-eb21060fb9af','905079047428','MOHAMMAD MASOUD adlı müşterinizin 449234624 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL),
('97897407-afcb-4da9-9134-eb6d0706096f','33762006399','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('9789c3ed-b9a3-4876-88b6-07e0594e81b3','32493872964','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('978dcf2d-02db-4175-bbb1-98dfb156fc25','905059175469','Sayın yetkili; ESRA ELİŞ adlı müşterinize 428704278 nolu gönderinizin ortas+2yan sehpa+puf ürünü 4 parça halinde family adresinizden 23.05.2025 19:17:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('978e209f-43b3-4e85-b022-b349cdcde29e','4917621376557','517337381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10454 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517337381\n\nYour shipment with the number 517337381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10454. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517337381\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('97931719-346b-49ed-b946-d236adaa0dae','41794543642','61355212 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3892 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61355212\n\nYour shipment with the number 61355212 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3892. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61355212\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('97943914-4644-4f70-a392-d5316932d898','33651014066','221692379 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8726 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221692379\n\nYour shipment with the number 221692379 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8726. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221692379\n\nBICARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('9795b8d3-440a-411e-a4d9-111ceee3e498','905318109098','ELİF KELEŞ adlı müşterinizin 455460659 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','868fcd34-4588-4ed6-8571-a4e5a094c6c8',NULL),
('9796558c-9acb-4b8a-984e-5ef0aa1e2ba5','905539740010','Sayın yetkili; HÜLYA ŞENEL  adlı müşterinize 011195834 nolu gönderinizin KÖŞE ürünü 7 parça halinde kaan  adresinizden 28.08.2025 17:07:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('9796765f-97f6-4d74-87e2-357ea4019f1c','05362285629','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','2','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('97a0de47-44b1-4da7-965c-d1a07c65821d','4369911180211','Sayın RAUF ÇALIŞ , 338691111 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338691111\n\nDear RAUF ÇALIŞ , your shipment with 338691111 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338691111\n\nBICARGO','1','0f7a8dca-9600-447a-a216-28087b5362ba',NULL),
('97a4fd2e-3b70-4d98-837f-5fa1cf1f28dd','491729063463','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('97b0b5b1-8cbd-4a3b-8ad3-35725de48721','4917672239456','Sayın BERKANT YAŞA SSH , 745712790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745712790\n\nDear BERKANT YAŞA SSH , your shipment with 745712790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745712790\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('97b948b2-ef32-4a77-b3d2-eaf00d15cd5f','436603406293','Sayın ARZU ASLAN, 675629833 nolu gönderiniz 7654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675629833\n\nDear ARZU ASLAN, your shipment with 675629833 was delivered to you with the delivery code 7654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675629833\n\n\nBICARGO','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('97bc2fbb-c863-4e66-b1f3-639ae7918a0d','436765022153','515261200 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8969 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515261200\n\nYour shipment with the number 515261200 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8969. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515261200\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('97bec9bf-6f63-4d18-8bfc-da13e40dda43','00491520424249','248103321 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8905 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248103321\n\nYour shipment with the number 248103321 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8905. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248103321\n\nBICARGO','2','791e33b7-8896-46f8-95f8-717ff7671574',NULL),
('97cba822-0e67-43f8-9611-51c358fa4ba9','905054335859','SAİT CARCUR adlı müşterinizin 501874784 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL),
('97d1fedd-7923-43a8-a8e6-ab58961a2119','905313340045','SEMİH CENGİZ adlı müşterinizin 437551575 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('97d55762-c192-49fa-a77a-41230fe8afb4','491638098235','598156869 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598156869\n\nYour shipment with the number 598156869 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598156869\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('97d6bb42-dd33-4995-b4ae-0019fb93a875','41764340270','Sayın DENİZ ŞİMŞEK, 745824761 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745824761\n\nDear DENİZ ŞİMŞEK, your shipment with 745824761 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745824761\n\nBICARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('97da2b04-f3fd-4c11-97d9-db273a3d48a3','491727832300','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('97dc4ac4-5961-424d-8ad8-f2022789502e','4915752948798','Sayın METİN PEKSERT SSH, 745430976 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745430976\n\nDear METİN PEKSERT SSH, your shipment with 745430976 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745430976\n\nBICARGO','1','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('97ded045-f1fe-4794-8053-17918ae4612e','905333221039','ZÜLEYHA MUĞLU adlı müşterinizin 750486427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL),
('97e1063f-4b6f-4ed9-a8f9-1933366a3a8b','491632639510','Sayın LAMİSENT BUSİNESS, 221339460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221339460\n\nDear LAMİSENT BUSİNESS, your shipment with 221339460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221339460\n\nBICARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('97e123cc-706d-4007-9807-8203546e4fdb','4917624686469','Sayın SUAT TURA, 371628660 nolu gönderiniz 9441 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371628660\n\nDear SUAT TURA, your shipment with 371628660 was delivered to you with the delivery code 9441. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371628660\n\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('97e1735d-996b-45db-bf22-bcec75be751b','905304259202','SYLVİA LOPEZ adlı müşterinizin 478598314 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL),
('97f0d20e-d133-4352-a7c5-5ca9d93faf46','4915776951609','982893962 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8099 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982893962\n\nYour shipment with the number 982893962 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8099. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982893962\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('97f1143d-9542-4765-a99c-2d39da1efc4a','5325000478','Sayın YILDIZ ORHAN, 11.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1406415\nŞifre : 1406415\n			\nBİCARGO','1',NULL,'f14d0641-587a-4959-a970-071f376a1eb3'),
('97f228b3-8486-4183-8897-dbdf2624b7e3','33685656718','Sayın GÜLCE GÜRLER YEGİN, 478484020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478484020\n\nDear GÜLCE GÜRLER YEGİN, your shipment with 478484020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478484020\n\nBICARGO','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('97f28d36-69fb-4d11-bab6-9f428c3c0694','905428209234','BEYTULLAH ARAS adlı müşterinizin 319324843 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','37f59dff-6352-4082-a18f-d2696e483eff',NULL),
('97f800a3-d86d-4ff9-987b-5c6dfbbfc202','4917670174690','817213476 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9261 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817213476\n\nYour shipment with the number 817213476 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9261. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817213476\n\nBICARGO','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('980011c6-2977-4275-816f-df5514c88173','31681581501','Sayın İHSAN KUMUR, 221825192 nolu gönderiniz 1324 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221825192\n\nDear İHSAN KUMUR, your shipment with 221825192 was delivered to you with the delivery code 1324. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221825192\n\n\nBICARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('98049283-8464-4154-972e-31b99e175958','491634257044','Sayın ŞÜKRÜ AKSOY, 428390036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428390036\n\nDear ŞÜKRÜ AKSOY, your shipment with 428390036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428390036\n\nBICARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('9806ca5b-6fad-441c-8441-a1ff27b3d85d','4977219162688','Sayın METİN PEKSERT, 745645972 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745645972\n\nDear METİN PEKSERT, your shipment with 745645972 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745645972\n\nBICARGO','2','e30052e8-31ee-42d9-b11e-50298f473091',NULL),
('9809fcf0-37ba-40f5-80ec-13559057b019','436603775115','Sayın STEFAN SUCEVİC, 437133708 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437133708\n\nDear STEFAN SUCEVİC, your shipment with 437133708 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437133708\n\nBICARGO','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('980ccb17-2448-42a4-ad4a-a7ffc96587b2','33628043396','Sayın AHASSSDDDW, 750704426 nolu gönderiniz 1001 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750704426\n\nDear AHASSSDDDW, your shipment with 750704426 was delivered to you with the delivery code 1001. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750704426\n\n\nBICARGO','1','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL),
('980ccccd-fa18-404a-a809-44d7c35f4592','905336367828','Sayın yetkili; FERİDE USLI  adlı müşterinize 982674617 nolu gönderinizin Başlık  ürünü 1 parça halinde Marki baza  adresinizden 13.08.2025 16:47:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('9810e5cb-0b77-4027-823e-416964f047ca','905075277637','Sayın yetkili; ALİ ÖZDEN  adlı müşterinize 745991962 nolu gönderinizin BAŞLIK + ORTA SEHPA + YAN SEHPA + 1 KANEPE ürünü 4 parça halinde Fatura adresinizden 09.05.2025 13:45:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('981c7f80-aac3-4135-a67a-c2c112874560','436603406293','ARZU ASLAN adlı müşterinizin 675965194 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('98215a1a-01dc-4365-892f-58487cd6a23b','905363385813','HAZAL ELMAS adlı müşterinizin 976983661 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('982562d8-63e0-4782-8792-9e0a7446015f','905349208933',' İSMET CEYLAN adlı müşterinizin 127241743 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0b6d3d95-378b-4d48-9a2c-6a0e39674941',NULL),
('9828c563-2457-4392-aff3-bef4c06e5ade','4917664318290','Sayın 53489 SİNZİG, 248955283 nolu gönderiniz 6839 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248955283\n\nDear 53489 SİNZİG, your shipment with 248955283 was delivered to you with the delivery code 6839. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248955283\n\n\nBICARGO','1','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL),
('982e972f-acd1-42f3-bd3f-3ea226fdd99b','905079047428','AKRAMİ MUHAMMED adlı müşterinizin 449292416 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL),
('98315fbf-29a1-4c01-aa16-170eae608a69','491732013160','Sayın NERMİNA SKENDERİ, 371749484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371749484\n\nDear NERMİNA SKENDERİ, your shipment with 371749484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371749484\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('9836d16a-0b66-4cf6-aa11-722707c45da2','905451571652','Sayın yetkili; HUSSEİN NAKAL adlı müşterinize 531606130 nolu gönderinizin SEHPA ürünü 1 parça halinde MASAMİ adresinizden 02.10.2025 14:40:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('983ba550-75fc-4bfa-affb-bc087fa95a73','436606200309','371194748 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1519 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371194748\n\nYour shipment with the number 371194748 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1519. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371194748\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('983c0e24-d995-4e31-adfe-7c81f54616fc','905331602195','Sayın yetkili; EL GHZİZAL CHAİME  adlı müşterinize 221686736 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 20.06.2025 18:52:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('983ce200-5fcc-493b-86ca-57ad0ec5e7fa','491578706465','ŞÖFÖR İKETİŞİM\n					+905301824880','2','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('98464702-6693-47ec-b17c-cbe2ea3d6637','4915122809101','Sayın ABUZER TEKCE, 319232330 nolu gönderiniz 7344 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319232330\n\nDear ABUZER TEKCE, your shipment with 319232330 was delivered to you with the delivery code 7344. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319232330\n\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('9846d4a8-5627-4653-b6e7-cdfc65d4befd','905465479064','RECEP BEY adlı müşterinizin 858124295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL),
('9846f8a8-792c-47d2-b8a3-f82ce8f843d3','33679890673','Sayın ABDİL ACAR, 614788293 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614788293\n\nDear ABDİL ACAR, your shipment with 614788293 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614788293\n\nBICARGO','1','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL),
('984a60fa-dc05-437f-bbf8-1c0fe65102b3','905394878216','YASİN ARSLAN  adlı müşterinizin 517205467 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL),
('984eb5dd-b8ac-45ff-986f-a961b7acc1d2','905325000478','SAGAX CONSULTİNG  adlı müşterinizin 412380161 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('984f588f-9f7b-46c7-8c8c-f49a78ffdc15','905350617509','HANDE PALMA adlı müşterinizin 61378160 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('98500315-411a-497e-ae56-363c81700d8f','491746858313','Sayın YALÇIN BÜYÜKMURAT, 478643015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478643015\n\nDear YALÇIN BÜYÜKMURAT, your shipment with 478643015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478643015\n\nBICARGO','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('9851ddfc-6d15-45fc-8779-8804e3b08646','905510396989','GAMZE ÖZDEMİR adlı müşterinizin 319645924 nolu gönderisi 65 parça halinde yola çıkmıştır.','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('985285ba-f5df-4ff5-9d05-226229e23f49','4917664700278','Sayın ELİF BEYZA ARVİŞ, 613112731 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613112731\n\nDear ELİF BEYZA ARVİŞ, your shipment with 613112731 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613112731\n\nBICARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('98593fd0-d15a-4cb7-83e5-97a6d120484e','4917645789684','745712790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2436 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745712790\n\nYour shipment with the number 745712790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2436. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745712790\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('985afbf1-c4cb-452f-9eed-6fb3e5ac9241','905461661672','NADİYE ÇAVUŞ adlı müşterinizin 644200718 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('985e5e02-1d74-4041-8110-8a487983516e','32487435166','Sayın MEHMET SARIKAYA, 268368509 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268368509\n\nDear MEHMET SARIKAYA, your shipment with 268368509 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268368509\n\nBICARGO','1','9c99f254-2612-4029-ac15-ffb095b93de3',NULL),
('98627f29-5de4-4259-abd3-7210f99416ee','905335511664','SALİM TEKE adlı müşterinizin 371884796 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('9862b9a5-86dd-45f4-a672-74dcc4bc1ee1','905454259202','EDİZ DİNLER adlı müşterinizin 478989383 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('9863a577-9b4c-4734-ad3e-60f33b898113','905054335859','DURSUN GÜNBEYİ adlı müşterinizin 501243340 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL),
('98740ab0-d43f-4f62-b5e1-6cca1ec00651','905335511664','Sayın yetkili; CANDAN ÖZDEMİR adlı müşterinize 371251508 nolu gönderinizin KOLTUK TAKIMI ürünü 3 parça halinde Elit Köşeci Sinan Bey adresinizden 01.07.2025 17:29:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('98752764-cd38-4b30-96e0-bb99aba453d7','4917680898294','437514624 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4726 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437514624\n\nYour shipment with the number 437514624 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4726. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437514624\n\nBICARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('9878af92-4621-48cd-9e00-96fde0714ca3','905076046290','231717770 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3565 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231717770\n\nYour shipment with the number 231717770 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3565. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231717770\n\nBICARGO','1','8cb0e92a-0903-450a-b20f-cfe7f3f01dd1',NULL),
('987970f7-d46d-4719-91c6-5158577201ae','905301592882','FATMA FİLİZ DEMİR adlı müşterinizin 910657387 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d7d56728-9768-4bf8-8387-7f8b0fc62a6f',NULL),
('987ddf16-7e22-4106-a511-9cccf82e361d','491634081364','Sayın DERYA KARADENİZ, 505414907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505414907\n\nDear DERYA KARADENİZ, your shipment with 505414907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505414907\n\nBICARGO','1','ee0c62fa-abac-44d0-915b-567df66647be',NULL),
('987f648f-1647-4ec8-af32-38acfbfe1c9b','905335708965','ÇUVALLAR adlı müşterinizin 24891590 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL),
('98864d9a-1b32-4254-b5b0-642274aa772f','905331602195','Sayın yetkili; SAMİR KERANOVİC  adlı müşterinize 221837026 nolu gönderinizin 100x200 traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:58:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('98870c97-5df4-4c1e-9fa3-17269a0b3a33','905363385813','ÖZKAN KUYUCU adlı müşterinizin 976121570 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('98897541-2c36-4fe8-916f-f72b804c2e50','905523438971','Sayın yetkili; HELİN ÖZDİL adlı müşterinize 896155892 nolu gönderinizin Baza başlık  ürünü 4 parça halinde Albessa  adresinizden 18.09.2025 10:50:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('988a06e4-309a-4303-8908-42475646d2b4','491639801426','Sayın MUSTAFA, 107623614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107623614\n\nDear MUSTAFA, your shipment with 107623614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/107623614\n\nBICARGO','1','13119f2d-05d5-4b2d-b32f-396c12ed0ea0',NULL),
('988bab2c-9f5c-4e52-893b-21f3615bbdb7','33766392423','Sayın MARİGLEN SHKEMBİ, 437431907 nolu gönderiniz 10127 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437431907\n\nDear MARİGLEN SHKEMBİ, your shipment with 437431907 was delivered to you with the delivery code 10127. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437431907\n\n\nBICARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('988c3895-228b-4b25-ba75-e2b9ce2135bb','41764721719','613168811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8269 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613168811\n\nYour shipment with the number 613168811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8269. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613168811\n\nBICARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('988f7f2d-00d7-46cc-b4c0-aa3c37ce570c','32489103760','Sayın MEHMET SEKBAN, 437840419 nolu gönderiniz 3039 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437840419\n\nDear MEHMET SEKBAN, your shipment with 437840419 was delivered to you with the delivery code 3039. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437840419\n\n\nBICARGO','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('98923695-3513-40b8-b395-b71cc04f746f','905304259202','PELŞİN YILDIZ adlı müşterinizin 478245028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('98985ecc-2fae-4059-84a5-6dae08b7943c','905461661672','Sayın yetkili; BETÜL GÜNER adlı müşterinize 644550858 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 29.08.2025 12:22:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('989e9ca3-e65b-4e22-b206-b0ef1d969f6c','905331602195','MUHAMMED ARACI adlı müşterinizin 221247114 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('98a2ce76-465b-4763-a452-fb422c95812b','491621579425','437791709 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1117 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437791709\n\nYour shipment with the number 437791709 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1117. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437791709\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('98a9e0f5-44af-4f2e-a519-7d57b37a90c6','31613050944','644599754 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644599754\n\nYour shipment with the number 644599754 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644599754\n\nBICARGO','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('98ab2039-e1c4-4170-8b53-32e8fc24c603','905304259202','ERSİN ÖZDEMİR adlı müşterinizin 478392276 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL),
('98ab7266-032d-49aa-a726-abbf9260c937','905079358213','ZÜLFİKAR CAN adlı müşterinizin 745936573 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6c005507-054f-4904-8f84-b0774ba70335',NULL),
('98ac64e5-fb43-49bc-ad8b-caab562c5b1d','905421855834','MESUL OLGUN adlı müşterinizin 338607005 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('98b94370-37c6-4772-a5ee-315fd0f22f1b','4915224007809','Sayın BURHAN BAYRAKTAR, 644758410 nolu gönderiniz 3129 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644758410\n\nDear BURHAN BAYRAKTAR, your shipment with 644758410 was delivered to you with the delivery code 3129. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644758410\n\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('98c280ef-ae10-4eb4-b05c-4b84a780fe3f','436767024629','Sayın FURKAN GÜNEŞOĞLU, 74532550 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74532550\n\nDear FURKAN GÜNEŞOĞLU, your shipment with 74532550 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74532550\n\nBICARGO','1','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL),
('98c9396f-b131-44eb-bef4-0b75b8b6a886','905313340045','Sayın yetkili; SEBİHA DEMİR adlı müşterinize 437233194 nolu gönderinizin MASA ürünü 2 parça halinde masami adresinizden 10.09.2025 16:50:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('98ccab1d-80ef-427e-8980-ba0c49f40dec','905442774505','ALİ ARSLAN  adlı müşterinizin 657153999 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('98cf69f3-fc9a-4b29-beb4-6e6943cb9fb9','32467701837','412903351 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2829 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412903351\n\nYour shipment with the number 412903351 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2829. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412903351\n\nBICARGO','1','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL),
('98d4e91b-dc2b-4e77-97e2-e4011ea9cd27','905368336516','AKKİZ TOPCU adlı müşterinizin 515129438 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('98d5820d-8055-430b-b914-53672d6bc95c','436503601028','Sayın TEKİN ÇİLLİ, 315959949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/315959949\n\nDear TEKİN ÇİLLİ, your shipment with 315959949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/315959949\n\nBICARGO','1','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL),
('98dad632-56db-4b45-bfb4-10a02cbf722e','491735396163','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('98dcdcf9-ca96-461a-86e7-1eaaf71f76dc','905517075149','OKAY DERİNKUYU adlı müşterinizin 478402358 nolu gönderisi 27 parça halinde yola çıkmıştır.','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('98e68910-0e23-41f4-b27b-0e331870da57','905318109098','HÜSEYİN GÜNDÜZ adlı müşterinizin 455614339 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('98e86d53-fa4f-4633-ab40-6e02db9ed657','905539740010','MUHAMMET UCBAY adlı müşterinizin 011428040 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('98edf7ba-486e-41fe-bcea-7926ef8ae791','905335708965','ERKAN KARAKUŞ  adlı müşterinizin 248614567 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','a5221ddb-40ec-42e7-8be1-4f0a5fd4c354',NULL),
('98efd59a-ef50-4c29-be31-59cb0cdef607','905461661672','Sayın yetkili; FURKAN BARUT adlı müşterinize 644644143 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 09.05.2025 14:07:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('98f6864d-6eb3-4f5a-9fd0-92368bbd4246','905532675926','METİN MOLA adlı müşterinizin 428693052 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('98f73675-a1a1-4dc8-8cb5-5e21f51bbbf0','33787068261','Sayın EMRULLAH ŞENGÜL, 910304835 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910304835\n\nDear EMRULLAH ŞENGÜL, your shipment with 910304835 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910304835\n\nBICARGO','1','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL),
('98f81abb-ef28-4c04-8a92-468827594a2a','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('98f9f2d3-a66b-47dd-b65f-8fa3efcdf6ab','905331602195','Sayın yetkili; ŞEYMA ŞANLI  adlı müşterinize 221883606 nolu gönderinizin 90*190 Milas beyaz masa ürünü 3 parça halinde Fatura adresinizden 10.12.2024 16:46:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('98fd77a0-7814-4005-b389-f6388a719c47','491735389289','Sayın YASEMİN MUTLU, 598131456 nolu gönderiniz 7632 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598131456\n\nDear YASEMİN MUTLU, your shipment with 598131456 was delivered to you with the delivery code 7632. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598131456\n\n\nBICARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('98fe65c9-2a6a-420d-bc78-ffe787d18cc7','905336367828','Sayın yetkili; SONJA HUSSAİNİ  adlı müşterinize 982529212 nolu gönderinizin Koltuk takımı 3-3-1  ürünü 3 parça halinde Comfortlife  adresinizden 07.12.2024 11:38:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('98ffbcc0-af0f-4adc-b92e-ab4f27d6bd3a','330769065408','Sayın POLAT HANIM, 982644032 nolu gönderiniz 2023 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982644032\n\nDear POLAT HANIM, your shipment with 982644032 was delivered to you with the delivery code 2023. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982644032\n\n\nBICARGO','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('99005149-dd9c-407f-9d20-ada62ddef05d','905350617509','Sayın yetkili; SERKAN ELGİT  adlı müşterinize 61310831 nolu gönderinizin Sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 22.07.2025 14:40:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('99044a66-b0e6-4e3e-aaec-8dcd479c38bc','491771708842','41256945 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3405 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41256945\n\nYour shipment with the number 41256945 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3405. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41256945\n\nBICARGO','1','9c5e22fd-be64-4432-b4ea-accf07116cf0',NULL),
('9905871e-ef43-412c-98a8-4dd07c9f9eab','33660485307','Sayın AYŞE DOĞAN, 982415045 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982415045\n\nDear AYŞE DOĞAN, your shipment with 982415045 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982415045\n\nBICARGO','1','93c365fd-397d-46ce-91b9-bdd586250f02',NULL),
('990950ab-4807-4462-9e01-03d98e4944ca','905078062550','AYLİN MİYANYEDİ adlı müşterinizin 598444930 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('990ff8f4-6226-4996-aa18-80bfbaae4e69','004917632601476','735660192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8587 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735660192\n\nYour shipment with the number 735660192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8587. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735660192\n\nBICARGO','2','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL),
('99100955-b2c0-48cf-9065-34fa2718fa28','905389543828','Sayın yetkili; SUAN RASTODER adlı müşterinize 486405325 nolu gönderinizin Sandalye ürünü 3 parça halinde Asil Sandalye adresinizden 03.07.2025 15:24:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('99105d0f-6c1d-42d8-b365-3dd46d9f2f52','905335511664','AYCAN ÇOLAK adlı müşterinizin 371120278 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('99117c14-dee8-4212-a2be-5255e159f6b6','905331602195','MİHAND SAFAE  adlı müşterinizin 221257971 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('99118cac-3261-4115-bd77-188988805c95','33651400749','Sayın ÖZKAN ÖZKOŞAR		, 910482480 nolu gönderiniz 1612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910482480\n\nDear ÖZKAN ÖZKOŞAR		, your shipment with 910482480 was delivered to you with the delivery code 1612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910482480\n\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('9915e8d2-e19a-4757-bd71-4028f73f235c','905301592882','SÜLEYMAN MAKAS  adlı müşterinizin 910980337 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0dd4a2d2-2050-49e5-b089-3c05a90162dc',NULL),
('99176ff1-6b8f-4a7b-9e36-cde073db60a1','905461661672','Sayın yetkili; AYŞE ÖZKAYA(K) adlı müşterinize 644783664 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 15.09.2025 11:01:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('9920f127-4104-4b99-b32f-24859ff04dde','491743202967','Sayın KÜBRA YAMAN, 613251938 nolu gönderiniz 10483 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613251938\n\nDear KÜBRA YAMAN, your shipment with 613251938 was delivered to you with the delivery code 10483. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613251938\n\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('992430eb-8e48-48dc-96b4-ec4613810226','905336367828','Arbesa adlı müşterinizin 982653067 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL),
('992826e2-9ab6-47e6-949a-c49b34f403a6','33623933331','449582137 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449582137\n\nYour shipment with the number 449582137 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449582137\n\nBICARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('9930cc1d-b639-4746-8c03-852efeea2e2a','905050303939','Sayın YASİN DOVENSE, 41283852 nolu gönderiniz 1250 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41283852\n\nDear YASİN DOVENSE, your shipment with 41283852 was delivered to you with the delivery code 1250. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41283852\n\n\nBICARGO','1','5331e11a-bdb0-4b0d-88ef-aa4a9f0e3115',NULL),
('9933c75c-99bc-4b5c-8d8e-653eb302f94e','491751501286','Sayın MEHMET SÜZEN , 98238273 nolu gönderiniz 8326 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98238273\n\nDear MEHMET SÜZEN , your shipment with 98238273 was delivered to you with the delivery code 8326. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98238273\n\n\nBICARGO','1','a92b5169-963a-4b74-9857-229dbed0d9e7',NULL),
('9938684d-328c-493a-9405-b25052c42927','436604046200','449715358 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8377 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449715358\n\nYour shipment with the number 449715358 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8377. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449715358\n\nBICARGO','1','fdbd5255-796f-4278-a5b0-0661f2660929',NULL),
('993a3c1b-bf2f-462e-80d9-a2a65631dd9b','31634031801','Sayın MUSTAFA UZUNBOY, 478618410 nolu gönderiniz 2088 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478618410\n\nDear MUSTAFA UZUNBOY, your shipment with 478618410 was delivered to you with the delivery code 2088. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478618410\n\n\nBICARGO','1','122e072e-9a04-4ece-a40c-c2aaa95b6630',NULL),
('993a5eb2-2d11-468c-a69b-6eeb7cd147b8','4917634311162','Sayın ÖZLEM POLAT, 37176846 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37176846\n\nDear ÖZLEM POLAT, your shipment with 37176846 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37176846\n\nBICARGO','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('9944db02-5a35-4214-a1d7-084090aa1338','491733842224','Sayın ESME GÜNEŞ, 437256638 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437256638\n\nDear ESME GÜNEŞ, your shipment with 437256638 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437256638\n\nBICARGO','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('99462116-5b3b-4eda-ba05-0d220fbf8152','004917632786230','Sayın OZAN YEŞİL, 735442629 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735442629\n\nDear OZAN YEŞİL, your shipment with 735442629 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735442629\n\nBICARGO','2','4f91d654-f578-426a-8133-5299ed48d624',NULL),
('99470541-677f-4bc4-aba7-70c656aa22c3','905079358213','BERKANT YAŞA SSH  adlı müşterinizin 745712790 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('99492e7d-357b-4ff0-bb55-ea922d54d54a','905363385813','ZEHRA OCALAN adlı müşterinizin 976192214 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('994baa85-0379-4f05-a86f-5adba56d8116','436606319101','371102325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4364 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371102325\n\nYour shipment with the number 371102325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4364. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371102325\n\nBICARGO','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('99524f4b-d26c-4fc9-ad7a-98c0f35e4ff0','4915731326705','598530881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7932 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598530881\n\nYour shipment with the number 598530881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7932. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598530881\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('995addfc-91fb-445a-98a8-6122459bcd6e','436604565532','663164000 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7384 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663164000\n\nYour shipment with the number 663164000 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7384. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/663164000\n\nBICARGO','1','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL),
('995b1323-7c9e-468a-8d4e-6137d9a8c062','905059175469','BÜLENT GÜZEL adlı müşterinizin 428647459 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('995ca678-8909-4f0a-b844-66eed73f25ca','905336367828','MUSTAFA ÇETİN adlı müşterinizin 982490890 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ead6dade-f350-443d-a16a-41863d612c7c',NULL),
('995d3114-eade-4818-883e-f8b095d468f1','491777519570','Sayın KIYMET DALMAN(K), 644742878 nolu gönderiniz 7900 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644742878\n\nDear KIYMET DALMAN(K), your shipment with 644742878 was delivered to you with the delivery code 7900. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644742878\n\n\nBICARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('995ed0c9-e6da-4fd6-80ea-c9e86e0edf62','905451571652','Sayın yetkili; BUKET AKDAG adlı müşterinize 531380104 nolu gönderinizin KÖŞE  ürünü 7 parça halinde PABLO HOME adresinizden 06.10.2025 12:31:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47f285e8-830a-42cf-a352-d8268aef8cdb',NULL),
('995f1454-8670-4d9b-9d87-db8f5b84f5e5','905335511664','Sayın yetkili; METE AKGÜL adlı müşterinize 371857345 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 17.07.2025 10:59:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('99604122-22c0-441c-955b-8e88da09745e','905336367828','Sayın yetkili; Polat hanım  adlı müşterinize 982644032 nolu gönderinizin 3-3-1 koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 06.11.2024 13:11:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('9961f980-f932-47f2-82e5-46d8541ee736','33652910874','Sayın BURAK TÜRKEŞ, 614419362 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614419362\n\nDear BURAK TÜRKEŞ, your shipment with 614419362 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614419362\n\nBICARGO','1','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('9970eba9-a3f1-49ae-bb04-dc61e6ec2a79','1111111111','Sayın İLAYDA FİDAN , 019868401 nolu gönderiniz 4815 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/019868401\n\nDear İLAYDA FİDAN , your shipment with 019868401 was delivered to you with the delivery code 4815. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/019868401\n\n\nBICARGO','2','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('9973d00c-252a-4474-ab58-603a14d87df0','905517075149','MERYEMA TEKİN adlı müşterinizin 478958383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('997a0d01-f831-459b-a43f-ba8f61c07ca6','905075277637','ERCAN VARSAK adlı müşterinizin 745318139 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('997e1897-93f4-4011-8e4c-38b868708317','31638631333','657640918 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2408 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657640918\n\nYour shipment with the number 657640918 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2408. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657640918\n\nBICARGO','1','cba51d7d-e0e2-4e21-acf0-8699ede8b4b3',NULL),
('9988c11a-5b61-40b7-a6aa-7d8608da8a77','905423036885','920610594 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10372 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/920610594\n\nYour shipment with the number 920610594 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10372. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/920610594\n\nBICARGO','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('9989eb84-cb62-4df5-a4aa-babb4580a11b','33788354620','Sayın FATMA KARAHAN, 478346989 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478346989\n\nDear FATMA KARAHAN, your shipment with 478346989 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478346989\n\nBICARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('998b96dc-5344-4272-b903-8748f56c452a','491741928164','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('998f5550-9d84-4163-ba02-8e38116c1bb4','4915208440325','Sayın NAHİDE BAHÇEÇİOĞLU, 478127271 nolu gönderiniz 5780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478127271\n\nDear NAHİDE BAHÇEÇİOĞLU, your shipment with 478127271 was delivered to you with the delivery code 5780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478127271\n\n\nBICARGO','1',NULL,NULL),
('999152d9-fcde-4cea-8072-247b5a1e5543','905388618969','ALBNORA MUSTAFA  adlı müşterinizin 786286562 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('99947ccf-f367-40e0-80e2-67b3e0384ac6','905301592882','VAHİT FISTIKÇI adlı müşterinizin 910950688 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL),
('99956ae1-f50f-4bbe-9057-68dd76495c24','4917634315393','Sayın HAYRİYE BOZKURT, 598405313 nolu gönderiniz 5041 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598405313\n\nDear HAYRİYE BOZKURT, your shipment with 598405313 was delivered to you with the delivery code 5041. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598405313\n\n\nBICARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('999be901-d3c6-4ccc-96da-2433316eb578','4368120902265','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('999d983e-b628-4636-80bc-e33d93cc400b','905078062550','Sayın yetkili; TALHA KARA adlı müşterinize 598384021 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 18.07.2025 17:49:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('999fceeb-e548-4039-8d34-788e366f2eb7','905461661672','ZELİHA SARITAŞ adlı müşterinizin 644287826 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('99a394a8-ce1d-47dd-ac07-fe0b335d9653','905078062550','MELİKE ÇALIŞKAN adlı müşterinizin 598172413 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('99a78282-840a-4a01-a051-440dcf5c10ac','32470420226','Sayın AYŞE ACAR, 221639055 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221639055\n\nDear AYŞE ACAR, your shipment with 221639055 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221639055\n\nBICARGO','1','6484e9a1-fd2e-4ef1-9f1f-b6f486ea4693',NULL),
('99b3c2b7-1628-46d2-80cf-a4afa47f81b1','4915222621206','803961620 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9789 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803961620\n\nYour shipment with the number 803961620 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9789. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/803961620\n\nBICARGO','1','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL),
('99b4d9ac-7629-48a5-9570-3c0acfc64714','00491739094453','Sayın MUHAMMED HAMIDO, 735280128 nolu gönderiniz 1552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735280128\n\nDear MUHAMMED HAMIDO, your shipment with 735280128 was delivered to you with the delivery code 1552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735280128\n\n\nBICARGO','2','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL),
('99b971cc-6894-462f-8af6-54563a1be146','905454259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin yatak ve sehpalar ürünü 2 parça halinde Fatura adresinizden 21.05.2025 16:44:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('99bb9e52-aa01-4709-b33b-34a94e96b7e2','491737526626','İletişim \n					Şöför Murat : +905321616048','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('99bdb7c0-cfcd-44d6-9299-b3ec5278db1a','4917661928608','75056602 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2948 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/75056602\n\nYour shipment with the number 75056602 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2948. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/75056602\n\nBICARGO','1','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL),
('99c2c38f-f5be-48f7-a939-18069cfa2181','905394878216','Sayın yetkili; GAMZE CAPALBO - GABRİELE adlı müşterinize 517395181 nolu gönderinizin SSH (Sandalye ayağı, Masa kanadı, Puf) ürünü 3 parça halinde Fatura adresinizden 03.07.2025 16:56:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('99c603aa-5cad-4941-a0fd-63ceb1470c27','31657678818','644775291 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644775291\n\nYour shipment with the number 644775291 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644775291\n\nBICARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('99c8ed04-7313-4666-9be5-5856256ee910','491739366502','Sayın SARA CASTRO, 371287728 nolu gönderiniz 10344 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371287728\n\nDear SARA CASTRO, your shipment with 371287728 was delivered to you with the delivery code 10344. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371287728\n\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('99d5093f-d121-4a45-b44a-4affd544fc0c','905059175469','FATİH KAZAR adlı müşterinizin 428135973 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('99d6b7fe-b6e9-4e10-bea1-8f30b45b9345','905078062550','FATİH YÜKSEL adlı müşterinizin 59878032 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('99d6ca13-b719-4176-85d1-75d821972479','905517075149','Sayın yetkili; İSMAİL YILMAZ adlı müşterinize 478777575 nolu gönderinizin maldiv dolapsız yatak odası ürünü 13 parça halinde acca adresinizden 22.10.2025 11:41:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e959f4e-0d79-4ec0-865b-ff5f684e63bf',NULL),
('99d711db-097b-4e78-9018-74a62a0168d5','9053259981980','Sayın yetkili; İSMET IRMAK adlı müşterinize 614932526 nolu gönderinizin SSH KUMRU NEFRO BİLGİSAYAR KOLTUĞU AYAĞI  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:30:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','558ade04-1baa-47ac-99df-233551c2e4c2',NULL),
('99d8ca9a-6041-4040-98f6-81908e5e764c','4917631753389','976680764 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2769 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976680764\n\nYour shipment with the number 976680764 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2769. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976680764\n\nBICARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('99dd89cd-e878-438f-8d87-8a45c190db4e','436503440942','Sayın BURCU HANIM , 455207811 nolu gönderiniz 8594 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455207811\n\nDear BURCU HANIM , your shipment with 455207811 was delivered to you with the delivery code 8594. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455207811\n\n\nBICARGO','1','e37361e5-2f1a-4a2b-b066-a2b1f2111d2b',NULL),
('99e25a65-2f65-4f5f-b687-0b31a6f9951d','491732013160','Sayın NERMİNA SKENDERİ, 371749484 nolu gönderiniz 2143 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371749484\n\nDear NERMİNA SKENDERİ, your shipment with 371749484 was delivered to you with the delivery code 2143. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371749484\n\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('99e9eba0-b597-45a5-8310-7bf723818197','491626234457','Sayın İBRAHİM TURŞUCU		, 910697257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910697257\n\nDear İBRAHİM TURŞUCU		, your shipment with 910697257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910697257\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('99f6ffc9-447c-45bc-98eb-cea9fd854463','905079358213','METE BOZDAĞ 1  adlı müşterinizin 745241298 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('99f984cc-4f42-4a9f-b536-7a66cf4b7542','905312762034','Sayın yetkili; YASİN ERDAL adlı müşterinize 808696925 nolu gönderinizin KÖŞE TAKIMI ürünü 3 parça halinde PABLO HOME CONCEPT adresinizden 23.10.2025 11:46:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b246d186-ebbb-4410-afe2-737f312e473e',NULL),
('9a0208ba-622d-4c39-81e2-5c6024c39ee0','905301592882','ZELİHA AKCAN adlı müşterinizin 910120533 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL),
('9a0421c0-29cc-4844-a4c4-8d6516d67cd2','491716444408','Sayın CONSİGNEE, 2487154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/2487154\n\nDear CONSİGNEE, your shipment with 2487154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/2487154\n\nBICARGO','1','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL),
('9a07d573-5cf9-45c4-9888-8833da518c94','905059175469','Sayın yetkili; ERDOĞAN DEMİREL adlı müşterinize 428172853 nolu gönderinizin yemek odası ürünü 4 parça halinde alizze adresinizden 08.07.2025 11:52:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL),
('9a07e368-e970-4afd-b73b-36035a83d510','905454259202','ALİCAN KABAK  adlı müşterinizin 478224735 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','fa763b5d-87a5-4561-b94a-76c46bc6cab0',NULL),
('9a0f4544-d29a-405f-ad70-bdc98af4afe9','4917654974069','478644410 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478644410\n\nYour shipment with the number 478644410 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478644410\n\nBICARGO','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('9a1994a5-dae3-44ab-993b-45d3fadb0684','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 100X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('9a1dca63-5ec8-4b6a-b7d0-c76c2a7811b9','905350617509','CİGDEM DENKER  adlı müşterinizin 613391684 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('9a1fa5b0-d326-429e-accd-863da7407cbb','004915566210140','735561469 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3019 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735561469\n\nYour shipment with the number 735561469 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3019. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735561469\n\nBICARGO','2','26321c61-8ef9-4498-b666-82a04622843a',NULL),
('9a2fc0aa-fbd7-4802-a8ed-987cbd77b09f','905075277637','HATİCE ÖZEN adlı müşterinizin 745734415 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('9a380e44-e71b-4b67-be2e-fc0340ab09fa','905335708965','RASHİCA ADNAN adlı müşterinizin 73558075 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL),
('9a3ad489-1974-415f-984d-fbea6fab4fa3','4915202113856','Sayın MELİSA DÜZME, 644796083 nolu gönderiniz 4358 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644796083\n\nDear MELİSA DÜZME, your shipment with 644796083 was delivered to you with the delivery code 4358. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644796083\n\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('9a3b0a07-53f7-43e0-aba1-066add03ffcd','33660910086','Sayın SERKAN KAHRAMAN SSH, 221348923 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221348923\n\nDear SERKAN KAHRAMAN SSH, your shipment with 221348923 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221348923\n\nBICARGO','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('9a408809-e7ae-45a7-b579-9e3360b2bd99','905304259202','Sayın yetkili; ZEYNEP CİHANGİR adlı müşterinize 478678849 nolu gönderinizin iki adet kanepe kolu- iki adet koltuk kasası ürünü 1 parça halinde vaav adresinizden 02.06.2025 14:33:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('9a41354b-6fd1-43cf-a261-7fb0e660d244','905461661672','ESRA BALTACI adlı müşterinizin 644711459 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('9a41e541-7b31-42af-8e22-6f572b029f4f','905335511664','ÖZLEM POLAT adlı müşterinizin 37176846 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('9a41fa2f-af0b-40c5-87aa-a6917185b9d5','905336367828','SERVET ERDOĞAN adlı müşterinizin 982426968 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('9a45e5b3-4d94-45a4-98d6-351a3e83757e','4917641531210','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('9a470329-f8a9-435f-8148-02dc82821ff6','905075277637','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin 160X200 DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 17.09.2025 10:53:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('9a48f198-9aa1-4f79-aaae-df6916d0e9ce','905331602195','SIDI MARİ MUHAMMED  adlı müşterinizin 221859569 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('9a4bdf8c-76b1-4547-b89e-ef98982439dc','4915756075578','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('9a4ca49a-2790-4fd6-8107-bceb6fdc255f','905331602195','BERFİN UZUNER  adlı müşterinizin 221900850 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('9a4e445b-30c7-4cf0-93f3-41261d6a79b4','31612622634','221186271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5876 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221186271\n\nYour shipment with the number 221186271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5876. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221186271\n\nBICARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('9a50020e-52c4-43f9-b985-35a505ccc006','491741630656','437700144 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437700144\n\nYour shipment with the number 437700144 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437700144\n\nBICARGO','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('9a51dbc5-c201-4c93-8474-1749a95f95a1','905517075149','Sayın yetkili; KISMET ÖZTÜRK adlı müşterinize 478892203 nolu gönderinizin 2 ADET 90X200 SET ürünü 6 parça halinde Fatura adresinizden 31.07.2025 14:49:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','537f327a-f919-43fa-9be8-fa8d0af3cf00',NULL),
('9a530e33-b868-4711-b0b5-e1f2cec74376','905517075149','BİNALİ BOZBAŞ adlı müşterinizin 478798827 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('9a5550fe-8f5b-4bc0-b0c0-6ea9610f35c9','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE ORTA + YAN SEHPA  ürünü 5 parça halinde RİXXE  adresinizden 08.09.2025 12:16:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('9a565d11-68bc-41db-b943-22f25ed6b1ab','43650589188','Sayın ÖZLEM TURA, 745808637 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808637\n\nDear ÖZLEM TURA, your shipment with 745808637 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745808637\n\nBICARGO','2','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('9a5af1ad-3816-446a-ba76-00d296e6bf29','905336367828','Sayın yetkili; AMELA MULİC  adlı müşterinize 982972858 nolu gönderinizin sandalye  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 15.11.2024 15:33:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('9a5b0158-27bb-43f0-a635-7993f5991e87','33769187229','Sayın ZEYNEP ALEYNA ÖZBEY, 478101302 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478101302\n\nDear ZEYNEP ALEYNA ÖZBEY, your shipment with 478101302 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478101302\n\nBICARGO','1','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL),
('9a5c4a6e-fc2c-4df4-a6eb-e118e2f63c5e','905075277637','MUSTAFA YILMAZ SSH  adlı müşterinizin 745338988 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('9a5c5f72-c3a8-4e4b-86bd-009be2744e8b','4915755360334','Sayın BAŞAK BEYOĞLU, 750501209 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750501209\n\nDear BAŞAK BEYOĞLU, your shipment with 750501209 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750501209\n\nBICARGO','1','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL),
('9a5e1009-a3b9-48ca-8ef9-9c34c8663550','491625434501','745422037 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8969 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745422037\n\nYour shipment with the number 745422037 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8969. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745422037\n\nBICARGO','1','3e19392f-7b28-4ec5-bd54-c32058400252',NULL),
('9a612edc-d770-4f84-8794-fb78105476fb','33660544556','Sayın LUSYA YILDIRIM , 748330948 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/748330948\n\nDear LUSYA YILDIRIM , your shipment with 748330948 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/748330948\n\nBICARGO','1','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL),
('9a69564b-4583-414d-bd42-3aa91f5f6e3c','905301592882','ÖZKAN ÖZKOŞAR adlı müşterinizin 910756975 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('9a6ee48e-a936-425e-bc87-49bf152b00c9','905312762034','YUSUF ÖZKULLUK adlı müşterinizin 808146332 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('9a6fdb46-01a6-4f6d-bf9d-5d52e4a251e1','905331602195','Sayın yetkili; GÜLSÜM UÇAR  adlı müşterinize 221345365 nolu gönderinizin Balat sandalye  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:57:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('9a763d39-a7ee-4ca8-b866-160a70229518','491625403964','644152675 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644152675\n\nYour shipment with the number 644152675 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644152675\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('9a80f0c8-b293-4c50-a6c2-8b8e6e4c9435','491734941989','248799636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248799636\n\nYour shipment with the number 248799636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248799636\n\nBICARGO','1','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL),
('9a8217db-0f9c-4b1e-a3cd-a3f2d01e411c','905325998198','Sayın yetkili; BAHATTİN AGİT ÇELİK adlı müşterinize 614350153 nolu gönderinizin DECO BRAVO SOHO KOLTUK TAKIMI 3+3+1 ürünü 3 parça halinde DECO BRAVO  adresinizden 22.11.2024 09:53:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('9a850a5d-8684-4b2b-9f3f-7203d7b19060','11125363838374','223923203 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7579 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223923203\n\nYour shipment with the number 223923203 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7579. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223923203\n\nBICARGO','2','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL),
('9a87bc51-9896-4e15-8f09-1485f43fb18b','905335708965',' adlı müşterinizin 248450889 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','87929b1a-65a1-4766-84ad-495ee7ffcb70',NULL),
('9a8c1e5c-8ce1-4821-8125-48185089e5f9','905350617509','Sayın yetkili; BESİR FAZLİJİ adlı müşterinize 613168811 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 07.05.2025 14:14:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('9a95b6ad-970f-4c65-bc39-b6629ec993d2','6472647627466264','Sayın HARUN, 412302460 nolu gönderiniz 2612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412302460\n\nDear HARUN, your shipment with 412302460 was delivered to you with the delivery code 2612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412302460\n\n\nBICARGO','2','f7ef839c-2795-4f15-80a8-414937600965',NULL),
('9a971d51-a7c5-407b-9e93-1a6a62dca8e8','905079358213','Sayın yetkili; MAJD KAMSHA adlı müşterinize 745653378 nolu gönderinizin PIER YEMEK MASASI  ürünü 3 parça halinde Fatura adresinizden 23.09.2025 10:48:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('9a9e560f-49bf-4ef5-8a72-3360c4eb899a','905079358213','NURCAN ÖZER adlı müşterinizin 745940979 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL),
('9a9eb8cb-bb47-47a8-8a09-02862a6a66fb','905301592882','Sayın yetkili; ABDULLAH ÖZER		 adlı müşterinize 910594430 nolu gönderinizin MASAL YATAK ODASI ürünü 17 parça halinde Fatura adresinizden 26.09.2025 18:10:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('9aa02cf7-ccaf-467e-92fd-f11dbe7fb4a6','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL ORTA SEHPA ürünü 1 parça halinde ŞAHİNLER  adresinizden 03.09.2025 13:43:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('9aa27f29-0b55-426a-9861-03343fc5ecef','905304259202','GAZİ PINARBAŞI adlı müşterinizin 478125476 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL),
('9aa3953b-c1aa-484e-a9db-a79bdda9a7e2','11111111111','Sayın SEYFETTİN, 41298450 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41298450\n\nDear SEYFETTİN, your shipment with 41298450 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41298450\n\nBICARGO','2','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('9ab54f6a-070f-4735-a0db-9cee697e59e1','905301592882','Sayın yetkili; ABDULLAH ÖZER		 adlı müşterinize 910594430 nolu gönderinizin NATURA KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 26.09.2025 18:09:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('9ab65929-a5a0-48ad-a876-c3795c23093a','33769997691','910684336 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910684336\n\nYour shipment with the number 910684336 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910684336\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('9ab96f08-28cc-4893-98d5-07e409329a5f','905075277637','İLYAS KAHRİMAN adlı müşterinizin 745799900 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL),
('9abbc4ee-4c4e-4557-a35a-0b35134cd3a3','905313340045','MARİNE NETO adlı müşterinizin 43720744 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('9abe6ed0-8841-4307-a0f7-bf697dc42272','4917661925156','Sayın NURAN YILDIRIM, 910561299 nolu gönderiniz 1260 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910561299\n\nDear NURAN YILDIRIM, your shipment with 910561299 was delivered to you with the delivery code 1260. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910561299\n\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('9abffd76-cc69-4788-908a-b3b50c08c5fc','905461661672','Sayın yetkili; SUAT TUGAL adlı müşterinize 644443664 nolu gönderinizin SANDALYE ürünü 4 parça halinde ÇINAR SANDALYE adresinizden 10.04.2025 16:05:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('9ac1a855-6ecd-4e6d-a805-814c54924758','491625434501','Sayın EBRU DEMİRHAN SSH, 745433427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745433427\n\nDear EBRU DEMİRHAN SSH, your shipment with 745433427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745433427\n\nBICARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('9ac5fbe1-4849-4d46-a3ce-0b53ca160661','11111111111','Sayın UĞUR ACAR  ULUIŞIK LOJİSTİK, 03.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8039906\nŞifre : 8039906\n			\nBİCARGO','2',NULL,'8039cd90-69f4-4da8-b3fd-eb4bd967bace'),
('9acadea9-4850-47ba-a098-0b134c9c7d66','4915780460011','598754271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598754271\n\nYour shipment with the number 598754271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598754271\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('9ad01d9f-d267-4624-8e5e-3b4749d8fe55','905534084469','AYŞE ÇÖPLÜ adlı müşterinizin 127530070 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('9ad3d1b7-f74f-445b-950d-fa8141974d61','4917670386373','Sayın AYLİN KIRLANGIÇ, 127221315 nolu gönderiniz 8420 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127221315\n\nDear AYLİN KIRLANGIÇ, your shipment with 127221315 was delivered to you with the delivery code 8420. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127221315\n\n\nBICARGO','1','96741763-bc18-47ed-be48-0c973149d4fb',NULL),
('9ad660e6-0a28-4570-af7b-1ee620c83413','31681124473','Sayın ÖZAY ÖZDEMİR YILDIZ (SSH), 221530805 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221530805\n\nDear ÖZAY ÖZDEMİR YILDIZ (SSH), your shipment with 221530805 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221530805\n\nBICARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('9adc6807-d8c9-4249-a928-a3c3545a4dc4','32465395227','Sayın SEVAY NİKOLAEVA YANKOVA, 517895646 nolu gönderiniz 5894 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517895646\n\nDear SEVAY NİKOLAEVA YANKOVA, your shipment with 517895646 was delivered to you with the delivery code 5894. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517895646\n\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('9ae41941-081a-4ded-9e0d-5d528061144c','004915231627768','531893295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7626 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531893295\n\nYour shipment with the number 531893295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7626. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531893295\n\nBICARGO','2','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('9ae68190-5088-4e03-be7b-adc5047b9a65','905461661672','Sayın yetkili; ANIL ÇOKBİLİR adlı müşterinize 644584641 nolu gönderinizin Traverten masa ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 29.04.2025 15:22:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('9ae90c70-7c9d-441b-8e83-9c43259540c4','33652627588','Sayın ALİ ÇETİN , 982408783 nolu gönderiniz 6095 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982408783\n\nDear ALİ ÇETİN , your shipment with 982408783 was delivered to you with the delivery code 6095. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982408783\n\n\nBICARGO','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('9ae99547-5a72-44b0-987a-5ae8cb1ac100','905079358213','Sayın yetkili; FATMA ALTAY adlı müşterinize 745871666 nolu gönderinizin KING PLATİN BAZA SETİ 180X200 ürünü 2 parça halinde Fatura adresinizden 20.05.2025 14:24:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('9aeb549e-b25d-4fd5-a416-6f2b68aab2ac','491736518131','Sayın ELİF GÖKTAN, 505770346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505770346\n\nDear ELİF GÖKTAN, your shipment with 505770346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505770346\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('9af47cd9-92a0-483f-8a65-1588b174d51f','905069116877','VENERA RUSTEMİ adlı müşterinizin 817838997 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('9af4a7c3-5fc1-4e03-895d-045f197a1b15','905336367828','Sayın yetkili; ESTİFANOS HABTE  adlı müşterinize 982496646 nolu gönderinizin sandalye  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 11.08.2025 11:08:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('9af77c3b-f51b-4d92-bf00-b5255aca9aee','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin sehpa 2 adet ürünü 1 parça halinde mobievim adresinizden 14.06.2025 15:32:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('9b008656-497a-4679-8637-3db05c0d9265','4915733741918','Sayın MAZHAR BAYMAN SSH, 644803178 nolu gönderiniz 10084 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644803178\n\nDear MAZHAR BAYMAN SSH, your shipment with 644803178 was delivered to you with the delivery code 10084. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644803178\n\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('9b03a035-5db8-4837-ae35-2acaa97861f0','4915231405303','Sayın OKAY DERİNKUYU, 478402358 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478402358\n\nDear OKAY DERİNKUYU, your shipment with 478402358 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478402358\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('9b03e71a-2b1b-4f97-bcdf-5bde006b49b6','4915205605713','Sayın SERDAR BALCI, 616724751 nolu gönderiniz 3871 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/616724751\n\nDear SERDAR BALCI, your shipment with 616724751 was delivered to you with the delivery code 3871. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/616724751\n\n\nBICARGO','1','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL),
('9b060d63-c09c-46e2-9922-c7148202e384','905319678931','BÜNYAMİN ELİF ÇİLİNGİR adlı müşterinizin 570899680 nolu gönderisi 105 parça halinde yola çıkmıştır.','1','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL),
('9b0ae1d2-902d-44e6-ae32-b5f2725d04ac','905368336516','NURAY DURAN adlı müşterinizin 515261200 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('9b0c510a-a40f-4015-beb8-6997029aafbb','4366488883248','745837821 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5450 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745837821\n\nYour shipment with the number 745837821 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5450. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745837821\n\nBICARGO','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('9b0d97e3-b0a8-417f-8904-5a05ee83ed30','4917634171072','613976667 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/613976667\n\nYour shipment with the number 613976667 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/613976667\n\nBICARGO','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('9b100ce0-66df-4679-96f2-f35f4cb6d847','4915566766358','Sayın ALEYNA İREP, 37119244 nolu gönderiniz 3923 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37119244\n\nDear ALEYNA İREP, your shipment with 37119244 was delivered to you with the delivery code 3923. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37119244\n\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('9b112196-2ca1-4d5f-93c2-188e1a7859fa','5444482458','Sayın DİLBER ÖZTÜRK, 319585140 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319585140\n\nDear DİLBER ÖZTÜRK, your shipment with 319585140 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319585140\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('9b1659c5-fd1c-4b3a-b378-9c2b664a1087','905454259202','Sayın yetkili; SÜMEYYE ARSLAN adlı müşterinize 478719602 nolu gönderinizin 2kutu 4 adet sandalye ürünü 2 parça halinde çelikbey inegöl depo adresinizden 07.02.2025 14:26:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','40683a71-69a8-4dcd-8bfa-2e521bc73880',NULL),
('9b190a5e-b47b-46eb-92a1-20d12b7386d6','4917680626495','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('9b19e58a-3323-4402-ba77-3cd60f988b03','4917661977861','Sayın RAMAZAN AY, 644542202 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644542202\n\nDear RAMAZAN AY, your shipment with 644542202 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644542202\n\nBICARGO','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('9b23a4ae-afcc-464e-bc2c-66ab42e52955','905461661672','Sayın yetkili; ESRA BALTACI adlı müşterinize 644711459 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 25.06.2025 17:58:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('9b27cd62-2dff-4f9d-aa38-0896674f0d0a','905443955915','Sayın yetkili; ÖZKAN KARAOĞLU adlı müşterinize 614200423 nolu gönderinizin BAMBİ JOVELYN Ç.KŞ. NEVRESİM TKM. SOMON ürünü 1 parça halinde Fatura adresinizden 18.12.2024 13:54:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23baf79e-0401-46f1-881d-b4e0b8c2a729',NULL),
('9b29e40d-f862-4d4b-ac4f-437e760c7d2e','31625064385','Sayın MURAT , 412716766 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412716766\n\nDear MURAT , your shipment with 412716766 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412716766\n\nBICARGO','1','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL),
('9b2abc07-32c0-4ad5-8576-8ef41f3501b3','4917661479043','Sayın TUBA BAŞKAŞ SSH, 598876994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598876994\n\nDear TUBA BAŞKAŞ SSH, your shipment with 598876994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598876994\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('9b3276f1-c374-457f-9025-867041f02533','905304259202','ÖZGÜR BAY adlı müşterinizin 47833977 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','849dc3bf-f8cd-4d56-b754-d79724b3a46a',NULL),
('9b34257a-2288-4f60-a659-08f1421c9d84','905073106101','HATİCE GÜNGÖR adlı müşterinizin 465634666 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('9b3af45f-18ba-468a-96bf-17643ef5df6a','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GARDEROBE DİOR MASA ürünü 1 parça halinde GARDOREBE adresinizden 03.09.2025 14:09:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('9b3bc744-e025-4651-b16a-34025adb7e31','33768950442','Sayın ÇİĞDEM UĞUR FRANSA, 221158425 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221158425\n\nDear ÇİĞDEM UĞUR FRANSA, your shipment with 221158425 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221158425\n\nBICARGO','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('9b3e034e-9bcf-4a6f-bd9a-d742232f8c69','4917631419046','428414858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9182 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428414858\n\nYour shipment with the number 428414858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9182. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428414858\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('9b3e8e82-768d-4d3d-8236-58da0ba243c4','491713800212','Sayın AHMAD KADİ, 598578683 nolu gönderiniz 7326 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598578683\n\nDear AHMAD KADİ, your shipment with 598578683 was delivered to you with the delivery code 7326. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598578683\n\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('9b3f90e2-e1ac-4744-a022-594d39acc6d4','31619649864','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('9b411ed7-e097-4648-8d97-f36a4378bb45','905335511664','NERGİZ TOPRAK adlı müşterinizin 371540742 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('9b420d01-1c67-44ad-af0e-b302381abb10','436601875213','Sayın MURAT SABAK, 745859135 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745859135\n\nDear MURAT SABAK, your shipment with 745859135 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745859135\n\nBICARGO','1','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL),
('9b432ee3-7d2a-4e7e-849d-8105a996ce0f','491702765634','Sayın ERKAN URAL, 5983047 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5983047\n\nDear ERKAN URAL, your shipment with 5983047 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/5983047\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('9b49c0ad-e3d5-4361-9c47-594d407e9b0c','4917662135635','Sayın MOONBEAM HOME, 412284149 nolu gönderiniz 8711 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412284149\n\nDear MOONBEAM HOME, your shipment with 412284149 was delivered to you with the delivery code 8711. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412284149\n\n\nBICARGO','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('9b4bb65d-9a64-4554-b234-df3235ac244b','905331602195','Sayın yetkili; JASSEY COLİNE adlı müşterinize 221190454 nolu gönderinizin 80-60 çap Traverten sehpalar ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 28.08.2025 10:07:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('9b5e7755-8914-44e3-b659-39002d888331','33782642365','982754836 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2077 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982754836\n\nYour shipment with the number 982754836 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2077. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982754836\n\nBICARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('9b5f91a0-42e3-41e3-a6ed-e7e3a62ff136','411798150062','Sayın HÜLYA GÜNDOĞDU, 455568872 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455568872\n\nDear HÜLYA GÜNDOĞDU, your shipment with 455568872 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455568872\n\nBICARGO','2','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL),
('9b605a5f-df06-4e2c-a322-747160d9050b','905331602195','Sayın yetkili; ŞEYMA BOZDAĞ adlı müşterinize 221940723 nolu gönderinizin 90x190 cm Msm05 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 27.06.2025 11:38:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('9b60b62b-7aa7-48ce-a0fa-af2959e5847f','905075277637','Sayın yetkili; PINAR SALMA SSH  adlı müşterinize 745332643 nolu gönderinizin SSH TEK BAZA  ürünü 1 parça halinde Fatura adresinizden 06.08.2025 16:19:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('9b63daae-4157-432c-9f6c-806bfcacdcff','905454259202','Sayın yetkili; OSMAN KILINÇ adlı müşterinize 478205168 nolu gönderinizin 1 adet köşe modül ürünü 1 parça halinde PUFFİN adresinizden 15.05.2025 14:16:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('9b6ac6be-6cb8-45c6-8284-c990221f242b','4368181273062','Sayın GAFUR NUHA, 43758285 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43758285\n\nDear GAFUR NUHA, your shipment with 43758285 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43758285\n\nBICARGO','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('9b6dffde-8abc-4a97-b40d-ad659f7384a6','4917631212460','745431846 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4909 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745431846\n\nYour shipment with the number 745431846 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4909. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745431846\n\nBICARGO','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('9b720cb9-09f1-4d71-9a6c-b9e35a690a30','905309753633','SERDAR BALCI adlı müşterinizin 616724751 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL),
('9b74b630-aa3f-4860-be36-92cb31c21b75','905335511664','KADİR ÜZER adlı müşterinizin 371495147 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('9b75852b-9cf9-49b5-a9b0-d04d01a3119f','33616563372','817288476 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2935 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817288476\n\nYour shipment with the number 817288476 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2935. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817288476\n\nBICARGO','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('9b855d3c-2dd6-41ea-b652-a22a60a00204','905517075149','KEVSER KAYA adlı müşterinizin 478983907 nolu gönderisi 54 parça halinde yola çıkmıştır.','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('9b873337-ed71-4a86-b198-15b67e0467fd','905335511664','Sayın yetkili; HARUN ŞAHİN adlı müşterinize 371421349 nolu gönderinizin KARYOLA ürünü 6 parça halinde albessa karyola adresinizden 26.08.2025 10:44:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('9b8870a0-d7d3-4e40-b6ad-c26bfe07dfd4','905075277637','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin TESLA LUXURY TV ALT  ürünü 1 parça halinde KUKA  adresinizden 03.09.2025 17:45:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('9b8dc2d6-384e-49b0-b562-c769f0f314de','33660617145','Sayın MERVE KARADAVUT, 437233015 nolu gönderiniz 9297 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437233015\n\nDear MERVE KARADAVUT, your shipment with 437233015 was delivered to you with the delivery code 9297. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437233015\n\n\nBICARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('9b90f26d-c12f-4356-ab65-3ea0f5fdbd1e','33744724088','Sayın EDİZ DİNLER, 478989383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478989383\n\nDear EDİZ DİNLER, your shipment with 478989383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478989383\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('9b964d27-ffda-49e8-8b1a-969ae70fca89','905075277637','AYDIN İLKNUR adlı müşterinizin 745545386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('9b964d84-923d-4a1e-be2b-e04e6d2ec68a','905356503956','AYHAN TÜRKMEN adlı müşterinizin 027527659 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL),
('9b970d7b-f301-4090-97d7-345ca9e4fccc','905079358213','FURKAN GÜNEŞOĞLU adlı müşterinizin 74532550 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL),
('9b9a3f23-204b-43f5-b533-22d3b33c150c','4917624132760','Sayın MUSTAFA DÜNDAR, 91030681 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91030681\n\nDear MUSTAFA DÜNDAR, your shipment with 91030681 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91030681\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('9b9c0ba4-42a3-4061-89b8-eaa4d7e5f2a9','905079358213','GÜLŞAH KUŞ adlı müşterinizin 745219309 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('9b9d5ba6-d884-41f9-b45d-aa1d515b39a3','4915757275469','Sayın FATMA SAĞLIK, 437835103 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437835103\n\nDear FATMA SAĞLIK, your shipment with 437835103 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437835103\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('9ba1be49-ae0f-4fe0-bd09-7cca537d0f3b','31614671032','Sayın SEMRA HAKAN KABİR, 745409977 nolu gönderiniz 1928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745409977\n\nDear SEMRA HAKAN KABİR, your shipment with 745409977 was delivered to you with the delivery code 1928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745409977\n\n\nBICARGO','2','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('9ba38582-3761-4bc1-928b-945e0500a1e2','905079358213','Sayın yetkili; ELMAS KAYA adlı müşterinize 745411152 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 22.04.2025 11:37:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('9ba899f0-d625-4989-9130-a5e11a39169e','491788201397','Sayın BURHAN SARIKURT, 613431273 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613431273\n\nDear BURHAN SARIKURT, your shipment with 613431273 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613431273\n\nBICARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('9baa1e2c-beff-4667-b8d9-b16a002cb26e','905325998198','Sayın yetkili; ŞÜKRAN ALP adlı müşterinize 614990703 nolu gönderinizin GARDOREBE TREND DOLAP ALT TABLASI,TREND ŞİFONYER ÇERCEVESİ,AYNA ARKASI VE TREND 4 NUMARALI PAKET ürünü 3 parça halinde GARDOREBE adresinizden 07.11.2024 17:07:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('9badb5f4-c28f-41f3-8ff8-34d72847a9ee','905075277637','Sayın yetkili; EMRE YILMAZ adlı müşterinize 745884226 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 09.05.2025 15:56:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('9bb6b5c0-e960-4307-a587-f9ff31439a1d','4917620519550','Sayın MERVE DAYI, 745869069 nolu gönderiniz 4774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745869069\n\nDear MERVE DAYI, your shipment with 745869069 was delivered to you with the delivery code 4774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745869069\n\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('9bc05d2c-e772-4e9c-8907-08655bc3a9c1','905075277637','Sayın yetkili; ÖMER YILDIZ adlı müşterinize 745249761 nolu gönderinizin VOYAGE TEKLİ + ORTA SEHPA + PUF  ürünü 3 parça halinde RİXXE  adresinizden 17.07.2025 13:01:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f7979b44-eac7-41b0-a981-1f2165181d24',NULL),
('9bc297b4-2b66-46d6-a65d-c413907251fb','905461661672','Sayın yetkili; HÜDAYİ HARMANCI adlı müşterinize 64422113 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 30.09.2025 14:33:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('9bc81596-c57e-4a6f-a908-d69c83c50140','33753794689','Sayın ÖZKAN ERDEM , 478784133 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478784133\n\nDear ÖZKAN ERDEM , your shipment with 478784133 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478784133\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('9bcce5c8-dcae-493f-81e9-d9ccec5087d5','905075277637','İBRAHİM KAYA adlı müşterinizin 745823692 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL),
('9bce2078-28f7-40b8-8bd4-c5b61e0e1513','491721301453','976593604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9247 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976593604\n\nYour shipment with the number 976593604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9247. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976593604\n\nBICARGO','1','d71f7dec-d2d9-43db-b33d-4120e264d90b',NULL),
('9bd66d28-fdb8-4516-86a9-589ca214d8e7','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('9bda87d8-c209-4b9f-974f-2ffea863c10f','33626434007','428511580 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7206 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428511580\n\nYour shipment with the number 428511580 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7206. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428511580\n\nBICARGO','1','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL),
('9be3bca3-4436-42d3-ac5f-2c5362f8d595','436765207297','Sayın MARİA JONANOVİC, 449417757 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449417757\n\nDear MARİA JONANOVİC, your shipment with 449417757 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449417757\n\nBICARGO','1','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL),
('9beb70c0-1d59-4896-bd56-16fb24975fb6','905350617509','Sayın yetkili; BERNA YİLDİRİM adlı müşterinize 613847250 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 17.06.2025 16:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('9bebce79-20f4-47df-a245-8df45d94497f','905079358213','Sayın yetkili; ALİ ERKOCA SSH  adlı müşterinize 745942521 nolu gönderinizin SSH KOMODİN 2 AD ürünü 4 parça halinde RİXXE  adresinizden 15.10.2025 14:20:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('9bee234b-44e2-4c6c-a357-94338cc094f7','905075277637','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin VOYAGE YAN SEHPA 2 AD  ürünü 2 parça halinde RİXXE  adresinizden 24.10.2025 19:10:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('9bf334ac-8879-44e7-8201-49860e11d3ef','905389543828','Sayın yetkili; FARUK ANSER adlı müşterinize 486552581 nolu gönderinizin Masa Sehpa  ürünü 6 parça halinde Decoria adresinizden 06.08.2025 11:50:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('9bf3e359-859f-49ae-a0a9-a4017f49cd90','905059175469','Sayın yetkili; ERDOĞAN DEMİREL adlı müşterinize 428172853 nolu gönderinizin yatak odası ürünü 14 parça halinde alizze adresinizden 08.07.2025 11:52:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL),
('9bf6c011-6efe-4745-8aba-71cea59177c5','491779772089','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz 4599 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 was delivered to you with the delivery code 4599. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644771270\n\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('9bf81b2b-1fdf-482d-8c7e-8d30d0aeaaaf','491791163970','Sayın RUKİYE TURAN, 644301613 nolu gönderiniz 7858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644301613\n\nDear RUKİYE TURAN, your shipment with 644301613 was delivered to you with the delivery code 7858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644301613\n\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('9c064eba-5c7c-4df0-88b4-8ca9af900664','905059175469','Sayın yetkili;  BİRSEN DÜZ adlı müşterinize 428990953 nolu gönderinizin rollpack yatak 140 lık ürünü 1 parça halinde befa yatak adresinizden 18.12.2024 15:47:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc416865-0c74-4fdd-89bf-5ec5f8499eb4',NULL),
('9c0c2ded-c4a4-4d6c-9d67-8575bb86ed1d','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin SAFİR 4-3 KOLTUK ürünü 5 parça halinde RİXXE adresinizden 19.09.2025 14:49:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('9c132a07-6825-4d97-83b1-2cdb6389a361','905335511664','Sayın yetkili; MEHMET AKHAN adlı müşterinize 371998665 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 11.07.2025 16:03:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('9c1c4457-d611-4647-8e48-311192cab1e8','33781091123','Sayın HÜSEYİN KAYAOĞLU, 853766753 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/853766753\n\nDear HÜSEYİN KAYAOĞLU, your shipment with 853766753 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/853766753\n\nBICARGO','1','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL),
('9c1d2c6b-1036-4890-a7bf-dc911b9f8cfa','905454259202','ZEHRA AŞIK adlı müşterinizin 478243785 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('9c214ee8-1d72-4ae7-948b-c18ab6d13c4e','491632040337','İletişim \n					Şöför Murat : +905321616048','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('9c26a648-e4cb-47ea-a6da-63f08d2d55de','491712326850','Sayın YUSUF ALAN SSH , 745639343 nolu gönderiniz 5861 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745639343\n\nDear YUSUF ALAN SSH , your shipment with 745639343 was delivered to you with the delivery code 5861. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745639343\n\n\nBICARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('9c274171-3998-41db-a3ed-6d55ca643ca1','905461661672','YAKUP AKYOL adlı müşterinizin 644741916 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('9c2f23cb-3760-49bf-a266-dbc5b82d4b80','905517075149','RAMAZAN KAYHAN SSH adlı müşterinizin 478885112 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('9c3342b1-b69c-42d3-83c5-acc210f5a094','33770349060','655919587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10575 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655919587\n\nYour shipment with the number 655919587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10575. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655919587\n\nBICARGO','1','88d46ad5-3201-49c1-bafb-3c271a911158',NULL),
('9c33a934-a838-4d06-be9a-eca4d5c468a4','33759392497','22145441 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2662 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22145441\n\nYour shipment with the number 22145441 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2662. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/22145441\n\nBICARGO','1','1879da27-b3bb-4922-be98-d1ddc5fe38a9',NULL),
('9c33da18-b7c5-484b-b39b-b7c8bfd1bb40','4915158856914','Sayın MELİKZADE AHMET ATAY, 598493196 nolu gönderiniz 4013 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598493196\n\nDear MELİKZADE AHMET ATAY, your shipment with 598493196 was delivered to you with the delivery code 4013. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598493196\n\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('9c37ea4e-6d46-4fa1-9407-86824f395968','905461661672','RADİA AL ADOUİ adlı müşterinizin 644599754 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('9c3bfcea-f284-4333-8f78-c3f06aa60461','31625064385','41246036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3766 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41246036\n\nYour shipment with the number 41246036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3766. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41246036\n\nBICARGO','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('9c3dbf05-e635-44bd-99f6-7d95e7c8a9f1','905517075149','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478322325 nolu gönderinizin yatak odası(puf dahil)-yemek odası ürünü 38 parça halinde mobilistan adresinizden 08.08.2025 17:30:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('9c446025-2a73-4b77-bb40-13abe9fc2a23','31620957828','221899517 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221899517\n\nYour shipment with the number 221899517 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221899517\n\nBICARGO','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('9c4831de-e790-4241-bab5-513851f55ec4','33614367699','478300917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6660 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478300917\n\nYour shipment with the number 478300917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6660. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478300917\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('9c4d58b3-2cdc-473d-a7d0-4e3981d83435','4915753541736','449203445 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8754 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449203445\n\nYour shipment with the number 449203445 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8754. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449203445\n\nBICARGO','1','110f0eb8-2914-4e85-b599-dc743891806b',NULL),
('9c5134b8-a12f-41d4-ad1c-938d151e0540','905335511664','KUDRET KALK adlı müşterinizin 371804669 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('9c53f255-29b7-459d-9fb7-30b2eb102f51','905335511664','SEDA ULUSOYLU adlı müşterinizin 371691350 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('9c540059-9a0e-4d77-95c6-4c954618084a','905336367828','Sayın yetkili; FİROUZEH NOORZAİ adlı müşterinize 982561254 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 07.08.2025 11:46:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('9c56707b-4dd9-4ccc-a262-ff454f5ffbbe','905335511664','TUĞBA COŞKUN adlı müşterinizin 371672954 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('9c58fac0-b1bc-4de3-95e2-7ae2cd8608ac','905054335859','YENER DOĞAN adlı müşterinizin 50119540 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','30753652-c249-4370-954e-0eb227ea17aa',NULL),
('9c5bda7e-4429-4e9d-8393-280332e115c4','905461661672','DÖNDÜ YÖRÜK adlı müşterinizin 644887691 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('9c5c4c79-a423-4318-b704-d1335b31c063','905054335859','BOURAS ABDELGHANİ adlı müşterinizin 501703321 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','98f2dea4-caf9-419a-931c-7d9d7c9b36ac',NULL),
('9c606501-1806-4c51-b12b-4adddae2d23e','491789151262','Sayın UMUTCAN ŞAHİNCİ, 437870707 nolu gönderiniz 3759 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437870707\n\nDear UMUTCAN ŞAHİNCİ, your shipment with 437870707 was delivered to you with the delivery code 3759. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437870707\n\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('9c65913d-2b18-4c96-84ba-3783e1cf586f','05539740010','Sayın yetkili; EMRE KIZIL ALMANYA SSH adlı müşterinize 011222896 nolu gönderinizin masa üstü ürünü 2 parça halinde mobilyalar  adresinizden 27.08.2025 14:09:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('9c69b8bf-9a52-4fc0-986d-099e0f81bc78','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160\'LIK BAŞLIK ANTRASİT ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('9c6deaca-1f1e-4984-aa13-a413a394c3af','491746264666','644890175 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4740 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644890175\n\nYour shipment with the number 644890175 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4740. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644890175\n\nBICARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('9c727856-c892-41e7-97bd-ede4baa67fbe','905461661672','FADİME AKDEMİR adlı müşterinizin 644130393 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('9c754fd4-7110-425b-aefd-04694085f48f','4917644265407','745961245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745961245\n\nYour shipment with the number 745961245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745961245\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('9c7668c6-defa-4e0d-a69e-ddf57a27614c','00491782203045','Sayın ALEV DOĞRU, 478697529 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478697529\n\nDear ALEV DOĞRU, your shipment with 478697529 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478697529\n\nBICARGO','2','006b20ec-9123-4bbc-9826-67622acc03ba',NULL),
('9c7a6d8c-6afa-48be-abfe-4e4dc0ba3656','905421855834','Sayın yetkili; RAUF ÇALIŞ adlı müşterinize 338991013 nolu gönderinizin Pamela 2 Kitaplıklı tv ünitesi ürünü 6 parça halinde Dimax Mobilya adresinizden 02.12.2024 10:16:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f10b88a4-5160-4b26-9eda-5026590612c9',NULL),
('9c7b3651-6ed2-422f-bda3-9fb707b93d49','905335511664','Sayın yetkili; SEMİH YEŞİLYAYLA adlı müşterinize 371716908 nolu gönderinizin kanepe ürünü 4 parça halinde Elitis Home adresinizden 24.09.2025 16:24:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('9c8338b4-6561-4b98-8442-ff2a0b6c7e03','905461661672','TUĞBA GÜLSEVEN SSH adlı müşterinizin 644860505 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('9c8c8456-b3f2-4865-aea0-44efa018a7c8','905054335859','ALİM BAŞ adlı müşterinizin 50156405 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL),
('9c8d0159-7748-4b5d-a9b8-ec148743773a','4917642954543','65758007 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3355 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65758007\n\nYour shipment with the number 65758007 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3355. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/65758007\n\nBICARGO','1','e9363e6f-11f7-400b-bc2a-13288789cb1a',NULL),
('9c8f1818-427f-448a-8f6f-369b7137a6dc','905335708965','53489 SİNZİG adlı müşterinizin 248955283 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL),
('9c9494fc-588f-4b5d-846d-c36172ae0d50','905335511664','Sayın yetkili; AYCAN ÇOLAK adlı müşterinize 371120278 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 14.08.2025 15:10:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('9c989d1c-7266-4394-8829-58affcfa3f4b','436607950540','Sayın MERVE BEKTİK, 43752518 nolu gönderiniz 4688 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43752518\n\nDear MERVE BEKTİK, your shipment with 43752518 was delivered to you with the delivery code 4688. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43752518\n\n\nBICARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('9c9f5b92-8775-41f3-8b9f-70d50321cd7c','905075277637','SSH ALPEREN DÜZENLİ  adlı müşterinizin 745863981 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('9c9fae2d-65fb-489f-9341-385e0d244b3f','905461661672','Sayın yetkili; ESRA BALTACI adlı müşterinize 644711459 nolu gönderinizin KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 31.07.2025 11:33:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('9ca1e63c-f503-4d60-a713-e459b3f4632a','905313340045','SABRİ ÖNÜZ adlı müşterinizin 437762949 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('9ca80f5c-5f83-457c-b499-f68fb139595e','905454259202','DEFNE AKAY adlı müşterinizin 478642368 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','967d15a7-2096-45bd-bc90-7a65319402f4',NULL),
('9cab4e02-7d06-4c93-9770-1b74cb6ea8ee','491779772089','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz 4599 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 was delivered to you with the delivery code 4599. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644771270\n\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('9cabb010-640d-4e6b-ae9e-10b43b4c5522','4915254879175','Sayın ARZU KUZUCU, 371160737 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371160737\n\nDear ARZU KUZUCU, your shipment with 371160737 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371160737\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('9cb229e7-a58f-42e0-aa09-a86b52d293c7','905059175469','Sayın yetkili; SİDAR AKDENİZ adlı müşterinize 428605585 nolu gönderinizin puf ssh ürünü 1 parça halinde Fatura adresinizden 13.01.2025 10:14:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33a66c99-d47d-4b2a-a8a1-74fa024a9e07',NULL),
('9cb6c2f4-a7e2-4929-bd71-3f1764d0c60e','004917621719741','735793543 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6635 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735793543\n\nYour shipment with the number 735793543 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6635. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735793543\n\nBICARGO','2','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL),
('9cb92b12-b91b-4198-977a-0103ea162f5b','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA KİTAPLIK ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 15:00:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('9cbafe65-1680-452c-b1a4-7250b0121c84','905079047428','YAVUZ GENÇ  adlı müşterinizin 449801040 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('9cc6d077-afef-4d2f-b3ef-2ed62dcb60bc','905336367828','MON NAM ALEMİ adlı müşterinizin 982799609 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2473140a-52f5-4b86-a285-e3de923dde5c',NULL),
('9ccc092a-d743-40b5-8dab-7c003619aaba','33652634167','Sayın KAZIM YOL, 478202878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478202878\n\nDear KAZIM YOL, your shipment with 478202878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478202878\n\nBICARGO','1','702ebb26-b834-4081-a58c-2279f0d9af03',NULL),
('9ccc0afb-d596-444d-8c72-56de101fdbc6','4901732611373','982728095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7899 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982728095\n\nYour shipment with the number 982728095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7899. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982728095\n\nBICARGO','2','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL),
('9ccc92e2-9ca1-4899-9946-53a09ef39ac9','905461661672','Sayın yetkili; (GÜLŞEN KARATAŞ) SSH  adlı müşterinize 644423895 nolu gönderinizin Mermer üst tabla ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 11.09.2025 13:25:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('9cd1416c-2832-4b8b-851a-d89f95430bbb','905079358213','EMRE YILMAZ SSH  adlı müşterinizin 745771664 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('9cd23a3d-d03c-4df2-af8c-9fe8c9ade3ca','4915906843844','517764616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1881 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517764616\n\nYour shipment with the number 517764616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1881. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517764616\n\nBICARGO','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('9cd480a4-1385-43e3-b7df-d4f3f1f41ccb','905368336516','VOLKAN CELİK adlı müşterinizin 515785688 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('9cd88736-885a-45b0-b4ad-d8583bb58e29','905449041398','SEYFETTİN BİLİCAN adlı müşterinizin 703728513 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('9cdb9337-01c8-4adf-b0d3-cc9b9a42a489','33629351821','734957360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1011 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734957360\n\nYour shipment with the number 734957360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1011. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734957360\n\nBICARGO','1',NULL,NULL),
('9cde380b-b421-43e7-92f6-844128112dcf','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Sandalye  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 08.11.2024 11:46:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('9cdfa0da-e2cb-400b-ad4a-0ced0c2f66d8','436601503958','Sayın YUSUF DURSUN, 501668492 nolu gönderiniz 3881 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501668492\n\nDear YUSUF DURSUN, your shipment with 501668492 was delivered to you with the delivery code 3881. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501668492\n\n\nBICARGO','1','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL),
('9cdfeb15-f2fe-46d7-ac9d-d0968198a0fb','491786615616','614766744 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614766744\n\nYour shipment with the number 614766744 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614766744\n\nBICARGO','1','7edca54a-9671-41a7-883d-c2d819811110',NULL),
('9ce88937-5560-400f-91c6-04a32d3841f1','32499836512','Sayın MOHAMED SAİD ZARZAURİ, 221240151 nolu gönderiniz 2172 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221240151\n\nDear MOHAMED SAİD ZARZAURİ, your shipment with 221240151 was delivered to you with the delivery code 2172. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221240151\n\n\nBICARGO','1','9feff913-404e-4b4c-b57f-21740becbcff',NULL),
('9cee22ce-8e32-4125-bda6-5be78972cfdd','41793422327','Sayın SÜLEYMAN SUNGUR, 371365041 nolu gönderiniz 2096 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371365041\n\nDear SÜLEYMAN SUNGUR, your shipment with 371365041 was delivered to you with the delivery code 2096. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371365041\n\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('9cf8fc37-e435-403d-b8b8-22c49fb83b37','33749990296','Sayın FATİH ÇELİK, 478603328 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478603328\n\nDear FATİH ÇELİK, your shipment with 478603328 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478603328\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('9d01714c-c427-4771-8954-c15cdf39476a','9054439559150','ADEM  GENÇ adlı müşterinizin 614553524 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('9d0200f3-c085-4d7d-94d4-f3c894b635c1','905335708965','ZEKERİYA AKTAŞ adlı müşterinizin 735525138 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','70679c39-169c-46b4-9b96-b3994b9aee84',NULL),
('9d036811-a2d6-4b3c-9041-6fd2d6b16388','31649620613','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('9d0fac10-31d1-441e-8443-388b191c3f8f','491727322843','Sayın NURETTİN BAYRAK , 613661947 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613661947\n\nDear NURETTİN BAYRAK , your shipment with 613661947 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613661947\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('9d14f712-85dd-4e9c-a42e-b653e15ec179','905075277637','Sayın yetkili; MEHMET KIRMALI adlı müşterinize 745471905 nolu gönderinizin FELİX KANEPE ürünü 3 parça halinde Fatura adresinizden 12.03.2025 21:25:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e34a405c-b206-4de1-aca3-4f8e33268107',NULL),
('9d187f86-d5bd-4eab-943c-3211386ed9e3','41764259879','Sayın ŞÖMİNE, 412987652 nolu gönderiniz 6755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412987652\n\nDear ŞÖMİNE, your shipment with 412987652 was delivered to you with the delivery code 6755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412987652\n\n\nBICARGO','1','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL),
('9d1adacc-5cad-4de0-a5ce-5f058c3a7039','33652891560','745545386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9887 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745545386\n\nYour shipment with the number 745545386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9887. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745545386\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('9d1b1a89-b010-4dcc-94ae-0682ced42939','33663685576','221804377 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8342 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221804377\n\nYour shipment with the number 221804377 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8342. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221804377\n\nBICARGO','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('9d1bd1fa-9ea2-4cc0-a5a3-9ddde60d8289','4917692916375','Sayın HİDAYET KURT, 745789797 nolu gönderiniz 8742 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745789797\n\nDear HİDAYET KURT, your shipment with 745789797 was delivered to you with the delivery code 8742. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745789797\n\n\nBICARGO','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('9d1db846-3b56-4224-8c2b-6f43d97f224a','491727930576','Sayın DUYGU YILDIZ, 598396998 nolu gönderiniz 1499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598396998\n\nDear DUYGU YILDIZ, your shipment with 598396998 was delivered to you with the delivery code 1499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598396998\n\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('9d1fd5c9-04d6-45d9-a5b1-770d9aac3cc1','491725393009','İLETİŞİM\n					Furkan şöför = +905078826436','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('9d2172f6-17df-4590-9182-143ddc71e1ca','491742184791','Sayın YUSUF ALAN SSH , 745639343 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745639343\n\nDear YUSUF ALAN SSH , your shipment with 745639343 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745639343\n\nBICARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('9d2453c8-d23a-413a-85b5-35d339d7a87a','905325000478','INTERCASH adlı müşterinizin 412838128 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('9d297e60-8abe-4597-9f51-c14a752051c4','4915231405303','Sayın OKAY DERİNKUYU, 478402358 nolu gönderiniz 8803 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478402358\n\nDear OKAY DERİNKUYU, your shipment with 478402358 was delivered to you with the delivery code 8803. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478402358\n\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('9d2b41f9-4a7f-4784-85df-51447e4d8dac','004917663208908','Sayın , 248573438 nolu gönderiniz 7330 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248573438\n\nDear , your shipment with 248573438 was delivered to you with the delivery code 7330. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248573438\n\n\nBICARGO','2','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL),
('9d3778ed-2865-46b5-9271-f4af22716e30','905301592882','FATİH ŞEKER adlı müşterinizin 910891585 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a69f955e-df2b-44dd-8811-569ba620bc40',NULL),
('9d3bf966-6722-456c-8c26-efe198b21f71','0436643585040','Sayın CAN GLAS GMBH, 412603598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412603598\n\nDear CAN GLAS GMBH, your shipment with 412603598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412603598\n\nBICARGO','2','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL),
('9d448caa-8693-4a85-8537-08db3e1c5f07','905301592882','Sayın yetkili; ÖZDEMİR YAKAN		 adlı müşterinize 910752431 nolu gönderinizin M97 ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 25.09.2025 13:44:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','86d586d7-1a49-47d7-bf34-7486f84a12e5',NULL),
('9d47be95-f4eb-4a02-8adf-b35e3b25ac8b','41772204001','982765286 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982765286\n\nYour shipment with the number 982765286 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982765286\n\nBICARGO','1','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL),
('9d49cdb4-8d5c-405d-aeab-139469280337','4917664273200','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','2','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('9d4abd8e-52d1-49b1-b63a-5eb223670e19','905350617509','Sayın yetkili; KHALED SEMMO  adlı müşterinize 613175888 nolu gönderinizin Berjer ürünü 1 parça halinde Beksa koltuk adresinizden 14.08.2025 17:56:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('9d4b5349-b704-4595-8c17-485e404eb2a3','','412450269 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412450269\n\nYour shipment with the number 412450269 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412450269\n\nBICARGO','2','2eac751e-9abb-4289-a78f-365093ac6e16',NULL),
('9d50730b-d938-48d3-93f4-936e93f018af','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('9d52fcde-548c-49bc-99cd-c479bbf1db26','4915751450070','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('9d54ff83-bf10-4e6a-af40-7fbe89b268d0','905069116877','BURCU BİNGÖLBALI  adlı müşterinizin 817830150 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','91b404e8-2ef9-4d0e-b8ea-60c442570c42',NULL),
('9d55510e-4bf4-4bac-b76f-c0d7680bea28','905335708965','SARAH SCHNEİDER adlı müşterinizin 248904478 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL),
('9d5ecefd-bf5a-4237-9e3b-40a1ddc7b287','905315980893','SAMET ÖZTÜRK  adlı müşterinizin 911787432 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL),
('9d687398-9ff3-4a92-a1f9-4cac5e5a4b47','905335708965','HALİT KADİM adlı müşterinizin 248533509 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b1ebdda3-f50f-4336-8da0-ec3f51d55410',NULL),
('9d6be172-02da-43fd-b9e0-0692d57fddf0','033627383077','734782763 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1162 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734782763\n\nYour shipment with the number 734782763 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1162. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734782763\n\nBICARGO','2','400f01f9-93ac-402c-9545-879c310ade12',NULL),
('9d6c1341-2cb2-44a3-a93a-48430c8319c4','905461661672','Sayın yetkili; DÖNDÜ YÖRÜK SSH adlı müşterinize 644458216 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Masami Mobilya adresinizden 24.06.2025 15:37:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('9d7c6851-f00f-4bb4-9374-79ffe775d197','905461661672','Sayın yetkili; GÜLŞEN YİRMİBEŞOĞLU adlı müşterinize 644563405 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 02.10.2025 12:51:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526de5bb-5478-4ac9-aaab-26c962aa787b',NULL),
('9d806c1f-66e9-40e9-bf5c-4951d9473419','905363385813','ERDAL OCALAN adlı müşterinizin 976126416 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('9d860524-9a27-49be-b05d-13b9d2ba8624','905079358213','AYHAN İÇEN adlı müşterinizin 745813483 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('9d879d9f-59d8-4b31-a285-3ad95d974bbe','4917670681296','598454821 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598454821\n\nYour shipment with the number 598454821 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598454821\n\nBICARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('9d8ef2bb-d100-43f3-bfe0-51648b8f0025','491795446214','Sayın MAHMUT ÖZKAN, 745996696 nolu gönderiniz 5518 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745996696\n\nDear MAHMUT ÖZKAN, your shipment with 745996696 was delivered to you with the delivery code 5518. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745996696\n\n\nBICARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('9d93a058-0c17-474b-b563-f0d26268fa42','491625403964','Sayın SEDA TULGAR, 644152675 nolu gönderiniz 2550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644152675\n\nDear SEDA TULGAR, your shipment with 644152675 was delivered to you with the delivery code 2550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644152675\n\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('9d9494a6-3347-4e10-9175-9d743cb4b46b','33622831464','Sayın İBRAHİM KARABACAK , 98222175 nolu gönderiniz 2384 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98222175\n\nDear İBRAHİM KARABACAK , your shipment with 98222175 was delivered to you with the delivery code 2384. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98222175\n\n\nBICARGO','1','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL),
('9d97cb00-68ab-49fe-9258-ec5c49ae79cc','41794580561','Sayın HÜSEYİN CANDAN, 695249199 nolu gönderiniz 3743 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/695249199\n\nDear HÜSEYİN CANDAN, your shipment with 695249199 was delivered to you with the delivery code 3743. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/695249199\n\n\nBICARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('9d9831d3-00b6-434f-86b4-9f31dcbe2437','905079358213','MEHMET DAĞDEVİREN adlı müşterinizin 745485271 nolu gönderisi 45 parça halinde yola çıkmıştır.','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('9d988bc8-7642-4c31-a221-775cbcb4a1e0','905335708965','İBRAHİMİ ALİ JAN adlı müşterinizin 735500422 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','563299ed-822d-490a-97cc-eb08990a8bdb',NULL),
('9d9bb1fb-3cab-4cc6-a173-cde00ae63c3c','491636841244','193362317 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2283 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/193362317\n\nYour shipment with the number 193362317 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2283. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/193362317\n\nBICARGO','1','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL),
('9d9c451a-9630-46ec-8350-b26311afb814','491729086965','78633450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10765 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/78633450\n\nYour shipment with the number 78633450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10765. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/78633450\n\nBICARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('9da63218-bad2-46a4-b53e-2dd885a941c3','4917663874660','Sayın MİTRA MESKİNİ, 449866390 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449866390\n\nDear MİTRA MESKİNİ, your shipment with 449866390 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449866390\n\nBICARGO','1','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL),
('9dada904-26e9-49ec-bd2a-66fafc56c7df','33668779218','Sayın BURAK TÜRKEŞ, 614419362 nolu gönderiniz 3918 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614419362\n\nDear BURAK TÜRKEŞ, your shipment with 614419362 was delivered to you with the delivery code 3918. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614419362\n\n\nBICARGO','1','a7189c2d-87e3-4488-8a7c-25941c07355b',NULL),
('9dafb717-165a-4264-a65a-8374f95a16bb','1111111111111','41270066 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5185 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41270066\n\nYour shipment with the number 41270066 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5185. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41270066\n\nBICARGO','2','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL),
('9daffef7-f3ee-4d8a-8095-654d37bf0d93','905301592882','Sayın yetkili; İDRİS EŞKIN adlı müşterinize 910593915 nolu gönderinizin Şifonyer aynası ray takımı ürünü 2 parça halinde Fatura adresinizden 13.05.2025 16:33:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('9db46af8-78bf-4a1e-a0d4-ef46b2691cbf','436602444902','Sayın FADİME ERİMEZ, 598425779 nolu gönderiniz 10896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598425779\n\nDear FADİME ERİMEZ, your shipment with 598425779 was delivered to you with the delivery code 10896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598425779\n\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('9db53260-739c-4fdb-80e4-3b119ad636de','905069116877','Sayın yetkili; VENERA RUSTEMİ adlı müşterinize 817838997 nolu gönderinizin 331 koltuk takımı  ürünü 4 parça halinde Fatura adresinizden 25.06.2025 16:51:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('9dc6aa44-47d1-4915-ae40-c61ff635ea9b','491794992343','Sayın KEMAL URLAN , 43755091 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43755091\n\nDear KEMAL URLAN , your shipment with 43755091 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43755091\n\nBICARGO','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('9dcbe817-c53a-4695-a02c-92cac12a9bb2','491635214231','Sayın AYŞE TÜRKMEN , 221507815 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221507815\n\nDear AYŞE TÜRKMEN , your shipment with 221507815 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221507815\n\nBICARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('9dd2a9e9-593b-4de6-b83b-ac46dc702914','491726119322','74565941 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10854 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74565941\n\nYour shipment with the number 74565941 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10854. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74565941\n\nBICARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('9dd4ddc5-85e6-4c20-a9e8-0b445b419c8b','905075277637','ALİ ERKOCA SSH  adlı müşterinizin 745942521 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('9dd5d482-75c7-4760-9a27-619e553c2542','90491749145017','478633498 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5741 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478633498\n\nYour shipment with the number 478633498 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5741. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478633498\n\nBICARGO','2','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL),
('9dd84a7d-9528-4fc1-9269-0e5b81bec7e7','33624131521','449343471 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449343471\n\nYour shipment with the number 449343471 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449343471\n\nBICARGO','1',NULL,NULL),
('9ddd2d10-dd37-4054-b215-915d1c0b6189','491747448592','Sayın MUHAMMET ÖZKAN, 47830878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47830878\n\nDear MUHAMMET ÖZKAN, your shipment with 47830878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47830878\n\nBICARGO','1','b60d9fb4-59a0-499b-a666-8d8e4d8f147a',NULL),
('9ddf2ca2-65a8-4c64-ac5b-dbc9f125a7ec','905331602195','İBRAHİM MERMERCİ adlı müşterinizin 221102071 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('9de808ed-3e9b-4e48-9948-94bca267cf13','33651400749','Sayın ÖZKAN ÖZKOŞAR, 910756975 nolu gönderiniz 3345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910756975\n\nDear ÖZKAN ÖZKOŞAR, your shipment with 910756975 was delivered to you with the delivery code 3345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910756975\n\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('9de92153-4345-4c17-8c4a-74e3d6adf8c4','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 11 KAPAKLI BRONZE DOLAP ürünü 18 parça halinde EYFEL adresinizden 19.09.2025 12:02:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('9de98937-c64a-4f94-9c13-66558e7b8c17','41767113347','Sayın SALİM YILDIZ, 112189439 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/112189439\n\nDear SALİM YILDIZ, your shipment with 112189439 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/112189439\n\nBICARGO','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('9deb2a14-a1e3-45d4-a589-e32e3545b954','4917622968923','43725194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43725194\n\nYour shipment with the number 43725194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43725194\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('9df9d2cf-815d-4aca-a4c6-de4c4fe0136e','33669077826','Sayın GİZEM ÖZKAN, 73589256 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73589256\n\nDear GİZEM ÖZKAN, your shipment with 73589256 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73589256\n\nBICARGO','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('9dfa28a3-c433-4f20-acc3-682005990762','11111111111','Sayın ALİ ÖZVEREN, 412722649 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412722649\n\nDear ALİ ÖZVEREN, your shipment with 412722649 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412722649\n\nBICARGO','2','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('9dfc2e88-4c8c-4518-88eb-9da60d3292e6','905333221039','KÖSE BEY adlı müşterinizin 750926872 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL),
('9dff6ca6-c84f-459a-a0a7-acfbda2647b0','905313340045','TUĞBA BALIKÇI adlı müşterinizin 437154123 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('9e06882c-0acb-452c-b1db-6795120da65e','905066751402','OSMAN GÖKBEKİŞ adlı müşterinizin 524289921 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('9e075946-8b5a-4ee8-b7ce-0324a0df1062','9054439559150','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY BASLIK 190 CM ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:34:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('9e07895a-9daa-47ea-b69d-6a2335be18cc','905350617509','Sayın yetkili; FJOLLA VRENEZİ adlı müşterinize 613853408 nolu gönderinizin Masa+sehpa ürünü 4 parça halinde Bünyamin Masa adresinizden 25.03.2025 14:44:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('9e07f0c9-f192-404c-af4f-04867593591c','905335511664','FATMA KAYA adlı müşterinizin 371579541 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('9e07f15e-465d-4c6a-bab7-7b3ff8af0d53','31625064385','İletişim \n					Şöför Murat : +905321616048','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('9e0821f3-b9f2-40dc-a383-086ea12316af','4917677697727','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','2','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('9e08df71-4631-4940-8e54-dc3bf2e2fe3e','5325000478','Sayın OSMAN OSMAN, 29.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4285049\nŞifre : 4285049\n			\nBİCARGO','1',NULL,'4ffb28cb-ca50-4a96-ad30-006bdef57d6b'),
('9e09c9cc-67ff-4b4e-b87a-5f5faf1977e3','41794613009','Sayın MONİKA MORKİ , 449693939 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449693939\n\nDear MONİKA MORKİ , your shipment with 449693939 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449693939\n\nBICARGO','1','2c12d266-801d-47b6-a3fe-3e5faa2457b9',NULL),
('9e0d18c1-b181-4a84-ba56-447b80291d1d','905451571652','SERCAN MİRCALİ adlı müşterinizin 531549696 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('9e134dae-65ee-41f3-8ead-27a821c312e4','4306641865848','Sayın İDRİS EŞKIN, 910593915 nolu gönderiniz 6693 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910593915\n\nDear İDRİS EŞKIN, your shipment with 910593915 was delivered to you with the delivery code 6693. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910593915\n\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('9e1697df-779f-4c12-8e49-c87b5677d3a7','905461661672','Sayın yetkili; ERHAN ÇEKİÇ adlı müşterinize 644445996 nolu gönderinizin SANDALYE ürünü 4 parça halinde ALPEREN SANDALYE adresinizden 24.09.2025 17:23:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('9e1cc96b-06df-48b2-88c2-80a2aca7695c','905461661672','HAKİF ZİNAL SSH adlı müşterinizin 644391223 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('9e20ce55-3b7c-4ed7-93c7-3abac13ab933','4917676864801','644739716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8276 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644739716\n\nYour shipment with the number 644739716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8276. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644739716\n\nBICARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('9e231711-abdc-4635-a5b6-01f6b583e419','491796922955','Sayın HİLAL POLAT ÇELİK, 976866527 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976866527\n\nDear HİLAL POLAT ÇELİK, your shipment with 976866527 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976866527\n\nBICARGO','1','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL),
('9e2332d0-23d9-49fa-914d-3b58969b26c0','41764397280','İletişim \n					Halil Bey (Şoför) :+905541100849','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('9e248f3a-e4f1-46b1-bc0c-81464e53f2a7','905421855834','SEZER DOĞAN adlı müşterinizin 338474620 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd4de4f7-a394-47c7-89e2-dd9e57ec790d',NULL),
('9e26972b-329c-45fa-80e3-8a196e423d3d','905465479064','LÖWİK WONEN adlı müşterinizin 858365882 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c86b331f-7141-49b9-b684-a2a68daaa635',NULL),
('9e29ad93-0ee3-413e-9b06-b9b6fdd79b3f','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin konsol ürünü 4 parça halinde mdg home adresinizden 19.06.2025 16:47:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('9e2ca463-61fb-4c3d-a81a-daf1e4a85d63','491749591942','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('9e2ef50c-ccf4-4d7e-824f-e0677026b58c','4915788580085','412157183 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412157183\n\nYour shipment with the number 412157183 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412157183\n\nBICARGO','1','73425516-263e-4f72-894c-4cfd33d6ee43',NULL),
('9e323864-197b-4cea-8480-29f268f87c88','905331602195','Sayın yetkili; AZİZE KAYA adlı müşterinize 221946527 nolu gönderinizin TRAVERTEN MASA 90/180 CM ürünü 3 parça halinde Fatura adresinizden 13.01.2025 12:15:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('9e32f0f1-b675-4541-8668-45f3aadcad81','905461661672','Sayın yetkili; GÜLAY FASOLD adlı müşterinize 644820551 nolu gönderinizin SANDALYE ürünü 4 parça halinde LENTE HOME adresinizden 02.05.2025 11:18:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('9e355ef2-7a08-404f-9d5a-0ec33fb85912','905454259202','Sayın yetkili; BEKİR DOĞAN  adlı müşterinize 478168461 nolu gönderinizin TESLA LUXURY KONSOL VE AYNASI ürünü 2 parça halinde kuka adresinizden 24.03.2025 15:27:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8ca048a-bc13-4ec3-9715-2f7645615c63',NULL),
('9e358de4-1a03-4801-80ac-0c0b9b4979a0','4915771101675','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('9e3999ca-7f59-4297-8d77-6912a3ff14a5','491775901111','ŞÖFÖR NUMARASI\n					+905467896981','1','834f05c9-ba0b-4030-8950-1efd86d43ae1',NULL),
('9e3f9454-6663-4cc4-bb92-d072868dd880','491777474184','Sayın HASAN KAYA, 64413417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64413417\n\nDear HASAN KAYA, your shipment with 64413417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64413417\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('9e43eefe-1898-44ae-aabc-aaeae349c6c8','33769535449','Sayın YUNUS BEY, 127504677 nolu gönderiniz 10905 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127504677\n\nDear YUNUS BEY, your shipment with 127504677 was delivered to you with the delivery code 10905. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127504677\n\n\nBICARGO','1','61f09758-c694-460b-870c-7202dd8cbfcc',NULL),
('9e43fb6d-84d5-466c-8794-15eddd2b645e','905079358213','Sayın yetkili; ARZU AKSİ adlı müşterinize 745817440 nolu gönderinizin BOHEM YEMEK OD. ürünü 10 parça halinde Fatura adresinizden 09.05.2025 19:19:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('9e540e98-5910-4a34-83ab-6a29fbf204f2','4917683226592','Sayın ESMA MERT, 371282604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371282604\n\nDear ESMA MERT, your shipment with 371282604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371282604\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('9e54c46f-3fac-4ad4-902b-6fb83878ed1a','905331602195','Sayın yetkili; GÜLER DELİDUMAN adlı müşterinize 221432350 nolu gönderinizin 90x220 mermer desen masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 03.06.2025 17:02:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('9e55fff8-f2ef-480d-a9c6-6c19d00c78ac','905454259202','Sayın yetkili; ŞEVKET ZİRİH adlı müşterinize 478545295 nolu gönderinizin orta sehpa  ürünü 1 parça halinde SENS adresinizden 23.02.2025 15:12:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('9e56e25b-0c30-47d5-9c3c-5e5517d6b6b4','905331602195','Sayın yetkili; ANİL ZAMUR  adlı müşterinize 221204525 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:45:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('9e586edf-df53-4c68-b765-65e42d6c4b1d','905059175469','NADİR KURUKOL adlı müşterinizin 428131786 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36207ae6-947b-4a63-b98b-478d30a194b6',NULL),
('9e58bad1-9da0-407a-8f6b-486326f7ca47','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('9e59eef2-6647-44aa-9ef9-97bc8a0dd834','4915753272553','Sayın AMAL EL JABBARİ, 644789157 nolu gönderiniz 7597 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644789157\n\nDear AMAL EL JABBARİ, your shipment with 644789157 was delivered to you with the delivery code 7597. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644789157\n\n\nBICARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('9e5d5c59-370b-4aa7-8e11-39d5ddbb8b73','491627758662','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('9e5f049e-3ed8-4ae7-8f30-1bf2b9a58adf','905059175469','ESRA ELİŞ adlı müşterinizin 428704278 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('9e6274d5-7d5a-495c-86db-3020441f71e5','905461661672','Sayın yetkili; TAHSİN AKSOY adlı müşterinize 644716997 nolu gönderinizin SERAMİK MASA ürünü 3 parça halinde MASA VİA adresinizden 11.06.2025 14:22:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('9e62815d-4da8-4b0e-8301-525fa75332b9','905313340045','Sayın yetkili; IVANA ELİAS adlı müşterinize 437426295 nolu gönderinizin Masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 23.08.2025 13:20:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('9e71e5d6-a8a3-4527-b340-023cfdfd96cd','905304259202','MEHRDAND RAZMPOUR adlı müşterinizin 478962763 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('9e7259ca-7f13-4b97-9452-eec5928521e4','4917662047027','Sayın İSA ALTUNER(K), 644422105 nolu gönderiniz 4615 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644422105\n\nDear İSA ALTUNER(K), your shipment with 644422105 was delivered to you with the delivery code 4615. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644422105\n\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('9e752a2c-b156-4639-849c-6505ade6ddd1','905443955915','BAHATTİN AGİT ÇELİK adlı müşterinizin 614350153 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d0d732f-ad40-4ad2-b5ef-82a3636d1f9f',NULL),
('9e86b2a7-2dc2-4e41-9c50-8412cca45e6d','4915255838893','Sayın CAN KUL , 478161304 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478161304\n\nDear CAN KUL , your shipment with 478161304 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478161304\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('9e883361-cc2d-436f-86a3-5953960e298a','33635494107','Sayın HÜSEYİN ÖÇAL SSH , 745350597 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745350597\n\nDear HÜSEYİN ÖÇAL SSH , your shipment with 745350597 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745350597\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('9e8c58a1-8be1-4a5b-b69a-6bca3d0049e2','905461661672','Sayın yetkili; HASAN KAYA adlı müşterinize 64413417 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 19.09.2025 11:32:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('9ea03720-50f8-4493-8d3c-fd37f97901d5','4917643694619','478235858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9357 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478235858\n\nYour shipment with the number 478235858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9357. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478235858\n\nBICARGO','1','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL),
('9ea5a013-f82f-4fb5-8569-e73ebde46fec','354646466464444','248243194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5736 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248243194\n\nYour shipment with the number 248243194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5736. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248243194\n\nBICARGO','2','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL),
('9ebec937-6dd9-4f9d-ac98-e482e17ebbc1','31685834791','Sayın MÜCAHİD AL SSH, 437379015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437379015\n\nDear MÜCAHİD AL SSH, your shipment with 437379015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437379015\n\nBICARGO','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('9eca462a-43af-459d-b267-326d02857ff6','9054439559150','NERGİZ YURTSEVEN adlı müşterinizin 614525681 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('9ed46052-4cb5-414c-9717-a57d3e92c02d','4917684770342','Sayın MUHAMMED PERVANE , 644531622 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644531622\n\nDear MUHAMMED PERVANE , your shipment with 644531622 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644531622\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('9ed55237-3472-4fca-9cad-2d7efc20f8bd','905078062550','Sayın yetkili; ANAHİTA MORİD adlı müşterinize 598412225 nolu gönderinizin baza başlık döşek ürünü 5 parça halinde ALBESSA HOME adresinizden 18.09.2025 10:51:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('9ed58bf3-03d2-482f-9947-aeeb42d54342','0031655504455','Sayın MEHMET KILINÇ, 428173598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428173598\n\nDear MEHMET KILINÇ, your shipment with 428173598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428173598\n\nBICARGO','2','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('9edcd31a-55c5-4606-94f6-f54c3028ff57','3363870091','745906539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9888 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906539\n\nYour shipment with the number 745906539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9888. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745906539\n\nBICARGO','2','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('9ee01b3d-5fa8-4486-be79-565656fa89ca','905451571652','NİLGÜN LEUKEL adlı müşterinizin 531629494 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('9ee3df07-070e-49b9-8eb1-3886c3b4c245','436603406293','Sayın yetkili; MERAL KELES adlı müşterinize 675890872 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 28.05.2025 17:48:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('9eed36fd-408a-45b5-8a6d-d4b4d0caef2b','905350617509','BERNA YİLDİRİM adlı müşterinizin 613847250 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('9ef220f8-ca13-478f-8bd8-3bdc6d9fd3f5','905079358213','Sayın yetkili; ABDULLAH DEMİR  adlı müşterinize 745906720 nolu gönderinizin BOHEM KÖŞE KOLTUK  ürünü 5 parça halinde ARTBOIS  adresinizden 26.09.2025 11:23:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('9ef92867-57f1-493b-8773-bf113625a360','33784196938','478185886 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6033 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478185886\n\nYour shipment with the number 478185886 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6033. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478185886\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('9ef9e144-7470-4668-bbca-31042e4fa3a2','905433560559','Sayın YASİN YAMANOĞLU, 93566108 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/93566108\n\nDear YASİN YAMANOĞLU, your shipment with 93566108 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/93566108\n\nBICARGO','1','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL),
('9f00c4be-8c39-47dc-9903-89415de994ad','4915115864396','ŞÖFÖR NUMARASI\n					+905467896981','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('9f07b46b-5dee-488f-8e30-9a8f9e324a14','32489103760','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('9f0d2b9c-268d-4f0a-9a48-e2206a716883','436601666895','Sayın TAHSİN AKSOY, 644716997 nolu gönderiniz 6943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644716997\n\nDear TAHSİN AKSOY, your shipment with 644716997 was delivered to you with the delivery code 6943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644716997\n\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('9f0d68c2-e418-4484-972c-4b358b22974e','905069116877','KADER KAVAL  adlı müşterinizin 817213476 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','834b59f5-b6eb-4131-ba77-6e6e2220713b',NULL),
('9f0ee531-cd07-4bc1-8cf3-10ce3dcf2184','41764537057','478560084 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9299 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478560084\n\nYour shipment with the number 478560084 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9299. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478560084\n\nBICARGO','1','12e9e80a-5a59-4dbe-befb-126310a97b43',NULL),
('9f1205c6-91d2-47a1-bd50-5a9b76e4efc8','905331602195','Sayın yetkili; YILDIZ KILIÇ adlı müşterinize 221952785 nolu gönderinizin 90x190 nevada ceviz masa  ürünü 3 parça halinde Fatura adresinizden 21.01.2025 11:58:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('9f131c7e-dc1a-4ba7-9044-e1a9396d007c','905069116877','AMİRA GHRAB adlı müşterinizin 81723596 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('9f15446d-9d10-4a90-9e58-6e75e24e4400','33749426479','745253500 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745253500\n\nYour shipment with the number 745253500 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745253500\n\nBICARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('9f184692-1720-43dd-b161-2b2cf0c8486b','32466345026','Sayın DURSUN GÜNBEYİ, 501766543 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501766543\n\nDear DURSUN GÜNBEYİ, your shipment with 501766543 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501766543\n\nBICARGO','1','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL),
('9f1b0e75-3563-4542-9767-e45f243fc76d','491621912454','478281011 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3458 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478281011\n\nYour shipment with the number 478281011 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3458. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478281011\n\nBICARGO','1','3894922a-0cf2-4bd8-94ae-aac69c8c7eac',NULL),
('9f1b5b70-6545-464c-a286-e0366c414ecd','33669077826','İletişim \n					Şöför Uğur Acar +905424435917','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('9f20a331-8849-411e-88e0-113030413068','905336367828','Sayın yetkili; AYDIN KEMERLİ  adlı müşterinize 982837523 nolu gönderinizin sehpa ürünü 2 parça halinde Comfortlife  adresinizden 30.12.2024 14:03:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('9f2483a2-cc6f-4875-ba28-fc4021ff2461','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 17.06.2025 16:28:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('9f275f99-cfff-419d-95b6-a484d25cd11d','33602366647','745276257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745276257\n\nYour shipment with the number 745276257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745276257\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('9f298487-292d-425f-b388-ee28a409043f','4917621666906','371807983 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1142 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371807983\n\nYour shipment with the number 371807983 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1142. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371807983\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('9f2d6c48-65b5-4064-9037-78c60d8a1d08','2738484747373737','22391500 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1480 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22391500\n\nYour shipment with the number 22391500 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1480. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/22391500\n\nBICARGO','2','67b755d6-8527-41db-b18d-4497bd14d893',NULL),
('9f3167f5-7845-4e55-adae-721e0188baeb','33651909991','501345257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6147 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501345257\n\nYour shipment with the number 501345257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6147. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501345257\n\nBICARGO','1','335d66ef-091d-4af1-8b0b-38c2daa9e96d',NULL),
('9f34f2b4-8b20-4105-8538-eef845bd500f','4920350083648','Sayın DİE FABRİK OUTLET, 223422825 nolu gönderiniz 7310 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223422825\n\nDear DİE FABRİK OUTLET, your shipment with 223422825 was delivered to you with the delivery code 7310. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223422825\n\n\nBICARGO','2','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('9f34fd77-f22a-41a6-9302-f6bafb69bbf1','33650063869','478928003 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478928003\n\nYour shipment with the number 478928003 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478928003\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('9f36c0ab-43e6-451f-b437-3687d1c16ba6','4917672257446','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('9f3940f5-4c13-42f7-a95d-d6177d694433','4524951213','982561254 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6515 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982561254\n\nYour shipment with the number 982561254 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6515. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982561254\n\nBICARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('9f41776a-b371-4686-87f1-fad9a4dea7cc','905461661672','CANSEL KUŞ adlı müşterinizin 644684020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6adcfcb9-e4f0-4b7d-895c-940cb17b62dd',NULL),
('9f44a80f-deb8-459c-ab1c-a248cdf84ea3','1111111111','Sayın ORHAN ORHAN, 30.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0391413\nŞifre : 0391413\n			\nBİCARGO','2',NULL,'0391eccf-fdab-4134-a6b2-71ed68186b55'),
('9f453291-f9d0-49ad-b68e-cbbebd0e20b5','32469216538','Sayın ADRİANNA WİEMANN, 505724535 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505724535\n\nDear ADRİANNA WİEMANN, your shipment with 505724535 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505724535\n\nBICARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('9f461f83-ccf8-4e94-98b6-4adc93f5a112','905304267046',' adlı müşterinizin 454592303 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b659a388-1c45-405b-a478-fa4eb2398376',NULL),
('9f4829cb-c3d9-44af-a6b7-d247dae25185','4917670037980','İletişim \n					Şöför Uğur Acar +905424435917','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('9f4b8d35-05c8-4c18-a46c-4dd135b9b3dc','905335708965','FERİT YEKDA adlı müşterinizin 248284961 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL),
('9f4e6220-ef47-493c-bb70-ae1e2328bf79','4917634403928','371155650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6152 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371155650\n\nYour shipment with the number 371155650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6152. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371155650\n\nBICARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('9f4fa7a1-7923-4543-aae8-47efc2a2ddca','111111111111','Sayın BESTFULFİLLER, 22330381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22330381\n\nDear BESTFULFİLLER, your shipment with 22330381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22330381\n\nBICARGO','2','519c4dcc-e8d4-4545-8bfe-61ee397d5447',NULL),
('9f572027-4b51-48c0-ac5e-694b7927b835','905443955915','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614741569 nolu gönderinizin ALLEGRO MİLANO SANDALYE ürünü 3 parça halinde ALLEGRO  adresinizden 27.01.2025 14:14:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('9f5880f9-da13-4441-9675-db1ec23ded1d','905335708965','HÜSEYİN DÖNERTAŞ adlı müşterinizin 24886445 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL),
('9f5d05f7-a54e-4105-9af3-c9646ad99162','905347001692','NURİ ÖZKAN adlı müşterinizin 347986383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','792fcb83-3583-425f-8515-80f98a19c7f3',NULL),
('9f5f11c6-7dde-4a48-8072-b2eeebe969fe','436603554835','Sayın Abbas sertaç, 745715303 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745715303\n\nDear Abbas sertaç, your shipment with 745715303 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745715303\n\nBICARGO','1','7af47c44-93b1-42ec-813b-77c155a1b050',NULL),
('9f605653-3041-4c75-9aa9-f3b056473e94','905517075149','Sayın yetkili; AYSEL-İSMAİL ÇILGIN adlı müşterinize 478928003 nolu gönderinizin 6 ADET SANDALYE ürünü 3 parça halinde beymi sandalye adresinizden 26.09.2025 17:02:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('9f64296d-ff0b-4e61-b680-99838ebb63d2','905431026110','Sayın yetkili; SEVCAN BAYRAM adlı müşterinize 351183541 nolu gönderinizin sandalye ürünü 6 parça halinde BALİ SANDALYE adresinizden 13.10.2025 12:36:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bbee5f58-f6e5-4525-b872-ef97ac4ab579',NULL),
('9f6ad75b-4219-4fe4-bdb4-44aa359bfe15','4917630158799','371681337 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371681337\n\nYour shipment with the number 371681337 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371681337\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('9f74e15a-76cd-4e6b-b6f2-681ea9d2ae45','905350617509','ALEYNA KARAKUS adlı müşterinizin 613787861 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('9f78bd86-5c2c-494d-9569-10929b110dc3','4915778071282','745505942 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3401 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745505942\n\nYour shipment with the number 745505942 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3401. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745505942\n\nBICARGO','1','d85df80f-4bcc-482f-949e-4393d27c0874',NULL),
('9f7bc244-90d5-48d9-b2a9-3017d0a70196','905461661672','Sayın yetkili; MUHAMMED PERVANE  adlı müşterinize 644531622 nolu gönderinizin TRAVERTEN MASA VE ORTA SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 28.05.2025 15:06:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('9f7eaeb7-efaf-4a22-9ce5-04cf826b6377','436603730710','Sayın NURİYE ŞAHİN, 221447673 nolu gönderiniz 8071 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221447673\n\nDear NURİYE ŞAHİN, your shipment with 221447673 was delivered to you with the delivery code 8071. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221447673\n\n\nBICARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('9f80a110-cb78-44c6-8c3e-37d63cd8280e','436503555735','Sayın SUADA HAMZA , 613990020 nolu gönderiniz 5175 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613990020\n\nDear SUADA HAMZA , your shipment with 613990020 was delivered to you with the delivery code 5175. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613990020\n\n\nBICARGO','2','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('9f80a783-94e4-4019-af77-2bd5c1303c87','491735396163','Sayın FATİME YILMAZ, 371626943 nolu gönderiniz 2983 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371626943\n\nDear FATİME YILMAZ, your shipment with 371626943 was delivered to you with the delivery code 2983. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371626943\n\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('9f88df52-2d7e-484d-b9a8-142fbba9448f','905301592882','Sayın yetkili; YASEMİN ERKAN adlı müşterinize 910152598 nolu gönderinizin DENİZ YEMEK ODASI+ TV ÜNİTESİ ürünü 10 parça halinde Fatura adresinizden 20.10.2025 11:09:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('9f8cb8d7-101f-4d71-9ce7-f2ae2d647d45','491781789912','412610139 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8183 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412610139\n\nYour shipment with the number 412610139 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8183. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412610139\n\nBICARGO','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('9f8e32b3-1d7c-4dbf-886a-98dbcbe79008','491722630370','Sayın LAİLA MANDANİ, 371887346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371887346\n\nDear LAİLA MANDANİ, your shipment with 371887346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371887346\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('9f8fdad7-cb85-4d5e-afdf-3b34d15cd21e','33778663770','221105277 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3585 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221105277\n\nYour shipment with the number 221105277 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3585. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221105277\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('9f92caf8-b11e-4139-9c1d-f982d07b8758','905336367828','SONJA HUSSAİNİ  adlı müşterinizin 982529212 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('9f94423c-5b4a-4048-b7a7-905ad13e4393','4917684353400','Sayın YAKUP EMİN GÜNEŞ, 982744560 nolu gönderiniz 6433 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982744560\n\nDear YAKUP EMİN GÜNEŞ, your shipment with 982744560 was delivered to you with the delivery code 6433. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982744560\n\n\nBICARGO','1',NULL,NULL),
('9f9bf232-3b73-441c-8676-6c1bbb368b02','905079358213','KENAN BAYAR SSH  adlı müşterinizin 745101735 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('9fa6b9a2-7889-42d9-ace0-706a40ee376f','436705563218','478749881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5972 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478749881\n\nYour shipment with the number 478749881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5972. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478749881\n\nBICARGO','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('9fa86fda-0815-49d0-9af2-218e0b592030','905079358213','BURÇİN MEN adlı müşterinizin 745970479 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('9faea58a-74b5-43de-97f6-d2c1358a10e6','905331602195','HAMİDİ SONİA (SSH) adlı müşterinizin 221748184 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('9fc6983e-8460-4edc-b072-4083a6899577','40756878017','Sayın GHATİA PARASCHİVA, 982163675 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982163675\n\nDear GHATİA PARASCHİVA, your shipment with 982163675 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982163675\n\nBICARGO','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('9fc6abf0-dce0-4655-b209-a7d8846274d3','905079358213','YUSUF ALAN SSH  adlı müşterinizin 745639343 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('9fc7f488-dd13-464c-a406-acb0d7665e6d','905078062550','Sayın yetkili; ŞÜKRÜ AK adlı müşterinize 598445423 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 08.10.2025 14:57:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a42a1c77-dffe-41cf-b2b2-08ccedab680b',NULL),
('9fcfb71b-d9fa-4b55-a534-761d058b6539','905079047428','REZA ÖMERİ adlı müşterinizin 449968881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL),
('9fd3859e-2c2f-4f23-ae7c-098845dd1dfc','491788204430','614707427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1237 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614707427\n\nYour shipment with the number 614707427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1237. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614707427\n\nBICARGO','1','62eea1a6-1676-4355-8243-6e04f6d3e284',NULL),
('9fd6806d-9480-4e58-9dcc-ffdbd7df6b23','905335708965','SAMİ CENGİZ  adlı müşterinizin 248213954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL),
('9fda5d74-78ce-4004-b1f8-74967b498415','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde M four sandalye adresinizden 15.10.2025 12:53:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('9fdca0d5-be54-4125-a253-fc8090edf3e4','4369919970009','Sayın PELÇİN BUZLU, 437554629 nolu gönderiniz 1254 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437554629\n\nDear PELÇİN BUZLU, your shipment with 437554629 was delivered to you with the delivery code 1254. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437554629\n\n\nBICARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('9fde8a91-8961-4581-b4fa-12088a7d4f19','905078062550','Sayın yetkili; YASEMİN MUTLU adlı müşterinize 598131456 nolu gönderinizin masa ürünü 3 parça halinde RİO FATİH adresinizden 26.09.2025 13:46:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('9fe25e0d-5945-471a-9c5d-62a3bd579110','905335511664','ELİSABETH BRUCH adlı müşterinizin 371807983 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('9fe79999-11b6-45f6-9211-737758610e83','436607950540','Sayın MİYASE AYDIN, 437945654 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437945654\n\nDear MİYASE AYDIN, your shipment with 437945654 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437945654\n\nBICARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('9fe847fc-b1f4-416c-92f4-634a2b0902fc','4917681017112','Sayın MELİSSA KARACAKAYA, 598961911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961911\n\nDear MELİSSA KARACAKAYA, your shipment with 598961911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598961911\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('9fea6338-d971-41ab-988e-ee021d693908','4915778860967','Sayın MERYEM BULAK , 745374253 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745374253\n\nDear MERYEM BULAK , your shipment with 745374253 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745374253\n\nBICARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('9fec9318-ba9a-405b-b203-e600f566d558','31641824655','Sayın MİTHRA EKHLAS, 371665790 nolu gönderiniz 2947 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371665790\n\nDear MİTHRA EKHLAS, your shipment with 371665790 was delivered to you with the delivery code 2947. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371665790\n\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('9fee1a37-cd36-4ede-9202-06dbbc4ff016','905517075149','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478816988 nolu gönderinizin RAMS ORTA SEHPA VE YAN SEHPALARI ürünü 2 parça halinde family adresinizden 03.09.2025 14:34:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('9ff43efc-b6df-408d-b3ea-a09b9e109888','905333221039','SEMANUR KÜTÜKÇÜ adlı müşterinizin 750145910 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL),
('9ff7f835-0558-4ab6-a1fe-c7f1fa0d9667','4917661320036','Sayın FAİSAL İBRAHİM, 437319119 nolu gönderiniz 1056 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437319119\n\nDear FAİSAL İBRAHİM, your shipment with 437319119 was delivered to you with the delivery code 1056. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437319119\n\n\nBICARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('9ffa0573-2f69-4714-b306-74ab73722140','491781789912','Sayın POLAT BALKAYA, 412610139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412610139\n\nDear POLAT BALKAYA, your shipment with 412610139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412610139\n\nBICARGO','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('9ffae1ee-b1ab-4823-ac32-8b34f08b6b75','905078062550','NUSRET VAROL VURAL adlı müşterinizin 598427868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('a0006981-32b9-4659-90c2-81d46a76f9a2','905335511664','GİZEM TIRPAN adlı müşterinizin 37140435 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('a0027b08-5883-47eb-93a5-0d240da79012','905363385813','HALİL İBRAHİM BACAKSIZ adlı müşterinizin 97623604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL),
('a0032057-5f79-4433-bd05-abf2c3417e73','905079358213','ERCAN VARSAK SSH  adlı müşterinizin 745282619 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('a00958ca-f1d7-4c9d-8c8d-69aefa38e026','905313340045','BİROL ELİBOL adlı müşterinizin 437609907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('a00a739f-8f27-4dc0-9396-998693402763','33643419084','Sayın KAM.   TUBA YİLDİRİM, 011804405 nolu gönderiniz 3690 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011804405\n\nDear KAM.   TUBA YİLDİRİM, your shipment with 011804405 was delivered to you with the delivery code 3690. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011804405\n\n\nBICARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('a00b1eb0-1102-4648-b033-a5014433a2e9','905517075149','MURAT KALKAN adlı müşterinizin 478520504 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('a00c1303-56e5-4a83-9907-a074452c83b9','905532675926','Sayın yetkili; METİN MOLA adlı müşterinize 428693052 nolu gönderinizin Köşe ürünü 6 parça halinde Fatura adresinizden 28.08.2025 15:47:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('a00ee25b-4718-4b76-9451-f91a2ee76a7a','905059175469','NADİR KURUKOL adlı müşterinizin 428131786 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','36207ae6-947b-4a63-b98b-478d30a194b6',NULL),
('a00fd399-3070-427c-84d8-d018350b5ccc','905079358213','METİN PEKSERT SSH adlı müşterinizin 745430976 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70305ca6-1276-478d-974a-f8168b04c382',NULL),
('a011d41f-5714-4d39-b008-84f4a09863cb','905079358213','SSH ALPEREN DÜZENLİ  adlı müşterinizin 745863981 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('a012906c-ebfa-4d46-a3f6-ca0ddf5ee201','033641874047','Sayın HATİCE BOZKURT, 734627626 nolu gönderiniz 8160 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734627626\n\nDear HATİCE BOZKURT, your shipment with 734627626 was delivered to you with the delivery code 8160. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734627626\n\n\nBICARGO','2','8c3b10ad-bfb3-4939-a407-5ebb29115ccb',NULL),
('a01c6339-9c12-4892-a8e4-8d5f0ff62df6','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin ASOS GOLD MASA SANDALYE  ürünü 8 parça halinde ODALIFE  adresinizden 18.09.2025 16:33:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('a01c9eab-f8be-4522-a319-c0885309b7ef','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin TÜRKMEN HEROS  BERJER ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('a01d0342-c817-43e4-9f92-66e0bb11607a','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 1 ADET TV UNITESI  ürünü 3 parça halinde MOBİLYAMEVİME DEPO  adresinizden 08.10.2025 16:25:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('a01ee10f-58c9-4063-b676-74e5d56ad750','905335511664','NEŞE ERĞAT adlı müşterinizin 371363007 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('a021f51c-6eb0-4ecb-87b6-1dbcd4195cfd','4917658874897','Sayın ZEKAİ TAVASLI, 478979004 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478979004\n\nDear ZEKAİ TAVASLI, your shipment with 478979004 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478979004\n\nBICARGO','1','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL),
('a035c9c5-9a0f-49f7-b37d-6d5ba650369f','905336367828','NOUR MOHAMMAD YAKUBİ adlı müşterinizin 982578025 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('a0409acc-1d84-4f66-ba30-dec5cfee6981','41764965010','Sayın HABTEMARIAM BIZEN, 126908886 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126908886\n\nDear HABTEMARIAM BIZEN, your shipment with 126908886 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126908886\n\nBICARGO','1','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL),
('a0417d81-49ed-4529-bf57-11940f846872','491783919050','Sayın MÜCAHİT SÖYLEMEZ, 478342417 nolu gönderiniz 8018 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478342417\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 478342417 was delivered to you with the delivery code 8018. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478342417\n\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('a044a866-0045-4c6e-8348-66a9d2623b56','00491717942160','Sayın MELİKE KOÇ, 735931871 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735931871\n\nDear MELİKE KOÇ, your shipment with 735931871 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735931871\n\nBICARGO','2','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL),
('a044f142-a238-4f99-b774-e09cc2685ad4','905054335859','ŞAZİYE KARABACAK adlı müşterinizin 50133684 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('a045380b-13f5-4cd8-9f66-707f33dd8048','905532675926','Sayın yetkili; HASAN ÖZSOY adlı müşterinize 428653750 nolu gönderinizin sehpa seti ürünü 3 parça halinde Fatura adresinizden 06.09.2025 18:39:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('a04e2a2e-6656-4e74-8d77-f492782e02f7','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin dolap ürünü 12 parça halinde mobilyalar  adresinizden 15.09.2025 13:00:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('a04e9bde-8fce-44d1-a819-c770b0afa0aa','905461661672','Sayın yetkili; SEMA KAYALI adlı müşterinize 64448364 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 19.03.2025 17:14:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('a04ffe03-a921-460c-ac0f-a59335a8d989','33611031313','Sayın BURAK YAKUT, 644975430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644975430\n\nDear BURAK YAKUT, your shipment with 644975430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644975430\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('a050ff4b-d99f-47fc-90d9-944419b781ae','32490219325','Sayın MUSTAFA MÜEZZİNOĞLU , 428538007 nolu gönderiniz 7897 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428538007\n\nDear MUSTAFA MÜEZZİNOĞLU , your shipment with 428538007 was delivered to you with the delivery code 7897. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428538007\n\n\nBICARGO','1','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL),
('a052716d-2d4e-4ac8-b9cb-b4deb8578ebe','905075277637','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin BELLA KOLTUK TAKIMI  ürünü 5 parça halinde MUKA adresinizden 25.09.2025 14:44:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('a0527f57-a084-4051-a8ad-6b194aef015b','330766449064','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('a053033e-d77d-411c-9726-cf754dfba1d2','4917641365513','976843037 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10234 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976843037\n\nYour shipment with the number 976843037 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10234. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976843037\n\nBICARGO','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('a0604fb1-e06a-4c66-ab54-b97ceb275b40','905079358213','HUSSRAH MUHAMAD adlı müşterinizin 745464679 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('a06251ac-58e4-4d1d-aafe-6bbb8a7fd6a8','4917622968923','Sayın ALİ AKKAN, 43725194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43725194\n\nDear ALİ AKKAN, your shipment with 43725194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43725194\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('a063b4de-b180-481b-a8a1-963d2d79b62a','905461661672','Sayın yetkili; CANSU BEYAZ adlı müşterinize 644282587 nolu gönderinizin köşe koltuk ürünü 4 parça halinde TWİNS KOLTUK adresinizden 10.03.2025 13:26:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('a06488b4-8b63-4dfa-b794-0b3eb228af7c','905446974799','Sayın yetkili; ŞENEL KURU adlı müşterinize 776312220 nolu gönderinizin koltuk takımı 331 ürünü 3 parça halinde KLASSE KOLTUK adresinizden 13.10.2025 12:39:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL),
('a065c5c7-547a-4934-bcb7-700e1b98e2c5','33628708481','Sayın KAZIM KURUCU, 478335843 nolu gönderiniz 2167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478335843\n\nDear KAZIM KURUCU, your shipment with 478335843 was delivered to you with the delivery code 2167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478335843\n\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('a0660320-3a3c-46d5-a2be-d73bee0d012e','5444482458','Sayın GAMZE ÖZDEMİR, 319645924 nolu gönderiniz 2053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319645924\n\nDear GAMZE ÖZDEMİR, your shipment with 319645924 was delivered to you with the delivery code 2053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319645924\n\n\nBICARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('a066a14f-d510-4dfa-a36b-c531873ab272','491725466785','Sayın NURETTİN BAYRAK , 613661947 nolu gönderiniz 8942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613661947\n\nDear NURETTİN BAYRAK , your shipment with 613661947 was delivered to you with the delivery code 8942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613661947\n\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('a069dd9b-d517-4f25-b697-bb10c5ff56d7','33642266995','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('a069f9f0-1151-4487-b43f-42b252cd1340','3454363464652424','Sayın NADİR KURUKOL, 412217714 nolu gönderiniz 7560 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412217714\n\nDear NADİR KURUKOL, your shipment with 412217714 was delivered to you with the delivery code 7560. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412217714\n\n\nBICARGO','2','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('a06be9b9-a193-42e5-b775-b216c7a8fd05','905454259202','Sayın yetkili; KEMAL ETKER  adlı müşterinize 47876427 nolu gönderinizin 2 adet sandalye ürünü 2 parça halinde karma sandalye adresinizden 13.05.2025 15:58:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('a07136e3-0369-402d-ae23-02c2875ffb70','905325000478','BRÜHL CAMİSİ adlı müşterinizin 41283002 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL),
('a0741671-27d2-45f0-8489-a76759ec70a9','31611322238','Sayın MEHMET ORHAN, 371122828 nolu gönderiniz 9605 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371122828\n\nDear MEHMET ORHAN, your shipment with 371122828 was delivered to you with the delivery code 9605. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371122828\n\n\nBICARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('a076e1c1-3b2e-494f-b2e1-d4db64dbb63e','905313340045','DERYA ERDOĞMUŞ SSH adlı müşterinizin 437527391 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('a0795d7f-e1dd-4760-91bc-c2ef1ba5fa98','4915204511037','745382052 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5219 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745382052\n\nYour shipment with the number 745382052 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5219. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745382052\n\nBICARGO','1','f7d5b080-0e6d-41d4-ada4-022be6e316f2',NULL),
('a07dd676-7a20-409d-a766-c60d2f11d608','33762586432','Sayın SAS CONFORT CONCEPT, 268163356 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268163356\n\nDear SAS CONFORT CONCEPT, your shipment with 268163356 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268163356\n\nBICARGO','1','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL),
('a081560f-4462-495c-8c4b-d20e48b8dce6','905331602195','Sayın yetkili; SAMİR KERANOVİC  adlı müşterinize 221837026 nolu gönderinizin 80x120 cm traverten Stone sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:58:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('a08287bc-017f-488f-a95b-3de2e0f494e7','905350617509','Sayın yetkili; KÜBRA YAMAN adlı müşterinize 613251938 nolu gönderinizin Sandalye ürünü 1 parça halinde Mfoursandalye adresinizden 22.05.2025 18:25:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('a0835dd1-fce6-423f-978b-124f780be0f1','436769600864','Sayın LEMAN TUNCER, 412467921 nolu gönderiniz 1764 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412467921\n\nDear LEMAN TUNCER, your shipment with 412467921 was delivered to you with the delivery code 1764. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412467921\n\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('a083cb5d-d2c8-4473-a139-60af5ccb5050','33783081098','428326285 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9362 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428326285\n\nYour shipment with the number 428326285 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9362. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428326285\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('a08770d1-d822-4186-a626-92d4706b5818','33761428784','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('a0895503-4270-4992-a53a-7dc00590cfeb','4915204351936','İletişim \n					Şöför Uğur Acar +905424435917','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('a08d2fce-7ac6-45a2-bd5a-535ea14b47d4','905325000478','CAN GLAS GMBH adlı müşterinizin 412603598 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL),
('a08e0823-429d-4cb0-8131-a28990577f8f','4917658150125','Sayın DAVUT DEĞİRMENCİ, 478686372 nolu gönderiniz 7830 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478686372\n\nDear DAVUT DEĞİRMENCİ, your shipment with 478686372 was delivered to you with the delivery code 7830. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478686372\n\n\nBICARGO','1','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL),
('a0927daf-b3f2-4fcb-9c92-891a43256c50','905336367828','AJLA ORUC  adlı müşterinizin 982329375 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('a09738af-cafd-4893-90d8-41748727b7af','905532675926','Sayın yetkili; METİN MOLA adlı müşterinize 428693052 nolu gönderinizin Orta ve yan sehpa ürünü 3 parça halinde area adresinizden 28.08.2025 15:11:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('a09a69a2-e7b8-4e9d-880b-371eb2c1d1e5','491603349147','Sayın ESTRELLA TÜMKAYA, 319918133 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319918133\n\nDear ESTRELLA TÜMKAYA, your shipment with 319918133 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319918133\n\nBICARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('a09fd61d-0825-4ead-a0bc-7e5508d806f0','4917683383437','Sayın FATİH KAZAR, 428182749 nolu gönderiniz 7800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428182749\n\nDear FATİH KAZAR, your shipment with 428182749 was delivered to you with the delivery code 7800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428182749\n\n\nBICARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('a0b556db-8016-4006-a0e7-79f69f1ebf47','491787816278','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('a0b871cc-c1d6-480f-bcfe-34c79de47260','4917683202035','Sayın FİLİZ DEĞER, 371655670 nolu gönderiniz 5698 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371655670\n\nDear FİLİZ DEĞER, your shipment with 371655670 was delivered to you with the delivery code 5698. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371655670\n\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('a0c876a4-34a8-492e-b4f2-43829b0a3f63','4917670009817','52817450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6788 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/52817450\n\nYour shipment with the number 52817450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6788. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/52817450\n\nBICARGO','1','2094040d-2cfd-4028-9115-e50a2e855156',NULL),
('a0c9e26f-4da1-4bc0-9558-aab70c97dc9c','905532675926','KADİR SÜLÜN adlı müşterinizin 428696149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('a0cdbb4f-056c-4ac9-8610-b29067726742','905454259202','MİNA ANNABİ adlı müşterinizin 478278253 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('a0d40587-ca1e-42cc-84df-0ba14f2425e1','4369919078247','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598427868\n\nBICARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('a0e0702a-37c1-4201-8ea9-1f2581562403','905331602195','Sayın yetkili; SADOUN ABDELKADİR adlı müşterinize 221804377 nolu gönderinizin 130 çap mermer baskı masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 18.03.2025 17:11:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('a0e5191b-ac63-44f6-99fe-520435726e06','40754578343','982999114 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9677 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982999114\n\nYour shipment with the number 982999114 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9677. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982999114\n\nBICARGO','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('a0ea774c-16fc-4bea-bc8f-19c4a20b7ffe','4915224134737','437578664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8895 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437578664\n\nYour shipment with the number 437578664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8895. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437578664\n\nBICARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('a0faf2fc-e324-44af-a4fd-e2ecd3cffd01','905079358213','SALİHA KURT adlı müşterinizin 745251111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('a10d3d4b-2efb-4b05-a934-045733b60696','905335511664','İLAYDA GÜNEŞ SSH adlı müşterinizin 371280361 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('a11230d1-1d1a-4373-aba7-1d4d7a7337f7','905335511664','MELİKE BAYINDIR adlı müşterinizin 371398805 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('a11b96c8-7046-4aa8-97ec-2128ef91aa17','4915118402012','Sayın ABDÜLKERİM AKDAS, 248359668 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248359668\n\nDear ABDÜLKERİM AKDAS, your shipment with 248359668 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248359668\n\nBICARGO','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('a11c5d26-95f4-4e27-a826-144dad559f90','4915111866659','Sayın MELİSA DÜZME, 644796083 nolu gönderiniz 4358 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644796083\n\nDear MELİSA DÜZME, your shipment with 644796083 was delivered to you with the delivery code 4358. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644796083\n\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('a11e671c-aa91-41dd-9a0d-245504fa292e','33772302875','Sayın LYDİE MAKALU, 449780250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449780250\n\nDear LYDİE MAKALU, your shipment with 449780250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449780250\n\nBICARGO','1','f9c61776-accb-469f-88e4-b551ad871fe8',NULL),
('a11fa5a2-8667-4b08-9b33-bc0150f18d3f','4917680676918','644644115 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2744 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644115\n\nYour shipment with the number 644644115 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2744. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644644115\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('a125fe16-12e0-499c-8cda-9f6a6df63862','491774677358','437835103 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437835103\n\nYour shipment with the number 437835103 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437835103\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('a12a45f3-0dc5-450f-bad2-a1d4309e6d2a','4917632856382','Sayın AYLİN MİYANYEDİ, 598444930 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598444930\n\nDear AYLİN MİYANYEDİ, your shipment with 598444930 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598444930\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('a12c9fe0-1ebb-4846-8845-86fb2f41cda1','905421855834','MEHMET ERTÜRK adlı müşterinizin 338737901 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('a12e5b0b-6282-442c-aa0c-1aa25d619f0f','491728162123','Sayın ŞENGÜL BABAOĞLU, 371304914 nolu gönderiniz 8774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371304914\n\nDear ŞENGÜL BABAOĞLU, your shipment with 371304914 was delivered to you with the delivery code 8774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371304914\n\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('a134ee8f-7804-44ce-aeec-83a7d3470131','905532675926','TÜLAY AYDIN adlı müşterinizin 428604775 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('a137c54e-02f8-4fba-91a5-8b9084b752ef','31682496201','Sayın ESRA ALTINTAŞ , 221437904 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221437904\n\nDear ESRA ALTINTAŞ , your shipment with 221437904 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221437904\n\nBICARGO','1','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL),
('a13aeff0-83fc-481d-beee-ccec3b0c0c68','4915758509876','Sayın DİLEK KHABİL, 765729280 nolu gönderiniz 7196 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765729280\n\nDear DİLEK KHABİL, your shipment with 765729280 was delivered to you with the delivery code 7196. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765729280\n\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('a141a928-ba1a-44f7-8665-631dd496c9f3','491788532068','371734068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371734068\n\nYour shipment with the number 371734068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371734068\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('a14cc2be-5928-4839-a0ce-4a90cff13a7f','905325000478','MURAT adlı müşterinizin 412586892 nolu gönderisi 76 parça halinde yola çıkmıştır.','1','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL),
('a15adf47-5d7b-40c5-b10c-c077a5de0970','31681294443','Sayın ABDIL HAPLE , 248955969 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248955969\n\nDear ABDIL HAPLE , your shipment with 248955969 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248955969\n\nBICARGO','2','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL),
('a15ea268-01be-4452-98b4-827517dd1a0b','905331602195','LATİFA KHAZROUKI adlı müşterinizin 221139773 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('a162755a-f053-43f3-95cb-2f32f43d65ea','491733842224','437256638 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6495 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437256638\n\nYour shipment with the number 437256638 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6495. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437256638\n\nBICARGO','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('a16293c2-e796-4dae-a0f6-9eb0cccc5844','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E335 DEJAVU PORTMANTO AYAKKABILIK ürünü 1 parça halinde Fatura adresinizden 03.09.2025 14:09:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('a172fa3d-190b-4037-930b-f3d3f2e9ba07','33668667974','614908568 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2813 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614908568\n\nYour shipment with the number 614908568 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2813. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614908568\n\nBICARGO','1','f169361d-a98a-44cd-9be5-0d014e87b896',NULL),
('a1744722-5b9a-4cae-a082-6a795a430290','41795226139','221967241 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3215 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221967241\n\nYour shipment with the number 221967241 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3215. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221967241\n\nBICARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('a174e94b-447e-4b10-bca3-4cad66d7af6e','3553762763762362','Sayın VEYSİ BALKAYA, 412252425 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412252425\n\nDear VEYSİ BALKAYA, your shipment with 412252425 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412252425\n\nBICARGO','2','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL),
('a1785edb-13f3-4fd8-a79f-9aeb303b9196','905335708965','ÖZLEM GÜLER adlı müşterinizin 248653667 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('a17b456e-1bf3-435e-87af-c9c18972795a','491749347138','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('a17e2275-3d69-4b89-bb00-7eee05a4a29a','905304259202','SÜMEYYE ARSLAN adlı müşterinizin 478355116 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('a17ea583-d867-4d7b-8786-4f031cdde68b','33666141635','Sayın DİLARA TARHAN, 745233031 nolu gönderiniz 4429 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745233031\n\nDear DİLARA TARHAN, your shipment with 745233031 was delivered to you with the delivery code 4429. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745233031\n\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('a17fbb3a-2698-432a-83b3-c5e9fe706f61','905069116877','Sayın yetkili; NADİNE NATUR adlı müşterinize 817303639 nolu gönderinizin Star köşe ürünü 6 parça halinde Fatura adresinizden 05.05.2025 15:11:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('a1831114-c612-4eb1-affa-780950377ef8','905069116877','MELİSA  adlı müşterinizin 817630523 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('a183b033-6823-44b2-b6d5-2eb1d78d2d45','31627024701','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('a1856590-2660-4e09-8e85-47b9390462c2','33605875913','Sayın HALİT SEVER, 750363306 nolu gönderiniz 4712 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750363306\n\nDear HALİT SEVER, your shipment with 750363306 was delivered to you with the delivery code 4712. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750363306\n\n\nBICARGO','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('a18a7b69-f315-4f80-90ee-f65b2927748c','374747383838848','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('a191a456-8dd0-4937-8c90-fd23092c98c1','33651400749','Sayın ÖZKAN ÖZKOŞAR		, 910482480 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910482480\n\nDear ÖZKAN ÖZKOŞAR		, your shipment with 910482480 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910482480\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('a1966675-ad6b-4af1-a07f-00d8d65c978d','4917620811001','Sayın İVAN SLEMAN DİNO, 598410676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598410676\n\nDear İVAN SLEMAN DİNO, your shipment with 598410676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598410676\n\nBICARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('a197e879-b1c0-4187-bcab-36aede710285','905461661672','CAN ALTIN adlı müşterinizin 644110179 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('a19a71f1-8432-4fc8-a916-eb90167e5ba1','905079358213','ERCAN VARSAK adlı müşterinizin 745318139 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('a19b89cd-fc38-4c85-8e71-0f3ae07d2b51','436763366858','Sayın İSMAİL ÖZAY , 745423192 nolu gönderiniz 9282 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745423192\n\nDear İSMAİL ÖZAY , your shipment with 745423192 was delivered to you with the delivery code 9282. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745423192\n\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('a19fefbe-109d-4bc4-8e0c-94c7ae99176b','905335511664','ENVER HAN ALKAN adlı müşterinizin 37146102 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('a1a21cb3-fa3d-4b49-9354-f082f630b733','33783196763','517495121 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10541 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517495121\n\nYour shipment with the number 517495121 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10541. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517495121\n\nBICARGO','1','31e57ac5-fccb-463d-9767-6b43f825e71a',NULL),
('a1a25dda-0e87-4326-bd1a-6429d6e6202b','4917682051476','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('a1a4a9aa-8f37-4f35-8123-bb90075d8d7d','491759990232','505987989 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505987989\n\nYour shipment with the number 505987989 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505987989\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('a1a840e6-3f67-4dff-bb6a-17a76090d0c9','4915739271239','221208954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10733 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221208954\n\nYour shipment with the number 221208954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10733. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221208954\n\nBICARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('a1a8f906-5efe-46ee-8ff1-d135466ca5bc','905313340045','Sayın yetkili; SELMA YILMAZ  adlı müşterinize 437649696 nolu gönderinizin Orta sehpa ürünü 1 parça halinde brave masa  adresinizden 19.09.2025 16:25:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('a1b353c7-8342-4f69-8a72-2d52eda37a1e','41782148595','478112159 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1760 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478112159\n\nYour shipment with the number 478112159 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1760. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478112159\n\nBICARGO','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('a1b552ab-60f8-4ec2-b16d-d28db8382f23','905325000478','DEKOR ARSLAN adlı müşterinizin 412332862 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('a1bab2c3-4d09-48bc-8c47-167b2d132d84','905461661672','Sayın yetkili; CAN ALTIN adlı müşterinize 644110179 nolu gönderinizin SANDALYE  ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 10.03.2025 14:07:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('a1bbbb80-e330-48d1-8b6c-35fc6c9ca0ac','905079047428','SEVDA ÇAYLAK adlı müşterinizin 449475255 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','887939c6-c572-4048-9ec2-13b2ba75c706',NULL),
('a1bd3842-3c9f-458e-ae5a-6e1a3cfcf7b3','33650234345','Sayın NESLİHAN HANIM , 982614868 nolu gönderiniz 9189 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982614868\n\nDear NESLİHAN HANIM , your shipment with 982614868 was delivered to you with the delivery code 9189. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982614868\n\n\nBICARGO','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('a1bdfbf5-f1fa-43c9-b230-2b28c17b8b5b','905350617509','Sayın yetkili; GÖKKUS PİNAR adlı müşterinize 61340935 nolu gönderinizin Sandalye ürünü 4 parça halinde Mfoursandalye adresinizden 06.10.2025 10:37:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('a1c2dc05-3db8-48f5-a4ac-278cd32f1d0c','905350617509','Sayın yetkili; GALİNA KAMERER  adlı müşterinize 613499620 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 22.07.2025 17:07:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('a1c80070-73c2-4a8c-bbfe-62a3beb2c1b0','905075277637','Sayın yetkili; ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinize 745967323 nolu gönderinizin SSH KÖŞE PRÇ + SEHPA  ürünü 2 parça halinde Fatura adresinizden 28.05.2025 14:46:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('a1c84454-058d-488b-b785-a217b12033d8','4915124486565','Sayın MEHMET AKDAĞ, 614666366 nolu gönderiniz 5352 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614666366\n\nDear MEHMET AKDAĞ, your shipment with 614666366 was delivered to you with the delivery code 5352. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614666366\n\n\nBICARGO','1','5d1c34cf-e5dc-426c-87f8-ac812da1f3cd',NULL),
('a1ce435f-1465-48f2-9a44-042cbd7e4272','4917621136198','437414847 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8127 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437414847\n\nYour shipment with the number 437414847 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8127. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437414847\n\nBICARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('a1cfb927-9850-41f7-b103-eca6c609a9bf','905348867917','904803845 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4737 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/904803845\n\nYour shipment with the number 904803845 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4737. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/904803845\n\nBICARGO','1','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL),
('a1d1477f-f2c0-49da-97ee-fa9ac0ccdcc8','491788532068','371734068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371734068\n\nYour shipment with the number 371734068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371734068\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('a1d497df-ffcd-4474-91dd-a52f9cb324df','905079358213','ERAY ASLANCAN adlı müşterinizin 745294810 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('a1d4a285-e32e-4d80-a156-b4ca62c86631','905304259202','VELİ ÖKTEN adlı müşterinizin 478284503 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('a1d6f5fa-10e6-4438-940b-a5f23330c1d7','905331602195','AUCHLİ ANA  adlı müşterinizin 221616369 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('a1dd284f-1108-4267-b1a4-113cc055bbac','4917687972563','598263441 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3087 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598263441\n\nYour shipment with the number 598263441 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3087. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598263441\n\nBICARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('a1e19c32-dde2-476b-973c-82ccf22b9e08','905368336516','Sayın yetkili; HİLAL ZÜBEYİRLER adlı müşterinize 515973668 nolu gönderinizin BAZA BASLIK YATAK  ürünü 7 parça halinde TRANJET DEPO  adresinizden 20.10.2025 10:17:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0e3cd4c9-294c-4ded-8194-bf22e23bc5a0',NULL),
('a1e1dd13-9272-40b5-b77d-86836b36417d','4915906122844','Sayın İMDAT KILIÇASLAN, 428480095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428480095\n\nDear İMDAT KILIÇASLAN, your shipment with 428480095 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428480095\n\nBICARGO','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('a1e22692-73e0-459d-a920-246a0836f3e0','905461661672','Sayın yetkili; ÜMİT ALBAYRAK adlı müşterinize 644526832 nolu gönderinizin AFYON TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 10.10.2025 13:16:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('a1e25ee7-2edb-4b83-b032-53a81aa5d300','905078062550','ENES KARABAŞOĞLU adlı müşterinizin 598130952 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('a1e3d583-ca2b-4624-bd34-34f6c0e3739f','491636216129','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('a1e536e8-fab6-4fea-9482-6ccb02284492','491634257044','Sayın ŞÜKRÜ AKSOY, 428930069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428930069\n\nDear ŞÜKRÜ AKSOY, your shipment with 428930069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428930069\n\nBICARGO','1','73760c06-ddf4-438a-b4ca-f709ffabe11c',NULL),
('a1e8b34f-bb95-4107-9d3b-977f8bd3adc4','905075277637','ÇAĞLA SEVİNÇ adlı müşterinizin 745243104 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL),
('a1e9842c-16d1-4758-b761-54d62ce0e908','4915206452765','Sayın CAN ÖZKAN, 598262809 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598262809\n\nDear CAN ÖZKAN, your shipment with 598262809 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598262809\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('a1e9d4e4-22f1-4b20-a84b-70cecdb3d2a7','33699489518','Sayın SANAA ARGANE, 221573899 nolu gönderiniz 8134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221573899\n\nDear SANAA ARGANE, your shipment with 221573899 was delivered to you with the delivery code 8134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221573899\n\n\nBICARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('a1ea13b6-b2ff-43c2-beb4-62d9304b792a','905517075149','Sayın yetkili; HEVİ BARAN adlı müşterinize 478893710 nolu gönderinizin 14 kapaklı dolap ürünü 23 parça halinde acca adresinizden 14.10.2025 14:59:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8cb67fa-fe67-46a9-9038-d693e382afe9',NULL),
('a1ea9347-5e0b-470c-adaa-4c1b67f0c77b','905461661672','Sayın yetkili; BURAK YAKUT adlı müşterinize 644975430 nolu gönderinizin Malzeme kutusu ürünü 1 parça halinde LENTE HOME adresinizden 05.08.2025 15:07:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('a1f0909d-48d8-4a05-8e74-a969179a2141','905079047428','JAFARİ SAYED OMİD adlı müşterinizin 449448008 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','82a52514-f885-46c9-bb75-54161940ec29',NULL),
('a1f47943-609f-4552-87bb-a6ba35f132e1','905335708965','MASOUME IBRAHİMKHEL adlı müşterinizin 735211280 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL),
('a1f661db-9f41-4559-84aa-541127e6b5ea','33781067727','478504480 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7008 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478504480\n\nYour shipment with the number 478504480 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7008. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478504480\n\nBICARGO','1','9baf761a-5eba-4780-bfc0-003e1236dff6',NULL),
('a1fbab5b-9460-4d79-9665-66b23c014923','905331602195','ERKAN TAŞDELEN  adlı müşterinizin 221397270 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('a1fef8d5-6cf0-4c1d-ac99-9446cec6f443','905443955915','ÖZCAN ÇETİN adlı müşterinizin 614725757 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL),
('a201e559-5ebc-4d1a-bc43-158c56fda1a1','33769000460','DRİVER\n					ADNAN\n+905354622027','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('a208d79d-7f0c-4c4a-8319-ae6a1beb9842','905331602195','LEPETİT CRİSTELLE adlı müşterinizin 221251932 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('a20d3ed0-42e1-45b5-9092-156ee4624862','41762827635','Sayın BURHAN AZEMİ, 74594372 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74594372\n\nDear BURHAN AZEMİ, your shipment with 74594372 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74594372\n\nBICARGO','1','692c748c-7c37-415c-b3d9-996281a0eba4',NULL),
('a2124007-19f1-49b4-8875-01f759d7f25b','905335511664','Sayın yetkili; MUHAMMED TOPAL adlı müşterinize 371681337 nolu gönderinizin SANDALYE ürünü 6 parça halinde Sandalyeci Bekir adresinizden 21.08.2025 15:09:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('a2188445-40f7-4c7a-9a49-61ae74fd93bb','491735396163','Sayın FATİME YILMAZ, 371626943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371626943\n\nDear FATİME YILMAZ, your shipment with 371626943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371626943\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('a21d9ced-8beb-4f13-af6e-6c27d71852b3','905335511664','HAMİYET KARASOY adlı müşterinizin 371876767 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('a21e5996-e50f-49c7-8daa-0f03d4236f7f','905075277637','Sayın yetkili; ARZU AKSİ adlı müşterinize 745817440 nolu gönderinizin BOHEM YEMEK OD. ürünü 10 parça halinde Fatura adresinizden 09.05.2025 19:19:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('a21f581e-4b93-4a95-b19c-d649edab05a1','905365908694','DİE FABRİK OUTLET  adlı müşterinizin 223631242 nolu gönderisi 62 parça halinde yola çıkmıştır.','1','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL),
('a2208c43-859f-47e5-9f51-c261a4bf1095','4917664132163','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('a22365d6-d0e2-46ac-80f5-8ab933967a2b','5348867917','Sayın GÜRKAN DAĞ , 904863225 nolu gönderiniz 4231 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/904863225\n\nDear GÜRKAN DAĞ , your shipment with 904863225 was delivered to you with the delivery code 4231. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/904863225\n\n\nBICARGO','2','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL),
('a23089dd-81fa-4975-8b76-0902bcac0322','33622632744','745991962 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745991962\n\nYour shipment with the number 745991962 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745991962\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('a2326972-699b-4404-b2c1-ff099a5d5ed4','4917662248908','Sayın ERCAN VARSAK SSH , 745282619 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745282619\n\nDear ERCAN VARSAK SSH , your shipment with 745282619 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745282619\n\nBICARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('a235cff2-8aab-4547-8048-39597dc2555f','436605673801','Sayın HANİFE TURAN, 437355925 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437355925\n\nDear HANİFE TURAN, your shipment with 437355925 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437355925\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('a2369f3e-341f-42b2-9fb5-e1d418c7381c','40741058791','98221051 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6713 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98221051\n\nYour shipment with the number 98221051 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6713. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/98221051\n\nBICARGO','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('a23703cd-b40d-4293-8f4e-8d67dd57a78b','905454259202','Sayın yetkili; ZEYNEP CİHANGİR adlı müşterinize 478678849 nolu gönderinizin iki adet kanepe kolu- iki adet koltuk kasası ürünü 1 parça halinde vaav adresinizden 02.06.2025 14:33:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('a23ba96f-e4e1-4f52-bdc2-039a41e46c35','3378192950','Sayın YASİN YAVAŞ, 910599740 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910599740\n\nDear YASİN YAVAŞ, your shipment with 910599740 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910599740\n\nBICARGO','2','5063dfa2-5328-4697-84aa-52c286384d28',NULL),
('a23c310b-5437-48c4-8ad4-f4845250a467','5388999874','319388100 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319388100\n\nYour shipment with the number 319388100 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319388100\n\nBICARGO','2','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('a248c8ac-7c7f-4c04-84a5-5494940fd617','905365908694','DİEFABRİC adlı müşterinizin 223433822 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL),
('a24c3f29-a3c3-4dc9-842f-b28d89fef8c0','4367762955236','982320922 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10807 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982320922\n\nYour shipment with the number 982320922 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10807. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982320922\n\nBICARGO','2','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL),
('a24f4b24-5820-4511-b9d6-c5dc25357cb5','33766392423','437431907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10127 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437431907\n\nYour shipment with the number 437431907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10127. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437431907\n\nBICARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('a2529e9b-e12e-4d32-805e-c3655a979763','905335708965','MELİKE KOÇ adlı müşterinizin 735931871 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL),
('a2538830-1ab9-4ff0-8291-e16c42ba7393','905335511664','Sayın yetkili; MERVE DEĞİRMENCİ adlı müşterinize 371665826 nolu gönderinizin seramik masa sehpa ürünü 6 parça halinde Seramik Masa Üreticisi adresinizden 28.04.2025 15:05:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('a255764a-815f-44c4-b578-44a5acc85df3','01783097953','Sayın OGULCAN BAYRAM, 613822987 nolu gönderiniz 5071 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613822987\n\nDear OGULCAN BAYRAM, your shipment with 613822987 was delivered to you with the delivery code 5071. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613822987\n\n\nBICARGO','2','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('a25db9b0-f509-4f22-9ac0-ffcfac241ac6','33662787707','478835180 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6592 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478835180\n\nYour shipment with the number 478835180 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6592. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478835180\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('a262c4e9-b071-423e-a561-933bb504411e','905431026110','HÜSEYİN ÇELİK adlı müşterinizin 351888584 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('a264103c-2c37-4bc4-8a1f-43d6147b9b63','0436643585040','412603598 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8678 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412603598\n\nYour shipment with the number 412603598 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8678. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412603598\n\nBICARGO','2','f5369bfb-80d6-4971-9b20-e83e88c077e9',NULL),
('a2691fb7-b2ca-44e5-b46c-52f2d181bfee','4915256924287','Sayın MAZHAR BAYMAN, 644903033 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644903033\n\nDear MAZHAR BAYMAN, your shipment with 644903033 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644903033\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('a26c4495-643f-4227-89e0-1117f50d14b4','905304259202','MİNA ANNABİ adlı müşterinizin 478278253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('a270b754-ce7c-4030-b70f-f326211c9169','905461661672','Sayın yetkili; MERYEM KAYA adlı müşterinize 644178445 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:15:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('a271b135-d23e-47b0-ac78-110b6f3fb93f','4917657742944','Sayın BEGÜM KIRCA, 371801847 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371801847\n\nDear BEGÜM KIRCA, your shipment with 371801847 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371801847\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('a271cf6f-5a8d-4121-a312-eb3316799591','491625434501','Sayın EBRU DEMİRHAN, 745422037 nolu gönderiniz 8969 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745422037\n\nDear EBRU DEMİRHAN, your shipment with 745422037 was delivered to you with the delivery code 8969. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745422037\n\n\nBICARGO','1','3e19392f-7b28-4ec5-bd54-c32058400252',NULL),
('a27575c5-f301-4bc3-846f-9c99f582acc2','491779822285','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('a27f7883-f499-4eba-8123-c3df8830c504','31648497230','Sayın HATİCE GÜNGÖR, 465634666 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465634666\n\nDear HATİCE GÜNGÖR, your shipment with 465634666 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465634666\n\nBICARGO','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('a2804ac6-6585-40e9-80c5-da6f6092bf80','33632415512','Sayın DİRİL NURİ, 43792999 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43792999\n\nDear DİRİL NURİ, your shipment with 43792999 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43792999\n\nBICARGO','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('a2817e34-3f4f-417d-9fb6-78ea6c43efa5','33783709896','Sayın MARİNE NETO, 43720744 nolu gönderiniz 7669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43720744\n\nDear MARİNE NETO, your shipment with 43720744 was delivered to you with the delivery code 7669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43720744\n\n\nBICARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('a2850a32-2dd9-43eb-8aba-d285408c0996','905336367828','SUNAİM İBESKİ adlı müşterinizin 982498702 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','226d454f-504a-4c41-9f7c-2a37ac051991',NULL),
('a2862fe3-ac39-46b8-81c4-36fb49f3aaa5','905079047428','HACI ULUDAĞ adlı müşterinizin 449898615 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','4201089d-4123-423c-809e-645e609e8e0a',NULL),
('a28ab230-49e0-44c9-9cb3-9cbea361d532','4915152520496','Sayın HATİCE ÖZEN, 745734415 nolu gönderiniz 7236 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745734415\n\nDear HATİCE ÖZEN, your shipment with 745734415 was delivered to you with the delivery code 7236. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745734415\n\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('a28bb3d9-bfe5-4a6d-a700-70b47157304e','905431026110','AZAT ALKAN adlı müşterinizin 35119636 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('a28fd582-b9d1-4d97-9558-6c36b12ae96c','4917624718439','Sayın SEYHAN GÜNDÜZ, 598148104 nolu gönderiniz 3046 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598148104\n\nDear SEYHAN GÜNDÜZ, your shipment with 598148104 was delivered to you with the delivery code 3046. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598148104\n\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('a29239d9-4740-4170-ae86-654b5962465f','905332942204','Sayın yetkili; RABİJE OSMANİ adlı müşterinize 505332275 nolu gönderinizin koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 06.10.2025 16:53:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','31898da9-acb0-4ff9-aff5-1305eceaf2d3',NULL),
('a2946161-58c8-4d73-8fd6-9d64fe5cfddb','4917632543868','644422105 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4615 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644422105\n\nYour shipment with the number 644422105 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4615. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644422105\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('a2998073-29b5-43a7-8c4a-a7b5c5fc3b1b','905461661672','Sayın yetkili; ALİŞAN CERCİ(K) adlı müşterinize 644847294 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 23.09.2025 15:29:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('a29a9f48-21e7-4cee-bfa3-7d91ec63ba9a','4917623201470','Sayın ŞÜKRAN ALP , 614969446 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614969446\n\nDear ŞÜKRAN ALP , your shipment with 614969446 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614969446\n\nBICARGO','1','7786397b-871f-47e3-8e4a-cb1bd837419f',NULL),
('a29afb71-1ce3-457b-908b-5011e331cea1','436609030413','Sayın MONİCA TODERAŞ, 505597041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505597041\n\nDear MONİCA TODERAŞ, your shipment with 505597041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505597041\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('a2a18cac-2d54-4c01-aa1a-f2f7b6c9d1ad','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ESKALA LİNE İKİLİ PANTOLONLUKLU BLOK DOLAPP ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('a2a4b002-0132-444b-8d5e-5fa79fda8783','3376262828','Sayın OĞUZHAN TIĞ, 478824521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478824521\n\nDear OĞUZHAN TIĞ, your shipment with 478824521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478824521\n\nBICARGO','2','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('a2a58ec9-d4ab-43fb-9ae9-8580371c740f','3377867204','Sayın BECET ÖZDEMİR, 478221533 nolu gönderiniz 6824 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478221533\n\nDear BECET ÖZDEMİR, your shipment with 478221533 was delivered to you with the delivery code 6824. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478221533\n\n\nBICARGO','2','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('a2a8f0b2-b25b-4ccf-9d24-1560e432ba56','905331602195','Sayın yetkili; KELLY DE VOS  adlı müşterinize 221560581 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 8 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 12:06:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('a2aa58c4-0eca-43a8-87b4-1c517f41280e','905336367828','Sayın yetkili; Enver kök  adlı müşterinize 982549375 nolu gönderinizin Köşe koltuk  ürünü 4 parça halinde Sels sofa  adresinizden 13.11.2024 15:19:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('a2ab2234-6f52-4855-bf8a-26790dadc2b1','905461661672','RAMAZAN AY adlı müşterinizin 644542202 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('a2ae0f9b-a951-4901-949b-28adbf11259f','905075277637','GÖKHAN ÇAYLAK adlı müşterinizin 745808994 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('a2af09c0-9505-44b0-be6b-8880a97c67d2','005313459454','24889830 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6680 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/24889830\n\nYour shipment with the number 24889830 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6680. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/24889830\n\nBICARGO','2','1c37ec40-77c6-4885-995d-696850992a10',NULL),
('a2bde4a2-5cf1-4106-8fe0-1b686d4aaea8','905517075149','SELDA ÇELİK adlı müşterinizin 478777541 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('a2c1ee31-ce69-4fbf-bc3a-5d773bc54676','905454259202','MÜCAHİT SÖYLEMEZ adlı müşterinizin 478342417 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('a2c257e8-7488-4e3f-a9ab-21fea4991233','905059175469','MUSTAFA MÜEZZİNOĞLU adlı müşterinizin 428459785 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('a2c7b9f1-155f-487a-90d1-edc75b9935eb','33680267085','Sayın SEZER BEY, 126922033 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126922033\n\nDear SEZER BEY, your shipment with 126922033 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126922033\n\nBICARGO','1','9f748f02-e185-45e0-9d24-ee921761490f',NULL),
('a2c7c3a7-e012-4e63-932a-b0b24e513020','905540182920','Sayın HASAN BEY, 448805304 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/448805304\n\nDear HASAN BEY, your shipment with 448805304 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/448805304\n\nBICARGO','1','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL),
('a2c8a948-bfe7-4269-b7d7-43199b0e05c4','905350349029','Sayın yetkili; MELİSA YILMAZ adlı müşterinize 203519424 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde VAHİT ÇETIN MOBİLYA adresinizden 22.05.2025 18:19:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('a2c98b4c-fb7f-4a3d-ba78-d2c89c6fdb5b','905454259202','MEHMET SENCER adlı müşterinizin 478321858 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL),
('a2cbdd34-0552-43ba-9fc8-8d55a5344992','436763463503','Sayın DİANA BARAKAEVA, 613554878 nolu gönderiniz 2679 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613554878\n\nDear DİANA BARAKAEVA, your shipment with 613554878 was delivered to you with the delivery code 2679. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613554878\n\n\nBICARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('a2d0ef54-2d60-4e00-b4fa-c7324868f0a2','905517075149','Sayın yetkili; FATMA KARAHAN adlı müşterinize 478346989 nolu gönderinizin masa- 4 adet sandalye-benç- orta sehpa ürünü 5 parça halinde acca adresinizden 10.10.2025 11:44:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('a2d81a79-9fd1-4846-8116-f491e4af39a3','33767550958','Sayın NURAY ÖZKAN, 412767922 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412767922\n\nDear NURAY ÖZKAN, your shipment with 412767922 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412767922\n\nBICARGO','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('a2db2ae5-f07d-455c-9f93-50118bd5b24f','905304259202','MUSTAFA ÜNLÜSOY adlı müşterinizin 478479612 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6b72e67a-4029-4618-9942-062ca2c63ca5',NULL),
('a2db4d43-2b6a-40d6-91a3-06c5f1522df8','905461661672','Sayın yetkili; GÜLŞEN YİRMİBEŞOĞLU adlı müşterinize 644563405 nolu gönderinizin 2 ADET KANEPE ürünü 3 parça halinde BAYSA KOLTUK adresinizden 27.10.2025 16:41:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526de5bb-5478-4ac9-aaab-26c962aa787b',NULL),
('a2dc00f3-ef5e-4751-aad4-24c388b2503f','32490369779','Sayın ALİ ERKOCA SSH , 745942521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745942521\n\nDear ALİ ERKOCA SSH , your shipment with 745942521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745942521\n\nBICARGO','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('a2dc1ac8-69e5-4aab-84f8-55b45b251209','31623610676','Sayın MAZİJA IBRAHIMOVİC, 221417499 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221417499\n\nDear MAZİJA IBRAHIMOVİC, your shipment with 221417499 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221417499\n\nBICARGO','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('a2ef5c49-3372-42d5-abf8-f9588187babf','905461661672','MUHAMMET KÖSEDAĞ(K) adlı müşterinizin 644590959 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('a3009346-9ce7-4875-ab38-160e88e38c2f','905313340045','Sayın yetkili; UMUT ETHEM EMRE  adlı müşterinize 437101296 nolu gönderinizin Köşe kampanya ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 17.09.2025 18:13:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1916783b-4f27-42eb-9741-6293c2d89316',NULL),
('a3016cb6-1eac-4961-ac37-8b9960ca88c3','905059175469','Sayın yetkili; SALİH DURAK adlı müşterinize 428718727 nolu gönderinizin konsol+ayna+sandalye+masa+ünite ürünü 13 parça halinde rixxe adresinizden 23.12.2024 17:49:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('a305b24d-a43e-4130-b879-43512e39d0dc','4915561661704','Sayın HASAN EROL, 976568852 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976568852\n\nDear HASAN EROL, your shipment with 976568852 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976568852\n\nBICARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('a30999d2-1632-4054-a439-aec5a42a4ee9','4915778860967','Sayın MERYEM BULAK, 371408514 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371408514\n\nDear MERYEM BULAK, your shipment with 371408514 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371408514\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('a30c24a0-db80-4cba-be10-e056d1f4e4de','4915208560567','Sayın ESMA EROĞLU, 614859961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614859961\n\nDear ESMA EROĞLU, your shipment with 614859961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614859961\n\nBICARGO','1','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL),
('a30c5f5d-aa1c-4636-af89-8c074a19c46e','491629865985','Sayın İPEK CANTÜRK, 437313362 nolu gönderiniz 5686 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437313362\n\nDear İPEK CANTÜRK, your shipment with 437313362 was delivered to you with the delivery code 5686. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437313362\n\n\nBICARGO','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('a310ac47-8e9f-4bb6-918c-c8b5a35081e9','905078062550','RASİM YAVUZ adlı müşterinizin 598894090 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('a312ebf5-1af2-4ba1-a112-cc9037eb362b','905333221039','FİRAS MACHANTAT adlı müşterinizin 750505145 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('a313fc39-39ce-4316-a751-3d38ad8372f1','905301592882','İDRİS EŞKIN adlı müşterinizin 910593915 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('a31bb190-6b28-41d9-ab94-d28c8b107856','905079358213','MEHMET DAĞDEVİREN adlı müşterinizin 745485271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('a32011e9-f485-4907-ad0a-3d0747bda6e0','905517075149','MEHMET ALİ ŞAHİN adlı müşterinizin 478616973 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('a321eba2-9110-4d13-a4e9-f8530ac9dd0d','33352661170224','982333020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3550 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982333020\n\nYour shipment with the number 982333020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3550. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982333020\n\nBICARGO','2','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('a32fd12e-6610-4598-9efa-70117270910d','4917680107052','982529212 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4507 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982529212\n\nYour shipment with the number 982529212 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4507. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982529212\n\nBICARGO','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('a333ca80-a1e2-459c-b322-c834938d4927','905335511664','STEFANİA KİOSKER adlı müşterinizin 371734068 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('a336e1d8-1545-47d7-895b-b902f548cf3d','033749929034','Sayın KADİR SERZAN, 734889822 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734889822\n\nDear KADİR SERZAN, your shipment with 734889822 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734889822\n\nBICARGO','2','ca7f278f-ad79-4c38-a185-b73739ed8248',NULL),
('a338adb9-a630-4f6c-9ba0-44d72ea30890','905335708965','INNSTRABE  adlı müşterinizin 248648996 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','17a3d3ea-9822-46c1-a225-976edf021056',NULL),
('a338d487-0506-4bb4-886c-9e158ae3e0e1','905331602195','SAMİR KERANOVİC  adlı müşterinizin 221837026 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('a33b2636-8c7d-422e-8d01-821fefc94b84','905069116877','GİZEM YILDIRIM adlı müşterinizin 817500904 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('a3492e58-36fb-4463-93c3-5934ba8aaa19','905313340045','MANOLYA PELİN ERDOĞAN ÖZÇELİK adlı müşterinizin 437649706 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('a34bde53-6982-4733-8acc-52d2edbf3a51','905335511664','Sayın yetkili; AYLİN AY adlı müşterinize 371201111 nolu gönderinizin masa ürünü 2 parça halinde SM Tasarım adresinizden 08.08.2025 14:39:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('a3517b90-b68d-4574-801f-b295e955bbe9','41782502188','982555492 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5823 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982555492\n\nYour shipment with the number 982555492 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5823. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982555492\n\nBICARGO','1','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL),
('a3518830-b814-41e7-b776-aadf901cc713','41764537057','478449275 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478449275\n\nYour shipment with the number 478449275 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478449275\n\nBICARGO','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('a35315a0-adb5-4974-b6d3-8aaded311d7a','905350617509','DİANA BARAKAEVA adlı müşterinizin 613554878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('a35a05af-d056-4bf1-9162-5f4aebab89c2','4917624194526','Sayın DİLAN ÇELİK TOGAN, 371881042 nolu gönderiniz 1571 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371881042\n\nDear DİLAN ÇELİK TOGAN, your shipment with 371881042 was delivered to you with the delivery code 1571. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371881042\n\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('a35b89d5-9c51-43f8-b0ce-4fc1d5b7e002','905079358213','Sayın yetkili; MEHMET KIRMALI SSH adlı müşterinize 745961245 nolu gönderinizin SSH SIRT MİNDERİ ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:10:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('a35b992c-8776-4b7c-9669-bef31fec4555','33783160277','745636493 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9444 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745636493\n\nYour shipment with the number 745636493 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9444. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745636493\n\nBICARGO','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('a35bae3a-6e8e-4183-93e2-1f233f198e9d','905335708965','OZAN YEŞİL adlı müşterinizin 735442629 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','4f91d654-f578-426a-8133-5299ed48d624',NULL),
('a3636698-ecbb-4cb3-99c7-806ec643842e','33789033482','Sayın FİKRET AYDIN, 745439695 nolu gönderiniz 6233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745439695\n\nDear FİKRET AYDIN, your shipment with 745439695 was delivered to you with the delivery code 6233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745439695\n\n\nBICARGO','1','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL),
('a365d2ab-7123-4f44-8bc0-5476492382a2','33660910086','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('a370b73a-0467-4ac5-a6b7-87012fcb20c8','491722006500','Sayın ERSİN ÖZDEMİR, 478892004 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478892004\n\nDear ERSİN ÖZDEMİR, your shipment with 478892004 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478892004\n\nBICARGO','1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL),
('a370ebf3-4fe3-47ba-b903-74b56101a713','31687440743','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('a3714c03-0d25-455c-9325-f6a1afa4bef7','905336367828','ESİN TUNCA adlı müşterinizin 982314530 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('a373516b-e44b-4615-a5f9-9e9dd33acecc','905331602195','REUAN SHAMO  adlı müşterinizin 221947357 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('a374709c-b169-455c-b6ca-0bcff555281b','905078062550','Sayın yetkili; ÖZLEM GÜN adlı müşterinize 598604443 nolu gönderinizin MASA ürünü 2 parça halinde SM TASARIM adresinizden 02.10.2025 13:01:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e399534-04a6-4572-a7ec-3a630c910cdf',NULL),
('a374fcac-c6e6-4ddf-921c-5c43bbc1b18f','905069116877','ORHAN KURT adlı müşterinizin 817578021 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('a37cd16f-8410-41dd-ba6d-2658a0f8b97c','491747823424','Sayın TUĞÇE ÖZKAYA, 598587609 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598587609\n\nDear TUĞÇE ÖZKAYA, your shipment with 598587609 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598587609\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('a37d24a2-0802-4b30-a632-b11fc22b10e0','4917662746063','Sayın RASHİCA ADNAN, 73558075 nolu gönderiniz 10814 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73558075\n\nDear RASHİCA ADNAN, your shipment with 73558075 was delivered to you with the delivery code 10814. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73558075\n\n\nBICARGO','1','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL),
('a37f9306-a3a3-4bce-8051-462aa2cdbf3b','905313340045','GAMZE ŞAHİN adlı müşterinizin 437400305 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('a38009bb-0604-4a03-8d19-858ac3b5f5f1','32460966676','Sayın İYAD SHOURBAJİ , 221591105 nolu gönderiniz 10795 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221591105\n\nDear İYAD SHOURBAJİ , your shipment with 221591105 was delivered to you with the delivery code 10795. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221591105\n\n\nBICARGO','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('a382993e-143a-46dc-9843-30332d47d980','905079358213','OKTAY SAMET ŞAHİN adlı müşterinizin 745782616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('a38a9880-3908-4ae7-845e-29cd7a78873f','4915224134737','437527391 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6861 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437527391\n\nYour shipment with the number 437527391 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6861. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437527391\n\nBICARGO','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('a390b7e2-2bd8-4aaf-8caa-0929d6d2010d','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin c sehpa ve puf mağazadan alınacak ürünü 2 parça halinde Fatura adresinizden 02.06.2025 17:33:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('a395d1ee-6d4f-4e84-bcc2-3cf4c112478b','905323332620','EMRE DİNÇ adlı müşterinizin 52896910 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','13d9e892-f230-4c0d-8dec-9eb0a7d7f6fc',NULL),
('a3963700-eef5-4f5b-8f57-a563c4f35b40','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160*200 YATAK ANTRASİT ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('a396592a-9591-464f-a901-09a6115e0871','34698865709','42892944 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8329 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42892944\n\nYour shipment with the number 42892944 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8329. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/42892944\n\nBICARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('a39829b6-f56b-4466-b7ba-b9709d28f0db','905307331627','027201624 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6993 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027201624\n\nYour shipment with the number 027201624 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6993. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027201624\n\nBICARGO','1','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL),
('a399daa5-9ac4-4154-8324-9b3fefe9a8f0','491728705267','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('a39d2585-d8e8-4ec5-8b2f-24909dda5458','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 05.05.2025 16:47:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('a39e34b8-7d84-43dd-915f-ac6cd98dfac9','4542392394','598280715 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2686 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598280715\n\nYour shipment with the number 598280715 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2686. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598280715\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('a3a40a3c-d11e-43c4-9aa4-f355869b3f1e','33626434007','Sayın SİBEL ÇINAR, 428736949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428736949\n\nDear SİBEL ÇINAR, your shipment with 428736949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428736949\n\nBICARGO','1','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL),
('a3a45b1f-b70a-484b-bb4c-6dd8a5f208dd','491707609047','Sayın HAVVA-HÜMEYRA DEMİR, 42851120 nolu gönderiniz 9003 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42851120\n\nDear HAVVA-HÜMEYRA DEMİR, your shipment with 42851120 was delivered to you with the delivery code 9003. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42851120\n\n\nBICARGO','1','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL),
('a3a887c3-3fe8-44fc-afc8-451951e1160c','905336367828','Sayın yetkili; MOHAMMED MALHA  adlı müşterinize 982125625 nolu gönderinizin puf  ürünü 1 parça halinde Comfortlife  adresinizden 12.02.2025 15:12:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('a3b57bed-32bd-4041-b705-15d57af09c99','905428209234','AYHAN KOCAKAYA adlı müşterinizin 31979626 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('a3bd2480-e3d3-4ba8-85bc-d876b62e6c41','31686094393','Sayın SERKAN YILMAZ, 22145224 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22145224\n\nDear SERKAN YILMAZ, your shipment with 22145224 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22145224\n\nBICARGO','1','9c0b1881-fd94-413c-b7b5-63b9d4d26501',NULL),
('a3bec0b3-e5d8-4be6-9cd4-4631142e1991','905079358213','BERKANT YAŞA SSH  adlı müşterinizin 745712790 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('a3c3d4dd-dfc8-4d71-8ea0-e9850bf9c0bb','905421855834','NURTEN YILMAZ (SSH)  adlı müşterinizin 338842710 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('a3d00e5a-7ac9-4d8c-a2f5-8dc30828314a','33660544556','Sayın LUSYA YILDIRIM , 748330948 nolu gönderiniz 4957 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/748330948\n\nDear LUSYA YILDIRIM , your shipment with 748330948 was delivered to you with the delivery code 4957. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/748330948\n\n\nBICARGO','1','de0107fb-beb9-41b1-aa9c-f833474e8edc',NULL),
('a3e4e253-ccd8-4521-8a19-fee86fe1186b','41792382873','Sayın SILAMNIKU ALTRIN, 371396579 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371396579\n\nDear SILAMNIKU ALTRIN, your shipment with 371396579 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371396579\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('a3ebaad8-245d-4ada-9ef8-359fc10c3073','905075277637','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin VOYAGE YEMEK ODASI ürünü 17 parça halinde RİXXE  adresinizden 09.09.2025 13:57:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('a3ec47c1-7a0b-459e-bcd1-c4f851911088','905364752848','MUSA TABARU adlı müşterinizin 231348651 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL),
('a3ef2adf-0ae0-4be7-8e37-cf0a140c46b0','491765457602','745431846 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4909 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745431846\n\nYour shipment with the number 745431846 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4909. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745431846\n\nBICARGO','2','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('a3f64f5f-197a-4404-8f62-e286d66e8b05','905079358213','Sayın yetkili; EMRE AFYON  adlı müşterinize 745547550 nolu gönderinizin LOFT GENÇ ODASI  ürünü 37 parça halinde Fatura adresinizden 12.03.2025 21:26:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('a3f868e7-6a76-4b6d-9f51-5b0bfa0f015e','31625064385','412586892 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2756 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412586892\n\nYour shipment with the number 412586892 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2756. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412586892\n\nBICARGO','1','c9bfdd67-9310-4f2a-9ce9-8d28690b4937',NULL),
('a3ff45aa-a2ab-4b74-82d6-b47273603a68','905350617509','Sayın yetkili; ISMAİL REMMO adlı müşterinize 61330729 nolu gönderinizin Traverten masa ürünü 1 parça halinde Fatura adresinizden 15.05.2025 14:35:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('a4029270-1966-438e-9f03-8caba7a66f6a','9054439559150','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ BİOSALT 160*200 YATAK  ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('a40545f2-9356-44d2-b5f2-60746d4c9640','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PLATİN YATAK 180X200 2 ADET  ürünü 2 parça halinde Fatura adresinizden 30.08.2025 16:54:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('a40c9723-3c17-4689-868e-b5092a223e53','306978038133','Sayın OSMAN BOZKAN, 47822949 nolu gönderiniz 2380 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47822949\n\nDear OSMAN BOZKAN, your shipment with 47822949 was delivered to you with the delivery code 2380. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47822949\n\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('a410410e-a029-4a3b-ab90-4ceeb83e5798','4915207719720','248213954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6862 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248213954\n\nYour shipment with the number 248213954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6862. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248213954\n\nBICARGO','1','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL),
('a41b430f-756e-4493-8bb2-2d650984ed06','905075277637','AYŞE KUTLU adlı müşterinizin 745449587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9872a403-aa8b-4c5a-97f3-17ed9113c1ed',NULL),
('a41b70d7-a8c2-4f0a-9576-61a06f09619d','905517075149','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478322325 nolu gönderinizin orta sehpa ürünü 1 parça halinde BİCARGO DEPO adresinizden 13.08.2025 15:42:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('a41d4f0e-e952-4367-b071-c48459fd828a','905335511664','SÜMEYRA YARİM adlı müşterinizin 371381951 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('a41e35a7-87d4-470a-8aa9-74e2df419f52','491742627039','İletişim \n					Şöför Uğur Acar +905424435917','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('a42215d6-b2f9-41cf-9f4b-1c8c6e3caada','491774279097','Sayın AYKUT KAYA, 371660448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371660448\n\nDear AYKUT KAYA, your shipment with 371660448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371660448\n\nBICARGO','2','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('a4224fbb-3d19-481b-afe7-0a93db3ea2c9','491749753629','Sayın KADİR ÖZCAN , 428360379 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428360379\n\nDear KADİR ÖZCAN , your shipment with 428360379 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428360379\n\nBICARGO','1','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL),
('a4230ee9-7122-49bb-a403-bf7001007900','905075277637','Sayın yetkili; MERYEM BULAK  adlı müşterinize 745374253 nolu gönderinizin KING PLATİN BAZA SET 180X200 ürünü 4 parça halinde Fatura adresinizden 15.09.2025 19:43:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('a427c4de-e036-4d94-abd5-b5571707c62f','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL YEMEK ODASI ürünü 10 parça halinde Fatura adresinizden 16.05.2025 18:12:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('a4290fc3-5f64-4eda-9b11-825b646cf856','905454259202','Sayın yetkili; SERKAN ÖZBAY  adlı müşterinize 478432075 nolu gönderinizin ssh ürünü 1 parça halinde Fatura adresinizden 24.06.2025 13:45:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e929693b-b959-44d7-9fa1-907fe175f670',NULL),
('a42b08fc-2e52-4762-a25d-6a9114b828db','111111111111','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','5b941dae-75e7-4901-ad1f-19d95df3e0e8',NULL),
('a42b1e7d-b8bf-400e-8f2f-f393aff813a2','016099741733','614659832 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614659832\n\nYour shipment with the number 614659832 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614659832\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('a42d4b34-b063-4456-aa0e-eb5259afe502','31636115974','Sayın Songül şahin, 412157634 nolu gönderiniz 6459 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412157634\n\nDear Songül şahin, your shipment with 412157634 was delivered to you with the delivery code 6459. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412157634\n\n\nBICARGO','1','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL),
('a432bc7b-d943-4df7-b35a-57edd34d023b','905517075149','SEPİDEH AJORLOO adlı müşterinizin 478854135 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('a434a4c1-f785-4495-a36e-980b9849629c','4915201870026','Sayın (GÜLŞEN KARATAŞ) SSH , 644423895 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644423895\n\nDear (GÜLŞEN KARATAŞ) SSH , your shipment with 644423895 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644423895\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('a439630d-85a3-4802-9c82-b8bc46eb31b4','436609537403','982691264 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982691264\n\nYour shipment with the number 982691264 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982691264\n\nBICARGO','1','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL),
('a43c64ae-0ca1-462b-a2e2-acc2f0b14616','4917681321777','613813844 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6120 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613813844\n\nYour shipment with the number 613813844 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6120. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613813844\n\nBICARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('a44032e9-ba69-46e5-94b7-7162480445b9','905461661672','MELEK IŞIK adlı müşterinizin 644739716 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('a4411146-b1f5-4e79-8ab4-466e8f362884','905054335859','YUSUF KAYA adlı müşterinizin 501428847 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL),
('a44314c0-3c6d-435b-a387-1678ef5cd6e3','905312762034','SULTAN SEVİNÇ adlı müşterinizin 808935275 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('a44b58a5-3aff-463f-b586-69da65df5580','905079358213','ÖZKAN KAYACAN adlı müşterinizin 745170376 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0e979831-071a-44d0-92b5-b61f986da797',NULL),
('a450d0d0-733d-4019-a713-ef5621d9e8cc','905534917566','Sayın HASAN ÖZSOY, 428653750 nolu gönderiniz 8347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428653750\n\nDear HASAN ÖZSOY, your shipment with 428653750 was delivered to you with the delivery code 8347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428653750\n\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('a4524ed5-6f54-43f1-80b1-f290f0fc8cad','9054439559150','Sayın yetkili; REBİN DOĞANER adlı müşterinize 614597563 nolu gönderinizin YATAK ODASI TAKIMI (BAZALI),LİSA MASA,ŞİFONYER AYNASI 2 ADET,160*200 YATAK,KANEPE 2 ADET,ÇAMAŞIRLIK,KONSOL VE PARİS PUF ürünü 41 parça halinde Fatura adresinizden 22.10.2025 12:05:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL),
('a45378c7-8918-4e82-b2f9-fdb998beddef','905331602195','Sayın yetkili; VEYSEL POLAT adlı müşterinize 221362176 nolu gönderinizin BALAT SANDALYE ürünü 6 parça halinde ALP SANDALYE adresinizden 02.01.2025 17:16:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('a4567744-2b06-4248-a61d-1a01a644e93d','905363385813','Sayın yetkili; GÜLNAZ ATMACA adlı müşterinize 976285905 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde SALON KOLTUK adresinizden 03.03.2025 12:37:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('a459bfb8-eecd-48c2-903d-3b080f7301a0','','027734999 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2080 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027734999\n\nYour shipment with the number 027734999 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2080. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027734999\n\nBICARGO','2','51128593-b736-40db-b3d3-679310ee1e96',NULL),
('a45b57f7-9ddf-41d9-8cdf-69bb87adef81','905454259202','KAZIM YOL adlı müşterinizin 478202878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','702ebb26-b834-4081-a58c-2279f0d9af03',NULL),
('a45d056b-996d-41cb-a506-f4d08c93019a','4915750975472','Sayın HALİL GÜLER, 478418764 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478418764\n\nDear HALİL GÜLER, your shipment with 478418764 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478418764\n\nBICARGO','2','a95b6f69-d856-411d-92e3-628c20975e08',NULL),
('a45e2cb4-aca2-4496-97ac-b5de1b447375','31624464120','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('a4633922-cbd8-47f4-a572-2c8ec71eb337','4915739477075','644282587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7849 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644282587\n\nYour shipment with the number 644282587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7849. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644282587\n\nBICARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('a4677417-c0fb-4416-b4e7-c4d97ce79f6e','905336367828','Sayın yetkili; MERYEM PEREZ  adlı müşterinize 982126318 nolu gönderinizin Baza başlık  ürünü 7 parça halinde Fatura adresinizden 05.03.2025 15:30:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('a468334c-880d-4845-8174-5e5e65488ec0','905335511664','Sayın yetkili; SEDA YILMAZ adlı müşterinize 371429381 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:10:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('a46b6751-d230-4586-aee7-39a6e33f950e','905078062550','BORAN ALBAYRAK adlı müşterinizin 598668612 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('a46fe56e-aa77-4187-bd54-4dab5cc38f39','4915770347137','Sayın VAİSE İBRAHİM, 613108463 nolu gönderiniz 10061 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613108463\n\nDear VAİSE İBRAHİM, your shipment with 613108463 was delivered to you with the delivery code 10061. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613108463\n\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('a471bd17-e8a2-4671-9fa8-1cd7faa45561','905461661672','Sayın yetkili; ERDEL SİBEL adlı müşterinize 644968450 nolu gönderinizin KOLTUK ürünü 5 parça halinde OSMAN TOSUN KOLTUKÇU adresinizden 15.04.2025 15:12:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('a476c6df-48e6-4400-b17f-8103c246ab59','905350617509','Sayın yetkili; OGULCAN BAYRAM adlı müşterinize 613822987 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 17.06.2025 17:02:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4031214e-7ff4-4917-b027-c570d8c4e65f',NULL),
('a47ad0d2-9244-4093-b321-1b153c9333ed','905079358213','ALİ ÖZDEN  adlı müşterinizin 745991962 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('a47d17a7-cbe6-441f-a434-b10235f1904a','41768145302','478125476 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8794 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478125476\n\nYour shipment with the number 478125476 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8794. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478125476\n\nBICARGO','1','73b78ebb-8c97-412a-8a1b-bd037a5153db',NULL),
('a47e2afe-020b-4510-be2c-77fe25e7a5c6','1111111111111111','Sayın 2 3 LÜ, 248538815 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248538815\n\nDear 2 3 LÜ, your shipment with 248538815 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248538815\n\nBICARGO','2','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL),
('a47f344a-7c6d-4fa5-b949-8fc483707c15','33699316720','Sayın AYDIN KEMERLİ , 982837523 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982837523\n\nDear AYDIN KEMERLİ , your shipment with 982837523 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982837523\n\nBICARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('a48473e8-d6a2-4d2b-8ae2-2bf26b6af4e3','4917662469694','Sayın YEŞİM AKGÜN , 011716616 nolu gönderiniz 1591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011716616\n\nDear YEŞİM AKGÜN , your shipment with 011716616 was delivered to you with the delivery code 1591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011716616\n\n\nBICARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('a487f207-4b6b-479b-84f8-2919c6b1171b','33666926469','Sayın ALİYE DALKAYA, 221763889 nolu gönderiniz 9247 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221763889\n\nDear ALİYE DALKAYA, your shipment with 221763889 was delivered to you with the delivery code 9247. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221763889\n\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('a4889eed-e088-4783-b688-d2e8c75b283c','4369910088111','Sayın FATMA SILA KAÇAK, 644194590 nolu gönderiniz 8240 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644194590\n\nDear FATMA SILA KAÇAK, your shipment with 644194590 was delivered to you with the delivery code 8240. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644194590\n\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('a48e070a-0676-4b5f-99ef-28a9d3b7f39d','017656921957','44920682 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5093 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44920682\n\nYour shipment with the number 44920682 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5093. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44920682\n\nBICARGO','2','b5e77378-5244-46e2-a563-c188060aab93',NULL),
('a493c2c9-cb45-49fb-8ac3-c91ee7a5dd16','491779689978','Sayın HÜSEYİN SAYLAN, 412678735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412678735\n\nDear HÜSEYİN SAYLAN, your shipment with 412678735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412678735\n\nBICARGO','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('a49e9260-93c3-4c0f-a953-01ecb6eabe3a','905304259202','AYŞE BAĞCI adlı müşterinizin 478365640 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','03edbb2f-aa6f-42fb-8da2-233d6ea1d184',NULL),
('a4a0a785-2fce-4017-8a58-70c6c5de9d21','4917656985678','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('a4a0d24e-9e25-4cb3-b54a-d8449d611bfe','905335511664','Sayın yetkili; ADEM BÜYÜK adlı müşterinize 371913094 nolu gönderinizin KERAMİK MASA +SEHPA ürünü 4 parça halinde Seramik Masa Üreticisi adresinizden 07.07.2025 16:39:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('a4a19b68-8fe7-44f9-b81c-e9110154e711','905079358213','Sayın yetkili; MERVE DAYI adlı müşterinize 745869069 nolu gönderinizin BONNY YAN SEHPA  ürünü 2 parça halinde BRAWWA MOBİLYA BÖLÜMÜ adresinizden 08.07.2025 17:11:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('a4a8e574-911e-4ab4-b14e-0b43795ba9d0','33749894912','Sayın RUKİYE EKERBİÇER , 910903191 nolu gönderiniz 3511 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910903191\n\nDear RUKİYE EKERBİÇER , your shipment with 910903191 was delivered to you with the delivery code 3511. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910903191\n\n\nBICARGO','1','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL),
('a4aa9b17-11cf-4029-8a98-2b0e065d3552','33754109043','Sayın BÜNYAMİN ILIKSOY, 478668622 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478668622\n\nDear BÜNYAMİN ILIKSOY, your shipment with 478668622 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478668622\n\nBICARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('a4b3850b-73db-413e-a99e-97af3fbfde5f','905304259202','ÖMER KARAN adlı müşterinizin 478165569 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('a4b5c012-94e1-4731-a0fa-857a37cace59','905323332620','ROSA DİDİEVA adlı müşterinizin 52817450 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','2094040d-2cfd-4028-9115-e50a2e855156',NULL),
('a4b90fac-cc16-4c93-ae68-80c55a2c9e96','905335511664','Sayın yetkili; TUĞBA COŞKUN adlı müşterinize 371672954 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 24.04.2025 16:53:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('a4bb0af7-207f-463f-938b-215de15add1b','905363510826','İSA KAPLAN  adlı müşterinizin 962908456 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL),
('a4be219e-0985-4286-9526-020ecd3f4edc','4917622142785','221432350 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4342 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221432350\n\nYour shipment with the number 221432350 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4342. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221432350\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('a4bf93ad-252f-422e-ac46-5dc0b1a68626','4917661287885','Sayın MEHMET ORMANOĞLU, 614636969 nolu gönderiniz 6042 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614636969\n\nDear MEHMET ORMANOĞLU, your shipment with 614636969 was delivered to you with the delivery code 6042. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614636969\n\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('a4c10fd4-9463-4ba9-bb89-ca26b21b9dd8','905325000478','EDİ adlı müşterinizin 412384414 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL),
('a4c127ac-cae6-436d-8cc7-579fde36481b','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ZARARSIZLAR DEMET ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('a4c1f3a0-c797-45ae-b6ef-98387e283ad5','4917684439417','248538815 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248538815\n\nYour shipment with the number 248538815 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248538815\n\nBICARGO','2','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL),
('a4c338d1-dcd1-43f2-a8da-c2c40a303993','491744713856','Sayın BERKAN AKTÜRK, 371823380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371823380\n\nDear BERKAN AKTÜRK, your shipment with 371823380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371823380\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('a4c8094a-753b-4ff6-8165-c929b5dd6657','905336367828','Sayın yetkili; OMARİ EMAL  adlı müşterinize 982726615 nolu gönderinizin Yatak odası  ürünü 25 parça halinde Fatura adresinizden 10.03.2025 12:22:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('a4c89c17-b342-4554-8545-a9bcc1f81e59','905352711900','Sayın yetkili; AHMET AKAT adlı müşterinize 817619747 nolu gönderinizin 1 ADET MASA  ürünü 2 parça halinde MOBİLYAMEVİME DEPO  adresinizden 17.09.2025 10:28:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('a4c8b3f0-b3b1-4d8c-b02d-dcbd188912cf','337713211538','478150977 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3534 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478150977\n\nYour shipment with the number 478150977 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3534. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478150977\n\nBICARGO','2','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('a4cd866f-8566-4b04-b48d-e44bf7a52a11','905075277637','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin PLATİN YATAK 180X200 ürünü 2 parça halinde Fatura adresinizden 23.06.2025 13:31:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('a4d75870-8eee-4a15-ae22-26d8c591ef22','905335708965','BRÜKSEL adlı müşterinizin 248592138 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL),
('a4dcb4f3-35cf-4ec4-bf94-9579565139e3','905355891131','MOHAMED AHDAGO adlı müşterinizin 902332542 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL),
('a4dfa8ef-7cfa-407b-85ac-23ae52c6cc56','905363385813','MUHAMMER KORKMAZ adlı müşterinizin 976187023 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d74a364e-c899-455c-8b3f-5a445fba432a',NULL),
('a4e12e94-36ae-476a-a9b1-4a716ef76ed5','491797358234','920821712 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3636 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/920821712\n\nYour shipment with the number 920821712 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3636. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/920821712\n\nBICARGO','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('a4e20825-1475-433d-a7ee-2db5bc154850','905443955915','Sayın yetkili; ŞÜKRAN ALP  adlı müşterinize 614927187 nolu gönderinizin TREND DOLAP SAĞ KAPAĞI ürünü 1 parça halinde GARDOREBE adresinizden 20.12.2024 20:20:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c8fa1083-9353-41f0-b64e-ae362fb9dad3',NULL),
('a4e3aaaf-84eb-41a4-a8be-d2c4e44a4b8a','905313340045','HAZAL BATUR adlı müşterinizin 437712381 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('a4e4590e-2589-466c-add3-3e949ef36698','4915781801163','Sayın MEHMET ANDIÇ, 745759881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745759881\n\nDear MEHMET ANDIÇ, your shipment with 745759881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745759881\n\nBICARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('a4ea60d0-f4a8-41e6-a009-3fb75b9229d0','905078062550','Sayın yetkili; ROJDA BİNGÖL adlı müşterinize 598665171 nolu gönderinizin 6 sandalye ürünü 3 parça halinde LİN SANDALYE adresinizden 29.07.2025 12:40:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('a4eed125-7787-4eb8-837c-2a98fe93ca01','905335511664','Sayın yetkili; NEŞE ERĞAT adlı müşterinize 371363007 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 10.04.2025 12:17:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('a4f1b940-37b0-423d-ba1a-f8081f5c22b3','4917679700868','Sayın KAYA BEY, 858854212 nolu gönderiniz 10989 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858854212\n\nDear KAYA BEY, your shipment with 858854212 was delivered to you with the delivery code 10989. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858854212\n\n\nBICARGO','1','b67594be-f958-4225-900b-19c5f6be08ce',NULL),
('a4f7f29a-7ef5-4a19-b91f-63c358741776','4917680898294','Sayın ESRA KAYA, 437514624 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437514624\n\nDear ESRA KAYA, your shipment with 437514624 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437514624\n\nBICARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('a50156ad-67d6-4c3f-94f4-dc3d2805ad7c','905389543828','AYNUR KANDEMIR adlı müşterinizin 486184665 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('a503e38e-8807-4b48-8ac8-676aeb53e62c','4917646295086','Sayın PINAR SALMA SSH , 745332643 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745332643\n\nDear PINAR SALMA SSH , your shipment with 745332643 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745332643\n\nBICARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('a5043809-5fce-446b-b1dc-16d5a581fc78','905059175469','NADİR KURUKOL  adlı müşterinizin 428414858 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('a505c72c-12c1-4674-ae5a-9165dd84f3e9','4915168460456','428671806 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428671806\n\nYour shipment with the number 428671806 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428671806\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('a5071aff-8d84-4a40-9e36-1e8265f51d36','905313340045','SENA ONMAZ  adlı müşterinizin 43714618 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('a508b9b1-9d15-4a38-83a8-faf9e875860e','905331602195','Sayın yetkili; MUSA BEKİM adlı müşterinize 221624652 nolu gönderinizin Natura sandalye natural renk ürünü 6 parça halinde ALP SANDALYE adresinizden 03.03.2025 12:51:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('a509e83f-b5d2-4e86-bd13-8017e440f780','905454259202','Sayın yetkili; ZEYNEP ALEYNA ÖZBEY adlı müşterinize 478192530 nolu gönderinizin KÖŞE KOLTUK KASALARI  ürünü 1 parça halinde çelikbey inegöl depo adresinizden 07.11.2024 16:27:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('a50bc46b-56dd-400a-9993-f7749f9f488e','491747823424','598587609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598587609\n\nYour shipment with the number 598587609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598587609\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('a50d736d-7a07-478a-90ad-e05e3e457efe','905454259202','SAVAŞ AKTAŞ adlı müşterinizin 478815317 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL),
('a512330d-8dcf-4d0e-a1a1-adf8641010c4','32470174105','428659303 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428659303\n\nYour shipment with the number 428659303 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428659303\n\nBICARGO','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('a512d8d5-9315-4b2a-9666-cfcc846e696c','4369919588138','İletişim \n					Halil Bey (Şoför) :+905541100849','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('a516edf3-2a54-4473-9df9-1c0d8229778c','491737165730','Sayın MEHMET AKHAN, 371998665 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371998665\n\nDear MEHMET AKHAN, your shipment with 371998665 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371998665\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('a518a5a4-0d5c-4bd1-95ad-988aecfc1a5a','905335708965','AMMAR ALANİ  adlı müşterinizin 248421874 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL),
('a51be0d8-3779-466a-86e3-c237db1d2e96','905078062550','MAHMUD BİRÜKOF adlı müşterinizin 598754271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('a51c595a-9568-494b-a64e-ef0edcaf7f03','905325000478','LORİSWOOD adlı müşterinizin 412139015 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ccac009-f5a5-418b-b56b-3918c0e2dd0e',NULL),
('a51e22ed-0dab-4bdc-a4c3-aa468e882d76','4917680173048','Sayın ÖMER ÇALIK, 745127322 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745127322\n\nDear ÖMER ÇALIK, your shipment with 745127322 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745127322\n\nBICARGO','1','9a626800-f140-4dfa-a7a3-96ec6cf606bd',NULL),
('a51e25bf-f964-4cdc-88ea-494a4ad42b88','905350617509','MURAT KİRİKKAYA adlı müşterinizin 613529206 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('a51ea610-b619-458e-84f8-51f59e2e68e3','905301592882','Sayın yetkili; SAMED DERE adlı müşterinize 910717262 nolu gönderinizin MALDİV YATAK ODASI ürünü 1 parça halinde Fatura adresinizden 03.03.2025 13:09:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('a524ac72-bbdd-4318-8ce3-4effe6bb47aa','905078062550','MENEKŞE SEVEN adlı müşterinizin 598508016 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('a5262dff-f88b-4393-a9c4-c3110213f45d','491634613400','428178028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428178028\n\nYour shipment with the number 428178028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428178028\n\nBICARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('a528670b-9ad2-424d-ab57-83cc472ee1c3','31634277467','663458477 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7438 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663458477\n\nYour shipment with the number 663458477 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7438. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/663458477\n\nBICARGO','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('a5289870-860a-4cc2-8c2b-0fd0cdfafa14','905078062550','Sayın yetkili; FERHAD MORİD adlı müşterinize 598188038 nolu gönderinizin 8 sandalye ürünü 4 parça halinde LİN SANDALYE adresinizden 29.07.2025 12:40:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('a5293804-308f-47b7-8f8f-7840e02683d7','905428209234','Sayın yetkili; ÖMER FARUK ÇANAK adlı müşterinize 31934282 nolu gönderinizin MADRİD ÜÇLÜ ürünü 2 parça halinde natty adresinizden 31.07.2025 16:08:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('a52ad8de-219d-469f-ad31-8b1695dbf5ae','905451571652','Sayın yetkili; PERİHAN ÖZVURAL adlı müşterinize 531344250 nolu gönderinizin Sandalye ürünü 3 parça halinde M four sandalye adresinizden 13.08.2025 17:12:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('a52bb7cf-3c7a-4d4d-bc28-b0cb3c2f27a1','4917655430941','351888584 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5536 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351888584\n\nYour shipment with the number 351888584 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5536. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/351888584\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('a52c5ba8-89fe-46d9-a9f2-fea6e0ed6382','4915773537388','Sayın BERİVAN TİNTAŞ, 478994871 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478994871\n\nDear BERİVAN TİNTAŞ, your shipment with 478994871 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478994871\n\nBICARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('a533f6af-6dff-4b6d-bcd8-e78e6c7b34f3','905304259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin VİRAL KOLTUK TAKIMI ürünü 5 parça halinde FAMİLY KOLTUK adresinizden 17.06.2025 11:56:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('a5384118-ad56-49e0-b2d0-4752ff835af9','436606544408','675124573 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3295 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675124573\n\nYour shipment with the number 675124573 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3295. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675124573\n\nBICARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('a53c8066-65dc-4f13-bbf7-11a21908abe2','491629336430','Sayın DİLBERAY MELLO, 613910788 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613910788\n\nDear DİLBERAY MELLO, your shipment with 613910788 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613910788\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('a5404e88-2d22-4c30-9d5e-4e4f8dc64120','491784558163','982292794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6723 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982292794\n\nYour shipment with the number 982292794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6723. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982292794\n\nBICARGO','1','b2f9655b-0316-4ee8-b6ba-9ad1280e80a3',NULL),
('a5433c6a-8fcb-40a9-8799-8b237581c3fe','3748376263636373','İletişim \n					Şöför Uğur Acar +905424435917','2','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('a5452f99-718d-4426-a241-8c5d5a17773d','4917672242540','Sayın ŞİRİN ASLAN, 371193272 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371193272\n\nDear ŞİRİN ASLAN, your shipment with 371193272 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371193272\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('a5462846-dd88-4c6b-9f8e-a162bd09d82d','4915161718333','ŞÖFÖR NUMARASI\n					+905467896981','1','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('a54691ae-da83-4a26-ab60-85c6536d27ad','33768690174','Sayın SAİDA ELAZZOUZİ , 221282484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221282484\n\nDear SAİDA ELAZZOUZİ , your shipment with 221282484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221282484\n\nBICARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('a54c4b79-45a2-40d3-942e-2bfd4614170d','905059175469','ABDULKADİR AKYURT adlı müşterinizin 428851627 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('a54d3083-c499-478e-9bd1-78867b431948','4917682417039','Sayın DANİAL ARAMESHK , 613191069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613191069\n\nDear DANİAL ARAMESHK , your shipment with 613191069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613191069\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('a557e331-262f-40e1-9bd0-ab0d24068d10','33783081098','Sayın SELEN SEMERCİ, 428326285 nolu gönderiniz 9362 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428326285\n\nDear SELEN SEMERCİ, your shipment with 428326285 was delivered to you with the delivery code 9362. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428326285\n\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('a5587988-8714-4fff-a092-7e190accbbbc','905059175469','GÜLCAN ÇELİKKANAT adlı müşterinizin 428519862 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('a559a56f-a139-4596-b9a6-d4a4ebabc827','905451571652','ZEYNEP KÜÇÜKBIYIK adlı müşterinizin 531450758 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('a55c52e5-d574-4283-99d7-0e50055f7b08','4915258150752','633870078 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2391 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/633870078\n\nYour shipment with the number 633870078 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2391. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/633870078\n\nBICARGO','1','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL),
('a55f4dc9-7652-4d94-ba0e-e7fbd4fe9069','4915222621206','Sayın SELÇUK SÖNMEZ, 803961620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803961620\n\nDear SELÇUK SÖNMEZ, your shipment with 803961620 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/803961620\n\nBICARGO','1','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL),
('a5647d4a-b59b-4891-a217-b30fea3e0221','905301592882','Sayın yetkili; ZELİHA ARAS adlı müşterinize 910280020 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 21.04.2025 10:24:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('a567e956-1da3-4578-b19f-24c0be4efe14','905539740010','SSH   UĞUR KAPLAN    adlı müşterinizin 011811088 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('a570f4af-d9c0-454c-b56b-314ffc68052d','4916221534324917','42873500 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9535 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42873500\n\nYour shipment with the number 42873500 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9535. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/42873500\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('a57666d5-80c9-4eb1-bd71-3b71a48fbcc0','31613557547','Sayın MENEKŞE SEVEN, 598508016 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598508016\n\nDear MENEKŞE SEVEN, your shipment with 598508016 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598508016\n\nBICARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('a576893c-a2a3-4402-b5d6-0ebd8684249c','33669942525','Sayın YASİN ÖKTEM , 614352 nolu gönderiniz 8856 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614352\n\nDear YASİN ÖKTEM , your shipment with 614352 was delivered to you with the delivery code 8856. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614352\n\n\nBICARGO','1','a5f7ed18-5a60-4872-a40a-85372a9873ed',NULL),
('a57a23c7-7f14-45ca-8a08-49a36dfccd0a','491747765301','371180149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10176 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371180149\n\nYour shipment with the number 371180149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10176. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371180149\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('a57af081-ab2e-4310-bb9f-e2ced5218c53','5325000478','Sayın CANBEY CANBEY, 17.12.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1080860\nŞifre : 1080860\n			\nBİCARGO','1',NULL,'1b0bff80-860a-4f39-812d-dac7c77bf49d'),
('a57d004c-d254-49fe-a58a-49d04bc81b65','33695585562','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('a57d23c3-5e97-476e-8996-64d049f1d89f','32489309952','517157021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517157021\n\nYour shipment with the number 517157021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517157021\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('a57dc7f2-fec9-425a-9178-a40eec1a3eb1','905325000478','NİZAMETTİN(BEKİR) adlı müşterinizin 412280381 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('a5822e8d-87c1-4532-9d07-e33b1dfceaf4','33786300110','Sayın İBRAHİM AKIN , 221594735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221594735\n\nDear İBRAHİM AKIN , your shipment with 221594735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221594735\n\nBICARGO','1','c77c75ce-e3d2-47ae-8608-121fa3b3621d',NULL),
('a590d624-4610-430d-9fa8-e47f29905380','905517075149','Sayın yetkili; DELİL ALGUNERHAN adlı müşterinize 478677262 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde beymi sandalye adresinizden 10.09.2025 11:29:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('a59478b8-1877-4fa9-b520-918d10defdc7','491778742178','Sayın SABİNA KAYA, 598548833 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598548833\n\nDear SABİNA KAYA, your shipment with 598548833 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598548833\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('a59569fd-5592-463a-889b-86b82df9f615','491784770228','Sayın ADEM ÖZKAN, 976779460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976779460\n\nDear ADEM ÖZKAN, your shipment with 976779460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976779460\n\nBICARGO','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('a5957b83-11e8-4758-8616-8fc2f5533976','491632506225','Sayın ÖZGE ÖZTÜRK, 817121694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817121694\n\nDear ÖZGE ÖZTÜRK, your shipment with 817121694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817121694\n\nBICARGO','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('a59635fc-a3a6-4b68-a2c6-651029e725d6','4379259769999','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('a59c790a-1d10-438f-ad9b-48b57502315c','905335511664','Sayın yetkili; SÜMEYRA YARİM adlı müşterinize 371381951 nolu gönderinizin yemek masası, sehpa ürünü 4 parça halinde SM Tasarım adresinizden 08.05.2025 14:49:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('a59d6cc3-1700-4491-b2e1-3c28a3b59233','905331602195','Sayın yetkili; L.DOUİRİ adlı müşterinize 221997933 nolu gönderinizin 70x120 siyah meşe orta sehpa ürünü 2 parça halinde Fatura adresinizden 20.05.2025 17:32:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('a59eed7d-ddf4-4ada-b970-ffa57e68e37b','491723174389','Sayın SEVİM KARATEKE , 613528305 nolu gönderiniz 8870 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613528305\n\nDear SEVİM KARATEKE , your shipment with 613528305 was delivered to you with the delivery code 8870. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613528305\n\n\nBICARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('a5a706e3-c3b4-4317-a0b4-e1abf9d29187','33789462575','Sayın SIDI MARİ MUHAMMED , 221859569 nolu gönderiniz 8102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221859569\n\nDear SIDI MARİ MUHAMMED , your shipment with 221859569 was delivered to you with the delivery code 8102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221859569\n\n\nBICARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('a5a93220-c8f8-438b-b9a3-be45689fbd68','905054335859','Sayın yetkili; BİROL KURNAZ adlı müşterinize 501452801 nolu gönderinizin MALDİV KOLTUK TAKIMI 3+2+1 ürünü 3 parça halinde DGN adresinizden 29.01.2025 15:59:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('a5aa3e0b-7b99-4814-b00d-6ab8aa556277','905461661672','ÖMER YILMAZ adlı müşterinizin 644763473 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('a5aba587-3e46-4784-8764-b2047bf87d59','905313340045','MERYEM BİRCAN ANİK adlı müşterinizin 437791709 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('a5ae3faa-d5a7-4815-84a7-32dd1ffabb8f','4915251454520','Sayın ENES İSMET UGUZ, 598986653 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598986653\n\nDear ENES İSMET UGUZ, your shipment with 598986653 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598986653\n\nBICARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('a5b116e2-181d-40d3-8a46-b93c192a56dc','31641191889','Sayın DİANA HUSSEİN, 437917777 nolu gönderiniz 8783 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437917777\n\nDear DİANA HUSSEİN, your shipment with 437917777 was delivered to you with the delivery code 8783. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437917777\n\n\nBICARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('a5b50687-503d-4fae-8533-6df6c48b65e3','905331602195','Sayın yetkili; BETÜL ULUÇAY adlı müşterinize 221893262 nolu gönderinizin 70x120 cm orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:15:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d2bc8274-0ee3-4160-8a5b-76f5cbf280b9',NULL),
('a5b6530b-4436-4620-a39e-61d3980b1187','31642750576','22142813 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8038 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22142813\n\nYour shipment with the number 22142813 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8038. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/22142813\n\nBICARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('a5b66bd2-b069-4320-a9a8-bb310f6b4b22','905054335859','İBRAHİM AKARSU  adlı müşterinizin 501307359 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','b7214302-d982-4460-ad8c-ebf440918b82',NULL),
('a5be28f7-0673-4d8f-805d-c4572b7cb35d','491639749830','Sayın ŞÜKRÜ YÜCE, 655688103 nolu gönderiniz 2912 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655688103\n\nDear ŞÜKRÜ YÜCE, your shipment with 655688103 was delivered to you with the delivery code 2912. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655688103\n\n\nBICARGO','1','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL),
('a5be51df-a8ae-464f-82b0-d439679ec728','33623704351','412359172 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1982 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412359172\n\nYour shipment with the number 412359172 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1982. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412359172\n\nBICARGO','1','032b3134-3092-40b9-b2b2-be3390b4726e',NULL),
('a5beb9ea-cdc6-4ec5-9e70-186df92b43e7','436603605379','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('a5c210af-4f23-454d-a1fe-28147554367b','4915566222005','Sayın MALİHA CETİN, 531309772 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531309772\n\nDear MALİHA CETİN, your shipment with 531309772 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531309772\n\nBICARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('a5c868f9-4972-48ae-919c-24ce0072f590','905335511664','Sayın yetkili; BÜŞRA POYRAZ adlı müşterinize 371508043 nolu gönderinizin SANDALYE ürünü 3 parça halinde Sandalyeci Bekir adresinizden 30.09.2025 10:42:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('a5ccfe94-ad7f-4985-b6cf-7954d2894ee4','4917670490126','Sayın TUĞÇE SUER , 765484490 nolu gönderiniz 6953 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765484490\n\nDear TUĞÇE SUER , your shipment with 765484490 was delivered to you with the delivery code 6953. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765484490\n\n\nBICARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('a5d0c6c4-0309-467e-a14e-44ac9844cd07','4915906114014','ŞÖFÖR NUMARASI\n					+905467896981','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('a5d2ee74-47db-40c2-bace-f9cde66fd472','905331602195','MİYASE SARIKAYA adlı müşterinizin 221966080 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('a5d85ed9-fe75-41ab-9dd8-565931ee60c9','41765060550','231250162 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/231250162\n\nYour shipment with the number 231250162 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/231250162\n\nBICARGO','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('a5da4e12-ab37-4761-9d4d-b215358a4d0e','905313340045','DİLAN ÜNVER adlı müşterinizin 437584936 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('a5dc69ac-737c-4a9b-b4f9-c628d31e11fc','905454259202','GÖKHAN EYCAN  adlı müşterinizin 478751440 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('a5e6b31f-bc5c-49ac-8466-6fe8ef3611ac','4917624766377','50133574 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2722 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/50133574\n\nYour shipment with the number 50133574 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2722. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/50133574\n\nBICARGO','1','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL),
('a5e74e52-042a-4eb5-9940-677e63688bff','4917681123517','İletişim \n					Şöför Uğur Acar +905424435917','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('a5e9c359-1412-46fb-844d-f4dfb60d1bce','4917666337155','505129515 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505129515\n\nYour shipment with the number 505129515 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505129515\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('a5ee0cdb-8143-4637-8d76-bc451b370494','905325000478','MOWO adlı müşterinizin 412846685 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('a5ee98fe-3e35-47df-b8b2-2a8ab2091ef8','491738956929','Sayın MERT ALİ YÖNTEM, 203151723 nolu gönderiniz 9938 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/203151723\n\nDear MERT ALİ YÖNTEM, your shipment with 203151723 was delivered to you with the delivery code 9938. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/203151723\n\n\nBICARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('a5efdd4b-86a3-4ced-849a-bee9138f0718','4915901350790','412383870 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4635 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412383870\n\nYour shipment with the number 412383870 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4635. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412383870\n\nBICARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('a5f6a6d7-7a27-4de6-9461-52c9408a1d52','4915560564579','Sayın VENERA RUSTEMİ, 817838997 nolu gönderiniz 8713 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817838997\n\nDear VENERA RUSTEMİ, your shipment with 817838997 was delivered to you with the delivery code 8713. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817838997\n\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('a5f84112-745f-4525-84a2-6a57eef2529b','4915231405303','478402358 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8803 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478402358\n\nYour shipment with the number 478402358 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8803. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478402358\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('a5f9f923-b254-4440-9bae-1d86c16b6a49','4915172036890','910120533 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3973 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910120533\n\nYour shipment with the number 910120533 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3973. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910120533\n\nBICARGO','1','966391c6-e0ee-427b-b16f-5f8b2d1477ad',NULL),
('a5fe1cb0-cbe1-4387-8f08-fd8dbfd002b2','4915226123899','Sayın HAMİYET KARASOY, 371876767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371876767\n\nDear HAMİYET KARASOY, your shipment with 371876767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371876767\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('a5fe36c6-3e14-43a8-81c1-ac4033c46e7d','352691333084','982426968 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9186 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982426968\n\nYour shipment with the number 982426968 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9186. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982426968\n\nBICARGO','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('a605937b-1b59-438a-86a0-1fb38c5cdcb8','905461661672','Sayın yetkili; BARAN YILDIZ adlı müşterinize 644832811 nolu gönderinizin SANDALYE ürünü 4 parça halinde ELAKSA SANDALYE adresinizden 21.08.2025 15:21:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('a606d9b9-e67f-4a68-badb-2c060e280c15','905301592882','YAKUP KOÇOĞLU adlı müşterinizin 910778068 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('a60c7500-9e16-4c5e-8927-51acadfa3af1','905451571652','Sayın yetkili; MEİSSA AL KHALED adlı müşterinize 531480968 nolu gönderinizin SEHPA ürünü 2 parça halinde MASAMİ adresinizden 04.09.2025 17:44:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('a60ddbc1-85ae-4abe-acc5-eb7d88b15152','491726549948','Sayın ABDULKADİR AKYURT, 428851627 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428851627\n\nDear ABDULKADİR AKYURT, your shipment with 428851627 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428851627\n\nBICARGO','2','9483dfd2-0e4b-4399-803e-1374da25fce7',NULL),
('a6166972-437f-47d8-8d6e-b6ab892362a7','4917680868263','976494428 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9406 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976494428\n\nYour shipment with the number 976494428 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9406. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976494428\n\nBICARGO','1','887d1301-8182-4254-93e6-73d1ecf6af40',NULL),
('a617fa92-0e8c-4c33-8145-b2ca6ed2446c','905331602195','Sayın yetkili; OGÜN KARAER adlı müşterinize 221607575 nolu gönderinizin Cuats sandalye koyu ceviz  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:25:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','75e0c108-e981-4c3f-9706-342da216ff28',NULL),
('a618db99-20bc-4a18-852c-92f5104814a1','905304259202','NAHİDE BAHÇEÇİOĞLU adlı müşterinizin 478127271 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('a6197e10-e15f-4836-bcf2-b5b77160ea95','4915151400304','371884796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7847 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371884796\n\nYour shipment with the number 371884796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7847. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371884796\n\nBICARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('a61a977e-415b-4589-a6da-0fa1dba5b06b','06649942512','Sayın ERDAL AKDAĞ(K), 644985861 nolu gönderiniz 7791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644985861\n\nDear ERDAL AKDAĞ(K), your shipment with 644985861 was delivered to you with the delivery code 7791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644985861\n\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('a61f4b90-b7d1-414e-90b3-9f3d5164a0a4','905461661672','Sayın yetkili; MİHRİBAN ÖZEN adlı müşterinize 644776565 nolu gönderinizin 2 ADET ORTA SEHPA ürünü 4 parça halinde Fatura adresinizden 23.05.2025 19:50:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('a61f9213-c3a9-40ee-abff-b548469a3957','41792382873','Sayın SILAMNIKU ALTRIN, 371396579 nolu gönderiniz 9450 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371396579\n\nDear SILAMNIKU ALTRIN, your shipment with 371396579 was delivered to you with the delivery code 9450. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371396579\n\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('a623b853-6142-479e-85c0-4b7563e292f9','905461661672','Sayın yetkili; GAMZE KOCAMAZ adlı müşterinize 644682734 nolu gönderinizin Sandalye ürünü 4 parça halinde ÇINAR SANDALYE adresinizden 03.07.2025 14:18:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('a62860a2-d8df-4e59-b298-76a00c812f4d','905517075149','SELDA ÇELİK adlı müşterinizin 478777541 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('a62be47a-9093-4fef-8c2b-0252d828aca0','905364155243','GHASAN ALBUKAİ adlı müşterinizin 289392695 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','86130e7b-5d28-4a62-afa7-9f16bc13cc42',NULL),
('a62c208f-4c16-4d12-9de4-b747ee1b3e54','4917683383437','428182749 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428182749\n\nYour shipment with the number 428182749 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428182749\n\nBICARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('a62d470a-6a18-4980-a5cd-fe66e38a6adb','905515519191','HASAN BEY adlı müşterinizin 448774640 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL),
('a62dcb18-6532-49ec-a334-04d84a2e8ba5','905066751402','Sayın yetkili; OSMAN GÖKBEKİŞ adlı müşterinize 524289921 nolu gönderinizin seramik masa ürünü 1 parça halinde Seramik Masa (keyfex) adresinizden 26.06.2025 17:43:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('a635d206-78cd-48eb-ae90-9d3d8ff7626f','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Köşe ürünü 3 parça halinde Fatura adresinizden 11.09.2025 16:18:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('a63ba657-2144-46df-b452-976532f4f8fd','90541208006','Sayın Ercan Sade, 08.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2614589\nŞifre : 2614589\n			\nBİCARGO','2',NULL,'eddcbe2b-f6c1-4a5e-890b-0bd30597aea2'),
('a63d75f6-82fc-4682-ab65-a38740003e29','436763366858','745464679 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3784 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745464679\n\nYour shipment with the number 745464679 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3784. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745464679\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('a643497d-791b-405c-8781-2946f9c23085','410791284387','613378961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4827 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613378961\n\nYour shipment with the number 613378961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4827. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613378961\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('a64adfca-0271-4696-8d93-a8fe548c8060','4915753541736','Sayın OĞUZ ÖZÇELİK, 449203445 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449203445\n\nDear OĞUZ ÖZÇELİK, your shipment with 449203445 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449203445\n\nBICARGO','1','110f0eb8-2914-4e85-b599-dc743891806b',NULL),
('a64d4a45-cb93-4671-9eef-8311353c04cd','4917647606470','Sayın UMUT YÖRÜK, 644243216 nolu gönderiniz 8083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644243216\n\nDear UMUT YÖRÜK, your shipment with 644243216 was delivered to you with the delivery code 8083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644243216\n\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('a652edd4-b59b-42d3-ac9d-e0e61dc84c8c','905335708965','ÖZGÜL KONAKÇI adlı müşterinizin 735326602 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL),
('a65756dc-a744-46bc-96c2-03be0abdc8b0','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('a65ad1d8-a563-4962-ace6-7433567bd9bf','33679890673','Sayın ABDİL ACAR, 614788293 nolu gönderiniz 5256 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614788293\n\nDear ABDİL ACAR, your shipment with 614788293 was delivered to you with the delivery code 5256. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614788293\n\n\nBICARGO','1','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL),
('a6600dac-1494-4fb0-8241-81299a54d8c3','905331602195','Sayın yetkili; LEPETİT CRİSTELLE adlı müşterinize 221251932 nolu gönderinizin Balat sandalye ssh ürünü 6 parça halinde Fatura adresinizden 23.07.2025 11:33:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('a6627b45-bde1-4a18-bfb0-4537944bd4d8','4917684482169','Sayın SÜLEYMAN ATAR, 644653229 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644653229\n\nDear SÜLEYMAN ATAR, your shipment with 644653229 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644653229\n\nBICARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('a6662cde-87b4-4ebf-9777-ad4f0ce6a4a3','4915774445552','Sayın TOLGA KESEN , 910796066 nolu gönderiniz 2434 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910796066\n\nDear TOLGA KESEN , your shipment with 910796066 was delivered to you with the delivery code 2434. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910796066\n\n\nBICARGO','1','a94cadae-57e8-4a39-9f91-6ecbab98c555',NULL),
('a6680a4d-e115-4a16-8c7a-88de76c9c692','491624269090','Sayın MUSTAFA NARİN, 319911664 nolu gönderiniz 10973 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319911664\n\nDear MUSTAFA NARİN, your shipment with 319911664 was delivered to you with the delivery code 10973. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319911664\n\n\nBICARGO','1','1ea05f4a-9cd8-431a-834f-290a784ba20f',NULL),
('a66eada1-d6eb-49d4-bdbf-3bc114f3279a','00491717942160','735931871 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7775 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735931871\n\nYour shipment with the number 735931871 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7775. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735931871\n\nBICARGO','2','afb9199b-bdc3-4b55-9817-9bf24a3421c6',NULL),
('a6750143-51ca-4dfc-9175-f88a29f3680e','905454259202','OSMAN SÖYLEMEZ adlı müşterinizin 478325717 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','da9eb398-85ed-41cb-b123-6ca8278d250d',NULL),
('a677fc3f-d180-4146-aa3a-33ec7e989bc9','32494160305','Sayın MEHMET ALİ YİĞİT, 221441605 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221441605\n\nDear MEHMET ALİ YİĞİT, your shipment with 221441605 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221441605\n\nBICARGO','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('a67b050d-ccb5-49da-98f6-41c583850a91','4917630326860','412913992 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10652 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412913992\n\nYour shipment with the number 412913992 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10652. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412913992\n\nBICARGO','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('a67d728a-1c89-4037-a14c-54338998d49d','905461661672','MURAT BALTACI(K) adlı müşterinizin 644762741 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('a6822001-2332-4f0e-a85c-567f91ea0544','4917621701947','Sayın DAVUT BİNGÖL, 598530881 nolu gönderiniz 7932 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598530881\n\nDear DAVUT BİNGÖL, your shipment with 598530881 was delivered to you with the delivery code 7932. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598530881\n\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('a6855363-75da-49a9-833a-6644ac304e3f','905079358213','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin FRİDA KÖŞE KOLTUK  ürünü 5 parça halinde RİXXE  adresinizden 15.10.2025 14:20:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('a6875288-4be8-45c3-8f8d-7f71864cf045','905350617509','Sayın yetkili; KHALED SEMMO  adlı müşterinize 613175888 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 12.08.2025 12:29:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('a688d605-e005-4a0d-8eda-74c20ce6bb87','905517075149','Sayın yetkili; ENVER GÜL adlı müşterinize 478659791 nolu gönderinizin MASA 230 CM ürünü 2 parça halinde ELİTİS MASA adresinizden 31.07.2025 17:00:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('a688f3ba-ea8f-4353-8622-ac15f05379c6','905517075149','Sayın yetkili; YAŞAR YALMAN SSH adlı müşterinize 478168587 nolu gönderinizin orta sehpa altı-üst ve  minifixler  ürünü 2 parça halinde family adresinizden 16.10.2025 15:03:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe463485-2cc1-4a74-bdc7-66f943713679',NULL),
('a68d3857-91ee-4830-b2de-df45f939d67b','330769082765','982118676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8963 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982118676\n\nYour shipment with the number 982118676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8963. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982118676\n\nBICARGO','1','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL),
('a68eb6f6-00fd-42b0-8891-97264e7ba138','4917621610242','644653549 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6956 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644653549\n\nYour shipment with the number 644653549 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6956. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644653549\n\nBICARGO','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('a690a225-574c-42cc-9285-667fb99c8ea7','905532675926','ALİ AYDIN adlı müşterinizin 428391947 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('a69a4ef8-2937-4eb7-aa68-ab284151116a','436769208586','Sayın MİKAİL ÖZBEK, 675749315 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675749315\n\nDear MİKAİL ÖZBEK, your shipment with 675749315 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675749315\n\nBICARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('a69d0036-208d-487c-b3bd-e61331fb7ce5','436765917420','Sayın MUHAMMED ARACI, 221247114 nolu gönderiniz 2012 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221247114\n\nDear MUHAMMED ARACI, your shipment with 221247114 was delivered to you with the delivery code 2012. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221247114\n\n\nBICARGO','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('a6a45cea-8722-441d-8eaa-b99237cfee2e','436609821810','Sayın ABDULLAH DEMİR , 745906720 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906720\n\nDear ABDULLAH DEMİR , your shipment with 745906720 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745906720\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('a6a8eda3-ef8f-4062-8c51-e07dcc093b63','4917620470826','Sayın KERİM KUTLU, 478263896 nolu gönderiniz 7103 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478263896\n\nDear KERİM KUTLU, your shipment with 478263896 was delivered to you with the delivery code 7103. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478263896\n\n\nBICARGO','1','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL),
('a6a9da7d-579f-4962-aa6a-f44bd638d35b','905301592882','BİRCAN ŞAHİN adlı müşterinizin 91074356 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('a6ac85ff-deb0-4008-a085-d9548d20f91d','905075277637','Sayın yetkili; YAKUP YAVUZ adlı müşterinize 74520701 nolu gönderinizin 90X190 BAZA SET  ürünü 3 parça halinde Fatura adresinizden 23.10.2025 12:58:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL),
('a6acb6e7-04bf-4d92-93ff-bfe7576bc8ec','4369911340501','DRİVER\n					ADNAN\n+905354622027','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('a6ad416d-2c68-4487-b3cd-1805cea685ee','33632522248','Sayın ALİ ÖZVEREN, 412722649 nolu gönderiniz 9936 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412722649\n\nDear ALİ ÖZVEREN, your shipment with 412722649 was delivered to you with the delivery code 9936. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412722649\n\n\nBICARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('a6b25e7f-84d7-4e75-ac2a-1f9b9b67bc63','491724542171','Sayın CANSU BEYAZ, 644282587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644282587\n\nDear CANSU BEYAZ, your shipment with 644282587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644282587\n\nBICARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('a6ba87e6-8b3c-4eb4-baaa-bec9ebd344f4','905461661672','Sayın yetkili; REİNAS HAİDARİ SSH adlı müşterinize 644490677 nolu gönderinizin MASA ÜST TABLA(ALDINIZ) ürünü 1 parça halinde Masami Mobilya adresinizden 30.05.2025 10:43:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('a6bae86f-fa4c-4da2-b324-2cd43f004e40','31621494387','Sayın HAKİF ZİNAL SSH, 644391223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644391223\n\nDear HAKİF ZİNAL SSH, your shipment with 644391223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644391223\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('a6c32147-e71b-44d6-9d0a-56b6e9de7a13','4917631753389','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('a6c3e2e6-abe8-417d-a11c-ecd44f948c22','905335511664','Sayın yetkili; SÜMEYRA YARİM adlı müşterinize 371381951 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 23.05.2025 17:25:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('a6d7d008-6a47-4e7b-b0db-e99adc818cb9','905335708965','SUAT adlı müşterinizin 248103321 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','791e33b7-8896-46f8-95f8-717ff7671574',NULL),
('a6e3322c-93e5-4746-8319-5b7741532828','31614851530','Sayın AYSUN ELİBÜYÜK, 478273603 nolu gönderiniz 5492 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478273603\n\nDear AYSUN ELİBÜYÜK, your shipment with 478273603 was delivered to you with the delivery code 5492. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478273603\n\n\nBICARGO','2','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('a6e75c0a-8226-49c1-80c1-7fd9b27ffa89','905301592882','Sayın yetkili; KUBİLAY AKTAR adlı müşterinize 910473991 nolu gönderinizin KONFOR KOLTUK TAKIMI ürünü 5 parça halinde Fatura adresinizden 18.06.2025 17:49:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('a6e8f3ae-158c-4124-a173-d9be24b13310','31687653993','Sayın HAKİF ZİNAL SSH, 644391223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644391223\n\nDear HAKİF ZİNAL SSH, your shipment with 644391223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644391223\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('a6f041e1-5868-4392-9635-5c362d075087','905078062550','Sayın yetkili; ANAHİTA MORİD adlı müşterinize 598412225 nolu gönderinizin yastık ürünü 1 parça halinde MERTSOY KOLTUK adresinizden 18.09.2025 11:10:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('a6f9a347-66b3-41db-b4ba-fdd612f18d14','4917663208908','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('a6fe81bc-2ff7-4c62-aee5-378525f67a35','436766459770','Sayın KENAN BAYAR, 74568874 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74568874\n\nDear KENAN BAYAR, your shipment with 74568874 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74568874\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('a6ff0c21-d154-4d87-ae0a-f502ef4f85ee','4915231405303','Sayın OKAY DERİNKUYU, 478984010 nolu gönderiniz 5852 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478984010\n\nDear OKAY DERİNKUYU, your shipment with 478984010 was delivered to you with the delivery code 5852. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478984010\n\n\nBICARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('a700a54e-6f90-4ef5-acd3-15b49f5caad1','905350617509','KHALED SEMMO  adlı müşterinizin 613175888 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('a70d10e0-ea25-4f2b-993a-d3f58006390b','4917670801496','37183091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37183091\n\nYour shipment with the number 37183091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37183091\n\nBICARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('a71c67cc-83a8-4519-b5fe-81f0616d6e1e','1628102357','Sayın GÖKHAN BEKTAŞ , 910352489 nolu gönderiniz 6029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910352489\n\nDear GÖKHAN BEKTAŞ , your shipment with 910352489 was delivered to you with the delivery code 6029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910352489\n\n\nBICARGO','2','7eb8fa9b-b381-4a05-90c4-02d73cd76f15',NULL),
('a71cea78-378b-4d46-b9d6-cff176e355f1','491784770228','976779460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2720 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976779460\n\nYour shipment with the number 976779460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2720. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976779460\n\nBICARGO','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('a723f519-a81b-4da5-a401-3cdeba97e92b','33782398897','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('a72d2d19-dd2a-4b76-99c7-6966fb50ecdc','32485453027','Sayın FERİDUN BAYER, 959168443 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959168443\n\nDear FERİDUN BAYER, your shipment with 959168443 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/959168443\n\nBICARGO','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('a732da7c-9bd8-4aba-99da-403ccedc0f93','4917672357148','91028874 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8586 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/91028874\n\nYour shipment with the number 91028874 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8586. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/91028874\n\nBICARGO','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('a738b749-54e3-4f72-ae58-c8a6ffafc36c','32495328608','644760466 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6159 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644760466\n\nYour shipment with the number 644760466 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6159. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644760466\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('a74092b7-7d04-45dc-b3d0-f5acb99f3fda','905352711900','Sayın yetkili; AHMET AKAT adlı müşterinize 817619747 nolu gönderinizin 3 ADET YAN SEHPA  ürünü 3 parça halinde MOBİLYAMEVİME DEPO  adresinizden 17.09.2025 10:28:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('a7487f06-43dc-4398-923b-72124a5f7911','4915234223362','Sayın NERİMAN SARI, 598226174 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598226174\n\nDear NERİMAN SARI, your shipment with 598226174 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598226174\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('a74ca66f-440f-4f83-b5b7-6de70dc8d054','31640599400','Sayın ALİ GALİP DUMAN, 583643470 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/583643470\n\nDear ALİ GALİP DUMAN, your shipment with 583643470 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/583643470\n\nBICARGO','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('a74d2b8e-92f5-44cc-94df-8417a74e2cd3','31625064385','163401674 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8267 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/163401674\n\nYour shipment with the number 163401674 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8267. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/163401674\n\nBICARGO','1','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL),
('a74f4490-d7de-451f-a197-a2380884f276','491772186401','Sayın BİRSEN BALIM, 74521183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74521183\n\nDear BİRSEN BALIM, your shipment with 74521183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74521183\n\nBICARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('a7556082-1f66-4ebe-a984-ce22ef0d31d5','905079358213','ÖZLEM TURA adlı müşterinizin 745808637 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('a7574be1-0d6e-489d-a6e8-84e0bea4211a','33688096085','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('a7597a12-3fe2-4792-91b8-560b26289c23','11111111111','Sayın ADNAN  DURSUN, 02.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7283989\nŞifre : 7283989\n			\nBİCARGO','2',NULL,'72839aed-8961-408f-9ffa-cbc7782e1f6f'),
('a759ab1d-dc1f-44a8-af92-125fdb3c678c','32495328608','Sayın ÜMİT MORCA, 644377995 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644377995\n\nDear ÜMİT MORCA, your shipment with 644377995 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644377995\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('a75dc94c-3778-42a8-b1a8-b29a70c3a7ff','905335708965','CONSİGNEE adlı müşterinizin 2487154 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL),
('a75f5003-5303-4200-a0bd-96191494a809','905301592882','Sayın yetkili; KENAN ACER		 adlı müşterinize 910684336 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 23.06.2025 12:52:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('a75fd456-3a59-49b0-aa7f-3777843c13eb','32696805834','Sayın ANTEP SOFRASI, 85814402 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/85814402\n\nDear ANTEP SOFRASI, your shipment with 85814402 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/85814402\n\nBICARGO','2','c660ccad-df7b-45ce-a388-95120ceea510',NULL),
('a7603eb6-3877-4de0-87cd-69af46661d2c','905078062550','DUYGU YILDIZ adlı müşterinizin 598396998 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('a7610bce-3d89-47b0-9c2f-c51c304f3c56','905461661672','Sayın yetkili; ZAFER SARIDAŞ(K) adlı müşterinize 644717952 nolu gönderinizin Kanepe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 15:54:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('a7633d9c-3747-4d6c-9f23-0b296dc4c88d','905335708965','ERCAN KARADAVUT  adlı müşterinizin 248315101 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL),
('a7697d95-e23c-496f-a0f1-12aa26a9220f','491773713548','Sayın TUNCAY KOÇOĞLU, 465782662 nolu gönderiniz 9423 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465782662\n\nDear TUNCAY KOÇOĞLU, your shipment with 465782662 was delivered to you with the delivery code 9423. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465782662\n\n\nBICARGO','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('a76c6866-e775-418d-9f47-6e1b67f64a75','905318109098','ELİF HANIM  adlı müşterinizin 455685955 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','7a0dea07-6fbd-4b1e-8cd6-dc9be29902b3',NULL),
('a76c69d6-4bef-47e6-bdd4-745ef7e3723e','905335511664','HAFİZE BALİ adlı müşterinizin 371684650 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('a77520ab-6c10-4f9e-991d-e845b583827a','4917615735547','644714925 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6830 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644714925\n\nYour shipment with the number 644714925 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6830. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644714925\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('a7779fb5-c10d-46dc-b54f-faaf6169cca4','33769173074','Sayın FARIH SANAE, 486609627 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486609627\n\nDear FARIH SANAE, your shipment with 486609627 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486609627\n\nBICARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('a77ffc51-ebbe-481f-96aa-36fc14fd22e3','905331602195','BÜŞRA NUR ÇELEBİ adlı müşterinizin 221278187 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('a783f950-5ff7-46d7-bb60-9fc5a8b434ef','905079358213','HALİDE ÖZAY adlı müşterinizin 745208965 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('a7909d00-fba2-4c38-a92b-c711fc4dc48a','905325000478','COŞKUN MURAT AKTAŞ  adlı müşterinizin 41246036 nolu gönderisi 125 parça halinde yola çıkmıştır.','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('a79280b1-3738-4fb3-bbf9-76a93e1cfc66','905431026110','Sayın yetkili; AZAT ALKAN adlı müşterinize 35119636 nolu gönderinizin PERDE ürünü 1 parça halinde Fatura adresinizden 18.08.2025 13:50:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('a79e75f3-f65b-4b2e-b61a-b8ee4541f0b2','491739366502','371287728 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10344 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371287728\n\nYour shipment with the number 371287728 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10344. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371287728\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('a7a08dc9-39b1-43a6-b406-2fdf97f82aea','4915222699200','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('a7a098f6-3f77-4a57-816e-07dbd3f6cbd4','4917673560925','Sayın ELFRİDA RAİCEVİC , 613510894 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613510894\n\nDear ELFRİDA RAİCEVİC , your shipment with 613510894 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613510894\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('a7a9a5b1-482d-4c88-8b65-3c7528751ca7','905078062550','SEVGİ BOLAT adlı müşterinizin 598250504 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('a7ab46bd-e29e-4900-866c-c2af47401f59','905350617509','Sayın yetkili; TAHA MİRA adlı müşterinize 613362955 nolu gönderinizin Sandalye ürünü 3 parça halinde Mfoursandalye adresinizden 22.07.2025 14:17:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e7b29836-18a7-4b80-a64c-61eeb5b079fe',NULL),
('a7b66e7b-cb0f-4b37-8452-d719d4302b4b','905517075149','Sayın yetkili; FATİH ÇELİK adlı müşterinize 478603328 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde nahita sofa (dayı) adresinizden 10.09.2025 12:47:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('a7b74b55-79a0-452c-8ba0-752fa0073e92','905335511664','Sayın yetkili; BEGÜM KIRCA adlı müşterinize 371801847 nolu gönderinizin keramik masa ürünü 3 parça halinde Seramik Masa Üreticisi adresinizden 03.09.2025 16:31:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('a7c39348-0a5a-4201-b909-7bb1923fcf8e','491759990232','Sayın DEBORAH BELOVED IDAGU, 505987989 nolu gönderiniz 3877 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505987989\n\nDear DEBORAH BELOVED IDAGU, your shipment with 505987989 was delivered to you with the delivery code 3877. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505987989\n\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('a7c4c0a5-5059-4a66-b829-12e200e69aaa','905517075149','Sayın yetkili; MEHMET ALİ ŞAHİN adlı müşterinize 478616973 nolu gönderinizin yatak +kumsaati zigon ürünü 2 parça halinde Fatura adresinizden 11.09.2025 15:34:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('a7c8539f-b6a8-4b6e-9c8b-f7531a1ce858','905451571652','TÜRKAN ÖZER adlı müşterinizin 531983278 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('a7cc1537-195c-45db-a03f-9e27b781e146','4917624497671','437895842 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4054 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437895842\n\nYour shipment with the number 437895842 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4054. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437895842\n\nBICARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('a7ce03fe-a363-46d5-b191-d1d92f9d6c99','491713800212','Sayın AHMAD KADİ, 598102662 nolu gönderiniz 8261 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598102662\n\nDear AHMAD KADİ, your shipment with 598102662 was delivered to you with the delivery code 8261. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598102662\n\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('a7d04c19-c27b-41df-acdc-4b7c39eff1d9','31621641052','449446169 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5271 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449446169\n\nYour shipment with the number 449446169 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5271. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449446169\n\nBICARGO','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('a7d7495c-669c-47e2-b489-9d5cd94f1c8d','31644100863','Sayın AZİME YETİM, 221752631 nolu gönderiniz 5428 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221752631\n\nDear AZİME YETİM, your shipment with 221752631 was delivered to you with the delivery code 5428. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221752631\n\n\nBICARGO','2','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('a7e18cca-e738-45ae-aaed-15d1c50c6b03','905517075149','Sayın yetkili; FAHRETTİN AKISKA adlı müşterinize 478339664 nolu gönderinizin sehpalar ve bazalar ürünü 6 parça halinde Fatura adresinizden 29.09.2025 11:59:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('a7e489d7-191a-49c4-a875-b873c7d56933','4917637605694','Sayın DEBORAH BELOVED IDAGU, 505987989 nolu gönderiniz 3877 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505987989\n\nDear DEBORAH BELOVED IDAGU, your shipment with 505987989 was delivered to you with the delivery code 3877. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505987989\n\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('a7e7ad88-0842-431a-8e4d-5def58553cfe','905363385813','RABİA GÜNER adlı müşterinizin 97684781 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('a7e9b552-579e-4d23-b9a4-2346bd0ce715','905078062550','MUSTAFA KELEŞ adlı müşterinizin 598263441 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('a7ec88a3-f95e-42d6-8261-ea02993e3443','32486908714','Sayın İSMAİL İSMAİL, 478262226 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478262226\n\nDear İSMAİL İSMAİL, your shipment with 478262226 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478262226\n\nBICARGO','1','ed28d20c-a9aa-4ff2-80cd-62e0bf3e28cd',NULL),
('a7ee4d34-3a7c-48eb-9cda-6a88e4964cad','4915772539240','Sayın ANAHİTA MORİD, 598412225 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598412225\n\nDear ANAHİTA MORİD, your shipment with 598412225 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598412225\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('a7f6c6dd-87bf-4cdc-93ab-3aecd90d49ea','49017661795288','35130528 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35130528\n\nYour shipment with the number 35130528 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/35130528\n\nBICARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('a7f8b009-c6bf-4b6e-9543-055fe531c6ca','4917661518920','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('a7f92492-bde6-4b81-900b-730a210d7843','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('a7f9c3a4-ba6a-4d4a-b00d-891b51845896','01779194671','644650618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7367 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644650618\n\nYour shipment with the number 644650618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7367. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644650618\n\nBICARGO','2','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('a801689b-2605-4606-bcf7-21f89bb001a9','33610781591','Sayın SÜLEYMAN BOZAN, 478778961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478778961\n\nDear SÜLEYMAN BOZAN, your shipment with 478778961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478778961\n\nBICARGO','1','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL),
('a805d81f-9baf-432d-a18f-9227f3883d81','4917623201470','Sayın ŞÜKRAN ALP, 614990703 nolu gönderiniz 4968 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614990703\n\nDear ŞÜKRAN ALP, your shipment with 614990703 was delivered to you with the delivery code 4968. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614990703\n\n\nBICARGO','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('a8086d63-56c0-4b67-af96-5e6085f14b71','905304259202','YASEF İCEL adlı müşterinizin 47865598 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','c95c986d-eb32-413d-a7af-cbc9b9db9e6b',NULL),
('a80b48c3-84b0-43c9-8a1f-24504bacde54','33641852217','Sayın CLEİDY MARTİNS , 982475389 nolu gönderiniz 10176 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982475389\n\nDear CLEİDY MARTİNS , your shipment with 982475389 was delivered to you with the delivery code 10176. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982475389\n\n\nBICARGO','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('a81c72e7-5131-48a1-9a63-30eb5ce8d779','32470798418','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('a81d6a26-a826-4b20-af7a-04a5c0776cc8','905331602195','Sayın yetkili; BÜŞRA NUR ÇELEBİ adlı müşterinize 221278187 nolu gönderinizin 80x60 çap Msm 25 baskılı sehpalar  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:57:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('a8263b2e-f9ee-4333-84a2-460d80d7cb77','905461661672','BEYTULLAH AKSOY adlı müşterinizin 644826911 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('a829053c-857f-492a-a0c8-5e2364e31ea6','905075277637','GÜLSÜM KOÇAK adlı müşterinizin 745632580 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fb2d850b-07cf-4a0d-b64b-54e95ff0d79f',NULL),
('a82b4ad9-bc5c-4fd8-9f5e-deecc28a8cd1','491726402592','Sayın İNCİ TOKGÖZ, 478240909 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478240909\n\nDear İNCİ TOKGÖZ, your shipment with 478240909 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478240909\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('a82d3692-5a9c-4665-aca7-49b4147580ea','4917683344866','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('a82e8ead-f9f4-49c6-ad2d-d7e1e219dfcc','4915560564579','Sayın VENERA RUSTEMİ, 817838997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817838997\n\nDear VENERA RUSTEMİ, your shipment with 817838997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817838997\n\nBICARGO','1','1e1adb91-c239-4909-b5fa-ff18ba2d8157',NULL),
('a834ff5f-6e8f-4148-9b37-756d873eb597','905510396989','LEYLA TACİMOĞLU adlı müşterinizin 319212544 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','ff9f8958-5781-4a16-9eff-ea176baadba4',NULL),
('a835c42b-6df4-4e27-98bf-12508c1d883a','905459475054','SELÇUK SÖNMEZ adlı müşterinizin 803961620 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL),
('a840c084-4631-42b8-8297-b665a870724b','436608590261','Sayın AYHAN ÇEKİ, 598758154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598758154\n\nDear AYHAN ÇEKİ, your shipment with 598758154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598758154\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('a841f022-cede-4e1a-bcb1-b7b2d33c9fd3','905301592882','NERMİN ÇETİNAVCI adlı müşterinizin 910948770 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('a8453192-9505-46ac-b861-51c66e1a2294','4917624966741','Sayın ÖZKAN KUYUCU, 976121570 nolu gönderiniz 1138 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976121570\n\nDear ÖZKAN KUYUCU, your shipment with 976121570 was delivered to you with the delivery code 1138. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976121570\n\n\nBICARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('a8478833-7fe3-4c4d-8d3d-b4cc06550fcc','4916094681021','Sayın AYŞE İPEKSOY, 745766580 nolu gönderiniz 6684 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745766580\n\nDear AYŞE İPEKSOY, your shipment with 745766580 was delivered to you with the delivery code 6684. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745766580\n\n\nBICARGO','1','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL),
('a84a6881-6d5f-46fa-854f-33c68901e275','905304267046','HASAN DOYRAN adlı müşterinizin 454880224 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL),
('a8555a65-237d-4238-9663-6091bc3c3027','905070281051','YILDIZ GÜNGÖR  adlı müşterinizin 633870078 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL),
('a859996d-f526-45ab-9cab-6ba1a3b82eb2','4917620787419','Sayın CAN ÖZKAN, 598262809 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598262809\n\nDear CAN ÖZKAN, your shipment with 598262809 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598262809\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('a86257dd-62c9-4860-8aa4-dcd4f75e0dd9','4916093919802','İletişim \n					Şöför Murat : +905321616048','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('a8637ea4-58ec-42c4-9a77-ccc90d2af113','905313340045','BİROL ELİBOL adlı müşterinizin 437609907 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('a868ac7d-985f-43dc-a13a-035d49e777be','4915205903853','Sayın ZELİHA ÖCAL, 6442594 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/6442594\n\nDear ZELİHA ÖCAL, your shipment with 6442594 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/6442594\n\nBICARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('a86cf3a7-379c-4238-8d4a-637ff96cdbb5',NULL,'Sayın yetkili;  MUSTAFA KHALİFEH adlı müşterinize 081982015 nolu gönderinizin  GOLD KOLTUK  TAKIMI ürünü 3 parça halinde Fatura adresinizden 21.02.2025 10:32:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('a86ea013-1431-45eb-831a-baea580b0fe6','905331602195','HİLAL YILMAZ  adlı müşterinizin 2213375 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','18e20c12-0084-4178-a4a0-370a754f1563',NULL),
('a8750e0c-5d21-4aa9-b3fb-964d63e0d298','905059175469','ŞÜKRÜ AKSOY adlı müşterinizin 428390036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('a881dab4-787c-43f7-9549-2ba3cddbc6cf','491742184791','745639343 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5861 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745639343\n\nYour shipment with the number 745639343 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5861. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745639343\n\nBICARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('a88267db-d57e-45cc-8a4e-8a962d47ae93','31686174189','Sayın KÖSE BEY, 750926872 nolu gönderiniz 8708 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750926872\n\nDear KÖSE BEY, your shipment with 750926872 was delivered to you with the delivery code 8708. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750926872\n\n\nBICARGO','1','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL),
('a882ac01-6dba-4537-835a-a7da218fdfd3','905355928266','BATTAL adlı müşterinizin 412565065 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','148ecec2-cd7b-4ac3-88bc-9569bf15505e',NULL),
('a884b2ec-7c91-4d37-a08f-ccc393e0db8b','905389543828','Sayın yetkili; DİLAN HANIM adlı müşterinize 486724632 nolu gönderinizin Karyola ürünü 9 parça halinde Moe Bedding  adresinizden 24.06.2025 11:12:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('a888f0aa-704a-4a70-ae12-82ed943408e1','491625752306','Sayın KEYVAN GHADİMİ, 478363734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478363734\n\nDear KEYVAN GHADİMİ, your shipment with 478363734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478363734\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('a8896a34-66df-4c18-87d1-cba3fb4c44dd','4917630144018','449215672 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10954 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449215672\n\nYour shipment with the number 449215672 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10954. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449215672\n\nBICARGO','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('a88c8dcc-fecc-4d7e-9e15-3c0949665b46','905336367828','VEDAT ÜZER  adlı müşterinizin 982342488 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('a898b0eb-6f26-488f-be41-50034a64e8c2','4915201020700','Sayın (K)SİNEM İDRİZAJ , 644880161 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644880161\n\nDear (K)SİNEM İDRİZAJ , your shipment with 644880161 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644880161\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('a89bb625-debe-43e4-b449-11652a54dfb9','436602003887','Sayın FERDİ KURT, 478996959 nolu gönderiniz 4665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478996959\n\nDear FERDİ KURT, your shipment with 478996959 was delivered to you with the delivery code 4665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478996959\n\n\nBICARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('a89cfdf9-a737-473e-8974-da4e5aeec878','905325000478','İHSAN KEPİR adlı müşterinizin 412378459 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bed8b1f7-85e7-41e8-b669-6360ddf5b5ca',NULL),
('a89cfe94-e214-4b72-b637-7ca348c46ecd','905075277637','MERYEM YILDIZ adlı müşterinizin 745957068 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL),
('a8a2ddfd-13f6-466d-8edc-cc26988ba288','33761428784','Sayın AYŞE ÖZKAYA(K), 644783664 nolu gönderiniz 10159 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644783664\n\nDear AYŞE ÖZKAYA(K), your shipment with 644783664 was delivered to you with the delivery code 10159. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644783664\n\n\nBICARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('a8a9f68e-b86f-4e56-8fb1-69fb472689a3','41797024262','Sayın GÜLŞAH KUŞ, 745219309 nolu gönderiniz 5475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745219309\n\nDear GÜLŞAH KUŞ, your shipment with 745219309 was delivered to you with the delivery code 5475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745219309\n\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('a8aba089-2313-4552-8b9a-5e3aeded00ef','4915226419992','İletişim \n					Şöför Murat : +905321616048','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('a8b27d8e-dcd1-4b81-9c78-5ed80c4069f8','905336367828','AMİN SAKİ adlı müşterinizin 982372153 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL),
('a8b65249-e562-4f24-97be-54312ddcd91e','49015901977010','Sayın NERMİN TÜREDİ, 745524390 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745524390\n\nDear NERMİN TÜREDİ, your shipment with 745524390 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745524390\n\nBICARGO','1',NULL,NULL),
('a8b7bbc7-c52c-4c74-9cd8-576aa6f06d25','905336367828','EL HARRAR OUASSİFA adlı müşterinizin 982666330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','01408d3f-0754-42dd-86fa-5c2b8803ad4e',NULL),
('a8b9d1be-242d-47ea-96a4-034d8745af22','4915901762821','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','c59eccbb-857b-4cb5-a55a-2910b58b9fb9',NULL),
('a8bac613-d239-4799-9fed-aa2590263a3c','905517075149','Sayın yetkili; SÜMEYYE DURUKAN adlı müşterinize 478153975 nolu gönderinizin KOMİDİN -ŞİFONYER -PUF ürünü 6 parça halinde acca adresinizden 22.10.2025 11:39:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73a48364-e3d4-4fab-851c-d3a1f4617a64',NULL),
('a8bbc0a1-03b7-45d2-8b99-6c64a307eba7','905335458833','BİRSEN YILMAZ adlı müşterinizin 334873891 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL),
('a8c84f9f-3bb4-4f79-9c72-805b068b9e58','1111122342423133','Sayın MAİL BOXES ETC, 223379282 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223379282\n\nDear MAİL BOXES ETC, your shipment with 223379282 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223379282\n\nBICARGO','2','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('a8cf139d-9be1-4b21-a728-b288a79d1818','905461661672','Sayın yetkili; GÜLŞAH SEVİMLİ adlı müşterinize 644721676 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 24.06.2025 14:16:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('a8d6f5cc-15fc-41f2-8f07-e757f6457b08','905331602195','ARMİN IMERİ  adlı müşterinizin 221867394 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('a8d7c112-13a4-4440-8fad-d506c2de22c8','4306603197698','Sayın ESRA SEZEN, 428122550 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428122550\n\nDear ESRA SEZEN, your shipment with 428122550 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428122550\n\nBICARGO','1','7e235f31-a31e-4f86-a52d-66155cdbd820',NULL),
('a8da575f-371f-4951-9d86-11905ee3de1a','905510396989','AFERDİTA UKSHİNAS adlı müşterinizin 31912550 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c7dadeb7-44b2-4e53-8201-7e81393192a1',NULL),
('a8db90f4-fb2b-41a2-905b-a940f542da07','01705204782','Sayın GAMZE KOCAMAZ, 644682734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644682734\n\nDear GAMZE KOCAMAZ, your shipment with 644682734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644682734\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('a8dbd591-5e6a-4f24-8f80-509c15117a88','33643419084','Sayın KAM.   TUBA YİLDİRİM, 011804405 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011804405\n\nDear KAM.   TUBA YİLDİRİM, your shipment with 011804405 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011804405\n\nBICARGO','1','26eebedd-d4ee-429f-bfe5-964620f33452',NULL),
('a8f0eed6-b426-427b-a4bc-ebeeaac29c2a','33647208983','817619747 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2916 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817619747\n\nYour shipment with the number 817619747 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2916. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817619747\n\nBICARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('a8f22d95-084e-4617-93e3-32164c367350','905079358213','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM YATAK ODASI  (KARYOLASIZ) ürünü 16 parça halinde ACCA adresinizden 27.05.2025 17:26:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('a8f699ce-ed92-4b20-b065-663ad6bd5953','4917663775902','Sayın RIDVAN BEY, 412241218 nolu gönderiniz 8472 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412241218\n\nDear RIDVAN BEY, your shipment with 412241218 was delivered to you with the delivery code 8472. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412241218\n\n\nBICARGO','1','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL),
('a8f8f2ba-5f8d-4993-9a2c-cc278601af83','491747765301','Sayın DERYA BAYRAK, 371180149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371180149\n\nDear DERYA BAYRAK, your shipment with 371180149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371180149\n\nBICARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('a8fb7887-5072-478d-b888-b5490f68e487','905336367828','ARBESA SADRİJAJ adlı müşterinizin 982533088 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL),
('a8ff2271-87cb-4a2d-948d-a3bbd0a9c79f','4917620470826','478263896 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7103 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478263896\n\nYour shipment with the number 478263896 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7103. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478263896\n\nBICARGO','1','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL),
('a8ff7352-5a7d-4f5c-921c-eecbbacaa703','491634613400','Sayın SİDAR AKDENİZ , 42877136 nolu gönderiniz 1958 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42877136\n\nDear SİDAR AKDENİZ , your shipment with 42877136 was delivered to you with the delivery code 1958. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42877136\n\n\nBICARGO','1','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL),
('a8ff860c-25b5-4ebe-a886-67e1829582e7','905079358213','MERYEM YILDIZ adlı müşterinizin 745957068 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL),
('a90245ae-b970-4640-973d-f35899e7a61d','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin sandalye papuçları ürünü 1 parça halinde kuka adresinizden 23.06.2025 14:03:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('a902690e-5405-4aac-a36f-4cef920514ee','33788688334','DRİVER\n					ADNAN\n+905354622027','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('a903ba44-9d53-4dfa-bd66-4f891c2ae3dd','4915206452765','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('a9092e85-1c7f-4187-b481-2e3beefa9c0e','905079047428','Sayın yetkili; Rahimi adlı müşterinize 449666503 nolu gönderinizin Masa 3 paket sandalye ürünü 1 parça halinde Fatura adresinizden 01.11.2024 13:37:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('a90baa3b-a767-4e4c-864d-f20b4a8480e9','4917681000439','Sayın CEMAL İBRAHİMBAŞ, 437222135 nolu gönderiniz 6666 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437222135\n\nDear CEMAL İBRAHİMBAŞ, your shipment with 437222135 was delivered to you with the delivery code 6666. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437222135\n\n\nBICARGO','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('a913e6d6-f70c-4ed4-a2e0-43b7627e1acb','905335708965','ASAAD KEBBEH adlı müşterinizin 248418017 nolu gönderisi 31 parça halinde yola çıkmıştır.','1','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL),
('a9191003-20c7-4c3b-95ed-04bd5f3670af','491747042790','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('a9206f94-ae67-4f4a-a6c0-7a749a1142a3','905313340045','MİRAÇ SAKAR adlı müşterinizin 437969799 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('a92479cd-a61c-4288-9641-296ac8fbf893','33652652450','Sayın OSMAN KILINÇ, 478205168 nolu gönderiniz 1158 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478205168\n\nDear OSMAN KILINÇ, your shipment with 478205168 was delivered to you with the delivery code 1158. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478205168\n\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('a92545dd-1d6a-40fe-a3d3-dc78620abc15','905306071261','DİLEK KHABİL adlı müşterinizin 765729280 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('a9287683-02a4-453a-b60a-6add71744c32','905306071261','KADER YILDIZ adlı müşterinizin 765600734 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('a92b43e7-276f-462f-a313-1ff2723bc593','491712347917','İletişim \n					Şöför Murat : +905321616048','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('a932d0d8-3917-48ec-b647-ad7e05019779','492352549133','Sayın ABDULLAH DEMİR, 745105520 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745105520\n\nDear ABDULLAH DEMİR, your shipment with 745105520 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745105520\n\nBICARGO','2','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL),
('a9394e77-c848-40aa-b8f8-37ffe5ea5f2a','491775901111','319515461 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8467 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319515461\n\nYour shipment with the number 319515461 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8467. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319515461\n\nBICARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('a93a1065-c916-41fc-8aa2-8e03c564d1f1','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E335 DEJAVU PORTMANTO AYAKKABILIK ürünü 1 parça halinde Fatura adresinizden 03.09.2025 14:09:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('a9406cf6-3222-457d-a84d-46027983620f','4915906432284','Sayın BİROL KURNAZ, 501452801 nolu gönderiniz 7494 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501452801\n\nDear BİROL KURNAZ, your shipment with 501452801 was delivered to you with the delivery code 7494. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501452801\n\n\nBICARGO','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('a941c039-712c-4e52-a8ef-cb4a0aa52597','4917620954584','896998229 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3422 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896998229\n\nYour shipment with the number 896998229 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3422. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896998229\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('a942db07-b851-4032-bc96-a16e29fcbef1','4915226123899','Sayın HAMİYET KARASOY, 371876767 nolu gönderiniz 3607 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371876767\n\nDear HAMİYET KARASOY, your shipment with 371876767 was delivered to you with the delivery code 3607. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371876767\n\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('a944b114-28e0-4a55-a4c1-346b3c8e65f7','31648076421','973510341 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7822 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/973510341\n\nYour shipment with the number 973510341 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7822. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/973510341\n\nBICARGO','1','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL),
('a944de81-abab-489c-9bcc-86e3d9c2e8ee','905335511664','MELİKE BAYINDIR adlı müşterinizin 371398805 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('a94a2835-4496-4f20-8374-7928853e02d5','905443955915','Sayın yetkili; YILDIRIM ASLAN adlı müşterinize 614339204 nolu gönderinizin FALCON KANEPEYE OTURDUĞUNDA SOL  SIRT KISMI 2 ADET, ürünü 1 parça halinde PAKKO KOLTUK adresinizden 23.12.2024 12:33:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('a94e515c-1778-4ad4-8aa8-f8b17dd63b0b','905325000478','EURO MOBEL adlı müşterinizin 412218985 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','835863ce-70ff-4b53-b486-a32e6936cae4',NULL),
('a94ed8a0-6a65-4a06-8d15-8ad5aa7321ec','905389543828','Sayın yetkili; ALBAN HASANİ adlı müşterinize 486741087 nolu gönderinizin Sandalye ürünü 6 parça halinde Asil Sandalye adresinizden 09.10.2025 10:58:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','308ddadc-251a-4960-a99e-9154ac7e4c88',NULL),
('a95409f2-07b1-4dbe-a815-d8b6e7e135a8','491713468875','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('a95e34d0-7ec2-4b62-b37b-98d45167f1a4','905331602195','Sayın yetkili; BİANCA AGOSTİNO adlı müşterinize 221481972 nolu gönderinizin 90x190 Traverten masa ürünü 3 parça halinde Fatura adresinizden 20.01.2025 11:58:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('a9642df3-2b4c-4b1a-b80f-33406129330e','33660895865','Sayın MİHAND SAFAE , 221257971 nolu gönderiniz 4518 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221257971\n\nDear MİHAND SAFAE , your shipment with 221257971 was delivered to you with the delivery code 4518. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221257971\n\n\nBICARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('a9649fda-0959-4194-881e-900576e6192f','1111111111111111','Sayın SAMİ CENGİZ , 248213954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248213954\n\nDear SAMİ CENGİZ , your shipment with 248213954 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248213954\n\nBICARGO','2','9d793d11-dd40-4c10-9d08-77df5b643ca6',NULL),
('a9657d6e-596d-4f61-865a-ee6b82d0614a','491624296622','644469726 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644469726\n\nYour shipment with the number 644469726 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644469726\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('a96c58c8-be65-4a36-baed-3310bcabbaae','436763366858','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('a96db2fc-4bbe-4f4a-8845-2c3cfad6d284','33614047867','Sayın ERDAL OCALAN, 976126416 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976126416\n\nDear ERDAL OCALAN, your shipment with 976126416 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976126416\n\nBICARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('a96e8039-a137-42d8-828a-850b2ea5f340','31614272440','Sayın HAKİM AZZOUZ, 657301470 nolu gönderiniz 4197 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657301470\n\nDear HAKİM AZZOUZ, your shipment with 657301470 was delivered to you with the delivery code 4197. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657301470\n\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('a96ffd62-04e9-460a-ad36-c9a2e5cf7e2e','4917672257446','Sayın ÖMER GEDİK, 644113252 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113252\n\nDear ÖMER GEDİK, your shipment with 644113252 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644113252\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('a9725d22-2eda-465e-9a15-a3da6955bb83','905394878216','SEVAY NİKOLAEVA YANKOVA adlı müşterinizin 517895646 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('a972ebca-5b13-4055-b5dc-9a3a7d4a77b2','00306988787488','Sayın FATMA HANIM, 248259363 nolu gönderiniz 7655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248259363\n\nDear FATMA HANIM, your shipment with 248259363 was delivered to you with the delivery code 7655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248259363\n\n\nBICARGO','2','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL),
('a9743879-3713-426a-ab80-a512cf10576c','4915121097412','Sayın AYŞEGÜL GÖKTEPE, 478545457 nolu gönderiniz 10507 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478545457\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478545457 was delivered to you with the delivery code 10507. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478545457\n\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('a97a4c1d-bf03-486b-b585-b1776909427b','33662539381','842151692 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9092 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/842151692\n\nYour shipment with the number 842151692 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9092. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/842151692\n\nBICARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('a97f94d0-f13c-4abe-bbbc-f31a5b6cb074','905350617509','MANJUTHA VATHANASEELAN adlı müşterinizin 613990071 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','19a75a47-9ec3-4217-9552-31d27faae3e4',NULL),
('a97fa401-9335-4bd4-b6f5-55409d04c737','905059175469','SEFA SİNER adlı müşterinizin 428651654 nolu gönderisi 52 parça halinde yola çıkmıştır.','1','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL),
('a97fed2d-822b-4f12-b75c-aa6e5660f8a0','4917630326860','ŞÖFÖR NUMARASI\n					+905467896981','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('a9893d0b-ecd0-46b0-a247-87c1df08c511','31613006004','449666503 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1802 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449666503\n\nYour shipment with the number 449666503 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1802. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449666503\n\nBICARGO','1','3b0f4dee-9f8d-4f00-8b0b-7f628ea71698',NULL),
('a9896257-02cd-4039-b919-bfa068f0a6d6','4917662047027','Sayın İSA ALTUNER(K), 644422105 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644422105\n\nDear İSA ALTUNER(K), your shipment with 644422105 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644422105\n\nBICARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('a98ba958-d8bd-4bf1-ac70-0204c5c47726','32467611773','Sayın PELŞİN YILDIZ, 478245028 nolu gönderiniz 3525 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478245028\n\nDear PELŞİN YILDIZ, your shipment with 478245028 was delivered to you with the delivery code 3525. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478245028\n\n\nBICARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('a98e2bc6-2daa-4fa6-8cff-41f96f21fd34','33675154529','Sayın MEHMET ALİ ADIGÜZEL, 4551399 nolu gönderiniz 7448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/4551399\n\nDear MEHMET ALİ ADIGÜZEL, your shipment with 4551399 was delivered to you with the delivery code 7448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/4551399\n\n\nBICARGO','1','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL),
('a99671a3-c18c-4ccd-926b-94c36991da20','905350617509','Sayın yetkili; VAİSE İBRAHİM adlı müşterinize 613108463 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Mutena koltuk adresinizden 19.08.2025 10:41:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('a999f70c-3fa0-43b6-869a-3d9d41a2d9f1','32497224149','750355737 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10248 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750355737\n\nYour shipment with the number 750355737 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10248. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750355737\n\nBICARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('a99aa3ce-9205-4490-aa12-817172d42499','905059175469','Sayın yetkili; ESRA ELİŞ adlı müşterinize 428704278 nolu gönderinizin köşe  ürünü 4 parça halinde massi milano adresinizden 23.05.2025 15:17:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('a99da357-574c-4cf9-af69-0b2802709d3c','4917684018597','Sayın SELİNAY ORHAN, 745398311 nolu gönderiniz 10154 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745398311\n\nDear SELİNAY ORHAN, your shipment with 745398311 was delivered to you with the delivery code 10154. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745398311\n\n\nBICARGO','1','c8832652-771d-469e-b661-4fd13d628789',NULL),
('a99faf00-1281-4eb4-b74f-ea9058f7eae4','4917645942929','613787861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4721 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613787861\n\nYour shipment with the number 613787861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4721. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613787861\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('a9a36a26-9327-4edc-b30f-f48533b694e4','004915254106580','Sayın PATRİCA, 735139102 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735139102\n\nDear PATRİCA, your shipment with 735139102 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735139102\n\nBICARGO','2','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL),
('a9aa0ddb-e5b4-4959-92fc-04c5d86b87de','491718076933','Sayın BAHAR SARI, 478525280 nolu gönderiniz 4682 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478525280\n\nDear BAHAR SARI, your shipment with 478525280 was delivered to you with the delivery code 4682. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478525280\n\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('a9afc41d-73c8-4f9b-bf50-01ac72eb57f2','491729086965','ŞÖFÖR NUMARASI\n					+905467896981','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('a9b26b98-2abb-4179-9de0-dd343e8ac96c','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478784133 nolu gönderinizin 1 adet halı ürünü 1 parça halinde BİCARGO DEPO adresinizden 12.08.2025 11:08:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('a9b4fc39-1ff2-4c41-8a93-6c25a8a39753','905325000478','SEVGİ ÇELEBİ adlı müşterinizin 412665767 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL),
('a9c79902-2aab-4150-b026-9ce0b316820c','905313340045','CEM BÜYÜKDEMİRCİ adlı müşterinizin 437545074 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('a9c8908f-d6c8-4838-9834-c848d98e7d17','905517075149','Sayın yetkili; OĞUZHAN TIĞ adlı müşterinize 478824521 nolu gönderinizin monna düğün paket sehpalar vs ürünü 27 parça halinde RİXXE adresinizden 05.08.2025 09:53:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('a9ce53a8-f7d0-4331-828e-1553b8826d12','905059175469','NADİR KURUKOL  adlı müşterinizin 428414858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('a9cf5993-56d6-4f65-96f8-15097125424a','491638098235','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('a9cfdd99-4d76-468f-aa83-a6c4ff0cc258','905349208933','Sayın yetkili; ALESSANDRA ALTAVİLLA adlı müşterinize 127343940 nolu gönderinizin Traverten masa  ürünü 1 parça halinde Fatura adresinizden 23.02.2025 15:13:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('a9d492b9-a747-4f2e-b94a-23e18f4e50ba','4917663383581','Sayın MEHMET GÜRKAN, 745661183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745661183\n\nDear MEHMET GÜRKAN, your shipment with 745661183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745661183\n\nBICARGO','1','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL),
('a9d5854b-a1a6-4bc0-bd93-42ab4336b62b','905331602195','Sayın yetkili; SAVYO RAFFO adlı müşterinize 22164822 nolu gönderinizin Traverten masa  ürünü 3 parça halinde Fatura adresinizden 10.02.2025 12:23:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('a9d89c80-ebe3-4c6d-856b-878add21934e','905335511664','HALİLOVİÇ ELMA adlı müşterinizin 371104317 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('a9dcfddc-da15-48ca-8e75-7a19f0b3fd13','905335511664','Sayın yetkili; AKIN COŞKUNSU adlı müşterinize 371365427 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 03.10.2025 12:30:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('a9e48bf9-258f-4878-93d8-1c8e251260f7','905363385813','SEBA QASEM adlı müşterinizin 976763926 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('a9e5be69-04e8-42fc-a1d5-20c86d5966e1','4917677017660','505948491 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5263 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505948491\n\nYour shipment with the number 505948491 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5263. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505948491\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('a9e60f94-3eca-4255-8d87-6c0bd54a685d','33784178504','Sayın GÜLCAN AYDIN, 976942444 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976942444\n\nDear GÜLCAN AYDIN, your shipment with 976942444 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976942444\n\nBICARGO','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('a9e6680b-d2fe-49fe-b405-db78248828fd','905336367828','Sayın yetkili; HAKIMI MUSTAFA adlı müşterinize 982742157 nolu gönderinizin kolyuk takımı  ürünü 1 parça halinde Comfortlife  adresinizden 20.02.2025 11:43:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('a9f2eb61-b463-404f-86c3-a04c0342e521','49151151816534','Sayın SEPİDEH AJORLOO, 478854135 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478854135\n\nDear SEPİDEH AJORLOO, your shipment with 478854135 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478854135\n\nBICARGO','2','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('a9f56cfc-e60d-47e3-89c3-b0c19f70f558','4917680868263','Sayın HASSAN BEY, 976893568 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976893568\n\nDear HASSAN BEY, your shipment with 976893568 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976893568\n\nBICARGO','1','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL),
('a9f66ed1-9076-4818-9210-1741eb6cd9ed','491727920023','Sayın YAVUZ KOÇMAN		, 910772127 nolu gönderiniz 10058 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910772127\n\nDear YAVUZ KOÇMAN		, your shipment with 910772127 was delivered to you with the delivery code 10058. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910772127\n\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('a9f8bcb5-1e59-4425-abaf-01f0a3bdc052','905517075149','Sayın yetkili; YEZNİK ADORYAN adlı müşterinize 47816855 nolu gönderinizin YATAK ODASI ürünü 23 parça halinde acca adresinizden 14.10.2025 14:56:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebece0e-bf8d-4678-bf15-17e6bed10020',NULL),
('a9fa4b18-24b1-4735-8452-0210dd1e4544','905325165070','Sayın yetkili; AKİF AĞCA adlı müşterinize 734626870 nolu gönderinizin DENİZ 3+3+1+1 ürünü 4 parça halinde Fatura adresinizden 02.12.2024 10:33:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b5fab0b8-4818-41cf-8f21-23ec7d0a27d5',NULL),
('a9fce084-ddf3-4ab1-977e-356bda5cf1ba','905304259202','ESMA YILDIRIM adlı müşterinizin 478227571 nolu gönderisi 3 parça halinde yola çıkmıştır.','1',NULL,NULL),
('a9fe097d-631e-48dc-822a-6e500a9546a1','1111111111111111','Sayın PİPET, 248284003 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248284003\n\nDear PİPET, your shipment with 248284003 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248284003\n\nBICARGO','2','acc18069-a61f-4cc1-b29c-0024e5408038',NULL),
('a9ff2ef8-ae7a-4ab8-83dd-a07ce9cc9c4e','4917684770342','ŞÖFÖR İKETİŞİM\n					+905301824880','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('aa01b114-552b-4291-83c4-d4496605d721','905335708965','ERFURT  MOBİLYA KOLTUK adlı müşterinizin 248568702 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('aa023725-e14c-4f48-8aaa-c7c52e5fd176','31614991851','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('aa03d969-e83e-46e9-ae9d-29ea145dd596','00491773889396','Sayın FATMA DUMAN, 371696993 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371696993\n\nDear FATMA DUMAN, your shipment with 371696993 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371696993\n\nBICARGO','2','8302f8df-382c-4f52-ab07-b0458d742a93',NULL),
('aa114b64-5efd-463d-99c3-6307427ed005','436602444902','598425779 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598425779\n\nYour shipment with the number 598425779 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598425779\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('aa18df63-61f5-48eb-8c95-3a146e89f38c','4915112339457','Sayın DİLBERAY MELLO, 613199072 nolu gönderiniz 7875 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613199072\n\nDear DİLBERAY MELLO, your shipment with 613199072 was delivered to you with the delivery code 7875. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613199072\n\n\nBICARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('aa1a025c-a64f-4545-bbde-4bb701287561','4915737597078','Sayın ELİF GÖKTAN, 505770346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505770346\n\nDear ELİF GÖKTAN, your shipment with 505770346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505770346\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('aa1c2d2e-8f03-467e-8241-4887709a7980','4917680676918','Sayın BEYZA ÇALIK, 644644115 nolu gönderiniz 2744 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644644115\n\nDear BEYZA ÇALIK, your shipment with 644644115 was delivered to you with the delivery code 2744. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644644115\n\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('aa20f184-7bcb-4de0-9566-817e5a031c46','4917670344465','745658808 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6253 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745658808\n\nYour shipment with the number 745658808 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6253. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745658808\n\nBICARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('aa38ef8b-de00-4c7d-9c20-ec29c5c09751','905363385813','Sayın yetkili; HASAN EROL adlı müşterinize 976568852 nolu gönderinizin Puf Sehpa ürünü 5 parça halinde Fatura adresinizden 20.02.2025 15:40:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('aa3c27eb-2d74-417d-8116-4a2c0b0349f4','33610781591','Sayın SÜLEYMAN BOZAN, 478778961 nolu gönderiniz 9240 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478778961\n\nDear SÜLEYMAN BOZAN, your shipment with 478778961 was delivered to you with the delivery code 9240. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478778961\n\n\nBICARGO','1','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL),
('aa3fadef-9719-4c71-9315-199713fc2205','491778394505','Sayın GAMZE CAPALBO, 517147933 nolu gönderiniz 5965 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517147933\n\nDear GAMZE CAPALBO, your shipment with 517147933 was delivered to you with the delivery code 5965. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517147933\n\n\nBICARGO','1','a19108da-c4a8-4e26-aaec-815a4c582fb5',NULL),
('aa4124e4-2154-4b05-92c9-2cfe1602b73e','32489642440','Sayın BRHZAD ALİKHANİ , 982402434 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982402434\n\nDear BRHZAD ALİKHANİ , your shipment with 982402434 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982402434\n\nBICARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('aa430cef-527e-41fc-9124-2a345afb5479','11111111111','248291895 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10616 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248291895\n\nYour shipment with the number 248291895 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10616. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248291895\n\nBICARGO','2','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL),
('aa4e020c-ebd3-4407-8e0c-9ed5adb5b2f3','33749894912','Sayın RUKİYE EKERBİÇER, 910638892 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910638892\n\nDear RUKİYE EKERBİÇER, your shipment with 910638892 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910638892\n\nBICARGO','1','bdb980ba-2d77-4b13-a3ae-a172bc776850',NULL),
('aa55acc8-350b-419d-a78b-ec8f5b60614a','905461661672','Sayın yetkili; ANDREW YARBUG(K) adlı müşterinize 644799923 nolu gönderinizin AFYON TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 02.10.2025 11:15:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e8785f1-7130-4936-8f4d-d44ffa1d9b07',NULL),
('aa586e10-469c-49d4-8140-3a8155420089','33784196938','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('aa5993cc-a52d-4c89-ae70-4f564d7a62b2','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin masa ürünü 4 parça halinde masami adresinizden 17.04.2025 17:46:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('aa5c0868-98ab-448e-bd57-0047cbebfd36','4917670630570','Sayın SİNEM GÖKÇE, 531340061 nolu gönderiniz 6739 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531340061\n\nDear SİNEM GÖKÇE, your shipment with 531340061 was delivered to you with the delivery code 6739. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531340061\n\n\nBICARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('aa694bb8-d57d-4a97-b8b2-eb6ea9419de6','905313340045','Sayın yetkili; UMUTCAN ŞAHİNCİ adlı müşterinize 437870707 nolu gönderinizin Sandalye ürünü 3 parça halinde bicargo depo adresinizden 15.08.2025 15:15:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('aa6c5dd9-ff94-4a30-8e29-0a3f60466c46','905394878216','SADIK BEYSİR adlı müşterinizin 517110811 nolu gönderisi 35 parça halinde yola çıkmıştır.','1','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL),
('aa6d913d-1968-498f-b4d2-8158b235e5dc','905335708965','ÜMRAN HANIM adlı müşterinizin 248853188 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL),
('aa6df4a5-a1a3-477f-b357-718d5882074c','905335511664','MUAMMER CANPOLAT adlı müşterinizin 371376503 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('aa6ea0d1-8fa8-4e1e-a49c-921d37c32788','4917635776995','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('aa723d9a-c4cd-4b8e-8bfc-b64428fde0cd','905454259202','AHMET BAYDAR adlı müşterinizin 478943291 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL),
('aa72535e-b064-4608-9ebe-f8ef48f77636','4915733741918','Sayın MAZHAR BAYMAN, 644903033 nolu gönderiniz 9081 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644903033\n\nDear MAZHAR BAYMAN, your shipment with 644903033 was delivered to you with the delivery code 9081. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644903033\n\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('aa731c05-05d6-4b3c-ab9b-624e74d7dafd','32483589693','Sayın STEPHANİE GOSSEYE, 221669694 nolu gönderiniz 7249 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221669694\n\nDear STEPHANİE GOSSEYE, your shipment with 221669694 was delivered to you with the delivery code 7249. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221669694\n\n\nBICARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('aa733414-fd66-4bba-8ae8-4150c8233ef4','1111111111','Sayın ENES, 41268257 nolu gönderiniz 2552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41268257\n\nDear ENES, your shipment with 41268257 was delivered to you with the delivery code 2552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41268257\n\n\nBICARGO','2','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('aa7393cd-5f4f-47c1-a5bf-33d43322b8c3','905075277637','HATİCE KARABAĞCA SSH  adlı müşterinizin 745658808 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('aa73f685-25ff-49d5-81c2-55cf8256fc07','905454259202','YAREN ÇAKALLI adlı müşterinizin 47855592 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a32d6ff8-be7b-4ad4-8eb6-617ec0c8b16d',NULL),
('aa750dec-526d-45d8-a141-5c5731835c23','905461661672','Sayın yetkili; DELİL ÖZÇELİK adlı müşterinize 644883152 nolu gönderinizin traverten tozu ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 29.08.2025 14:58:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fecd93b-0230-4b8f-9c66-a61c426ac9bb',NULL),
('aa762bd4-003c-4cfd-a483-c9a63abf0c9c','0000000000000000','412472932 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6392 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412472932\n\nYour shipment with the number 412472932 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6392. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412472932\n\nBICARGO','2','0c0919ed-e869-4b33-a525-8e05358a4852',NULL),
('aa767265-e421-4325-abb6-7d26520caf3c','905459011033','SEYFETTİN adlı müşterinizin 268437547 nolu gönderisi 3 parça halinde yola çıkmıştır.','1',NULL,NULL),
('aa7753d6-ddcc-4336-9f7e-5c15d54d3424','491778742178','Sayın SABİNA KAYA, 598548833 nolu gönderiniz 8303 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598548833\n\nDear SABİNA KAYA, your shipment with 598548833 was delivered to you with the delivery code 8303. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598548833\n\n\nBICARGO','1','1bd6fffb-ab43-4eb4-9b9b-b0c8bb22c5b0',NULL),
('aa790a51-1936-413f-a092-9046448d423f','1111111111111111','Sayın HOLLANDA, 248602682 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248602682\n\nDear HOLLANDA, your shipment with 248602682 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248602682\n\nBICARGO','2','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL),
('aa7a8b55-aa37-4290-8556-339dd2205786','4917657743687','982372153 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1536 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982372153\n\nYour shipment with the number 982372153 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1536. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982372153\n\nBICARGO','1','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL),
('aa85fa78-649f-4c09-aa06-c2882cc04eb9','905325000478','SALONİ adlı müşterinizin 412989879 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('aa8a0684-af3c-4d04-9753-af4a81e639bf','41767113347','Sayın SALİM YILDIZ, 112189439 nolu gönderiniz 10895 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/112189439\n\nDear SALİM YILDIZ, your shipment with 112189439 was delivered to you with the delivery code 10895. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/112189439\n\n\nBICARGO','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('aa99ec15-b6d8-4599-918c-98ba658f56de','33608517581','Sayın İBRAHİM AYIK , 449700444 nolu gönderiniz 9953 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449700444\n\nDear İBRAHİM AYIK , your shipment with 449700444 was delivered to you with the delivery code 9953. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449700444\n\n\nBICARGO','1','61867c22-c86f-44a9-a203-2b810c74f596',NULL),
('aa9e1d27-0f61-4534-8fcf-04d4a048ea74','491789146885','İletişim \n					Şöför Murat : +905321616048','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('aaa11430-905a-4e53-bdc3-793809ba20d0','33749426479','Sayın MEHMET BAYTOK SSH, 745253500 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745253500\n\nDear MEHMET BAYTOK SSH, your shipment with 745253500 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745253500\n\nBICARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('aaa719f5-d349-4a8c-9bba-677a69fe3ce9','4917661141685','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('aaa95d1f-caa7-4810-8562-9d59a9f129de','4915757838054','745871666 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6494 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745871666\n\nYour shipment with the number 745871666 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6494. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745871666\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('aaadd576-5690-4a8a-b83f-ac855ee729c4','05388999874','Sayın CEMAL YALÇIN, 319116491 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319116491\n\nDear CEMAL YALÇIN, your shipment with 319116491 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319116491\n\nBICARGO','2','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('aaae2865-d938-456d-9951-6a31b400de43','905313340045','SERCAN KUCUR adlı müşterinizin 437626008 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('aaaf3fbc-2874-40be-9c0a-5912e0778dbd','905350617509','ELİF BEYZA ARVİŞ adlı müşterinizin 613112731 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('aab3be24-1e42-44b9-b925-d08d51202234','905517075149','Sayın yetkili; SÜMEYYE DURUKAN adlı müşterinize 478153975 nolu gönderinizin KÖŞE -2 ADET YAN SEHPA ürünü 10 parça halinde RİXXE adresinizden 09.10.2025 11:35:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73a48364-e3d4-4fab-851c-d3a1f4617a64',NULL),
('aab4e0a4-b0d4-4b60-abc2-65ca7439ed35','905363385813','SOUQİ İMANE adlı müşterinizin 976185606 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('aab6e8fe-a76b-474d-a7b3-223b5e51be7a','33744884261','644968450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5584 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644968450\n\nYour shipment with the number 644968450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5584. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644968450\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('aab79b65-91d1-4a07-a2a2-16e2d24ee32f','491738956929','Sayın MERT ALİ YÖNTEM, 203151723 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/203151723\n\nDear MERT ALİ YÖNTEM, your shipment with 203151723 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/203151723\n\nBICARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('aaba4955-b90c-4c8c-80d9-7fe5971a86b5','004917642060637','127105973 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9257 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/127105973\n\nYour shipment with the number 127105973 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9257. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/127105973\n\nBICARGO','2','9d26f3f5-1617-4627-a308-2aea49169455',NULL),
('aac6f9e3-48cd-4774-96b8-f6b057dda204','905431026110','Sayın yetkili; SEVCAN BAYRAM adlı müşterinize 351183541 nolu gönderinizin masa ürünü 3 parça halinde MASAMİ adresinizden 10.10.2025 15:56:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bbee5f58-f6e5-4525-b872-ef97ac4ab579',NULL),
('aac9d555-73b4-4192-b578-dd6562fbd747','32486993128','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('aacb55e5-390d-4206-8293-8290aed77a25','4917684715486','598384021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8397 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598384021\n\nYour shipment with the number 598384021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8397. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598384021\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('aad0fc89-5137-4bd1-b785-07d69b4bcc60','905331602195','NURİYE ŞAHİN adlı müşterinizin 221447673 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('aae69e25-0bf0-4d46-96f4-92d53f6cd46d','905333221039','BAŞAK BEYOĞLU adlı müşterinizin 750501209 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL),
('aae73410-fd61-4b4f-96fe-4e12703dbce1','905454259202','Sayın yetkili; BİRSEN KARADAVUT adlı müşterinize 478833375 nolu gönderinizin masa -sandalye-konsol-ortasehpa ürünü 8 parça halinde acca adresinizden 14.04.2025 18:16:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('aaed28ca-1201-4e80-a3c3-9349aa96f4b0','905325000478','Sayın yetkili; Ahmet Aydın adlı müşterinize 412346984 nolu gönderinizin Koltuk 3\'lü ürünü 5 parça halinde Massimilano adresinizden 07.10.2024 21:41:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a182b824-b752-401d-b663-5d96552a9f49',NULL),
('aaf0d8cd-b371-4e58-8cd7-18cf89f01eeb','905325000478','ENES adlı müşterinizin 412746738 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL),
('aaf56944-97ad-4f2e-b275-1e4e781ec5a0','41765344310','Sayın birsat melake , 982639053 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982639053\n\nDear birsat melake , your shipment with 982639053 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982639053\n\nBICARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('aaf6e67a-1830-458b-b525-71c7a9b06d05','4917646295086','Sayın PINAR SALMA SSH , 745332643 nolu gönderiniz 5380 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745332643\n\nDear PINAR SALMA SSH , your shipment with 745332643 was delivered to you with the delivery code 5380. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745332643\n\n\nBICARGO','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('aaf73032-ff15-4bf5-9959-efad46ff02ac','905454259202','NURTEN-HASAN ÇAKMAK adlı müşterinizin 478644410 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b3da5f6e-e62f-4f04-9a07-a71259befc0b',NULL),
('aafacee8-41d2-4914-9de8-ff55473d5ee6','4917656864788','Sayın ALESSANDRA ALTAVİLLA, 127343940 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127343940\n\nDear ALESSANDRA ALTAVİLLA, your shipment with 127343940 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127343940\n\nBICARGO','1','77dfaa67-35dd-4ac7-8f6a-6f4df46d7e2d',NULL),
('ab008893-3f1c-4a79-af11-7ec7e45f5160','491741928164','Sayın İLAYDA GÜNEŞ SSH, 371280361 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371280361\n\nDear İLAYDA GÜNEŞ SSH, your shipment with 371280361 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371280361\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('ab01191b-059a-4125-920c-4994038d73f5','491627758662','Sayın FİRAS MACHANTAT, 750505145 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750505145\n\nDear FİRAS MACHANTAT, your shipment with 750505145 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750505145\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('ab024be1-5494-4bdf-bac9-4f29b15e7457','905300961610','DOMİNİK WİNK adlı müşterinizin 126649227 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL),
('ab033e6f-f788-4eb3-b9c0-8a0d2e82af9b','905336367828','FERİDE USLI  adlı müşterinizin 982674617 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('ab09883e-a8d6-4037-87a8-1c07de0c659b','905304259202','SUNAY KURU adlı müşterinizin 478526484 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL),
('ab0a62b5-4ab4-4192-9426-0d46403ac66c','33769060012','Sayın DİLAN ÖZKAN, 478125578 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478125578\n\nDear DİLAN ÖZKAN, your shipment with 478125578 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478125578\n\nBICARGO','1',NULL,NULL),
('ab0b6792-d1ec-49d6-8151-e7729f212390','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin DELUXE BAZA SET 90X190  ürünü 3 parça halinde Fatura adresinizden 26.09.2025 12:24:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('ab0ba616-cd73-42eb-87d7-7c617e049531','905059175469','GÖKHAN UYSAN adlı müşterinizin 42873500 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('ab16fbc3-6e77-40d5-b68e-d3a1b6c5ae9c','4915737531253','644680025 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3752 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644680025\n\nYour shipment with the number 644680025 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3752. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644680025\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('ab1c7c7a-8026-4fce-9094-7eebabc8fc65','491771951870','44971858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3327 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44971858\n\nYour shipment with the number 44971858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3327. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44971858\n\nBICARGO','1','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL),
('ab1f06e6-2d37-4521-8900-722e00b0eb53','905331602195','Sayın yetkili; BERKAY NAMDAR adlı müşterinize 221963489 nolu gönderinizin 90x230 cm Traverten Masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:58:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4',NULL),
('ab206e94-c21c-4876-870d-fcdd3b632072','4917624686469','Sayın SUAT TURA, 371628660 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371628660\n\nDear SUAT TURA, your shipment with 371628660 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371628660\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('ab26a882-a8d2-4e3a-a13f-ed2bfc3ff4b9','33678241654','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('ab29fcd8-5547-4234-a02e-db51c1d44683','905461661672','Sayın yetkili; RABİA AKKUŞ SSH adlı müşterinize 644564440 nolu gönderinizin traverten sehpa ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 17.07.2025 10:42:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('ab2cbb71-819a-4831-884a-60d5cd464e02','905075277637','Sayın yetkili; ELMAS KAYA adlı müşterinize 745411152 nolu gönderinizin PALERMO ORTA SEHPA  ürünü 1 parça halinde MUKA adresinizden 21.04.2025 17:06:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('ab2cc3d0-be62-40d9-bf39-ae44ee5f2bc2','33650234345','982614868 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9189 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982614868\n\nYour shipment with the number 982614868 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9189. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982614868\n\nBICARGO','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('ab2e1336-4890-437b-8324-06a4a9d604a5','905331602195','HATİCE GÜRBAY adlı müşterinizin 22140129 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('ab35811b-3452-40a3-9b06-a2ab32c290c1','905313340045','Sayın yetkili; MARİNE NETO adlı müşterinize 43720744 nolu gönderinizin masa ve sehpa ürünü 6 parça halinde masami adresinizden 21.03.2025 11:53:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('ab3dc57f-26dc-4d0a-8dc0-95cf0db39cc7','4917675876599','Sayın FADİME AKDEMİR, 644130393 nolu gönderiniz 4134 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644130393\n\nDear FADİME AKDEMİR, your shipment with 644130393 was delivered to you with the delivery code 4134. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644130393\n\n\nBICARGO','1','c0cc8fc6-08f2-45a3-a974-7d378329a372',NULL),
('ab3e1c6a-2520-4673-947b-14c58be05728','905331602195','NİHAL ŞAHİN adlı müşterinizin 221899517 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','f3fb5afa-e27b-4671-8dc8-33032a54e4d2',NULL),
('ab3fd4c1-bc50-489c-880f-81e09af5a15b','905395885843','OKAY TUNCA adlı müşterinizin 312422305 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('ab42e7b3-eb63-497b-855a-1b50810b384f','4917644265408','745961245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745961245\n\nYour shipment with the number 745961245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745961245\n\nBICARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('ab47aa04-b7b2-4782-9088-ddbf7ceae124','905350617509','ISMAİL REMMO adlı müşterinizin 613813844 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('ab4edf3e-2ec1-46bb-a9e9-6a4049f9490b','31641319611','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('ab59d8ee-393d-4914-b422-97833e4b0c6b','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:12:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('ab5e8c6e-8824-46dd-b50d-b00d10fb933d','436642175788','Sayın MAGDALENA DELİJANOVA, 371521572 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371521572\n\nDear MAGDALENA DELİJANOVA, your shipment with 371521572 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371521572\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('ab5ed57d-b7e7-4855-99c9-9996931ed351','4915785558828','Sayın EKREM ASLAN, 91059017 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91059017\n\nDear EKREM ASLAN, your shipment with 91059017 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91059017\n\nBICARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('ab619ef3-80e4-4bbc-aaf4-6ca5ebb602f1','31636115974','Sayın Songül şahin, 412157634 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412157634\n\nDear Songül şahin, your shipment with 412157634 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412157634\n\nBICARGO','1','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL),
('ab61d37e-0682-4c9d-ae6d-151ddfbc7e7c','4917624188930','786820149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3457 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786820149\n\nYour shipment with the number 786820149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3457. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786820149\n\nBICARGO','1','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('ab62b2c9-d4c1-4298-8667-85bf0fab1118','905336367828','Sayın yetkili; Nurkovic jasmın  adlı müşterinize 982572348 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 06.11.2024 15:37:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e032e33f-200c-486b-ab1c-c92b86e89536',NULL),
('ab65b821-f50d-4b43-aab2-d8cda533b023','4917672932158','Sayın RABİA DULU, 517278082 nolu gönderiniz 5305 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517278082\n\nDear RABİA DULU, your shipment with 517278082 was delivered to you with the delivery code 5305. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517278082\n\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('ab6b0f9b-27ef-4ac8-9ad2-db493bc47594','4917664273200','Sayın REBEKKA İRMER, 644113100 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113100\n\nDear REBEKKA İRMER, your shipment with 644113100 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644113100\n\nBICARGO','2','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('ab6f577f-9926-4c41-9b25-565357ecc5fb','4917663874660','Sayın MİTRA MESKİNİ, 44932987 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44932987\n\nDear MİTRA MESKİNİ, your shipment with 44932987 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44932987\n\nBICARGO','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('ab70ad3e-00f3-4242-9d64-31d806f6a561','905510396989','Sayın yetkili; MEHDİ NAEİMİ adlı müşterinize 319275080 nolu gönderinizin MOZART 3-3-1 ürünü 3 parça halinde Fatura adresinizden 30.06.2025 14:12:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('ab74b6e4-950e-4b6f-adb1-459cc0c41b92','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 08.08.2025 14:47:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('ab7546e4-bd6e-4ca4-a44e-e345cbefa51e','491742419200','Sayın UMUTCAN ŞAHİNCİ, 437870707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437870707\n\nDear UMUTCAN ŞAHİNCİ, your shipment with 437870707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437870707\n\nBICARGO','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('ab7aeca6-16b1-4461-9f4e-b1905dc98096','905336367828','CEYLAN YILMAZ  adlı müşterinizin 982464994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('ab7bea12-ae53-40ae-bad8-3738c8bd426d','004917632601476','Sayın SABRİNA KHODR, 735660192 nolu gönderiniz 8587 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735660192\n\nDear SABRİNA KHODR, your shipment with 735660192 was delivered to you with the delivery code 8587. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735660192\n\n\nBICARGO','2','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL),
('ab7e00e0-eb5e-41c1-a574-42866435096c','905461661672','Sayın yetkili; MİHRİBAN ÖZEN adlı müşterinize 644776565 nolu gönderinizin KÖŞE KOLTUK ürünü 7 parça halinde LENTE HOME adresinizden 23.05.2025 18:06:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('ab803c01-7160-40bc-a963-84016e7a3dc2','4915733741918','644803178 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10084 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644803178\n\nYour shipment with the number 644803178 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10084. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644803178\n\nBICARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('ab817e2b-973a-4159-8a63-d90df78fc0b2','11111111111','Sayın SEVİNÇ ÖZKAN , 614143415 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614143415\n\nDear SEVİNÇ ÖZKAN , your shipment with 614143415 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614143415\n\nBICARGO','2','46a5e555-47e9-4fd4-bbf4-635d40a7d1a5',NULL),
('ab864e28-64c6-4636-99d8-77841da2d65c','31613557547','Sayın MENEKŞE SEVEN, 598508016 nolu gönderiniz 7582 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598508016\n\nDear MENEKŞE SEVEN, your shipment with 598508016 was delivered to you with the delivery code 7582. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598508016\n\n\nBICARGO','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('ab87a982-ebc6-40e6-a25a-cf7de32d367d','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 2  ADET  BAZA BAŞLIK KARYOLA ürünü 6 parça halinde KARYOLA adresinizden 22.08.2025 10:04:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('ab8a376b-5c50-49e6-a05a-2cbd418c9511','905350617509','Sayın yetkili; RANİA PİSİT adlı müşterinize 613512690 nolu gönderinizin Baza üstü ürünü 1 parça halinde Albessa adresinizden 16.06.2025 13:56:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('ab91e551-a40c-48c8-ad5f-83f70c9bea27','905075277637','Sayın yetkili; BERKANT YAŞA SSH  adlı müşterinize 745712790 nolu gönderinizin SSH DOLAP PARÇALARI  ürünü 5 parça halinde Fatura adresinizden 18.07.2025 17:42:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('ab98b660-fc3e-4ed4-a9d0-9c080baaea10','31621850088','Sayın EBRU PAYAS, 657408169 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657408169\n\nDear EBRU PAYAS, your shipment with 657408169 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657408169\n\nBICARGO','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('ab98f319-c52a-427c-8538-47cd0c45b2ac','31634506011','Sayın MURAT BAĞCI, 614460765 nolu gönderiniz 2101 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614460765\n\nDear MURAT BAĞCI, your shipment with 614460765 was delivered to you with the delivery code 2101. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614460765\n\n\nBICARGO','1','e88c81a3-c41c-4a2d-94f5-a0819da7c913',NULL),
('ab9ab8f3-4985-411d-97f1-2c6599289866','905079358213','İLYAS ÖNSÜZ adlı müşterinizin 745334668 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ffb40a61-0c49-4347-b03f-2459867ff4cb',NULL),
('aba8727e-ed7b-478b-a31c-ba7949a755d6','330758076179','Sayın AMİNA BOUDJENNAH , 982585914 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982585914\n\nDear AMİNA BOUDJENNAH , your shipment with 982585914 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982585914\n\nBICARGO','2','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('aba8c76e-eb70-406d-9f5a-1d9d31df15e9','05539740010','FERHAT SANUÇ adlı müşterinizin 011573387 nolu gönderisi 9 parça halinde yola çıkmıştır.','2','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('abad1bc6-d71e-4140-b96c-8d494917184f','905523438971','Sayın yetkili; BESTENUR ÖZKAYA adlı müşterinize 896998229 nolu gönderinizin Bestenur özkaya SSH MASA TABLASI  ürünü 1 parça halinde Masami  adresinizden 06.10.2025 14:13:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('abad55fa-b727-408b-bbb1-dcc3338f7ae2','4915224007809','Sayın BURHAN BAYRAKTAR, 644758410 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644758410\n\nDear BURHAN BAYRAKTAR, your shipment with 644758410 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644758410\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('abadf815-abc7-4b21-84d4-e04043b3dc5d','41765344310','Sayın birsat melake , 982639053 nolu gönderiniz 3593 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982639053\n\nDear birsat melake , your shipment with 982639053 was delivered to you with the delivery code 3593. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982639053\n\n\nBICARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('abb78b30-43f0-4c97-8eaa-5661126943dc','33768933805','478702476 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5776 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478702476\n\nYour shipment with the number 478702476 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5776. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478702476\n\nBICARGO','1','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL),
('abb9c354-2b1e-4d9d-a20c-9451f6125a8e','436765022152','Sayın NURAY DURAN, 515261200 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515261200\n\nDear NURAY DURAN, your shipment with 515261200 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515261200\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('abbb419b-46f8-4ddb-afc8-2fb23c0ce528','33652423048','Sayın ÖMER EKŞİN, 478391312 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478391312\n\nDear ÖMER EKŞİN, your shipment with 478391312 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478391312\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('abbb9814-f139-442c-a34b-e2b59a0ac1b0','905350617509','Sayın yetkili; RANİA PİSİT adlı müşterinize 613464926 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 13.05.2025 15:34:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('abbcd30d-d303-4d40-95ed-b6c7456df3f4','436602003887','DRİVER\n					ADNAN\n+905354622027','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('abbee308-7c3c-44ac-b53d-cf0e84653288','33678270339','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','6e41f6a8-bb92-49dc-af72-2b1e16aa490c',NULL),
('abc1c572-f739-4a20-9683-8ee279e4d2e0','905461661672','GÜLAY FASOLD adlı müşterinizin 644820551 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('abc85876-ade6-4b0f-bea3-7ac4838ab12c','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA MASA  ürünü 4 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:14:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('abcce1c3-5bcc-424c-917c-ffbe5e17f737','01705204782','644682734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3419 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644682734\n\nYour shipment with the number 644682734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3419. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644682734\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('abcd2747-0e44-4361-be8a-1ad3ceacbeb2','905331602195','GÖKHAN ÖZYURT  adlı müşterinizin 2213416 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','0433f27d-703a-4a68-9cdb-58d86767559d',NULL),
('abcf9049-9018-4134-a0a5-1faca6e38271','33787094714','Sayın ZEYNEP ALKIŞ, 745964132 nolu gönderiniz 9323 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745964132\n\nDear ZEYNEP ALKIŞ, your shipment with 745964132 was delivered to you with the delivery code 9323. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745964132\n\n\nBICARGO','1','3f82ae91-19cb-4663-bb33-377d660eea84',NULL),
('abd05861-89a9-4c87-9728-b0a9b4f20701','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin sandalye ürünü 8 parça halinde by chair sandalye adresinizden 19.06.2025 17:01:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('abd847fd-2c84-4982-b483-4df4980b843d','905079358213','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin BONNY KÖŞE KOLTUK  ürünü 5 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 09.10.2025 13:46:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('abdb799e-f314-4f4a-9563-d1bd6b2214ca','4917631174423','Sayın ZEKERİYA SOYER, 338878009 nolu gönderiniz 10498 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338878009\n\nDear ZEKERİYA SOYER, your shipment with 338878009 was delivered to you with the delivery code 10498. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338878009\n\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('abdea277-7058-418b-b277-3757ba9a5493','491626248441','Sayın KIYMET KARA, 478606230 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478606230\n\nDear KIYMET KARA, your shipment with 478606230 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478606230\n\nBICARGO','1','1d8366a7-8e61-4b91-ad70-62acf43daa32',NULL),
('abdfb409-1dc6-4e7d-bf14-4405b6d0b250','491718955351','644754778 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6625 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644754778\n\nYour shipment with the number 644754778 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6625. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644754778\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('abe0dc5f-8971-4b3c-b1ba-f5cb325c4ece','905301592882','EKREM ASLAN adlı müşterinizin 91059017 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('abe16fc4-2d9d-4b3a-b065-31924679b004','905336367828','MEHMED SHABAN  adlı müşterinizin 982893962 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('abe4d2e3-c1c9-459e-80b3-b97ae401dfec','905331602195','ESRA ALTINTAŞ  adlı müşterinizin 221437904 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb2f8c5f-5056-4e84-8bee-cdfe250f8c42',NULL),
('abe716cc-0d00-4c3f-88a7-5aeb64d3502b','905078062550','MELİSSA KARACAKAYA adlı müşterinizin 598961911 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('abe9ab5f-e793-4351-a630-7e4bc566d645','33760923065','Sayın CANSEL YILMAZ, 223275516 nolu gönderiniz 6082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223275516\n\nDear CANSEL YILMAZ, your shipment with 223275516 was delivered to you with the delivery code 6082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223275516\n\n\nBICARGO','1','9af50f14-4a22-4798-bc08-091a8f5a42ce',NULL),
('abf4a67d-af27-4156-917a-ffeecedfe592','491625968428','Sayın BETÜL ÇELİK SSH, 644298325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298325\n\nDear BETÜL ÇELİK SSH, your shipment with 644298325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644298325\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('abf4d0c9-46c1-4f73-be7f-3d949ded4373','905331602195','CAN ILKAY IBOV adlı müşterinizin 221225501 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('abf71087-51d6-419f-936a-acfad9190844','905350617509','Sayın yetkili; DANİAL ARAMESHK  adlı müşterinize 613191069 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 27.08.2025 11:28:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('abf7e44c-94c0-4564-90c7-29527112d0b1','49151684228','Sayın SUNAİM İBESKİ, 982498702 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982498702\n\nDear SUNAİM İBESKİ, your shipment with 982498702 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982498702\n\nBICARGO','2','226d454f-504a-4c41-9f7c-2a37ac051991',NULL),
('ac07dd1d-e7a3-46ad-bd7e-a019ef69e199','4917657742944','371801847 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10655 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371801847\n\nYour shipment with the number 371801847 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10655. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371801847\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('ac0e02d3-0b25-4580-a659-5052d7340aef','905078062550','MEHMET ULUIŞIK adlı müşterinizin 598614826 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('ac0e6b9e-416d-4a0a-bcf7-f262cf7ca3d7','905313340045','HAZAL BATUR adlı müşterinizin 437712381 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('ac12b98d-4136-481c-bdf0-d7bfdbdc9dab','905336367828','Sayın yetkili; Brahıma naıma adlı müşterinize 982446186 nolu gönderinizin Yemek odası  ürünü 5 parça halinde Palermo mobilya  adresinizden 04.11.2024 11:37:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('ac1cfd18-0747-43ea-9557-16902e5ab2a5','4917662467195','Sayın OLSZWESKİ MATZ, 644658399 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644658399\n\nDear OLSZWESKİ MATZ, your shipment with 644658399 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644658399\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('ac1ef83f-dde7-4481-bfff-3502eaf04f48','491749347138','Sayın GÖKHAN ÇAYLAK, 745808994 nolu gönderiniz 3336 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745808994\n\nDear GÖKHAN ÇAYLAK, your shipment with 745808994 was delivered to you with the delivery code 3336. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745808994\n\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('ac1f54f1-2369-44ed-b3fb-f4fe9e3cf0ed','491797759335','İletişim \n					Şöför Murat : +905321616048','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('ac270133-f171-4b05-a750-7d144e723a95','33607979254','745747559 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3925 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745747559\n\nYour shipment with the number 745747559 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3925. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745747559\n\nBICARGO','1','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL),
('ac2e3acd-cb23-487a-b7db-02852b095ebf','491777474184','64413417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64413417\n\nYour shipment with the number 64413417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64413417\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('ac36c615-3ee8-4596-933d-cbe1ea17d5be','905336367828','Sayın yetkili; ERKAN UYSAL  adlı müşterinize 982271871 nolu gönderinizin tv ünütesi ürünü 1 parça halinde nacar mobilya  adresinizden 15.11.2024 10:39:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('ac38b0e5-3df5-4469-a907-ceeb99517e0a','400725755108','982708819 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8973 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982708819\n\nYour shipment with the number 982708819 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8973. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982708819\n\nBICARGO','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('ac3a7dd1-850c-4832-b07f-7e58416b70d5','905350617509','Sayın yetkili; SUADA HAMZA  adlı müşterinize 613990020 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 11.06.2025 14:10:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('ac3e21f9-3c17-44dd-8f93-10176f7dec6a','905517075149','AYŞEGÜL GÖKTEPE adlı müşterinizin 478545457 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('ac487638-1496-41a5-a403-f875dfdff6f1','00491727271107','Sayın MANGAL MÖBEL, 735340001 nolu gönderiniz 8271 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735340001\n\nDear MANGAL MÖBEL, your shipment with 735340001 was delivered to you with the delivery code 8271. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735340001\n\n\nBICARGO','2','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL),
('ac4a3796-7b74-4bb2-87e9-0ad0c8b2f799','1111111111111111','Sayın SİYAH PALETLER, 735565748 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735565748\n\nDear SİYAH PALETLER, your shipment with 735565748 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735565748\n\nBICARGO','2','83b46886-5368-4d6c-8779-63f4585588f3',NULL),
('ac56cde3-c619-4307-9b2a-205ca329943a','491781789912','Sayın POLAT İSTİKRAR , 412596038 nolu gönderiniz 2419 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412596038\n\nDear POLAT İSTİKRAR , your shipment with 412596038 was delivered to you with the delivery code 2419. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412596038\n\n\nBICARGO','1','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL),
('ac58469a-c32f-4b18-9a80-97d0e72ae814','33650178129','437712381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437712381\n\nYour shipment with the number 437712381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437712381\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('ac588860-bdcd-4a69-8197-d406bbadc367','436603730710','221447673 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8071 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221447673\n\nYour shipment with the number 221447673 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8071. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221447673\n\nBICARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('ac601e39-78a5-4a1a-813e-8ba4f73d5d3e','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ZARARSIZLAR DEMET ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('ac69b4bb-e741-45c6-b98d-504954a886db','905054335859','SAİT CARCUR adlı müşterinizin 501423957 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('ac6ee6ae-dc89-4697-b12d-fa4b36c6db8d','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin EWODA LENS KOMODİN ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('ac6f5966-c3f0-473c-bb1f-ace24f2bd3fc','31614851530','478273603 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5492 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478273603\n\nYour shipment with the number 478273603 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5492. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478273603\n\nBICARGO','2','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('ac702d85-c64d-4088-b97f-cee5804ba560','491773638963','644717952 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644717952\n\nYour shipment with the number 644717952 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644717952\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('ac706038-556e-43b6-99ea-f39f2859e5cd','4917670882754','Sayın DONYA AL HAİDARİ, 081411095 nolu gönderiniz 10768 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/081411095\n\nDear DONYA AL HAİDARİ, your shipment with 081411095 was delivered to you with the delivery code 10768. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/081411095\n\n\nBICARGO','1','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('ac739198-71c5-44ff-9b3f-9efec5cc92ec','905075277637','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin DELUXE 160LIK YATAK  ürünü 1 parça halinde Fatura adresinizden 22.08.2025 12:36:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('ac73c63f-1486-4326-858a-3d873f9d52ce','905079358213','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 23.05.2025 21:56:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('ac79efeb-c6c5-452a-a382-565a5bbae6f4','4916091826970','Sayın HATİCE ÖZEN, 745734415 nolu gönderiniz 7236 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745734415\n\nDear HATİCE ÖZEN, your shipment with 745734415 was delivered to you with the delivery code 7236. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745734415\n\n\nBICARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('ac801d5b-3e13-4d41-ab39-73cfdbe0282c','436609030413','İletişim \n					Halil Bey (Şoför) :+905541100849','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('ac850f4e-9005-4688-b875-28fbdad6db6e','33699489518','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('ac8bb556-4f2e-4ca4-ba33-71395ceaf087','905079047428','FATMİRA CELA adlı müşterinizin 449281517 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL),
('ac8f819c-5733-47dd-9a82-589cc0cb985f','905335511664','HATİCE BOZ adlı müşterinizin 371441090 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('ac92425a-9d86-4ae7-a632-3fa9e5f2d99f','905331602195','Sayın yetkili; HASAN BİLECEN (SSH) adlı müşterinize 221996027 nolu gönderinizin Masa ayak,sehpa ayak,sehpa üst ürünü 4 parça halinde Fatura adresinizden 17.09.2025 11:50:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('ac977e04-a32a-4c69-90d2-f8d30e947782','33608517581','Sayın İBRAHİM AYIK , 449728917 nolu gönderiniz 3254 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449728917\n\nDear İBRAHİM AYIK , your shipment with 449728917 was delivered to you with the delivery code 3254. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449728917\n\n\nBICARGO','1','1710853d-7394-43e0-9868-1a68f0b61796',NULL),
('ac98b7fa-5e1c-4b23-8259-7e255ebaadc9','33611031313','İletişim \n					Şöför Uğur Acar +905424435917','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('ac9aba94-18ba-4ba1-ad2f-aec9c888c10f','33781949735','7347113 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/7347113\n\nYour shipment with the number 7347113 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/7347113\n\nBICARGO','1',NULL,NULL),
('ac9c8a40-ff43-4ba3-878a-c9846b9f455a','4915222818917','Sayın DİLAY MERYEM CİKU, 371737204 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371737204\n\nDear DİLAY MERYEM CİKU, your shipment with 371737204 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371737204\n\nBICARGO','1','0e367b6a-44c3-40e4-9097-1055385b6e27',NULL),
('aca80517-bca1-4c9e-849f-404fc8f351c8','33769061663','Sayın RAMAZAN KIYMAZ, 478900175 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478900175\n\nDear RAMAZAN KIYMAZ, your shipment with 478900175 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478900175\n\nBICARGO','1','acb56e55-0830-4986-97da-b0788ca9b99b',NULL),
('acac1c4b-946b-4957-b359-16d14fa1d0f6','491727322843','Sayın NURETTİN BAYRAK , 613661947 nolu gönderiniz 8942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613661947\n\nDear NURETTİN BAYRAK , your shipment with 613661947 was delivered to you with the delivery code 8942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613661947\n\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('acb0087b-2653-4973-a5c1-8e7859d59744','4653467627566257','817893266 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8171 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817893266\n\nYour shipment with the number 817893266 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8171. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817893266\n\nBICARGO','2','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('acb17375-45eb-491e-a19a-3a0721e316f6','905365908694','MAİL BOXES ETC adlı müşterinizin 223379282 nolu gönderisi 74 parça halinde yola çıkmıştır.','1','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('acb81319-b7c9-434a-bd6f-d04c7ce43692','41775230627','Sayın SAMİR KERANOVİC , 221837026 nolu gönderiniz 4326 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221837026\n\nDear SAMİR KERANOVİC , your shipment with 221837026 was delivered to you with the delivery code 4326. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221837026\n\n\nBICARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('acb8680a-2d55-41d9-bbb1-0bc67fb67d70','491624296602','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('acc0a4fb-dcd1-4844-9ddd-0af2f1d06b47','491787575752','478616973 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4445 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478616973\n\nYour shipment with the number 478616973 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4445. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478616973\n\nBICARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('acc1e407-1843-4268-9c5d-ad6a47853f0b','9053259981980','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin EKOL LOTUS 4+1 YAVRULU ORTA SEHPA GOLD ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('acc492d1-3a9c-4aba-8479-74bb619323f4','905075277637','HASAN ÇETİN adlı müşterinizin 745810889 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('acc69332-3a2b-4c5b-bbac-c33745e46dd6','4915124291903','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('accda03f-158d-4e63-9e5b-4cf5a06fc28d','33652406089','50119540 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1174 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/50119540\n\nYour shipment with the number 50119540 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1174. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/50119540\n\nBICARGO','1','30753652-c249-4370-954e-0eb227ea17aa',NULL),
('acd01b5d-abfa-4e5f-b5bf-d1f858aaf7f6','905335708965','CAMLAR-SALİH AK adlı müşterinizin 248217260 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','78a02363-dcc4-4c8f-b6e6-d0e1b6d2df6c',NULL),
('acd43bcd-fff9-4532-b550-c6d27d590028','4917681094812','Sayın TAYFUN ŞENGÜL, 644424764 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644424764\n\nDear TAYFUN ŞENGÜL, your shipment with 644424764 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644424764\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('acd933bb-761e-41ab-bb6f-bc114f893291','436606200309','371194748 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1519 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371194748\n\nYour shipment with the number 371194748 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1519. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371194748\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('acda33f0-b118-4ebb-a90a-8e51bcda46d3','33668879544','Sayın KEVSER KAYA, 478983907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478983907\n\nDear KEVSER KAYA, your shipment with 478983907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478983907\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('ace0e986-0778-4c93-a8df-56dd8a1827d8','32465090657','Sayın YUSUF KAYA, 501760253 nolu gönderiniz 2415 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501760253\n\nDear YUSUF KAYA, your shipment with 501760253 was delivered to you with the delivery code 2415. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501760253\n\n\nBICARGO','1','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL),
('aced3d5a-7dc3-4035-a2f0-59f68a0a1ff1','111111111111111','223734808 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8235 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223734808\n\nYour shipment with the number 223734808 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8235. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223734808\n\nBICARGO','2','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL),
('ad08e035-a0b9-40bc-80b8-e181d7b93aa5','905517075149','ÖMER EKŞİN adlı müşterinizin 478391312 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('ad13b309-0178-459a-ba43-ecc14c9ada78','905523438971','BESTENUR ÖZKAYA SSH adlı müşterinizin 896998229 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('ad14a14c-da05-48f6-8a92-3dc7f97aad39','32497224149','Sayın BARIŞ ÖZTÜRK, 750355737 nolu gönderiniz 10248 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750355737\n\nDear BARIŞ ÖZTÜRK, your shipment with 750355737 was delivered to you with the delivery code 10248. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750355737\n\n\nBICARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('ad166199-e8c6-475e-aaa6-27f9b37d3455','4368120902265','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','2','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('ad191938-a595-401d-924e-18a392957fad','33763241174','İletişim \n					Halil Bey (Şoför) :+905541100849','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('ad19e224-4a5e-433b-a4ee-09e2cea01ebc','491784897423','Sayın BESTE NUR ÖZKAYA, 896769535 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896769535\n\nDear BESTE NUR ÖZKAYA, your shipment with 896769535 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896769535\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('ad1fbc68-b613-4269-b7a2-201a16d34232','905331602195','ALİHAN ARATEKİN adlı müşterinizin 221322415 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','cde89988-42b8-4e80-ba9b-ea5aebd3b21d',NULL),
('ad242f47-5876-4e1e-922b-e9480bd16043','905078062550','NUSRET VAROL VURAL adlı müşterinizin 598427868 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('ad2764d2-82a8-49b0-8ede-52d1eb3b0077','905335511664','Sayın yetkili; FATMA KAYA adlı müşterinize 371579541 nolu gönderinizin masa sehpa ürünü 4 parça halinde SM Tasarım adresinizden 24.04.2025 18:10:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('ad2daa42-59b6-4b23-af4e-2deacc759f21','905079358213','RAMAZAN DUMAN adlı müşterinizin 745343811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('ad3832fd-d85b-4ece-a7f4-5283618da7d5','01634672803','644877864 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9555 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644877864\n\nYour shipment with the number 644877864 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9555. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644877864\n\nBICARGO','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('ad3d7457-8a9f-464a-a01a-5e156187e91d','31648963092','Sayın SİAART MERMER, 663743560 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663743560\n\nDear SİAART MERMER, your shipment with 663743560 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/663743560\n\nBICARGO','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('ad43092b-2824-42a9-9b57-2188bf9705ee','905325000478','MAHMUT KAHRAMAN adlı müşterinizin 412109820 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('ad435eb6-49ab-451d-865b-5543a57923d5','436702040780','Sayın RECEP DUYGULU, 675139037 nolu gönderiniz 8525 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675139037\n\nDear RECEP DUYGULU, your shipment with 675139037 was delivered to you with the delivery code 8525. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675139037\n\n\nBICARGO','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('ad4c2c81-c572-46bb-abe0-4452dbfbaca0','4915777901877','428604775 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4785 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428604775\n\nYour shipment with the number 428604775 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4785. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428604775\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('ad4dec1c-f4d6-49d6-8706-329e8c5bf5ce','491728865904','644147833 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6489 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644147833\n\nYour shipment with the number 644147833 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6489. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644147833\n\nBICARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('ad545cdf-6181-40f8-87b4-c7df3a188bb1','4917672523276','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('ad569761-2c0d-4f5b-bf9f-92217d4d195d','4917685967745','37159654 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7611 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37159654\n\nYour shipment with the number 37159654 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7611. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37159654\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('ad5fa7c9-c772-44fb-a4a0-1e48552de349','33762586432','Sayın SAS CONFORT CONCEPT, 268163356 nolu gönderiniz 9073 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268163356\n\nDear SAS CONFORT CONCEPT, your shipment with 268163356 was delivered to you with the delivery code 9073. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268163356\n\n\nBICARGO','1','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL),
('ad60414d-da29-446f-9178-dcd808ce1166','491629703966','Sayın ASUDE FİLİZER, 613786429 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613786429\n\nDear ASUDE FİLİZER, your shipment with 613786429 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613786429\n\nBICARGO','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('ad61dea1-eedc-4b6a-8253-41c18078f534','491604615612','371413703 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8985 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371413703\n\nYour shipment with the number 371413703 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8985. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371413703\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('ad64c38c-5636-47ca-aca2-3b63b0de1efb','905325000478','ESKİŞEHİR adlı müşterinizin 412289507 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e3ac9fef-362e-47bc-802f-11dd3d8ca22d',NULL),
('ad692f01-9b9e-43de-8f0a-53d15148124c','905075277637','DENİZ ŞİMŞEK adlı müşterinizin 745824761 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('ad6b2104-b2be-4378-bf2e-f4d403d87309','4917684357195','Sayın DEKORASYON, 412771828 nolu gönderiniz 6391 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412771828\n\nDear DEKORASYON, your shipment with 412771828 was delivered to you with the delivery code 6391. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412771828\n\n\nBICARGO','1','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL),
('ad6b26ec-8a79-4ef8-9407-56ff3840e6fb','436763810050','Sayın HAKAN AKDEMİR, 478110382 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478110382\n\nDear HAKAN AKDEMİR, your shipment with 478110382 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478110382\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('ad6e7f23-8d97-4852-a3d0-228a75e997b5','5413112906','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('ad727a4d-1f78-427c-9000-a20558fa0c78','905331602195','ŞEYMA ŞANLI  adlı müşterinizin 221883606 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('ad729513-4fa1-4864-a66b-52690cbea478','33753468202','Sayın HÜLYA KÜTÜK, 268262151 nolu gönderiniz 3480 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/268262151\n\nDear HÜLYA KÜTÜK, your shipment with 268262151 was delivered to you with the delivery code 3480. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/268262151\n\n\nBICARGO','1','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('ad78f4b1-5ef9-4bbf-909b-863827046240','33782934072','478890979 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4600 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478890979\n\nYour shipment with the number 478890979 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4600. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478890979\n\nBICARGO','1','c2738111-51d8-4195-8709-efd9bbe4d309',NULL),
('ad7e97c5-d947-4524-90e7-bd33d225b52e','4915115356238','Sayın GÜLDEN KARADAĞ, 745291553 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745291553\n\nDear GÜLDEN KARADAĞ, your shipment with 745291553 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745291553\n\nBICARGO','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('ad7f9965-417f-4aaf-9ef6-347c1ab29ac4','905318109098','HÜSEYİN GÜNDÜZ adlı müşterinizin 455614339 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('ad7fcd51-586b-4b48-b2d4-0bbb955c31c5','905517075149','FARUK YÜCEL adlı müşterinizin 478867058 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('ad809459-12cb-4e1c-8b50-5efa4a6f5109','4917662337872','371261673 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371261673\n\nYour shipment with the number 371261673 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371261673\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('ad81ff76-f056-447f-92c5-38a98a673a0d','4915204346659','İletişim \n					Şöför Uğur Acar +905424435917','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('ad858dc7-8dd5-463d-a3c1-23c02ff97d35','4917632843611','Sayın YAVUZ GENÇ , 449801040 nolu gönderiniz 1120 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449801040\n\nDear YAVUZ GENÇ , your shipment with 449801040 was delivered to you with the delivery code 1120. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449801040\n\n\nBICARGO','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('ad89fd18-c2f6-4b35-a485-6c4bf2929c71','33647271942','Sayın ONUR PEKŞEN, 478958320 nolu gönderiniz 1886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478958320\n\nDear ONUR PEKŞEN, your shipment with 478958320 was delivered to you with the delivery code 1886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478958320\n\n\nBICARGO','1','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL),
('ad8bf94a-db0b-41a7-9f3c-94c6aff6451c','905461661672','Sayın yetkili; SUZAN EL MOUSSA(K) adlı müşterinize 644303406 nolu gönderinizin sandalye ürünü 3 parça halinde ALPEREN SANDALYE adresinizden 13.10.2025 12:40:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0abef697-325b-4fde-a364-d1f3c1d2b3f9',NULL),
('ad9d1e9b-8365-441c-a556-c4ef0ffefa22','33753794689','Sayın ÖZKAN ERDEM , 478862837 nolu gönderiniz 5864 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478862837\n\nDear ÖZKAN ERDEM , your shipment with 478862837 was delivered to you with the delivery code 5864. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478862837\n\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('ad9d9741-035e-4f71-981e-c2e13c3dc6d9','491777466973','Sayın ATAKAN OLCAYTÜRK , 910485088 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910485088\n\nDear ATAKAN OLCAYTÜRK , your shipment with 910485088 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910485088\n\nBICARGO','1','8259588b-b757-4856-a390-2e9ec4c403c8',NULL),
('ad9eac2e-7461-47b2-9adc-bb38d7cb11b2','905300961610','SEZER BEY adlı müşterinizin 126922033 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9f748f02-e185-45e0-9d24-ee921761490f',NULL),
('adae150a-0b7d-4b11-8252-2ee45f415cf0','905349208933','RÜVEYDA ŞAHİN adlı müşterinizin 12771217 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('adc397a3-bbf0-4bcf-a1c2-54d8d23ed94b','','ARZU adlı müşterinizin 734525943 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','0145552e-55dc-4a11-81f7-9a1580774cf9',NULL),
('adc8ebb2-efa8-48bf-bc59-35902d94aa29','4915783856117','Sayın MELEK IŞIK SSH, 644452767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644452767\n\nDear MELEK IŞIK SSH, your shipment with 644452767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644452767\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('adcb200d-701f-44b4-b631-88234db57fd5','1111111111111111','Sayın AYŞE, 745766580 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745766580\n\nDear AYŞE, your shipment with 745766580 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745766580\n\nBICARGO','2','ed0857c5-779d-41e7-b628-fdfa431cfa7c',NULL),
('add049e4-0eb9-4f3a-ac97-db12429ede4a','4915145859337','ŞÖFÖR İKETİŞİM\n					+905301824880','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('add3dce8-6fad-45bc-811e-195472dae517','436602528784','Sayın ZELİHA SARITAŞ, 644287826 nolu gönderiniz 10458 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644287826\n\nDear ZELİHA SARITAŞ, your shipment with 644287826 was delivered to you with the delivery code 10458. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644287826\n\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('add4598c-70c1-4342-9c18-c70a93e07cd9','491627321230','Sayın YASEMİN GÜNDOĞDU, 644340759 nolu gönderiniz 6537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644340759\n\nDear YASEMİN GÜNDOĞDU, your shipment with 644340759 was delivered to you with the delivery code 6537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644340759\n\n\nBICARGO','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('add923b5-42ba-4545-90ee-64a541ee1429','905350617509','ALTİN RAMADANİ adlı müşterinizin 61355212 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('addccf5a-1fda-4a76-abe9-4a8bc249d61b','491736564566','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','b51de0f1-3985-4283-b2eb-1cbb4a0743c9',NULL),
('addd137c-1277-4d54-a308-9441b57374db','905335511664','Sayın yetkili; YASEMİN DOĞAN adlı müşterinize 371215833 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 22.10.2025 16:12:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','43b4cdba-f0e7-4de7-ae8c-4174a5d3537a',NULL),
('addd2b5c-6a7b-424e-bc5f-b2d5aa2dd3a5','41775230627','221837026 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4326 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221837026\n\nYour shipment with the number 221837026 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4326. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221837026\n\nBICARGO','1','313a72ed-6534-4a76-a704-0b5ce01d87db',NULL),
('ade1ef09-fb30-4642-836e-74ea8c718e8a','905451571652','Sayın yetkili; ELA BAYRAM adlı müşterinize 531737045 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde PABLO HOME adresinizden 01.07.2025 15:09:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('ade83612-9f8d-4bb3-aed8-cb1c5aaca29d','905313340045','SELMA YILMAZ  adlı müşterinizin 437649696 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('adeb7164-4813-46ca-9535-4a7bcad55e4b','905078062550','Sayın yetkili; FATİH YÜKSEL adlı müşterinize 59878032 nolu gönderinizin baza başlık  ürünü 4 parça halinde ALBESSA HOME adresinizden 25.08.2025 11:48:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','383c0dfd-fe5e-4691-9b5f-187f66c80c04',NULL),
('adf0f264-1645-4bb8-a848-df6f2f055eb9','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin sehpa  ürünü 1 parça halinde Comfortlife  adresinizden 30.12.2024 13:52:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('adf24221-7a36-4ea7-83dc-4f94cf2acdf1','33652707979','Sayın SARAH KUSLU, 745502887 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745502887\n\nDear SARAH KUSLU, your shipment with 745502887 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745502887\n\nBICARGO','1','c8f99487-f21d-467c-9282-047182f5edbf',NULL),
('adff4b93-1f9b-425d-bc5c-8eaf8041394c','4917663775902','Sayın GELİNLİKÇİ, 412574307 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412574307\n\nDear GELİNLİKÇİ, your shipment with 412574307 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412574307\n\nBICARGO','1','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL),
('ae09ae43-fe9b-432e-98fe-ddf56ec111d7','32493977862','Sayın GODİNA REJEP , 221157320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221157320\n\nDear GODİNA REJEP , your shipment with 221157320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221157320\n\nBICARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('ae0c8e71-5944-439b-a012-ee6d5a1b60d1','33781907685','Sayın HAVVA GÜL, 976530579 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976530579\n\nDear HAVVA GÜL, your shipment with 976530579 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976530579\n\nBICARGO','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('ae0d769b-fa91-4c1e-8988-3927f33d2d00','4917680082781','Sayın KERİM ŞENTÜRK, 644966461 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644966461\n\nDear KERİM ŞENTÜRK, your shipment with 644966461 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644966461\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('ae0e38a5-fa4c-4e5b-9c22-c7dd3b12aa0b','905335511664','Sayın yetkili; İLAYDA GÜNEŞ adlı müşterinize 371528044 nolu gönderinizin köşe takımı, berjer, puf ürünü 5 parça halinde Elitis Home adresinizden 09.05.2025 16:01:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('ae13f895-eb76-44ff-b432-0d8c66423596','4369911340501','Sayın HİLAL DEMİR, 644145142 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644145142\n\nDear HİLAL DEMİR, your shipment with 644145142 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644145142\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('ae24a0c8-d390-4963-9da0-fe6ebb8c0a2c','905461661672','Sayın yetkili; HÜDAYİ HARMANCI adlı müşterinize 64422113 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:27:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('ae2589fb-58bc-4913-9eea-c419c81bd3bf','905079358213','HUSSRAH MUHAMAD adlı müşterinizin 745464679 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('ae2a3822-2589-4a8c-b549-4b1fd2c5bf17','33650178129','Sayın HAZAL BATUR, 437712381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437712381\n\nDear HAZAL BATUR, your shipment with 437712381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437712381\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('ae2b6a40-0e9c-4b31-8ce7-6442c04202e5','4917640388186','644879098 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7111 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644879098\n\nYour shipment with the number 644879098 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7111. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644879098\n\nBICARGO','1','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('ae312932-8a60-4c5d-b00d-0956664f2452','4369911307024','Sayın HARUN ERCAN, 127847689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127847689\n\nDear HARUN ERCAN, your shipment with 127847689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127847689\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('ae33c592-cfcc-4b09-8b30-8d3d36e97183','436644740291','517205085 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517205085\n\nYour shipment with the number 517205085 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517205085\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('ae382e1c-2d47-49e2-8094-a5ba99bda2f9','905335511664','MERYEM BULAK adlı müşterinizin 371408514 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('ae3b7aca-a710-48b0-9729-53f67ce43fa6','905078062550','MEHMET SEVİM KEBELİ adlı müşterinizin 59856960 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('ae3d0598-2001-4bc9-b660-330663a9fcd9','491623487541','428107185 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4689 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428107185\n\nYour shipment with the number 428107185 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4689. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428107185\n\nBICARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('ae426b29-40e7-4132-9cfd-abbfddfc88df','374747383838848','750717756 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8588 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750717756\n\nYour shipment with the number 750717756 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8588. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750717756\n\nBICARGO','2','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('ae428e08-0cfb-42b7-99ef-6bd2ecb6c8a7','11111111111','Sayın BERAT BÜNYAMİN , 412149383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412149383\n\nDear BERAT BÜNYAMİN , your shipment with 412149383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412149383\n\nBICARGO','2','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL),
('ae43c72a-6243-4735-b33b-581a4b29690a','33783071401','Sayın HÜSEYİN GÜNGÖRMEZ, 655111652 nolu gönderiniz 5078 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655111652\n\nDear HÜSEYİN GÜNGÖRMEZ, your shipment with 655111652 was delivered to you with the delivery code 5078. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655111652\n\n\nBICARGO','1','e5520c68-91f4-4a26-99dc-18b77f9d5c29',NULL),
('ae4741aa-03d3-41b0-bde3-e3f11806cd7d','436605331605','Sayın FADİME ERİMEZ, 598425779 nolu gönderiniz 10896 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598425779\n\nDear FADİME ERİMEZ, your shipment with 598425779 was delivered to you with the delivery code 10896. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598425779\n\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('ae4b1dcc-bb3f-4038-b83b-e4b8625b886a','33782212899','478971881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4201 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478971881\n\nYour shipment with the number 478971881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4201. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478971881\n\nBICARGO','1','fcef9e03-c97b-4bc4-bd20-a7e4d8eaa46b',NULL),
('ae4d4f0e-d379-4c44-b7e8-692b43a03e58','905078062550','Sayın yetkili; İBRAHİM GEYİK adlı müşterinize 598967733 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 14.10.2025 17:20:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ddba844-a989-499f-a6a5-be77dd52ea3a',NULL),
('ae5003bd-bb59-43b0-a655-021b2fc23e5e','33786128355','745523335 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9712 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745523335\n\nYour shipment with the number 745523335 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9712. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745523335\n\nBICARGO','1','e8639de3-a760-433a-8023-37feb4abcf62',NULL),
('ae502f3b-27e3-48ac-92bb-6269f7f48b85','4917660360530','745129121 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745129121\n\nYour shipment with the number 745129121 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745129121\n\nBICARGO','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('ae5264e1-3c77-4a8f-b581-1e94b46f55d5','4917662627829','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('ae530d43-b1ae-4c71-9e57-daee087c70bd','33786300110','Sayın İBRAHİM AKIN, 465524926 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465524926\n\nDear İBRAHİM AKIN, your shipment with 465524926 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465524926\n\nBICARGO','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('ae555812-15ab-4efd-89f4-5bf34c4bfe0d','4917631329672','745813483 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5941 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745813483\n\nYour shipment with the number 745813483 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5941. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745813483\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('ae56e57e-75aa-4ab9-9d36-74aa1c2770cb','905075277637','Sayın yetkili; YASEMİN YAŞA adlı müşterinize 745818939 nolu gönderinizin SAGA KÖŞE TAKIMI  ürünü 2 parça halinde ELİTİS adresinizden 18.03.2025 18:09:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('ae59220c-f13f-44ea-ba00-8c5082c35c44','905313340045','Sayın yetkili; DİLAN ÜNVER adlı müşterinize 437584936 nolu gönderinizin KÖŞE TAKIMI ürünü 7 parça halinde PABLO HOME adresinizden 23.07.2025 10:31:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('ae594fb7-20f8-476f-8b2d-ad71284677fb','33767299223','982742157 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7846 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982742157\n\nYour shipment with the number 982742157 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7846. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982742157\n\nBICARGO','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('ae63c60d-a1a5-47b9-ac6d-c27af93ea40a','905335511664','Sayın yetkili; FİLİZ DEĞER adlı müşterinize 371655670 nolu gönderinizin MASA ürünü 3 parça halinde SM Tasarım adresinizden 30.06.2025 20:18:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('ae693f46-04c4-4d5c-a5a8-e052321321fc','905331602195','Sayın yetkili; FURKAN KAYABAŞ adlı müşterinize 221631052 nolu gönderinizin 90x190 cm baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:38:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('ae6afe45-b17c-48a5-a757-295580da1a78','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin 2 tabaka mdf  ürünü 2 parça halinde Hıdır ılyas adresinizden 15.09.2025 13:01:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('ae7122a3-df4c-4ee8-bd31-cf17f944d355','436509938686','745538897 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2941 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745538897\n\nYour shipment with the number 745538897 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2941. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745538897\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('ae784ec9-842e-48a5-b1e7-0a1d92c5c645','4917661320036','Sayın FAİSAL İBRAHİM, 437319119 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437319119\n\nDear FAİSAL İBRAHİM, your shipment with 437319119 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437319119\n\nBICARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('ae785d24-af0f-4851-b87e-613fc052fe4a','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA YATAK ODASI ürünü 26 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:14:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('ae7b9955-b846-4487-bba9-1bcb96f062fe','4917671209008','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('ae7c2f21-46a7-45bc-a99d-d2822d524c86','905335511664','Sayın yetkili; SEMİH TÜRKOĞLU adlı müşterinize 371696812 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir Yeni adresinizden 06.10.2025 12:49:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('ae7d63b3-24ab-4b3b-9f7c-8c98b0af2e17','905079047428','REZA ÖMERİ adlı müşterinizin 449968881 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4cee8ce4-6f87-40e4-9944-489354d592c5',NULL),
('ae805501-897c-4e41-86df-95f2b8fefc96','33782212899','Sayın AYŞE KONDAL, 478530755 nolu gönderiniz 1369 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478530755\n\nDear AYŞE KONDAL, your shipment with 478530755 was delivered to you with the delivery code 1369. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478530755\n\n\nBICARGO','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('ae86a778-3ea1-4dee-ae1e-c38e123953fd','491749868075','Sayın SILA MARKET, 231712628 nolu gönderiniz 7961 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231712628\n\nDear SILA MARKET, your shipment with 231712628 was delivered to you with the delivery code 7961. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231712628\n\n\nBICARGO','1','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL),
('ae8ac927-7a3a-4108-b6d2-0125e7f8f8a3','905461661672','Sayın yetkili; ERDEM ŞAHİN(K) adlı müşterinize 644522996 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:26:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','56c417cf-c265-4351-92f6-09fa93a1f112',NULL),
('ae8db5eb-03d3-4f77-ab0f-18400a204046','905079047428','Sayın yetkili; ERDEM DELİ  adlı müşterinize 449983232 nolu gönderinizin Köşe takımı.  2 paket sandalye ürünü 3 parça halinde Fatura adresinizden 07.02.2025 14:38:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','569bba17-5ac8-4ea3-bd0b-b8896ac22b68',NULL),
('aea50b46-addd-41cf-9aef-6c395acc70f9','905335511664','Sayın yetkili; SAFİYE TINCA adlı müşterinize 371194748 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:13:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('aea70a42-e6dc-4f11-8509-89dcd59c0ba3','33749069844','Sayın YÜKSEL KILIÇ, 478339779 nolu gönderiniz 5777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478339779\n\nDear YÜKSEL KILIÇ, your shipment with 478339779 was delivered to you with the delivery code 5777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478339779\n\n\nBICARGO','1','8a01daee-3535-4440-8996-fc7c3e2f3de0',NULL),
('aea76b05-4a38-4f0e-bcdc-b9d1f6c1e66a','905318109098','SEMRA TERLEMEZ adlı müşterinizin 45527400 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','bb868109-aa10-4576-90c5-cea9bda06633',NULL),
('aeb299bf-054b-4000-a807-173c9adb4272','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL ŞİFONYER AYNALI ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('aeb2baf8-2651-437f-bd25-f7c8b3a7968d','4915735324307','371381951 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8319 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371381951\n\nYour shipment with the number 371381951 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8319. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371381951\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('aeb4ea32-5ab9-4bd4-8a83-38f000b5639c','05362285629','Sayın FERİDUN BAYER, 959168443 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959168443\n\nDear FERİDUN BAYER, your shipment with 959168443 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/959168443\n\nBICARGO','2','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('aeb5bf11-b219-47a7-8a0a-a2233fe777d3','905454259202','ÖMER KOLAT adlı müşterinizin 478733683 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL),
('aebd15a5-46ff-4d38-ba4a-1cd9a2a4545c','905075277637','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin ASOS GOLD KARYOLA ŞİFONYER KOMODİN  ürünü 14 parça halinde ODALIFE  adresinizden 18.09.2025 16:33:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('aec4786c-0567-4aa4-b364-d380951a36ae','905461661672','BURAK YAKUT adlı müşterinizin 644975430 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('aec7b50d-ffd1-4bfd-bbd7-34163589e64d','4917779666161','Sayın KIYMET DALMAN(K), 644742878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644742878\n\nDear KIYMET DALMAN(K), your shipment with 644742878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644742878\n\nBICARGO','2','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('aec9cdc7-505b-42db-8dd6-cd978cddfc97','905331602195','BÜŞRA NUR ÇELEBİ adlı müşterinizin 221278187 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54427ae4-0cae-449c-86ba-ad49870f64d2',NULL),
('aeccd226-f21b-4624-a98e-aff1749d5281','491638012299','Sayın KEYVAN GHADİMİ, 478363734 nolu gönderiniz 6454 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478363734\n\nDear KEYVAN GHADİMİ, your shipment with 478363734 was delivered to you with the delivery code 6454. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478363734\n\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('aecddb9f-0832-4d42-aae3-aed46a7703d4','905336367828','NATASH SALİMİ adlı müşterinizin 982196265 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','53b6d665-2c5b-4d51-b191-51a5a0be9665',NULL),
('aecf63cf-f69c-465b-ab0b-c20b277554c2','33677050522','478209702 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6908 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478209702\n\nYour shipment with the number 478209702 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6908. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478209702\n\nBICARGO','1','22239f89-5592-49c8-b2c4-dc804b06b788',NULL),
('aed031b0-1697-4c5f-94e7-067124677767','11125363838374','Sayın MAİL BOXES ETC, 223923203 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223923203\n\nDear MAİL BOXES ETC, your shipment with 223923203 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223923203\n\nBICARGO','2','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL),
('aed1042a-3dea-4c87-95dc-9dd0bd9a1dd1','905325000478','BOLL TRADE adlı müşterinizin 412173308 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('aed1559d-4110-49ed-9443-456833bc90ec','905357955726','TEKİN ÇİLLİ adlı müşterinizin 315959949 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8559ffd8-49b0-421d-ad48-3ec35e2083d7',NULL),
('aed417ac-d7e5-4677-9dee-50dd6ec88af9','31616177298','Sayın L.DOUİRİ, 221997933 nolu gönderiniz 10587 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221997933\n\nDear L.DOUİRİ, your shipment with 221997933 was delivered to you with the delivery code 10587. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221997933\n\n\nBICARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('aed41a4f-f36f-47df-aa8c-9f9d338b1366','491743202967','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('aed71ac3-f693-4c28-b856-b37f62c7005a','905336367828','ELİF GABEL  adlı müşterinizin 982536674 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('aed72b0e-1f1f-4cb9-8522-bf8275ad72e3','436603406293','SERHAT MOUEMİN adlı müşterinizin 675799375 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('aeda6cce-5930-4456-8fd5-40d43a3a5c25','31641824655','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('aeda9667-cc99-4a03-94c2-f43d22ed1981','495118315683','Sayın FEMİ SALİHİ, 644100790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644100790\n\nDear FEMİ SALİHİ, your shipment with 644100790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644100790\n\nBICARGO','2','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('aedf8c45-fe1e-401f-bc15-616d8e8269d0','33617127634','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('aee31be4-00f9-4c00-b116-c1b3a6c00d86','905079047428','Sayın yetkili; SERHAT ERDOĞMUŞ adlı müşterinize 449558519 nolu gönderinizin 3-3-1-1.  Koltuk takımı ürünü 4 parça halinde Fatura adresinizden 10.01.2025 14:13:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d00138fa-29c9-4e79-afd4-bb7cf83a496a',NULL),
('aee445c2-50bc-4694-945f-cf782ddb4ff3','905335708965','İLDA TOKOVİÇ adlı müşterinizin 735520226 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c7aca399-e42c-4cf3-aaff-22648818fcfc',NULL),
('aee49462-bdaa-429e-b122-5fb185f99c78','32490219325','Sayın MUSTAFA MÜEZZİNOĞLU , 428538007 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428538007\n\nDear MUSTAFA MÜEZZİNOĞLU , your shipment with 428538007 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428538007\n\nBICARGO','1','5a45aa6b-67e0-4e93-835b-88c97d490f10',NULL),
('aee571ce-4465-47a0-a871-6ea478e872ac','3365262758','Sayın ALİ ÇETİN , 982817887 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982817887\n\nDear ALİ ÇETİN , your shipment with 982817887 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982817887\n\nBICARGO','2','e74ec79a-3fe1-4dd7-9872-a4ff0f952163',NULL),
('aee8852d-d752-4e12-8785-fcdc5819b6cf','310645034303','982984016 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7101 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982984016\n\nYour shipment with the number 982984016 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7101. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982984016\n\nBICARGO','1','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL),
('aeee49ee-e85e-4979-905e-6608515178b4','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO 6 KAPAKLI DOLAP-PAKET 9/8  ürünü 10 parça halinde LİDYA MOBİLYA  adresinizden 19.09.2025 14:38:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('aef7842d-acd8-4db6-b92e-4bedd902a016','905517075149','CAN KUL  adlı müşterinizin 478161304 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('aef8f93a-f56b-4600-84d5-791a1410b461','905313340045','Sayın yetkili; IVANA ELİAS adlı müşterinize 437426295 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 26.08.2025 12:10:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('af024e3c-2069-4e5b-882f-f43d95794061','905079358213','KAMEL NECBA adlı müşterinizin 745849265 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88e3316c-4816-449f-a946-ceba121ee2bb',NULL),
('af034cad-ab31-4bdc-96fc-46750470d9c3','491636378552','Sayın WASİ BAHİR , 613373885 nolu gönderiniz 7661 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613373885\n\nDear WASİ BAHİR , your shipment with 613373885 was delivered to you with the delivery code 7661. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613373885\n\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('af046dea-3267-4fb9-ac4d-f0df33da4291','905336367828','MEHMED SHABAN  adlı müşterinizin 982893962 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('af07ef06-1db8-44ee-906d-cdfa8fae998b','49911330027','910943161 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910943161\n\nYour shipment with the number 910943161 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910943161\n\nBICARGO','2','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL),
('af0e876e-8f52-46a0-99a8-7557cb2a2f65','05393958712','100655378 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5553 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/100655378\n\nYour shipment with the number 100655378 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5553. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/100655378\n\nBICARGO','2','7e6b3d54-6e1a-4c75-aad5-52fb31d0c647',NULL),
('af19ceae-5f4b-407e-ad26-c72e3ec8f7e3','905428209234','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin PRADA MASA 6 SANDALYE ürünü 5 parça halinde SERBEST MOB adresinizden 13.05.2025 11:22:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('af2265ce-ead3-4d0b-adca-7979b107d01c','4917670801496','İLETİŞİM \n					+905537890975 GÖKHAN DEMİRCİ (ŞOFÖR)','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('af23c2fd-e506-4592-a69b-d15a8080b03e','905079358213','MUSTAFA IBRYAMOV adlı müşterinizin 745907299 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('af246d7d-3099-48ca-9d2f-04b51f48387e','905325000478','DEKORASYON adlı müşterinizin 412771828 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e5a42a0c-9b4d-47f2-a979-39ceffa1a73a',NULL),
('af2c5026-2e77-4e4b-915f-51c4a2e37a55','33753822818','449806465 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449806465\n\nYour shipment with the number 449806465 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449806465\n\nBICARGO','1',NULL,NULL),
('af306a96-9e72-4e47-8177-190dfcbd28b4','436609400015','657192716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657192716\n\nYour shipment with the number 657192716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657192716\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('af324c43-eb5a-4115-835a-e5d59a027442','905363385813','Sayın yetkili; ÖZKAN KUYUCU adlı müşterinize 976121570 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde SALON KOLTUK adresinizden 18.06.2025 14:01:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('af32ab9b-2d28-45f9-ba9b-e8aeb4f8056f','905461661672','Sayın yetkili; ALEYNA AKAY adlı müşterinize 644500765 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde MODO KOLTUK adresinizden 03.07.2025 15:44:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('af359268-09db-4ac5-af53-963e6ffa74c3','40756878017','982163675 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2489 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982163675\n\nYour shipment with the number 982163675 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2489. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982163675\n\nBICARGO','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('af3937ad-e264-48e9-b425-c76bba2fdc0e','33781020589','Sayın NESLİHAN KÖSEM		, 910316067 nolu gönderiniz 1901 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910316067\n\nDear NESLİHAN KÖSEM		, your shipment with 910316067 was delivered to you with the delivery code 1901. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910316067\n\n\nBICARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('af4159ce-c0e6-4f2c-a794-42518804969a','905075277637','BERKANT YAŞA SSH  adlı müşterinizin 745712790 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('af45b3cb-c11f-46e3-9f1b-399bcbf72993','905301592882','RUKEN ŞAKIR adlı müşterinizin 910187142 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('af483162-aba1-402c-bd7d-708bb7f18e57','33632415512','43792999 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3867 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/43792999\n\nYour shipment with the number 43792999 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3867. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/43792999\n\nBICARGO','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('af4d877b-6e46-475a-a5af-fbabd3d9feac','905461661672','SUAT TUGAL adlı müşterinizin 644443664 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('af535699-e033-4c43-9aa2-1c05e9f70a90','4917681017112','598961911 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9315 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961911\n\nYour shipment with the number 598961911 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9315. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598961911\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('af55044c-5adf-4891-b65e-ad4cc54d7a0b','01705204782','Sayın GAMZE KOCAMAZ, 644682734 nolu gönderiniz 3419 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644682734\n\nDear GAMZE KOCAMAZ, your shipment with 644682734 was delivered to you with the delivery code 3419. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644682734\n\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('af5a6297-2095-46ed-a07b-7f6c8660b91f','905313340045','ELVAN DURSUN adlı müşterinizin 437158505 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('af5afb25-0646-4f46-9e87-c126393f14b1','9054439559150','İSMET  IRMAK adlı müşterinizin 614659832 nolu gönderisi 119 parça halinde yola çıkmıştır.','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('af6050cd-37c8-48ed-a49a-cd79a8864116','436766459770','Sayın KENAN BAYAR, 74568874 nolu gönderiniz 8311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74568874\n\nDear KENAN BAYAR, your shipment with 74568874 was delivered to you with the delivery code 8311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74568874\n\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('af609e93-e236-4081-b312-c1192f952c4a','017684739114','Sayın RAYAN SLEİMANİ , 644403373 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644403373\n\nDear RAYAN SLEİMANİ , your shipment with 644403373 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644403373\n\nBICARGO','2','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('af724525-9aa2-4790-8021-482446cfffb0','4917631090224','Sayın SİBEL HİTAY, 437812245 nolu gönderiniz 7552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437812245\n\nDear SİBEL HİTAY, your shipment with 437812245 was delivered to you with the delivery code 7552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437812245\n\n\nBICARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('af779473-115f-4752-bed2-74cb156eebc7','905054335859','KÜBRA ARPA adlı müşterinizin 501588943 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('af7bb106-cc92-4da4-bccd-42d3b91935b6','4653467627566257','Sayın SSHLAR, 817893266 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817893266\n\nDear SSHLAR, your shipment with 817893266 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817893266\n\nBICARGO','2','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('af7ee287-bb54-40dc-b574-54fe68b499b7','905461661672','MİHRİBAN ÖZEN adlı müşterinizin 644776565 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('af811147-c471-48b4-aca1-49bd77c3be76','32460966676','221591105 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10795 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221591105\n\nYour shipment with the number 221591105 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10795. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221591105\n\nBICARGO','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('af89704f-310d-4a12-8fa3-aa2ad3c6ff30','905350617509','GALİNA KAMERER  adlı müşterinizin 613499620 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('af8c2b55-2416-4d09-902a-3f2d7a9f628a','3247788295','428659303 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428659303\n\nYour shipment with the number 428659303 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428659303\n\nBICARGO','2','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('af917913-7a3e-46eb-830d-31a469132b6c','905442774505','HARUN YILDIRIM adlı müşterinizin 657782 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','410bd7e1-97fe-4832-9494-5d11b92da461',NULL),
('af97eaec-1db6-4108-85d4-52d16edcb090','4917684656802','289168915 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/289168915\n\nYour shipment with the number 289168915 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/289168915\n\nBICARGO','1','cf345387-d0fa-473f-bd0c-f50c25450c85',NULL),
('af99da5f-280f-4424-9ab7-ca4d5036e09d','31627024701','657784193 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6596 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657784193\n\nYour shipment with the number 657784193 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6596. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657784193\n\nBICARGO','1','3b1547c4-588c-40d9-9372-6dd0bc1df655',NULL),
('af99fd3f-99a8-4387-a098-552e6256aeda','905535521975','ONUR MAHAR adlı müşterinizin 019113818 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f09498b2-ab9d-4831-be05-04151fd3f0f4',NULL),
('af9ba83a-a9e5-4430-abb0-fbfe64b01ea0','436603831520','Sayın SEDAT ÇİFÇİ , 745538897 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745538897\n\nDear SEDAT ÇİFÇİ , your shipment with 745538897 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745538897\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('af9e236e-d385-43e8-9267-287fc6ac7cc3','4915115979347','Sayın CAN KUL , 478161304 nolu gönderiniz 1269 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478161304\n\nDear CAN KUL , your shipment with 478161304 was delivered to you with the delivery code 1269. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478161304\n\n\nBICARGO','1','a7f2c8a1-4d37-45da-904c-4406f86faab9',NULL),
('af9fc255-c58d-4261-98a8-9af9cc557839','905350617509','Sayın yetkili; TALA KURAEZAN adlı müşterinize 613137842 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde Fatura adresinizden 01.07.2025 17:49:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL),
('afa2c83c-53bf-4399-9706-038e20ccae2f','33609726291','Sayın CÜNEYT ŞİMŞEK , 517512652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517512652\n\nDear CÜNEYT ŞİMŞEK , your shipment with 517512652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517512652\n\nBICARGO','1','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL),
('afa42eb9-873a-4e3f-a754-32dac1c0498a','905331602195','Sayın yetkili; ERKAN TAŞDELEN  adlı müşterinize 221397270 nolu gönderinizin Marmo sehpa  ürünü 2 parça halinde Fatura adresinizden 23.01.2025 11:00:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('afa9335a-5bc3-410e-b196-bea113b5405e','4917661928608','Sayın NURGÜL ÖZDEMİR, 75056602 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/75056602\n\nDear NURGÜL ÖZDEMİR, your shipment with 75056602 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/75056602\n\nBICARGO','1','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL),
('afaa26e0-d935-45e6-9a40-f7e131bd1e45','33763157609','221624848 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4878 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221624848\n\nYour shipment with the number 221624848 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4878. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221624848\n\nBICARGO','1','e5dbe9b0-3e6a-4681-b733-bb6bd4acb5cf',NULL),
('afb38bd8-cad0-4a73-86b6-90186afa1238','905079358213','FİKRET AYDIN adlı müşterinizin 745439695 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bf9e7e37-a303-4c99-91c8-1dc42a4c5e72',NULL),
('afb4027d-3206-4185-8e91-9ce80bc93251','905335708965','EMEL adlı müşterinizin 735258843 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL),
('afbae543-f6ad-4b69-a3e6-8fe66b060cf9','905461661672','Sayın yetkili; DUYGU DEMİRHAN adlı müşterinize 644703173 nolu gönderinizin Köşe koltuk  ürünü 5 parça halinde LENTE HOME adresinizden 29.05.2025 14:19:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('afbfc65d-3af3-46ab-ab38-268c75663765','905335708965','ANGELİNA KHALCHYTSKAYA adlı müşterinizin 73574376 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b516169-2e1d-421d-a411-a20956666225',NULL),
('afc4d3f8-ca87-4adc-977d-e6d0d2eeb4e9','32472837629','Sayın ÖMER YILMAZ, 644763473 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644763473\n\nDear ÖMER YILMAZ, your shipment with 644763473 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644763473\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('afc5b0f2-552b-44a2-bc7c-f7e8f4dd702d','905532675926','KADİR SÜLÜN adlı müşterinizin 428696149 nolu gönderisi 51 parça halinde yola çıkmıştır.','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('afc76d3e-4251-49e5-a4a8-31a777c5bee6','491785431226','Sayın KHALED SEMMO , 613175888 nolu gönderiniz 1056 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613175888\n\nDear KHALED SEMMO , your shipment with 613175888 was delivered to you with the delivery code 1056. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613175888\n\n\nBICARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('afc90741-1de3-418d-a37e-acf7307a475b','905335511664','Sayın yetkili; ERDEMCAN GÖZÜBÜYÜK adlı müşterinize 37159654 nolu gönderinizin yemek masası ürünü 2 parça halinde SM Tasarım adresinizden 23.05.2025 18:13:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('afd3f279-8b4b-490f-bda2-4171eb5bf310','4915566234500','Sayın RANİA PİSİT, 613464926 nolu gönderiniz 8239 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613464926\n\nDear RANİA PİSİT, your shipment with 613464926 was delivered to you with the delivery code 8239. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613464926\n\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('afda23bf-dbf2-4892-8fd5-b020f3ab8a8e','491578629363','Sayın MERYEM KAYA, 644178445 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644178445\n\nDear MERYEM KAYA, your shipment with 644178445 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644178445\n\nBICARGO','2','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('afdc2a67-f104-4c79-b535-1b9d461d0acd','31687211172','Sayın GÖKHAN EYCAN , 478751440 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478751440\n\nDear GÖKHAN EYCAN , your shipment with 478751440 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478751440\n\nBICARGO','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('afdfe7f9-842d-44b3-8d96-f7ca7dcc9c83','33769293116','449239758 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6451 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449239758\n\nYour shipment with the number 449239758 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6451. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449239758\n\nBICARGO','1','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL),
('afe4a7b0-0ced-4d5c-acdb-c3a321700c2e','905335708965','SUAT adlı müşterinizin 248103321 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','791e33b7-8896-46f8-95f8-717ff7671574',NULL),
('afe7671a-af3c-45e2-87ec-e7017e5a4a7c','33668667974','Sayın BAL CİHAN, 614908568 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614908568\n\nDear BAL CİHAN, your shipment with 614908568 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614908568\n\nBICARGO','1','f169361d-a98a-44cd-9be5-0d014e87b896',NULL),
('afe84af8-36e8-4a16-afa4-f4aafb5076b6','905461661672','Sayın yetkili; ÖZLEM KIZILARSLAN adlı müşterinize 644650618 nolu gönderinizin MASA AYAĞI ürünü 2 parça halinde Masami Mobilya adresinizden 27.03.2025 14:17:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('afebc666-653a-4a6f-8978-258b0852e023','905079358213','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL YEMEK ODASI ürünü 10 parça halinde Fatura adresinizden 16.05.2025 18:12:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('afec6dbb-f422-4e91-8bb9-314e14190f31','33769997691','Sayın KENAN ACER		, 910684336 nolu gönderiniz 7115 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910684336\n\nDear KENAN ACER		, your shipment with 910684336 was delivered to you with the delivery code 7115. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910684336\n\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('aff2297b-a9a1-431e-8d0b-a8063454e13d','32491914908','Sayın EDİ, 412384414 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412384414\n\nDear EDİ, your shipment with 412384414 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412384414\n\nBICARGO','1','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL),
('aff4ea9e-00de-40b7-b3bd-bb2c138b1793','41794403640','486181220 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2893 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486181220\n\nYour shipment with the number 486181220 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2893. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486181220\n\nBICARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('affc6845-408c-432a-8953-338bd3e682b9','4915566183812','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('affd9983-e4c3-4838-9c9f-286e0421c6de','4917630185368','Sayın MELİH ÜNAL, 478235858 nolu gönderiniz 9357 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478235858\n\nDear MELİH ÜNAL, your shipment with 478235858 was delivered to you with the delivery code 9357. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478235858\n\n\nBICARGO','1','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL),
('affe25ca-5092-4ccd-a98a-09eed22c8067','004917642976478','Sayın İBRAHİM BULUT, 73570714 nolu gönderiniz 5696 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73570714\n\nDear İBRAHİM BULUT, your shipment with 73570714 was delivered to you with the delivery code 5696. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73570714\n\n\nBICARGO','2','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL),
('b00be775-2f9a-42a4-89c2-f1d4736c177d','905368336516','Sayın yetkili; AKKİZ TOPCU adlı müşterinize 515129438 nolu gönderinizin Masa sandalye ürünü 11 parça halinde masami adresinizden 07.07.2025 14:46:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('b014083a-e0fa-4e27-80ee-f31edcca047a','905079047428','Sayın yetkili; Ayşegül telli adlı müşterinize 449962472 nolu gönderinizin Köşe takımı 3 paket sandalye 1 orta sehpa  ürünü 3 parça halinde Fatura adresinizden 01.11.2024 10:44:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('b015383c-3b9b-43ee-84c3-6b9a4289ad1b','905075277637','İBRAHİM BAĞCI 1 adlı müşterinizin 745832267 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ad43916-6b71-4844-8c13-9ae4882c08fd',NULL),
('b018a65e-0982-4a3d-a30a-fe342266a361','1111111111','248352114 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9783 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248352114\n\nYour shipment with the number 248352114 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9783. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248352114\n\nBICARGO','2','adf0440c-3715-4603-a3a4-91b6f557e095',NULL),
('b018fe31-3bc1-4642-a244-d00af4a7bf90','905078062550','SİHAM MAHMOUD adlı müşterinizin 598280715 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('b01da1d2-a053-428d-8704-6fcb087b48b7','491789273072','Sayın ARİC AKA, 221350993 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221350993\n\nDear ARİC AKA, your shipment with 221350993 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221350993\n\nBICARGO','1','ac7835d5-bf3f-4244-9351-a2bddd683e96',NULL),
('b0209dab-e3c2-4bdc-94bf-3d639491e1cc','491774646467','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('b022037e-f677-40ea-9e78-c355dd936061','4917623983797','Sayın SAVAŞ AKTAŞ, 478815317 nolu gönderiniz 1910 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478815317\n\nDear SAVAŞ AKTAŞ, your shipment with 478815317 was delivered to you with the delivery code 1910. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478815317\n\n\nBICARGO','1','9ad0f9c0-122b-4939-b7d3-2bbf042048fd',NULL),
('b02647e2-d3b4-4444-91c9-0660acfe4df7','4917670742870','644423895 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644423895\n\nYour shipment with the number 644423895 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644423895\n\nBICARGO','1','8e9de283-057d-4b23-a2a9-ce528f93257d',NULL),
('b0284215-6111-4d4a-9b29-dfb6883948e1','491727322843','İletişim \n					Şöför Uğur Acar +905424435917','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('b029bc33-55c1-4bd2-8f88-9b85fe1c7e1b','491748888386','Sayın ÖMER ÇALIK SSH , 7456984 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7456984\n\nDear ÖMER ÇALIK SSH , your shipment with 7456984 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/7456984\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('b02a3b91-d429-4006-9289-a1d91cc4fb80','905365908694','ZEHRA ÖZALP adlı müşterinizin 223963997 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('b02a7f2a-0c30-46c1-8e0a-b777a41efe20','905394878216','MUSA LÖK adlı müşterinizin 517521279 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('b02e777c-89b4-485a-9181-c2587c33c78b','4915772539240','598412225 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7006 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598412225\n\nYour shipment with the number 598412225 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7006. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598412225\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('b0329b42-28ba-41de-bfa3-80d729c66417','905454259202','SULTAN GÖR adlı müşterinizin 478212601 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','cb15c1ae-0f66-4f47-875b-dcc051ecb1cb',NULL),
('b0330d93-8d05-46ed-8069-207a36f1f6d9','4915778860967','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('b037bc2b-9108-4f4e-b379-2ec727130242','905517075149','ÖZKAN ERDEM  adlı müşterinizin 478784133 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('b038b4be-d5d7-4a29-9b68-ec896ae46416','33642608703','478978353 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8486 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478978353\n\nYour shipment with the number 478978353 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8486. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478978353\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('b041d05e-998e-4a2a-971b-910b8d6574af','905304259202','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478559056 nolu gönderinizin yatak odası ürünü 21 parça halinde acca adresinizden 20.05.2025 17:01:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('b05141dc-d9e8-4817-80f5-d90d653e2164','905075277637','Sayın yetkili; BURAK SARIKAYA adlı müşterinize 745816946 nolu gönderinizin DELUXE 180LİK YATAK 2 ADET  ürünü 2 parça halinde Fatura adresinizden 30.09.2025 12:29:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('b05abec6-33a3-4175-8bbb-e3681173eb2e','436602434621','745761149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8488 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745761149\n\nYour shipment with the number 745761149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8488. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745761149\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('b06195b2-9b87-4695-a30f-d3691808c480','436508346455','Sayın HİLAL DEMİR, 644145142 nolu gönderiniz 1791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644145142\n\nDear HİLAL DEMİR, your shipment with 644145142 was delivered to you with the delivery code 1791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644145142\n\n\nBICARGO','1','85071203-536b-4dca-b6ab-eb378a6c9c05',NULL),
('b068ad5e-cf74-4842-a1f8-113a171c63ec','32485863945','982194447 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982194447\n\nYour shipment with the number 982194447 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982194447\n\nBICARGO','1','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL),
('b06ba206-47ec-4aab-8f00-f24bc7f3829c','330235750785','Sayın MİLLE FİERRA COELHO  LUDİVİNE , 478505417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478505417\n\nDear MİLLE FİERRA COELHO  LUDİVİNE , your shipment with 478505417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478505417\n\nBICARGO','2','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('b06e5ca3-fabb-4f7a-80c6-511b658a0419','004917278170406','Sayın HELİN SICAK, 735298003 nolu gönderiniz 9242 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735298003\n\nDear HELİN SICAK, your shipment with 735298003 was delivered to you with the delivery code 9242. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735298003\n\n\nBICARGO','2','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL),
('b078338d-b610-4697-8f65-ca8d95727196','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin YAN SEHPA ürünü 2 parça halinde Fatura adresinizden 15.10.2025 11:20:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('b07b12e8-aa88-47c7-a013-3b3cc76de6fc','00491754696524','Sayın YATAK ODASI, 248143023 nolu gönderiniz 8571 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248143023\n\nDear YATAK ODASI, your shipment with 248143023 was delivered to you with the delivery code 8571. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248143023\n\n\nBICARGO','2','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL),
('b0800b54-602f-4a80-ac6d-113c80778ace','905301592882','Sayın yetkili; BERKAN AĞIRMAN adlı müşterinize 910899167 nolu gönderinizin Henna masa+ orta sehpa ürünü 5 parça halinde Fatura adresinizden 28.05.2025 17:25:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('b0824698-fd05-4221-8a99-a4e64a06b16a','905313340045','Sayın yetkili; MERVE KARADAVUT adlı müşterinize 437233015 nolu gönderinizin berjerler ürünü 3 parça halinde dorthome ofis adresinizden 22.04.2025 16:55:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d55a789-9635-407b-8c56-f61ca0500289',NULL),
('b082a456-1e31-4bad-b127-93205027eec5','905335511664','MEHMET ORHAN adlı müşterinizin 371122828 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('b08b5e24-d6b9-41d7-bb2f-7c26e4d1eeea','33781907685','976530579 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2359 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976530579\n\nYour shipment with the number 976530579 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2359. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976530579\n\nBICARGO','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('b08f0f71-609e-4550-9479-15defc7d3f06','4915204222121','371514006 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2109 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371514006\n\nYour shipment with the number 371514006 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2109. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371514006\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('b093abb3-9549-483a-b0f3-a57ea4f4cbbd','33652652450','DRİVER\n					ADNAN\n+905354622027','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('b093cd7e-ace7-44ee-9c6c-689d2e76c8ff','31638446688','248746531 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2684 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248746531\n\nYour shipment with the number 248746531 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2684. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248746531\n\nBICARGO','1','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL),
('b099ba18-6bb3-4fc0-a7c9-46ad387253da','4915734590367','Sayın HUSSEİN NAKAL, 531606130 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531606130\n\nDear HUSSEİN NAKAL, your shipment with 531606130 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531606130\n\nBICARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('b09c1c09-e0d6-4906-8b20-db44e1b551ec','905319678931','TÜRKAN DEMİR adlı müşterinizin 570121325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed98c31c-308d-4856-9efd-a92eb1603386',NULL),
('b09fb5d2-fdfb-4a7c-8623-75f443f11db0','4917640498968','Sayın AYLA BAYKAL, 644606140 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644606140\n\nDear AYLA BAYKAL, your shipment with 644606140 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644606140\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('b0a8b201-eb0f-4c49-99f7-38632fcc5137','41792382873','Sayın SILAMNIKU ALTRIN, 371396579 nolu gönderiniz 9450 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371396579\n\nDear SILAMNIKU ALTRIN, your shipment with 371396579 was delivered to you with the delivery code 9450. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371396579\n\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('b0aaff22-ec71-4a63-a099-20c852682967','905424434016','HÜSEYİN KAYAOĞLU adlı müşterinizin 853766753 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL),
('b0ab0194-bfca-4120-b513-d4d95b30f771','905461661672','Sayın yetkili; HATİCE ÇETİN(K) adlı müşterinize 644834421 nolu gönderinizin köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 18.09.2025 16:58:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('b0acb4ce-bcfa-4d33-a2b8-40286c6c39e1','33786958976','Sayın ASLI ALTINTAŞ, 478775583 nolu gönderiniz 1173 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478775583\n\nDear ASLI ALTINTAŞ, your shipment with 478775583 was delivered to you with the delivery code 1173. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478775583\n\n\nBICARGO','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('b0af6e3d-6e89-4dbb-af76-a7bf7dff8c5d','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin Köşe Takımı + Berjer ürünü 8 parça halinde Fatura adresinizden 03.10.2025 11:58:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('b0b6694d-7916-4101-8a73-5fa07f61ae1c','4915254110873','Sayın FATİH ŞEKER, 910891585 nolu gönderiniz 8368 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910891585\n\nDear FATİH ŞEKER, your shipment with 910891585 was delivered to you with the delivery code 8368. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910891585\n\n\nBICARGO','1','a69f955e-df2b-44dd-8811-569ba620bc40',NULL),
('b0b8a975-2a57-4ab7-852d-07c630a89212','4917683202035','Sayın FİLİZ DEĞER, 371655670 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371655670\n\nDear FİLİZ DEĞER, your shipment with 371655670 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371655670\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('b0bd9a3f-e322-48d0-93fc-108a58a2d58d','905454259202','GÜLCE GÜRLER YEGİN adlı müşterinizin 478484020 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','f31e552e-c834-40f4-b2b5-57faf61eb7a0',NULL),
('b0c1e3ec-02fe-4051-af5a-12bb590e2e52','4917632498561','Sayın FEMİ SALİHİ, 644100790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644100790\n\nDear FEMİ SALİHİ, your shipment with 644100790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644100790\n\nBICARGO','1','2960c047-80c3-41d4-a2b6-646498478977',NULL),
('b0d0d887-55ce-4850-9c4b-078addf1d578','436767948204','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL);
INSERT INTO `whatsapp_messages` VALUES
('b0d0e154-ad0d-4ecc-b23c-eb7fa4eeff59','436763436191','745485271 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4227 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745485271\n\nYour shipment with the number 745485271 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4227. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745485271\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('b0d8e574-23b3-4ec6-bccc-a09a273f643e','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin DUVA ROMA KOLTUK TAKIMI 3+3+1+1 ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('b0db4554-1ac1-49ef-8d39-ee285d426f8e','905363385813','Sayın yetkili; NAFİLE ÖCALAN adlı müşterinize 976821188 nolu gönderinizin TV ÜNİTE ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:55:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('b0e07e89-9551-4392-b137-364af62a8d8d','905335511664','ORHAN GAZİ ÇEKİCİ adlı müşterinizin 371699257 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('b0f1573c-0d3b-420d-8a70-0f756ff08562','4915778860967','371408514 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371408514\n\nYour shipment with the number 371408514 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371408514\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('b0f57e34-8b13-4368-bdf7-3ed6a256ead6','905075277637','Sayın yetkili; CANSU YENİLMEZER SSH adlı müşterinize 745124199 nolu gönderinizin MASA TABLA + AYNA + TEK SANDALYE + KIRLENT ürünü 3 parça halinde Fatura adresinizden 08.03.2025 16:32:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a37059bd-e77e-44ec-96b7-00e7c36b0512',NULL),
('b1013f83-5b9b-4b5f-bf70-f55e8a051a63','4915737960433','Sayın NURGÜL YILMAZ, 449393754 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449393754\n\nDear NURGÜL YILMAZ, your shipment with 449393754 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449393754\n\nBICARGO','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('b1051c52-177b-459d-965b-6979f75bb881','33695741200','Sayın DRANCY MEUBLE, 268443203 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268443203\n\nDear DRANCY MEUBLE, your shipment with 268443203 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/268443203\n\nBICARGO','1','c83b1650-e8ef-42b8-bd59-85142002c440',NULL),
('b1061e01-d3ef-4bbe-a072-4936e44ba77a','905304259202','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 478342417 nolu gönderinizin koltuk takımı-yatak-sehpa ürünü 1 parça halinde çelikbey inegöl depo adresinizden 14.05.2025 15:24:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('b115868c-7af0-492d-989d-1e843dee9d71','33745279519','Sayın CHERİET NAJET, 221287992 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221287992\n\nDear CHERİET NAJET, your shipment with 221287992 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221287992\n\nBICARGO','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('b115d499-fccd-4ca9-a5b5-1729cbf82019','905461661672','BARLEB KASS HANNA adlı müşterinizin 644106987 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('b116b2e2-88af-4f1e-9dbc-45fb33b52120','4369917101202','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('b11eb9ed-41dd-42a1-9159-89462860c705','4917681229214','614553524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7524 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614553524\n\nYour shipment with the number 614553524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7524. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614553524\n\nBICARGO','1','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('b1277b44-05c0-449d-9fb9-17a7e3aa943f','1111111111','Sayın NİZAMETTİN ALAGÖZ , 412970240 nolu gönderiniz 1278 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412970240\n\nDear NİZAMETTİN ALAGÖZ , your shipment with 412970240 was delivered to you with the delivery code 1278. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412970240\n\n\nBICARGO','2','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL),
('b12da8c8-0e1d-4206-b0f1-5bb253604d08','905335511664','ADEM BÜYÜK adlı müşterinizin 371913094 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('b130c8cc-64f8-4f9b-8b64-70b73aefad51','4917656342150','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('b131493e-cd5c-406a-827a-2509e9708421','4917662792602','745871666 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6494 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745871666\n\nYour shipment with the number 745871666 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6494. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745871666\n\nBICARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('b133947a-11b8-4e55-802f-57182f23b4b3','4915226419992','Sayın GÜLNUR ENGİN, 598585736 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598585736\n\nDear GÜLNUR ENGİN, your shipment with 598585736 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598585736\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('b136e57d-be81-4d40-a04a-91e9561a4830','491717951084','Sayın KATRİN MESİNGER, 896847151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896847151\n\nDear KATRİN MESİNGER, your shipment with 896847151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896847151\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('b13a5d3f-408b-4394-ae41-bfed14a15ba5','436766504588','Sayın NİNA ÖZÇELİK, 437397407 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437397407\n\nDear NİNA ÖZÇELİK, your shipment with 437397407 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437397407\n\nBICARGO','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('b143338f-f7e0-42ed-8b1b-442ceee3390c','905075277637','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin BONNY KÖŞE KOLTUK  ürünü 5 parça halinde BRAWWA KOLTUK BÖLÜMÜ adresinizden 09.10.2025 13:46:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('b143c521-7126-4978-87d2-f9f8152371d2','41788083391','Sayın BİANCA AGOSTİNHO, 221439268 nolu gönderiniz 6325 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221439268\n\nDear BİANCA AGOSTİNHO, your shipment with 221439268 was delivered to you with the delivery code 6325. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221439268\n\n\nBICARGO','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('b146a11b-5cd5-48a3-b341-626cef08005c','33768894970','Sayın KUBİLAY AKTAR, 910473991 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910473991\n\nDear KUBİLAY AKTAR, your shipment with 910473991 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910473991\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('b150cded-3e95-4449-bde8-383b43748de8','905335511664','AYKUT KAYA adlı müşterinizin 371660448 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('b151af75-c752-430b-91e7-d5ba52aac939','491713800212','Sayın AHMAD KADİ, 598102662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598102662\n\nDear AHMAD KADİ, your shipment with 598102662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598102662\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('b156f049-3780-4ae2-b956-b7f69ea1de39','491709634304','221904119 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7585 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221904119\n\nYour shipment with the number 221904119 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7585. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221904119\n\nBICARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('b159cb98-f4c6-4b0c-8aeb-1d82f9f93f50','436607950540','437945654 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8946 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437945654\n\nYour shipment with the number 437945654 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8946. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437945654\n\nBICARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('b15a03e2-2af7-48ca-a403-0b8a96080374','3254354253235432','ŞÖFÖR NUMARASI\n					+905467896981','2','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('b15a7739-39cb-4ad0-a2d2-7cfa10adbd79','905461661672','Sayın yetkili; ALİŞAN CERCİ(K) adlı müşterinize 644847294 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 23.09.2025 15:29:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('b15b0a78-c786-4eac-9f7c-40e1e3c70b0c','905313340045','PELÇİN BUZLU adlı müşterinizin 437554629 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('b15df71b-7eed-446e-8047-4b6eac71fb10','905336367828','Sayın yetkili; CAROLİE KENZA  adlı müşterinize 982212726 nolu gönderinizin Sandalye  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 09.01.2025 16:55:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('b15f0bad-f9d1-4842-95c3-65fac0d179c8','905413792483','ÖMER SOLAK adlı müşterinizin 27829651 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL),
('b165a042-996a-4dcb-b44d-bf138e9a0b63','905335511664','Sayın yetkili; MEHMET ALİ YILDIZ adlı müşterinize 37151088 nolu gönderinizin masa + sehpa ürünü 5 parça halinde SM Tasarım adresinizden 02.10.2025 13:11:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d27f2367-c652-4d86-b346-10e260811b9c',NULL),
('b1684567-b65d-40a8-b30c-55b8b1a7ca48','436609855451','371579541 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371579541\n\nYour shipment with the number 371579541 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371579541\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('b168a863-51a3-4757-a340-54d502538c8b','436609250606','Sayın AKKİZ TOPCU, 515129438 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515129438\n\nDear AKKİZ TOPCU, your shipment with 515129438 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515129438\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('b16d4e08-94e5-4973-b608-f2121cae000a','33666141635','Sayın DİLARA TARHAN, 745233031 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745233031\n\nDear DİLARA TARHAN, your shipment with 745233031 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745233031\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('b1740969-2202-4056-9253-91339bbfd5bc','491705532123','Sayın MASUD SALAH, 982320208 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982320208\n\nDear MASUD SALAH, your shipment with 982320208 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982320208\n\nBICARGO','1','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL),
('b1740db3-4ff2-4a2c-b2d9-188f9a6ea383','4917660866627','598982184 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3921 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598982184\n\nYour shipment with the number 598982184 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3921. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598982184\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('b17942a3-115f-4752-960d-a4a2f73f77a8','491629891216','Sayın HAYRİYE BOZKURT, 598405313 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598405313\n\nDear HAYRİYE BOZKURT, your shipment with 598405313 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598405313\n\nBICARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('b1817f68-ac00-4fd9-accd-b6fa44e4e3c7','33760923065','Sayın MURAT YILMAZ, 223440405 nolu gönderiniz 6103 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223440405\n\nDear MURAT YILMAZ, your shipment with 223440405 was delivered to you with the delivery code 6103. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223440405\n\n\nBICARGO','1','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL),
('b182ca2c-21b0-4cac-b11b-6d818709f84e','436605507330','Sayın AYHAN ÇEKİ, 598758154 nolu gönderiniz 1308 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598758154\n\nDear AYHAN ÇEKİ, your shipment with 598758154 was delivered to you with the delivery code 1308. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598758154\n\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('b18468c5-ede5-4f0c-bb84-6b3289baf307','33617406567','Sayın BOUKİ BOUCHRA, 982918194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982918194\n\nDear BOUKİ BOUCHRA, your shipment with 982918194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982918194\n\nBICARGO','1','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL),
('b187a9a8-77f0-4dc2-bd93-1ee35c5bb8d6','31614355006','Sayın AKIN KARUT, 644775291 nolu gönderiniz 1284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644775291\n\nDear AKIN KARUT, your shipment with 644775291 was delivered to you with the delivery code 1284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644775291\n\n\nBICARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('b18b1994-6385-4e3e-bacc-c1017260608d','4915201020700','644880161 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5085 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644880161\n\nYour shipment with the number 644880161 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5085. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644880161\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('b18e5b48-da74-42e4-8d40-0e3b75517a1c','905301592882','Sayın yetkili; EYÜP TOPALOĞLU adlı müşterinize 91055249 nolu gönderinizin MONACO YEMEK ODASI ürünü 5 parça halinde Fatura adresinizden 15.10.2025 14:47:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ad3de3cb-31f6-433a-9d51-1c613adb9f27',NULL),
('b18f4526-737a-416f-8f11-24b9743d6f4b','436705563218','Sayın EDOLİNA AJETİ REXHEPİ, 478749881 nolu gönderiniz 5972 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478749881\n\nDear EDOLİNA AJETİ REXHEPİ, your shipment with 478749881 was delivered to you with the delivery code 5972. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478749881\n\n\nBICARGO','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('b19356c1-19b0-439d-aba6-28c30183cf0e','905335708965','SANDALYE adlı müşterinizin 248291895 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2df8f21d-ed0d-434f-b04f-7522c7fbbae4',NULL),
('b19b120d-c561-40a6-b2c7-effef12beb37','905354105671','LEX-CERAM DESİGN adlı müşterinizin 412976656 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('b19f2de0-3c65-4c85-aa78-af4f1cd698f1','905079358213','Sayın yetkili; ELMAS KAYA adlı müşterinize 745411152 nolu gönderinizin SAGA KÖŞE TAKIMI  ürünü 2 parça halinde ELİTİS adresinizden 21.04.2025 17:14:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('b19f9be2-b942-4d04-8b72-1e27b6c2e19e','4917676733022','570417524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6418 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/570417524\n\nYour shipment with the number 570417524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6418. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/570417524\n\nBICARGO','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('b1ac68fe-5a47-4d93-807b-3badbdd4dff8','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL TV ÜNİTESİ ALT BLOK ŞÖMİNELİ ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('b1ac895e-75c0-4250-9124-b50497d98aa3','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin VİRAL BAZALI KARYOLA + ADA + 2 KOMODİN  ürünü 20 parça halinde FAMILY adresinizden 21.08.2025 11:42:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('b1b1634f-8cce-49db-be80-d153dd6f506c','905313340045','Sayın yetkili; EMEL ALATAŞ adlı müşterinize 43789661 nolu gönderinizin Kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 25.08.2025 13:42:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('b1b30fff-19bb-4baa-b91e-1165ebfeb848','905335511664','Sayın yetkili; ENVER HAN ALKAN adlı müşterinize 37146102 nolu gönderinizin köşe ürünü 4 parça halinde Elitis Home adresinizden 01.08.2025 12:11:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('b1c0b7ef-fb91-4d7f-b603-dbe9a2e8e45a','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin ROLPED YATAK VE 2 TEKLİ BAZA ürünü 7 parça halinde BED HOME YATAK adresinizden 22.01.2025 16:23:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('b1c4ecb6-6ea0-4a88-86c9-9e8de13bacfd','41796133167','Sayın GÜLŞAH KUŞ, 745219309 nolu gönderiniz 5475 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745219309\n\nDear GÜLŞAH KUŞ, your shipment with 745219309 was delivered to you with the delivery code 5475. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745219309\n\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('b1cb504d-2a16-4c45-be26-5c6405507389','905350617509','RANİA PİSİT adlı müşterinizin 613512690 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('b1d2beef-288d-4a4e-9395-15840ecab99d','4363702086493','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('b1d30c7e-9618-4d51-8198-e42e8c529f57','905300961610','SEZER BEY adlı müşterinizin 126889614 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','521af45a-6561-45db-adfb-641b8fafbc92',NULL),
('b1d54179-d83e-4ed4-a5c0-4a00d9653ea8','33753285709','478862837 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5864 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478862837\n\nYour shipment with the number 478862837 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5864. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478862837\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('b1e26f0e-bc0c-45ce-b158-fc33cec9e80d','33622831464','Sayın İBRAHİM KARABACAK , 98222175 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98222175\n\nDear İBRAHİM KARABACAK , your shipment with 98222175 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98222175\n\nBICARGO','1','f429c1c6-c6a3-4f80-ac7f-7e84dfe12573',NULL),
('b1e9ef8e-2672-4a46-a61f-4375ebdd73f7','4917632057842','Sayın DANİAL ARAMESHK , 613191069 nolu gönderiniz 3114 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613191069\n\nDear DANİAL ARAMESHK , your shipment with 613191069 was delivered to you with the delivery code 3114. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613191069\n\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('b1f3df17-2783-4dd2-888b-e70588c9ddb3','491638635381','Sayın FEYZULLAH ALTEKİN, 959513288 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959513288\n\nDear FEYZULLAH ALTEKİN, your shipment with 959513288 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/959513288\n\nBICARGO','1','a9e92a4f-2e0c-410b-8783-a6088e15e8db',NULL),
('b1f65eab-af54-4ee9-9de3-5142d29eefd9','33614047867','976126416 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2063 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976126416\n\nYour shipment with the number 976126416 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2063. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976126416\n\nBICARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('b1f94e67-47be-4530-88c4-9433cb12057b','905363510826','İSA KAPLAN  adlı müşterinizin 962168012 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bc037735-462f-4198-8d2d-23ba6a125e18',NULL),
('b1fc04fb-b528-4f84-995b-e9571eed0e31','905075277637','Sayın yetkili; ALİ ERKOCA SSH  adlı müşterinize 745942521 nolu gönderinizin SSH KOMODİN 2 AD ürünü 4 parça halinde RİXXE  adresinizden 15.10.2025 14:20:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('b1feb9ee-88ae-4f08-9405-165b6e8ced97','33695831959','Sayın MÜSLÜM MERDANE, 74520622 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74520622\n\nDear MÜSLÜM MERDANE, your shipment with 74520622 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74520622\n\nBICARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('b1ff897f-f9bf-4f10-8399-94f951957bc7','491749347138','Sayın GÖKHAN ÇAYLAK, 745808994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808994\n\nDear GÖKHAN ÇAYLAK, your shipment with 745808994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745808994\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('b2001d08-8538-4b27-b3f4-174c82c6ef51','905079358213','EMRE AFYON  adlı müşterinizin 745547550 nolu gönderisi 49 parça halinde yola çıkmıştır.','1','41362bb9-f3f2-494f-bf45-1e889e36f93d',NULL),
('b208b7fa-b129-4cdb-a4df-ac3dc2164c5e','905517075149','Sayın yetkili; ŞÜKRAN ÖZGÜL adlı müşterinize 478739679 nolu gönderinizin 3+3+1+1 KOLTUK TAKIMI ürünü 4 parça halinde RİXXE adresinizden 14.10.2025 13:51:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4df3c44-e272-4f15-83b1-063b9f953adc',NULL),
('b20d4ebb-ad4e-4e94-8c7a-de1dda274c83','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin dolap kapağı ve aplikler ürünü 2 parça halinde mobilistan adresinizden 23.06.2025 13:46:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('b2127efc-d716-4742-833f-24f808798302','4915226419992','Sayın GÜLNUR ENGİN, 598585736 nolu gönderiniz 4471 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598585736\n\nDear GÜLNUR ENGİN, your shipment with 598585736 was delivered to you with the delivery code 4471. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598585736\n\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('b213b787-497d-441c-8e32-729f6e87b2a9','4917681316361','644550858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4359 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644550858\n\nYour shipment with the number 644550858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4359. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644550858\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('b215f3ed-7bd3-4ab1-ab81-c157c063c319','436763366858','Sayın HUSSRAH MUHAMAD, 745464679 nolu gönderiniz 3784 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745464679\n\nDear HUSSRAH MUHAMAD, your shipment with 745464679 was delivered to you with the delivery code 3784. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745464679\n\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('b218fe2f-76d4-4c2f-8b50-62b5ae3cb930','4306607478961','Sayın AJLA ORUC , 982329375 nolu gönderiniz 8985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982329375\n\nDear AJLA ORUC , your shipment with 982329375 was delivered to you with the delivery code 8985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982329375\n\n\nBICARGO','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('b21a7da4-f0fa-4866-a22c-392132b5f832','491623487541','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('b21c28db-19fc-4fa4-9e19-7a3b39527fc6','491788201134','Sayın ÇUVAL , 976423277 nolu gönderiniz 9902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976423277\n\nDear ÇUVAL , your shipment with 976423277 was delivered to you with the delivery code 9902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976423277\n\n\nBICARGO','1','79c8efb8-c504-45ca-bec0-780372b87574',NULL),
('b2215104-bfba-468c-a52d-20f50a3048d1','436608636840','437442386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437442386\n\nYour shipment with the number 437442386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437442386\n\nBICARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('b2257510-af26-4bca-beb7-48d9b7aa94de','05531042901','Sayın FATMA ALBAYRAK, 478935366 nolu gönderiniz 9365 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478935366\n\nDear FATMA ALBAYRAK, your shipment with 478935366 was delivered to you with the delivery code 9365. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478935366\n\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('b22774a5-4661-4708-bb8c-d27701f5032f','436602121085','Sayın Serkan yıldız, 315752826 nolu gönderiniz 9315 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/315752826\n\nDear Serkan yıldız, your shipment with 315752826 was delivered to you with the delivery code 9315. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/315752826\n\n\nBICARGO','1','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL),
('b22dcbee-8827-4acf-9d30-70964f639b08','05388618969','786895232 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786895232\n\nYour shipment with the number 786895232 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786895232\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('b22e769f-f05c-44af-bdc0-5d659a6a59ac','905312762034','Sayın yetkili; VELİT FİLİZ adlı müşterinize 808855328 nolu gönderinizin Modüler Köşe ürünü 6 parça halinde BELİTA HOME adresinizden 28.08.2025 11:29:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2c353236-af7a-4d2d-b79e-d8ecc6a5ae6e',NULL),
('b230b7f2-65b9-4ff6-babe-05ab1e5ec45e','436503555735','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','2','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('b2378bdf-f546-4098-b84f-4531c4577455','4917663466847','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('b23aab05-ad72-4351-a95e-c910c14181b8','31650234175','Sayın SAİT CARCUR, 501423957 nolu gönderiniz 10610 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501423957\n\nDear SAİT CARCUR, your shipment with 501423957 was delivered to you with the delivery code 10610. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501423957\n\n\nBICARGO','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('b23ac14c-70dd-448b-8591-8c10fcafca5b','436767024629','Sayın FURKAN GÜNEŞOĞLU, 74532550 nolu gönderiniz 3958 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74532550\n\nDear FURKAN GÜNEŞOĞLU, your shipment with 74532550 was delivered to you with the delivery code 3958. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74532550\n\n\nBICARGO','1','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL),
('b24084a1-b152-4e6b-bd05-dd2545b5c75d','905078062550','Sayın yetkili; İVAN SLEMAN DİNO adlı müşterinize 598410676 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 08.09.2025 11:50:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('b242e4f4-024c-4cbe-99bb-a249e2fb686e','905304259202','MUHAMMET ALTUNKAYA adlı müşterinizin 478535316 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bfb3177d-b014-4d5f-96ed-429027d88083',NULL),
('b2445437-e3c0-4303-8c9d-003c29695ff3','905059175469','ÖMER KARAMAN  adlı müşterinizin 428561353 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL),
('b24c9591-da01-42d9-acd6-adaf8b34f090','905325998198','ŞÜKRAN ALP adlı müşterinizin 614650407 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL),
('b2503316-10fe-4298-8ac2-f5a89bbf7106','4917620585657','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('b25785ce-8ced-4489-8868-2aedd8a854db','905421855834','Sayın yetkili; MEHMET GÜL adlı müşterinize 33841628 nolu gönderinizin Star Köşe Koltuk ürünü 4 parça halinde Mutlular Koltuk (Özispa Binası) adresinizden 08.08.2025 17:15:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('b261384d-16c5-4670-8ec0-5a751527b88e','4917643816856','Sayın ÖZGÜR PİLİÇ, 517447554 nolu gönderiniz 6492 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517447554\n\nDear ÖZGÜR PİLİÇ, your shipment with 517447554 was delivered to you with the delivery code 6492. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517447554\n\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('b26e7824-8bbc-41be-b44c-3be9fe101cc7','905510396989','Sayın yetkili; ABUZER TEKCE adlı müşterinize 319232330 nolu gönderinizin 5 KAPILI YATAK ODASI ürünü 22 parça halinde ROİS adresinizden 02.05.2025 10:51:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('b26f7c18-150d-4183-916f-65f304549e9d','491717089315','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('b2717e77-a856-427b-9f33-727952f3d71b','905335511664','MURAT TEKİN adlı müşterinizin 371437952 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('b2743260-7b87-4017-a4c7-feaa4daac58b','905336367828','Sayın yetkili; SAİD ALİ  adlı müşterinize 982973548 nolu gönderinizin Sehpa  ürünü 1 parça halinde Comfortlife  adresinizden 21.01.2025 10:24:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('b27a9d47-6f4e-47e1-af66-73af8138287f','491729283228','Sayın METE AKGÜL, 371857345 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371857345\n\nDear METE AKGÜL, your shipment with 371857345 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371857345\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('b27bb2cb-e9e9-47a4-a60d-0fe9cdad41d8','33688096085','Sayın YAKUP KOÇOĞLU, 910778068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910778068\n\nDear YAKUP KOÇOĞLU, your shipment with 910778068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910778068\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('b2806273-1f24-40bf-b45d-78c738d3cb69','905517075149','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin yatak- yemek ürünü 1 parça halinde Fatura adresinizden 22.07.2025 16:17:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('b284f747-bf97-4119-9533-3e37669f397e','4915782263491','Sayın GÜNGÖR SAK, 614901187 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614901187\n\nDear GÜNGÖR SAK, your shipment with 614901187 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614901187\n\nBICARGO','1','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('b2a6117a-4061-4498-9afb-bd6835f8b679','33680267085','Sayın SEZER BEY, 126922033 nolu gönderiniz 7225 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126922033\n\nDear SEZER BEY, your shipment with 126922033 was delivered to you with the delivery code 7225. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126922033\n\n\nBICARGO','1','9f748f02-e185-45e0-9d24-ee921761490f',NULL),
('b2a85724-bd5f-4d09-bbeb-719b3e078072','905331602195','STEPHANİE GOSSEYE adlı müşterinizin 221669694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('b2aea9bf-0de2-4947-8a47-c60b6bec7765','4915209473876','Sayın MERHDED AKHTARİ, 449680755 nolu gönderiniz 1079 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449680755\n\nDear MERHDED AKHTARİ, your shipment with 449680755 was delivered to you with the delivery code 1079. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449680755\n\n\nBICARGO','2','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL),
('b2b17263-13af-4a28-b32d-66701e1f996d','905054335859','ENVER GÜLMEZ adlı müşterinizin 501981507 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','04b906a6-7837-4515-810d-2b36aefb9873',NULL),
('b2b307fd-2472-494a-8ebd-40f31a6f7cc5','31648989014','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('b2b50829-2da6-465a-b48b-df9366053830','4915114164917','982164642 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1105 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982164642\n\nYour shipment with the number 982164642 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1105. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982164642\n\nBICARGO','1','d7b0bb03-c914-41e5-8899-697339f7e562',NULL),
('b2b6b287-089c-4d07-aa5e-83080f2c8afc','436603406293','MİKAİL ÖZBEK adlı müşterinizin 675749315 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('b2bd0f4c-95d9-4e4b-b7ba-00503fc2a929','905337836884','GAMZE ÇOKENGİN adlı müşterinizin 140681782 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('b2cd0a57-8b59-44a6-8432-11a6114ef7b8','4917641830880','Sayın HAZAL ELMAS, 976983661 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976983661\n\nDear HAZAL ELMAS, your shipment with 976983661 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976983661\n\nBICARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('b2cf90d5-3c54-4562-b9dd-bb8d9e1c5f3a','905054335859','BİROL KURNAZ adlı müşterinizin 501452801 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e5574090-3955-4e09-af62-dd5eb9f6fce4',NULL),
('b2d30d16-d787-4b95-b88f-d20884da1bf9','49176849361733','Sayın YUSUF, 100972804 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/100972804\n\nDear YUSUF, your shipment with 100972804 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/100972804\n\nBICARGO','2','3810b138-eae3-49b3-94fb-6ece3e64ea2e',NULL),
('b2d4b278-85c9-4235-a025-6ba2bf55c36a','905325998198','ESMA EROĞLU adlı müşterinizin 614859961 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8003060-1e71-4fe0-87c6-64270a8a2100',NULL),
('b2d9419f-bf5e-424d-b134-9589932b5a05','905454259202','Sayın yetkili; KEMAL ETKER  adlı müşterinize 47876427 nolu gönderinizin masa üst parçaları ürünü 1 parça halinde çelikbey inegöl depo adresinizden 06.05.2025 13:23:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('b2d9ac34-581a-4737-9f08-7e8d15a693fa','33769187229','Sayın ZEYNEP ALEYNA ÖZBEY, 478192530 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478192530\n\nDear ZEYNEP ALEYNA ÖZBEY, your shipment with 478192530 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478192530\n\nBICARGO','1','2fdeaf43-40b1-4ace-92ce-ff8cd4522e73',NULL),
('b2e043bb-c70c-4a8c-9366-2639c97973b0','905350617509','Sayın yetkili; BERK YİKİLMAZ adlı müşterinize 613362697 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Moda dizayn adresinizden 18.06.2025 12:08:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6df4ddf2-1d8c-407a-836a-ac83506102f3',NULL),
('b2e04d23-a3e7-4a7c-98f6-6df26413d88a','905336367828','AYHAN ATEŞ adlı müşterinizin 982979874 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('b2e39eb2-d7b0-4a9e-b21f-2c0edf348abc','905461661672','Sayın yetkili; CANAN ŞENEL adlı müşterinize 644319069 nolu gönderinizin 2 ADET KANEPE ürünü 3 parça halinde BAYSA KOLTUK adresinizden 14.05.2025 15:53:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('b2e4c9d2-4a91-4a88-a69e-ba6705cfd032','316389917702','478832291 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478832291\n\nYour shipment with the number 478832291 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478832291\n\nBICARGO','2','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('b2edff93-3e4f-41b1-86c3-b7db9993f926','905304259202','SELAHATTİN BAŞPINAR adlı müşterinizin 47835620 nolu gönderisi 2 parça halinde yola çıkmıştır.','1',NULL,NULL),
('b2ee3e83-209a-4756-bec3-ce78b71c914c','905078062550','Sayın yetkili; RASİM YAVUZ adlı müşterinize 598894090 nolu gönderinizin köşe koltuk ürünü 6 parça halinde MERTSOY KOLTUK adresinizden 08.10.2025 14:51:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('b2f063d4-8f93-4073-aa5c-6dd8bc0a2de0','905331602195','Sayın yetkili; BETÜL YILDIZ adlı müşterinize 221811614 nolu gönderinizin Balat sandalye galaxy krem ürünü null parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:26:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('b2f18308-1073-497d-b033-06670afbde61','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PETEK YARMALI KÖŞE  ürünü 4 parça halinde Fatura adresinizden 29.08.2025 18:02:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('b2f5c46a-36d0-4fc0-92fe-737940d227d6','0616563372','Sayın DANFA, 817288476 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817288476\n\nDear DANFA, your shipment with 817288476 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817288476\n\nBICARGO','2','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('b2f5e55a-e808-4040-aaf1-d63118efe081','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 1 ADET ÖZEL TASARIM KARYOLA ürünü 8 parça halinde ÖZEL TASARIM KARYOLA adresinizden 09.10.2025 11:47:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('b2f83460-1189-4dd6-9039-4833cd362084','905331602195','ASMA SOULTANA  adlı müşterinizin 221854185 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('b2fa126c-ff7f-4eb3-9272-3ed59160a1d0','5325000478','Sayın AAAAA BBBBBB, 26.04.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6630701\nŞifre : 6630701\n			\nBİCARGO','1',NULL,'66307a01-d585-4127-903b-18748421c29e'),
('b2fb6f3f-8868-4623-9fbf-2ff8d060d6f3','905431026110','Sayın yetkili; MERVE İÇEN adlı müşterinize 351330330 nolu gönderinizin orta sehpa ürünü 2 parça halinde MASAMİ adresinizden 16.09.2025 16:49:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('b2fb9841-55be-4eda-94f7-a5a3cb7059f6','374747383838848','Sayın GÜLSEN ERDİNÇ, 750717756 nolu gönderiniz 8588 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750717756\n\nDear GÜLSEN ERDİNÇ, your shipment with 750717756 was delivered to you with the delivery code 8588. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750717756\n\n\nBICARGO','2','a5cb3a8e-37a0-4ca4-bdef-add90fb70af6',NULL),
('b2ffb4da-3cab-4bfb-84f1-a56bdaa6abb6','905078062550','Sayın yetkili; SEVGİ BOLAT adlı müşterinize 598250504 nolu gönderinizin MASA ürünü 3 parça halinde RİO FATİH adresinizden 16.07.2025 17:47:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('b3012914-05d9-49d2-bb52-77cacc1b533b','2738484747373737','Sayın PROMO HANDEL, 22391500 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22391500\n\nDear PROMO HANDEL, your shipment with 22391500 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22391500\n\nBICARGO','2','67b755d6-8527-41db-b18d-4497bd14d893',NULL),
('b3026697-40f9-44f7-8e25-761886d930ed','31625064385','Sayın MURAT, 4127825 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/4127825\n\nDear MURAT, your shipment with 4127825 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/4127825\n\nBICARGO','1','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL),
('b3039bfd-c9d4-4a00-a516-5106245df773','4915785563559','Sayın SOFİA KYRİAKİDOU, 371186967 nolu gönderiniz 1051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371186967\n\nDear SOFİA KYRİAKİDOU, your shipment with 371186967 was delivered to you with the delivery code 1051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371186967\n\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('b308fde9-cd40-4d5e-a7fe-98986b5be155','004915202033588','437574361 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8711 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437574361\n\nYour shipment with the number 437574361 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8711. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437574361\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('b30cf5b9-a34d-4048-9d0c-11012d86ec55','33602366647','Sayın GÜLÜZAR KECKİN, 745276257 nolu gönderiniz 3403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745276257\n\nDear GÜLÜZAR KECKİN, your shipment with 745276257 was delivered to you with the delivery code 3403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745276257\n\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('b30e4d52-3659-4b99-84ef-4fb8ade1003f','4915222621206','Sayın SELÇUK SÖNMEZ, 371183095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371183095\n\nDear SELÇUK SÖNMEZ, your shipment with 371183095 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371183095\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('b312eac5-a8cb-441e-83de-f1ccc349fe4a','4915115864396','Sayın RUKEN ŞAKIR, 910187142 nolu gönderiniz 4110 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910187142\n\nDear RUKEN ŞAKIR, your shipment with 910187142 was delivered to you with the delivery code 4110. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910187142\n\n\nBICARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('b31529cb-91ef-4f8f-9baf-cce8e81a7100','905461661672','AMAL EL JABBARİ adlı müşterinizin 644789157 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('b31d6aa6-08b7-47b6-bb36-d1ceeb4c0efc','4917682319373','Sayın DERYA BALİ, 644178035 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644178035\n\nDear DERYA BALİ, your shipment with 644178035 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644178035\n\nBICARGO','1','7111120f-fafa-47e7-88da-3e0454ed201a',NULL),
('b31e8907-6dcc-4e92-b001-ff992597a244','4915772153329','465500768 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5647 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465500768\n\nYour shipment with the number 465500768 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5647. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465500768\n\nBICARGO','1','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL),
('b320e698-6930-4dcb-a65c-b39f2d4e1b98','905059175469','MUSTAFA MÜEZZİNOĞLU adlı müşterinizin 428341956 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('b323748f-d992-44c0-b332-2c769f9b0c3b','31627837111','Sayın BLANDİ ZOTA, 644965833 nolu gönderiniz 6833 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644965833\n\nDear BLANDİ ZOTA, your shipment with 644965833 was delivered to you with the delivery code 6833. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644965833\n\n\nBICARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('b323cce4-40dc-484a-ab0a-557824bf7075','152636273636363','Sayın AAAAAA, 248135683 nolu gönderiniz 9943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248135683\n\nDear AAAAAA, your shipment with 248135683 was delivered to you with the delivery code 9943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248135683\n\n\nBICARGO','2','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL),
('b324553d-2931-4d9a-9b8c-c2a3f5e4129f','4545544545343443','412922680 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6634 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412922680\n\nYour shipment with the number 412922680 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6634. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412922680\n\nBICARGO','2','a25d6e4f-ea97-4fa6-baa8-53e0e2d10b66',NULL),
('b3251de2-72ab-4d5d-8275-0321922450dd','905350617509','RANİA PİSİT adlı müşterinizin 613464926 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('b32db436-0416-4b12-91b3-4d655e54547a','905363385813','SAMET KÖTEN adlı müşterinizin 976439318 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('b33417b2-0576-4b27-a3de-e845bef9254b','4369919588138','İletişim \n					Halil Bey (Şoför) :+905541100849','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('b33bbcb2-ce03-42a3-83dc-8ddbc549677f','905510396989','ESTRELLA TÜMKAYA adlı müşterinizin 319918133 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('b34515cd-17f5-49f8-953c-de5c14c4500b','905363385813','Sayın yetkili; HASAN EROL adlı müşterinize 976568852 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde SALON KOLTUK adresinizden 20.02.2025 14:52:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('b345f3de-2408-4f92-ac47-27dc8728aa02','31631024825','Sayın SELDA ÇELİK, 478777541 nolu gönderiniz 3545 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478777541\n\nDear SELDA ÇELİK, your shipment with 478777541 was delivered to you with the delivery code 3545. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478777541\n\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('b348bcaf-b399-4686-b504-d63908bf5dc2','9053259981980','Sayın yetkili; ARZU BÖÇKÜN adlı müşterinize 614680407 nolu gönderinizin DUVA LUCCA KOLTUK TAKIMI 3+3+1+1 ürünü 4 parça halinde Fatura adresinizden 26.02.2025 18:44:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('b34f6f15-b8a2-4afc-8fff-f56975196270','1111111111111111','Sayın AAAAAAAAAAAA, 248974894 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248974894\n\nDear AAAAAAAAAAAA, your shipment with 248974894 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248974894\n\nBICARGO','2','b094bf7e-153f-4984-b737-f7bdece60165',NULL),
('b353325d-4a49-4dd6-bcef-835e1679ca8e','905336367828','DONİKA adlı müşterinizin 98222656 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','df564c56-1964-45d7-946b-9c1121729fa8',NULL),
('b353b002-e261-4f43-9056-87c2a3b0c5d6','905054335859','Sayın yetkili; KÜBRA ARPA adlı müşterinize 501588943 nolu gönderinizin EFES KÖŞE KOLTUK(250*340) ürünü 4 parça halinde KATRE adresinizden 02.01.2025 11:03:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('b35569d1-ffbf-491c-a49b-4d020a36e70e','4369910398530','644319069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8993 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644319069\n\nYour shipment with the number 644319069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8993. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644319069\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('b357bd8e-3a3d-41bd-bc76-4ce6ab7525e7','0782338105','Sayın SEBAHAT KOÇAK, 428761245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428761245\n\nDear SEBAHAT KOÇAK, your shipment with 428761245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428761245\n\nBICARGO','2','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('b358d99d-b035-4df4-829f-407cc747e43e','491726260844','Sayın CEMİLE İLHAN, 817239122 nolu gönderiniz 2234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817239122\n\nDear CEMİLE İLHAN, your shipment with 817239122 was delivered to you with the delivery code 2234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817239122\n\n\nBICARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('b365b960-76df-44fe-85d8-1af4306eba3a','905517075149','Sayın yetkili; CELİNE KARA adlı müşterinize 478164511 nolu gönderinizin yatak odası takımı (komidin 1 ad.) ürünü 8 parça halinde AREA adresinizden 09.10.2025 17:08:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('b3674c8c-50f7-48fa-ace8-9e187fb4d836','491759161362','Sayın METE-TAHA TOPAL, 478281907 nolu gönderiniz 8684 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478281907\n\nDear METE-TAHA TOPAL, your shipment with 478281907 was delivered to you with the delivery code 8684. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478281907\n\n\nBICARGO','1','4a285e1c-8129-4c9c-85a3-06394604421e',NULL),
('b367df40-8628-413a-9031-54e9a4351e7d','33749000249','Sayın NOUR MOHAMMAD YAKUBİ, 982578025 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982578025\n\nDear NOUR MOHAMMAD YAKUBİ, your shipment with 982578025 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982578025\n\nBICARGO','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('b36cf994-462c-41f0-baa6-5b73c18faa81','905539740010','AYDIN SARI adlı müşterinizin 011620933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL),
('b36d453f-b99d-4a13-83ae-ca7f679ea50d','4917632543868','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('b36f6f11-6536-4456-b4ac-0b8e28bd4740','905313340045','ESRA KAYA adlı müşterinizin 43750462 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a916a88f-8a03-4757-aca9-0c0d2c64a51b',NULL),
('b370fee2-d407-4e41-8870-b13b047caf8f','436601287333','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('b3742709-ccd3-45ad-b396-e66bd452f2a0','33642266995','Sayın ALİ ÖZVEREN, 412722649 nolu gönderiniz 9936 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412722649\n\nDear ALİ ÖZVEREN, your shipment with 412722649 was delivered to you with the delivery code 9936. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412722649\n\n\nBICARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('b374d17a-df48-4d7e-a0a8-55b19445d2c7','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('b37f7e44-5f22-43c7-95a4-668f0e0a2bdc','905313340045','GAFUR NUHA adlı müşterinizin 43758285 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('b3852478-08ec-40f4-90c2-dda6e34afd4c','9053259981980','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ FAKIR SPOT CLEANER PR 7020 BUHARLI TEMİZLEYİCİ ürünü 1 parça halinde Fatura adresinizden 03.09.2025 11:33:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('b3870fe0-8583-4a80-93b6-1ba9375e6f2a','4915231306886','Sayın SEVDA ÇAYLAK, 449475255 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449475255\n\nDear SEVDA ÇAYLAK, your shipment with 449475255 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449475255\n\nBICARGO','1','887939c6-c572-4048-9ec2-13b2ba75c706',NULL),
('b387a31e-8d0b-4f79-9c19-9153a47c134e','905300961610','JELENA BARATOVİC adlı müşterinizin 126245978 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','05161621-4074-4395-a4ac-b594dfcce0f9',NULL),
('b38a3d71-2e11-4e62-afc3-3eb64aefad62','33617127634','Sayın M.CEDRİC KLEINDIENST, 221850151 nolu gönderiniz 7503 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221850151\n\nDear M.CEDRİC KLEINDIENST, your shipment with 221850151 was delivered to you with the delivery code 7503. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221850151\n\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('b38bbd43-af1b-4dd0-a2ae-7549890cb00d','905075277637','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin VOYAGE KÖŞE KOLTUK ürünü 5 parça halinde RİXXE  adresinizden 09.09.2025 11:29:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('b38ca3fc-ea8b-44f4-a404-1c8d8a4f1609','33652599311','221621737 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2857 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221621737\n\nYour shipment with the number 221621737 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2857. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221621737\n\nBICARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('b38cb561-d13c-4998-9c27-98da13266d19','905011170016','Sayın yetkili; YONCA KILIÇ adlı müşterinize 380417164 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 15.04.2025 16:31:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('b38d0afe-06e2-4ab5-9d9b-e2f331dfbdfb','436509938686','Sayın SEDAT ÇİFÇİ , 745538897 nolu gönderiniz 2941 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745538897\n\nDear SEDAT ÇİFÇİ , your shipment with 745538897 was delivered to you with the delivery code 2941. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745538897\n\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('b38e0d0a-3684-49f5-bc1c-7be9695f92db','491783142283','Sayın İLYAS GÖK, 598982184 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598982184\n\nDear İLYAS GÖK, your shipment with 598982184 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598982184\n\nBICARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('b38e0e2f-46b1-4817-955b-ff716f1829ac','33628708481','Sayın KAZIM KURUCU, 478335843 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478335843\n\nDear KAZIM KURUCU, your shipment with 478335843 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478335843\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('b39a103a-e656-4b30-9ef1-cd912ed71fa9','4917631033403','Sayın NADİYE ÇAVUŞ, 644200718 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644200718\n\nDear NADİYE ÇAVUŞ, your shipment with 644200718 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644200718\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('b39e496c-aa28-42c4-9914-3ec7a92c87d6','4917684245023','644635640 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6747 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644635640\n\nYour shipment with the number 644635640 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6747. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644635640\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('b3a5e1ca-154c-4aa5-9dec-aab3e629209c','4917630550743','Sayın NESLİHAN DEMİR, 371586742 nolu gönderiniz 9430 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371586742\n\nDear NESLİHAN DEMİR, your shipment with 371586742 was delivered to you with the delivery code 9430. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371586742\n\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('b3a9ca1a-0b00-48d1-9a83-1e1ace56f646','31648497230','Sayın HATİCE GÜNGÖR, 465181388 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465181388\n\nDear HATİCE GÜNGÖR, your shipment with 465181388 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465181388\n\nBICARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('b3af2b43-cba4-485e-93e3-65feaf40adee','436767024629','74532550 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3958 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74532550\n\nYour shipment with the number 74532550 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3958. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74532550\n\nBICARGO','1','8411debd-d339-4324-8e6e-8d3b1d031e43',NULL),
('b3b92d87-6870-4278-ae5e-9c07d22a5192','905301592882','Sayın yetkili; M.ALİ ÇETİN adlı müşterinize 910129924 nolu gönderinizin 3lü Koltuk ürünü 1 parça halinde Fatura adresinizden 13.10.2025 12:17:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('b3bada29-efb9-4f75-98ce-51e448668956','4917623385759','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('b3bd8691-d4ad-42b6-9b90-a2e110413779','4917634657298','437672074 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437672074\n\nYour shipment with the number 437672074 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437672074\n\nBICARGO','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('b3c00783-d875-4904-9154-bf5af62cf169','491722630370','İletişim \n					Şöför Murat : +905321616048','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('b3d48925-3a74-43e9-a5aa-42eed60365b7','905461661672','Sayın yetkili; DUDU ÖZDEMİR(K) adlı müşterinize 644754778 nolu gönderinizin Köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 12.09.2025 17:46:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('b3d59dcb-8b77-49a0-a59d-3079376ff137','905517075149','Sayın yetkili; BAHAR ORHAN adlı müşterinize 478835180 nolu gönderinizin maldiv yatak odası  ürünü 21 parça halinde acca adresinizden 26.08.2025 18:01:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('b3d71e43-6023-4b76-9f37-6ff45a9dc3ed','31642407835','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('b3e0a0a9-8166-4e30-91e4-b5791eea4626','004915733334152','Sayın SARAH SCHNEİDER, 248904478 nolu gönderiniz 8538 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248904478\n\nDear SARAH SCHNEİDER, your shipment with 248904478 was delivered to you with the delivery code 8538. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248904478\n\n\nBICARGO','2','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL),
('b3e0a8f6-7634-4792-8bfd-4f889f4ca194',NULL,' NARİN ABDİ adlı müşterinizin 081581964 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','068f2f26-67fb-4542-8cbf-cb81478c317b',NULL),
('b3e34316-c94c-41b7-a066-6146471f96fe','4917662135635','412284149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8711 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412284149\n\nYour shipment with the number 412284149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8711. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412284149\n\nBICARGO','1','c16f579e-010b-42d8-95dd-f1b7b1f32859',NULL),
('b3e42d22-8894-47bb-84b9-8ebfa946aa05','436606573775','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('b3e4ed0b-c345-48ec-9e46-7ea9d9815234','4917672523276','Sayın FERHAD MORİD, 598188038 nolu gönderiniz 8879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598188038\n\nDear FERHAD MORİD, your shipment with 598188038 was delivered to you with the delivery code 8879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598188038\n\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('b3e5e13c-90b5-4a7b-b24a-ae2b987763e8','4917675899290','Sayın KADİR ÜZER, 371495147 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371495147\n\nDear KADİR ÜZER, your shipment with 371495147 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371495147\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('b3e9da39-3aad-4ac4-ae15-033a7a2fdde9','31640399233','Sayın NİSRİNE , 019814367 nolu gönderiniz 1785 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/019814367\n\nDear NİSRİNE , your shipment with 019814367 was delivered to you with the delivery code 1785. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/019814367\n\n\nBICARGO','1','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('b3ea3b2d-5c84-4cad-b579-7fe6a9584446','905350617509','Sayın yetkili; ALEYNA KARAKUS adlı müşterinize 613787861 nolu gönderinizin Koltuk ürünü 3 parça halinde Bilgin design adresinizden 19.09.2025 17:57:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('b3eac064-6486-44f2-b12f-72fec50e61c8','31687397547','Sayın Hyusein petrov, 478702716 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478702716\n\nDear Hyusein petrov, your shipment with 478702716 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478702716\n\nBICARGO','1','34998387-c573-429b-a68a-d13a844cfc40',NULL),
('b3ed1cc9-1976-4d03-9d07-f372223cb0b6','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437786734 nolu gönderinizin T sandalye ürünü 3 parça halinde ard sandalye adresinizden 15.08.2025 16:07:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('b3eec5ec-1203-4fe9-a185-52d390254dee','905078062550','Sayın yetkili; ENES İSMET UGUZ adlı müşterinize 598986653 nolu gönderinizin HALI ürünü 1 parça halinde NLUXHOME DEPO adresinizden 18.09.2025 11:20:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('b3f52a20-cb12-4b6a-9cad-c0763c16f58f','4917661977979','Sayın MURAT YALIN, 412330197 nolu gönderiniz 6592 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412330197\n\nDear MURAT YALIN, your shipment with 412330197 was delivered to you with the delivery code 6592. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412330197\n\n\nBICARGO','1','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL),
('b3f75863-8253-4d57-9cc2-b27f084e9547','905335708965','ALİ ŞİMŞEK adlı müşterinizin 248625081 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL),
('b3f80783-1c1d-444f-a506-dd0a8735579c','905540182920','Sayın HASAN BEY, 448153102 nolu gönderiniz 8598 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/448153102\n\nDear HASAN BEY, your shipment with 448153102 was delivered to you with the delivery code 8598. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/448153102\n\n\nBICARGO','1','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL),
('b3f9a391-9fd7-4c1c-bdca-ab024e42886f','905331602195','Sayın yetkili; LAMİSENT BUSİNESS adlı müşterinize 221339460 nolu gönderinizin 45 çap koyu Ceviz Sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 21.02.2025 11:44:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('b3fe06ad-1b79-4445-a562-a99c8aa423f5','905066751402','OSMAN GÖKBEKİŞ adlı müşterinizin 524289921 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('b3fed904-cd27-452d-b8e4-46fcf78edd18','3168244547','Sayın DOBREA NİCOLETA SSH, 437132386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437132386\n\nDear DOBREA NİCOLETA SSH, your shipment with 437132386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437132386\n\nBICARGO','2','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('b400ea6a-db03-4503-b1c2-4646d240d94f','313115689790','531245816 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6485 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531245816\n\nYour shipment with the number 531245816 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6485. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531245816\n\nBICARGO','2','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('b405658e-8afc-45d8-bb23-106f6613e0a4','905454259202','MEHRDAND RAZMPOUR adlı müşterinizin 478962763 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5894ec5e-1b98-4a7e-bfa5-42e0d3a8fee0',NULL),
('b40bca6f-db23-45e5-a7b8-1b56fff54c77','491632040337','Sayın GÖKHAN ZÜRLÜER, 598157006 nolu gönderiniz 7649 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598157006\n\nDear GÖKHAN ZÜRLÜER, your shipment with 598157006 was delivered to you with the delivery code 7649. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598157006\n\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('b414fbe8-8e06-4c0b-ae0d-211f56b0df93','33782988116','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('b41bb322-dbf2-4f95-969b-a1675319c28e','436766459770','Sayın KENAN BAYAR SSH , 745101735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745101735\n\nDear KENAN BAYAR SSH , your shipment with 745101735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745101735\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('b41d36a0-8cb7-467c-92fa-c083c67a085f','905306071261','Sayın yetkili; HAMZA TOPALOĞLU adlı müşterinize 765864813 nolu gönderinizin  NİKOLA KÖŞE KOLTUK  170*420*270 CM  ürünü 5 parça halinde BESTLİNE SOFA adresinizden 13.10.2025 16:22:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f9e45b1-4602-41af-96ef-65e5dc6414f2',NULL),
('b4277cbe-3a8c-4fb5-9bf8-8e0facf708c8','4917681106453','Sayın RUKİYE BARUT, 644626371 nolu gönderiniz 9180 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644626371\n\nDear RUKİYE BARUT, your shipment with 644626371 was delivered to you with the delivery code 9180. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644626371\n\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('b42f8af8-b733-43f3-8729-46bf5ad370cd','4917662226476','531250587 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7856 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531250587\n\nYour shipment with the number 531250587 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7856. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531250587\n\nBICARGO','1','7d8956ca-698f-462a-81a5-dcf35e87e4ee',NULL),
('b43751dd-8d7f-4b05-a4f8-f60b964fec0e','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS DELUXE 120*200 BAZA ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('b43bd587-e1d6-4bce-96d1-04b4c41ea014','491635688741','Sayın GÜLŞAH KARAKAŞ, 803828322 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803828322\n\nDear GÜLŞAH KARAKAŞ, your shipment with 803828322 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/803828322\n\nBICARGO','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('b4425b07-b659-4ce5-a4ac-122406049e28','33665221905','Sayın MERYEM PEREZ , 982126318 nolu gönderiniz 3834 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982126318\n\nDear MERYEM PEREZ , your shipment with 982126318 was delivered to you with the delivery code 3834. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982126318\n\n\nBICARGO','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('b4442538-cb50-4804-bad2-fb3cbc4a4838','31627458014','Sayın SEVGİ ÇELEBİ, 412665767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412665767\n\nDear SEVGİ ÇELEBİ, your shipment with 412665767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412665767\n\nBICARGO','1','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL),
('b4457259-afa1-4da2-9e9a-20f3dd23a713','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN GİZE ÇALIŞMA MASASI ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('b449b593-28d8-43b7-9975-6b3c7736add0','4917661976025','Sayın MUSTAFA ÖZYİĞİT , 42837513 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42837513\n\nDear MUSTAFA ÖZYİĞİT , your shipment with 42837513 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42837513\n\nBICARGO','1','d3143cfe-61a7-4061-b2d1-c65e956748ab',NULL),
('b44f8520-6c89-4c38-869d-11a7e5370639','905428209234','OKTAY TAN adlı müşterinizin 319533001 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aeac836e-0479-4329-a118-27c77a0ff22d',NULL),
('b456c9a0-edcc-447c-8b55-c0ee2c5c82b0','4917660894702','Sayın YAŞAR YALMAN SSH, 478168587 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478168587\n\nDear YAŞAR YALMAN SSH, your shipment with 478168587 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478168587\n\nBICARGO','1','fe463485-2cc1-4a74-bdc7-66f943713679',NULL),
('b4573e1c-567b-44e4-a342-bdd906041582','31625204455','614652730 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4800 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614652730\n\nYour shipment with the number 614652730 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4800. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614652730\n\nBICARGO','1','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL),
('b46234f9-857f-445a-9d9b-66ab6766d43f','491734941989','Sayın ZEKİ ASLANER, 248799636 nolu gönderiniz 7228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248799636\n\nDear ZEKİ ASLANER, your shipment with 248799636 was delivered to you with the delivery code 7228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248799636\n\n\nBICARGO','1','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL),
('b4634997-067d-4b3b-97e2-4265e9cdbe81','31636101599','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('b46b5825-6188-4029-9dfc-60e49b5c02d7','4917661928608','Sayın NURGÜL ÖZDEMİR , 750450570 nolu gönderiniz 2301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750450570\n\nDear NURGÜL ÖZDEMİR , your shipment with 750450570 was delivered to you with the delivery code 2301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750450570\n\n\nBICARGO','1','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL),
('b474de9c-28fa-47d3-baee-a11eb640c430','4917658150125','478686372 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7830 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478686372\n\nYour shipment with the number 478686372 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7830. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478686372\n\nBICARGO','1','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL),
('b4833701-ba4e-4335-83aa-9f179cca6c2c','2323244222444443','Sayın İSVİÇRE, 248186638 nolu gönderiniz 9715 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248186638\n\nDear İSVİÇRE, your shipment with 248186638 was delivered to you with the delivery code 9715. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248186638\n\n\nBICARGO','2','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL),
('b48dfc0d-05ac-498d-9b48-7039375b0c43','1585857778484444','Sayın AAAAAAAAAAA, 735561469 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735561469\n\nDear AAAAAAAAAAA, your shipment with 735561469 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735561469\n\nBICARGO','2','26321c61-8ef9-4498-b666-82a04622843a',NULL),
('b495db97-417c-4d60-8575-9cc795bf33e4','905532675926','Sayın yetkili; ESRA SAATÇİ adlı müşterinize 428905379 nolu gönderinizin halı ürünü 3 parça halinde Fatura adresinizden 10.10.2025 17:26:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL),
('b49c3233-f4ca-4dfd-a423-0ae7ce5aa486','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin mobilsitan sshlar ürünü 5 parça halinde çelikbey inegöl depo adresinizden 02.06.2025 18:12:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('b4a13d71-fc61-4c7e-aa2a-84bd1dd472f3','41794639037','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('b4a16bed-0070-4351-96a4-63fe085999d1','11111111111','45592606 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1212 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/45592606\n\nYour shipment with the number 45592606 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1212. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/45592606\n\nBICARGO','2','8772de92-e350-425f-a8eb-0c7d440b804f',NULL),
('b4a26366-9065-42f6-bc3a-ab58df247393','33664036278','Sayın ONUR ÖZER, 478733242 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478733242\n\nDear ONUR ÖZER, your shipment with 478733242 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478733242\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('b4af364f-a485-424b-bdf7-9da92f81a368','359885267323','Sayın MEHMED SHABAN , 982893962 nolu gönderiniz 8099 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982893962\n\nDear MEHMED SHABAN , your shipment with 982893962 was delivered to you with the delivery code 8099. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982893962\n\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('b4b27c2e-3afd-4345-b2c6-1b8392480913','905510396989','HAFİZE GÜNEY  adlı müşterinizin 319382208 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1b20804a-76a0-418e-b22d-40783c68915b',NULL),
('b4b323b8-f0e0-41d8-9475-87b42c89511a','31625064385','Sayın MURAT , 163548367 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/163548367\n\nDear MURAT , your shipment with 163548367 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/163548367\n\nBICARGO','1','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL),
('b4b51723-54f5-4d3a-8dfc-cccc1cfe39f2','905461661672','ÜMİT MORCA adlı müşterinizin 644377995 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('b4b51a14-2841-434d-bff2-63a4f456daab','32483839092','Sayın SEFA SİNER, 428651654 nolu gönderiniz 2698 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428651654\n\nDear SEFA SİNER, your shipment with 428651654 was delivered to you with the delivery code 2698. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428651654\n\n\nBICARGO','1','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL),
('b4b5b64e-e0d0-4491-97d7-67ba66fa41a3','491736493653','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('b4bc8f63-82a9-4300-b792-793524bfcb4e','5354954215','Sayın GÜLSÜM ÖZBAY DÜZGÜN, 910825747 nolu gönderiniz 9166 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910825747\n\nDear GÜLSÜM ÖZBAY DÜZGÜN, your shipment with 910825747 was delivered to you with the delivery code 9166. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910825747\n\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('b4bdfb13-f71d-481d-917c-6ceed1db3c44','4917681341973','Sayın CAN ALTIN, 644110179 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644110179\n\nDear CAN ALTIN, your shipment with 644110179 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644110179\n\nBICARGO','1','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('b4ce4446-c74b-4cd8-84a4-bf8c2b52b6bd','491779822285','Sayın RUKİYE BARUT, 644626371 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644626371\n\nDear RUKİYE BARUT, your shipment with 644626371 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644626371\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('b4d1428c-7ddc-4ef8-8387-af66a24eba57','905078062550','ERKAN URAL adlı müşterinizin 5983047 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('b4d697f7-6358-4824-92e2-724cc645632c','905350617509','DİANA BARAKAEVA adlı müşterinizin 613502652 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('b4d93aee-db8e-49c5-ade9-96077a9b0f58','491723226773','910163142 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910163142\n\nYour shipment with the number 910163142 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910163142\n\nBICARGO','1','54e0df3d-9714-48db-8da6-46af349072d3',NULL),
('b4e511c1-e9c2-4e59-b56d-2e317cc38439','33628708481','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('b4fd5a05-5193-48b8-b521-ad5d853be824','491732811270','Sayın ŞEVKİ MORİNA, 976765698 nolu gönderiniz 10447 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976765698\n\nDear ŞEVKİ MORİNA, your shipment with 976765698 was delivered to you with the delivery code 10447. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976765698\n\n\nBICARGO','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('b4fdb2e2-a48f-4d6a-add5-56b751940b01','905079358213','DİLARA TARHAN adlı müşterinizin 745233031 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('b5032acb-e523-4636-9664-72a617d97597','33652341181','Sayın ALİ DİNAR, 478185886 nolu gönderiniz 6033 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478185886\n\nDear ALİ DİNAR, your shipment with 478185886 was delivered to you with the delivery code 6033. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478185886\n\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('b50b80d7-0d4f-44b3-9fda-bfe020292ac7','905336367828','Sayın yetkili; ELİF GABEL  adlı müşterinize 982536674 nolu gönderinizin Masa  ürünü 3 parça halinde Fatura adresinizden 30.12.2024 11:05:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2be6b904-2905-4e27-ab5f-58e66f9487ff',NULL),
('b50d24a3-acbf-49ac-a807-00891cea5236','905336367828','Sayın yetkili; MAGBULE DZELİLİ adlı müşterinize 982843761 nolu gönderinizin Sandalye  ürünü 3 parça halinde Ademoğlu sandalye  adresinizden 20.01.2025 17:13:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('b518b93d-955a-4a89-b2d7-e71bd2fdf12a','33620017327','Sayın HARUN KAYA, 745180441 nolu gönderiniz 3542 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745180441\n\nDear HARUN KAYA, your shipment with 745180441 was delivered to you with the delivery code 3542. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745180441\n\n\nBICARGO','1','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL),
('b51a60fd-5ce0-4f46-be48-3640b6ec0770','905454259202','Sayın yetkili; YUSUF ASLANYÜREK adlı müşterinize 478746196 nolu gönderinizin 180x200 yatak ürünü 1 parça halinde Fatura adresinizden 30.04.2025 14:48:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('b521c7df-63cb-4811-bb7c-cc09bf44760c','905336367828','BRHZAD ALİKHANİ  adlı müşterinizin 982402434 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('b5279eed-f767-4389-a814-8c281fccf3fc','33768933805','Sayın VOLKAN ÖZKAN, 478702476 nolu gönderiniz 5776 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478702476\n\nDear VOLKAN ÖZKAN, your shipment with 478702476 was delivered to you with the delivery code 5776. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478702476\n\n\nBICARGO','1','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL),
('b52844ed-175f-40d3-93f2-c16f3161c4ba','33636227871','221364325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10138 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221364325\n\nYour shipment with the number 221364325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10138. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221364325\n\nBICARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('b53112ea-5dc1-48af-a329-71b685cef902','4916091826970','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('b532303e-b14e-4d93-8df8-ea9edabd6253','905325000478','ELİF HANIM adlı müşterinizin 412871738 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b69ca32a-31d3-41b6-a93d-838a8d15e6d7',NULL),
('b5369507-92f8-4cab-94a3-73397e1ac7ff','4917663715654','644178445 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644178445\n\nYour shipment with the number 644178445 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644178445\n\nBICARGO','1','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('b536cda0-2e1c-4084-98a3-01bc2e0bd04a','905079358213','DELİL ÖZTÜRK adlı müşterinizin 74529534 nolu gönderisi 69 parça halinde yola çıkmıştır.','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('b53b6a66-f0b0-46c7-ad11-67ce630e49d7','905350617509','Sayın yetkili; GASİ MUSA adlı müşterinize 613262202 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 17.06.2025 17:03:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('b544da0f-cf22-4894-8a40-9475cd10382b','905312762034','Sayın yetkili; KARAARSLAN YELİZ adlı müşterinize 808886614 nolu gönderinizin Mermer Masa Takımı ürünü 5 parça halinde CARE DESIGN adresinizden 03.09.2025 10:57:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('b544e9fe-4135-45ac-9246-10be4607a49d','32483547124','221390997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9013 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221390997\n\nYour shipment with the number 221390997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9013. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221390997\n\nBICARGO','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('b547ca1e-87b8-4240-8cd1-59a8c15b9b6c','905517075149','YAŞAR YALMAN SSH adlı müşterinizin 478816988 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('b547eebe-f7e9-4c4a-80a9-be3c0e5318e9','491724524938','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('b54cfb91-119a-49ae-a26e-f127bee14048','33669711120','478173801 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10422 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478173801\n\nYour shipment with the number 478173801 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10422. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478173801\n\nBICARGO','1','b66f3ad7-e0cf-4e4e-852f-584b41ad42db',NULL),
('b551f1eb-fe4c-4771-8359-dae5bcccf50f','905318109098','NRW MENDEN FRÖNDENBERG adlı müşterinizin 45586545 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL),
('b560c13b-5859-43e5-8572-736bb494498f','4917656985678','Sayın MURAT BALTACI(K), 644762741 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644762741\n\nDear MURAT BALTACI(K), your shipment with 644762741 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644762741\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('b56461f5-bcec-4ee1-98af-9f53f48a230a','905078062550','İLYAS GÖK adlı müşterinizin 598982184 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('b565493d-48db-47db-b563-253e1efa80bf','4917634567085','Sayın BERFİN HALİS ŞENGÜL, 910572875 nolu gönderiniz 1154 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910572875\n\nDear BERFİN HALİS ŞENGÜL, your shipment with 910572875 was delivered to you with the delivery code 1154. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910572875\n\n\nBICARGO','1','197eebba-bc46-492a-86c8-87638b86150d',NULL),
('b567691d-d55c-4311-9b97-0c03f6d4fd69','905069116877','CEMİLE İLHAN adlı müşterinizin 817239122 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('b56a4d89-5f49-436c-8269-bfb1bc947fe7','905331602195','HASAN BİLECEN (SSH) adlı müşterinizin 221996027 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('b56ab1ec-8fdb-4119-99f6-952100200bfb','905075277637','ÖZLEM TÜRKMEN adlı müşterinizin 745853192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('b56d9cbf-39ca-4324-97c6-0e80260db8b2','4916221534324917','Sayın GÖKHAN UYSAN, 42873500 nolu gönderiniz 9535 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42873500\n\nDear GÖKHAN UYSAN, your shipment with 42873500 was delivered to you with the delivery code 9535. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42873500\n\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('b56fc3bc-4a8e-4087-8a7b-7e8b1b81b021','491796697290','531344250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6551 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531344250\n\nYour shipment with the number 531344250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6551. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531344250\n\nBICARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('b57498a5-44c8-4eea-97d9-c92368d90be6','436763502568','278329196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3927 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278329196\n\nYour shipment with the number 278329196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3927. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/278329196\n\nBICARGO','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('b57b9bee-e2a4-4e5f-a4c3-2acc434d250e','905301592882','CAN KÜREKÇİ adlı müşterinizin 910426934 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('b582c184-d92e-4097-81e2-3337cd8a007a','905313340045','Sayın yetkili; MARİNE NETO adlı müşterinize 43720744 nolu gönderinizin sandalye ürünü 3 parça halinde Fatura adresinizden 27.03.2025 15:29:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39b9f7fd-eff8-4a6e-975f-50fa78b8d93e',NULL),
('b582e0e4-9bd7-48ad-849f-ddb4b061c52b','905517075149','Sayın yetkili; AYSEL-İSMAİL ÇILGIN adlı müşterinize 478928003 nolu gönderinizin 2 ADET KANEPE ürünü 2 parça halinde nahita sofa (dayı) adresinizden 09.10.2025 16:50:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('b58586ea-4488-41dd-95fe-dc35cea99210','4917660894702','478816988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5865 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478816988\n\nYour shipment with the number 478816988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5865. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478816988\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('b58b2f83-8dcc-4d1f-b80d-d38b3b0e117c','436603002938','Sayın METİN EROL, 437306380 nolu gönderiniz 4025 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437306380\n\nDear METİN EROL, your shipment with 437306380 was delivered to you with the delivery code 4025. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437306380\n\n\nBICARGO','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('b5912bee-b23f-4685-ae22-3514b147c571','905333323012','HÜSEYİN CANDAN adlı müşterinizin 695249199 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('b5917fbc-1def-43da-9b68-dc0aa971b24b','33668105646','Sayın BURCU GELİR , 221461818 nolu gönderiniz 2777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221461818\n\nDear BURCU GELİR , your shipment with 221461818 was delivered to you with the delivery code 2777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221461818\n\n\nBICARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('b59955d6-6a6a-4b32-bd54-8e8a76dad8ea','491742714883','Sayın BORAN ALBAYRAK, 598668612 nolu gönderiniz 3209 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598668612\n\nDear BORAN ALBAYRAK, your shipment with 598668612 was delivered to you with the delivery code 3209. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598668612\n\n\nBICARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('b59bdf89-e0cb-44f3-9303-a12212e84a68','905335511664','Sayın yetkili; KADİR YILMAZ adlı müşterinize 371118280 nolu gönderinizin köşe takımı + berjrer ürünü 4 parça halinde Elitis Home adresinizden 22.10.2025 12:59:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9ad30007-c146-4449-9cf9-5e061740cfa4',NULL),
('b59ecb81-eb64-4988-b0b1-6baecf6a91f9','905454259202','Sayın yetkili; BELKISA KAPLAN adlı müşterinize 478428380 nolu gönderinizin KOLTUK KASASI ürünü 1 parça halinde SAGA KÖŞE adresinizden 29.05.2025 12:11:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('b59ff6e2-5b44-4687-a45b-02f6fe89defe','32466345026','501766543 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2464 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501766543\n\nYour shipment with the number 501766543 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2464. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501766543\n\nBICARGO','1','3d2aaa7f-67db-4dff-a3ad-5b3684784654',NULL),
('b5b1fbfe-9197-4891-97c6-a049483fff07','4915732123337','449196428 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10098 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449196428\n\nYour shipment with the number 449196428 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10098. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449196428\n\nBICARGO','1','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL),
('b5b251c9-5388-4c30-ab7f-1044da91fa51','41763260101','Sayın FJOLLA VRENEZİ, 613853408 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613853408\n\nDear FJOLLA VRENEZİ, your shipment with 613853408 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613853408\n\nBICARGO','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('b5b64873-96da-4d05-ab9a-cfb5e1fdf936','32495776498','Sayın AHU KARUÇ, 437170354 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437170354\n\nDear AHU KARUÇ, your shipment with 437170354 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437170354\n\nBICARGO','1','b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8',NULL),
('b5b683ff-7ec4-4b5e-be1a-d2e929e267c4','0033673412285','Sayın ZEKERİYA AKTAŞ, 735525138 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735525138\n\nDear ZEKERİYA AKTAŞ, your shipment with 735525138 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735525138\n\nBICARGO','2','70679c39-169c-46b4-9b96-b3994b9aee84',NULL),
('b5bef65c-663d-4e0d-9d68-c288ac130e14','31655012632','501423957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10610 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501423957\n\nYour shipment with the number 501423957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10610. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/501423957\n\nBICARGO','2','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('b5bfd6fa-bfd9-48f7-8fa5-2c25534d8c60','491632506225','Sayın ÖZGE ÖZTÜRK, 817121694 nolu gönderiniz 7842 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817121694\n\nDear ÖZGE ÖZTÜRK, your shipment with 817121694 was delivered to you with the delivery code 7842. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817121694\n\n\nBICARGO','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('b5c16273-5a2c-460b-9806-76c7a69d6949','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin 3+3+1+1 YATAK ODASI  ürünü 4 parça halinde Comfortlife  adresinizden 13.11.2024 15:45:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('b5c61afd-ba34-4f6a-a4a1-7e1094f97537','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin masa orta sehpa  ürünü 5 parça halinde mobilyalar  adresinizden 15.09.2025 10:26:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('b5cb9229-e2b6-4fe2-9a04-1498d7e78ee7','905313340045','NESLİHAN CAN adlı müşterinizin 437940825 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('b5ccc19d-926d-466f-8c63-0577dca038f4','905075277637','Sayın yetkili; MAJD KAMSHA adlı müşterinize 745653378 nolu gönderinizin PIER SANDALYE  ürünü 3 parça halinde Fatura adresinizden 23.09.2025 10:48:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('b5cce4b3-2c48-4488-8449-922ecd29b42a','4915209874981','Sayın AYLA BAYKAL, 644606140 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644606140\n\nDear AYLA BAYKAL, your shipment with 644606140 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644606140\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('b5d4a669-1870-4135-bac2-83ab44bb1f0e','905454259202','Sayın yetkili; YALÇIN BÜYÜKMURAT adlı müşterinize 478643015 nolu gönderinizin köşe ve orta sehpa ürünü 5 parça halinde çelikbey inegöl depo adresinizden 05.01.2025 16:52:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54305dea-1aae-421b-a780-6ea6cb1e48be',NULL),
('b5d9ba50-9f64-4f01-a316-77654e82f98e','905340236938',' adlı müşterinizin 146630568 nolu gönderisi 43 parça halinde yola çıkmıştır.','1',NULL,NULL),
('b5da2109-2bc6-4a06-bc0b-6d4b552c5f01','905075277637','Sayın yetkili; FATMA ALTAY adlı müşterinize 745871666 nolu gönderinizin KING PLATİN BAZA SETİ 180X200 ürünü 2 parça halinde Fatura adresinizden 20.05.2025 14:24:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a00e37fb-9c25-4ad9-b693-543d9ddf388a',NULL),
('b5da7e72-0820-4f82-ab08-905b8af2adea','905350617509','Sayın yetkili; ELFRİDA RAİCEVİC  adlı müşterinize 613510894 nolu gönderinizin Traverten masa+sehpa ürünü 1 parça halinde Fatura adresinizden 30.07.2025 11:13:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('b5dd1555-3ab1-4eb9-9617-07c228d92fbe','491752616978','61390448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1837 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61390448\n\nYour shipment with the number 61390448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1837. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61390448\n\nBICARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('b5de926d-407e-4611-b11c-00a2a2c2fca0','905349208933','AYLİN KIRLANGIÇ adlı müşterinizin 127221315 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','96741763-bc18-47ed-be48-0c973149d4fb',NULL),
('b5df191b-0915-4b6f-9e05-642d192b50ca','905454259202','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin koltuk takımı ürünü 3 parça halinde ikon koltuk adresinizden 02.05.2025 16:37:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('b5e31fd3-6c5b-4daf-898b-4ed4b610db8f','497680698747','Sayın BUKET AKDAG, 531380104 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531380104\n\nDear BUKET AKDAG, your shipment with 531380104 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531380104\n\nBICARGO','2','47f285e8-830a-42cf-a352-d8268aef8cdb',NULL),
('b5e33011-912c-4e27-ae0e-d183d0576909','905335511664','HAFİZE BALİ adlı müşterinizin 371539784 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('b5e4116f-b660-4a98-af61-e254971a4cde','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin sandalye papuçları ürünü 1 parça halinde kuka adresinizden 23.06.2025 14:03:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('b5e5bf02-308f-41fd-a592-3d98b9b350d1','4917620172453','Sayın ZEYNEP KÜÇÜKBIYIK, 531450758 nolu gönderiniz 1936 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531450758\n\nDear ZEYNEP KÜÇÜKBIYIK, your shipment with 531450758 was delivered to you with the delivery code 1936. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531450758\n\n\nBICARGO','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('b5e6b129-4688-4db9-85af-3ceea37a9cb3','905461661672','Sayın yetkili; BARAN YILDIZ adlı müşterinize 644832811 nolu gönderinizin KARYOLA  ürünü 5 parça halinde MOE KARYOLA adresinizden 19.08.2025 10:33:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('b5e83ab8-a6f1-4fbd-9544-4b39f5de2e91','905461661672','MAZHAR BAYMAN SSH adlı müşterinizin 644803178 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('b5ea973c-2096-455d-b01d-a5a0fdde4dd7','491739901545','501247386 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9935 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501247386\n\nYour shipment with the number 501247386 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9935. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501247386\n\nBICARGO','1','088fba56-0e50-4ce7-864f-7f301956e881',NULL),
('b5eb7c35-5693-4c6f-8509-6adb714dd6c8','33675154529','Sayın MEHMET ALİ ADIGÜZEL, 455411696 nolu gönderiniz 10459 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455411696\n\nDear MEHMET ALİ ADIGÜZEL, your shipment with 455411696 was delivered to you with the delivery code 10459. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455411696\n\n\nBICARGO','1','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL),
('b5ecff2c-e8bb-4b07-aea3-afaeb1c7d4d7','4917672315833','786286562 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/786286562\n\nYour shipment with the number 786286562 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/786286562\n\nBICARGO','1','40eb2dd4-c425-4ede-8ea4-d5c3dd446f6f',NULL),
('b5ee3cfd-c07b-44dd-b332-c874af550244','905313340045','Sayın yetkili; CEM BÜYÜKDEMİRCİ adlı müşterinize 437545074 nolu gönderinizin Masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 30.08.2025 13:54:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('b5f09266-c227-49ee-b1d3-3fb355b63317','905304259202','BERİVAN TİNTAŞ adlı müşterinizin 478994871 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('b5f1856b-1072-41cd-9de6-9120cb11c632','436763463503','613502652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613502652\n\nYour shipment with the number 613502652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613502652\n\nBICARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('b5f4e615-779e-4af5-8269-e48ae582a293','31648828012','221966080 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4095 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221966080\n\nYour shipment with the number 221966080 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4095. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221966080\n\nBICARGO','1','bcb1c04d-9368-4b93-9cd1-2dcb724bc9f9',NULL),
('b5fccb5a-1142-4697-ab8e-e6b4ac5e8d2d','905331602195','Sayın yetkili; ÖZGÜR GÖKÜZÜM adlı müşterinize 22142813 nolu gönderinizin 90x190 mermer baskılı masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 14:39:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('b5fcd32b-2ade-459c-b14d-dec923cbda82','905301592882','FETHİ YÜCEL  adlı müşterinizin 910728512 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4620449d-5bd3-49d6-816f-684d639a3e44',NULL),
('b5fcd41f-353f-4fc3-aa95-36f0c6bb4fac','491784094408','Sayın TÜLAY ÇAĞLAR, 644637792 nolu gönderiniz 5948 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644637792\n\nDear TÜLAY ÇAĞLAR, your shipment with 644637792 was delivered to you with the delivery code 5948. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644637792\n\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('b5fd007b-7b63-43fe-90cb-3f9db27bc0f8','905335511664','FATMA KAYA adlı müşterinizin 371579541 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('b6000048-d290-4c2f-87b4-03bbf3eef13a','33766319183','910670298 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6175 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910670298\n\nYour shipment with the number 910670298 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6175. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910670298\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('b6047ced-f58a-4776-9825-3566f58a38da','905517075149','Sayın yetkili; MURAT KALKAN adlı müşterinize 478778771 nolu gönderinizin masa ve 6 adet sandalye ürünü 5 parça halinde BRAWWA MOBİLYA adresinizden 04.08.2025 11:20:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be724a3e-9060-4b50-872b-a56ac4c3c92b',NULL),
('b605dc62-6ba5-41a0-9e95-88c8ad1d81ae','905333221039','AHASSSDDDW adlı müşterinizin 750704426 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL),
('b609997d-8cd7-4d32-8e0d-0e6410a5c6ce','905075277637','HARUN UZUN adlı müşterinizin 745519015 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL),
('b6108e02-1aa5-4265-8bd6-7e60cc43771c','905313340045','KEMAL URLAN  adlı müşterinizin 43755091 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('b612826e-c7cd-4e10-81e5-be2e0c8434e4','905335708965','BİLAL KARROUCH adlı müşterinizin 73598166 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b9c92720-b4b4-43eb-a9cc-aa09b537ad87',NULL),
('b6174dcc-a8ae-4237-8a10-4a1e81b7e92c','905335511664','MUHAMMED TOPAL adlı müşterinizin 371681337 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('b61b178b-63c5-4cbe-a5ea-19986c43454f','905364752848','SILA MARKET adlı müşterinizin 231712628 nolu gönderisi 27 parça halinde yola çıkmıştır.','1','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL),
('b61c2f32-e3b2-40e0-8629-f884b6018faa','5325000478','Sayın MEHMET KARAMAN, 22.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4361714\nŞifre : 4361714\n			\nBİCARGO','1',NULL,'436a1d7c-14cd-401b-8132-3d9c26d9d327'),
('b6225cc7-404d-440a-b2df-f942c798eb23','4915560755375','Sayın EMRE YILMAZ SSH , 745771664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745771664\n\nDear EMRE YILMAZ SSH , your shipment with 745771664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745771664\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('b62c992f-236d-45d6-98c6-7543958db561','905075277637','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin PALERMO KARYOLA BAZASIZ ürünü 5 parça halinde AREA adresinizden 18.09.2025 14:23:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('b6330501-6397-4e4a-abfe-ad6358fb418b','32494484997','Sayın DEFNE AKAY, 478642368 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478642368\n\nDear DEFNE AKAY, your shipment with 478642368 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478642368\n\nBICARGO','1','967d15a7-2096-45bd-bc90-7a65319402f4',NULL),
('b6334aaf-77d0-49f1-b47e-1e4582570300','905304259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478783487 nolu gönderinizin ŞİFONYER-MASA SANDALYE-BAZA SETİ-SEHPALAR ürünü 7 parça halinde çelikbey inegöl depo adresinizden 17.04.2025 13:29:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('b637d926-5580-4a01-8b87-ced4901b8a1d','905335708965','FERİT YEKDA adlı müşterinizin 248284961 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL),
('b63a0cab-8065-4fb7-abf7-0eda5c1f7579','905335511664','Sayın yetkili; ALMİRA ULFA adlı müşterinize 371258376 nolu gönderinizin karyola + yatak ürünü 5 parça halinde Fatura adresinizden 20.10.2025 14:53:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e784e31f-ff92-404d-ba37-0dfbff43b309',NULL),
('b6407498-0ee4-4371-ae7e-10c916dc6a6d','905075277637','Sayın yetkili; CEYLAN ÇELİK adlı müşterinize 745747218 nolu gönderinizin KING PLATİN BAZA 160X200 1 TK  ürünü 4 parça halinde Fatura adresinizden 06.08.2025 15:16:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('b6448bf9-aed7-42ed-9cd1-4819c4203535','905078062550','Sayın yetkili; ENES KARABAŞOĞLU adlı müşterinize 598130952 nolu gönderinizin köşe koltuk ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 07.08.2025 15:28:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('b64629a5-5bc0-45dd-909e-b067db657dd5','491752309322','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('b6493b94-57c9-46a5-a955-894c6025699a','905431026110','Sayın yetkili; HÜSEYİN ÇELİK adlı müşterinize 351888584 nolu gönderinizin KARYOLA ürünü 3 parça halinde ALBESSA DESİGN  adresinizden 28.08.2025 16:19:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('b6496b96-fb53-4788-acd4-3c8b0f2c02e0','33763241174','478423651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5297 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478423651\n\nYour shipment with the number 478423651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5297. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478423651\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('b652196f-0e41-4812-8761-ee4afa89b502','905349208933','HARUN ERCAN adlı müşterinizin 127847689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('b6554138-5bdc-4050-8e26-89a51fa4d13d','33623950988','Sayın İSA KAPLAN , 962908456 nolu gönderiniz 8540 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/962908456\n\nDear İSA KAPLAN , your shipment with 962908456 was delivered to you with the delivery code 8540. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/962908456\n\n\nBICARGO','1','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL),
('b656839d-88c3-4304-851d-15b21bc2df76','905336367828','Sayın yetkili; Nader siala  adlı müşterinize 982707795 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 15.11.2024 10:29:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3c99fa74-861a-4491-a1d0-f58a8971a7b2',NULL),
('b65a91d3-560f-421b-b3a2-747385189434','905325000478','Sayın yetkili; ABDULKADER TARRAB adlı müşterinize 412383870 nolu gönderinizin yatak ürünü 1 parça halinde Fatura adresinizden 11.07.2025 11:25:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('b65acafb-f19d-4f2f-a8a2-c9f2eb980aa9','4915753272553','ŞÖFÖR NUMARASI\n					+905467896981','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('b65ad8b9-7b4e-492a-968d-24ea73b49161','905331602195','ANİSSA İFAR  adlı müşterinizin 221924148 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','04d19bef-43c6-4b34-937f-982110f6f8e0',NULL),
('b65d0c1d-589f-4280-913d-b382c28e1da5','436603775115','DRİVER NUMBER\n					905541100849','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('b660a196-5dde-48b0-a35b-80ab9f178217','4369910940808','31925609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6334 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31925609\n\nYour shipment with the number 31925609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6334. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/31925609\n\nBICARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('b665a712-90b6-480a-9566-d55d8ba64212','33652634167','478202878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9208 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478202878\n\nYour shipment with the number 478202878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9208. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478202878\n\nBICARGO','1','702ebb26-b834-4081-a58c-2279f0d9af03',NULL),
('b6672e76-34c1-430f-a4f7-43448307a819','491748731890','Sayın SEVDE SOYUÖZ, 675253974 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675253974\n\nDear SEVDE SOYUÖZ, your shipment with 675253974 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675253974\n\nBICARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('b6723f29-26c1-421f-add9-a9dc5f08c571','4915750967512','Sayın MURAT KİRİKKAYA, 613529206 nolu gönderiniz 9024 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613529206\n\nDear MURAT KİRİKKAYA, your shipment with 613529206 was delivered to you with the delivery code 9024. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613529206\n\n\nBICARGO','1','e29cd434-988f-45c9-8c62-49efd76090dd',NULL),
('b672caba-1408-48a2-8f56-7b7dc8c6a535','33695774017','Sayın OĞUZHAN TIĞ, 478824521 nolu gönderiniz 9984 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478824521\n\nDear OĞUZHAN TIĞ, your shipment with 478824521 was delivered to you with the delivery code 9984. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478824521\n\n\nBICARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('b674ad17-b037-41a7-a699-1a092ae9681f','0744884261','644426448 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7232 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644426448\n\nYour shipment with the number 644426448 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7232. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644426448\n\nBICARGO','2','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('b67b2e20-ce4a-48ed-ad2f-91cbb5fb1963','905335511664','NERMİNA SKENDERİ adlı müşterinizin 371749484 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('b6821323-ef6e-4144-8651-8fc260d89431','31636532119','Sayın ZEYNEP KORKMAZ, 127659069 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127659069\n\nDear ZEYNEP KORKMAZ, your shipment with 127659069 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127659069\n\nBICARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('b6860662-7ee8-4023-86c3-7dc63f6e455d','905388618969','Sayın yetkili; ESRA MURATOGLU adlı müşterinize 786276080 nolu gönderinizin Sandalye ürünü 4 parça halinde Fatura adresinizden 14.04.2025 12:13:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','070c6ccc-dbd4-4976-95cd-6b5d4ad3bacf',NULL),
('b687356e-6397-48da-b54b-1970634c8acf','905079358213','Sayın yetkili; MUSTAFA YILMAZ SSH  adlı müşterinize 745338988 nolu gönderinizin 90lık başlık  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('b68d67d5-2ec9-41aa-8f5e-9d4647df0941','4917620172453','531450758 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1936 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531450758\n\nYour shipment with the number 531450758 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1936. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531450758\n\nBICARGO','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('b68d6a8b-f7bc-40e5-9441-8b903bab42ea','4915774500125','Sayın BELGİN YAĞLI		, 910762495 nolu gönderiniz 3901 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910762495\n\nDear BELGİN YAĞLI		, your shipment with 910762495 was delivered to you with the delivery code 3901. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910762495\n\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('b692ce6a-e352-4dcf-aec2-930892076234','436767948204','011620933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011620933\n\nYour shipment with the number 011620933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011620933\n\nBICARGO','1','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL),
('b6978fb6-3977-4958-a798-8529adb9c582','4917683242362','Sayın KENAN BAYAR, 74568874 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74568874\n\nDear KENAN BAYAR, your shipment with 74568874 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74568874\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('b69d70e2-6a16-4b58-8070-753d0bafceee','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 120X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('b69eeb4e-378f-41b7-993b-d2ccc1e0fc97','004915733334152','248904478 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8538 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248904478\n\nYour shipment with the number 248904478 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8538. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248904478\n\nBICARGO','2','6faddf53-18a1-4f1f-affe-7ed38ef9e524',NULL),
('b6a03843-7c14-45ee-8eb2-865667e12df9','4915226123899','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('b6a8b4ef-e5fd-4eb9-9a3f-7f19e1e590aa','4915739434455','644484322 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6567 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644484322\n\nYour shipment with the number 644484322 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6567. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644484322\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('b6a957e5-3d1e-422e-9793-b5c3509fa173','4915228807643','598961970 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1030 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598961970\n\nYour shipment with the number 598961970 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1030. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598961970\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('b6aa9352-2ecf-4015-b1e2-ba4335ada51f','905078062550','Sayın yetkili; SİHAM MAHMOUD adlı müşterinize 598280715 nolu gönderinizin köşe koltuk ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 15.08.2025 16:21:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('b6ae1dcf-e8d6-4831-8fba-c0bca319cb22','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin traverten palet ürünü 1 parça halinde mithat abi adresinizden 19.06.2025 15:39:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('b6b97243-f4af-4170-ac34-6756637ded1b','33658222162','Sayın NEVZAT KAHRAMAN, 478212125 nolu gönderiniz 4977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478212125\n\nDear NEVZAT KAHRAMAN, your shipment with 478212125 was delivered to you with the delivery code 4977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478212125\n\n\nBICARGO','1','2894ebed-fc17-429a-b8af-6ed24e9d7a59',NULL),
('b6bd4fff-1ae4-4375-bb0a-9ee2d3825a9f','905540182920','448805304 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2071 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/448805304\n\nYour shipment with the number 448805304 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2071. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/448805304\n\nBICARGO','1','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL),
('b6c04d70-feee-44b0-a95d-452b8590d7e9','491602272143','644445996 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2843 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644445996\n\nYour shipment with the number 644445996 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2843. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644445996\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('b6c2c4ed-f48c-4086-bad2-08991775e106','4917632406392','745212688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745212688\n\nYour shipment with the number 745212688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745212688\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('b6c516d8-36e1-48eb-8f70-ae50b4cf4e82','4367762955236','Sayın SHAHLA HOSSEİNİ, 982320922 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982320922\n\nDear SHAHLA HOSSEİNİ, your shipment with 982320922 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982320922\n\nBICARGO','2','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL),
('b6c575f9-2509-41e8-848e-c4f7845a2b0b','905542969953','428160643 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428160643\n\nYour shipment with the number 428160643 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428160643\n\nBICARGO','1','0d464a57-d48d-4898-8ed5-05d911433d8e',NULL),
('b6c6a72e-ca72-478d-9eb2-b0ab9f62062f','436609855451','Sayın FATMA KAYA, 371579541 nolu gönderiniz 4034 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371579541\n\nDear FATMA KAYA, your shipment with 371579541 was delivered to you with the delivery code 4034. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371579541\n\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('b6cab6bf-66dc-4583-bebc-74af5f856a89','33679890673','614788293 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5256 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614788293\n\nYour shipment with the number 614788293 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5256. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614788293\n\nBICARGO','1','41fed73c-dc58-4075-b35d-1e0c09c3eab3',NULL),
('b6daad87-aac4-4814-8c61-a8817367db82','00491605639383','Sayın MEHMET DORUM, 248526655 nolu gönderiniz 6050 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248526655\n\nDear MEHMET DORUM, your shipment with 248526655 was delivered to you with the delivery code 6050. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248526655\n\n\nBICARGO','2','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL),
('b6dbab10-e6cb-4c21-b763-a3a4d9526d2f','4915164418447','Sayın SELİM EROL, 976577497 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976577497\n\nDear SELİM EROL, your shipment with 976577497 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976577497\n\nBICARGO','1','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL),
('b6e78ede-b900-4632-890b-da7a119a60e2','4915210309033','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('b6f9877e-b311-40e3-96ba-01d312b6ee94','905079358213','Sayın yetkili; SULTAN YAŞAR  adlı müşterinize 745105230 nolu gönderinizin VOYAGE TEKLİ  ürünü 1 parça halinde RİXXE  adresinizden 14.10.2025 13:52:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06d506ff-85ab-4c73-8dc5-2b5ebf3a9143',NULL),
('b70533d4-e98c-47e1-bf47-5fde63597ab5','905078062550','Sayın yetkili; ZEHRA ÜNAL adlı müşterinize 598320188 nolu gönderinizin 6 sandalye ürünü 3 parça halinde LİN SANDALYE adresinizden 27.08.2025 17:40:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('b70c551f-09a8-45fd-b8b5-69c587e0be97','4915254790344','Sayın WASİ BAHİR , 613373885 nolu gönderiniz 7661 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613373885\n\nDear WASİ BAHİR , your shipment with 613373885 was delivered to you with the delivery code 7661. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613373885\n\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('b70d7978-5fce-4a7d-94bb-546123187d52','111111111111111','Sayın HÜSEYİN, 24886445 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/24886445\n\nDear HÜSEYİN, your shipment with 24886445 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/24886445\n\nBICARGO','2','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL),
('b71e2b25-a833-420f-a745-15b5b897a9e6','905336367828','PEPE DİMBİ GRACE adlı müşterinizin 982219496 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1f693920-f2af-4070-9034-3b5ae439f603',NULL),
('b720c19c-721a-47e4-ae0c-c67591ae2eab','4915732123337','Sayın HASRET BEYAZIT, 449196428 nolu gönderiniz 10098 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449196428\n\nDear HASRET BEYAZIT, your shipment with 449196428 was delivered to you with the delivery code 10098. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449196428\n\n\nBICARGO','1','5e63d250-c815-4013-8092-cf4f9d3d7e2e',NULL),
('b7216a78-4ef4-4612-b2d1-d484eb2f2d01','905054335859','YILMAZ İNAÇ adlı müşterinizin 501901219 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('b7239f02-b1b4-4c1d-8f13-e1a93dbd16a4','905336367828','Sayın yetkili; BRHZAD ALİKHANİ  adlı müşterinize 982402434 nolu gönderinizin Koltuk takımı  ürünü 5 parça halinde Tanev koltuk  adresinizden 21.02.2025 16:41:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('b72440d5-b98e-496e-bb4c-851f35d18357','4917661928608','750450570 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750450570\n\nYour shipment with the number 750450570 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750450570\n\nBICARGO','1','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL),
('b7246f4e-6372-40cd-887d-5ed9b8313771','491749753629','428360379 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3639 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428360379\n\nYour shipment with the number 428360379 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3639. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428360379\n\nBICARGO','1','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL),
('b727e6c4-3352-497b-b622-b1400e9551d6','905325165070','Sayın yetkili; Erkan ÖZKÖKKAYA adlı müşterinize 734788911 nolu gönderinizin Zigon sehpa+c sehpa ürünü 1 parça halinde İnobilya Mağaza adresinizden 13.11.2024 17:24:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8197b3b9-ae6a-4c96-ac0a-85c38b7a4871',NULL),
('b72b30dd-215c-4305-a036-a5d94010d04d','306978038133','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('b72ba888-03fc-4c63-a54e-5199b6dcdad8','905349208933','ZEYNEP KORKMAZ adlı müşterinizin 127659069 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('b72d28eb-ee8d-4b0a-b16f-b84a7b17223d','905079358213','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin STOCKHOLM KOLTUK 3+3+1 ürünü 5 parça halinde VAAV adresinizden 28.08.2025 15:58:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('b72df171-65a9-4e9c-a083-41dee0f6e425','905336367828','ABBAS GHULANI  adlı müşterinizin 982978293 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('b7389bbc-baa5-4c02-8f44-4323fb4acb8f','905075277637','Sayın yetkili; DELİL ÖZTÜRK adlı müşterinize 74529534 nolu gönderinizin BONNY YEMEK ODASI ürünü 13 parça halinde BRAWWA MOBİLYA BÖLÜMÜ adresinizden 17.03.2025 12:51:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e7dc595-616a-449b-82e5-63d04f63ca8f',NULL),
('b73b31d7-d8d1-41b5-884e-275596e55aa4','41792532277','982973548 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4298 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982973548\n\nYour shipment with the number 982973548 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4298. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982973548\n\nBICARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('b73d7a33-7ece-4e73-9b23-d759306344de','905312762034','TEREZA SHARİPOVA adlı müşterinizin 808790233 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('b73ebf8e-74e7-4a32-a63c-a76601c1b630','491725466785','Sayın NURETTİN BAYRAK , 613661947 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613661947\n\nDear NURETTİN BAYRAK , your shipment with 613661947 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613661947\n\nBICARGO','1','f4925a41-5026-4e2b-a759-10c30274e086',NULL),
('b73f0ea0-8fd2-4040-9d66-0e28feebe131','31657997897','Sayın İLKAY İNCE, 478485864 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478485864\n\nDear İLKAY İNCE, your shipment with 478485864 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478485864\n\nBICARGO','1','5552132e-e408-47bc-ab37-19083b622454',NULL),
('b742a55e-35bc-44e6-88ef-70165fe08a60','05388999874','Sayın CEMAL YALÇIN, 319116491 nolu gönderiniz 1890 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319116491\n\nDear CEMAL YALÇIN, your shipment with 319116491 was delivered to you with the delivery code 1890. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319116491\n\n\nBICARGO','2','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('b74368f6-0644-4761-8a87-c7f3f46ca2ff','9053259981980','Sayın yetkili; NERGİZ YURTSEVEN adlı müşterinize 614525681 nolu gönderinizin BAMBİ REFORM THERAPY HVZ BAZA 180x200 ürünü 2 parça halinde Fatura adresinizden 03.09.2025 11:34:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('b74608f8-1e74-4e4d-98b0-e08917b1066c','5325000478','Sayın NECDET NECDET, 03.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5489842\nŞifre : 5489842\n			\nBİCARGO','1',NULL,'54ef8984-2e3b-495d-97cf-d335170f5365'),
('b749a241-104f-4922-ab1f-bf75e86fdbbf','4915224134737','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('b75093e0-6daa-483a-8302-95fb6f50d672','905079358213','Sayın yetkili; NİLÜFER YAMAN SSH  adlı müşterinize 745525130 nolu gönderinizin KOMODİN PANO + MALZEME KUTUSU SSH  ürünü 2 parça halinde Fatura adresinizden 06.08.2025 16:19:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('b7526232-d1f3-4f11-a76f-8cc3823f0035','905331602195','SANAA ARGANE adlı müşterinizin 221573899 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6968286-4388-4d14-a075-b49d0ae8ae44',NULL),
('b7535b4f-45fc-4764-8b64-3e16325e9a27','31685834791','Sayın MÜCAHİD AL, 437880840 nolu gönderiniz 7482 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437880840\n\nDear MÜCAHİD AL, your shipment with 437880840 was delivered to you with the delivery code 7482. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437880840\n\n\nBICARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('b7553298-6d31-4461-8959-87f2605120cb','4917660894702','Sayın YAŞAR YALMAN, 478559056 nolu gönderiniz 2136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478559056\n\nDear YAŞAR YALMAN, your shipment with 478559056 was delivered to you with the delivery code 2136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478559056\n\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('b7597f1b-4361-4d67-9ec5-7a3d5f1ae2b5','905336367828','VEDAT ÜZER  adlı müşterinizin 982342488 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('b75c9461-f614-4998-a8fc-dc0b65cdcb24','4915226123899','Sayın HAMİYET KARASOY, 371876767 nolu gönderiniz 3607 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371876767\n\nDear HAMİYET KARASOY, your shipment with 371876767 was delivered to you with the delivery code 3607. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371876767\n\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('b7656a99-2ac3-4e40-a409-b1490026b9d7','905461661672','Sayın yetkili; MAZHAR BAYMAN SSH adlı müşterinize 644803178 nolu gönderinizin sandalye ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 08.08.2025 15:27:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('b766602c-2069-4e12-9521-d2ba42059fe4','905454259202','MUSTAFA ÇELİK adlı müşterinizin 478945094 nolu gönderisi 35 parça halinde yola çıkmıştır.','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('b768dec9-7bed-4b25-bb15-20ce382939ba','905454259202','FARUK EMRE KAYA adlı müşterinizin 478418480 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','4a5445f2-707f-4fe2-a767-f0dcae05a014',NULL),
('b768f18f-f8da-4dda-aa01-cf151affb6a2','905078062550','FERHAD MORİD adlı müşterinizin 598188038 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('b76939b7-f14f-4e8f-9af9-52466d57b785','905335708965',' adlı müşterinizin 248573438 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','6042b337-8e8a-4695-ae65-4e5f031a1b0f',NULL),
('b76f94b0-afb1-451b-85a8-1756140b539a','33616745884','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('b77100d8-bec6-4bb8-88e2-cb9caa3f1c07','491795209461','İletişim \n					Şöför Uğur Acar +905424435917','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('b772a6ba-412b-44f4-909b-e090f7df1c85','0033613462791','24886445 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9792 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/24886445\n\nYour shipment with the number 24886445 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9792. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/24886445\n\nBICARGO','2','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL),
('b77a2369-f24a-490e-aa7f-c621776076db','0033666437319','Sayın ERKAN , 248974894 nolu gönderiniz 7946 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248974894\n\nDear ERKAN , your shipment with 248974894 was delivered to you with the delivery code 7946. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248974894\n\n\nBICARGO','2','b094bf7e-153f-4984-b737-f7bdece60165',NULL),
('b77a95ea-bf35-4009-bce5-e6abe2666f73','905331602195','Sayın yetkili; MERAL GÖGDAS  adlı müşterinize 221965496 nolu gönderinizin Beyaz masa ayak ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 25.06.2025 18:04:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('b7813a58-ff3f-4c94-aeb0-a6063b1d1c96','905331602195','Sayın yetkili; BOUAZZA SANNA  adlı müşterinize 221264394 nolu gönderinizin Balat sandalye ürünü 6 parça halinde Fatura adresinizden 18.12.2024 16:19:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('b78190cf-6f69-4de5-9ac3-61a671224762','4915255996436','Sayın ÇİLEM KAYNI, 614508817 nolu gönderiniz 10284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614508817\n\nDear ÇİLEM KAYNI, your shipment with 614508817 was delivered to you with the delivery code 10284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614508817\n\n\nBICARGO','1','af0f7782-1737-4c97-a42f-8db7bba38d2e',NULL),
('b7836070-f044-45e9-9789-ef960dedfab0','004917663284963','735977134 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5387 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735977134\n\nYour shipment with the number 735977134 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5387. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735977134\n\nBICARGO','2','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL),
('b788b8e9-dbfb-4ca9-96f7-59ab2786f742','491622351265','Sayın SEVİM KARATEKE , 613528305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613528305\n\nDear SEVİM KARATEKE , your shipment with 613528305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613528305\n\nBICARGO','2','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('b78c1be5-46af-427b-8a1f-cc9e5e28d884','31638550109','221900850 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221900850\n\nYour shipment with the number 221900850 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221900850\n\nBICARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('b78db1b7-4c17-48d9-8512-8d5cb2d2dbfb','4366488883248','Sayın MILANA PRODANOVIC, 745837821 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745837821\n\nDear MILANA PRODANOVIC, your shipment with 745837821 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745837821\n\nBICARGO','1','70bbe7ca-c823-4871-aad0-31c437da2b3c',NULL),
('b7962b38-183c-446b-9dbf-342fb946d1c8','33637509452','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('b796edf0-f17c-45d7-847b-43d1f476c378','905454259202','YAKUP KILIÇ adlı müşterinizin 478516951 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5a03448d-5de2-4154-86a6-c1af699ed137',NULL),
('b7a97605-37be-4782-b7f9-e4ad266f3767','11111111111','Sayın EYÜP  YAMAN, 23.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1273614\nŞifre : 1273614\n			\nBİCARGO','2',NULL,'fdb12736-f1dd-418e-b2d9-bcaebc7146d8'),
('b7ae0348-4a93-448e-a091-cf7fdd8f25dc','4369910728517','01914447 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6068 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/01914447\n\nYour shipment with the number 01914447 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6068. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/01914447\n\nBICARGO','1','97182860-1f38-433b-b884-7944ccda1a30',NULL),
('b7b49656-76c6-492d-9540-5d9baf6ccc87','491632336304','Sayın MİNE GÖKÜZÜM, 982992264 nolu gönderiniz 10047 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982992264\n\nDear MİNE GÖKÜZÜM, your shipment with 982992264 was delivered to you with the delivery code 10047. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982992264\n\n\nBICARGO','1','7cae2eaf-f51c-496a-aa79-beedb60cda43',NULL),
('b7b4cd0f-f356-4a7a-b8be-8480f476f15a','4917632545443','Sayın NURTEN YILMAZ (SSH) , 338842710 nolu gönderiniz 8962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338842710\n\nDear NURTEN YILMAZ (SSH) , your shipment with 338842710 was delivered to you with the delivery code 8962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338842710\n\n\nBICARGO','1','19b98edb-d0d6-4399-8b6c-60219add529d',NULL),
('b7b5a25d-aee3-4eaa-9069-c2a63c5eec20','4917620022816','Sayın AYLİN AY, 371201111 nolu gönderiniz 2570 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371201111\n\nDear AYLİN AY, your shipment with 371201111 was delivered to you with the delivery code 2570. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371201111\n\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('b7b78347-3afc-4f4d-8608-d1ba500f22df','4915208904469','Sayın YASEMİN YAŞA, 745818939 nolu gönderiniz 5818 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745818939\n\nDear YASEMİN YAŞA, your shipment with 745818939 was delivered to you with the delivery code 5818. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745818939\n\n\nBICARGO','1','88f68865-5f11-4a8f-8f8d-1e298ec5ff03',NULL),
('b7be5e40-6017-4fe6-997c-065a452dd024','5528582359','478730420 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4128 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478730420\n\nYour shipment with the number 478730420 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4128. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478730420\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('b7bf7963-0c6e-409c-9546-1f85c7ccd9b4','4915222735434','745808994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3336 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808994\n\nYour shipment with the number 745808994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3336. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745808994\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('b7c95eba-1e39-46fe-8538-2c2444ff6ad1','905059175469','Sayın yetkili; ERKAN BAYRAK adlı müşterinize 428222834 nolu gönderinizin kanepe 2 c sehpa pm lojistikte ürünü 3 parça halinde Fatura adresinizden 06.01.2025 16:03:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('b7ccc57f-b19c-44fb-bd3b-c837eed5e14e','4915772515214','Sayın OSMAN ALTUN, 644901751 nolu gönderiniz 6525 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644901751\n\nDear OSMAN ALTUN, your shipment with 644901751 was delivered to you with the delivery code 6525. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644901751\n\n\nBICARGO','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('b7cf1f0d-5db3-4713-a681-4e6544bdc189','4915566183812','644879098 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7111 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644879098\n\nYour shipment with the number 644879098 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7111. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644879098\n\nBICARGO','2','9236b858-0a44-4581-b11d-b5a57a9522a0',NULL),
('b7d4cf26-1b71-466c-9c8b-c36e4e43df7b','905442774505','CİHAN KÖSELER adlı müşterinizin 657734229 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d534081c-07c5-470c-bed4-f699f4319aa1',NULL),
('b7e17443-da18-4838-92b5-6308a1e3f0c9','905461661672','Sayın yetkili; TUĞRA NUR DÜZGÜN adlı müşterinize 644298759 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 29.05.2025 15:13:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('b7e5a529-f012-49d4-b6ba-6ac08038ff5c','4917632147972','644644143 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644143\n\nYour shipment with the number 644644143 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644644143\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('b7e723ca-d9c2-416f-97b2-7b87d95aee5f','905349208933','RÜVEYDA ŞAHİN adlı müşterinizin 12771217 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('b7ebc7e2-62d8-4b7f-a293-c60e9637f2b9','905075277637','EMRE YILMAZ adlı müşterinizin 745884226 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('b7ee8181-52d0-40a3-b416-291c01e48d7f','4917623882618','745898734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8401 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745898734\n\nYour shipment with the number 745898734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8401. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745898734\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('b7eed340-9f0f-49b8-8427-6a42e9540fd3','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU NEFRO BİLGİSAYAR KOLTUĞU ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('b7f0e5b1-f599-461a-b93c-36a8680dfd4d','905461661672','REİNAS HAİDARİ SSH adlı müşterinizin 644490677 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('b7f649ce-d9bd-4648-8885-2a3c81fb8f3f','905054335859','Sayın yetkili; TEKİN MAZLUM adlı müşterinize 501872546 nolu gönderinizin MASA ürünü 2 parça halinde Fatura adresinizden 18.12.2024 13:55:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca8bc896-5c58-4355-a8a8-a80a250e2558',NULL),
('b7fd2017-d30f-4e3e-b214-7a9fd84d47cf','32483436523','Sayın BELLA MEUBEL, 830905881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/830905881\n\nDear BELLA MEUBEL, your shipment with 830905881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/830905881\n\nBICARGO','1','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL),
('b7ffa1b2-6b87-484d-a5fc-7b72c07aca82','4915222735434','Sayın GÖKHAN ÇAYLAK, 745808994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808994\n\nDear GÖKHAN ÇAYLAK, your shipment with 745808994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745808994\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('b800dd8e-c95b-4767-9563-5aebfd21a026','33781091123','Sayın HÜSEYİN KAYAOĞLU, 853766753 nolu gönderiniz 9831 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/853766753\n\nDear HÜSEYİN KAYAOĞLU, your shipment with 853766753 was delivered to you with the delivery code 9831. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/853766753\n\n\nBICARGO','1','161a3eec-2f1c-415c-8536-7e1a1da5b969',NULL),
('b8016247-e7b6-4d28-8279-3fc00261e062','4917620485036','Sayın TALHA KARA, 598384021 nolu gönderiniz 8397 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598384021\n\nDear TALHA KARA, your shipment with 598384021 was delivered to you with the delivery code 8397. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598384021\n\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('b808e516-2169-4bc1-ba8c-3b2fbfd55360','905366385704','BELLA MEUBEL adlı müşterinizin 830905881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5cc7fdee-aea2-4e42-9349-1dfbca5c009e',NULL),
('b80b77f5-82ef-47c1-b7eb-1b30dee1a402','436603838566','Sayın YONCA KİLİC, 675592889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675592889\n\nDear YONCA KİLİC, your shipment with 675592889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675592889\n\nBICARGO','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('b8123a1a-3723-47ee-ab72-9933790a039e','905313340045','SERCAN KUCUR adlı müşterinizin 437626008 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('b8135813-7f17-4ae8-8637-2bab9cc0ef31','4917693356695','Sayın CEYLAN ÇELİK, 745747218 nolu gönderiniz 6858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745747218\n\nDear CEYLAN ÇELİK, your shipment with 745747218 was delivered to you with the delivery code 6858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745747218\n\n\nBICARGO','2','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('b8179bed-d734-4c02-b9bb-1d6b2819b78a','4901732611373','Sayın IVANA JURİC, 982728095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982728095\n\nDear IVANA JURİC, your shipment with 982728095 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982728095\n\nBICARGO','2','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL),
('b817c587-30a9-46c8-828e-708c8f4868b9','905461661672','ALİŞAN CERCİ(K) adlı müşterinizin 644847294 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','a856c3b2-bd1c-47db-b02f-9127f2bb4d67',NULL),
('b8204c20-997b-41a1-9c97-a75ba2fe5e80','905075277637','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin DOLAP KAPAK  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('b824d47f-2d1e-40cb-898a-0003edff3246','49015151400787','644458216 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644458216\n\nYour shipment with the number 644458216 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644458216\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('b8258889-90b8-4f8e-a0b0-3d604303bb91','31687509269','Sayın ABDULLAH KARACA, 221554711 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221554711\n\nDear ABDULLAH KARACA, your shipment with 221554711 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221554711\n\nBICARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('b827185d-4e13-452a-971b-83c5202b2304','41782412222','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('b82fb24c-4d1c-4e48-b315-ad8eaf5f8ef5','905331602195','Sayın yetkili; TEBIB MYRIAM  adlı müşterinize 221603036 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 14:11:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('b8302129-6259-4f22-9982-7f49724f243e','491751919255','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('b8305792-a123-45f4-a9e4-a2ae61018e95','905318109098','MUSTAFA  adlı müşterinizin 45559266 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc524c97-a5f3-4595-9e7c-64677cdda5fc',NULL),
('b832161c-f5a6-4f34-b221-99767f81f9e3','4917683383437','Sayın FATİH KAZAR, 428182749 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428182749\n\nDear FATİH KAZAR, your shipment with 428182749 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428182749\n\nBICARGO','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('b8343656-ad1b-451f-b49a-98c21c704a5f','905461661672','ÖMER VAROL(K) adlı müşterinizin 644714925 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('b8346adb-9b9a-45eb-9955-f284926cc32a','491784897423','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('b836c921-67d2-4d95-bbbb-00c7d23f3f43','436608636840','Sayın MUSTAFA ŞİMŞEK, 338730647 nolu gönderiniz 1567 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338730647\n\nDear MUSTAFA ŞİMŞEK, your shipment with 338730647 was delivered to you with the delivery code 1567. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338730647\n\n\nBICARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('b83d8da2-a49e-43ca-8be2-8a6255c98183','4917660886216','Sayın FATMİRA CELA, 449281517 nolu gönderiniz 3651 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449281517\n\nDear FATMİRA CELA, your shipment with 449281517 was delivered to you with the delivery code 3651. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449281517\n\n\nBICARGO','1','df3b6b97-3416-43f5-bb61-b50d903d9f72',NULL),
('b847b07f-d929-4f51-8c0f-f57a23605eb2','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('b848005e-cabf-42d4-83c2-38d7739d09ce','905301592882','EMRULLAH ŞENGÜL adlı müşterinizin 910304835 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL),
('b8480d42-c838-4ead-b695-b412f0ad8231','905075277637','BURAK SARIKAYA adlı müşterinizin 745816946 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('b84b2889-548b-4170-902a-8a243e375ac8','491723025069','Sayın MUSTAFA ÇETİN, 982490890 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982490890\n\nDear MUSTAFA ÇETİN, your shipment with 982490890 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982490890\n\nBICARGO','1','ead6dade-f350-443d-a16a-41863d612c7c',NULL),
('b8523ba7-6d76-426c-bd6d-33cce0d482d6','436601503958','501668492 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3881 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501668492\n\nYour shipment with the number 501668492 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3881. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501668492\n\nBICARGO','1','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL),
('b85495bf-7fbb-467f-9b2c-1bee41ffab67','905350617509','DİANA BARAKAEVA adlı müşterinizin 613554878 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('b85a4fe3-3a60-4556-a22f-e3b2d32e13e2','436765022152','515261200 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8969 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515261200\n\nYour shipment with the number 515261200 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8969. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515261200\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('b85aefb0-8e04-49d8-86a4-7bb682d55415','491774646467','Sayın TAYFUN TATLIGÜN, 8087036 nolu gönderiniz 10930 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/8087036\n\nDear TAYFUN TATLIGÜN, your shipment with 8087036 was delivered to you with the delivery code 10930. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/8087036\n\n\nBICARGO','1','0ea00d37-52d8-4f61-9891-dd8fcc0d358c',NULL),
('b85c5684-81b0-4035-990f-137feb213ed9','905313340045','Sayın yetkili; RASİM OZAN adlı müşterinize 437642214 nolu gönderinizin PUF ürünü 1 parça halinde Fatura adresinizden 20.06.2025 16:55:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('b85c9179-c1ba-4afc-9dc5-d57cc1f02526','905335708965','İBRAHİM BULUT adlı müşterinizin 73570714 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL),
('b863467b-dbe5-4f90-aebf-167185563580','33698234123','Sayın BRAHIMA NAIMA, 982446186 nolu gönderiniz 3808 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982446186\n\nDear BRAHIMA NAIMA, your shipment with 982446186 was delivered to you with the delivery code 3808. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982446186\n\n\nBICARGO','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('b865128f-719a-4911-823b-b718e208b150','9053259981980','ADEM  GENÇ adlı müşterinizin 614553524 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('b86537e8-baf1-45b5-9081-352b251149d8','905075277637','TUNCAY AKAR adlı müşterinizin 745483178 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL),
('b86b1cf1-2e58-4701-b0eb-9ee0dbdf8221','905304259202','YASİN OĞUZ adlı müşterinizin 478233957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('b8759eda-411d-4f26-8101-7dcbcc38610a','32465396386','221944135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8827 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221944135\n\nYour shipment with the number 221944135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8827. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221944135\n\nBICARGO','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('b877f008-19b1-47f8-a19b-53825d8f1883','491634257044','428490126 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2363 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428490126\n\nYour shipment with the number 428490126 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2363. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428490126\n\nBICARGO','1','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL),
('b87a3dda-07cd-495d-a8bb-8c025d55f193','491728162123','371304914 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371304914\n\nYour shipment with the number 371304914 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371304914\n\nBICARGO','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('b87b35cf-a0c6-44cd-b2a0-824b9f644090','905335708965','FATMA HANIM adlı müşterinizin 248259363 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','77917a95-2dc0-44c5-b207-d5b4157f7420',NULL),
('b87bbb18-74b6-4772-9ed3-1af66b8e19d5','4915209473876','449680755 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1079 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449680755\n\nYour shipment with the number 449680755 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1079. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449680755\n\nBICARGO','2','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL),
('b87e7e60-81df-46f5-bdd8-eecf6627be62','905394878216','MUSA LÖK adlı müşterinizin 517521279 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('b87ef1a1-dfde-4231-b445-1b99748b4a46','905461661672','GÜLŞAH SEVİMLİ adlı müşterinizin 644721676 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('b88086fc-163a-4647-af00-b2c402da7016','33660910086','Sayın SERKAN KAHRAMAN, 221254389 nolu gönderiniz 1515 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221254389\n\nDear SERKAN KAHRAMAN, your shipment with 221254389 was delivered to you with the delivery code 1515. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221254389\n\n\nBICARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('b8887c93-a67e-4674-b1cb-918bec8e3947','905352711900','AHMET AKAT adlı müşterinizin 817619747 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('b88df7ee-8534-4916-a210-d80b309145a1','905534084469','Sayın yetkili; İLHAN ERAYDIN adlı müşterinize 15151133 nolu gönderinizin mermer masa üst tablası ürünü 1 parça halinde Fatura adresinizden 20.02.2025 13:31:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('b890b750-278a-44b8-8d40-bf1d756b782f','4915771953365','Sayın ERDEM ŞAHİN(K), 644522996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644522996\n\nDear ERDEM ŞAHİN(K), your shipment with 644522996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644522996\n\nBICARGO','1','56c417cf-c265-4351-92f6-09fa93a1f112',NULL),
('b8951aca-1a11-4c98-bc2c-770f834dd946','31638732101','Sayın NURCAN KURNAZ, 786252388 nolu gönderiniz 6461 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786252388\n\nDear NURCAN KURNAZ, your shipment with 786252388 was delivered to you with the delivery code 6461. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786252388\n\n\nBICARGO','1','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('b895a4d7-2266-4528-b8ae-5ac82e113e57','','EMİNE-YASEMİN adlı müşterinizin 734109910 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','48599652-b40b-4605-9b8c-4be79cb180f3',NULL),
('b8a0651f-5014-44bd-96e6-0001dcb0df1d','31620244050','Sayın REİNAS HAİDARİ SSH, 644490677 nolu gönderiniz 7080 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644490677\n\nDear REİNAS HAİDARİ SSH, your shipment with 644490677 was delivered to you with the delivery code 7080. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644490677\n\n\nBICARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('b8a21ef4-825c-473f-a2fc-19c42dc6f870','491622496871','Sayın YOZLEM MİNCHEVA, 765564339 nolu gönderiniz 8584 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765564339\n\nDear YOZLEM MİNCHEVA, your shipment with 765564339 was delivered to you with the delivery code 8584. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765564339\n\n\nBICARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('b8a7776d-181e-4b10-b025-0cc69338feb5','491751082413','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('b8a9317f-2fee-41f7-85da-a3eb7752875d','41782402516','112787965 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/112787965\n\nYour shipment with the number 112787965 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/112787965\n\nBICARGO','1','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('b8b20691-ffc3-4752-ab5e-0e43d04dccd6','905461661672','RUKİYE TURAN adlı müşterinizin 644301613 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('b8b3987e-c427-45f1-9320-cfee1304656a','5325000478','Sayın MEHMET YALVAÇ, 27.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9930080\nŞifre : 9930080\n			\nBİCARGO','1',NULL,'f99a300e-c809-4155-bc34-9490eaae72a3'),
('b8b83cca-2162-44a5-b0eb-a4a6321b3b32','905054335859','İRFAN AKTAŞ  adlı müşterinizin 501167444 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eed830c2-dab6-4198-ad41-2a2be9a929dc',NULL),
('b8c0ac5e-6049-4a8f-ac7d-4bd6799e41c6','491783919050','478342417 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8018 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478342417\n\nYour shipment with the number 478342417 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8018. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478342417\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('b8c2ca0c-b2ca-48ab-8b7d-801142bc0830','7627367263762632','Sayın TURGAY, 412139250 nolu gönderiniz 3456 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412139250\n\nDear TURGAY, your shipment with 412139250 was delivered to you with the delivery code 3456. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412139250\n\n\nBICARGO','2','4e702cc0-9353-4b47-aa7e-ecce06c5c66b',NULL),
('b8c7c854-f5de-4ddf-84ff-9aedc0e62185','905079047428','MARİA JONANOVİC adlı müşterinizin 449417757 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL),
('b8c80d7f-e58d-4d69-aa6d-1603952cead6','4917641365513','Sayın SONGÜL GÜRKAN, 976843037 nolu gönderiniz 10234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976843037\n\nDear SONGÜL GÜRKAN, your shipment with 976843037 was delivered to you with the delivery code 10234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976843037\n\n\nBICARGO','1','e20c6ca3-22bb-47c4-a6ed-1cbf3b98b8e1',NULL),
('b8cb766d-b82d-47af-bcf5-e7a1574374af','33767845756','Sayın KÜBRA ARPA, 501588943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501588943\n\nDear KÜBRA ARPA, your shipment with 501588943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501588943\n\nBICARGO','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('b8cbb136-229c-4423-a43b-c91d52cad1cb','905461661672','Sayın yetkili; MELİSA DÜZME adlı müşterinize 644796083 nolu gönderinizin KÖŞE KOLTUK ürünü null parça halinde MODO KOLTUK adresinizden 21.08.2025 16:44:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('b8cdda72-8b12-45f4-8726-df54792e8f46','905336367828','TAMES PREİN JANY adlı müşterinizin 982545187 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7cefa81c-deac-4617-8809-7002f9076b03',NULL),
('b8cee930-88bb-4f11-87c3-b9ded3fcaa19','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin YAYLI YATAK  ürünü 5 parça halinde BED HOME YATAK adresinizden 04.11.2024 14:15:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('b8ceeca0-be55-429d-bbd6-4b56a824a028','905331602195','Sayın yetkili; GURAY SEYFELİ adlı müşterinize 221496522 nolu gönderinizin SSH BALAT SANDALYE  ürünü 8 parça halinde ALP SANDALYE adresinizden 24.04.2025 12:26:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a010a66-59d6-493d-bd68-e8dcb1ced2a0',NULL),
('b8d057b4-1092-40ed-856f-83608f077221','31634031801','47867667 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5456 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47867667\n\nYour shipment with the number 47867667 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5456. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47867667\n\nBICARGO','1','5913d039-3ade-4c0a-b799-6d69b6824f00',NULL),
('b8d8a7bd-c1c3-4fcf-bb47-277feaa9ddc7','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin KONSOL, 2 KOMODİN, ŞİFONYER ürünü 7 parça halinde SENS DİZAYN adresinizden 11.03.2025 11:36:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('b8df74a8-b7c2-4afc-b2d1-553e99d75712','905335708965','KHALED AHMAD adlı müşterinizin 248890689 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','62c72b38-75cc-4808-b1d5-7296d0000146',NULL),
('b8e11650-ebcd-47e3-a639-36a56dc4f1e1','004917642976478','Sayın İBRAHİM BULUT, 73570714 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73570714\n\nDear İBRAHİM BULUT, your shipment with 73570714 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73570714\n\nBICARGO','2','3e41715f-3ab6-49c2-82c0-0d29a29b4a56',NULL),
('b8e5a22c-6444-4edd-a1e8-3404334ecca6','33768910967','Sayın HALİDE ÖZAY, 745208965 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745208965\n\nDear HALİDE ÖZAY, your shipment with 745208965 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745208965\n\nBICARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('b8f0c9f3-f931-4693-9185-a1b0a06ab28a','004917632786230','735442629 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7634 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735442629\n\nYour shipment with the number 735442629 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7634. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735442629\n\nBICARGO','2','4f91d654-f578-426a-8133-5299ed48d624',NULL),
('b8f769fa-5cc0-4853-ad0b-ef727c65d4e3','905517075149','Sayın yetkili; EDOLİNA AJETİ REXHEPİ adlı müşterinize 478749881 nolu gönderinizin hamilton koltuk  ürünü 5 parça halinde brawwa koltuk adresinizden 10.09.2025 16:11:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('b8fccdf2-6ce9-4d3f-9b33-820608423c16','905301592882','Sayın yetkili; İDRİS EŞKIN adlı müşterinize 910601621 nolu gönderinizin YATAK ürünü 22 parça halinde Fatura adresinizden 04.03.2025 10:58:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','795a7b9c-3044-492f-912f-d05f4ba21df6',NULL),
('b8fde412-9427-4101-ab3b-b5eaa794dd42','43650589188','Sayın ÖZLEM TURA, 745808637 nolu gönderiniz 8018 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745808637\n\nDear ÖZLEM TURA, your shipment with 745808637 was delivered to you with the delivery code 8018. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745808637\n\n\nBICARGO','2','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('b8fe9a23-1036-4c1e-8259-02ac165da34c','4915783856117','644739716 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8276 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644739716\n\nYour shipment with the number 644739716 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8276. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644739716\n\nBICARGO','1','b4928a65-9e4d-47ad-b0bf-11fde9288de9',NULL),
('b8ff80ab-81e4-4903-85da-f37f73eea003','4917641547802','Sayın ENVER HAN ALKAN, 37146102 nolu gönderiniz 10083 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37146102\n\nDear ENVER HAN ALKAN, your shipment with 37146102 was delivered to you with the delivery code 10083. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37146102\n\n\nBICARGO','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('b90090ed-ff81-4d25-975d-730ccf60209e','905331602195','SAİDA ELAZZOUZİ  adlı müşterinizin 221282484 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('b90a3263-2a7d-4c3f-8351-9ecacd38e2fa','33781067727','DRİVER\n					ADNAN\n+905354622027','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('b90e5fe8-3fd9-4cf6-99c1-aa3955b62c03','33613166090','Sayın NURKAN AŞIR, 614529512 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614529512\n\nDear NURKAN AŞIR, your shipment with 614529512 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614529512\n\nBICARGO','1','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('b91268bc-138a-4e95-8813-d7c54c666106','32484532916','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('b918956c-fe16-4060-ad73-0fe7f51819db','4915773333260','Sayın YUSUF BARAN, 478450171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478450171\n\nDear YUSUF BARAN, your shipment with 478450171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478450171\n\nBICARGO','1','8acc10ec-6da5-4fc7-b11f-ec6acfdeda8d',NULL),
('b9190a46-e11c-42fc-b57e-3008357a07fd','4915222699200','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('b91a083c-f7fe-4a40-a698-ddafc8adc851','33782988116','Sayın HAZAL BATUR, 437712381 nolu gönderiniz 4029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437712381\n\nDear HAZAL BATUR, your shipment with 437712381 was delivered to you with the delivery code 4029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437712381\n\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('b91c449c-8e3d-4cd0-b826-c4b9c18d0b72','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin 3.3.1.1 KOLTUK ürünü 5 parça halinde İNEVİSON  SOFA adresinizden 04.11.2024 14:47:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('b9230b0a-1f8e-4e24-9aa3-be7e12f7f4e7','491716168674','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('b92427a2-7a0f-4b45-bfba-a0a6324ab6e7','9054439559150','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614868518 nolu gönderinizin ALLEGRO MİLANO MASA ÜST TABLASI SSH  ürünü 1 parça halinde ALLEGRO  adresinizden 07.04.2025 16:09:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','47c4a897-9b46-451e-81b9-3ed2ac6147c6',NULL),
('b924bad4-3f24-455e-b51d-db396406fd73','905079358213','Sayın yetkili; ADEM DEMİR  adlı müşterinize 745197948 nolu gönderinizin VOYAGE KÖŞE KOLTUK  ürünü 6 parça halinde RİXXE  adresinizden 19.09.2025 14:46:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d9f810e-286d-4bae-8abd-224e036ce2c8',NULL),
('b9251644-37d4-4575-846d-d8bed51d54f9','4915202113856','Sayın MELİSA DÜZME, 644796083 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796083\n\nDear MELİSA DÜZME, your shipment with 644796083 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644796083\n\nBICARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('b925e5cb-6ee0-4ec9-a806-a7dd7fce476a','4363702086493','Sayın EDOLİNA AJETİ REXHEPİ, 478749881 nolu gönderiniz 5972 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478749881\n\nDear EDOLİNA AJETİ REXHEPİ, your shipment with 478749881 was delivered to you with the delivery code 5972. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478749881\n\n\nBICARGO','2','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('b933a9b8-b084-4e28-8ae5-8a076f015149','32485530941','Sayın DELİL ÖZTÜRK SSH, 745786401 nolu gönderiniz 6132 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745786401\n\nDear DELİL ÖZTÜRK SSH, your shipment with 745786401 was delivered to you with the delivery code 6132. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745786401\n\n\nBICARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('b937df45-565d-4b58-9e72-3ef4733baca1','33651149418','Sayın BİLGEN TATAR, 478764154 nolu gönderiniz 2021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478764154\n\nDear BİLGEN TATAR, your shipment with 478764154 was delivered to you with the delivery code 2021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478764154\n\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('b938a4dd-0036-42df-92c5-7cd85284ec9b','436603406293','Sayın yetkili; TUBA BALTA adlı müşterinize 675902808 nolu gönderinizin MASA ürünü 3 parça halinde MASAMI adresinizden 28.05.2025 17:45:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('b942a378-68af-4ccb-a8a1-3daa6b0ab66e','33651995967','449208438 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1114 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449208438\n\nYour shipment with the number 449208438 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1114. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449208438\n\nBICARGO','1','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL),
('b945674d-3088-4e23-ab7e-efccb4cccc3e','33754109043','Sayın BÜNYAMİN ILIKSOY, 478668622 nolu gönderiniz 5389 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478668622\n\nDear BÜNYAMİN ILIKSOY, your shipment with 478668622 was delivered to you with the delivery code 5389. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478668622\n\n\nBICARGO','1','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('b9467d2c-5d31-4f0b-8b47-bba36367c847','905431026110','Sayın yetkili; TAYFUN COŞGUN adlı müşterinize 351519592 nolu gönderinizin sandalye ürünü 6 parça halinde BALİ SANDALYE adresinizden 20.10.2025 14:55:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f75aea68-ca38-4530-9ad3-ae32f05071ef',NULL),
('b94a9c02-89ba-4f4b-bc24-2d521f943638','905069116877','NADİNE NATUR adlı müşterinizin 817303639 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('b94cc615-d424-424e-8cdd-544e81b25571','905079358213','ALİ KARADUMAN adlı müşterinizin 7454878 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('b951a704-2164-4962-9a7f-971eb7128aea','4917684650922','Sayın NİLÜFER YAMAN SSH , 745525130 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745525130\n\nDear NİLÜFER YAMAN SSH , your shipment with 745525130 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745525130\n\nBICARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('b953a758-4498-49d6-b8c6-c4ce74a81d1f','4915777901877','Sayın TÜLAY AYDIN, 428604775 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428604775\n\nDear TÜLAY AYDIN, your shipment with 428604775 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428604775\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('b953b3d9-8328-45bc-82a0-5c6226231b3e','33635914929','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('b954c085-2e7f-4184-94de-f49264461f0c','32470593490','Sayın TUĞBA AKTAŞ, 478687899 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478687899\n\nDear TUĞBA AKTAŞ, your shipment with 478687899 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478687899\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('b95ae050-597d-4f1c-9a31-41cf6c846bd5','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin sandalye papuçları ürünü 1 parça halinde kuka adresinizden 23.06.2025 14:03:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('b95b1693-5fa0-4392-9825-efea3eeebe7c','4917676864801','644452767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4678 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644452767\n\nYour shipment with the number 644452767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4678. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644452767\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('b95f39fb-57cb-47cc-b7a5-5c7bf42bf97b','905335511664','Sayın yetkili; STEFANİA KİOSKER adlı müşterinize 371734068 nolu gönderinizin keramik masa ürünü 3 parça halinde Seramik Masa Üreticisi adresinizden 08.09.2025 13:33:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('b961dbc3-0e0c-4be6-80dc-cd2e5b395d13','4917632298382','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('b96574b1-c1c4-493e-9c70-90f089c2fa7a','5326077059','Sayın ÖMER FARUK ÇANAK, 31934282 nolu gönderiniz 8907 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31934282\n\nDear ÖMER FARUK ÇANAK, your shipment with 31934282 was delivered to you with the delivery code 8907. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31934282\n\n\nBICARGO','2','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('b97181e4-fa4f-4d78-9b73-bcf3a8969f1e','491632307523','Sayın ATAKAN OLCAYTÜRK, 910251573 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910251573\n\nDear ATAKAN OLCAYTÜRK, your shipment with 910251573 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910251573\n\nBICARGO','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('b971a4a9-645a-4cc4-a521-2545009f1686','33785512732','Sayın HÜSEYİN ÖÇAL SSH , 745350597 nolu gönderiniz 5648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745350597\n\nDear HÜSEYİN ÖÇAL SSH , your shipment with 745350597 was delivered to you with the delivery code 5648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745350597\n\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('b97a1527-a3aa-41df-b0af-1c369e68c6fa','905336367828','AYDIN KEMERLİ  adlı müşterinizin 982837523 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('b97f687b-f19c-4a86-96b4-87e1732611d7','4915735267419','Sayın LYUDMİLA KORUNOVSKA, 371121937 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371121937\n\nDear LYUDMİLA KORUNOVSKA, your shipment with 371121937 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371121937\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('b981a5a5-153d-49c7-abe9-e43d96e2cbfa','491784042586','Sayın ONUR ÖZÇELİK, 371695056 nolu gönderiniz 3754 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371695056\n\nDear ONUR ÖZÇELİK, your shipment with 371695056 was delivered to you with the delivery code 3754. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371695056\n\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('b9828c24-ed85-4789-a31f-45ed87188208','491729283228','Sayın METE AKGÜL, 371857345 nolu gönderiniz 6102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371857345\n\nDear METE AKGÜL, your shipment with 371857345 was delivered to you with the delivery code 6102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371857345\n\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('b9833646-e755-4032-810f-3dac4b492356','33783080694','Sayın MALHA MUHAMMED, 982873637 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982873637\n\nDear MALHA MUHAMMED, your shipment with 982873637 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982873637\n\nBICARGO','1','462436e2-17b1-4c65-8ccd-cd83b180543f',NULL),
('b9872826-0ec3-44a2-84bb-c74a68ac0b37','905301592882','Sayın yetkili; YAVUZ KOÇMAN		 adlı müşterinize 910772127 nolu gönderinizin ARES KOLTUK TAKIMI ürünü 5 parça halinde Fatura adresinizden 16.07.2025 14:06:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('b989edb3-c986-4159-93a0-b0015e269acc','436765710207','644716997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644716997\n\nYour shipment with the number 644716997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644716997\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('b99a118a-f065-4a28-846f-8d4e661e866f','33783164469','Sayın MAHMUT KAHRAMAN, 412109820 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412109820\n\nDear MAHMUT KAHRAMAN, your shipment with 412109820 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412109820\n\nBICARGO','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('b99d0cd2-a7ab-4ca2-b704-3dffb51b67fd','905335708965','ERCAN GÜLER adlı müşterinizin 735121904 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL),
('b9a2a9db-35bc-4bf5-b48d-7c6511a01e8a','4915172748624','Sayın NADİNE NATUR, 817303639 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817303639\n\nDear NADİNE NATUR, your shipment with 817303639 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817303639\n\nBICARGO','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('b9a8586e-c0c4-4bea-91ec-87f58cb6b28b','4917622797061','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('b9ac4cfa-1a95-4670-97c4-f1fd033b77f7','491783053622','Sayın BİRCAN ŞAHİN, 91074356 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91074356\n\nDear BİRCAN ŞAHİN, your shipment with 91074356 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91074356\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('b9ada33f-bdfe-4f2a-bb43-2f33028a3147','905301592882','CAN KÜREKÇİ adlı müşterinizin 910426934 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('b9af9d7d-9452-4a13-9c8d-7ad578c483ac','4917663706491','976114868 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976114868\n\nYour shipment with the number 976114868 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/976114868\n\nBICARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('b9b7709d-6213-477c-8300-224be5bd0cf3','4915739347909','Sayın BİRCAN ŞAHİN, 91074356 nolu gönderiniz 4790 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91074356\n\nDear BİRCAN ŞAHİN, your shipment with 91074356 was delivered to you with the delivery code 4790. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91074356\n\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('b9b9f7a6-e577-4d59-8e20-69859be78ff1','32465121667','Sayın EMAL ENRİQUE, 449511744 nolu gönderiniz 6858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449511744\n\nDear EMAL ENRİQUE, your shipment with 449511744 was delivered to you with the delivery code 6858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449511744\n\n\nBICARGO','1','57ca2461-e718-4402-86f5-359b366200e6',NULL),
('b9be87c0-58d5-4579-82ed-cdfb2ac1013b','905075277637','SÜVEYLA TARHAN adlı müşterinizin 745906539 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('b9c15581-9dfb-430b-8eca-cde222fdcedb','4917680898294','Sayın ESRA KAYA, 43750462 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43750462\n\nDear ESRA KAYA, your shipment with 43750462 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43750462\n\nBICARGO','1','a916a88f-8a03-4757-aca9-0c0d2c64a51b',NULL),
('b9c37618-8595-4fed-9606-aebbde76213a','491794992343','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('b9c3d68f-cd84-4358-b797-6a79325ad82f','33651617359','Sayın ADEM ŞAHİN, 478685156 nolu gönderiniz 7410 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478685156\n\nDear ADEM ŞAHİN, your shipment with 478685156 was delivered to you with the delivery code 7410. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478685156\n\n\nBICARGO','1','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL),
('b9c5c53b-1d68-45a1-8e0f-6721ef9928c6','5325000478','Sayın AAAAA BBBBBBB, 28.12.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3451771\nŞifre : 3451771\n			\nBİCARGO','1',NULL,'ca345177-17f2-4015-9ce2-f60a3cf6a3ec'),
('b9c6f10a-8777-4c8e-8115-d941a14a9f02','905301592882','BELGİN YAĞLI		 adlı müşterinizin 910762495 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('b9c931d7-7c2e-40c0-a190-c0b85b89dcbd','436604882013','515129438 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515129438\n\nYour shipment with the number 515129438 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515129438\n\nBICARGO','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('b9cbd6be-a9cb-4b98-8ff9-764472b9a4f0','32484736205','Sayın ELİF SIKI , 517157021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517157021\n\nDear ELİF SIKI , your shipment with 517157021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517157021\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('b9cd6476-01ae-40d7-8df9-9cdd178cad5a','905075277637','Sayın yetkili; ERAY ASLANCAN adlı müşterinize 745294810 nolu gönderinizin SSH BAZA DEMİRİ + MAKASLARI  ürünü 3 parça halinde Fatura adresinizden 06.08.2025 15:15:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('b9cd7b07-7a22-46d1-a003-f26f5a2245cb','33621355129','Sayın SENEL YILMAZ, 517365072 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517365072\n\nDear SENEL YILMAZ, your shipment with 517365072 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517365072\n\nBICARGO','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('b9cf19a5-e846-4477-a921-fbf867ab7950','905301592882','NERMİN ÇETİNAVCI adlı müşterinizin 910948770 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('b9d5bf3f-0e29-4b37-b6b0-4d529ed4dbfc','4917624497671','Sayın NİSA PARLAR, 437895842 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437895842\n\nDear NİSA PARLAR, your shipment with 437895842 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437895842\n\nBICARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('b9df92ca-8273-4a48-80f9-810abb29a641','436605507330','Sayın AYHAN ÇEKİ, 598758154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598758154\n\nDear AYHAN ÇEKİ, your shipment with 598758154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598758154\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('b9e3a5f6-71a6-45a0-8a4e-2e9506edd9b3','905335708965','AAAAAA adlı müşterinizin 248135683 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','de3ce73a-57c4-41fb-a63c-fcd11d57868a',NULL),
('b9e6653b-5a4b-4c80-af2e-7e421810e61a','905313340045','DİRİL NURİ adlı müşterinizin 43792999 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('b9ecfd8c-91d2-4932-9d14-35c894ce3b9e','491777454971','725500857 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1950 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/725500857\n\nYour shipment with the number 725500857 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1950. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/725500857\n\nBICARGO','1','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL),
('b9ee44e5-3ca9-4d7e-a37a-e6718e119df7','31684469645','Sayın SERKAN ÖZBAY, 478800752 nolu gönderiniz 7109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478800752\n\nDear SERKAN ÖZBAY, your shipment with 478800752 was delivered to you with the delivery code 7109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478800752\n\n\nBICARGO','1','9c826bc4-15c9-43a5-8ec8-92c216c54593',NULL),
('b9f628cd-cd89-4afb-bb5b-837f19bae4a8','33782119084','Sayın NİZAMETTİN, 223719427 nolu gönderiniz 5167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223719427\n\nDear NİZAMETTİN, your shipment with 223719427 was delivered to you with the delivery code 5167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223719427\n\n\nBICARGO','1','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL),
('b9f9e733-d889-4ce0-8ea3-bc4819e1eb37','905350617509','WASİ BAHİR  adlı müşterinizin 613373885 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('b9fec4a8-4b0d-42bf-a833-bd93a73e3cf2','491739901545','501667618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3288 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501667618\n\nYour shipment with the number 501667618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3288. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501667618\n\nBICARGO','1','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL),
('ba0678cc-12e1-4b0a-b5be-308d61ecbb2f','905079358213','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin TESLA LUXURY TV ALT  ürünü 1 parça halinde KUKA  adresinizden 03.09.2025 17:45:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('ba0fda61-7657-4130-8c0e-17d92c3ffca8','4917620954584','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('ba12fc30-809c-4446-9400-61e6206b1e58','905336367828','LYNDA MOUSSA adlı müşterinizin 982425532 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','13aba735-b82d-4898-a98c-4167bb80085c',NULL),
('ba238170-a556-4863-b2a4-7453ff40d3f2','33749274146','449234624 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2520 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449234624\n\nYour shipment with the number 449234624 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2520. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449234624\n\nBICARGO','1','ea9d7d59-ea20-4a4a-af1f-0788fb179d8a',NULL),
('ba347ac3-0a32-406a-80c5-e505cda433b6','905451571652','ALAA AL- AHMAD adlı müşterinizin 5312778 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a39b0448-094c-4d23-ad55-d527d7d7c69d',NULL),
('ba35b2cd-f812-496d-a997-74880d842f5f','33753744343','Sayın SÜVEYLA TARHAN, 745906539 nolu gönderiniz 9888 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745906539\n\nDear SÜVEYLA TARHAN, your shipment with 745906539 was delivered to you with the delivery code 9888. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745906539\n\n\nBICARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('ba3c5f54-fbbc-4735-bfd4-e537385165a0','905331602195','SERKAN KAHRAMAN SSH adlı müşterinizin 221348923 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('ba3c60f8-8054-43ec-8253-0f3a55d558d6','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 160*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('ba3df765-9b61-487e-9de5-3f251036716e','3536737367346734','248915549 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9314 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248915549\n\nYour shipment with the number 248915549 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9314. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248915549\n\nBICARGO','2','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL),
('ba3e21ae-b253-4180-bbd3-08efb7c5511f','905079358213','Sayın yetkili; YASEMİN YILDIZ adlı müşterinize 745968655 nolu gönderinizin FRİDA BERJER ürünü 1 parça halinde Fatura adresinizden 24.03.2025 15:15:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b219963-3108-4a67-94f3-3bd88636e6f0',NULL),
('ba420971-0a5e-4f3a-96cc-8a9b81b37e9d','905312762034','NATASCHA DJORDJEVİC adlı müşterinizin 80873489 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('ba44e974-b579-49ec-9610-013a8df13c5d','905517075149','YAŞAR YALMAN SSH adlı müşterinizin 478168587 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','fe463485-2cc1-4a74-bdc7-66f943713679',NULL),
('ba4f05ae-8a98-4a12-ad94-0dd6a5571849','905451571652','SİNEM GÖKÇE adlı müşterinizin 531340061 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('ba5290b1-4bde-43f3-8646-5932b6941e8a','905461661672','Sayın yetkili; BEYTULLAH AKSOY adlı müşterinize 644826911 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde Fatura adresinizden 28.04.2025 18:17:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('ba620dfc-6096-4b9d-a4d2-41bdfb01154f','905059175469','Sayın yetkili; SİDAR AKDENİZ adlı müşterinize 428178028 nolu gönderinizin koltuk takımı 3+3+1 ürünü 4 parça halinde Fatura adresinizden 04.12.2024 17:03:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('ba6394f4-274e-4b47-985d-c4f95e2fb0d6','4915772153329','Sayın MUHTEREM KAYA, 465891539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465891539\n\nDear MUHTEREM KAYA, your shipment with 465891539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465891539\n\nBICARGO','1','e0294a05-406d-40f2-9ebf-a0f322513cfa',NULL),
('ba705edb-65d6-4bc4-8ac9-db1304c62d91','905073106101','Sayın yetkili; HATİCE GÜNGÖR adlı müşterinize 465634666 nolu gönderinizin SANDALYE ürünü 3 parça halinde EMEK SANDALYE adresinizden 22.09.2025 14:36:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('ba7755f6-7694-4806-a10f-ac6f7aef3b3d','905331602195','Sayın yetkili; NURSEL ALİOĞLU adlı müşterinize 221272241 nolu gönderinizin 100x130 açılır masa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:49:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('ba77f045-7396-404d-8180-e78f86f0c581','32493467320','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('ba7909bc-3ea4-40e3-8fca-5c4d73b75223','491639801426','107593305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9421 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/107593305\n\nYour shipment with the number 107593305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9421. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/107593305\n\nBICARGO','1','56934bb2-8807-472a-9265-23392c22511f',NULL),
('ba793c08-93fa-43b6-9b39-851e37e45312','905517075149','Sayın yetkili; MERYEMA TEKİN adlı müşterinize 478322325 nolu gönderinizin koltuk takımı3+3+1 ürünü 3 parça halinde Fatura adresinizden 01.08.2025 16:32:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('ba7dce6c-1049-4439-afeb-c1947ea37e85','4915152520496','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('ba89798f-1cc3-4df3-9e87-79d733b148f2','905304259202','KEMAL ETKER  adlı müşterinizin 47876427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('ba908e4b-3455-4538-8d22-aee3349867d7','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL YATAK ODASI ürünü 21 parça halinde Fatura adresinizden 16.05.2025 18:12:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('ba937f50-002b-4a5d-a4b6-abd46d334f42','00493056821467','735293129 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3736 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735293129\n\nYour shipment with the number 735293129 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3736. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735293129\n\nBICARGO','2','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL),
('ba970155-4b4e-434f-bc50-5d7e9ed9b932','41795226139','İletişim \n					Halil Bey (Şoför) :+905541100849','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('ba982ee9-c25e-4f16-b382-a84358f485f0','4915209473876','Sayın MERHDED AKHTARİ, 449680755 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449680755\n\nDear MERHDED AKHTARİ, your shipment with 449680755 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449680755\n\nBICARGO','1','ad1fc3b4-d18e-491b-969b-dea74538868b',NULL),
('ba9ed397-5d99-48f5-a2e6-5cf6d23af00e','33623950988','Sayın İSA KAPLAN , 962168012 nolu gönderiniz 8552 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/962168012\n\nDear İSA KAPLAN , your shipment with 962168012 was delivered to you with the delivery code 8552. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/962168012\n\n\nBICARGO','1','bc037735-462f-4198-8d2d-23ba6a125e18',NULL),
('baa58ce7-9f8c-4c59-ab96-691fcbe3b561','4917611633498','Sayın İBRAHİM YEŞİLKAYA, 598211009 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598211009\n\nDear İBRAHİM YEŞİLKAYA, your shipment with 598211009 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598211009\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('baaa941c-d46c-47e8-a76a-1a96095af4a0','905349208933','Sayın yetkili; ZEYNEP KORKMAZ adlı müşterinize 127659069 nolu gönderinizin koltuk ürünü 4 parça halinde pablo adresinizden 20.02.2025 16:42:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd58437e-911f-4917-866c-db10175210b3',NULL),
('baabca26-8608-4a15-8d8e-01e8e113f2ad','905079358213','OKAN CORAMAN adlı müşterinizin 745980941 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('baafe3da-15b1-4f66-aa6c-4f44a18c5552','905442774505','HAKİM AZZOUZ adlı müşterinizin 657301470 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('bab519d9-3466-49d8-b47a-e18df68da93f','905343753391','Sayın yetkili; MUHAMMED ALİ TÜMKAYA adlı müşterinize 64455982 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 25.02.2025 16:42:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('baba4e26-4537-4732-b7f4-2beb896fc6ef','905336367828','Sayın yetkili; SÜMEYYE KALKAN  adlı müşterinize 98258846 nolu gönderinizin tv ünitesi ürünü 1 parça halinde Lego Tv mobilya  adresinizden 11.02.2025 14:18:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6be6b415-9978-41fa-b920-1eb149c147e3',NULL),
('babe9adc-d895-49cb-bed9-925a6a045761','33787752471','Sayın DİLEK GÜNEY, 26896907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/26896907\n\nDear DİLEK GÜNEY, your shipment with 26896907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/26896907\n\nBICARGO','1','4895452e-4598-4194-8203-cf9f5506200a',NULL),
('bac64fed-f827-4ea6-a183-87a795769e7d','4917672416653','İLETİŞİM\n					Furkan şöför = +905078826436','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('bad2acca-6b81-4c4e-b559-cb3a1205bcca','31640251699','Sayın SEMRA HAKAN KABİR, 745409977 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745409977\n\nDear SEMRA HAKAN KABİR, your shipment with 745409977 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745409977\n\nBICARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('bad80388-6b9d-41db-8dda-4e09e5d5e1aa','32489297598','İletişim \n					Şöför Murat : +905321616048','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('bad9995e-de3f-4e74-845c-3559bbbc1a2b','31638550109','Sayın BERFİN UZUNER , 221900850 nolu gönderiniz 3774 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221900850\n\nDear BERFİN UZUNER , your shipment with 221900850 was delivered to you with the delivery code 3774. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221900850\n\n\nBICARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('badaa9f9-24a7-40e7-a20c-1b474dce7477','905078062550','Sayın yetkili; ÇİÇEK BOLAT adlı müşterinize 59898054 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde RİO FATİH adresinizden 19.09.2025 10:33:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ac45678-811d-4aea-b89d-0ec5dbedd607',NULL),
('badeea92-3b82-48f8-823b-a4fb3b6b31b3','3376262828','478824521 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9984 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478824521\n\nYour shipment with the number 478824521 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9984. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478824521\n\nBICARGO','2','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('bae7ade9-3a87-4726-b7c5-0864e7de97cd','4917683226592','371282604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9942 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371282604\n\nYour shipment with the number 371282604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9942. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371282604\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('baef4647-3fab-4eb6-b5d2-6de968bf46bc','905393435887','Sayın El osman, 412877197 nolu gönderiniz 2301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412877197\n\nDear El osman, your shipment with 412877197 was delivered to you with the delivery code 2301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412877197\n\n\nBICARGO','1','2d2e3588-712f-4c84-a6f5-a45bc45a416b',NULL),
('baf1384e-d554-4ce8-89e4-6362c7710481','905454259202','MERAL YAZICI adlı müşterinizin 478101413 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('baf5f2ef-a16e-4434-aad8-57c299a2e4ab','905335511664','Sayın yetkili; ADEM BÜYÜK adlı müşterinize 371913094 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde Elit Köşeci Sinan Bey adresinizden 01.07.2025 17:31:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('baf90d7c-f350-4441-abcf-b91dfb7d7811','33641723756','517205467 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1905 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517205467\n\nYour shipment with the number 517205467 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1905. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517205467\n\nBICARGO','1','fd54b0f7-c719-44a1-9058-d59b1b5982cf',NULL),
('bafc6467-c30b-4fa5-9209-7da81532e215','905336367828','Sayın yetkili; GHATİA PARASCHİVA adlı müşterinize 982163675 nolu gönderinizin KOLTUK TAKIMI  ürünü 2 parça halinde Fatura adresinizden 10.07.2025 11:18:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','be44de23-229f-41e6-8dac-6b3d7459bdc7',NULL),
('bafde971-4191-488f-937b-286e65219193','4917661473873','Sayın CHİKH HAMZA GHUFRAN, 248707022 nolu gönderiniz 1574 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248707022\n\nDear CHİKH HAMZA GHUFRAN, your shipment with 248707022 was delivered to you with the delivery code 1574. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248707022\n\n\nBICARGO','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('bb02bf2b-7f30-4190-8c71-d2a59fa708fd','905461661672','HASAN KAYA adlı müşterinizin 64413417 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('bb038a15-8837-48e7-8131-bb76e5b599a1','905335511664','SEMİH YEŞİLYAYLA adlı müşterinizin 371716908 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('bb0393c5-be10-4fdb-b3d9-0125e155e8d6','4915114164917','Sayın FATIMA KRISHMA, 982164642 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982164642\n\nDear FATIMA KRISHMA, your shipment with 982164642 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982164642\n\nBICARGO','1','d7b0bb03-c914-41e5-8899-697339f7e562',NULL),
('bb04f742-ad65-4fbf-b822-2afda1aecdca','905079358213','Sayın yetkili; ÖMER ÇALIK SSH  adlı müşterinize 7456984 nolu gönderinizin SSH KANEPE SIRTI  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('bb070392-50f0-48df-8145-63f4e1934ca3','905335511664','Sayın yetkili; HAFİZE BALİ adlı müşterinize 371684650 nolu gönderinizin SANDALYE ürünü 3 parça halinde Sandalyeci Bekir adresinizden 02.07.2025 16:28:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('bb0c3597-12db-4d18-aad0-cad582ec3bde','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 15.10.2025 13:09:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('bb0f98ad-aa82-47c9-b459-54ee0dac8607','905333221039','BARIŞ ÖZTÜRK adlı müşterinizin 750355737 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('bb11def4-d4db-4137-91e9-47d9f601653a','905301592882','ZELİHA AKCAN adlı müşterinizin 910291071 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('bb128e52-f080-467a-8d30-e024d645f8bf','4915204766042','Sayın RAMAZAN DUMAN, 745343811 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745343811\n\nDear RAMAZAN DUMAN, your shipment with 745343811 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745343811\n\nBICARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('bb1334ad-ebd7-4d54-aba2-d1a0a9632cb5','4369911337727','Sayın MEHMET DAĞDEVİREN, 745485271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745485271\n\nDear MEHMET DAĞDEVİREN, your shipment with 745485271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745485271\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('bb16a72f-c49c-470a-b08a-75ac91ff244d','32484855240','412395222 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9485 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412395222\n\nYour shipment with the number 412395222 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9485. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412395222\n\nBICARGO','1','3dce54b1-e7aa-464d-b22d-56c831e082b2',NULL),
('bb175979-1c72-41d9-bdc0-7be3ae032a14','0031687542541','Sayın MURAT, 73547719 nolu gönderiniz 1933 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73547719\n\nDear MURAT, your shipment with 73547719 was delivered to you with the delivery code 1933. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73547719\n\n\nBICARGO','2','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL),
('bb17a768-73fe-4703-8a89-1a0ea4fc7e77','4915778521102','Sayın TABLO, 248209461 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248209461\n\nDear TABLO, your shipment with 248209461 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248209461\n\nBICARGO','1','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL),
('bb1a4b10-ec18-4df2-b4f2-fb19ab783eb8','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 2 DOLAP ürünü 20 parça halinde SANWOOD adresinizden 21.08.2025 10:01:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('bb1bbda9-8df4-4920-9282-360daa48fd6a','905363385813','Sayın yetkili; Mustafa İlhan adlı müşterinize 976369647 nolu gönderinizin Mobilya ürünü 3 parça halinde Recai Yılmaz adresinizden 08.11.2024 11:14:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('bb1c4423-0e36-4be1-bcbe-e4db44657666','4917647606470','644243216 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644243216\n\nYour shipment with the number 644243216 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644243216\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('bb20887e-469a-4391-9930-cb94e9ba524f','4915147045689','Sayın ZEHRA ÖZALP, 223963997 nolu gönderiniz 2803 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223963997\n\nDear ZEHRA ÖZALP, your shipment with 223963997 was delivered to you with the delivery code 2803. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223963997\n\n\nBICARGO','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('bb212677-fabb-487b-9da7-8c47d2af9f41','4917620022816','Sayın AYLİN AY, 371201111 nolu gönderiniz 2570 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371201111\n\nDear AYLİN AY, your shipment with 371201111 was delivered to you with the delivery code 2570. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371201111\n\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('bb21f09e-5f0e-45bb-b269-7002bef7836f','32488863952','437694817 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2677 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437694817\n\nYour shipment with the number 437694817 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2677. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437694817\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('bb239554-b699-497c-aeef-86b2415737ea','491729060799','Sayın YUSUF ASLANYÜREK, 478746196 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478746196\n\nDear YUSUF ASLANYÜREK, your shipment with 478746196 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478746196\n\nBICARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('bb2c79b2-7051-4743-a9ec-06a8d10375c7','5348867917','904863225 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4231 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/904863225\n\nYour shipment with the number 904863225 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4231. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/904863225\n\nBICARGO','2','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL),
('bb2ee329-1d54-4e82-9bb3-705654d52873','905331602195','KELLY DE VOS  adlı müşterinizin 221560581 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a2c26b12-b789-4b58-b623-97d44b486663',NULL),
('bb35af54-0bf2-42a3-b24e-66fba8a8e898','905306071261','TUĞÇE SUER  adlı müşterinizin 765484490 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('bb366d93-5b9e-42ff-bfec-dcde1940e2b8','905079358213','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin VOYAGE YATAK ODASI ürünü 25 parça halinde RİXXE  adresinizden 25.09.2025 14:44:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('bb36c471-e2e1-46be-9ff4-0e68b92e21ee','31681743936','Sayın REYHAN BİLDİRİCİ, 3198601 nolu gönderiniz 1036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/3198601\n\nDear REYHAN BİLDİRİCİ, your shipment with 3198601 was delivered to you with the delivery code 1036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/3198601\n\n\nBICARGO','1','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL),
('bb3dbeb0-d899-4ab5-89a1-75a605a541a3','4917663691991','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('bb3e0437-87fd-4c8d-a9c1-e6c25c76d442','905336367828','FIRAT DEMİRCİ adlı müşterinizin 982451991 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('bb418592-9b84-4161-9108-1a434847e25c','491781854994','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('bb46da66-3ebe-464a-9895-0bf4543dc85d','4917672416653','598441020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2280 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598441020\n\nYour shipment with the number 598441020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2280. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598441020\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('bb4a24fe-0e12-4f9b-a5c7-7747300c0c9b','491742419200','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('bb4e04db-deb7-4e8b-a0bb-709f7a70caf5','33652891560','Sayın AYDIN İLKNUR, 745545386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745545386\n\nDear AYDIN İLKNUR, your shipment with 745545386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745545386\n\nBICARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('bb54ad37-ed4f-462a-a4ff-3a4e9fa4093f','01634672803','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('bb575de0-fac8-4478-af0c-b404d8ee03ea','905461661672','Sayın yetkili; AMAL EL JABBARİ adlı müşterinize 644789157 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 17.03.2025 11:37:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('bb5a68fa-c141-4bd0-9e2d-f49826f33446','905079358213','ELMAS KAYA adlı müşterinizin 745411152 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','091754cf-7aa6-431a-8a90-b30fd8978287',NULL),
('bb5b4494-799f-472b-81b1-1ffb839b2449','905319678931','MERİÇ KARACAN  adlı müşterinizin 570417524 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('bb5b51e0-0737-4ea9-beb2-ed7a9397dd0a','491723174389','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('bb5bfeed-796b-4df9-99f6-6832b3ec46ac','905335511664','Sayın yetkili; DERYA BAYRAK adlı müşterinize 371180149 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 31.07.2025 17:03:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('bb5d74b9-fa46-4b9c-94f4-403d7a629b2d','4915158856914','Sayın MELİKZADE AHMET ATAY, 598493196 nolu gönderiniz 4013 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598493196\n\nDear MELİKZADE AHMET ATAY, your shipment with 598493196 was delivered to you with the delivery code 4013. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598493196\n\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('bb64d49e-edd9-48c0-8429-85a1bfb5c2ba','905337836884','GAMZE ÇOKENGİN adlı müşterinizin 140681782 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('bb709a9f-1002-4644-bb50-58778bbd3493','491727930576','Sayın DUYGU YILDIZ, 598396998 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598396998\n\nDear DUYGU YILDIZ, your shipment with 598396998 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598396998\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('bb72818b-f4be-4318-92ef-ddf8221e4b0a','4917660948830','Sayın MUSA CAN KOÇAK, 644389756 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644389756\n\nDear MUSA CAN KOÇAK, your shipment with 644389756 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644389756\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('bb746648-bfea-4aff-af3d-ad2fe091732b','4915150865710','Sayın HANDE PALMA, 61378160 nolu gönderiniz 1117 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61378160\n\nDear HANDE PALMA, your shipment with 61378160 was delivered to you with the delivery code 1117. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61378160\n\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('bb7aa664-46d6-475d-844d-7a919b9658ca','905461661672','TUĞRA NUR DÜZGÜN adlı müşterinizin 644298759 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('bb7c3d2f-dce3-4e61-b4e6-7d010bb72f04','905336367828','Sayın yetkili; ESİN TUNCA adlı müşterinize 982314530 nolu gönderinizin koltuk takımı ürünü 6 parça halinde kahraman sofa adresinizden 12.06.2025 17:01:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('bb7dafe2-1237-4f49-b0d6-31f7f1bde801','905011170016','YONCA KILIÇ adlı müşterinizin 380417164 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('bb83151c-f23b-4159-886b-d9ca19a051e9','905306071261','Sayın yetkili; ŞULE ÇAYIR  adlı müşterinize 765501651 nolu gönderinizin Adel Seramik Masa  220*110cm  fasülye orta sehpa  120*60 cm  ürünü 5 parça halinde via seramik masa adresinizden 03.09.2025 16:32:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('bb8755dc-18b6-4626-af92-34014505b940','4915778521102','248209461 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5930 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248209461\n\nYour shipment with the number 248209461 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5930. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248209461\n\nBICARGO','1','bf2ed432-e49a-44c6-8058-51173e940f0e',NULL),
('bb8bb6f5-6ab4-42ed-9142-698b57df03b2','4551944912','Sayın OKAY TUNCA, 312422305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/312422305\n\nDear OKAY TUNCA, your shipment with 312422305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/312422305\n\nBICARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('bb9188ef-2a0c-405f-a921-1f06676ece01','491779689978','İletişim \n					Şöför Murat : +905321616048','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('bb969b91-39d4-41d4-b430-19a960d525d7','905461661672','RADİA AL ADOUİ adlı müşterinizin 644599754 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('bb9bc965-8ffb-4ba1-8af6-5327389dcb4a','4917662992402','Sayın GÜLSÜM KÖNÜ, 598373943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598373943\n\nDear GÜLSÜM KÖNÜ, your shipment with 598373943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598373943\n\nBICARGO','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('bb9ff0d6-c400-4a9e-a647-14c48264d66b','4917670386373','127221315 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8420 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127221315\n\nYour shipment with the number 127221315 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8420. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127221315\n\nBICARGO','1','96741763-bc18-47ed-be48-0c973149d4fb',NULL),
('bba01566-7a57-4716-9c5a-b73ba3b73241','491738956929','203151723 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9938 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/203151723\n\nYour shipment with the number 203151723 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9938. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/203151723\n\nBICARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('bba47dd9-8927-44fc-bab4-188249152d42','4917681106453','644626371 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9180 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644626371\n\nYour shipment with the number 644626371 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9180. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644626371\n\nBICARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('bba69cf9-bb64-4491-8430-fd74619b944f','905075277637','AYDIN İLKNUR adlı müşterinizin 745545386 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('bbb147bf-0309-4d9d-ab6f-65a624d9c5a7','33781635699','Sayın SELEN SEMERCİ, 428326285 nolu gönderiniz 9362 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428326285\n\nDear SELEN SEMERCİ, your shipment with 428326285 was delivered to you with the delivery code 9362. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428326285\n\n\nBICARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('bbb22ff4-4715-449b-9a22-59dc362a0314','905394878216','DAVUT KAYHAN  adlı müşterinizin 517887763 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','16c1502b-604e-4738-a2f1-13c522febb96',NULL),
('bbb78791-cab9-4f89-9b33-991dcd1ecca8','905078062550','Sayın yetkili; BERİVAN PALAVAN adlı müşterinize 598903023 nolu gönderinizin 6 sandalye ürünü 6 parça halinde LİN SANDALYE adresinizden 18.08.2025 11:46:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('bbb88d91-0980-4d51-bab1-03b6eeb9e95c','905368336516','SEMA PALA  adlı müşterinizin 515747086 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','87a56817-1368-4494-92c1-074a6979a4b8',NULL),
('bbb8de13-df77-4d3a-b276-babcf4e9aa2f','905331602195','Sayın yetkili; BERFİN UZUNER  adlı müşterinize 221900850 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 14:16:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('bbbf2102-95a1-45fb-87ae-de240ee837c2','9054439559150','Sayın yetkili; İSMET IRMAK adlı müşterinize 614932526 nolu gönderinizin SSH KUMRU NEFRO BİLGİSAYAR KOLTUĞU AYAĞI  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:30:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','558ade04-1baa-47ac-99df-233551c2e4c2',NULL),
('bbbf3318-2c55-452a-9ab8-c17a0cabc43e','4917661327084','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('bbbf62f7-7e2f-44bf-a1e9-fceeb818c75b','905510396989','Sayın yetkili; ARZU ÜNLÜ adlı müşterinize 319515461 nolu gönderinizin MİLANO MASA ÜSTÜ ürünü 1 parça halinde Fatura adresinizden 31.07.2025 17:55:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('bbc708a1-9c45-4c47-b9af-ac24307e6d12','4915154689430','Sayın ENVER GÜL, 478659791 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478659791\n\nDear ENVER GÜL, your shipment with 478659791 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478659791\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('bbcdc746-36a2-4a55-a236-f272a8171d5e','32495328608','Sayın ÜMİT MORCA, 644377995 nolu gönderiniz 5750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644377995\n\nDear ÜMİT MORCA, your shipment with 644377995 was delivered to you with the delivery code 5750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644377995\n\n\nBICARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('bbcf9a79-4186-4c2a-a7b7-1da8bbcc6c3a','905078062550','Sayın yetkili; ERDAL PEKER adlı müşterinize 598944852 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde ELİTİS HOME adresinizden 26.08.2025 18:26:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9665df81-a895-4779-ad78-e6fc3e7f28df',NULL),
('bbd0b6a2-6c15-428c-bbae-9418214564c2','905355928266','MEHMET KARA adlı müşterinizin 412977083 nolu gönderisi 2 parça halinde yola çıkmıştır.','1',NULL,NULL),
('bbdd8434-96e2-4be5-97db-4af6801e11c7','436605070364','Sayın ARZU ASLAN, 675965194 nolu gönderiniz 4380 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675965194\n\nDear ARZU ASLAN, your shipment with 675965194 was delivered to you with the delivery code 4380. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675965194\n\n\nBICARGO','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('bbe4aeee-e594-4df7-b31a-5368387d48ff','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin black line bazalı karyola 2 adet komidin ürünü 9 parça halinde RİXXE adresinizden 26.08.2025 09:57:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('bbe7145f-14e6-46bc-9465-8f4ed375db93','4917680727235','Sayın MANOLYA PELİN ERDOĞAN ÖZÇELİK, 437649706 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649706\n\nDear MANOLYA PELİN ERDOĞAN ÖZÇELİK, your shipment with 437649706 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437649706\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('bbe7b05f-0eee-4ec5-ab45-8b23ef183d4e','436603406293','Sayın yetkili; DRAGİ DİJANA adlı müşterinize 675951028 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 07.07.2025 14:46:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('bbee5596-d455-4ae4-8edb-a23a789b97cf','491778394505','Sayın GAMZE CAPALBO - GABRİELE, 517395181 nolu gönderiniz 3622 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517395181\n\nDear GAMZE CAPALBO - GABRİELE, your shipment with 517395181 was delivered to you with the delivery code 3622. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517395181\n\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('bbef505c-65af-4cb0-9add-a2c9b3f5b0ca','436604962982','Sayın CANAN ŞENEL, 644319069 nolu gönderiniz 8993 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644319069\n\nDear CANAN ŞENEL, your shipment with 644319069 was delivered to you with the delivery code 8993. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644319069\n\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('bbf3c393-6903-41ca-8ada-ada6fd4dbbdf','905335511664','NECİP FAZIL ŞİMŞEK adlı müşterinizin 371261673 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('bbfa3271-9f23-463a-ab9d-99f72f0c54a4','905331602195','ALİYE DALKAYA adlı müşterinizin 221763889 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('bbfaac57-97bf-49a8-90d1-89fcfdd8a893','491623325353','Sayın DUYGU DEMİRHAN, 644703173 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644703173\n\nDear DUYGU DEMİRHAN, your shipment with 644703173 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644703173\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('bc019c92-4d20-464b-9a5d-bb51f6561182','05388618969','ÖMÜR TOSUN adlı müşterinizin 78633450 nolu gönderisi 8 parça halinde yola çıkmıştır.','2','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('bc039bc7-427c-4657-ab56-e28e98fa0b32','905534084469','NEVZAT HACIOĞLU adlı müşterinizin 15153034 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','652b8f3e-d7dd-479b-aacc-14b9a45a626e',NULL),
('bc101433-a75d-4218-bd55-970fcfba7838','905075277637','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin VOYAGE TEKLİ + PUF  ürünü 3 parça halinde RİXXE  adresinizden 09.09.2025 11:29:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('bc10b8aa-38a6-4a3e-812a-0c859ec4a073','32483589693','Sayın STEPHANİE GOSSEYE, 221669694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221669694\n\nDear STEPHANİE GOSSEYE, your shipment with 221669694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221669694\n\nBICARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('bc165333-02b5-4be7-ba5a-5ca2e89a1603','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin baza ürünü 3 parça halinde Albessa adresinizden 08.08.2025 15:12:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('bc188fde-3b59-485f-a3f6-44ca0b3d4671','491773638963','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('bc1f07c3-56ea-4156-a9c2-940a148e9cc3','31643014600','437233194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4463 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233194\n\nYour shipment with the number 437233194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4463. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437233194\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('bc226f9e-acfe-4261-99da-5840fc480b02','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('bc25b0fb-a268-432d-b962-fc490d3ef926','4917666337155','Sayın İPEK ÇAKMAKÇI, 505129515 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505129515\n\nDear İPEK ÇAKMAKÇI, your shipment with 505129515 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505129515\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('bc2882d9-c6dc-40df-9f9c-7364edca763f','004915566210140','Sayın RAMAZAN KAVRUK, 735561469 nolu gönderiniz 3019 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735561469\n\nDear RAMAZAN KAVRUK, your shipment with 735561469 was delivered to you with the delivery code 3019. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735561469\n\n\nBICARGO','2','26321c61-8ef9-4498-b666-82a04622843a',NULL),
('bc32774b-f359-4641-a6cf-da02cc1bbc21','905075277637','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin ELİT KÖŞE TAKIMI  ürünü 4 parça halinde SİNAN KÖŞE  adresinizden 13.05.2025 12:39:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('bc40d807-4715-4c92-88f6-1c649af18ac8','905075277637','MERYEM BULAK  adlı müşterinizin 745374253 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('bc40f26e-33e6-48e1-b394-056d1b7d3151','905318109098','MEHMET ALİ ADIGÜZEL adlı müşterinizin 4551399 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72aa8e60-9a79-4342-a46f-b23239e81fb0',NULL),
('bc41f4b5-a8e4-43c3-a038-c0a458e0e41a','905325000478','NADİR KURUKOL adlı müşterinizin 412217714 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('bc427ed7-ed6e-4b0c-b888-3c6d3c73bf79','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin berjer ürünü 1 parça halinde onca koltuk adresinizden 27.12.2024 14:13:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('bc46d1fe-b8a5-441f-8143-a89ed0c881fc','31641824655','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('bc46d37b-05d2-4e82-bbd9-9c3bd9f4ad9f','905336367828','MARA EDEN adlı müşterinizin 982240405 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('bc4afaed-2fec-47e2-bc9c-761c8c70b72f','905075277637','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin SSH TEK SANDALYE  ürünü 1 parça halinde BEYMİ  adresinizden 03.10.2025 18:15:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('bc4d3238-00f6-44eb-ae98-dba878ed4b5a','491759161362','Sayın METE-TAHA TOPAL, 478281907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478281907\n\nDear METE-TAHA TOPAL, your shipment with 478281907 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478281907\n\nBICARGO','1','4a285e1c-8129-4c9c-85a3-06394604421e',NULL),
('bc525497-2602-4f63-8561-2ebe725534d3','905075277637','Sayın yetkili; HALİDE ÖZAY adlı müşterinize 745208965 nolu gönderinizin FRİDA KÖŞE TAKIMI  ürünü 6 parça halinde Fatura adresinizden 25.08.2025 17:21:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('bc52d721-5c9c-4b26-8678-7c058cb38850','905368336516','FATİH YİGİT adlı müşterinizin 515956879 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('bc539ced-e53b-4c5d-9a22-be26c46f81b4','905336367828','Sayın yetkili; FERİDE USLI  adlı müşterinize 982674617 nolu gönderinizin Masa  ürünü 2 parça halinde Brn mobilya  adresinizden 13.08.2025 16:47:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('bc558c36-11ba-42e2-8977-e3b557c26ef2','436609400015','Sayın MUSTAFA ÖZÇOBAN, 657264606 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657264606\n\nDear MUSTAFA ÖZÇOBAN, your shipment with 657264606 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657264606\n\nBICARGO','1','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL),
('bc589d47-4ef0-456b-b909-02740c5508f6','905517075149','OKAY DERİNKUYU adlı müşterinizin 478402358 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('bc5ae2b9-df84-45cf-946a-b31e7a447ea2','33666051702','Sayın BECET ÖZDEMİR, 478221533 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478221533\n\nDear BECET ÖZDEMİR, your shipment with 478221533 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478221533\n\nBICARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('bc5f4d78-1b73-4046-baac-7daf1c237740','905079047428','FATIMA KRISHMA adlı müşterinizin 982164642 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7b0bb03-c914-41e5-8899-697339f7e562',NULL),
('bc5f80ee-ca13-48f0-bbfd-34aee6693590','4917922929386','Sayın MEHMET GÜL, 33841628 nolu gönderiniz 4301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/33841628\n\nDear MEHMET GÜL, your shipment with 33841628 was delivered to you with the delivery code 4301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/33841628\n\n\nBICARGO','2','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('bc61a505-11d7-4d8a-9ff9-caaeb7cf4d2b','491787575752','Sayın MEHMET ALİ ŞAHİN, 478616973 nolu gönderiniz 4445 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478616973\n\nDear MEHMET ALİ ŞAHİN, your shipment with 478616973 was delivered to you with the delivery code 4445. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478616973\n\n\nBICARGO','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('bc63c5db-bc07-45a4-92bf-a35d95dc264b','905365908694','HASAN PİCKEL adlı müşterinizin 223210999 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','04757da4-5689-4b28-8662-727fabf44027',NULL),
('bc6647b1-30f5-435f-aa4a-18bdc4d8c653','491782692542','Sayın ELFRİDA RAİCEVİC , 613510894 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613510894\n\nDear ELFRİDA RAİCEVİC , your shipment with 613510894 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613510894\n\nBICARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('bc6770c9-f537-4715-82c2-ddf2d4a7753d','4915560835617','Sayın AYCAN ÇOLAK, 371120278 nolu gönderiniz 1053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371120278\n\nDear AYCAN ÇOLAK, your shipment with 371120278 was delivered to you with the delivery code 1053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371120278\n\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('bc6a0687-6b10-4f05-9fbd-8182dcd2c0d2','905454259202','MELEK ÇELİK adlı müşterinizin 478675012 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','c2f23e3e-f784-442b-86c5-a406b57dc08e',NULL),
('bc6ac0ea-1fb7-4097-805c-ad039630ae4d','4915731363686','745653378 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745653378\n\nYour shipment with the number 745653378 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745653378\n\nBICARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('bc6afff7-1d43-4c7f-8d06-66e70a352a85','905336367828','Sayın yetkili; Enver kök  adlı müşterinize 982549375 nolu gönderinizin Köşe koltuk  ürünü 4 parça halinde Sels sofa  adresinizden 13.11.2024 15:19:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('bc7db174-58c5-45c8-b507-d9e014d25144','905079358213','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin ELİT KÖŞE TAKIMI  ürünü 4 parça halinde SİNAN KÖŞE  adresinizden 13.05.2025 12:39:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('bc811884-fe1e-4eaa-bb36-61fc00428fa7','905336367828','Sayın yetkili; CAROLİE KENZA  adlı müşterinize 982212726 nolu gönderinizin Berjer  ürünü 1 parça halinde Comfortlife  adresinizden 10.01.2025 17:26:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('bc81a968-b43d-4e64-9c7e-6fcc6a97b0c7','905363385813','HİLAL POLAT ÇELİK adlı müşterinizin 976866527 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL),
('bc850bb1-119c-48bd-90a4-09404866383a','32495776498','Sayın AHU KARUÇ, 437786734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437786734\n\nDear AHU KARUÇ, your shipment with 437786734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437786734\n\nBICARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('bc892eda-daaa-46da-9177-07897ad1fa7e','905413792483','Sayın yetkili; EMRE ÇELİK adlı müşterinize 278329196 nolu gönderinizin Mobilya ürünü 13 parça halinde Fatura adresinizden 20.08.2025 18:38:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea8e29d2-4a7e-49ab-8818-95ab0ecfc0d6',NULL),
('bc8ff2f6-4868-4db0-9731-ad760c3e0f5b','33786958976','Sayın ASLI ALTINTAŞ, 478775583 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478775583\n\nDear ASLI ALTINTAŞ, your shipment with 478775583 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478775583\n\nBICARGO','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('bc93db62-1171-4170-b0cf-cdcf803d9c8f','5365908694','Sayın PASS, 223441694 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223441694\n\nDear PASS, your shipment with 223441694 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223441694\n\nBICARGO','2','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('bc94d2e1-9531-4dad-bfed-98e2dcae125d','905078062550','Sayın yetkili; MERT ÇİÇEK adlı müşterinize 598954734 nolu gönderinizin HALI ürünü 1 parça halinde NLUXHOME DEPO adresinizden 02.09.2025 12:08:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('bc94eafd-10a5-4fe1-96b7-79cc22d8704a','32486080855','Sayın AKKAY NADİA, 22133183 nolu gönderiniz 7359 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22133183\n\nDear AKKAY NADİA, your shipment with 22133183 was delivered to you with the delivery code 7359. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22133183\n\n\nBICARGO','1','3c3d8662-c519-424b-a30b-3c4e5d01c1e1',NULL),
('bc9801f6-0fdc-49a0-80a9-dffe3e0bee35','905428209234','CEMAL YALÇIN adlı müşterinizin 319116491 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('bca5f2a2-c420-4929-b2bd-481a86957946','905075277637','Sayın yetkili; MEHMET KIRMALI SSH adlı müşterinize 745961245 nolu gönderinizin SSH SIRT MİNDERİ ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:10:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('bca68ced-e310-469c-af14-3859a4b5a37a','333632361757','Sayın AHMET AKAT, 817619747 nolu gönderiniz 2916 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817619747\n\nDear AHMET AKAT, your shipment with 817619747 was delivered to you with the delivery code 2916. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817619747\n\n\nBICARGO','2','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('bcac0063-6666-4329-9943-9f3db97c258d','436603406293','Sayın yetkili; METİN SENER adlı müşterinize 675629833 nolu gönderinizin koltuk ürünü 4 parça halinde LIONSE  adresinizden 26.06.2025 17:37:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','13382df8-a786-4221-b2be-81ba3d674937',NULL),
('bcaee0d5-1fd4-419a-9258-00e97e80c361','436609207591','982864044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3575 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982864044\n\nYour shipment with the number 982864044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3575. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982864044\n\nBICARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('bcb148cb-c4e6-470f-9264-7566ed4e797a','491721729468673','Sayın BİRSEN KARADAVUT, 478403352 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478403352\n\nDear BİRSEN KARADAVUT, your shipment with 478403352 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478403352\n\nBICARGO','2','b006cc45-9807-4678-89ca-491086a75064',NULL),
('bcb23cd3-e03e-4376-972c-ab3c3153a500','436603406293','ARZU ASLAN adlı müşterinizin 675965194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('bcb277a1-a3ab-437a-a5d3-efb0a11efa82','905433560559','Sayın YASİN YAMANOĞLU, 93566108 nolu gönderiniz 8640 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/93566108\n\nDear YASİN YAMANOĞLU, your shipment with 93566108 was delivered to you with the delivery code 8640. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/93566108\n\n\nBICARGO','1','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL),
('bcb5087c-e4c8-44ab-ab0a-2a13131df1e8','905461661672','Sayın yetkili; FATMA SILA KAÇAK adlı müşterinize 644194590 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 03.10.2025 12:18:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('bcba67fe-4ab7-4776-a5f0-1bb9828c1b9c','905331602195','Sayın yetkili; MERAL GÖGDAS  adlı müşterinize 221965496 nolu gönderinizin Eliza sandalye beyaz  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.06.2025 18:07:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('bcbd2e28-e712-4261-8ccd-4373e3d3e2a9','32487862116','Sayın TÜLAY KILIÇ, 982880880 nolu gönderiniz 4738 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982880880\n\nDear TÜLAY KILIÇ, your shipment with 982880880 was delivered to you with the delivery code 4738. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982880880\n\n\nBICARGO','1','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL),
('bcc0957f-9943-42b7-95e9-de9ed2643363','4917632871716','Sayın ENDER CAN ORHAN, 371836215 nolu gönderiniz 6922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371836215\n\nDear ENDER CAN ORHAN, your shipment with 371836215 was delivered to you with the delivery code 6922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371836215\n\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('bcc2e1b5-d68d-47aa-b5ba-145073a79176','905304259202','AHMET GÜNEŞ adlı müşterinizin 478285861 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e792b913-8e00-4617-bf8c-27fc2a7933e2',NULL),
('bcc3344c-a6bd-4a69-9931-3b4ef8703f85','905461661672','Sayın yetkili; TUNAY KOCATÜRK adlı müşterinize 644196383 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 27.08.2025 11:48:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('bccad2b8-a500-44bc-b0e0-5ac9452c9846','4915255996436','Sayın ÇİLEM KAYNI, 61428079 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61428079\n\nDear ÇİLEM KAYNI, your shipment with 61428079 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61428079\n\nBICARGO','1','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL),
('bccc063d-4d2f-49a9-b1db-a1f050be98a6','905336367828','Sayın yetkili; SADAT SAIDI adlı müşterinize 982365685 nolu gönderinizin YEMEK ODASI  ürünü 8 parça halinde Palermo mobilya  adresinizden 19.11.2024 17:39:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('bcce2dd1-ae60-410a-8117-0c70ffcecf37','41797342584','221529516 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2306 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221529516\n\nYour shipment with the number 221529516 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2306. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221529516\n\nBICARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('bcd7f278-bf0a-4642-8ccc-e12de8e8a89b','905301592882','M.ALİ ÇETİN adlı müşterinizin 910129924 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('bcd818af-957a-4e79-b9cc-c1db7dc2b2ed','436765207297','449417757 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10627 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449417757\n\nYour shipment with the number 449417757 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10627. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449417757\n\nBICARGO','1','d7b69750-f00d-4eff-a7d5-f4ec3b8988ce',NULL),
('bcd9608a-4dd9-4189-97a1-b1b2fc9554a8','333651501156','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','2','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('bcdab43b-07dd-45c1-a98e-8745b0ca1d98','905079358213','ÖZGÜR SEDAT YAMALAK adlı müşterinizin 74513098 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab8aea2d-8bea-4d4c-9d83-556a52f26e1b',NULL),
('bcdcb24a-bbc8-4e6e-93d1-167f20e0fdfc','905335511664','Sayın yetkili; ÖZLEM POLAT adlı müşterinize 37176846 nolu gönderinizin Köşe Takımı + puf ürünü 4 parça halinde Elitis Home adresinizden 21.03.2025 12:06:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','964fcf95-183e-4624-afee-8e83b0ce2134',NULL),
('bcdecf77-fba5-4c25-ba0e-9726ac98cce5','4369919243273','DRİVER NUMBER\n					905541100849','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('bce4db3f-83d0-497d-8f71-4b166061a882','905336367828','ŞEYDA ŞAHİN adlı müşterinizin 9824380 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','61814c87-b908-4fb2-ba7f-eae762fc1882',NULL),
('bce5aabf-b649-4e11-9ba4-80d544c9919d','436609855451','Sayın FATMA KAYA, 371579541 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371579541\n\nDear FATMA KAYA, your shipment with 371579541 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371579541\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('bceba57c-f925-4303-a967-6409c11dfbfe','31615081540','644884110 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1796 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644884110\n\nYour shipment with the number 644884110 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1796. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644884110\n\nBICARGO','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('bceced2e-959f-4bb5-8296-482b69f576a3','905335511664','MEHMET SARI adlı müşterinizin 371820872 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','6e6afc45-76dd-42f4-bded-f2fada436aff',NULL),
('bced0dbc-56f0-4c07-a913-ad7829a5b00c','4917680173048','Sayın ÖMER ÇALIK SSH , 7456984 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7456984\n\nDear ÖMER ÇALIK SSH , your shipment with 7456984 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/7456984\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('bcede656-7b35-4fa5-81f2-3ee4e398fd5b','905301592882','Sayın yetkili; YAKUP KOÇOĞLU adlı müşterinize 910778068 nolu gönderinizin ssh ürünü 1 parça halinde Fatura adresinizden 15.04.2025 16:39:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('bcf09227-32df-4f07-91ed-90a54cfbe6e2','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin 2 adet kartela ürünü 1 parça halinde Fatura adresinizden 13.08.2025 17:49:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('bcf28efa-1407-47d6-b4d3-ecfeb2e2a447','4917670477850','Sayın FATİH KAYA, 750845897 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750845897\n\nDear FATİH KAYA, your shipment with 750845897 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750845897\n\nBICARGO','1','447dba3f-3a2b-4aae-943a-a8cb16c2bfda',NULL),
('bcf3ac61-dcea-43c1-86de-b8a67f4b392d','905078062550','Sayın yetkili; İVAN SLEMAN DİNO adlı müşterinize 598410676 nolu gönderinizin MASA SEHPA ürünü 5 parça halinde RİO FATİH adresinizden 19.09.2025 10:33:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('bcf6be1b-b7da-420e-9eae-c552f54fd444','41793422327','Sayın SÜLEYMAN SUNGUR, 371365041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365041\n\nDear SÜLEYMAN SUNGUR, your shipment with 371365041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371365041\n\nBICARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('bcf7d095-1d9c-48ec-af5f-d43db9812747','4917680243657','Sayın MUHAMMED ALİ YILMAZ , 221294149 nolu gönderiniz 9834 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221294149\n\nDear MUHAMMED ALİ YILMAZ , your shipment with 221294149 was delivered to you with the delivery code 9834. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221294149\n\n\nBICARGO','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('bd02d5e3-3ad4-415c-983f-790df8383cb6','333632361757','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','2','2bfb4ebc-a071-48f5-9c44-727046a13ab1',NULL),
('bd0390c9-cd8f-4fbd-b12b-0fc2b82395b8','905069116877','NİSRİN GHARİB HASSAN  adlı müşterinizin 817747938 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('bd048b03-69dc-4800-83ef-c5db28a010bf','905461661672','TÜLAY ÇAĞLAR adlı müşterinizin 644637792 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('bd074c9d-b4e8-4bb0-8f10-ab3c6ea8097c','905349208933','EMRAH ERAYDIN adlı müşterinizin 127552437 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('bd0d92e3-8aad-4c09-9b35-1e3cb9df865c','436507400301','Sayın ERKUT PEKTAŞ, 478474988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478474988\n\nDear ERKUT PEKTAŞ, your shipment with 478474988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478474988\n\nBICARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('bd104cc1-987e-4bca-8ecd-905ab30aa5f7','4917621902385','Sayın RASİM YAVUZ, 598894090 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598894090\n\nDear RASİM YAVUZ, your shipment with 598894090 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598894090\n\nBICARGO','1','a71c1b97-adb1-44f0-8622-8ebc242aee74',NULL),
('bd19bc90-4cc0-4c8a-8d76-e1bca9904b56','4915236632469','Sayın RUHİ MANAV , 79354282 nolu gönderiniz 8215 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/79354282\n\nDear RUHİ MANAV , your shipment with 79354282 was delivered to you with the delivery code 8215. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/79354282\n\n\nBICARGO','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('bd1bba06-a0b7-4f1e-a64b-7b020dc85d09','905517075149','Sayın yetkili; MURAT KALKAN adlı müşterinize 478981977 nolu gönderinizin bazalı karyola ürünü 5 parça halinde SENS adresinizden 04.10.2025 14:48:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','12b5cb18-7b59-4361-9c5f-b40222dc7d16',NULL),
('bd1e0816-8124-4045-b7a1-5fbb2894f804','33763000176','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('bd1f0366-e4d3-4eb0-8299-1a22e3616bb0','32475529099','Sayın ALİ ERKOCA, 745177264 nolu gönderiniz 1788 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745177264\n\nDear ALİ ERKOCA, your shipment with 745177264 was delivered to you with the delivery code 1788. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745177264\n\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('bd252dad-6278-4f43-90e8-19efdc37d248','905321608709','AZEM SATTAR adlı müşterinizin 248158562 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('bd29b904-ef38-4c62-bf3b-43f63115ee82','905461661672','TAHSİN AKSOY adlı müşterinizin 644716997 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('bd2a6efc-c6b6-43ea-a37b-6681e5d59020','905446974799','ŞENEL KURU adlı müşterinizin 776312220 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','6185b161-cfc2-4a8a-a2f2-c2e05c20c446',NULL),
('bd2bb963-1980-46fd-9311-6873e5c3969a','01794421633','531629494 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3037 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531629494\n\nYour shipment with the number 531629494 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3037. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531629494\n\nBICARGO','2','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('bd2eec81-4184-4bdf-8765-2b1a8bb7c866','4917624864505','Sayın AHMET EMİN GÜL, 910201328 nolu gönderiniz 5215 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910201328\n\nDear AHMET EMİN GÜL, your shipment with 910201328 was delivered to you with the delivery code 5215. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910201328\n\n\nBICARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('bd320ff7-15e0-4995-ab94-38f70d4bdd29','905321608709','İSMAİL ŞANLI adlı müşterinizin 248710120 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('bd33aa90-ef21-4b0c-9b43-56830da8d837','905517075149','MİLLE FİERRA COELHO  LUDİVİNE  adlı müşterinizin 478505417 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('bd341f2e-72ef-4e77-8ed5-aa0f88ed49a6','4917656525814','745869069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4774 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745869069\n\nYour shipment with the number 745869069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4774. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745869069\n\nBICARGO','1','57aaa2e5-1908-4468-bb27-3c3205ba5948',NULL),
('bd423d3e-15c8-4973-9039-3806d39bb157','4917620022816','371201111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2570 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371201111\n\nYour shipment with the number 371201111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2570. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371201111\n\nBICARGO','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('bd425868-c84c-48a0-ba2a-2f57357db9e8','4917657786100','Sayın ÖZGÜR PİLİÇ, 517447554 nolu gönderiniz 6492 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517447554\n\nDear ÖZGÜR PİLİÇ, your shipment with 517447554 was delivered to you with the delivery code 6492. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517447554\n\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('bd433364-6e8b-496c-912e-25f23f381d33','905423036885','Sayın yetkili; ALMİRA adlı müşterinize 920610594 nolu gönderinizin MERMER MASA ürünü 1 parça halinde Fatura adresinizden 09.09.2025 15:55:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','65fd407c-2335-4e5b-a51c-a9a8124139b8',NULL),
('bd533f04-a6f5-4075-97b8-6b0e92179bb0','33660895865','Sayın MİHAND SAFAE , 221257971 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221257971\n\nDear MİHAND SAFAE , your shipment with 221257971 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221257971\n\nBICARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('bd5a879d-77d2-45bd-ac79-e62fcbf61ed9','905461661672','SİBEL ÇEVİK adlı müşterinizin 644631223 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('bd5b8ddd-2696-409a-8060-cb251d21b847','905321608709','Sayın yetkili; AHMET YARDIMCI adlı müşterinize 248510237 nolu gönderinizin SALINCAK ürünü 1 parça halinde Fatura adresinizden 17.07.2025 12:44:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f5d87b20-c153-4013-ad66-04b26744dcaa',NULL),
('bd607cff-f1ed-4c54-b5a1-afe29f6368d3','491776464425','911787432 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/911787432\n\nYour shipment with the number 911787432 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/911787432\n\nBICARGO','1','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL),
('bd64d755-c180-43be-8437-a3c9b7469839','905304259202','BÜLENT ECEVİT DUROĞLU adlı müşterinizin 478368190 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','697955d3-b7a2-4988-99d7-ef09f8a4cea4',NULL),
('bd64fad5-9a0e-41ae-a59e-a9e64fb83208','4915733572257','Sayın OLSZWESKİ MATZ, 644658399 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644658399\n\nDear OLSZWESKİ MATZ, your shipment with 644658399 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644658399\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('bd65a207-cf56-49d9-ab57-f3fc157fb881','905335708965','MEHMET DORUM adlı müşterinizin 248526655 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4e0cea3d-63d2-42a8-afae-666b9df651a4',NULL),
('bd69eb42-f9cc-41a4-a85f-c147acb84ef4','4917634657298','Sayın GÜL KOÇAK, 437672074 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437672074\n\nDear GÜL KOÇAK, your shipment with 437672074 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437672074\n\nBICARGO','1','9504e4a5-303e-4819-a70c-cb5f6e9502ba',NULL),
('bd6ff836-ca0a-458e-978c-751adfa13892','32484930252','Sayın SEVAY NİKOLAEVA YANKOVA, 517895646 nolu gönderiniz 5894 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517895646\n\nDear SEVAY NİKOLAEVA YANKOVA, your shipment with 517895646 was delivered to you with the delivery code 5894. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517895646\n\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('bd766c12-0dc2-4bf9-b51e-56c5238e11f6','905075277637','HÜSEYİN AKBANA adlı müşterinizin 745191568 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('bd785cc2-e0e2-4ad1-887c-b43ae2b77542','436609136123','İletişim \n					Halil Bey (Şoför) :+905541100849','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('bd7b0a21-bea8-4d70-a357-14dff0750fe6','905078062550','TALHA KARA adlı müşterinizin 598384021 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('bd7c29f3-60de-44e9-8314-1ac583a6c883','905335511664','Sayın yetkili; SELÇUK SÖNMEZ adlı müşterinize 371183095 nolu gönderinizin keramik masa + sehpa ürünü 6 parça halinde Seramik Masa Üreticisi adresinizden 06.10.2025 13:49:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('bd7f8a9d-42f4-4eb1-936b-81bd91a7572b','491724542171','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('bd8705f0-19cf-4d07-bae3-90b85d6be7fc','4917670362806','İLETİŞİM\n					Furkan şöför = +905078826436','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('bd8a87ab-26a4-496a-8555-1818859bc739','4915778521102','248269890 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2314 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248269890\n\nYour shipment with the number 248269890 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2314. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248269890\n\nBICARGO','2','af4e1860-0998-4434-bd62-e28f7958cebe',NULL),
('bd8f6afd-99f2-47a4-99df-0a86dac8a2f2','905335708965','AMİR MJAHED adlı müşterinizin 248618650 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7dfcf55-ee39-4764-87f9-17c50166c245',NULL),
('bd907d92-d5a3-4afd-a006-3d9164f908e1','004915730034297','Sayın MURAT KARADAĞ, 248211803 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248211803\n\nDear MURAT KARADAĞ, your shipment with 248211803 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248211803\n\nBICARGO','2','67ce6e25-ae23-4317-bb28-96a9c393e42f',NULL),
('bd916dc5-a94e-4264-a450-46649232ccbb','905333221039','GÜLSEN ERDİNÇ SSH adlı müşterinizin 75052392 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('bd94db19-3ef8-4f3a-b0d3-5b89323a740d','905335511664','AYLİN AY adlı müşterinizin 371201111 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('bd950796-a9e8-4c94-8291-f2c1ed10bc2c','4917680520105','Sayın BERİVAN PALAVAN, 598903023 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598903023\n\nDear BERİVAN PALAVAN, your shipment with 598903023 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598903023\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('bd951174-af83-489c-bcd5-b3eab6c32966','905461661672','Sayın yetkili; GÜLŞAH SEVİMLİ adlı müşterinize 644721676 nolu gönderinizin MASA AYAĞI ürünü 1 parça halinde Masami Mobilya adresinizden 25.06.2025 17:53:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('bd98f76d-61a5-44fc-8918-0d6a92870fa8','4917663287928','644458216 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644458216\n\nYour shipment with the number 644458216 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644458216\n\nBICARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('bd9f6df7-9be0-42a3-a1cc-e91a4df7b732','905313340045','Sayın yetkili; ÖZGÜR ÇEŞME adlı müşterinize 437694817 nolu gönderinizin Sandalye ürünü 4 parça halinde ard sandalye adresinizden 11.09.2025 14:07:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('bda31ac2-7a55-4159-809c-1bac76891088','905350617509','DANİAL ARAMESHK  adlı müşterinizin 613191069 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('bda66267-3403-46bd-b694-8d733b8f414d','4915772639272','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('bdaac596-b564-4084-9c0f-d59e0b8bb3be','491733557232','Sayın SEVGİ BOLAT, 598250504 nolu gönderiniz 10836 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598250504\n\nDear SEVGİ BOLAT, your shipment with 598250504 was delivered to you with the delivery code 10836. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598250504\n\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('bdae44b0-6d07-4010-adf9-bb74f9fd7539','905461661672','SANİ ALAJBEGOVİC adlı müşterinizin 644344492 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('bdafbb18-a51f-471c-9f0b-81b243e89810','31686096778','Sayın MELEK KAYMAZ(K), 644547865 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644547865\n\nDear MELEK KAYMAZ(K), your shipment with 644547865 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644547865\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('bdb90d3e-7cc8-4969-bb86-148128a12dc5','905418640012','ÇAĞLAR adlı müşterinizin 72247088 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','2afcf460-a080-4273-8901-46e80d97fa18',NULL),
('bdc5f532-7f46-42ea-8838-8051b546fed2','33602366647','Sayın SEZER HATUN, 745249081 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745249081\n\nDear SEZER HATUN, your shipment with 745249081 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745249081\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('bddd1418-88d1-4e08-a632-73789d0d2bf8','905079358213','DENİZ ŞİMŞEK adlı müşterinizin 745824761 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('bdde06f2-6191-4aa9-8b4a-3a2becdf89b8','4915901358916','Sayın ZEYNEP CİHANGİR, 478678849 nolu gönderiniz 3260 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478678849\n\nDear ZEYNEP CİHANGİR, your shipment with 478678849 was delivered to you with the delivery code 3260. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478678849\n\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('bde2fb0c-0643-4134-ab85-a38518a6885b','32487280627','Sayın TEVFİK KÜÇÜK, 644513470 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644513470\n\nDear TEVFİK KÜÇÜK, your shipment with 644513470 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644513470\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('bde79aea-19a6-4fe3-9b4a-d8acb83331b8','905365908694','MEHMET ALİ ÇAKIROĞLU  adlı müşterinizin 223744518 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','1f667c31-0a45-4450-be98-281039258085',NULL),
('bdeb7bf8-848e-47d6-b416-f826bfe01b90','905325165070','ALAADDİN ŞAHİN adlı müşterinizin 734460411 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('bdec172a-dc1c-49aa-a307-ddfac37a7224','32465090657','501428847 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7619 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501428847\n\nYour shipment with the number 501428847 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7619. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501428847\n\nBICARGO','1','a87cf842-cbf5-4954-a97f-dfa9faa9dbc2',NULL),
('bded1504-f93c-4a06-8fa5-73ef2cfbcd98','31687653993','Sayın HAKİF ZİNAL SSH, 644391223 nolu gönderiniz 2902 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644391223\n\nDear HAKİF ZİNAL SSH, your shipment with 644391223 was delivered to you with the delivery code 2902. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644391223\n\n\nBICARGO','1','a6738f2f-6b68-43b0-af19-0baf0d11e818',NULL),
('bdee9f14-8dc4-46ba-bc5c-52cfc7706fd6','905423036885','FİDAYE YILDIRIM adlı müşterinizin 920821712 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('bdf29e25-579b-4729-b413-464ecddc355c','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ZARARSIZLAR DEMET ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('bdf4a065-9325-49a8-9926-42cd9be0f48c','491627321230','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','a99855a1-4c2d-4b5a-b222-5fd61915169a',NULL),
('bdf78cb7-afe3-4fc1-aeff-3bf5e8ebd29a','4915738807619','Sayın MAHMUD BİRÜKOF, 598754271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598754271\n\nDear MAHMUD BİRÜKOF, your shipment with 598754271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598754271\n\nBICARGO','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('bdfcb537-a29d-40f4-9de6-d482aa4afd2a','905355928266','Murat Trendyol home adlı müşterinizin 41245861 nolu gönderisi 136 parça halinde yola çıkmıştır.','1','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL),
('be02db2d-1c8c-4206-9514-c27bf5092f7d','9054439559150','NURKAN AŞIR adlı müşterinizin 614529512 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('be02f754-eca3-4ca8-8cac-b71659987660','436766536472','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('be034774-f6e9-4fc4-bf62-8ee6c9722c13','33680267085','Sayın SEZER BEY, 126889614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126889614\n\nDear SEZER BEY, your shipment with 126889614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126889614\n\nBICARGO','1','521af45a-6561-45db-adfb-641b8fafbc92',NULL),
('be141f47-e6dd-400e-aca4-6686809d102e','491711177115','Sayın BERİVAN PALAVAN, 598903023 nolu gönderiniz 6316 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598903023\n\nDear BERİVAN PALAVAN, your shipment with 598903023 was delivered to you with the delivery code 6316. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598903023\n\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('be14a1ab-445e-485b-ab61-c919f720dcd6','905335708965',' adlı müşterinizin 248425122 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b92361d9-2a0d-4287-b424-72a47a8f2fa4',NULL),
('be1d709e-808f-48e2-80f8-b85126c1d7da','4915566766358','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('be29a0ad-73e7-469f-9938-f62e9f982846','905348867917','Sayın GÜRKAN DAĞ, 904803845 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/904803845\n\nDear GÜRKAN DAĞ, your shipment with 904803845 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/904803845\n\nBICARGO','1','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL),
('be2c123f-d8fe-4589-8fc0-99eba90b5343','491784026440','Sayın FOUAD BJA, 515103460 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515103460\n\nDear FOUAD BJA, your shipment with 515103460 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515103460\n\nBICARGO','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('be2c46b2-07e7-412e-8d19-0ffc57e3e13a','5325000478','Sayın RAMAZAN RAMAZAN, 16.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1606519\nŞifre : 1606519\n			\nBİCARGO','1',NULL,'16065e19-f4a9-409d-85c0-ca54cfa7564c'),
('be2c5e42-e037-4c8a-8716-1ea1ff393e52','905461661672','Sayın yetkili; SEYHAN ECE adlı müşterinize 644104537 nolu gönderinizin MASA ürünü 1 parça halinde Masami Mobilya adresinizden 26.09.2025 14:53:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d1aaf32-9c7f-40a5-9b1d-76519643d12e',NULL),
('be2e291b-bdec-4980-ad64-e0270872aa97','905300961610','ERKAN AKSOY adlı müşterinizin 126824871 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','90a8f7ac-5c28-443a-9cbe-23f5c2942327',NULL),
('be3069c1-74c6-4e85-89e5-50b9f5cbd6e9','905461661672','Sayın yetkili; UMUT YÖRÜK adlı müşterinize 644243216 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 28.08.2025 16:57:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('be33083b-6fab-4d4c-80c8-8d0238ebe777','4915158036323','319116491 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1890 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319116491\n\nYour shipment with the number 319116491 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1890. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319116491\n\nBICARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('be344d6d-1186-41f4-87c1-bc9ad5d876f3','3656253652736275','Sayın SAGAX CONSULTİNG , 412380161 nolu gönderiniz 1311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412380161\n\nDear SAGAX CONSULTİNG , your shipment with 412380161 was delivered to you with the delivery code 1311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412380161\n\n\nBICARGO','2','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('be35793d-7cdc-40d8-bc43-d9badbc3dc32','905331602195','Sayın yetkili; HATİCE ÖZTÜRK adlı müşterinize 221621737 nolu gönderinizin 90x230 cm milas beyaz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.09.2025 13:45:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('be3a5b25-aa2f-4d35-9f5d-a928227e2f93','491621003138','Sayın FAHREDDİN ÖZENC, 745283309 nolu gönderiniz 9217 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745283309\n\nDear FAHREDDİN ÖZENC, your shipment with 745283309 was delivered to you with the delivery code 9217. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745283309\n\n\nBICARGO','1','4d4ad16a-ebbb-41f2-9d01-d167180af909',NULL),
('be3fbf40-f99e-4ee2-b017-5585f2d78613','33769502922','449634859 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3268 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449634859\n\nYour shipment with the number 449634859 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3268. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449634859\n\nBICARGO','1','db66575e-7eb2-4dcc-8fa6-1fe6496897e6',NULL),
('be49a446-31b2-4817-89b3-0ec751693b69','905331602195','Sayın yetkili; GODİNA REJEP  adlı müşterinize 221157320 nolu gönderinizin 90x190 Nevada Ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.03.2025 14:51:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('be4a9412-d828-49a2-830e-7e171ce02b30','436601425568','Sayın AKRAMİ MUHAMMED, 449292416 nolu gönderiniz 7258 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449292416\n\nDear AKRAMİ MUHAMMED, your shipment with 449292416 was delivered to you with the delivery code 7258. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449292416\n\n\nBICARGO','1','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL),
('be5ba198-3ad4-4694-9e28-7f39f6a2a606','31685871414','Sayın EZGİ BAŞARAN, 858210128 nolu gönderiniz 5322 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858210128\n\nDear EZGİ BAŞARAN, your shipment with 858210128 was delivered to you with the delivery code 5322. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858210128\n\n\nBICARGO','1','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL),
('be606f95-d4d8-4fea-9fbf-b48092bd3a19','491723655773','Sayın YUSUF YILMAZ, 745481313 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745481313\n\nDear YUSUF YILMAZ, your shipment with 745481313 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745481313\n\nBICARGO','1',NULL,NULL),
('be60ff78-09b7-42bd-9c63-de5ebab1bc8d','4917624132760','910775394 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2970 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910775394\n\nYour shipment with the number 910775394 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2970. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910775394\n\nBICARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('be6a88f3-9ab1-45ca-833e-195c7337ba57','43676879613231','Sayın NURDAN GÜNDÜZ, 437529604 nolu gönderiniz 2984 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437529604\n\nDear NURDAN GÜNDÜZ, your shipment with 437529604 was delivered to you with the delivery code 2984. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437529604\n\n\nBICARGO','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('be6c9a93-f036-4a09-8299-6a3aa873585f','905331602195','Sayın yetkili; BİANCA AGOSTİNHO adlı müşterinize 221439268 nolu gönderinizin SSH 1 ADET MASA ÜST ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 10.02.2025 12:22:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e22a843-fca3-49b3-ab98-7ed84747a703',NULL),
('be6ca331-f633-443d-8f5c-04e7f0f7a00b','41794639037','Sayın ZEHRA ÜNAL, 598320188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598320188\n\nDear ZEHRA ÜNAL, your shipment with 598320188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598320188\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('be6e5066-c9b3-489f-9cc6-f9738f404fc1','905335708965','ERKAN  adlı müşterinizin 248974894 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b094bf7e-153f-4984-b737-f7bdece60165',NULL),
('be6f7708-033a-4eae-aa12-9a82c8a0b385','905331602195','Sayın yetkili; İYAD SHOURBAJİ  adlı müşterinize 221591105 nolu gönderinizin 100x210 cm nevada ceviz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 13:59:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('be78f9ff-c5c7-421b-a586-573b7e8b4aca','4917656985678','Sayın MURAT BALTACI(K), 644762741 nolu gönderiniz 3327 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644762741\n\nDear MURAT BALTACI(K), your shipment with 644762741 was delivered to you with the delivery code 3327. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644762741\n\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('be7c5262-2b1e-4596-9aa5-ddfc5f6707ad','905335511664','ENDER CAN ORHAN adlı müşterinizin 371836215 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('be7f2f3c-f4c3-4879-a1db-522464c95a1a','905075277637','SEDA KURTDİNÇEL adlı müşterinizin 745431846 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('be840fb0-8af4-49c7-ae13-2d255e62e31a','9053259981980','OSMAN SATİCİ adlı müşterinizin 614536111 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('be85f465-17c0-42bd-b08e-7f13895402bf','4915223499584','Sayın FARUK ANSER, 486552581 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486552581\n\nDear FARUK ANSER, your shipment with 486552581 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486552581\n\nBICARGO','1','beffebda-e20a-412c-9417-7ba252538d35',NULL),
('be8bbc76-c715-4ac8-aaf9-60e0d67534f5','905323540531','GÜRKAN DAĞ adlı müşterinizin 904803845 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','65e0ebe7-0bff-4307-92ba-96c874e28cd8',NULL),
('be8d0cde-1f87-4387-af32-614a1c45d922','491638098235','İLETİŞİM\n					Furkan şöför = +905078826436','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('be8dc28f-3cb3-42a5-af16-fcde94ef115a','32489883387','Sayın ÖZGÜR ÇEŞME, 437694817 nolu gönderiniz 2677 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437694817\n\nDear ÖZGÜR ÇEŞME, your shipment with 437694817 was delivered to you with the delivery code 2677. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437694817\n\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('be925088-9af9-4ac0-bced-486abb866a37','491737165730','371998665 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371998665\n\nYour shipment with the number 371998665 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371998665\n\nBICARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('be941913-1654-4707-9cc3-b91e5032be3d','491716488120','Sayın AYŞEGÜL TELLİ, 449962472 nolu gönderiniz 9814 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449962472\n\nDear AYŞEGÜL TELLİ, your shipment with 449962472 was delivered to you with the delivery code 9814. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449962472\n\n\nBICARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('be988c2d-07ae-407c-b16d-b4bfeb75174e','436609207591','Sayın HABİL ŞENER , 982864044 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982864044\n\nDear HABİL ŞENER , your shipment with 982864044 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982864044\n\nBICARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('be9d5e8c-5011-48f6-bdbf-b1e3ace935da','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin 70*100 ORTA SEHPA ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 14:20:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('be9df2dd-0977-4fec-a05b-f38bdba950a7','491723213351','Sayın GÜLİSTAN ÇİÇEK, 745276835 nolu gönderiniz 3443 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745276835\n\nDear GÜLİSTAN ÇİÇEK, your shipment with 745276835 was delivered to you with the delivery code 3443. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745276835\n\n\nBICARGO','1','3702b5a9-ea4c-409a-aff6-311eb12eb584',NULL),
('be9f1b41-6dfc-4241-8bc0-cdd81d99c0c6','905363385813','Sayın yetkili; HAZAL ELMAS adlı müşterinize 976983661 nolu gönderinizin Sandalye ürünü 6 parça halinde Lego Chair adresinizden 20.02.2025 15:10:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('bea127ad-50c6-493b-bb21-348c57128f42','905075277637','MAHMUT ÖZKAN adlı müşterinizin 745996696 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('bea69c96-3537-4fd0-993f-ca89b164000e','905069116877','MEDİNE POLAT adlı müşterinizin 817488957 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('beabfecf-b9ee-4004-b518-7798527a420d','905331602195','Sayın yetkili; ABDULLAH KARACA adlı müşterinize 221554711 nolu gönderinizin SEHPA 70*140 ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 10.02.2025 12:23:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('beac1bfa-64a1-4bef-a45f-65cf81088d5d','905461661672','DÖNDÜ YÖRÜK SSH adlı müşterinizin 644458216 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('beacdd1a-0cd8-40f3-bb40-bf6fe6142ffa','905510396989','Sayın yetkili; ESTRELLA TÜMKAYA adlı müşterinize 319918133 nolu gönderinizin TESLA BERJER ürünü 2 parça halinde Bestine adresinizden 06.02.2025 15:05:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c1e90081-d7d5-4180-8f60-a63125cea8c2',NULL),
('bead48c1-e8e4-4385-a611-acf603c0fe7d','4369911307024','Sayın HARUN ERCAN, 127847689 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127847689\n\nDear HARUN ERCAN, your shipment with 127847689 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127847689\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('bead8a44-677f-4ec0-84cf-0975c75264a0','32479973950','478955837 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7028 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478955837\n\nYour shipment with the number 478955837 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7028. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478955837\n\nBICARGO','1','9a50f1e8-a344-4e30-8e8f-b77c66559586',NULL),
('beade3a5-b2d2-4ccd-8c85-a51bab1aaa70','491736518131','İletişim \n					Şöför Murat : +905321616048','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('beb28dd4-5b65-4c4f-93ab-624484065d6e','491732013160','Sayın NERMİNA SKENDERİ, 371749484 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371749484\n\nDear NERMİNA SKENDERİ, your shipment with 371749484 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371749484\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('beb4ee9c-1ab9-4e99-8b66-2b6dd4d201af','4915750730726','449874608 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2354 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449874608\n\nYour shipment with the number 449874608 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2354. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449874608\n\nBICARGO','1','aa459b9d-90ee-4bb9-8354-0f3f48dd9b48',NULL),
('beb728e3-5216-440a-8e21-e37960c7a636','905059175469','Sayın yetkili; KADİR ÖZCAN adlı müşterinize 428417364 nolu gönderinizin köşe oturumu ürünü 1 parça halinde puffim adresinizden 06.01.2025 16:40:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('bec15d71-b26d-4e42-b475-4162646d90c2','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin sehpa ürünü 3 parça halinde Fatura adresinizden 17.04.2025 17:16:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('bec29266-bfd3-4b39-a493-8e782c25bfe5','436763404107','531983278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3874 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531983278\n\nYour shipment with the number 531983278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3874. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531983278\n\nBICARGO','1','516dfaaa-e378-4999-b13f-ef0839711334',NULL),
('bec7068f-5997-4780-9b31-d76fd832b096','905331602195','Sayın yetkili; İNAN PALA adlı müşterinize 221210071 nolu gönderinizin 90x190 siyah meşe masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:46:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('bec7aaf4-22eb-4388-b730-2a1184b75263','4915772639272','37142091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2027 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37142091\n\nYour shipment with the number 37142091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2027. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37142091\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('bec90113-7eee-4b26-88ac-d2694c424159','491735396163','Sayın FATİME YILMAZ, 371626943 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371626943\n\nDear FATİME YILMAZ, your shipment with 371626943 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371626943\n\nBICARGO','1','6bf15977-81c1-4276-bfef-d11adbf0e1ea',NULL),
('bec9439f-9463-405f-9c19-cfd77f305a97','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin DELUXE YATAK 100X200 ürünü 1 parça halinde Fatura adresinizden 09.07.2025 11:08:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('becfee21-b308-4fa2-8621-af048e7111eb','905461661672','HATİCE ÇETİN(K) adlı müşterinizin 644834421 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('bed8e75b-38b3-446b-b313-f2c79ef5537b','4915751330310','371913094 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371913094\n\nYour shipment with the number 371913094 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371913094\n\nBICARGO','1','46b19e09-91c3-4a3b-99ec-5d708063cba6',NULL),
('bed9ab11-3614-4a25-b941-f0e3ac7f0ce1','4917660360530','Sayın SUAT TANER, 745129121 nolu gönderiniz 10233 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745129121\n\nDear SUAT TANER, your shipment with 745129121 was delivered to you with the delivery code 10233. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745129121\n\n\nBICARGO','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('bedbbb3d-7b20-4ed1-89a2-815eee93f5e9','905313340045','Sayın yetkili; CENNET YAVUZ adlı müşterinize 437250812 nolu gönderinizin mini köşe ürünü 4 parça halinde köşeci osman abi adresinizden 24.04.2025 12:14:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('bedee2d8-3dcd-4db4-af44-2353f79f549c','905394878216','Sayın yetkili; SEVAY NİKOLAEVA YANKOVA adlı müşterinize 517895646 nolu gönderinizin Yatak Odası ve Döşek ürünü 8 parça halinde Fatura adresinizden 09.07.2025 11:22:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('bedf570e-d247-4059-82e5-1b4babcf0e54','905078062550','Sayın yetkili; NERİMAN SARI adlı müşterinize 598226174 nolu gönderinizin baza başlık 2 adet ürünü 7 parça halinde ALBESSA HOME adresinizden 14.08.2025 12:02:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('bee5a574-a098-42e7-8fc6-1ca0a6a50912','491726260844','817239122 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2234 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817239122\n\nYour shipment with the number 817239122 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2234. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817239122\n\nBICARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('beeba308-26ab-4817-b5b3-0314e4ca6b34','905461661672','Sayın yetkili; BLANDİ ZOTA adlı müşterinize 644965833 nolu gönderinizin KÖŞE KOLTUK VE BERJER ürünü 6 parça halinde KAYA KOLTUK adresinizden 21.04.2025 16:52:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('bef1c3cd-7791-4e42-9151-c9c597a40347','4915773537388','Sayın BERİVAN TİNTAŞ, 478994871 nolu gönderiniz 10424 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478994871\n\nDear BERİVAN TİNTAŞ, your shipment with 478994871 was delivered to you with the delivery code 10424. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478994871\n\n\nBICARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('bef1d78a-7159-4b8e-a12f-a649ccfd21ac','905331602195','Sayın yetkili; ALİYE DALKAYA adlı müşterinize 221763889 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:01:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('bef21ffa-eec3-4c1a-b8d8-f18e44b856db','905336367828','JALAL ASLAM adlı müşterinizin 982966360 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('bef2973a-2729-4fca-a229-abfcbae3b4bd','905331602195','Sayın yetkili; SERHAT TAŞÇEVİREN adlı müşterinize 221187320 nolu gönderinizin 70x120 ceviz fasulye sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 12.09.2025 11:15:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('bef73dfb-1511-4de9-b7d6-0948851813d2','905331602195','Sayın yetkili; LEJLA GUDİC  adlı müşterinize 221758948 nolu gönderinizin Balat sandalye ceviz  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 17.06.2025 17:04:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','59f8293d-670d-46aa-baa2-c4a3a969aea2',NULL),
('befba9d1-0ff7-4ecf-8f58-d26ab479a73b','49176030609788','221397270 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6099 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221397270\n\nYour shipment with the number 221397270 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6099. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221397270\n\nBICARGO','2','5d9fba6e-ed3a-4844-97a3-b9e244247031',NULL),
('beff9cc5-8fd2-4e58-bd8f-06a4aa004f6d','4917680117580','Sayın MEHMET GÜL, 33841628 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33841628\n\nDear MEHMET GÜL, your shipment with 33841628 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/33841628\n\nBICARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('beffa115-5613-4fdf-a368-2c007fc45e15','00491633905186','Sayın ÖZGÜL KONAKÇI, 735326602 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735326602\n\nDear ÖZGÜL KONAKÇI, your shipment with 735326602 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735326602\n\nBICARGO','2','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL),
('bf060860-56f6-4639-8421-b60a04c7ff29','4369910088111','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('bf0d5bf7-b8cd-47c7-9274-83fdbb2d53d5','905451571652','SİNEM GÖKÇE adlı müşterinizin 531340061 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('bf0fbc9d-07ec-4b23-92ab-3f5d3b8827b8','905059175469','Sayın yetkili; SELEN SEMERCİ adlı müşterinize 428326285 nolu gönderinizin köşe ürünü 3 parça halinde zeta home adresinizden 30.07.2025 17:19:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fd9ad4b-9c17-4380-957d-18193561c45c',NULL),
('bf160681-afd5-4ecd-a686-ad56c5961014','4917680107052','Sayın SONJA HUSSAİNİ , 982529212 nolu gönderiniz 4507 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982529212\n\nDear SONJA HUSSAİNİ , your shipment with 982529212 was delivered to you with the delivery code 4507. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982529212\n\n\nBICARGO','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('bf1cbde6-8878-4c59-8016-21fef3285c10','4917622969487','45527400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8994 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/45527400\n\nYour shipment with the number 45527400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8994. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/45527400\n\nBICARGO','1','bb868109-aa10-4576-90c5-cea9bda06633',NULL),
('bf1f164c-b201-4409-a0e6-cd9594f01a25','32465395227','517895646 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5894 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517895646\n\nYour shipment with the number 517895646 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5894. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517895646\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('bf1f17f5-023b-4a08-8eda-cc433af73beb','905335511664','Sayın yetkili; MERYEM BULAK adlı müşterinize 371408514 nolu gönderinizin köşe takımı + puflar ürünü 2 parça halinde Elitis Home adresinizden 02.07.2025 13:58:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('bf1ffc05-f0a6-49be-b535-b332aa00e76d','4915785563559','Sayın SOFİA KYRİAKİDOU, 371186967 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371186967\n\nDear SOFİA KYRİAKİDOU, your shipment with 371186967 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371186967\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('bf2acf69-0b91-4a57-b89d-95a1d003ba15','9053259981980','Sayın yetkili; AYHAN ALAGAÇ adlı müşterinize 61440092 nolu gönderinizin BAMBİ ELARIN DOGAL UYKU PAKETI CK ürünü 1 parça halinde Fatura adresinizden 22.10.2025 15:03:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','46acd094-2dab-4345-a6e6-c468f9dc52c7',NULL),
('bf2bffb9-963d-4758-a0ec-9f6b464c1656','905059175469','Sayın yetkili; NADİR KURUKOL  adlı müşterinize 428414858 nolu gönderinizin sandalye ürünü 3 parça halinde Fatura adresinizden 24.04.2025 09:54:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('bf327346-4277-42e1-91af-2198ba6ba453','33628622755','Sayın EL GHZİZAL CHAİME , 221686736 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221686736\n\nDear EL GHZİZAL CHAİME , your shipment with 221686736 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221686736\n\nBICARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('bf3696e9-2752-47ce-bdba-806ff6ff85f2','4915121097412','Sayın AYŞEGÜL GÖKTEPE, 478545457 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478545457\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478545457 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478545457\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('bf38f54a-bdf0-4450-8e61-10677a6817e8','905325000478','HÜSEYİN SAYLAN adlı müşterinizin 412678735 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('bf3999c6-975b-4324-bd4a-1ee26f5d51c7','905335511664','Sayın yetkili; MEHMET ORHAN adlı müşterinize 371122828 nolu gönderinizin traverten masa + sehpa seti ürünü 1 parça halinde Fatura adresinizden 17.04.2025 13:24:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('bf45475f-45a8-4d03-8939-9b10b2e1a889','905078062550','Sayın yetkili; MELİKZADE AHMET ATAY adlı müşterinize 598493196 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde ELİTİS HOME adresinizden 17.09.2025 13:56:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('bf454977-218d-4f29-8eda-5cd612dab243','905079358213','Sayın yetkili; HUSSRAH MUHAMAD adlı müşterinize 745464679 nolu gönderinizin KING PLATIN BAZA SETİ 160X200 ürünü 4 parça halinde Fatura adresinizden 15.09.2025 19:49:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('bf471a5d-e9ec-4a7b-8c7a-5a9090c4a51d','905306071261','EMRE ALTUN  adlı müşterinizin 765828045 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('bf4cf26e-b81d-4eb2-a046-dc5c11d93fa4','491788999021','Sayın DENİZ AKGÜMÜS , 613601743 nolu gönderiniz 7923 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613601743\n\nDear DENİZ AKGÜMÜS , your shipment with 613601743 was delivered to you with the delivery code 7923. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613601743\n\n\nBICARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('bf4fca85-5179-49a8-a77f-e1ff8fd4641b','31685834791','437880840 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7482 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437880840\n\nYour shipment with the number 437880840 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7482. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437880840\n\nBICARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('bf508757-3854-41ae-91ab-d8e0d7ab6843','4915788014296','428414858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9182 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428414858\n\nYour shipment with the number 428414858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9182. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428414858\n\nBICARGO','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('bf620866-2430-48c6-87d9-946ae085455e','905073106101','Sayın yetkili; MEHMET BATMAZ adlı müşterinize 46558561 nolu gönderinizin KÖŞE KOLTUK ürünü 2 parça halinde OLENNA KOLTUK adresinizden 22.01.2025 15:41:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4f193d3-ef4e-4341-9bd2-136dfaae75a5',NULL),
('bf64ea74-7429-46be-9803-cc52f76f5eea','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL TV ÜNİTESİ ÜST BLOK ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('bf6cedaa-3240-4c7a-bf14-d3e96ba6aedb','33781488787','478391312 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1541 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478391312\n\nYour shipment with the number 478391312 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1541. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478391312\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('bf737253-20bf-465b-ae06-518096060082','436609266371','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('bf77a426-0708-48e1-8ab4-11bad683e46d','905079358213','Sayın yetkili; HALİDE ÖZAY adlı müşterinize 745208965 nolu gönderinizin FRİDA KÖŞE TAKIMI  ürünü 6 parça halinde Fatura adresinizden 25.08.2025 17:21:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('bf7ad18e-ea3d-42a7-be9d-1a9655fdcc87','431703503576','Sayın ERKUT PEKTAŞ, 478474988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478474988\n\nDear ERKUT PEKTAŞ, your shipment with 478474988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478474988\n\nBICARGO','2','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('bf8122e9-e582-4872-97e2-fee2f33f5375','5325000478','Sayın SERHAT AAAAA, 09.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6470022\nŞifre : 6470022\n			\nBİCARGO','1',NULL,'6f4d7a00-e2c2-449b-956c-48fb73752550'),
('bf892ddc-d66d-483f-a16b-e2095d41f0f5','33628622755','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('bf8a5b68-9828-4407-b567-7e0070ee0234','41782412222','221962516 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10054 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221962516\n\nYour shipment with the number 221962516 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10054. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221962516\n\nBICARGO','1','2816d30a-252b-4b32-a00a-c62fbd6aa168',NULL),
('bf8b9c23-c79d-47ee-bfea-94bab626ca7f','9054439559150','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO DOLAP,LİDYA SOHO KÖŞE DOLAP,LİDYA SOHO İKİ KAPILI DOLAP,LİDYA SOHO TEK KAPILI DOLAP,GRANDBEDS DELUXE 160*200 YATAK,BEYLER 2TAY-6090-266 AYNALI TABLO 60*90 ürünü 22 parça halinde Fatura adresinizden 10.09.2025 14:49:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('bf8befc5-179c-4925-b801-038a8641f0a3','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin KOLTUK TAKIMI ürünü 3 parça halinde RİXXE adresinizden 26.08.2025 10:03:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('bf8c6363-459e-42be-9076-df009c25b038','4917632724714','Sayın BURCU ASLAN, 598220619 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598220619\n\nDear BURCU ASLAN, your shipment with 598220619 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598220619\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('bf9114e4-6bf9-40df-a413-787fd361eb3f','905079358213','ABDULLAH DEMİR adlı müşterinizin 745105520 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','424a2b5e-eb63-4ef9-a8a8-b1ca35078529',NULL),
('bf980ec8-a67f-4d81-a6cb-cc905f33da43','5325000478','Sayın İBRAHİM GÜLTEKİN, 08.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2093708\nŞifre : 2093708\n			\nBİCARGO','1',NULL,'2e09e370-f862-4361-86b2-28f5d97bb0f6'),
('bf99a39a-bc17-4019-89bb-574c2dd7435d','905300961610','JELENA BARATOVİC adlı müşterinizin 126245978 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','05161621-4074-4395-a4ac-b594dfcce0f9',NULL),
('bf9af2cd-dbc6-429d-9b03-049da4188d1b','111111111111','Sayın NİZAMETTİN, 412280381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412280381\n\nDear NİZAMETTİN, your shipment with 412280381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412280381\n\nBICARGO','2','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('bfa0cdec-c7b3-425f-b619-1fcb368d8439','4917635776995','Sayın SONGÜL AKKOC, 515171044 nolu gönderiniz 5742 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515171044\n\nDear SONGÜL AKKOC, your shipment with 515171044 was delivered to you with the delivery code 5742. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515171044\n\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('bfa17d78-c8db-4038-bcc2-681dc3b24735','4917632064278','976187023 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9458 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976187023\n\nYour shipment with the number 976187023 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9458. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976187023\n\nBICARGO','1','d74a364e-c899-455c-8b3f-5a445fba432a',NULL),
('bfa2ef5e-0b94-4139-8b12-d9bdf8132a30','491607764360','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('bfa73668-b542-43fd-aaa3-b2a98fa94fc5','905313340045','Sayın yetkili; YASEMİN ÖZKILINÇ adlı müşterinize 437819954 nolu gönderinizin masa ürünü 4 parça halinde masami adresinizden 17.04.2025 17:34:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('bfad0f8d-6f82-48de-bd27-4206af4cdbf9','905336367828','GEZİM PLUSHİ adlı müşterinizin 982629756 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL),
('bfaf5907-c938-41a1-92a7-b9947248acf3','905331602195','SEMİH TASKELE adlı müşterinizin 221693523 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('bfb93045-2905-4d6d-8fa2-f98e0c7584e0','11111111111','Sayın KARABAS LANDMASCHİNEN, 412977009 nolu gönderiniz 7789 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412977009\n\nDear KARABAS LANDMASCHİNEN, your shipment with 412977009 was delivered to you with the delivery code 7789. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412977009\n\n\nBICARGO','2','0fe32732-478d-4914-8b33-290a72aa934f',NULL),
('bfb95bdd-72a4-4bf9-8e50-98ba98c27710','905079358213','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin ASHLEY YATAK OD. (KOMODİNSİZ)  ürünü 23 parça halinde RİXXE  adresinizden 03.09.2025 17:42:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('bfbb3941-3544-4147-b88a-ac3999f169fe','4915232016495','Sayın KIYMET ŞAHİN, 614987879 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614987879\n\nDear KIYMET ŞAHİN, your shipment with 614987879 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614987879\n\nBICARGO','1','a72800e1-54dc-4d60-b293-ca2184c62129',NULL),
('bfbb7d17-85f7-4d83-8015-4042b91b97b7','436602050348','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('bfbf5858-ceec-4376-a59e-f741171cb4a0','491725821943','910426934 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10111 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/910426934\n\nYour shipment with the number 910426934 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10111. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/910426934\n\nBICARGO','1','5363a998-3fe4-420a-85a2-b67e56e97d35',NULL),
('bfc20aa0-7adf-4680-8412-5ce7774deedf','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('bfc495ef-c9da-47be-b2de-5e79b9c9bf3e','905331602195','SERHAT TAŞÇEVİREN adlı müşterinizin 221187320 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('bfd427aa-b6bc-439b-9e46-6953b193f84e','905363385813','NAFİLE HANIM adlı müşterinizin 976543269 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL),
('bfd8f2c1-8a82-4e68-9ab7-8e14645b773e','905461661672','Sayın yetkili; ERDEL SİBEL adlı müşterinize 644968450 nolu gönderinizin SANDALYE ürünü 3 parça halinde BALİ SANDALYE adresinizden 15.04.2025 15:06:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('bfdbbf98-ad27-4c33-a266-d417659f7600','905461661672','Sayın yetkili; MURAT YILDIZ  adlı müşterinize 644481653 nolu gönderinizin MASA VE ORTA SEHPA TAKIMI ürünü 5 parça halinde Masami Mobilya adresinizden 17.03.2025 11:31:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fe451fc-7a84-4cca-9cde-dff384de2c9a',NULL),
('bfdd4bb0-d3f6-4a43-a003-3525a8fbadd2','491726666457','Sayın DUYGU YILDIZ, 598396998 nolu gönderiniz 1499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598396998\n\nDear DUYGU YILDIZ, your shipment with 598396998 was delivered to you with the delivery code 1499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598396998\n\n\nBICARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('bfe2e22b-8d62-40c8-8ed7-27a1b5feb46a','491637510415','248849829 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10609 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248849829\n\nYour shipment with the number 248849829 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10609. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248849829\n\nBICARGO','1','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL),
('bfe63078-ed40-483f-ba80-46a8abac48b6','491739514221','Sayın ÖRÜMCEK, 248692077 nolu gönderiniz 3351 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248692077\n\nDear ÖRÜMCEK, your shipment with 248692077 was delivered to you with the delivery code 3351. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248692077\n\n\nBICARGO','1','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL),
('bfe74873-6698-4e99-8f42-7e0bdc1391ea','905325000478','SOBA-PETEK adlı müşterinizin 41270066 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL),
('bfee5d3a-8c6b-4111-a937-be37ed1e806d','4917631174423','Sayın YUŞA SOYER, 338678802 nolu gönderiniz 8971 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338678802\n\nDear YUŞA SOYER, your shipment with 338678802 was delivered to you with the delivery code 8971. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338678802\n\n\nBICARGO','1','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL),
('bff28201-887a-4d20-b1e3-8dc350ba165a','4917632856382','598444930 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5474 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598444930\n\nYour shipment with the number 598444930 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5474. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598444930\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('bff9c22b-a3c0-4009-9d63-e8b695516fcc','905461661672','DÖNDÜ YÖRÜK SSH adlı müşterinizin 644458216 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3384ef49-434c-4b51-b74f-5e9f4a178772',NULL),
('bff9ea2a-2c64-4f21-a5fa-08896c3e8aeb','4917672242930','İLETİŞİM\n					Furkan şöför = +905078826436','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('c00300bf-9a84-424b-9a81-2ad60c61f2e7','491625165832','Sayın REUAN SHAMO , 221947357 nolu gönderiniz 6780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221947357\n\nDear REUAN SHAMO , your shipment with 221947357 was delivered to you with the delivery code 6780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221947357\n\n\nBICARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('c0040d5a-b00a-4453-8c57-13fdfb7455fd','436605273426','Sayın MARTİN MARİNKOVİC, 675885408 nolu gönderiniz 2101 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675885408\n\nDear MARTİN MARİNKOVİC, your shipment with 675885408 was delivered to you with the delivery code 2101. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675885408\n\n\nBICARGO','1','f7194f95-fa52-48ad-8c78-86a92187abde',NULL),
('c00837f8-3f11-44de-8f04-9108e6dd7d95','905355928266','Hasan bey adlı müşterinizin 412800723 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d6348c7e-4b86-444e-859f-29dce263d04b',NULL),
('c00bab60-63eb-4fd2-a373-2f9cc93528c0','905331602195','LEPETİT CHRİSTELLE adlı müşterinizin 221987558 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','7c1bd14e-ed21-4519-b69d-9a9d1ac2fbb2',NULL),
('c00f74b5-5c67-47e4-b820-d663824f4b99','905313340045','DERYA ERDOĞMUŞ adlı müşterinizin 437578664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('c01127ca-f308-46f0-b198-d842fb72b1f1','905456068312','NFS GRUNDTVİGS adlı müşterinizin 655644248 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL),
('c013106e-01c5-40f7-9d87-d0d4af52c60c','436605507330','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('c0157c6a-f526-45af-84f2-544a81746612','905336367828','AMİNA BOUDJENNAH  adlı müşterinizin 982585914 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('c0209b2b-0f10-4d8f-be00-e0fd0ca75694','905301592882','Sayın yetkili; BELGİN YAĞLI		 adlı müşterinize 910762495 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 23.07.2025 14:19:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('c021d836-4679-46e6-a44e-f9e0dc9deb62','905350617509','Sayın yetkili; TALA KURAEZAN adlı müşterinize 613137842 nolu gönderinizin 3 kutu sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 01.07.2025 16:59:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL),
('c02cccdd-2cc2-42f9-a9bb-2e464df42d51','905331602195','M.CEDRİC KLEINDIENST adlı müşterinizin 221850151 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('c031b096-2495-4082-a0b9-3602a2bc4e0b','905069116877','ORHAN KURT adlı müşterinizin 817578021 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('c0336fa5-7c8f-4f52-ba55-202caced7909','33676203285','Sayın AYSEL-İSMAİL ÇILGIN, 478928003 nolu gönderiniz 7522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478928003\n\nDear AYSEL-İSMAİL ÇILGIN, your shipment with 478928003 was delivered to you with the delivery code 7522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478928003\n\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('c037bb30-fbf9-4b52-8eab-f2cd8c2761a9','33650178129','Sayın HAZAL BATUR, 437712381 nolu gönderiniz 4029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437712381\n\nDear HAZAL BATUR, your shipment with 437712381 was delivered to you with the delivery code 4029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437712381\n\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('c038995b-8bde-47ff-9067-fff32fb81e03','33652944838','Sayın MUHAMMED DALKARA, 221646640 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221646640\n\nDear MUHAMMED DALKARA, your shipment with 221646640 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221646640\n\nBICARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('c03b9246-c894-4ef0-b585-2e87b0aa161b','905428209234','Sayın yetkili; AYHAN KOCAKAYA adlı müşterinize 31979626 nolu gönderinizin PORTA SEHPA SETİ ürünü 2 parça halinde Fatura adresinizden 05.08.2025 10:54:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('c041fc95-b1a5-4435-ba35-c6174e39e70e','905461661672','Sayın yetkili; DİLARA COŞKUN adlı müşterinize 644684600 nolu gönderinizin masa ürünü 3 parça halinde Masami Mobilya adresinizden 18.03.2025 17:27:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('c0438784-409e-46d8-be98-f3b038c77ede','905306071261','ŞULE ÇAYIR  adlı müşterinizin 765501651 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('c04b9ad8-0b5a-4681-a444-8b36bf465b33','905313340045','Sayın yetkili; RASİM OZAN adlı müşterinize 437642214 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde fe-ha concept adresinizden 20.06.2025 12:55:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('c04f6c96-c144-46f6-a313-6c65ddccae70','33614797015','Sayın LABABABİD WEJDAN, 478417862 nolu gönderiniz 2665 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478417862\n\nDear LABABABİD WEJDAN, your shipment with 478417862 was delivered to you with the delivery code 2665. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478417862\n\n\nBICARGO','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('c04fccf1-4616-4f1f-802a-42371a22dbbd','491774653260','231348651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3883 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/231348651\n\nYour shipment with the number 231348651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3883. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/231348651\n\nBICARGO','1','9612581b-4d73-4d8f-bd7f-f89025cfe7b9',NULL),
('c053fcf5-7df7-4a1b-b78d-a68182e9c1cb','004917621719741','Sayın NAVİD BEHBODY, 735793543 nolu gönderiniz 6635 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735793543\n\nDear NAVİD BEHBODY, your shipment with 735793543 was delivered to you with the delivery code 6635. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735793543\n\n\nBICARGO','2','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL),
('c05904fb-844c-499f-afec-0359e12f2840','411798150062','Sayın HÜLYA GÜNDOĞDU, 455568872 nolu gönderiniz 6239 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455568872\n\nDear HÜLYA GÜNDOĞDU, your shipment with 455568872 was delivered to you with the delivery code 6239. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455568872\n\n\nBICARGO','2','569fc7cc-e749-4d29-b7d6-9ef416ea0a2d',NULL),
('c05b1ae7-38c0-4116-97f7-404fb0448eb2','905331602195','Sayın yetkili; EMBİYE DENİZ  adlı müşterinize 221394764 nolu gönderinizin 70x120 cm traverten orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 17.10.2025 14:31:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7faf0313-0350-4d8f-ae44-2086dabb4ea7',NULL),
('c05f9b5b-7e54-40bd-be70-d6e0ec2774bc','491712347917','371191289 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371191289\n\nYour shipment with the number 371191289 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371191289\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('c0699edb-db26-4dfb-8dd9-3e5c7ff9f9f2','32472837629','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('c06ce058-9a82-40da-a602-1629ccfb05a7','4917672416653','Sayın HASSAN KHORRAM, 598441020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598441020\n\nDear HASSAN KHORRAM, your shipment with 598441020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598441020\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('c077f225-43ef-4f8f-b659-16f219923547','491627420193','Sayın EMRE ALTUN , 765828045 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765828045\n\nDear EMRE ALTUN , your shipment with 765828045 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/765828045\n\nBICARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('c07f51c3-12f4-4216-aa3c-afdc16153f7d','4369911180211','Sayın RAUF ÇALIŞ , 338691111 nolu gönderiniz 9047 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338691111\n\nDear RAUF ÇALIŞ , your shipment with 338691111 was delivered to you with the delivery code 9047. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338691111\n\n\nBICARGO','1','0f7a8dca-9600-447a-a216-28087b5362ba',NULL),
('c083888b-e2ff-47a0-869f-ce4c845b82a6','491728410943','İletişim \n					Şöför Murat : +905321616048','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('c086e9a0-9f06-4dab-a99a-3deb03a8fbc4','11111111111','Sayın PASS, 412315808 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412315808\n\nDear PASS, your shipment with 412315808 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412315808\n\nBICARGO','2','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('c0878a38-d08f-4b64-b56c-2361f908c6c6','436601407495','Sayın ESMA GÜNVAR, 808396862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808396862\n\nDear ESMA GÜNVAR, your shipment with 808396862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808396862\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('c098fffe-db93-47f7-ae89-be97b1f32453','33675157353','221763889 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9247 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221763889\n\nYour shipment with the number 221763889 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9247. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221763889\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('c0a35c77-e42d-4f61-9574-8b05fb6ecae4','905325000478','CAVİT  adlı müşterinizin 412129107 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('c0a46335-de8e-4810-b518-8b28ac7df860','32466345026','501243340 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5157 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501243340\n\nYour shipment with the number 501243340 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5157. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501243340\n\nBICARGO','1','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL),
('c0a656ea-5bc9-4ea6-890e-517e7dd3c177','33626335448','Sayın KENAN SOYLU, 74534951 nolu gönderiniz 10657 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/74534951\n\nDear KENAN SOYLU, your shipment with 74534951 was delivered to you with the delivery code 10657. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/74534951\n\n\nBICARGO','1','0ac67115-ca12-48cc-a0b1-abc8c3a29d08',NULL),
('c0a975b2-da7a-4ad7-8a1f-bed0091dcbf7','905301592882','NECİP DELİPOYRAZ  adlı müşterinizin 910943161 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5f54cf54-9e84-4494-a263-8967ec9803e2',NULL),
('c0ac4b48-68e4-4e7d-b00b-7e56215a6e3b','33695911824','Sayın METE BOZDAĞ 1 , 745241298 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745241298\n\nDear METE BOZDAĞ 1 , your shipment with 745241298 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745241298\n\nBICARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('c0afff82-c268-4ab3-b11b-1f2c27388166','905313340045','AHU KARUÇ adlı müşterinizin 437786734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('c0b08bb1-b9b0-4ecb-ba38-75cc4773cc1f','905335511664','ALİ CAN YILMAZ adlı müşterinizin 371102325 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('c0b3eef8-665f-4426-bb75-3c87c1b3a6f2','905350617509','SELMA BAJRAMOSKA adlı müşterinizin 613633231 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','37032355-b423-4a3a-bb38-ee78ac469313',NULL),
('c0b630d3-cce8-4ec8-a0ab-6a02355690b4','33668292449','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('c0bab6eb-8106-45b7-a381-49912482737e','491607553949','817872283 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817872283\n\nYour shipment with the number 817872283 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817872283\n\nBICARGO','1','935f330d-55f1-4c8c-bb42-ed0f8f8433bc',NULL),
('c0be837e-d699-44f0-830b-1d469985ba5d','43676879613231','437529604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2984 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437529604\n\nYour shipment with the number 437529604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2984. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437529604\n\nBICARGO','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('c0c0b7ce-c1aa-483c-acb4-b2bd3a9a0449','905332942204','Sayın yetkili; MARİNELA MARİNKOVİC adlı müşterinize 505948491 nolu gönderinizin masa ve orta sehpa ürünü 5 parça halinde masami adresinizden 23.08.2025 13:08:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('c0c0f7ce-402e-483d-9dc9-c17f7fcac0d6','4915732123789','İletişim \n					Şöför Uğur Acar +905424435917','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('c0c33dda-e8e3-4122-bf6b-8a7b613392a7','905313340045','ZERDOUN SALOME adlı müşterinizin 437573248 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('c0ccff90-50bf-48c0-9cb0-cd02a6411fc7','491787816278','Sayın SEMİH TÜRKOĞLU, 371696812 nolu gönderiniz 5014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371696812\n\nDear SEMİH TÜRKOĞLU, your shipment with 371696812 was delivered to you with the delivery code 5014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371696812\n\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('c0d0fd0f-7567-46cd-a6ce-c0ec31d82101','905300961610','TUĞBA HANIM adlı müşterinizin 126421974 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0831e36a-bfec-49cb-862f-5d57cf563310',NULL),
('c0d4a76c-99d3-4b4f-ae70-46e246f63ecf','4917666559986','Sayın MOHAMAD NOUR TARRAB, 248739379 nolu gönderiniz 2675 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248739379\n\nDear MOHAMAD NOUR TARRAB, your shipment with 248739379 was delivered to you with the delivery code 2675. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248739379\n\n\nBICARGO','1','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL),
('c0d5d1df-5f0d-4a16-8b45-f8db960483ed','4915788014296','Sayın NADİR KURUKOL, 428131786 nolu gönderiniz 10981 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428131786\n\nDear NADİR KURUKOL, your shipment with 428131786 was delivered to you with the delivery code 10981. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428131786\n\n\nBICARGO','1','36207ae6-947b-4a63-b98b-478d30a194b6',NULL),
('c0db143e-601c-480e-b218-6749053783f0','905333323012','Sayın yetkili; VALMİRA RAMADANİ adlı müşterinize 695394738 nolu gönderinizin KÖŞE KOLTUK ürünü null parça halinde WOM KOLTUK MUAMMER adresinizden 16.06.2025 15:29:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('c0dffe53-11d8-4d48-8433-edd53ba5f1e1','31681581501','221825192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1324 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221825192\n\nYour shipment with the number 221825192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1324. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221825192\n\nBICARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('c0e085a5-37cc-4188-a812-c73e6fd34a31','33753744343','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('c0e1ca31-1320-45fa-8f69-a346102ec999','491775901111','Sayın ARZU ÜNLÜ, 319515461 nolu gönderiniz 8467 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319515461\n\nDear ARZU ÜNLÜ, your shipment with 319515461 was delivered to you with the delivery code 8467. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319515461\n\n\nBICARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('c0ed696b-8006-4dd6-bd26-22c3246b55b3','905335511664','HALİLOVİÇ ELMA adlı müşterinizin 371104317 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('c0f3981b-0889-400a-b196-7d4caf1cab03','905510396989','Sayın yetkili; CEMAL YALÇIN adlı müşterinize 319388100 nolu gönderinizin SSH PARÇALAR ürünü 3 parça halinde Fatura adresinizden 15.08.2025 16:41:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('c0fa0ea0-37e6-465c-a0ce-46e23a71f41a','4917622142785','Sayın GÜLER DELİDUMAN, 221432350 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221432350\n\nDear GÜLER DELİDUMAN, your shipment with 221432350 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221432350\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('c0fb23b8-0c99-49b0-8d28-acf289f430e0','491744167777','Sayın GÜLŞAH SEVİMLİ, 644721676 nolu gönderiniz 3436 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644721676\n\nDear GÜLŞAH SEVİMLİ, your shipment with 644721676 was delivered to you with the delivery code 3436. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644721676\n\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('c0fbccbd-ae08-4ced-9af3-bff32a2afd9f','4915566222005','531309772 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6413 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531309772\n\nYour shipment with the number 531309772 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6413. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531309772\n\nBICARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('c0fe85c0-4992-4b91-a348-2c37000ca08d','905313340045','Sayın yetkili; DERYA ERDOĞMUŞ adlı müşterinize 437578664 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 15.08.2025 17:29:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('c1042dfb-0438-4122-a753-6b447136ef52','905335511664','ŞİRİN ASLAN adlı müşterinizin 371193272 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('c104be59-c8c3-45fc-99bd-83709fc3fd7e','410791284387','Sayın VLORİNA BERİSHA, 613378961 nolu gönderiniz 4827 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613378961\n\nDear VLORİNA BERİSHA, your shipment with 613378961 was delivered to you with the delivery code 4827. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613378961\n\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('c106ac75-33d3-4537-849f-089b2f3f7d80','33664036278','İletişim \n					Halil Bey (Şoför) :+905541100849','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('c10a5750-2a1b-470a-ab6d-2a0093066042','4917657654361','745976194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4559 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745976194\n\nYour shipment with the number 745976194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4559. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745976194\n\nBICARGO','1','97d3447f-3a32-459a-8bdd-d360b881a042',NULL),
('c124bc87-acf0-4841-8f4a-c779bc2bfe48','004915231627768','Sayın TARA SAİDA, 531893295 nolu gönderiniz 7626 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531893295\n\nDear TARA SAİDA, your shipment with 531893295 was delivered to you with the delivery code 7626. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531893295\n\n\nBICARGO','2','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('c12c2495-3921-42aa-8c5d-fc9828cdc47e','905325000478','REYHAN adlı müşterinizin 41286775 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL),
('c130476a-006b-4e85-afb8-71f6fcc0fa9e','905313340045','Sayın yetkili; EBRU SOBAY adlı müşterinize 437574361 nolu gönderinizin Sandalye  ürünü 4 parça halinde ard sandalye adresinizden 29.08.2025 10:32:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('c131f6b5-2cfd-4b73-9a98-e770056a4ce8','4917624206670','982632860 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9471 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982632860\n\nYour shipment with the number 982632860 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9471. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982632860\n\nBICARGO','1','f1669928-edf4-48cd-9d17-1413b45ca355',NULL),
('c13354dd-5562-4262-83e9-2802fe39dffb','4917637605694','505987989 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505987989\n\nYour shipment with the number 505987989 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505987989\n\nBICARGO','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('c1409f0a-1250-4d16-91db-3c2eefd95c6f','9053259981980','OSMAN SATİCİ adlı müşterinizin 614536111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('c1455eaa-1ba9-44bc-a962-0556b8d81903','436765022153','Sayın NURAY DURAN, 515261200 nolu gönderiniz 8969 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515261200\n\nDear NURAY DURAN, your shipment with 515261200 was delivered to you with the delivery code 8969. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515261200\n\n\nBICARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('c145b506-58cb-4071-aee0-7d9611e1fa61','015906385820','Sayın BAKACAK GİRAY, 613814330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613814330\n\nDear BAKACAK GİRAY, your shipment with 613814330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613814330\n\nBICARGO','2','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('c14b93b1-16c5-460f-b060-1b741f55ce8f','359885267323','982893962 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8099 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982893962\n\nYour shipment with the number 982893962 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8099. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982893962\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('c14d4499-d4bf-4b98-b62c-9a70ce7ab9a3','41789431453','221307786 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3173 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221307786\n\nYour shipment with the number 221307786 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3173. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221307786\n\nBICARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('c151b13a-4696-41c7-8703-7662365afd39','4367762955236','Sayın SHAHLA HOSSEİNİ, 982320922 nolu gönderiniz 10807 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982320922\n\nDear SHAHLA HOSSEİNİ, your shipment with 982320922 was delivered to you with the delivery code 10807. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982320922\n\n\nBICARGO','2','5b21aeae-630c-4c68-bc5e-f5ba08b334c7',NULL),
('c154cff6-7dd3-4f9f-9ce6-837a1226b9bd','905336367828','LAMMARİ BAYA  adlı müşterinizin 98232043 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('c155aa57-ddee-4cb0-a43d-e9fe14efcfd5','905331602195','JEUNE ROSE DARLYNE adlı müşterinizin 221892935 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('c15bd973-0bc0-4a72-909b-205563ab4892','905461661672','DUYGU DEMİRHAN adlı müşterinizin 644703173 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('c15d39fd-2246-48fa-af64-bb7537776ee5','4915228688524','Sayın YASEMİN KARAKOC, 976430102 nolu gönderiniz 7699 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976430102\n\nDear YASEMİN KARAKOC, your shipment with 976430102 was delivered to you with the delivery code 7699. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976430102\n\n\nBICARGO','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('c160a237-87c2-4cc7-aeb4-e284c1962e5e','905319678931','BÜNYAMİN ELİF ÇİLİNGİR adlı müşterinizin 570899680 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4bdcdb81-8f1e-445e-a062-3fd4dadc1b21',NULL),
('c16488da-a342-4af0-8d48-9c757e4cbe6e','4915222699200','Sayın TAYLAN KAZAL, 371179895 nolu gönderiniz 9904 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371179895\n\nDear TAYLAN KAZAL, your shipment with 371179895 was delivered to you with the delivery code 9904. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371179895\n\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('c1679e81-0d2e-4e78-91f9-f1f292ae637e','32472837629','Sayın ÖMER YILMAZ, 644763473 nolu gönderiniz 5395 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644763473\n\nDear ÖMER YILMAZ, your shipment with 644763473 was delivered to you with the delivery code 5395. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644763473\n\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('c16836b6-e1e3-4e7c-bd6f-ba39b0416a2d','33749507221','Sayın NERMİN ÇETİNAVCI, 910948770 nolu gönderiniz 1815 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910948770\n\nDear NERMİN ÇETİNAVCI, your shipment with 910948770 was delivered to you with the delivery code 1815. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910948770\n\n\nBICARGO','2','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('c16bafde-1bf5-4f92-a425-bd7d1918b50a','33664036278','İletişim \n					Halil Bey (Şoför) :+905541100849','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('c1706af7-b4f9-4e14-8114-ce1328258a1c','905461661672','Sayın yetkili; TAKİ ÇAYCI(K) adlı müşterinize 644257752 nolu gönderinizin köşe koltuk ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:29:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0c43519c-5551-4f80-8c50-18c10c21048d',NULL),
('c17a21b4-4c5d-4225-a0f2-8ee2fe978468','1111111111','Sayın NİZAMETTİN ALAGÖZ , 412970240 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412970240\n\nDear NİZAMETTİN ALAGÖZ , your shipment with 412970240 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412970240\n\nBICARGO','2','54991aeb-2686-48c8-a4ae-b1b93c2336a7',NULL),
('c1806c5d-f673-45e1-889a-0c1827a60aff','436506740424','437707209 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3266 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437707209\n\nYour shipment with the number 437707209 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3266. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437707209\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('c184f10c-5d78-451e-8fbb-4b900e9d4278','4915757272301','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('c186cecb-d59e-4c41-8784-6c3fd5efd6c6','3165428312','Sayın ESRA TEZCAN, 478728370 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478728370\n\nDear ESRA TEZCAN, your shipment with 478728370 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478728370\n\nBICARGO','2','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL),
('c187687c-5fe5-4639-b4aa-f3929ae0b8a6','905331602195','ANİL ZAMUR  adlı müşterinizin 221204525 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','cc203893-33b0-4595-9231-86901a0a9cf9',NULL),
('c18dbbc1-06f0-44d8-bb1e-d41f63212562','491621551678','644877146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3681 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644877146\n\nYour shipment with the number 644877146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3681. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644877146\n\nBICARGO','1','df58ec64-55e5-44c2-990e-e1e6e1cdf1cc',NULL),
('c1906099-51a8-453f-bae6-74ab57061dd1','905313340045','Sayın yetkili; MARİGLEN SHKEMBİ adlı müşterinize 437431907 nolu gönderinizin aksesuar  ürünü 4 parça halinde dorthome ofis adresinizden 12.05.2025 14:18:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('c1920afc-1833-4f5f-8700-f120045bf0e5','905331602195','TAYSUMA ESET adlı müşterinizin 221944135 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('c19210fc-9c85-4870-853e-52c35f4412ff','004915231627768','Sayın TARA SAİDA, 531893295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531893295\n\nDear TARA SAİDA, your shipment with 531893295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531893295\n\nBICARGO','2','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('c1923895-94d0-4175-819e-0f9bd6de967a','33768432369','Sayın TÜRKAN DEMİR, 570121325 nolu gönderiniz 8301 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/570121325\n\nDear TÜRKAN DEMİR, your shipment with 570121325 was delivered to you with the delivery code 8301. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/570121325\n\n\nBICARGO','1','ed98c31c-308d-4856-9efd-a92eb1603386',NULL),
('c19932f7-d2aa-40ed-ba1d-89fe530afbf9','33781020589','Sayın NESLİHAN KÖSEM		, 910316067 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910316067\n\nDear NESLİHAN KÖSEM		, your shipment with 910316067 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910316067\n\nBICARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('c199ed01-2a29-4201-98a0-3b705e55d47f','4917680300114','Sayın RAYAN SLEİMANİ , 644403373 nolu gönderiniz 2735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644403373\n\nDear RAYAN SLEİMANİ , your shipment with 644403373 was delivered to you with the delivery code 2735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644403373\n\n\nBICARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('c1a2626f-b755-4e28-abfc-420495939139','33635914929','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('c1a2a039-309c-4e95-9ecf-0c1d9475e494','905331602195','ABDULLAH KARACA adlı müşterinizin 221554711 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','aae115aa-05f3-4d7c-b25f-3b266a2aa636',NULL),
('c1aa1dd2-893c-466f-a5e7-04c4561f0393','4917670112054','910995300 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10977 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910995300\n\nYour shipment with the number 910995300 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10977. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910995300\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('c1abb0ab-e222-45bb-b817-42d796a76fa5','436605312866','Sayın NESLİHAN CAN, 437940825 nolu gönderiniz 1967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437940825\n\nDear NESLİHAN CAN, your shipment with 437940825 was delivered to you with the delivery code 1967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437940825\n\n\nBICARGO','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('c1ac9d15-fa9a-4e59-886d-442d23bf71ee','33668292449','Sayın DİLARA TARHAN, 745233031 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745233031\n\nDear DİLARA TARHAN, your shipment with 745233031 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745233031\n\nBICARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('c1affe8a-0c4f-4df7-a0a7-5af86d12f058','905517075149','ONUR ÖZER adlı müşterinizin 478733242 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('c1b44efb-d322-4247-af5c-e22ddae41c04','32485026823','Sayın MEHMET ERTÜRK, 338737901 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338737901\n\nDear MEHMET ERTÜRK, your shipment with 338737901 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338737901\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('c1b4ebc6-64af-4a4f-8eed-214cac7cc028','33769768648','Sayın MARİANE SARKİS, 338426911 nolu gönderiniz 10097 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338426911\n\nDear MARİANE SARKİS, your shipment with 338426911 was delivered to you with the delivery code 10097. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338426911\n\n\nBICARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('c1b508a8-131a-4e60-9757-82dffb18d9e3','905075277637','Sayın yetkili; NUR YILDIRIM adlı müşterinize 745278745 nolu gönderinizin DELUXE YATAK 180X200  ürünü 1 parça halinde Fatura adresinizden 22.09.2025 19:25:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('c1b63522-6150-4a9b-ab71-ed94c899b74b','905331602195','Sayın yetkili; M.CEDRİC KLEINDIENST (SSH) adlı müşterinize 221105277 nolu gönderinizin Sehpa üst,ayaklar ürünü 3 parça halinde Fatura adresinizden 15.09.2025 14:51:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('c1b77bdf-83d2-40d3-8f06-c4f3f4a3e9bc','033751045942','Sayın TAHRİ TATAR, 734380041 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734380041\n\nDear TAHRİ TATAR, your shipment with 734380041 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734380041\n\nBICARGO','2','8cb3e6c1-dad7-49e4-8443-0c03ea610bf7',NULL),
('c1bd3442-b929-445e-9326-917eaf6bb834','4917682417039','Sayın DANİAL ARAMESHK , 613191069 nolu gönderiniz 3114 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613191069\n\nDear DANİAL ARAMESHK , your shipment with 613191069 was delivered to you with the delivery code 3114. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613191069\n\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('c1be3a5d-01a9-477f-b7b3-57b60824579e','491796922955','Sayın HİLAL POLAT ÇELİK, 976866527 nolu gönderiniz 5548 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976866527\n\nDear HİLAL POLAT ÇELİK, your shipment with 976866527 was delivered to you with the delivery code 5548. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976866527\n\n\nBICARGO','1','d2edbeb4-631f-4db0-a6f7-0af31904cdba',NULL),
('c1c0170f-f93a-4786-ba2d-eac3900d2a70','491794959823','858124295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3674 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858124295\n\nYour shipment with the number 858124295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3674. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858124295\n\nBICARGO','1','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL),
('c1ce5a59-1508-43bb-b2ba-c84a321165b6','905461661672','Sayın yetkili; ERDEM ŞAHİN(K) adlı müşterinize 644522996 nolu gönderinizin köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:26:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','56c417cf-c265-4351-92f6-09fa93a1f112',NULL),
('c1d5c302-78e2-48dd-b305-f048d50d9c56','905325998198','DURMUŞ MEVLÜT adlı müşterinizin 614425900 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','711413e7-9565-452a-b808-a0700618dc85',NULL),
('c1e246f4-ef20-4e41-abeb-ebc311b34e7d','33617505236','Sayın MEO JONATHON SSH, 437124353 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437124353\n\nDear MEO JONATHON SSH, your shipment with 437124353 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437124353\n\nBICARGO','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('c1e3d7db-bb3f-4a84-afef-ef35e1527105','491726507208','Sayın BUSE HOME, 755919446 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/755919446\n\nDear BUSE HOME, your shipment with 755919446 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/755919446\n\nBICARGO','1','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL),
('c1e4c6d3-78ff-43bd-a89c-45a6aa3a9ec9','491783209660','Sayın MEHMET KARA, 412977083 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412977083\n\nDear MEHMET KARA, your shipment with 412977083 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412977083\n\nBICARGO','1',NULL,NULL),
('c1e596dd-0a6f-4732-8fc9-46ae2668f322','491737075108','786895232 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786895232\n\nYour shipment with the number 786895232 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786895232\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('c1e710f1-186e-42dc-bd66-29d8883cd07a','905313340045','ALPER ÖZDEMİR adlı müşterinizin 437414847 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('c1ecd5cd-d751-4fac-a0a8-fbb1831e5c93','905517075149','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin YATAK ODASI TAKIMI ürünü 18 parça halinde GARDEROBE adresinizden 31.07.2025 16:24:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('c1f017e2-6b5d-4e41-82db-25963008084e','1111111111111111','Sayın METE KANDEMİRCİ, 01921294 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/01921294\n\nDear METE KANDEMİRCİ, your shipment with 01921294 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/01921294\n\nBICARGO','2','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL),
('c1f2adee-1556-4973-b771-a8c3f20f5a9a','905313340045','NİNA ÖZÇELİK adlı müşterinizin 437397407 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('c1f42aef-6a9d-486b-a661-380d849f5c56','49173496047','Sayın ABDULLAH SÖNMEZ, 428107185 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428107185\n\nDear ABDULLAH SÖNMEZ, your shipment with 428107185 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428107185\n\nBICARGO','2','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('c1f4c942-292b-47e1-b779-20c163a875c6','905517075149','MURAT KALKAN adlı müşterinizin 478520504 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('c1f5a8a6-4cdf-4f65-90a7-142fc49b8ee9','32470798418','Sayın İLAYDA CALINALTI, 22137977 nolu gönderiniz 8603 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22137977\n\nDear İLAYDA CALINALTI, your shipment with 22137977 was delivered to you with the delivery code 8603. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22137977\n\n\nBICARGO','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('c1f67c0a-69ca-4464-bbfc-fa3d58bda582','905301592882','Sayın yetkili; BELGİN YAĞLI		 adlı müşterinize 910762495 nolu gönderinizin MASA ürünü 1 parça halinde Fatura adresinizden 23.07.2025 14:19:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('c1f8c19b-e1bf-4354-92dd-d04a0e0a250c','4917663715654','Sayın MERYEM KAYA, 644178445 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644178445\n\nDear MERYEM KAYA, your shipment with 644178445 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644178445\n\nBICARGO','1','806ac2ff-05c6-4761-b7c1-9dea0c05a1bb',NULL),
('c202d252-3f38-4f96-b645-c5b114ea4014','4915147201286','Sayın İSA SÖNMEZ, 371820680 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371820680\n\nDear İSA SÖNMEZ, your shipment with 371820680 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371820680\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('c2031c96-7a80-487d-9dd2-8a3a4928c1fd','905325998198','Sayın yetkili; ŞADİYE GÖLEÇ adlı müşterinize 61420700 nolu gönderinizin NOVİTA FELİX KÖŞE TAKIMI  ürünü 2 parça halinde Fatura adresinizden 11.11.2024 15:03:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c2d72bfd-ee50-4cf9-8a65-7b7f00aa74ad',NULL),
('c20323de-2998-43d9-b317-648c07bc37a1','905075277637','MUSA YAMAN adlı müşterinizin 745743577 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b0899837-14d4-46bb-b785-b51c5fde0be4',NULL),
('c2053a1c-14e6-4485-9b43-5f9c5ee09e71','491731829748','371944289 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8457 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371944289\n\nYour shipment with the number 371944289 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8457. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371944289\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('c206a3bb-dcdb-4c3b-b0c8-d18679015367','905331602195','Sayın yetkili; MÜKREMİN GÜNDOĞDU adlı müşterinize 221584314 nolu gönderinizin 90x220 cm siyah milas masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.09.2025 13:46:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','25d12410-c8e7-490e-98e0-9ef0a0d9272d',NULL),
('c20d670d-ecdf-4b04-be6c-22e4951291b9','905059175469','Sayın yetkili; MUSTAFA MÜEZZİNOĞLU adlı müşterinize 428310085 nolu gönderinizin arı mobilya b.karyola ürünü 6 parça halinde ağaçevi adresinizden 23.12.2024 10:39:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fcb0b841-6635-4572-b614-c5ef3a33d371',NULL),
('c20e5ed0-e2f2-443e-b8e5-bf9a0533d7a7','905363385813','HALİL İBRAHİM BACAKSIZ adlı müşterinizin 976894167 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL),
('c20f8ec6-9490-4cf7-9c7c-ab151d49b662','491779155437','478526484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478526484\n\nYour shipment with the number 478526484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478526484\n\nBICARGO','1','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL),
('c212f0b9-507f-4b87-8e98-c4a1389d7582','905079047428','Sayın yetkili; MEHMET EMİN KARAGÜZEL adlı müşterinize 449704156 nolu gönderinizin SSH CAM PARÇALARI  ürünü 1 parça halinde Fatura adresinizden 20.02.2025 15:46:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c9a45f03-14c0-495d-832e-276189a2a69b',NULL),
('c214ffef-f1f5-44e8-a865-a78d44343636','436609507300','Sayın HUSSRAH MUHAMAD, 745464679 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745464679\n\nDear HUSSRAH MUHAMAD, your shipment with 745464679 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745464679\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('c21d37bb-dfb9-4e4b-989b-821aca1b9215','491752603457','Sayın ERKAN URAL, 5983047 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/5983047\n\nDear ERKAN URAL, your shipment with 5983047 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/5983047\n\nBICARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('c221da59-81bb-4c6e-be0f-9b2b14c793ba','436609855451','371579541 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371579541\n\nYour shipment with the number 371579541 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371579541\n\nBICARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('c226512b-5349-4581-b799-da03023d56b2','905350617509','Sayın yetkili; VAİSE İBRAHİM adlı müşterinize 613108463 nolu gönderinizin Karyola ürünü 4 parça halinde Albessa adresinizden 25.08.2025 12:07:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('c2276856-9c31-4eca-b179-2ec7184d136a','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428819984 nolu gönderinizin yatak odası ürünü 1 parça halinde sens dizayn adresinizden 03.01.2025 10:04:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('c229fded-70b0-4d74-995e-85986db865a4','905078062550','İBRAHİM YEŞİLKAYA adlı müşterinizin 598211009 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('c23247f7-223e-41cd-a25a-ca963205382e','905335708965','PİPET adlı müşterinizin 248284003 nolu gönderisi 198 parça halinde yola çıkmıştır.','1','acc18069-a61f-4cc1-b29c-0024e5408038',NULL),
('c233008d-6d36-4c03-9a3d-b9f9bb6ab5f4','33698172262','Sayın ELA BAYRAM, 531737045 nolu gönderiniz 1890 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531737045\n\nDear ELA BAYRAM, your shipment with 531737045 was delivered to you with the delivery code 1890. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531737045\n\n\nBICARGO','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('c2347df0-5269-4151-8e51-ebfd6fb8e608','905454259202','Sayın yetkili; MERAL YAZICI adlı müşterinize 478101413 nolu gönderinizin köşe ve sehpa ürünü 5 parça halinde çelikbey inegöl depo adresinizden 18.02.2025 19:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b4ba97ad-fbff-40b7-8bb6-420238f15b4c',NULL),
('c237697e-4f68-4541-839a-46e2dee8f882','905394878216','CÜNEYT ŞİMŞEK  adlı müşterinizin 517512652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','48f076a7-8fcd-4555-a2be-671e83e1b64b',NULL),
('c237df51-60cd-4f29-849d-300352aca88e','905350866560','Sayın CAN DERİN, 517337381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517337381\n\nDear CAN DERİN, your shipment with 517337381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517337381\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('c23f3e8d-3008-4a72-8742-7abc6473ae91','905461661672','ALEYNA AKAY adlı müşterinizin 644500765 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','95a80c6f-f63c-41d5-917a-d2547b834cdd',NULL),
('c2420aa8-95f0-4193-a365-4a07ccee18d2','905313340045','Sayın yetkili; CENNET YAVUZ adlı müşterinize 437250812 nolu gönderinizin bench ürünü 1 parça halinde ard sandalye adresinizden 24.04.2025 12:43:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('c245e097-af1f-48ea-9b72-3e36b15956b4','436603703477','Sayın FAZİLET ÖZÇELİK, 437232562 nolu gönderiniz 7395 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437232562\n\nDear FAZİLET ÖZÇELİK, your shipment with 437232562 was delivered to you with the delivery code 7395. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437232562\n\n\nBICARGO','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('c2464381-be2e-4d4f-9f70-a6cbc3dc2c46','436766459770','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('c246c643-eaca-49b8-8e01-3b2a468b07f2','31640599400','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('c2480566-be1f-4f34-910d-269ea5986c5f','905433560559','93566108 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8640 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/93566108\n\nYour shipment with the number 93566108 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8640. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/93566108\n\nBICARGO','1','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL),
('c24a9e89-b131-4009-9dfc-57b308aa6087','905075277637','Sayın yetkili; İSMAİL ÖZAY  adlı müşterinize 745423192 nolu gönderinizin SSH YATAK 160X200  ürünü 1 parça halinde Fatura adresinizden 16.05.2025 19:06:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('c2520208-ca02-47c4-8c0a-d8e16b2f50f9','33753285709','Sayın ÖZKAN ERDEM , 478862837 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478862837\n\nDear ÖZKAN ERDEM , your shipment with 478862837 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478862837\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('c25392ba-8530-4dd3-8e95-b29f56caac7e','49162150360','478355116 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4991 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478355116\n\nYour shipment with the number 478355116 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4991. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478355116\n\nBICARGO','2','69fe4f9c-47cc-4216-8bca-b92bce12c165',NULL),
('c2576b7f-1d8b-4a04-b015-fd1a5b838ff4','41793377228','Sayın MUHAMMET EL CASİM, 248435862 nolu gönderiniz 2867 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248435862\n\nDear MUHAMMET EL CASİM, your shipment with 248435862 was delivered to you with the delivery code 2867. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248435862\n\n\nBICARGO','1','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL),
('c25826eb-550a-4850-8aea-140610f907ad','','EMİNE-YASEMİN adlı müşterinizin 734109910 nolu gönderisi 13 parça halinde yola çıkmıştır.','2','48599652-b40b-4605-9b8c-4be79cb180f3',NULL),
('c25a1649-e607-4bb7-b2fe-e39390547cf5','905331602195','Sayın yetkili; İMANE LAARİ adlı müşterinize 22130093 nolu gönderinizin Orta sehpa 80*120 ürünü 1 parça halinde Fatura adresinizden 10.01.2025 10:32:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c2f86c9-653c-4859-ad05-f53200e7d5ba',NULL),
('c268525c-4f2d-49db-aac2-2f029bbad81c','436642175788','Sayın MAGDALENA DELİJANOVA, 371521572 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371521572\n\nDear MAGDALENA DELİJANOVA, your shipment with 371521572 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371521572\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('c2692116-8e20-436c-a845-12557859b3a4','33768120568','Sayın DEKOR ARSLAN, 412332862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412332862\n\nDear DEKOR ARSLAN, your shipment with 412332862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412332862\n\nBICARGO','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('c2698d54-1fdc-4e43-b4b6-2767ae48f1b7','491723025069','982490890 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982490890\n\nYour shipment with the number 982490890 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982490890\n\nBICARGO','1','ead6dade-f350-443d-a16a-41863d612c7c',NULL),
('c26e558f-b930-416e-93e9-56b5ee7c37b9','33788688334','Sayın İBRAHİM YILDIRIM, 745405587 nolu gönderiniz 5530 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745405587\n\nDear İBRAHİM YILDIRIM, your shipment with 745405587 was delivered to you with the delivery code 5530. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745405587\n\n\nBICARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('c26f9a96-6407-4ad1-9fe5-2ab6f6821cd0','905445745615','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('c2711955-9773-4da2-a92f-197031b725a0','4915122429753','478659791 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5183 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478659791\n\nYour shipment with the number 478659791 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5183. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478659791\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('c274e0da-2878-4a84-86e7-9c58ff6d3a91','905313340045','Sayın yetkili; YASEMİN ÖZKILINÇ adlı müşterinize 437819954 nolu gönderinizin sandalye ürünü 3 parça halinde ard sandalye adresinizden 15.04.2025 16:59:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('c28035cc-4cba-4ce1-8652-4a73a3c63c00','4915204766042','745343811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1669 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745343811\n\nYour shipment with the number 745343811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1669. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745343811\n\nBICARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('c28a7a68-4caf-4a6c-abcc-efdd277a9ab9','905057115555','GÜLNUR KURUOĞLU adlı müşterinizin 952470417 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a029bd37-9eca-4220-a768-df5b0d586118',NULL),
('c28b0feb-b338-4dec-96ca-c1143f5ae28c','905335511664','Sayın yetkili; LALE AKGÜL adlı müşterinize 371533444 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 10.04.2025 12:17:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','509ec2fa-23ec-4576-8840-d2ebdd3ca734',NULL),
('c28c8de7-d9db-496d-a4f3-5d40ea96d1da','1111111111111111','248602682 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6223 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248602682\n\nYour shipment with the number 248602682 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6223. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248602682\n\nBICARGO','2','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL),
('c28fc1be-9936-4e09-8788-29aa38662435','491773328964','Sayın HASAN ŞİMŞEK , 817317858 nolu gönderiniz 2221 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817317858\n\nDear HASAN ŞİMŞEK , your shipment with 817317858 was delivered to you with the delivery code 2221. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817317858\n\n\nBICARGO','1','792d6397-5783-4fc5-9cff-46f4a9961a12',NULL),
('c29ad62f-1105-4032-8d9d-b38448eb3353','4917661338122','644664237 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644664237\n\nYour shipment with the number 644664237 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644664237\n\nBICARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('c29cfe38-3c13-4a67-8417-d3d62e08625f','31641824655','371665790 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2947 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665790\n\nYour shipment with the number 371665790 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2947. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371665790\n\nBICARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('c2a036de-0dd1-4455-bc94-671ccebe90c4','33768423506','221341784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2717 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221341784\n\nYour shipment with the number 221341784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2717. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221341784\n\nBICARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('c2a81810-0549-4834-a6de-e0429800e4f0','4915752547786','Sayın MEHMET ÖZKAN, 478794904 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478794904\n\nDear MEHMET ÖZKAN, your shipment with 478794904 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478794904\n\nBICARGO','1','ec083d8c-b8c3-4e4b-9b30-be29d90cad55',NULL),
('c2a998ac-2f60-43d2-bf00-9df1ad1657fb','4915254790344','613373885 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7661 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613373885\n\nYour shipment with the number 613373885 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7661. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613373885\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('c2aa3654-00f1-4162-9bc3-27271669b754','491737325307','Sayın SONGÜL KEKEÇ, 910197116 nolu gönderiniz 3976 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910197116\n\nDear SONGÜL KEKEÇ, your shipment with 910197116 was delivered to you with the delivery code 3976. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910197116\n\n\nBICARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('c2ad4aef-435d-4a86-a983-4c89108b9189','905318109098','SEMRA TERLEMEZ adlı müşterinizin 45527400 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb868109-aa10-4576-90c5-cea9bda06633',NULL),
('c2b96c7d-a302-4f0b-af0c-7684c7e979aa','905313340045','Sayın yetkili; SEBİHA DEMİR adlı müşterinize 437233194 nolu gönderinizin TV ÜNİTESİ ürünü 2 parça halinde bicargo depo adresinizden 08.09.2025 13:35:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('c2c2fc6c-dbef-43c0-9652-3db14272f7c1','4915901350790','Sayın ABDULKADER TARRAB, 412383870 nolu gönderiniz 4635 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412383870\n\nDear ABDULKADER TARRAB, your shipment with 412383870 was delivered to you with the delivery code 4635. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412383870\n\n\nBICARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('c2c366ac-e98e-4967-9a8a-497fc2220ccc','905079047428','ENİ SYLEJMANİ adlı müşterinizin 449178440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL),
('c2c466a3-be88-4d2c-ace0-0fddce5edb9b','4915560835617','Sayın AYCAN ÇOLAK, 371120278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120278\n\nDear AYCAN ÇOLAK, your shipment with 371120278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371120278\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('c2cc3a5e-588b-40be-937c-07b0f8e61574','5324145618','İletişim \n					Halil Bey (Şoför) :+905541100849','2','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('c2ccf4b7-1b81-4c7f-828b-5bd20d34644d','905331602195','THOMAS MICHEL  adlı müşterinizin 221685294 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('c2ceabb7-0b7f-44ef-809b-a787a5902e45','33629412067','Sayın Meliha yüksek, 319458159 nolu gönderiniz 1565 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319458159\n\nDear Meliha yüksek, your shipment with 319458159 was delivered to you with the delivery code 1565. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319458159\n\n\nBICARGO','1','29175f89-ad14-442c-b1fb-71c9053ba227',NULL),
('c2cfb345-d5f4-4d12-831d-32874bec4d74','905327399716','NİZAMETTİN adlı müşterinizin 223719427 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL),
('c2d84d54-734c-4a5e-9e32-8e502563a27b','905517075149','FARUK YÜCEL adlı müşterinizin 478867058 nolu gönderisi 32 parça halinde yola çıkmıştır.','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('c2da495a-9f7f-49b8-a5e5-d4f6cf943fdb','1111111111','Sayın MESUT-ŞENOL, 412206514 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412206514\n\nDear MESUT-ŞENOL, your shipment with 412206514 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412206514\n\nBICARGO','2','50ac71ad-f352-4f3f-9611-9447396e01a3',NULL),
('c2dc6be3-cd73-4a65-85f1-5ec76cf905fc','410786081031','Sayın VLORİNA BERİSHA, 613378961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613378961\n\nDear VLORİNA BERİSHA, your shipment with 613378961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613378961\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('c2e13848-ba5c-44c0-b93d-349e172a3d5b','905539740010','Sayın yetkili; EMRE KIZIL ALMANYA SSH adlı müşterinize 011222896 nolu gönderinizin 6 adet 3 kutu ürünü 3 parça halinde BULKA SANDALYE adresinizden 29.08.2025 12:41:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('c2e29d09-a7b4-48a1-b6d7-1470bc57c2bc','905368336516','Sayın yetkili; SONGÜL AKKOC adlı müşterinize 515171044 nolu gönderinizin Sandalye ürünü 3 parça halinde masami adresinizden 04.08.2025 11:22:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('c2e505d4-b420-404a-b49e-ee5731f99ff5','905517075149','FATMA ALBAYRAK adlı müşterinizin 478935366 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('c2e83efd-ac4d-4af0-aab8-7abba20f2e2f','491606817658','Sayın AKIN COŞKUNSU, 371365427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365427\n\nDear AKIN COŞKUNSU, your shipment with 371365427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371365427\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('c2e8982a-f298-4804-bd9c-4061a23d764d','436605971568','517205085 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3233 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517205085\n\nYour shipment with the number 517205085 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3233. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517205085\n\nBICARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('c2edf057-e4fb-4ede-a78c-da098c2cf8bb','31625162575','Sayın EMRE GÖZÜM(K), 644312365 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644312365\n\nDear EMRE GÖZÜM(K), your shipment with 644312365 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644312365\n\nBICARGO','1','57d149b0-26bf-4d32-bd70-63fa29f50cd3',NULL),
('c2eecd8e-6ee5-4a76-ad12-2b6e406209e5','905465479064','CANKUT BEY adlı müşterinizin 858200454 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','3e323a55-ba70-413e-929d-bc1527816bbc',NULL),
('c30dd51f-52b7-4853-b4cf-7ec570289f52','4917670344465','ŞÖFÖR İKETİŞİM\n					+905301824880','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('c30e616b-0d98-48bb-8ece-36589c9c0bb9','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160\'LIK BAŞLIK ANTRASİT ürünü 2 parça halinde Fatura adresinizden 03.10.2025 14:29:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('c30ec637-6037-4f8b-a82f-778c34793acd','491712326850','745639343 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5861 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745639343\n\nYour shipment with the number 745639343 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5861. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745639343\n\nBICARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('c30f0b37-97bb-41ac-91e2-4c63e19e4db4','491734523187','İletişim \n					Şöför Uğur Acar +905424435917','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('c312c62d-c242-4196-ac0f-df3f295f0075','32485863945','Sayın HİLAL YAVUZ, 982194447 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982194447\n\nDear HİLAL YAVUZ, your shipment with 982194447 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982194447\n\nBICARGO','1','131dc758-a8bf-4fc8-ab81-2ded2a0e2ce7',NULL),
('c318ea1e-3b85-476d-9f50-fa0a56cbef17','4917661327084','Sayın DUYGU METE, 371394707 nolu gönderiniz 1614 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371394707\n\nDear DUYGU METE, your shipment with 371394707 was delivered to you with the delivery code 1614. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371394707\n\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('c31a242b-67ca-40bc-95e8-54d0d6958c9d','905313340045','FUAT SÜRER adlı müşterinizin 437392386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('c31cd68f-634d-472e-bd91-fae7f97ef23b','4917672416653','Sayın ANAHİTA MORİD, 598412225 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598412225\n\nDear ANAHİTA MORİD, your shipment with 598412225 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598412225\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('c31fef68-f179-4e19-a675-4c9dc0fd7798','905313340045','SEBİHA DEMİR adlı müşterinizin 437233194 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('c327dd60-cda9-48a4-828a-09b380599825','33620807187','Sayın Mustafa İlhan, 976369647 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976369647\n\nDear Mustafa İlhan, your shipment with 976369647 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976369647\n\nBICARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('c329ac91-eeda-41bc-8731-fedd0b865a10','905336367828','ENVER KÖK adlı müşterinizin 982549375 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('c32aa942-1257-4048-a92f-061ce4beb85b','905075277637','Sayın yetkili; MUSTAFA IBRYAMOV adlı müşterinize 745907299 nolu gönderinizin VİRAL KOLTUK TAKIMI  ürünü 7 parça halinde Fatura adresinizden 21.05.2025 18:13:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('c32f51ed-dca1-4a2b-a6c7-408057d39099','491639052092','Sayın VAİSE İBRAHİM, 613108463 nolu gönderiniz 10061 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613108463\n\nDear VAİSE İBRAHİM, your shipment with 613108463 was delivered to you with the delivery code 10061. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613108463\n\n\nBICARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('c330058c-6597-4494-9cca-10704da61ee9','32470798418','Sayın İLAYDA CALINALTI, 22137977 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22137977\n\nDear İLAYDA CALINALTI, your shipment with 22137977 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22137977\n\nBICARGO','1','e5aec591-aa43-4db5-8228-1d08c0c983d2',NULL),
('c33a55d9-7afd-4ff7-bd1e-19c52e47f6d8','4915223038564','Sayın BERNA YİLDİRİM, 613847250 nolu gönderiniz 9012 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613847250\n\nDear BERNA YİLDİRİM, your shipment with 613847250 was delivered to you with the delivery code 9012. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613847250\n\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('c33b2181-b4da-4cbf-bc30-5f871fdc8726','33782212899','Sayın AYŞE KONDAL, 478530755 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478530755\n\nDear AYŞE KONDAL, your shipment with 478530755 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478530755\n\nBICARGO','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('c347df8b-1f74-450d-a336-c543812c9e74','905078062550','Sayın yetkili; AYLİN MİYANYEDİ adlı müşterinize 598444930 nolu gönderinizin 6 sandalye ürünü 6 parça halinde LİN SANDALYE adresinizden 18.07.2025 17:49:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('c34a9bd2-aa9a-436e-b390-328af3798fe7','905335511664','Sayın yetkili; FATMA KAYA adlı müşterinize 371579541 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 14.05.2025 11:10:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fdc2bf0a-26c7-4fe3-8552-1c8056ee2608',NULL),
('c34ed5b8-8997-4df3-8cc9-4db70861a102','905377176639','MUSTAFA KIVRAK adlı müşterinizin 118176933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ffe7cd27-4d52-41ee-b5e5-b17ff3b89095',NULL),
('c353e88c-3cc1-4f4b-852a-25bd1fcce029','905069116877','DANFA adlı müşterinizin 817288476 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0e07b0ae-06f1-463c-8579-3c8aa8ed2f73',NULL),
('c35b8492-d132-454c-88a9-1fd68d67a6b3','436603406293','MİKAİL ÖZBEK adlı müşterinizin 675749315 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('c35d2600-8521-4355-8b8f-00db72c8f320','905335708965','RGDSDSDSSS adlı müşterinizin 735384295 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','ed280e04-bf9d-4058-a9ca-c28010e0e3a6',NULL),
('c35f709b-6149-402a-a292-d86e6eb037ad','491727920023','910772127 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10058 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910772127\n\nYour shipment with the number 910772127 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10058. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910772127\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('c366f762-d493-4366-b0d6-7ae4db5c25da','905313340045','Sayın yetkili; ALİ KURUÇAM adlı müşterinize 437707209 nolu gönderinizin Masa ve orta sehpa ürünü 3 parça halinde masami adresinizden 23.08.2025 13:11:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('c36973dd-d1e5-44ad-84e4-cf90e0b6f319','905510396989','Sayın yetkili; GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinize 31925609 nolu gönderinizin tesla köşe takımı ürünü 5 parça halinde bestline  adresinizden 06.05.2025 12:04:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('c3749d8a-0b72-4315-8a67-d2808191bfeb','905078062550','Sayın yetkili; NERİMAN SARI adlı müşterinize 598226174 nolu gönderinizin köşe koltuk ürünü 4 parça halinde ELİTİS HOME adresinizden 29.08.2025 16:22:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('c3757d5d-ae4a-4d4a-ab1d-1429b5454213','905078062550','Sayın yetkili; İBRAHİM GEYİK adlı müşterinize 598967733 nolu gönderinizin BAZA BAŞLIK ürünü 4 parça halinde ALBESSA HOME adresinizden 02.10.2025 10:30:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ddba844-a989-499f-a6a5-be77dd52ea3a',NULL),
('c376b4e7-bf1d-4dce-83f4-b65cc94b0d21','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin köşe ürünü 3 parça halinde kaan  adresinizden 18.09.2025 14:09:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('c377c7fe-e635-4a90-ab34-5c5e147475bd','491590140330','Sayın SANİ ALAJBEGOVİC, 644344492 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644344492\n\nDear SANİ ALAJBEGOVİC, your shipment with 644344492 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644344492\n\nBICARGO','2','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('c37877c9-c348-43b4-b878-e0b272afbf4d','491794359151','Sayın ÖZEN GÖKYEŞİL, 517619393 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517619393\n\nDear ÖZEN GÖKYEŞİL, your shipment with 517619393 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517619393\n\nBICARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('c3823038-24f1-4d57-9c59-1816fafda09a','4917624125549','817893403 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7410 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817893403\n\nYour shipment with the number 817893403 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7410. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817893403\n\nBICARGO','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('c384c4bb-624b-4cbb-8ea7-ffa938bc59be','905454259202','EMİN EKRAMOĞLU adlı müşterinizin 478337610 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('c38a073b-51e9-4b45-86dc-a3da00ca5b61','4917624864507','Sayın AHMET EMİN ALGÜL SSH, 910375036 nolu gönderiniz 1174 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910375036\n\nDear AHMET EMİN ALGÜL SSH, your shipment with 910375036 was delivered to you with the delivery code 1174. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910375036\n\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('c38a09f5-ca4d-4331-b1fe-1f203de1e98f','905443955915','ŞÜKRAN ALP adlı müşterinizin 614990703 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','b44944f3-7dd8-418b-84ab-1045b4554936',NULL),
('c38e43cb-517e-4b60-b3d3-ae83e206c773','4915901249281','Sayın HİLAL ZÜBEYİRLER, 515973668 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515973668\n\nDear HİLAL ZÜBEYİRLER, your shipment with 515973668 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515973668\n\nBICARGO','1','0e3cd4c9-294c-4ded-8194-bf22e23bc5a0',NULL),
('c394df45-6889-4b54-9c0c-263e1878308a','905451571652','Sayın yetkili; PERİHAN ÖZVURAL adlı müşterinize 531344250 nolu gönderinizin Sandalye ürünü 3 parça halinde M four sandalye adresinizden 13.08.2025 17:12:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('c39643d5-b13b-44cc-823b-996ccaf3c2a7','4915901358916','Sayın ZEYNEP CİHANGİR, 478623446 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478623446\n\nDear ZEYNEP CİHANGİR, your shipment with 478623446 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478623446\n\nBICARGO','1','0a8f1755-81d7-48cb-888e-f50eb6ea01e8',NULL),
('c396cb45-f957-4a61-a900-b47b2a83f991','31650234175','501874784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10400 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501874784\n\nYour shipment with the number 501874784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10400. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501874784\n\nBICARGO','1','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL),
('c3984966-3ed2-4af8-a220-591628de47cd','176322545443','İLETİŞİM\n					Furkan şöför = +905078826436','2','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('c39cfdbc-4458-45c3-b5c1-b4cff14af716','491639801426','EURO STAR MOBEL adlı müşterinizin 107593305 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','56934bb2-8807-472a-9265-23392c22511f',NULL),
('c39d23b5-32ce-4606-84ed-f1d01404711e','31621641052','Sayın PETER BOUMA, 449446169 nolu gönderiniz 5271 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449446169\n\nDear PETER BOUMA, your shipment with 449446169 was delivered to you with the delivery code 5271. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449446169\n\n\nBICARGO','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('c3a09bf3-21e1-4cdf-be65-aded1463a6ca','1111111111','Sayın SEMRA TERLEMEZ, 45527400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/45527400\n\nDear SEMRA TERLEMEZ, your shipment with 45527400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/45527400\n\nBICARGO','2','bb868109-aa10-4576-90c5-cea9bda06633',NULL),
('c3a33980-a364-4011-8f4f-6501d5862371','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Koltuk+Sehpa ürünü 6 parça halinde SALON KOLTUK adresinizden 02.01.2025 11:21:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('c3a365b8-1f23-4558-b84a-375acac3263c','33749273890','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('c3a3b9e5-1488-405c-a290-4a814b1bfd83','31625064385','163229349 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6839 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/163229349\n\nYour shipment with the number 163229349 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6839. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/163229349\n\nBICARGO','1','6d8023fb-7e68-4b37-8709-816c5519380e',NULL),
('c3a5f419-b5ee-4857-b0c6-3dc6e85a77bf','9053259981980','NURKAN AŞIR adlı müşterinizin 614529512 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('c3a6152c-2841-4564-98f5-307e461eb1ff','905336367828','AJLA ORUC  adlı müşterinizin 982329375 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('c3aa951b-04df-4261-894e-cf5a89cc82e8','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin baza ürünü 1 parça halinde Albessa adresinizden 16.09.2025 17:16:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('c3ac1773-8053-4b96-b309-df83be3311c1','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin şifonyer-komidin-masa-sandalye-ünite-konsol-sehpalar ürünü 11 parça halinde RİXXE adresinizden 13.08.2025 17:50:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('c3ae68ad-ea9e-4728-8dcc-e2b683adafad','905336367828','SAİDATİ AHMED  adlı müşterinizin 98274489 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c301b3d6-0b7c-4330-bda9-99b0f091d356',NULL),
('c3b0a8e0-3dbf-4af4-843a-7e4f601047e2','491634680218','745191568 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745191568\n\nYour shipment with the number 745191568 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745191568\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('c3b1f8e6-966d-4d65-93ce-cd31cca21903','905331602195','CEM KONDU adlı müşterinizin 221686815 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1f3c011b-b082-4eaf-a3ea-8f8ab2934010',NULL),
('c3b20e7c-9968-46ec-84a0-1a05e4936d9a','905059175469','Sayın yetkili; GÖKHAN UYSAN adlı müşterinize 42873500 nolu gönderinizin yemek ürünü 13 parça halinde Fatura adresinizden 30.05.2025 17:26:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('c3b2d7ab-1947-4a78-9faf-78e2e4372bc2','491711177115','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('c3b3091a-8935-4b90-9c45-e6ec22b3c547','0041799084222','Sayın SEMİL HADZİ, 735905073 nolu gönderiniz 1390 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735905073\n\nDear SEMİL HADZİ, your shipment with 735905073 was delivered to you with the delivery code 1390. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735905073\n\n\nBICARGO','2','36d04374-8820-448d-9e27-e2a098baa9f9',NULL),
('c3b4ece6-7de0-4cce-a28e-8024e02117f9','5348867917','Sayın GÜRKAN DAĞ , 904863225 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/904863225\n\nDear GÜRKAN DAĞ , your shipment with 904863225 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/904863225\n\nBICARGO','2','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL),
('c3b52e91-d470-4e04-b947-32c702f19f0c','4915255996436','61428079 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/61428079\n\nYour shipment with the number 61428079 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/61428079\n\nBICARGO','1','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL),
('c3b82149-a670-4c73-82c1-41e4704f6c53','4917643816856','Sayın ÖZGÜR PİLİÇ, 517447554 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517447554\n\nDear ÖZGÜR PİLİÇ, your shipment with 517447554 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517447554\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('c3bf495f-5851-476a-ba9e-901522c89859','491718076930','Sayın BAHAR SARI, 478525280 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478525280\n\nDear BAHAR SARI, your shipment with 478525280 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478525280\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('c3c2cd00-426c-4902-9b88-32a0c0ee29ac','4915737582950','Sayın FATMA EROĞLU, 455165840 nolu gönderiniz 9096 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455165840\n\nDear FATMA EROĞLU, your shipment with 455165840 was delivered to you with the delivery code 9096. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455165840\n\n\nBICARGO','1','567de155-b820-4225-ac37-23f88ed0500c',NULL),
('c3c446f4-9656-455c-86ec-9b5cce2aa189','905349208933','HARUN ERCAN adlı müşterinizin 127847689 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('c3c5caec-525c-4fd1-8c59-48cf99ef9545','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Karyola ürünü 3 parça halinde Arya Bedding  adresinizden 08.11.2024 13:53:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('c3c648c7-414f-4d7c-b4d8-99a71f8f2da9','905300961610','ALMİRA adlı müşterinizin 126229931 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cdc7b5f1-b03d-4f6d-88a0-251d10e85884',NULL),
('c3db41d4-88fe-485f-9585-d0cac59d3153','905461661672','Sayın yetkili; ETEM FIRAT YÜKSEL(K) adlı müşterinize 644664237 nolu gönderinizin MASA  ürünü 2 parça halinde Masami Mobilya adresinizden 23.09.2025 15:30:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('c3dbb3f6-7bdc-4ece-9194-4cdbb78cd34b','33787870311','Sayın MUHAMMED ÇETİN, 221234413 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221234413\n\nDear MUHAMMED ÇETİN, your shipment with 221234413 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221234413\n\nBICARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('c3e005a3-0a64-41ea-a74f-c805641d0297','491779291845','Sayın Öner alabaş, 478803764 nolu gönderiniz 1063 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478803764\n\nDear Öner alabaş, your shipment with 478803764 was delivered to you with the delivery code 1063. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478803764\n\n\nBICARGO','1','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL),
('c3e3822c-9570-4f2a-b508-69ae09f5148c','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin DELUXE YATAK 180LİK  ürünü 1 parça halinde Fatura adresinizden 26.09.2025 12:23:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('c3e5f0bb-7bc5-4986-aefe-8191f482e7fd','905079047428','Sayın yetkili; PETER BOUMA adlı müşterinize 449446169 nolu gönderinizin 3-1-1 koltuk 1 orta sehpa 1 saat 1 ünite ürünü 6 parça halinde Fatura adresinizden 05.12.2024 11:25:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('c3e8fe31-d202-4a0e-a487-9bc419e76322','33634270535','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('c3e9ab64-98df-40bc-899a-4fde1a7fe182','905350617509','BAKACAK GİRAY adlı müşterinizin 613814330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('c3edfcf2-bfcb-486c-97c2-edffb5154d5a','33643805773','478775583 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1173 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478775583\n\nYour shipment with the number 478775583 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1173. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478775583\n\nBICARGO','1','830e197e-1aa8-4f6a-9f71-58048c60d7b5',NULL),
('c3f13c10-357e-4e98-a9fc-b41f83f3b346','905054335859','ERSİN ESEN adlı müşterinizin 501256266 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL),
('c3ffeaa8-348c-416a-81c5-7176fdbb76a6','31614754134','Sayın MUSTAFA SAİT ÖZDEMİR, 203497868 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/203497868\n\nDear MUSTAFA SAİT ÖZDEMİR, your shipment with 203497868 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/203497868\n\nBICARGO','1','b9790373-c876-4108-aaca-1b1a5e2b9aa5',NULL),
('c4007124-57ae-4bcd-bf98-285a89d5721a','4915254879175','371160737 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371160737\n\nYour shipment with the number 371160737 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371160737\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('c40d7d2f-1c0c-4db3-83be-9e992b66094d','31625064385','Sayın Murat Trendyol home, 41245861 nolu gönderiniz 2725 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41245861\n\nDear Murat Trendyol home, your shipment with 41245861 was delivered to you with the delivery code 2725. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41245861\n\n\nBICARGO','1','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL),
('c4164370-ebfb-452d-9639-de4b0b85f7b0','41782334263','Sayın ESTİFANOS HABTE , 982496646 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982496646\n\nDear ESTİFANOS HABTE , your shipment with 982496646 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982496646\n\nBICARGO','1','2d1546c2-bea6-40ad-a656-acdd6173cc27',NULL),
('c41b2604-7c26-4410-bdf0-2fde4546cade','436603406293','Sayın yetkili; SEVDE SOYUÖZ adlı müşterinize 675253974 nolu gönderinizin sandalye ürünü 3 parça halinde MASAMI adresinizden 19.08.2025 14:14:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('c41e323d-6bdc-4bcd-8340-1c7c9438f3bb','905335511664','Sayın yetkili; MİTHRA EKHLAS adlı müşterinize 371665790 nolu gönderinizin MASA + SEHPA ürünü 6 parça halinde SM Tasarım adresinizden 19.08.2025 15:00:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('c42066da-618f-4197-bf34-cc59aa17074c','4917661928608','Sayın NURGÜL ÖZDEMİR , 750450570 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750450570\n\nDear NURGÜL ÖZDEMİR , your shipment with 750450570 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750450570\n\nBICARGO','1','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL),
('c421d6c6-1a65-4af8-8eb8-55414fc7ccdc','491787320573','Sayın FERHAD MORİD, 598188038 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598188038\n\nDear FERHAD MORİD, your shipment with 598188038 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598188038\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('c42356b0-68b8-4428-8f77-af1ccbe0e313','33769187229','Sayın ZEYNEP ALEYNA ÖZBEY, 478101302 nolu gönderiniz 3368 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478101302\n\nDear ZEYNEP ALEYNA ÖZBEY, your shipment with 478101302 was delivered to you with the delivery code 3368. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478101302\n\n\nBICARGO','1','5eb9d56a-9ea5-4713-886f-df1ddcba4c69',NULL),
('c423b612-8e05-4033-a4ea-942438282ab7','905421855834','MARİANE SARKİS adlı müşterinizin 338426911 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('c428ff05-1e85-4eeb-a25d-19925bb122a5','32467701837','Sayın HÜSEYİN ÖZGÜR, 412903351 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412903351\n\nDear HÜSEYİN ÖZGÜR, your shipment with 412903351 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412903351\n\nBICARGO','1','810dc52a-159e-44ab-b7dd-937d9c4e84cf',NULL),
('c4298e8f-679a-41b9-b8fd-146589bf5b1d','491753662810','Sayın NRW MENDEN FRÖNDENBERG, 45586545 nolu gönderiniz 10545 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/45586545\n\nDear NRW MENDEN FRÖNDENBERG, your shipment with 45586545 was delivered to you with the delivery code 10545. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/45586545\n\n\nBICARGO','1','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL),
('c42b02d4-8ce3-4ad1-a541-e836c5f205c4','905461661672','Sayın yetkili; TAHSİN AKSOY adlı müşterinize 644716997 nolu gönderinizin SERAMİK SEHPA ürünü 1 parça halinde MASA VİA adresinizden 11.06.2025 14:22:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('c42b4d1e-26da-43fd-94db-43947d0099da','41794580561','695249199 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3743 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/695249199\n\nYour shipment with the number 695249199 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3743. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/695249199\n\nBICARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('c4312223-27cb-4999-a673-fff1d599dbff','905539740010','SSH   UĞUR KAPLAN    adlı müşterinizin 011811088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('c4348874-201b-4790-a0e5-a0cf4848eed9','905363385813','Sayın yetkili; HELİN GÜNDEŞ adlı müşterinize 976462703 nolu gönderinizin MASA TAKIMI ürünü 4 parça halinde Recai Yılmaz adresinizden 02.04.2025 12:09:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fe4384f-667e-4804-9bed-05209e202db9',NULL),
('c437fa25-ad87-409e-90f5-a4669fa035ee','905304259202','NURCAN MANSUR adlı müşterinizin 478377442 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('c438913f-e93c-45ac-8e13-538b000d5571','436603406293','Sayın yetkili; TUBA BALTA adlı müşterinize 675902808 nolu gönderinizin SANDALYE ürünü 3 parça halinde MASAMI adresinizden 28.05.2025 17:45:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('c43cfdc4-cd9a-48b8-970b-b3ae2d589452','31619649864','Sayın ELVAN DURSUN, 437158505 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437158505\n\nDear ELVAN DURSUN, your shipment with 437158505 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437158505\n\nBICARGO','1','121f11bb-9b5a-4db0-a1ec-87c68b1ce47a',NULL),
('c444eb94-aa98-400d-b9d9-41072f2aefd2','905079358213','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin VİRAL KARYOLA BAZALI  ürünü 6 parça halinde FAMILY adresinizden 08.10.2025 11:37:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('c44619e7-2e57-41f0-bc41-edd87aeddaad','32472837629','Sayın ÖMER YILMAZ, 644763473 nolu gönderiniz 5395 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644763473\n\nDear ÖMER YILMAZ, your shipment with 644763473 was delivered to you with the delivery code 5395. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644763473\n\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('c44c91b5-ce2e-4d55-9fff-49ba95893b5f','41765923442','982506182 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982506182\n\nYour shipment with the number 982506182 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982506182\n\nBICARGO','1','9c622fdf-272f-4650-ac75-c35e205b6022',NULL),
('c455807f-6003-4122-85ae-93611ea505dd','','027339599 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10199 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027339599\n\nYour shipment with the number 027339599 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10199. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027339599\n\nBICARGO','2','368245d4-9f2d-4657-8e21-783fb08ea560',NULL),
('c45aa634-8d96-4df7-bea0-16a7aa6a3442','905532675926','Sayın yetkili; ESRA SAATÇİ adlı müşterinize 428905379 nolu gönderinizin komodin+şifonyer+ayna ürünü 10 parça halinde Fatura adresinizden 10.10.2025 16:42:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL),
('c45dba97-726a-4b4f-ae76-9495dbd6be05','32484737825','449693252 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8997 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449693252\n\nYour shipment with the number 449693252 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8997. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449693252\n\nBICARGO','1','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL),
('c45dcbea-b983-4f8d-9da2-61fe2f968626','4917655059841','902332542 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/902332542\n\nYour shipment with the number 902332542 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/902332542\n\nBICARGO','1','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL),
('c45ee9ce-94fe-4f92-bf6f-e6c4407390dc','905306071261','Sayın yetkili; KADER YILDIZ adlı müşterinize 765600734 nolu gönderinizin NİKOLA KÖŞE KOLTUK  195*450*350CM ürünü 7 parça halinde BESTLİNE SOFA adresinizden 27.08.2025 11:20:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('c46403a3-78b9-4976-9bb1-cbd094605e40','33768933805','478741910 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8004 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478741910\n\nYour shipment with the number 478741910 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8004. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478741910\n\nBICARGO','1',NULL,NULL),
('c465265f-5be5-4453-92d5-5ab9fe6a1f59','4917663383581','Sayın MEHMET GÜRKAN, 745661183 nolu gönderiniz 1157 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745661183\n\nDear MEHMET GÜRKAN, your shipment with 745661183 was delivered to you with the delivery code 1157. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745661183\n\n\nBICARGO','1','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL),
('c4712f5e-686e-4c19-8d94-4d255fe76ab2','905313340045','SANİYE BIÇAKÇI adlı müşterinizin 43774917 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('c473b11f-3876-4d19-a106-398e635f5e9b','491637394774','Sayın TOLGA KAPLAN, 598463425 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598463425\n\nDear TOLGA KAPLAN, your shipment with 598463425 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598463425\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('c47555a1-069c-4375-bbbb-a10c4d3ec1d5','491638482506','Sayın GÜLAY FASOLD, 644820551 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644820551\n\nDear GÜLAY FASOLD, your shipment with 644820551 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644820551\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('c4769ba3-a7d0-467d-9351-8e94f8c44723','310621327442','501339138 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6724 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501339138\n\nYour shipment with the number 501339138 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6724. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501339138\n\nBICARGO','1','e5d95e08-a8c0-4133-845e-d93395f55044',NULL),
('c4796040-59b4-4a40-835b-d1faf6a5e0a5','491726668460','Sayın BİRSEN YILMAZ, 334873891 nolu gönderiniz 4629 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/334873891\n\nDear BİRSEN YILMAZ, your shipment with 334873891 was delivered to you with the delivery code 4629. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/334873891\n\n\nBICARGO','1','9b2b97c3-e08e-424a-9a23-e7c625f3e6cc',NULL),
('c4847297-c574-4a93-8300-2ff448fa46b9','905331602195','Sayın yetkili; ABBES İMEN  adlı müşterinize 221407742 nolu gönderinizin Balat sandalye galaxy krem  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 22.10.2025 11:09:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1384e7-3101-476b-be1f-bb10a9abe0b3',NULL),
('c48a49d3-f925-465f-a833-8c9ef38a62b5','905350617509','VLORİNA BERİSHA adlı müşterinizin 613378961 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('c48a6e86-ab82-43b7-86ee-25ef100d13b5','43676879613231','Sayın NURDAN GÜNDÜZ, 437529604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437529604\n\nDear NURDAN GÜNDÜZ, your shipment with 437529604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437529604\n\nBICARGO','1','1106ac37-0c19-4da2-b605-9af60d1e2fd2',NULL),
('c48a8c51-fbaf-4294-873a-1b461d26619a','436607580201','011811088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3184 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011811088\n\nYour shipment with the number 011811088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3184. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011811088\n\nBICARGO','1','190d0f26-9ae1-44bb-91fe-2fddc3ae2695',NULL),
('c48bcbf6-a926-444b-a971-9137c064fbe8','4363702086493','478749881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5972 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478749881\n\nYour shipment with the number 478749881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5972. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478749881\n\nBICARGO','2','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('c4914020-bbfe-4fe9-90e8-8c4cc57cbca3','33667821840','Sayın JEUNE ROSE DARLYNE, 221892935 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221892935\n\nDear JEUNE ROSE DARLYNE, your shipment with 221892935 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221892935\n\nBICARGO','1','0c849468-56f3-4970-8ded-610f5c6820b7',NULL),
('c491fcb6-8cc3-4bcf-9670-1a63e504c61a','32485453027','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('c492672c-231e-43f9-acff-874dd09ad713','4917662149337','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('c49ac979-e862-4b71-9221-07e279ecfae1','905336367828','Sayın yetkili; Jalal aslam  adlı müşterinize 982966360 nolu gönderinizin Yatak komidin  ürünü 3 parça halinde Marki baza  adresinizden 06.11.2024 15:29:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('c49bf7f9-1ecf-4396-b762-accf628dc916','4917664025602','Sayın AYŞE ŞEKER, 745671718 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745671718\n\nDear AYŞE ŞEKER, your shipment with 745671718 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745671718\n\nBICARGO','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('c49e7206-9c44-4542-93ec-5d4d333d93fa','4917673582903','644298325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298325\n\nYour shipment with the number 644298325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644298325\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('c49fa255-ba97-4092-b8b7-1e9f3e6c8dcc','905510396989','DİLBER ÖZTÜRK adlı müşterinizin 319585140 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('c4a12e2f-e9a8-4cfd-8ad7-ebabcb645118','905350617509','Sayın yetkili; ENES TAHİRİ adlı müşterinize 613803170 nolu gönderinizin Koltuk takımı ürünü 4 parça halinde Fatura adresinizden 09.04.2025 17:20:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf953636-9909-460f-8244-8ec3b177251f',NULL),
('c4a2aa98-b16e-438d-8a02-2e7dcc08e583','905315907031','644513470 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10177 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644513470\n\nYour shipment with the number 644513470 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10177. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644513470\n\nBICARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('c4a2f613-e3a3-4289-8866-448dbbc2d9ac','41793101768','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('c4ab19e1-44d1-4186-b28a-5215b2c584b9','905079358213','BURHAN AKMEŞE adlı müşterinizin 745761149 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('c4adcd62-fe25-4c8c-b1e5-af6c30976b89','491728404403','Sayın BERAT, 412485805 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412485805\n\nDear BERAT, your shipment with 412485805 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412485805\n\nBICARGO','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('c4b125eb-de8e-4299-be30-58c401e4137b','33652632895','Sayın BURAK YAKUT, 644975430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644975430\n\nDear BURAK YAKUT, your shipment with 644975430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644975430\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('c4b27b24-fa82-4ac2-839b-52e02cc43d64','35356634635363','Sayın AHASSSDDDW, 750704426 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750704426\n\nDear AHASSSDDDW, your shipment with 750704426 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750704426\n\nBICARGO','2','b58c5034-ffa1-48bb-9fdd-3bef39fcd8fb',NULL),
('c4b2acde-b908-484f-8dfe-b313827169bc','4917620172453','Sayın ZEYNEP KÜÇÜKBIYIK, 531450758 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531450758\n\nDear ZEYNEP KÜÇÜKBIYIK, your shipment with 531450758 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531450758\n\nBICARGO','1','58257b33-0630-4737-9729-852125dc7322',NULL),
('c4b41552-3890-45bb-ad14-7b739234901e','905078062550','Sayın yetkili; NERİMAN SARI adlı müşterinize 598226174 nolu gönderinizin 8 sandalye ürünü 8 parça halinde LİN SANDALYE adresinizden 29.08.2025 16:27:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('c4ba6d70-2d9e-498d-bc6b-4fa3793195c1','491725393009','437152964 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8633 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437152964\n\nYour shipment with the number 437152964 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8633. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437152964\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('c4baad67-7187-492c-a11e-81d0fe8f5c4f','905335708965',' adlı müşterinizin 248746135 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8b8f439c-2dbf-40f1-a946-d37ea9c4566f',NULL),
('c4bc9682-b06d-431f-8883-1d38c6d74463','905465479064','HALUK ÖZTOPRAK adlı müşterinizin 858708990 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL),
('c4c6b4a4-828f-4b16-9158-d25518760ab4','905335708965','SEMİL HADZİ adlı müşterinizin 735905073 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36d04374-8820-448d-9e27-e2a098baa9f9',NULL),
('c4c7e51a-d2b1-4ba0-bcc7-a9e16baa9fbc','905332942204','DEBORAH BELOVED IDAGU adlı müşterinizin 505987989 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','d79ec9de-a72a-47f5-a918-2b75ec194704',NULL),
('c4cff8d8-5e34-4a2c-b306-0ad32b22a5c5','905325000478','DEKORATA adlı müşterinizin 412417235 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('c4d1db5b-f092-4a78-b516-456d2b481e73','33768202556','Sayın LEPETİT CRİSTELLE, 221251932 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221251932\n\nDear LEPETİT CRİSTELLE, your shipment with 221251932 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221251932\n\nBICARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('c4d3cb10-a384-4dd6-9202-949f37347ca6','31642163844','Sayın SABRİ ÖNÜZ, 437762949 nolu gönderiniz 10165 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437762949\n\nDear SABRİ ÖNÜZ, your shipment with 437762949 was delivered to you with the delivery code 10165. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437762949\n\n\nBICARGO','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('c4d51d1a-bc56-4d87-9cd6-1047ceef563e','436603406293','TUBA BALTA adlı müşterinizin 675902808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7effd94-7a9b-48a7-aa10-5ff2f31371f4',NULL),
('c4d59f86-e60e-47ea-91e3-a7744cc6e306','905332942204','Sayın yetkili; ADRİANNA WİEMANN adlı müşterinize 505724535 nolu gönderinizin kumaşlı ayna ürünü 1 parça halinde mfour adresinizden 09.10.2025 16:33:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('c4db6d0f-afac-4f84-a74f-bde1f211f7c2','33695033884','Sayın HASAN BÜLBÜL, 478941206 nolu gönderiniz 7609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478941206\n\nDear HASAN BÜLBÜL, your shipment with 478941206 was delivered to you with the delivery code 7609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478941206\n\n\nBICARGO','1','e35cfd3e-7307-4d6c-b151-ea5f0fb8e9c9',NULL),
('c4dc66fa-1a09-4e07-9daa-f7bf66da178a','4915222621206','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('c4e07d6a-ae24-4e1e-bac9-f48e88795440','905059175469','NADİR KURUKOL adlı müşterinizin 428819984 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','f87bc653-3c5c-4043-891f-2ac7f87b388a',NULL),
('c4ec4dd4-157a-460f-b418-e95372ae930c','33783080694','982125625 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1499 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982125625\n\nYour shipment with the number 982125625 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1499. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982125625\n\nBICARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('c4f267ff-f1ee-4504-aa84-f0ee11a9ac5e','905336367828','HAKAN ASLAN adlı müşterinizin 982858369 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9b3716c5-1516-4a14-9ee7-cde40b37434c',NULL),
('c4fa3e91-dc8a-43cc-bca4-82642e5d3be6','32489883387','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('c500ff1e-e05a-4e9e-91e9-43e08bd54b00','905079047428','GÜRKAN GÜLER  adlı müşterinizin 449693252 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL),
('c5010b11-00ac-45cb-97d4-026c16f573e3','905335511664','EMİLE ARSLAN adlı müşterinizin 37142091 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('c508448d-544b-449b-bc0f-023b7d62a046','905454259202','PELŞİN YILDIZ adlı müşterinizin 478245028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('c50f34c3-2729-4c33-97ee-426928ab0c61','905313340045','DİLAN ÜNVER adlı müşterinizin 437584936 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('c511b5da-e846-4c80-bc66-3ce66ce0ed21','4917661479043','598876994 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598876994\n\nYour shipment with the number 598876994 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598876994\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('c51ddf4d-d437-48ca-9a49-2b6781af736d','905078062550','İLYAS GÖK adlı müşterinizin 598982184 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('c5238f21-0c17-4bc3-8681-2533dcabc75a','4915785558827','Sayın EKREM ASLAN, 910632087 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910632087\n\nDear EKREM ASLAN, your shipment with 910632087 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910632087\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('c52de2b7-0bfe-4bb9-a8e3-ff8a32a0cf36','436605954440','505153730 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8869 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505153730\n\nYour shipment with the number 505153730 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8869. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505153730\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('c52e0adc-7c04-42c6-a988-a13cde867f90','905451571652','SERCAN MİRCALİ adlı müşterinizin 531549696 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('c530f13e-0056-4475-9a36-461773202a56','905350617509','Sayın yetkili; CİGDEM DENKER  adlı müşterinize 613391684 nolu gönderinizin Sehpa ürünü 3 parça halinde İlyas Masa adresinizden 21.08.2025 16:58:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('c536ee8b-c414-4ece-8bc4-c154d291bb6d','905331602195','Sayın yetkili; GÜLAY KIZIL adlı müşterinize 221598709 nolu gönderinizin 90 çap sehpa  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:38:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('c53ba5aa-e92d-427b-8eb4-d231abc651ab','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin karyola ürünü 4 parça halinde ALBESA  adresinizden 19.06.2025 16:34:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('c5452d25-726f-4971-bc31-0650750fa177','5334943834','Sayın FAHRETTİN AKISKA, 478339664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478339664\n\nDear FAHRETTİN AKISKA, your shipment with 478339664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478339664\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('c546a080-a00b-4156-988c-78697db70937','905313340045','Sayın yetkili; NİSA PARLAR adlı müşterinize 437895842 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 08.08.2025 14:48:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('c552c7ca-7642-497b-bcc3-0be051ef860c','05379688307','Sayın İVAN SLEMAN DİNO, 598410676 nolu gönderiniz 4889 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598410676\n\nDear İVAN SLEMAN DİNO, your shipment with 598410676 was delivered to you with the delivery code 4889. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598410676\n\n\nBICARGO','2','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('c5563d56-f29a-475b-bead-08f1b3b5919f','05388618969','Sayın MUSTAFA AZAMİ , 786668251 nolu gönderiniz 7051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786668251\n\nDear MUSTAFA AZAMİ , your shipment with 786668251 was delivered to you with the delivery code 7051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786668251\n\n\nBICARGO','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('c5582b22-2395-4542-b887-6b4a2feccef7','4917632998796','Sayın YAŞAR YALMAN, 478559056 nolu gönderiniz 2136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478559056\n\nDear YAŞAR YALMAN, your shipment with 478559056 was delivered to you with the delivery code 2136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478559056\n\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('c55b507a-2789-4e20-82a9-53526ff0de22','4917666559986','Sayın MUHAMMED NURTEREB, 412608739 nolu gönderiniz 8790 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412608739\n\nDear MUHAMMED NURTEREB, your shipment with 412608739 was delivered to you with the delivery code 8790. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412608739\n\n\nBICARGO','1','5841dd15-401b-4238-ac2d-009a61e5f5d1',NULL),
('c560d890-8546-4cca-a0c2-03437b569d54','33761054646','Sayın HAKAN YAZICIOĞLU, 478807426 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478807426\n\nDear HAKAN YAZICIOĞLU, your shipment with 478807426 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478807426\n\nBICARGO','1','3a570254-b092-4922-92c1-beea8773ea63',NULL),
('c566729e-bc45-4165-be04-8a0e0e8529d7','905075277637','Sayın yetkili; HALİDE ÖZAY adlı müşterinize 745208965 nolu gönderinizin FRİDA ORTA SEHPA  ürünü 3 parça halinde Fatura adresinizden 25.08.2025 17:21:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('c56a4ec3-860a-4d9d-8be9-6f3a74ab8342','905333221039','MEHMET AKİF ATAMAN adlı müşterinizin 750498273 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1b6ae5ab-f54e-4ec3-ba1c-7af2d70bc87a',NULL),
('c56be677-7dcb-4fd2-bf16-9d02cdd68072','31618085363','Sayın HASAN YALÇIN, 221724224 nolu gönderiniz 10980 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221724224\n\nDear HASAN YALÇIN, your shipment with 221724224 was delivered to you with the delivery code 10980. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221724224\n\n\nBICARGO','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('c56d594f-6d96-4af6-8925-bfccb983bbed','31614556700','Sayın FUAT HUT, 517903636 nolu gönderiniz 4091 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517903636\n\nDear FUAT HUT, your shipment with 517903636 was delivered to you with the delivery code 4091. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517903636\n\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('c579be54-f6ec-4846-a8b2-3b351d14648f','905517075149','OKAY DERİNKUYU adlı müşterinizin 478984010 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('c57b84f7-b0cc-4f36-8de8-d65768aa2e27','905335708965','RASHİCA ADNAN adlı müşterinizin 73558075 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL),
('c57d0df1-9fb5-474b-b7dd-71995bf850c1','4915209874981','Sayın AYLA BAYKAL, 644606140 nolu gönderiniz 3394 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644606140\n\nDear AYLA BAYKAL, your shipment with 644606140 was delivered to you with the delivery code 3394. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644606140\n\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('c57d71e8-9398-47bb-940a-d1d8a3892ce1','905517075149','BELKISA KAPLAN adlı müşterinizin 478570794 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','066ab857-a3c6-4a0e-95c8-a26e5b2ce708',NULL),
('c57de8f7-bcfb-4072-bbe5-db96adf1a852','905078062550','Sayın yetkili; İBRAHİM GEYİK adlı müşterinize 598967733 nolu gönderinizin berjer ürünü 2 parça halinde HARUNCAN SOFA adresinizden 14.10.2025 17:26:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8ddba844-a989-499f-a6a5-be77dd52ea3a',NULL),
('c5801963-154f-4f00-8914-e5a9f3e2e68c','32490219325','Sayın MUSTAFA MÜEZZİNOĞLU, 428459785 nolu gönderiniz 8224 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428459785\n\nDear MUSTAFA MÜEZZİNOĞLU, your shipment with 428459785 was delivered to you with the delivery code 8224. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428459785\n\n\nBICARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('c582bafd-9d46-4f2f-9bab-f42f8337d5cc','905079047428','İBRAHİM AKÇİN adlı müşterinizin 449215672 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('c584918e-8227-4b09-850c-88c6769d7078','905331602195','Sayın yetkili; HURİYE SERBEST adlı müşterinize 221416180 nolu gönderinizin Traverten sehpa seti ürünü 4 parça halinde Fatura adresinizden 20.01.2025 12:00:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('c585a37d-495b-4fe9-8821-8e505cf9dace','5365908694','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','2','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('c58c7d58-1dc3-4ebc-a8b0-589a82b7c268','4917621701947','598530881 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7932 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598530881\n\nYour shipment with the number 598530881 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7932. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598530881\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('c58fabe3-e21b-4a4f-b66c-b3a2fc01a94e','905335511664','FİLİZ DEĞER adlı müşterinizin 371655670 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('c5936b5e-3072-4e4d-9bf5-367f3babff1c','905335511664','MUAMMER CANPOLAT adlı müşterinizin 371376503 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','f5b18e9c-6bdb-4097-ace8-718bd3dec4e0',NULL),
('c59cffc2-021b-4e89-b139-cd37dc20a3aa','05388618969','GİZEM KARAVİL adlı müşterinizin 786820149 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('c59e58b5-c489-4a0d-a955-44b9de96e3a2','5365908694','Sayın PASS, 223441694 nolu gönderiniz 2972 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223441694\n\nDear PASS, your shipment with 223441694 was delivered to you with the delivery code 2972. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223441694\n\n\nBICARGO','2','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('c59e8c4f-8d96-409d-8032-d7bddd5bc2ef','905510396989','AYHAN KOCAKAYA adlı müşterinizin 31979626 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('c5a0509f-dce5-4fc1-8b78-294fef0568bd','4917666559986','248739379 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2675 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248739379\n\nYour shipment with the number 248739379 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2675. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248739379\n\nBICARGO','1','247e7e41-18c8-469b-9539-739f6ede7d7f',NULL),
('c5a50eb1-8638-44e5-a3f5-9b4e9c6fc8f1','33744884261','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('c5a736e9-2c73-4a05-8be2-f11d0f6e4e3b','905333323012','Sayın yetkili; ERKAN LJUTFİJİ adlı müşterinize 695635873 nolu gönderinizin köşe koltuk ürünü 6 parça halinde Fatura adresinizden 27.10.2025 11:23:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae8696be-f69f-4953-8633-4f9337e8b482',NULL),
('c5ad53ad-d023-4424-a96c-f28eb095b3a8','333651501156','Sayın BESNA ULUĞ, 478906000 nolu gönderiniz 7648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478906000\n\nDear BESNA ULUĞ, your shipment with 478906000 was delivered to you with the delivery code 7648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478906000\n\n\nBICARGO','2','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('c5b0c2ac-5499-41ad-9822-997a6414e6ca','905079358213','Sayın yetkili; MUHAMMET YILDIRIM  adlı müşterinize 745946644 nolu gönderinizin PANAMA KARYOLA 2 ADET BAZASIZ ürünü 8 parça halinde ACCA adresinizden 10.10.2025 11:56:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('c5b55836-2583-4b9c-a85c-b3c103fe9797','905078062550','Sayın yetkili; ALİYE GÖRDÜK adlı müşterinize 598156869 nolu gönderinizin köşe koltuk ürünü 6 parça halinde NLUXHOME DEPO adresinizden 15.08.2025 15:37:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('c5b61afd-75c8-4856-adf7-64f93f39e626','905079358213','ZÜLFİKAR CAN adlı müşterinizin 745936573 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6c005507-054f-4904-8f84-b0774ba70335',NULL),
('c5b9ae4f-a571-47cd-9aa1-1ab0acaa0a0b','905517075149','Sayın yetkili; MASOUD SÜLEYMAN adlı müşterinize 478183761 nolu gönderinizin masa- 6 adet sandalye orta sehpa ürünü 8 parça halinde BRAWWA MOBİLYA adresinizden 16.10.2025 11:17:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d5531cd-fb21-4284-9145-817c08eee250',NULL),
('c5b9ed64-7003-4134-bb25-cce5f6fb7529','1111111111','Sayın CAVDAROĞLU, 412955343 nolu gönderiniz 2226 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412955343\n\nDear CAVDAROĞLU, your shipment with 412955343 was delivered to you with the delivery code 2226. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412955343\n\n\nBICARGO','2','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('c5c65b99-5506-4666-bbfb-c9cb32aaaf2d','4917641547802','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','b87dfd8b-75ee-4a0e-bd25-1178a78774c6',NULL),
('c5c9428b-7f5e-4a9e-a736-8128302c861f','905313340045','Sayın yetkili; MEO JONATHON adlı müşterinize 437452475 nolu gönderinizin Masa ve orta sehpa ürünü 4 parça halinde masami adresinizden 23.08.2025 13:16:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('c5ca3d09-7523-44ba-aaf6-afc650618c9b','905079358213','AYDIN İLKNUR adlı müşterinizin 745545386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('c5cea31b-4956-464c-b806-536b53faa689','33783164469','İletişim \n					Şöför Uğur Acar +905424435917','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('c5cf2af5-5215-4f4d-ab0b-6c8d2938c5ec','905454259202','KISMET URDOĞAN adlı müşterinizin 478449275 nolu gönderisi 47 parça halinde yola çıkmıştır.','1','936ebbaf-6f47-4069-b653-db28ba74c6b6',NULL),
('c5d09649-e877-4cfd-b115-4431e1a93c7e','33642608703','Sayın YASEF İCEL, 478978353 nolu gönderiniz 8486 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478978353\n\nDear YASEF İCEL, your shipment with 478978353 was delivered to you with the delivery code 8486. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478978353\n\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('c5d92596-657f-4b53-bbb1-c56c417f3b38','905461661672','Sayın yetkili; RABİA AKKUŞ SSH adlı müşterinize 644564440 nolu gönderinizin KOLTUK AYAK PATİĞİ ürünü 1 parça halinde LENTE HOME adresinizden 18.07.2025 19:08:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('c5e392a5-7fe9-4d41-b8fd-840db88b025f','905075277637','Sayın yetkili; ORHAN ÖZSOY adlı müşterinize 745140498 nolu gönderinizin KING PLATIN BAZA SETİ 160X200 ürünü 4 parça halinde Fatura adresinizden 23.02.2025 15:13:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1b6f0f97-a485-43b5-9b80-a51adf1e7b83',NULL),
('c5e3c292-92b8-420d-bf57-f91d2ed7795d','31636101599','478233957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1134 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478233957\n\nYour shipment with the number 478233957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1134. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478233957\n\nBICARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('c5e81bdd-e4cf-441a-acd4-1748795ef4a0','905331602195','Sayın yetkili; BETÜL YILDIZ adlı müşterinize 221811614 nolu gönderinizin Balat sandalye galaxy krem ürünü null parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:26:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('c5ee804d-9303-4bb4-995f-eca3e7f082a7','905454259202','EJDER SOLAK adlı müşterinizin 47838085 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d6382e4c-39a7-4f1e-a322-945d02f853e0',NULL),
('c5f075f2-c2f9-4d55-9f72-4f02c9126f49','905079047428','mukungu kulemfuka adlı müşterinizin 449205900 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL),
('c5f1a107-2b43-4da7-8594-a30d28ec7c6f','05325000478','Sayın AAAA BBBBB, 25.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5278123\nŞifre : 5278123\n			\nBİCARGO','2',NULL,'5d2ec7d8-1233-449c-8b75-c7d1571c790e'),
('c5f323b6-c4d0-4edc-88b7-0010ef534ce7','905336367828','MAGBULE DZELİLİ adlı müşterinizin 982843761 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('c5f664aa-0105-4f31-a94a-59a7e4a956ee','4915730928748','Sayın MUHAMMET AL KHALAF, 735785649 nolu gönderiniz 1292 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735785649\n\nDear MUHAMMET AL KHALAF, your shipment with 735785649 was delivered to you with the delivery code 1292. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735785649\n\n\nBICARGO','1','7199e362-dd55-4a37-aba4-6ef7822710ed',NULL),
('c5f78597-d4bc-4d61-977b-ebad5a66d25c','32495243203','22315159 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1576 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22315159\n\nYour shipment with the number 22315159 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1576. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22315159\n\nBICARGO','1','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL),
('c5f98f70-5470-4d62-9281-c888ffa84512','4917681126034','Sayın MUSTAFA AZAMİ , 786668251 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786668251\n\nDear MUSTAFA AZAMİ , your shipment with 786668251 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786668251\n\nBICARGO','1','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('c5fb2066-7d0f-44cf-b5b4-e0352bec3ea1','4915773904587','Sayın ROJDA BİNGÖL, 598665171 nolu gönderiniz 4755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598665171\n\nDear ROJDA BİNGÖL, your shipment with 598665171 was delivered to you with the delivery code 4755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598665171\n\n\nBICARGO','1','c6a4b643-c681-400b-be0f-c368348b5bbd',NULL),
('c5fe83c0-b754-49cc-98b7-9049ab6de29c','33785512732','745350597 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745350597\n\nYour shipment with the number 745350597 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745350597\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('c5fffa36-5d51-4db0-a842-adc197027cec','491623487541','Sayın ABDULLAH SÖNMEZ, 428107185 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428107185\n\nDear ABDULLAH SÖNMEZ, your shipment with 428107185 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428107185\n\nBICARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('c60160d7-6f14-46ba-8db4-26a5ad635a96','32484930252','Sayın SEVAY NİKOLAEVA YANKOVA, 517895646 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517895646\n\nDear SEVAY NİKOLAEVA YANKOVA, your shipment with 517895646 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517895646\n\nBICARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('c6058648-1150-4e20-a343-00bdb417cc6a','4368181402521','Sayın ORHAN GAZİ ÇEKİCİ, 371699257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371699257\n\nDear ORHAN GAZİ ÇEKİCİ, your shipment with 371699257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371699257\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('c60bbfed-4329-44a7-a2e1-454a9fe7b043','905073106101','Sayın yetkili; TUNCAY KOÇOĞLU adlı müşterinize 465844619 nolu gönderinizin MASA + 6 SANDALYE ürünü 6 parça halinde GARDEROBE MOBİLYA adresinizden 07.03.2025 14:27:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('c60e037b-beb4-466b-ae97-49185b9c3752','905312762034','Sayın yetkili; YUSA ELLİALTI adlı müşterinize 808427332 nolu gönderinizin Masa Takımı ürünü 8 parça halinde MASAMİ adresinizden 12.09.2025 11:04:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('c60ead25-4852-4134-a5a4-b1c82affabb2','491787816278','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('c61eabbe-a0d5-4de2-ad7a-00a096b9d573','905335511664','Sayın yetkili; ENDER CAN ORHAN adlı müşterinize 371836215 nolu gönderinizin traverten masa sehpa ürünü 1 parça halinde Fatura adresinizden 13.05.2025 11:26:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('c622cc3f-7941-44f9-8ae7-d25ba4101b96','4917630185368','Sayın MELİH ÜNAL, 478235858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478235858\n\nDear MELİH ÜNAL, your shipment with 478235858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478235858\n\nBICARGO','1','72c7ddf2-414a-488a-9bfd-e7e85cc4fb6b',NULL),
('c62310d9-d446-4df1-9585-1d4372e757fe','01634672803','Sayın SILA SEVİL İLGÜN, 644877864 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644877864\n\nDear SILA SEVİL İLGÜN, your shipment with 644877864 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644877864\n\nBICARGO','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('c62875c9-7956-4e85-aa54-25bd64d16ecf','330624632282','982685222 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3770 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982685222\n\nYour shipment with the number 982685222 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3770. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982685222\n\nBICARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('c630a5d3-a213-48da-b349-96ce66f43ba5','905442774505','Sayın yetkili; ONUR COŞKUN  adlı müşterinize 65754067 nolu gönderinizin Traverten masa kasası  ürünü 1 parça halinde Fatura adresinizden 07.08.2025 14:54:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('c6345634-87a0-4c5f-87b3-e94074dca40c','32490369779','Sayın ALİ ERKOCA, 745177264 nolu gönderiniz 1788 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745177264\n\nDear ALİ ERKOCA, your shipment with 745177264 was delivered to you with the delivery code 1788. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745177264\n\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('c63478c7-9aa7-4ec7-bef2-fe8d32c7e952','491729060799','Sayın YUSUF ASLANYÜREK, 478746196 nolu gönderiniz 6780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478746196\n\nDear YUSUF ASLANYÜREK, your shipment with 478746196 was delivered to you with the delivery code 6780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478746196\n\n\nBICARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('c6398d7b-89e9-4b6e-b069-3a95974971d9','905350349029','MELİSA YILMAZ adlı müşterinizin 203519424 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('c63de493-75f6-4457-b105-172b0139fb01','905454259202','NURCAN MANSUR adlı müşterinizin 478377442 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32ce6385-317d-48fc-9fc4-c553326c562b',NULL),
('c640d928-dcef-4afb-8a17-3f7bf15bbecc','905054335859','NUSRET GÜNEŞ  adlı müşterinizin 501163993 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','e3943ece-5f39-454b-89e6-213b14b5658f',NULL),
('c6421b25-a8db-4a9f-99b9-44b9a3d994c9','33608972898','221803289 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4471 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221803289\n\nYour shipment with the number 221803289 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4471. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221803289\n\nBICARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('c6446970-73b4-4754-ab7d-ccf033af053b','4915753617776','Sayın MAHRİCAN DERİN, 501848451 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501848451\n\nDear MAHRİCAN DERİN, your shipment with 501848451 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501848451\n\nBICARGO','1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL),
('c645b665-6081-41da-80ed-707160d5b917','31645212604','745243104 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9956 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745243104\n\nYour shipment with the number 745243104 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9956. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745243104\n\nBICARGO','1','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL),
('c64829b5-c28d-4331-85c5-97bc73b56a1f','4915206306725','745813483 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5941 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745813483\n\nYour shipment with the number 745813483 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5941. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745813483\n\nBICARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('c6580417-d9a6-4c86-a674-5c55986c51dc','4915147045689','Sayın ZEHRA ÖZALP, 412107970 nolu gönderiniz 2208 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412107970\n\nDear ZEHRA ÖZALP, your shipment with 412107970 was delivered to you with the delivery code 2208. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412107970\n\n\nBICARGO','1','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL),
('c65becca-4343-44bb-9d79-635554982760','4917683344866','745771664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4975 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745771664\n\nYour shipment with the number 745771664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4975. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745771664\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('c65e515c-4a7c-4ae5-ad45-d71caca83f59','905335708965','MAHMOUD AJİ adlı müşterinizin 248948777 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','c139f73d-4a85-4217-8011-d483b3fabd11',NULL),
('c66a90a7-9767-4bf9-99d9-eb07faa9646f','4915236632469','Sayın RUHİ MANAV , 79354282 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/79354282\n\nDear RUHİ MANAV , your shipment with 79354282 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/79354282\n\nBICARGO','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('c6702dee-1d1e-4625-8fdc-87cf63caec52','4560523452','İLETİŞİM\n					Furkan şöför = +905078826436','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('c6725f2f-9a1e-4f7a-8b75-8a363bb096ab','905461661672','MELEK IŞIK adlı müşterinizin 64418413 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('c673ef52-1494-419c-9636-40af36aeff41','436608590261','Sayın AYHAN ÇEKİ, 598758154 nolu gönderiniz 1308 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598758154\n\nDear AYHAN ÇEKİ, your shipment with 598758154 was delivered to you with the delivery code 1308. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598758154\n\n\nBICARGO','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('c6745a1e-1575-4a47-a4dc-31316f31c5d9','4917624766377','Sayın ALİM BAŞ, 50133574 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/50133574\n\nDear ALİM BAŞ, your shipment with 50133574 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/50133574\n\nBICARGO','1','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL),
('c675e20e-1469-4646-8bbb-64298403f52a','436607735988','DRİVER NUMBER\n					905541100849','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('c67623f7-23a5-4eb5-be7b-e75692d4a6c3','41797024262','Sayın GÜLŞAH KUŞ, 745219309 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745219309\n\nDear GÜLŞAH KUŞ, your shipment with 745219309 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745219309\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('c6768e9c-3597-422c-9d05-60b422e67e9c','491726468929','598492066 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598492066\n\nYour shipment with the number 598492066 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598492066\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('c6934514-56ef-43c3-8140-9dd23653a98c','905461661672','TEVFİK KÜÇÜK adlı müşterinizin 644513470 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('c696de50-8fc4-4b6a-8db6-0f34857580b0','905336367828','Sayın yetkili; LOULOU FİRAS  adlı müşterinize 982754836 nolu gönderinizin yatak odası  ürünü 1 parça halinde Fatura adresinizden 15.02.2025 11:50:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('c6986fb2-fcb6-475e-ab14-cf28ef8706d6','05388618969','NURCAN KURNAZ adlı müşterinizin 786252388 nolu gönderisi 2 parça halinde yola çıkmıştır.','2','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('c69d0168-410c-413e-b68f-3566c5028b90','436603406293','EDİSA MUSTAFSOVSKA adlı müşterinizin 675412794 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('c69dbff9-c04d-451f-a9d4-cec369678bf2','491744713856','Sayın BERKAN AKTÜRK, 371823380 nolu gönderiniz 6775 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371823380\n\nDear BERKAN AKTÜRK, your shipment with 371823380 was delivered to you with the delivery code 6775. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371823380\n\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('c69e6d1c-2e3e-4249-9cdc-ed404e508b71','905540182920','412800723 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2459 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412800723\n\nYour shipment with the number 412800723 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2459. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412800723\n\nBICARGO','1','d6348c7e-4b86-444e-859f-29dce263d04b',NULL),
('c6a21a0e-c5b6-4261-a41f-e49636644541','31629103799','011573387 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10729 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011573387\n\nYour shipment with the number 011573387 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10729. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011573387\n\nBICARGO','1','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('c6a6e7db-dc9e-4c6a-87ca-203b6959b8fe','905331602195','Sayın yetkili; HASAN BİLECEN adlı müşterinize 221121416 nolu gönderinizin 80x120  traverten orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:33:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d310e8b9-ad7b-4f19-bd89-fcca5cd5b30c',NULL),
('c6b2d774-71c3-4f05-9821-c33b2fb2105f','905335511664','Sayın yetkili; DUYGU METE adlı müşterinize 371394707 nolu gönderinizin seramik masa ürünü 3 parça halinde Seramik Masa Üreticisi adresinizden 28.04.2025 15:06:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('c6b69dd8-ca47-4506-86bb-b54b313b6ca2','491787816278','Sayın SEMİH TÜRKOĞLU, 371696812 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371696812\n\nDear SEMİH TÜRKOĞLU, your shipment with 371696812 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371696812\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('c6b761ad-0d87-4cdc-908d-07212281b3d3','905331602195','KAYHAN BOZKURT adlı müşterinizin 221692379 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('c6b9e670-8070-4da6-8c0e-c53cbfede0e0','4917671929975','Sayın SEMANUR GÜLER, 598781522 nolu gönderiniz 6244 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598781522\n\nDear SEMANUR GÜLER, your shipment with 598781522 was delivered to you with the delivery code 6244. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598781522\n\n\nBICARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('c6bae7dd-593c-4604-88da-cdc860f621a0','491636081743','Sayın İLHAM SEVAL İNDİRME, 478259590 nolu gönderiniz 10124 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478259590\n\nDear İLHAM SEVAL İNDİRME, your shipment with 478259590 was delivered to you with the delivery code 10124. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478259590\n\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('c6c52479-82b3-427f-bb6b-83d21278fce2','33644764905','745175736 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6219 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745175736\n\nYour shipment with the number 745175736 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6219. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745175736\n\nBICARGO','1','dbc44baf-94fa-4586-8bc2-04870b635e12',NULL),
('c6c691a5-f16a-4939-ac64-19b2ba493f56','491621366098','Sayın ÜMRAN HANIM, 248853188 nolu gönderiniz 5884 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248853188\n\nDear ÜMRAN HANIM, your shipment with 248853188 was delivered to you with the delivery code 5884. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248853188\n\n\nBICARGO','1','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL),
('c6c7bf22-41e3-4e05-a727-ed3ab903be0b','33685686692','478520504 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478520504\n\nYour shipment with the number 478520504 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478520504\n\nBICARGO','1','22f306ed-6c48-4e15-a370-d8f8b96b6499',NULL),
('c6caca45-6e75-42e8-a4fb-22db5ffe6b49','33610635771','221746947 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3414 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221746947\n\nYour shipment with the number 221746947 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3414. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221746947\n\nBICARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('c6cdad14-2a4e-4836-85c6-99e8b63466cf','49151151816534','Sayın SEPİDEH AJORLOO, 478854135 nolu gönderiniz 3399 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478854135\n\nDear SEPİDEH AJORLOO, your shipment with 478854135 was delivered to you with the delivery code 3399. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478854135\n\n\nBICARGO','2','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('c6cdbdd0-638e-4d0c-b2be-9d27bdfbfbc4','905461661672','Sayın yetkili; MAZHAR BAYMAN SSH adlı müşterinize 644803178 nolu gönderinizin başlık ürünü 2 parça halinde ALBESSA DESİGN adresinizden 08.08.2025 15:20:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('c6d4aeed-21cc-4485-bc93-971b95d8645f','905079047428','RAHİMİ adlı müşterinizin 449445608 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','72028383-f354-4335-af98-094bc771c86d',NULL),
('c6d67f29-2ea9-4604-99cf-5f02da14e658','32484569917','Sayın FEHMİ TÜRK, 221570854 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221570854\n\nDear FEHMİ TÜRK, your shipment with 221570854 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221570854\n\nBICARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('c6f0329f-56d1-4707-bba1-8d9af777c5a0','491789155540','517619393 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1250 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517619393\n\nYour shipment with the number 517619393 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1250. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517619393\n\nBICARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('c6f18f72-2cfd-4ec1-bf20-9c23198cc231','33609521096','Sayın İPEK ÇİFTÇİ, 478300917 nolu gönderiniz 6660 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478300917\n\nDear İPEK ÇİFTÇİ, your shipment with 478300917 was delivered to you with the delivery code 6660. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478300917\n\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('c6f5c3e1-afb7-4c2c-8493-722869e6126d','905327099916','Sayın yetkili; FERİDUN BAYER adlı müşterinize 959168443 nolu gönderinizin AKRA YATAK ODASI ürünü 23 parça halinde EKER\'S HOME adresinizden 22.09.2025 11:28:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('c6f7e659-585f-44d4-8f1d-f816e31b7a03','05388618969','Sayın yetkili; MADLİN FARHAN adlı müşterinize 786811264 nolu gönderinizin Koltuk ürünü 5 parça halinde Muamer wom koltuk adresinizden 22.10.2025 16:26:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','b98ee553-278c-457b-9e14-25f2810f7f82',NULL),
('c6fc61e0-a240-48a4-b4eb-6666e31c2d17','32487862116','Sayın TÜLAY KILIÇ, 982880880 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982880880\n\nDear TÜLAY KILIÇ, your shipment with 982880880 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982880880\n\nBICARGO','1','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL),
('c6fcac63-5009-4a51-8f41-b512b8e85269','4917620989771','Sayın KAMER DUHAN ECE, 831899043 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/831899043\n\nDear KAMER DUHAN ECE, your shipment with 831899043 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/831899043\n\nBICARGO','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('c701bff9-5e28-44d5-af20-3ef8764067aa','905363385813','SONER UZUN adlı müşterinizin 976680764 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('c713b3ae-469b-423e-ae51-20d0ca3d9fb3','436769084848','657635062 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1160 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657635062\n\nYour shipment with the number 657635062 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1160. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657635062\n\nBICARGO','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('c7154f5a-fcfc-4677-806b-39d95bbbca91','4915258412907','Sayın SERHAT TAŞÇEVİREN, 221187320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221187320\n\nDear SERHAT TAŞÇEVİREN, your shipment with 221187320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221187320\n\nBICARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('c71c1241-b418-4d59-83d6-7203e274c98e','905517075149','Sayın yetkili; YAŞAR YALMAN adlı müşterinize 478816988 nolu gönderinizin BAZA AYAK UCU ürünü 1 parça halinde acca adresinizden 10.09.2025 14:21:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('c71e364c-50cb-48fa-9fde-e000be424c44','320465508210','Sayın MUSA LÖK, 517521279 nolu gönderiniz 7010 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517521279\n\nDear MUSA LÖK, your shipment with 517521279 was delivered to you with the delivery code 7010. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517521279\n\n\nBICARGO','1','416cbe10-f76a-4e3f-b035-b846a08cc8a3',NULL),
('c71ef25f-b8a1-493d-8d61-9d6600e939ab','4917672226001','598157006 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7649 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598157006\n\nYour shipment with the number 598157006 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7649. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598157006\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('c7267326-d37d-4b99-9e3f-9f74b78829d6','4917632147972','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('c7270650-f059-4f80-9075-c3f0db8ec718','5365908694','223441694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2972 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223441694\n\nYour shipment with the number 223441694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2972. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223441694\n\nBICARGO','2','70777159-ea94-424b-8d36-a3768ef41772',NULL),
('c728648c-ebe2-45f5-8f0c-a7ec360ba5c7','905331602195','Sayın yetkili; SEMİH TASKELE adlı müşterinize 221693523 nolu gönderinizin 90*190 MİLAS MASA ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 10.02.2025 12:22:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('c7288f38-5c1e-4bc5-8634-09e15016f007','905331602195','AİCHEH EL-KATİB adlı müşterinizin 221416475 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('c72c9ead-aa21-4410-87dc-800dcd5e2b3f','905336367828','TÜLAY KILIÇ adlı müşterinizin 982880880 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','261c7a7a-8bf9-4d02-8660-2292232ca442',NULL),
('c72d824a-c2ed-4250-8256-7cb2d09f2285','491712300528','Sayın FATMA ERDEM, 598161990 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598161990\n\nDear FATMA ERDEM, your shipment with 598161990 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598161990\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('c72d9acc-63f4-46a2-aafc-42c7ea393e8d','491791463784','598387436 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598387436\n\nYour shipment with the number 598387436 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598387436\n\nBICARGO','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('c730129e-ecc6-4ca4-a526-79005a01db12','905313340045','NURİYE İKİZKAYA adlı müşterinizin 437854000 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('c73175ef-dbc0-4500-aa2e-449eff2adf86','33627391444','İletişim \n					Şöför Uğur Acar +905424435917','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('c73b1ebb-545a-4d2d-b72f-c174869b13cb','4917670009817','Sayın ROSA DİDİEVA, 52817450 nolu gönderiniz 6788 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/52817450\n\nDear ROSA DİDİEVA, your shipment with 52817450 was delivered to you with the delivery code 6788. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/52817450\n\n\nBICARGO','1','2094040d-2cfd-4028-9115-e50a2e855156',NULL),
('c73d2373-ec17-4d11-a5e4-48409a470330','4917663383581','745661183 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1157 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745661183\n\nYour shipment with the number 745661183 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1157. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745661183\n\nBICARGO','1','39d4eef6-e838-4975-96ef-7f71258c7d3a',NULL),
('c73d8b9c-7b07-4e8a-856f-cd7745a38c33','4550323382','Sayın RWWHİKA KATUSABE , 982484679 nolu gönderiniz 4717 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982484679\n\nDear RWWHİKA KATUSABE , your shipment with 982484679 was delivered to you with the delivery code 4717. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982484679\n\n\nBICARGO','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('c740fbd2-1df6-4d5e-a8dc-ef2e7129a501','4369919273534','437545074 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6536 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437545074\n\nYour shipment with the number 437545074 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6536. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437545074\n\nBICARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('c740fe8b-36ea-4384-9f3c-5357f9ff6a1e','905461661672','Sayın yetkili; BEYZA ÇALIK adlı müşterinize 644644115 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde LENTE HOME adresinizden 29.07.2025 10:45:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('c7438526-5032-4cf9-8ef7-f7d1b5e89937','4917645275694','İLETİŞİM\n					Furkan şöför = +905078826436','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('c7451fe7-f86c-43c7-8a67-0b828314a68f','4915124276955','Sayın ABUZER TEKCE, 319232330 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319232330\n\nDear ABUZER TEKCE, your shipment with 319232330 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319232330\n\nBICARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('c753c753-88c9-431d-8309-a173dfb191ad','4917660473262','Sayın GAMZE ŞAŞMA, 644523362 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644523362\n\nDear GAMZE ŞAŞMA, your shipment with 644523362 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644523362\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('c7558dd3-849d-4746-ad8e-a208e7ef00e7','905335511664','Sayın yetkili; BERKAN AKTÜRK adlı müşterinize 371823380 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 24.04.2025 18:13:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('c75b9f55-de80-49ee-b934-7dd274f80da1','491716488120','Sayın AYŞEGÜL TELLİ, 449962472 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449962472\n\nDear AYŞEGÜL TELLİ, your shipment with 449962472 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449962472\n\nBICARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('c75cd65c-3f79-46e0-b7fa-5371d199720c','905350617509','SERKAN ELGİT  adlı müşterinizin 61310831 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('c75e3cd7-5208-4b0d-a582-99943fe534f2','905335511664','Sayın yetkili; ESMA MERT adlı müşterinize 371282604 nolu gönderinizin sandalye ürünü 3 parça halinde Sandalyeci Bekir adresinizden 30.06.2025 13:50:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('c75ea8ad-b96f-4143-afc4-5c7f758a621a','905363385813','MEHMET KANBEROĞLU adlı müşterinizin 976441354 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('c76542bd-adab-4c25-a314-eda7a86d87c8','4366488118073','Sayın SARAH KLEİN, 505153730 nolu gönderiniz 8869 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505153730\n\nDear SARAH KLEİN, your shipment with 505153730 was delivered to you with the delivery code 8869. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505153730\n\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('c76aec6a-4fba-4761-b7f6-7c60b8402110','4917620787419','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('c76c0902-00a3-4d5a-910b-38c1f1874ca4','905321608709','ZAKARİA MASHHOD adlı müşterinizin 248352114 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','adf0440c-3715-4603-a3a4-91b6f557e095',NULL),
('c76d46a0-b173-431c-80cf-5c185420ca2b','905078062550','VELİ ŞAHİN adlı müşterinizin 598168850 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('c76ddf66-23af-4a7b-9154-f95b526d6d05','41765187366','428958532 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2235 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428958532\n\nYour shipment with the number 428958532 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2235. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428958532\n\nBICARGO','1','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL),
('c76facbc-27d9-4227-bfb5-a0ba135a062d','33621123208','Sayın İBRAHİM TANKAZ, 478354582 nolu gönderiniz 1473 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478354582\n\nDear İBRAHİM TANKAZ, your shipment with 478354582 was delivered to you with the delivery code 1473. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478354582\n\n\nBICARGO','1','9944adb4-543d-4384-9dd3-6faf5055bb85',NULL),
('c77810f1-31a5-4111-9870-803749a4d1d0','410786081031','613378961 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4827 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613378961\n\nYour shipment with the number 613378961 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4827. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613378961\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('c77cc1cd-7e86-4246-b58c-cd87ddd97690','4917681017112','Sayın MELİSSA KARACAKAYA, 598961911 nolu gönderiniz 9315 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598961911\n\nDear MELİSSA KARACAKAYA, your shipment with 598961911 was delivered to you with the delivery code 9315. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598961911\n\n\nBICARGO','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('c781532d-28aa-42af-b212-6ba5f6a407f2','4917623201470','Sayın ŞÜKRAN ALP, 614650407 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614650407\n\nDear ŞÜKRAN ALP, your shipment with 614650407 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614650407\n\nBICARGO','1','4978d2e1-4aa7-4597-b112-e0c303bb3df2',NULL),
('c7853180-b3ad-4591-be1a-acc81d3bcb97','4915161718333','Sayın ENİSA YEKTA , 923436295 nolu gönderiniz 8819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/923436295\n\nDear ENİSA YEKTA , your shipment with 923436295 was delivered to you with the delivery code 8819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/923436295\n\n\nBICARGO','1','94ed4318-546d-4bfe-8ecf-e1631bc2b933',NULL),
('c78cbb6b-936f-4145-a773-be2f13f45996','41764721719','DRİVER\n					ADNAN\n+905354622027','1','264eba0c-b5ea-449d-bd51-0689287b0593',NULL),
('c78fd6b1-c2e0-4e1a-96d5-651443614b23','491723226773','Sayın MÜZEYYEN ÖZDEMİR , 910163142 nolu gönderiniz 5791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910163142\n\nDear MÜZEYYEN ÖZDEMİR , your shipment with 910163142 was delivered to you with the delivery code 5791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910163142\n\n\nBICARGO','1','54e0df3d-9714-48db-8da6-46af349072d3',NULL),
('c7908931-71b7-4f09-9491-bff7759b91b9','905325000478','BRÜHL CAMİSİ adlı müşterinizin 412441586 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2754ec7f-f526-44d3-8178-29280a48b322',NULL),
('c79190f0-f0f5-45ff-9b14-095a236e7002','33627391444','Sayın FİRDEVS ORHAN, 221407228 nolu gönderiniz 1621 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221407228\n\nDear FİRDEVS ORHAN, your shipment with 221407228 was delivered to you with the delivery code 1621. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221407228\n\n\nBICARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('c794227c-6291-47b6-89c4-8f6ee93f96ba','905059175469','Sayın yetkili; GÜRSEL KURTULMUŞ adlı müşterinize 428659303 nolu gönderinizin koltuk 3+3+1+1 ürünü 4 parça halinde novano adresinizden 14.08.2025 17:30:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('c7963a64-4778-460b-93ec-4e6b8726f3c0','33682073450','Sayın SYLVİA LOPEZ, 478598314 nolu gönderiniz 8015 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478598314\n\nDear SYLVİA LOPEZ, your shipment with 478598314 was delivered to you with the delivery code 8015. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478598314\n\n\nBICARGO','1','2068e6bf-22ee-4b92-9be7-bbb6d829aaca',NULL),
('c7a1cc87-81d1-42c5-9e68-a0cec73cc412','1111111111111','Sayın ERGÜN GÜZEL, 193362317 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/193362317\n\nDear ERGÜN GÜZEL, your shipment with 193362317 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/193362317\n\nBICARGO','2','a5079bde-b9a2-41dc-aab2-fdf041c914e2',NULL),
('c7a41206-ce95-4283-bc90-622c7c05a80e','905064141111','Sayın yetkili; HATUN ŞİMŞEK adlı müşterinize 842151692 nolu gönderinizin NEVADA SANDALYE ürünü 3 parça halinde masami  adresinizden 08.10.2025 16:55:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('c7a43113-d3ce-48f5-8ca5-d58e16dafa36','4915752948798','Sayın METİN PEKSERT SSH, 745933378 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745933378\n\nDear METİN PEKSERT SSH, your shipment with 745933378 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745933378\n\nBICARGO','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('c7a467b0-0909-4acf-b1b7-33d61c2285cb','4917672226001','İletişim \n					Şöför Murat : +905321616048','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('c7a607ea-f11f-4be9-9d55-77c71509a9f9','905363385813','Sayın yetkili; AYŞE ŞEKER adlı müşterinize 976114868 nolu gönderinizin SANDALYE ürünü 4 parça halinde Lego Chair adresinizden 25.06.2025 15:13:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('c7ab650c-6f95-4d54-bb82-53aa0ee44668','905335511664','NEŞE ERĞAT adlı müşterinizin 371363007 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('c7abba57-094b-4ee0-a4bc-c7b14cdfd71d','905313340045','Sayın yetkili; GAMZE ŞAHİN adlı müşterinize 437400305 nolu gönderinizin sandalye ürünü 4 parça halinde ard sandalye adresinizden 09.05.2025 10:26:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('c7b16aa9-86b0-430d-9b2d-6247b74327f9','905304259202','Sayın yetkili; BELKISA KAPLAN adlı müşterinize 478403794 nolu gönderinizin köşe takımı ürünü 4 parça halinde çelikbey inegöl depo adresinizden 09.04.2025 17:19:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0f8549b-c1c2-4996-bf7f-22c82846b134',NULL),
('c7b8b375-d128-4bf8-a4df-2615ae233d8e','905301592882','AYHAN KAHRAMAN adlı müşterinizin 91028874 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('c7c33540-631b-4dc4-b7d6-0cb7c8ff3947','5325000478','Sayın YILDIZ  ORHAN, 12.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3097000\nŞifre : 3097000\n			\nBİCARGO','1',NULL,'3e0e9dd7-0a00-4aff-a011-f48405df943a'),
('c7c4e9c5-76a5-42ba-a1b0-f6c8534dfb5c','905335511664','HÜMEYRA ZEYREK adlı müşterinizin 37152330 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('c7c66665-647b-44d4-a865-6a8fd5af55db','00491742894095','614659832 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9928 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614659832\n\nYour shipment with the number 614659832 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9928. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/614659832\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('c7c76698-b12c-4d9a-9947-f77f70ad75d5','4915226123899','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('c7c81640-26bc-48ed-a78a-a395aa38a7d5','33769173074','486609627 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3885 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486609627\n\nYour shipment with the number 486609627 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3885. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486609627\n\nBICARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('c7ca7d72-b331-44a3-b3f1-d28851dfcb9c','5325000478','Sayın NECDET KACAR, 21.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1231099\nŞifre : 1231099\n			\nBİCARGO','1',NULL,'d123109e-9a26-4781-939a-87cda202f683'),
('c7caf17a-86c1-4bd3-aab1-8631ec1a5583','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160*200 YATAK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('c7cfe91c-24c8-4d17-a6cb-47c77a76d692','4917645275694','437152964 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8633 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437152964\n\nYour shipment with the number 437152964 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8633. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437152964\n\nBICARGO','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('c7d5a80b-16df-4a72-a2c5-56d9d10a2bdf','41791530005','DRİVER NUMBER\n					905541100849','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('c7d7152c-7d55-49af-bfcf-fe5694497039','491788201397','Sayın BURHAN SARIKURT, 613431273 nolu gönderiniz 8265 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613431273\n\nDear BURHAN SARIKURT, your shipment with 613431273 was delivered to you with the delivery code 8265. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613431273\n\n\nBICARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('c7d82d66-e700-4b46-a03d-598c968d62d2','491727368947','598954734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5927 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598954734\n\nYour shipment with the number 598954734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5927. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598954734\n\nBICARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('c7d9731b-c87a-41f5-b23f-1c12b127562a','905075277637','EMRE YILMAZ SSH  adlı müşterinizin 745771664 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('c7dd8f91-c587-4f47-9fd2-0430e9521feb','905394878216','Sayın yetkili; NUR SANDALCILAR adlı müşterinize 517291063 nolu gönderinizin SSH ürünü 5 parça halinde Fatura adresinizden 14.02.2025 09:57:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('c7e56d91-35c7-4dbd-9711-eab3494453e1','905075277637','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin GOLF KOLTUK TAKIMI  ürünü 3 parça halinde ALYAMO  adresinizden 14.07.2025 17:48:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('c7e7d624-d4b9-4e67-8c31-acc7fcd1cf35','905078062550','MENEKŞE SEVEN adlı müşterinizin 598508016 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','af5fa1f9-a15e-47b6-96f7-530e8fa3fec2',NULL),
('c7e8e77a-6840-4d15-b999-ed8192f6f977','33767355660','Sayın GAMZE ŞAHİN, 437400305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437400305\n\nDear GAMZE ŞAHİN, your shipment with 437400305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437400305\n\nBICARGO','1','458ad7cc-9bf1-47ee-87b0-b3ad346d4b07',NULL),
('c7ec1b9b-8cb8-4274-83c8-55d11dc748ff','491788532068','Sayın STEFANİA KİOSKER, 371734068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371734068\n\nDear STEFANİA KİOSKER, your shipment with 371734068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371734068\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('c7ece04f-601e-4795-8417-089f72b529de','905301592882','NESLİHAN KÖSEM		 adlı müşterinizin 910316067 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('c7eef286-52bb-42c0-a050-8bcfef3c7008','00491749246020','Sayın MESUT BEY, 248720273 nolu gönderiniz 7760 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248720273\n\nDear MESUT BEY, your shipment with 248720273 was delivered to you with the delivery code 7760. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248720273\n\n\nBICARGO','2','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL),
('c7f3164d-563a-4b72-9bdb-4fb6fc809a44','905333221039','HEROLİND PROVATAJ adlı müşterinizin 750496630 nolu gönderisi 24 parça halinde yola çıkmıştır.','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('c7f8c41b-2e09-4398-a13d-e8d7a0831da0','4917672416653','Sayın HASSAN KHORRAM, 598441020 nolu gönderiniz 2280 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598441020\n\nDear HASSAN KHORRAM, your shipment with 598441020 was delivered to you with the delivery code 2280. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598441020\n\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('c7f8f701-a9b0-4932-808d-19b0fc864882','5325000478','Sayın MİTHAT MİTHAT, 08.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6187376\nŞifre : 6187376\n			\nBİCARGO','1',NULL,'6b187f3a-7677-4be2-9b23-6ba035509beb'),
('c7fc5862-ab20-437d-afb7-8d15f42f9f05','33664143322','Sayın HASAN DOYRAN, 454880224 nolu gönderiniz 5817 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/454880224\n\nDear HASAN DOYRAN, your shipment with 454880224 was delivered to you with the delivery code 5817. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/454880224\n\n\nBICARGO','1','674d4f44-d9cc-40a1-9116-92e99f843f11',NULL),
('c804331f-3e65-4198-866e-10c2acef86e5','491628991076','Sayın DİLEK KHABİL, 765729280 nolu gönderiniz 7196 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765729280\n\nDear DİLEK KHABİL, your shipment with 765729280 was delivered to you with the delivery code 7196. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765729280\n\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('c80cb394-7422-43ab-a9bd-a672e3234f81','905399445188','Sayın yetkili; AAAAAA adlı müşterinize 76913598 nolu gönderinizin SANDALYESİ ürünü 8 parça halinde MODAPARK adresinizden 05.08.2025 14:05:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a29f5d76-e07a-44c2-ae0c-d3be10092d5a',NULL),
('c80edd4b-9f16-4c3c-9c9f-e6309ab8bafd','905356395415','MURAT AKTAŞ adlı müşterinizin 163401674 nolu gönderisi 87 parça halinde yola çıkmıştır.','1','9ca5ad68-0419-4edf-862a-2a6e5047e63d',NULL),
('c80f0d04-294b-4612-8b22-67cd919acbde','491590140330','644344492 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4836 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644344492\n\nYour shipment with the number 644344492 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4836. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644344492\n\nBICARGO','2','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('c81d32dd-fe28-412a-a7a0-13d730c6b534','905335708965','OKAN ERTÜRK adlı müşterinizin 735233033 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL),
('c81e0719-d3d8-4a2b-8aea-2198dbfe67f6','436604393878','817488957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3179 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817488957\n\nYour shipment with the number 817488957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3179. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817488957\n\nBICARGO','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('c8203025-7828-4d42-a047-457bd2fc4faa','491777519570','Sayın KIYMET DALMAN(K), 644742878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644742878\n\nDear KIYMET DALMAN(K), your shipment with 644742878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644742878\n\nBICARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('c82302a2-bbea-4465-8c0e-940fb9d174ca','491749683330','248315101 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4020 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248315101\n\nYour shipment with the number 248315101 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4020. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248315101\n\nBICARGO','1','d6ceac62-a798-4065-a2db-6b4d596f974a',NULL),
('c82e259a-6bf3-4c77-a661-31fc83d18027','491636718375','478240909 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3672 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478240909\n\nYour shipment with the number 478240909 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3672. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478240909\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('c83489e7-ffd3-4ac9-99fe-a0b6c3f16173','4917672242930','Sayın TUNAY KOCATÜRK, 644196383 nolu gönderiniz 10184 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644196383\n\nDear TUNAY KOCATÜRK, your shipment with 644196383 was delivered to you with the delivery code 10184. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644196383\n\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('c83d307e-39c0-41f5-8f6c-6a02fb330934','33635494107','745350597 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745350597\n\nYour shipment with the number 745350597 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745350597\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('c83ebcb1-9fb9-42d2-b218-7ba0d8a21b45','32484532916','Sayın MEHMET ERTÜRK, 338737901 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338737901\n\nDear MEHMET ERTÜRK, your shipment with 338737901 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338737901\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('c8513bc8-3ef0-4d74-baf5-fd93c4f0ad1c','3656253652736275','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','2','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('c8530160-9a0f-4619-9756-ff026a52a279','4915756416500','Sayın LOSİF LOUNT MİRİUTA, 982592763 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982592763\n\nDear LOSİF LOUNT MİRİUTA, your shipment with 982592763 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982592763\n\nBICARGO','1','23d90d82-1e00-4325-8ee3-52a0d3809873',NULL),
('c85a6837-bbb3-4858-b663-121da6610907','905075277637','MEHMET ANDIÇ adlı müşterinizin 745759881 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('c85bfdc8-fec8-4a6f-8e91-55fe0e4b0ccd','905323540531','GÜRKAN DAĞ  adlı müşterinizin 904863225 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','92da393c-5934-4ca0-96a4-6f7b809428cc',NULL),
('c85d7c3d-55bc-4449-b2ec-08689a70a317','491747823424','Sayın TUĞÇE ÖZKAYA, 598587609 nolu gönderiniz 8915 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598587609\n\nDear TUĞÇE ÖZKAYA, your shipment with 598587609 was delivered to you with the delivery code 8915. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598587609\n\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('c85e67d9-b5fa-42a3-b1eb-b53f7e88fab0','4917621638496','Sayın ARZU AKSİ, 745817440 nolu gönderiniz 4806 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745817440\n\nDear ARZU AKSİ, your shipment with 745817440 was delivered to you with the delivery code 4806. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745817440\n\n\nBICARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('c8637257-0a7b-4484-85f8-d344bac742f7','491636759658','644789157 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7597 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644789157\n\nYour shipment with the number 644789157 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7597. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644789157\n\nBICARGO','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('c863a451-b005-4b20-bc5a-aef17a5da50e','1122323232323232','Sayın TAŞLAR, 248475044 nolu gönderiniz 1268 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248475044\n\nDear TAŞLAR, your shipment with 248475044 was delivered to you with the delivery code 1268. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248475044\n\n\nBICARGO','2','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL),
('c864a80c-c440-4d3c-b90c-faa244de1dd4','33651400749','Sayın ÖZKAN ÖZKOŞAR, 910756975 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910756975\n\nDear ÖZKAN ÖZKOŞAR, your shipment with 910756975 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910756975\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('c867c8d7-28f8-4d50-a16e-47eb4b62e7be','905304259202','Sayın yetkili; GÖKHAN EYCAN  adlı müşterinize 478751440 nolu gönderinizin SSH SANDLAYE  ürünü 1 parça halinde çelikbey inegöl depo adresinizden 23.02.2025 15:12:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('c8680214-7818-4a66-ae1b-9a5a1e881fa3','905313340045','MÜCAHİD AL SSH adlı müşterinizin 437379015 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('c86c8186-1904-4c97-ad18-355a0b823b87','905079047428','HASAN GHASEMİ adlı müşterinizin 449329901 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('c86e5b48-a24b-44d4-969d-78e82fc0cef7','49173496047','Sayın ABDULLAH SÖNMEZ, 428107185 nolu gönderiniz 4689 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428107185\n\nDear ABDULLAH SÖNMEZ, your shipment with 428107185 was delivered to you with the delivery code 4689. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428107185\n\n\nBICARGO','2','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('c873f8af-e642-46e2-8820-a7b91e45f86e','905059175469','İMDAT KILIÇASLAN adlı müşterinizin 428480095 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4fcf7206-6a08-4a73-833c-a5e8b873c885',NULL),
('c877168a-617e-4d61-98fe-0fdfc00e8906','330758076179','Sayın AMİNA BOUDJENNAH , 982585914 nolu gönderiniz 1214 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982585914\n\nDear AMİNA BOUDJENNAH , your shipment with 982585914 was delivered to you with the delivery code 1214. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982585914\n\n\nBICARGO','2','ccec7edf-babd-4962-8945-5f2cc49b04e9',NULL),
('c8776d5c-1a21-469b-ab55-01ead67aa92a','33650437486','Sayın DELİL ALGUNERHAN, 478677262 nolu gönderiniz 3648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478677262\n\nDear DELİL ALGUNERHAN, your shipment with 478677262 was delivered to you with the delivery code 3648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478677262\n\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('c8784cf8-2ecd-490f-9bf8-e1f1bc9a8474','33633949591','478321858 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9656 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478321858\n\nYour shipment with the number 478321858 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9656. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478321858\n\nBICARGO','1','905ad5bb-94b2-42ac-8672-ce8d147a9563',NULL),
('c87e5316-11b2-41e1-bdc6-bcb4d7698010','1111111111','Sayın HEROLİND PROVATAJ, 750496630 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750496630\n\nDear HEROLİND PROVATAJ, your shipment with 750496630 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750496630\n\nBICARGO','2','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('c87f34b1-bdbf-466f-bbcc-449ba705c0eb','905079358213','Sayın yetkili; CEYLAN ÇELİK adlı müşterinize 745747218 nolu gönderinizin KING PLATİN BAZA 160X200 1 TK  ürünü 4 parça halinde Fatura adresinizden 06.08.2025 15:16:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('c88455a8-1bae-4d23-ad7b-b6c9526b3a31','32488863952','Sayın ÖZGÜR ÇEŞME, 437694817 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437694817\n\nDear ÖZGÜR ÇEŞME, your shipment with 437694817 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437694817\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('c887b28c-24ca-4802-97b0-b0e5f9dd43e6','905079358213','HATİCE ÖZEN adlı müşterinizin 745734415 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('c888b523-4227-479b-9d41-b9aa5be0a315','905304259202','YUSUF ASLANYÜREK adlı müşterinizin 478746196 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('c88ef97c-3358-4150-9077-007172c1de78','4917672416653','598412225 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7006 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598412225\n\nYour shipment with the number 598412225 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7006. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598412225\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('c88fc898-34a3-40c5-b314-a8a3bacbeb0b','4917634403928','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('c8926e0e-05ca-4505-97ee-e33715b9e83a','905313340045','Sayın yetkili; SABRİ ÖNÜZ adlı müşterinize 437762949 nolu gönderinizin Kampanya köşe ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 29.08.2025 11:06:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dacd398a-1156-4c32-ba9e-e38cdcc1856c',NULL),
('c892a6d3-b67b-4b2a-a88f-cbef61f91a34','31641319611','338882287 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5268 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338882287\n\nYour shipment with the number 338882287 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5268. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338882287\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('c893818d-b619-4924-9a4d-241adc9adb38','905331602195','Sayın yetkili; MÜCAHİD GÜZEL adlı müşterinize 22162472 nolu gönderinizin BALAT SANDALYE ürünü 6 parça halinde ALP SANDALYE adresinizden 02.01.2025 17:12:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('c8a33275-a3da-4586-8fa1-7a930f82165e','905331602195','ARMİN IMERİ  adlı müşterinizin 221867394 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('c8aa180b-f05c-43fc-bc83-6813ff1c5ae1','049015778795333','Sayın ASAAD KEBBEH, 248418017 nolu gönderiniz 7612 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248418017\n\nDear ASAAD KEBBEH, your shipment with 248418017 was delivered to you with the delivery code 7612. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248418017\n\n\nBICARGO','2','cb3442f8-0b1a-4b4f-8d8c-fefae675f848',NULL),
('c8ad30b3-7d85-4d6a-99e5-5ca374ddf39e','905350617509','GALİNA KAMERER  adlı müşterinizin 613499620 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('c8b1f927-a0fc-422e-8073-589dc5cbbff5','4915560835617','Sayın AYCAN ÇOLAK, 371120278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120278\n\nDear AYCAN ÇOLAK, your shipment with 371120278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371120278\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('c8b3b675-6066-4ef7-abfc-78a7ceba81da','4915786757057','Sayın GÜLŞEN KARATAŞ, 644859309 nolu gönderiniz 9060 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644859309\n\nDear GÜLŞEN KARATAŞ, your shipment with 644859309 was delivered to you with the delivery code 9060. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644859309\n\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('c8b58b12-9f4e-4c80-ac08-5984f005d219','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin EVART E337 DEJAVU PORTMANTO AYNALI ürünü 1 parça halinde Fatura adresinizden 03.09.2025 14:10:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('c8b81710-9f3d-4b07-bc8f-b7c43679749e','905313340045','MARİGLEN SHKEMBİ adlı müşterinizin 437431907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('c8ba99d6-c393-4cc3-9ecd-7553bb495fa3','491771951870','Sayın AGIM NURSHOBO, 44971858 nolu gönderiniz 3327 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44971858\n\nDear AGIM NURSHOBO, your shipment with 44971858 was delivered to you with the delivery code 3327. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44971858\n\n\nBICARGO','1','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL),
('c8bf4dbc-4a18-48d7-ac63-f8608dd1ab8d','4917622920602','Sayın CANDAN ÖZDEMİR, 371251508 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371251508\n\nDear CANDAN ÖZDEMİR, your shipment with 371251508 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371251508\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('c8c00119-0cf3-4c61-9894-9a3da4a96786','4915757272301','745980941 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8167 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745980941\n\nYour shipment with the number 745980941 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8167. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745980941\n\nBICARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('c8d2c049-698e-464e-9894-0d7ed5498577','491787074737','Sayın ERKAM CAMİ, 027547681 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/027547681\n\nDear ERKAM CAMİ, your shipment with 027547681 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/027547681\n\nBICARGO','1','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL),
('c8d4a8d9-8476-42e9-b7ac-03ed77f1c549','905336367828','SELAMAWİT ESTİFANOS  adlı müşterinizin 982495052 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('c8d98ca9-4138-440e-addb-432837f01917','905354105671','LEX-DCP DETTMER CONTAİNER adlı müşterinizin 412996718 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('c8d995a5-3740-430d-9616-4758b1f49064','4369911307024','Sayın HARUN ERCAN, 127847689 nolu gönderiniz 5695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127847689\n\nDear HARUN ERCAN, your shipment with 127847689 was delivered to you with the delivery code 5695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127847689\n\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('c8da172f-ef72-4fc0-bebd-04f67f626f6c','905078062550','Sayın yetkili; FERHAD MORİD adlı müşterinize 598188038 nolu gönderinizin HALI ürünü 3 parça halinde NLUXHOME DEPO adresinizden 27.08.2025 17:36:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('c8db97d8-b6ef-482d-a603-a7c859b9a76c','905304259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin VİRAL YATAK-YEMEK-TV-ORTASEHPA (180BAZA) ürünü 1 parça halinde family adresinizden 24.06.2025 13:43:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('c8dba23f-0a3d-4f16-8a15-7c217a1f6a5e','905075277637','Sayın yetkili; AYHAN İÇEN adlı müşterinize 745813483 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü 3 parça halinde Fatura adresinizden 09.07.2025 17:29:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('c8dfede4-cc2d-456c-a377-27558f0f3a62','491621091849','Sayın SEVİM KAMER, 478524376 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478524376\n\nDear SEVİM KAMER, your shipment with 478524376 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478524376\n\nBICARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('c8f09e08-df6f-4bc7-ae61-14769df20e76','905461661672','Sayın yetkili; SİBEL ÇEVİK adlı müşterinize 644631223 nolu gönderinizin 2 AD SEHPA ürünü 3 parça halinde Masami Mobilya adresinizden 29.05.2025 17:35:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('c8f38336-7376-43f7-b568-0b3b53843761','905059175469','ERKAN BAYRAK adlı müşterinizin 428222834 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('c8f88a20-c63c-4679-909f-b41be9924ab5','4917676864801','Sayın MELEK IŞIK SSH, 644452767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644452767\n\nDear MELEK IŞIK SSH, your shipment with 644452767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644452767\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('c8fec95b-be60-416a-9933-8d16a099f6c5','05539740010','Sayın yetkili; FERHAT SANUÇ adlı müşterinize 011573387 nolu gönderinizin Traverten masa  depoya gelecek  ürünü 2 parça halinde Fatura adresinizden 24.07.2025 15:19:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('c90a7c98-e12d-40f2-9fef-565d41dc883b','4368120943457','675412794 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4020 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675412794\n\nYour shipment with the number 675412794 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4020. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675412794\n\nBICARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('c90ae9f5-106b-4cf1-88d7-f6101fff1e4d','41765187366','Sayın SÜMEYYE KARAMAN, 428958532 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428958532\n\nDear SÜMEYYE KARAMAN, your shipment with 428958532 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428958532\n\nBICARGO','1','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL),
('c90fd79e-14ee-47b3-986f-487aae223cd9','905350617509','Sayın yetkili; ELFRİDA RAİCEVİC  adlı müşterinize 613510894 nolu gönderinizin Karyola ürünü 6 parça halinde Albessa adresinizden 30.07.2025 14:23:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('c915aff6-f555-4c08-8803-86b5eb54b425','4915776361097','Sayın MUHAMMED PERVANE , 644531622 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644531622\n\nDear MUHAMMED PERVANE , your shipment with 644531622 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644531622\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('c915e4a9-72e4-4333-b67d-1fd8592aa812','905075277637','Sayın yetkili; HATİCE ÖZEN adlı müşterinize 745734415 nolu gönderinizin KING PLATİN BAZA SET 140X200 ürünü 4 parça halinde Fatura adresinizden 22.08.2025 15:45:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('c91bf7d9-1b43-4d4f-a4c9-ec8620c7a047','4917684715486','Sayın TALHA KARA, 598384021 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598384021\n\nDear TALHA KARA, your shipment with 598384021 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598384021\n\nBICARGO','1','fc31e466-d8a0-4227-8542-d08063fb7971',NULL),
('c91c7af1-d900-4709-b4b8-484f4af2a66c','4917683277906','Sayın ÇUVALLAR, 24891590 nolu gönderiniz 10322 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/24891590\n\nDear ÇUVALLAR, your shipment with 24891590 was delivered to you with the delivery code 10322. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/24891590\n\n\nBICARGO','1','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL),
('c920b168-6ebe-4769-bfaa-24bd9316d2c6','905059175469','MUSTAFA MÜEZZİNOĞLU adlı müşterinizin 428341956 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','515ab2de-5820-447c-8757-f2e57f2d6a69',NULL),
('c922f437-12b8-4522-8b06-edce1619cade','905336367828','ROBERT HASİMOVOC adlı müşterinizin 982189682 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL),
('c9240344-f6e6-446d-a760-aa4c1414def9','436608138124','Sayın İSMAİL ÖZAY , 745423192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745423192\n\nDear İSMAİL ÖZAY , your shipment with 745423192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745423192\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('c92567d2-0b0e-4509-8b2b-a54974099181','905461661672','Sayın yetkili; ÖMER GEDİK(K) adlı müşterinize 644113252 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:16:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('c9261f41-4c42-4f64-aad2-d669f6933f96','905335511664','Sayın yetkili; ALEV BAYGÜNDÜZ adlı müşterinize 371903427 nolu gönderinizin masa sehpa ürünü 4 parça halinde SM Tasarım adresinizden 24.04.2025 18:09:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d829d78-94c2-4e78-a544-eebc09aa13b0',NULL),
('c9276912-e6cc-4260-8250-c04f13986482','905461661672','Sayın yetkili; MUSTAFA ÖZTAŞ adlı müşterinize 644147833 nolu gönderinizin masa ürünü 3 parça halinde Masami Mobilya adresinizden 11.08.2025 15:54:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('c9278cea-e016-483c-85b3-349b14a8ecdc','905349208933','Sayın yetkili; ARİFE SARI adlı müşterinize 127865742 nolu gönderinizin ORTA SEHPA,YAN SEHPA , TV ÜNİTESİ ürünü 5 parça halinde MEF adresinizden 14.02.2025 15:41:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00cb480a-305b-41e6-8cb5-337678c881bf',NULL),
('c92dcd00-7f8f-4043-b9fd-db3011b7457e','05388618969','GİZEM KARAVİL adlı müşterinizin 786820149 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('c930593a-1edf-490b-b6c8-d6617e1d8e20','905078062550','Sayın yetkili; YAVUZ GÜNEŞ adlı müşterinize 59874048 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 06.10.2025 12:50:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ffa5c9a-93c5-400c-b777-8b753a8d744f',NULL),
('c93143d0-bc81-467c-b9b4-8b4ad29625ad','905331602195','STEPHANİE GOSSEYE adlı müşterinizin 221669694 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('c9316ca1-13b6-4f0d-be1d-74608e529640','4915750730726','449108957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7079 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449108957\n\nYour shipment with the number 449108957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7079. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449108957\n\nBICARGO','1','72d228c3-4890-476a-b92a-a7a953a0be97',NULL),
('c93be9e8-756a-45e4-9818-d7c3fb782314','4915774445546','Sayın FETHİ YÜCEL , 910728512 nolu gönderiniz 8577 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910728512\n\nDear FETHİ YÜCEL , your shipment with 910728512 was delivered to you with the delivery code 8577. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910728512\n\n\nBICARGO','1','4620449d-5bd3-49d6-816f-684d639a3e44',NULL),
('c93c4b2f-0f4f-47a1-b353-3d4832f91a5c','905304259202','Sayın yetkili; ÖZLEM RAMADAN adlı müşterinize 478150977 nolu gönderinizin köşe takımı ve berjer ürünü 6 parça halinde vaav adresinizden 29.01.2025 11:21:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9db12415-2152-439d-bb63-bebefc3c640c',NULL),
('c93f3e44-1b78-4736-9aba-fd23cbfcd292','905365908694','MURAT YILMAZ adlı müşterinizin 223440405 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','842ba9cb-4346-4cb2-a708-1b2d3e7d839f',NULL),
('c9402c5a-1777-4a63-91c3-d90ec87b8c73','905413792483','ABBAS ARSLAN adlı müşterinizin 278440694 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','87226e30-fe1d-481b-8c10-e309459138ca',NULL),
('c9472b11-51f7-43ac-b94c-4a51bfbffd0e','905325000478','MURAT adlı müşterinizin 4127825 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL),
('c94dbfaa-37e5-44f6-afe5-388cc31e57d9','491729283228','Sayın METE AKGÜL, 371857345 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371857345\n\nDear METE AKGÜL, your shipment with 371857345 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371857345\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('c94f9aed-3c54-4d04-9efd-cf5c37c9eaf8','905413792483','ABBAS ARSLAN adlı müşterinizin 278440694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','87226e30-fe1d-481b-8c10-e309459138ca',NULL),
('c9508166-f0ac-4a0d-bd53-a3db2ede60ef','32487655588','Sayın MEHDİ NAEİMİ, 319276460 nolu gönderiniz 7009 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319276460\n\nDear MEHDİ NAEİMİ, your shipment with 319276460 was delivered to you with the delivery code 7009. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319276460\n\n\nBICARGO','1','4475a939-a408-4d10-a256-61dc03f279da',NULL),
('c953d52c-0985-430b-ac92-168b3d9fc64a','905461661672','TUNAY KOCATÜRK adlı müşterinizin 644196383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('c95572e9-dc56-48aa-9422-05cda13eee4b','905333221039','ZÜLEYHA MUĞLU adlı müşterinizin 750486427 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL),
('c9561079-2fdf-42b9-a5c6-916e3fd73fe4','905331602195','SELCAN BOZKURT  adlı müşterinizin 221118460 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5aa78870-c5db-449e-aff0-2a524544eba3',NULL),
('c95d9aff-4a3a-4cc6-84e6-f2a581770d97','905363385813','Sayın yetkili; MEHMET ALİ ALBECER adlı müşterinize 976747802 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde Fatura adresinizden 08.07.2025 15:12:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('c967cb3d-8056-4764-9977-2a55aa5effd1','905421855834','RAUF ÇALIŞ  adlı müşterinizin 338691111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f7a8dca-9600-447a-a216-28087b5362ba',NULL),
('c9689f8d-e17e-4915-a6af-8f1bbefba253','905335708965','PALET adlı müşterinizin 735389141 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL),
('c96c53b8-5b11-4390-8cbc-08b4a418b39c','905331602195','ŞEYMA BOZDAĞ adlı müşterinizin 221940723 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('c974ae22-0379-4379-9636-77616e25f89d','905461661672','Sayın yetkili; ÖMER VAROL(K) adlı müşterinize 644714925 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 30.09.2025 14:34:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('c977a3f3-0b4e-424e-b965-0d605e40f8d1','491716168674','Sayın YUSA ELLİALTI, 808427332 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808427332\n\nDear YUSA ELLİALTI, your shipment with 808427332 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808427332\n\nBICARGO','1','b49349e7-c597-47d1-a275-ed6a18b0719e',NULL),
('c97db627-e1fb-4bc9-a7f8-b67ab0938d4e','491722006500','Sayın ERSİN ÖZDEMİR, 478892004 nolu gönderiniz 2588 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478892004\n\nDear ERSİN ÖZDEMİR, your shipment with 478892004 was delivered to you with the delivery code 2588. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478892004\n\n\nBICARGO','1','d84c0c48-7c0e-415e-9f69-e9f7870292b7',NULL),
('c9813704-ab98-41f9-80f1-35883bad3fac','33782642365','Sayın LOULOU FİRAS , 982754836 nolu gönderiniz 2077 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982754836\n\nDear LOULOU FİRAS , your shipment with 982754836 was delivered to you with the delivery code 2077. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982754836\n\n\nBICARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('c98b1dac-70d2-4a96-a3c2-109b54d8874f','004917661019761','Sayın EBRU SOBAY, 437574361 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437574361\n\nDear EBRU SOBAY, your shipment with 437574361 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437574361\n\nBICARGO','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('c98d6b23-e257-4820-b9d1-0946701e811f','905335511664','Sayın yetkili; İSA SÖNMEZ adlı müşterinize 371820680 nolu gönderinizin sehpa ürünü 1 parça halinde Elitis Home adresinizden 18.07.2025 17:13:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('c9912d3d-a180-4a1d-9b52-8dd5cffe9ca1','4369913555140','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('c99b6593-de41-4b66-a5a7-544576744458','4917684332584','371363007 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8374 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/371363007\n\nYour shipment with the number 371363007 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8374. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/371363007\n\nBICARGO','1','9a74f51a-7e75-4db9-acdc-874ddf9e54c5',NULL),
('c99cc9e9-561d-4d58-a616-8418df4ae5c9','33603993672','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('c9a4bca2-d686-45fe-ada8-096822347aeb','905331602195','Sayın yetkili; AİCHEH EL-KATİB adlı müşterinize 221416475 nolu gönderinizin Koyu ceviz sehpa  ürünü 2 parça halinde Fatura adresinizden 02.01.2025 12:24:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8d6ed7c8-fbb3-458c-b0c4-41d279db9b32',NULL),
('c9a6bfe8-9359-4501-9a8c-9c6a77eec0c4','905366385704','YUSUF BEY  adlı müşterinizin 830611219 nolu gönderisi 25 parça halinde yola çıkmıştır.','1','5e333a30-7986-4a32-be40-ecb91b558892',NULL),
('c9ac3ac8-6ba8-4550-853e-2e6b85076038','905313340045','Sayın yetkili; PELÇİN BUZLU adlı müşterinize 437554629 nolu gönderinizin köşe koltuk ürünü 4 parça halinde fe-ha concept adresinizden 21.03.2025 17:43:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('c9af549b-ab52-46d8-99cc-ddd19be1b31a','905054335859','YILMAZ İNAÇ adlı müşterinizin 501901219 nolu gönderisi 5 parça halinde yola çıkmıştır.','1',NULL,NULL),
('c9b2fa8c-25fe-4ec5-9615-7d33048d78b2','905335708965','RUKİYE BİÇEM KAPAN adlı müşterinizin 735929791 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL),
('c9b3c6de-e21e-4f7d-bd60-3494d85efad1','436605331605','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('c9b3e264-f32c-4040-ba0d-9865277ea6b6','31681743936','3198601 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/3198601\n\nYour shipment with the number 3198601 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/3198601\n\nBICARGO','1','835a9700-3c1e-47b8-bbf6-cfa3c91675b3',NULL),
('c9b6bdb5-17e5-437c-b86b-95feba12a16e','905331602195','GÜLER DELİDUMAN adlı müşterinizin 221432350 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('c9c01db7-f554-45eb-85be-56fc63773c48','905075277637','Sayın yetkili; LEİLA GELES SSH adlı müşterinize 745865715 nolu gönderinizin SSH MASA ÜST SEHPA AYAK + ZİGON  ürünü 3 parça halinde Fatura adresinizden 09.05.2025 12:14:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('c9c47eb2-d11b-4efc-b2ef-bac05786e7c8','4917647166886','01921294 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9278 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/01921294\n\nYour shipment with the number 01921294 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9278. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/01921294\n\nBICARGO','1','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL),
('c9d00389-df89-4a11-bae3-9f1bfffe3218','32455122888','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('c9d2b75c-72d0-4b36-9c6a-0eaee959329c','33642364836','Sayın TALL YOANN, 221132707 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221132707\n\nDear TALL YOANN, your shipment with 221132707 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221132707\n\nBICARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('c9d45387-7316-4e79-a542-1b6611bf978f','11111111111','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','2','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('c9df1e67-b1bb-40a2-a874-b580b036c4a7','4915778776524','Sayın AHMAD KADİ, 598578683 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598578683\n\nDear AHMAD KADİ, your shipment with 598578683 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598578683\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('c9e72304-c129-498e-a368-afd9d0932e19','905078062550','Sayın yetkili; ENES İSMET UGUZ adlı müşterinize 598986653 nolu gönderinizin BAZA BAŞLIK ürünü 6 parça halinde ALBESSA HOME adresinizden 01.08.2025 15:01:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('c9e90b95-c5e1-4e1f-858e-1840f58ce70b','491746845018','319316615 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6185 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/319316615\n\nYour shipment with the number 319316615 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6185. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/319316615\n\nBICARGO','1','e848a3ea-fc44-4076-9fb6-e6a259b11ad5',NULL),
('c9ee19fd-3559-4016-8e8e-a50b300d8325','905079047428','SAHAR KADERİ adlı müşterinizin 449636092 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea1fd06d-6508-481d-96d9-862de4d05260',NULL),
('c9f35de0-80dc-4b87-a1cf-307c131ede3b','905454259202','SÜLEYMAN BOZAN adlı müşterinizin 478778961 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ab838fc-3b03-474c-9930-88db6a09eba3',NULL),
('c9f3efd3-1825-4878-9193-542995e63a01','905304259202','Öner alabaş adlı müşterinizin 478803764 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL),
('c9f4306b-f331-40d2-9219-4172454778e5','3254354253235432','412731497 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10673 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412731497\n\nYour shipment with the number 412731497 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10673. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412731497\n\nBICARGO','2','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('c9f50c01-7dd2-4b40-914a-8fdc93b0dbcb','4917632998796','478559056 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478559056\n\nYour shipment with the number 478559056 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478559056\n\nBICARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('c9f51bae-6ade-49bc-a59d-806c8b7be546','4915168460456','Sayın GÖNÜL GİDER, 428671806 nolu gönderiniz 2136 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428671806\n\nDear GÖNÜL GİDER, your shipment with 428671806 was delivered to you with the delivery code 2136. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428671806\n\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('c9f9215a-01cb-404f-b2fe-80a6b5f3d6f2','905331602195','GÜLSÜM UÇAR  adlı müşterinizin 221345365 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('c9faccaf-58a7-4ef3-9eb4-6c79babd3ccb','4915758318201','Sayın Ajroski ajsun, 98285799 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98285799\n\nDear Ajroski ajsun, your shipment with 98285799 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/98285799\n\nBICARGO','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('c9fe99c8-ee00-4eef-9cc2-644f1e2f98c4','905461661672','Sayın yetkili; MELDA KARA adlı müşterinize 64451300 nolu gönderinizin YATAK ürünü 1 parça halinde Fatura adresinizden 02.04.2025 11:56:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('c9fee885-58ed-4ef8-8c9e-b29363ea95c9',NULL,'SERKAN SİLAN adlı müşterinizin 657785918 nolu gönderisi 1 parça halinde yola çıkmıştır.','2','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL),
('ca004b54-bb0b-4282-8aa4-4a987d318aa0','330758774283','Sayın THOMAS TELAH, 982681083 nolu gönderiniz 8956 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982681083\n\nDear THOMAS TELAH, your shipment with 982681083 was delivered to you with the delivery code 8956. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982681083\n\n\nBICARGO','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('ca07ed15-71a9-4dd1-bb11-821fe77949e0','436767005361','Sayın Ahmet özçiçek, 31515833 nolu gönderiniz 7942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31515833\n\nDear Ahmet özçiçek, your shipment with 31515833 was delivered to you with the delivery code 7942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31515833\n\n\nBICARGO','1','65c0e929-3375-4985-8c4f-62681ad7745f',NULL),
('ca09f986-3aa3-4dc9-bb02-d9d382ef0e8c','491731829748','Sayın GÖKHAN ÜLKER, 371944289 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371944289\n\nDear GÖKHAN ÜLKER, your shipment with 371944289 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371944289\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('ca0c3889-3550-48e4-a25b-6e326de0f417','905075277637','MUSTAFA IBRYAMOV adlı müşterinizin 745907299 nolu gönderisi 64 parça halinde yola çıkmıştır.','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('ca0c729e-a75f-4d5b-bb55-e493434bc60c','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin SANDALYE ürünü 8 parça halinde Fatura adresinizden 24.06.2025 17:50:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('ca0e526f-74b8-4a01-b7be-fc76dfc502aa','41762077419','478919360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478919360\n\nYour shipment with the number 478919360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478919360\n\nBICARGO','1','17f5b0ed-7e87-4e65-98a6-bf2bebc4900e',NULL),
('ca11a71f-22dc-4cbb-91d7-c7e6eebbfd61','31634686585','Sayın TUĞRA NUR DÜZGÜN, 644298759 nolu gönderiniz 10903 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644298759\n\nDear TUĞRA NUR DÜZGÜN, your shipment with 644298759 was delivered to you with the delivery code 10903. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644298759\n\n\nBICARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('ca155817-a0cd-4684-8ab6-69516a260296','4917683226592','Sayın ESMA MERT, 371282604 nolu gönderiniz 9942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371282604\n\nDear ESMA MERT, your shipment with 371282604 was delivered to you with the delivery code 9942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371282604\n\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('ca186972-bf10-4471-a10f-3af75c3e3df3','32478530269','428693052 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1090 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428693052\n\nYour shipment with the number 428693052 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1090. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428693052\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('ca2348fa-0002-4e9c-9deb-6849ca8a87a5','905313340045','MUHAMMED ALİ ASLAN adlı müşterinizin 437982892 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('ca29244c-f860-480e-8ca7-538b95dff341','905421855834','Sayın yetkili; MUAMMER SAYIN adlı müşterinize 338822119 nolu gönderinizin Sandalye (6 Adet) ürünü 3 parça halinde Mission Sandalye adresinizden 13.12.2024 16:04:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d1ae7d6b-c4de-4900-a84f-2c38d85e1ac9',NULL),
('ca31175d-cf19-470d-8988-ea6c1ddf082b','4915254879175','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('ca3271e9-e724-40d5-a401-dc01f42b9aa0','905332942204','Sayın yetkili; MURAT BAŞAR adlı müşterinize 50552381 nolu gönderinizin sandalye ürünü 3 parça halinde mfour adresinizden 09.10.2025 16:38:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','668dd554-9513-4da3-8f96-649ae0505732',NULL),
('ca34d013-e135-4121-b6c9-8a66ea8bd2e4','905461661672','Sayın yetkili; RADİA AL ADOUİ adlı müşterinize 644599754 nolu gönderinizin TRAVERTEN ürünü 1 parça halinde Fatura adresinizden 24.03.2025 13:44:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82d17384-1e37-4136-b61d-8ad262906c8b',NULL),
('ca3642a9-1ba8-46e7-bb3b-a169328ba7b1','9053259981980','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120*200 BAZA ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('ca37772b-0b83-4532-95cc-0ccabe46add0','905461661672','Sayın yetkili; MELDA KARA adlı müşterinize 64451300 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 07.04.2025 10:48:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('ca394981-f446-49ee-9ee8-f701d680066a','491787074737','027547681 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4913 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027547681\n\nYour shipment with the number 027547681 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4913. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027547681\n\nBICARGO','1','63565a3e-11e9-4738-9a52-f03824d05dcc',NULL),
('ca3b8823-b119-45d2-9615-add0f04d670c','905075277637','Sayın yetkili; DİLARA TARHAN adlı müşterinize 745233031 nolu gönderinizin DELUXE YATAK  ürünü 1 parça halinde Fatura adresinizden 24.09.2025 13:44:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1080adba-e901-4380-93d1-e3ffaab7c355',NULL),
('ca3e5579-08be-48d9-a5dc-50107ed9f504','4917630158799','Sayın MUHAMMED TOPAL, 371681337 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371681337\n\nDear MUHAMMED TOPAL, your shipment with 371681337 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371681337\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('ca3f1f7f-a5ac-4cc4-bca7-923517607e63','5325000478','Sayın AAAAAAA BBBBBBBBB, 05.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4483314\nŞifre : 4483314\n			\nBİCARGO','1',NULL,'4fa483cb-a3c1-4f1d-87a6-18cb64c5a217'),
('ca436a50-dd0a-4866-9fd3-7c0bda66d670','431703503576','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','2','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('ca45818b-ed74-43f4-80ab-db349d1059a9','905331602195','YEŞİM TOPKIRAN adlı müşterinizin 221960678 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('ca491326-5f29-4e54-b586-f39832b20ff5','436604414246','Sayın HALUK ÖZTOPRAK, 858708990 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858708990\n\nDear HALUK ÖZTOPRAK, your shipment with 858708990 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858708990\n\nBICARGO','1','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL),
('ca4c7602-bd3c-4ffd-9699-808c9362c3dd','11111111111','Sayın FATMA EROĞLU , 455757391 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455757391\n\nDear FATMA EROĞLU , your shipment with 455757391 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455757391\n\nBICARGO','2','d993ce90-f47a-45f5-b714-cf612685b50d',NULL),
('ca4df956-7a99-4f6b-9ac8-beb9c83672cc','33763204411','Sayın HAMİDİ SONİA , 221949733 nolu gönderiniz 3451 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221949733\n\nDear HAMİDİ SONİA , your shipment with 221949733 was delivered to you with the delivery code 3451. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221949733\n\n\nBICARGO','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('ca5865ee-9768-43f1-a421-e7cefe291be3','2325643653447647','Sayın NFS GRUNDTVİGS, 655644248 nolu gönderiniz 3262 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655644248\n\nDear NFS GRUNDTVİGS, your shipment with 655644248 was delivered to you with the delivery code 3262. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655644248\n\n\nBICARGO','2','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL),
('ca58b206-0bfa-44fa-8aa8-b3100e4b6ae3','41794334443','Sayın donya bazaz, 982692076 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982692076\n\nDear donya bazaz, your shipment with 982692076 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982692076\n\nBICARGO','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('ca6458f4-034a-446b-8c61-b6320d8a77bb','33660617145','Sayın MERVE KARADAVUT, 437998346 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437998346\n\nDear MERVE KARADAVUT, your shipment with 437998346 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437998346\n\nBICARGO','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('ca68f73f-2717-49f3-aa8f-8d8766dcaf1b','337533944622','Sayın FESİH DOĞAN, 47853753 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47853753\n\nDear FESİH DOĞAN, your shipment with 47853753 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47853753\n\nBICARGO','2','ef978fdc-f16f-48d3-82b2-9c1f321e6548',NULL),
('ca71b6e5-1485-432f-8bc7-6c34e1319ade','905313340045','Sayın yetkili; GAFUR NUHA adlı müşterinize 43758285 nolu gönderinizin köşe ürünü 4 parça halinde köşeci osman abi adresinizden 24.04.2025 14:30:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('ca72559a-c8b8-4834-a999-ee72768c387a','4917632406392','Sayın SEYİTHAN ASLAN, 745212688 nolu gönderiniz 4669 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745212688\n\nDear SEYİTHAN ASLAN, your shipment with 745212688 was delivered to you with the delivery code 4669. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745212688\n\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('ca734bc5-463d-4c91-b36a-a65a28ef3db3','491755862725','Sayın ALİ GÜLEÇ, 428470171 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428470171\n\nDear ALİ GÜLEÇ, your shipment with 428470171 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428470171\n\nBICARGO','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('ca73dc0b-189e-42af-b1ef-69a3b9bf986d','491621091849','Sayın SEVİM KAMER, 478151970 nolu gönderiniz 2408 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478151970\n\nDear SEVİM KAMER, your shipment with 478151970 was delivered to you with the delivery code 2408. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478151970\n\n\nBICARGO','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('ca7a1387-60ee-44fc-8625-bf7937d92883','905079358213','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin POLO KOLTUK 3+3+1  ürünü 3 parça halinde ALYAMO  adresinizden 05.08.2025 11:04:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('ca7d8100-c616-4417-8fc8-26d47d9ef838','31629324395','Sayın BETÜL YILDIZ, 221811614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221811614\n\nDear BETÜL YILDIZ, your shipment with 221811614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221811614\n\nBICARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('ca87a6fe-f2bb-4b81-92f4-81adb4a88b84','905313340045','Sayın yetkili; TUĞBA BALIKÇI adlı müşterinize 437154123 nolu gönderinizin Baza başlık ürünü 4 parça halinde Albessa adresinizden 25.08.2025 12:02:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('ca88a46e-5470-4ccc-b8e8-b56c00757460','5325000478','Sayın HALİL İBRAHİM SÖKE, 11.07.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1371831\nŞifre : 1371831\n			\nBİCARGO','1',NULL,'137e1f83-d1e4-4e49-a611-79b146cc7098'),
('ca926b71-1291-4f39-981e-8a8a30156e3b','491785050597','Sayın SABİHA SATICI, 644520957 nolu gönderiniz 7427 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644520957\n\nDear SABİHA SATICI, your shipment with 644520957 was delivered to you with the delivery code 7427. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644520957\n\n\nBICARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('ca929ed8-68c1-4c9d-835e-d367bf57cd1c','905459475054','SELÇUK SÖNMEZ adlı müşterinizin 803961620 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','3279cd33-84a3-4a75-b268-cbf614f54c41',NULL),
('ca990995-4625-4e0e-939d-a298e96d46ca','905336367828','LOULOU FİRAS  adlı müşterinizin 982754836 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8828112-c2c0-43e1-8300-a4fea7da05f8',NULL),
('ca9bc1b5-6790-44a8-b510-938baceeb222','4917661925156','910561299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1260 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910561299\n\nYour shipment with the number 910561299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1260. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910561299\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('ca9cfc2a-22f9-4489-89d4-a3f31d98499d','905331602195','Sayın yetkili; ROHAD TOSUN  adlı müşterinize 221529516 nolu gönderinizin 90x190 Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 14:38:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('caa21a6e-899f-49de-a60c-53416f2c0db7','4917622920602','Sayın CANDAN ÖZDEMİR, 371251508 nolu gönderiniz 10394 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371251508\n\nDear CANDAN ÖZDEMİR, your shipment with 371251508 was delivered to you with the delivery code 10394. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371251508\n\n\nBICARGO','1','c7da4efa-976f-41bb-a365-004594890133',NULL),
('caa3d6b8-11ff-4157-a7c1-c8367ffc84c8','905313340045','Sayın yetkili; SERCAN KUCUR adlı müşterinize 437626008 nolu gönderinizin Sehpa  ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 29.08.2025 11:03:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('caa7256f-a70e-49c8-8988-b1412297210f','4915737531059','Sayın CAN ILKAY IBOV, 221225501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221225501\n\nDear CAN ILKAY IBOV, your shipment with 221225501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221225501\n\nBICARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('caa8857e-08de-48d2-9b5c-a8550ebeaae5','905075277637','Sayın yetkili; ASLIHAN GÜÇLÜ adlı müşterinize 745554582 nolu gönderinizin TEKLİ ürünü 1 parça halinde Fatura adresinizden 13.12.2024 16:13:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('caab5585-97ae-4197-be7c-28f784dace82','905365908694','ZEHRA ÖZALP adlı müşterinizin 223963997 nolu gönderisi 77 parça halinde yola çıkmıştır.','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('caad4368-2685-459d-9081-4509ae5c3a92','905301592882','RUKİYE EKERBİÇER  adlı müşterinizin 910903191 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','3a9d845e-c0a4-45e3-bf3d-740d6536bc45',NULL),
('caaf1b2d-4880-44ca-b418-d4797d86581b','491636703149','Sayın BİNALİ BOZBAŞ, 478798827 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478798827\n\nDear BİNALİ BOZBAŞ, your shipment with 478798827 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478798827\n\nBICARGO','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('caaf9c64-370c-460f-9c27-4597c500a97c','905335511664','DİANA MUJKİC adlı müşterinizin 371529841 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('cab0e4b6-79d5-4e1a-be6c-80d73096b878','4917632881676','Sayın ABDULLAH ÖĞRETEN, 644917251 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644917251\n\nDear ABDULLAH ÖĞRETEN, your shipment with 644917251 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644917251\n\nBICARGO','1','be6b74bb-6b56-429f-8118-650dc26879d4',NULL),
('cab1b6a0-fcc3-4114-b251-44da360cb307','31641888341','745166392 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10836 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745166392\n\nYour shipment with the number 745166392 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10836. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745166392\n\nBICARGO','1','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL),
('cab21a01-b500-46e7-98f4-465583a47391','491738798802','Sayın MELİKE ÇALIŞKAN, 598172413 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598172413\n\nDear MELİKE ÇALIŞKAN, your shipment with 598172413 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598172413\n\nBICARGO','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('cab2b41e-86f4-4293-88be-877ed86dc4fe','4917680243657','221294149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9834 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221294149\n\nYour shipment with the number 221294149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9834. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221294149\n\nBICARGO','1','d921e4e9-196f-4ba6-beeb-e5aafb5c80ee',NULL),
('cab5fae7-0eec-4480-92d3-ea2a6807a8d2','491627758662','Sayın FİRAS MACHANTAT, 750505145 nolu gönderiniz 6654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750505145\n\nDear FİRAS MACHANTAT, your shipment with 750505145 was delivered to you with the delivery code 6654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750505145\n\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('cabc71b3-3d9b-4957-a3a5-bf591bdc6911','33645025760','745991962 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745991962\n\nYour shipment with the number 745991962 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745991962\n\nBICARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('cabfba04-2e6a-4a83-b523-de3b79700d38','905331602195','Sayın yetkili; FİRDEVS ORHAN adlı müşterinize 221407228 nolu gönderinizin 70x120 orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:03:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a07ecc8b-17a0-46e6-93d3-162e6dc41fe7',NULL),
('cac4880b-ef16-4d7a-a00e-c2766a560568','905079047428','ABDULLAH DEMİR adlı müşterinizin 449239758 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL),
('cac52091-8a7f-45dc-b572-6edf6fc9b629','33660617145','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('cac7303a-27c3-45b3-a406-88fd2fb3fcf6','905421855834','Sayın yetkili; GALİP YAYLALI adlı müşterinize 338286320 nolu gönderinizin 8 sandalye ürünü 7 parça halinde İNHOUSE Exclusive adresinizden 26.09.2025 14:18:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0c7a240-326d-492c-88a5-bd8e007daa69',NULL),
('caca7736-c2c8-458a-81b3-85a563f19ace','4915738807619','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','5f9f6345-4b94-4cd2-9416-610df7cd46da',NULL),
('caccd04b-ccd0-4683-a79c-6689106158a7','905313340045','Sayın yetkili; UFUK SANATÇI adlı müşterinize 43783689 nolu gönderinizin Orta sehpa ürünü 1 parça halinde DORTHOME OFİS adresinizden 03.09.2025 16:14:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('cad021ae-c2ff-4a1c-8a39-115b4ef5ffc4','1111111111111','Sayın YUSUF NAVRUZ , 319141495 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319141495\n\nDear YUSUF NAVRUZ , your shipment with 319141495 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319141495\n\nBICARGO','2','339cd09c-c132-45d3-a7b6-80ffe5a2e8d6',NULL),
('cad16b6b-0047-42f5-adc0-deafc49ae4c9','905534084469','EROL ERDOĞAN adlı müşterinizin 151236689 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('cad8650f-ffcb-4d5d-8ac5-416fbae9b25b','491722630370','İletişim \n					Şöför Murat : +905321616048','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('cadeaaae-ec40-40c4-8c14-7fce45d4fd0b','905336367828','ALİ ÇETİN  adlı müşterinizin 982408783 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','23362a6b-e084-465f-a474-3935662b512b',NULL),
('cadfcfc0-25bf-49df-ab72-09f4ac148ebe','5325000478','Sayın İBRAHİM GÜLTEKİN, 17.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9318594\nŞifre : 9318594\n			\nBİCARGO','1',NULL,'93da1859-4fa5-47f4-86a4-0a524f16f532'),
('cae6f8ed-f66b-4147-8a08-0d13a0d89af5','491606817658','Sayın AKIN COŞKUNSU, 371365427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365427\n\nDear AKIN COŞKUNSU, your shipment with 371365427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371365427\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('cae9a3f0-d909-41ad-9a5d-1c1d809a7c70','905336367828','Sayın yetkili; HASAN ÇALIK  adlı müşterinize 982720250 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 13.08.2025 14:50:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('caeac1ec-40ab-4a93-b145-719e862c69f9','33603603944','Sayın HASSAN ABDULBARİ, 44937818 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44937818\n\nDear HASSAN ABDULBARİ, your shipment with 44937818 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44937818\n\nBICARGO','1',NULL,NULL),
('caedc0d1-07f3-4284-8ee0-a57bd235712c','905331602195','Sayın yetkili; MERAL GÖGDAS  adlı müşterinize 221965496 nolu gönderinizin 80x130 cm beyaz milas orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.06.2025 18:04:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('caedf750-f64b-4987-937d-007fcf277686','905079358213','HÜSEYİN AKBANA adlı müşterinizin 745191568 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('caf1fedb-8b9c-403c-b111-32a37c222517','905306071261','Sayın yetkili; TUĞÇE SUER  adlı müşterinize 765484490 nolu gönderinizin 1 ADET TV ÜNİTESİ BİR ADET STAND ürünü 2 parça halinde konum mobilya  adresinizden 07.10.2025 11:30:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('cb0826eb-9c56-472e-badd-652f61443d50','905325000478','SAGAX CONSULTİNG  adlı müşterinizin 412380161 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','39a9ae66-741d-4e91-97aa-a8ea9f83985b',NULL),
('cb1a66c4-bd6d-408d-815e-69870226922b','4917625035893','Sayın SWEETA QALANAWİ , 613393068 nolu gönderiniz 6509 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613393068\n\nDear SWEETA QALANAWİ , your shipment with 613393068 was delivered to you with the delivery code 6509. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613393068\n\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('cb1b3a89-0a56-4ddf-a88e-6a30d5b1bb4a','31641919290','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('cb202c01-658a-418b-af26-b9d11dc79506','33614367699','Sayın İPEK ÇİFTÇİ, 478300917 nolu gönderiniz 6660 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478300917\n\nDear İPEK ÇİFTÇİ, your shipment with 478300917 was delivered to you with the delivery code 6660. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478300917\n\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('cb245c7e-573b-4d57-92f9-586bd9f26c6b','33764176010','Sayın KEVSER KAYA, 478983907 nolu gönderiniz 7597 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478983907\n\nDear KEVSER KAYA, your shipment with 478983907 was delivered to you with the delivery code 7597. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478983907\n\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('cb2c70c9-b7c4-4b0b-95b7-be35fb0e4cb6','4917680857659','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('cb2ca5b6-0744-4dcd-83a6-d6dca5416d84','905313340045','MEO JONATHON adlı müşterinizin 437452475 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('cb2d7882-8f79-4ed2-b1e5-db466f68d7ab','4917685433742','Sayın HASAN KAYA, 64413417 nolu gönderiniz 6500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64413417\n\nDear HASAN KAYA, your shipment with 64413417 was delivered to you with the delivery code 6500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64413417\n\n\nBICARGO','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('cb2f03bf-ffc1-44ae-84f9-b9c2ac43fdc6','905331602195','SERKAN KAHRAMAN adlı müşterinizin 221254389 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('cb3328c7-de30-4d9d-b31e-b60f0f48826c','491785618388','İletişim \n					Şöför Murat : +905321616048','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('cb3407da-34ba-41c2-91d8-a5546b03d4a8','49020350083648','223337181 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6173 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223337181\n\nYour shipment with the number 223337181 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6173. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223337181\n\nBICARGO','2','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL),
('cb341b48-8e25-4adf-b5c8-e0a9a3f924fd','905331602195','Sayın yetkili; VEYSEL POLAT adlı müşterinize 221362176 nolu gönderinizin MİLAS SEHPA ürünü 2 parça halinde Fatura adresinizden 02.01.2025 11:35:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('cb376cdb-4499-4f5d-bfb8-3f32170c3eb2','33787053460','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('cb38f3b8-e0e3-451a-b7ba-a6f48d829090','491627758662','750505145 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750505145\n\nYour shipment with the number 750505145 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750505145\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('cb3aa732-78f5-4849-a0ea-b8b701ed2660','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223422825 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('cb3e06a5-99e7-4ccc-96a4-7c260c86e7b2','491795446214','Sayın MAHMUT ÖZKAN, 745996696 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745996696\n\nDear MAHMUT ÖZKAN, your shipment with 745996696 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745996696\n\nBICARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('cb3e42f2-a005-45ee-a179-41e0f1fbdea3','905075277637','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin İCON KOLTUK TAKIMI  ürünü 4 parça halinde SALDA  adresinizden 06.05.2025 12:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('cb3f45b0-dc18-49f4-98bf-c0125acdaa8a','4917664272042','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('cb40a990-e360-49e5-9981-ad3f56d6a013','905530309780','Sayın yetkili; SİNGH PERWİNDEJİT adlı müşterinize 418120869 nolu gönderinizin sandalye ürünü 4 parça halinde Fatura adresinizden 29.05.2025 11:37:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('cb455cf4-3918-4131-a788-8ad022b7f381','491726119322','Sayın HAKAN CANBAY, 74565941 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74565941\n\nDear HAKAN CANBAY, your shipment with 74565941 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/74565941\n\nBICARGO','1','cffae1ee-46fd-4b78-98d7-0a0c75ec876a',NULL),
('cb473dc8-3a5b-40c8-bce9-a8434f2e6e55','436602121085','315752826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9315 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/315752826\n\nYour shipment with the number 315752826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9315. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/315752826\n\nBICARGO','1','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL),
('cb4cd92c-193e-4160-a170-b5cc2024c405','491723845058','248539327 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248539327\n\nYour shipment with the number 248539327 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248539327\n\nBICARGO','1','3753ec0d-793c-43d2-920b-d39827ee0154',NULL),
('cb4dbcff-7ed4-462d-9f70-c154a72d6733','905059175469','Sayın yetkili; GÖKHAN UYSAN adlı müşterinize 42873500 nolu gönderinizin köşe ürünü 6 parça halinde Fatura adresinizden 02.06.2025 12:02:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('cb4e45e9-f35e-459f-8ee8-e46329429c20','905461661672','ŞENOL AKKOYUN adlı müşterinizin 644535273 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','98bda885-fe47-4716-8e4c-6ea1a95114e8',NULL),
('cb56f609-3c70-492c-bcb4-1c980e2a0f0f','33782934072','Sayın ERGÜN YILMAZ, 478890979 nolu gönderiniz 4600 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478890979\n\nDear ERGÜN YILMAZ, your shipment with 478890979 was delivered to you with the delivery code 4600. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478890979\n\n\nBICARGO','1','c2738111-51d8-4195-8709-efd9bbe4d309',NULL),
('cb57a1d3-59f2-4bbb-8ee9-949431d5c995','31681581501','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('cb5b243b-62bc-4c59-a942-41ad77d283e7','491634680218','Sayın HÜSEYİN AKBANA, 745191568 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745191568\n\nDear HÜSEYİN AKBANA, your shipment with 745191568 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745191568\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('cb5cee12-82ae-4266-b0eb-ab13afb6e582','33646051742','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('cb5fed41-e3b3-44fb-ab8f-bba0e702bd9a','436604807629','Sayın KARAARSLAN YELİZ, 808886614 nolu gönderiniz 6176 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808886614\n\nDear KARAARSLAN YELİZ, your shipment with 808886614 was delivered to you with the delivery code 6176. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808886614\n\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('cb614a64-c378-4f24-be06-4c5fe100b93e','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437786734 nolu gönderinizin Elit koltuk takımı ürünü 3 parça halinde Modapark adresinizden 19.08.2025 12:05:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('cb6a8168-b217-485f-ab6b-ac79fca5c322','41765845886','127150146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10424 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127150146\n\nYour shipment with the number 127150146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10424. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127150146\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('cb71e2f1-4174-483d-815b-61b076d23fe0','004915254106580','735139102 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1092 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735139102\n\nYour shipment with the number 735139102 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1092. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735139102\n\nBICARGO','2','0816b3df-4d3c-4f83-935b-999df0cfa38e',NULL),
('cb733758-bf22-401f-8599-8ec029a0de0a','905079358213','BURAK SARIKAYA adlı müşterinizin 745816946 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('cb75512a-d836-4099-a4e5-e375e194a993','905389543828','Sayın yetkili; ŞİRİN BALCIN adlı müşterinize 486181220 nolu gönderinizin Karyola ürünü 5 parça halinde Moe Bedding  adresinizden 12.05.2025 14:04:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('cb758605-17d2-4c1c-8fe2-6b0b39a0eec9','4915226419992','598585736 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4471 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598585736\n\nYour shipment with the number 598585736 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4471. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598585736\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('cb7a0353-d7a7-421d-8d9c-1421ef2245ad','905301592882','RAMAZAN ALTINKAYNAK adlı müşterinizin 910163146 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6b5fec87-7926-4fa4-ae31-13921c722f9d',NULL),
('cb7f132f-0abd-4acf-a9a3-d5b70472d6c6','905350617509','Sayın yetkili;  RİM MOUSSA  adlı müşterinize 613868869 nolu gönderinizin Traverten masa ürünü 1 parça halinde Fatura adresinizden 14.04.2025 11:13:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d717ffb-678b-4e82-9f61-5357693131d8',NULL),
('cb8067c2-7882-453e-a5ff-57df01a1449e','905517075149','Sayın yetkili; İLHAM SEVAL İNDİRME adlı müşterinize 478259590 nolu gönderinizin sandalyeve yatak ürünü 4 parça halinde Fatura adresinizden 30.06.2025 15:44:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('cb8c6946-a54d-4088-92f2-53d1e4d4a641','4917662337872','Sayın NECİP FAZIL ŞİMŞEK, 371261673 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371261673\n\nDear NECİP FAZIL ŞİMŞEK, your shipment with 371261673 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371261673\n\nBICARGO','1','b09d6f55-3ecf-4da7-9a79-8f16282c4d71',NULL),
('cb8d9dbc-80a8-466d-a17d-19c3ed1729cd','32473991543','Sayın MUSTAFA AİT, 449769276 nolu gönderiniz 6043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449769276\n\nDear MUSTAFA AİT, your shipment with 449769276 was delivered to you with the delivery code 6043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449769276\n\n\nBICARGO','1','ce4c8f08-9110-4882-8b15-e54368f68914',NULL),
('cb8e84eb-afca-4d15-b9de-7ee7923de67c','905497405500','KEVIN PAROIS adlı müşterinizin 20390821 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7437d40-e0c9-4b48-8f95-ce739b84fcfc',NULL),
('cb90fb8e-0a5f-43ef-a685-fed4e75c2283','33766319183','Sayın GÖZDE TEMİZ		, 910670298 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910670298\n\nDear GÖZDE TEMİZ		, your shipment with 910670298 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910670298\n\nBICARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('cb9488e4-4e45-4869-a668-a9cc1cb839c6','5325000478','Sayın AAAAA BBBBBBB, 18.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 7972574\nŞifre : 7972574\n			\nBİCARGO','1',NULL,'7a97abb2-c57f-42c8-b607-9a0fc3069208'),
('cb96b360-5413-4f47-8d19-cf5e296c6214','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin sehpa takımı ürünü 6 parça halinde Fatura adresinizden 30.05.2025 16:47:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('cb989e7c-b803-4431-abe6-097762e290a1','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 17.06.2025 12:19:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('cb98de6b-42ca-4a72-906b-1082e356791e','491639801426','Sayın EURO MOBEL, 412218985 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412218985\n\nDear EURO MOBEL, your shipment with 412218985 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412218985\n\nBICARGO','1','835863ce-70ff-4b53-b486-a32e6936cae4',NULL),
('cb99949b-7d39-4ee4-b09e-f9f3f6545292','905459011033','DRANCY MEUBLE adlı müşterinizin 268443203 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c83b1650-e8ef-42b8-bd59-85142002c440',NULL),
('cba1ec31-b989-4158-8c97-cc6756575ce3','33630048786','982979874 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6210 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982979874\n\nYour shipment with the number 982979874 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6210. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982979874\n\nBICARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('cbab7eca-3c81-4878-9798-2b22ed1b4e1c','905301592882','Sayın yetkili; GÖZDE TEMİZ		 adlı müşterinize 910670298 nolu gönderinizin ARES KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 12.06.2025 16:10:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('cbbf99ef-710e-4541-8ef0-b2c3ae6ce94e','4915739434455','Sayın ESRA MAT(K), 644484322 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644484322\n\nDear ESRA MAT(K), your shipment with 644484322 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644484322\n\nBICARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('cbc90e1b-534f-4201-b2dc-57b2562c2fa3','905304259202','MİNA ANNABİ adlı müşterinizin 478278253 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('cbca9845-d3ba-43bc-9cd6-c60e294f6c8d','4917662030920','338678802 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8971 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/338678802\n\nYour shipment with the number 338678802 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8971. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/338678802\n\nBICARGO','1','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL),
('cbd15c12-1ee4-4786-9b5e-801d230ffc2d','0033771681508','Sayın YALÇIN, 735553146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735553146\n\nDear YALÇIN, your shipment with 735553146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735553146\n\nBICARGO','2','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL),
('cbd5cb77-f32a-4444-bede-07cf4cfcc380','4915205605713','Sayın SERDAR BALCI, 616724751 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/616724751\n\nDear SERDAR BALCI, your shipment with 616724751 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/616724751\n\nBICARGO','1','7c6f41df-7a66-4cad-b01f-112bedad69ca',NULL),
('cbd770cc-8768-4dbe-83d1-beef55b70c8b','33613166090','Sayın NURKAN AŞIR, 614741569 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614741569\n\nDear NURKAN AŞIR, your shipment with 614741569 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614741569\n\nBICARGO','1','755e2ad9-81c1-4538-8d82-5b3d0b23767c',NULL),
('cbd7e9bd-5820-4668-8bd9-2fd334789e81','905539740010','SAMET ERGİSİ adlı müşterinizin 011766113 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('cbe81be8-c4ee-4d46-9763-78d402987f62','4915222621206','371183095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3562 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371183095\n\nYour shipment with the number 371183095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3562. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371183095\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('cbe858a2-12aa-4a30-a61a-a87faf238ab6','905304259202','ÖMER KOLAT adlı müşterinizin 478593603 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','28745864-aae9-4957-9346-b61332e96fff',NULL),
('cbf8170f-ee26-4e9b-b007-c12488b6485b','9054439559150','GÜNGÖR SAK adlı müşterinizin 614901187 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('cc02121e-c585-4281-ab33-110d18c180f3','905331602195','BİANCA AGOSTİNO adlı müşterinizin 221481972 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('cc04e1cc-1e89-41ac-b9b6-37e67cce34ee','4920350083648','223433822 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9195 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223433822\n\nYour shipment with the number 223433822 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9195. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223433822\n\nBICARGO','2','1ec8b3a1-d058-45b7-aba0-c8d3eae82e19',NULL),
('cc0730aa-dde7-4a14-8fae-76d43a150ab2','31685438613','Sayın SAVYO RAFFO, 22164822 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22164822\n\nDear SAVYO RAFFO, your shipment with 22164822 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22164822\n\nBICARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('cc07fd6c-e195-4957-ba4d-5f4306fe156c','905079358213','Sayın yetkili; ASLIHAN GÜÇLÜ adlı müşterinize 745554582 nolu gönderinizin KOLTUK TAKIMI ürünü 1 parça halinde Fatura adresinizden 13.12.2024 16:13:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('cc093fe0-d207-4c45-b2f2-e3c6088ee6ae','905075277637','Sayın yetkili; SSH ALPEREN DÜZENLİ  adlı müşterinize 745863981 nolu gönderinizin SSH MASA ÜST TABLASI  ürünü 1 parça halinde Fatura adresinizden 07.10.2025 13:56:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('cc097680-789b-4cec-b94a-4ba195fca210','905327099916','Sayın yetkili; ALİ adlı müşterinize 959475359 nolu gönderinizin sandalye ürünü 4 parça halinde Fatura adresinizden 09.09.2025 16:33:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6d6f2808-c231-4334-856e-47064121ade2',NULL),
('cc099ef5-ae18-4ecd-b1ca-237b7d0de1c5','491622496871','765564339 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8584 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765564339\n\nYour shipment with the number 765564339 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8584. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765564339\n\nBICARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('cc0d0c7b-d9e9-46a7-8b54-ed23a5fe7695','4917617137029','Sayın BERNARD BEJİQ, 644714329 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644714329\n\nDear BERNARD BEJİQ, your shipment with 644714329 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644714329\n\nBICARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('cc10c2a2-1d0a-4b3f-a5a7-d77b45683ff9','31685036791','Sayın AHMET BAYDAR, 478943291 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478943291\n\nDear AHMET BAYDAR, your shipment with 478943291 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478943291\n\nBICARGO','1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL),
('cc114761-9fb6-401f-b1da-a3e26d340b90','905073106101','TUNCAY KOÇOĞLU adlı müşterinizin 465782662 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('cc208acb-fad2-4fbf-b2de-55ee4d363467','3377867204','478221533 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6824 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478221533\n\nYour shipment with the number 478221533 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6824. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478221533\n\nBICARGO','2','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('cc2e124c-f0c7-4666-aea0-8eec62b83e0f','31641506768','Sayın SİBEL ÇEVİK, 644631223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644631223\n\nDear SİBEL ÇEVİK, your shipment with 644631223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644631223\n\nBICARGO','1','af077b9e-3c00-4ad8-bbfa-3e1f04750a1b',NULL),
('cc34a198-2313-4c56-827b-849aab6b6951','41766263875','Sayın MİRAÇ SAKAR, 437969799 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437969799\n\nDear MİRAÇ SAKAR, your shipment with 437969799 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437969799\n\nBICARGO','1','aec29545-1708-47a6-a33d-352a69ad4876',NULL),
('cc355590-3836-430c-aa68-5c1654b5b0e8','31681294443','Sayın ABDIL HAPLE , 248955969 nolu gönderiniz 2581 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248955969\n\nDear ABDIL HAPLE , your shipment with 248955969 was delivered to you with the delivery code 2581. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248955969\n\n\nBICARGO','2','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL),
('cc370b09-3ea3-4081-9ec4-dfaeea27c7f8','905389543828','ZEESHAN AHMAD FAROOQ adlı müşterinizin 486874151 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('cc3880f8-4041-4852-939f-a97bf29c9946','905078062550','ANAHİTA MORİD adlı müşterinizin 598412225 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('cc3d57a8-9c56-4f13-82df-83554ca89212','905059175469','Sayın yetkili; ŞÜKRÜ AKSOY adlı müşterinize 428390036 nolu gönderinizin sandalye 4 adet ürünü 2 parça halinde alper arda adresinizden 13.12.2024 16:30:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','877feceb-dcee-4240-b3d0-2096978d9783',NULL),
('cc4345ec-4f84-481d-9110-e6b0ff049ebc','491625968428','644298325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5819 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644298325\n\nYour shipment with the number 644298325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5819. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644298325\n\nBICARGO','1','56416526-a1b9-4abd-8f0b-7b4ddb02e6fe',NULL),
('cc44e96c-bcfa-45fb-a745-f8806842c2f1','905389543828','DİLAN HANIM adlı müşterinizin 486724632 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','7a2cd810-7e27-4b3c-9394-3429f5c4d22b',NULL),
('cc4b3e09-08ed-419f-a322-611199ba9f0d','905335708965','PATRİK adlı müşterinizin 735329890 nolu gönderisi 27 parça halinde yola çıkmıştır.','1','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL),
('cc4b4c4e-c0a9-4d23-a026-0f3445912c84','33626413222','Sayın TEBIB MYRIAM , 221603036 nolu gönderiniz 3265 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221603036\n\nDear TEBIB MYRIAM , your shipment with 221603036 was delivered to you with the delivery code 3265. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221603036\n\n\nBICARGO','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('cc4d5aa2-ffd7-4504-a540-9baf793fa3b7','905336367828','ŞAHİN DOROTHE adlı müşterinizin 98298396 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('cc59e788-0245-4bde-b201-1cad912e6f6f','905054335859','ALİM BAŞ adlı müşterinizin 50156405 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cb3e88c4-6cee-490c-8102-4a0b9dd8ecb3',NULL),
('cc61c814-5e2c-495b-81dd-f70fc45faf6e','905078062550','Sayın yetkili; BURCU ASLAN adlı müşterinize 598220619 nolu gönderinizin MASA ürünü 3 parça halinde RİO FATİH adresinizden 16.07.2025 17:47:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('cc63dffd-86d8-4e89-8a53-3ca4210f5fbc','905335708965','NAVİD BEHBODY adlı müşterinizin 735793543 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','cd45be95-bde1-4aa8-ba7b-b19b6cded292',NULL),
('cc641c91-91cb-4d15-ab05-449d062b1ea5','905075277637','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin ÖZEL MASA + SEHPA  ürünü 6 parça halinde GÜMÜŞ MASA adresinizden 16.10.2025 15:30:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('cc6640e1-468e-4a63-b149-67a86d5b2250','905517075149','AYŞEGÜL GÖKTEPE adlı müşterinizin 478545457 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('cc675082-9c54-496c-a253-e8823f37d209','33352661170224','Sayın Maria veigea , 982333020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982333020\n\nDear Maria veigea , your shipment with 982333020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982333020\n\nBICARGO','2','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('cc6f25c8-46fe-4a7a-9d9f-a7dc45520f30','4915224134737','Sayın DERYA ERDOĞMUŞ SSH, 437527391 nolu gönderiniz 6861 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437527391\n\nDear DERYA ERDOĞMUŞ SSH, your shipment with 437527391 was delivered to you with the delivery code 6861. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437527391\n\n\nBICARGO','1','cd2ecc94-5d9f-40d5-b067-7e35b5396b4b',NULL),
('cc701e4e-3ac0-4589-8d75-76da642dd6d4','4917681126034','786398335 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9719 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786398335\n\nYour shipment with the number 786398335 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9719. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786398335\n\nBICARGO','1','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('cc731e80-6a96-4b1c-84e1-0653b6fe9902','436601875213','Sayın MURAT SABAK, 745859135 nolu gönderiniz 10258 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745859135\n\nDear MURAT SABAK, your shipment with 745859135 was delivered to you with the delivery code 10258. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745859135\n\n\nBICARGO','1','5a89b7b0-e128-4e6d-96f8-3fe39b44b85f',NULL),
('cc7337a4-2b97-4687-a8a5-a026fb07d29e','491728743891','598587609 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8915 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598587609\n\nYour shipment with the number 598587609 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8915. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598587609\n\nBICARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('cc743cb0-2e0e-442e-9af2-b12925fe8cf7','','Sayın İBRAHİM BAĞCI 1, 745832267 nolu gönderiniz 10293 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745832267\n\nDear İBRAHİM BAĞCI 1, your shipment with 745832267 was delivered to you with the delivery code 10293. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745832267\n\n\nBICARGO','2','1ad43916-6b71-4844-8c13-9ae4882c08fd',NULL),
('cc787cc1-db7a-453b-879c-8580b0e2008c','4915753642605','Sayın SEDA TULGAR, 644152675 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644152675\n\nDear SEDA TULGAR, your shipment with 644152675 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644152675\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('cc797306-9846-4732-9d04-4555fbfe6930','905523438971','HELİN ÖZDİL adlı müşterinizin 896155892 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('cc7bd658-e70c-4073-b012-b89146010110','436605312866','437940825 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437940825\n\nYour shipment with the number 437940825 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437940825\n\nBICARGO','1','d2e58279-3f1f-4815-9d06-57edca6efd91',NULL),
('cc7e8c91-f47e-441f-b900-e619c693270d','905431026110','AZAT ALKAN adlı müşterinizin 35119636 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('cc7fece8-b003-4012-b976-fb7aa4e11823','491744713856','Sayın BERKAN AKTÜRK, 371823380 nolu gönderiniz 6775 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371823380\n\nDear BERKAN AKTÜRK, your shipment with 371823380 was delivered to you with the delivery code 6775. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371823380\n\n\nBICARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('cc8170b2-405d-46d5-a50d-dc8dbd6bd72f','491743355024','Sayın MUSA CAN KOÇAK, 644389756 nolu gönderiniz 1864 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644389756\n\nDear MUSA CAN KOÇAK, your shipment with 644389756 was delivered to you with the delivery code 1864. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644389756\n\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('cc85245d-4865-409c-a8bd-2bd9149b496a','905079358213','Sayın yetkili; ERAY SÖNMEZAY adlı müşterinize 745189997 nolu gönderinizin VOYAGE YATAK ODASI  ürünü 25 parça halinde RİXXE  adresinizden 09.09.2025 13:57:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fd1aebd-0dc6-49ea-9a0f-b09dfab3887e',NULL),
('cc89ee76-99bc-4819-b5e8-ee3d14dee598','491765457602','Sayın SEDA KURTDİNÇEL, 745431846 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745431846\n\nDear SEDA KURTDİNÇEL, your shipment with 745431846 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745431846\n\nBICARGO','2','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('cc8b7f91-533e-4075-a8e2-26811f7686b8','905331602195','Sayın yetkili; ELANUR AKBALIK adlı müşterinize 221897229 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 14.10.2025 12:17:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90958150-7001-4d34-b42d-731ec53aa3d6',NULL),
('cc9482a6-1d0c-402b-a5d1-073d07953fba','905331602195','Sayın yetkili; GÜLSÜM UÇAR  adlı müşterinize 221345365 nolu gönderinizin 70x120 ceviz orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:57:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fb47c44-2d49-4fed-9d20-275d1c3b846a',NULL),
('cc955f4c-c0e1-4637-a5ec-778ea981331c','905331602195','HASAN YALÇIN adlı müşterinizin 221724224 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','59340ffb-ba9b-4386-a0a4-686fcf54115b',NULL),
('cc998a95-bea6-4748-b37a-9bfbfb95574f','905461661672','MELEK IŞIK SSH adlı müşterinizin 644452767 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('cc9be4a4-e3fa-41ea-8e80-bc6f13d96eaa','4901708970529','910280020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1598 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910280020\n\nYour shipment with the number 910280020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1598. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910280020\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('cc9c0911-e8cd-4be1-a3a5-d54852e4c402','905079358213','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin T SANDALYE  ürünü 2 parça halinde BEYMİ  adresinizden 08.10.2025 10:33:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('cca5170c-8b5d-48f5-a60f-9ff7173db9f9','905517075149','AYSEL-İSMAİL ÇILGIN adlı müşterinizin 478928003 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('cca98bcf-2cbb-49e5-b977-dae06cc8e7d5','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160\'LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('ccad8901-e5ab-4474-bc02-27eb6d6778b7','0033767846954','248625081 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5775 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248625081\n\nYour shipment with the number 248625081 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5775. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248625081\n\nBICARGO','2','c1b1a711-e322-4a5e-a681-2fe0fcb0deba',NULL),
('ccae23a6-aabf-4b9b-b07d-c1d9ab7a433e','41768164040','Sayın ZOE BACHTOLD, 449644504 nolu gönderiniz 5618 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449644504\n\nDear ZOE BACHTOLD, your shipment with 449644504 was delivered to you with the delivery code 5618. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449644504\n\n\nBICARGO','1','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL),
('ccaf0623-823e-4b9b-a959-d5297b364d7d','905304259202','Sayın yetkili; MELİSA DEMİRTAŞ adlı müşterinize 478757775 nolu gönderinizin 6 ADET SANDALYE AYAĞI ürünü 1 parça halinde BİCARGO DEPO adresinizden 16.05.2025 14:52:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('ccb61915-8660-4b5d-9bd9-598231bb9081','4917632871716','Sayın ENDER CAN ORHAN, 371836215 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371836215\n\nDear ENDER CAN ORHAN, your shipment with 371836215 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371836215\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('ccba4ea3-ef30-424e-9235-7580c289e616','4915115356238','745291553 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9305 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745291553\n\nYour shipment with the number 745291553 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9305. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745291553\n\nBICARGO','2','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('ccbe3040-9243-4fb6-8c02-e5d264fb4813','491784598984','Sayın MANOLYA PELİN ERDOĞAN ÖZÇELİK, 437649706 nolu gönderiniz 5069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437649706\n\nDear MANOLYA PELİN ERDOĞAN ÖZÇELİK, your shipment with 437649706 was delivered to you with the delivery code 5069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437649706\n\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('ccc5ea64-91a1-4573-9f21-a1424664c395','491726741919','Sayın DIANA ÇELİKER, 449974141 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449974141\n\nDear DIANA ÇELİKER, your shipment with 449974141 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449974141\n\nBICARGO','1','7b348f53-5c5b-4ec1-b494-8e7dc766995e',NULL),
('ccc7c251-1ca3-4055-8428-a3699d4b0862','4917682030293','Sayın ARTON BERİSHA , 982835475 nolu gönderiniz 8724 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982835475\n\nDear ARTON BERİSHA , your shipment with 982835475 was delivered to you with the delivery code 8724. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982835475\n\n\nBICARGO','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('ccd82bc9-531f-4d56-9129-2a833b3db468','4917623171726','47888038 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4467 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/47888038\n\nYour shipment with the number 47888038 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4467. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/47888038\n\nBICARGO','1','945602cc-25e3-4d66-bae2-b70fa6008882',NULL),
('ccdade7d-d703-4342-ada6-40b7f53d8be8','905461661672','Sayın yetkili; (K)HÜSAMETTİN CANBOLAT adlı müşterinize 644469726 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 06.09.2025 13:04:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('cce7cf7a-00e4-4db0-8e6d-99bb2008aa32','4369919159261','Sayın SEYİT GENÇALİOĞLU , 221476651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221476651\n\nDear SEYİT GENÇALİOĞLU , your shipment with 221476651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221476651\n\nBICARGO','1','383fe013-af48-41d5-ad33-ad7c8b16446b',NULL),
('cce8bc5e-d089-4083-b435-27310b56af10','4917664681539','Sayın BERKAN AĞIRMAN, 910899167 nolu gönderiniz 3135 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910899167\n\nDear BERKAN AĞIRMAN, your shipment with 910899167 was delivered to you with the delivery code 3135. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910899167\n\n\nBICARGO','1','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('ccf0a17b-3df9-42ab-adbc-859d1f24d68e','4915224149443','Sayın RUHAT DEĞİRMENCİ , 501626049 nolu gönderiniz 10008 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501626049\n\nDear RUHAT DEĞİRMENCİ , your shipment with 501626049 was delivered to you with the delivery code 10008. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501626049\n\n\nBICARGO','1','d9f2c22b-b9f7-410b-a99f-d86912b69cc4',NULL),
('ccf29619-fa2c-476b-a17c-a71cd2b4e988','905078062550','CAN ÖZKAN adlı müşterinizin 598262809 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('ccf7595f-941b-422f-9ab6-33214e8d49df','4917666234903','Sayın EDA ÇALIŞKAN, 437539983 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437539983\n\nDear EDA ÇALIŞKAN, your shipment with 437539983 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437539983\n\nBICARGO','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('ccfb61d4-e1be-4b81-9283-4f782fadc862','4917672868336','Sayın METİN NEŞELİ, 478345732 nolu gönderiniz 3848 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478345732\n\nDear METİN NEŞELİ, your shipment with 478345732 was delivered to you with the delivery code 3848. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478345732\n\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('cd0275bb-a7fc-4998-a372-9022010c4d51','905313340045','MERVE KARADAVUT adlı müşterinizin 437998346 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('cd074942-6ad0-47b4-b438-0e968e1d12f6','905335708965','ERCAN GÜLER adlı müşterinizin 735121904 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL),
('cd084afc-dc9f-4e45-9154-5ba48ab2275f','905343753391','Sayın yetkili; HASRET AVCI adlı müşterinize 644890175 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 25.02.2025 16:42:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('cd093ce0-0829-468f-b453-d11d95da085a','491784042586','371695056 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3754 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371695056\n\nYour shipment with the number 371695056 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3754. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371695056\n\nBICARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('cd0b97b4-ca45-4960-ad4b-17a7d1eb5287','33645025760','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('cd130b78-978c-4afd-ab17-e1869fcde8cd','905078062550','ERTAN TOSUNER adlı müşterinizin 598454821 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('cd1f92b9-95a5-485b-bba1-3427fd2df525','905461661672','OSMAN ALTUN adlı müşterinizin 644901751 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('cd21c5c0-8fc2-43e0-a741-6f4f547b41ad','491636216129','43725194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3739 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43725194\n\nYour shipment with the number 43725194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3739. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43725194\n\nBICARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('cd263318-144f-4144-b397-f4b8c6e5e485','4917639148019','Sayın MUSTAFA DÜNDAR, 91030681 nolu gönderiniz 10895 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91030681\n\nDear MUSTAFA DÜNDAR, your shipment with 91030681 was delivered to you with the delivery code 10895. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91030681\n\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('cd297189-f792-4573-bc0a-d14ca85a2688','5325000478','Sayın SERHAT SERHAT, 13.12.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5984440\nŞifre : 5984440\n			\nBİCARGO','1',NULL,'acf5e984-44c0-4233-9521-0c373102472f'),
('cd2c540a-002f-41dd-b0bb-9928a2faca44','905304259202','GÖKHAN EYCAN adlı müşterinizin 478681299 nolu gönderisi 48 parça halinde yola çıkmıştır.','1','5ac6eb7a-85e4-418f-8730-ea60d5f6fdf1',NULL),
('cd2e47d6-52fc-4137-87b8-ef86f5dd536d','491632213386','43736182 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10892 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/43736182\n\nYour shipment with the number 43736182 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10892. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/43736182\n\nBICARGO','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('cd2ecd39-4ea6-48f5-97cb-6186aa4a8898','905461661672','Sayın yetkili; TÜLAY ÇAĞLAR adlı müşterinize 644637792 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:21:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('cd2f77e8-80d8-4184-acd0-313df5dd5dca','905335511664','RECEP TABAKOĞLU adlı müşterinizin 371601782 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('cd2fe3ab-5e57-4abd-b10f-433e28d0d855','491787074737','412580908 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2907 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412580908\n\nYour shipment with the number 412580908 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2907. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412580908\n\nBICARGO','1','4bb52f7e-2bb3-4ab1-ac36-b4c4ce86cb85',NULL),
('cd348792-7a58-44c9-b9c2-d9a64031d342','33762586432','268163356 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9073 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/268163356\n\nYour shipment with the number 268163356 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9073. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/268163356\n\nBICARGO','1','02d94ba2-d3a2-4840-ba21-792d26a0031b',NULL),
('cd358c04-e9be-4d51-9d1f-61a8bfcb780b','905517075149','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin side 3 kapaklı dolap ürünü 4 parça halinde GENCECİX adresinizden 10.07.2025 15:56:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('cd382ef3-78e4-47a6-9c46-a4f56c8e7d7d','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin SAFİR 4-3 KOLTUK ürünü 5 parça halinde RİXXE adresinizden 19.09.2025 14:49:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('cd3b9199-dfba-4860-832d-f97d2d2ff30a','4379259769999','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('cd3d6e29-e538-4e99-b5ea-765b8bad6e93','436604393878','Sayın MEDİNE POLAT, 817488957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817488957\n\nDear MEDİNE POLAT, your shipment with 817488957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817488957\n\nBICARGO','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('cd45ef81-1ff6-40a6-96c5-a9588516f7c0','4917670362806','Sayın MEİSSA AL KHALED, 531480968 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531480968\n\nDear MEİSSA AL KHALED, your shipment with 531480968 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531480968\n\nBICARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('cd461e81-5d63-4236-9bab-1d0278ed3bb0','05306071261','Sayın yetkili; DİLEK KHABİL adlı müşterinize 765729280 nolu gönderinizin  ruby köşe koltuk  200*300cm  ölçülerinde  ve berjer ürünü 4 parça halinde Pİ KOLTUK  adresinizden 06.08.2025 11:29:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('cd4f1da3-2ae6-4f62-bed6-dd7a3e5fb96c','4915208716085','Sayın ZAHRA REZAEİ, 449768376 nolu gönderiniz 7266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449768376\n\nDear ZAHRA REZAEİ, your shipment with 449768376 was delivered to you with the delivery code 7266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449768376\n\n\nBICARGO','1','f0a2b18e-c335-4984-8a55-31e2b94bbe44',NULL),
('cd5062ab-968c-435e-82e9-2426e4fcc885','905079358213','MEHMET KIRMALI SSH adlı müşterinizin 745961245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('cd526d88-9305-49b6-bd21-9ef1a4b65629','4917671209008','Sayın SERCAN KUCUR, 437626008 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437626008\n\nDear SERCAN KUCUR, your shipment with 437626008 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437626008\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('cd54fba1-4439-4a5a-86f3-2ff5baa79f27','905331602195','Sayın yetkili; SIDI MARİ MUHAMMED  adlı müşterinize 221859569 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 13.01.2025 12:55:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('cd550004-c90c-42d4-b2cb-8ca1c06a5d63','905325000478','ŞÖMİNE adlı müşterinizin 412987652 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL),
('cd579fed-2c19-4cfc-b2c8-2d2f451d1ff6','905363385813','YASEMİN KARAKOC adlı müşterinizin 976430102 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','de4f6039-e43d-4b0d-8dd2-09c55847c5d4',NULL),
('cd5d2875-6188-47a7-a81a-717096e6b813','905355928266','SEYFETTİN BİLİCAN adlı müşterinizin 412741555 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','3cbb1188-1698-4b6e-bd28-06d238414388',NULL),
('cd5f3277-96f4-44f2-9fce-4f1b4ea1b93b','491788201397','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('cd6366d4-93a7-40a9-8292-59ed00081311','33651400749','Sayın ÖZKAN ÖZKOŞAR, 910756975 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910756975\n\nDear ÖZKAN ÖZKOŞAR, your shipment with 910756975 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910756975\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('cd68175c-6460-4d78-ab64-3bca639417ad','41786933908','Sayın ESRA ELİŞ, 428704278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428704278\n\nDear ESRA ELİŞ, your shipment with 428704278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428704278\n\nBICARGO','1','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('cd6b552c-24cd-4c37-a2f6-f03a9cc1cdda','905313340045','Sayın yetkili; ZEYNEP ŞİMŞEK adlı müşterinize 437442386 nolu gönderinizin sandalye ürünü 3 parça halinde MFOUR SANDALYE adresinizden 03.09.2025 14:59:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('cd6d55d3-52ae-43ea-b5b2-afb64b02d889','905389543828','Sayın yetkili; FARIH SANAE adlı müşterinize 486609627 nolu gönderinizin Sandalye ürünü 2 parça halinde Asil Sandalye adresinizden 09.09.2025 10:49:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('cd6d6052-a205-49db-900d-44817da88548','4915161573588','478774501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478774501\n\nYour shipment with the number 478774501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478774501\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('cd6de077-3ec7-42c9-8b05-84ffc28d0bae','905335511664','Sayın yetkili; ALİ CAN YILMAZ adlı müşterinize 371102325 nolu gönderinizin köşe takımı + puf ürünü 4 parça halinde Elitis Home adresinizden 21.03.2025 14:10:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7380dcb-b5b3-458a-9219-53fdb3531629',NULL),
('cd768ae6-2522-4853-9a94-bcf6e014e97e','491749634049','Sayın BİRSEN KARADAVUT, 478403352 nolu gönderiniz 7213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478403352\n\nDear BİRSEN KARADAVUT, your shipment with 478403352 was delivered to you with the delivery code 7213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478403352\n\n\nBICARGO','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('cd7a9072-3952-45ad-9439-aeb90e5d520d','905461661672','Sayın yetkili; ÖZCAN ŞAHİN adlı müşterinize 644589662 nolu gönderinizin Köşe koltuk ürünü 6 parça halinde KOLTUKÇU ERSİN adresinizden 17.10.2025 10:31:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','846144fe-95bb-4d2a-83ea-4552d599f458',NULL),
('cd7db3e4-3ca9-4961-a769-3aaf178e0ee8','4917622880624','Sayın VEYSİ DAĞDELEN, 614456400 nolu gönderiniz 5036 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614456400\n\nDear VEYSİ DAĞDELEN, your shipment with 614456400 was delivered to you with the delivery code 5036. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614456400\n\n\nBICARGO','2',NULL,NULL),
('cd7f3f27-bdb2-488e-800c-e4e3c459a6ae','905517075149','Sayın yetkili; YEZNİK ADORYAN adlı müşterinize 47816855 nolu gönderinizin dolce 3+2+1+1 koltuk takımı ürünü 5 parça halinde artbois adresinizden 26.09.2025 11:21:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebece0e-bf8d-4678-bf15-17e6bed10020',NULL),
('cd7f4aa1-187c-4780-8e19-192352490bae','905461661672','Sayın yetkili; ETEM FIRAT YÜKSEL(K) adlı müşterinize 644664237 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 10.10.2025 10:26:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('cd83f84e-322a-4f8f-bad6-0a3275d33664','4917687857999','817630523 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1320 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817630523\n\nYour shipment with the number 817630523 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1320. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817630523\n\nBICARGO','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('cd8bde87-c2dd-4206-a476-295e611d6aea','905079358213','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin ALFA YATAK ODASI  ürünü 19 parça halinde GARDEROBE adresinizden 15.05.2025 15:15:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('cd8eeb8e-ed23-4fb2-b74d-20cc5d73731b','905301592882','Sayın yetkili; AHMET EMİN GÜL adlı müşterinize 910201328 nolu gönderinizin JOY KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 26.05.2025 09:52:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f7ffe14-ff1f-4d95-8dd4-55570a12656c',NULL),
('cd92119f-ac2f-4564-b02b-8e2dcdbc6aa8','4915751613198','478854135 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3399 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478854135\n\nYour shipment with the number 478854135 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3399. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478854135\n\nBICARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('cd9a55ca-8452-48c5-ad05-20424f3d028f','9054439559150','Sayın yetkili; SEVİNÇ ÖZKAN adlı müşterinize 614941926 nolu gönderinizin ŞAHİNLER KRİSTAL SANDALYE ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:34:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a61aaaae-ea6b-46da-8c29-fd91e43d4e80',NULL),
('cd9a7ea9-6c07-441e-8d1a-0dd490523f3f','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Bohem Sandalye ürünü 4 parça halinde Emek Sandalye adresinizden 07.05.2025 13:36:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('cda4a39d-2557-4633-8aaa-b148afe60cbe','4917621155442','Sayın ZEYNEP CİHANGİR, 478678849 nolu gönderiniz 3260 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478678849\n\nDear ZEYNEP CİHANGİR, your shipment with 478678849 was delivered to you with the delivery code 3260. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478678849\n\n\nBICARGO','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('cdafaea6-f9ef-4379-ab0a-97bd18892228','905304259202','DİLAN ÖZKAN adlı müşterinizin 478125578 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','81d90712-62e3-438c-bb65-68ef2f0ed8e5',NULL),
('cdb025a5-4d2d-434f-9b9a-63407f955266','491637394774','Sayın TOLGA KAPLAN, 598463425 nolu gönderiniz 4640 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598463425\n\nDear TOLGA KAPLAN, your shipment with 598463425 was delivered to you with the delivery code 4640. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598463425\n\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('cdb1287a-28a7-4e25-bbe3-4fb7a1d329b7','4369919051995','Sayın İBRAHİM BEY, 248902824 nolu gönderiniz 10798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248902824\n\nDear İBRAHİM BEY, your shipment with 248902824 was delivered to you with the delivery code 10798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248902824\n\n\nBICARGO','1','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL),
('cdb63b12-85ba-4d5f-aad3-13fa58892dec','33785173918','Sayın BESNA ULUĞ, 478906000 nolu gönderiniz 7648 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478906000\n\nDear BESNA ULUĞ, your shipment with 478906000 was delivered to you with the delivery code 7648. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478906000\n\n\nBICARGO','1','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('cdc025e5-a715-4ded-8dcb-3b590530f926','905517075149','ALİCE CHOCRON adlı müşterinizin 478589258 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('cdc256c4-fc35-4bba-b750-cd8030cc7af1','33649427969','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('cdc4ffe3-886c-4638-a595-a9611a443d3a','905070281051','YILDIZ GÜNGÖR  adlı müşterinizin 633870078 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ee498557-0564-4d86-8d79-85e7c39d48e5',NULL),
('cdc66666-bf7b-4f16-b2ed-8eeef5ead747','491621091849','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('cdc6e081-4da1-46b3-8fe5-130f62b162b9','905059175469','KADİR ÖZCAN  adlı müşterinizin 428360379 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df54dcca-24e3-4d47-9eea-e04e05622ecc',NULL),
('cdc796cc-638d-48ec-8cc4-1ebedee2fb1f','4917680082781','Sayın KERİM ŞENTÜRK, 644966461 nolu gönderiniz 5130 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644966461\n\nDear KERİM ŞENTÜRK, your shipment with 644966461 was delivered to you with the delivery code 5130. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644966461\n\n\nBICARGO','1','33c1702e-09af-4ac6-992c-6abbb6899f2c',NULL),
('cdca7d03-dc82-4c01-a6ae-f1b82cd0503b','4369919970009','Sayın PELÇİN BUZLU, 437554629 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437554629\n\nDear PELÇİN BUZLU, your shipment with 437554629 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437554629\n\nBICARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('cdd93a31-c8b6-4a60-96bd-52356f43d17e','33661693303','Sayın VARELA FURTADO ELLİS, 982716246 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982716246\n\nDear VARELA FURTADO ELLİS, your shipment with 982716246 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982716246\n\nBICARGO','1','05621906-10fc-483c-89a6-f51e344e576b',NULL),
('cdda04a4-5999-4896-9f08-8b78656b9844','4917672242540','Sayın ŞİRİN ASLAN, 371193272 nolu gönderiniz 5234 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371193272\n\nDear ŞİRİN ASLAN, your shipment with 371193272 was delivered to you with the delivery code 5234. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371193272\n\n\nBICARGO','1','a4f61a34-65e2-4637-828a-46f7b5c23cb4',NULL),
('cde15c9c-4eec-40b7-a68e-b2d8eda2ed69','4915228807643','Sayın SERKAN DOKKAL, 598961970 nolu gönderiniz 1030 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598961970\n\nDear SERKAN DOKKAL, your shipment with 598961970 was delivered to you with the delivery code 1030. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598961970\n\n\nBICARGO','1','07db3804-178b-4b42-ba68-1b6cc6758010',NULL),
('cde45e32-2645-4063-9e30-beaabb79489a','905421855834','MUSTAFA ŞİMŞEK adlı müşterinizin 338730647 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('cde59039-8d46-45cd-9396-77898f44c7f0','3363870091','Sayın SÜVEYLA TARHAN, 745906539 nolu gönderiniz 9888 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745906539\n\nDear SÜVEYLA TARHAN, your shipment with 745906539 was delivered to you with the delivery code 9888. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745906539\n\n\nBICARGO','2','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('cdf4c709-3fb4-4eee-8255-361bf839ded6','491777454971','Sayın RIZA KUŞÇU, 725500857 nolu gönderiniz 1950 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/725500857\n\nDear RIZA KUŞÇU, your shipment with 725500857 was delivered to you with the delivery code 1950. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/725500857\n\n\nBICARGO','1','ab709265-d9c6-47a9-8b61-ea995dfc952b',NULL),
('cdf673b5-f25e-4373-b0fe-d65f2c1880b8','905078062550','Sayın yetkili; BORAN ALBAYRAK adlı müşterinize 598668612 nolu gönderinizin SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 25.07.2025 16:20:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5c8a45fd-4f1c-4791-a236-1f8362adf868',NULL),
('cdf84cbb-a7f4-479f-a594-193284c347a7','905510396989','CEMAL YALÇIN adlı müşterinizin 319116491 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('cdfd861c-d383-40da-ba4b-f0ff6388f35d','905336367828','BOUKİ BOUCHRA adlı müşterinizin 982918194 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL),
('cdff8970-657d-4658-897d-c3022ae536e3','33766554745','Sayın ABDUL AHMAD, 112609358 nolu gönderiniz 8755 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/112609358\n\nDear ABDUL AHMAD, your shipment with 112609358 was delivered to you with the delivery code 8755. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/112609358\n\n\nBICARGO','1','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('ce00a7d5-f8d3-47fe-99cf-f8997c7b7b0d','905313340045','IVANA ELİAS adlı müşterinizin 437426295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('ce039da6-c43e-43b3-bd3e-b84f477fe092','491729063463','Sayın İHSAN KEPİR, 412299499 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412299499\n\nDear İHSAN KEPİR, your shipment with 412299499 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412299499\n\nBICARGO','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('ce0842b1-db9f-4cf6-99e3-1039a47fe8a0','905335708965','EUROMAT adlı müşterinizin 735293129 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44397bf0-f8fd-4ce2-bc11-c3303b438080',NULL),
('ce0a5b6b-23c0-4905-86ba-67777f3e5b32','4653467627566257','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('ce0af259-1192-4bc1-bccf-3624a770eb27','905075277637','Sayın yetkili; ZELİHA KILGI adlı müşterinize 745557977 nolu gönderinizin MUTFAK MASA TK  ürünü 6 parça halinde Fatura adresinizden 23.10.2025 12:57:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c82f6276-7135-4de6-87f0-112f5bbfaf90',NULL),
('ce0b056f-c13a-4f41-be7e-813284efa348','905350349029','Sayın yetkili; MERT ALİ YÖNTEM adlı müşterinize 203151723 nolu gönderinizin masa ürünü 4 parça halinde VAHİT ÇETIN MOBİLYA adresinizden 03.06.2025 16:50:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('ce0b1be8-de4c-4396-8672-ee785f9b3a3d','33788243398','982292057 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9743 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982292057\n\nYour shipment with the number 982292057 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9743. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982292057\n\nBICARGO','2','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('ce0be3d6-19fd-4e5a-8a8d-ee6fdfc39c89','905461661672','Sayın yetkili; HAKİF ZİNAL adlı müşterinize 644330933 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 17.06.2025 17:01:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('ce1317fc-ed65-4274-a32c-193cd88a4265','33605930464','449193323 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4344 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449193323\n\nYour shipment with the number 449193323 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4344. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449193323\n\nBICARGO','1','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL),
('ce179219-d276-4683-b381-3b364130223b','4917624132760','Sayın MUSTAFA DÜNDAR, 91030681 nolu gönderiniz 10895 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91030681\n\nDear MUSTAFA DÜNDAR, your shipment with 91030681 was delivered to you with the delivery code 10895. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91030681\n\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('ce1af227-929e-48ec-af8a-6bb3e6fb6113','33763204411','221748184 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10216 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221748184\n\nYour shipment with the number 221748184 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10216. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221748184\n\nBICARGO','1','250a38e7-1fe6-4161-8032-c64b33f1c604',NULL),
('ce1b0c1b-4ddd-4951-af49-335e650b9ebc','06763463503','Sayın DİANA BARAKAEVA, 613554878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613554878\n\nDear DİANA BARAKAEVA, your shipment with 613554878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613554878\n\nBICARGO','2','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('ce1b2ac8-6463-4962-b352-c18fc625ad52','905363385813','HASSAN HUSSEİN adlı müşterinizin 976494428 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','887d1301-8182-4254-93e6-73d1ecf6af40',NULL),
('ce229f20-ee85-4121-8b90-8432595bde9a','491787816278','371696812 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371696812\n\nYour shipment with the number 371696812 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371696812\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('ce2623b4-1090-44ca-ace4-7c4c11044d17','905315980893','ERKAN ÇELİK  adlı müşterinizin 911398945 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36c2bf88-d916-406a-9c75-5831ceac476b',NULL),
('ce29bb14-6250-4708-b0ea-c607dad4d22a','905075277637','SÜVEYLA TARHAN adlı müşterinizin 745906539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('ce2a4fea-4ff4-4b95-83f3-35c95fd92498','4915161573588','Sayın AYŞEGÜL GÖKTEPE, 478774501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478774501\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478774501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478774501\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('ce2f7606-5326-4856-a092-e5f1e46b36b4','33749069844','Sayın MUHAMMET ENES KILIÇ, 478609228 nolu gönderiniz 5462 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478609228\n\nDear MUHAMMET ENES KILIÇ, your shipment with 478609228 was delivered to you with the delivery code 5462. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478609228\n\n\nBICARGO','1','fcf0c01f-72e5-4298-b55c-15849b2fdb04',NULL),
('ce2f8f57-0abf-40d2-9b70-e17d063183d4','905059175469','Sayın yetkili; ERDOĞAN DEMİREL adlı müşterinize 428172853 nolu gönderinizin baza 2 adet ürünü 2 parça halinde vidy adresinizden 08.07.2025 16:46:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL),
('ce3036c7-c973-4af7-9c49-9a35040be6a0','491776464425','Sayın SAMET ÖZTÜRK , 911787432 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/911787432\n\nDear SAMET ÖZTÜRK , your shipment with 911787432 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/911787432\n\nBICARGO','1','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL),
('ce32f145-4387-4e9b-995c-9d761a40258a','905350617509','SEVİM KARATEKE  adlı müşterinizin 613528305 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('ce39e279-dfaa-4249-9083-7a09800ced35','905394878216','Sayın yetkili; ALİ ALBAY adlı müşterinize 517205085 nolu gönderinizin Koltuk Takımı 3+3+1+1 ürünü 5 parça halinde Fatura adresinizden 16.06.2025 15:16:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('ce4107b8-b820-411b-a44c-90ab8c775ee6','33646051742','515463699 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5113 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515463699\n\nYour shipment with the number 515463699 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5113. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515463699\n\nBICARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('ce4469be-e37d-4eea-a2bc-25ee7f96dac3','905327099916','Sayın yetkili; ERCAN DİKME adlı müşterinize 959658567 nolu gönderinizin 2 ADET 3LÜ KANEPE ürünü 4 parça halinde Fatura adresinizden 20.10.2025 10:20:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e8ddd62-748e-4719-9bad-9f588fc2c7d3',NULL),
('ce4587fd-0c95-4710-aa2d-72d3c5a45dd6','491731699402','Sayın ÖZLEM SAĞIR, 73427297 nolu gönderiniz 5668 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/73427297\n\nDear ÖZLEM SAĞIR, your shipment with 73427297 was delivered to you with the delivery code 5668. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/73427297\n\n\nBICARGO','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('ce46f9ba-8f40-405a-a1ad-1c934e92c6a4','905331602195','Sayın yetkili; MUHAMMED ERDOĞAN adlı müşterinize 221396383 nolu gönderinizin Traverten orta sehpa 70x110 ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 27.02.2025 12:34:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('ce4d899e-4a00-40ae-a671-08eb5cf20168','4917670211470','Sayın SEYİTHAN ASLAN, 745212688 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745212688\n\nDear SEYİTHAN ASLAN, your shipment with 745212688 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745212688\n\nBICARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('ce4e2619-bf70-42d9-8986-7548ffbcd83f','4917684805467','Sayın BURHAN SARIKURT, 613431273 nolu gönderiniz 8265 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613431273\n\nDear BURHAN SARIKURT, your shipment with 613431273 was delivered to you with the delivery code 8265. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613431273\n\n\nBICARGO','1','d8ea87c9-edbf-4d33-b8c2-caafc3b367d2',NULL),
('ce53d774-5116-46fd-99c5-7bb8b68bebe8','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PETEK KÖŞE TAKIMI  ürünü 2 parça halinde ELİTİS adresinizden 02.05.2025 17:50:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('ce551e95-7e1c-4455-b98a-676382820f8d','111111111111111','Sayın BELÇİKA , 412102597 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412102597\n\nDear BELÇİKA , your shipment with 412102597 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412102597\n\nBICARGO','2','aae71aff-c951-458b-ba97-38d2072aa657',NULL),
('ce563dfc-05df-4b20-9603-530d147f570f','04917684676042','248216907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10967 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248216907\n\nYour shipment with the number 248216907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10967. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248216907\n\nBICARGO','2','746346ca-da04-465b-bff8-fc464fa93ece',NULL),
('ce5b3c81-c39d-479b-bafe-9bec71b444b3','905313340045','Sayın yetkili; NİNA ÖZÇELİK adlı müşterinize 437397407 nolu gönderinizin Kampanya köşe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 25.08.2025 13:42:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c9bddc1-1566-4cb4-9cf8-048bfd08b7b1',NULL),
('ce5db6ef-7bdd-4fcc-92ce-2e37ca52442e','491752512199','Sayın NAGİHAN ALKIRAN, 338829299 nolu gönderiniz 10277 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338829299\n\nDear NAGİHAN ALKIRAN, your shipment with 338829299 was delivered to you with the delivery code 10277. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338829299\n\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('ce600894-fcb5-47ef-ac88-9a7a9825ae10','033627383077','Sayın ZİYA DEĞERLİ, 734782763 nolu gönderiniz 1162 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734782763\n\nDear ZİYA DEĞERLİ, your shipment with 734782763 was delivered to you with the delivery code 1162. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734782763\n\n\nBICARGO','2','400f01f9-93ac-402c-9545-879c310ade12',NULL),
('ce6539d0-0b02-4eed-b30e-f7cc19123ada','491728626727','745799900 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2336 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745799900\n\nYour shipment with the number 745799900 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2336. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745799900\n\nBICARGO','1','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL),
('ce655df3-b210-4c5b-8a62-157f77e06e7c','905306071261','TUĞÇE SUER  adlı müşterinizin 765484490 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('ce65dd2c-930c-44e7-a045-5c94a6f369d3','905532675926','ABDULLAH SÖNMEZ adlı müşterinizin 428107185 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('ce6d61ef-7eac-409e-8e48-110f1a525733','491629336430','Sayın DİLBERAY MELLO, 613199072 nolu gönderiniz 7875 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613199072\n\nDear DİLBERAY MELLO, your shipment with 613199072 was delivered to you with the delivery code 7875. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613199072\n\n\nBICARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('ce74300f-75d1-48b9-ae8f-e430ef2f0fab','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin 2 ADET KARYOLA ürünü 4 parça halinde ALBESSA DESİGN adresinizden 24.09.2025 14:02:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('ce756d9c-a56d-45c2-9e39-cb94016a5406','4917664019933','Sayın CEYLAN YILMAZ , 982464994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982464994\n\nDear CEYLAN YILMAZ , your shipment with 982464994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982464994\n\nBICARGO','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('ce7676a2-6682-4922-b0b1-c1387d11a4d0','41786878898','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('ce786064-7963-4eda-bc0c-6f20ed3dad40','4917624966741','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','8ac11872-8b52-4d38-b53d-bc95257e76e8',NULL),
('ce7d271a-5f32-4241-ab35-8624f4686874','41796133167','745219309 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5475 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745219309\n\nYour shipment with the number 745219309 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5475. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745219309\n\nBICARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('ce82f3b9-0ceb-4401-bd18-7854771c823a','41782502188','Sayın SABRİNA ZAHEY, 982555492 nolu gönderiniz 5823 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982555492\n\nDear SABRİNA ZAHEY, your shipment with 982555492 was delivered to you with the delivery code 5823. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982555492\n\n\nBICARGO','1','e4b060c3-fb34-42f4-9364-6b48d058bac3',NULL),
('ce8d7880-26d2-47ad-8804-ca3139018565','905517075149','Sayın yetkili; SAMET BEY adlı müşterinize 478544570 nolu gönderinizin Sandalye  ürünü 3 parça halinde RİXXE adresinizden 23.10.2025 12:07:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('ce93efbf-bc0f-4037-97c3-c5b6ac303d16','32489883387','Sayın ÖZGÜR ÇEŞME, 437694817 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437694817\n\nDear ÖZGÜR ÇEŞME, your shipment with 437694817 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437694817\n\nBICARGO','1','e284eca9-ac8c-444b-9259-006514765b59',NULL),
('ce945734-8d8c-4aa9-bf66-2117c7d928fc','491732013160','371749484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2143 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371749484\n\nYour shipment with the number 371749484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2143. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371749484\n\nBICARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('ce94ff5d-c26e-4cb7-8bc9-fcbeda611b7b','4917670325071','644711459 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7040 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644711459\n\nYour shipment with the number 644711459 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7040. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644711459\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('ce9750e3-aa2e-4092-b35c-d4966ed2c39a','905335511664','ELÇİN ÖZDEMİR adlı müşterinizin 371860514 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','83dcfa57-e33d-46e2-b78c-ed99b59bfc16',NULL),
('ce9de359-0469-4b56-a215-879f48c882a9','905335511664','JASMİNA YILMAZ adlı müşterinizin 371785400 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('ce9f61f5-9bf7-42fc-8523-fdff489c11f5','33698172262','Sayın ELA BAYRAM, 531737045 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531737045\n\nDear ELA BAYRAM, your shipment with 531737045 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531737045\n\nBICARGO','1','73e11a5e-8f1e-4939-880a-7a4290068064',NULL),
('cea0040c-5642-48ef-ad81-06646c07babf','905313340045','Sayın yetkili; NİSA PARLAR adlı müşterinize 437895842 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 08.08.2025 14:48:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('cea1c1c4-7063-4352-b188-729a2298ec64','4915734541843','515956879 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2358 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515956879\n\nYour shipment with the number 515956879 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2358. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515956879\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('cea50c6b-e022-4aea-91e0-9bb9b2d2bdf9','905336367828','FLORJEN KRASNİGİ adlı müşterinizin 982310142 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL),
('cea52a2c-aa87-4a1e-84a2-46ef2bdb60fc','41763455531','Sayın İSHOAK ABU BAKER, 126938963 nolu gönderiniz 2407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126938963\n\nDear İSHOAK ABU BAKER, your shipment with 126938963 was delivered to you with the delivery code 2407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126938963\n\n\nBICARGO','1','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL),
('cea677ec-f7c7-4f4e-bcd1-0f3749df5ee6','31628641442','Sayın DİDEM BAKES , 517279482 nolu gönderiniz 8351 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517279482\n\nDear DİDEM BAKES , your shipment with 517279482 was delivered to you with the delivery code 8351. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517279482\n\n\nBICARGO','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('cea7fa1d-cc50-4bd5-b24f-96c677cf12e4','33782119084','Sayın NİZAMETTİN, 223719427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223719427\n\nDear NİZAMETTİN, your shipment with 223719427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223719427\n\nBICARGO','1','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL),
('ceb5d231-27bd-4b39-a9a8-459ccbbf1b53','4915254883380','126377805 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1409 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126377805\n\nYour shipment with the number 126377805 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1409. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126377805\n\nBICARGO','1','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL),
('ceb89310-c59c-4241-bdbf-0bb299a4e398','905336367828','Sayın yetkili; RERHAYE KHADJA  adlı müşterinize 982834531 nolu gönderinizin Masa  ürünü 2 parça halinde Fatura adresinizden 11.03.2025 16:38:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('ceba79eb-03c8-4e5c-b7b1-0afb6b5b3f3b','905078062550','ŞÜKRÜ AK adlı müşterinizin 598445423 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a42a1c77-dffe-41cf-b2b2-08ccedab680b',NULL),
('cebc4955-9e45-438d-b540-30f807e3e27a','905313340045','MÜCAHİD AL adlı müşterinizin 437880840 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('cec18ef8-6933-46aa-8b1d-7200a21f8474','4915734346614','Sayın HELİN ÖZDİL, 896155892 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896155892\n\nDear HELİN ÖZDİL, your shipment with 896155892 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896155892\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('cec59cd6-074f-4eb2-ac89-0a0b6e69f0fe','905078062550','Sayın yetkili; KADER ŞAHİN adlı müşterinize 598719647 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 16.10.2025 11:05:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('cec617a2-4672-4286-8bac-ac2de0cc17c6','491726827478','Sayın SEVGİ BOLAT, 598250504 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598250504\n\nDear SEVGİ BOLAT, your shipment with 598250504 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598250504\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('cecb5d2a-276f-4959-a5c2-3ba627a1dae7','905461661672','MELEK IŞIK SSH adlı müşterinizin 644452767 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('ced0fc1b-902c-48f1-bd4f-1f0ac9bbc989','33651400749','910482480 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1612 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910482480\n\nYour shipment with the number 910482480 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1612. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910482480\n\nBICARGO','1','f4277465-32cb-4557-9e68-bc0849767854',NULL),
('ced40844-b9f9-4969-bce1-13ec508e7ddf','905350617509','Sayın yetkili; WALDEMAR HEİNZ  adlı müşterinize 613940015 nolu gönderinizin Masa ürünü 2 parça halinde Masami adresinizden 08.09.2025 17:52:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('ced4a339-ce13-4c41-b8ac-88a24a8bf9d8','4333635914929','449921347 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8541 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449921347\n\nYour shipment with the number 449921347 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8541. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449921347\n\nBICARGO','2','72595593-1c70-4451-8d5d-15322ee88f0f',NULL),
('ced986ae-dbab-4857-93fe-c9b777c8b28c','905336367828','Arbesa adlı müşterinizin 982653067 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','7d94f5dc-3374-42f1-918a-96335b5e8070',NULL),
('cedd72c8-2f1c-4fed-ac9d-965eb7399e64','905331602195','BERİVAN ERTUĞRUL  adlı müşterinizin 221559079 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','223bf502-0a5c-4df0-bef2-463ec95dbb4e',NULL),
('cede74fd-e28c-4246-a927-80967510245d','905461661672','BARAN YILDIZ adlı müşterinizin 644832811 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('cedf89b6-d93b-4d03-bbb9-d527cf2c89a3','491752616978','613847250 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9012 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613847250\n\nYour shipment with the number 613847250 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9012. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613847250\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('cedfbf54-3a7f-47e8-b51d-aa6950036ace','33622632744','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('cedfe327-ff4f-415d-8142-1b4910c28b6f','905335511664','Sayın yetkili; SİNEM ULUSOY adlı müşterinize 37183091 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 11.07.2025 16:05:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','99c9a988-01a1-474c-b7f5-70e4528c16c4',NULL),
('cee23d29-1fc0-41d7-bfa1-13bca633edf9','905313340045','CENNET YAVUZ adlı müşterinizin 437250812 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('cee26ce7-c519-4d2d-8d4c-cc074df13e34','4915150003211','657147391 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2754 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657147391\n\nYour shipment with the number 657147391 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2754. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657147391\n\nBICARGO','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('cee283a7-914a-4ee2-bdc2-5e1f12c1144e','31640538953','Sayın ŞEYMA BOZDAĞ, 221940723 nolu gönderiniz 7109 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221940723\n\nDear ŞEYMA BOZDAĞ, your shipment with 221940723 was delivered to you with the delivery code 7109. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221940723\n\n\nBICARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('cee6b50b-9258-4a5c-baa4-93292a36fc86','905301592882','Sayın yetkili; BİRCAN ŞAHİN adlı müşterinize 91074356 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 03.06.2025 17:05:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('cee9b9d1-c533-4789-b9d8-2c02a57dc073','3247788295','Sayın GÜRSEL KURTULMUŞ, 428659303 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428659303\n\nDear GÜRSEL KURTULMUŞ, your shipment with 428659303 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428659303\n\nBICARGO','2','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('ceea1fec-e400-4c63-bbc6-0253f5ab520e','31642750576','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('cef00bf3-cba7-4470-b24d-ead4ab16d685','1111111111111111','Sayın EMEL, 735258843 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735258843\n\nDear EMEL, your shipment with 735258843 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735258843\n\nBICARGO','2','2cf8be2c-ca77-4a58-9bd6-30613ab5a8a5',NULL),
('cef293f4-0e4f-447a-b86b-98eb83bbc33c','905331602195','Sayın yetkili; YILDIZ KILIÇ adlı müşterinize 221952785 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde ALP SANDALYE adresinizden 28.01.2025 16:30:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9b2f2551-1d35-437d-8ac4-759e5572cc4b',NULL),
('cef2ba66-e2f5-439e-842a-891ed2641b5f','905078062550','SEYHAN GÜNDÜZ adlı müşterinizin 598148104 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('cef6c7cc-5d73-4bbd-bca5-f1c10c2cd2c8','491637115819','59840179 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3325 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59840179\n\nYour shipment with the number 59840179 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3325. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59840179\n\nBICARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('cef9296a-ceae-4c93-8c10-80bdb369cf77','905336367828','NASIR NOORI  adlı müşterinizin 982558117 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','f4436630-2c1a-44d9-a503-1ec5a674d42b',NULL),
('cef9ad4c-cf27-4e00-9dd5-34cef4560bde','905355891131','MOHAMED AHDAGO adlı müşterinizin 902332542 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','43eacd8e-c171-4b25-ae3a-3d30f999cfc3',NULL),
('cf000b30-f703-4222-af56-d4021b4f6f05','41792382873','Sayın SILAMNIKU ALTRIN, 371396579 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371396579\n\nDear SILAMNIKU ALTRIN, your shipment with 371396579 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371396579\n\nBICARGO','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('cf025a56-8489-4952-9f3d-89e677deba84','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ THERMO CONTROL 160*200 BAZA ANTRASİT ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('cf05c9f9-9e09-4c3d-8a36-cf0e4101311d','905075277637','Sayın yetkili; ÖZLEM TÜRKMEN adlı müşterinize 745853192 nolu gönderinizin POLO KOLTUK 3+3+1  ürünü 3 parça halinde ALYAMO  adresinizden 05.08.2025 11:04:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('cf080244-d7c2-49af-84f1-ccd2d6254d1a','436763366858','745423192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9282 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745423192\n\nYour shipment with the number 745423192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9282. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745423192\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('cf082ac7-7a66-432b-b44b-dea2bc579481','905075277637','Sayın yetkili; RABEB HOCQUARD adlı müşterinize 74541057 nolu gönderinizin VİRAL KARYOLA + 2 KOMODİN ürünü 7 parça halinde FAMILY  adresinizden 27.03.2025 12:22:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f365b152-062c-430e-aaeb-30628ef9b06d',NULL),
('cf0d1872-b548-4975-ba07-511a3a548596','905442774505','ONUR COŞKUN  adlı müşterinizin 65754067 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('cf0d8ddd-70ca-401d-a3d3-c6edaab906dd','905517075149','MİLLE FİERRA COELHO  LUDİVİNE  adlı müşterinizin 478505417 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('cf0e872b-0bb8-412d-9f72-f22ca1063474','905461661672','(K)SİNEM İDRİZAJ  adlı müşterinizin 644880161 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('cf1ba1b7-6da0-48e5-8626-f8b7b4151736','905054335859','HANEFİ ALİOĞLU adlı müşterinizin 501247386 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','088fba56-0e50-4ce7-864f-7f301956e881',NULL),
('cf1ec8c2-7954-47a9-8a90-ab87359fb0ea','905079047428','AGIM NURSHOBO adlı müşterinizin 44971858 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL),
('cf1faaa4-3e7a-4222-b375-3c795015007f','905313340045','Sayın yetkili; MUHAMMED ALİ ASLAN adlı müşterinize 437982892 nolu gönderinizin koltuk ürünü 3 parça halinde fe-ha concept adresinizden 17.04.2025 16:51:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4776d10a-2cab-47b6-b212-60c0ab466107',NULL),
('cf25958e-9632-4feb-bdc9-14b12072b6e1','4917680727235','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('cf2cf6fd-7254-488b-bf5a-81e0b833058f','491729086965','Sayın ÖMÜR TOSUN, 78633450 nolu gönderiniz 10765 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/78633450\n\nDear ÖMÜR TOSUN, your shipment with 78633450 was delivered to you with the delivery code 10765. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/78633450\n\n\nBICARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('cf2e0539-bd86-4f48-92fa-2d26d15fb97b','905394878216','ÖZGÜR PİLİÇ adlı müşterinizin 517447554 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('cf2e2f03-4575-4f3a-82bd-a8844a7f6619','33637509452','517255345 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517255345\n\nYour shipment with the number 517255345 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517255345\n\nBICARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('cf32bf46-8b4a-46bb-837d-7cc1bf85d774','905079358213','İSMAİL ÖZAY  adlı müşterinizin 745423192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('cf3999a8-b19b-4037-add1-8fc913a6965c','905517075149','Sayın yetkili; AYSEL-İSMAİL ÇILGIN adlı müşterinize 478928003 nolu gönderinizin SEHPA ve yatak ürünü 2 parça halinde BİCARGO DEPO adresinizden 02.10.2025 15:13:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('cf3b65da-e261-4c7e-be41-cef54904de74','4915210309033','Sayın M.ALİ ÇETİN, 910129924 nolu gönderiniz 2178 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910129924\n\nDear M.ALİ ÇETİN, your shipment with 910129924 was delivered to you with the delivery code 2178. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910129924\n\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('cf3f9636-6109-48c7-af9c-2380f4b46709','905331602195','İYAD SHOURBAJİ  adlı müşterinizin 221591105 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('cf41e090-2b3c-4b86-bf4f-6dafbab2b7c0','905073106101','Sayın yetkili; HATİCE GÜNGÖR adlı müşterinize 465181388 nolu gönderinizin bohem masa ve sehpa ürünü 5 parça halinde Bİ CARGO adresinizden 28.08.2025 10:01:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('cf443bc0-e9e2-4d5f-b9c4-e33853637fc4','905350617509','ZAINOUNE LOUBNA adlı müşterinizin 613809111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('cf484c79-962d-459f-90af-003c1c54df6a','1111111111111111','Sayın ERKAN SOYSAL, 248543155 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248543155\n\nDear ERKAN SOYSAL, your shipment with 248543155 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248543155\n\nBICARGO','2','b54c98c3-f73e-49ce-af82-9b0bb87bd251',NULL),
('cf4a3eee-47e1-474c-95e5-553831315b1d','436765710207','DRİVER NUMBER\n					905541100849','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('cf4a8237-7d30-4b5f-9d37-ba704fe73761','905331602195','Sayın yetkili; MİHAND SAFAE  adlı müşterinize 221257971 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde Fatura adresinizden 18.03.2025 17:04:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('cf50d67f-1306-427c-9934-3e938195c9c6','905079358213','NEVİN KIRIK adlı müşterinizin 745638060 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('cf533a0c-a158-4196-a8b8-759fbd989630','905454259202','ZEHRA AŞIK adlı müşterinizin 478243785 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','50b32b06-83ec-4001-a220-a61d557cd0b9',NULL),
('cf54cd20-2e11-43c3-9dc3-2678e2e58921','31642407835','Sayın FUAT HUT, 517903636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517903636\n\nDear FUAT HUT, your shipment with 517903636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517903636\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('cf604667-08bb-4942-abd8-9ea04b65fc7c','33605875913','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('cf626e2c-3cc4-4d78-9818-614692fdc97f','905331602195','KEVSER DENİZ  adlı müşterinizin 221368256 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','e24a5a16-cb38-43a9-8612-8532bd457d6b',NULL),
('cf6a16ce-2801-4092-9ecf-c585c4b7b417','4915772159477','644703173 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644703173\n\nYour shipment with the number 644703173 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644703173\n\nBICARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('cf6aa3a2-ee5d-488e-86bc-a05d619a30cb','905350617509','Sayın yetkili; TALA KURAEZAN adlı müşterinize 613137842 nolu gönderinizin Karyola ürünü 6 parça halinde Moe Bedding adresinizden 02.07.2025 16:19:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f8e022a-f026-498f-bbc5-f04ab0863363',NULL),
('cf6cea26-ef4b-4c20-9d4d-fb5be68db6cd','905355928266','Songül şahin adlı müşterinizin 412157634 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL),
('cf77a294-8e25-4aa6-897d-34971f68916f','905079358213','Sayın yetkili; SEZER HATUN adlı müşterinize 745249081 nolu gönderinizin KING PLATİN BAZA SET 120LIK  ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:18:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('cf77da58-a70d-4819-83df-14eccc58d6f1','905350617509','DİLBERAY MELLO adlı müşterinizin 613199072 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b446493b-1082-4321-a430-c914fa49afcf',NULL),
('cf8123ef-ee5a-4c14-a327-2026d0295da7','905461661672','BEYZA ÇALIK adlı müşterinizin 644644115 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('cf879bc6-459f-408c-8efd-7dee2477a2ec','31686096778','Sayın MELEK KAYMAZ(K), 644547865 nolu gönderiniz 7688 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644547865\n\nDear MELEK KAYMAZ(K), your shipment with 644547865 was delivered to you with the delivery code 7688. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644547865\n\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('cf8e2a83-d617-4f76-9841-08e3f0ccb500','905517075149','Sayın yetkili; DELİL ALGUNERHAN adlı müşterinize 478677262 nolu gönderinizin muwa 2 adet kanepe ürünü 3 parça halinde Fatura adresinizden 09.09.2025 14:15:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('cf90fb1b-ee14-4348-ae1a-7b7e316ce50d','491781854994','745653378 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745653378\n\nYour shipment with the number 745653378 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745653378\n\nBICARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('cf91734f-d6a6-4135-925c-df0c7bfde383','4915204351936','Sayın EMİNE İMRAG, 808830873 nolu gönderiniz 2112 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808830873\n\nDear EMİNE İMRAG, your shipment with 808830873 was delivered to you with the delivery code 2112. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808830873\n\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('cf922cee-e9ee-4d9d-818b-05420db936af','905331602195','Sayın yetkili; KAYHAN BOZKURT adlı müşterinize 221692379 nolu gönderinizin 80 ve 60 çap sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 30.08.2025 13:47:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63bcaab6-1f45-4304-b9b2-e21172f2f74b',NULL),
('cf969e1a-c9a0-4545-8822-3beca5012e0e','5324145618','Sayın MASİS YAZMACİYAN, 517867004 nolu gönderiniz 5228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517867004\n\nDear MASİS YAZMACİYAN, your shipment with 517867004 was delivered to you with the delivery code 5228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517867004\n\n\nBICARGO','2','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('cf99b85a-75c5-4535-b3aa-992afce33663','905335708965','ORKUN SÖĞÜTLÜ adlı müşterinizin 248292815 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL),
('cf9a4305-5038-4a9a-99a7-3a38b1692692','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin SANDALYE ürünü 2 parça halinde GARDEROBE adresinizden 20.05.2025 14:51:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('cfa29d81-fb94-4364-b0d1-c0d88e535530','905335511664','ONUR ÖZÇELİK adlı müşterinizin 371695056 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('cfa83e95-f624-49cd-8b00-d0458052f3c7','905078062550','AHMET GÜMÜŞ adlı müşterinizin 598387436 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c3d3518b-3207-4e42-8927-efa33c951310',NULL),
('cfaa51f2-f10d-47f7-a8d9-be0175e5c49a','491717089315','504780984 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5202 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/504780984\n\nYour shipment with the number 504780984 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5202. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/504780984\n\nBICARGO','1','46b1c67e-a68d-48e9-954a-c8a3113d2c63',NULL),
('cfab0058-17da-4c09-99ae-c841d8913c53','491638627978','Sayın İLYAS KAHRİMAN, 745799900 nolu gönderiniz 2336 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745799900\n\nDear İLYAS KAHRİMAN, your shipment with 745799900 was delivered to you with the delivery code 2336. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745799900\n\n\nBICARGO','1','c75ecccb-cdd2-4eca-b15e-6750a3df26e6',NULL),
('cfaf0d82-3aba-4429-ab41-acf315b0a123','491737325307','910197116 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3976 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910197116\n\nYour shipment with the number 910197116 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3976. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910197116\n\nBICARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('cfb23f16-bffb-4cc5-85f1-ff67ee7ea762','4915152091392','478885112 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478885112\n\nYour shipment with the number 478885112 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478885112\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('cfb8a063-3a46-4329-aa3e-be5400f8ed38','905461661672','DUDU ÖZDEMİR(K) adlı müşterinizin 644754778 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('cfbbdb59-0721-4eea-8669-44c3655592a4','31624464120','Sayın MEHMET KILINÇ, 428239917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428239917\n\nDear MEHMET KILINÇ, your shipment with 428239917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428239917\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('cfc19e0f-a70f-4699-8daa-017c9156edc0','905079047428','FATMA İSAOĞLU adlı müşterinizin 449557088 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','084daa7f-3636-427c-9862-03f8214bc1f5',NULL),
('cfc44085-4aec-4017-afb3-8137bf3dfaa0','905331602195','MAZİJA IBRAHIMOVİC adlı müşterinizin 221417499 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('cfc47c22-1ef3-4dc1-b060-6e8eb57dacd1','33761054646','Sayın HAKAN YAZICIOĞLU, 478681830 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478681830\n\nDear HAKAN YAZICIOĞLU, your shipment with 478681830 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478681830\n\nBICARGO','1','fee1921f-e2a1-493a-95cc-3101675adfe8',NULL),
('cfc921c8-5115-493a-a592-86546955ad8c','905301592882','ROHAT KALABAŞ adlı müşterinizin 910245715 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7cc7cbc1-b825-489b-99ca-2352be2803ea',NULL),
('cfcf932f-b0be-49e3-9e85-14e7835d7b6c','32484532916','Sayın MEHMET ERTÜRK, 338737901 nolu gönderiniz 3356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338737901\n\nDear MEHMET ERTÜRK, your shipment with 338737901 was delivered to you with the delivery code 3356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338737901\n\n\nBICARGO','1','7792b079-15a5-4c2a-b33a-dea2dc61692b',NULL),
('cfd490fc-12a6-4720-a19b-c634415a3fb4','905442774505','EBRU PAYAS adlı müşterinizin 657408169 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e2917618-7147-4577-94d1-c21f2fc158c1',NULL),
('cfd62205-0bd0-4d35-bbda-f6ab14555f8b','33658826838','248240352 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2852 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248240352\n\nYour shipment with the number 248240352 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2852. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248240352\n\nBICARGO','1','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL),
('cfd712e1-82fb-403e-b123-a4e7f2752e44','905461661672','TUNAY KOCATÜRK adlı müşterinizin 644196383 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('cfd9ff9a-bfb9-4f19-bc8c-ce64ff95bdda','905336367828','Sayın yetkili; KAMRAN MİRZAİE adlı müşterinize 982759064 nolu gönderinizin 160*200 YATAK  ürünü 1 parça halinde Marki baza  adresinizden 13.11.2024 10:26:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d3f67b-d428-4309-b980-d4a463f6b69e',NULL),
('cfe7dc27-077e-4d23-ba2c-aa6a2629e6c5','33768120568','412332862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412332862\n\nYour shipment with the number 412332862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412332862\n\nBICARGO','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('cfe90793-3e86-4a8a-8101-b049d13e189e','905313340045','Sayın yetkili; SEMİH CENGİZ adlı müşterinize 437551575 nolu gönderinizin YEMEK MASASI ürünü 3 parça halinde decoria adresinizden 01.07.2025 17:09:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('cfe9424c-a748-4659-87f5-a3eae3fc3a13','905336367828','Sayın yetkili; FİROUZEH NOORZAİ adlı müşterinize 982561254 nolu gönderinizin masa + sehpa  ürünü 6 parça halinde Fatura adresinizden 07.08.2025 17:37:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('cfea6d20-dd4b-4997-b8ba-4ad1d0718be3','905461661672','BETÜL GÜNER adlı müşterinizin 644550858 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('cff17c39-5ae9-4e91-922a-11429f81bdcc','4306641865848','910593915 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6693 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910593915\n\nYour shipment with the number 910593915 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6693. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910593915\n\nBICARGO','1','957f07fd-d732-4d5c-bc32-193dd5d6c0d6',NULL),
('cff2329d-e810-456e-9b34-b061e83cd2c8','1111123232432423','Sayın AAAAAA, 65556881 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65556881\n\nDear AAAAAA, your shipment with 65556881 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65556881\n\nBICARGO','2','d7273e12-dd22-4fa8-9893-2696b1178656',NULL),
('cff65cae-bf98-4210-8430-55f014212210','32493467320','221897784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3372 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221897784\n\nYour shipment with the number 221897784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3372. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221897784\n\nBICARGO','1','d8406e1c-80d1-4795-aea9-119c8cad0252',NULL),
('cff8d3ee-dd99-4f0f-b133-30bb7de495f8','905389543828','Sayın yetkili; AYNUR KANDEMIR adlı müşterinize 486184665 nolu gönderinizin Karyola, berjer ürünü 9 parça halinde Moe Bedding adresinizden 19.08.2025 10:24:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('cffb5f49-8d1d-4688-82d4-d54bc3c61884','5993837272','Sayın AAAAA BBBBB, 20.07.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5695345\nŞifre : 5695345\n			\nBİCARGO','2',NULL,'5d69534a-5f21-44ba-8343-594269f45f1a'),
('cfff94d9-6ea6-41a8-920e-3f7a3b321ccf','33663685576','Sayın SADOUN ABDELKADİR, 221804377 nolu gönderiniz 8342 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221804377\n\nDear SADOUN ABDELKADİR, your shipment with 221804377 was delivered to you with the delivery code 8342. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221804377\n\n\nBICARGO','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('d00142b8-79b6-48d1-9f45-222323a14fed','905389543828','FARIH SANAE adlı müşterinizin 486609627 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('d0034ce5-c50f-43a7-a3c8-39b932d3b5d0','491779291845','478803764 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1063 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478803764\n\nYour shipment with the number 478803764 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1063. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478803764\n\nBICARGO','1','b851368b-bd09-4a80-b1af-2daea0faab4a',NULL),
('d00a038d-aecc-4c2c-aef9-20415dfbe780','905304259202','EDİZ DİNLER adlı müşterinizin 478783487 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('d00e4cf9-af54-4136-beb5-29bc5adc8f17','905079358213','MADAME COURTOIS IMANE adlı müşterinizin 745987581 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f307f0b3-1e6f-4062-b3df-b0ccecb5eb70',NULL),
('d01072c0-51d6-4df4-bcc0-c02e04e4fa31','905331602195','Sayın yetkili; MUKKADIN IBRAHIM adlı müşterinize 221941793 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MERT SANDALYE  adresinizden 17.04.2025 15:42:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('d01bfb79-c817-4c55-aaf6-b1f955699178','4917658874897','Sayın ZEKAİ TAVASLI, 478979004 nolu gönderiniz 7404 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478979004\n\nDear ZEKAİ TAVASLI, your shipment with 478979004 was delivered to you with the delivery code 7404. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478979004\n\n\nBICARGO','1','00d5c701-5909-4eed-be40-af7cd9965f1a',NULL),
('d01cb632-420d-45b4-a1f1-c2c224dfda58','905363385813','Sayın yetkili; CEMAL CANKURT adlı müşterinize 976369139 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde SALON KOLTUK adresinizden 16.09.2025 12:16:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('d032b88d-3f7c-4cc6-97e7-caa0dc4f6105','905054335859','HALİL AYDOĞAN adlı müşterinizin 501869420 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff95657a-16fe-4eda-9384-6d189d9a5bd8',NULL),
('d033035f-25b1-45e3-a26a-422af4e794fb','436603406293','Sayın yetkili; MİKAİL ÖZBEK adlı müşterinize 675749315 nolu gönderinizin koltuk ürünü 2 parça halinde LIONSE  adresinizden 21.08.2025 13:50:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('d037cc4f-e2f6-47bf-8940-b6d538745a16','33623912069','976821188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7850 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976821188\n\nYour shipment with the number 976821188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7850. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976821188\n\nBICARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('d03f6ef5-aea6-4607-b651-b9abda92f8e6','3536737367346734','Sayın TABELA, 248915549 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248915549\n\nDear TABELA, your shipment with 248915549 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248915549\n\nBICARGO','2','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL),
('d04072d9-7edb-467e-9088-3213fab371dc','905069116877','Sayın yetkili; CEMİLE İLHAN adlı müşterinize 817239122 nolu gönderinizin Star köşe ürünü 4 parça halinde Fatura adresinizden 28.05.2025 10:45:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0bf84329-c85d-4d24-8259-d2cf5ac61459',NULL),
('d044d77f-a990-490d-af7c-3d22ffd6280e','05388618969','MUSTAFA AZAMİ adlı müşterinizin 786398335 nolu gönderisi 3 parça halinde yola çıkmıştır.','2','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('d047b0fd-a6b9-4656-836f-54e890d1cab2','491734654065','478994871 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10424 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478994871\n\nYour shipment with the number 478994871 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10424. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478994871\n\nBICARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('d04b05f0-95f0-47d1-99f1-f489ac7a94da','905331602195','MUHAMMED DALKARA adlı müşterinizin 221646640 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('d04b86b2-ba01-4d6f-bfb1-70fa5bd2964a','905075277637','HATİCE ÖZEN adlı müşterinizin 745734415 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8b65f877-ccbd-4d62-80e3-2d9c4c044d3e',NULL),
('d04d941b-d898-4944-95d7-c8a638953438','905350617509','Sayın yetkili; SUADA HAMZA  adlı müşterinize 613725694 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 27.03.2025 13:00:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('d0508d5e-55bb-4f70-9981-ce758ae8e256','905461661672','GÜLŞEN KARATAŞ adlı müşterinizin 644859309 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('d054725e-a06b-4208-9c95-b7f5e18b45c4','905079358213','Sayın yetkili; YAKUP YAVUZ adlı müşterinize 74520701 nolu gönderinizin 90X190 BAZA SET  ürünü 3 parça halinde Fatura adresinizden 23.10.2025 12:58:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23ec5827-d1c3-4fec-8fb6-3f4083decab0',NULL),
('d0585170-02b8-4f4e-8f5c-9d266706a1e4','491608415396','371716908 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371716908\n\nYour shipment with the number 371716908 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371716908\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('d063b609-e3f7-43b8-a6c9-60f771d1d3b0','9053259981980','NURKAN AŞIR adlı müşterinizin 614529512 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('d0649687-1c35-4160-bacd-c3841b93b3aa','4917620787419','598262809 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5338 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598262809\n\nYour shipment with the number 598262809 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5338. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598262809\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('d065ac3a-c514-4c96-abd9-86c6e9610b9f','905331602195','Sayın yetkili; FURKAN KAYABAŞ adlı müşterinize 221631052 nolu gönderinizin Natura sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 23.09.2025 16:01:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39b8366a-c9ba-4484-bb91-a877325d0b1c',NULL),
('d068ea60-2760-46ba-a6a0-868af941abdf','4917664272042','644113100 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113100\n\nYour shipment with the number 644113100 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644113100\n\nBICARGO','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('d069b1d8-f1cd-48bb-818f-ce0d843e0797','905078062550','ALİYE GÖRDÜK adlı müşterinizin 598156869 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('d0709e3d-ab66-4b77-b3c9-aea0fa076417','4917632871716','Sayın ENDER CAN ORHAN, 371836215 nolu gönderiniz 6922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371836215\n\nDear ENDER CAN ORHAN, your shipment with 371836215 was delivered to you with the delivery code 6922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371836215\n\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('d07135e1-fb21-4962-b9de-a1fbf5d683b6','905517075149','Sayın yetkili; SELDA ÇELİK adlı müşterinize 478777541 nolu gönderinizin köşe takımı ve berjer ürünü 6 parça halinde brawwa koltuk adresinizden 04.08.2025 14:49:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('d0779433-7af4-4485-be15-a15b10bc2d7a','905331602195','Sayın yetkili; SEMAHAT ÇELİK adlı müşterinize 221803289 nolu gönderinizin 100*240 MİLAS MASA ürünü 4 parça halinde Fatura adresinizden 10.01.2025 10:50:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','685294c3-f19d-4310-a937-1d0a6fb675a7',NULL),
('d07d2212-5b3c-4d69-b4f7-c14d2d789646','32483112952','Sayın MERVE KIZILIRMAK, 657258901 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657258901\n\nDear MERVE KIZILIRMAK, your shipment with 657258901 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657258901\n\nBICARGO','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('d0817bea-2a25-4372-b52e-6884df8dce52','905313340045','Sayın yetkili; DOBREA NİCOLETA SSH adlı müşterinize 437132386 nolu gönderinizin ayna ürünü 1 parça halinde DORTHOME OFİS adresinizden 11.09.2025 14:01:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('d084e453-326e-4518-9071-921c3d63d6b8','4915772514011','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('d08ce311-e6ba-49c7-b861-0db4fcbad925','905078062550','NUSRET VAROL VURAL adlı müşterinizin 598427868 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('d08ee530-74e9-4935-a210-d03cdb4ad682','905336367828','Sayın yetkili; ŞAHİN MUAMMER adlı müşterinize 982840804 nolu gönderinizin masa  ürünü 9 parça halinde Riyo home adresinizden 20.02.2025 11:43:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('d091e279-f39f-4ae4-941e-f9a1b0a5d453','491784042586','İLETİŞİM\n					Furkan şöför = +905078826436','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('d09e1de7-52d4-4a32-8d3f-98565def3d66','436509938686','Sayın SEDAT ÇİFÇİ , 745538897 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745538897\n\nDear SEDAT ÇİFÇİ , your shipment with 745538897 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745538897\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('d0a132b8-1d98-4436-9079-119df8170629','905075277637','SELİNAY ORHAN adlı müşterinizin 745398311 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c8832652-771d-469e-b661-4fd13d628789',NULL),
('d0a6f6c5-dcb9-4ceb-bc49-39c96b601e7b','905532675926','MEHMET KILINÇ adlı müşterinizin 428239917 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('d0a8a022-52d0-4def-a113-957cdf41c4f3','491625403964','Sayın SEDA TULGAR, 644152675 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644152675\n\nDear SEDA TULGAR, your shipment with 644152675 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644152675\n\nBICARGO','1','676d9d67-fd03-4351-b823-77157f0e87aa',NULL),
('d0a973ca-7a49-43b9-b68a-f39ce58235ff','905335708965','ABDIL HAPLE  adlı müşterinizin 248955969 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','cb056a55-a6b8-4c14-a22a-7b912e9e91c2',NULL),
('d0aaa90b-c877-41d7-950c-198e6a135f9a','4915738317562','613391684 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6304 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613391684\n\nYour shipment with the number 613391684 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6304. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613391684\n\nBICARGO','2','db01aefa-720b-410d-8344-0672007b060d',NULL),
('d0acc82f-bc2d-427b-9f00-6b417e0e7f08','9053259981980','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160*200 BAZA ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('d0b16235-53ae-4136-8588-dc16574fbaa0','0031624464120','Sayın MEHMET KILINÇ, 428173598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428173598\n\nDear MEHMET KILINÇ, your shipment with 428173598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428173598\n\nBICARGO','2','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('d0b8189d-6d39-4836-90c6-3a943381fb7a','905078062550','Sayın yetkili; DAVUT BİNGÖL adlı müşterinize 598530881 nolu gönderinizin MASA ürünü 3 parça halinde RİO FATİH adresinizden 15.08.2025 15:54:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('d0b8d2bb-a31e-448a-a960-145fbca5028f','016099741733','Sayın İSMET  IRMAK, 614659832 nolu gönderiniz 9928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614659832\n\nDear İSMET  IRMAK, your shipment with 614659832 was delivered to you with the delivery code 9928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614659832\n\n\nBICARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d0bb2bdd-eba8-450b-8edb-d0f182939701','4917630326860','Sayın DERMAN YATAK MURAT ÇAYAN, 412913992 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412913992\n\nDear DERMAN YATAK MURAT ÇAYAN, your shipment with 412913992 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412913992\n\nBICARGO','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('d0bbe2b2-13d5-4b2a-81b8-c8e02584e6d7','33679890673','Sayın ABDİL ACAR, 61467762 nolu gönderiniz 4250 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61467762\n\nDear ABDİL ACAR, your shipment with 61467762 was delivered to you with the delivery code 4250. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61467762\n\n\nBICARGO','1','bceef6ba-e1ee-4daa-b926-518c0bbcce5d',NULL),
('d0c01456-58bc-4d41-ac32-610f6d1d760a','32493872964','Sayın TUĞBA AKTAŞ, 478687899 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478687899\n\nDear TUĞBA AKTAŞ, your shipment with 478687899 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478687899\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('d0c0cc20-df58-4dae-be12-89d928fd8cfe','905331602195','MERAL GÖGDAS  adlı müşterinizin 221965496 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','23c2fb27-3d69-40e0-9027-0877538a4b71',NULL),
('d0c22293-8c29-4039-ad0e-1a5eb922217a','905321608709','Sayın yetkili; AZEM SATTAR adlı müşterinize 248158562 nolu gönderinizin Mobilya ürünü 7 parça halinde Fatura adresinizden 24.09.2025 13:38:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('d0c2424a-5ea3-4af5-a11e-59a8f78a8a60','436767311848','37152330 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6523 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37152330\n\nYour shipment with the number 37152330 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6523. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37152330\n\nBICARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('d0c3349a-5b0e-4355-9d00-f23c1a10d97b','436603406293','Sayın yetkili; SEVDE SOYUÖZ adlı müşterinize 675253974 nolu gönderinizin ünite ürünü 2 parça halinde MASAMI adresinizden 20.08.2025 14:29:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('d0c5ca35-ffa7-48fa-8b0a-c40ad2b16d93','4917660473262','644523362 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7194 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644523362\n\nYour shipment with the number 644523362 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7194. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644523362\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('d0cbe032-bc06-4460-bdd2-91e6cd22fb09','33620017327','Sayın HARUN KAYA, 745180441 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745180441\n\nDear HARUN KAYA, your shipment with 745180441 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745180441\n\nBICARGO','1','ecd638f1-8a79-4613-9107-f0af2ddb735c',NULL),
('d0cee8bd-36aa-4355-b288-98ef269b893f','33609307736','Sayın MUSA EMEK, 501786631 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501786631\n\nDear MUSA EMEK, your shipment with 501786631 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501786631\n\nBICARGO','1','5d53684d-5145-46de-9a87-24f8f4a4bab1',NULL),
('d0d157d4-c52f-4caa-a63c-38e94e1d6ab1','1111111111','Sayın ERDOĞAN  ERTÜRK, 25.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0144340\nŞifre : 0144340\n			\nBİCARGO','2',NULL,'0ce14fcd-4f3d-40c5-b713-e1b551ffb5a4'),
('d0d40de9-c4c3-4e64-9c88-8124df18b0c7','491796697290','Sayın PERİHAN ÖZVURAL, 531344250 nolu gönderiniz 6551 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531344250\n\nDear PERİHAN ÖZVURAL, your shipment with 531344250 was delivered to you with the delivery code 6551. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531344250\n\n\nBICARGO','1','2d3bf117-ace6-4823-84ca-6f7db821df9b',NULL),
('d0d5be50-2a6b-4cf5-a1c2-d9b2ae4660f7','4915735267419','371121937 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3533 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371121937\n\nYour shipment with the number 371121937 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3533. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371121937\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('d0d83c3f-dca6-4062-a21b-32ad422a3993','1111111111111111','Sayın PALET, 735389141 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735389141\n\nDear PALET, your shipment with 735389141 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735389141\n\nBICARGO','2','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL),
('d0d8b945-cc0a-43d6-9d98-6b13d3c65fa8','905461661672','MERT GÖKMEN adlı müşterinizin 644796086 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('d0dabd46-d3a1-4758-9f4a-3c7a4ac2c618','905331602195','Sayın yetkili; NAGLA NAGUİB MAHFOUD adlı müşterinize 221383692 nolu gönderinizin Natura sandalye koyu ceviz  ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 22.10.2025 11:13:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e57ad8b9-334a-41e5-9eda-efd77b5cfa0d',NULL),
('d0dcffa2-16cc-45cf-937c-8150233fd782','491729086965','78633450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10765 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/78633450\n\nYour shipment with the number 78633450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10765. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/78633450\n\nBICARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('d0dd755d-c387-4e8a-a611-a10bfb5c03a5','33652889169','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('d0e02d85-b48e-4e87-aae9-9790f6788b79','330766449064','Sayın MİHRİBAN ÖZEN, 644776565 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644776565\n\nDear MİHRİBAN ÖZEN, your shipment with 644776565 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644776565\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('d0eab877-4cac-41d5-9dfd-a2a62b89923d','4917683202035','Sayın FİLİZ DEĞER, 371655670 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371655670\n\nDear FİLİZ DEĞER, your shipment with 371655670 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371655670\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('d0eca392-98db-426b-bae9-1e9e6cabc659','06649942512','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('d0f6c576-488d-4e10-a137-f582663e4890','905336367828','Sayın yetkili; NURTEN MENEKŞE  adlı müşterinize 982106314 nolu gönderinizin sandalye  ürünü 3 parça halinde Comfortlife  adresinizden 30.12.2024 13:53:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('d0fdaa84-331f-4689-aa5b-9a188981f607','905305444386','ALİ GALİP DUMAN adlı müşterinizin 583643470 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','67b884d5-ea90-4585-94a0-ef9d8b7707d2',NULL),
('d0ff3817-5947-4ace-97ad-e2d258f6fe01','4915733940520','644650618 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7367 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644650618\n\nYour shipment with the number 644650618 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7367. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644650618\n\nBICARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('d1002f3d-a941-4fda-b8d2-e7ddaa90a303','33769656620','Sayın EVMOURZAEVA İMAN, 976751266 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976751266\n\nDear EVMOURZAEVA İMAN, your shipment with 976751266 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976751266\n\nBICARGO','1',NULL,NULL),
('d10479b7-a988-44c0-911a-223ce51413c1','41787438626','Sayın HURİYE SERBEST, 221416180 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221416180\n\nDear HURİYE SERBEST, your shipment with 221416180 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221416180\n\nBICARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('d10b4dd5-19c5-410f-8dd1-7b73a3c52ea6','41787438626','Sayın HURİYE SERBEST, 221416180 nolu gönderiniz 5317 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221416180\n\nDear HURİYE SERBEST, your shipment with 221416180 was delivered to you with the delivery code 5317. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221416180\n\n\nBICARGO','1','104f5406-c5fd-4a46-8b03-63d308b6ac35',NULL),
('d10cea4f-2e04-4724-b85a-4d42bf77a407','905336367828','Sayın yetkili; HABİL ŞENER  adlı müşterinize 982864044 nolu gönderinizin Köşe koltuk+ Berjer  ürünü 5 parça halinde Comfortlife  adresinizden 11.03.2025 16:33:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('d110e348-3013-4ab9-a265-6f9cc32105b3','905054335859','Sayın yetkili; ŞAZİYE KARABACAK adlı müşterinize 50133684 nolu gönderinizin BONNY KÖŞE KOLTUK ürünü 5 parça halinde BRAWWA KOLTUK adresinizden 30.01.2025 10:52:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('d1124588-4688-4f07-8730-c867fec77fa0','905350617509','BERNA YİLDİRİM adlı müşterinizin 61390448 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('d1187816-3396-4f17-a3dd-86a4ce72ab34','4915151400304','Sayın SALİM TEKE, 371884796 nolu gönderiniz 7847 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371884796\n\nDear SALİM TEKE, your shipment with 371884796 was delivered to you with the delivery code 7847. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371884796\n\n\nBICARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('d11d8ba3-71c1-49b2-8543-683017ac1dd5','436603838566','Sayın YONCA KİLİC, 675592889 nolu gönderiniz 6587 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675592889\n\nDear YONCA KİLİC, your shipment with 675592889 was delivered to you with the delivery code 6587. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675592889\n\n\nBICARGO','1','d2c84f96-5369-41cb-83f8-2768b5603c1d',NULL),
('d1218d96-4f8a-4116-a856-79e77fcafa11','33769135395','Sayın ZÜLEYHA MUĞLU, 750486427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750486427\n\nDear ZÜLEYHA MUĞLU, your shipment with 750486427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750486427\n\nBICARGO','1','9cc644ac-8707-4c8c-8387-2459908b1a57',NULL),
('d123ed31-75cb-41c9-b902-1a4c24a285de','1111111111111111','Sayın HOLLANDA, 248602682 nolu gönderiniz 6223 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248602682\n\nDear HOLLANDA, your shipment with 248602682 was delivered to you with the delivery code 6223. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248602682\n\n\nBICARGO','2','83a7db81-f98d-4f51-a534-ec63e6d9784b',NULL),
('d1246a18-6f66-461c-b3cd-83b3a04c827e','4917622304263','08159662 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1944 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/08159662\n\nYour shipment with the number 08159662 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1944. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/08159662\n\nBICARGO','1','666fc04e-4f35-40cf-9568-33fe5de5cfbb',NULL),
('d127d7ea-342d-4a68-b059-01f3e03b0e85','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('d130b7bb-d63b-467c-8003-e9edc72b4497','905313340045','Sayın yetkili; HANİFE TURAN adlı müşterinize 437355925 nolu gönderinizin Sandalye ürünü 3 parça halinde ard sandalye adresinizden 03.09.2025 16:05:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('d13148ea-63b8-4b96-ad00-01cf50b034fd','3748376263636373','Sayın BİLGEN TATAR, 478901590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478901590\n\nDear BİLGEN TATAR, your shipment with 478901590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478901590\n\nBICARGO','2','f99d0c09-6369-4571-a1fa-cae7407d9134',NULL),
('d1315606-761b-44b9-a23d-541de9c1d869','905301592882','ZELİHA ARAS adlı müşterinizin 910280020 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('d138e328-bc9b-42ac-b92f-0fd01308df9d','905335511664','Sayın yetkili; TUĞBA COŞKUN adlı müşterinize 371672954 nolu gönderinizin kanepe ürünü 2 parça halinde Elitis Home adresinizden 24.04.2025 16:59:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6de04c45-fcae-42a3-aebf-5b140d42d81f',NULL),
('d143e44f-3405-424e-b7f9-25ebff0d8ec7','4917632294519','Sayın WALDEMAR HEİNZ , 613940015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613940015\n\nDear WALDEMAR HEİNZ , your shipment with 613940015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613940015\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('d148a452-7ef5-4452-aa32-7902161c9aa3','905335708965',' adlı müşterinizin 248383650 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','bd527c1b-2a83-4e69-9c2d-979c479102b0',NULL),
('d1491b97-96f7-4f24-8b98-a724b7907cfe','04917737377373','Sayın MURAT MAKAS, 248764146 nolu gönderiniz 10294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248764146\n\nDear MURAT MAKAS, your shipment with 248764146 was delivered to you with the delivery code 10294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248764146\n\n\nBICARGO','2','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL),
('d14fae62-4cd4-4fe0-8ab5-653fbc07efde','905350617509','KHALED SEMMO  adlı müşterinizin 613175888 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('d155dd67-0966-4755-b812-a6a779d86b0f','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Sandalye  ürünü 9 parça halinde Ayka chair  adresinizden 27.08.2025 18:09:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('d158ef27-1196-4610-8c34-714f6b94bb73','491639801426','412218985 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3194 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412218985\n\nYour shipment with the number 412218985 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3194. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412218985\n\nBICARGO','1','835863ce-70ff-4b53-b486-a32e6936cae4',NULL),
('d15b1b3a-aebc-48a3-a21f-3b53ef7334e1','491606817658','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('d15cd5a3-c6b6-493e-8793-1bfb7a01778f','33632522248','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('d15cedcc-7baf-4ee2-8bbc-4057926910aa','491708511252','Sayın MELİKE BAYINDIR, 371398805 nolu gönderiniz 4547 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371398805\n\nDear MELİKE BAYINDIR, your shipment with 371398805 was delivered to you with the delivery code 4547. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371398805\n\n\nBICARGO','1','b50d5cfe-3a96-4e60-8eb2-87e9c307ccc7',NULL),
('d16176db-9ace-4868-8df6-2ac8e1168200','905357955726','Mirkan cem adlı müşterinizin 315164103 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36f25521-b01c-4589-be32-1479a5a1b79e',NULL),
('d165625b-aa24-4560-9ef3-6baf6c2a5b4a','905451571652','Sayın yetkili; CEM TOPYÜREK adlı müşterinize 53111592 nolu gönderinizin Masa seramik ürünü 3 parça halinde BİFURNİ adresinizden 11.08.2025 10:56:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('d168292c-51e6-4167-a4c6-437f22244326','491636081743','Sayın İLHAM SEVAL İNDİRME, 478259590 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478259590\n\nDear İLHAM SEVAL İNDİRME, your shipment with 478259590 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478259590\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('d168f2c0-89f9-4425-b224-04f01fd767c1','905539740010','YEŞİM AKGÜN  adlı müşterinizin 011716616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('d16d3534-5d49-4eba-b8c6-28cb23375113','905335511664','ENDER CAN ORHAN adlı müşterinizin 371836215 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('d171f3f4-f14b-4ad6-839b-9c2d61af9fdb','905059175469','FATİH KAZAR adlı müşterinizin 428182749 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','13d25c6c-54a0-4d99-bbbe-499e98654a1c',NULL),
('d172b49b-8a8f-444a-bf6c-9089779dfdc7','491773713548','465844619 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2935 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465844619\n\nYour shipment with the number 465844619 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2935. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465844619\n\nBICARGO','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('d17c15b8-02d6-4c63-8b8c-8c21db11fbf9','905336367828','ENVER KÖK adlı müşterinizin 982549375 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c06f587f-6e80-42ec-8b11-2be622f719d0',NULL),
('d17f09b9-0981-499d-abe9-b668de85968a','491785094918','15151133 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6714 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/15151133\n\nYour shipment with the number 15151133 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6714. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/15151133\n\nBICARGO','1','fa43edbe-bf66-4c07-ab59-51d6823553d1',NULL),
('d1818bb4-7c97-4441-9113-42fb2ac0fccc','33770014809','Sayın MİNA ANNABİ, 478278253 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478278253\n\nDear MİNA ANNABİ, your shipment with 478278253 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478278253\n\nBICARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL);
INSERT INTO `whatsapp_messages` VALUES
('d1869c76-7921-4ac0-9e05-8d8b34d2e9a6','905335511664','Sayın yetkili; ONUR ÖZÇELİK adlı müşterinize 371695056 nolu gönderinizin traverten masa sehpa ürünü 1 parça halinde Fatura adresinizden 27.08.2025 13:44:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('d18db55b-2d10-4d5e-ab90-906dfd285bcb','905336367828','CEYLAN YILMAZ  adlı müşterinizin 982464994 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('d18e4388-a899-478c-abd1-6a818329ef12','905075277637','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin DELUXE YATAK ürünü 1 parça halinde Fatura adresinizden 11.07.2025 20:18:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('d19ba1ad-a4c8-4d45-a888-943002e1b716','905461661672','Sayın yetkili; SABİHA SATICI adlı müşterinize 644520957 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde LENTE HOME adresinizden 23.09.2025 14:02:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('d19de3e5-2f82-42d5-b7ae-1e24747b3440','905461661672','Sayın yetkili; TAYFUN ŞENGÜL adlı müşterinize 644424764 nolu gönderinizin SEHPA TAKIMI ürünü 2 parça halinde Masami Mobilya adresinizden 18.08.2025 17:53:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('d1a16e7f-5b7a-4202-8395-066d2d893743','905313340045','Sayın yetkili; İPEK CANTÜRK adlı müşterinize 437313362 nolu gönderinizin baza başlık ürünü 4 parça halinde Albessa adresinizden 31.07.2025 11:19:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('d1a2d72e-db69-4160-a635-aefc73a649d6','31629103799','Sayın FERHAT SANUÇ, 011573387 nolu gönderiniz 10729 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011573387\n\nDear FERHAT SANUÇ, your shipment with 011573387 was delivered to you with the delivery code 10729. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011573387\n\n\nBICARGO','1','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('d1a70c64-b854-4cf7-a6c1-8ed78d417c0c','4917692916375','Sayın HİDAYET KURT, 745789797 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745789797\n\nDear HİDAYET KURT, your shipment with 745789797 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745789797\n\nBICARGO','1','be9967c6-717c-4bdc-910a-34e5434a1c5b',NULL),
('d1a87f2f-07f3-4929-8601-ef9573998438','905331602195','LAMİSENT BUSİNESS adlı müşterinizin 221339460 nolu gönderisi 202 parça halinde yola çıkmıştır.','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('d1a9247e-936d-4483-b804-057523a63867','32491914908','412384414 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7450 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412384414\n\nYour shipment with the number 412384414 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7450. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412384414\n\nBICARGO','1','2b1bc1e0-6a49-4e87-af0e-9acd36639f9f',NULL),
('d1aed392-a001-437e-8c83-25dc1347be77','436603831520','745538897 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2941 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745538897\n\nYour shipment with the number 745538897 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2941. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745538897\n\nBICARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('d1b3e890-f4f4-40e1-b964-f8ce4dca6c2c','491781356131','Sayın GÜLSÜN UZUN, 478118994 nolu gönderiniz 1467 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478118994\n\nDear GÜLSÜN UZUN, your shipment with 478118994 was delivered to you with the delivery code 1467. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478118994\n\n\nBICARGO','1','92035bab-37fe-43c0-8f20-e718fcf5f1f2',NULL),
('d1c21a0a-5f4b-4168-8cea-6c7929df351c','4917622033486','Sayın NERGİZ YURTSEVEN, 614525681 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614525681\n\nDear NERGİZ YURTSEVEN, your shipment with 614525681 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614525681\n\nBICARGO','1','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('d1c99b1e-3a59-4877-873e-95455959ce71','905301592882','EMRULLAH ŞENGÜL adlı müşterinizin 910304835 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','723c8dbf-02f3-414f-bf79-3654c88f74e1',NULL),
('d1d054cc-7052-4615-b973-1fbd26f1a5b9','33782835819','437649696 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7738 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649696\n\nYour shipment with the number 437649696 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7738. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437649696\n\nBICARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('d1d59bf6-98e3-4d55-bea0-70a601ea75c8','4369919588138','Sayın NATASCHA DJORDJEVİC, 80873489 nolu gönderiniz 7294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/80873489\n\nDear NATASCHA DJORDJEVİC, your shipment with 80873489 was delivered to you with the delivery code 7294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/80873489\n\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('d1d791e7-dcb2-4f81-bf1a-056db553ec7a','905335511664','MEHMET AKHAN adlı müşterinizin 371998665 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('d1dad56a-ae56-41ff-964d-c967cda34116','4915777901877','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('d1dc451a-62e2-4931-b44b-51c44be070be','905333221039','SEMANUR KÜTÜKÇÜ adlı müşterinizin 750145910 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','18ddc51e-7bf4-420c-99ae-7e25b7cfa32f',NULL),
('d1de7f41-f5bb-4343-9c5c-fbe730fc248a','33626936541','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('d1e0f244-b239-4cc5-a29e-d5adc711408c','4369911307024','127847689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5695 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127847689\n\nYour shipment with the number 127847689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5695. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/127847689\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('d1e18840-1b71-4abd-98d8-1db6d165c3a9','5325000478','Sayın YENİ GELEN, 20.12.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6247705\nŞifre : 6247705\n			\nBİCARGO','1',NULL,'b624c770-5cbb-488e-8512-45ad975a729d'),
('d1e1ea28-bc1e-4ac1-8977-bef373ce9269','4915147524518','Sayın FATMA SARI, 745619301 nolu gönderiniz 2798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745619301\n\nDear FATMA SARI, your shipment with 745619301 was delivered to you with the delivery code 2798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745619301\n\n\nBICARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('d1e40d6e-8f67-4533-8c6e-c057dec1f631','905336367828','Sayın yetkili; LAMMARİ BAYA  adlı müşterinize 98232043 nolu gönderinizin kanepe  ürünü 1 parça halinde Comfortlife  adresinizden 14.02.2025 16:17:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8327f88c-b625-4fa3-872e-273fef27e498',NULL),
('d1e8fb44-3870-49e3-a49b-312bd723380c','905313340045','Sayın yetkili; SİBEL HİTAY adlı müşterinize 437812245 nolu gönderinizin masa ve sehpa ürünü 4 parça halinde bicargo depo adresinizden 26.08.2025 10:47:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('d1e98052-1003-4344-8381-8f7fc6209186','4915568542682','Sayın OKTAY SAMET ŞAHİN, 745782616 nolu gönderiniz 3573 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745782616\n\nDear OKTAY SAMET ŞAHİN, your shipment with 745782616 was delivered to you with the delivery code 3573. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745782616\n\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('d1eb1430-6199-4557-a10b-d115d2f1e952','491728404403','412485805 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9019 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412485805\n\nYour shipment with the number 412485805 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9019. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412485805\n\nBICARGO','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('d1ef5ef1-d3bd-4423-928d-ddee07918c4b','905331602195','Sayın yetkili; KARİM adlı müşterinize 221763224 nolu gönderinizin 90x190 Traverten masa ürünü 3 parça halinde Fatura adresinizden 27.01.2025 11:02:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','58313a08-d2a0-4dce-97d3-e911857314d3',NULL),
('d1fce608-4bd6-4d20-853f-866737f289b9','905079358213','ERAY ASLANCAN adlı müşterinizin 745294810 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('d20810de-8b69-4df1-8fde-428556b75f67','4915222621206','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('d20d92ad-edd5-471a-b130-d34828b2db8c','4917674951049','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('d20fbf06-8565-4e6b-aae2-c842a3b3fe37','491791902931','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('d21032dd-2cdd-42da-a17d-be53bc3fab2d','33781231553','Sayın CUMALİ ERCAN, 910759399 nolu gönderiniz 3631 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910759399\n\nDear CUMALİ ERCAN, your shipment with 910759399 was delivered to you with the delivery code 3631. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910759399\n\n\nBICARGO','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('d2214944-4c9a-4af9-837b-987dc14f5a8d','905335708965','İBRAHİMİ ALİ JAN adlı müşterinizin 735500422 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','563299ed-822d-490a-97cc-eb08990a8bdb',NULL),
('d2236dba-461c-4906-9f19-a0ec955fedfa','905431026110','Sayın yetkili; İLKAY ÇİFTÇİ adlı müşterinize 35130528 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde LENTA SOFA adresinizden 28.08.2025 16:56:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('d22707c3-251f-4ccb-aaa9-c3b198faa29b','4917682051476','371785400 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8975 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371785400\n\nYour shipment with the number 371785400 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8975. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371785400\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('d2273b75-78ec-4c0e-9066-9a5c8722ad4b','436603406293','Sayın yetkili; ARZU ASLAN adlı müşterinize 675965194 nolu gönderinizin koltuk ürünü 4 parça halinde HK home adresinizden 25.09.2025 13:39:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('d231a7fb-12ae-451a-bbed-4f0879d62274','33626413222','221603036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3265 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221603036\n\nYour shipment with the number 221603036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3265. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221603036\n\nBICARGO','1','9cd992a9-f3c9-4cb4-a22b-ac995a102670',NULL),
('d239f8da-697c-46ae-a8ed-ebad77282352','4916094922910','Sayın DİE FABRİK OUTLET, 223385669 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223385669\n\nDear DİE FABRİK OUTLET, your shipment with 223385669 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223385669\n\nBICARGO','1','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL),
('d23c142b-994a-4ebf-a373-73c99464cf9a','905075277637','Sayın yetkili; EMRE YILMAZ adlı müşterinize 745884226 nolu gönderinizin TREND YEMEK MASASI ürünü 3 parça halinde GARDEROBE adresinizden 07.05.2025 13:22:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('d2402535-f9c2-4956-8276-7a5c90bd35ac','905352711900','Sayın yetkili; BÜLENT KILIÇ adlı müşterinize 817682643 nolu gönderinizin 2 ADET KOMODİN ürünü 2 parça halinde ÖZEL TASARIM KARYOLA adresinizden 09.10.2025 11:47:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('d24f56cb-69a7-4a8a-936f-8161372089c8','436503555735','613990020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5175 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613990020\n\nYour shipment with the number 613990020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5175. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613990020\n\nBICARGO','2','cc716c12-75ab-49ae-8d32-bb1b4fd1d45e',NULL),
('d251784c-84f0-4ea6-bc8d-deec66ecd472','905335511664','Sayın yetkili; SEDA YILMAZ adlı müşterinize 371429381 nolu gönderinizin köşe takımı ürünü 2 parça halinde Elitis Home adresinizden 28.04.2025 11:14:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('d2520856-cdb6-4b45-a7b1-11d9d2bff4c4','4917620526995','910197116 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3976 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910197116\n\nYour shipment with the number 910197116 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3976. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910197116\n\nBICARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('d2571b08-307b-40af-8ece-081c6ab0254a','905325000478','MOWO adlı müşterinizin 412846685 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5716aae4-8f4b-48b9-96d5-193f5c4795d6',NULL),
('d2588324-ffc9-45ed-85a6-a8ed694d5397','4915733741918','644903033 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9081 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644903033\n\nYour shipment with the number 644903033 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9081. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644903033\n\nBICARGO','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('d25a7bd9-ef75-4d62-aee8-f6d0f8d8a77e','33768950442','221158425 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9418 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221158425\n\nYour shipment with the number 221158425 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9418. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221158425\n\nBICARGO','1','13c3c792-77da-4c87-b857-707f973cc267',NULL),
('d25db8d7-8515-41d3-9a3b-1bbc92ca4838','905336367828','MON NAM ALEMİ adlı müşterinizin 982799609 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','2473140a-52f5-4b86-a285-e3de923dde5c',NULL),
('d2642f60-ece6-43b7-bf60-8930ec3f6da8','905336367828','AMİN SAKİ adlı müşterinizin 982372153 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL),
('d265de5f-f385-41df-b164-7af9f658b2f0','4917615735547','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('d26d3bd4-5f8e-4505-8952-8c150aa84f75','905363385813','REMZİYE UNAT adlı müşterinizin 976898541 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','834cc505-c304-4e3e-8d96-1e57f8a7cd48',NULL),
('d26e532f-838a-4318-8bfb-23e8d9d668dc','905451571652','Sayın yetkili; NİLGÜN LEUKEL adlı müşterinize 531629494 nolu gönderinizin SANDALYE ürünü 4 parça halinde M four sandalye adresinizden 06.10.2025 10:38:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('d26f3d2d-7c07-4704-981c-07bde795e74c','905335708965','BBBBBBBBBBB adlı müşterinizin 735272751 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL),
('d26f8e42-e41b-495c-a19b-ac977dae6719','033751045942','Sayın TAHRİ TATAR, 734380041 nolu gönderiniz 2078 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734380041\n\nDear TAHRİ TATAR, your shipment with 734380041 was delivered to you with the delivery code 2078. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734380041\n\n\nBICARGO','2','8cb3e6c1-dad7-49e4-8443-0c03ea610bf7',NULL),
('d273f5a1-1be9-4542-8ec7-efaebba2d0d1','905517075149','Sayın yetkili; NURCAN DOLDUR adlı müşterinize 478223658 nolu gönderinizin rams ünite rams orta sehpa  ürünü 3 parça halinde Fatura adresinizden 03.09.2025 14:35:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35339fbe-2f0f-48c5-87b0-cc5d75325f26',NULL),
('d2766720-152e-4a08-b7e2-d92b40e846a4','33652889169','Sayın YAKUP KOÇOĞLU, 910778068 nolu gönderiniz 7461 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910778068\n\nDear YAKUP KOÇOĞLU, your shipment with 910778068 was delivered to you with the delivery code 7461. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910778068\n\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('d27be50f-3f6a-43dd-ac26-d0209953de9b','33617505236','437452475 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8813 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437452475\n\nYour shipment with the number 437452475 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8813. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437452475\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('d2832986-a012-4d78-921f-6676c2215cac','491716444408','Sayın CONSİGNEE, 2487154 nolu gönderiniz 2955 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/2487154\n\nDear CONSİGNEE, your shipment with 2487154 was delivered to you with the delivery code 2955. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/2487154\n\n\nBICARGO','1','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL),
('d28cdb84-0173-446f-9707-762346d6b071','491739901545','Sayın HANEFİ ALİOĞLU, 501667618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501667618\n\nDear HANEFİ ALİOĞLU, your shipment with 501667618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501667618\n\nBICARGO','1','850c1c4c-b08c-4669-954f-2e95f85d66d8',NULL),
('d28ff57c-7a95-4bc7-af2d-acde856b7e19','436603215138','Sayın ÖZLEM TÜRKMEN, 745853192 nolu gönderiniz 5053 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745853192\n\nDear ÖZLEM TÜRKMEN, your shipment with 745853192 was delivered to you with the delivery code 5053. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745853192\n\n\nBICARGO','1','a4db2a81-e01e-459f-a5dc-0aa1254f8b05',NULL),
('d298653d-6da4-4270-9fdf-5ac9b30b5a0f','33617505236','Sayın MEO JONATHON, 437452475 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437452475\n\nDear MEO JONATHON, your shipment with 437452475 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437452475\n\nBICARGO','1','c6094b6b-2487-4a38-ba3f-93750f2a9130',NULL),
('d29c498c-82b6-4965-95e3-16468e71f014','905331602195','AYNUR KAPUCU adlı müşterinizin 221694221 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('d29caef8-a005-4d7c-b924-499ccb68ac61','905325000478','POLAT adlı müşterinizin 412346704 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb90725b-84e6-4211-8728-367d09c14525',NULL),
('d2a31b7b-d6c4-4845-a7d1-59349257e0a3','31641888341','Sayın NESRİN DUMAN, 745166392 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745166392\n\nDear NESRİN DUMAN, your shipment with 745166392 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745166392\n\nBICARGO','1','e95cef76-b31a-4d48-831a-9295b1ea7ecf',NULL),
('d2a6ce0b-755b-405f-a9f9-4f99df102c32','905335511664','Sayın yetkili; SALİM TEKE adlı müşterinize 371884796 nolu gönderinizin köşe takımı ürünü 5 parça halinde Elitis Home adresinizden 28.04.2025 11:14:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('d2a8aa4e-4994-4a34-bd64-29e24f8a53ee','905318109098','ZERDEŞT DALMIŞ adlı müşterinizin 455726286 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL),
('d2ad1453-80d4-41b1-b77e-14cd1ea32104','33649427969','745970479 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9709 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745970479\n\nYour shipment with the number 745970479 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9709. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745970479\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('d2b40f99-07cd-4c55-ae97-985ec7b6b812','33753822818','Sayın NOM HASSAN ABDULE, 449806465 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449806465\n\nDear NOM HASSAN ABDULE, your shipment with 449806465 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449806465\n\nBICARGO','1',NULL,NULL),
('d2ba7273-7053-4f7f-b155-bffca7775e4f','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin KÖŞE KOLTUK ürünü 2 parça halinde OLENNA KOLTUK adresinizden 04.11.2024 10:26:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('d2befcaf-6716-4380-a245-8ec63abcc2c2','905394878216','Sayın yetkili; BARAN RAKİP adlı müşterinize 517764616 nolu gönderinizin Boss Koltuk 3+3+1 ve Sehpa ürünü 5 parça halinde Fatura adresinizden 21.11.2024 13:12:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('d2bf68a1-9a79-4152-9e5f-b898c2434276','905461661672','SEMA KUZULUK adlı müşterinizin 644653549 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3942cfd4-4dd6-486c-8571-aa8d22e10518',NULL),
('d2ddfc3f-b3c0-440b-ac21-d403d1b08bba','905331602195','Sayın yetkili; SIDI MARİ MUHAMMED  adlı müşterinize 221859569 nolu gönderinizin Milas beyaz masa  ürünü 3 parça halinde Fatura adresinizden 13.01.2025 10:23:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('d2e04a57-4eeb-4948-90a1-188106d26135','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('d2e373ac-2d57-4724-88ff-1900e6cafc31','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478784133 nolu gönderinizin 3+3+1 koltuk takımı ürünü 1 parça halinde inhouse adresinizden 25.07.2025 11:50:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('d2e6091a-e673-4f9f-b8be-4ad24720b405','4917670037980','Sayın MARİNELA MARİNKOVİC, 505948491 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505948491\n\nDear MARİNELA MARİNKOVİC, your shipment with 505948491 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505948491\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('d2e670d7-499c-46a3-a7f3-317385cdf638','905333221039','HALİT SEVER adlı müşterinizin 750363306 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('d2e6b917-09f5-4278-8186-af96293de324','4917656772155','598614826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2960 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598614826\n\nYour shipment with the number 598614826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2960. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598614826\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('d2ee3f40-9171-429c-80fc-e648ee48962f','905079358213','DENİZ ŞİMŞEK adlı müşterinizin 745824761 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('d2fea0fb-a7c1-4a5e-86be-92861d28a35d','491749634049','478403352 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7213 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478403352\n\nYour shipment with the number 478403352 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7213. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478403352\n\nBICARGO','1','b006cc45-9807-4678-89ca-491086a75064',NULL),
('d30430ce-a815-4e17-b217-ffeabd1b7026','32472837629','644763473 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5395 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644763473\n\nYour shipment with the number 644763473 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5395. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644763473\n\nBICARGO','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('d30669df-1c6c-4751-bef1-6cb50cda6fae','905078062550','OSMAN ASLAN adlı müşterinizin 598127401 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('d306ccc3-aeca-40e0-8506-0980f4e3e6ff','905333221039','FEVRİ YALÇIN adlı müşterinizin 750135738 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL),
('d30700bd-08f2-43f4-8fee-948d35f9c64d','4915224134737','Sayın DERYA ERDOĞMUŞ, 437578664 nolu gönderiniz 8895 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437578664\n\nDear DERYA ERDOĞMUŞ, your shipment with 437578664 was delivered to you with the delivery code 8895. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437578664\n\n\nBICARGO','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('d3098b37-b04e-4cd5-95f1-a54a6016bc2d','905331602195','Sayın yetkili; OSMANAJ VALDRİN adlı müşterinize 221746947 nolu gönderinizin BALAT SANDALYE SİYAH ürünü 8 parça halinde ALP SANDALYE adresinizden 27.03.2025 14:54:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('d30b7920-6db0-4f77-a46c-b0a3db273403','41792079376','Sayın BEYTUK KAPLAN, 745724680 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745724680\n\nDear BEYTUK KAPLAN, your shipment with 745724680 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745724680\n\nBICARGO','1','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL),
('d30f1519-7f98-4bfc-ad54-205002639906','905356503956',' adlı müşterinizin 027339599 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','368245d4-9f2d-4657-8e21-783fb08ea560',NULL),
('d31b7345-f6ae-4c37-9288-02f301ea25e6','32489954615','Sayın ÜMİT MORCA SSH, 644760466 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644760466\n\nDear ÜMİT MORCA SSH, your shipment with 644760466 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644760466\n\nBICARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('d32146f6-7381-4f94-a825-f451b6cd71d7','905073106101','HATİCE GÜNGÖR adlı müşterinizin 465634666 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4d90aba0-8b4f-4e5c-b747-d70de9be6cb4',NULL),
('d32176a0-a0b9-42f8-8740-c5c1c8f76d7d','905301592882','SELCAN ALTINSOY adlı müşterinizin 910479941 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fcd7666d-0415-4ff3-a449-800232806032',NULL),
('d3241f2f-71b5-4716-9e0c-f4baf2398799','4917635776995','515171044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5742 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515171044\n\nYour shipment with the number 515171044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5742. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515171044\n\nBICARGO','1','4611b81d-e164-42c5-9c5a-9ccc4855f384',NULL),
('d32f78b5-97f8-4853-9e9b-afb9c105c864','33613962945','Sayın YAVUZ TEK, 734391005 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734391005\n\nDear YAVUZ TEK, your shipment with 734391005 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734391005\n\nBICARGO','1',NULL,NULL),
('d330945d-2978-42ee-89d2-ce5a34083ade','905517075149','Sayın yetkili; MURAT ŞEKER  adlı müşterinize 478832291 nolu gönderinizin trend masa +6 sandalye  ürünü 6 parça halinde GARDEROBE adresinizden 29.08.2025 16:50:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('d330f4df-8731-44fb-a92f-4180207f2f85','905301592882','MUSTAFA DÜNDAR adlı müşterinizin 91030681 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('d3350438-b12f-42c1-b848-176bf9f01a7a','905461661672','MAZHAR BAYMAN SSH adlı müşterinizin 644803178 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('d33a6f6f-a9af-4f53-81d8-5f17e84db337','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS KOMODİN ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d33fdbe6-ca47-4377-a017-7cbb7ef4ff84','491749634049','Sayın BİRSEN KARADAVUT, 478833375 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478833375\n\nDear BİRSEN KARADAVUT, your shipment with 478833375 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478833375\n\nBICARGO','1','06af560c-552f-4ff9-a194-96cfbb5bfe91',NULL),
('d352263f-8659-47cf-8213-ade118aab3e1','905079358213','Sayın yetkili; İBRAHİM BAĞCI SSH adlı müşterinize 745983500 nolu gönderinizin DOLAP KAPAK + ÜNİTE ÜST + SEHPA ÜST  ürünü 3 parça halinde Fatura adresinizden 08.03.2025 16:35:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f89b4f3b-c0e7-417e-ad5b-c640c314a6a5',NULL),
('d35467c3-80a7-4bd2-86bc-87d947afa290','4917670590775','Sayın UĞUR YILDIRIM , 902194722 nolu gönderiniz 2644 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/902194722\n\nDear UĞUR YILDIRIM , your shipment with 902194722 was delivered to you with the delivery code 2644. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/902194722\n\n\nBICARGO','1','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL),
('d355f072-56bf-4a19-b645-d7244fc78adf','905078062550','AHMAD KADİ adlı müşterinizin 598102662 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('d357e87c-61b3-4645-a72a-a58155c66abf','491739149544','Sayın FATMA EROĞLU , 455757391 nolu gönderiniz 7922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455757391\n\nDear FATMA EROĞLU , your shipment with 455757391 was delivered to you with the delivery code 7922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455757391\n\n\nBICARGO','1','d993ce90-f47a-45f5-b714-cf612685b50d',NULL),
('d3587ee2-d195-4c2f-9e67-18e2f8f08a72','905059175469','SİDAR AKDENİZ  adlı müşterinizin 42877136 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2716f260-a220-4cbc-9e3d-883dd2448bbc',NULL),
('d3616002-1e4a-4ded-83e3-13d78473686b','905075277637','Sayın yetkili; ERCAN VARSAK adlı müşterinize 745318139 nolu gönderinizin BOHEM 6 KAPILI DOLAP  ürünü 8 parça halinde ACCA adresinizden 27.05.2025 17:18:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('d3630079-cce9-4a16-bc29-d06c1f68b5cd','905421855834','MESUL OLGUN adlı müşterinizin 338607005 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('d36382a9-42d2-42a8-a072-4fd9bddaca0b','436601484788','Sayın HASAN ÖZSOY, 428653750 nolu gönderiniz 8347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428653750\n\nDear HASAN ÖZSOY, your shipment with 428653750 was delivered to you with the delivery code 8347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428653750\n\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('d365efe4-528d-4605-890f-ca17ad0d876a','491743202967','Sayın KÜBRA YAMAN, 613251938 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613251938\n\nDear KÜBRA YAMAN, your shipment with 613251938 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613251938\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('d366ce2c-fc40-4934-a5ab-5b2570f24d75','4917680520105','Sayın BERİVAN PALAVAN, 598903023 nolu gönderiniz 6316 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598903023\n\nDear BERİVAN PALAVAN, your shipment with 598903023 was delivered to you with the delivery code 6316. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598903023\n\n\nBICARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('d368ecb8-5b98-4671-8bfc-998946dd867c','905331602195','Sayın yetkili; ÖZCAN ALCI adlı müşterinize 221351976 nolu gönderinizin 100x210 traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:17:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','06b7693c-2369-4ec9-8e2d-cbc58d32c3c8',NULL),
('d36a9242-0630-4696-a340-040ecffa9280','4917664132163','Sayın SHİMA MAKEH VANDİ, 371865484 nolu gönderiniz 8043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371865484\n\nDear SHİMA MAKEH VANDİ, your shipment with 371865484 was delivered to you with the delivery code 8043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371865484\n\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('d3801a94-60b1-426d-844b-37c7d51d7a6d','4915116506734','74582542 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6189 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74582542\n\nYour shipment with the number 74582542 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6189. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74582542\n\nBICARGO','1','e10bc182-1962-4aff-b973-093a04c71419',NULL),
('d380d3b7-3ab3-4f57-9b94-03e9bb217723','491747353519','Sayın İBRAHİM TURŞUCU		, 910697257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910697257\n\nDear İBRAHİM TURŞUCU		, your shipment with 910697257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910697257\n\nBICARGO','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('d382b24f-0834-41b2-ac79-84a591df4e17','436763366858','DRİVER\n					ADNAN\n+905354622027','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('d38454a8-7ca4-4d7a-a2d1-8a583ef0c57f','33634048698','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('d386f7ec-fe00-41e7-a5b0-68c4aea5f782','905335708965','OKAN ERTÜRK adlı müşterinizin 735233033 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL),
('d388d06a-12cc-42c6-9817-22ea1d674418','905079358213','AYHAN İÇEN adlı müşterinizin 745813483 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','95ff7b1e-98b7-452d-ab80-8e142b1b8abe',NULL),
('d388ef13-a7e8-4bc0-b355-e9b43414b8bc','905306071261','Sayın yetkili; SEVGİ ÖZÇELİK  adlı müşterinize 765627791 nolu gönderinizin WANTED SEHPA  ürünü 1 parça halinde Fatura adresinizden 07.10.2025 15:45:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('d389aafe-0b1c-45b8-b7a1-dcb65672954c','905517075149','EDOLİNA AJETİ REXHEPİ adlı müşterinizin 478749881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('d38b2506-2595-4e83-82ad-ef07dbc1d36c','4917630550743','371586742 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9430 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371586742\n\nYour shipment with the number 371586742 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9430. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371586742\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('d3926e0e-d9f8-4e6f-8928-86dd49ec4451','33672637355','Sayın EMİNE AKPINAR, 231455458 nolu gönderiniz 3322 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231455458\n\nDear EMİNE AKPINAR, your shipment with 231455458 was delivered to you with the delivery code 3322. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231455458\n\n\nBICARGO','1','967b9ee1-7adb-4c9b-9386-f8200b05df01',NULL),
('d39369dc-60fa-4582-bd95-5c92987eca44','491621988472','371104317 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4411 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371104317\n\nYour shipment with the number 371104317 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4411. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371104317\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('d3943177-89c3-4417-9068-847679357615','905335708965','RUKİYE BİÇEM KAPAN adlı müşterinizin 735929791 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ab5fcfea-2c70-4648-a088-f39fd930c2ab',NULL),
('d397783e-79ce-4131-9881-9735e3b7855f','4915752227857','Sayın TÜLAY ÇAĞLAR, 644637792 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644637792\n\nDear TÜLAY ÇAĞLAR, your shipment with 644637792 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644637792\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('d39ad9b0-c1d1-45a7-a416-69943bd5fd5d','5325000478','Sayın SERHAT SERHAT, 23.11.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5411870\nŞifre : 5411870\n			\nBİCARGO','1',NULL,'b5c4e118-f70d-4f61-9bf5-cb930542d764'),
('d39bf458-7711-408b-ac0b-974d5d8c4462','4917624864505','Sayın AHMET EMİN ALGÜL SSH, 910375036 nolu gönderiniz 1174 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910375036\n\nDear AHMET EMİN ALGÜL SSH, your shipment with 910375036 was delivered to you with the delivery code 1174. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910375036\n\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('d39ce0a3-f417-45fb-96f6-0cd22bf77907','31642407835','Sayın FUAT HUT, 517903636 nolu gönderiniz 4091 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517903636\n\nDear FUAT HUT, your shipment with 517903636 was delivered to you with the delivery code 4091. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517903636\n\n\nBICARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('d39f2fb1-7bc8-4e65-aa0d-ed83ae560215','905313340045','AHU KARUÇ adlı müşterinizin 437170354 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b5e4963f-2cfb-4fd1-a834-e7798c6f1eb8',NULL),
('d3a85995-de55-49ee-a2ca-d27fd2397afc','491777474184','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','19e9a585-4bbd-4792-9b14-2af8605e433f',NULL),
('d3b23d1f-415f-4450-b631-62f0ed40df52','4915141934259','Sayın SEMİH CENGİZ, 437551575 nolu gönderiniz 1827 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437551575\n\nDear SEMİH CENGİZ, your shipment with 437551575 was delivered to you with the delivery code 1827. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437551575\n\n\nBICARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('d3b26ca2-14ab-4bac-acc5-eadc0e2cdf34','905313340045','MERVE BEKTİK adlı müşterinizin 43752518 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('d3b483a5-f250-428e-89fe-67f720a3ac90','436604807629','Sayın KARAARSLAN YELİZ, 808886614 nolu gönderiniz 6176 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808886614\n\nDear KARAARSLAN YELİZ, your shipment with 808886614 was delivered to you with the delivery code 6176. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808886614\n\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('d3b485d6-0e18-477f-bfa3-23fc77c4a39b','905304259202','ŞEVKET ZİRİH adlı müşterinizin 478545295 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a149c299-f700-457c-ad04-aac7b10d4609',NULL),
('d3b8ac75-2f1d-4717-adf3-d69018830dad','4915774874594','Sayın MERVE KORKMAZYUREK, 221511033 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221511033\n\nDear MERVE KORKMAZYUREK, your shipment with 221511033 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221511033\n\nBICARGO','1','c58ed249-aadb-4fee-8ca2-1d1eaccb25a3',NULL),
('d3bd3399-e23f-4979-9146-cfd4a61af809','905313340045','SANİYE BIÇAKÇI adlı müşterinizin 43774917 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('d3be7f32-21df-4769-83bc-b90e36d3f6c2','905075277637','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin MALDİV YATAK ODASI ürünü 21 parça halinde ACCA adresinizden 02.07.2025 15:19:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('d3c18059-c7ae-40ed-b4c6-05d5a908001a','905079047428','OĞUZ ÖZÇELİK adlı müşterinizin 449203445 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','110f0eb8-2914-4e85-b599-dc743891806b',NULL),
('d3cc9d77-90c0-4be7-81cb-207e9a0ea8f3','41787614204','Sayın ÖMER KOLAT, 478733683 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478733683\n\nDear ÖMER KOLAT, your shipment with 478733683 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478733683\n\nBICARGO','1','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL),
('d3ce0e24-8674-4e60-98bb-14911bb3629f','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 2 ADET ŞİFONYER+AYNA ürünü 8 parça halinde EYFEL adresinizden 19.09.2025 12:02:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('d3d3092f-939f-4c57-825c-0c37c19e93f0','436602086672','371699257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6970 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371699257\n\nYour shipment with the number 371699257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6970. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371699257\n\nBICARGO','1','a529d4b1-7131-4e37-82ab-dd7986268aa3',NULL),
('d3d30d6b-de29-49f1-9871-e24880ed377c','905532675926','ALİ AYDIN adlı müşterinizin 428391947 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c72ffa02-90ea-47e9-8464-e38059961b11',NULL),
('d3d3d32f-1607-4417-bdcc-3272a4d6434c','905461661672','Sayın yetkili; GAMZE ŞAŞMA adlı müşterinize 644523362 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 20.05.2025 17:26:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('d3d4c358-70a3-4c20-b9a4-3c67f493a90b','31625064385','Sayın MURAT , 163548367 nolu gönderiniz 2407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/163548367\n\nDear MURAT , your shipment with 163548367 was delivered to you with the delivery code 2407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/163548367\n\n\nBICARGO','1','923a076a-9ebb-431d-9f79-3f5aa33e3231',NULL),
('d3db0259-b176-4978-9403-02375e80ec23','4917641556413','Sayın SAAİD HUSSEİN, 501760708 nolu gönderiniz 9052 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501760708\n\nDear SAAİD HUSSEİN, your shipment with 501760708 was delivered to you with the delivery code 9052. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501760708\n\n\nBICARGO','1','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL),
('d3db09f1-851d-49a3-a360-7739128d8ff2','905325000478','Sayın yetkili; NİZAMETTİN adlı müşterinize 412280381 nolu gönderinizin koltuk baza ürünü 1 parça halinde Fatura adresinizden 05.08.2025 13:47:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('d3db3068-b26d-44bb-8ebf-73f5c463f74e','491718276465','412903480 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2801 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412903480\n\nYour shipment with the number 412903480 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2801. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412903480\n\nBICARGO','1','e221f07b-ec1d-448a-801d-7d5296e3b735',NULL),
('d3db46c9-753e-43ec-b83a-0b556e983184','905431026110','İLKAY ÇİFTÇİ adlı müşterinizin 35130528 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('d3dd93b2-5ac3-4e9c-afd4-e39a6bc5bf8c','905079047428','RASHİD FECİANE adlı müşterinizin 449823745 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','582bd0ee-3bef-4bc8-9243-917189827f95',NULL),
('d3e1f924-1f27-43c7-9715-a5ec77c8b88a','33652350138','Sayın CELİNE KARA, 478164511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478164511\n\nDear CELİNE KARA, your shipment with 478164511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478164511\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('d3e33569-cb4b-4805-91d9-264b02d0b301','436602341063','437355925 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6097 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437355925\n\nYour shipment with the number 437355925 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6097. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437355925\n\nBICARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('d3e96314-9a9a-441f-9485-2b5a7837dbd2','4917645789684','Sayın BERKANT YAŞA SSH , 745712790 nolu gönderiniz 2436 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745712790\n\nDear BERKANT YAŞA SSH , your shipment with 745712790 was delivered to you with the delivery code 2436. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745712790\n\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('d3e9e753-121e-40a3-9bc0-d08cc550c6ad','4917664019933','Sayın CEYLAN YILMAZ , 982464994 nolu gönderiniz 6833 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982464994\n\nDear CEYLAN YILMAZ , your shipment with 982464994 was delivered to you with the delivery code 6833. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982464994\n\n\nBICARGO','1','1b611478-1dbd-4a35-9f49-606526e2fe1b',NULL),
('d3eb10ea-fd48-440e-8ba0-0671543e614c','905079358213','Sayın yetkili; ADEM DEMİR  adlı müşterinize 745197948 nolu gönderinizin VOYAGE PUF  ürünü 1 parça halinde RİXXE  adresinizden 19.09.2025 14:46:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1d9f810e-286d-4bae-8abd-224e036ce2c8',NULL),
('d3f1bbea-1feb-4187-bfb5-90f738c246ed','905079358213','İBRAHİM KAYA adlı müşterinizin 745823692 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac0697e8-d848-40e2-afe8-1e847866ef0e',NULL),
('d3f66493-b78e-4c44-8da0-47b61a3210aa','4917632856382','Sayın AYLİN MİYANYEDİ, 598444930 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598444930\n\nDear AYLİN MİYANYEDİ, your shipment with 598444930 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598444930\n\nBICARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('d3fd0708-5f08-473f-9bb8-0f73444d3271','41782155575','Sayın ADİSA BALANCA , 982751509 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982751509\n\nDear ADİSA BALANCA , your shipment with 982751509 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982751509\n\nBICARGO','1','6786ccb2-517a-4991-b179-6d41d556a614',NULL),
('d3fdf640-679b-4dc2-824b-7f23ce949198','4368120439831','Sayın SENA ONMAZ , 43714618 nolu gönderiniz 6385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43714618\n\nDear SENA ONMAZ , your shipment with 43714618 was delivered to you with the delivery code 6385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43714618\n\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('d4007d40-a656-4d97-8ce5-d73696cbfe7b','905331602195','Sayın yetkili; MUHAMMED DALKARA adlı müşterinize 221646640 nolu gönderinizin 120 çap beyaz masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 20.06.2025 18:50:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('d4056e4b-62f1-4f51-85db-3e7216a294e5','3374492498','Sayın ÖMER KARAN, 478165569 nolu gönderiniz 3318 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478165569\n\nDear ÖMER KARAN, your shipment with 478165569 was delivered to you with the delivery code 3318. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478165569\n\n\nBICARGO','2','b5e4c122-6b08-49f6-87aa-e17148ba18f4',NULL),
('d40fe94b-f9cc-45a5-87ac-7c77eedad2fe','491639801426','EURO STAR MOBEL adlı müşterinizin 107870370 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ac57e98-4d31-4029-af5c-63c778250adc',NULL),
('d41026f6-3685-4ba8-9575-90154897cb90','905333323012','Sayın yetkili; GİULİA CLARA CASAGRANDE adlı müşterinize 695274055 nolu gönderinizin KARYOLA ürünü 5 parça halinde Fatura adresinizden 16.06.2025 11:35:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb6dbf38-0841-4b1c-8e3d-c3593de38040',NULL),
('d41192cc-a57b-4919-aa5d-374703b879cd','41797342584','Sayın ROHAD TOSUN , 221529516 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221529516\n\nDear ROHAD TOSUN , your shipment with 221529516 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221529516\n\nBICARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('d4163201-a6fd-4357-b45b-8325f116c7b2','491728552763','817915882 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6768 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817915882\n\nYour shipment with the number 817915882 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6768. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817915882\n\nBICARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('d41c7638-63c7-487b-8e71-cebdfe97472d','905356503956',' adlı müşterinizin 027734999 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','51128593-b736-40db-b3d3-679310ee1e96',NULL),
('d41fd100-f704-4f89-9a88-a3cb8c2964a5','905321608709','CHİKH HAMZA GHUFRAN adlı müşterinizin 248707022 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('d41fd67a-443d-49f8-806b-22cd7077684c','436503555735','613725694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6274 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613725694\n\nYour shipment with the number 613725694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6274. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613725694\n\nBICARGO','2','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('d42512ee-f368-4f26-aabf-2e2145eea036','4915204351936','Sayın EMİNE İMRAG, 808830873 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808830873\n\nDear EMİNE İMRAG, your shipment with 808830873 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808830873\n\nBICARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('d4253703-4b55-4e30-904b-5014c8142d20','905517075149','Sayın yetkili; ELVAN ARSLAN adlı müşterinize 47856812 nolu gönderinizin VOYAGE 3+2 KANEPE ürünü 2 parça halinde RİXXE adresinizden 22.10.2025 14:25:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bee81a54-df39-48a5-9fb3-63e75a6f2e1d',NULL),
('d4305921-65b1-4ca3-8081-cbf4a4c9d1e2','905301592882','SONGÜL KEKEÇ adlı müşterinizin 910197116 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('d430a774-9455-46ab-ab34-20f65f73ee5b','905331602195','Sayın yetkili; AYŞE TÜRKMEN  adlı müşterinize 221507815 nolu gönderinizin Marmo açılır masa 90*220 ürünü 4 parça halinde Fatura adresinizden 13.01.2025 10:22:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('d4348b37-e791-4c35-8d24-87ddf82bb350','4917632871716','371836215 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6922 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371836215\n\nYour shipment with the number 371836215 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6922. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371836215\n\nBICARGO','1','e1db05d8-3a36-4066-8f42-7fd65a69076a',NULL),
('d434da05-e884-4d68-b87b-378eae00de80','4917620552211','Sayın FERİT YEKDA, 248284961 nolu gönderiniz 4038 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248284961\n\nDear FERİT YEKDA, your shipment with 248284961 was delivered to you with the delivery code 4038. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248284961\n\n\nBICARGO','1','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL),
('d439ee89-c02f-4ebe-9e33-cec8b5bf31b4','4915772639272','37142091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2027 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37142091\n\nYour shipment with the number 37142091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2027. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37142091\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('d446938b-e8f2-4c34-a5bc-ea309087c0fc','905363385813','GÜLCAN AYDIN adlı müşterinizin 976942444 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('d4474515-048c-40fb-bbae-d4a0d490d50d','491785618388','Sayın GÜLŞEN KARATAŞ, 644859309 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644859309\n\nDear GÜLŞEN KARATAŞ, your shipment with 644859309 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644859309\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('d44a71ca-a38b-482f-a543-99375c6d1b10','905451571652','Sayın yetkili; İMRAN SAVAS adlı müşterinize 531240111 nolu gönderinizin DOLAP ürünü 20 parça halinde AHMET adresinizden 09.09.2025 17:20:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','016b2dfe-69f8-45ec-bf7e-6ad705106bc6',NULL),
('d44b2de0-57b7-41dc-891d-2259ae59b803','905461661672','Sayın yetkili; MELDA KARA adlı müşterinize 64451300 nolu gönderinizin KARYOLA ürünü 3 parça halinde ALBESSA DESİGN adresinizden 27.03.2025 13:27:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0ea8d257-afae-4860-8574-29747c60c8c6',NULL),
('d450d71b-4102-4a0d-b9aa-620aea1f9524','905428209234','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA ORTA SEHPA / YAN SEHPA ürünü 4 parça halinde ROİS adresinizden 22.09.2025 14:18:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('d456a945-bb9c-4201-827f-e0853ed5ce56','905079047428','ZOE BACHTOLD adlı müşterinizin 449644504 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL),
('d464b812-4906-48b4-bcb5-30f6c523f2bd','436601407495','Sayın ESMA GÜNVAR, 808396862 nolu gönderiniz 5004 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808396862\n\nDear ESMA GÜNVAR, your shipment with 808396862 was delivered to you with the delivery code 5004. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808396862\n\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('d46aebbe-25e7-4817-909f-899643c15169','905451571652','Sayın yetkili; BERKAY GÜNERİ adlı müşterinize 531481098 nolu gönderinizin Traverten Masa ürünü 1 parça halinde Fatura adresinizden 14.10.2025 14:26:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dbff9e03-fe62-4dcb-8c9d-13d24c1e0455',NULL),
('d46f6128-3587-4083-a403-419cd62df843','32483639632','Sayın DUDU AKSOY, 982944278 nolu gönderiniz 9521 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982944278\n\nDear DUDU AKSOY, your shipment with 982944278 was delivered to you with the delivery code 9521. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982944278\n\n\nBICARGO','1','e0c5e84d-2af6-4cb5-a8d0-9a6c00cbb127',NULL),
('d4703875-e018-44e6-b63f-622851eef8fc','905300961610',' adlı müşterinizin 12630810 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','20cdf2e1-0bdd-43d1-9122-ce5f4ff9ab2a',NULL),
('d4722153-74f9-4e3e-b0fb-70615af97a7c','4915510083523','Sayın HÜSEYİN AKBANA, 745191568 nolu gönderiniz 10021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745191568\n\nDear HÜSEYİN AKBANA, your shipment with 745191568 was delivered to you with the delivery code 10021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745191568\n\n\nBICARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('d472d3c8-855e-4b71-9481-64b16eb28deb','905054335859','AHMET TEKİN adlı müşterinizin 501934466 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','91e8883e-fdcc-426e-99c9-17707c173e50',NULL),
('d4764004-6d72-4881-8323-5069a68a2085','32465121667','Sayın EMAL ENRİQUE, 449511744 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449511744\n\nDear EMAL ENRİQUE, your shipment with 449511744 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449511744\n\nBICARGO','1',NULL,NULL),
('d4764c84-607b-475b-9aec-18d333e7b460','33649427969','Sayın BURÇİN MEN, 745970479 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745970479\n\nDear BURÇİN MEN, your shipment with 745970479 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745970479\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('d47b6c9e-7ddd-4303-968e-c16315c2f21c','4915785625950','Sayın EMRE KIZIL SSH, 011222896 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011222896\n\nDear EMRE KIZIL SSH, your shipment with 011222896 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011222896\n\nBICARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('d47d82be-5647-4ced-b22b-6d3d0d70e9a4','905075277637','OKAN CORAMAN adlı müşterinizin 745980941 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('d4801a41-9c35-4353-a506-cd914c2f1be5','491731699402','Sayın ÖZLEM SAĞIR, 73427297 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73427297\n\nDear ÖZLEM SAĞIR, your shipment with 73427297 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/73427297\n\nBICARGO','1','1ae924c7-e6f6-4715-8c97-f693d6de2fda',NULL),
('d4801e51-f942-4045-a0b7-57e8565fce5d','491786788734','Sayın GİZEM TIRPAN, 37140435 nolu gönderiniz 6727 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37140435\n\nDear GİZEM TIRPAN, your shipment with 37140435 was delivered to you with the delivery code 6727. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37140435\n\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('d48036af-ddc8-4141-9887-359a83384058','41792532277','Sayın SAİD ALİ , 982973548 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982973548\n\nDear SAİD ALİ , your shipment with 982973548 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982973548\n\nBICARGO','1','c1240440-7bab-4c36-b81b-ce30804d132b',NULL),
('d484a759-27f4-42f2-af5d-5a19f79e2c1c','436763232174','Sayın MERAL KELES, 675890872 nolu gönderiniz 4185 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/675890872\n\nDear MERAL KELES, your shipment with 675890872 was delivered to you with the delivery code 4185. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/675890872\n\n\nBICARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('d48682fd-77f2-4eb2-b319-6b97eb009a5c','33766361551','Sayın NESLİHAN KÖSEM		, 910316067 nolu gönderiniz 1901 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910316067\n\nDear NESLİHAN KÖSEM		, your shipment with 910316067 was delivered to you with the delivery code 1901. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910316067\n\n\nBICARGO','1','f5d77768-b445-4580-b1a1-2e07f2bb9f93',NULL),
('d487bcda-d7df-4667-bb2f-1daa20b845af','33658826838','Sayın ŞÜKRÜ ÇABUK, 248240352 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248240352\n\nDear ŞÜKRÜ ÇABUK, your shipment with 248240352 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248240352\n\nBICARGO','1','f2ddd453-c51d-43a7-827f-f55415305fb3',NULL),
('d4898dc7-ade7-467e-ab06-8b32373f5e9d','4915785563559','Sayın SOFİA KYRİAKİDOU, 371186967 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371186967\n\nDear SOFİA KYRİAKİDOU, your shipment with 371186967 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371186967\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('d48aed33-a2dc-4636-ba56-98267350e7a7','905363385813','MUHAMMER KORKMAZ adlı müşterinizin 976187023 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d74a364e-c899-455c-8b3f-5a445fba432a',NULL),
('d48d319a-f6e8-4659-96de-fe50a37b2921','905325000478','SEYFETTİN adlı müşterinizin 412223405 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c67fa905-f2ae-4d60-a3cb-8209edbe7b9c',NULL),
('d496d597-a7a1-47c6-a6e7-6fb5bef5aea6','4917685967745','Sayın ERDEMCAN GÖZÜBÜYÜK, 37159654 nolu gönderiniz 7611 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37159654\n\nDear ERDEMCAN GÖZÜBÜYÜK, your shipment with 37159654 was delivered to you with the delivery code 7611. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37159654\n\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('d4a1fee9-bcda-42f6-a959-09b4e2f768d7','905394878216','FERHAT DEMİRCİ adlı müşterinizin 517901924 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('d4a73b02-4535-450e-af4a-311496a94348','905079047428','Sayın yetkili; HASAN GHASEMİ adlı müşterinize 449329901 nolu gönderinizin 3-3-1-1 koltuk takımı 1 adet sehpa ürünü 4 parça halinde Fatura adresinizden 18.12.2024 14:36:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b00227de-ee41-4b65-a07a-229d31a6d4da',NULL),
('d4b18e6f-28ab-489a-873a-ed3d158419a7','4917631033403','Sayın NADİYE ÇAVUŞ, 644200718 nolu gönderiniz 8478 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644200718\n\nDear NADİYE ÇAVUŞ, your shipment with 644200718 was delivered to you with the delivery code 8478. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644200718\n\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('d4b2abee-a274-47a4-9436-eacd9c19318f','905078062550','Sayın yetkili; OKAN ÖZTÜRK adlı müşterinize 598891928 nolu gönderinizin MASA SEHPA ürünü 5 parça halinde RİO FATİH adresinizden 15.08.2025 15:54:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','28d77c29-5660-4bd1-beec-e4790f6ae7e8',NULL),
('d4b8dc02-3911-4f4a-9bdc-6b864ee318d0','491779689978','412678735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8030 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412678735\n\nYour shipment with the number 412678735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8030. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412678735\n\nBICARGO','1','3d0ee2a7-3e96-49d1-bc30-10cf8cbc9f51',NULL),
('d4bc14b8-6637-4c8f-a940-3a9655933807','4915756455656','Sayın SAMET KÖTEN, 976439318 nolu gönderiniz 3992 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976439318\n\nDear SAMET KÖTEN, your shipment with 976439318 was delivered to you with the delivery code 3992. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976439318\n\n\nBICARGO','1','6e70fec4-ae28-4ffb-9ee0-160b7b77935f',NULL),
('d4c1abdb-abf9-4489-9527-3e8f2cffca8e','004917284997194','Sayın MİHRİBAN SİS -TRANSJET, 735637082 nolu gönderiniz 2356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735637082\n\nDear MİHRİBAN SİS -TRANSJET, your shipment with 735637082 was delivered to you with the delivery code 2356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735637082\n\n\nBICARGO','2','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL),
('d4c1dcc8-8309-4a4b-b11b-375250d38a95','905331602195','İHSAN KUMUR adlı müşterinizin 221825192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff996f87-3846-4d01-9b30-2f9d65c79763',NULL),
('d4c2c8f4-ef86-4e52-9bd1-7b39e010b0dd','905079047428','OMAR AHMEDİ  adlı müşterinizin 44998008 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL),
('d4ca96ba-8f9e-4bc2-9d90-50ba123d756a','5413112906','Sayın DİLBER ÖZTÜRK, 319585140 nolu gönderiniz 3350 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319585140\n\nDear DİLBER ÖZTÜRK, your shipment with 319585140 was delivered to you with the delivery code 3350. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319585140\n\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('d4cdcb04-25c7-4051-9adf-ce68799c72ae','491629284220','478259590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10124 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478259590\n\nYour shipment with the number 478259590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10124. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478259590\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('d4cf7f1c-ad22-4e83-9478-f8649862aede','905454259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin dolap kapağı ve aplikler ürünü 2 parça halinde mobilistan adresinizden 23.06.2025 13:46:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('d4d09983-98d8-42af-a7a7-c9607250ebe5','31681790138','Sayın İBRAHİM MERMERCİ, 221102071 nolu gönderiniz 1660 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221102071\n\nDear İBRAHİM MERMERCİ, your shipment with 221102071 was delivered to you with the delivery code 1660. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221102071\n\n\nBICARGO','1','041d4369-8e52-432c-a39c-693f970677e0',NULL),
('d4d5f5a6-e987-4280-b4ff-1069c114d1d3','33787053460','Sayın EMRAH ERAYDIN, 127552437 nolu gönderiniz 4289 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127552437\n\nDear EMRAH ERAYDIN, your shipment with 127552437 was delivered to you with the delivery code 4289. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127552437\n\n\nBICARGO','1','0870a03e-86ea-4d91-bf42-aa250c0c7ee1',NULL),
('d4d822af-d346-402c-bd80-4c51b03e98e3','41762266970','Sayın VALBOANA, 786254351 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786254351\n\nDear VALBOANA, your shipment with 786254351 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786254351\n\nBICARGO','1','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL),
('d4db9269-a664-4bb5-a382-2c0f43b179d2','491604615612','371413703 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8985 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371413703\n\nYour shipment with the number 371413703 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8985. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371413703\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('d4defbf1-fdc0-441b-942d-752e1599ed53','905325000478','ZEKERİYA HOCA adlı müşterinizin 412903480 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e221f07b-ec1d-448a-801d-7d5296e3b735',NULL),
('d4e3c082-70ce-431b-b8c0-3bd43aefdc18','905325000478','ALİ ÖZVEREN adlı müşterinizin 412722649 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','55e607ed-d51c-485a-8378-e7a48e23c319',NULL),
('d4e7dce9-8473-48c9-a3c7-347391109956','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU DENGEMA 361 ZEN MASA BEYAZ MERMER-KROMAJ AYAK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d4e80e3d-05f1-4314-9258-9821707f144c','4915164418447','976577497 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4034 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976577497\n\nYour shipment with the number 976577497 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4034. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976577497\n\nBICARGO','1','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL),
('d4eb4d21-c613-432e-8103-28cbdefb3081','4369910940808','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('d4ebbffb-e993-45c6-b3da-a7e3de0eda72','491773713548','Sayın TUNCAY KOÇOĞLU, 465844619 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/465844619\n\nDear TUNCAY KOÇOĞLU, your shipment with 465844619 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/465844619\n\nBICARGO','1','f28509f2-7a8d-45a7-9f70-448e074b8278',NULL),
('d4f265c7-049a-4b32-b21e-6300c8c1bea0','4915560261024','97623604 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10712 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/97623604\n\nYour shipment with the number 97623604 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10712. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/97623604\n\nBICARGO','1','2e3dd4aa-6e0b-4063-aabf-0948a2561c35',NULL),
('d4f48df4-a5f8-494c-83dc-95e5bd4bbcfc','905335511664','Sayın yetkili; ESRA AVAN adlı müşterinize 371105450 nolu gönderinizin köşe takımı ürünü 4 parça halinde Elitis Home adresinizden 22.10.2025 12:00:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a0dc23d-2a8a-4cc6-864b-3ba2bc20333b',NULL),
('d4f5241f-b2ca-4858-89c5-de19dd1ae487','905394878216','ÖZGÜR PİLİÇ adlı müşterinizin 517447554 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('d4f81cfe-39fa-49ec-9b15-812092c6375e','33749069844','Sayın YÜKSEL KILIÇ, 478339779 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478339779\n\nDear YÜKSEL KILIÇ, your shipment with 478339779 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478339779\n\nBICARGO','1',NULL,NULL),
('d4fa3427-9dec-4d9c-9fea-541fcf782363','4917683202035','371655670 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5698 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371655670\n\nYour shipment with the number 371655670 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5698. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371655670\n\nBICARGO','1','b8e1c5ea-37ab-4a88-bf6e-66220eac77ff',NULL),
('d4fa4745-0836-449b-af2f-e602c8c105a2','905461661672','TAYFUN ŞENGÜL adlı müşterinizin 644424764 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('d4faf60b-448e-4634-ad18-690fe38176d8','4917631419046','Sayın NADİR KURUKOL, 428752676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428752676\n\nDear NADİR KURUKOL, your shipment with 428752676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428752676\n\nBICARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('d50315ce-7032-42e6-9bda-cf2b5d486095','491607764360','Sayın İPEK ÇAKMAKÇI, 505129515 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505129515\n\nDear İPEK ÇAKMAKÇI, your shipment with 505129515 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505129515\n\nBICARGO','1','d8b2b91c-b7dd-4d77-8c28-f3bca3b7ae4b',NULL),
('d505c56c-87f4-4dea-90f1-e2e9d4e7a02e','436766833448','338840422 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8343 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338840422\n\nYour shipment with the number 338840422 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8343. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338840422\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('d5070c7d-6b85-42d0-b922-1a33d2356c3c','905079047428','REZA OMERİ adlı müşterinizin 449394658 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6a397517-cdaf-4836-a678-f168177b94a2',NULL),
('d50a7bac-c0df-4f5a-8d36-ffc2b4c81fdc','905335708965','MERLİNDA MERDJANİ adlı müşterinizin 248849829 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','220db035-3213-4ef9-ba91-2f141c43fdd5',NULL),
('d50cf2d5-f6c2-4441-b9be-51ab1158ded6','4915256314885','644758410 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3129 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644758410\n\nYour shipment with the number 644758410 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3129. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644758410\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('d513003d-3820-4c36-9165-cd7524af9822','905304259202','ASLIHAN KELES adlı müşterinizin 478112159 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4b7eb51b-9f98-4771-9c1e-ea99abe7f44a',NULL),
('d5176f5b-cec1-4b01-93d5-f9b6c8caa6d3','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('d521e006-bbe7-4dd8-9af7-e2b90ef4cc3c','9054439559150','Sayın yetkili; GÜNGÖR SAK adlı müşterinize 614901187 nolu gönderinizin BAMBİ MAGNASAND 160*200 BAZA ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('d5226062-c895-45d1-b81b-87f64589af63','905461661672','Sayın yetkili; OSMAN ALTUN adlı müşterinize 644901751 nolu gönderinizin TRAVERTEN MASA VE SEHPA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 02.04.2025 09:55:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','10d22b54-2959-49b7-ac9c-935cb90eaedc',NULL),
('d523cd57-457f-469c-94ce-6ed9592467bf','33658512711','Sayın TUNCAY AKAR, 745483178 nolu gönderiniz 7298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745483178\n\nDear TUNCAY AKAR, your shipment with 745483178 was delivered to you with the delivery code 7298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745483178\n\n\nBICARGO','1','1aab780a-270d-4d41-aa6e-89172259c9fc',NULL),
('d52d5c92-4724-471e-b509-ca6bbae3bc17','436603406293','RECEP DUYGULU adlı müşterinizin 675139037 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','3a352d28-b0b9-4b59-9821-a77910ca2fbb',NULL),
('d52fc9d5-57c9-4d32-a3a6-3e29b02b259d','491797759335','Sayın NADİYE ÇAVUŞ, 644200718 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644200718\n\nDear NADİYE ÇAVUŞ, your shipment with 644200718 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644200718\n\nBICARGO','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('d532821a-6c8e-4344-b63a-c323077b77eb','5413112906','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('d533a5be-0b95-4bd0-8fe5-867016e4fa4d','3454363464652424','Sayın NADİR KURUKOL, 412217714 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412217714\n\nDear NADİR KURUKOL, your shipment with 412217714 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412217714\n\nBICARGO','2','5fe73200-216d-4572-a46e-fc6418650bf7',NULL),
('d5350ddf-0e26-48b8-a1ec-aefd1431487a','905461661672','Sayın yetkili; SUZAN EL MOUSSA(K) adlı müşterinize 644303406 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:03:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0abef697-325b-4fde-a364-d1f3c1d2b3f9',NULL),
('d53531ab-02b6-457e-a324-a386d40fc3e5','32499502341','Sayın YASEMİN ERKAN, 910152598 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910152598\n\nDear YASEMİN ERKAN, your shipment with 910152598 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910152598\n\nBICARGO','1','b465c878-5c55-4a06-a58b-bd7c57228652',NULL),
('d53e2fce-2cc3-4212-9e08-72143213ee1f','905059175469','SÜMEYYE KARAMAN adlı müşterinizin 428958532 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL),
('d54609e3-30b6-42c0-a8a5-acdb2668bd51','491525140470','745940979 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9557 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745940979\n\nYour shipment with the number 745940979 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9557. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745940979\n\nBICARGO','2','99481881-e1d7-425b-9aa3-9cb0c61cb139',NULL),
('d547d752-b829-4ad6-addb-f2c4963d014e','33753285709','Sayın ÖZKAN ERDEM , 478784133 nolu gönderiniz 7407 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478784133\n\nDear ÖZKAN ERDEM , your shipment with 478784133 was delivered to you with the delivery code 7407. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478784133\n\n\nBICARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('d5489a56-0feb-4554-9dee-1fb9da44ee68','905331602195','Sayın yetkili; MÜCAHİD GÜZEL adlı müşterinize 22162472 nolu gönderinizin TRAVERTEN MASA ürünü 3 parça halinde Fatura adresinizden 02.01.2025 11:33:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('d549ef4c-0b0c-4983-8b69-1937b0c24125','491764560707','478798827 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4683 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478798827\n\nYour shipment with the number 478798827 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4683. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478798827\n\nBICARGO','2','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('d54d23ff-3678-4da1-8d6f-6546ad27314a','4917683277906','Sayın KORNİŞ ÇUVAL, 248173138 nolu gönderiniz 6030 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248173138\n\nDear KORNİŞ ÇUVAL, your shipment with 248173138 was delivered to you with the delivery code 6030. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248173138\n\n\nBICARGO','1','fdd68378-14a3-446e-acd4-64b7634a5689',NULL),
('d54e5db5-47ea-4943-ab94-51eb1552761b','017660006494','Sayın KÜBRA YAMAN, 613251938 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613251938\n\nDear KÜBRA YAMAN, your shipment with 613251938 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613251938\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('d54fef9f-868e-48c5-a0f3-6774058ad04f','905325000478','BOLL TRADE adlı müşterinizin 412795154 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('d5536c47-01f0-47db-9396-d96635b86c44','436607858584','Sayın ABDULLAH DEMİR , 745906720 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906720\n\nDear ABDULLAH DEMİR , your shipment with 745906720 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745906720\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('d5553108-d1ab-4b65-b301-805ee2c5d157','905333221039','FEVRİ YALÇIN adlı müşterinizin 750135738 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','99bf3199-3c27-48a2-a451-a85f9c13bd5c',NULL),
('d5568081-dacc-4c59-83d3-5e15b75a0f7f','491727832300','437426295 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10844 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437426295\n\nYour shipment with the number 437426295 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10844. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437426295\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('d557892d-1b56-45d1-95b3-fb24f3c300ea','905335511664','Sayın yetkili; BİLAL KIZILIRMAK adlı müşterinize 371155650 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 17.09.2025 13:56:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f896043-41f5-4e03-93cf-693eadfeb3c2',NULL),
('d55b57db-23d4-491a-85f7-b082687e2b08','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin ayna ürünü 1 parça halinde DORTHOME OFİS adresinizden 17.09.2025 16:26:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('d56a2f09-d7a5-447b-aea9-1ec9d4537367','05539740010','Sayın yetkili; FERHAT SANUÇ adlı müşterinize 011573387 nolu gönderinizin 6 sandalye ürünü 3 parça halinde ayaz masa sandalye  adresinizden 25.07.2025 16:12:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('d572b28d-e552-4907-b790-8005f87e047b','31686125426','Sayın SAMET BEY, 478544570 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478544570\n\nDear SAMET BEY, your shipment with 478544570 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478544570\n\nBICARGO','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('d576a92f-dc2f-47fa-b217-52f2f0c8d348','491734175349','486184665 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9111 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486184665\n\nYour shipment with the number 486184665 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9111. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/486184665\n\nBICARGO','1','7880358c-ba4e-4929-b5d9-4aed20c36174',NULL),
('d579ee9f-1930-4098-9797-e13635265f2f','494621092008','478524376 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1228 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478524376\n\nYour shipment with the number 478524376 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1228. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478524376\n\nBICARGO','2','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('d5866a25-cbfd-4c8a-8409-049f94414573','4917624864507','Sayın AHMET EMİN ALGÜL SSH, 910375036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910375036\n\nDear AHMET EMİN ALGÜL SSH, your shipment with 910375036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910375036\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('d5871126-f74c-44b3-a6ec-8292afb295ca','4917631133245','81723596 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7435 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/81723596\n\nYour shipment with the number 81723596 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7435. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/81723596\n\nBICARGO','1','fbf4be02-a94c-4c66-8bc0-6d4229c8eb0f',NULL),
('d588b7d0-78b2-4910-9580-3a6c12446dd3','05417912611','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('d58e98ef-4b24-4e40-b825-910d339f39d4','905389543828','Sayın yetkili; ALBAN HASANİ adlı müşterinize 486741087 nolu gönderinizin Koltuk ürünü 4 parça halinde Moe Bedding adresinizden 14.10.2025 11:19:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','308ddadc-251a-4960-a99e-9154ac7e4c88',NULL),
('d5989f71-6c00-4e26-a334-93f3aab2eccb','4917624188930','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','72cfbd20-52f4-440a-b62e-8fdf632177d6',NULL),
('d59dd881-c399-4287-91d7-abc06b71018d','4915158036323','Sayın CEMAL YALÇIN, 319116491 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319116491\n\nDear CEMAL YALÇIN, your shipment with 319116491 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319116491\n\nBICARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('d59e9335-dc1f-4ad0-983f-c06fcc83a0df','33652910874','Sayın BURAK TÜRKEŞ, 614458088 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614458088\n\nDear BURAK TÜRKEŞ, your shipment with 614458088 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614458088\n\nBICARGO','1','c1cea88c-608d-4453-b63a-81ba0b909940',NULL),
('d5a57e81-2586-4a48-86c9-ff62cad48c65','905540182920','Sayın HASAN BEY, 448774640 nolu gönderiniz 7513 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/448774640\n\nDear HASAN BEY, your shipment with 448774640 was delivered to you with the delivery code 7513. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/448774640\n\n\nBICARGO','1','abeb06ec-0186-44af-abeb-248b55f83e5f',NULL),
('d5aa7611-54ab-425d-8fd7-3b191dc7c57d','4917640498968','644606140 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3394 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644606140\n\nYour shipment with the number 644606140 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3394. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644606140\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('d5ab4a25-ae9e-461f-95a1-d2abda7506d5','32484427086','Sayın RESUL YILMAZ, 478816607 nolu gönderiniz 1967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478816607\n\nDear RESUL YILMAZ, your shipment with 478816607 was delivered to you with the delivery code 1967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478816607\n\n\nBICARGO','1','f99b50af-eb7f-4cab-b383-9c577efa25b1',NULL),
('d5aed5d6-cc8a-4920-8254-10562c8cd629','491639801426','Sayın EURO MOBEL, 412218985 nolu gönderiniz 3194 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412218985\n\nDear EURO MOBEL, your shipment with 412218985 was delivered to you with the delivery code 3194. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412218985\n\n\nBICARGO','1','835863ce-70ff-4b53-b486-a32e6936cae4',NULL),
('d5afa79e-f3b4-44bf-865f-1e80c2009347','4917620954584','Sayın BESTE NUR ÖZKAYA, 896769535 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896769535\n\nDear BESTE NUR ÖZKAYA, your shipment with 896769535 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896769535\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('d5b3f507-ec6c-41d4-b1fa-f7412d19f749','4917632961366','Sayın YUNUS EMRE ÖZAGİR, 531988506 nolu gönderiniz 9146 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531988506\n\nDear YUNUS EMRE ÖZAGİR, your shipment with 531988506 was delivered to you with the delivery code 9146. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531988506\n\n\nBICARGO','1','824b8b50-1127-4eb5-8137-c9c3822a54a2',NULL),
('d5cbe741-85c8-49f9-b9c2-320cae891583','905517075149','Sayın yetkili; BİNALİ BOZBAŞ adlı müşterinize 478798827 nolu gönderinizin BERJER AYAK PAPUCU 8AD ürünü 1 parça halinde PUFFİN adresinizden 12.09.2025 14:42:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('d5cef847-dd89-4f74-9b09-b93857428a81','905331602195','Sayın yetkili; ARMİN IMERİ  adlı müşterinize 221867394 nolu gönderinizin 90x190 cm Traverten masa  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 26.04.2025 15:54:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('d5d3c0f4-453e-4137-9897-9a548403b4a1','905461661672','MERT OSMAN DEMİR(K) adlı müşterinizin 644153988 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('d5d4a86e-8fc3-4bd7-bc9b-a08dfc82ec43','31631024825','Sayın SELDA ÇELİK, 478777541 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478777541\n\nDear SELDA ÇELİK, your shipment with 478777541 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478777541\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('d5d5d48a-bbce-4cf7-b783-015e9430f2bf','905331602195','Sayın yetkili; BURCU GELİR  adlı müşterinize 221461818 nolu gönderinizin Traverten tv ünitesi  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:30:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('d5d7c4d1-ee38-4d55-8c88-7bcd11f86381','905079358213','Sayın yetkili; SEMRA HAKAN KABİR adlı müşterinize 745409977 nolu gönderinizin İCON CEVİZ YATAK ODASI ürünü 21 parça halinde ROIS adresinizden 05.05.2025 15:01:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('d5d8125a-314e-4de9-b936-f66e8649d3fa','905313340045','Sayın yetkili; MANOLYA PELİN ERDOĞAN ÖZÇELİK adlı müşterinize 437649706 nolu gönderinizin Sandalye  ürünü 2 parça halinde HATEM sandalye adresinizden 22.09.2025 11:54:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('d5d89737-fe8b-4aee-89c2-2015dfaeb4ed','905335708965','INNSTRABE  adlı müşterinizin 248648996 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','17a3d3ea-9822-46c1-a225-976edf021056',NULL),
('d5e6c945-19de-431f-a605-e8b9c893cf5f','491726428404','465194627 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9893 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/465194627\n\nYour shipment with the number 465194627 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9893. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/465194627\n\nBICARGO','1','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL),
('d5e832df-e89f-478b-83c9-843ad46c5d04','436641583122','Sayın HÜLYA KORKMAZ, 745724851 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745724851\n\nDear HÜLYA KORKMAZ, your shipment with 745724851 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745724851\n\nBICARGO','1','f4a420f1-0b38-4ccd-8a4a-20c4e6c05f41',NULL),
('d5f07375-dd68-4fb0-8408-6991486c3e14','41793101768','Sayın CEM TOPYÜREK, 53111592 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/53111592\n\nDear CEM TOPYÜREK, your shipment with 53111592 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/53111592\n\nBICARGO','1','7ca0c26d-8bbc-4deb-a210-90620aca69ad',NULL),
('d5f673c2-f7da-44ea-9884-003a0471eb57','33744210474','İletişim \n					Şöför Uğur Acar +905424435917','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('d5f9f9a1-11c0-4c63-ad6f-74251672be47','491629891216','ŞÖFÖR NUMARASI\n					+905467896981','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('d5fb08ae-68c3-4bf9-a903-f44fff13a886','31687211172','Sayın GÖKHAN EYCAN , 478751440 nolu gönderiniz 2000 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478751440\n\nDear GÖKHAN EYCAN , your shipment with 478751440 was delivered to you with the delivery code 2000. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478751440\n\n\nBICARGO','1','4ab249eb-ffb9-4bfa-ab09-0071234e0617',NULL),
('d5fc3f29-fd3e-4fe9-a485-37b6314d9d2d','905461661672','Sayın yetkili; CAN ALTIN adlı müşterinize 644110179 nolu gönderinizin MASA  ürünü 2 parça halinde Masami Mobilya adresinizden 13.03.2025 16:44:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3176b45-a9ae-470a-9151-1ab0181ca82c',NULL),
('d60fe089-db92-4a65-80f7-0bf711053f2e','4917681316361','Sayın BETÜL GÜNER, 644550858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644550858\n\nDear BETÜL GÜNER, your shipment with 644550858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644550858\n\nBICARGO','1','82d80e65-06fc-4494-86fe-0aa63b37337e',NULL),
('d61274cf-eaf1-4b97-a8c4-e93a72160773','1122323232323232','248475044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1268 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248475044\n\nYour shipment with the number 248475044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1268. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248475044\n\nBICARGO','2','bf721424-1a05-4d9c-95f0-728c336c9ab9',NULL),
('d614cc5a-b33b-4b6e-87a1-84b74e250bf5','420606704964','Sayın NATALİJE, 916836796 nolu gönderiniz 2062 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/916836796\n\nDear NATALİJE, your shipment with 916836796 was delivered to you with the delivery code 2062. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/916836796\n\n\nBICARGO','1','45658f08-1cac-40c6-b173-5814bf12543e',NULL),
('d6182353-13f6-46ad-92d3-c5700eb2d066','33617127634','Sayın M.CEDRİC KLEINDIENST, 221850151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221850151\n\nDear M.CEDRİC KLEINDIENST, your shipment with 221850151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221850151\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('d61b6c1f-8a85-4804-b2dd-c16bc0e7394d','31629002803','Sayın BLANDİ ZOTA, 644965833 nolu gönderiniz 6833 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644965833\n\nDear BLANDİ ZOTA, your shipment with 644965833 was delivered to you with the delivery code 6833. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644965833\n\n\nBICARGO','1','8cf92937-e0c9-49c9-87aa-33b3c2fd4773',NULL),
('d61d44e6-a30d-42ad-abc2-8bcd6a149597','41798943300','Sayın ALTİN RAMADANİ, 61355212 nolu gönderiniz 3892 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61355212\n\nDear ALTİN RAMADANİ, your shipment with 61355212 was delivered to you with the delivery code 3892. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61355212\n\n\nBICARGO','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('d6248d67-3187-4d00-ae93-17626d3adbea','5528582359','Sayın HANIM DOĞAN, 478730420 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478730420\n\nDear HANIM DOĞAN, your shipment with 478730420 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478730420\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('d6274f99-4044-4608-90d5-3b2f7abdb32c','905325000478','MURAT adlı müşterinizin 4127825 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','9d3eeab3-6f70-470b-8fb3-1972e4e4a4ab',NULL),
('d6294692-f183-42d4-b020-5bb5561e42a0','905368336516','AKKİZ TOPCU adlı müşterinizin 515129438 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','f4f40ee4-217b-42da-be20-ab73e6a72821',NULL),
('d62b17ef-f979-4454-9116-41d83a7acaea','905079358213','Sayın yetkili; BELGİZAR GEZİCİ adlı müşterinize 745173444 nolu gönderinizin PARİS KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 17.04.2025 13:36:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d6a4625-934e-46e6-87c9-560c887e2125',NULL),
('d62d858b-2564-446b-b6af-684cc52f48f2','33758896442','478322325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478322325\n\nYour shipment with the number 478322325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478322325\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('d62ff616-e032-44c7-a558-ce2308f9892e','905336367828','OMARİ EMAL  adlı müşterinizin 982726615 nolu gönderisi 29 parça halinde yola çıkmıştır.','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('d63045de-eae4-47ca-a5f5-b6817fcab05f','4917681123517','515139511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515139511\n\nYour shipment with the number 515139511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515139511\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('d6364b42-fa1f-4786-aad3-5e76d7df7965','905540182920','Sayın HASAN BEY, 44831715 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44831715\n\nDear HASAN BEY, your shipment with 44831715 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44831715\n\nBICARGO','1','56f30890-8cd9-48d2-9a6a-3354e8a6a762',NULL),
('d63bf47b-0755-4acb-a260-5e1c92c2b542','905078062550','AYHAN ÇEKİ adlı müşterinizin 598758154 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','4854617d-8e10-44dc-9d64-e083a9bc9ee3',NULL),
('d64599a4-3f2e-448f-9d31-074e720999b5','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Masa Üst ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:48:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('d6504c2b-551c-4b18-a6c8-9dd17bfad05e','905325000478','ŞÖMİNE adlı müşterinizin 412987652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL),
('d651075b-c9f6-405b-86b5-667cbe5d4f78','4915147201286','Sayın İSA SÖNMEZ, 371820680 nolu gönderiniz 3264 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371820680\n\nDear İSA SÖNMEZ, your shipment with 371820680 was delivered to you with the delivery code 3264. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371820680\n\n\nBICARGO','1','b9f93946-382b-435b-9bca-6293072351d1',NULL),
('d6619de6-fdfb-4255-913a-4d32aba8709d','905079358213','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin DİOR ŞİFONYER + AYNA + PUF  ürünü 4 parça halinde GARDEROBE adresinizden 02.10.2025 15:01:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('d662bbe8-29d5-422c-85a6-619560358da1','33652449725','Sayın BİLGEN TATAR, 478764154 nolu gönderiniz 2021 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478764154\n\nDear BİLGEN TATAR, your shipment with 478764154 was delivered to you with the delivery code 2021. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478764154\n\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('d66b9b0d-6776-40e9-b4e9-5cabd3ee2247','905517075149','Sayın yetkili; OKAY DERİNKUYU adlı müşterinize 478984010 nolu gönderinizin 6 adet sandalye ürünü 3 parça halinde beymi sandalye adresinizden 17.07.2025 15:09:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('d66d74e3-e5b9-4a8b-9aa0-e7f99b8d5d26','33663685576','Sayın SADOUN ABDELKADİR, 221804377 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221804377\n\nDear SADOUN ABDELKADİR, your shipment with 221804377 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221804377\n\nBICARGO','1','82f2dc1e-58cf-4fd0-9936-e9927dc016f0',NULL),
('d66dc164-2928-43f2-9356-2fb23e81dfb3','33769005262','Sayın ERDEL SİBEL, 644968450 nolu gönderiniz 5584 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644968450\n\nDear ERDEL SİBEL, your shipment with 644968450 was delivered to you with the delivery code 5584. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644968450\n\n\nBICARGO','1','44ab156f-e89c-4eaa-b7ab-1fed4206ce92',NULL),
('d678432f-ca8f-441b-a1c2-98fcc42148a5','905335511664','Sayın yetkili; BÜŞRA POYRAZ adlı müşterinize 371508043 nolu gönderinizin KÖŞE TAKIMI + PUF ürünü 2 parça halinde Elitis Home adresinizden 02.10.2025 15:14:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('d679ac17-18e0-4068-af73-418bfe61e40d','905304259202','YASEF İÇEL adlı müşterinizin 478723817 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e582ab5-26a1-4aad-96cc-f8f8f5507030',NULL),
('d68b22a7-a700-4422-86c4-412bbc423023','905454259202','Sayın yetkili; MELİSA SAĞLIK adlı müşterinize 478483851 nolu gönderinizin PRAG KÖŞE ürünü 4 parça halinde AREA adresinizden 09.04.2025 16:53:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46528672-1c96-4785-80ba-77e3cec82ee8',NULL),
('d68ebdb2-70da-4e2a-83f1-810a5e20015b','905059175469','Sayın yetkili; ERDOĞAN DEMİREL adlı müşterinize 428172853 nolu gönderinizin sandalye ürünü 3 parça halinde fulaş sandalye adresinizden 08.07.2025 12:50:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','90462b6a-6fe2-4fba-8b01-1afd6272a71f',NULL),
('d694a949-ec03-43e5-a266-6766219d20bf','905335708965','ÜMRAN HANIM adlı müşterinizin 248853188 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','cff31e86-cae0-4159-890f-d6fdf1bef718',NULL),
('d69c40c6-e3b1-4583-b6f3-d6a0f379cfbb','4917676707917','Sayın MERYEM YILDIZ, 745957068 nolu gönderiniz 3284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745957068\n\nDear MERYEM YILDIZ, your shipment with 745957068 was delivered to you with the delivery code 3284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745957068\n\n\nBICARGO','1','7843425f-fb19-4fb2-a74f-b8a496a42e1b',NULL),
('d6a59089-95e6-4de1-9a1d-8cc8c40862bf','4915735324307','Sayın SÜMEYRA YARİM, 371381951 nolu gönderiniz 8319 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371381951\n\nDear SÜMEYRA YARİM, your shipment with 371381951 was delivered to you with the delivery code 8319. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371381951\n\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('d6a7def8-26d5-4b6e-8dbe-1fa019ab7908','905335511664','DERYA BAYRAK adlı müşterinizin 371180149 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','88e73e43-dac2-4ecf-ab5a-8fb52d544ece',NULL),
('d6ac6b37-9faf-4d72-af80-4a50413e2aa7','491776434343','Sayın AYHAN TÜRKMEN, 027527659 nolu gönderiniz 9385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/027527659\n\nDear AYHAN TÜRKMEN, your shipment with 027527659 was delivered to you with the delivery code 9385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/027527659\n\n\nBICARGO','1','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL),
('d6b230d7-0ca7-46f9-b592-38fa8584425e','33636227871','Sayın AHMED AZEEZ , 221364325 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221364325\n\nDear AHMED AZEEZ , your shipment with 221364325 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221364325\n\nBICARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('d6b28afc-1365-43a4-85f4-e75977ce7e95','905059175469','ÖMER KARAMAN adlı müşterinizin 428857511 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('d6b28bd5-e563-4a87-ace2-69a8aba86f13','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin KUMRU DENGEMA S80 LAILA SANDALYE ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d6b3e048-fee2-4c1f-ad36-5e133be14c5d','491601209210','Sayın MAHSUN ALDEMİR(K), 644593040 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644593040\n\nDear MAHSUN ALDEMİR(K), your shipment with 644593040 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644593040\n\nBICARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('d6b56b7c-7aac-466f-9015-e9697c74eabf','41768170678','517616028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2050 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/517616028\n\nYour shipment with the number 517616028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2050. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/517616028\n\nBICARGO','1','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL),
('d6b5cc85-594e-4ef2-839c-f4864e37d1ec','905437954809','KAMER DUHAN ECE adlı müşterinizin 831899043 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('d6b71eed-4034-45aa-b67b-6d9c5f9a379a','4915201020700','Sayın (K)SİNEM İDRİZAJ , 644880161 nolu gönderiniz 5085 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644880161\n\nDear (K)SİNEM İDRİZAJ , your shipment with 644880161 was delivered to you with the delivery code 5085. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644880161\n\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('d6c0a0e2-57e6-4dec-97d0-0dfe37a8d424','4915152072002','Sayın MERT OSMAN DEMİR(K), 644153988 nolu gönderiniz 2058 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644153988\n\nDear MERT OSMAN DEMİR(K), your shipment with 644153988 was delivered to you with the delivery code 2058. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644153988\n\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('d6c15933-2e85-43c7-96c5-5cb31fd5a374','491729086965','Sayın ÖMÜR TOSUN, 78633450 nolu gönderiniz 10765 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/78633450\n\nDear ÖMÜR TOSUN, your shipment with 78633450 was delivered to you with the delivery code 10765. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/78633450\n\n\nBICARGO','1','2456bba8-8438-4070-98e2-c287835345fb',NULL),
('d6c2d18b-184a-41d8-81ca-442412a8396a','491739366502','Sayın SARA CASTRO, 371287728 nolu gönderiniz 10344 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371287728\n\nDear SARA CASTRO, your shipment with 371287728 was delivered to you with the delivery code 10344. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371287728\n\n\nBICARGO','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('d6cac6fe-185d-48be-a310-43c980053d60','905079358213','SSH ALPEREN DÜZENLİ  adlı müşterinizin 745863981 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('d6cb36f5-c6e2-430d-aa3f-100304f922b6','4917680898294','Sayın ESRA KAYA, 437514624 nolu gönderiniz 4726 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437514624\n\nDear ESRA KAYA, your shipment with 437514624 was delivered to you with the delivery code 4726. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437514624\n\n\nBICARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('d6cd93f6-842b-4069-a3f4-a87d289227bc','4917670281614','371434188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3421 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371434188\n\nYour shipment with the number 371434188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3421. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371434188\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('d6cdfcb3-d72e-45a7-8f62-1cbbaefa162c','4917682107795','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('d6d1cd99-a2a5-402a-a3f1-e83ed0061a04','905301534568','HALİL İBRAHİM AKALIN  adlı müşterinizin 1936694 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','18160de0-d8d5-49f6-b6ca-04227578b93d',NULL),
('d6d6fb7c-47bf-4e40-b1c1-4f4525bd5721','905079358213','Sayın yetkili; NUR YILDIRIM adlı müşterinize 745278745 nolu gönderinizin PİER KARYOLA + 2 KOMODİN  ürünü 11 parça halinde MOBİLİSTAN adresinizden 22.09.2025 18:11:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26dac25b-c3a4-48f3-a7c9-711fda2dbf20',NULL),
('d6dabd7e-38da-4f1e-8853-1cb0f468e58d','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin MERMER DESEN MASA + İKİLİ SEHPA  ürünü 5 parça halinde GÜMÜŞ MASA adresinizden 12.05.2025 16:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('d6dd039d-7800-42e4-9f1c-ee2a7ba496f1','4915206102072','Sayın , 454592303 nolu gönderiniz 7492 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/454592303\n\nDear , your shipment with 454592303 was delivered to you with the delivery code 7492. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/454592303\n\n\nBICARGO','1','b659a388-1c45-405b-a478-fa4eb2398376',NULL),
('d6e56bc5-11ea-4749-bb0f-39672c7ecd29','330620164241','Sayın TKHİLİ NAİDA, 982318245 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982318245\n\nDear TKHİLİ NAİDA, your shipment with 982318245 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982318245\n\nBICARGO','1','226e99fa-2222-409d-9c22-ab0639c760f9',NULL),
('d6e5d928-f45a-4e8e-8ca0-61cace2535e6','5388999874','Sayın CEMAL YALÇIN SSH, 319388100 nolu gönderiniz 1499 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319388100\n\nDear CEMAL YALÇIN SSH, your shipment with 319388100 was delivered to you with the delivery code 1499. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319388100\n\n\nBICARGO','2','0f3eafe9-4b1f-4bf0-bb2f-49044c707b4a',NULL),
('d6ed596c-9dfe-418f-b70d-75da2c74e051','4915201348727','Sayın NURSEL ALİOĞLU, 221272241 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221272241\n\nDear NURSEL ALİOĞLU, your shipment with 221272241 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221272241\n\nBICARGO','1','3fc65322-0e5b-4725-b433-ff14b8fed4c8',NULL),
('d6efaf9f-b3c8-4e45-8406-568661458b13','905304259202','Sayın yetkili; EMİN EKRAMOĞLU adlı müşterinize 478337610 nolu gönderinizin ŞİFONYER AYNASI ürünü 1 parça halinde HGO-KİRPİ GENÇ ODASI adresinizden 13.05.2025 16:28:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('d6f0a52c-30ac-4a6f-8a06-7becfb933207','4917634145313','Sayın MURAT BALTACI(K), 644762741 nolu gönderiniz 3327 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644762741\n\nDear MURAT BALTACI(K), your shipment with 644762741 was delivered to you with the delivery code 3327. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644762741\n\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('d6f25a3f-0a75-49b0-9d9e-a81157245a12','905335708965','WALLA DİAB adlı müşterinizin 735718998 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL),
('d6f43a8d-78fe-485b-a0e0-1a3a9699edd6','491748338255','Sayın ÖZGÜR YILDIRIM, 745302940 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745302940\n\nDear ÖZGÜR YILDIRIM, your shipment with 745302940 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745302940\n\nBICARGO','1','c5edc3e5-cedf-4c8b-b863-1e65c68438c6',NULL),
('d6f8bd2b-434b-4025-aaf5-41fe75ca5f2f','4917670513936','Sayın GİZEM YILDIRIM, 817500904 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817500904\n\nDear GİZEM YILDIRIM, your shipment with 817500904 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817500904\n\nBICARGO','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('d6fba5c3-7a62-411d-b99f-511e89df3b60','905532675926','Sayın yetkili; ESRA SAATÇİ adlı müşterinize 428905379 nolu gönderinizin zigon sehpa ürünü 1 parça halinde Fatura adresinizden 10.10.2025 16:42:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4eca9076-fb67-4509-9af7-f82fb79db731',NULL),
('d6fc7bf8-df41-495a-9c92-45f9e9fb855d','905394878216','Sayın yetkili; FUAT HUT adlı müşterinize 517903636 nolu gönderinizin Yemek Odası Takımı ürünü 11 parça halinde Fatura adresinizden 29.08.2025 15:27:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('d6fd940f-e53a-4e11-8428-3bc71ed2ce4d','905454259202','EMİN EKRAMOĞLU adlı müşterinizin 478337610 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('d70853f5-3cef-4ae6-bddb-669eddd2d9e4','3433434343344444','Sayın KREM KUTULARI, 223186784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223186784\n\nDear KREM KUTULARI, your shipment with 223186784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223186784\n\nBICARGO','2','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('d70af2db-5bba-4708-9241-011305a89f35','436609968921','437642214 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1112 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437642214\n\nYour shipment with the number 437642214 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1112. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437642214\n\nBICARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('d70c27e9-9502-406d-8fed-ef4c2000a116','905331602195','Sayın yetkili; RABİA NALKIRAN adlı müşterinize 221307786 nolu gönderinizin 90x180 cm siyah meşe masa ürünü 4 parça halinde MASAMİ MOBİLYA adresinizden 21.02.2025 11:38:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('d713d097-802e-40be-a30d-88524833ebaf','33605930464','Sayın mukungu kulemfuka, 449205900 nolu gönderiniz 6977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449205900\n\nDear mukungu kulemfuka, your shipment with 449205900 was delivered to you with the delivery code 6977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449205900\n\n\nBICARGO','1','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL),
('d71a4a04-ac25-43ef-92c5-254736132e56','905539740010','Sayın yetkili; MUHAMMET UCBAY adlı müşterinize 011428040 nolu gönderinizin döşek 2 baza  ürünü 3 parça halinde döşek adresinizden 07.10.2025 14:28:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('d71f8bf8-781f-46a6-91e6-392a1b35f0ed','905421855834','Sayın yetkili; MARİANE SARKİS adlı müşterinize 338426911 nolu gönderinizin Milano Koltuk Takımı (3+1) ürünü 2 parça halinde Brezza Sofa adresinizden 26.02.2025 10:03:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5d3f012b-7248-479f-97ec-c01599311f5c',NULL),
('d7204458-d086-4ad1-b076-93e9a052940e','905079358213','EMİR ASLANOĞLU adlı müşterinizin 745747559 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4f1e9e45-fd05-4b73-b176-afd047965ff2',NULL),
('d72f0e78-43c5-4a24-8cf2-91620ecdf2f0','905368336516','Sayın yetkili; NURAY DURAN adlı müşterinize 515261200 nolu gönderinizin MASA SANDALYE ORTA SEHPA ürünü 10 parça halinde masami adresinizden 09.09.2025 18:41:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fbf1995f-2086-4c7e-b569-f8b57a07eadb',NULL),
('d734267c-98c8-4a82-bba5-6c4ef592cf5e','491776418748','478472384 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478472384\n\nYour shipment with the number 478472384 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478472384\n\nBICARGO','1','7f855c7f-0b0b-4ad0-be73-f19332cbf660',NULL),
('d737eb8b-617c-44d5-a4aa-1c92fe0e6050','905428209234','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin İCON DOLAP / KARYOLA / 2 KOMODİN ürünü 12 parça halinde ROİS adresinizden 22.09.2025 14:30:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('d7381cdc-8ac5-4ac4-83bb-e2113e024652','33652889169','Sayın YAKUP KOÇOĞLU, 910778068 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910778068\n\nDear YAKUP KOÇOĞLU, your shipment with 910778068 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910778068\n\nBICARGO','1','6de127b7-5d6f-49c5-bd23-1ab403d220de',NULL),
('d73f2417-4b83-4e6b-8f34-227346edda8e','033789094109','Sayın FATMA KURT ÇAKIR, 734936220 nolu gönderiniz 6962 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734936220\n\nDear FATMA KURT ÇAKIR, your shipment with 734936220 was delivered to you with the delivery code 6962. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734936220\n\n\nBICARGO','2','34e0270e-97b8-4007-bdff-03282449c33a',NULL),
('d7403055-12cd-49d7-bd8b-64f52996fa17','5325000478','Sayın aaaaaaa BBBBBBBB, 19.01.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 8217210\nŞifre : 8217210\n			\nBİCARGO','1',NULL,'82f1d7bf-2100-48db-928f-49720faaff90'),
('d7426575-9cb2-4293-b1b6-b5e8a9c1a528','41794334443','Sayın donya bazaz, 982692076 nolu gönderiniz 5926 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982692076\n\nDear donya bazaz, your shipment with 982692076 was delivered to you with the delivery code 5926. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982692076\n\n\nBICARGO','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('d74e3c05-44ea-421f-819f-61d6501e2dcf','905350617509','ISMAİL REMMO adlı müşterinizin 613813844 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('d74e4c5d-15e9-47d0-b5e7-e06501b25a73','330659794019','982834531 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9084 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982834531\n\nYour shipment with the number 982834531 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9084. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982834531\n\nBICARGO','1','f59e89d5-cc6e-4d5f-8394-432af9b9c0b2',NULL),
('d7525544-0210-4743-94f3-0d1a2a85486d','905539740010','Sayın yetkili; YASEMİN  adlı müşterinize 011894235 nolu gönderinizin köşe ürünü 3 parça halinde kaan  adresinizden 18.07.2025 15:35:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62738f81-bb34-4a26-b713-b7972c5a1fb5',NULL),
('d756a1ff-a321-4944-b310-ca63e501de1d','41795825997','126561228 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5379 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126561228\n\nYour shipment with the number 126561228 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5379. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126561228\n\nBICARGO','1','a7ceae08-20bd-4e39-8c9a-4d086845bcaa',NULL),
('d7573846-fe9b-49a0-adda-05c46e7a8865','905336367828','Sayın yetkili; SELAMAWİT ESTİFANOS  adlı müşterinize 982495052 nolu gönderinizin Dresuar ürünü 1 parça halinde Fatura adresinizden 21.01.2025 10:58:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('d75759bb-fe5f-453f-9ecc-85e2a96a03c4','491578706465','Sayın BERKAN AĞIRMAN, 910899167 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910899167\n\nDear BERKAN AĞIRMAN, your shipment with 910899167 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910899167\n\nBICARGO','2','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('d75d97f7-ea30-48b0-b4aa-34ace08a8d21','436603406293','Sayın yetkili; MEHMET COPUR adlı müşterinize 675644991 nolu gönderinizin KOLTUK ürünü 10 parça halinde SOFA16 adresinizden 21.08.2025 17:13:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','48ff80ab-53c7-4a25-ba1e-303a3d7073d1',NULL),
('d75ddb2d-01ee-43c5-b0f5-7c94d8f12c9c','905078062550','Sayın yetkili; DAVUT BİNGÖL adlı müşterinize 598530881 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 14.08.2025 15:06:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('d75ea920-46bb-411a-bfba-11e7777dbff6','4915752861277','644564440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3110 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644564440\n\nYour shipment with the number 644564440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3110. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644564440\n\nBICARGO','1','ac733c82-d892-4d52-ad57-605808af235f',NULL),
('d75edee5-b555-4349-ac7b-ba57a24017ce','4560523452','Sayın SİHAM MAHMOUD, 598280715 nolu gönderiniz 2686 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598280715\n\nDear SİHAM MAHMOUD, your shipment with 598280715 was delivered to you with the delivery code 2686. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598280715\n\n\nBICARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('d767b675-a36a-4e8c-9ee5-cdbaf68a0d56','33782835819','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('d76986f9-9be7-452c-ac95-c7884b7f6dc6','905517075149','FAHRETTİN AKISKA adlı müşterinizin 478339664 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('d7757a7b-75cb-414a-bbe3-313ac6659821','4915906493452','Sayın EMEL ALATAŞ, 43789661 nolu gönderiniz 4820 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43789661\n\nDear EMEL ALATAŞ, your shipment with 43789661 was delivered to you with the delivery code 4820. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43789661\n\n\nBICARGO','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('d775e0f2-0632-4a2d-8ca6-736dc5cdec57','31638732101','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','9da5d3b0-f88e-4c15-a503-00d3fecd11b9',NULL),
('d77859d3-dfd7-4feb-b427-92aa2a097ae0','905335511664','MEHMET ORHAN adlı müşterinizin 371122828 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f478ae42-a366-4d1f-a16f-c78bdf279680',NULL),
('d779ed4f-ab33-47d8-b477-91cd66aa655c','436601503958','Sayın YUSUF DURSUN, 501668492 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501668492\n\nDear YUSUF DURSUN, your shipment with 501668492 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501668492\n\nBICARGO','1','df272a39-1da5-45c1-8cc4-f06c8c993887',NULL),
('d77b6952-c1ee-4685-9c21-70f2f77f6217','33753661602','Sayın YASMİNE , 982824242 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982824242\n\nDear YASMİNE , your shipment with 982824242 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982824242\n\nBICARGO','1','1fa393a0-6e5c-4c85-ba8f-0b92d38af36e',NULL),
('d77d4305-72d4-4342-8794-153dc470ee44','5354954215','Sayın GÜLSÜM ÖZBAY DÜZGÜN, 910825747 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910825747\n\nDear GÜLSÜM ÖZBAY DÜZGÜN, your shipment with 910825747 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910825747\n\nBICARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('d77d9745-9d26-4bf8-bead-23060bcfc323','4915560755375','Sayın EMRE YILMAZ, 745884226 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745884226\n\nDear EMRE YILMAZ, your shipment with 745884226 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745884226\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('d77f8b64-7330-4ef3-8acc-95c4b401e9c1','905517075149','AYSUN ELİBÜYÜK adlı müşterinizin 478273603 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('d787568f-2f0d-408b-9333-dd10c6253e40','905079358213','SÜVEYLA TARHAN adlı müşterinizin 745906539 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('d7921ede-f094-430b-89bd-e4882f787320','33675154529','455411696 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10459 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455411696\n\nYour shipment with the number 455411696 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10459. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455411696\n\nBICARGO','1','7a6b4261-2f63-460f-b0ad-3b61cd0b29e6',NULL),
('d798ae67-bd98-474d-8d68-26c9241bf5ab','905331602195','TİMUÇİN SAYIN adlı müşterinizin 221786435 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('d79cfb49-8b51-4445-a2d7-f76336fad659','33629351821','Sayın METİN CAMGÖZ, 734957360 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734957360\n\nDear METİN CAMGÖZ, your shipment with 734957360 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734957360\n\nBICARGO','1',NULL,NULL),
('d7aa2b13-49b5-438f-b41c-64b514488414','905461661672','BURHAN BAYRAKTAR adlı müşterinizin 644758410 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('d7b4dc27-4ce0-46e1-b80b-f9f52d0b3d5a','491743355024','644389756 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1864 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644389756\n\nYour shipment with the number 644389756 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1864. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644389756\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('d7c086c5-b50e-406f-8bcd-a47b61d6b873','33753794689','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('d7c22abe-69ed-413f-881f-7252bb928b59','4306764892040','Sayın Mirkan cem, 315164103 nolu gönderiniz 6343 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/315164103\n\nDear Mirkan cem, your shipment with 315164103 was delivered to you with the delivery code 6343. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/315164103\n\n\nBICARGO','1','36f25521-b01c-4589-be32-1479a5a1b79e',NULL),
('d7cd35a6-2b9f-4f11-aef4-1611ad39edc8','33745279519','Sayın CHERİET NAJET, 221287992 nolu gönderiniz 7274 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221287992\n\nDear CHERİET NAJET, your shipment with 221287992 was delivered to you with the delivery code 7274. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221287992\n\n\nBICARGO','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('d7ceb511-5d43-40cd-9005-ab73fa7553a3','905336367828','Sayın yetkili; SAİMİR BALLA  adlı müşterinize 982431907 nolu gönderinizin Koltuk takımı  ürünü 3 parça halinde Fatura adresinizden 06.03.2025 11:38:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f405c6bf-1a7a-48e5-a71e-c0dba9fb0f45',NULL),
('d7daba04-2812-4207-8461-d2a74f63acb6','436601407495','Sayın ESMA GÜNVAR, 808396862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808396862\n\nDear ESMA GÜNVAR, your shipment with 808396862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808396862\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('d7dbe148-bd10-4451-8afd-de309224db18','491783142283','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','dc0fa60f-3b68-4618-a8b2-c1e9cb9f89b0',NULL),
('d7dd8f20-028c-4db7-ac0f-809be11a31ef','491632040337','598157006 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7649 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598157006\n\nYour shipment with the number 598157006 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7649. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598157006\n\nBICARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('d7de58b3-fcf5-4876-88ee-76ef4b04dc2b','33660468423','221210071 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9123 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221210071\n\nYour shipment with the number 221210071 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9123. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221210071\n\nBICARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('d7e82d62-7052-4948-b512-7010c927ffee','492315800773','Sayın NUSRET GÜNEŞ , 501163993 nolu gönderiniz 6294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501163993\n\nDear NUSRET GÜNEŞ , your shipment with 501163993 was delivered to you with the delivery code 6294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501163993\n\n\nBICARGO','2','e3943ece-5f39-454b-89e6-213b14b5658f',NULL),
('d7e83f15-0e7b-4ba9-88aa-1a93954e5620','905428209234','Sayın yetkili; ARZU ÜNLÜ adlı müşterinize 319515461 nolu gönderinizin MİLANO MASA ÜSTÜ ürünü 1 parça halinde Fatura adresinizden 31.07.2025 17:55:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('d7e96699-3ca5-4ab7-92f4-a53a69467b5b','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin DUVA ROMA KOLTUK TAKIMI 3+3+1+1 ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d7f7800a-f8b9-4495-8abd-fadcd0a12858','905301592882','SAMED DERE adlı müşterinizin 910717262 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('d7fa11f9-fedf-459b-9dca-a1d15e8c4d13','436763810050','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('d7fae34b-2911-4d7e-adf9-c324ae6f0983','905461661672','ERHAN ÇEKİÇ adlı müşterinizin 644445996 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('d809fbe0-a4aa-4b1a-b8f7-fad3a85bb073','316389917702','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','2','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('d8105e2c-5812-4c33-beb4-6417b5c5fe75','905350617509','ASUDE FİLİZER adlı müşterinizin 613786429 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b035d749-8b47-4cef-bb6f-fb97f2480a4a',NULL),
('d81371d5-7865-48f9-b933-64bfebf6f6ce','436509938686','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('d817e27e-c206-4ed6-8beb-b3968949d5eb','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin DELUXE YATAK 100X200 2 ADET  ürünü 2 parça halinde Fatura adresinizden 06.05.2025 12:56:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('d81bd0f9-74ad-4acd-a09c-9dc9aaccd800','354646466464444','Sayın SUMMSTOFF IMKEGENOSSENSCHAFT, 248243194 nolu gönderiniz 5736 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248243194\n\nDear SUMMSTOFF IMKEGENOSSENSCHAFT, your shipment with 248243194 was delivered to you with the delivery code 5736. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248243194\n\n\nBICARGO','2','8839e4d9-61c1-44f2-8680-b2634a2b4923',NULL),
('d81c30be-3920-40a3-a4d0-dd56487d13a0','410791552484','Sayın SELAMAWİT ESTİFANOS , 982495052 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982495052\n\nDear SELAMAWİT ESTİFANOS , your shipment with 982495052 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982495052\n\nBICARGO','1','62e0da69-36f4-4e9d-bc8d-8d5b91fc96f0',NULL),
('d82315e1-250e-45b3-b77b-9adac9d46c1d','330750840793','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','face1a09-2be5-4ea9-b295-ce5813e481fb',NULL),
('d8393392-66be-4097-8022-a7bab536b420','905054335859','Sayın yetkili; YUSUF KAYA - SSH adlı müşterinize 501396873 nolu gönderinizin LOGİSTİGE BIRAKILDI ürünü 1 parça halinde Fatura adresinizden 25.03.2025 12:51:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a5420fd-ce6a-457f-b63e-64e4ffb57c77',NULL),
('d83c09ac-88ac-4d58-95e9-95b6d58f0cf5','491723174389','Sayın SEVİM KARATEKE , 613528305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613528305\n\nDear SEVİM KARATEKE , your shipment with 613528305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613528305\n\nBICARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('d83d7d29-7f12-4fd3-868e-c1cbc3019504','905461661672','SELİN ÖZALP adlı müşterinizin 644615727 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('d84051c9-ee15-447c-8b8b-ccd54a1e2481','33629412067','Sayın Meliha yüksek, 319458159 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319458159\n\nDear Meliha yüksek, your shipment with 319458159 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319458159\n\nBICARGO','1','29175f89-ad14-442c-b1fb-71c9053ba227',NULL),
('d845671d-1c28-4baf-82a1-2f27b7e40604','33744210474','Sayın ATİLLA POLAT, 478502129 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478502129\n\nDear ATİLLA POLAT, your shipment with 478502129 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478502129\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('d8516d9a-5885-4876-8f0d-e55180bcb10f','905539740010','Sayın yetkili; ALMANYA HÜLYA ŞENEL  adlı müşterinize 01169597 nolu gönderinizin köşe  ürünü 4 parça halinde KARYOLA adresinizden 15.10.2025 12:34:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','93386b76-7f5f-4ccd-845c-f624d343a1ea',NULL),
('d851fc25-f221-463b-a201-522de434e428','4917624864505','910375036 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1174 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910375036\n\nYour shipment with the number 910375036 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1174. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910375036\n\nBICARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('d8580033-9926-40d5-8046-1436c16bb46d','905530309780','WALİ MAADAN adlı müşterinizin 418857351 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3be4ecd7-d378-4dec-aa13-23a899f8bbeb',NULL),
('d858870a-2903-4708-a0b0-047a964fd9ac','33602366647','Sayın SEZER HATUN, 745249081 nolu gönderiniz 5837 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745249081\n\nDear SEZER HATUN, your shipment with 745249081 was delivered to you with the delivery code 5837. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745249081\n\n\nBICARGO','1','0523ba39-5d0b-4eca-8a21-9b0b0f843b71',NULL),
('d859a550-6c5e-4e35-87f2-4446af4d3896','905075277637','Sayın yetkili; İBRAHİM YILDIRIM adlı müşterinize 745405587 nolu gönderinizin İCON KONSOL MASA SANDALYE  ürünü 8 parça halinde ROIS adresinizden 16.05.2025 14:41:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('d86429b0-39ea-4fee-80a8-a68fe3882e65','905451571652','Sayın yetkili; HUSSEİN NAKAL adlı müşterinize 531606130 nolu gönderinizin TRAVERTEN MASA ürünü 2 parça halinde MASAMİ adresinizden 14.10.2025 17:37:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('d8658825-9111-417c-98a8-322dbdc7bd5b','905336367828','Sayın yetkili; OMARİ EMAL  adlı müşterinize 982726615 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 11.03.2025 16:52:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e04acec-f940-4ce2-9a36-44b825987e05',NULL),
('d8688e55-55ae-449f-ad2f-fdd52020cd04','2325643653447647','Sayın NFS GRUNDTVİGS, 655644248 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/655644248\n\nDear NFS GRUNDTVİGS, your shipment with 655644248 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/655644248\n\nBICARGO','2','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL),
('d8692001-6f7a-4a91-aaa3-103af74f5e74','4920350083648','223249369 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2989 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223249369\n\nYour shipment with the number 223249369 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2989. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223249369\n\nBICARGO','2','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL),
('d86e7ea6-29fe-4ac5-9726-9472b72cfa44','491786788734','Sayın GİZEM TIRPAN, 37140435 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37140435\n\nDear GİZEM TIRPAN, your shipment with 37140435 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37140435\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('d871fed7-12dd-47f0-8830-9caf74882edf','905301592882','NESLİHAN KÖSEM  adlı müşterinizin 910405441 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL),
('d877aa30-0cd0-4d67-b2fd-74b65518a62b','905392130416','Sayın UĞUR  ACAR, 27.08.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2596345\nŞifre : 2596345\n			\nBİCARGO','1',NULL,'2c596345-3f37-4571-9d62-83b8b96993d4'),
('d878eac3-937f-454e-894f-e1ba50a41e61','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin SANDALYE ürünü 6 parça halinde BALİ SANDALYE adresinizden 10.03.2025 13:51:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('d87d4b59-33d4-47f5-8f0f-f9122278e0ea','491625752306','Sayın KEYVAN GHADİMİ, 478363734 nolu gönderiniz 6454 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478363734\n\nDear KEYVAN GHADİMİ, your shipment with 478363734 was delivered to you with the delivery code 6454. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478363734\n\n\nBICARGO','1','3dc5e146-3fe8-432e-96b4-cb8472b9343c',NULL),
('d885b5a7-d302-4acc-a092-405df8cb078c','905059175469','ERKAN BAYRAK adlı müşterinizin 428222834 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','035c96f6-6c26-44ed-a788-5eae403c09a6',NULL),
('d8881938-d782-4d37-be08-27599f3e13c7','4917676733022','Sayın MERİÇ KARACAN , 570417524 nolu gönderiniz 6418 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/570417524\n\nDear MERİÇ KARACAN , your shipment with 570417524 was delivered to you with the delivery code 6418. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/570417524\n\n\nBICARGO','1','7fb143cf-43fb-404b-999f-52ebf5c4af6c',NULL),
('d890a8f5-2fab-47a5-9388-8a9350771179','905517075149','KAZIM KURUCU adlı müşterinizin 478335843 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('d8927814-c42e-4f0f-aa37-e4f9d47e4a6c','905331602195','MUKKADIN IBRAHIM adlı müşterinizin 221941793 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('d89404e8-73d3-4ed6-8613-3d1215f4070a','905331602195','YEŞİM TOPKIRAN adlı müşterinizin 221960678 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6dace6b2-0bd5-4cc9-b5e5-acee6cd31a3e',NULL),
('d899665f-de23-4ada-8ee9-25bd116b4952','905301592882','VAHİT FISTIKÇI adlı müşterinizin 910950688 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','5e9395d5-2dff-41a1-b7d1-d080344fbc2b',NULL),
('d8a3d0fe-0ad3-4ed8-9d92-6983926cd600','905325000478','AKRAH ABDULNASSER adlı müşterinizin 412968011 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL),
('d8a795e8-0dfc-479c-b294-f562d6c66bf1','905336367828','Ajroski ajsun adlı müşterinizin 98285799 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('d8adbf5d-6732-43c8-aeb8-cbf8c1581fbb','905331602195','Sayın yetkili; MÜCAHİD GÜZEL adlı müşterinize 22162472 nolu gönderinizin BALAT BAR SANDALYE ürünü 3 parça halinde ALP SANDALYE adresinizden 02.01.2025 17:15:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('d8c0ed13-f0c2-4b17-8ca1-f320fc9a0110','905079358213','İBRAHİM BAĞCI adlı müşterinizin 745197344 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a2d259a0-8a03-4763-951b-98fe714623ce',NULL),
('d8c59ad1-0002-475c-8629-24e9a5191586','905075277637','ALİ KARADUMAN adlı müşterinizin 7454878 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea2a970f-57cf-4bbe-a300-250a83e0b8ad',NULL),
('d8cbbaea-35a9-40f5-bdc9-f8f15d1f74e3','9054439559150','Sayın yetkili; NECMETTİN BEYAZİT adlı müşterinize 614601595 nolu gönderinizin BAMBİ BLACKSAND BASLIK 150 CM,BAMBİ BLACKSAND BAZA 150x200 VE BAMBİ BLACKSAND YATAK 150x200 ürünü 4 parça halinde Fatura adresinizden 22.10.2025 12:05:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6ec88ca1-f52a-40e6-9c14-f95cfc64427a',NULL),
('d8ce04e3-7a1b-4a51-8bfe-cdd198cf9a89','41794639037','598320188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10670 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598320188\n\nYour shipment with the number 598320188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10670. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598320188\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('d8ce8df2-6bfc-4965-8bd1-16db923931e2','905349208933','Sayın yetkili; MEDİNE ÖKDEN adlı müşterinize 127639932 nolu gönderinizin Koltuk ürünü 6 parça halinde 3ARDEKO adresinizden 05.02.2025 11:26:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('d8d08503-030f-4e89-af72-2553cd9d0429','905368336516','VOLKAN CELİK adlı müşterinizin 515785688 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('d8d0a1a9-89ce-4b95-ab19-2d63b2e4500e','4917620747376','Sayın  MUSTAFA KHALİFEH, 081982015 nolu gönderiniz 6800 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/081982015\n\nDear  MUSTAFA KHALİFEH, your shipment with 081982015 was delivered to you with the delivery code 6800. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/081982015\n\n\nBICARGO','1','1ee5a386-3625-40ef-8fa2-25fe7d75616b',NULL),
('d8d3584c-d976-4d7d-a451-dd30d218acab','111111111111','268418662 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2061 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/268418662\n\nYour shipment with the number 268418662 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2061. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/268418662\n\nBICARGO','2','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('d8d3f7c5-63b6-4649-86f0-d61fc9ed8bfa','31686174189','750926872 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8708 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750926872\n\nYour shipment with the number 750926872 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8708. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750926872\n\nBICARGO','1','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL),
('d8d48cd6-fc53-46c9-88e7-0711b5a4f3c3','905461661672','SÜLEYMAN ATAR adlı müşterinizin 644653229 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('d8d63d05-7d98-44a8-a7fd-8c2fcf354809','436602444902','Sayın FADİME ERİMEZ, 598425779 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598425779\n\nDear FADİME ERİMEZ, your shipment with 598425779 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598425779\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('d8d6ac0a-8167-4657-9693-46e0b94fd435','33641568371','Sayın HASAN ULUSOY, 976819499 nolu gönderiniz 9152 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976819499\n\nDear HASAN ULUSOY, your shipment with 976819499 was delivered to you with the delivery code 9152. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976819499\n\n\nBICARGO','1','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL),
('d8d7c1eb-a36a-4a70-a6e8-fe92e77dc09e','33760179240','412838128 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10429 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412838128\n\nYour shipment with the number 412838128 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10429. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412838128\n\nBICARGO','1','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('d8d94c37-9122-4455-9ef0-5155971f31b5','491794959823','Sayın RECEP BEY, 858124295 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/858124295\n\nDear RECEP BEY, your shipment with 858124295 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/858124295\n\nBICARGO','1','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL),
('d8da6697-9136-40be-8dd1-0c93ec75f531','11111111111','Sayın KENAN SEKMEN , 01914447 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/01914447\n\nDear KENAN SEKMEN , your shipment with 01914447 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/01914447\n\nBICARGO','2','97182860-1f38-433b-b884-7944ccda1a30',NULL),
('d8de9e1f-2a2a-4f8c-b2dd-d81ef41c8ac8','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ (SSH) adlı müşterinize 221530805 nolu gönderinizin Balat sandalye ssh ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:19:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ba93047e-2113-4d72-8a99-44f3c9fe2b01',NULL),
('d8e2e2b3-a6bd-4668-9546-1f7eab85f98a','905542969953','Sayın TUĞBA YILMAZ, 428160643 nolu gönderiniz 7069 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428160643\n\nDear TUĞBA YILMAZ, your shipment with 428160643 was delivered to you with the delivery code 7069. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428160643\n\n\nBICARGO','1','0d464a57-d48d-4898-8ed5-05d911433d8e',NULL),
('d8e68f8c-a257-4655-b1fd-1a34c51bef01','905078062550','Sayın yetkili; SEYHAN GÜNDÜZ adlı müşterinize 598148104 nolu gönderinizin MÜŞTERİ BEKLETİYOR ürünü 1 parça halinde Fatura adresinizden 16.09.2025 16:04:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('d8e9e1c6-23ce-4ed9-b4fa-69d51bad30d9','33652910874','614458088 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6362 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614458088\n\nYour shipment with the number 614458088 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6362. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614458088\n\nBICARGO','1','c1cea88c-608d-4453-b63a-81ba0b909940',NULL),
('d8edd81e-f9d2-4c5f-9ace-5c4180ef047d','905075277637','SALİHA KURT adlı müşterinizin 745251111 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('d8efcec5-1b96-4b6c-8270-ba84d5aff626','491624296602','Sayın (K)HÜSAMETTİN CANBOLAT, 644469726 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644469726\n\nDear (K)HÜSAMETTİN CANBOLAT, your shipment with 644469726 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644469726\n\nBICARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('d8f00007-fa67-44d4-87b7-7ab3762a2c49','4917672357148','Sayın AYHAN KAHRAMAN, 91028874 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91028874\n\nDear AYHAN KAHRAMAN, your shipment with 91028874 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/91028874\n\nBICARGO','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('d8f06231-d5fa-499d-92b2-10a991c0a457','905301592882','İBRAHİM TURŞUCU		 adlı müşterinizin 910697257 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7f52958a-ccf0-400f-89e3-4730414f3b72',NULL),
('d8fb2d7c-70d1-4728-b3cd-e2042a48995f','905331602195','Sayın yetkili; MUHAMMED ÇETİN adlı müşterinize 221234413 nolu gönderinizin 90*190 TRAVERTEN AÇILIR MASA ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 27.03.2025 16:45:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('d8fe69d4-ae4a-4185-b9a4-064f84a8e4e3','905075277637','HALİDE ÖZAY adlı müşterinizin 745208965 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('d9015d90-d901-4ee4-a388-3e1a22e45c54','905356503956','AAAAAAAAAAA adlı müşterinizin 027517327 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL),
('d905741a-9439-49fe-b714-7c602d4be45a','905079358213','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER MASA + TV ALT  ürünü 8 parça halinde MOBİLİSTAN adresinizden 09.10.2025 11:21:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('d90a5d5d-ad85-4de5-a9cb-437bdeb3366a','491784598984','437649706 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5069 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649706\n\nYour shipment with the number 437649706 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5069. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437649706\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('d9101fb5-8a6a-4f13-8b1b-d859d4e1d742','06607038670','644985861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644985861\n\nYour shipment with the number 644985861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644985861\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('d9110828-046b-4cb1-9ce3-f3119cdd0608','4917657742944','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('d912a13b-6ba0-4213-a17d-bb6128089e12','905301592882','FURKAN YESARİ GÜVEN adlı müşterinizin 910995300 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('d9144d51-69ef-4149-a89d-5984e6f14132','905079047428','Sayın yetkili; MEHMET EMİN KARAGÜZEL adlı müşterinize 449665773 nolu gönderinizin Koltuk takımı 3-3-1 ürünü 4 parça halinde Fatura adresinizden 18.12.2024 14:07:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6cf3f92f-9e19-43ad-8e01-7bd5efbf4bb2',NULL),
('d91a3268-167a-4cac-b427-ee0e42d47472','905073106101','HATİCE GÜNGÖR adlı müşterinizin 465181388 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a2926116-d6cb-4f23-857e-b99221b6f59e',NULL),
('d91cfc00-59fe-41d6-8eec-163a1b1202d1','4917663466847','Sayın BURAK SARIKAYA, 745816946 nolu gönderiniz 1070 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745816946\n\nDear BURAK SARIKAYA, your shipment with 745816946 was delivered to you with the delivery code 1070. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745816946\n\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('d9256699-e191-428c-a81a-563fe3229bb6','491602272143','Sayın ERHAN ÇEKİÇ, 644445996 nolu gönderiniz 2843 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644445996\n\nDear ERHAN ÇEKİÇ, your shipment with 644445996 was delivered to you with the delivery code 2843. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644445996\n\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('d92a8799-05b1-4f42-983b-faf9123d4161','905078062550','İBRAHİM TÜRK adlı müşterinizin 598479723 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','5dbeb578-3815-46c4-8be9-34c6782e8dab',NULL),
('d932f611-7514-43c4-962f-80d4be6f3338','436766461961','Sayın HAFİZE BALİ, 371684650 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371684650\n\nDear HAFİZE BALİ, your shipment with 371684650 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371684650\n\nBICARGO','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('d9340399-3fa4-4cf5-a440-0728c6334fcf','4915731363686','Sayın MAJD KAMSHA, 745653378 nolu gönderiniz 5403 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745653378\n\nDear MAJD KAMSHA, your shipment with 745653378 was delivered to you with the delivery code 5403. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745653378\n\n\nBICARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('d9375a0f-3fff-400b-8a94-26d70aac3cf7','33651995967','Sayın DERYA KÖSE, 449208438 nolu gönderiniz 1114 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449208438\n\nDear DERYA KÖSE, your shipment with 449208438 was delivered to you with the delivery code 1114. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449208438\n\n\nBICARGO','1','3deaeffc-f7ae-4254-af05-4a37b20814a8',NULL),
('d9396af3-99ac-4a03-8c0f-10c12a972db8','491722552789','Sayın ASLIHAN GÜÇLÜ, 745554582 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745554582\n\nDear ASLIHAN GÜÇLÜ, your shipment with 745554582 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745554582\n\nBICARGO','1','b61ea9dc-9c68-4f58-9f62-cac2d5b97ca0',NULL),
('d93b3f2f-c410-48e3-ace1-782e0c4fdf31','905079358213','İBRAHİM YILDIRIM adlı müşterinizin 745405587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('d93ebc40-f618-4721-8ead-d355edaff27a','905079358213','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 08.08.2025 17:20:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('d94286cb-1b82-417e-8b86-407682ba3595','905335511664','Sayın yetkili; AYKUT KAYA adlı müşterinize 371660448 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 21.07.2025 10:34:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5a2c381-5ee4-4701-8431-c115c8a67cff',NULL),
('d9474cd3-eb84-4c2d-bbf8-e25d03d7b228','905079358213','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PETEK OVAL BERJER  ürünü 1 parça halinde Fatura adresinizden 29.08.2025 16:20:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('d94b8a80-f380-4c91-b903-24610f0f7793','4917670705129','Sayın ÜMİT ALBAYRAK, 644526832 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644526832\n\nDear ÜMİT ALBAYRAK, your shipment with 644526832 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644526832\n\nBICARGO','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('d95b1bf5-5b53-466e-a6b5-a0fdfef53f12','905075277637','Sayın yetkili; ELOUAZGHİ ANAİS  adlı müşterinize 745879253 nolu gönderinizin VODA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 08.08.2025 17:20:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a34f5acd-e7a0-4960-a2f6-754b4e35e40a',NULL),
('d963a873-67f8-4585-9692-d909bffebf5b','905335708965','NASTENA IROBE-POŞETLER adlı müşterinizin 248539327 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','3753ec0d-793c-43d2-920b-d39827ee0154',NULL),
('d96fa84e-d657-4872-88b3-658821b089ae','436763366858','Sayın İSMAİL ÖZAY , 745423192 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745423192\n\nDear İSMAİL ÖZAY , your shipment with 745423192 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745423192\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('d974235d-81ff-46ee-9f03-4c9d72e82f27','41783198799','Sayın CAFER BEY, 248630618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248630618\n\nDear CAFER BEY, your shipment with 248630618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248630618\n\nBICARGO','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('d97618bf-f2f4-4882-85c0-c20661c47876','4917641085113','Sayın GÜLSEREN ŞAHİN, 371494792 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371494792\n\nDear GÜLSEREN ŞAHİN, your shipment with 371494792 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371494792\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('d9769fc1-db27-4df2-8ece-03826de0deeb','905451571652','IMAN JAWİD adlı müşterinizin 531245816 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('d97c04bf-337f-4a22-8394-943f1b4a1ae0','436763232174','675890872 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4185 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675890872\n\nYour shipment with the number 675890872 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4185. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675890872\n\nBICARGO','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('d97c11c1-ecb0-456b-bdf7-6e8bbdf3fade','0744884261','Sayın ERDEL SİBEL SSH, 644426448 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644426448\n\nDear ERDEL SİBEL SSH, your shipment with 644426448 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644426448\n\nBICARGO','2','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('d97f4e93-2ce7-4546-9ca8-adc0a6e4cdda','905073106101','Sayın yetkili; İBRAHİM AKIN adlı müşterinize 465524926 nolu gönderinizin KOLTUK ürünü 6 parça halinde MASS SOFA adresinizden 18.08.2025 10:40:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('d981e6bb-a6d8-4835-8531-8a066a604456','41798943300','İletişim \n					Halil Bey (Şoför) :+905541100849','1','50065a32-533f-412d-badc-5149cb99bf62',NULL),
('d984216e-66d4-4ecb-99d0-15f40d06bfc1','491742731905','Sayın EROL ERDOĞAN, 151236689 nolu gönderiniz 9440 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/151236689\n\nDear EROL ERDOĞAN, your shipment with 151236689 was delivered to you with the delivery code 9440. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/151236689\n\n\nBICARGO','1','ffa71db9-462e-45b6-8298-ff1efd9c1940',NULL),
('d9881eed-2173-4470-b32e-f5207dc3016b','905461661672','BERNARD BEJİQ adlı müşterinizin 644714329 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','74637af9-7a7a-405b-a482-73059c1633c6',NULL),
('d98a6604-35fc-4d0f-a3ac-5191aa45db26','905078062550','Sayın yetkili; VELİ ŞAHİN adlı müşterinize 598168850 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde ELİTİS HOME adresinizden 08.10.2025 12:16:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('d98f52fb-93c9-4a43-bbec-2ce3b2e5add2','491636378552','613373885 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7661 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613373885\n\nYour shipment with the number 613373885 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7661. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613373885\n\nBICARGO','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('d9905286-0bfe-4145-8c64-fbfdac96cb1a','905352129940','FATEMEH HOSSAİNİ adlı müşterinizin 112787965 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','de0c9db6-1fef-4c46-a93e-6a2c8ee6458c',NULL),
('d9915f58-eb7e-4629-b01f-7aafaf5695b9','4368181273062','43758285 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4867 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43758285\n\nYour shipment with the number 43758285 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4867. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43758285\n\nBICARGO','1','9609be73-cca2-458a-aba2-d4fc54168866',NULL),
('d991723c-8d23-493e-97da-17a817030c47','33647271942','478958320 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478958320\n\nYour shipment with the number 478958320 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478958320\n\nBICARGO','1','a53b1986-8cad-4d57-b0e3-756673c6e406',NULL),
('d9925888-2cc3-4aa2-a5e1-a6460f527f78','491784897423','Sayın BESTENUR ÖZKAYA SSH, 896998229 nolu gönderiniz 3422 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896998229\n\nDear BESTENUR ÖZKAYA SSH, your shipment with 896998229 was delivered to you with the delivery code 3422. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896998229\n\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('d9953dcc-55e7-4109-8240-d607a04c4473','436603002938','Sayın METİN EROL, 437306380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437306380\n\nDear METİN EROL, your shipment with 437306380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437306380\n\nBICARGO','1','cc35ba49-88e8-4dfb-96a9-b8e77e535bd8',NULL),
('d999a092-8bdf-4381-b08f-6d7f8410b839','905442774505','AHMET GÜVEN adlı müşterinizin 657832584 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('d99bdc22-fb92-4e3f-a2a6-64eb16177dd9','905333221039','FERHAT  adlı müşterinizin 750728735 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','1c1071fa-bd95-40d4-8ed1-ab7e019add96',NULL),
('d9a1946f-66e5-4ee4-af07-8e2c8f6aa787','32486993128','Sayın METİN MOLA, 428693052 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428693052\n\nDear METİN MOLA, your shipment with 428693052 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428693052\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('d9a99fd7-5056-44ac-b082-4a3810e0dff3','4915785563559','371186967 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371186967\n\nYour shipment with the number 371186967 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371186967\n\nBICARGO','1','8d2106dc-0692-4d32-a05c-11091d0b412b',NULL),
('d9aca2bd-c33a-4b9a-8ec4-157b1f57866b','4917683226592','Sayın ESMA MERT, 371282604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371282604\n\nDear ESMA MERT, your shipment with 371282604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371282604\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('d9b00d02-f152-4636-b2f7-ac86036b5180','491793933332','437626008 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3332 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437626008\n\nYour shipment with the number 437626008 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3332. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437626008\n\nBICARGO','1','bf9be925-842f-4ee7-ad0e-8e73349c83f4',NULL),
('d9b168e7-9d81-4682-9ba8-fb44a5f9de18','491639801426','Sayın EURO MOBEL, 107869996 nolu gönderiniz 1706 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/107869996\n\nDear EURO MOBEL, your shipment with 107869996 was delivered to you with the delivery code 1706. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/107869996\n\n\nBICARGO','1','a87c1195-4073-4758-919d-0b3055e5f5d6',NULL),
('d9b2d477-167b-4aeb-b131-94c41d1ffa21','905335511664','Sayın yetkili; KADİR ÜZER adlı müşterinize 371495147 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 17.09.2025 13:56:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('d9b82d33-5a31-4d8d-95be-5e97136f4f4e','491781789912','Sayın POLAT İSTİKRAR , 412596038 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412596038\n\nDear POLAT İSTİKRAR , your shipment with 412596038 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412596038\n\nBICARGO','1','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL),
('d9b967de-472b-4fc9-b481-6608963f9043','905461661672','Sayın yetkili; GÜLŞEN YİRMİBEŞOĞLU adlı müşterinize 644563405 nolu gönderinizin BAR SANDALYESİ ürünü 1 parça halinde ELAKSA SANDALYE adresinizden 10.10.2025 10:47:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526de5bb-5478-4ac9-aaab-26c962aa787b',NULL),
('d9bb8ab0-7077-48dc-b158-07a245ab5025','33652652450','478205168 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1158 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478205168\n\nYour shipment with the number 478205168 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1158. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478205168\n\nBICARGO','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('d9c0581d-eeda-46cf-a213-51a8986c4aa3','0744884261','Sayın ERDEL SİBEL SSH, 644426448 nolu gönderiniz 7232 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644426448\n\nDear ERDEL SİBEL SSH, your shipment with 644426448 was delivered to you with the delivery code 7232. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644426448\n\n\nBICARGO','2','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('d9c4b143-369e-4686-8c65-9ed904a3ddb2','33635914929','Sayın GÜLÜZAR KECKİN, 745276257 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745276257\n\nDear GÜLÜZAR KECKİN, your shipment with 745276257 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745276257\n\nBICARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('d9c67c77-c9bd-4358-9e85-bcf5e6c495bb','905331602195','MEHMET ALİ YİĞİT adlı müşterinizin 221441605 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','39bff5ea-6368-4a28-b3a2-8e798294a348',NULL),
('d9cb5f69-f59e-479f-b11b-d5edd8877d8e','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA 2 KAPILI ÇEKMECELİ DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('d9ce0c55-e58d-4609-bdfa-a4092a54ff18','4915757299057','598492066 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2548 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598492066\n\nYour shipment with the number 598492066 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2548. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598492066\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('d9d2c0f8-5df9-471d-9af7-323e3ac26f50','905454259202','BELKISA KAPLAN adlı müşterinizin 478428380 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('d9d98113-0aff-467d-a9ad-48f4b82df59a','33767885681','Sayın ZERDOUN SALOME, 437573248 nolu gönderiniz 8145 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437573248\n\nDear ZERDOUN SALOME, your shipment with 437573248 was delivered to you with the delivery code 8145. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437573248\n\n\nBICARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('d9dc14be-e9f5-4ae4-8d36-c7b0b3ec5341','33689770031','Sayın KENAN KARAKAYA, 478805224 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478805224\n\nDear KENAN KARAKAYA, your shipment with 478805224 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478805224\n\nBICARGO','1','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL),
('d9e3f63b-9179-4054-9350-6d34c2e73455','905078062550','Sayın yetkili; TUĞÇE ÖZKAYA adlı müşterinize 598587609 nolu gönderinizin masa ürünü 3 parça halinde RİO FATİH adresinizden 29.07.2025 17:08:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ad7ddb4-76f9-481c-8d5d-2018e9c8e712',NULL),
('d9e4b933-fdc2-4c39-8a18-7d65b5a6a37c','905389469015','RUHİ MANAV  adlı müşterinizin 79354282 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7e6be2bc-3fb4-4348-b595-2abc3ea964a0',NULL),
('d9e5b154-d1a9-4aaa-964c-ecd4a246d2b6','4915161573588','Sayın AYŞEGÜL GÖKTEPE, 478774501 nolu gönderiniz 1287 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478774501\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478774501 was delivered to you with the delivery code 1287. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478774501\n\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('d9e66d12-0d69-48c5-b76e-41a5de478fa3','905331602195','ASHLEY BLANCO RODRİGEZ adlı müşterinizin 221417545 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('d9e673bb-f9a8-47b1-81ef-e056c5e5b288','905075277637','MERYEM BULAK  adlı müşterinizin 745374253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5fc6171b-505c-485c-b075-49cfe5dd62fd',NULL),
('d9e700de-f3c7-45be-b9bb-b1907dde16fa','905461661672','DUYGU DEMİRHAN adlı müşterinizin 644703173 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a8c143bc-356b-4c66-8dbd-3c7d0aa9e2d5',NULL),
('d9e9d47f-99d1-4e47-9357-e639e2ea63dc','905304267046',' adlı müşterinizin 454592303 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','b659a388-1c45-405b-a478-fa4eb2398376',NULL),
('d9eef3b2-fdcb-42d3-be2f-2281001fa29b','4369919588138','Sayın NATASCHA DJORDJEVİC, 80873489 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/80873489\n\nDear NATASCHA DJORDJEVİC, your shipment with 80873489 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/80873489\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('da011744-eb1a-4491-bee9-05221522b67e','905394878216','SENEL YILMAZ adlı müşterinizin 517365072 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('da1aced0-ff08-4f99-96ce-4b8219aa2480','33783327120','İletişim \n					Şöför Uğur Acar +905424435917','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('da20ace7-234c-4f17-a90f-4d2f70dde6a7','33768894970','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('da220e76-b4ec-4387-b172-bbb50c85a3cd','905517075149','Sayın yetkili; AYSEL-İSMAİL ÇILGIN adlı müşterinize 478928003 nolu gönderinizin MASA ürünü 2 parça halinde family adresinizden 11.10.2025 12:16:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('da238f05-e721-4cce-8785-78ac1aaef801','905331602195','SERKAN KAHRAMAN SSH adlı müşterinizin 221348923 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('da23e36e-9936-4984-aa52-b01fdc86f4b5','33605875913','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','5d9fc79f-710b-4e63-8698-fbbd03275cc8',NULL),
('da313378-ba8f-4e5b-a8f7-5a34c8e2f804','491639801426','EURO STAR MOBEL adlı müşterinizin 107870370 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4ac57e98-4d31-4029-af5c-63c778250adc',NULL),
('da314a5b-f707-4a37-867d-19070c5c3ebc','33333333333333','Sayın ERCAN GÜLER, 735121904 nolu gönderiniz 4094 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735121904\n\nDear ERCAN GÜLER, your shipment with 735121904 was delivered to you with the delivery code 4094. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735121904\n\n\nBICARGO','2','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL),
('da33e58c-4b18-4496-9ab2-0b672d9e1619','33753794689','Sayın ÖZKAN ERDEM , 478862837 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478862837\n\nDear ÖZKAN ERDEM , your shipment with 478862837 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478862837\n\nBICARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('da3438a2-e3e0-4e53-a1de-5590efcb8d46','4915204346659','Sayın (K)SİNEM İDRİZAJ , 644880161 nolu gönderiniz 5085 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644880161\n\nDear (K)SİNEM İDRİZAJ , your shipment with 644880161 was delivered to you with the delivery code 5085. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644880161\n\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('da3f8017-8643-4d9a-97f0-7535aabad10b','905309753633','MUARREM NAİR adlı müşterinizin 616254479 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b410819-0339-4c69-a500-825f92b681a3',NULL),
('da40da83-c474-45d3-b1bb-9ff6dc314586','31643014600','Sayın SEBİHA DEMİR, 437233194 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437233194\n\nDear SEBİHA DEMİR, your shipment with 437233194 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437233194\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('da411ddc-c9b4-4ae5-9567-3959b03aa08f','491742555594','437154123 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9991 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437154123\n\nYour shipment with the number 437154123 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9991. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437154123\n\nBICARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('da4ab2b0-7eac-4029-a219-3209f50e4047','41787614204','Sayın ÖMER KOLAT, 478733683 nolu gönderiniz 8908 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478733683\n\nDear ÖMER KOLAT, your shipment with 478733683 was delivered to you with the delivery code 8908. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478733683\n\n\nBICARGO','1','8c4bc8b4-007a-4be3-80bf-25d53f48ebc3',NULL),
('da4de40f-2567-4538-b3ce-d73c2c4aad98','31687653993','644330933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5760 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644330933\n\nYour shipment with the number 644330933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5760. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644330933\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('da4e9945-322c-4d32-ba5d-f89475422513','905331602195','MUKKADIN IBRAHIM adlı müşterinizin 221941793 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('da4f0941-63ca-467b-b498-d0602f6761fc','4917674951049','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('da53c217-eafd-4e91-b340-541b4a107b4b','905454259202','DAVUT DEĞİRMENCİ adlı müşterinizin 478686372 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bb1e482d-dbc9-40c2-a5ef-9d3227196dd8',NULL),
('da54b9e7-8dff-4794-9b6b-41081f0c83c7','4917664025602','Sayın AYŞE ŞEKER, 745671718 nolu gönderiniz 8303 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745671718\n\nDear AYŞE ŞEKER, your shipment with 745671718 was delivered to you with the delivery code 8303. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745671718\n\n\nBICARGO','1','ee60ec73-3c76-4379-8775-11a6bda57fea',NULL),
('da56ebb2-b1ba-49c8-833e-44c13f0f09f6','32472837629','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','6a7e11fc-8af7-4a54-9444-d563a0776049',NULL),
('da586c85-0c39-4b27-b52f-188878a5ab1c','4917624686469','371628660 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9441 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371628660\n\nYour shipment with the number 371628660 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9441. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371628660\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('da5b9463-9e1b-4f1b-9a1b-a74ddec70e6b','905312762034','YUSUF ÖZKULLUK adlı müşterinizin 808146332 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cd602635-5c4f-4c0e-bb1c-fccb24ae1cea',NULL),
('da5e5913-8257-4038-9772-e2b08c861af7','905350617509','Sayın yetkili; SOZDAR AKTAS adlı müşterinize 613592756 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Luna sofa adresinizden 23.07.2025 10:46:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','277bb0f0-75c4-4045-848c-72f8729d43a4',NULL),
('da5f06ee-5c7d-475c-9e66-abeee1e9e9c0','41613314258','Sayın ULAŞ YILDIZ, 428177245 nolu gönderiniz 2275 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428177245\n\nDear ULAŞ YILDIZ, your shipment with 428177245 was delivered to you with the delivery code 2275. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428177245\n\n\nBICARGO','2','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL),
('da6077e8-77d3-4257-a86a-c2c227dee7c6','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin köşe koltuk ürünü 5 parça halinde VERAS LİFE adresinizden 19.06.2025 15:21:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('da60c24e-4c5f-41da-9bb3-39362cbc6c40','905079358213','MUSTAFA YILMAZ SSH  adlı müşterinizin 745338988 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('da619e40-1640-459c-af0f-b83a6627dd58','905428209234','ABUZER TEKCE adlı müşterinizin 319232330 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','239d1f7e-8294-4e8d-af99-4b0ec7ad8ea5',NULL),
('da65552d-a13f-4150-962c-83657415f44e','4915739434455','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('da6c0589-0df2-4529-b1d4-7615717dba3f','4915753617776','501848451 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7646 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501848451\n\nYour shipment with the number 501848451 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7646. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501848451\n\nBICARGO','1','443aa222-33f8-4fe0-a2f8-8966543ddebf',NULL),
('da74f786-4987-4aef-8bb6-f4d4abf2a040','905461661672','Sayın yetkili; SELİN ÖZALP adlı müşterinize 644615727 nolu gönderinizin SANDALYE ürünü 3 parça halinde BALİ SANDALYE adresinizden 26.04.2025 11:11:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('da7aae78-f878-46d4-a314-2826cd542f02','491784042586','İLETİŞİM\n					Furkan şöför = +905078826436','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('da802994-263e-4b29-8f87-bc17aa12a8cb','436507400301','Sayın ERKUT PEKTAŞ, 478474988 nolu gönderiniz 10272 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478474988\n\nDear ERKUT PEKTAŞ, your shipment with 478474988 was delivered to you with the delivery code 10272. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478474988\n\n\nBICARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('da877382-524c-4fa9-b6d2-15d678007cfe','4917644265408','DRİVER\n					ADNAN\n+905354622027','1','3940cd3d-d2f7-46b6-8add-88c26b8f55d2',NULL),
('da89f59f-6bc8-4aa5-a9d0-23cb9229d019','491621091849','Sayın SEVİM KAMER, 478524376 nolu gönderiniz 1228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478524376\n\nDear SEVİM KAMER, your shipment with 478524376 was delivered to you with the delivery code 1228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478524376\n\n\nBICARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('da8c2efb-4fbc-4462-8e78-b098e1bdd6a1','4917657744267','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('da9bfead-013f-4d9c-93df-f8353d275691','4917636373200','221946527 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4589 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221946527\n\nYour shipment with the number 221946527 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4589. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221946527\n\nBICARGO','1','3677d700-20f1-449d-b4d8-d9b08ec6b141',NULL),
('da9ce7dd-af22-4a60-bbf7-1ca7f81747b2','905389543828','Sayın yetkili; ZEESHAN AHMAD FAROOQ adlı müşterinize 486874151 nolu gönderinizin Masa Sandalye ürünü 6 parça halinde Moe Bedding  adresinizden 08.07.2025 14:28:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('da9d1637-bc3f-49bb-9418-ef1d84df5cf9','436642175788','Sayın MAGDALENA DELİJANOVA, 371521572 nolu gönderiniz 10402 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371521572\n\nDear MAGDALENA DELİJANOVA, your shipment with 371521572 was delivered to you with the delivery code 10402. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371521572\n\n\nBICARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('daa3d435-d611-448a-8140-c927d76cd14b','491725785095','371421349 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7604 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371421349\n\nYour shipment with the number 371421349 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7604. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371421349\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('daa4dbfe-4a4d-4584-b8b5-bc62acc0be96','905079047428','GÜRKAN GÜLER  adlı müşterinizin 449693252 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','747b5fc5-10a3-4ca5-bdfe-cf4db34e4800',NULL),
('daa6d0a0-b3d6-4fa5-a635-70f5b0ab2aa6','491784026440','515103460 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10627 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515103460\n\nYour shipment with the number 515103460 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10627. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515103460\n\nBICARGO','1','d586bc5d-72ab-46a5-8f07-a0f14d351b51',NULL),
('daa891e3-f45a-44d1-98c8-2b2e9f3282c2','905335708965','MURAT MAKAS adlı müşterinizin 248764146 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL),
('daad3d20-f368-4bf1-90d7-ca773805b3e2','491752309322','Sayın ZAFER SARIDAŞ(K), 644717952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644717952\n\nDear ZAFER SARIDAŞ(K), your shipment with 644717952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644717952\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('daaf2e9b-7bce-4de1-bb3d-7c76699247d7','5325000478','Sayın AAAA BBBBBB, 20.08.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2952855\nŞifre : 2952855\n			\nBİCARGO','1',NULL,'295b285c-580b-44a6-9a5b-a25a00a8150b'),
('dab257b1-f00c-4d68-b85e-460b442b99c5','905517075149','Sayın yetkili; KEVSER KAYA adlı müşterinize 478983907 nolu gönderinizin 160x200 yatak ürünü 1 parça halinde Fatura adresinizden 31.07.2025 14:50:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('dac265e7-4147-4846-886e-a20025dc98e6','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478784133 nolu gönderinizin yatak ürünü 1 parça halinde BİCARGO DEPO adresinizden 31.07.2025 14:50:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('dac4f6e4-961e-4d9d-b98b-cca77f73684c','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin masa ürünü 3 parça halinde Fatura adresinizden 30.05.2025 16:47:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('dac8d9cf-fbc0-41d8-9e2b-322b553c0116','905335708965','SEMİL HADZİ adlı müşterinizin 735905073 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','36d04374-8820-448d-9e27-e2a098baa9f9',NULL),
('dacd7e14-a41a-46c6-8f9d-d20621db7cee','4915254879175','Sayın ARZU KUZUCU, 371160737 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371160737\n\nDear ARZU KUZUCU, your shipment with 371160737 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371160737\n\nBICARGO','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('dad7fec7-dee9-4213-bf4b-ab2223b1faef','905078062550','SOMİA KARABİLA SSH adlı müşterinizin 59840179 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2354f542-69c3-4efa-816d-63f11bc99126',NULL),
('dad904a2-0366-40b4-8fb4-8259abcd21dd','905461661672','Sayın yetkili; (K)HÜSAMETTİN CANBOLAT adlı müşterinize 644469726 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 06.09.2025 13:04:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('dae6a3f3-68de-4e21-a6ca-8956341a65c4','436601893040','515785688 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6892 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515785688\n\nYour shipment with the number 515785688 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6892. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515785688\n\nBICARGO','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('dae88dc6-5a81-49bb-a65b-a9b08c0e7d32','905075277637','İBRAHİM YILDIRIM adlı müşterinizin 745405587 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5758b84a-ba06-4b26-888b-a1d46af4fac9',NULL),
('daea2b60-1af4-4252-af5b-5abb399d56d1','905336367828','RWWHİKA KATUSABE  adlı müşterinizin 982484679 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f32513e0-8eeb-4eff-b7e0-6c1734713bae',NULL),
('daec21b3-f622-432c-85cd-8efb3ba46a74','905336367828','ARBESA SADRİJAJ adlı müşterinizin 982533088 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL),
('daefc514-d6ac-4ae0-ac7b-ace73b6f12a5','905313340045','Sayın yetkili; FUAT SÜRER adlı müşterinize 437392386 nolu gönderinizin köşe takımı ürünü 6 parça halinde pars koltuk adresinizden 21.07.2025 13:15:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f068235e-a859-42b0-b6d1-68d5d67061a7',NULL),
('daf1782b-4085-446a-9742-d2aa12e53cc2','32470652077','Sayın SEYFETTİN, 703183067 nolu gönderiniz 5421 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/703183067\n\nDear SEYFETTİN, your shipment with 703183067 was delivered to you with the delivery code 5421. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/703183067\n\n\nBICARGO','1','90273c80-e292-4a76-8be5-a4c812e9f569',NULL),
('daf53cfc-4820-43df-b839-a811eff044fc','4917683277906','24891590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10322 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/24891590\n\nYour shipment with the number 24891590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10322. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/24891590\n\nBICARGO','1','39397b1a-3018-4479-9b5f-2c8efb77f6d0',NULL),
('daf8c2ac-3b0f-421e-93d3-749822d4544a','5325000478','Sayın LEVENT LEVENT, 09.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 9244404\nŞifre : 9244404\n			\nBİCARGO','1',NULL,'924d440d-e432-41b3-b267-70c7eacb6b8a'),
('dafded1f-cc72-4f27-a4ee-e8b71a9e9927','491774619575','644113252 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3803 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113252\n\nYour shipment with the number 644113252 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3803. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644113252\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('db04c725-b307-4269-af1a-2b0accb64bc8','905336367828','birsat melake  adlı müşterinizin 982639053 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('db09fc2a-5d14-48de-a858-08acace416a2','31625064385','Sayın MURAT, 163229349 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/163229349\n\nDear MURAT, your shipment with 163229349 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/163229349\n\nBICARGO','1','6d8023fb-7e68-4b37-8709-816c5519380e',NULL),
('db109b33-7587-48cd-8824-4fafd24db66c','491551014119','478935366 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9365 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478935366\n\nYour shipment with the number 478935366 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9365. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478935366\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('db172476-f7b8-45f3-8273-7f55c181359b','33771771223','Sayın ABDULLAH ÖZER		, 910594430 nolu gönderiniz 10046 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910594430\n\nDear ABDULLAH ÖZER		, your shipment with 910594430 was delivered to you with the delivery code 10046. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910594430\n\n\nBICARGO','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('db17724d-c480-4dac-9e30-3f7615c33476','4917622969487','Sayın SEMRA TERLEMEZ, 45527400 nolu gönderiniz 8994 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/45527400\n\nDear SEMRA TERLEMEZ, your shipment with 45527400 was delivered to you with the delivery code 8994. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/45527400\n\n\nBICARGO','1','bb868109-aa10-4576-90c5-cea9bda06633',NULL),
('db1dc5bc-b21a-4fc7-9d01-d9ac155d4e71','4917661739027','Sayın MEHMET ULUIŞIK, 598614826 nolu gönderiniz 2960 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598614826\n\nDear MEHMET ULUIŞIK, your shipment with 598614826 was delivered to you with the delivery code 2960. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598614826\n\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('db25d425-c087-41fd-82bf-c66c5f207e0d','4915739316802','Sayın FIRAT DEMİRCİ, 982451991 nolu gönderiniz 5971 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982451991\n\nDear FIRAT DEMİRCİ, your shipment with 982451991 was delivered to you with the delivery code 5971. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982451991\n\n\nBICARGO','1',NULL,NULL),
('db25f9a6-b968-4c9a-a744-4f91542dac3e','4917624498009','Sayın GÜLŞAH SEVİMLİ, 644721676 nolu gönderiniz 3436 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644721676\n\nDear GÜLŞAH SEVİMLİ, your shipment with 644721676 was delivered to you with the delivery code 3436. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644721676\n\n\nBICARGO','1','ad2a78dd-8cbb-41b1-ac2e-de83bf99fa6b',NULL),
('db26087c-ced4-4027-947c-9f3fb942fd5b','4915730253868','Sayın GÜLNUR ENGİN, 598585736 nolu gönderiniz 4471 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598585736\n\nDear GÜLNUR ENGİN, your shipment with 598585736 was delivered to you with the delivery code 4471. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598585736\n\n\nBICARGO','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('db29b9ed-a369-4c13-bd9e-73c0f865f9e5','436601881431','Sayın SERKAN ELGİT , 61310831 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61310831\n\nDear SERKAN ELGİT , your shipment with 61310831 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61310831\n\nBICARGO','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('db2b94d8-c843-43c1-a8a3-116d1c9078a4','41764103638','478402358 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8803 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478402358\n\nYour shipment with the number 478402358 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8803. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478402358\n\nBICARGO','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('db3169b0-7dd9-48ba-b2f0-635ce3bcc1db','4915228033800','428671806 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2136 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428671806\n\nYour shipment with the number 428671806 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2136. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428671806\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('db357ffb-311c-4029-8fd1-2c39e94fd2dd','905461661672','Sayın yetkili; TUĞRA NUR DÜZGÜN adlı müşterinize 644298759 nolu gönderinizin TRAVERTEN MASA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 18.06.2025 13:18:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd4a184e-d04a-45fa-af74-f7d45806dede',NULL),
('db3b892c-3d4e-438b-9806-30e4f1414555','436603406293','MERAL KELES adlı müşterinizin 675890872 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','f39c59eb-6753-46e7-ad11-8f7fba3db577',NULL),
('db4e7e4d-9cd7-49cf-b67f-b028d95e4dca','905301592882','Sayın yetkili; BELGİN YAĞLI		 adlı müşterinize 910762495 nolu gönderinizin SANDALYE ürünü 3 parça halinde Fatura adresinizden 06.08.2025 16:16:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('db4eaa08-e0fd-40f1-8748-cfdfe71aa516','33769000460','Sayın EMİN EKRAMOĞLU, 478337610 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478337610\n\nDear EMİN EKRAMOĞLU, your shipment with 478337610 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478337610\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('db52d276-be45-4f76-91ab-d7b360d1f7c2','4915784616270','644860505 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9913 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644860505\n\nYour shipment with the number 644860505 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9913. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644860505\n\nBICARGO','1','86489c05-a1b1-45e7-87e0-efdf57f77ac9',NULL),
('db538512-bfc7-43eb-8a39-d763d5d6d12c','905510396989','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin SMART 1-1 BERJER ürünü 3 parça halinde SOFA FLEX adresinizden 19.09.2025 12:35:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('db55994f-5238-440c-941d-2f7c3879c912','905523438971','Sayın yetkili; KATRİN MESİNGER adlı müşterinize 896847151 nolu gönderinizin Masa  ürünü 3 parça halinde Masami  adresinizden 19.08.2025 14:17:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('db5c77e8-070e-427a-90b3-b3233a90ef23','905363385813','MEHMET ALİ ALBECER adlı müşterinizin 976747802 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('db5ddabf-cbb7-4aab-b059-66595bd08833','905313340045','UFUK SANATÇI adlı müşterinizin 43783689 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','a04ae8dd-1caf-4622-97e8-aa08c8974c93',NULL),
('db791205-3ea8-4333-8ee7-4bfb31601b10','3168244547','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','2','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('db798035-3bbe-4d28-832f-ce080fa3039d','905331602195','Sayın yetkili; THOMAS MICHEL  adlı müşterinize 221685294 nolu gönderinizin Balat sandalye  ürünü 8 parça halinde MERT SANDALYE  adresinizden 17.04.2025 17:22:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('db812d96-da3d-49be-aaa1-fecc172b2e35','31625064385','412173308 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412173308\n\nYour shipment with the number 412173308 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412173308\n\nBICARGO','1','503d054f-153e-4dba-9be1-a45ec1b52abe',NULL),
('db89aad7-f2bf-48f5-99c1-02b7340d1698','491781529585','371804669 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3063 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371804669\n\nYour shipment with the number 371804669 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3063. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371804669\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('db8c1d98-23a5-4f24-98bc-1e4400fe4ff4','33699946659','Sayın BELKISA KAPLAN, 478428380 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478428380\n\nDear BELKISA KAPLAN, your shipment with 478428380 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478428380\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('db8e5b12-259f-48b2-ad13-7f1a4f767355','905078062550','ANAHİTA MORİD adlı müşterinizin 598412225 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('db8eec06-ca82-46e1-8159-c6bb505a13e5','33605537745','449890150 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7327 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449890150\n\nYour shipment with the number 449890150 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7327. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449890150\n\nBICARGO','1','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL),
('db97cc6f-ed3a-4b5e-96d1-2d66a83b3dee','491639801426','Sayın EURO STAR MOBEL, 412417422 nolu gönderiniz 5582 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412417422\n\nDear EURO STAR MOBEL, your shipment with 412417422 was delivered to you with the delivery code 5582. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412417422\n\n\nBICARGO','1','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL),
('db9ce1b6-1036-4c44-87da-49e305f61632','4917663104062','Sayın MEHMET ŞAFAK, 745303298 nolu gönderiniz 1615 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745303298\n\nDear MEHMET ŞAFAK, your shipment with 745303298 was delivered to you with the delivery code 1615. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745303298\n\n\nBICARGO','1','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL),
('dba00189-6cba-459c-95b6-aabf18bbcc73','905336367828','Sayın yetkili; CLEİDY MARTİNS  adlı müşterinize 982475389 nolu gönderinizin 3+1 koltuk  ürünü 2 parça halinde Comfortlife  adresinizden 14.02.2025 16:17:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4c6a6d6f-af58-43f6-9a04-2610b54ab8a0',NULL),
('dba129ec-8249-4043-be40-593afef95db7','31650492862','745881843 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4798 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745881843\n\nYour shipment with the number 745881843 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4798. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745881843\n\nBICARGO','1','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL),
('dba20238-484b-41ac-be87-9302d9aa4521','905335708965','MUHAMMET EL CASİM adlı müşterinizin 248435862 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL),
('dba3ffc7-a005-44c4-9acd-a3fe92bdd709','905335708965','OMER AL HASHİMİ adlı müşterinizin 248203029 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL),
('dba5113f-1018-4a0b-9510-03efdebcffe7','905335511664','HARUN ŞAHİN adlı müşterinizin 371421349 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('dbab76b6-1609-4bcd-b357-1207f41c8d34','905461661672','RUKİYE BARUT SSH adlı müşterinizin 644625326 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('dbaf04dc-31eb-41b7-81b1-b18b52173155','905075277637','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 23.05.2025 21:56:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('dbb0fe1c-7142-4b7e-a2a1-08d1974759a9','905331602195','SAVYO RAFFO adlı müşterinizin 22164822 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('dbb19d4d-6f3a-42e3-93a8-4c7e5f605afe','4915233653344','Sayın CEYDA KARA, 437791163 nolu gönderiniz 2666 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437791163\n\nDear CEYDA KARA, your shipment with 437791163 was delivered to you with the delivery code 2666. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437791163\n\n\nBICARGO','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('dbb402cf-daa3-4037-8f2b-75e5171b7346','905304259202','YAŞAR YALMAN adlı müşterinizin 478559056 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3008395f-ad73-440c-95df-6a289efc5dab',NULL),
('dbb4e734-0fbb-413f-a502-44bcafeb3a22','4917663834666','Sayın SELİN ÖZALP, 644615727 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644615727\n\nDear SELİN ÖZALP, your shipment with 644615727 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644615727\n\n\nBICARGO','1','4e495647-8999-4246-a35c-fd58b0c1ac75',NULL),
('dbb5949b-8717-47b5-b818-3690b530cb1c','1111111111','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('dbb656a7-f7be-46de-8a34-a806e6a90a4f','436606200309','İletişim \n					Halil Bey (Şoför) :+905541100849','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('dbb927ff-ca04-4427-af77-fe33421f1b46','33751255527','Sayın ZEESHAN AHMAD FAROOQ, 486874151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/486874151\n\nDear ZEESHAN AHMAD FAROOQ, your shipment with 486874151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/486874151\n\nBICARGO','1','71f77e69-e535-4a68-a67d-b53c19b38276',NULL),
('dbc29700-4008-4561-82ab-fd8dd860e4d1','491736518131','Sayın ELİF GÖKTAN, 505770346 nolu gönderiniz 9699 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505770346\n\nDear ELİF GÖKTAN, your shipment with 505770346 was delivered to you with the delivery code 9699. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505770346\n\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('dbc5930e-ae98-42bf-824d-3116f912b522','32490219326','Sayın MUSTAFA MÜEZZİNOĞLU, 428459785 nolu gönderiniz 8224 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428459785\n\nDear MUSTAFA MÜEZZİNOĞLU, your shipment with 428459785 was delivered to you with the delivery code 8224. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428459785\n\n\nBICARGO','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('dbc710c3-4d73-4057-b511-4b2cf15bbcdf','33614367699','Sayın İPEK ÇİFTÇİ, 478300917 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478300917\n\nDear İPEK ÇİFTÇİ, your shipment with 478300917 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478300917\n\nBICARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('dbcb1709-98ab-481e-b354-787cee0fe0a5','05388618969','786668251 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7051 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786668251\n\nYour shipment with the number 786668251 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7051. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/786668251\n\nBICARGO','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('dbe06031-256f-4544-bfb9-70e2df532db1','905461661672','TÜLAY ÇAĞLAR adlı müşterinizin 644637792 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('dbec1ebb-e049-4a15-b736-8ef26e20faed','905331602195','REUAN SHAMO  adlı müşterinizin 221947357 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('dbef4fda-b9ec-4eed-a3b8-a23f19d7a79b','33782340961','Sayın TAMES PREİN JANY, 982545187 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982545187\n\nDear TAMES PREİN JANY, your shipment with 982545187 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982545187\n\nBICARGO','1','7cefa81c-deac-4617-8809-7002f9076b03',NULL),
('dbf6380c-b2fa-4a40-bf88-42d5fad8deec','31638550109','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('dbf7821b-fc85-433e-9b4b-a407a0c77e63','05380623114','517255345 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517255345\n\nYour shipment with the number 517255345 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517255345\n\nBICARGO','2','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('dbf91dd2-22c9-41ca-9c97-2ec1790effdc','491623487541','Sayın ABDULLAH SÖNMEZ, 428107185 nolu gönderiniz 4689 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428107185\n\nDear ABDULLAH SÖNMEZ, your shipment with 428107185 was delivered to you with the delivery code 4689. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428107185\n\n\nBICARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('dbfa3dcf-bc8e-43ee-928f-74bd888d3988','33634048698','Sayın LATİFA KHAZROUKI, 221139773 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221139773\n\nDear LATİFA KHAZROUKI, your shipment with 221139773 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221139773\n\nBICARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('dbfa6dd6-605f-430f-8253-cc5602420a95','905394878216','Sayın yetkili; ÖZEN GÖKYEŞİL adlı müşterinize 517619393 nolu gönderinizin Fold Masa ürünü 3 parça halinde Fatura adresinizden 16.10.2025 17:42:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('dc03c3cf-f0d1-4819-bcf5-bc0754ec66f1','1111111111','Sayın NİSRİNE , 019814367 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019814367\n\nDear NİSRİNE , your shipment with 019814367 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/019814367\n\nBICARGO','2','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('dc060d65-6215-46b1-9a12-137452cb05bb','905312762034','KARAARSLAN YELİZ adlı müşterinizin 808886614 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('dc0c7425-48c6-4d1f-8917-2fc3d509b281','905079358213','Sayın yetkili; ERCAN VARSAK SSH  adlı müşterinize 745282619 nolu gönderinizin BOHEM DOLAP KAPAKLARI SSH  ürünü 1 parça halinde ACCA adresinizden 26.08.2025 16:27:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('dc0eca94-4395-46b5-92e9-0e7fdb3b58f8','905079358213','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin ODDOLUX MASA SANDALYE  ürünü 6 parça halinde ODDO adresinizden 08.09.2025 12:05:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('dc15665d-fb94-42fb-b5a4-bc47cd441308','491738569767','Sayın OKTAY SAMET ŞAHİN, 745782616 nolu gönderiniz 3573 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745782616\n\nDear OKTAY SAMET ŞAHİN, your shipment with 745782616 was delivered to you with the delivery code 3573. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745782616\n\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('dc1f2aa6-0def-4385-8fca-b42a01e2f54a','491735124254','644684600 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2036 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/644684600\n\nYour shipment with the number 644684600 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2036. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/644684600\n\nBICARGO','1','0f40a488-b453-400e-a6e2-874e5a76c787',NULL),
('dc2218d1-a075-4df5-9b33-264316303218','4915771419674','Sayın FERHAT CAN, 278498481 nolu gönderiniz 10088 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/278498481\n\nDear FERHAT CAN, your shipment with 278498481 was delivered to you with the delivery code 10088. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/278498481\n\n\nBICARGO','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('dc23c54d-a402-4b25-b358-52a6e092e904','905331602195','Sayın yetkili; MUHAMMED ARACI adlı müşterinize 221247114 nolu gönderinizin Cuats sandalye  ürünü 4 parça halinde Fatura adresinizden 25.02.2025 16:13:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('dc24f783-a38c-4b5c-96fe-8c9f9f787f02','4917641453096','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('dc2f9826-44ba-4bd6-a245-834d1efa72ea','905350617509','DANİAL ARAMESHK  adlı müşterinizin 613191069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('dc34fb8d-8d10-4d48-8d6b-71184966af69','905363385813','Sayın yetkili; ŞEVKİ MORİNA adlı müşterinize 976765698 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde Ali Turan Koltuk adresinizden 20.05.2025 11:11:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('dc36187e-0be1-4eb7-88e1-92cc75e7c427','436601881431','İletişim \n					Halil Bey (Şoför) :+905541100849','1','af66e0b1-a72e-4c45-9e91-18e38e131f34',NULL),
('dc36d4d0-ab04-4575-a131-2f31092b10b3','4917684673033','412119334 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2692 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412119334\n\nYour shipment with the number 412119334 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2692. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412119334\n\nBICARGO','1','3167a684-9120-4a08-a96f-a652ac70c76f',NULL),
('dc39b1a9-83b9-47f8-89f2-114e165c3e42','4917661327084','Sayın DUYGU METE, 371394707 nolu gönderiniz 1614 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371394707\n\nDear DUYGU METE, your shipment with 371394707 was delivered to you with the delivery code 1614. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371394707\n\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('dc440fba-1be0-4757-8164-144cad4c31f7','4977219162688','745645972 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9678 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745645972\n\nYour shipment with the number 745645972 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9678. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745645972\n\nBICARGO','2','e30052e8-31ee-42d9-b11e-50298f473091',NULL),
('dc4bdb39-dc0a-4b9c-a0f8-0a274cf7ddcb','905075277637','PINAR SALMA SSH  adlı müşterinizin 745332643 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','418c37cd-497a-45d2-a47a-3b77943bfa63',NULL),
('dc4e23dc-7bec-468f-b81b-81bec9c5e47e','491758664558','478283773 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478283773\n\nYour shipment with the number 478283773 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478283773\n\nBICARGO','1','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL),
('dc5966a9-5edc-4f54-8821-fb6307bab382','4917670469390','Sayın BARAN RAKİP, 517764616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517764616\n\nDear BARAN RAKİP, your shipment with 517764616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517764616\n\nBICARGO','1','4fa8c2b0-ffb7-4168-8c24-b45eea1eabc2',NULL),
('dc5bc80e-9da4-47b5-917b-7038e6517a6f','905363385813','GÜLNAZ ATMACA adlı müşterinizin 976285905 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c48a406d-f6cc-43e5-ab64-0494c3458163',NULL),
('dc5dc0b0-4324-43ca-b48e-48d5fb38539c','905313340045','MERVE KARADAVUT adlı müşterinizin 437998346 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('dc5e3f46-1538-4ea5-9705-6d1929ab1980','905333221039','HEROLİND PROVATAJ adlı müşterinizin 750496630 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37e2474e-9d12-4f0f-900d-4305b84d27f1',NULL),
('dc5e6a03-4c22-4766-8b85-dffb27916b8f','41762149925','Sayın DONİKA, 786849282 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/786849282\n\nDear DONİKA, your shipment with 786849282 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/786849282\n\nBICARGO','1','bdde5e4c-e62c-4ddd-9471-758e286d2013',NULL),
('dc5f8898-dcb2-4562-9e99-106d96db93e7','905331602195','Sayın yetkili; RANJA SABRİ  adlı müşterinize 221904119 nolu gönderinizin 80x60x45 üçlü sehpa set ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 01.07.2025 12:31:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('dc61b2d2-8e88-4973-8c0c-ceecd3d81fd9','33624490316','478677262 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3648 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478677262\n\nYour shipment with the number 478677262 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3648. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478677262\n\nBICARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('dc652a5b-c816-48fd-95bb-4a3508b25b7e','491771951870','Sayın AGIM NURSHOBO, 44971858 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44971858\n\nDear AGIM NURSHOBO, your shipment with 44971858 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44971858\n\nBICARGO','1','77d6bcb8-1638-4066-943f-4ca74a17b5a2',NULL),
('dc664d48-4823-4c1e-8558-1e5a8d8c4723','004917284997194','735637082 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735637082\n\nYour shipment with the number 735637082 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735637082\n\nBICARGO','2','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL),
('dc6cb211-87c4-45aa-8b27-7a5238e2191c','0033673412285','Sayın ZEKERİYA AKTAŞ, 735525138 nolu gönderiniz 5419 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735525138\n\nDear ZEKERİYA AKTAŞ, your shipment with 735525138 was delivered to you with the delivery code 5419. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735525138\n\n\nBICARGO','2','70679c39-169c-46b4-9b96-b3994b9aee84',NULL),
('dc6fe9ab-1782-4511-9fe6-8f252de6b65f','905335511664','ÖZLEM AKAY adlı müşterinizin 371440688 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b773320b-83f9-406c-8d3a-312ca17d7ff8',NULL),
('dc7944cf-471e-4d27-b07b-01563ec3758e','905331602195','LESLİE SEROR  adlı müşterinizin 22144793 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('dc7e6472-64a7-45ed-9e29-c6c8918afae1','905075277637','HASAN ÇETİN adlı müşterinizin 745810889 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('dc7f0f44-5479-478c-b340-60c5d6b797f6','33658242473','Sayın AYHAN KOCAKAYA, 31979626 nolu gönderiniz 6294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/31979626\n\nDear AYHAN KOCAKAYA, your shipment with 31979626 was delivered to you with the delivery code 6294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/31979626\n\n\nBICARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('dc88c344-77a4-4643-8dc1-38e3809f95f4','491739514221','Sayın PARK, 248549362 nolu gönderiniz 1955 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248549362\n\nDear PARK, your shipment with 248549362 was delivered to you with the delivery code 1955. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248549362\n\n\nBICARGO','1','08723415-4b6f-4a95-a326-2405074a7498',NULL),
('dc90953d-7226-4712-aa62-273a330c5d7c','4915172748624','Sayın NADİNE NATUR, 817303639 nolu gönderiniz 9261 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817303639\n\nDear NADİNE NATUR, your shipment with 817303639 was delivered to you with the delivery code 9261. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817303639\n\n\nBICARGO','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('dc98d172-405e-4f18-b017-85ed0921b10d','4915147245701','735792949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8090 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735792949\n\nYour shipment with the number 735792949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8090. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/735792949\n\nBICARGO','1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL),
('dc9e98ee-1ad1-4ae5-bf63-30ba47c634aa','905451571652','Sayın yetkili; TARA SAİDA adlı müşterinize 531893295 nolu gönderinizin Köşe koltuk ürünü 6 parça halinde Efe koltuk adresinizden 05.08.2025 17:44:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('dc9ea1c5-3fa3-4bed-9457-7f1f79dbddc7','905461661672','MUHAMMED ALİ TÜMKAYA adlı müşterinizin 64455982 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('dcaae1aa-fc45-420d-80c9-c7439845a686','436766461961','371539784 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371539784\n\nYour shipment with the number 371539784 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371539784\n\nBICARGO','1','f41591d6-a92e-4ea1-9c50-b10accb09a51',NULL),
('dcb3d91e-8c28-4328-b89c-69bd8f102aa9','905336367828','Sayın yetkili; AYDIN KEMERLİ  adlı müşterinize 982837523 nolu gönderinizin masa  ürünü 2 parça halinde Comfortlife  adresinizden 31.12.2024 11:30:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0a5289b-f034-4540-b03b-9510ca71ec7a',NULL),
('dcb46b43-7131-4f60-bea9-df1eac60689d','017660006494','613251938 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10483 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613251938\n\nYour shipment with the number 613251938 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10483. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613251938\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('dcb7a38c-95a4-40b4-b950-3192ffa8fb08','905075277637','DELİL ÖZTÜRK SSH adlı müşterinizin 745786401 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('dcc0cb03-0163-4d4a-ae65-81c27182d72a','4917614644899','Sayın MUHAMMED EMİN TILMAZ, 65728268 nolu gönderiniz 1631 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65728268\n\nDear MUHAMMED EMİN TILMAZ, your shipment with 65728268 was delivered to you with the delivery code 1631. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65728268\n\n\nBICARGO','1','072d8a33-17fa-4b64-bb6e-a1631be72033',NULL),
('dcc83674-f31c-47d8-9e0b-6b57be254566','31641191889','437917777 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8783 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437917777\n\nYour shipment with the number 437917777 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8783. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437917777\n\nBICARGO','1','a83ff746-6483-4a7a-b143-9f59ac9e331d',NULL),
('dcca261d-22b0-44e1-887e-36ff534a79d1','905304259202','Sayın yetkili; ALİ DİNAR adlı müşterinize 478185886 nolu gönderinizin konsol bombeli yan- masa orta parçaları-rutuş boyası ürünü 3 parça halinde kuka adresinizden 02.06.2025 17:20:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('dccefa51-77bc-4bad-8831-c4a65fc04ae8','4917643816856','517447554 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6492 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517447554\n\nYour shipment with the number 517447554 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6492. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517447554\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('dcd3eb06-5234-4588-b140-4b1e775ae65e','4915566766358','Sayın ALEYNA İREP, 37119244 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37119244\n\nDear ALEYNA İREP, your shipment with 37119244 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37119244\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('dcda075e-24bc-4d1a-9b7f-33afe0d6b3f5','33768894970','910473991 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6060 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910473991\n\nYour shipment with the number 910473991 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6060. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910473991\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('dcdce933-2a43-456e-a1ce-dec2adf7f757','905306071261','Sayın yetkili; TUĞÇE SUER  adlı müşterinize 765484490 nolu gönderinizin ÖZEL ÜRETİM MASA  ürünü 3 parça halinde Fatura adresinizden 07.10.2025 11:20:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('dce19ba2-5003-4789-9464-7d5a049b4150','4915733572257','644658399 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5504 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644658399\n\nYour shipment with the number 644658399 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5504. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644658399\n\nBICARGO','1','5e70dde1-35e1-403e-bbeb-3153ccf77d80',NULL),
('dce2f8e8-cd00-4dd2-8da8-af1a3fbef8b6','436601484788','428653750 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428653750\n\nYour shipment with the number 428653750 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428653750\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('dce55b7d-c7a8-4276-b3de-410fa7f7d360','905523438971','Sayın yetkili; HELİN ÖZDİL adlı müşterinize 896155892 nolu gönderinizin Masa orta sehpa  ürünü 5 parça halinde Masami  adresinizden 08.10.2025 16:58:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('dce81917-6b5d-4552-8cf2-bf136f6b38c1','905325000478','TABELA adlı müşterinizin 412548356 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL),
('dcf4873a-7aad-4ef7-8569-43a025626318','31614851530','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','2','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('dcfc3e4d-e950-48c7-9124-b76a4c34c573','905069116877','SSHLAR adlı müşterinizin 817893266 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('dd017605-a28b-4a6a-b31c-8668d39f5fc4','905335511664','BERKAN AKTÜRK adlı müşterinizin 371823380 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('dd060bff-6357-4824-afe6-9a147f96d58a','4917682051476','Sayın JASMİNA YILMAZ, 371785400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371785400\n\nDear JASMİNA YILMAZ, your shipment with 371785400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371785400\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('dd0a3027-5a09-4966-acd8-b87dc101d2f0','33487361121','412968011 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7313 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412968011\n\nYour shipment with the number 412968011 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7313. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412968011\n\nBICARGO','2','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL),
('dd147b71-2e8c-4d13-87e2-e28dc54be910','32467686443','Sayın NEVİN KIRIK, 745638060 nolu gönderiniz 1828 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745638060\n\nDear NEVİN KIRIK, your shipment with 745638060 was delivered to you with the delivery code 1828. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745638060\n\n\nBICARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('dd164697-306f-4bee-9e56-d0787d1e7c0d','905389543828','Sayın yetkili; SUAN RASTODER adlı müşterinize 486405325 nolu gönderinizin Koltuk ürünü 4 parça halinde Pars Sofa adresinizden 03.07.2025 15:14:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','044d9be3-0770-4d6a-af0c-8fd047dc7191',NULL),
('dd2a0e72-9c52-4a46-b841-a3b201820900','4917680868263','976893568 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5771 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976893568\n\nYour shipment with the number 976893568 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5771. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976893568\n\nBICARGO','1','fd91d6e5-6042-45b8-8ffc-7e4151535f41',NULL),
('dd2a56bb-890b-4370-96eb-e330ad2a008c','31645212604','Sayın ÇAĞLA SEVİNÇ, 745243104 nolu gönderiniz 9956 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745243104\n\nDear ÇAĞLA SEVİNÇ, your shipment with 745243104 was delivered to you with the delivery code 9956. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745243104\n\n\nBICARGO','1','f22dfd69-914b-41e8-a1f8-32344e1e8fd9',NULL),
('dd32ea6b-84e7-46b9-bf44-88da1d8f9f97','905335511664','Sayın yetkili; LAİLA MANDANİ adlı müşterinize 371887346 nolu gönderinizin MASA SEHPA ürünü 5 parça halinde SM Tasarım adresinizden 21.07.2025 15:37:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('dd347b7a-5ae5-4df5-bbc4-f082f549c797','905461661672','CİHAN TOKAY(K) adlı müşterinizin 644407379 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('dd3c679e-ff65-487d-a677-ae112c75facc','491797333588','Sayın EMRE, 248968905 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248968905\n\nDear EMRE, your shipment with 248968905 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248968905\n\nBICARGO','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('dd3d269a-f8af-4f71-888a-bbb8a0f144d4','4917684650922','Sayın NİLÜFER YAMAN SSH , 745525130 nolu gönderiniz 4732 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745525130\n\nDear NİLÜFER YAMAN SSH , your shipment with 745525130 was delivered to you with the delivery code 4732. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745525130\n\n\nBICARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('dd482a60-1079-4342-bbad-db2524f5702d','33664036278','478733242 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478733242\n\nYour shipment with the number 478733242 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478733242\n\nBICARGO','2','e39631a1-1e5a-43f8-9da1-b9fa1e37acf2',NULL),
('dd4b2446-fc00-4dd4-834a-637b841d7b74','905335511664','HAFİZE BALİ adlı müşterinizin 371684650 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','aa97f652-a0d1-40c6-aced-340a7cbb5564',NULL),
('dd4b2f4b-335c-493f-9751-1fe527519bda','4915737582950','Sayın SULTAN GÜNDOĞDU, 455477301 nolu gönderiniz 8793 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455477301\n\nDear SULTAN GÜNDOĞDU, your shipment with 455477301 was delivered to you with the delivery code 8793. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455477301\n\n\nBICARGO','1','049cec7b-ec44-4295-afa5-768b2786337d',NULL),
('dd4da534-e9a6-458e-ae4b-fe60d0dd5f47','905451571652','HUSSEİN NAKAL adlı müşterinizin 531606130 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('dd4f3752-31d0-40a4-b6a9-3cfb4dcdc83a','4915773537388','ŞÖFÖR NUMARASI\n					+905467896981','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('dd5897d4-ca87-4e01-8a10-d25b084d9476','4915206231877','İletişim \n					Şöför Uğur Acar +905424435917','1','db01aefa-720b-410d-8344-0672007b060d',NULL),
('dd5b6449-6d37-49a4-be1e-c34cc2965cf4','905517075149','Sayın yetkili; HANIM DOĞAN adlı müşterinize 478730420 nolu gönderinizin ASOS YATAK ODASI VE ÜNİTE KARYOLA 180LİK ürünü 27 parça halinde odalife adresinizden 10.10.2025 12:38:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('dd660e41-a163-4739-b0e3-b37a2259626b','905331602195','Sayın yetkili; SERKAN KAHRAMAN adlı müşterinize 221254389 nolu gönderinizin 90x190 cm milas masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 04.08.2025 11:35:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b6577a2-c3ad-4aca-8b8b-446c848207f1',NULL),
('dd6828f9-a5e0-4626-b2c1-2121eec5a92d','436766459770','745101735 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6316 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745101735\n\nYour shipment with the number 745101735 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6316. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745101735\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('dd69f981-b72f-4d3b-a839-886333636f18','491773638963','Sayın ZAFER SARIDAŞ(K), 644717952 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644717952\n\nDear ZAFER SARIDAŞ(K), your shipment with 644717952 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644717952\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('dd6b188f-523a-4b55-b4c2-168f2e554f99','31648963092','663743560 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9595 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/663743560\n\nYour shipment with the number 663743560 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9595. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/663743560\n\nBICARGO','1','6fc699fb-c118-45cb-9d3b-8275ec921ec5',NULL),
('dd757b89-303d-4c81-8120-4d59e8b3538c','491731888801','Sayın CİHAN KÖSELER, 657734229 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657734229\n\nDear CİHAN KÖSELER, your shipment with 657734229 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657734229\n\nBICARGO','1','d534081c-07c5-470c-bed4-f699f4319aa1',NULL),
('dd77a5c9-ca86-465c-ae16-c07bfade63a4','31629103799','Sayın FERHAT SANUÇ  SSH, 011131883 nolu gönderiniz 9428 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011131883\n\nDear FERHAT SANUÇ  SSH, your shipment with 011131883 was delivered to you with the delivery code 9428. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011131883\n\n\nBICARGO','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('dd8188c9-ed09-4664-80f5-d98e5f5e51d3','905313340045','MEHMET SEKBAN adlı müşterinizin 437840419 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d1cfa6cc-2247-4475-be75-54d2bdd21d0c',NULL),
('dd82257d-7034-4e34-a88a-9922beae4f89','00491782351151','Sayın OKAN ERTÜRK, 735233033 nolu gönderiniz 1200 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735233033\n\nDear OKAN ERTÜRK, your shipment with 735233033 was delivered to you with the delivery code 1200. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735233033\n\n\nBICARGO','2','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL),
('dd87a358-0db7-4f19-b547-72129e95ae73','491781529585','Sayın KUDRET KALK, 371804669 nolu gönderiniz 3063 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371804669\n\nDear KUDRET KALK, your shipment with 371804669 was delivered to you with the delivery code 3063. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371804669\n\n\nBICARGO','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('dd8b06df-b7ef-47f7-8241-b6588fd22a5b','33768202556','Sayın LEPETİT CRİSTELLE, 221251932 nolu gönderiniz 2939 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221251932\n\nDear LEPETİT CRİSTELLE, your shipment with 221251932 was delivered to you with the delivery code 2939. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221251932\n\n\nBICARGO','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('dd95cb57-bc1a-4d7b-9e75-3990c59618f1','4917680676918','İletişim \n					Şöför Murat : +905321616048','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('dd95ea32-0f0e-46f7-8f6d-3edf87f5c5d5','905059175469','ASLIHAN GÜÇLÜ  adlı müşterinizin 428499287 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','ff039116-94c2-4c75-851c-9deaf4e01549',NULL),
('dd9a24cd-8309-4b86-8ffb-72a9416961d3','905325000478','ZEHRA ÖZALP adlı müşterinizin 412107970 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL),
('dd9e2bc2-c204-4d3e-8b77-bc468294c6a4','40754578343','Sayın MİAMİ STYLE , 982999114 nolu gönderiniz 9677 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982999114\n\nDear MİAMİ STYLE , your shipment with 982999114 was delivered to you with the delivery code 9677. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982999114\n\n\nBICARGO','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('ddab28a7-05ab-4105-91c2-099383915d00','4917620585657','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('ddaea284-3e94-4fdd-80cf-b9d30c324a3b','','ELVİN ÇETİN adlı müşterinizin 734955536 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','1447bfb1-b651-4bdb-b28a-c905ac844f05',NULL),
('ddb15134-c9be-4a82-b689-963a4c76bce6','905079358213','MEHMET BAYTOK SSH adlı müşterinizin 745253500 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('ddb393ec-37a7-4af6-833d-963a82f6c8cf','905461661672','Sayın yetkili; AKIN KARUT adlı müşterinize 644775291 nolu gönderinizin TRAVERTEN  ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 22.04.2025 09:55:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('ddb9ccd4-0899-4fe3-a2a6-e12f6ad4305e','4917683344866','Sayın EMRE YILMAZ, 745884226 nolu gönderiniz 9963 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745884226\n\nDear EMRE YILMAZ, your shipment with 745884226 was delivered to you with the delivery code 9963. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745884226\n\n\nBICARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('ddbf3c0a-7718-4bac-881f-e6974a4227ad','33777886864','982340056 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10995 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982340056\n\nYour shipment with the number 982340056 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10995. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982340056\n\nBICARGO','1','223c42ff-34b8-451f-8dd0-0377774e9c28',NULL),
('ddbf94c3-e19f-4862-80f4-ef75f2e53178','49017640508000','Sayın İLKAY ÇİFTÇİ, 35130528 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35130528\n\nDear İLKAY ÇİFTÇİ, your shipment with 35130528 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/35130528\n\nBICARGO','2','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('ddc02ad3-10e6-4945-b297-0549f9b19472','905350617509','LAURA SCHMİTT adlı müşterinizin 613721320 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','64f79831-49d1-48f5-a6e6-698737009565',NULL),
('ddc0e176-4ad0-40d4-91a3-abc9ed86a21e','905461661672','YUNUS HADIMLI adlı müşterinizin 644732617 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','73df0d9c-5733-4d04-8f77-6e191897e0ff',NULL),
('ddc6ac92-8b71-4bc6-8108-40e12bd93251','4915735324307','371381951 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8319 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371381951\n\nYour shipment with the number 371381951 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8319. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371381951\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('ddcdd720-9864-4936-8b54-dafabac167d7','905079358213','Sayın yetkili; YUSUF ALAN SSH  adlı müşterinize 745639343 nolu gönderinizin CAPRİCE SANDALYE 1 ADET  ürünü 1 parça halinde Fatura adresinizden 30.04.2025 11:54:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('ddd0d7f0-9956-48ff-84fe-b3d9d3ff66a5','5334943834','478339664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478339664\n\nYour shipment with the number 478339664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478339664\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('ddd2eeed-39c2-4ca0-a0c0-98d6d98ea1d7','905318109098','Sayın yetkili; YILMAZ ÇELİK adlı müşterinize 455160997 nolu gönderinizin BAZA BAŞLIK YATAK ürünü 14 parça halinde Fatura adresinizden 14.10.2025 17:09:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','39bb85ad-efc0-4fc2-9377-e76f06d914ca',NULL),
('ddd4b88f-adf1-4948-a17b-a5bbffbd36d1','905331602195','Sayın yetkili; M.CEDRİC KLEINDIENST adlı müşterinize 221850151 nolu gönderinizin 90x180-220 açılır masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:05:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('ddd8def4-94e9-4d57-a949-5488f9a6b4e5','41792079376','745724680 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9627 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745724680\n\nYour shipment with the number 745724680 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9627. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745724680\n\nBICARGO','1','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL),
('dde13459-5093-48f5-8837-d98664dc3b3c','4915259155926','449902693 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2083 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449902693\n\nYour shipment with the number 449902693 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2083. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449902693\n\nBICARGO','1','2a84330e-2f6b-4172-ac76-ba18ce40bd1c',NULL),
('dde26a4b-5ee0-414f-b174-cbb9fb5e8ea8','4915784866219','501981507 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6910 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501981507\n\nYour shipment with the number 501981507 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6910. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501981507\n\nBICARGO','1','04b906a6-7837-4515-810d-2b36aefb9873',NULL),
('dde7f324-c903-4c31-90a6-f221b42d3eb0','905336367828','HABİL ŞENER  adlı müşterinizin 982864044 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','994c111c-e6b7-4e44-a12d-e02010c92c4a',NULL),
('ddea1ebb-6049-4cf0-bd73-1252096b0908','491741928164','371280361 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5649 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371280361\n\nYour shipment with the number 371280361 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5649. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371280361\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('ddeb613f-eaba-415c-a03f-1e6a49ece625','491783919050','Sayın MÜCAHİT SÖYLEMEZ, 478342417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478342417\n\nDear MÜCAHİT SÖYLEMEZ, your shipment with 478342417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478342417\n\nBICARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('ddec56eb-5408-4559-b5d8-94d30ed32dc7','905461661672','Sayın yetkili; ÖZLEM KIZILARSLAN adlı müşterinize 644650618 nolu gönderinizin SANDALYE ürünü 3 parça halinde BALİ SANDALYE adresinizden 28.04.2025 09:58:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('ddfa1534-a6c8-4c9f-a16b-10b66232c2aa','033782054435','Sayın ALİ KIZILKAYA, 734482220 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734482220\n\nDear ALİ KIZILKAYA, your shipment with 734482220 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734482220\n\nBICARGO','2','313ea73f-ae21-453f-98ea-2178061648bd',NULL),
('de030151-9296-451b-bef9-e4711ac161a8','905442774505','ERGÜN AKSOY adlı müşterinizin 657147391 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('de0987ba-0779-4fd8-ad04-5dbb38caf90e','49176322545443','Sayın NURTEN YILMAZ, 338411614 nolu gönderiniz 7636 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338411614\n\nDear NURTEN YILMAZ, your shipment with 338411614 was delivered to you with the delivery code 7636. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338411614\n\n\nBICARGO','2','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('de0d3983-a4e2-45f1-8ad9-0986bda4f658','4915771419674','278498481 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10088 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278498481\n\nYour shipment with the number 278498481 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10088. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/278498481\n\nBICARGO','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('de11c889-f619-45f9-beb9-f444875a3a7a','436763436191','Sayın MEHMET DAĞDEVİREN, 745485271 nolu gönderiniz 4227 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745485271\n\nDear MEHMET DAĞDEVİREN, your shipment with 745485271 was delivered to you with the delivery code 4227. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745485271\n\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('de1a4f63-09c9-4240-871c-b479b14577ef','4917682356727','Sayın FLORJEN KRASNİGİ, 982310142 nolu gönderiniz 9726 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982310142\n\nDear FLORJEN KRASNİGİ, your shipment with 982310142 was delivered to you with the delivery code 9726. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982310142\n\n\nBICARGO','1','7bc83ab8-fd3a-4a00-a977-e067a1ad530c',NULL),
('de202d53-0e3c-46cb-bf68-021cefe0a449','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223385669 nolu gönderisi 53 parça halinde yola çıkmıştır.','1','5ae8d626-7580-4933-b99b-5dc0ec84d646',NULL),
('de2369fa-9482-4563-9027-c21008d319cd','33623912069','Sayın NAFİLE HANIM, 976543269 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976543269\n\nDear NAFİLE HANIM, your shipment with 976543269 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976543269\n\nBICARGO','1','f97838bf-6f9a-497c-88e0-36e7f07964ff',NULL),
('de29ac95-c3ef-48f6-b7f6-34b490ae2129','4917663870920','Sayın AZAT ALKAN, 35119636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35119636\n\nDear AZAT ALKAN, your shipment with 35119636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/35119636\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('de2f90bc-2131-4075-9fc6-57668e828b5b','436609400015','Sayın MERVE ÖZÇOBAN, 657192716 nolu gönderiniz 3967 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657192716\n\nDear MERVE ÖZÇOBAN, your shipment with 657192716 was delivered to you with the delivery code 3967. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657192716\n\n\nBICARGO','1','564fedca-e233-4201-9160-9d65dc5da199',NULL),
('de3025e2-5563-4d7e-80a6-2ee2a430038f','905335511664','ŞENGÜL BABAOĞLU adlı müşterinizin 371304914 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7af2880d-3a81-482d-afb4-351d64968ae8',NULL),
('de3222f6-e7a8-4a34-a307-6dac81c02d51','491603319879','Sayın ALEYNA, 817395462 nolu gönderiniz 4201 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817395462\n\nDear ALEYNA, your shipment with 817395462 was delivered to you with the delivery code 4201. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817395462\n\n\nBICARGO','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('de355fcf-edc1-4be4-af0a-4fea520907ca','905461661672','KIYMET DALMAN(K) adlı müşterinizin 644742878 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('de36849a-eec9-4347-9347-36f380992203','905079047428','Sayın yetkili; YUSUF IŞIK adlı müşterinize 449582137 nolu gönderinizin Yatak odası dkm de.    -.  Dresuar yatak çelik kapı bziim adreste ürünü 30 parça halinde Fatura adresinizden 24.12.2024 11:05:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('de38bb87-b3ff-4f38-911a-624ebd65bb70','491604615612','Sayın AHMET AĞIRMAN, 371413703 nolu gönderiniz 8985 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371413703\n\nDear AHMET AĞIRMAN, your shipment with 371413703 was delivered to you with the delivery code 8985. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371413703\n\n\nBICARGO','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('de3d6917-9865-4994-abec-ae10e460b904','905078062550','Sayın yetkili; MEHMET ULUIŞIK adlı müşterinize 598614826 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 15.08.2025 16:16:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('de468f62-704d-46a4-b09c-2279f94b8627','905331602195','Sayın yetkili; MOHAMED CHAMLALİ adlı müşterinize 221920880 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 08.10.2025 18:04:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c6e5fe36-4cb2-4837-b35f-93523014a3bd',NULL),
('de476614-79c2-4084-8d95-9d1bb2a97b95','4917620954584','896769535 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6357 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896769535\n\nYour shipment with the number 896769535 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6357. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896769535\n\nBICARGO','1','02252192-88b5-496d-97b8-647d4bed1035',NULL),
('de4c9f25-9613-4728-bcb7-0f6e753e6db6','4915234223357','598226174 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6547 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598226174\n\nYour shipment with the number 598226174 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6547. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598226174\n\nBICARGO','1','6d081276-ddf8-46f0-93cd-4f0c203eb705',NULL),
('de503873-f130-4261-ba5a-ad9a16741da5','436608763006','478861689 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8305 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478861689\n\nYour shipment with the number 478861689 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8305. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478861689\n\nBICARGO','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('de510a1e-72bd-4799-b798-b1d6ca955318','491742764385','Sayın GAZEL AĞAÇKIRAN, 126908301 nolu gönderiniz 5913 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126908301\n\nDear GAZEL AĞAÇKIRAN, your shipment with 126908301 was delivered to you with the delivery code 5913. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126908301\n\n\nBICARGO','1','863a4d29-ce12-4697-a15e-977449f015c7',NULL),
('de5a787e-b125-44b3-aab0-bedcab1168a4','905451571652','TARA SAİDA adlı müşterinizin 531893295 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','dec449a3-13d6-40c8-925a-d1283d5b0a59',NULL),
('de5f830f-df36-4283-91f8-838b5494a4f2','905365908694','DİE FABRİK OUTLET adlı müşterinizin 223422825 nolu gönderisi 343 parça halinde yola çıkmıştır.','1','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('de61441a-d89c-4152-bdd0-0c76d174b2f0','491606303499','644832811 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7804 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644832811\n\nYour shipment with the number 644832811 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7804. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644832811\n\nBICARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('de664b13-5035-4732-92df-a996168fe66e','905075277637','Sayın yetkili; MAJD KAMSHA adlı müşterinize 745653378 nolu gönderinizin PIER YEMEK MASASI  ürünü 3 parça halinde Fatura adresinizden 23.09.2025 10:48:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ac0a338-8b61-4b6e-8d27-47ea7b29f8b7',NULL),
('de665657-10a8-44b9-a7b2-c442dec5e08f','491731829748','Sayın GÖKHAN ÜLKER, 371944289 nolu gönderiniz 8457 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371944289\n\nDear GÖKHAN ÜLKER, your shipment with 371944289 was delivered to you with the delivery code 8457. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371944289\n\n\nBICARGO','1','ed15bdd7-b954-4a77-83a4-3809681dbb05',NULL),
('de6dd7e4-e085-4126-97dc-6b9490d05ad1','4917621666906','Sayın ELİSABETH BRUCH, 371807983 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371807983\n\nDear ELİSABETH BRUCH, your shipment with 371807983 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371807983\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('de729ba7-01f8-4059-aec3-73f04ebca973','905318109098','Sayın yetkili; Huseyin gündüz  adlı müşterinize 455614339 nolu gönderinizin Yavrulu yatak ürünü 7 parça halinde Ekin bebe adresinizden 04.11.2024 16:15:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('de792273-86d8-4bf9-ade6-a05d8a6f8fcb','905078062550','BERİVAN PALAVAN adlı müşterinizin 598903023 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','43632aad-d9e3-4042-a98c-3de650df2487',NULL),
('de7a289e-7c66-4e1f-a3b9-0e55d02bbb35','905331602195','Sayın yetkili; AYŞE TÜRKMEN  adlı müşterinize 221507815 nolu gönderinizin Orta sehpa  ürünü 2 parça halinde Fatura adresinizden 13.01.2025 10:22:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fef7900-6144-44c7-9378-415e663633c9',NULL),
('de7fce9c-70b5-481c-ad31-e56e2f89a935','905304259202','İNCİ TOKGÖZ adlı müşterinizin 478240909 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('de83a37f-cc93-4712-a740-8043b338f1a4','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin GARDEROBE PETRA 160\'LIK KARYOLA(BAZALI) ürünü 6 parça halinde GARDOREBE adresinizden 12.09.2025 14:04:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('de8e632e-bcc1-4682-8c7d-4a916c33cbc6','491732013160','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('de8f5126-8874-460e-9710-8360c0807ca1','4915758009049','745907299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7871 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745907299\n\nYour shipment with the number 745907299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7871. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745907299\n\nBICARGO','1','6fe06ae2-3155-4059-8f77-a92d8d23543a',NULL),
('de93e483-f0f3-4b40-ada0-ce90959b2e88','00491749246020','Sayın MESUT BEY, 248720273 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248720273\n\nDear MESUT BEY, your shipment with 248720273 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248720273\n\nBICARGO','2','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL),
('de98648c-1d46-44f6-988a-eb4686f55951','31614991851','Sayın AYSUN ELİBÜYÜK, 478273603 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478273603\n\nDear AYSUN ELİBÜYÜK, your shipment with 478273603 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478273603\n\nBICARGO','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('de9b4806-c27a-49fc-a76e-0638152e4fba','905333221039','FİRAS MACHANTAT adlı müşterinizin 750505145 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('de9d4c76-52c6-477c-ad7d-6adbf055756b','905461661672','Sayın yetkili; HAKİF ZİNAL adlı müşterinize 644330933 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MODO KOLTUK adresinizden 26.06.2025 17:37:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('dea4b9d0-4a70-47ed-8d73-2303eaceb268','905461661672','SEDA ERSÖZ adlı müşterinizin 644823609 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6189b41d-2a4c-42b9-b146-5fe82bdc676b',NULL),
('dea954ed-19d0-494a-992b-f7bb292545bd','32467611773','Sayın PELŞİN YILDIZ, 478245028 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478245028\n\nDear PELŞİN YILDIZ, your shipment with 478245028 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478245028\n\nBICARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('deab34c5-986f-49c4-b070-0961f9bf6dea','905517075149','CELİNE KARA adlı müşterinizin 478164511 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('deabedc3-bd42-4b68-9d00-394a6465d7e8','905517075149','MERYEMA TEKİN adlı müşterinizin 478958383 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','13f14d6a-f39d-4909-acdc-fedbca6dd80d',NULL),
('deafee75-b078-470a-8b25-7c599d1f454a','4915773625355','Sayın MERVE DEĞİRMENCİ, 371665826 nolu gönderiniz 2623 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371665826\n\nDear MERVE DEĞİRMENCİ, your shipment with 371665826 was delivered to you with the delivery code 2623. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371665826\n\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('deb345b6-8fbd-4df5-a74f-065aaf112257','31627458014','412665767 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4139 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412665767\n\nYour shipment with the number 412665767 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4139. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412665767\n\nBICARGO','1','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL),
('deb6c18f-696d-45d7-b051-45adcdfc1dd3','905313340045','Sayın yetkili; MARİGLEN SHKEMBİ adlı müşterinize 437431907 nolu gönderinizin masa ürünü 4 parça halinde masami adresinizden 07.05.2025 14:31:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3014fb42-2f2f-486f-8a00-c9ecf3f7497c',NULL),
('dec1494c-6dc5-4e43-9c48-19565a203905','4917656342150','Sayın FURKAN YESARİ GÜVEN, 910995300 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910995300\n\nDear FURKAN YESARİ GÜVEN, your shipment with 910995300 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910995300\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('dec4310f-761b-4d22-b570-238c0b4b1f9b','905363385813','EVMOURZAEVA İMAN adlı müşterinizin 976751266 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f63ff1b9-4bf8-4f20-b9ad-8c7466498584',NULL),
('dec698ac-e974-48aa-a033-b9fee9d71d08','9053259981980','YILDIRIM ASLAN adlı müşterinizin 614339204 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','aa2cf5a9-9070-43b4-b152-2dfe60634cc3',NULL),
('dec6b0b2-9fd7-4b18-b7e1-6d8970540b7c','905350617509','SEVİM KARATEKE  adlı müşterinizin 613528305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9be4fbf2-e524-42ba-8a6f-68bf9bbf1d17',NULL),
('dec9f377-c7d1-4613-ab91-0c4a817a8a2e','905075277637','GÜLDEN KARADAĞ adlı müşterinizin 745291553 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3e6f544c-260c-4661-9a22-59d5cb509c0a',NULL),
('deca7098-eca2-4ec5-9b0f-6ee3c598b5d3','491743967643','Sayın RUKİYE DARDANOĞLU, 976521198 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976521198\n\nDear RUKİYE DARDANOĞLU, your shipment with 976521198 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976521198\n\nBICARGO','1','bb42b5ec-6fe1-44c7-ac46-c43f160658e9',NULL),
('ded070ea-57f0-4811-b9df-f125e0ddcc5a','905325000478','FUNDA HANIM adlı müşterinizin 412149383 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL),
('ded26269-9cf7-4ea5-98b9-fd51f715a258','905075277637','Sayın yetkili; HUSSRAH MUHAMAD adlı müşterinize 745464679 nolu gönderinizin KING PLATIN BAZA SETİ 160X200 ürünü 4 parça halinde Fatura adresinizden 15.09.2025 19:49:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('ded6adff-c690-4825-a1b3-f743a9790bba','32490369779','Sayın ALİ ERKOCA, 745177264 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745177264\n\nDear ALİ ERKOCA, your shipment with 745177264 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745177264\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('dedba2a9-7d8d-4179-acbc-ee8c32945716','905011170016','Sayın yetkili; YONCA KILIÇ adlı müşterinize 380417164 nolu gönderinizin SEHPA ürünü 1 parça halinde Fatura adresinizden 15.04.2025 16:32:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('dedd8eb0-11f0-49e8-810f-631bcd318776','436606544408','Sayın SUHAD AL-ASADİ , 675124573 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675124573\n\nDear SUHAD AL-ASADİ , your shipment with 675124573 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675124573\n\nBICARGO','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('dee65166-f254-4a8e-803e-10f849e7fdec','905350617509','HANDE PALMA adlı müşterinizin 61378160 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('deedae74-b56a-45b4-b967-10c15e424422','4917681017112','İletişim \n					Şöför Uğur Acar +905424435917','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('deeec3c0-dae4-41a3-8523-238fa3451229','905333323012','Sayın yetkili; HİSNA FERADİ adlı müşterinize 695570555 nolu gönderinizin sehpa ürünü 2 parça halinde masami  adresinizden 20.06.2025 18:53:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f6807e5-5c09-4383-bd17-acc03cf88760',NULL),
('def0ba33-050d-4f56-9cc2-79f0629df801','33660990222','Sayın KEMAL ETKER , 47876427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47876427\n\nDear KEMAL ETKER , your shipment with 47876427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47876427\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('def2ea51-af9a-4402-bf64-85276ee1a097','4917624885131','598220619 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7642 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598220619\n\nYour shipment with the number 598220619 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7642. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598220619\n\nBICARGO','1','4976e309-54de-42bc-9a9b-1f542a9bd4d0',NULL),
('def366e9-8e2a-4c7a-9f29-18f65bb9fad0','905461661672','Sayın yetkili; MAKBULE ATEŞ adlı müşterinize 644463972 nolu gönderinizin SANDALYE ürünü 6 parça halinde ELAKSA SANDALYE adresinizden 23.10.2025 10:34:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','52951d3a-938c-4ea9-baf5-8e4605f5a78f',NULL),
('def5ed4c-6030-4993-b275-8c3df3fcb2c4','491737526626','Sayın GALİNA KAMERER , 613499620 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613499620\n\nDear GALİNA KAMERER , your shipment with 613499620 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613499620\n\nBICARGO','1','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('defadad7-b700-4018-8fe8-a1bb90c10a97','33769000460','478337610 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7431 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478337610\n\nYour shipment with the number 478337610 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7431. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478337610\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('defeb8c0-ce3c-4e78-9e3b-78e4b9f7b09a','4917624718439','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('defebd54-50a6-431e-8bd9-a45fdbbd6c33','4917615735547','Sayın ÖMER VAROL(K), 644714925 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644714925\n\nDear ÖMER VAROL(K), your shipment with 644714925 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644714925\n\nBICARGO','1','8886c04f-f904-4e77-a2f1-25b72bcd1e91',NULL),
('defeeff1-88fc-4e2b-bf3e-1982937001c3','4917670705129','644526832 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8022 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644526832\n\nYour shipment with the number 644526832 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8022. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644526832\n\nBICARGO','1','1a38a8c4-2aa6-4815-816b-49ef6b71901e',NULL),
('df01ba29-ad2c-4f71-a036-0e4b38528613','905078062550','Sayın yetkili; AHMAD KADİ adlı müşterinize 598102662 nolu gönderinizin baza başlık ürünü 6 parça halinde ALBESSA HOME adresinizden 01.08.2025 14:59:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('df045389-da04-4935-ac11-b9e1d1fc8230','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin PRAGMA L DOLAP + ADA + ŞİFONYER + PUF ürünü 16 parça halinde FAMILY adresinizden 21.08.2025 11:42:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('df05e9a0-4f0c-4820-a9bb-9d2bc16b3c80','905449041398','SEYFETTİN adlı müşterinizin 703183067 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','90273c80-e292-4a76-8be5-a4c812e9f569',NULL),
('df09c75d-19f5-492e-bc84-59fd2d154ac9','33749990296','478603328 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4032 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478603328\n\nYour shipment with the number 478603328 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4032. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478603328\n\nBICARGO','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('df0b0599-9074-4482-91f4-67b44006d6eb','905350617509','Sayın yetkili;  RİM MOUSSA  adlı müşterinize 613868869 nolu gönderinizin Karyola ürünü 5 parça halinde Moe Bedding adresinizden 11.04.2025 16:55:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d717ffb-678b-4e82-9f61-5357693131d8',NULL),
('df0c139c-2005-4169-9e11-039db1bb151d','4917672932158','Sayın RABİA DULU, 517278082 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517278082\n\nDear RABİA DULU, your shipment with 517278082 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517278082\n\nBICARGO','1','7c83f71f-ed74-4432-ad8e-a9c72ac3d1b9',NULL),
('df165216-7635-49b9-9d9f-1b78b57e50b0','905336367828','ESİN TUNCA adlı müşterinizin 982314530 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('df19bb2c-f46a-4958-ba77-4e85a806562c','905075277637','Sayın yetkili; EBRU DEMİRHAN SSH adlı müşterinize 745433427 nolu gönderinizin SSH SEHPA KIRLENT  ürünü 3 parça halinde Fatura adresinizden 09.07.2025 17:30:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','930adcd5-da6e-48f4-89c5-29b62fffc488',NULL),
('df1dcd72-1276-4c26-be16-f85ad3f7a7de','4915228033800','Sayın GÖNÜL GİDER, 428671806 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428671806\n\nDear GÖNÜL GİDER, your shipment with 428671806 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428671806\n\nBICARGO','1','641b07ae-f1a1-4ba6-b157-d3d15b50b73d',NULL),
('df3c39de-29ee-474a-a0fd-15454e3929fe','436601425568','449292416 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7258 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449292416\n\nYour shipment with the number 449292416 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7258. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449292416\n\nBICARGO','1','924b0645-442a-4c8d-bf1e-f897f1aa0792',NULL),
('df3d8152-e1f5-4f34-9788-71ac097524ad','1111111111','41268257 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2552 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41268257\n\nYour shipment with the number 41268257 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2552. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41268257\n\nBICARGO','2','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('df3e9579-920f-466c-8dc9-fd02a6d286e7','4917683242362','Sayın KENAN BAYAR SSH , 745101735 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745101735\n\nDear KENAN BAYAR SSH , your shipment with 745101735 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745101735\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('df45d648-b7fb-40b6-beb2-033297e98354','1111122342423133','Sayın MAİL BOXES ETC, 223379282 nolu gönderiniz 9493 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223379282\n\nDear MAİL BOXES ETC, your shipment with 223379282 was delivered to you with the delivery code 9493. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223379282\n\n\nBICARGO','2','0a76a60a-33b8-43ca-a666-e1704b2975e3',NULL),
('df506a3e-43c3-4e68-9476-7b8fa7480337','905078062550','Sayın yetkili; SİHAM MAHMOUD adlı müşterinize 598280715 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 14.08.2025 15:06:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9e64600d-1c01-44ab-9728-6619d083385a',NULL),
('df553f0b-6cbe-4699-9297-77edb8be4158','905336367828','Sayın yetkili; AYHAN ATEŞ adlı müşterinize 982979874 nolu gönderinizin masa ürünü 3 parça halinde Riyo home adresinizden 30.12.2024 11:05:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f64732c3-76ae-4710-b1ac-fb3732ed150b',NULL),
('df64a1e9-93bb-42f2-9bb5-da132895198e','905079358213','Sayın yetkili; GÖNÜL BOZKURT adlı müşterinize 745436157 nolu gönderinizin BOHEM KOLTUK TAKIMI  ürünü 4 parça halinde INHOUSE  adresinizden 10.06.2025 11:49:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2791411b-f352-4706-ac7e-e1f3dcb20fa4',NULL),
('df737eb3-82a3-4720-9ff7-01134ca53af2','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin 40x40 traverten orta sehpa ürünü null parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:42:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('df750e97-d97f-4033-a44c-cf86946882d5','905079358213','GÜLÜZAR KECKİN adlı müşterinizin 745276257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('df848130-490f-41fe-86f9-894c96b16cb2','905331602195','HATİCE ÖZTÜRK adlı müşterinizin 221621737 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c3d6a144-9f64-4576-9ddc-760d75c937fc',NULL),
('df84c180-c027-4580-af27-cf663d5ecba5','905461661672','ÖZLEM KIZILARSLAN adlı müşterinizin 644650618 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('df880da4-9729-4fff-bee7-045d4336f439','905534084469','Sayın yetkili; AYŞE ÇÖPLÜ adlı müşterinize 127530070 nolu gönderinizin TRAVERTEN MASA ürünü 1 parça halinde Fatura adresinizden 24.01.2025 18:59:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('df89d224-06b0-4639-b3df-902a986e2409','0033771681508','735553146 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7162 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735553146\n\nYour shipment with the number 735553146 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7162. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735553146\n\nBICARGO','2','eaa51aa1-ed22-40f6-aba9-7ab42aedf9c5',NULL),
('df8c1509-5132-4fdf-a344-b070c1505969','491784094408','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('df8c6470-0505-482e-9f89-3f56f39c810a','905517075149','Sayın yetkili; FAHRETTİN AKISKA adlı müşterinize 478339664 nolu gönderinizin berjer 2 adet ürünü 2 parça halinde ganze koltuk adresinizden 30.09.2025 19:03:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('df96d053-2a76-4a1b-bbce-fa8962233797','33613393054','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','84a619fc-ad14-46ac-8e5d-a6ee1d4d043a',NULL),
('df99fe60-d1f4-4028-966b-7ce68f128e5a','4915223076449','Sayın MURAT TEKİN, 371437952 nolu gönderiniz 5228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371437952\n\nDear MURAT TEKİN, your shipment with 371437952 was delivered to you with the delivery code 5228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371437952\n\n\nBICARGO','1','f88a76d7-303d-42cd-8c6a-7f28ae3b408e',NULL),
('df9c97ba-6aab-483f-8600-5f6909b9864f','33786032286','Sayın ÖZKAN BALCI, 478261585 nolu gönderiniz 7928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478261585\n\nDear ÖZKAN BALCI, your shipment with 478261585 was delivered to you with the delivery code 7928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478261585\n\n\nBICARGO','1','06b3bca1-81d3-4d2e-aac3-ecfb97ce4fa5',NULL),
('df9cf642-232d-436f-b738-c003f86b023a','330624632282','Sayın AYHAN AKTAŞ , 982685222 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982685222\n\nDear AYHAN AKTAŞ , your shipment with 982685222 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982685222\n\nBICARGO','1','2c33166e-fb4c-4cb3-9a1e-21ba4ca58d37',NULL),
('dfa6eb7d-054f-4d79-b623-de9a716a607e','905461661672','Sayın yetkili; ÜMİT MORCA SSH adlı müşterinize 644760466 nolu gönderinizin ünite blok cam kapak ve raf ürünü 1 parça halinde ALİDEN MOBİLYA adresinizden 11.09.2025 13:56:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('dfa96b97-b5a5-4202-9d1e-31a64432c202','905336367828','TAMES PREİN JANY adlı müşterinizin 982545187 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','7cefa81c-deac-4617-8809-7002f9076b03',NULL),
('dfabdf44-44c4-4fce-aa5c-f718e6cd3537','4915147045689','223963997 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2803 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223963997\n\nYour shipment with the number 223963997 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2803. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223963997\n\nBICARGO','1','5623dd4f-820f-4c2b-b881-83711ff989fd',NULL),
('dfb39b86-8859-452b-9198-e00b0ec19989','4915731155565','Sayın KHALED AHMAD, 248890689 nolu gönderiniz 3789 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248890689\n\nDear KHALED AHMAD, your shipment with 248890689 was delivered to you with the delivery code 3789. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248890689\n\n\nBICARGO','1','62c72b38-75cc-4808-b1d5-7296d0000146',NULL),
('dfbbd288-e5df-499f-b957-b152faa1315c','905331602195','Sayın yetkili; MUSA BEKİM adlı müşterinize 221624652 nolu gönderinizin 90x160 mermer baskı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 12.03.2025 14:46:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dbf93f9-e436-46b7-8455-aa2f9617afb4',NULL),
('dfbdc468-cb1b-42af-909e-b697f308a6d4','905363385813','HASAN ULUSOY adlı müşterinizin 976819499 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cc8347aa-14af-4bef-ac88-92a4a5c8063b',NULL),
('dfbe9c6d-8132-4477-b249-fd86ee5812d5','905461661672','AYLA BAYKAL adlı müşterinizin 644606140 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('dfc1c1b3-fd4f-40b1-92b1-e656fbdd0c01','905336367828','Sayın yetkili; OMARI EMAL  adlı müşterinize 982751417 nolu gönderinizin yatak 160*200 ürünü 1 parça halinde bed home  adresinizden 15.04.2025 17:15:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','45e284ed-6c80-498d-bd79-6d394761aa92',NULL),
('dfc30e7c-3337-4952-9033-5d90673b8836','33652406089','Sayın YENER DOĞAN, 50119540 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/50119540\n\nDear YENER DOĞAN, your shipment with 50119540 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/50119540\n\nBICARGO','1','30753652-c249-4370-954e-0eb227ea17aa',NULL),
('dfc62e9c-23aa-47d7-bd11-366783d64959','905357955726','MİKAİL VUREL adlı müşterinizin 315903894 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5beae305-2b0d-4fcb-8a79-b68e23b3bcf1',NULL),
('dfc6c8f4-bf08-4ee7-94c3-e192b7f4aa3c','4915753005551','Sayın NİSRİN GHARİB HASSAN , 817747938 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817747938\n\nDear NİSRİN GHARİB HASSAN , your shipment with 817747938 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/817747938\n\nBICARGO','1','9304190a-dd40-4d16-b7c3-2f3a039dd301',NULL),
('dfc6e419-a58e-4e62-bc0d-988126a8fa9c','905325000478','ÖMER METZ adlı müşterinizin 412647671 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL),
('dfc99794-0848-41ba-a520-a1789aed447c','905313340045','EZGİ YÜCEL adlı müşterinizin 437713339 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('dfd15afb-4dc6-45a3-a00b-1bac8137c903','32497224149','Sayın BARIŞ ÖZTÜRK, 750355737 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750355737\n\nDear BARIŞ ÖZTÜRK, your shipment with 750355737 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750355737\n\nBICARGO','1','bd80bdec-0c89-4c10-9849-bbafe5a44605',NULL),
('dfd328da-3c0c-4bb9-9f5d-f4e7f7a5e465','905331602195','AYEOLOWO SEKİNAT adlı müşterinizin 221433158 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','26dc53f3-1a21-44ea-a0d6-f51c8996bf85',NULL),
('dfd4c074-65d4-4f8b-8af7-977cc54beffe','905461661672','Sayın yetkili; ETEM FIRAT YÜKSEL(K) adlı müşterinize 644664237 nolu gönderinizin SEHPA ürünü 2 parça halinde Masami Mobilya adresinizden 23.09.2025 15:30:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('dfd6d7fd-8e6d-41b6-be63-f81a8b35639f','905534084469','İSMET LEVENT adlı müşterinizin 151258703 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('dfdd5397-fcf8-4184-8c04-e5121289cb43','905078062550','Sayın yetkili; DUYGU YILDIZ adlı müşterinize 598396998 nolu gönderinizin MASA SEHPA ürünü 6 parça halinde RİO FATİH adresinizden 19.09.2025 10:27:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aee090b4-4bf2-4cde-89e9-1e2353dcb896',NULL),
('dfeee838-535b-4fa7-a813-46670f134020','4917624317947','598168850 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9539 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598168850\n\nYour shipment with the number 598168850 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9539. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598168850\n\nBICARGO','1','044a52d2-c11d-4386-8992-ff1211fd99c9',NULL),
('dff5aac4-acf9-444c-8138-0f7ab2bb823f','905313340045','Sayın yetkili; SANİYE BIÇAKÇI adlı müşterinize 43774917 nolu gönderinizin Kampanya köşe ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 30.08.2025 18:27:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ed3d8b7-5e55-437d-b2cb-c80e4f63010b',NULL),
('dffa9ac0-a5c4-4881-af75-e124e5c5dd6f','905461661672','BURAK YAKUT adlı müşterinizin 644975430 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('dffc814b-4636-48c2-a656-5407b3dfc657','32470754918','221396383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8907 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221396383\n\nYour shipment with the number 221396383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8907. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221396383\n\nBICARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('dffc8227-f33b-495d-a661-70fdc1d7758a','491774633410','59856960 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6323 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59856960\n\nYour shipment with the number 59856960 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6323. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/59856960\n\nBICARGO','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('dffe7855-845d-4c5c-8447-483bfc368357','905461661672','MAZHAR BAYMAN adlı müşterinizin 644903033 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('e0021e94-7d77-4faf-93cf-edfabcd91ed0','905331602195','BETÜL YILDIZ adlı müşterinizin 221811614 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('e003f575-6eb4-4fd6-8015-6ed2c5cd7aaa','905331602195','Sayın yetkili; HAMİDİ SONİA  adlı müşterinize 221949733 nolu gönderinizin Balat sandalye ceviz ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 08.07.2025 09:34:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('e00d9216-d309-433f-9aa1-d31d8918dfbf','905335708965','ENGİN POSETLERDEN KALAN KUTU  adlı müşterinizin 248188933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL),
('e0111410-e5c8-42a4-af0c-31b76c7efe8f','436608636840','Sayın ZEYNEP ŞİMŞEK, 437442386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437442386\n\nDear ZEYNEP ŞİMŞEK, your shipment with 437442386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437442386\n\nBICARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('e015fa21-601a-4010-99b2-e33c8893f9a0','905335511664','HAMİYET KARASOY adlı müşterinizin 371876767 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('e0169f0d-d834-4409-a9b3-0604618ab895','33652632895','Sayın BURAK YAKUT, 644975430 nolu gönderiniz 7221 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644975430\n\nDear BURAK YAKUT, your shipment with 644975430 was delivered to you with the delivery code 7221. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644975430\n\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('e019842d-2fcc-4200-9159-f7fbbc4d5d97','905349208933','Sayın yetkili; HARUN ERCAN adlı müşterinize 127847689 nolu gönderinizin masa ve sehpa ürünü 3 parça halinde masavia adresinizden 14.05.2025 12:56:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('e019f62e-1038-4fdf-8eef-b52e2e4ed4f6','436603406293','SUHAD AL-ASADİ  adlı müşterinizin 675124573 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','bd298d61-17ac-40db-8ec3-3741f3c4e017',NULL),
('e0212305-1456-46d4-b301-80dbca94a799','905304259202','Sayın yetkili; MÜCAHİT SÖYLEMEZ adlı müşterinize 478342417 nolu gönderinizin yemek odası ürünü 7 parça halinde çelikbey inegöl depo adresinizden 14.05.2025 15:24:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('e0225aa7-f5ea-4df0-b3e6-e1f470f5def0','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Sehpa ve Masa üst tablası ürünü 3 parça halinde Masa Via adresinizden 13.05.2025 12:48:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('e026998d-7f2a-4c6d-b684-8f6bbe64e449','4917670490126','765484490 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6953 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765484490\n\nYour shipment with the number 765484490 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6953. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765484490\n\nBICARGO','1','db8cb965-bd59-4527-8579-8cb4852d50ad',NULL),
('e02905d4-b722-4782-86ee-b1ce9703e234','905059175469','KADİR ÖZCAN adlı müşterinizin 428417364 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','321b5102-f51d-4d38-a21e-c4a2191ea4ac',NULL),
('e0346f67-a6ff-4064-9b1e-54ff63e88c71','33661693303','982716246 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10500 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982716246\n\nYour shipment with the number 982716246 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10500. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982716246\n\nBICARGO','1','05621906-10fc-483c-89a6-f51e344e576b',NULL),
('e037ba09-5be5-4a2e-91c1-d77eb493ce62','4915752861277','Sayın RABİA AKKUŞ, 644507096 nolu gönderiniz 7656 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644507096\n\nDear RABİA AKKUŞ, your shipment with 644507096 was delivered to you with the delivery code 7656. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644507096\n\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('e03c1b85-41ae-47cb-99eb-bf88dbfb02b0','41763221453','Sayın ZEHRA ÜNAL, 598320188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598320188\n\nDear ZEHRA ÜNAL, your shipment with 598320188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598320188\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('e0422699-bbeb-44a8-bc8a-69194d4da23b','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin 6 ADET SANDALYE ürünü 3 parça halinde Fatura adresinizden 15.10.2025 12:06:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('e0492581-fb87-4d9b-958b-43a7cb36f9be','491765457602','Sayın SEDA KURTDİNÇEL, 745431846 nolu gönderiniz 4909 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745431846\n\nDear SEDA KURTDİNÇEL, your shipment with 745431846 was delivered to you with the delivery code 4909. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745431846\n\n\nBICARGO','2','9a1e163d-879a-4faa-97dc-a573fdac190c',NULL),
('e055518c-520e-484a-986f-e051fae1028b','4917623697326','644424764 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7577 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644424764\n\nYour shipment with the number 644424764 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7577. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644424764\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('e057ccd7-709c-4d10-bced-3be7863cdd14','905350617509','ASLAN MURTAZALİEV adlı müşterinizin 613669036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d94a3df6-39ff-47f5-91f0-f3e59a85c828',NULL),
('e057ffbf-ed03-4f1f-af00-1738d9c8510c','905331602195','JASSEY COLİNE adlı müşterinizin 221190454 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','96fd2ec1-bc18-4e5c-aa54-b63b621f826c',NULL),
('e061ffb5-f806-4754-b74a-e1cc83e1bc74','905335511664','Sayın yetkili; MEHMET AKHAN adlı müşterinize 371998665 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 11.07.2025 14:57:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46aa945f-6044-4640-8ed8-99191e2890af',NULL),
('e0649703-9869-4104-b02d-11ad2761f527','905461661672','ERDEL SİBEL SSH adlı müşterinizin 644426448 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('e0699569-6c86-4e11-a7b8-84f5f702a885','4917683344866','Sayın EMRE YILMAZ SSH , 745771664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745771664\n\nDear EMRE YILMAZ SSH , your shipment with 745771664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745771664\n\nBICARGO','1','9ceddc5e-b1bd-43fc-a0d1-a49143fc9c3c',NULL),
('e069f208-a55d-4fdb-8963-444fade2a5c8','905079358213','METİN PEKSERT SSH  adlı müşterinizin 74597110 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('e06f9bc2-2dad-4a56-9729-202a4f296498','491712347917','İletişim \n					Şöför Murat : +905321616048','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('e075c9c6-06e3-419f-a136-dd84143218df','905078062550','Sayın yetkili; AYLİN MİYANYEDİ adlı müşterinize 598444930 nolu gönderinizin traverten masa ürünü 1 parça halinde Fatura adresinizden 24.07.2025 11:03:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e292f87-77b6-4b9a-bc20-8032bd3242f2',NULL),
('e0773905-76ca-4878-9fd3-ccc9769eae38','3464537473687444','223254418 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8688 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223254418\n\nYour shipment with the number 223254418 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8688. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/223254418\n\nBICARGO','2','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL),
('e0799911-9197-4db2-b453-5cfadffffa4a','905075277637','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin LAROS KARYOLA - PUF  ürünü 6 parça halinde Fatura adresinizden 20.08.2025 16:32:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('e07d4f4a-9b03-416b-ad0b-13e507972e3e','905331602195','VEYSEL POLAT adlı müşterinizin 221362176 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','3fe8ec1d-272b-4989-b3fb-4322708f7edf',NULL),
('e0804bfb-0830-4ff2-afc7-3526393801e3','905331602195','Sayın yetkili; İNAN PALA adlı müşterinize 221210071 nolu gönderinizin Silver sandalye  ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:42:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('e080d91c-9c75-4688-a697-3045e99f73c3','491628599053','Sayın MEHMET KANBEROĞLU, 976441354 nolu gönderiniz 6356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976441354\n\nDear MEHMET KANBEROĞLU, your shipment with 976441354 was delivered to you with the delivery code 6356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976441354\n\n\nBICARGO','1','82f7f211-f2f7-4707-aaf2-eb58043e049c',NULL),
('e0815912-c7fd-4fd4-a22a-9f2de7da5637','905510396989','ARZU ÜNLÜ adlı müşterinizin 319515461 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('e08181fb-4b1e-4465-9533-d24d21676156','4915772539240','Sayın ANAHİTA MORİD, 598412225 nolu gönderiniz 7006 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598412225\n\nDear ANAHİTA MORİD, your shipment with 598412225 was delivered to you with the delivery code 7006. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598412225\n\n\nBICARGO','1','44de58ec-edda-43a3-a838-2ef9d452d2ff',NULL),
('e0845112-3e97-4bd1-8b4e-2d5b7125eef1','905313340045','CEMAL İBRAHİMBAŞ adlı müşterinizin 437222135 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','b7407633-c428-448a-991c-9ae8a31e3782',NULL),
('e089da26-b392-47e9-a439-62af83ef9f8c','905069116877','Sayın yetkili; ZEHRA adlı müşterinize 817918521 nolu gönderinizin 2 adet masa  ürünü 5 parça halinde Fatura adresinizden 18.06.2025 11:03:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('e091a74b-87b7-4848-b449-a25a9bdf9753','905461661672','Sayın yetkili; ZELİHA ÖCAL adlı müşterinize 6442594 nolu gönderinizin köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 06.10.2025 16:49:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('e0980072-be89-400d-8902-20685ca2e2c1','905363385813','HAVVA GÜL adlı müşterinizin 976530579 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','6e0be5a1-e68c-498b-aab1-17f032d29cb5',NULL),
('e09a9793-c0e5-48c3-8422-6ce278703da8','33621355129','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','8facfb49-4d23-4b98-a41c-851f07a053e4',NULL),
('e09c194d-3bfb-400d-b5b0-c6d8e55bd00c','905363385813','Sayın yetkili; SOUQİ İMANE adlı müşterinize 976185606 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde SALON KOLTUK adresinizden 15.09.2025 11:05:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','92ff5019-7ca9-4eef-a75a-ac187b9be39d',NULL),
('e09e67ba-51b0-4c3a-8ae5-6e6b936da14c','33649427969','Sayın BURÇİN MEN, 745970479 nolu gönderiniz 9709 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745970479\n\nDear BURÇİN MEN, your shipment with 745970479 was delivered to you with the delivery code 9709. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745970479\n\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('e0a41ad9-6f92-4951-87e6-d9a449097e8f','905335708965','MURAT MAKAS adlı müşterinizin 248764146 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','88508694-0e8b-4ee8-a819-7c218ab0cce7',NULL),
('e0ac5c68-077c-4146-8509-35240189a961','905078062550','DAVUT BİNGÖL adlı müşterinizin 598530881 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('e0b2bcb9-fbfe-4646-b3f3-d2c93a9ce505','905078062550','Sayın yetkili; TOLGA KAPLAN adlı müşterinize 598463425 nolu gönderinizin MASA ürünü 5 parça halinde SM TASARIM adresinizden 30.07.2025 12:37:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('e0baf7f4-37b2-4892-9503-3e90dd137ea1','905335708965',' adlı müşterinizin 248864808 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8fc3b49-9b9c-4432-80be-0d9ce15dac6e',NULL),
('e0be5e9a-7d10-4772-8b4d-531d85118c5d','33778663770','Sayın M.CEDRİC KLEINDIENST, 221850151 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221850151\n\nDear M.CEDRİC KLEINDIENST, your shipment with 221850151 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221850151\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('e0bebdda-8c9c-4ba7-a6b2-a46ce9fdd7f1','905070491996','MERVE HANIM adlı müşterinizin 663164000 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','671dde40-cd76-4a65-bfd7-95fafdc3618a',NULL),
('e0d875b0-ed5d-4d10-b9a7-7830f8ea8760','905325000478','SEYFETTİN adlı müşterinizin 41298450 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('e0dc6991-d6fb-4d16-80a5-d3104ebff4fa','905461661672','Sayın yetkili; BARAN YILDIZ adlı müşterinize 644832811 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 30.08.2025 13:43:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ebc061e-668d-437b-b1f8-46651f8f4ce0',NULL),
('e0ebe4ac-b28b-4f43-8b60-a2f479c48f8c','905331602195','Sayın yetkili; SEYDA ASLAN adlı müşterinize 221410306 nolu gönderinizin 90x150-190 siyah açılır masa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:10:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e5ffe400-c79b-4f45-8a39-1085e52959fd',NULL),
('e0ed7414-afb1-48f2-aeaa-a4b590d14acd','436607950540','Sayın MERVE BEKTİK, 43752518 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43752518\n\nDear MERVE BEKTİK, your shipment with 43752518 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43752518\n\nBICARGO','1','eb7486ef-1def-475a-94cb-2a65d39933d5',NULL),
('e0ee7b6e-8767-4754-9a4f-f6b9a237b8f5','4915771419674','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','dd7c13c6-4dc9-46f2-8a4a-3312fe531a8a',NULL),
('e0ef5a83-ab5c-4e82-987a-1ab8c312a01e','494621092008','Sayın SEVİM KAMER, 478151970 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478151970\n\nDear SEVİM KAMER, your shipment with 478151970 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478151970\n\nBICARGO','2','78b69f29-3789-4968-b725-c04339316224',NULL),
('e0fd0ac8-0a6c-470b-9fb4-813cad95e865','905075277637','GÖKHAN ÇAYLAK adlı müşterinizin 745808994 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('e0ff0213-f2dc-4daa-aca9-1300ab452b77','5344645190','Sayın HASAN BEY (İRFAN), 412797306 nolu gönderiniz 8537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412797306\n\nDear HASAN BEY (İRFAN), your shipment with 412797306 was delivered to you with the delivery code 8537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412797306\n\n\nBICARGO','2','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('e0ff61c1-85d6-4911-a0ea-af9799f272be','436609507300','Sayın HUSSRAH MUHAMAD, 745464679 nolu gönderiniz 3784 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745464679\n\nDear HUSSRAH MUHAMAD, your shipment with 745464679 was delivered to you with the delivery code 3784. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745464679\n\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('e104aa4a-af13-499d-be8d-31f6439d8b05','491779155437','Sayın SUNAY KURU, 478526484 nolu gönderiniz 3228 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478526484\n\nDear SUNAY KURU, your shipment with 478526484 was delivered to you with the delivery code 3228. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478526484\n\n\nBICARGO','1','2956a5ed-066c-4d0f-8c48-6243c78cf6ed',NULL),
('e10dcb23-d81c-4723-a0ac-480d263b9676','436601407495','Sayın ESMA GÜNVAR, 808396862 nolu gönderiniz 5004 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808396862\n\nDear ESMA GÜNVAR, your shipment with 808396862 was delivered to you with the delivery code 5004. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808396862\n\n\nBICARGO','1','b20579d8-be01-4cf4-a191-a8c8d52e9333',NULL),
('e1169bcd-7f9b-4a9e-a50f-1b7c1acd16a3','9053259981980','Sayın yetkili; NATALİA MARKOVA adlı müşterinize 614364554 nolu gönderinizin LİDYA SOHO DOLAP,LİDYA SOHO KÖŞE DOLAP,LİDYA SOHO İKİ KAPILI DOLAP,LİDYA SOHO TEK KAPILI DOLAP,GRANDBEDS DELUXE 160*200 YATAK,BEYLER 2TAY-6090-266 AYNALI TABLO 60*90 ürünü 22 parça halinde Fatura adresinizden 10.09.2025 14:49:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','9a5b1798-a2b1-4df0-a151-463694364cd5',NULL),
('e118cace-4d0b-4827-a9ef-ffee8cadfeb2','4917677017660','İletişim \n					Şöför Uğur Acar +905424435917','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('e1192a7e-b113-46d1-92c8-e2d0bee025de','905335511664','Sayın yetkili; DİANA MUJKİC adlı müşterinize 371529841 nolu gönderinizin masa ürünü 3 parça halinde SM Tasarım adresinizden 31.07.2025 17:02:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('e11c98f0-452c-4903-8830-6926de6e9f1d','905331602195','Sayın yetkili; KARİM adlı müşterinize 221763224 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 28.01.2025 16:30:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','58313a08-d2a0-4dce-97d3-e911857314d3',NULL),
('e11d1874-65d8-4378-a46b-29b21b717ece','33689770031','478805224 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3374 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478805224\n\nYour shipment with the number 478805224 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3374. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478805224\n\nBICARGO','1','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL),
('e120008a-0cae-4681-a2ab-9eefcb00554d','491784616992','Sayın BİROL ELİBOL, 437609907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437609907\n\nDear BİROL ELİBOL, your shipment with 437609907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437609907\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('e124ac72-d234-4a93-b4f0-cded6f31f217','4917624497671','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('e125ac7b-fae0-4ee5-a529-0de90abf2cca','017660006494','Sayın KÜBRA YAMAN, 613251938 nolu gönderiniz 10483 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613251938\n\nDear KÜBRA YAMAN, your shipment with 613251938 was delivered to you with the delivery code 10483. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613251938\n\n\nBICARGO','2','2b4a9a44-3280-41b5-a65e-97b1f532481b',NULL),
('e126cb12-c9d4-4b5d-b85f-32a5527e3dea','491727368947','Sayın MERT ÇİÇEK, 598954734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598954734\n\nDear MERT ÇİÇEK, your shipment with 598954734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598954734\n\nBICARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('e12fc5cd-4c5b-4d80-a595-0431d17ce2b7','905079358213','ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinizin 745967323 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('e130fe9f-743e-4d41-9f41-5b32f7f427e0','33668485580','Sayın KEMAL ETKER , 47876427 nolu gönderiniz 3823 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47876427\n\nDear KEMAL ETKER , your shipment with 47876427 was delivered to you with the delivery code 3823. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47876427\n\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('e13aff55-4149-4eff-8d67-83f67eb44757','905459475054','GÜLŞAH KARAKAŞ adlı müşterinizin 803828322 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('e147684e-fa7e-4f5e-8d57-44b693c3e8cd','905517075149','HAKAN AKDEMİR adlı müşterinizin 478110382 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('e14c2067-822c-4d06-8c78-36329a9b9c2a','905075277637','FATMA SARI adlı müşterinizin 745619301 nolu gönderisi 14 parça halinde yola çıkmıştır.','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('e1510170-70fa-401a-9bda-698f17b617eb','905313340045','AHU KARUÇ adlı müşterinizin 437786734 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('e1532383-43d1-426e-9c6d-5a5f1dda3acf','33763204411','Sayın HAMİDİ SONİA , 221949733 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221949733\n\nDear HAMİDİ SONİA , your shipment with 221949733 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221949733\n\nBICARGO','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('e15b803d-4835-427e-af96-9d65590835a6','33767512328','Sayın MİHRİBAN ÖZEN, 644776565 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644776565\n\nDear MİHRİBAN ÖZEN, your shipment with 644776565 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644776565\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('e15db9a3-2481-4ca2-93e3-494f9db291d8','905075277637','CEYLAN ÇELİK adlı müşterinizin 745747218 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('e15ef45d-b6a5-45eb-b83f-4053bdc18b35','905517075149','Sayın yetkili; AYŞE TUNÇKAŞIK adlı müşterinize 478345195 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde saga köşe adresinizden 23.10.2025 11:08:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','375c4744-28e0-4fab-a9cf-b3b1451e7848',NULL),
('e163912f-6c2d-4fdf-8af0-159851a33e25','905301592882','ZELİHA AKCAN adlı müşterinizin 910291071 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3b5dfdd8-edb3-4e39-a9f5-5ea586431b28',NULL),
('e16502cd-5e11-4c56-ab93-889066550000','4917646701488','Sayın SABRİNA METZGER , 808922349 nolu gönderiniz 7485 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/808922349\n\nDear SABRİNA METZGER , your shipment with 808922349 was delivered to you with the delivery code 7485. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/808922349\n\n\nBICARGO','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('e169d221-4a9a-4989-a0b6-19016463475c','017631598105','644796086 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796086\n\nYour shipment with the number 644796086 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644796086\n\nBICARGO','2','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('e16a6452-773a-4cf3-8bdf-d7d47d592d16','905459475054','Sayın yetkili; SERA KARAHAN adlı müşterinize 803703209 nolu gönderinizin Ürün ürünü 4 parça halinde Fatura adresinizden 10.10.2025 13:12:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','23003647-c65c-45ed-a37a-c8d8db575ea2',NULL),
('e16c1970-9aa4-4469-af1a-69c5ed4be55c','4917620552211','Sayın FERİT YEKDA, 248284961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248284961\n\nDear FERİT YEKDA, your shipment with 248284961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248284961\n\nBICARGO','1','968b133b-83c8-4a7b-8237-6fc0a98af493',NULL),
('e16feea4-6d0d-43fe-a7c4-53c03770bc92','905301592882','Sayın yetkili; CİHAN ÇOLAK adlı müşterinize 910510042 nolu gönderinizin DENİZ KOLTUK TAKIMI ürünü 3 parça halinde Fatura adresinizden 15.10.2025 15:05:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e97846ef-c7e2-47c2-8ed9-5683c56e0d11',NULL),
('e1702ed3-f00e-4e1f-ba49-be8aba9cca4c','905078062550','Sayın yetkili; OKAN ÖZTÜRK adlı müşterinize 598891928 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde MERTSOY KOLTUK adresinizden 16.07.2025 11:25:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','28d77c29-5660-4bd1-beec-e4790f6ae7e8',NULL),
('e183ba88-ee14-4ca7-a42f-0f74b56ddf52','491551014119','Sayın FATMA ALBAYRAK, 478935366 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478935366\n\nDear FATMA ALBAYRAK, your shipment with 478935366 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478935366\n\nBICARGO','2','1d68877d-7e86-47a0-8436-b6e2ee888f3d',NULL),
('e18dfe11-020a-4382-99ae-b57a1a68ae2b','33617127634','221105277 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3585 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221105277\n\nYour shipment with the number 221105277 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3585. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221105277\n\nBICARGO','1','96a8795c-0926-4c3d-9071-8628d0419669',NULL),
('e18f008a-ae79-46b0-9ac7-5a38639c2464','905335511664','MERYEM BULAK adlı müşterinizin 371408514 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('e19154bc-0ebd-4e56-a66c-8844c3f0d8c3','905363385813','SELİM EROL adlı müşterinizin 976577497 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','41e6c990-9769-486b-b72c-37b090f7b3d4',NULL),
('e19241b8-422a-429c-bdf1-a4b3e0d1941d','491783209660','Sayın BRÜHL CAMİSİ, 41283002 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41283002\n\nDear BRÜHL CAMİSİ, your shipment with 41283002 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41283002\n\nBICARGO','1','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL),
('e19358bc-552b-4451-8d8e-3dbb1c612dde','905078062550','SADİJE KAMBERİ adlı müşterinizin 59841260 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4e1208ff-8f5b-4346-a832-196d997bdb96',NULL),
('e194e9da-c931-4b64-a705-3c26443882f9','905336367828','Sayın yetkili; BOGDAN MADALİNA  adlı müşterinize 982376655 nolu gönderinizin Sandalye  ürünü 4 parça halinde Ademoğlu sandalye  adresinizden 27.02.2025 17:25:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24b32008-080d-4cf2-b2e3-73b35877738d',NULL),
('e199275f-6800-4c0e-9168-c969e671fc43','41765845886','Sayın RÜVEYDA ŞAHİN, 127150146 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127150146\n\nDear RÜVEYDA ŞAHİN, your shipment with 127150146 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127150146\n\nBICARGO','1','63c72f92-c955-4221-9d99-5fc007d4c399',NULL),
('e19ac457-cd7b-4939-b7c8-58a970033ad2','905313340045','BEKİR TEKELİ adlı müşterinizin 437700144 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','80cc77d6-2140-493c-a7df-e75aa5104691',NULL),
('e19c8d03-0690-4522-b103-6167d9030698','31629103799','İletişim \n					Şöför Murat : +905321616048','1','5400fc28-c829-4ccc-a810-54ae598d5606',NULL),
('e1a02c83-4974-4f48-acba-16bb630ca2d8','491638482506','Sayın GÜLAY FASOLD, 644820551 nolu gönderiniz 9966 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644820551\n\nDear GÜLAY FASOLD, your shipment with 644820551 was delivered to you with the delivery code 9966. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644820551\n\n\nBICARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('e1a0993f-844d-45f3-8fa2-aca8d7f5aa0d','905461661672','Sayın yetkili; METİN ERDİ(K) adlı müşterinize 644667834 nolu gönderinizin masa ayağı ürünü 2 parça halinde Masami Mobilya adresinizden 23.09.2025 15:33:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f1dc4c15-b727-4694-84c2-391d5782dae4',NULL),
('e1ac0df1-0ea3-4f73-8f4a-dfc30aa71e64','905461661672','Sayın yetkili; GÜLŞEN YİRMİBEŞOĞLU adlı müşterinize 644563405 nolu gönderinizin SANDALYE ürünü 4 parça halinde ELAKSA SANDALYE adresinizden 10.10.2025 10:47:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','526de5bb-5478-4ac9-aaab-26c962aa787b',NULL),
('e1b14748-9384-4ca6-9156-964a7b9bb472','4915786757057','Sayın GÜLŞEN KARATAŞ, 644859309 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644859309\n\nDear GÜLŞEN KARATAŞ, your shipment with 644859309 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644859309\n\nBICARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('e1b65361-0108-43e7-a595-63385e9036b1','905331602195','Sayın yetkili; AZİME YETİM adlı müşterinize 221752631 nolu gönderinizin TV ünitesi üst tabla SSH ürünü 1 parça halinde Fatura adresinizden 08.01.2025 11:20:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e41e8e3b-d01a-4f78-b908-2a1eab2ded0c',NULL),
('e1bbca6e-c694-422b-9207-bfe90e6cf831','33662539381','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('e1bd2bb7-65d4-43aa-b7be-6f167da756ef','905336367828','Sayın yetkili; SADAT SAIDI adlı müşterinize 982365685 nolu gönderinizin SANDALYE ürünü 3 parça halinde Comfortlife  adresinizden 20.11.2024 10:52:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('e1c03566-5fe2-4fb4-a0bf-263c98e166cf','905325000478','ENES adlı müşterinizin 41268257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','09866d43-d0a4-4a7d-a951-82fc550bd732',NULL),
('e1c0ce87-d22a-43cb-b412-201bb85b5bb1','9054439559150','NERGİZ YURTSEVEN adlı müşterinizin 614525681 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('e1c496f4-54e9-4472-9fb2-2f98c7293838','004306603838566','380417164 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3480 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/380417164\n\nYour shipment with the number 380417164 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3480. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/380417164\n\nBICARGO','2','fde38e03-9a98-45f7-8ebe-3ba96b9c8830',NULL),
('e1c5a17c-128e-4e65-8783-8e31fe97cbb1','905335708965','İBRAHİM BEY adlı müşterinizin 248902824 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','5c5ee17e-b7fe-4686-853d-8b627742e536',NULL),
('e1c95b3a-ad44-42c0-b878-23fc74ce54a6','491634257044','Sayın ŞÜKRÜ AKSOY, 428490126 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428490126\n\nDear ŞÜKRÜ AKSOY, your shipment with 428490126 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428490126\n\nBICARGO','1','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL),
('e1ca6482-f6b9-45c2-9db9-83a2d3e6a049','33695831959','74520622 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10217 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/74520622\n\nYour shipment with the number 74520622 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10217. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/74520622\n\nBICARGO','1','4f12f440-a116-4008-91df-70191ee2d9f1',NULL),
('e1d0ca1f-bf63-466d-b3da-4780f1960dda','905335708965','FAREDİN BAJRAMİ adlı müşterinizin 248363931 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cebebeee-0bad-4139-9847-7d88c79fbf91',NULL),
('e1d20d70-1af6-40d8-a7b9-ad3f6a939ee1','491732811270','ŞÖFÖR İKETİŞİM\n					+905301824880','1','862c3997-124c-487c-86b2-4bc8c8575b1f',NULL),
('e1d2dc2b-4941-48a6-8b57-848be96ab7c8','491729063463','412299499 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8983 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412299499\n\nYour shipment with the number 412299499 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8983. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412299499\n\nBICARGO','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('e1db546d-f524-4ef9-b29b-66c90b344d45','905335708965','HÜSEYİN adlı müşterinizin 24886445 nolu gönderisi 43 parça halinde yola çıkmıştır.','1','b5e64b87-904e-46f0-aedc-c5bac9faa988',NULL),
('e1e6fe7c-e57d-481d-a95e-d518955a7a17','905333221039','NURGÜL ÖZDEMİR adlı müşterinizin 75056602 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','79bfeebe-4f74-437f-8072-2e6a2e10f67f',NULL),
('e1e9565b-c224-4491-bfc0-1b72dd28738d','0041799084222','735905073 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1390 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735905073\n\nYour shipment with the number 735905073 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1390. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735905073\n\nBICARGO','2','36d04374-8820-448d-9e27-e2a098baa9f9',NULL),
('e1eb24f4-701d-4f5e-b150-36684e5eb86f','905461661672','RUKİYE BARUT adlı müşterinizin 644626371 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aacfdb28-66df-4a6f-8b8d-f575a38b002b',NULL),
('e1ed4a23-1270-4b04-97a3-702e3dbbd81e','905336367828','Sayın yetkili; MARA EDEN adlı müşterinize 982240405 nolu gönderinizin yemek odası ürünü 8 parça halinde Palermo mobilya  adresinizden 24.06.2025 10:56:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('e1ef235e-3394-409e-b264-9d927a2724ce','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN AURA 2 KAPILI ÇEKMECELİ DOLAP ürünü 1 parça halinde SEVEN KİDS  adresinizden 08.09.2025 14:59:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('e1ffb049-d4bb-4a76-a7ef-3b7f081d27d6','4917670590775','902194722 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2644 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/902194722\n\nYour shipment with the number 902194722 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2644. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/902194722\n\nBICARGO','1','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL),
('e2096dbd-5511-4d8e-9dbe-fb3b7726ebca','491776434343','027527659 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027527659\n\nYour shipment with the number 027527659 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027527659\n\nBICARGO','1','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL),
('e20aabc7-5375-4fb8-8f96-24e35e6877f2','905510396989','CEMAL YALÇIN adlı müşterinizin 319116491 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('e20d242c-7b00-4c0b-9f52-578de355bc62','31686096778','644547865 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7688 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644547865\n\nYour shipment with the number 644547865 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7688. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644547865\n\nBICARGO','1','bc5655fe-7957-4a4b-8b86-3cb1da8d33c6',NULL),
('e214d5ea-9582-4d76-bb8f-2a1853e6860c','33788856164','Sayın ERKAN ÇEVİK, 41291679 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41291679\n\nDear ERKAN ÇEVİK, your shipment with 41291679 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41291679\n\nBICARGO','1','0d40e91f-6390-4121-9303-5976e9f6f226',NULL),
('e219d1c4-f9ef-4810-96b7-f2f6199758dc','4915751613198','Sayın SEPİDEH AJORLOO, 478854135 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478854135\n\nDear SEPİDEH AJORLOO, your shipment with 478854135 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478854135\n\nBICARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('e22187d7-2323-460c-a2c4-923247254f32','491777070885','765627791 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4791 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765627791\n\nYour shipment with the number 765627791 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4791. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765627791\n\nBICARGO','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('e2253287-2fef-402f-80b4-616a2a21355c','905075277637','GÜLÜZAR KECKİN adlı müşterinizin 745276257 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('e226d5b2-e961-4cb3-8807-d5d477ebaea9','33763889303','Sayın ÖZGÜR BOZKURT, 231211138 nolu gönderiniz 2998 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/231211138\n\nDear ÖZGÜR BOZKURT, your shipment with 231211138 was delivered to you with the delivery code 2998. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/231211138\n\n\nBICARGO','1','1a546dc5-d5a2-4124-a2a5-67bc24821f50',NULL),
('e2271910-9109-4403-a3cf-53df75e6627c','905461661672','Sayın yetkili; HÜSEYİN ÇELEBİ adlı müşterinize 644576493 nolu gönderinizin SANDALYE ürünü 3 parça halinde ÇINAR SANDALYE adresinizden 25.04.2025 18:15:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('e22c06ef-f436-4ddd-a2dc-41fac62fe6a6','33634048698','221139773 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10440 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221139773\n\nYour shipment with the number 221139773 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10440. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221139773\n\nBICARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('e22ddf42-6de6-4fa4-9655-d9d85109fbe0','905078062550','ZEHRA ÜNAL adlı müşterinizin 598320188 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('e233b474-2bca-49d5-9e3e-064de8b28e23','3165428312','Sayın ESRA TEZCAN, 478728370 nolu gönderiniz 8255 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478728370\n\nDear ESRA TEZCAN, your shipment with 478728370 was delivered to you with the delivery code 8255. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478728370\n\n\nBICARGO','2','bbe0a3f7-d405-4f31-b110-5a17a6297431',NULL),
('e23ae815-1ca4-4220-bd98-741cfe185896','33783623343','478423651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5297 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478423651\n\nYour shipment with the number 478423651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5297. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478423651\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('e23d26d5-952e-491a-9d10-be111aa3a5f1','33621633706','Sayın EDİZ DİNLER, 478989383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478989383\n\nDear EDİZ DİNLER, your shipment with 478989383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478989383\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('e24164fb-2355-4f6e-8325-ac2ab7df51f7','905336367828','SAMPAİ CATHERİNE adlı müşterinizin 982118676 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL),
('e244dfc8-4973-49e3-a2d7-248a4942dd0c','4915783856117','Sayın MELEK IŞIK SSH, 644452767 nolu gönderiniz 4678 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644452767\n\nDear MELEK IŞIK SSH, your shipment with 644452767 was delivered to you with the delivery code 4678. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644452767\n\n\nBICARGO','1','88ac5034-c866-4cfd-9646-8c2316ae0024',NULL),
('e24e5e9a-6b2e-4431-8d71-68c163dcff8d','4917632843611','449801040 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1120 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449801040\n\nYour shipment with the number 449801040 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1120. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449801040\n\nBICARGO','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('e25bc9de-6543-473b-8745-e8a467768774','491627758662','750505145 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6654 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750505145\n\nYour shipment with the number 750505145 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6654. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/750505145\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('e25c5043-7f3c-4e25-b0ff-539ae9cee5d8','905318109098','SULTAN GÜNDOĞDU adlı müşterinizin 455477301 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','049cec7b-ec44-4295-afa5-768b2786337d',NULL),
('e260485b-0cce-4c35-9968-4ae1b1146614','017631598105','ŞÖFÖR İKETİŞİM\n					+905301824880','2','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('e261132b-5bc3-44e5-994e-c0617a18bb60','4915730994641','Sayın SADİJE KAMBERİ, 59841260 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59841260\n\nDear SADİJE KAMBERİ, your shipment with 59841260 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59841260\n\nBICARGO','1','4e1208ff-8f5b-4346-a832-196d997bdb96',NULL),
('e2615f11-4058-422e-aaa2-52586562cc80','4920350083648','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','2','7d8316a2-565e-4804-89d8-cb47b032bbf2',NULL),
('e264e1c5-8cf6-436f-9b4e-52e4abe53d84','905079047428','Ruta andom adlı müşterinizin 449279198 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','cf0a7126-8c37-496d-8b00-8c055624489a',NULL),
('e2654642-1d4e-4862-b01f-469d8b33c995','905078062550','GÜLNUR ENGİN adlı müşterinizin 598585736 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','79b8f307-f370-445c-a869-4986e76c6399',NULL),
('e26c0638-e63e-45ff-a5fc-9904e7302e94','905078062550','ALİYE GÖRDÜK adlı müşterinizin 598156869 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('e26c8d28-0730-4dbf-8513-6a17a90f9cc3','905335708965','DARAYYA MÖBEL adlı müşterinizin 248771792 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9aaeab80-cfa4-4210-b789-4d7ae0454982',NULL),
('e26cb165-5d84-476b-a67e-f5d3e4dd752c','905075277637','Sayın yetkili; SEYİTHAN ASLAN adlı müşterinize 745212688 nolu gönderinizin DELUXE YATAK ürünü 1 parça halinde Fatura adresinizden 11.07.2025 20:18:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c5bab65-b13f-47a3-a069-66dac652ca30',NULL),
('e26e90e4-ee3e-4993-82b3-5748caa2798b','905336367828','KEMAL TAŞTAN adlı müşterinizin 982405831 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL),
('e2736029-8a56-4d91-a2c7-8dfe6efd4e8d','905078062550','Sayın yetkili; MUSTAFA KELEŞ adlı müşterinize 598263441 nolu gönderinizin 6 SANDALYE ürünü 3 parça halinde LİN SANDALYE adresinizden 08.09.2025 16:22:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('e2738118-727a-4060-a4db-03bf1dd4b625','4920350083648','Sayın DİE FABRİK OUTLET , 223631242 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/223631242\n\nDear DİE FABRİK OUTLET , your shipment with 223631242 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/223631242\n\nBICARGO','2','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL),
('e278c167-a53e-4b92-9aea-dd95022d8f07','41765187366','428103279 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8652 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428103279\n\nYour shipment with the number 428103279 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8652. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428103279\n\nBICARGO','1','a1cb7e5c-5a8b-4188-a8f3-3130d05e6963',NULL),
('e27f31c8-f8e6-49a1-9506-23da67931c2d','4917629501949','Sayın ARBESA SADRİJAJ, 982533088 nolu gönderiniz 7398 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982533088\n\nDear ARBESA SADRİJAJ, your shipment with 982533088 was delivered to you with the delivery code 7398. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982533088\n\n\nBICARGO','2','1a321f86-2bdc-4576-99e1-3d3d72eb1823',NULL),
('e280c58e-d04a-4152-b621-ea9008854ee2','905079047428','YUSUF IŞIK adlı müşterinizin 449582137 nolu gönderisi 45 parça halinde yola çıkmıştır.','1','7d8aa9ff-5d04-4b78-8d35-1d0b29abdd45',NULL),
('e28e7eaf-924a-4aa1-ad23-f1b248c6d395','4917681017112','İletişim \n					Şöför Uğur Acar +905424435917','1','2a705bc7-edb9-4f9d-9847-b0fb3fdeaed2',NULL),
('e28e91ec-44b4-421a-8896-fcd7d0715870','491783053622','91074356 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4790 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91074356\n\nYour shipment with the number 91074356 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4790. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91074356\n\nBICARGO','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('e29386a7-304b-4e66-8cec-5f0eb5010e0b','330665221905','982212726 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3417 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982212726\n\nYour shipment with the number 982212726 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3417. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982212726\n\nBICARGO','1','1d98874a-3c1d-4a2e-ad9b-b943512896cd',NULL),
('e29b8c91-1a6c-45a5-bfe7-849d4fd2d24b','905461661672','Sayın yetkili; AHMET OKUTAN adlı müşterinize 64415501 nolu gönderinizin KÖŞE KOLTUK  ürünü 4 parça halinde Fatura adresinizden 08.05.2025 12:03:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('e2a23365-626c-49af-96ff-2d16ddcbb145','905364752848','SILA MARKET adlı müşterinizin 231712628 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a41f3bf5-2506-42b4-9e2a-75956dfd1aca',NULL),
('e2a4141f-b31d-493f-b76e-cee88c9053c8','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin ETRO KOLTUK TAKIMI  ürünü 4 parça halinde AREA adresinizden 06.05.2025 12:55:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('e2a983f2-c6f8-45e2-9561-9851eb4b22d9','905331602195','L.DOUİRİ adlı müşterinizin 221997933 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('e2ad7460-e960-4253-bbeb-aa031a59f6ae','4917648386532','Sayın MEHMET ALİ ALBECER, 976747802 nolu gönderiniz 2447 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/976747802\n\nDear MEHMET ALİ ALBECER, your shipment with 976747802 was delivered to you with the delivery code 2447. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/976747802\n\n\nBICARGO','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('e2b5b7f9-23bf-4952-b94a-6998c744bff4','905517075149','SEPİDEH AJORLOO adlı müşterinizin 478854135 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32676e01-684e-4e88-b01e-02f858a6cf93',NULL),
('e2b8b3c5-73d0-4050-aa6f-ae836a2781e4','491779822285','644625326 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6226 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644625326\n\nYour shipment with the number 644625326 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6226. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644625326\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('e2ba9036-1596-44ee-8326-eb1f6e704700','491742555594','İletişim \n					Şöför Uğur Acar +905424435917','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('e2bb6de3-83d1-4110-87a7-1ebb63ec5945','4917663874660','449866390 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4106 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449866390\n\nYour shipment with the number 449866390 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4106. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449866390\n\nBICARGO','1','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL),
('e2c5fc9f-6bc1-4ffe-acbc-9a89c31288e5','905335708965','YATAK ODASI adlı müşterinizin 248143023 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','48196fd5-d544-4ced-9605-49aae5ad4f08',NULL),
('e2cff4b5-b7a6-454b-a1d6-7966da8b62ff','905461661672','   BEKİR adlı müşterinizin 644567515 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0c5baaa9-88b0-464f-9b3b-8d21de6877b8',NULL),
('e2d29543-6bc7-40ca-9934-96ee00ea4a2a','905461661672','UMUT YÖRÜK adlı müşterinizin 644243216 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('e2df6e1e-a593-4208-8db3-7f87f19054a6','905539740010','EMRE KIZIL SSH adlı müşterinizin 011222896 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','36d38390-5cfa-4e01-8327-52dbfc708657',NULL),
('e2e0f0c7-c28a-4a7d-b920-8a2564abc9aa','905331602195','GÜLAY KIZIL adlı müşterinizin 221598709 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','51eada14-8b0b-474d-993b-35b1df5b1fdc',NULL),
('e2efea70-a3a0-4acb-9961-57f23bc0cbea','905394878216','RAMAZAN SEVİ adlı müşterinizin 517558560 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fed099bd-765c-4045-9372-03dae428fedb',NULL),
('e2f7cc9e-9661-4560-a2c3-431a157d9dc9','33768384960','Sayın ATİLLA POLAT, 478502129 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478502129\n\nDear ATİLLA POLAT, your shipment with 478502129 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478502129\n\nBICARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('e2f8c857-20e3-4e12-b387-113cb05ce4d6','905325000478','DERMAN YATAK MURAT ÇAYAN adlı müşterinizin 412913992 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','85b0f72f-07ea-48eb-90eb-1dd0abae2a87',NULL),
('e2fdb669-c89b-479c-9408-b77bafbacedf','436641534757','Sayın DİANA MUJKİC, 371529841 nolu gönderiniz 4829 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371529841\n\nDear DİANA MUJKİC, your shipment with 371529841 was delivered to you with the delivery code 4829. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371529841\n\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('e3016bfa-a1cf-4deb-99b5-fdbb404d4353','905363385813','ADEM ÖZKAN adlı müşterinizin 976779460 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('e30daf54-bd8c-4bd3-a584-08231a7c6c70','4915161573588','478774501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1287 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478774501\n\nYour shipment with the number 478774501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1287. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478774501\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('e30dc5d2-f1ee-4f3f-b114-dc7f9c19cb0f','32470174105','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('e30f894c-ac00-40da-a49a-f2a4354e586a','905525002621','Sayın SEMİH AYDIN, 046487702 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/046487702\n\nDear SEMİH AYDIN, your shipment with 046487702 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/046487702\n\nBICARGO','1','2f1cee80-98e2-4491-8790-84b0795e2440',NULL),
('e310b988-41eb-43ce-8b33-f21a231698e4','491727767813','Sayın YAKUP AKYOL, 644741916 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644741916\n\nDear YAKUP AKYOL, your shipment with 644741916 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644741916\n\nBICARGO','1','f7d9721d-e27b-40dc-a48f-5d1604c92366',NULL),
('e3110718-196e-4016-8c21-cd9bf06a23b7','905301592882','GÖZDE TEMİZ		 adlı müşterinizin 910670298 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('e313198f-7322-4d68-b1f5-408efe3e8ac9','491726242111','675799375 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5048 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675799375\n\nYour shipment with the number 675799375 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5048. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675799375\n\nBICARGO','1','30b6bd7d-f466-4e5d-98b7-9c04544e31a8',NULL),
('e314eb30-85eb-4d3b-beac-85fcd9495703','905335708965','53489 SİNZİG adlı müşterinizin 248955283 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL),
('e315803c-7438-45c6-a292-6ec1ca45508b','306978038133','Sayın OSMAN BOZKAN, 478302796 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478302796\n\nDear OSMAN BOZKAN, your shipment with 478302796 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478302796\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('e31911ad-7747-43f9-9be5-a6ac8643615d','352691333084','Sayın SERVET ERDOĞAN, 982426968 nolu gönderiniz 9186 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982426968\n\nDear SERVET ERDOĞAN, your shipment with 982426968 was delivered to you with the delivery code 9186. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982426968\n\n\nBICARGO','1','7f38de3b-7387-4b91-9e96-d8a8ae7341de',NULL),
('e31cc73f-4236-4d1f-ae8c-70dd0f0484cd','905079358213','Sayın yetkili; TANER HARMANCI adlı müşterinize 74532359 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü 4 parça halinde Fatura adresinizden 22.10.2025 10:36:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf4c67d0-26de-41bd-bd58-ca5a3375fb32',NULL),
('e322fdd1-3a95-4adb-affd-975880dfe295','4917630410720','Sayın GAMZE CAPALBO - GABRİELE, 517395181 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517395181\n\nDear GAMZE CAPALBO - GABRİELE, your shipment with 517395181 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517395181\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('e3245c77-cf3d-4c74-93d7-ba55db47fa5e','4917661739027','598614826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2960 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598614826\n\nYour shipment with the number 598614826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2960. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598614826\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('e3278c73-454f-4a92-8bd5-588ec63bcb2d','4917611633498','598211009 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1693 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598211009\n\nYour shipment with the number 598211009 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1693. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598211009\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('e3279bf6-ee2b-43ee-823e-2943b1d8e90d','491629293163','22162472 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7041 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/22162472\n\nYour shipment with the number 22162472 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7041. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/22162472\n\nBICARGO','1','ef714645-7f38-4a84-8d4c-124593386b53',NULL),
('e3283ab1-0c10-41de-af11-442a0adc8192','905349208933','Sayın yetkili;  ELİF MUHCU adlı müşterinize 127281736 nolu gönderinizin MASA ürünü 3 parça halinde Fatura adresinizden 15.02.2025 13:12:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c818465-8168-4f07-aaba-0d59b1260716',NULL),
('e32d39a8-ddc6-44f9-9616-781d0455d7e0','00491630241746','248614196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6014 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248614196\n\nYour shipment with the number 248614196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6014. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248614196\n\nBICARGO','2','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL),
('e32d41bc-575b-4083-8be5-69389c58628c','4917670413077','Sayın ERTAN TOSUNER, 598454821 nolu gönderiniz 8773 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598454821\n\nDear ERTAN TOSUNER, your shipment with 598454821 was delivered to you with the delivery code 8773. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598454821\n\n\nBICARGO','1','7be6621d-9b68-40b3-a06b-e80341f0ae5d',NULL),
('e3362791-59a7-4090-925f-c977bb732dc2','905079047428','ABDULLAH DEMİR adlı müşterinizin 449239758 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL),
('e3379b80-64bc-4897-b3ad-09ef64f9982d','905350617509','ZAINOUNE LOUBNA adlı müşterinizin 613809111 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','16d7b18b-4de1-4251-9407-87c514282aa9',NULL),
('e3384e3c-2b3e-4136-8d17-f25e03257aa8','905350617509','BERNA YİLDİRİM adlı müşterinizin 61390448 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8dd05e34-9561-4afb-8daf-fd24f92ac628',NULL),
('e33bc687-5c22-4bf9-bc0f-890056b17a9f','4917664273200','644113100 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113100\n\nYour shipment with the number 644113100 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644113100\n\nBICARGO','2','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('e33fd8bb-85d3-4b2a-9ad2-4595e5926ae6','5325000478','Sayın sedat sedat, 14.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4951994\nŞifre : 4951994\n			\nBİCARGO','1',NULL,'de4951fc-994b-4e0e-a802-27ddaab5a0e8'),
('e3444f9c-a7a8-43e3-9557-4cf326ec6639','4915901967333','Sayın FAHRİYE KARTAL, 011255060 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011255060\n\nDear FAHRİYE KARTAL, your shipment with 011255060 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011255060\n\nBICARGO','1','93d2ab3b-6a9a-4642-becf-a89234c7ee14',NULL),
('e34796f3-8c15-4428-ab8d-0ee5ccabdc40','5325000478','Sayın MERT  GÜNAL, 23.05.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5619788\nŞifre : 5619788\n			\nBİCARGO','1',NULL,'56c19d78-8bca-49b8-8adc-b0d2ba311bfc'),
('e347c023-edc2-4a68-a270-d6c4db216fe6','4917661479043','Sayın TUBA BAŞKAŞ SSH, 598876994 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598876994\n\nDear TUBA BAŞKAŞ SSH, your shipment with 598876994 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598876994\n\nBICARGO','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('e347d87e-d41d-42c8-8f6d-c131e707b866','491604615612','İletişim \n					Şöför Uğur Acar +905424435917','1','7769da2f-9686-48c6-ae96-b03c5a2ae610',NULL),
('e34c7f36-f945-4abd-b965-e2dfe055b5d1','9054439559150','MEHMET ORMANOĞLU adlı müşterinizin 614636969 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('e34eadcd-4444-444d-82cc-3879b14f4a14','4915112339457','Sayın DİLBERAY MELLO, 613910788 nolu gönderiniz 1195 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613910788\n\nDear DİLBERAY MELLO, your shipment with 613910788 was delivered to you with the delivery code 1195. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613910788\n\n\nBICARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('e34eed64-820d-4951-9870-476f5f610b0f','905313340045','DERYA ERDOĞMUŞ adlı müşterinizin 437578664 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','942b967a-b7e1-48f8-9cb2-21dcf67db34e',NULL),
('e3582dd5-6c48-4b56-891c-4f54dd930f92','491794992343','43755091 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4841 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43755091\n\nYour shipment with the number 43755091 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4841. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/43755091\n\nBICARGO','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('e3639e1d-e98e-4e1b-ab48-a5d446221721','4917664132163','371865484 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8043 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371865484\n\nYour shipment with the number 371865484 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8043. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371865484\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('e364a8db-915f-4099-ab6a-5e44d212c36b','491621091849','478151970 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2408 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478151970\n\nYour shipment with the number 478151970 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2408. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478151970\n\nBICARGO','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('e3674706-ae28-4212-a993-4c6ab471c4a5','905079047428','mukungu kulemfuka adlı müşterinizin 449205900 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL),
('e3748f62-6d5a-4a95-8228-ee771fa12df1','905465479064','RECEP BEY adlı müşterinizin 858124295 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1177acbb-1392-40c1-b24d-59dd7e3651a8',NULL),
('e385864d-1dc6-49b9-81f0-70adc43f9cf7','4917677697727','Sayın HÜDAYİ HARMANCI, 64422113 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64422113\n\nDear HÜDAYİ HARMANCI, your shipment with 64422113 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64422113\n\nBICARGO','2','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('e38623d6-2917-4c14-b88a-492392ee2ca3','4915732123789','515139511 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515139511\n\nYour shipment with the number 515139511 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/515139511\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('e3899363-cd2f-4c6b-ba6e-000d705fe5b8','4368120439831','Sayın SENA ONMAZ , 43714618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/43714618\n\nDear SENA ONMAZ , your shipment with 43714618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/43714618\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('e38ad5da-1eaf-4036-8559-9e4fbfbfd6ff','905331602195','M.CEDRİC KLEINDIENST adlı müşterinizin 221850151 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('e3900ffb-c0fe-4c50-bf0c-85e07cde8dfe','31631024825','478777541 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3545 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478777541\n\nYour shipment with the number 478777541 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3545. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478777541\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('e39069ee-25ed-415c-be32-6fabde053f11','4917634365178','İletişim \n					Şöför Uğur Acar +905424435917','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('e3930ebf-a266-4531-92ca-5891b89e99c6','905331602195','Sayın yetkili; CAN ILKAY IBOV adlı müşterinize 221225501 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 25.08.2025 15:15:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('e3949be7-dc62-48d6-837a-610fb1b5b252','905313340045','KEMAL URLAN  adlı müşterinizin 43755091 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cf774409-1636-4858-87ca-49dc1380271d',NULL),
('e39682b7-84fe-4ea2-95a5-60ae6eff92bd','905300961610','DOMİNİK WİNK adlı müşterinizin 126649227 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL),
('e39c0de2-f162-4ee6-aee8-8c6fc504330a','905335511664','MAGDALENA DELİJANOVA adlı müşterinizin 371521572 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','225eec2c-83ef-4f12-a430-b56f6429a736',NULL),
('e39deddf-b3c7-4af8-85e2-d93187d6aa17','33774908152','982342488 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4795 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982342488\n\nYour shipment with the number 982342488 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4795. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982342488\n\nBICARGO','1','c8b96623-e586-496c-849d-fbff1ec7f11d',NULL),
('e3a2384f-577f-4ee6-afe8-177abb224abb','905350617509','SELMA BAJRAMOSKA adlı müşterinizin 613374971 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('e3a3ab4a-85a2-4036-bf91-fd90fb4ee1a2','905389543828','Sayın yetkili; ALBAN HASANİ adlı müşterinize 486741087 nolu gönderinizin Masa ürünü 5 parça halinde Masami adresinizden 06.10.2025 14:13:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','308ddadc-251a-4960-a99e-9154ac7e4c88',NULL),
('e3a7318d-982a-414e-a373-afbea83f0f83','905078062550','Sayın yetkili; SEMANUR GÜLER adlı müşterinize 598781522 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 16.07.2025 11:25:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('e3a7c2b0-ea0d-4a6e-9619-fcb6e684a43f','4915735324307','Sayın SÜMEYRA YARİM, 371381951 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371381951\n\nDear SÜMEYRA YARİM, your shipment with 371381951 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371381951\n\nBICARGO','1','c372b398-b1ae-40ad-b0e3-91301cb6ee99',NULL),
('e3a83e05-8ea9-491d-903c-6dd84172ca3a','905363385813','NAFİLE ÖCALAN adlı müşterinizin 976821188 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('e3a9e0b0-16e4-4fbe-81ea-93c6396b42b4','4915785558827','ŞÖFÖR İKETİŞİM\n					+905301824880','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('e3ad1336-777e-4b5e-9f31-aaf01a6b3bb4','4917680857659','61330729 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4153 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61330729\n\nYour shipment with the number 61330729 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4153. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61330729\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('e3affb96-355c-473f-9429-91e8cec0c013','905335708965','SABRİNA KHODR adlı müşterinizin 735660192 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6f8c203a-dba4-456b-b37b-a7092a5e19a7',NULL),
('e3b49610-f428-46ef-b912-7ee7fed27eaf','4917661977979','Sayın MURAT YALIN, 412330197 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412330197\n\nDear MURAT YALIN, your shipment with 412330197 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412330197\n\nBICARGO','1','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL),
('e3ba6ca4-4090-42d5-a939-80bdcccd01ac','905321608709','PARK adlı müşterinizin 248549362 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','08723415-4b6f-4a95-a326-2405074a7498',NULL),
('e3bb5013-076a-4584-a007-9bce71991913','905539740010','Sayın yetkili; SAMET ERGİSİ adlı müşterinize 011766113 nolu gönderinizin TABURE ürünü 1 parça halinde BY NECİP adresinizden 20.10.2025 13:32:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f4a13be-78b8-4d33-9535-7be01091d06a',NULL),
('e3bd58ba-e385-4287-80f4-b1118e1c55e5','905073106101','MEHMET BATMAZ  adlı müşterinizin 465194627 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL),
('e3c07f71-df73-48b0-9a14-4e62e912ff98','905461661672','Sayın yetkili; GÜLAY FASOLD adlı müşterinize 644820551 nolu gönderinizin MASA  ürünü 3 parça halinde Masami Mobilya adresinizden 20.05.2025 17:25:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bff7b018-9fd3-45fb-bd37-fd078042b359',NULL),
('e3cfddd2-976f-4f26-8905-eecd6d08a2f5','4901733860312','910280020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1598 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910280020\n\nYour shipment with the number 910280020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1598. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910280020\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('e3d0c079-1df5-4e79-b359-808b23617c4f','4917622920209','Sayın GÜLER DELİDUMAN, 221432350 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221432350\n\nDear GÜLER DELİDUMAN, your shipment with 221432350 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221432350\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('e3d543b0-a486-4b57-9d3a-f857e75acd1a','31634618099','Sayın BARLEB KASS HANNA, 644106987 nolu gönderiniz 1014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644106987\n\nDear BARLEB KASS HANNA, your shipment with 644106987 was delivered to you with the delivery code 1014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644106987\n\n\nBICARGO','1','3a413ad6-1fa8-40a1-8617-788cf4219a4a',NULL),
('e3e9cbfd-fd9f-43c2-bf24-741016646a89','491784598984','Sayın MANOLYA PELİN ERDOĞAN ÖZÇELİK, 437649706 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437649706\n\nDear MANOLYA PELİN ERDOĞAN ÖZÇELİK, your shipment with 437649706 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437649706\n\nBICARGO','1','c3124b77-c71e-488a-b104-3d05e5b06ca6',NULL),
('e3ea06af-a35d-494a-ae67-bda4f425a1a8','905454259202','Sayın yetkili; CAN ÇELİK adlı müşterinize 478507488 nolu gönderinizin VİRAL KOLTUK TAKIMI ürünü 5 parça halinde FAMİLY KOLTUK adresinizden 17.06.2025 11:56:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('e3eae535-b7c7-400d-9937-db52f46419ad','491784042586','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','06e56b2e-9b9b-4c5b-8022-4849479f4e4a',NULL),
('e3eb1a6c-e5ca-4a1e-a3f6-3aae0d0342f9','4922039168112','655935224 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655935224\n\nYour shipment with the number 655935224 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655935224\n\nBICARGO','2','3ec0fac2-4ee2-4e9f-8698-576c7ac60363',NULL),
('e3f05b16-76ea-4781-99d2-954dae5f1fe7','905079047428','ADNAN MUSTAFAJ adlı müşterinizin 449343471 nolu gönderisi 4 parça halinde yola çıkmıştır.','1',NULL,NULL),
('e3f75b43-ed80-43bf-ae26-bfd9dca1d1d9','905075277637','Sayın yetkili; BİRSEN BALIM adlı müşterinize 74521183 nolu gönderinizin FRİDA ORTA SEHPA + PUF  ürünü 2 parça halinde RİXXE  adresinizden 15.10.2025 14:20:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf69a70a-73ab-451f-bc43-7e834619f2e6',NULL),
('e3f8b34e-67c4-4717-88a7-2a5b5341f24b','4369911307024','Sayın HARUN ERCAN, 127847689 nolu gönderiniz 5695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/127847689\n\nDear HARUN ERCAN, your shipment with 127847689 was delivered to you with the delivery code 5695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/127847689\n\n\nBICARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('e3f98481-0337-477e-a991-a6662ece771d','905461661672','Sayın yetkili; GAMZE KOCAMAZ SSH adlı müşterinize 644537401 nolu gönderinizin Rütuş kalemi ürünü 1 parça halinde Fatura adresinizden 14.10.2025 18:04:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','abe5ef68-f84c-446c-b39b-d13674dbab80',NULL),
('e3fa395f-d9af-45e8-bde9-347c25866608','4917449179710','598263441 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3087 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598263441\n\nYour shipment with the number 598263441 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3087. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598263441\n\nBICARGO','2','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('e401a677-6481-4494-8285-64cfde09eb01','905059175469','FATİH KAZAR adlı müşterinizin 428135973 nolu gönderisi 38 parça halinde yola çıkmıştır.','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('e405cb26-ec58-4c6e-9d8b-bc2413d4c88b','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin 3-3-1 koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 08.11.2024 13:40:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('e4077d35-140d-4559-99c0-0683e8fdfd29','905363510826','İSA KAPLAN  adlı müşterinizin 962168012 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','bc037735-462f-4198-8d2d-23ba6a125e18',NULL),
('e4089c78-3f64-46c8-9d86-4076c702dbe1','0634270535','Sayın YOLCU EVİN, 515463699 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515463699\n\nDear YOLCU EVİN, your shipment with 515463699 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515463699\n\nBICARGO','2','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('e40a0305-2612-437b-9e46-86b74cf5de2d','31686017559','Sayın AMMAR ALANİ , 248421874 nolu gönderiniz 2283 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248421874\n\nDear AMMAR ALANİ , your shipment with 248421874 was delivered to you with the delivery code 2283. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248421874\n\n\nBICARGO','1','a3288f43-b0c7-494e-af3f-17eaf962b183',NULL),
('e40ddccc-3ab9-4249-9def-a7d3f0505a8d','905059175469','Sayın yetkili; SİDAR AKDENİZ adlı müşterinize 428178028 nolu gönderinizin komidin,şifonyer, ayna, dolap ürünü 13 parça halinde rixxe adresinizden 26.11.2024 14:59:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5b569715-9b3f-4e71-8f65-5766da410613',NULL),
('e40dec9d-a0c1-440f-acf1-ac173e1b57fa','491783971272','Sayın HARUN UZUN, 745519015 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745519015\n\nDear HARUN UZUN, your shipment with 745519015 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745519015\n\nBICARGO','1','a6485cd5-5e0e-4aed-8125-a830f96164a2',NULL),
('e4124432-81ed-40af-bcc0-f192790fd768','905451571652','Sayın yetkili; ESRA GÜNER adlı müşterinize 53182437 nolu gönderinizin KÖŞE ürünü 4 parça halinde PABLO HOME adresinizden 06.10.2025 12:31:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fcf75500-baa7-41fe-a63b-d2654bfa45b4',NULL),
('e41a0ead-0ac9-45e4-96aa-fb84300e63ea','491781975056','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('e41af504-39ae-4efb-ae61-25e0e3e49f97','491733039881','478545457 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10507 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478545457\n\nYour shipment with the number 478545457 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10507. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478545457\n\nBICARGO','1','7c239237-a1fb-41c7-936d-912d80326901',NULL),
('e41eaff8-20b0-4ba4-a2a5-d8fc4a3f1268','905075277637','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin RAMS KONSOL + 8 SANDALYE  ürünü 7 parça halinde FAMILY adresinizden 21.07.2025 12:37:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('e4259e47-701c-4fa8-87fa-d00eb15c2567','33783623343','Sayın YUSUF HAMZA DALKILINÇ, 478423651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478423651\n\nDear YUSUF HAMZA DALKILINÇ, your shipment with 478423651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478423651\n\nBICARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('e427a5d6-f113-4855-a6f2-1c65d74b9099','905079047428','MİTRA MESKİNİ adlı müşterinizin 449866390 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4385dea8-b863-44f4-a1cb-c589317b4ab9',NULL),
('e42c8bea-6e66-4631-8f8d-75f6741bd7da','905336367828','IVANA JURİC adlı müşterinizin 982728095 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','ef40fca2-d183-4d4d-931d-2303fbe2066e',NULL),
('e42ee50e-7de6-4f1b-9f46-bbdfdff2b8ee','1111111111111','Sayın SOBA-PETEK, 41270066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41270066\n\nDear SOBA-PETEK, your shipment with 41270066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41270066\n\nBICARGO','2','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL),
('e43603cc-4b29-4719-9dd0-45b08c86274d','491741928164','371280361 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5649 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371280361\n\nYour shipment with the number 371280361 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5649. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371280361\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('e43d8ccf-887a-4cec-be4b-50a7a357ecb4','4915752948798','Sayın METİN PEKSERT SSH, 745933378 nolu gönderiniz 6548 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745933378\n\nDear METİN PEKSERT SSH, your shipment with 745933378 was delivered to you with the delivery code 6548. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745933378\n\n\nBICARGO','1','b91bbec9-94f9-4b78-8185-c4064072c11d',NULL),
('e43e171b-7455-4ad0-9c16-6c315c884240','491741677309','371400028 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2731 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371400028\n\nYour shipment with the number 371400028 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2731. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371400028\n\nBICARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('e4416897-5acd-42dc-9dd3-e439026ab7f7','491636081743','478259590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10124 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478259590\n\nYour shipment with the number 478259590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10124. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478259590\n\nBICARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('e445ae8c-e403-4ce8-b030-30efbbef9d6f','905517075149','BAHAR ORHAN adlı müşterinizin 478835180 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('e445cf79-f752-425b-9c9f-de79968c1a8b','491729060799','ŞÖFÖR NUMARASI\n					+905467896981','1','63733cef-e274-4dc6-b6fb-08178c1dd9ff',NULL),
('e4477c07-00ba-482e-9807-d75a7cfd2344','4917624194526','371881042 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1571 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371881042\n\nYour shipment with the number 371881042 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1571. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371881042\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('e4496e81-9f34-48f7-b7f2-1f64355b617b','4915739271239','Sayın SELCAN KURU, 221208954 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221208954\n\nDear SELCAN KURU, your shipment with 221208954 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221208954\n\nBICARGO','1','2e51945e-3da1-4c02-ae97-956500db2c2a',NULL),
('e4546c42-8512-4b14-b151-a9e67cbcaf68','4917660948830','644389756 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1864 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644389756\n\nYour shipment with the number 644389756 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1864. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644389756\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('e4554afc-d6f4-4d37-9ef5-2b1b2bd7fc82','905336367828','Sayın yetkili; ŞAHİN MUAMMER adlı müşterinize 982840804 nolu gönderinizin koltuk takımı  ürünü 1 parça halinde Comfortlife  adresinizden 20.02.2025 11:42:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb12bd3c-d87b-4ede-9827-8c115b6da789',NULL),
('e456eaad-f75a-403d-afc6-2edd463a29df','3352305296','Sayın BÜNYAMİN ILIKSOY, 478668622 nolu gönderiniz 5389 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478668622\n\nDear BÜNYAMİN ILIKSOY, your shipment with 478668622 was delivered to you with the delivery code 5389. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478668622\n\n\nBICARGO','2','13870329-2aa7-4b40-89d5-b947358fe886',NULL),
('e45a810d-f48f-42f4-aca8-f8a4998eec52','905079047428','YAVUZ GENÇ  adlı müşterinizin 449801040 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','43d385d8-2280-4cba-bca7-d4cd3193968d',NULL),
('e45e40f7-63fe-44f2-a7e6-28a68188e99d','905331602195','Sayın yetkili; NURİYE ŞAHİN adlı müşterinize 221447673 nolu gönderinizin 90x180 milas beyaz masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 21.04.2025 14:18:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9c3de84-44b0-416d-b57a-8549b5c187d0',NULL),
('e4602062-2cab-4ec1-a2f5-214d9327e462','905337836884','Sayın yetkili; GAMZE ÇOKENGİN adlı müşterinize 140681782 nolu gönderinizin Halı ürünü 1 parça halinde Fatura adresinizden 03.10.2025 11:51:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fe41a435-8cb2-4fa0-9ded-0b2bb807c3e5',NULL),
('e463f0bc-4794-4d0f-8015-9c73b326200e','905336367828','Sayın yetkili; MAGBULE DZELİLİ adlı müşterinize 982843761 nolu gönderinizin Masa  ürünü 3 parça halinde Riyo home adresinizden 20.01.2025 12:42:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3caa13eb-3143-47f2-b11e-c9f3575e57b0',NULL),
('e465b09f-bdf9-4dee-9cb0-1cb4ac48d670','4917687972563','Sayın MUSTAFA KELEŞ, 598263441 nolu gönderiniz 3087 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598263441\n\nDear MUSTAFA KELEŞ, your shipment with 598263441 was delivered to you with the delivery code 3087. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598263441\n\n\nBICARGO','1','88f84531-ef49-42b4-ba11-ad770eba8aa1',NULL),
('e4689c8f-1897-4074-9744-c9c465ada516','905461661672','MUSTAFA ÖZTAŞ adlı müşterinizin 644147833 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','d4bc4878-9923-4ef3-b0a1-5cd730e1777a',NULL),
('e46c6b27-9c3a-4e33-86b6-8f701d0efa93','905336367828','MARA EDEN adlı müşterinizin 982240405 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','e81fdf76-b529-423f-8485-057fd816e54d',NULL),
('e46ca0e5-21d4-40ef-89f5-097f6b0a44dc','352621224281','982176810 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8218 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982176810\n\nYour shipment with the number 982176810 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8218. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982176810\n\nBICARGO','1','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL),
('e470c29a-4464-4ce2-943d-9d27f992309e','491728265079','Sayın RANİA PİSİT, 613512690 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613512690\n\nDear RANİA PİSİT, your shipment with 613512690 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613512690\n\nBICARGO','1','76973b07-223c-4e19-93b2-e2f735cd609b',NULL),
('e47880ca-af9c-4f40-ae77-f9e01f1aebaa','905331602195','Sayın yetkili; NAİMA BOURAJJOU adlı müşterinize 22186590 nolu gönderinizin Traverten sehpa 70/120 ürünü 1 parça halinde Fatura adresinizden 13.01.2025 12:18:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('e47b63d1-174f-457e-a0aa-cd69413f9d93','4917661739027','Sayın MEHMET ULUIŞIK, 598614826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598614826\n\nDear MEHMET ULUIŞIK, your shipment with 598614826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598614826\n\nBICARGO','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('e47bad5d-bd4c-4c32-8515-02e482d80282','436763366858','Sayın HUSSRAH MUHAMAD, 745464679 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745464679\n\nDear HUSSRAH MUHAMAD, your shipment with 745464679 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745464679\n\nBICARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('e47cbe26-918d-4656-bc34-885864e78e96','491783919050','47842524 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3743 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47842524\n\nYour shipment with the number 47842524 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3743. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47842524\n\nBICARGO','1','c7236957-4e70-458b-8d5d-c7a04c012262',NULL),
('e47f32ec-58c2-4f39-8ee8-8cb9b59fb81b','436763436191','Sayın MEHMET DAĞDEVİREN, 745485271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745485271\n\nDear MEHMET DAĞDEVİREN, your shipment with 745485271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745485271\n\nBICARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('e48356d9-0d7d-4f2a-9605-9eed25fe4861','905517075149','Sayın yetkili; YUSUF HAMZA DALKILINÇ adlı müşterinize 478423651 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde inhouse adresinizden 14.07.2025 17:29:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('e484642b-2d0d-4820-9cf9-5fb7fb9e2786','905079358213','MUSTAFA YILMAZ adlı müşterinizin 745636493 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a8d6af10-f6df-4fed-9267-1395f40ba8f9',NULL),
('e490c0ec-8796-4b79-bf50-9094cde6221c','491795209461','Sayın GHAZAL TARIK İLHAN, 644826740 nolu gönderiniz 9310 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644826740\n\nDear GHAZAL TARIK İLHAN, your shipment with 644826740 was delivered to you with the delivery code 9310. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644826740\n\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('e493e9ec-5018-49f0-8770-573fdffea24b','491791163970','Sayın RUKİYE TURAN, 644301613 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644301613\n\nDear RUKİYE TURAN, your shipment with 644301613 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644301613\n\nBICARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('e49c49c5-730f-4fc9-aef5-2cd9c226b2a1','33658630958','Sayın FARUK YÜCEL, 478867058 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478867058\n\nDear FARUK YÜCEL, your shipment with 478867058 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478867058\n\nBICARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('e4a74bb5-70f6-4936-a540-7ac5546705eb','905394878216','Sayın yetkili; CAN DERİN adlı müşterinize 517337381 nolu gönderinizin Koltuk Takımı (3+3+1) ürünü 3 parça halinde Fatura adresinizden 15.05.2025 11:21:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('e4ac3c1d-a8d9-4d90-a49e-b5715bbe93aa','33621633706','Sayın EDİZ DİNLER, 478783487 nolu gönderiniz 5102 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478783487\n\nDear EDİZ DİNLER, your shipment with 478783487 was delivered to you with the delivery code 5102. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478783487\n\n\nBICARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('e4ad0937-2c98-45ed-b4ae-c1eb32093619','491739514221','248549362 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1955 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248549362\n\nYour shipment with the number 248549362 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1955. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248549362\n\nBICARGO','1','08723415-4b6f-4a95-a326-2405074a7498',NULL),
('e4ada645-6726-4fd5-9629-da9cc38edb36','4917683290603','Sayın PINAR BARUTÇU, 614813890 nolu gönderiniz 7578 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614813890\n\nDear PINAR BARUTÇU, your shipment with 614813890 was delivered to you with the delivery code 7578. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614813890\n\n\nBICARGO','1',NULL,NULL),
('e4ae520b-bb7f-481d-a4c6-5a2a3e5590fb','436769706003','Sayın EZGİ YÜCEL, 437713339 nolu gönderiniz 6517 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437713339\n\nDear EZGİ YÜCEL, your shipment with 437713339 was delivered to you with the delivery code 6517. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437713339\n\n\nBICARGO','1','ad0e6c08-bd08-47a2-9854-d784d07275f0',NULL),
('e4b0af94-681f-481d-ae27-56eab3e39af3','491788649783','735211280 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3524 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735211280\n\nYour shipment with the number 735211280 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3524. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735211280\n\nBICARGO','1','31322282-8ccf-4553-94bc-7f1b8069ed4e',NULL),
('e4b44c92-788f-4074-b31f-1e93739e90e6','4915737096619','Sayın ŞAZİYE KARABACAK, 50133684 nolu gönderiniz 2450 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/50133684\n\nDear ŞAZİYE KARABACAK, your shipment with 50133684 was delivered to you with the delivery code 2450. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/50133684\n\n\nBICARGO','1','ee47f1d8-1ad5-4907-acb2-e3edf9f48713',NULL),
('e4b532be-25c0-4c7e-a50e-f35046e1f1c2','905364752848','SALİHAPİA LEULD adlı müşterinizin 231250162 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','70bc3ceb-5bdb-4dbb-a1ee-44006bae31c3',NULL),
('e4b74790-e1f5-4ead-99ae-9dc42d60950e','4917682051476','Sayın JASMİNA YILMAZ, 371785400 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371785400\n\nDear JASMİNA YILMAZ, your shipment with 371785400 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371785400\n\nBICARGO','1','ce35486e-7680-4c8d-aa21-e602d6ada6b1',NULL),
('e4b7dffc-a487-49a5-b350-d65b8681bf70','905075277637','Sayın yetkili; TANER HARMANCI adlı müşterinize 74532359 nolu gönderinizin KING PLATIN BAZA SETİ 180X200 ürünü 4 parça halinde Fatura adresinizden 22.10.2025 10:36:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf4c67d0-26de-41bd-bd58-ca5a3375fb32',NULL),
('e4b87b0c-87e7-4d33-829c-dbf2e9a5afb0','4917680300114','644403373 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2735 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644403373\n\nYour shipment with the number 644403373 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2735. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644403373\n\nBICARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('e4be1cfa-5d24-4940-a50b-425bbedc14df','905532675926','HASAN ÖZSOY adlı müşterinizin 428653750 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('e4c19e2a-92e9-4525-bddb-c3e7fcd29c5e','491722630370','Sayın LAİLA MANDANİ, 371887346 nolu gönderiniz 9263 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371887346\n\nDear LAİLA MANDANİ, your shipment with 371887346 was delivered to you with the delivery code 9263. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371887346\n\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('e4c61e49-659c-4f9b-8af1-1268cc0cd485','905515519191','HASAN BEY adlı müşterinizin 448153102 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL),
('e4c9e3dd-f625-49ad-9704-3f78aa3926cb','905075277637','Sayın yetkili; MEHMET DAĞDEVİREN adlı müşterinize 745485271 nolu gönderinizin ÖZEL MASA  ürünü 2 parça halinde GÜMÜŞ MASA adresinizden 21.07.2025 10:30:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02301bb2-05b9-4f43-b8b5-5ced5c8740c7',NULL),
('e4c9fbe5-9a15-421c-9ee0-348691ed988c','436607735988','Sayın GÜLCAN İNCE (SSH), 338840422 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338840422\n\nDear GÜLCAN İNCE (SSH), your shipment with 338840422 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338840422\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('e4ca981e-879a-4235-bd77-900ee21a1bd2','491722006500','Sayın ERSİN ÖZDEMİR, 478392276 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478392276\n\nDear ERSİN ÖZDEMİR, your shipment with 478392276 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478392276\n\nBICARGO','1','4b40049d-0967-49c8-8e4e-49b9a8e0a539',NULL),
('e4d7acc9-e22b-4ef5-a775-d7632fc5df0c','4915739347909','ŞÖFÖR İKETİŞİM\n					+905301824880','1','3e7bc361-1239-4318-a168-479ffa7372b0',NULL),
('e4d7e39d-d964-46a7-9805-3b09f7f89191','3361479705','Sayın LABABABİD WEJDAN, 478417862 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478417862\n\nDear LABABABİD WEJDAN, your shipment with 478417862 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478417862\n\nBICARGO','2','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('e4dc27e5-7b3b-43a8-a339-7a7c9d206b4f','905304259202','Sayın yetkili; KEMAL ETKER  adlı müşterinize 47876427 nolu gönderinizin 2 adet sandalye ürünü 2 parça halinde karma sandalye adresinizden 13.05.2025 15:58:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('e4e4cbb3-2d36-4cb6-ac3a-e16010e648f6','905304259202','MELİSA DEMİRTAŞ adlı müşterinizin 478757775 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('e4fee868-d56b-4457-a18a-78d85508fb65','905394878216','GAMZE CAPALBO - GABRİELE adlı müşterinizin 517395181 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('e5019995-65b7-4182-a6b2-5d24683a2736','4915778860967','371408514 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371408514\n\nYour shipment with the number 371408514 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371408514\n\nBICARGO','1','4f4aceda-c83a-4e2a-84c6-8f4e2aeeeda2',NULL),
('e5021ff1-eafc-4805-9da4-1b962e54c1fa','905313340045','EDA ÇALIŞKAN adlı müşterinizin 437539983 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9df2d9a2-447d-43e4-ba38-1e784040acf7',NULL),
('e51075fc-cd92-47bd-adb5-6d55a450fce7','436603831520','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('e514fac7-cf39-428d-aaa6-32942f6ec3ab','004917630153600','Sayın LAMİA BADAOUİ, 735389141 nolu gönderiniz 3070 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735389141\n\nDear LAMİA BADAOUİ, your shipment with 735389141 was delivered to you with the delivery code 3070. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735389141\n\n\nBICARGO','2','80da5b1b-534a-4c8c-96c2-bace937f5e61',NULL),
('e51be3d7-1b94-4a6e-8b90-8fe137f4246d','491741928164','Sayın İLAYDA GÜNEŞ SSH, 371280361 nolu gönderiniz 5649 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371280361\n\nDear İLAYDA GÜNEŞ SSH, your shipment with 371280361 was delivered to you with the delivery code 5649. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371280361\n\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('e51e2422-2202-4869-9b2f-c68d963ba828','05379688307','598410676 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4889 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598410676\n\nYour shipment with the number 598410676 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4889. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598410676\n\nBICARGO','2','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('e524b094-e27f-445a-8a56-c347dd5b835c','01749180995','Sayın HATİCE ÇETİN(K), 644834421 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644834421\n\nDear HATİCE ÇETİN(K), your shipment with 644834421 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644834421\n\nBICARGO','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('e528b707-3d24-4eb1-a6e4-c0b5e0af5ef8','31636115974','412157634 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6459 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412157634\n\nYour shipment with the number 412157634 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6459. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412157634\n\nBICARGO','1','7dd8fd8d-1e65-4d72-a3a3-e995172ad367',NULL),
('e5329391-5468-414c-b570-a9e9a6fc0814','905336367828','FATIMA KRISHMA adlı müşterinizin 982164642 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d7b0bb03-c914-41e5-8899-697339f7e562',NULL),
('e533f0a4-0bc8-43d8-905d-1da3ff5f0c34','905363385813','Mustafa İlhan adlı müşterinizin 976369647 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('e53cc9d4-9b18-4ca1-a9cc-38dc7cf16211','905313340045','MEO JONATHON SSH adlı müşterinizin 437124353 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','31cd8435-cf46-4deb-b1e7-b94fe44ebdf9',NULL),
('e53ebe22-2b63-46f9-8571-dae3d0538027','4917670954169','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('e54490a4-1dce-4ce4-9d37-3e98c8069d98','436604414246','Sayın HALUK ÖZTOPRAK, 858708990 nolu gönderiniz 7259 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/858708990\n\nDear HALUK ÖZTOPRAK, your shipment with 858708990 was delivered to you with the delivery code 7259. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/858708990\n\n\nBICARGO','1','49e64dc1-b571-41e2-8735-35d2ef2613ae',NULL),
('e54563dd-2ad9-48a1-8430-7596a7515dc3','491602272143','Sayın ERHAN ÇEKİÇ, 644445996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644445996\n\nDear ERHAN ÇEKİÇ, your shipment with 644445996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644445996\n\nBICARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('e54b5bf6-52f2-4450-8dc5-faed7137bab2','31634277467','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','ec8233a9-2b02-4431-9da9-7ebee3a93ae2',NULL),
('e54d3ba8-e619-48bf-ba71-3d423dceb9e6','905313340045','Sayın yetkili; RASİM OZAN adlı müşterinize 437642214 nolu gönderinizin YEMEK MASASI ürünü 3 parça halinde decoria adresinizden 20.06.2025 12:42:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3f298ea0-796a-4ae2-a1d8-43723fc8f5e0',NULL),
('e54e66a2-b0de-492b-8cc9-aade6b2e2d4a','905336367828','Maria veigea  adlı müşterinizin 982333020 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','2ed09389-6872-45ef-b60f-31ff8428b5fe',NULL),
('e552b259-3d9b-4b6c-ac86-cc138faea010','491638098235','Sayın ALİYE GÖRDÜK, 598156869 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598156869\n\nDear ALİYE GÖRDÜK, your shipment with 598156869 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598156869\n\nBICARGO','1','0991bee4-87cb-4b77-85ae-0f81a11d33ba',NULL),
('e55651d1-d539-434a-a057-0eafc34823c1','33753744343','745906539 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9888 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906539\n\nYour shipment with the number 745906539 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9888. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745906539\n\nBICARGO','1','d5670c41-1af2-48f4-a947-753c331653a4',NULL),
('e5596f91-68e6-474a-add0-338bebbd74cc','5324145618','Sayın MASİS YAZMACİYAN, 517867004 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517867004\n\nDear MASİS YAZMACİYAN, your shipment with 517867004 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517867004\n\nBICARGO','2','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('e560b92e-ec67-4372-8892-64021a5a1483','905517075149','Sayın yetkili; OSMAN BOZKAN adlı müşterinize 478302796 nolu gönderinizin MÜŞTERİ EYLÜL BAŞI TESLİM İSTİYR ürünü 1 parça halinde Fatura adresinizden 22.07.2025 16:17:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('e569c5a4-9326-468c-8928-f1ab4b3099c1','905517075149','MURAT ŞEKER  adlı müşterinizin 478832291 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('e56f4bf5-e169-46e4-9003-a4b2dfeeb125','436602086672','Sayın BMD ELİF ÇEKİCİ, 412784700 nolu gönderiniz 1807 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412784700\n\nDear BMD ELİF ÇEKİCİ, your shipment with 412784700 was delivered to you with the delivery code 1807. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412784700\n\n\nBICARGO','1','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('e5707679-ff86-4e11-bd51-b0291597a198','33772302875','Sayın LYDİE MAKALU, 449780250 nolu gönderiniz 6470 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449780250\n\nDear LYDİE MAKALU, your shipment with 449780250 was delivered to you with the delivery code 6470. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449780250\n\n\nBICARGO','1','f9c61776-accb-469f-88e4-b551ad871fe8',NULL),
('e5729cd7-27c5-4e1f-8941-bd196e63f59d','41793377228','248435862 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2867 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248435862\n\nYour shipment with the number 248435862 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2867. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248435862\n\nBICARGO','1','7f7fc18f-c4b7-4970-b1ed-b10790978ab2',NULL),
('e57b6dc1-ac7d-463e-b0aa-cf56f352493e','905331602195','Sayın yetkili; LESLİE SEROR  adlı müşterinize 22144793 nolu gönderinizin Balat sandalye ceviz renk ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 23.09.2025 16:04:44 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('e57c37e9-5d5e-4c43-a0e9-4c3fd38810fc','905069116877','Sayın yetkili; MEDİNE POLAT adlı müşterinize 817488957 nolu gönderinizin Star köşe ürünü 6 parça halinde Fatura adresinizden 27.03.2025 12:47:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('e58266ee-3ba4-4026-9ba5-b92c2b0c86cd','905332942204','Sayın yetkili; ADRİANNA WİEMANN adlı müşterinize 505724535 nolu gönderinizin masa orta sehpa ürünü 5 parça halinde masami adresinizden 08.10.2025 18:02:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','936577ed-02ef-44c5-9226-4d241235c1bf',NULL),
('e585b107-c552-416f-a486-3da0d85c544f','905461661672','HATİCE ÇETİN(K) adlı müşterinizin 644834421 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('e58a2fcb-5553-416e-8b34-4ff338b2055c',NULL,'ABDUL AHMAD adlı müşterinizin 112609358 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','190aceeb-f986-4f9a-b734-78ec3fc1e2f7',NULL),
('e5927dcc-d787-4518-82bd-a4cf123c9444','905331602195','Sayın yetkili; STEPHANİE GOSSEYE adlı müşterinize 221669694 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 22.05.2025 11:36:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('e5a702ab-e03e-4085-941e-9e48bfd619e8','491727920023','Sayın YAVUZ KOÇMAN		, 910772127 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910772127\n\nDear YAVUZ KOÇMAN		, your shipment with 910772127 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910772127\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('e5ad669f-12e9-4d88-9674-45034a776ec2','4369919078247','Sayın NUSRET VAROL VURAL, 598427868 nolu gönderiniz 9266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598427868\n\nDear NUSRET VAROL VURAL, your shipment with 598427868 was delivered to you with the delivery code 9266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598427868\n\n\nBICARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('e5af6f08-c7a6-48cb-8999-be36c6e0c7f6','905335511664','ESMA MERT adlı müşterinizin 371282604 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('e5b1b0f2-7326-423d-ac0b-5201e1a9d2bf','905079358213','Sayın yetkili; HALİDE ÖZAY adlı müşterinize 745208965 nolu gönderinizin FRİDA ORTA SEHPA  ürünü 3 parça halinde Fatura adresinizden 25.08.2025 17:21:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ca923043-bfdc-4e29-9cf4-8669f6d1b498',NULL),
('e5b4ad45-fd51-4958-8c76-db6d8d0be1ac','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin Natura sandalye galaxy bej ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:41:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('e5b9deaa-e48b-49fe-9e1f-aab474c47649','33767845756','501588943 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/501588943\n\nYour shipment with the number 501588943 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/501588943\n\nBICARGO','1','e8131f06-593c-49fc-9c77-c5965295a667',NULL),
('e5bb64c2-5a77-4190-8c4b-3651c074865b','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ adlı müşterinize 221746261 nolu gönderinizin 70x120 cm traverten orta sehpa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.04.2025 16:09:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('e5bd6735-779b-4d67-92a2-d6a784f5bcc4','31655012632','Sayın SAİT CARCUR, 501423957 nolu gönderiniz 10610 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501423957\n\nDear SAİT CARCUR, your shipment with 501423957 was delivered to you with the delivery code 10610. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501423957\n\n\nBICARGO','2','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('e5bfa6e3-ccff-4b7c-b0b8-648d009dc3f0','5060503927','Sayın MEHMET KARAMAN, 10.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1074062\nŞifre : 1074062\n			\nBİCARGO','1',NULL,'10c74062-bfc4-4eca-8c51-74ea22e8f2ff'),
('e5c4fab6-9fa2-41e0-b484-c4ec07128d0d','4916097979747','Sayın DELİL ÖZÇELİK, 644680025 nolu gönderiniz 3752 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644680025\n\nDear DELİL ÖZÇELİK, your shipment with 644680025 was delivered to you with the delivery code 3752. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644680025\n\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('e5c88a80-94c6-4591-92f5-f191fa3615cc','4915151400304','371884796 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7847 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371884796\n\nYour shipment with the number 371884796 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7847. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371884796\n\nBICARGO','1','08c394f5-81b6-4f94-b6e3-4d898cb44cae',NULL),
('e5c898d3-07b2-4fc5-be02-a17580a34027','905461661672','AYLA BAYKAL adlı müşterinizin 644606140 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('e5df337d-e4bc-42da-bfdb-e18f2a877a0d','31624464120','Sayın MEHMET KILINÇ, 428239917 nolu gönderiniz 10606 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428239917\n\nDear MEHMET KILINÇ, your shipment with 428239917 was delivered to you with the delivery code 10606. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428239917\n\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('e5e3ba06-c9c0-4bd0-9306-01e828cef736','0032493360527','Sayın MEHDİ NAEİMİ, 319275080 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319275080\n\nDear MEHDİ NAEİMİ, your shipment with 319275080 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/319275080\n\nBICARGO','2','24ce526d-0f1b-4457-8342-2e64978bfedd',NULL),
('e5e9d31a-a013-4187-a55e-7a6f0d818bbd','491590140330','Sayın SANİ ALAJBEGOVİC, 644344492 nolu gönderiniz 4836 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644344492\n\nDear SANİ ALAJBEGOVİC, your shipment with 644344492 was delivered to you with the delivery code 4836. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644344492\n\n\nBICARGO','2','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('e5edc55b-3504-4b44-acca-eb7d69240cb8','905331602195','Sayın yetkili; ASMA SOULTANA  adlı müşterinize 221854185 nolu gönderinizin 80x160 Msm 11 baskılı masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:39:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','835e4364-d826-4aea-9a85-7df6a6777f74',NULL),
('e5efc0bb-4ea8-4be7-91ab-20bfbf3d1bf7','905363385813','Sayın yetkili; ERDAL OCALAN adlı müşterinize 976126416 nolu gönderinizin Tv Ünite ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:56:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a53ce358-8681-4bd7-86f3-ca3347ae0364',NULL),
('e5f17308-1195-4593-a683-37c889fe65c1','905335511664','GÜLSEREN ŞAHİN adlı müşterinizin 371494792 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('e5fd4591-9ea9-4750-ba05-6aa903472b03','905461661672','SANİ ALAJBEGOVİC adlı müşterinizin 644344492 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a3da76d9-3e08-44c3-b712-87bc2e6f90e4',NULL),
('e600152b-4ea7-4623-9926-f377fb1448ed','491787704238','ŞÖFÖR NUMARASI\n					+905467896981','1','57672219-300a-458c-9d17-3e58d19f71a2',NULL),
('e6025ce7-4b5d-4c9b-ba68-a9fc169e1465','905461661672','BETÜL ÇELİK adlı müşterinizin 644334455 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('e604fbe0-8a31-4327-8cbe-0f6476121bde','31625064385','Sayın COŞKUN MURAT AKTAŞ , 41246036 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41246036\n\nDear COŞKUN MURAT AKTAŞ , your shipment with 41246036 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41246036\n\nBICARGO','1','c1837e11-ca5e-4d19-8036-dbbc4ec6ecd8',NULL),
('e60f4652-a710-44a9-864e-7c450c49f697','33642364836','Sayın TALL YOANN, 221132707 nolu gönderiniz 9231 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221132707\n\nDear TALL YOANN, your shipment with 221132707 was delivered to you with the delivery code 9231. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221132707\n\n\nBICARGO','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('e612e51e-d87b-460d-ac54-bf8e5658a814','11125363838374','Sayın MAİL BOXES ETC, 223923203 nolu gönderiniz 7579 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223923203\n\nDear MAİL BOXES ETC, your shipment with 223923203 was delivered to you with the delivery code 7579. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223923203\n\n\nBICARGO','2','6bb117b8-f17b-4adf-b1d8-76f485b60723',NULL),
('e6134327-8d45-4a6a-a38b-543e3ee973db','33660910086','221348923 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4493 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221348923\n\nYour shipment with the number 221348923 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4493. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221348923\n\nBICARGO','1','e4cc7e91-40bd-48ac-b605-1360a7f4e07c',NULL),
('e6168ace-da40-4dcf-83c6-b257c59fffc8','491779772088','Sayın NAZIM KORKMAZER, 644771270 nolu gönderiniz 4599 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644771270\n\nDear NAZIM KORKMAZER, your shipment with 644771270 was delivered to you with the delivery code 4599. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644771270\n\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('e61a6cfc-5429-405e-83a3-c7eff90b9774','4917674951049','47822949 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2380 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47822949\n\nYour shipment with the number 47822949 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2380. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47822949\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('e620c511-2288-4c2e-bbb2-4581b91fec09','905059175469','Sayın yetkili; FAZIL İSPANYA adlı müşterinize 42892944 nolu gönderinizin yemek odası ürünü 1 parça halinde Fatura adresinizden 14.06.2025 15:32:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('e620fd71-3d46-408b-8f65-8dc9a523018d','4915222621206','Sayın SELÇUK SÖNMEZ, 371183095 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371183095\n\nDear SELÇUK SÖNMEZ, your shipment with 371183095 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371183095\n\nBICARGO','1','8634d29b-6164-4e3e-a0b9-d50827c18702',NULL),
('e623516a-7ccb-4b5e-8cc1-9e291df7ff08','905331602195','GURAY SEYFELİ adlı müşterinizin 221390997 nolu gönderisi 19 parça halinde yola çıkmıştır.','1','2c97cb3e-43a3-4446-a336-f97bc3f68c00',NULL),
('e6252c39-cca9-45aa-98d7-2b6afa521e11','31611699188','Sayın ALPEREN BAYRAM, 65722585 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/65722585\n\nDear ALPEREN BAYRAM, your shipment with 65722585 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/65722585\n\nBICARGO','1','3f435f52-f9e1-4789-86ed-910c595d9e14',NULL),
('e626a453-6fa0-412d-a0e1-3762a9587190','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin Sandalye ürünü 1 parça halinde HATEM sandalye adresinizden 15.08.2025 13:06:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('e629bd07-68be-4526-a63d-cef32b444a39','4915227637315','Sayın  İLKER YAVAŞOĞLU, 613252288 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613252288\n\nDear  İLKER YAVAŞOĞLU, your shipment with 613252288 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613252288\n\nBICARGO','1','3b2b9553-2254-427e-9970-41bddf8e65b0',NULL),
('e62cc099-eae2-4cbe-9101-3f69f98e9bc6','905075277637','ÜMMÜGÜLSÜM KARAKUŞ SSH  adlı müşterinizin 745967323 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','cefb457d-b590-4671-9309-7f0658b9b20e',NULL),
('e63aa772-5748-41f5-9636-b04deb1cf517','905306071261','Sayın yetkili; ŞULE ÇAYIR  adlı müşterinize 765501651 nolu gönderinizin Nikola Köşe Koltuk 350*340cm ölçülerinde ve berjer  ürünü 6 parça halinde BESTLİNE SOFA adresinizden 27.08.2025 11:20:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('e644825a-454b-473a-9a83-88bbd578be9b','905059175469','ASLIHAN GÜÇLÜ  adlı müşterinizin 428499287 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ff039116-94c2-4c75-851c-9deaf4e01549',NULL),
('e64700ad-a556-471f-bdcc-56ed317679a2','33785512732','Sayın HÜSEYİN ÖÇAL SSH , 745350597 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745350597\n\nDear HÜSEYİN ÖÇAL SSH , your shipment with 745350597 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745350597\n\nBICARGO','1','05c3682c-97a8-485e-84ef-f349df760f4f',NULL),
('e6511065-2334-45c1-806d-db97cd6a1166','905318109098','NRW MENDEN FRÖNDENBERG adlı müşterinizin 45586545 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','70b5db6e-ebeb-4141-b0d9-2ab8fe33dc90',NULL),
('e651ef37-349b-4f10-ba30-8ac872993ece','4917661977861','Sayın RAMAZAN AY, 644542202 nolu gönderiniz 1730 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644542202\n\nDear RAMAZAN AY, your shipment with 644542202 was delivered to you with the delivery code 1730. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644542202\n\n\nBICARGO','1','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('e654516f-fc23-494b-b22f-bb5f51475f2c','905363385813','MUHAMMED EL BOUCHATTAOUI adlı müşterinizin 976235260 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','fa18ca87-c85d-4bd0-9f1f-eb36f34d3b7e',NULL),
('e65522d5-d3c8-4bc7-b638-149f31476102','491797358234','Sayın FİDAYE YILDIRIM, 920821712 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/920821712\n\nDear FİDAYE YILDIRIM, your shipment with 920821712 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/920821712\n\nBICARGO','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('e6589ded-a6ac-4ae9-831e-fcd6b4731171','905335708965','KORNİŞ ÇUVAL adlı müşterinizin 248173138 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','fdd68378-14a3-446e-acd4-64b7634a5689',NULL),
('e66056b8-51e8-44a6-ba32-00f1d51f3c11','905059175469','Sayın yetkili; ÖMER KARAMAN adlı müşterinize 428857511 nolu gönderinizin ssh ayak ürünü 1 parça halinde Fatura adresinizden 03.12.2024 11:39:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('e66d2389-b86d-4cf7-9af0-3824441f975d','905059175469','SEBAHAT KOÇAK adlı müşterinizin 428761245 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','63812a5c-02ef-4661-96d7-348a4af6ef8a',NULL),
('e66e6b7e-ef8e-405f-a7cc-060887a4ad72','905079358213','Sayın yetkili; LEİLA GELES SSH adlı müşterinize 745865715 nolu gönderinizin SSH KÖŞE PARÇASI  ürünü 1 parça halinde Fatura adresinizden 09.05.2025 12:14:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2a49a8b8-d291-4b65-ab34-09699d72e39f',NULL),
('e66fafb3-817d-4f7d-90f8-53272bbcd244','905075277637','FATMA SARI adlı müşterinizin 745619301 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('e6768024-d1aa-4324-93a1-941e04458c85','905517075149','Sayın yetkili; METİN NEŞELİ adlı müşterinize 478345732 nolu gönderinizin prada koltuk takımı ürünü 5 parça halinde albera life adresinizden 10.07.2025 16:46:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('e6779a80-0afe-40de-8aa5-af90a8f286e9','41792382873','DRİVER\n					ADNAN\n+905354622027','1','1af2876c-3389-4499-8232-9de4f494db77',NULL),
('e67e189e-f3d8-43dc-b986-7268758497ad','33676203285','Sayın AYSEL-İSMAİL ÇILGIN, 478928003 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478928003\n\nDear AYSEL-İSMAİL ÇILGIN, your shipment with 478928003 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478928003\n\nBICARGO','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('e67f2269-58da-428c-aa0e-4f7daf5a7730','','428184423 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1439 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/428184423\n\nYour shipment with the number 428184423 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1439. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/428184423\n\nBICARGO','2',NULL,NULL),
('e6802fb0-7472-4e1e-a46e-17e12b0a7ca8','33606409257','982966360 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6428 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982966360\n\nYour shipment with the number 982966360 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6428. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982966360\n\nBICARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('e683a147-805a-485f-aece-1755cdbc86b6','905335511664','Sayın yetkili; NERMİNA SKENDERİ adlı müşterinize 371749484 nolu gönderinizin KÖŞE TAKIMI ürünü 3 parça halinde Elitis Home adresinizden 25.06.2025 15:18:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8385b6e4-e1a2-43de-b257-e53a890a4c6b',NULL),
('e685c34d-8c71-4972-8791-f1dbcd336917','33660766848','Sayın ESİN TUNCA, 982314530 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982314530\n\nDear ESİN TUNCA, your shipment with 982314530 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982314530\n\nBICARGO','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('e6878668-0f69-4da6-9f3c-32261b21cddf','491723218858','Sayın LAURA SCHMİTT, 613721320 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613721320\n\nDear LAURA SCHMİTT, your shipment with 613721320 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613721320\n\nBICARGO','1','64f79831-49d1-48f5-a6e6-698737009565',NULL),
('e68d3dbc-dc0b-45d5-8766-b2c7dd8061e7','905059175469','TURGAY YILDIRIM adlı müşterinizin 428510909 nolu gönderisi 6 parça halinde yola çıkmıştır.','1',NULL,NULL),
('e6995fea-02dd-4ef2-a344-9d9b68d36772','4915147275146','Sayın EMİNE MERİÇ, 51557557 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/51557557\n\nDear EMİNE MERİÇ, your shipment with 51557557 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/51557557\n\nBICARGO','1','5d4df7c0-7f38-4095-847c-3996a99d1a51',NULL),
('e69e18a6-07ce-4e4e-b746-363ca3006659','905461661672','Sayın yetkili; MERT GÖKMEN adlı müşterinize 644796086 nolu gönderinizin karyola ürünü 4 parça halinde ALBESSA DESİGN adresinizden 29.05.2025 15:44:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('e6a66043-78b4-4df0-b562-2ada339d001b','1111111111','Sayın İLAYDA FİDAN , 019868401 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019868401\n\nDear İLAYDA FİDAN , your shipment with 019868401 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/019868401\n\nBICARGO','2','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('e6a89f56-44b7-418a-b4c7-6654af17b103','905394878216','Sayın yetkili; SEVAY NİKOLAEVA YANKOVA adlı müşterinize 517895646 nolu gönderinizin Yemek Odası ürünü 25 parça halinde Fatura adresinizden 09.07.2025 11:22:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('e6afd7db-3e7a-4870-985d-01ee5ac10506','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin SANDALYE 6 ADET ürünü 3 parça halinde acca adresinizden 17.06.2025 11:42:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('e6b40c84-975d-4487-8835-c025652d3c59','905517075149','Sayın yetkili; METİN NEŞELİ adlı müşterinize 478345732 nolu gönderinizin 160x200 set ürünü 4 parça halinde BİCARGO DEPO adresinizden 08.07.2025 15:41:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('e6b89512-63d8-4fec-94dc-f7ef309409b7','905454259202','MÜCAHİT SÖYLEMEZ adlı müşterinizin 478342417 nolu gönderisi 37 parça halinde yola çıkmıştır.','1','32a7763a-26ff-40ce-a7e9-6378f8554627',NULL),
('e6bd7cb8-6de2-47bf-857b-46a5929fc301','4917646295086','Sayın PINAR SALMA, 745687103 nolu gönderiniz 8839 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745687103\n\nDear PINAR SALMA, your shipment with 745687103 was delivered to you with the delivery code 8839. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745687103\n\n\nBICARGO','1','83523717-3c96-466b-bee7-e0dfa2259e82',NULL),
('e6c3a29a-eafb-4bc0-beb0-d6ca0f5a39d9','33763000176','Sayın KAZIM KURUCU, 478335843 nolu gönderiniz 2167 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478335843\n\nDear KAZIM KURUCU, your shipment with 478335843 was delivered to you with the delivery code 2167. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478335843\n\n\nBICARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('e6c690e6-3f15-4624-8a28-2bf4183c243c','3377867204','Sayın BECET ÖZDEMİR, 478221533 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478221533\n\nDear BECET ÖZDEMİR, your shipment with 478221533 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478221533\n\nBICARGO','2','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('e6cdd9a7-4b08-4e73-a861-9b602f7f6fe7','31650234175','501423957 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10610 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501423957\n\nYour shipment with the number 501423957 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10610. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/501423957\n\nBICARGO','1','e9ca480a-5f90-419c-b5bf-aea2d03c7975',NULL),
('e6cf24cc-f4d2-45b4-8e3c-cac45fdea971','905365908694','pirard caroline adlı müşterinizin 22315159 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bb67f0d6-0d35-431c-adda-2a839f6021ef',NULL),
('e6d5cbca-f198-4cfe-8756-8f2254f64695','4915737531059','221225501 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8403 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221225501\n\nYour shipment with the number 221225501 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8403. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221225501\n\nBICARGO','1','fa91f296-36f9-43f0-8480-dce4f2f7ed4b',NULL),
('e6d786f8-f640-418b-9602-94c63b75b109','33662539381','Sayın HATUN ŞİMŞEK, 842151692 nolu gönderiniz 9092 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/842151692\n\nDear HATUN ŞİMŞEK, your shipment with 842151692 was delivered to you with the delivery code 9092. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/842151692\n\n\nBICARGO','1','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('e6dac951-ff9d-4851-95bd-9e039b7e4b8c','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin YEMEK MASASI ürünü 3 parça halinde Fatura adresinizden 15.10.2025 12:06:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('e6e3512e-19fd-4fcc-baf6-bffb90e474ca','491624193445','745747218 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745747218\n\nYour shipment with the number 745747218 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745747218\n\nBICARGO','1','5b3baf2b-7f2f-4d1b-b94e-916816876346',NULL),
('e6e728ce-9584-41b6-8820-be87f2861650','491713800212','598578683 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7326 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598578683\n\nYour shipment with the number 598578683 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7326. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598578683\n\nBICARGO','1','eea08890-ec66-4c80-b59d-441d24154725',NULL),
('e6e840e2-a517-433f-96f2-5dd78d7984e3','4915141934259','Sayın SEMİH CENGİZ, 437551575 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437551575\n\nDear SEMİH CENGİZ, your shipment with 437551575 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437551575\n\nBICARGO','1','c930eade-75ea-4464-a6c5-445be1fb2f29',NULL),
('e6ec64bd-e3ac-41b5-91e0-f4b3f095d425','4917631419046','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','1e3e8ac2-1a23-459a-86a3-92cf233a6f66',NULL),
('e6f241d2-08d3-480d-a1a0-c5c9742d74ce','494621092008','Sayın SEVİM KAMER, 478524376 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478524376\n\nDear SEVİM KAMER, your shipment with 478524376 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478524376\n\nBICARGO','2','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('e6f6c97e-3c0e-45b6-ae93-63fe4a737f95','33768933805','Sayın VOLKAN ÖZKAN, 478741910 nolu gönderiniz 8004 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478741910\n\nDear VOLKAN ÖZKAN, your shipment with 478741910 was delivered to you with the delivery code 8004. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478741910\n\n\nBICARGO','1','d14c8be1-206d-44a7-97dc-bb0f2ac15937',NULL),
('e6f917f0-ebd5-4e92-b993-76f7fc16fc35','4917683383437','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','14ccf007-d3c5-4576-b55a-7094ed23bee6',NULL),
('e6fa8b16-8433-4ca6-98ae-81736943110c','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478784133 nolu gönderinizin yatak-yemek-tv-orta ürünü 20 parça halinde GARDEROBE adresinizden 08.08.2025 15:16:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38d1c9b7-3a61-4384-ad1c-a68175a7d8e5',NULL),
('e6fbf494-ea1c-40b9-9adb-5f799f8a8316','410791284387','Sayın VLORİNA BERİSHA, 613378961 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613378961\n\nDear VLORİNA BERİSHA, your shipment with 613378961 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613378961\n\nBICARGO','1','c7858430-6187-438e-9e7e-600528fb9aeb',NULL),
('e6fdf26d-1e05-45b4-afa7-3cbfc730176d','905331602195','Sayın yetkili; MURAT CENGİZ  adlı müşterinize 221186271 nolu gönderinizin 100x250 cm siyah meşe masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:25:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('e701f2d9-0444-439e-9450-b751f4864820','004917632525030','Sayın ZEHRA, 817918521 nolu gönderiniz 7190 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817918521\n\nDear ZEHRA, your shipment with 817918521 was delivered to you with the delivery code 7190. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817918521\n\n\nBICARGO','2','76a93010-f727-45fd-9ab0-e27e6c84c779',NULL),
('e70e72a6-0942-41df-bdf8-7f93f523414c','905073106101','İBRAHİM AKIN adlı müşterinizin 465524926 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('e71b5942-2d20-498e-bfd9-6456d51904ce','4917664132163','Sayın SHİMA MAKEH VANDİ, 371865484 nolu gönderiniz 8043 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371865484\n\nDear SHİMA MAKEH VANDİ, your shipment with 371865484 was delivered to you with the delivery code 8043. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371865484\n\n\nBICARGO','1','4c9e628d-c4ff-4606-88fd-789fb9c3affc',NULL),
('e7222317-7778-4240-9883-1f2b17af472f','905313340045','Sayın yetkili; HANİFE TURAN adlı müşterinize 437355925 nolu gönderinizin Masa ve orta sehpa ürünü 3 parça halinde masami adresinizden 30.08.2025 13:54:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ebbd439c-6c40-425f-adfe-65a9d4bbd563',NULL),
('e7271289-a0d8-4804-b92a-bb54c832498d','905313340045','Sayın yetkili; IVANA JURCEVİC adlı müşterinize 437869312 nolu gönderinizin PUF ürünü 1 parça halinde dorthome ofis adresinizden 22.05.2025 12:26:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('e72bc641-b512-47ba-950a-782e62c5f8f7','905451571652','Sayın yetkili; TARA SAİDA adlı müşterinize 531230160 nolu gönderinizin 1 PARÇA MODÜL ürünü 1 parça halinde Efe koltuk adresinizden 13.10.2025 12:30:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ec271b27-08c7-495f-a5a4-d5814e3d12fd',NULL),
('e72cdcc1-52cd-405e-8609-5b0648638625','905399896752','YASİN YAMANOĞLU adlı müşterinizin 93566108 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','36fc131d-bc86-4534-8af5-a0b5a37ff93e',NULL),
('e72ed7c5-bce9-4c1a-be76-6b1726380e94','905336367828','Sayın yetkili; Emek thibaut agit adlı müşterinize 982292057 nolu gönderinizin Masa  ürünü 3 parça halinde Erkal mobilya  adresinizden 08.11.2024 11:28:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('e732cc0d-204b-49f7-b639-8883f91d13d9','905517075149','OKAY DERİNKUYU adlı müşterinizin 478984010 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','603049b7-6bd8-4aed-a159-4c5f400607b7',NULL),
('e744dcc1-0d3d-4b3e-9c6b-478007e19df2','1111111111','019868401 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4815 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019868401\n\nYour shipment with the number 019868401 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4815. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/019868401\n\nBICARGO','2','f2f3813a-4330-4d7a-926d-057c1aa9190a',NULL),
('e7469422-4437-45b3-95df-7a5d180ee9d1','31643014600','Sayın SEBİHA DEMİR, 437233194 nolu gönderiniz 4463 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437233194\n\nDear SEBİHA DEMİR, your shipment with 437233194 was delivered to you with the delivery code 4463. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437233194\n\n\nBICARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('e74d3b21-b411-4119-afa8-7dcda3860d18','905331602195','HAVVA KUM adlı müşterinizin 221443179 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('e7587327-4c40-42d0-af16-c5f39642cf39','4917634145313','644762741 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3327 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644762741\n\nYour shipment with the number 644762741 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3327. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644762741\n\nBICARGO','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('e75d1e84-08dd-4045-a843-aa4980074289','905301592882','Sayın yetkili; SAMED DERE adlı müşterinize 910717262 nolu gönderinizin OPAL MASA+KONSOL ürünü 1 parça halinde Fatura adresinizden 24.03.2025 13:03:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('e762cd7d-59ee-4b4d-8eff-2758184fd7d4','905336367828','Sayın yetkili; donya bazaz adlı müşterinize 982692076 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 13.11.2024 15:37:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('e7637edc-0e9a-46c7-9b47-579cdd214c77','905325000478','ENES adlı müşterinizin 412746738 nolu gönderisi 159 parça halinde yola çıkmıştır.','1','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL),
('e764e19f-b54a-43aa-95a1-36ab6800dbf5','491729063463','İLETİŞİM\n					Furkan şöför = +905078826436','1','5bdda36d-058c-48a6-a634-4d0876d0f654',NULL),
('e7682e05-a586-4ce7-b548-5f5508df8b8a','905313340045','Sayın yetkili; ALPER ÖZDEMİR adlı müşterinize 437414847 nolu gönderinizin yemek masası ürünü 3 parça halinde decoria adresinizden 02.06.2025 14:46:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('e769bd07-b2bd-4a86-bf61-c2fe5c2f9701','905327099916','Sayın yetkili; ERCAN DİKME adlı müşterinize 959658567 nolu gönderinizin 2 ADET BERJER ürünü 2 parça halinde NOVAK MOBİLYA adresinizden 17.10.2025 15:20:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5e8ddd62-748e-4719-9bad-9f588fc2c7d3',NULL),
('e76b7b7d-61a8-4473-b44e-16fcb3cd22a3','905331602195','ISENİ ELMEDİNA  adlı müşterinizin 221967241 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('e76c17d3-44c9-47f1-841f-0cb4842b25b6','905325000478','Sayın yetkili; ABDULKADER TARRAB adlı müşterinize 412383870 nolu gönderinizin yatak ürünü 1 parça halinde Fatura adresinizden 11.07.2025 11:25:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1f6b1cb-16eb-4f24-903c-834f148431b7',NULL),
('e7730fda-d4cd-479f-9acc-d063240bdb5b','32475529099','Sayın ALİ ERKOCA, 745177264 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745177264\n\nDear ALİ ERKOCA, your shipment with 745177264 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745177264\n\nBICARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('e773dc7f-7ead-4a93-893d-dc3cda617435','436766459770','Sayın KENAN BAYAR SSH , 745101735 nolu gönderiniz 6316 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745101735\n\nDear KENAN BAYAR SSH , your shipment with 745101735 was delivered to you with the delivery code 6316. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745101735\n\n\nBICARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('e776e0a5-59ee-4e4c-bba5-34916109f3a3','905350617509','SELMA BAJRAMOSKA adlı müşterinizin 613633231 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37032355-b423-4a3a-bb38-ee78ac469313',NULL),
('e7798f26-7df6-4205-b824-b991453191bd','905517075149','Sayın yetkili; BECET ÖZDEMİR adlı müşterinize 478221533 nolu gönderinizin 4 adet  yatak ürünü 4 parça halinde Fatura adresinizden 03.09.2025 14:41:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9103cb0e-e686-4e54-ab7a-664a063bc56c',NULL),
('e77e77c7-3617-42d8-84f2-e688201c944b','905423036885','Sayın yetkili; FİDAYE YILDIRIM adlı müşterinize 920821712 nolu gönderinizin Köse Takımı ürünü 3 parça halinde Fatura adresinizden 03.09.2025 16:42:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d8ceea70-718a-4405-a27a-d02336aa2dc9',NULL),
('e7838e31-8780-4b78-8e93-e163692c0430','491758664558','Sayın NADİDE BAHÇEÇİOĞLU, 478283773 nolu gönderiniz 3522 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478283773\n\nDear NADİDE BAHÇEÇİOĞLU, your shipment with 478283773 was delivered to you with the delivery code 3522. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478283773\n\n\nBICARGO','1','95091d3e-5f38-4f5f-9e36-f30d00c51ff3',NULL),
('e787203f-6ff3-4466-b94f-92fae886c61f','33661847175','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('e7881a5e-d489-490c-b2d9-7ec62ded5c3b','491752309322','Sayın ZAFER SARIDAŞ(K), 644717952 nolu gönderiniz 8051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644717952\n\nDear ZAFER SARIDAŞ(K), your shipment with 644717952 was delivered to you with the delivery code 8051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644717952\n\n\nBICARGO','1','d8e81c58-d245-41e7-a030-04aad4fea77d',NULL),
('e78a75b6-ac3c-4962-b53b-4bc37663ccb0','905459011033','AVP KADİR adlı müşterinizin 268262151 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('e78d4a23-e60b-4823-9d83-fff7ecd34fce','4917641085113','371494792 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2522 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371494792\n\nYour shipment with the number 371494792 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2522. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371494792\n\nBICARGO','1','49b3f497-a340-40f9-9aeb-fcbaeae86b09',NULL),
('e7924819-86b0-42dc-bf53-7ce8ce16d7b4','9054439559150','Sayın yetkili; OSMAN SATİCİ adlı müşterinize 614536111 nolu gönderinizin TÜRKMEN PORTO KÖŞE TAKIMI (3,12 X 2,60 CM) ürünü 4 parça halinde Fatura adresinizden 20.08.2025 14:28:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','3a6116b3-b977-4787-9877-ea0b090bc7e7',NULL),
('e793a7bc-f16a-49a2-8db3-919083c6979d','905517075149','Sayın yetkili; BİLAL AYTAR adlı müşterinize 478702481 nolu gönderinizin masa -6 sandalye-ortasehpa ürünü 7 parça halinde family adresinizden 22.10.2025 15:01:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2001cb25-64fc-43dd-827f-15869eca039f',NULL),
('e7960fba-fc59-4dc8-9a00-0de9bccf6733','905336367828','Sayın yetkili; EHSANULLAH SEDİGİ  adlı müşterinize 982663240 nolu gönderinizin koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 12.02.2025 14:26:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','50aeff12-6812-447f-b3a6-0c51ad9fc878',NULL),
('e79a10e5-f7cd-4243-a7c1-45d39cbed61b','491741928164','Sayın İLAYDA GÜNEŞ SSH, 371280361 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371280361\n\nDear İLAYDA GÜNEŞ SSH, your shipment with 371280361 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371280361\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('e79a9c9e-e3e9-4a7c-9d9d-621b9a430fa2','905461661672','Sayın yetkili; CANAN ŞENEL adlı müşterinize 644319069 nolu gönderinizin 2 ADET KANEPE ürünü 3 parça halinde BAYSA KOLTUK adresinizden 14.05.2025 14:25:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('e79acb63-77fa-42fd-9329-2b21e937fab4','905079358213','Sayın yetkili; MEHMET ANDIÇ adlı müşterinize 745759881 nolu gönderinizin ALYA KOLTUK TK 3+3+1 2TKM  ürünü 6 parça halinde ELİTİS adresinizden 29.09.2025 12:40:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00f4949d-f6aa-4775-913c-9c6fc75113bf',NULL),
('e7a31da4-b8b6-4cbc-9b3a-71a7c237df45','491787816278','Sayın SEMİH TÜRKOĞLU, 371696812 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371696812\n\nDear SEMİH TÜRKOĞLU, your shipment with 371696812 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371696812\n\nBICARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('e7a49376-6968-43e8-8159-01c41936afc9','33689770031','Sayın KENAN KARAKAYA, 478805224 nolu gönderiniz 3374 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478805224\n\nDear KENAN KARAKAYA, your shipment with 478805224 was delivered to you with the delivery code 3374. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478805224\n\n\nBICARGO','1','5c6ec0c5-22d6-47e2-968f-a3dffce4d711',NULL),
('e7a5facf-054a-4eec-b39e-9b3e868a363f','4915227034856','Sayın WALLA DİAB, 735718998 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735718998\n\nDear WALLA DİAB, your shipment with 735718998 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735718998\n\nBICARGO','1','ebaddd2d-5358-49e9-9dab-6b7795385f66',NULL),
('e7a8039d-8190-485c-9fc3-a2b30c80808c','33768933805','Sayın VOLKAN ÖZKAN, 478702476 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478702476\n\nDear VOLKAN ÖZKAN, your shipment with 478702476 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478702476\n\nBICARGO','1','8c7727ab-5a57-4d7e-9785-b58268d5cdaa',NULL),
('e7a82db3-cf08-42b4-8ded-4dcb94bf3695','905079358213','Sayın yetkili; BURAK SARIKAYA adlı müşterinize 745816946 nolu gönderinizin DELUXE 90X190 BAZA SETİ 1 ADET  ürünü 3 parça halinde Fatura adresinizden 30.09.2025 12:29:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('e7aa8612-9ad4-499f-a4ca-29b1f9108bed','05388618969','MUSTAFA AZAMİ  adlı müşterinizin 786668251 nolu gönderisi 6 parça halinde yola çıkmıştır.','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('e7aa9287-e410-46fa-ae6c-1603b9b352b8','905454259202','YASİN OĞUZ adlı müşterinizin 478233957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('e7aedfc7-8a12-4567-a884-d8720a647765','33749990296','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','8afa44a9-611f-49db-a99e-d5e01b5689f2',NULL),
('e7b37e9a-3620-4e5c-b985-00113b5e6e46','905428209234','Sayın yetkili; GAMZE ÖZDEMİR adlı müşterinize 319645924 nolu gönderinizin 11 KAPAKLI BRONZE DOLAP ürünü 18 parça halinde EYFEL adresinizden 19.09.2025 12:02:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d054b4a7-35f3-468e-a1b3-28d2ebd815c0',NULL),
('e7b9d893-6485-40c5-b62f-fe88f96a5ebe','491797361185','Sayın HATİCE GÜRBAY, 22140129 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22140129\n\nDear HATİCE GÜRBAY, your shipment with 22140129 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22140129\n\nBICARGO','1','e12dbbce-8edb-4cbf-84c3-7c6f1ef4be51',NULL),
('e7b9ebd5-56aa-4cc6-96ff-6b1173d4f533','905335511664','Sayın yetkili; HÜMEYRA ZEYREK adlı müşterinize 37152330 nolu gönderinizin sandalye ürünü 6 parça halinde Sandalyeci Bekir adresinizden 23.05.2025 20:12:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('e7bc791d-ad0b-420c-9e64-20046f56ed82','436765710207','Sayın TAHSİN AKSOY, 644716997 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644716997\n\nDear TAHSİN AKSOY, your shipment with 644716997 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644716997\n\nBICARGO','1','e82d9e2c-30a8-45ae-9d88-e3e83c923e9a',NULL),
('e7c62f4f-ca14-47a8-a1f6-5bcc62bd6cc3','905394878216','MASİS YAZMACİYAN adlı müşterinizin 517867004 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab7b4af9-0f1b-4686-8ac3-9b36e49cae04',NULL),
('e7c79414-a711-4e8c-9442-2ccd5486505b','05388618969','Sayın yetkili; MUSTAFA AZAMİ adlı müşterinize 786398335 nolu gönderinizin 3 kutu sandalyen mustafa  ürünü 3 parça halinde Fatura adresinizden 22.05.2025 17:34:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','fb2fc179-a854-474a-abee-016abeacaafd',NULL),
('e7cf441d-494e-4e97-912e-23c06719a334','41782664887','Sayın ENİ SYLEJMANİ, 449178440 nolu gönderiniz 9530 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449178440\n\nDear ENİ SYLEJMANİ, your shipment with 449178440 was delivered to you with the delivery code 9530. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449178440\n\n\nBICARGO','1','b05077ea-d4bb-417b-8413-3e1fc0346e79',NULL),
('e7d03561-3fd7-404b-8a02-31a5987c83c7','905313340045','SELİN URAK adlı müşterinizin 437152964 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','d9ce2f65-7034-4114-b66f-0c1076eb90bf',NULL),
('e7d05201-c677-4618-9262-1205db82374a','905331602195','MURAT CENGİZ  adlı müşterinizin 221186271 nolu gönderisi 13 parça halinde yola çıkmıştır.','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('e7d44892-294d-4ccf-b607-cb0b54ce8455','905079047428','MUKUNGU KULEMFUKA adlı müşterinizin 449193323 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','f50e308b-4ed8-4046-a377-c601e8b36d2d',NULL),
('e7d4ac75-1e55-4cee-a60e-162298fa5e77','905454259202','MİNA ANNABİ adlı müşterinizin 478278253 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('e7d56893-7ed6-40b0-bc5e-4c42daff8c97','33753451993','Sayın LYNDA MOUSSA, 982425532 nolu gönderiniz 9211 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982425532\n\nDear LYNDA MOUSSA, your shipment with 982425532 was delivered to you with the delivery code 9211. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982425532\n\n\nBICARGO','1','13aba735-b82d-4898-a98c-4167bb80085c',NULL),
('e7da7b12-2b72-413b-8bd3-4e9fb854a53e','905461661672','KÜRŞAT OKUTAN adlı müşterinizin 644377360 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('e7dab11b-ed33-42ad-b90d-90d54436b5c5','491797333588','412548356 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8426 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412548356\n\nYour shipment with the number 412548356 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8426. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412548356\n\nBICARGO','1','aa584535-e03c-4c2c-afa7-fa71495534c6',NULL),
('e7e29a3f-f74f-4225-922e-0ce1d1abfa59','905078062550','YASEMİN MUTLU adlı müşterinizin 598131456 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('e7e4babf-f3cc-4167-bb6a-7bec3e05c474','41791530005','69529713 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7565 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/69529713\n\nYour shipment with the number 69529713 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7565. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/69529713\n\nBICARGO','1','02d7bc39-8bff-409d-a369-f5c602c1c79b',NULL),
('e7e774f6-1eed-4297-a58c-029436fa6874','491786857560','Sayın MUHAMMET KÖSEDAĞ(K), 644590959 nolu gönderiniz 2538 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644590959\n\nDear MUHAMMET KÖSEDAĞ(K), your shipment with 644590959 was delivered to you with the delivery code 2538. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644590959\n\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('e7eca8b3-0ac7-4566-a348-a878feb2ff3e','905325000478','MURAT YALIN adlı müşterinizin 412330197 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','087bf0c6-b2ad-46d6-a7bc-17873ca0b1c3',NULL),
('e7eded43-9e90-4401-a0b8-7fc20c688809','905075277637','Sayın yetkili; OKTAY SAMET ŞAHİN adlı müşterinize 745782616 nolu gönderinizin AQUA YEMEK ODASI KONSOL MASA 10 SANDALYE ürünü 10 parça halinde AREA adresinizden 04.08.2025 15:50:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('e7f4446e-7330-4ade-8ccf-b3089c9dccf8','905355928266','ELA SARL adlı müşterinizin 412316933 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','40fcf0e9-c7f1-43ac-997b-6042ca4b152a',NULL),
('e7f5b3ab-a259-4d66-bd68-515831469d0d','905325000478','NURAY ÖZKAN adlı müşterinizin 412767922 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0686aefd-6bc5-4963-b256-37bb53456216',NULL),
('e7f64a5b-b5d4-464c-b9e0-4faf39b50d77','905075277637','ARZU AKSİ adlı müşterinizin 745817440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('e7f81738-43ce-43b8-8362-f9bc7f31151d','4369919273534','Sayın CEM BÜYÜKDEMİRCİ, 437545074 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437545074\n\nDear CEM BÜYÜKDEMİRCİ, your shipment with 437545074 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437545074\n\nBICARGO','1','d1449931-2ff8-4afa-9b0e-bdc3343cb106',NULL),
('e7ff12c9-6cf5-4420-b93f-5b7a5b437f63','5325000478','Sayın AASSASAS SAAAAASS, 20.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 0755140\nŞifre : 0755140\n			\nBİCARGO','1',NULL,'c0caa75d-5140-4f30-af4c-9e9f3874a360'),
('e801a428-ca21-4099-abd3-3e33258af54a','905335511664','Sayın yetkili; NERGİZ TOPRAK adlı müşterinize 371540742 nolu gönderinizin keramik masa + sehpa ürünü 5 parça halinde Seramik Masa Üreticisi adresinizden 01.09.2025 14:47:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('e820274f-62e3-48dd-b95d-c4a2774a4b55','905079358213','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin BERLİN KÖŞE TAKIMI  ürünü 4 parça halinde Fatura adresinizden 11.09.2025 15:53:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('e8227b80-7235-4065-9ba5-4464d6f94809','905331602195','Sayın yetkili; HATEM  adlı müşterinize 221341784 nolu gönderinizin Nevada ceviz masa  ürünü 9 parça halinde Fatura adresinizden 18.12.2024 16:28:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('e82d13af-d378-4d73-8ec9-ddd07e643bec','32465396386','Sayın TAYSUMA ESET, 221944135 nolu gönderiniz 8827 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221944135\n\nDear TAYSUMA ESET, your shipment with 221944135 was delivered to you with the delivery code 8827. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221944135\n\n\nBICARGO','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('e8344e1d-888d-4ca6-8934-d6fdb95fc708',NULL,'SALİM YILDIZ adlı müşterinizin 112189439 nolu gönderisi 11 parça halinde yola çıkmıştır.','2','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('e834c140-794d-4d33-86e4-b2393579dcf5','905335708965','HELİN SICAK adlı müşterinizin 735298003 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL),
('e83576bf-b51f-47b9-8f44-fdf137cbb76c','905335511664','ALPER ALBAYRAK adlı müşterinizin 371400028 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','babb1102-d4bb-4eaa-aadd-0d7c27ab01da',NULL),
('e83f185c-301a-423e-a250-c1db97d7ba94','905079358213','AYDIN İLKNUR adlı müşterinizin 745545386 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('e844a85e-7054-4e92-9cce-8da399ca3a6a','905517075149','Sayın yetkili; FAHRETTİN AKISKA adlı müşterinize 478339664 nolu gönderinizin köşe takımı ürünü 5 parça halinde RİXXE adresinizden 10.09.2025 13:53:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('e849a0e3-be91-4339-8457-b50d2b8c8fb3','00491727271107','735340001 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8271 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735340001\n\nYour shipment with the number 735340001 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8271. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735340001\n\nBICARGO','2','8c642f07-fecc-4e58-93cd-963c384ca41d',NULL),
('e84b1b61-e874-4f48-815d-20ca02a12d64','905331602195','MAZİJA IBRAHIMOVİC adlı müşterinizin 221417499 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','98638de6-50b2-480f-acc9-1f74364a7f92',NULL),
('e84d8a7a-9c64-4b23-8e65-c12f067f83ab','11111111111','Sayın SALONİ, 412989879 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412989879\n\nDear SALONİ, your shipment with 412989879 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412989879\n\nBICARGO','2','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('e855432e-72b8-4109-b7f2-e61d950d03fa','491639578000','Sayın HALİME ÜNSAL, 429340012 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/429340012\n\nDear HALİME ÜNSAL, your shipment with 429340012 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/429340012\n\nBICARGO','1','407deddd-1eea-492c-b3b9-cb9b467f573d',NULL),
('e8582458-78cf-4f07-83a5-befe0ff02bba','31641672960','Sayın HAKİM AZZOUZ, 657301470 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657301470\n\nDear HAKİM AZZOUZ, your shipment with 657301470 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657301470\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('e85a5b17-3972-4d07-8fdf-2ca771298eaa','4917621666906','Sayın ELİSABETH BRUCH, 371807983 nolu gönderiniz 1142 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371807983\n\nDear ELİSABETH BRUCH, your shipment with 371807983 was delivered to you with the delivery code 1142. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371807983\n\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('e85a5e0a-38ab-43cb-993a-c9cd6205fc29','491728404403','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','e669cb7b-a8f5-4e19-951f-46f5bfb0a3d1',NULL),
('e85fbf95-a67e-4e83-a36a-23531266a8d9','41764259879','Sayın ŞÖMİNE, 412987652 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412987652\n\nDear ŞÖMİNE, your shipment with 412987652 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412987652\n\nBICARGO','1','bb4a6dd2-62fb-484d-a695-2d7b87e164ed',NULL),
('e8643a8f-0489-468c-9f51-a61769542543','436604232899','657785918 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1168 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/657785918\n\nYour shipment with the number 657785918 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1168. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/657785918\n\nBICARGO','1','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL),
('e86b0086-a5c4-4d01-a854-ec62f4d56d54','905363385813','Sayın yetkili; NAFİLE ÖCALAN adlı müşterinize 976821188 nolu gönderinizin MASA ÜST ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:55:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8277179b-dd64-4a72-b947-d8a5c906a9b0',NULL),
('e86ec542-f900-4dab-bbbf-d9791a4acff9','905079047428','OMAR AHMEDİ  adlı müşterinizin 44998008 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL),
('e877112e-b2b8-4124-b947-7eafcd5a9fe1','491632890514','Sayın MEHMET ÇOBAN, 478244236 nolu gönderiniz 5501 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478244236\n\nDear MEHMET ÇOBAN, your shipment with 478244236 was delivered to you with the delivery code 5501. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478244236\n\n\nBICARGO','1','a349e6ca-f1b8-46ae-908a-a7f522ecfdf1',NULL),
('e87ce5ef-a7a3-4430-8fa5-022967a571bb','905333323012','VALMİRA RAMADANİ adlı müşterinizin 695394738 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('e88730c8-3cdb-4521-b21d-d7b8217f3595','4917630150861','Sayın SADIK PALA, 478633498 nolu gönderiniz 5741 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478633498\n\nDear SADIK PALA, your shipment with 478633498 was delivered to you with the delivery code 5741. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478633498\n\n\nBICARGO','1','c3ca0983-cc3b-4324-b93e-aa09860d88e6',NULL),
('e88937e8-50d0-41c4-bcd4-ed32c5f1b761','491788532068','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('e892871c-8191-4cbe-81eb-f3727a8b8d7c','905075277637','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 06.05.2025 13:12:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('e89e1194-ce06-40a3-8959-914bfed192df','905075277637','ERDİNÇ ESKİ adlı müşterinizin 745505942 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d85df80f-4bcc-482f-949e-4393d27c0874',NULL),
('e8a516bb-3676-4bb8-a6f4-20dbaeb6c27b','905461661672','Sayın yetkili; SEPAN MOHAMMED adlı müşterinize 644107524 nolu gönderinizin TRAVERTEN MASA ürünü 1 parça halinde AFYON TRAVERTEN adresinizden 24.03.2025 13:43:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4e8221f0-0ed6-4604-bd0f-45a00d3e3c89',NULL),
('e8a9cb1f-2eb9-4d5d-a685-210ed2bb5d1f','905461661672','ZELİHA SARITAŞ adlı müşterinizin 644287826 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('e8b635e6-5ac6-4258-b0e4-bd80012d1042','905451571652','Sayın yetkili; NİLGÜN LEUKEL adlı müşterinize 531629494 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde PABLO HOME adresinizden 06.10.2025 12:23:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','994456e0-b759-4b05-827f-74c05ad02194',NULL),
('e8bca664-825a-4cd0-a7bf-24b261ed761a','31642750576','Sayın ÖZGÜR GÖKÜZÜM, 22142813 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/22142813\n\nDear ÖZGÜR GÖKÜZÜM, your shipment with 22142813 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/22142813\n\nBICARGO','1','83b6fa22-325d-4428-9f65-24d93d1dbfb4',NULL),
('e8beb254-d411-4162-8ec1-29e9da8f53c0','905459011033','SEYFETTİN adlı müşterinizin 268437547 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e3d501f7-bb6a-427a-b83e-dcb6d20860d4',NULL),
('e8c0251b-6098-4928-b5b5-75da229f3ee7','1111111111111','Sayın SOBA-PETEK, 41270066 nolu gönderiniz 5185 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/41270066\n\nDear SOBA-PETEK, your shipment with 41270066 was delivered to you with the delivery code 5185. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/41270066\n\n\nBICARGO','2','764df280-e03e-49f4-9e1f-81ff18f0251d',NULL),
('e8c12c31-1019-49b0-b6c7-a79f596e13ee','905461661672','ERDEL SİBEL SSH adlı müşterinizin 644426448 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','d7ac6388-f270-4fa6-aa23-ef7cd4f9ec9d',NULL),
('e8c52a8f-144b-4d82-bfc0-951619bdc95d','41765344310','982639053 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3593 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982639053\n\nYour shipment with the number 982639053 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3593. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982639053\n\nBICARGO','1','f063cb46-f6be-4212-a6d8-9be7624bb39d',NULL),
('e8c77819-ec9c-4bc2-917a-594ae03af0b2','9054439559150','Sayın yetkili; NURKAN AŞIR adlı müşterinize 614529512 nolu gönderinizin ALLEGRO MİLANO MASA ÜST TABLASI SSH  ürünü 1 parça halinde Fatura adresinizden 26.06.2025 12:43:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a70ce6b0-06c6-4668-802f-b5bc4cc490ef',NULL),
('e8cd0bed-1a3d-4adc-a517-2bc9d7582f91','4917680173048','Sayın ÖMER ÇALIK SSH , 7456984 nolu gönderiniz 5448 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/7456984\n\nDear ÖMER ÇALIK SSH , your shipment with 7456984 was delivered to you with the delivery code 5448. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/7456984\n\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('e8d5bd20-0548-4f6c-9522-d16519f32fa3','31633137745','278583277 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7579 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278583277\n\nYour shipment with the number 278583277 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7579. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/278583277\n\nBICARGO','1','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('e8e14b65-a653-4595-9f94-e79769f6f930','4915776361097','644531622 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644531622\n\nYour shipment with the number 644531622 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644531622\n\nBICARGO','1','2692a4f1-809f-4e9b-9f6f-8bc5ce383ccf',NULL),
('e8f1cab1-7113-4a1b-8a4c-bf68e1289247','4915202113856','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('e8f47b2c-f779-4d7a-989b-827aeec0e4e8','32495776498','Sayın AHU KARUÇ, 437786734 nolu gönderiniz 6815 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437786734\n\nDear AHU KARUÇ, your shipment with 437786734 was delivered to you with the delivery code 6815. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437786734\n\n\nBICARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('e8f55279-dbf1-4948-b9da-e8b9cb707c52','905534084469','Sayın yetkili; AYŞE ÇÖPLÜ adlı müşterinize 127530070 nolu gönderinizin ROMA SANDALYE ürünü 1 parça halinde MELYA adresinizden 24.01.2025 18:59:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bcf75901-1def-440f-8bcd-fcbe758d1224',NULL),
('e8f73584-a76a-4a8b-8075-c602e7cc3cc0','491787575752','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','a3e67de0-2821-4964-8e1b-51116009f272',NULL),
('e8f9fe8f-10b9-4194-a75e-fe3f46fcdbd4','491725184945','Sayın OMAR AHMEDİ , 44998008 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/44998008\n\nDear OMAR AHMEDİ , your shipment with 44998008 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/44998008\n\nBICARGO','1','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL),
('e8fc5234-69dd-4584-b557-f49597c63279','4915112196306','Sayın DİLCAN YEŞİLMEN, 371290223 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371290223\n\nDear DİLCAN YEŞİLMEN, your shipment with 371290223 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371290223\n\nBICARGO','1','751e7cfe-45c9-4ff6-a9db-f5b7e29356ac',NULL),
('e8fe623f-2af9-4ed5-bfb6-df0e308ce77d','905350617509','Sayın yetkili; DİANA BARAKAEVA adlı müşterinize 613502652 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 27.03.2025 13:00:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('e8ff6581-4f22-4391-b149-53d3e4ca72db','905394878216','ALİ ALBAY adlı müşterinizin 517205085 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','9a1969a8-0e13-466d-8869-8ce1c930334b',NULL),
('e90687b1-99c5-4e58-a529-11766ae392ce','4917663371401','Sayın NERGİZ TOPRAK, 371540742 nolu gönderiniz 5051 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371540742\n\nDear NERGİZ TOPRAK, your shipment with 371540742 was delivered to you with the delivery code 5051. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371540742\n\n\nBICARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('e90d1b5e-3fe2-40d3-8ccb-1b393e8c5075','49017640508000','Sayın İLKAY ÇİFTÇİ, 35130528 nolu gönderiniz 6922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/35130528\n\nDear İLKAY ÇİFTÇİ, your shipment with 35130528 was delivered to you with the delivery code 6922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/35130528\n\n\nBICARGO','2','fe9bad3a-ed39-41a0-aefb-3b353269e29a',NULL),
('e911e9c7-b1e2-4308-b5d2-f63013ec632f','4915232158548','Sayın BEYTULLAH AKSOY, 644826911 nolu gönderiniz 9992 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644826911\n\nDear BEYTULLAH AKSOY, your shipment with 644826911 was delivered to you with the delivery code 9992. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644826911\n\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('e9164288-c7cf-4170-9bb7-7310fee471ef','905539740010','FERHAT SANUÇ  SSH adlı müşterinizin 011131883 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('e91946fd-05bd-4541-af4a-16a88c2c6cc3','436608138124','745423192 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9282 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745423192\n\nYour shipment with the number 745423192 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9282. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745423192\n\nBICARGO','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('e91aaa78-d90f-4219-b71c-3562ab0c1b39','491631905914','011428040 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8903 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011428040\n\nYour shipment with the number 011428040 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8903. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011428040\n\nBICARGO','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('e91ef09a-2286-4981-91f5-39c67fd1c65a','905456068312','EYÜP KIZILASLAN adlı müşterinizin 655919587 nolu gönderisi 67 parça halinde yola çıkmıştır.','1','88d46ad5-3201-49c1-bafb-3c271a911158',NULL),
('e92a327a-29cf-48bb-85fe-9859eb12074c','5344645190','Sayın HASAN BEY (İRFAN), 412797306 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412797306\n\nDear HASAN BEY (İRFAN), your shipment with 412797306 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412797306\n\nBICARGO','1','d9ab1f3e-270f-40c3-b5d4-4ef0d514ac8c',NULL),
('e92c574d-79fb-4c59-8b70-55e8ff31e6d9','905517075149','Sayın yetkili; KEVSER KAYA adlı müşterinize 478983907 nolu gönderinizin giyinme odası ürünü 1 parça halinde Fatura adresinizden 25.08.2025 10:03:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('e92fce61-e999-425d-8e97-17542493f866','436602528784','644287826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10458 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644287826\n\nYour shipment with the number 644287826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10458. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644287826\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('e938d87e-97d7-4127-b7a4-36511c433895','5413112906','319585140 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3350 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/319585140\n\nYour shipment with the number 319585140 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3350. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/319585140\n\nBICARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('e9391cf1-8f68-4e42-9553-e260d359bc3a','905325000478','ŞENOL BEY adlı müşterinizin 412157183 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','73425516-263e-4f72-894c-4cfd33d6ee43',NULL),
('e93c4eed-45ad-4b03-9b53-8cfe05b903ad','4915115830326','Sayın RAMAZAN KAYHAN SSH, 478885112 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478885112\n\nDear RAMAZAN KAYHAN SSH, your shipment with 478885112 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478885112\n\nBICARGO','1','75b514ad-164b-4680-8bcb-d21353d39504',NULL),
('e93d42eb-c026-4584-9e7c-a28e61dbcb2f','905300961610','GAZZEL adlı müşterinizin 126908301 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','863a4d29-ce12-4697-a15e-977449f015c7',NULL),
('e93f626a-5de1-4881-bfb2-6cb258fc6f0b','905301592882','Sayın yetkili; KUBİLAY AKTAR adlı müşterinize 910473991 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 26.06.2025 18:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('e941d6be-10f3-421d-8e57-77716664306b','49020350083648','Sayın DİE FABRİK OUTLET, 223337181 nolu gönderiniz 6173 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223337181\n\nDear DİE FABRİK OUTLET, your shipment with 223337181 was delivered to you with the delivery code 6173. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223337181\n\n\nBICARGO','2','6a21439d-54c9-48f3-b2b6-f67d8ade5c6b',NULL),
('e9462fdb-0276-46a4-a5c3-2cdf3266823f','905532675926','Sayın yetkili; KADİR SÜLÜN adlı müşterinize 428696149 nolu gönderinizin c sehpa+puf ürünü 2 parça halinde Fatura adresinizden 19.09.2025 17:45:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('e94be4ff-07ea-4d77-9e0b-c1114b3e7c26','4917670954169','Sayın SEYHAN GÜNDÜZ, 598148104 nolu gönderiniz 3046 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598148104\n\nDear SEYHAN GÜNDÜZ, your shipment with 598148104 was delivered to you with the delivery code 3046. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598148104\n\n\nBICARGO','1','015e4711-850e-4dfd-8a7d-b891bbcf8752',NULL),
('e94e6a9a-f76f-4a70-b9c3-7c84bc8da906','176322545443','338411614 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7636 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338411614\n\nYour shipment with the number 338411614 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7636. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338411614\n\nBICARGO','2','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('e950e862-f9d6-41db-b0e2-f9c7ad014041','905461661672','Sayın yetkili; CİHAN TOKAY(K) adlı müşterinize 644407379 nolu gönderinizin DOLAP ürünü 11 parça halinde SİRO MOBİLYA adresinizden 25.09.2025 18:13:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('e954c358-16a9-438f-9089-50f55bceb145','4915737597078','505770346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9699 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505770346\n\nYour shipment with the number 505770346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9699. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505770346\n\nBICARGO','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('e95c335c-05a6-4f6c-9242-b3f82d3069fc','905461661672','Sayın yetkili; ÜMİT MORCA adlı müşterinize 644377995 nolu gönderinizin SANDALYE  ürünü 4 parça halinde ÇINAR SANDALYE adresinizden 24.06.2025 15:23:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('e95ce017-4c0c-4a5f-a369-15f7d107284b','905304259202','YUSUF TÜRKGELDİ adlı müşterinizin 478537954 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0afc84bf-0fec-469c-b4e4-09a7be452c9c',NULL),
('e962c0c1-47e2-4feb-971f-18782ac7bef4','4915204222121','371514006 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2109 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371514006\n\nYour shipment with the number 371514006 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2109. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371514006\n\nBICARGO','1','548ed737-ff1e-4d15-8e34-d66ac4314840',NULL),
('e96919f1-0985-4a34-bf07-b9a560906feb','05357772672','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','2','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('e969ad96-b73f-4508-a0a6-a97f85f1fa3a','905461661672','Sayın yetkili; SÜLEYMAN ATAR adlı müşterinize 644653229 nolu gönderinizin ŞİFONYER AYNASI ürünü 1 parça halinde PARLAK EV adresinizden 11.03.2025 16:23:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4197af5f-54c3-4efd-8f7b-cdb3412520ca',NULL),
('e96aa8f8-1c83-44aa-8434-6a75f5fefc44','905313340045','CEYDA KARA adlı müşterinizin 437791163 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','86762eef-fd62-4b28-b589-b418608643f9',NULL),
('e96c91cd-4a9d-4cdc-ae14-9ba54f4c5b88','4917670513936','Sayın GİZEM YILDIRIM, 817500904 nolu gönderiniz 6565 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817500904\n\nDear GİZEM YILDIRIM, your shipment with 817500904 was delivered to you with the delivery code 6565. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817500904\n\n\nBICARGO','1','a787358d-13f9-45cb-8b61-75798cab6ea3',NULL),
('e96eeb11-4b82-4aab-a896-34b57a21b10c','905325000478','SEVGİ ÇELEBİ adlı müşterinizin 412665767 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL),
('e9751601-8f06-4085-9dc8-4b466327a1d4','905336367828','Sayın yetkili; DENİSA LANGU  adlı müşterinize 982134567 nolu gönderinizin Karyola  ürünü 4 parça halinde Marki baza  adresinizden 27.02.2025 16:16:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('e977531a-8799-4c85-bf0e-fd3eac74f5b4','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin 1 Masa ve 2 Sehpa Üst Tabla ürünü 4 parça halinde Masa Via adresinizden 24.04.2025 16:07:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('e9782267-4336-44da-a55c-55114467c8a9','33666926469','Sayın ALİYE DALKAYA, 221763889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221763889\n\nDear ALİYE DALKAYA, your shipment with 221763889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221763889\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('e97ddf20-d96b-48e1-86d1-c8c6ac909a47','32477270955','Sayın ÜLKER SEPETÇİ, 4786538 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/4786538\n\nDear ÜLKER SEPETÇİ, your shipment with 4786538 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/4786538\n\nBICARGO','1','82c2a380-c89a-4beb-ba59-ed765263d701',NULL),
('e984657a-dc32-4325-8c4a-c526c77032ac','905304259202','DEMET DEDE adlı müşterinizin 478409459 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','633d745b-6334-4fbc-906f-28ed4e0c5168',NULL),
('e989123c-70ef-453a-8a94-75e0058b64ad','4915750730726','Sayın SAKİNA RAHİMİ , 449108957 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449108957\n\nDear SAKİNA RAHİMİ , your shipment with 449108957 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449108957\n\nBICARGO','1','72d228c3-4890-476a-b92a-a7a953a0be97',NULL),
('e9982f42-b84b-43db-b528-eed1620037d8','436766833448','Sayın GÜLCAN İNCE, 33850305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33850305\n\nDear GÜLCAN İNCE, your shipment with 33850305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/33850305\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('e99cd187-6e99-4aa8-89ec-0a62d4a23211','905079358213','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin VODA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 23.07.2025 12:50:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('e9a8a2d9-3bfc-4f83-b4c8-863e1f34954d','436609030413','Sayın MONİCA TODERAŞ, 505597041 nolu gönderiniz 3193 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505597041\n\nDear MONİCA TODERAŞ, your shipment with 505597041 was delivered to you with the delivery code 3193. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505597041\n\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('e9adfc6b-d053-4e17-8563-735b585d67d2','4917623882618','Sayın MURAT ERKUL SSH, 745898734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745898734\n\nDear MURAT ERKUL SSH, your shipment with 745898734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745898734\n\nBICARGO','1','822d89d5-a2bc-4eca-87ce-9ea0d7fb109c',NULL),
('e9af307e-1761-4b4d-965a-9ef8e660e9a9','4915778776524','598102662 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8261 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598102662\n\nYour shipment with the number 598102662 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8261. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598102662\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('e9b34a24-1d76-4738-8728-b1787669ac31','905079047428','MİTRA MESKİNİ adlı müşterinizin 44932987 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('e9b52d97-6e6f-4761-b1b6-b29961690c90','905075277637','Sayın yetkili; ÖMER ÇALIK SSH  adlı müşterinize 7456984 nolu gönderinizin SSH KANEPE SIRTI  ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:59:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('e9b98dcb-fe37-4fb4-bb9a-f40facef28fc','905343753391','Sayın yetkili; MUHAMMED ALİ TÜMKAYA adlı müşterinize 64455982 nolu gönderinizin TV ÜNİTESİ ürünü 2 parça halinde AZUR MOBİLYA adresinizden 25.02.2025 11:14:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b98bc4c0-d13e-4cca-ad93-173ed8365841',NULL),
('e9bbb0a7-8cfa-4a1d-b300-82d5a745a999','436603227029','Sayın BURHAN AKMEŞE, 745761149 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745761149\n\nDear BURHAN AKMEŞE, your shipment with 745761149 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745761149\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('e9d1636c-b50e-4ab3-94bb-bc9663cffa18','905335708965',' adlı müşterinizin 248977442 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','f5ff5ecc-8494-400b-acf9-c8906860204a',NULL),
('e9d53da3-a8e1-4735-9da0-d6029e938d59','4915754509402','Sayın SATİ CENGE, 437427529 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437427529\n\nDear SATİ CENGE, your shipment with 437427529 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437427529\n\nBICARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('e9d8d7d5-3276-4705-b662-1afe79d6d550','905350617509','Sayın yetkili; SELMA BAJRAMOSKA adlı müşterinize 613374971 nolu gönderinizin Köşe Koltuk ürünü 4 parça halinde Fatura adresinizden 03.03.2025 13:29:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('e9dc37e8-952d-411a-abf0-c5e5f0287e5a','905078062550','Sayın yetkili; ENES İSMET UGUZ adlı müşterinize 598986653 nolu gönderinizin 6 SANDALYE ürünü 5 parça halinde LİN SANDALYE adresinizden 18.09.2025 11:26:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3d40d0f6-e7bd-434d-934e-23f8c73df745',NULL),
('e9e4389c-4ee3-45c2-969f-6d6d9e07bf3a','4917656772155','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','61865f3a-d280-4338-ba54-fe634b230fbd',NULL),
('e9e51be9-ed19-4c78-99fa-60217673a4b8','905454259202','Sayın yetkili; ATİLLA POLAT adlı müşterinize 478502129 nolu gönderinizin yataklar ve sehpa ürünü 5 parça halinde Fatura adresinizden 24.06.2025 13:23:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('e9ee0ce9-5dd1-45d5-af44-09611fc13981','033789094109','734936220 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6962 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734936220\n\nYour shipment with the number 734936220 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6962. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734936220\n\nBICARGO','2','34e0270e-97b8-4007-bdff-03282449c33a',NULL),
('e9f06b68-d660-4bd7-a315-f290ce53dd67','905350617509','DİANA BARAKAEVA adlı müşterinizin 613502652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('e9f7f1b0-d149-4be7-9a68-fe624da3c576','00491630241746','Sayın ROYA SHARİFİ, 248614196 nolu gönderiniz 6014 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248614196\n\nDear ROYA SHARİFİ, your shipment with 248614196 was delivered to you with the delivery code 6014. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248614196\n\n\nBICARGO','2','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL),
('e9fbeca9-0515-4318-98ac-5959e31c2023','4917681321777','Sayın ISMAİL REMMO, 61330729 nolu gönderiniz 4153 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61330729\n\nDear ISMAİL REMMO, your shipment with 61330729 was delivered to you with the delivery code 4153. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61330729\n\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('e9fd1e26-d338-4d39-860e-0d52893c6f2e','905335511664','ARZU KUZUCU adlı müşterinizin 371160737 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a53c5b62-db3a-4293-b5f7-0e5ef514b45e',NULL),
('e9fdd0a0-3817-47c3-a9df-a518995ba68f','905461661672','FURKAN BARUT adlı müşterinizin 644644143 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('e9ff72c3-88b1-47d2-a671-1178e416d966','4369919243273','613502652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9385 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613502652\n\nYour shipment with the number 613502652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9385. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613502652\n\nBICARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('ea0a258c-8b87-44af-ba64-c9d18155c989','4917663706491','Sayın AYŞE ŞEKER, 976114868 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976114868\n\nDear AYŞE ŞEKER, your shipment with 976114868 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976114868\n\nBICARGO','1','f8a35a67-4391-400d-b200-b2e5eb8c88d5',NULL),
('ea0d79f8-886a-413e-a774-9d503fe573b8','905057115555','GÜLNUR KURUOĞLU adlı müşterinizin 952470417 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','a029bd37-9eca-4220-a768-df5b0d586118',NULL),
('ea0eee75-d7fb-46c2-aeea-5e28557cc834','4915772639272','Sayın EMİLE ARSLAN, 37142091 nolu gönderiniz 2027 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37142091\n\nDear EMİLE ARSLAN, your shipment with 37142091 was delivered to you with the delivery code 2027. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37142091\n\n\nBICARGO','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('ea132798-eb5f-4265-811d-70111bc9d0ce','33626434007','Sayın SİBEL ÇINAR, 428511580 nolu gönderiniz 7206 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428511580\n\nDear SİBEL ÇINAR, your shipment with 428511580 was delivered to you with the delivery code 7206. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428511580\n\n\nBICARGO','1','4157eaee-8648-432f-b717-8aeedcc9bd2a',NULL),
('ea221e86-0e2f-45b0-9d57-d2da0a801f6d','491778777755','817578021 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4285 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817578021\n\nYour shipment with the number 817578021 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4285. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817578021\n\nBICARGO','1','c8d1b4d4-fafa-4eca-9c51-b7057479fd17',NULL),
('ea24b012-3b15-4d40-b941-669345c2886c','32494889531','478339664 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5284 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478339664\n\nYour shipment with the number 478339664 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5284. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478339664\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('ea2858d2-f136-40b3-b5a4-eb693154fa59','4366488118073','505153730 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8869 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505153730\n\nYour shipment with the number 505153730 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8869. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505153730\n\nBICARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('ea30b6df-d0d3-4f2e-87aa-d0b889582c6d','4915776951609','Sayın MEHMED SHABAN , 982893962 nolu gönderiniz 8099 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982893962\n\nDear MEHMED SHABAN , your shipment with 982893962 was delivered to you with the delivery code 8099. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982893962\n\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('ea3c630b-0fa1-41dc-930d-f09e666bbadb','4917670344465','Sayın HATİCE KARABAĞCA SSH , 745658808 nolu gönderiniz 6253 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745658808\n\nDear HATİCE KARABAĞCA SSH , your shipment with 745658808 was delivered to you with the delivery code 6253. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745658808\n\n\nBICARGO','1','0cec0d02-7fac-44ec-a4bd-1669385b451a',NULL),
('ea3de365-d919-4c56-bfdb-f0d302278a72','905331602195','Sayın yetkili; ÖZAY ÖZDEMİR YILDIZ adlı müşterinize 221746261 nolu gönderinizin 90x150-190 traverten açılır masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 25.04.2025 16:08:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('ea415fc2-24ca-41c5-990a-780b46bd45ed','905389543828','FARIH SANAE adlı müşterinizin 486609627 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','3f0da6fe-5c46-4444-a319-47ee65028a68',NULL),
('ea494865-6e85-45cc-a957-a365cd5fae15','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PETEK KÖŞE TAKIMI  ürünü 2 parça halinde ELİTİS adresinizden 02.05.2025 17:50:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('ea4a3b34-1f44-48fc-8b1d-ed79e1555044','33767512328','644776565 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5205 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644776565\n\nYour shipment with the number 644776565 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5205. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644776565\n\nBICARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('ea4b23a4-785b-4644-af0a-879939b5291a','4917642201800','644196383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10184 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644196383\n\nYour shipment with the number 644196383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10184. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644196383\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('ea4c3eaf-eb48-4438-9db3-35847dd9a98f','31644144080','Sayın SELDA ÇELİK, 478777541 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478777541\n\nDear SELDA ÇELİK, your shipment with 478777541 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478777541\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('ea4d8cdd-cec2-4f36-9c52-6e5642e15d65','905336367828','MASUD SALAH adlı müşterinizin 982320208 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0cba4c66-9032-4c31-99e3-c345fa1edafa',NULL),
('ea588214-69b7-4063-85db-10cd0283f7cb','491742907800','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','16a741e3-499a-4c78-b643-f7c20a086922',NULL),
('ea59a6ee-c9f8-4bcb-be11-4fd3b5648745','313115689790','Sayın IMAN JAWİD, 531245816 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531245816\n\nDear IMAN JAWİD, your shipment with 531245816 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531245816\n\nBICARGO','2','def7f2ab-5847-442b-86e4-71e9c7cd2dcc',NULL),
('ea59ccc1-5a3c-4fd9-8806-308d2e3f6103','33609307736','Sayın MUSA EMEK, 501622058 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501622058\n\nDear MUSA EMEK, your shipment with 501622058 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501622058\n\nBICARGO','1','afedd778-4e9a-45c0-8eef-59b05a268db8',NULL),
('ea5b63c0-590b-441d-84e8-e8acbaed81e0','05379688307','Sayın İVAN SLEMAN DİNO, 598410676 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598410676\n\nDear İVAN SLEMAN DİNO, your shipment with 598410676 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598410676\n\nBICARGO','2','a6b849e9-82a6-4209-bbf8-1190e6651471',NULL),
('ea5f2bf0-9b94-4c96-81cd-675baff92338','905321608709','İSMAİL ŞANLI adlı müşterinizin 248710120 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','136523e8-0a3d-4719-a4d6-930b31cde60f',NULL),
('ea5fd7d1-6df3-4187-8242-775fbf932c73','905517075149','Sayın yetkili; BİLGEN TATAR adlı müşterinize 478764154 nolu gönderinizin 3+3+1+1 koltuk takımı ürünü 20 parça halinde RİXXE adresinizden 13.08.2025 17:50:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('ea693ad0-5ab4-49cf-ac48-136aa1c08172','905331602195','OSMANAJ VALDRİN adlı müşterinizin 221746947 nolu gönderisi 20 parça halinde yola çıkmıştır.','1','45898089-0430-47fd-85a9-8108fa8d9a5e',NULL),
('ea6995bd-1fbe-4baa-9b96-541c1c576cfe','05388618969','Sayın yetkili; MUSTAFA AZAMİ  adlı müşterinize 786668251 nolu gönderinizin Masa 3 kutu orta sehpa 1 kutu  ürünü 3 parça halinde Massami adresinizden 28.04.2025 17:32:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('ea6a27ab-3753-4ac4-8471-807963a20e82','41793422327','İletişim \n					Halil Bey (Şoför) :+905541100849','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('ea6d6a16-3a60-40c6-87bb-aa9baa5d5bee','905079358213','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin PETRA ÜNİTE ürünü 1 parça halinde Fatura adresinizden 12.05.2025 18:03:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('ea70670c-941d-436c-8709-9b9ef16af30b','491627420193','Sayın EMRE ALTUN , 765828045 nolu gönderiniz 9225 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765828045\n\nDear EMRE ALTUN , your shipment with 765828045 was delivered to you with the delivery code 9225. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765828045\n\n\nBICARGO','1','b4816c73-13ed-40e0-87cb-f3536c1d3140',NULL),
('ea74e7df-e0fc-4b7b-a3bb-39a7ceb8e9ce','4915739477075','Sayın CANSU BEYAZ, 644282587 nolu gönderiniz 7849 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644282587\n\nDear CANSU BEYAZ, your shipment with 644282587 was delivered to you with the delivery code 7849. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644282587\n\n\nBICARGO','1','7d6fb76f-77a1-487b-abf8-27a26b46c803',NULL),
('ea7aaf71-6f84-49ce-bb1e-1a822b8b1efe','4917662497880','Sayın NİZAMETTİN(BEKİR), 412280381 nolu gönderiniz 7366 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412280381\n\nDear NİZAMETTİN(BEKİR), your shipment with 412280381 was delivered to you with the delivery code 7366. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412280381\n\n\nBICARGO','1','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('ea7befe7-3d63-450c-ad96-3efc097b10cc','41763221453','598320188 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10670 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598320188\n\nYour shipment with the number 598320188 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10670. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598320188\n\nBICARGO','1','6e979cb9-141a-43d7-a38c-362246b8f5a8',NULL),
('ea86c1be-a589-4ec8-93c0-190901f18ef7','4917632216516','Sayın SWETLANA NESCHİNSKİ, 221989961 nolu gönderiniz 3309 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221989961\n\nDear SWETLANA NESCHİNSKİ, your shipment with 221989961 was delivered to you with the delivery code 3309. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221989961\n\n\nBICARGO','1','46858fce-23b4-4734-be3f-9ef1f6cd02e6',NULL),
('ea8f7598-1ace-4aa8-b243-4a29bef14f50','4917674951049','Sayın OSMAN BOZKAN, 478302796 nolu gönderiniz 10679 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478302796\n\nDear OSMAN BOZKAN, your shipment with 478302796 was delivered to you with the delivery code 10679. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478302796\n\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('ea8fd2d8-cdec-4f7b-ab74-28ff531633eb','905331602195','Sayın yetkili; HAVVA KUM adlı müşterinize 221443179 nolu gönderinizin NATURA sandalye  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 16.07.2025 11:00:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','263a2887-35f1-4299-a777-21a594a634b6',NULL),
('eaa0d884-c2e2-4540-a98c-50e30454c5c9','905461661672','ÜMİT MORCA adlı müşterinizin 644377995 nolu gönderisi 17 parça halinde yola çıkmıştır.','1','273c83bb-2405-453b-8f32-a6fd281b21a7',NULL),
('eaa78bf3-e05b-4b74-a48b-0d7606a4615e','31641319611','Sayın HÜLYA MEŞE (SSH), 338882287 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338882287\n\nDear HÜLYA MEŞE (SSH), your shipment with 338882287 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338882287\n\nBICARGO','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('eabf8293-98a2-4411-8942-ebdf76b396b5','4915222735434','Sayın GÖKHAN ÇAYLAK, 745808994 nolu gönderiniz 3336 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745808994\n\nDear GÖKHAN ÇAYLAK, your shipment with 745808994 was delivered to you with the delivery code 3336. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745808994\n\n\nBICARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('eac570da-c1cc-435d-bcaa-a8a760f2c283','41793101768','531870941 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1758 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531870941\n\nYour shipment with the number 531870941 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1758. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531870941\n\nBICARGO','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('ead24ea5-cfb2-4ab7-97bf-a42f016c3d47','33660990222','47876427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3823 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47876427\n\nYour shipment with the number 47876427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3823. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/47876427\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('ead2a052-fa14-4188-a66a-3daa107561a4','436507400301','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('ead8a8d5-8a84-4755-899f-0831a3bd0ad6','33783327120','478835180 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6592 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478835180\n\nYour shipment with the number 478835180 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6592. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478835180\n\nBICARGO','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('ead9c8eb-67df-4d6d-a73a-e262f783b78d','905461661672','MUSA CAN KOÇAK adlı müşterinizin 644389756 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('eadfe1f2-ca71-4b0a-a039-8843aae6556c','4915737531253','Sayın DELİL ÖZÇELİK, 644680025 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644680025\n\nDear DELİL ÖZÇELİK, your shipment with 644680025 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644680025\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('eae4c83c-6726-4d3f-b2f7-dbb9e07c8b5d','33768690174','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','b051fe92-2caf-48d1-986e-2c884be9900c',NULL),
('eae97ecb-880b-47a1-aaa6-cbfc2f2e112e','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin TIPO MUTFAK MASASI 4 SANDALYELİ  ürünü 5 parça halinde Fatura adresinizden 06.08.2025 15:15:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('eae9f86e-c7f2-4410-9447-dda309414f49','41762266970','Sayın VALBOANA, 786254351 nolu gönderiniz 1178 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786254351\n\nDear VALBOANA, your shipment with 786254351 was delivered to you with the delivery code 1178. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786254351\n\n\nBICARGO','1','1510ebf8-1c9a-4576-83cb-afd76b0d011d',NULL),
('eaee63bf-ed86-4591-9c4c-e98fecaf4924','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin genç odası ürünü 13 parça halinde titi adresinizden 20.12.2024 16:30:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('eaf24e25-190c-4758-93cc-6b3ab8f8fe91','33652266722','Sayın MUHAMMET TÜRKMEN, 745952430 nolu gönderiniz 2328 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745952430\n\nDear MUHAMMET TÜRKMEN, your shipment with 745952430 was delivered to you with the delivery code 2328. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745952430\n\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('eafa8135-d0d0-4128-ac67-c8bd0a4bd086','33628622755','Sayın EL GHZİZAL CHAİME , 221686736 nolu gönderiniz 4372 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221686736\n\nDear EL GHZİZAL CHAİME , your shipment with 221686736 was delivered to you with the delivery code 4372. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221686736\n\n\nBICARGO','1','a7f9f8fc-dde2-4c3a-b9ad-82ce0fc5bfbd',NULL),
('eafd7ea4-5afd-456d-a2ba-f84dcda8ff0f','905461661672','HAKİF ZİNAL adlı müşterinizin 644330933 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('eafe64aa-0a48-450a-b9f7-32fd0c831b0b','905059175469','MUSTAFA KORKMAZ adlı müşterinizin 428184423 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3a203b82-4de4-41c8-a1e5-3cd5ed8aa42d',NULL),
('eb02b491-f52e-476d-aff7-024136eb4a4a','905365908694','MEDZENİTH GMBH adlı müşterinizin 223444495 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL),
('eb05d0dc-b03c-4176-8067-81762161d122','004917663284963','Sayın İSABEL SEDRAYKYAN, 735977134 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735977134\n\nDear İSABEL SEDRAYKYAN, your shipment with 735977134 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735977134\n\nBICARGO','2','12ee6998-24f5-4d1e-a05e-e05480e238bd',NULL),
('eb0c660b-e18f-4235-b252-9e64b6a16b02','905059175469','Sayın yetkili; GÜLCAN ÇELİKKANAT adlı müşterinize 428519862 nolu gönderinizin c sehpa ürünü 1 parça halinde Fatura adresinizden 10.01.2025 10:00:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6c47a19e-0b53-4437-bd26-af1e1f1b9daa',NULL),
('eb139b36-8c4b-4eb4-bffa-e15cffd758c6','905312762034','SABRİNA METZGER  adlı müşterinizin 808922349 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','dc5d2caf-3941-4bd5-a27f-492541390d57',NULL),
('eb151fba-846d-497e-ad7a-59c6d7c96655','436607735988','Sayın GÜLCAN İNCE (SSH), 338840422 nolu gönderiniz 8343 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338840422\n\nDear GÜLCAN İNCE (SSH), your shipment with 338840422 was delivered to you with the delivery code 8343. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338840422\n\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('eb16e52b-46dc-470c-a84b-8f7b21bf5210','905312762034','Sayın yetkili; NAZİF SUAT adlı müşterinize 808294576 nolu gönderinizin KOLTUK TAKIMI ürünü 1 parça halinde Fatura adresinizden 09.07.2025 15:41:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c5474c30-8b56-4105-b623-902ebb690698',NULL),
('eb1b631e-6518-47ce-8327-310090a29f84','4915226123899','Sayın HAMİYET KARASOY, 371876767 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371876767\n\nDear HAMİYET KARASOY, your shipment with 371876767 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371876767\n\nBICARGO','1','4e848e66-1956-4160-9b53-a1fab280f1f6',NULL),
('eb1f27b7-852d-43c4-8381-90db02579712','033782054435','734482220 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1140 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/734482220\n\nYour shipment with the number 734482220 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1140. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/734482220\n\nBICARGO','2','313ea73f-ae21-453f-98ea-2178061648bd',NULL),
('eb243c3b-1d40-4bab-bd57-ddfe3a6bdb14','33626422127','Sayın BOUSLİMAİN ECHOUAK, 982868918 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982868918\n\nDear BOUSLİMAİN ECHOUAK, your shipment with 982868918 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982868918\n\nBICARGO','1','24096b71-5b5e-4da8-9191-8e3168102053',NULL),
('eb305883-06b3-4e08-905f-fc85085af119','905350617509','BURHAN SARİKURT adlı müşterinizin 613508377 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4aefeaca-07a5-46c4-8497-55b99b83d2f8',NULL),
('eb312d31-31ea-4b26-8ff9-a4b2143b739c','905365908694','MAİL BOXES ETC  adlı müşterinizin 223896175 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1ebf95bb-694d-4db0-8fbb-4b3ae7f807e6',NULL),
('eb36f978-24c1-440c-a48c-293eb00bbfe4','905079358213','GÜLDEN KARADAĞ adlı müşterinizin 745580296 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','751916ad-50d2-4794-9387-4d8c4dc5a813',NULL),
('eb3ffaad-58d8-4d2f-8f7d-d5cecc899255','905059175469','ÖMER KARAMAN  adlı müşterinizin 428561353 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ce4901d8-9c95-4f4f-bc49-0904a3a413eb',NULL),
('eb4464b0-5ced-414d-9468-33252c91b212','436609537403','Sayın FARZANA SEDİGHİ, 982691264 nolu gönderiniz 7569 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982691264\n\nDear FARZANA SEDİGHİ, your shipment with 982691264 was delivered to you with the delivery code 7569. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982691264\n\n\nBICARGO','1','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL),
('eb45c462-04b6-4e81-98db-4eb00be1cff1','31616177298','221997933 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10587 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221997933\n\nYour shipment with the number 221997933 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10587. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221997933\n\nBICARGO','1','fbc52807-2ea4-4332-b106-de7e103725f4',NULL),
('eb49e2b7-2c26-422c-a4cc-92a437498199','4915566222005','Sayın MALİHA CETİN, 531309772 nolu gönderiniz 6413 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531309772\n\nDear MALİHA CETİN, your shipment with 531309772 was delivered to you with the delivery code 6413. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531309772\n\n\nBICARGO','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('eb4a6657-9082-4e57-b0c2-2707f62d75fa','1111111111111111','Sayın ZEKİ ASLANER, 248799636 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248799636\n\nDear ZEKİ ASLANER, your shipment with 248799636 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248799636\n\nBICARGO','2','b419b47d-089e-47f1-a6c9-53e095e845bb',NULL),
('eb52cd3d-c1ed-4490-9694-b0ade1a1fc37','4920350083648','223631242 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3886 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/223631242\n\nYour shipment with the number 223631242 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3886. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/223631242\n\nBICARGO','2','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL),
('eb52de4c-22ee-4bd6-bfb0-399cc22024f7','4915735267419','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('eb52e899-23c6-417e-bb86-2c74c5ecfa5e','905350349029','Sayın yetkili; MERT ALİ YÖNTEM adlı müşterinize 203151723 nolu gönderinizin 3-3-1 koltuk takımı ürünü 3 parça halinde Sahcelık sofa adresinizden 02.06.2025 17:40:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a4b0544f-8781-4cb5-97b8-539cc674a28c',NULL),
('eb57977a-87bb-46c7-93a9-bd7b893510d8','905461661672','Sayın yetkili; GÜLŞEN KARATAŞ adlı müşterinize 644859309 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde LENTE HOME adresinizden 26.06.2025 17:56:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b0a5049c-71ff-4a2c-8ccc-9e88362fbc14',NULL),
('eb5a75e3-2a32-4974-bb18-394d04c0e86f','491782611540','Sayın GAMZE ŞAŞMA, 644523362 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644523362\n\nDear GAMZE ŞAŞMA, your shipment with 644523362 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644523362\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('eb5ccada-0273-4096-b57c-06c7b7c1c5c0','32475529099','Sayın ALİ ERKOCA SSH , 745942521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745942521\n\nDear ALİ ERKOCA SSH , your shipment with 745942521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745942521\n\nBICARGO','1','5c0601b9-5e96-482f-b47c-52f985b49aa6',NULL),
('eb5db090-bc8a-485d-a585-8eff6d388dd0','491728739578','221867394 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8009 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221867394\n\nYour shipment with the number 221867394 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8009. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221867394\n\nBICARGO','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('eb5f8cba-c8a8-4581-b99a-3ca70c2a8f2c','4917622920209','Sayın GÜLER DELİDUMAN, 221432350 nolu gönderiniz 4342 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221432350\n\nDear GÜLER DELİDUMAN, your shipment with 221432350 was delivered to you with the delivery code 4342. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221432350\n\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('eb6541cb-911e-4f3e-9092-245dd077741c','4917672257446','644113252 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3803 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644113252\n\nYour shipment with the number 644113252 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3803. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644113252\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('eb730505-848a-4d3b-bede-9ee9dca07a7a','359896871111','Sayın REYHAN, 41286775 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41286775\n\nDear REYHAN, your shipment with 41286775 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41286775\n\nBICARGO','1','aa4be844-95eb-452d-bd6e-d1ea66d882ea',NULL),
('eb74c6f1-43e7-4362-94d7-00d57020d6fa','905079358213','Sayın yetkili; GÜLÜZAR KECKİN adlı müşterinize 745276257 nolu gönderinizin KING PLATİN BAZA BAŞLIK 160LIK  ürünü 3 parça halinde Fatura adresinizden 23.06.2025 13:20:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('eb76438a-d1c7-4c80-9d60-5cfc05c08014','905454259202','Sayın yetkili; VELİ ÖKTEN adlı müşterinize 478284503 nolu gönderinizin köe koltuk ürünü 4 parça halinde çelikbey inegöl depo adresinizden 29.11.2024 16:17:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','72aa64fd-4469-41aa-9db0-8095ab4bfdf0',NULL),
('eb7999b6-3a54-469b-b945-15c4fc5dbd64','905421855834','YUŞA SOYER adlı müşterinizin 338678802 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','1a5fb5e3-cbd4-4bdf-b6ee-4a70dd4ffa5f',NULL),
('eb79b7be-0fc4-46ee-a7b1-3f5fb499e747','905461661672','Sayın yetkili; SILA SEVİL İLGÜN adlı müşterinize 644877864 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 27.08.2025 11:26:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('eb7da55b-1265-4c0c-a5a5-6cde5da73159','905313340045','Sayın yetkili; MÜCAHİD AL adlı müşterinize 437880840 nolu gönderinizin orta sehpa ürünü 2 parça halinde DORTHOME OFİS adresinizden 19.08.2025 17:13:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4f9d5c38-0063-4e07-b2a8-9a979cfc78c5',NULL),
('eb7e1381-b1fa-4013-a761-3aea44bad7e3','905079047428','MME MENAUR RACHİDO adlı müşterinizin 449890150 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','75a70e80-2c1f-412d-86f8-4dbb396ad806',NULL),
('eb8dad3a-ff90-405c-b078-ddf737069007','3536737367346734','Sayın TABELA, 248915549 nolu gönderiniz 9314 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248915549\n\nDear TABELA, your shipment with 248915549 was delivered to you with the delivery code 9314. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248915549\n\n\nBICARGO','2','084a9df9-c2a5-4ac0-83c6-5c5c4de780b1',NULL),
('eb8e11f6-8398-4890-951f-f1b01295eceb','905075277637','Sayın yetkili; GÜLŞAH KUŞ adlı müşterinize 745219309 nolu gönderinizin BOHEM KONSOL + 6 SANDALYE + ÜNİTE ALT  ürünü 10 parça halinde ODDO adresinizden 30.09.2025 14:06:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','183e4649-4c9e-491a-ab8a-0e24c8224108',NULL),
('eb9bed12-acf8-4b4e-8fb7-ffa037b0d18f','905459475054','Sayın yetkili; SALİH KAHRAMAN adlı müşterinize 803441454 nolu gönderinizin Ürün  ürünü 6 parça halinde Fatura adresinizden 07.10.2025 16:12:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3bbfe7b4-ab42-451c-bb4f-37b1de6ffcd1',NULL),
('eb9d0be2-e36a-499a-a3f5-b5e21e2904e0','905333221039','NURGÜL ÖZDEMİR  adlı müşterinizin 750450570 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','371ed4dd-6766-4075-a1fd-881baaf53b96',NULL),
('eb9f6df7-b2a5-4dfd-a706-ec373d4edd2d','491639801426','EURO STAR MOBEL adlı müşterinizin 107593305 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','56934bb2-8807-472a-9265-23392c22511f',NULL),
('eba401b6-c3ef-4ae4-8eb6-390cc83cecde','4915566766358','37119244 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3923 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37119244\n\nYour shipment with the number 37119244 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3923. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/37119244\n\nBICARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('eba84ae6-302b-47ba-8651-5a5a7b49212a','905332942204','SARAH KLEİN adlı müşterinizin 505153730 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dbf55493-8328-4ef5-b04e-34ca82fa458e',NULL),
('ebadb778-e9fe-43f3-b83c-6f5890e0fe7b','905461661672','ÖZLEM KIZILARSLAN adlı müşterinizin 644650618 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('ebafdfc3-e97f-4831-970a-824866492151','33782988116','Sayın HAZAL BATUR, 437712381 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437712381\n\nDear HAZAL BATUR, your shipment with 437712381 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437712381\n\nBICARGO','1','bf55ba8d-4886-4535-bedc-892994749297',NULL),
('ebb0cc04-44ec-4951-99fc-91e9e33612d7','4917640533828','655571326 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4006 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/655571326\n\nYour shipment with the number 655571326 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4006. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/655571326\n\nBICARGO','1','f1036344-e4b5-4489-a46b-adbc8a18c0cd',NULL),
('ebb43351-5d47-42f1-83fc-937c92fba2ce','905335708965','ORKUN SÖĞÜTLÜ adlı müşterinizin 248292815 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','483b6f65-6972-4267-8fb5-43e1ad8b38cb',NULL),
('ebb85668-b8f3-4b5b-b883-edc12740f1fe','491621579425','437791709 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1117 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437791709\n\nYour shipment with the number 437791709 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1117. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437791709\n\nBICARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('ebbac014-1923-44ce-b69d-97542a33640a','0041765845886','Sayın RÜVEYDA ŞAHİN, 12771217 nolu gönderiniz 7417 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/12771217\n\nDear RÜVEYDA ŞAHİN, your shipment with 12771217 was delivered to you with the delivery code 7417. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/12771217\n\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('ebbfbf61-52a0-473f-af18-3ef274282fa6','32489309952','Sayın ELİF SIKI , 517157021 nolu gönderiniz 2654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517157021\n\nDear ELİF SIKI , your shipment with 517157021 was delivered to you with the delivery code 2654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517157021\n\n\nBICARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('ebc06805-ed10-48b4-97d4-265c7d7eb7df','905078062550','Sayın yetkili; TOLGA KAPLAN adlı müşterinize 598463425 nolu gönderinizin BAZA BAŞLIK ürünü 8 parça halinde ALBESSA HOME adresinizden 14.08.2025 11:51:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('ebc89a6f-4e8f-42ae-bac6-ddf3f8a9062b','905335511664','MİTHRA EKHLAS adlı müşterinizin 371665790 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4fcbc651-ced6-4837-a3cf-17f82d36dabe',NULL),
('ebd74193-72e5-4341-8672-c6d62294f8fe','31686439941','Sayın MERYEM BERK , 221583384 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221583384\n\nDear MERYEM BERK , your shipment with 221583384 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221583384\n\nBICARGO','1','c6b7a352-13a1-47fb-acd7-9c5f9910f021',NULL),
('ebdc4dc2-1055-4563-b485-a8f640c9ac4f','436605331605','598425779 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10896 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598425779\n\nYour shipment with the number 598425779 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10896. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598425779\n\nBICARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('ebdeb7c2-1876-4c9e-9ceb-b9b4caf05f9b','4917660894702','Sayın YAŞAR YALMAN SSH, 478816988 nolu gönderiniz 5865 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478816988\n\nDear YAŞAR YALMAN SSH, your shipment with 478816988 was delivered to you with the delivery code 5865. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478816988\n\n\nBICARGO','1','280e9889-e4b3-48a6-9ac5-246bac1566c1',NULL),
('ebe43e11-ca20-42e4-9ba6-9d9b5a04a017','905304259202','OSMAN KILINÇ adlı müşterinizin 478205168 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2f2a65eb-44bb-4a5a-b907-73d6c6c49771',NULL),
('ebf01340-8614-4ab4-8a54-c972a754a494','4917620374888','478966296 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8793 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478966296\n\nYour shipment with the number 478966296 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8793. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478966296\n\nBICARGO','1','f285a0e0-bae2-40c4-9bd7-33ad4420a56b',NULL),
('ebf2c8c3-c2eb-4b36-b6eb-0a8132c2c1dc','4917655112033','Sayın SSH ALPEREN DÜZENLİ , 745863981 nolu gönderiniz 5312 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745863981\n\nDear SSH ALPEREN DÜZENLİ , your shipment with 745863981 was delivered to you with the delivery code 5312. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745863981\n\n\nBICARGO','1','b1fbc7fe-6f0f-44c9-b180-ff76e9c929ba',NULL),
('ebf52af1-4d8f-4ad3-b3c5-1fa06889d28a','905443955915','RASİM EKİCİ adlı müşterinizin 614462377 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','e0ff461d-a3df-473b-8c9d-6d28295d3169',NULL),
('ebf6d1bc-cc58-49f9-af44-c60e2d4942a9','905075277637','NİLÜFER YAMAN SSH  adlı müşterinizin 745525130 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','74e67c9c-8558-47ee-aa88-c7ca5718c754',NULL),
('ebfb4b1e-eff8-4c4f-adbc-6add605d3cf1','491718076933','Sayın BAHAR SARI, 478525280 nolu gönderiniz 4682 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478525280\n\nDear BAHAR SARI, your shipment with 478525280 was delivered to you with the delivery code 4682. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478525280\n\n\nBICARGO','1','821ce6fd-2cdb-4d44-be55-13bf12a05f4c',NULL),
('ec03f165-c59f-4b49-9b0a-d4b77e8fcf55','905075277637','METİN PEKSERT SSH  adlı müşterinizin 74597110 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('ec22d238-eb53-4f2e-b5fe-44133829ff6c','33661847175','Sayın BEN FRİHA FATMA, 437321677 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437321677\n\nDear BEN FRİHA FATMA, your shipment with 437321677 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437321677\n\nBICARGO','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('ec2731d2-4606-43bd-b02c-7e9b96492cc1','491578706465','Sayın BERKAN AĞIRMAN, 91034652 nolu gönderiniz 3936 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91034652\n\nDear BERKAN AĞIRMAN, your shipment with 91034652 was delivered to you with the delivery code 3936. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91034652\n\n\nBICARGO','2','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('ec276af6-d386-4b1f-89bd-4a9ea6041dcc','905331602195','Sayın yetkili; BERFİN UZUNER  adlı müşterinize 221900850 nolu gönderinizin 90x190 cm Traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:28:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f7b6d43-5763-4b5b-93f8-46153e09c05f',NULL),
('ec2d8849-990a-4eff-a3f2-78d0497e2334','4917621666906','Sayın ELİSABETH BRUCH, 371807983 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371807983\n\nDear ELİSABETH BRUCH, your shipment with 371807983 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371807983\n\nBICARGO','1','5f656441-40ec-47a2-a5a0-c7819b0df651',NULL),
('ec317e4e-0c37-47fe-82db-2ca26fbcd17a','491725951880','Sayın HÜLYA ŞENEL , 011195834 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011195834\n\nDear HÜLYA ŞENEL , your shipment with 011195834 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011195834\n\nBICARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('ec32ce94-b731-4985-9ffb-e5362ab27683','4915755392332','Sayın BELGİN YAĞLI		, 910762495 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910762495\n\nDear BELGİN YAĞLI		, your shipment with 910762495 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910762495\n\nBICARGO','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('ec3415a0-9d14-41fc-9732-f4682f6712d1','905331602195','Sayın yetkili; GÜLER DELİDUMAN adlı müşterinize 221432350 nolu gönderinizin 70x120 cm mermer desen orta sehpa  ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 03.06.2025 17:02:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('ec35bf30-2788-40b1-96d5-124d46ee2626','905315980893','SAMET ÖZTÜRK  adlı müşterinizin 911787432 nolu gönderisi 28 parça halinde yola çıkmıştır.','1','6820eacc-9bd4-4db6-87db-45adf3959c56',NULL),
('ec38e465-a170-42ed-a9c3-1aa8c38f1e2d','905350617509','FJOLLA VRENEZİ adlı müşterinizin 613853408 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','a1891b3d-2115-4842-a527-66a78ad1317d',NULL),
('ec3a2554-9b87-41d6-9ede-c450f750e518','05380623114','Sayın NAFİT GANİOĞLU, 517255345 nolu gönderiniz 7067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517255345\n\nDear NAFİT GANİOĞLU, your shipment with 517255345 was delivered to you with the delivery code 7067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517255345\n\n\nBICARGO','2','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('ec3cbb29-ecce-4687-8611-9c048fa5b6f7','33644759531','Sayın CANAN DİNÇ, 734245011 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734245011\n\nDear CANAN DİNÇ, your shipment with 734245011 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734245011 734245011\n\nBICARGO','1',NULL,NULL),
('ec3d136e-b1b3-4b8b-adba-4ad387e310d7','905075277637','BURHAN AKMEŞE adlı müşterinizin 745761149 nolu gönderisi 30 parça halinde yola çıkmıştır.','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('ec3ed100-617f-4348-90c3-078c501f09eb','491779772089','644771270 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4599 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644771270\n\nYour shipment with the number 644771270 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4599. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644771270\n\nBICARGO','1','e4810702-1740-40c2-9d61-e9412939d07c',NULL),
('ec3feaf4-d39d-4e9b-9f17-5c224a08dc97','4917622021338','Sayın ERSİN ESEN, 501256266 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501256266\n\nDear ERSİN ESEN, your shipment with 501256266 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501256266\n\nBICARGO','1','7eeb3429-c256-465d-8b88-a60afd893ca0',NULL),
('ec45413b-7078-4d10-81e4-96c09ec35f88','4917630158799','Sayın MUHAMMED TOPAL, 371681337 nolu gönderiniz 1550 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371681337\n\nDear MUHAMMED TOPAL, your shipment with 371681337 was delivered to you with the delivery code 1550. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371681337\n\n\nBICARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('ec48a00a-bb95-404f-bfca-5eddd4b3c00f','491785050597','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('ec4ba03e-3aad-4120-80a7-6f221e638619','905539740010','MUHAMMET UCBAY adlı müşterinizin 011428040 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b1a52e0a-42f8-41be-85f8-f4189669ece7',NULL),
('ec57a75f-9fb2-4ea1-974e-b319cb60129f','905423036885','Sayın yetkili; HASAN ARABACI adlı müşterinize 920359526 nolu gönderinizin sünger berjer ürünü 2 parça halinde Fatura adresinizden 14.10.2025 10:21:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e75e8612-51c4-4522-8a7c-c324cd173d42',NULL),
('ec58624c-eb69-4e01-ab6e-efc085919306','491725951880','011195834 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8949 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011195834\n\nYour shipment with the number 011195834 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8949. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/011195834\n\nBICARGO','1','5fcfabaf-abfd-496b-84fd-6ef04452b85c',NULL),
('ec5c86e8-3253-4f14-ac44-53bd27af3348','4915730994641','Sayın SADİJE KAMBERİ, 59841260 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59841260\n\nDear SADİJE KAMBERİ, your shipment with 59841260 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59841260\n\nBICARGO','1','4e1208ff-8f5b-4346-a832-196d997bdb96',NULL),
('ec605dff-450c-43a4-9b31-fbb531d73bbd','905075277637','RAMAZAN DUMAN adlı müşterinizin 745343811 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('ec60edfb-df22-4be2-a9ad-3ca8329ca10f','31648989014','Sayın ONUR COŞKUN , 65754067 nolu gönderiniz 10365 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65754067\n\nDear ONUR COŞKUN , your shipment with 65754067 was delivered to you with the delivery code 10365. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65754067\n\n\nBICARGO','1','0dc43c9f-95ed-4a01-8e5e-356e535e67c3',NULL),
('ec625e47-438d-498a-b2b0-6f40f8c95bb4','905454259202','YASİN OĞUZ adlı müşterinizin 478233957 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('ec6933c2-e096-490d-a77d-f920529d3452','436609136123','505597041 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3193 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505597041\n\nYour shipment with the number 505597041 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3193. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505597041\n\nBICARGO','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('ec6f5472-cf84-42ee-9d8c-aac92c6380c2','4915161573588','Sayın AYŞEGÜL GÖKTEPE, 478774501 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478774501\n\nDear AYŞEGÜL GÖKTEPE, your shipment with 478774501 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478774501\n\nBICARGO','1','62caace2-8a1f-47b5-b5ca-7b5356657263',NULL),
('ec719c4d-1a26-4c44-acf0-c12631fe456b','905350617509','Sayın yetkili; DİANA BARAKAEVA adlı müşterinize 613502652 nolu gönderinizin Sandalye ürünü 2 parça halinde Ayka sandalye adresinizden 27.03.2025 13:10:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6f819014-9aee-49bd-a372-9beb415e27cd',NULL),
('ec744ff3-3515-424f-abce-f692f4c07964','4915158584093','Sayın AYNUR DURSUN, 817136073 nolu gönderiniz 7586 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817136073\n\nDear AYNUR DURSUN, your shipment with 817136073 was delivered to you with the delivery code 7586. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817136073\n\n\nBICARGO','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('ec7ff943-33f7-458d-b910-ab597fbd9c12','32483027058','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','5cd8c573-9917-4715-b37d-f245fd0bba24',NULL),
('ec802920-e129-4e3f-8d77-365ffe845543','36363737364','Sayın DEKORATA, 412417235 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412417235\n\nDear DEKORATA, your shipment with 412417235 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412417235\n\nBICARGO','2','abb61da9-a682-4013-a7fd-554adc61e006',NULL),
('ec85f3e4-e7ce-4c21-a76f-30280a9aab35','491721561971','Sayın MERT GÖKMEN, 644796086 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644796086\n\nDear MERT GÖKMEN, your shipment with 644796086 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644796086\n\nBICARGO','1','78463605-c329-4929-b567-24a3f88f4b7d',NULL),
('ec91bf1f-d5d7-499b-ad3a-9874e89f888b','4920350083648','Sayın DİE FABRİK OUTLET, 223249369 nolu gönderiniz 2989 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223249369\n\nDear DİE FABRİK OUTLET, your shipment with 223249369 was delivered to you with the delivery code 2989. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223249369\n\n\nBICARGO','2','d9271f7c-f437-4def-8584-9c15e6d3a998',NULL),
('ec92bdc1-3d27-4d91-ab5b-7cd70d717005','33651994085','Sayın RABİA GÜNER, 97684781 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/97684781\n\nDear RABİA GÜNER, your shipment with 97684781 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/97684781\n\nBICARGO','1','edd341ae-d463-4dbb-b4ec-e8899cdb8433',NULL),
('ec95e58f-d91c-4461-80f0-42af13154d17','905078062550','Sayın yetkili; SEVGİ BOLAT adlı müşterinize 598250504 nolu gönderinizin SANDALYE ürünü 6 parça halinde LİN SANDALYE adresinizden 18.07.2025 17:56:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('ec990cc5-9769-4357-86a4-213904dc9c60','905304259202','Sayın yetkili; EDİZ DİNLER adlı müşterinize 478989383 nolu gönderinizin masa-sehpalar ürünü 2 parça halinde çelikbey inegöl depo adresinizden 08.05.2025 14:30:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('eca02884-0a31-4b31-a139-e971e9542ed5','4917683226592','Sayın ESMA MERT, 371282604 nolu gönderiniz 9942 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371282604\n\nDear ESMA MERT, your shipment with 371282604 was delivered to you with the delivery code 9942. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371282604\n\n\nBICARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('eca1d897-d54d-4d41-9fcc-b315ac9f1365','4920350083648','Sayın DİE FABRİK OUTLET , 223631242 nolu gönderiniz 3886 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223631242\n\nDear DİE FABRİK OUTLET , your shipment with 223631242 was delivered to you with the delivery code 3886. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223631242\n\n\nBICARGO','2','c9aeac07-5c87-4e65-8ab9-93e191b865ea',NULL),
('ecb37c57-739f-4279-82fb-099f735de001','905331602195','Sayın yetkili; ŞEYMA BOZDAĞ adlı müşterinize 221940723 nolu gönderinizin Balat sandalye koyu ceviz  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 27.06.2025 11:35:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','910744ec-cad6-475e-ad64-324c153358ad',NULL),
('ecb40679-720f-47dd-895c-e3d61fc95f17','905079358213','SEDAT ÇİFÇİ  adlı müşterinizin 745538897 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('ecb8da2d-1b39-40d4-bf75-3e44c67ccfa8','4915733940520','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('ecb975c7-e206-411a-8420-94e6695801e1','905313340045','Sayın yetkili; NİSA PARLAR adlı müşterinize 437895842 nolu gönderinizin orta sehpa ürünü 2 parça halinde masami adresinizden 08.08.2025 14:48:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('ecbc418e-02c5-40ed-bfaf-130a4e270275','4917656985678','İLETİŞİM\n					MURAT KAYA ŞOFÖR : +90532 161 6048','1','474a3a6a-6eed-40dd-b9a3-2ab629d2b662',NULL),
('ecbddaaa-3a60-4b48-886d-4af61a087268','905079047428','ZOE BACHTOLD adlı müşterinizin 449644504 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','5c020160-b2d9-48d6-a019-7718647a1ff3',NULL),
('ecbfd20a-3d2c-420b-a8d5-6e8f7d7200f7','4917670281614','Sayın MEHDİ SALİHU, 371434188 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371434188\n\nDear MEHDİ SALİHU, your shipment with 371434188 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371434188\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('ecce6f6b-30a9-4994-9256-50f0ef124b68','905079047428','AYSEL KARABULUT adlı müşterinizin 449454395 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('ecd5b8cc-c040-4ee3-8833-0e9c74f910f4','33660364663','Sayın EMRAH MERCAN, 734970518 nolu gönderiniz 1405 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/734970518\n\nDear EMRAH MERCAN, your shipment with 734970518 was delivered to you with the delivery code 1405. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/734970518\n\n\nBICARGO','1','14395ac1-388d-436d-a633-eb7f1c0beb39',NULL),
('ecd64ba2-39d4-4278-b42e-64c17c7c9cd3','905331602195','Sayın yetkili; RABİA NALKIRAN adlı müşterinize 221307786 nolu gönderinizin Cuats sandalye  ürünü 6 parça halinde ALP SANDALYE adresinizden 20.02.2025 15:04:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c4ed3c28-c51b-4246-86d1-a36f0aff591d',NULL),
('ecd8c928-ee0a-4e13-bfec-7957358f159b','4917681094812','644424764 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7577 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644424764\n\nYour shipment with the number 644424764 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7577. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644424764\n\nBICARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('ecd9df96-fb52-4ba6-b7aa-10b1730f1165','4917687857999','Sayın MELİSA , 817630523 nolu gönderiniz 1320 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/817630523\n\nDear MELİSA , your shipment with 817630523 was delivered to you with the delivery code 1320. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/817630523\n\n\nBICARGO','1','4beeb944-7865-42f1-92a5-015bdc8f8dcb',NULL),
('ece41415-741e-4569-a2f8-146f38b28cb9','4917680107052','Sayın SONJA HUSSAİNİ , 982529212 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982529212\n\nDear SONJA HUSSAİNİ , your shipment with 982529212 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982529212\n\nBICARGO','1','e3b1cbd7-aa49-4695-b628-c4b08d2b645d',NULL),
('ece7d0f8-6b41-4bc8-9684-e2b55c3a82d2','4917676864801','64418413 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/64418413\n\nYour shipment with the number 64418413 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/64418413\n\nBICARGO','1','356bdd4e-5e08-4f43-9351-bdf6b54cdbb4',NULL),
('eced59ee-852d-41b1-b323-aee110de375e','491721729468673','Sayın BİRSEN KARADAVUT, 478403352 nolu gönderiniz 7213 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478403352\n\nDear BİRSEN KARADAVUT, your shipment with 478403352 was delivered to you with the delivery code 7213. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478403352\n\n\nBICARGO','2','b006cc45-9807-4678-89ca-491086a75064',NULL),
('eceddf93-6b6e-4600-a793-02cd3389f04a','905331602195','Sayın yetkili; CHERİET NAJET adlı müşterinize 221287992 nolu gönderinizin Balat sandalye siyah ürünü 6 parça halinde ALP SANDALYE adresinizden 07.04.2025 11:37:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9d35722-4f61-4858-b63b-066b56b95e42',NULL),
('ecee4956-7756-4492-9ff7-25c651e00f4d','4915785558827','910632087 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8152 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910632087\n\nYour shipment with the number 910632087 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8152. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910632087\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('ecefcf7f-78a8-43d0-9597-92cb1142c7af','31611470628','Sayın ŞEYMA ŞANLI , 221883606 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221883606\n\nDear ŞEYMA ŞANLI , your shipment with 221883606 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221883606\n\nBICARGO','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('ecf2cdb7-291e-4290-9ade-623bc00bdf0d','4917683242362','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('ecff804f-9e35-4a2f-b93a-374bbff3503f','31625064385','41245861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2725 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41245861\n\nYour shipment with the number 41245861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2725. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41245861\n\nBICARGO','1','c9088fa8-0cb5-4a5f-9e31-fcbc82ded2ce',NULL),
('ecffda70-ffed-4c2c-8d59-a095804964f4','33658630958','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('ed0aad0f-0a26-43f2-98f9-0f9a6917000e','31650234175','Sayın SAİT CARCUR, 501874784 nolu gönderiniz 10400 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501874784\n\nDear SAİT CARCUR, your shipment with 501874784 was delivered to you with the delivery code 10400. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501874784\n\n\nBICARGO','1','bfbfabaf-ef1e-4ce4-ae74-bf79461b9c6e',NULL),
('ed0ed62c-1a01-4e72-a0e0-cbf667e09985','905461661672','ZELİHA ÖCAL adlı müşterinizin 6442594 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('ed0edd60-2dad-4c3d-83e1-c60532d6f529','905332942204','ELİF GÖKTAN adlı müşterinizin 505770346 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','6832af34-4eaa-4b00-8c36-a811910e9201',NULL),
('ed16b443-47d1-475c-a46e-016a47a71693','436603703477','437232562 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7395 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437232562\n\nYour shipment with the number 437232562 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7395. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437232562\n\nBICARGO','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('ed16fee9-bc09-48af-8bde-f6a6ab1ec300','436766459770','74568874 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74568874\n\nYour shipment with the number 74568874 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/74568874\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('ed17a82f-1cf0-44d4-8b81-48e20483ac46','905335708965','SİYAH PALETLER adlı müşterinizin 735565748 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','83b46886-5368-4d6c-8779-63f4585588f3',NULL),
('ed1abb2d-06d8-4591-97fb-b0e6670b3172','41764518719','Sayın SEMİH TASKELE, 221693523 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221693523\n\nDear SEMİH TASKELE, your shipment with 221693523 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221693523\n\nBICARGO','1','0fa4e833-ebf2-4fb4-8021-f94e93ba1ec1',NULL),
('ed1cafe8-3ba5-45cf-ac24-29b6950a2e74','905396919155','AHMET GÖKÇEK  adlı müşterinizin 973510341 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL),
('ed1dd718-9e6c-4b26-a018-17b710ceca0b','33649856318','Sayın MİLLE FİERRA COELHO  LUDİVİNE , 478505417 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478505417\n\nDear MİLLE FİERRA COELHO  LUDİVİNE , your shipment with 478505417 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478505417\n\nBICARGO','1','2eb5f10e-e566-4406-9074-57c0c21bd403',NULL),
('ed1ff5b1-3df8-49d8-945b-b57c03f9e73e','32470754918','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','cdef52e8-4b0b-4e11-8103-ad6f65f33ebe',NULL),
('ed275870-806e-4249-aca9-ffd9e274d92e','31640399233','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('ed28a822-8574-4830-81de-8e4d65fee679','4917666876193','Sayın YAVUZ KOÇMAN		, 910772127 nolu gönderiniz 10058 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910772127\n\nDear YAVUZ KOÇMAN		, your shipment with 910772127 was delivered to you with the delivery code 10058. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910772127\n\n\nBICARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('ed28ba84-a517-45f2-8aca-6e326cf4b1fd','905332942204','Sayın yetkili; ATIL SOPHİA adlı müşterinize 505850944 nolu gönderinizin sandalye ürünü 4 parça halinde mfour adresinizden 09.09.2025 11:06:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('ed29906d-6244-4fe4-ae07-0c91d6830838','4915258412907','221187320 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1396 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221187320\n\nYour shipment with the number 221187320 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1396. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221187320\n\nBICARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('ed2c54b1-84a5-4de5-91d5-26a3d532642c','4915258412907','Sayın SERHAT TAŞÇEVİREN, 221187320 nolu gönderiniz 1396 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221187320\n\nDear SERHAT TAŞÇEVİREN, your shipment with 221187320 was delivered to you with the delivery code 1396. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221187320\n\n\nBICARGO','1','00d70258-2f30-4c8b-8f72-089d4172bbd9',NULL),
('ed3212e5-d7fa-4f3f-90d9-71851dc63d83','905078062550','Sayın yetkili; ZELİHA ÖZCAN adlı müşterinize 598492066 nolu gönderinizin MASA SEHPA ürünü 4 parça halinde RİO FATİH adresinizden 07.10.2025 14:30:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('ed366460-3e55-493a-836c-eee02a013a5c','5325000478','Sayın YILDIZ ORHAN, 05.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3804542\nŞifre : 3804542\n			\nBİCARGO','1',NULL,'3f80454d-2b4c-49a1-9d46-7b79fa9a0274'),
('ed3a88d1-a131-41d8-9571-a91bb0f5485a','905394878216','NAZAN DENİZ adlı müşterinizin 517616028 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','70f1d000-69a9-42e6-bbf8-0e2afa7a3f33',NULL),
('ed3bda19-c655-47fc-afea-66ffea9581f3','905301592882','Sayın yetkili; GÜLSÜM ÖZBAY DÜZGÜN adlı müşterinize 910825747 nolu gönderinizin M35 MASA ürünü 2 parça halinde Fatura adresinizden 17.06.2025 12:19:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee8c23f7-d814-4b75-882a-e96dc5bf946f',NULL),
('ed4026f7-db4f-4ef8-b537-9d31d53722e1','905075277637','Sayın yetkili; MEHMET BAYTOK SSH adlı müşterinize 745253500 nolu gönderinizin SSH AYAK ürünü 1 parça halinde Fatura adresinizden 18.06.2025 16:30:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','17c44301-4570-4224-802c-27bd566a17e6',NULL),
('ed403eb3-4baf-49dc-b5fe-73e8ef944707','905454259202','RUKİYE KIRIMLI adlı müşterinizin 478861689 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','d8dbbebb-33a9-4f8a-96c1-a5b0d6954deb',NULL),
('ed481731-df1b-4f8a-91ac-3552dfd3e393','4915752861277','Sayın RABİA AKKUŞ, 644507096 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644507096\n\nDear RABİA AKKUŞ, your shipment with 644507096 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644507096\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('ed49a750-e36a-4b2e-9fb1-b110c28b81a3','905454259202','Sayın yetkili; MUSTAFA ÇELİK adlı müşterinize 478945094 nolu gönderinizin DÜĞÜN PAKETİ ürünü 35 parça halinde çelikbey inegöl depo adresinizden 11.01.2025 17:56:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','01608d35-8f91-4555-8ddb-ee881418d1b8',NULL),
('ed4a71ba-3d54-4946-b70e-60ae3b5eea71','33780145878','44940434 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8246 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/44940434\n\nYour shipment with the number 44940434 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8246. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/44940434\n\nBICARGO','1','6df88176-a01f-4232-a091-4e10895a39df',NULL),
('ed558646-7cf3-4426-b1be-f50476e64e17','905079358213','HÜSEYİN AKBANA adlı müşterinizin 745191568 nolu gönderisi 26 parça halinde yola çıkmıştır.','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('ed58e21e-7a6d-40e8-aa6e-f6dbd9d357fa','05388618969','Sayın yetkili; NERMİN KAZAN  adlı müşterinize 786146097 nolu gönderinizin Traverten  ürünü 2 parça halinde Fatura adresinizden 11.09.2025 16:18:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','d99ae93f-dd73-4f33-a6a3-1bd33e17655a',NULL),
('ed58ee6a-3477-4839-a00c-b18d25876719','33631854017','Sayın BURÇİN MEN, 745970479 nolu gönderiniz 9709 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745970479\n\nDear BURÇİN MEN, your shipment with 745970479 was delivered to you with the delivery code 9709. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745970479\n\n\nBICARGO','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('ed5fece0-d4cd-4008-9107-80b4b53de64a','33646051742','Sayın YOLCU EVİN, 515463699 nolu gönderiniz 5113 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515463699\n\nDear YOLCU EVİN, your shipment with 515463699 was delivered to you with the delivery code 5113. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515463699\n\n\nBICARGO','1','2b9b8352-38a1-462f-8872-8754c00e64e4',NULL),
('ed607214-221e-46d1-923b-d310cd15fc0a','4917621775296','248203029 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1635 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248203029\n\nYour shipment with the number 248203029 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1635. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248203029\n\nBICARGO','2','e15a4b43-14fe-4dd6-badf-02324cd22358',NULL),
('ed658a82-202b-4cad-9d95-2632f5fc5163','905461661672','HÜSEYİN ÇELEBİ adlı müşterinizin 644576493 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8561441c-71d3-4fdc-b62c-38b9d59e21bd',NULL),
('ed6c070f-0f01-471b-93fc-cdba23512629','905517075149','Sayın yetkili; ERKUT PEKTAŞ adlı müşterinize 478474988 nolu gönderinizin masa - 6 adet sandalye ürünü 5 parça halinde AREA adresinizden 08.09.2025 11:47:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('ed6ea4ad-24e3-4bbd-85a9-f5dabf85c953','905313340045','Sayın yetkili; ALPER ÖZDEMİR adlı müşterinize 437414847 nolu gönderinizin sandalye ürünü 4 parça halinde ard sandalye adresinizden 29.05.2025 12:20:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c454e08f-938d-43b3-ab45-998625e47a0f',NULL),
('ed7394e3-6440-45bb-9efc-9114d45b77f3','4917620989771','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('ed74d7a9-9001-486a-8d16-ffb0705b68ff','05362285629','959168443 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1906 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/959168443\n\nYour shipment with the number 959168443 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1906. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/959168443\n\nBICARGO','2','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('ed7583ad-4056-4216-9429-a408b0aff755','5325000478','Sayın AAAA BBBBB, 20.08.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1051556\nŞifre : 1051556\n			\nBİCARGO','1',NULL,'e10c5155-6fe5-4df2-8f96-eddaea94db05'),
('ed7acf95-9d3e-41db-8c14-8068fcb1b87d','905335708965','EMRE adlı müşterinizin 248968905 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','944463e8-220a-4540-bab2-ef92cb495c59',NULL),
('ed7d5212-b3d5-4e71-b29d-fef4fe74dee0','4915256924287','İLETİŞİM\n					ŞOFÖR: ERDEM BEY +90 543 294 14 09','1','3fba1e1a-d3f7-4a72-b88c-284f205185ce',NULL),
('ed7f206a-9da9-4c43-97af-b6869c8c5899','4915147045689','412107970 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2208 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412107970\n\nYour shipment with the number 412107970 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2208. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412107970\n\nBICARGO','1','70bb5389-78e9-4cd1-b018-0133ebcdd21c',NULL),
('ed880c44-03ff-4bfb-bbb2-a7d267a4a212','33652126348','Sayın FERHAT DEMİRCİ, 517901924 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517901924\n\nDear FERHAT DEMİRCİ, your shipment with 517901924 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517901924\n\nBICARGO','1','0d30fc8e-1bbc-4241-8485-e20902596e8d',NULL),
('ed8ae83a-d1d8-46fb-9208-743cf6010e36','905333323012','Sayın yetkili; VALMİRA RAMADANİ adlı müşterinize 695394738 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde WOM KOLTUK MUAMMER adresinizden 16.06.2025 15:29:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('ed8b6f81-dee0-496b-b871-cc58539ececf','491639052092','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('ed9dd884-3340-4802-a601-d7d23f810580','905356503956','MAĞAZA adlı müşterinizin 027336842 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1864d9b1-dcd3-4670-aa46-78f5576aa7cd',NULL),
('eda4c6a4-e782-4485-ac26-105a796a9e6d','905078062550','Sayın yetkili; ERKAN URAL adlı müşterinize 5983047 nolu gönderinizin KÖŞE KOLTUK ürünü 6 parça halinde HARUNCAN SOFA adresinizden 01.10.2025 12:43:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a34f337a-4aa3-4909-9386-aba561d8a6a0',NULL),
('eda7dcba-8de3-4ffb-9425-76c9ff7b9b02','3168244547','Sayın DOBREA NİCOLETA SSH, 437132386 nolu gönderiniz 9077 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437132386\n\nDear DOBREA NİCOLETA SSH, your shipment with 437132386 was delivered to you with the delivery code 9077. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437132386\n\n\nBICARGO','2','2b90a4bf-839a-4804-abdc-8987ed2eec85',NULL),
('edabcb5f-2520-45e4-b260-9a8b72dda7f1','33758896442','478322325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9858 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478322325\n\nYour shipment with the number 478322325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9858. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478322325\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('edae77ce-86c3-4fad-99c4-89d7acfa1dc0','436603227029','745761149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8488 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745761149\n\nYour shipment with the number 745761149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8488. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745761149\n\nBICARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('edae807e-5758-49ac-a02e-0666d4aef69c','41765655638','Sayın DOMİNİK WİNK, 126649227 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126649227\n\nDear DOMİNİK WİNK, your shipment with 126649227 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126649227\n\nBICARGO','1','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL),
('edb1ddc0-e406-4539-9729-b4013fa5991b','905335708965','VEFA ÇAĞLAR SÖNMEZ adlı müşterinizin 248746531 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL),
('edb44d50-a637-40aa-972f-6d4c8ae0d584','33673731044','Sayın SEVİLAY BÖLER, 745824914 nolu gönderiniz 5680 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745824914\n\nDear SEVİLAY BÖLER, your shipment with 745824914 was delivered to you with the delivery code 5680. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745824914\n\n\nBICARGO','1','c6f6261d-9af4-4463-9afd-4a26817ea19f',NULL),
('edb8f35c-241d-4fab-a97c-1f6ca21e2515','4917670381209','64422113 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5376 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64422113\n\nYour shipment with the number 64422113 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5376. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/64422113\n\nBICARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('edb9d56c-7ceb-489d-84a5-9d391a6531c8','4915732408373','Sayın CEMAL CANKURT, 976369139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976369139\n\nDear CEMAL CANKURT, your shipment with 976369139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976369139\n\nBICARGO','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('edbaec7d-41d7-4415-bfe0-535ba7d1647c','905313340045','Sayın yetkili; HÜSEYİN ELİF TUNCA  adlı müşterinize 437809521 nolu gönderinizin 7 Mt kumaş + 3 kırlent SSH ürünü 1 parça halinde bicargo depo adresinizden 14.10.2025 17:48:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','090e53a7-9f47-40c2-990b-65dbc36b9e2c',NULL),
('edbe8044-5b7c-4a70-9ed6-007eb842a5f0','905335511664','Sayın yetkili; SUAT TURA adlı müşterinize 371628660 nolu gönderinizin sandalye ürünü 4 parça halinde Sandalyeci Bekir adresinizden 11.07.2025 16:01:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('edcc0a33-913b-45af-a6ff-06812061d84c','905539740010','Sayın yetkili; ESRA İSMAİL adlı müşterinize 011548428 nolu gönderinizin döşek ürünü 1 parça halinde döşek adresinizden 07.10.2025 14:18:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','38aec1a2-aa0a-4d63-9082-896aaa3694be',NULL),
('edcc9580-87aa-4a3f-9f15-736c6e0ac775','33660617145','Sayın MERVE KARADAVUT, 437998346 nolu gönderiniz 2015 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437998346\n\nDear MERVE KARADAVUT, your shipment with 437998346 was delivered to you with the delivery code 2015. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437998346\n\n\nBICARGO','1','778294cd-ffc6-4789-a055-1419d207d31f',NULL),
('edd24437-cca4-4953-b1a0-99eea3556365','32478530269','Sayın METİN MOLA, 428693052 nolu gönderiniz 1090 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428693052\n\nDear METİN MOLA, your shipment with 428693052 was delivered to you with the delivery code 1090. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428693052\n\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('edd5c4f2-3493-4ea1-a62b-f9558f348563','905313340045','IVANA JURCEVİC adlı müşterinizin 437869312 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('edd8748a-d39c-4795-a72c-ad82458e28c7','4368864127387','982978293 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7939 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982978293\n\nYour shipment with the number 982978293 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7939. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982978293\n\nBICARGO','1','77b2d6f1-c8b1-4d1a-98fb-4f6b8b4ada92',NULL),
('eddab384-9ce9-40f8-9cea-01ef905b0b21','33652449725','Sayın BİLGEN TATAR, 478764154 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478764154\n\nDear BİLGEN TATAR, your shipment with 478764154 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478764154\n\nBICARGO','1','826475dc-b2f5-46e9-8c2c-4ddeb82b942b',NULL),
('eddf44ef-a71e-4133-9e20-877d19eb5e20','905078062550','MERT ÇİÇEK adlı müşterinizin 598954734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1bb074a3-ddf3-432d-9ee8-e36060092ef8',NULL),
('ede025f5-3851-41eb-a4f3-986c815554f4','905461661672','Sayın yetkili; REİNAS HAİDARİ SSH adlı müşterinize 644490677 nolu gönderinizin SANDALYE PATİĞİ ürünü 1 parça halinde DURMUŞLAR SANDALYE adresinizden 03.06.2025 17:17:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('ede1e96b-041c-4661-b448-80bf57af4af3','491785627372','817682643 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3398 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817682643\n\nYour shipment with the number 817682643 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3398. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817682643\n\nBICARGO','1','888c1a17-6ddc-4bc8-b1ab-b00d72942811',NULL),
('ede5acc1-42a8-47ce-9181-a1fc9ee2fce2','004917661019761','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','9bc7ed7a-88ba-4843-ab9e-94956f2066a3',NULL),
('edf04e2b-7fe0-40b6-b5d4-83c7204f23c4','4915231405303','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('edf2b540-5eea-4af0-969c-4aef1fa82964','491742627039','İletişim \n					Şöför Uğur Acar +905424435917','1','908ced55-4ada-4513-96d9-5b7218af5cd7',NULL),
('edf9b5d5-02e3-49b4-9a11-cc85da4543f9','4915560755375','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('ee01216a-728e-48af-9a3b-c6158b009bc2','905331602195','Sayın yetkili; ISENİ ELMEDİNA  adlı müşterinize 221967241 nolu gönderinizin Natura sandalye galaxy bej ürünü null parça halinde MASAMİ MOBİLYA adresinizden 25.07.2025 15:41:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','88cc6a24-35a3-4b23-8747-59b47b080f1a',NULL),
('ee0d7db1-e0af-41bd-ab35-e7cc28c6f4fd','905306071261','Sayın yetkili; KEREM ÖZYAZICI  adlı müşterinize 765334693 nolu gönderinizin 340*170 CM ÖLÇÜLERİNDE NİKOLA  L KOLTUK  ürünü 3 parça halinde BESTLİNE SOFA adresinizden 23.10.2025 11:23:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7ed51e97-f73a-473a-bca0-1959c9e5c202',NULL),
('ee1d5ad9-3763-4b08-9598-b62ba53429dc','905312762034','EMİNE İMRAG adlı müşterinizin 808830873 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f36cd64-fd9d-4454-b14c-e388fa4a57d2',NULL),
('ee1de5a4-2332-4727-9290-7a413fcb9254','4917634365178','Sayın SERAP ÖZTEK, 437660658 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437660658\n\nDear SERAP ÖZTEK, your shipment with 437660658 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437660658\n\nBICARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('ee1f1cfe-cfbd-469c-a7e3-5f1a9a9eda17','905368336516','FATİH YİGİT adlı müşterinizin 515956879 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('ee21154f-3e73-487a-8893-4f395a90e173','5421009721','Sayın OKAN EKİNCİ, 745873539 nolu gönderiniz 10614 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745873539\n\nDear OKAN EKİNCİ, your shipment with 745873539 was delivered to you with the delivery code 10614. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745873539\n\n\nBICARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('ee244c17-8158-4600-99e5-2107b6c28359','905059175469','ULAŞ YILDIZ adlı müşterinizin 428177245 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5c90fa33-182c-4494-99fd-4c200fd9b3b8',NULL),
('ee2b5be1-c461-4c42-a7bd-a977a686fff2','004917631692675','735173063 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9571 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735173063\n\nYour shipment with the number 735173063 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9571. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735173063\n\nBICARGO','2','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL),
('ee306e42-4a8c-46ce-98e6-863bb019d37b','905459011033','?? adlı müşterinizin 268418662 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('ee390151-d65d-49f3-8e74-e1dce0ebd1ca','491737487037','Sayın SERCAN MİRCALİ, 531549696 nolu gönderiniz 5994 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531549696\n\nDear SERCAN MİRCALİ, your shipment with 531549696 was delivered to you with the delivery code 5994. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531549696\n\n\nBICARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('ee3a037b-8e21-48b5-b3b8-a8bac76bbf28','41764103638','İLETİŞİM\n					ŞOFÖR ADNAN DURSUN : +90 535 462 20 27','1','be61ae08-268e-417d-9e86-940a675647f2',NULL),
('ee3b0ccd-4990-4684-91f8-305b7b440039','4917620470826','Sayın KERİM KUTLU, 478263896 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478263896\n\nDear KERİM KUTLU, your shipment with 478263896 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478263896\n\nBICARGO','1','a4adc8bf-b71d-4a75-b862-396d61d1047b',NULL),
('ee3e40e2-33ae-4e22-9b37-73fb120afbac','905059175469','MUSTAFA MÜEZZİNOĞLU adlı müşterinizin 428459785 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','95a5f2f5-7a3e-4a17-acdd-545ebd756dd9',NULL),
('ee3f5081-4f45-4cb9-85bc-6169911dc179','431703503576','Sayın ERKUT PEKTAŞ, 478474988 nolu gönderiniz 10272 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478474988\n\nDear ERKUT PEKTAŞ, your shipment with 478474988 was delivered to you with the delivery code 10272. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478474988\n\n\nBICARGO','2','0f83b9ec-6ba6-4b67-812d-586619784634',NULL),
('ee482e5d-032f-4195-834e-907dd3d509e1','4915158584093','817136073 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7586 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/817136073\n\nYour shipment with the number 817136073 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7586. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/817136073\n\nBICARGO','1','e8420e4b-28d7-4629-acc4-88baabd1cc27',NULL),
('ee4b0dee-02e9-4587-bf9a-2bf32a71b553','905336367828','SAMPAİ CATHERİNE adlı müşterinizin 982118676 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','29ec9532-924f-47cd-86e5-76f47bbd3428',NULL),
('ee4b642c-f846-44c1-ae91-a56789337c68','905304259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde ELİTİS MASA adresinizden 22.05.2025 18:30:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('ee4ede1d-4b30-4a19-a10d-121c48be0f22','905517075149','OSMAN BOZKAN adlı müşterinizin 47822949 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('ee535d91-edc3-46f5-8c9c-ef7ab1bc827e','905394878216','DİDEM BAKES  adlı müşterinizin 517279482 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','46c770a5-8227-45f5-8d34-7141d1d901cd',NULL),
('ee53f8ed-01dd-4b9c-877e-1da84d5789c7','905461661672','Sayın yetkili; MAHSUN ALDEMİR(K) adlı müşterinize 644593040 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde LENTE HOME adresinizden 18.09.2025 14:28:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('ee5a928d-df7b-4ebd-837a-8a8b56a8602e','4917642201800','İLETİŞİM\n					Furkan şöför = +905078826436','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('ee5e50fd-20c2-46b7-957b-043448e2c60e','33660468423','Sayın İNAN PALA, 221210071 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221210071\n\nDear İNAN PALA, your shipment with 221210071 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221210071\n\nBICARGO','1','c30ef00f-b05c-4a82-a40c-4d69d5352e77',NULL),
('ee6666d0-b037-43cf-912b-9f47101fb59a','4917670630570','Sayın SİNEM GÖKÇE, 531340061 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531340061\n\nDear SİNEM GÖKÇE, your shipment with 531340061 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531340061\n\nBICARGO','1','c8ffd3f2-c426-4b6c-9439-664479653971',NULL),
('ee68cc35-9e0e-42dc-ad8c-7688e716c985','4915122429753','Sayın ENVER GÜL, 478659791 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478659791\n\nDear ENVER GÜL, your shipment with 478659791 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478659791\n\nBICARGO','1','2c93ce34-e03d-44d9-994a-7219e1c623b0',NULL),
('ee6d8fe0-e667-48ca-8617-0ece9388a14c','491788617240','478345732 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3848 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478345732\n\nYour shipment with the number 478345732 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3848. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478345732\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('ee762fa1-b42b-44c1-a82c-29dacaa99bf4','4917662248908','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','5638b80a-4caa-4fda-9164-868d6f925066',NULL),
('ee870787-5f30-4351-abbb-16fa7f5f786e','905532675926','Sayın yetkili; METİN MOLA adlı müşterinize 428693052 nolu gönderinizin Berjer  ürünü 2 parça halinde katre koltuk adresinizden 28.08.2025 14:30:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('ee87b17a-1498-4535-8584-58ba704742e2','01779194671','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('ee8b9177-b10a-4f36-bd75-3bcfac88c560','905336367828','SUNAİM İBESKİ adlı müşterinizin 982498702 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','226d454f-504a-4c41-9f7c-2a37ac051991',NULL),
('ee935bb7-2932-455b-9f47-182430399b74','905075277637','Sayın yetkili; AYDIN İLKNUR adlı müşterinize 745545386 nolu gönderinizin 140X200 KING PLATİN BAZA SET  ürünü 4 parça halinde Fatura adresinizden 22.08.2025 12:31:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af1902d4-2938-44ae-80c0-795a83518ffd',NULL),
('ee936ea6-a894-4ea1-a69e-f95d375acbcc','905363385813','SONER UZUN adlı müşterinizin 976680764 nolu gönderisi 22 parça halinde yola çıkmıştır.','1','142a82ad-defd-462a-a877-e872e40354a3',NULL),
('ee9a0115-3c36-4ef8-978a-8f3f422ea4eb','905355891131','UĞUR YILDIRIM  adlı müşterinizin 902194722 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL),
('ee9a53bf-b7a3-488f-9bcc-68cc4ce112ce','905075277637','Sayın yetkili; METE BOZDAĞ  adlı müşterinize 745883224 nolu gönderinizin FRİDA KOLTUK TAKIMI  ürünü 4 parça halinde RİXXE  adresinizden 10.06.2025 14:02:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ee442903-bcf3-41c3-8a85-9a99435f8b6b',NULL),
('ee9c5a04-7ad8-4d52-9ac2-8278c984d730','905335708965','ZANA adlı müşterinizin 248538815 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0c708994-6e45-4ea2-8025-bc17c41e7542',NULL),
('eea6b1f3-b0a2-40df-9e86-dc7db8616f4b','41783198799','Sayın CAFER BEY, 248630618 nolu gönderiniz 6440 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248630618\n\nDear CAFER BEY, your shipment with 248630618 was delivered to you with the delivery code 6440. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248630618\n\n\nBICARGO','1','21454fc9-f40e-4ffc-b94d-8c647a484482',NULL),
('eeab7c8c-0640-4cef-9614-157b7366226f','905079358213','Sayın yetkili; HÜSEYİN AKBANA adlı müşterinize 745191568 nolu gönderinizin DELUXE BAZA SETİ 120X200  ürünü 4 parça halinde Fatura adresinizden 06.08.2025 15:15:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','147e8615-279e-4297-866d-fbccbd1231af',NULL),
('eeafdc33-83a0-4a0e-84ab-c671bb6cf582','41768248382','Sayın MUKKADIN IBRAHIM, 221941793 nolu gönderiniz 2716 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221941793\n\nDear MUKKADIN IBRAHIM, your shipment with 221941793 was delivered to you with the delivery code 2716. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221941793\n\n\nBICARGO','1','c6ce0690-d0de-43de-9f1a-45fc7344f810',NULL),
('eeb1e335-6a1d-4c2c-a841-3815f1e70799','905331602195','Sayın yetkili; MİHAND SAFAE  adlı müşterinize 221257971 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde Fatura adresinizden 18.03.2025 17:04:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ee695b2-e6cc-43a6-8353-dfb5294700ed',NULL),
('eeb30f78-5872-4a01-b9d5-9f9f1c1348c3','905301592882','FURKAN YESARİ GÜVEN adlı müşterinizin 910995300 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('eeb3ca50-e1d1-44f3-ba7a-59e194a32a9a','33760080094','Sayın METİN POLAT, 734499902 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/734499902\n\nDear METİN POLAT, your shipment with 734499902 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/734499902\n\nBICARGO','1',NULL,NULL),
('eeb3fda1-a3ce-45e4-87de-3fcd5f0fc819','31625064385','Sayın MURAT , 412716766 nolu gönderiniz 9222 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412716766\n\nDear MURAT , your shipment with 412716766 was delivered to you with the delivery code 9222. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412716766\n\n\nBICARGO','1','ed1c3d42-dad9-477c-953a-0f9f25eed681',NULL),
('eeb92bd6-bde4-4c30-bc6c-58d76faf7758','905431026110','HÜSEYİN ÇELİK adlı müşterinizin 351888584 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('eebb3fc4-c944-4613-b595-caec016da315','4917672257446','Sayın ÖMER GEDİK, 644113252 nolu gönderiniz 3803 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644113252\n\nDear ÖMER GEDİK, your shipment with 644113252 was delivered to you with the delivery code 3803. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644113252\n\n\nBICARGO','1','48431447-596f-456f-9008-45bdd35c892a',NULL),
('eebc35e6-569e-412b-8048-2a794c7ce2b7','905457153410','NATALİJE adlı müşterinizin 916836796 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','45658f08-1cac-40c6-b173-5814bf12543e',NULL),
('eebdb928-61d6-4b92-8812-2c5c1466b78d','905517075149','FATMA KARAHAN adlı müşterinizin 478346989 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('eec342f8-9a42-48b5-9adb-7da71522af04','1111123232432423','Sayın AAAAAA, 65556881 nolu gönderiniz 9070 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/65556881\n\nDear AAAAAA, your shipment with 65556881 was delivered to you with the delivery code 9070. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/65556881\n\n\nBICARGO','2','d7273e12-dd22-4fa8-9893-2696b1178656',NULL),
('eec80a42-68e2-43a4-b40c-b6b3ba4a5a15','905335708965','MESUT BEY adlı müşterinizin 248720273 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','5deaab6d-c7b6-40f1-a897-d1f9e87d89ca',NULL),
('eed0b0bc-8c87-44c1-b0d6-3ff740d9f334','905356395415','MURAT adlı müşterinizin 163229349 nolu gönderisi 61 parça halinde yola çıkmıştır.','1','6d8023fb-7e68-4b37-8709-816c5519380e',NULL),
('eed1dcd4-3644-4dbe-801d-3bc2c0fb491b','491739514221','248692077 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3351 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248692077\n\nYour shipment with the number 248692077 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3351. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248692077\n\nBICARGO','1','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL),
('eed2f2b2-b13a-48b8-8ffb-ca87012bf433','31681124473','221746261 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2207 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221746261\n\nYour shipment with the number 221746261 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2207. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221746261\n\nBICARGO','1','10862bf3-01dd-40a9-beaa-6ba3d5075238',NULL),
('eed66a8b-d78b-4f2e-a15f-3b700fae4bf6','905442774505','Sayın yetkili; MERVE KIZILIRMAK adlı müşterinize 657258901 nolu gönderinizin Traverten masa kasası ürünü 1 parça halinde Fatura adresinizden 03.07.2025 16:38:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4cf8e968-59ad-4be3-85fe-2d5ab1c9063f',NULL),
('eed7cc8b-ab7a-47bd-a7c5-a7e694c7aafc','4915201020700','İletişim \n					Şöför Uğur Acar +905424435917','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('eedaf044-d6ac-4862-a777-f30fac70f990','33789462575','Sayın SIDI MARİ MUHAMMED , 221859569 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221859569\n\nDear SIDI MARİ MUHAMMED , your shipment with 221859569 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221859569\n\nBICARGO','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('eee0015d-12bd-4cbe-9547-6723a4980617','905335511664','İLAYDA GÜNEŞ adlı müşterinizin 371528044 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('eee088e6-f7ea-40e2-88ff-49d5e2977ceb','3433434343344444','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','2','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('eee20713-2d84-4fa7-b59f-832189ef1c8f','491717951084','Sayın KATRİN MESİNGER, 896847151 nolu gönderiniz 4625 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896847151\n\nDear KATRİN MESİNGER, your shipment with 896847151 was delivered to you with the delivery code 4625. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896847151\n\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('eee26d7a-3fef-4d5d-ae02-71c187357d37','905335511664','BEGÜM KIRCA adlı müşterinizin 371801847 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('eee35853-9a8c-4c7b-9848-bf61545b98d1','905313340045','Sayın yetkili; FAZİLET ÖZÇELİK adlı müşterinize 437232562 nolu gönderinizin Kampanya köşe takımı  ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 12.08.2025 17:37:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3db4a37-eb88-4141-a1ac-f9dc8586b414',NULL),
('eee6aa79-ac79-41b3-b469-07709adce767','4915773625355','371665826 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2623 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665826\n\nYour shipment with the number 371665826 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2623. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371665826\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('eeeff99d-4046-4b82-8567-1da6fed44b01','905312762034','VELİT FİLİZ adlı müşterinizin 808450440 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9b5b3b68-3e25-45b7-a856-05ae20d3cce5',NULL),
('eef07751-825e-4365-8ebf-053284bf586c','436603406293','Sayın yetkili; ARZU ASLAN adlı müşterinize 675346042 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 07.07.2025 10:28:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c2076f78-1666-4ea9-9474-176fcb79c195',NULL),
('eef62a2b-dc8f-44da-acad-46000c7872f8','491781789912','412346704 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7773 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412346704\n\nYour shipment with the number 412346704 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7773. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412346704\n\nBICARGO','1','bb90725b-84e6-4211-8728-367d09c14525',NULL),
('eef74633-e69d-477e-9fb9-8cbb4e9c2d87','905079047428','İBRAHİM AKÇİN adlı müşterinizin 449215672 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('eef75c50-d6b0-4ccd-9b80-69f4e3c8afdb','4915735873115','Sayın ARZU BÖÇKÜN, 614680407 nolu gönderiniz 10737 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/614680407\n\nDear ARZU BÖÇKÜN, your shipment with 614680407 was delivered to you with the delivery code 10737. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/614680407\n\n\nBICARGO','1','f0699886-5b9d-4ea9-8f6d-03786aac722d',NULL),
('eef7e822-bbda-4644-869f-de5850bd8228','905075277637','HUSSRAH MUHAMAD adlı müşterinizin 745464679 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e0988cbc-88e9-4211-a047-1305ad22fb1a',NULL),
('eefed2d6-21f4-42f6-bc8d-eef917744d3c','905079358213','Sayın yetkili; DELİL ÖZTÜRK SSH adlı müşterinize 745786401 nolu gönderinizin 180x200 yatak  ürünü 1 parça halinde Fatura adresinizden 23.05.2025 09:31:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae582db0-f6d5-465e-936e-071de92415c4',NULL),
('ef001b1e-2502-4120-9da2-04041730b033','491787320573','598188038 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8879 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598188038\n\nYour shipment with the number 598188038 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8879. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598188038\n\nBICARGO','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('ef01be25-c0dd-4f07-80a8-3301324c507e','4917631033403','İletişim \n					Şöför Murat : +905321616048','1','0a266acf-5707-4e27-8a72-fd079a3c1ee6',NULL),
('ef04681e-18a4-463d-9779-ae9dc7d8551d','905306071261','Sayın yetkili; DİLEK KHALİL adlı müşterinize 765827254 nolu gönderinizin YEMEK ODASI ürünü 8 parça halinde BESTLİNE SOFA adresinizden 01.08.2025 16:22:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','741ca2d5-ef09-4582-aa3d-7a8f747bfc42',NULL),
('ef0574d0-ec1b-4cb3-997b-22a174b2a6be','905335511664','BERKAN AKTÜRK adlı müşterinizin 371823380 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('ef0afce5-0888-4322-bd2c-2e633bdeb028','33682073450','Sayın ASLAN GÜLŞEN, 478647079 nolu gönderiniz 2749 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478647079\n\nDear ASLAN GÜLŞEN, your shipment with 478647079 was delivered to you with the delivery code 2749. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478647079\n\n\nBICARGO','1','b3402260-d451-4d00-8ed8-35b3af56080f',NULL),
('ef105112-c146-4f94-b639-77553ec80f4a',NULL,'AHMAD ALHASAN adlı müşterinizin 100799933 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','35aa85df-7aef-4067-ae33-117a3bc2dd18',NULL),
('ef126c74-c847-44b3-95cd-e5313624ef17','4917630550743','Sayın NESLİHAN DEMİR, 371586742 nolu gönderiniz 9430 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371586742\n\nDear NESLİHAN DEMİR, your shipment with 371586742 was delivered to you with the delivery code 9430. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371586742\n\n\nBICARGO','1','61630d35-0a19-4513-83ef-94b891cf12e5',NULL),
('ef1676ff-ab98-41e5-8350-5ee3e20d63da','4915784866219','Sayın ENVER GÜLMEZ, 501981507 nolu gönderiniz 6910 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501981507\n\nDear ENVER GÜLMEZ, your shipment with 501981507 was delivered to you with the delivery code 6910. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501981507\n\n\nBICARGO','1','04b906a6-7837-4515-810d-2b36aefb9873',NULL),
('ef1aa54c-830a-4aae-81e1-d51f8ddd64f9','33624131521','Sayın ADNAN MUSTAFAJ, 449343471 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449343471\n\nDear ADNAN MUSTAFAJ, your shipment with 449343471 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449343471\n\nBICARGO','1',NULL,NULL),
('ef2174b2-bcd6-4159-9d30-22781990dc86','491629768572','Sayın ESRA BALTACI, 644711459 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644711459\n\nDear ESRA BALTACI, your shipment with 644711459 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644711459\n\nBICARGO','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('ef22b3c2-3321-42f4-96ea-94274e720e0d','9053259981980','ADEM  GENÇ adlı müşterinizin 614553524 nolu gönderisi 4 parça halinde yola çıkmıştır.','2','fd6227ea-51d9-463a-bf38-1fd2110f95f6',NULL),
('ef236073-b033-4e02-bf69-ac6ad05c7a07','905300961610','ERSİN adlı müşterinizin 126377805 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','13e1b3c7-60fe-4735-b57d-8a2dcc60b9d3',NULL),
('ef27bf2e-927d-4a62-afbd-9286e25f4ea0','33695831959','745660870 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9512 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745660870\n\nYour shipment with the number 745660870 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9512. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745660870\n\nBICARGO','1','3a1ef1a0-617f-4576-b71f-a4e298cceac4',NULL),
('ef29e41e-872f-43d4-b433-3f89dabd06f9','33662787707','İletişim \n					Şöför Uğur Acar +905424435917','1','f31b5648-bfa8-453b-a0cc-3f15b30f8046',NULL),
('ef2a4def-843b-4d40-b199-6fafa1cc704d','4915773625355','Sayın MERVE DEĞİRMENCİ, 371665826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371665826\n\nDear MERVE DEĞİRMENCİ, your shipment with 371665826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371665826\n\nBICARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('ef31c134-517d-4760-a755-a5997cb413fd','4917624497671','Sayın NİSA PARLAR, 437895842 nolu gönderiniz 4054 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437895842\n\nDear NİSA PARLAR, your shipment with 437895842 was delivered to you with the delivery code 4054. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437895842\n\n\nBICARGO','1','259921e5-33a8-46ab-8da6-91a44b26b420',NULL),
('ef3616cd-947f-4d37-80b0-5e8d6f257f7c','33607954368','Sayın YASEF İCEL, 478978353 nolu gönderiniz 8486 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478978353\n\nDear YASEF İCEL, your shipment with 478978353 was delivered to you with the delivery code 8486. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478978353\n\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('ef36c12e-bac0-4bb3-97bb-42d6ddcb9dee','1111111111','Sayın Ramazan  Intermax , 12.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 4610943\nŞifre : 4610943\n			\nBİCARGO','2',NULL,'4ee6aa10-9436-4302-ba93-b9b567907896'),
('ef36c96b-8612-4428-9931-bb55f0f94b4c','905331602195','AHMED AZEEZ  adlı müşterinizin 221364325 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','93a423f4-81fb-4690-bc1a-7b1c23ae6a8c',NULL),
('ef3706fd-1649-4098-a80a-c0042c7a003f','905350866560','517337381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10454 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517337381\n\nYour shipment with the number 517337381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10454. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517337381\n\nBICARGO','1','bbbfec16-7fc6-4768-8141-eb412f41dde7',NULL),
('ef40d0e4-770d-4732-b1ff-04e12fecfa45','905517075149','LABABABİD WEJDAN adlı müşterinizin 478417862 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c5c126c-885b-423a-9e95-19a5f6a09a61',NULL),
('ef46457c-0e57-4a01-8766-5734cef6e37b','491726402592','Sayın İNCİ TOKGÖZ, 478240909 nolu gönderiniz 3672 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478240909\n\nDear İNCİ TOKGÖZ, your shipment with 478240909 was delivered to you with the delivery code 3672. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478240909\n\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('ef4723fb-5295-412f-8377-ef5797cf974b','905350617509','Sayın yetkili; DENİZ AKGÜMÜS  adlı müşterinize 613601743 nolu gönderinizin Traverten masa ürünü 1 parça halinde Fatura adresinizden 30.07.2025 11:09:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5a0d095-3374-44f2-a144-e0660e15a03a',NULL),
('ef4b3c18-2ee4-4930-bd3b-f896998aa389','491788201134','976423277 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9902 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976423277\n\nYour shipment with the number 976423277 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9902. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976423277\n\nBICARGO','1','79c8efb8-c504-45ca-bec0-780372b87574',NULL),
('ef5104c7-4752-4d22-9936-54d487af8d6a','4917642201800','Sayın TUNAY KOCATÜRK, 644196383 nolu gönderiniz 10184 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644196383\n\nDear TUNAY KOCATÜRK, your shipment with 644196383 was delivered to you with the delivery code 10184. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644196383\n\n\nBICARGO','1','dcf208dc-cd3f-4596-9430-d35849bbc2f6',NULL),
('ef54328e-1b9f-449e-89d2-c89e947f4d04','905461661672','REİNAS HAİDARİ adlı müşterinizin 644884110 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','1943ad09-88d5-4276-8d90-1798cf356edb',NULL),
('ef5883aa-2556-4f34-a1b0-13db6ecd41f1','905325000478','GELİNLİKÇİ adlı müşterinizin 412574307 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e7023ff3-7189-4722-b023-fb3fc983b16a',NULL),
('ef69ec33-4287-422a-b5df-1431ebd454e5','491787320573','İLETİŞİM \n					ŞÖFÖR FURKAN +90 507 882 64 36','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('ef6fed6b-5dde-4dfd-bedd-93a971ff7094','491603319879','İletişim \n					Şöför Murat : +905321616048','1','c0a6fef4-a5ae-4572-85c7-2f3b28086520',NULL),
('ef8277a1-8577-4683-96f2-8159e8656aee','905336367828','FARZANA SEDİGHİ adlı müşterinizin 982691264 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2ea9f592-fc79-4bd5-aeff-4c86310c8b37',NULL),
('ef86fc92-5051-4ee2-8987-baae3a9d9352','905079047428','SAFİ adlı müşterinizin 449634859 nolu gönderisi 4 parça halinde yola çıkmıştır.','1',NULL,NULL),
('ef88ad00-e10f-484d-b55a-618db3e8fbf9','33487361121','Sayın AKRAH ABDULNASSER, 412968011 nolu gönderiniz 7313 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412968011\n\nDear AKRAH ABDULNASSER, your shipment with 412968011 was delivered to you with the delivery code 7313. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412968011\n\n\nBICARGO','2','aa89225f-004a-42b9-8b91-83ea8db5b923',NULL),
('ef8a1997-a950-4568-9b87-d086d58dca90','31615081540','ŞÖFÖR İKETİŞİM\n					+905301824880','1','5fe39fcd-c517-4068-9edd-0a87a35acb0f',NULL),
('ef8a5e4a-fd4c-437d-a6e7-4e08f16e8080','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL ORTA SEHPA ürünü 1 parça halinde ŞAHİNLER  adresinizden 03.09.2025 13:43:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('ef8cd010-2851-45be-bca5-d5c84ca9c856','004917616377875','248694668 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3182 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248694668\n\nYour shipment with the number 248694668 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3182. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248694668\n\nBICARGO','2','57ea5801-e3e6-46ac-b5d0-a60cf4d26d01',NULL),
('ef8f65e8-e290-49c8-95fc-971d59e66406','905336367828','BEA JONGERİUS adlı müşterinizin 982984016 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','39a2c1f9-754e-40a7-9e18-c240852aa8cd',NULL),
('ef91d854-4bdd-40b9-9057-597531cee1d3','905318109098','Sayın yetkili; Huseyin gündüz  adlı müşterinize 455614339 nolu gönderinizin Yavrulu yatak ürünü 7 parça halinde Ekin bebe adresinizden 04.11.2024 16:15:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29e07758-ee2d-462d-95cb-5effc249b279',NULL),
('ef9536c5-e7a0-438e-8168-c222c6aef80f','33660485307','Sayın AYŞE DOĞAN, 982415045 nolu gönderiniz 2495 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982415045\n\nDear AYŞE DOĞAN, your shipment with 982415045 was delivered to you with the delivery code 2495. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982415045\n\n\nBICARGO','1','93c365fd-397d-46ce-91b9-bdd586250f02',NULL),
('ef98d2cb-8266-4bec-8964-b52cedb0ee82','491636759658','ŞÖFÖR NUMARASI\n					+905467896981','1','398f925f-e9ff-4494-a4eb-d80689e256ac',NULL),
('efa44660-860f-459d-af18-0c03aded6342','436644579917','278440694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6021 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/278440694\n\nYour shipment with the number 278440694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6021. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/278440694\n\nBICARGO','1','87226e30-fe1d-481b-8c10-e309459138ca',NULL),
('efa5ef55-33d2-4ced-9434-00ade66a7654','905313340045','Sayın yetkili; MERYEM BİRCAN ANİK adlı müşterinize 437791709 nolu gönderinizin köşe koltuk ürünü 3 parça halinde EFAR HOME adresinizden 20.05.2025 15:03:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('efa6148d-384c-4e62-8666-770a0b25db4d','05394752647','644407379 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10183 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644407379\n\nYour shipment with the number 644407379 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10183. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644407379\n\nBICARGO','2','c7df4577-2554-4909-9abc-5a62fa7bafc7',NULL),
('efa633a8-7107-4dee-9302-78e1c5f84f6e','905313340045','ISRA ISKENDER adlı müşterinizin 43736182 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c76998eb-67dd-4f0b-bee2-f2c6820bdcce',NULL),
('efa6d48c-9298-45db-93d9-6bc622bc9398','905078062550','Sayın yetkili; HAYRİYE BOZKURT adlı müşterinize 598405313 nolu gönderinizin köşe koltuk ürünü 3 parça halinde MERTSOY KOLTUK adresinizden 10.04.2025 15:53:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a132cd43-3a78-405e-8d75-c0a8147b581f',NULL),
('efac5fb7-be59-418a-bd1e-22d5b47a14e9','905335511664','MEHDİ SALİHU adlı müşterinizin 371434188 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('efadd153-94eb-4084-af09-a0585826ff68','33616174478','Sayın HÜLYA ÇELİK , 517910414 nolu gönderiniz 5456 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517910414\n\nDear HÜLYA ÇELİK , your shipment with 517910414 was delivered to you with the delivery code 5456. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517910414\n\n\nBICARGO','1','398f18a6-4116-4296-8890-4d154fc30789',NULL),
('efaf75aa-ece5-4986-9fdf-569596839d10','905325000478','EURO STAR MOBEL adlı müşterinizin 412417422 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1d5b2e29-00c0-4ef0-bfe8-d62f921bed94',NULL),
('efb0a112-f5b8-40c7-839f-0aba7399eff0','32493977862','221157320 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9689 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221157320\n\nYour shipment with the number 221157320 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9689. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221157320\n\nBICARGO','1','f4bd20c1-e77e-468a-82a9-4daefeb2df5c',NULL),
('efb2363e-f708-4b49-beec-99b5bcb372d0','4917680117580','33841628 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33841628\n\nYour shipment with the number 33841628 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/33841628\n\nBICARGO','1','9389f67d-2767-4619-90da-cdf983bc767b',NULL),
('efb62220-2556-4910-9b9d-6e6995f5c6cd','905054335859','SAAİD HUSSEİN adlı müşterinizin 501760708 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','7ebe9302-39fc-46ee-b7c6-423d2cf70cd3',NULL),
('efb68531-3910-44ed-9667-71afa753a0c4','05357772672','Sayın HATUN ŞİMŞEK, 842151692 nolu gönderiniz 9092 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/842151692\n\nDear HATUN ŞİMŞEK, your shipment with 842151692 was delivered to you with the delivery code 9092. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/842151692\n\n\nBICARGO','2','c79902d9-089e-44e4-a536-9307c5bef39d',NULL),
('efb786e6-2c9f-4b1e-9092-6734a35724b7','4917683242362','74568874 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8311 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/74568874\n\nYour shipment with the number 74568874 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8311. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/74568874\n\nBICARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('efbb989c-495e-4928-9e6a-ea70512178cf','905336367828','BYTYCİ REZARDE adlı müşterinizin 982773684 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','98c40a46-22d8-4470-84a1-302a19073f0d',NULL),
('efc50def-28c0-4102-9280-86c5bd03320f','905461661672','ESRA MAT(K) adlı müşterinizin 644484322 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('efc6b580-50e0-4acf-af25-3ee003bf95de','905335511664','Sayın yetkili; ALEYNA İREP adlı müşterinize 37119244 nolu gönderinizin masa ürünü 2 parça halinde SM Tasarım adresinizden 08.08.2025 14:39:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('efc728eb-a133-4e39-a09a-3d76a1f14a1d','905313340045','SELMA YILMAZ  adlı müşterinizin 437649696 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('efd5d894-7a30-4d08-9355-0811d8c5ae9a','33669929545','449823745 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2096 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449823745\n\nYour shipment with the number 449823745 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2096. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449823745\n\nBICARGO','1','582bd0ee-3bef-4bc8-9243-917189827f95',NULL),
('efe036d3-8d89-4ff1-a34f-406e503b788a','491713468875','Sayın IVANA ELİAS, 437426295 nolu gönderiniz 10844 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437426295\n\nDear IVANA ELİAS, your shipment with 437426295 was delivered to you with the delivery code 10844. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437426295\n\n\nBICARGO','1','2e84e42f-b241-4285-8be1-464db22053be',NULL),
('efe1231c-d223-4c8e-b1eb-1331b809629c','4917624125549','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','cbc66089-3787-46c8-9770-6e95da20fddd',NULL),
('efe4bbcd-dca8-41d2-9f35-2a65665038e6','33744724088','Sayın EDİZ DİNLER, 478989383 nolu gönderiniz 7802 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478989383\n\nDear EDİZ DİNLER, your shipment with 478989383 was delivered to you with the delivery code 7802. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478989383\n\n\nBICARGO','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('efee3d6d-ae50-400b-928e-3d3fb29d3eae','905331602195','Sayın yetkili; ABBES İMEN  adlı müşterinize 221407742 nolu gönderinizin 90x190 cm Beyaz milas masa ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:11:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1384e7-3101-476b-be1f-bb10a9abe0b3',NULL),
('eff71f5b-c016-4bc8-89dd-17c45ca1ce5e','905442774505','MUSTAFA ÖZÇOBAN adlı müşterinizin 657264606 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9739db1e-0165-46ba-ba28-b7ce9e88c38b',NULL),
('f005017b-f2af-44e6-898b-3fb91d497161','33658296936','Sayın MUARREM NAİR, 616254479 nolu gönderiniz 8935 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/616254479\n\nDear MUARREM NAİR, your shipment with 616254479 was delivered to you with the delivery code 8935. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/616254479\n\n\nBICARGO','1','5b410819-0339-4c69-a500-825f92b681a3',NULL),
('f0138fc0-8736-4904-b427-c89d881ecc47','111111111111','Sayın SERKAN  KAYNŞLI, 13.10.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5004336\nŞifre : 5004336\n			\nBİCARGO','2',NULL,'e500be43-361f-413c-9720-89cc683cacf9'),
('f0194517-4788-4777-a8b3-443c085d161f','905331602195','Sayın yetkili; NURSELİ KÖSE  adlı müşterinize 221285061 nolu gönderinizin Balat sandalye özel renk ürünü 6 parça halinde MERT SANDALYE  adresinizden 27.03.2025 15:07:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a2313433-a437-47d9-a63c-55c129ea96e2',NULL),
('f01a3da3-8cd6-4de2-a87c-6fe731dcab10','0000000000000000','Sayın ESKİŞEHİR 2, 412472932 nolu gönderiniz 6392 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412472932\n\nDear ESKİŞEHİR 2, your shipment with 412472932 was delivered to you with the delivery code 6392. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412472932\n\n\nBICARGO','2','0c0919ed-e869-4b33-a525-8e05358a4852',NULL),
('f01c62e3-1326-484b-b7e2-37449d030ad1','330758774283','Sayın THOMAS TELAH, 982681083 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982681083\n\nDear THOMAS TELAH, your shipment with 982681083 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982681083\n\nBICARGO','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('f01f4296-4e0c-4351-a8eb-6042b9071130','1111112333232323','Sayın LEİPZİNG, 248133427 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248133427\n\nDear LEİPZİNG, your shipment with 248133427 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248133427\n\nBICARGO','2','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL),
('f02157a0-cc40-4882-af4d-6c01a1d862aa','491734523187','644826740 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9310 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826740\n\nYour shipment with the number 644826740 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9310. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644826740\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('f0219136-7c80-407f-a173-591b7de7c898','33778663770','Sayın M.CEDRİC KLEINDIENST, 221850151 nolu gönderiniz 7503 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221850151\n\nDear M.CEDRİC KLEINDIENST, your shipment with 221850151 was delivered to you with the delivery code 7503. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221850151\n\n\nBICARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('f022cdec-d06c-4ed3-9ed0-4804ed411523','905389543828','Sayın yetkili; ŞİRİN BALCIN adlı müşterinize 486181220 nolu gönderinizin Koltuk ürünü 6 parça halinde Belita Home adresinizden 12.05.2025 13:40:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('f0250c59-d957-4db8-80b5-80d29c1764d3','905459011033','?? adlı müşterinizin 268418662 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','eb022ab2-6101-4e9c-8a86-e4148e447ef2',NULL),
('f0299ee9-014f-4f79-9ab8-5f7d673f56e6','4915788580085','Sayın ŞENOL BEY, 412157183 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412157183\n\nDear ŞENOL BEY, your shipment with 412157183 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412157183\n\nBICARGO','1','73425516-263e-4f72-894c-4cfd33d6ee43',NULL),
('f0373a86-994d-4eab-8c69-3b140f214c7f','905456068312','NFS GRUNDTVİGS adlı müşterinizin 655644248 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6202e8aa-bce2-4ba0-9ca5-ecd030f659be',NULL),
('f03cce24-a79a-42f5-ab9b-96fb1ebf294f','33768384960','İletişim \n					Şöför Uğur Acar +905424435917','1','396cb143-14ce-480a-8762-a43699b4d2d2',NULL),
('f0431129-ea4e-4b36-94e4-714fbb5e9dc6','491724524938','203519424 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3092 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/203519424\n\nYour shipment with the number 203519424 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3092. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/203519424\n\nBICARGO','1','afda17ee-6395-4bb0-bbe2-3e976e5044bc',NULL),
('f043ac58-00a3-4d03-bfdb-041605c35605','905336367828','Sayın yetkili; NESLİHAN HANIM  adlı müşterinize 982614868 nolu gönderinizin Yatak  ürünü 3 parça halinde Fatura adresinizden 30.12.2024 17:41:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('f043cec9-bae1-435a-b43b-09edc5a51c8b','33652944838','221646640 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2513 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221646640\n\nYour shipment with the number 221646640 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2513. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221646640\n\nBICARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('f048a6f5-8871-4126-b17c-c1199c4a7e58','1111112333232323','Sayın LEİPZİNG, 248133427 nolu gönderiniz 5581 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248133427\n\nDear LEİPZİNG, your shipment with 248133427 was delivered to you with the delivery code 5581. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248133427\n\n\nBICARGO','2','c0c37a9e-a856-4546-9c17-87681e0484fc',NULL),
('f0499ce1-0a86-464a-aa55-555f848a4518','33678241654','Sayın MUHAMMET YILDIRIM , 745946644 nolu gönderiniz 5551 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745946644\n\nDear MUHAMMET YILDIRIM , your shipment with 745946644 was delivered to you with the delivery code 5551. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745946644\n\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('f04c5d2c-3e3a-4657-b6b3-a5d5667a2652','905445745615','Sayın ALEYNA KARAKUS, 613787861 nolu gönderiniz 4721 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613787861\n\nDear ALEYNA KARAKUS, your shipment with 613787861 was delivered to you with the delivery code 4721. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613787861\n\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('f04e3ad0-5ace-49a9-af92-1db148c93690','905336367828','NESLİHAN HANIM  adlı müşterinizin 982614868 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','20d6c71c-ba5e-45ee-bcc7-3404727b4b16',NULL),
('f051f85c-1c90-430e-98cf-88d8e39fd672','5325000478','Sayın AAAAAA BBBBBBB, 03.02.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5020032\nŞifre : 5020032\n			\nBİCARGO','1',NULL,'50ac20f0-3ed2-41b1-a665-f6c7e74ab061'),
('f0568ba6-26f3-4573-a0d8-d2a3e919f7dc','905517075149','SAMET BEY adlı müşterinizin 478544570 nolu gönderisi 36 parça halinde yola çıkmıştır.','1','365ff697-3271-4de2-aa7d-b8bcf4ff9590',NULL),
('f05dfbf1-97c2-4477-9cb5-463023d3965d','491723845058','Sayın NASTENA IROBE-POŞETLER, 248539327 nolu gönderiniz 4819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248539327\n\nDear NASTENA IROBE-POŞETLER, your shipment with 248539327 was delivered to you with the delivery code 4819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248539327\n\n\nBICARGO','1','3753ec0d-793c-43d2-920b-d39827ee0154',NULL),
('f05f540a-4819-482e-9981-04f4702c7b7e','111111111111111','Sayın BBBBBBBBBB, 735280128 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735280128\n\nDear BBBBBBBBBB, your shipment with 735280128 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735280128\n\nBICARGO','2','7c8f18be-c3f6-4903-ad13-f994b00c847e',NULL),
('f05fae6d-9647-4479-87fb-6b506c6714cd','491639801426','Sayın EUROMOBEL, 412395565 nolu gönderiniz 4591 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412395565\n\nDear EUROMOBEL, your shipment with 412395565 was delivered to you with the delivery code 4591. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412395565\n\n\nBICARGO','1','a451f68c-dd26-4757-af49-72fa26f23f80',NULL),
('f069197e-3e00-4f85-ad87-985d629fade3','4917663870920','35119636 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7351 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/35119636\n\nYour shipment with the number 35119636 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7351. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/35119636\n\nBICARGO','1','bca77d81-68cd-453a-baac-e90e9d898da0',NULL),
('f0704435-660f-4928-ac56-4a3c8d91639d','491716444408','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('f071c6d0-8ea2-4621-b31f-0e700e3f5337','4917663208908','Sayın ERFURT  MOBİLYA KOLTUK, 248568702 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248568702\n\nDear ERFURT  MOBİLYA KOLTUK, your shipment with 248568702 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248568702\n\nBICARGO','1','5689f2eb-3126-469d-bd48-b54e23a855c8',NULL),
('f0726a58-6ac1-4816-b15f-b60cd59a29e7','905059175469','Sayın yetkili; ALİ GÜLEÇ adlı müşterinize 428470171 nolu gönderinizin ssh ürünü 2 parça halinde Fatura adresinizden 07.08.2025 19:12:28 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('f074e493-549e-4c17-b28c-79bc3c6203d2','33758896442','Sayın MERYEMA TEKİN, 478322325 nolu gönderiniz 9858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478322325\n\nDear MERYEMA TEKİN, your shipment with 478322325 was delivered to you with the delivery code 9858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478322325\n\n\nBICARGO','1','7d5e9833-8a69-43a6-8c18-775c82287e7a',NULL),
('f075c2aa-cdea-494e-8f48-0d414247f307','905454259202','Sayın yetkili; PELŞİN YILDIZ adlı müşterinize 478245028 nolu gönderinizin ORTA SEHPA ürünü 2 parça halinde ELİTİS MASA adresinizden 22.05.2025 18:30:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8f201baa-69fe-442b-9cab-fa1f47b7420b',NULL),
('f0780441-8ba9-432b-845e-a3b2f69422dd','436766536472','478110382 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478110382\n\nYour shipment with the number 478110382 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478110382\n\nBICARGO','1','4a8a3d2f-092a-4deb-84f4-be3d926123a2',NULL),
('f07b8b7e-cbcb-4dff-9090-d1703d648b8c','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 15.10.2025 11:20:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('f07de2f0-4460-4075-9d75-c35cc0b30c05','905336367828','Sayın yetkili; SAVU ALİN  adlı müşterinize 98221051 nolu gönderinizin KOLTUK TAKIMI  ürünü 5 parça halinde Comfortlife  adresinizden 10.07.2025 11:32:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('f0813bb3-bac8-4729-9be4-1b789e3699a8','905350617509','Sayın yetkili; VAİSE İBRAHİM adlı müşterinize 613108463 nolu gönderinizin Sandalye ürünü 5 parça halinde Ayka sandalye adresinizden 20.08.2025 18:38:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','35563c2e-e808-44fd-8e6b-f1d59af96d33',NULL),
('f088c44d-eda8-43b6-bdae-231ec39d26e4','31644144080','478777541 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3545 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478777541\n\nYour shipment with the number 478777541 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3545. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478777541\n\nBICARGO','1','c96401de-d2bb-42c4-b232-62e5a3c21b42',NULL),
('f08b94b4-eb1c-416c-9efa-6c8a7ca72c83','33675157353','Sayın ALİYE DALKAYA, 221763889 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221763889\n\nDear ALİYE DALKAYA, your shipment with 221763889 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221763889\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('f08e3d18-e5fe-4003-b900-2e29932e1a5b','4917670037980','505948491 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5263 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505948491\n\nYour shipment with the number 505948491 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5263. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/505948491\n\nBICARGO','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('f09243f3-1e61-488d-965f-3890130af87d','905313340045','EMEL ALATAŞ adlı müşterinizin 43789661 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f997086a-fb73-43a8-899e-ff36b6cb5597',NULL),
('f097e271-016b-4bc1-a5d0-3e8a88c1d3c9','4917657786100','Sayın ÖZGÜR PİLİÇ, 517447554 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517447554\n\nDear ÖZGÜR PİLİÇ, your shipment with 517447554 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517447554\n\nBICARGO','1','3391efb6-f905-452e-9046-16422800fd88',NULL),
('f0a4a291-9701-4d7e-a54f-f0ddb58b19f8','31614671032','Sayın SEMRA HAKAN KABİR, 745409977 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745409977\n\nDear SEMRA HAKAN KABİR, your shipment with 745409977 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745409977\n\nBICARGO','2','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('f0b2bea2-0af2-425f-a600-e61b2e8fafc6','905517075149','BİNALİ BOZBAŞ adlı müşterinizin 478798827 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('f0b7b37a-21aa-4661-b0c5-d65d1d47c68e','4917630144018','Sayın İBRAHİM AKÇİN, 449215672 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449215672\n\nDear İBRAHİM AKÇİN, your shipment with 449215672 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449215672\n\nBICARGO','1','77eac80c-4c21-48c5-b2d5-8d730b4593ec',NULL),
('f0ba0582-4849-46a7-977b-bb3470128b4a','0000000000000000','Sayın DİKİŞ MAKİNASI, 655583517 nolu gönderiniz 2314 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/655583517\n\nDear DİKİŞ MAKİNASI, your shipment with 655583517 was delivered to you with the delivery code 2314. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/655583517\n\n\nBICARGO','2','a51f78e6-dd8c-4785-ab21-d6f8a35cdf06',NULL),
('f0c0ea85-a90c-45be-b116-202c368d6a31','905325000478','MEHMET ÇİL adlı müşterinizin 412450269 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','2eac751e-9abb-4289-a78f-365093ac6e16',NULL),
('f0cb421b-d504-43f6-9204-073683114fb4','33749069844','478609228 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5462 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478609228\n\nYour shipment with the number 478609228 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5462. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478609228\n\nBICARGO','1',NULL,NULL),
('f0cb857d-49e6-4d8e-b1d8-67891fbd1e20','905517075149','Sayın yetkili; CEYLAN AKTAŞ adlı müşterinize 478350685 nolu gönderinizin mutfak masası 4 sandalyeli ürünü 4 parça halinde Fatura adresinizden 07.10.2025 14:05:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b78bd5b9-8cff-4d83-880b-6b121f0affe1',NULL),
('f0d00c2b-f843-49d1-9ccb-7ff1cafcc325','4915772639272','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','aaa69afc-0eda-49b4-818d-8769ee88f336',NULL),
('f0d2613a-44e2-4097-a86b-7843d5b90d62','4917681295929','896155892 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7356 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896155892\n\nYour shipment with the number 896155892 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7356. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/896155892\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('f0d3a656-5260-420e-af97-9ea91a34f45d','905331602195','Sayın yetkili; AUCHLİ ANA  adlı müşterinize 221616369 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 26.09.2025 14:14:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5a5d710b-b6aa-42ac-baf2-69abc2901c83',NULL),
('f0d70b0f-e881-4f9b-8e7d-73fddd99bbcc','905534084469','ROMİNA ÇÖPLÜ adlı müşterinizin 127927013 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','9380973c-fd42-4ef7-a6e3-5e7f392c02da',NULL),
('f105a87a-bb19-41f8-84b1-547398a653ab','905313340045','BEN FRİHA FATMA adlı müşterinizin 437321677 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('f1074131-d129-40c9-9ba7-2f6939fbf71d','905517075149','Sayın yetkili; İPEK ÇİFTÇİ adlı müşterinize 478300917 nolu gönderinizin 3-3-1-1 koltuk takımı ürünü 6 parça halinde brawwa koltuk adresinizden 17.07.2025 17:04:03 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','777a9d0a-ed8a-4b87-a971-1803e6a68047',NULL),
('f107986c-577a-4e8b-8b86-37a6a4a7f2c7','905335511664','HATİCE BOZ adlı müşterinizin 371441090 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bda1a022-6558-4b61-9d65-0cbc7957db0b',NULL),
('f1085c6a-53f4-4b69-8540-a77419433dbb','491748787633','Sayın KHALED SEMMO , 613175888 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613175888\n\nDear KHALED SEMMO , your shipment with 613175888 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613175888\n\nBICARGO','2','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('f1091dce-5f5d-4854-86e8-2899a21b5d82','905331602195','SALİHA ŞERİF adlı müşterinizin 221651438 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','0ca39cb3-cb01-4190-946c-6ebea8eb1b68',NULL),
('f1097d78-a413-4da0-bb35-b2237c930272','4915785422322','765472156 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2005 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765472156\n\nYour shipment with the number 765472156 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2005. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765472156\n\nBICARGO','1','fe1bf79f-2efb-488d-8554-0ec73016bf8c',NULL),
('f109b6c3-aab6-4d89-87a3-ae2d4676684a','436641534757','Sayın DİANA MUJKİC, 371529841 nolu gönderiniz 4829 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371529841\n\nDear DİANA MUJKİC, your shipment with 371529841 was delivered to you with the delivery code 4829. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371529841\n\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('f10d20ca-b71f-4f25-b4c3-bd3da204822e','4915770884048','910561299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1260 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910561299\n\nYour shipment with the number 910561299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1260. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910561299\n\nBICARGO','1','c88d3746-2810-43c1-8ec1-df087223feec',NULL),
('f113732c-ff31-454b-a04a-b6a7bf6da01b','905461661672','MAHSUN ALDEMİR(K) adlı müşterinizin 644593040 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b7777790-d6b3-4324-8c03-3534c7356952',NULL),
('f1160d6d-bbd8-42e1-b8b0-9fac979dd49c','491792005887','Sayın SEBA QASEM, 976763926 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976763926\n\nDear SEBA QASEM, your shipment with 976763926 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976763926\n\nBICARGO','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('f1167556-a9a2-43e4-856c-82ca781ccdcb','905335511664','KUDRET KALK adlı müşterinizin 371804669 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','3c78b7fc-a182-4269-8da4-db683ff8cada',NULL),
('f1198dd9-6d3e-4068-918a-cb4011f86858','905539740010','Sayın yetkili; YEŞİM AKGÜN  adlı müşterinize 011716616 nolu gönderinizin BAZA BAŞLIK KOMİDİN  ürünü 4 parça halinde KARYOLA adresinizden 06.10.2025 10:47:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('f1232a4b-b20e-4ce5-b54c-bdd3b9145fd8','905313340045','Sayın yetkili; SATİ CENGE adlı müşterinize 437427529 nolu gönderinizin sandalye ürünü 3 parça halinde HATEM sandalye adresinizden 13.08.2025 12:22:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('f125ae47-e61f-4850-ad2b-73aaf916cf13','4917664681539','91034652 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3936 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91034652\n\nYour shipment with the number 91034652 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3936. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91034652\n\nBICARGO','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('f12a5cb7-8bc0-492a-8bf1-86d45c622cff','905306071261','SEVGİ ÖZÇELİK  adlı müşterinizin 765627791 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('f12a80bc-ef40-4ba9-a872-afeadc6e0f22','905079358213','Sayın yetkili; MAHMUT ÖZKAN adlı müşterinize 745996696 nolu gönderinizin MONNA BAZALI KARYOLA  ürünü 6 parça halinde RİXXE  adresinizden 05.08.2025 09:43:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a0bcf5d4-6a17-435e-a57f-2d4f7e4e61ad',NULL),
('f12f31d7-6e9c-49ee-a2db-7c2c35439c4a','905461661672','ERHAN ÇEKİÇ adlı müşterinizin 644445996 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1e0e887d-6244-4f8b-a7d0-710cf6802438',NULL),
('f1314625-3858-4c15-bf48-6b9b290f9d15','33767512328','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('f135342c-9ea5-479e-bbb2-fbd613382edc','491781789912','Sayın POLAT BALKAYA, 412610139 nolu gönderiniz 8183 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412610139\n\nDear POLAT BALKAYA, your shipment with 412610139 was delivered to you with the delivery code 8183. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412610139\n\n\nBICARGO','1','fae6865f-80a7-46a1-9f93-f722559d4617',NULL),
('f13addd1-858e-4aaf-bc7c-5b558f004328','905331602195','Sayın yetkili; SAVYO RAFFO adlı müşterinize 22164822 nolu gönderinizin Sehpa ürünü 2 parça halinde Fatura adresinizden 10.02.2025 12:23:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('f13d4d3c-b749-423c-9b3d-7cdf813508c5','491741928164','Sayın İLAYDA GÜNEŞ SSH, 371280361 nolu gönderiniz 5649 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371280361\n\nDear İLAYDA GÜNEŞ SSH, your shipment with 371280361 was delivered to you with the delivery code 5649. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371280361\n\n\nBICARGO','1','5b091e48-c241-44ae-9f12-59295c693382',NULL),
('f13fae8c-840a-4fe7-a53a-36a5bd9a2f37','4917620022816','İletişim \n					Şöför Uğur Acar +905424435917','1','b9465ae1-c895-4625-887f-bd31a9dc994f',NULL),
('f14a4cfa-2e5a-4abc-ac69-1a6676005b4c','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('f14a7374-1057-4a90-9a92-d16d079f0f6b','494621092008','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','78b69f29-3789-4968-b725-c04339316224',NULL),
('f153a168-25de-4bb4-97f5-a04374f3e585','905331602195','AMANY MOUSA adlı müşterinizin 22134117 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6ec223e7-309a-4bdc-b5f9-4fa128aa3bbc',NULL),
('f15601dd-25c2-4dd5-93cb-3ab4ecbe36d5','905073106101','Sayın yetkili; RECEP ONAY adlı müşterinize 465237157 nolu gönderinizin YATAK ODASI ürünü 19 parça halinde WOXX FURNİTURE adresinizden 11.11.2024 10:36:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ef3b570a-0fb1-407c-87bb-aea336aed633',NULL),
('f15c5cc3-e578-4b33-b6a8-7424a1d70fee','905301592882','ERDAL ULAŞ adlı müşterinizin 910645687 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5302a3c5-ac11-48d5-8325-9704cfa8ca5b',NULL),
('f15d69db-4b84-42a4-b671-94a69a71707a','905336367828','SAVU ALİN  adlı müşterinizin 98221051 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','f9d93c62-66a8-418a-abd8-01753a82e84d',NULL),
('f15e76a8-05f8-4433-976e-6137d162a7c0','4917632057842','613191069 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3114 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613191069\n\nYour shipment with the number 613191069 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3114. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613191069\n\nBICARGO','1','dc6dd7f2-9d08-46bb-875c-df8315d9d4f3',NULL),
('f160be39-ea62-4afa-9ec3-c2262971e71f','491729283228','371857345 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6102 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371857345\n\nYour shipment with the number 371857345 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6102. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371857345\n\nBICARGO','1','e16c760d-d790-4586-b7cc-374c53cefd14',NULL),
('f168f917-afa2-4d69-87ff-4bca1e738c06','905451571652','Sayın yetkili; SELİN DAGDELEN adlı müşterinize 531575051 nolu gönderinizin Köşe koltuk ve sehpa ürünü 5 parça halinde PABLO HOME adresinizden 23.10.2025 11:46:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f696ebeb-b709-4b6c-aaab-43e32e65d88e',NULL),
('f16f7eac-bbd6-4c21-a68f-71222ec0d2f0','33652326324','027517327 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8029 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/027517327\n\nYour shipment with the number 027517327 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8029. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/027517327\n\nBICARGO','1','d2e72d11-31ac-4049-b68e-934d4095d90d',NULL),
('f1705d79-7b2c-4cf2-b265-ea518970d199','4915755360334','Sayın BAŞAK BEYOĞLU, 750501209 nolu gönderiniz 7347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/750501209\n\nDear BAŞAK BEYOĞLU, your shipment with 750501209 was delivered to you with the delivery code 7347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/750501209\n\n\nBICARGO','1','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL),
('f17250b4-d1b9-4d23-90a2-260beaf83998','491752616978','Sayın BERNA YİLDİRİM, 613847250 nolu gönderiniz 9012 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613847250\n\nDear BERNA YİLDİRİM, your shipment with 613847250 was delivered to you with the delivery code 9012. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613847250\n\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('f17420cf-5156-4706-935d-0c9d6317e3ed','491639578000','412454305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1181 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412454305\n\nYour shipment with the number 412454305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1181. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412454305\n\nBICARGO','1','f7f2db15-90e1-4ab2-89b6-6a61a7161bbf',NULL),
('f179719a-dbe2-42a6-9d9e-0427b6d518f1','905454259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('f1849201-85e2-4b2c-8b8f-e27feb853f94','905079358213','Sayın yetkili; KENAN BAYAR adlı müşterinize 74568874 nolu gönderinizin PIER PUF  ürünü 1 parça halinde MOBİLİSTAN adresinizden 13.05.2025 17:06:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c242a231-cffe-4e5d-bd32-54cf78b29c25',NULL),
('f186c7ed-e6e9-40f4-86c5-2f2acdbcf933','905336367828','HASAN ÇALIK  adlı müşterinizin 982720250 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','c90b2d7e-0b7d-4a03-b820-37ab49d6ef31',NULL),
('f18e6e41-63bb-42c3-a05c-198505ee344c','4915737537059','Sayın SALAM KORKMAZ, 531445058 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531445058\n\nDear SALAM KORKMAZ, your shipment with 531445058 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531445058\n\nBICARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('f190961c-c1db-472d-8701-489b40cbb465','4917656342150','Sayın FURKAN YESARİ GÜVEN, 910995300 nolu gönderiniz 10977 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910995300\n\nDear FURKAN YESARİ GÜVEN, your shipment with 910995300 was delivered to you with the delivery code 10977. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910995300\n\n\nBICARGO','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('f194f402-5883-48de-a57f-fc3146ce02b9','905363385813','Sayın yetkili; HAZAL ELMAS adlı müşterinize 976983661 nolu gönderinizin Köşe koltuk ürünü 4 parça halinde Ali Turan Koltuk adresinizden 07.02.2025 17:04:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('f19fd8df-800f-4931-a2b9-0aba50ae3b52','33749069844','478339779 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478339779\n\nYour shipment with the number 478339779 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478339779\n\nBICARGO','1',NULL,NULL),
('f1a15c7b-901c-4b55-9c6e-23bb3743a75b','4917621638496','745817440 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4806 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745817440\n\nYour shipment with the number 745817440 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4806. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745817440\n\nBICARGO','1','5dc3decb-6410-403a-b949-3324afe3dd6a',NULL),
('f1a187ac-855a-4192-a161-1348018caa7c','905313340045','Sayın yetkili; ZERDOUN SALOME adlı müşterinize 437573248 nolu gönderinizin Masa ürünü 3 parça halinde masami adresinizden 13.08.2025 14:26:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0057de4c-fa8f-4061-a2b1-334d4c1637e1',NULL),
('f1a32630-b11c-4572-b8ad-ae59a0fbc1ee','1111111111111111','Sayın MUHAMMED KOKEN, 412555066 nolu gönderiniz 5409 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412555066\n\nDear MUHAMMED KOKEN, your shipment with 412555066 was delivered to you with the delivery code 5409. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412555066\n\n\nBICARGO','2','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL),
('f1aad6f6-300e-49a3-a725-5f05242e144b','4917660360530','Sayın SUAT TANER, 745129121 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745129121\n\nDear SUAT TANER, your shipment with 745129121 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745129121\n\nBICARGO','1','e31c6c18-6f02-4884-a633-8cc09e6edad0',NULL),
('f1aad7d7-bfdb-4421-86c8-ee40c25be6c1','491777070885','Sayın SEVGİ ÖZÇELİK , 765627791 nolu gönderiniz 4791 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/765627791\n\nDear SEVGİ ÖZÇELİK , your shipment with 765627791 was delivered to you with the delivery code 4791. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/765627791\n\n\nBICARGO','1','4d4f0208-1ac3-44ef-8887-3111a56f2a9f',NULL),
('f1abde22-6b16-4795-ac5d-4414035fff5b','4915752227857','Sayın TÜLAY ÇAĞLAR, 644637792 nolu gönderiniz 5948 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644637792\n\nDear TÜLAY ÇAĞLAR, your shipment with 644637792 was delivered to you with the delivery code 5948. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644637792\n\n\nBICARGO','1','b87e1d8e-8fc1-4a22-a789-515797619936',NULL),
('f1ae74e6-df47-470d-bdfa-0eec0fc3775d',NULL,'DONYA AL HAİDARİ adlı müşterinizin 081411095 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('f1b097d8-52be-4dab-98d2-dda3cd021672','905304259202','Sayın yetkili; MECİT AVCI adlı müşterinize 478361746 nolu gönderinizin BAZA ALT VE ÜST SUNTASI ürünü 1 parça halinde GENCECİX adresinizden 29.04.2025 15:59:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96b15390-c2d3-4a0c-8b82-b2750ed0ca0e',NULL),
('f1bd6748-3b01-4e4d-a185-bdb82fe3b246','905306071261','Sayın yetkili; YOZLEM MİNCHEVA adlı müşterinize 765564339 nolu gönderinizin Nikola köşe koltuk 300×270 ürünü 4 parça halinde BESTLİNE SOFA adresinizden 23.09.2025 17:20:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('f1bed7e8-3ad9-4f46-918b-0a3a57b31490','905059175469','NADİR KURUKOL adlı müşterinizin 428752676 nolu gönderisi 46 parça halinde yola çıkmıştır.','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('f1c91421-2921-4e05-ab98-fd9fec6da145','905301592882','BERKAN AĞIRMAN adlı müşterinizin 91034652 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('f1e2c240-beb1-4e2e-a433-f8f6ddcc49aa','32470174105','Sayın GÜRSEL KURTULMUŞ, 428659303 nolu gönderiniz 9735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428659303\n\nDear GÜRSEL KURTULMUŞ, your shipment with 428659303 was delivered to you with the delivery code 9735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428659303\n\n\nBICARGO','1','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('f1edba3d-0af3-49a2-959b-3db37efc2393','491751082413','61378160 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1117 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61378160\n\nYour shipment with the number 61378160 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1117. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/61378160\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('f1f9a2c9-cf4f-4366-b5e1-c89ec0fc13b5','31657147344','Sayın GÖKHAN YETİŞ, 41295798 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41295798\n\nDear GÖKHAN YETİŞ, your shipment with 41295798 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/41295798\n\nBICARGO','1','3977a5d5-74d4-4a83-924b-634b068065a2',NULL),
('f1fe1a94-e43c-438f-aa44-ee9c4abbc66a','491784616992','437609907 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9076 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437609907\n\nYour shipment with the number 437609907 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9076. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437609907\n\nBICARGO','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('f1ffd64f-589a-4f8c-99e8-b97058feebe6','11111111111','412989879 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5799 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412989879\n\nYour shipment with the number 412989879 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5799. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412989879\n\nBICARGO','2','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('f20837ba-0910-4e42-bc53-c4103ead90c5','0491627680129','Sayın  MAHMUD YUSUF ÖKDEM(SSH), 127945692 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/127945692\n\nDear  MAHMUD YUSUF ÖKDEM(SSH), your shipment with 127945692 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/127945692\n\nBICARGO','2','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('f20dfd73-e439-4682-977c-5a3facd54260','905517075149','Sayın yetkili; İLHAM SEVAL İNDİRME adlı müşterinize 478259590 nolu gönderinizin 2 adet askı borusu  ve başlıkları ssh ürünü 1 parça halinde family adresinizden 30.06.2025 13:30:47 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','862e4bdc-2e76-4b0a-b6fc-8557101a2020',NULL),
('f21098fa-13a8-41b7-a0b2-c21aa3898d97','905461661672','Sayın yetkili; ANDREW YARBUG(K) adlı müşterinize 644799923 nolu gönderinizin SANDALYE ürünü 6 parça halinde ELAKSA SANDALYE adresinizden 11.09.2025 14:16:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7e8785f1-7130-4936-8f4d-d44ffa1d9b07',NULL),
('f2118086-8915-48b6-a617-e098e4b491c6','436602528784','Sayın ZELİHA SARITAŞ, 644287826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644287826\n\nDear ZELİHA SARITAŞ, your shipment with 644287826 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644287826\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('f212d903-5edf-4a44-8c9d-ba6cf1403c27','436602050348','Sayın FATMA SILA KAÇAK, 644194590 nolu gönderiniz 8240 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644194590\n\nDear FATMA SILA KAÇAK, your shipment with 644194590 was delivered to you with the delivery code 8240. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644194590\n\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('f212db65-b26e-47c8-928c-d218e66ba76a','436607735988','Sayın GÜLCAN İNCE, 33850305 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33850305\n\nDear GÜLCAN İNCE, your shipment with 33850305 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/33850305\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('f2197f7c-8b57-4529-9056-10b8ed2de604','905428209234','ARZU ÜNLÜ adlı müşterinizin 319515461 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','93582d1b-031b-454d-8d8f-d69cf39f35b1',NULL),
('f22032f5-bb37-4a2e-b6ef-34b5115f8bd9','05539740010','Sayın yetkili; AYDIN SARI  adlı müşterinize 011399882 nolu gönderinizin 6 SANDALYE ürünü 1 parça halinde RUUFFROM adresinizden 22.08.2025 10:44:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','a8888d05-159a-4d87-90a8-88a98dc908ae',NULL),
('f22256d1-ed8a-4bde-8915-f939ae5c53f4','905517075149','Sayın yetkili; İLKAY İNCE adlı müşterinize 478485864 nolu gönderinizin 160+100+100 BAZA BAŞLIKLAR VE 2 ADET KOMİDİN ürünü 6 parça halinde Fatura adresinizden 24.10.2025 18:12:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5552132e-e408-47bc-ab37-19083b622454',NULL),
('f2226fce-f92b-495a-9f18-45802cd4a836','905465479064','EZGİ BAŞARAN adlı müşterinizin 858210128 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ec7725cc-032e-4c20-b604-ec9ab99e164e',NULL),
('f22450b9-2ba4-4732-97eb-5d1d8e5804ef','4306607478961','Sayın AJLA ORUC , 982329375 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982329375\n\nDear AJLA ORUC , your shipment with 982329375 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982329375\n\nBICARGO','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('f2257c0f-8ef8-41f0-bfe7-7dc1b850832c','905394878216','NUR SANDALCILAR adlı müşterinizin 517291063 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ef1f9bc0-c6f6-4772-86ac-61951ede20a5',NULL),
('f2258be6-e43e-4dd7-bd0a-436c6eafe4c8','905052681508','Sayın yetkili; NURTEN BALCI adlı müşterinize 504809900 nolu gönderinizin Köşe koltuk ürünü 7 parça halinde Livanni adresinizden 20.10.2025 10:32:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','bf6d827f-7ff6-4e1e-948c-99dab63704e4',NULL),
('f229bdfb-6ffc-41dc-8d4c-1c836bcdf617','4917661327084','371394707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1614 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371394707\n\nYour shipment with the number 371394707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1614. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371394707\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('f22cd9fe-898d-474d-bb8c-7c5fccbffb9b','33771771223','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','b8cd88fd-9a6c-40bd-ad5f-292e992b957f',NULL),
('f230a1a0-1960-44f7-8103-cc3b15753faf','4917670882754','081411095 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10768 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/081411095\n\nYour shipment with the number 081411095 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10768. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/081411095\n\nBICARGO','1','05588ac5-1827-4e7a-aa48-8b1a8cbac0d0',NULL),
('f23b7f6d-d319-448a-a723-8fbcf20908e9','436763237242','27829651 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2313 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/27829651\n\nYour shipment with the number 27829651 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2313. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/27829651\n\nBICARGO','1','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL),
('f23f01dd-1810-40bc-bf34-e059f03b1821','4917674951049','Sayın OSMAN BOZKAN, 478302796 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478302796\n\nDear OSMAN BOZKAN, your shipment with 478302796 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478302796\n\nBICARGO','1','158f02f1-6bc3-4134-8f9c-7b088d6e5c2b',NULL),
('f2434edb-0ff0-48a5-83bc-f70a23026fc8','32499810587','Sayın THOMAS MICHEL , 221685294 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221685294\n\nDear THOMAS MICHEL , your shipment with 221685294 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221685294\n\nBICARGO','1','34dc4506-d1e6-469c-93c4-450d31fe5fea',NULL),
('f243b7e2-f94d-4890-a8d3-8690513dda8b','905335708965','AAAAAAAAA adlı müşterinizin 735143086 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','f94d7e44-ad9c-478b-82da-bff20e93e06f',NULL),
('f249215d-dc1b-4fc7-a0c5-301e6e60c1f6','905331602195','Sayın yetkili; LAMİSENT BUSİNESS adlı müşterinize 221339460 nolu gönderinizin 45 çap Traverten sehpa ürünü 1 parça halinde MASAMİ MOBİLYA adresinizden 21.02.2025 11:45:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','55512975-1b08-4931-aa51-a204463134c2',NULL),
('f24e68af-a4c3-4fa7-aecc-0f9e545b7c1d','905325461492','SEMİH AYDIN adlı müşterinizin 046487702 nolu gönderisi 82 parça halinde yola çıkmıştır.','1','2f1cee80-98e2-4491-8790-84b0795e2440',NULL),
('f251f2e7-55c7-4412-ba85-a59fdb8a58de','491774677358','Sayın FATMA SAĞLIK, 437835103 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437835103\n\nDear FATMA SAĞLIK, your shipment with 437835103 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437835103\n\nBICARGO','1','e516d6c1-f3be-4e04-acd3-657ef1da8682',NULL),
('f252bd08-171e-4bd4-a4f0-7bae074e58bb','436606200309','Sayın SAFİYE TINCA, 371194748 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371194748\n\nDear SAFİYE TINCA, your shipment with 371194748 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371194748\n\nBICARGO','1','2e7c73f7-d738-4447-86bd-2c43c4f79b02',NULL),
('f254effb-b4ac-4e53-ba64-d90bac031823','905331602195','Sayın yetkili; SAVYO RAFFO adlı müşterinize 22164822 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde Fatura adresinizden 10.02.2025 12:55:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('f2552012-d928-4425-bb26-8504187561fb','111111111111','Sayın INNSTRABE , 248648996 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248648996\n\nDear INNSTRABE , your shipment with 248648996 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248648996\n\nBICARGO','2','17a3d3ea-9822-46c1-a225-976edf021056',NULL),
('f258f6c8-659d-44df-8a71-eb1757089753','905350617509','DİLBERAY MELLO adlı müşterinizin 613910788 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','20ba0bfa-9720-4a4e-8dc3-12812663abec',NULL),
('f25a8dcc-7a7e-4a02-8fb3-efe037c1063e','905301592882','Sayın yetkili; MUSTAFA DÜNDAR		 adlı müşterinize 910775394 nolu gönderinizin PELİN YATAK ODASI+ KONSOL ürünü 1 parça halinde DRİTA MOBİLYA adresinizden 18.02.2025 19:06:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d816e36-46d4-475f-ab4d-8dc4e121cb72',NULL),
('f25b90e6-05bf-4535-88ed-0e79d3a50fe4','905350617509','Sayın yetkili; ELİF BEYZA ARVİŞ adlı müşterinize 613112731 nolu gönderinizin 3 kutu sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 25.03.2025 13:39:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('f26d8fed-68d5-4b6d-bb99-83aee4f8be50','4917631174423','Sayın ZEKERİYA SOYER, 338878009 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338878009\n\nDear ZEKERİYA SOYER, your shipment with 338878009 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/338878009\n\nBICARGO','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('f2715d67-6be4-4f2a-bd9f-2e147c804d61','905357955726','Ahmet özçiçek adlı müşterinizin 31515833 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','65c0e929-3375-4985-8c4f-62681ad7745f',NULL),
('f27a6bb9-5525-458b-a79f-28cfefd7a57d','905301592882','Sayın yetkili; SAMED DERE adlı müşterinize 910717262 nolu gönderinizin ORTA SEHPA ürünü 1 parça halinde Fatura adresinizden 05.03.2025 10:57:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2aaae1dd-f6fd-4240-80c3-399ffba3fc37',NULL),
('f27cf248-50f9-4929-bbe9-9be530131df3','33769000460','Sayın EMİN EKRAMOĞLU, 478337610 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478337610\n\nDear EMİN EKRAMOĞLU, your shipment with 478337610 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478337610\n\nBICARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('f27fb790-11ed-49e5-8539-8bf00a02bfa3','905069116877','ÖZGE ÖZTÜRK adlı müşterinizin 817121694 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','46f3f6ca-c581-44b8-a4a0-2872c19288de',NULL),
('f281fac7-403f-4d1b-9fbf-a1744e334b4a','4917657742944','Sayın BEGÜM KIRCA, 371801847 nolu gönderiniz 10655 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371801847\n\nDear BEGÜM KIRCA, your shipment with 371801847 was delivered to you with the delivery code 10655. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371801847\n\n\nBICARGO','1','bb01835e-3a0f-40ef-bb00-ab2b1bb945e3',NULL),
('f2828fdd-6030-4864-af01-5919effab7d4','4917647166886','Sayın METE KANDEMİRCİ, 01921294 nolu gönderiniz 9278 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/01921294\n\nDear METE KANDEMİRCİ, your shipment with 01921294 was delivered to you with the delivery code 9278. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/01921294\n\n\nBICARGO','1','9a2cd9bb-ae57-461a-be14-d7858f39280c',NULL),
('f2893403-d230-41b4-b9e0-709a938c36fe','905350617509','Sayın yetkili; ELİF BEYZA ARVİŞ adlı müşterinize 613112731 nolu gönderinizin Masa ürünü 3 parça halinde İlyas Masa adresinizden 27.03.2025 13:00:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2ab9bb8f-58c4-4826-94a1-bf5b458b034e',NULL),
('f28d589e-486f-4303-a0db-fc01daa54f58','4915566427989','Sayın VEYSİ BALKAYA, 412252425 nolu gönderiniz 10437 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412252425\n\nDear VEYSİ BALKAYA, your shipment with 412252425 was delivered to you with the delivery code 10437. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412252425\n\n\nBICARGO','1','c2a2e3f6-0c40-47f3-b43b-d69383cb87fc',NULL),
('f28f383a-36e9-4313-bf8a-fdafe7784c8a','4917664184092','221786435 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5536 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221786435\n\nYour shipment with the number 221786435 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5536. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221786435\n\nBICARGO','1','bd7eda5e-ac7f-480c-b763-07c7b440ee80',NULL),
('f28f8033-11b0-4a67-aba1-03eedb7402f3','905059175469','Sayın yetkili; NADİR KURUKOL adlı müşterinize 428752676 nolu gönderinizin konsol+masa+ayna ürünü 6 parça halinde brawwa mobilya adresinizden 19.12.2024 10:46:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8caaaad5-b3cd-4536-8ed4-93c5bdbf44e3',NULL),
('f28ffcda-c577-44fe-b40e-bce42b09f74b','905325000478','ŞENOL BEY adlı müşterinizin 412157183 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','73425516-263e-4f72-894c-4cfd33d6ee43',NULL),
('f29880e4-7d18-4c8e-aa27-9ae13e697137','436603406293','Sayın yetkili; ARZU ASLAN adlı müşterinize 675346042 nolu gönderinizin sandalye ürünü 3 parça halinde MASAMI adresinizden 07.07.2025 10:27:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c2076f78-1666-4ea9-9474-176fcb79c195',NULL),
('f2990e96-6707-4bbf-b9b2-faf73b57314b','905350617509','Sayın yetkili; KUTAY KENAN TOMUR adlı müşterinize 613976667 nolu gönderinizin Masa ürünü 3 parça halinde Masami adresinizden 15.04.2025 16:37:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('f299979a-bc7e-4ece-ad61-823b6f07f1ff','33651051557','Sayın TKHİLİ BOUSHABA , 982578491 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982578491\n\nDear TKHİLİ BOUSHABA , your shipment with 982578491 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982578491\n\nBICARGO','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('f29a6130-2006-46ce-bc1a-0898645223e3','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin SEVEN HALİKARNAS KİTAPLIK ürünü 1 parça halinde SEVEN KİDS  adresinizden 03.09.2025 13:44:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('f29cbae7-724e-4169-a272-296eaf72f36a','3464537473687444','Sayın MAİL BOXES, 223254418 nolu gönderiniz 8688 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/223254418\n\nDear MAİL BOXES, your shipment with 223254418 was delivered to you with the delivery code 8688. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/223254418\n\n\nBICARGO','2','2ddd4f3c-30a2-4e75-b6c3-2f3a745f00a3',NULL),
('f29da90e-6524-4fad-91a4-1c99e673dfe1','4917621610242','Sayın SEMA KUZULUK SSH, 644635640 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644635640\n\nDear SEMA KUZULUK SSH, your shipment with 644635640 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644635640\n\nBICARGO','1','b50ce3f3-8f45-4d0f-b3ce-642f9138a3b3',NULL),
('f2a0b429-3f0b-4134-b22d-1b19e49356a7','33660766848','Sayın ESİN TUNCA, 982314530 nolu gönderiniz 9481 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982314530\n\nDear ESİN TUNCA, your shipment with 982314530 was delivered to you with the delivery code 9481. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982314530\n\n\nBICARGO','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('f2a0ecfe-9ee1-445a-bae0-c638d1169b6e','905301592882','Sayın yetkili; RUKEN ŞAKIR adlı müşterinize 910187142 nolu gönderinizin KONFOR KOLTUK TAKIMI ürünü 4 parça halinde Fatura adresinizden 24.04.2025 09:53:01 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4dcd0598-cccb-4e25-a905-d0b8bb159ce5',NULL),
('f2a32525-ec44-4b72-b26a-564686291f96','436763463503','613554878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2679 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613554878\n\nYour shipment with the number 613554878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2679. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613554878\n\nBICARGO','1','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('f2a6478a-d275-4a6a-9bbf-5a37d5e19cc0','905517075149','Sayın yetkili; OĞUZHAN TIĞ adlı müşterinize 478824521 nolu gönderinizin tofi köşe  ürünü 4 parça halinde vaav adresinizden 10.07.2025 16:33:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('f2a7bc6d-87b6-43a5-9ad1-481655a45341','491639801426','Sayın EURO STAR MOBEL, 107870370 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/107870370\n\nDear EURO STAR MOBEL, your shipment with 107870370 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/107870370\n\nBICARGO','1','4ac57e98-4d31-4029-af5c-63c778250adc',NULL),
('f2aed477-11fd-46d2-9a4b-2301b6aa4535','491733842224','ŞÖFÖR İKETİŞİM\n					+905301824880','1','999f9b3b-86d9-4db6-8455-c7f828dbacab',NULL),
('f2b4e8cf-40b7-493c-b2a5-b864e8cb2068','905313340045','Sayın yetkili; DİLAN ÜNVER adlı müşterinize 437584936 nolu gönderinizin SANDALYE ürünü 3 parça halinde ard sandalye adresinizden 24.07.2025 16:40:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('f2bc118c-9e3f-44cf-91ff-d70b9912d326','905445745615','613787861 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4721 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613787861\n\nYour shipment with the number 613787861 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4721. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613787861\n\nBICARGO','1','5d656399-d4c2-49fa-a9e7-be2b15a2116d',NULL),
('f2bf18ba-8960-4c3e-87f2-62eb3dca5d67','491733557232','598250504 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10836 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598250504\n\nYour shipment with the number 598250504 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10836. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598250504\n\nBICARGO','1','1eee00b6-90f3-4331-83c5-6bef65b0bf33',NULL),
('f2c7322a-d98b-4a48-b30f-c295e1ffde94','905059175469','SİBEL ÇINAR adlı müşterinizin 428736949 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7b8429d0-1c7f-489c-9ed5-1fd61d831270',NULL),
('f2cf25bc-80c5-46e7-9aea-f6f3bded7acd','905075277637','RAMAZAN DUMAN adlı müşterinizin 745343811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0842ca05-4fb7-45eb-8075-13043a47f7c2',NULL),
('f2d2cf39-c3f6-4ff8-b14b-c480b40b96a4','905075277637','Sayın yetkili; KENAN BAYAR SSH  adlı müşterinize 745101735 nolu gönderinizin UNUTULAN PİER PUF  ürünü 1 parça halinde Fatura adresinizden 03.10.2025 18:15:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a735e5ae-993e-42ad-8bd7-5bfc541165aa',NULL),
('f2e0b1e9-1571-4f07-b22b-391f47fbc3db','4915906477073','598127401 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7397 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/598127401\n\nYour shipment with the number 598127401 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7397. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/598127401\n\nBICARGO','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('f2e37587-0aae-4c96-bb24-aa605eb49b48','905331602195','SIDI MARİ MUHAMMED  adlı müşterinizin 221859569 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','8fc185cd-9441-4a92-b878-7da80b8d6502',NULL),
('f2f20980-7017-41c3-8465-d6c69dffedb9','905333323012','Sayın yetkili; HÜSEYİN CANDAN adlı müşterinize 695249199 nolu gönderinizin berjer 2 adet ürünü 2 parça halinde efar koltuk adresinizden 19.06.2025 16:06:32 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7c6c2dd1-52e2-4059-a97e-d340167fe009',NULL),
('f2f664cb-520a-4e73-9f69-be89bcc3d973','905336367828','Sayın yetkili; MİAMİ STYLE  adlı müşterinize 982999114 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Comfortlife  adresinizden 06.03.2025 11:38:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da4845d7-4297-4d18-8c32-8b56a284257b',NULL),
('f2ffbbec-e9e4-4b9c-ae9c-cd123e2d9455','491782206321','Sayın AYSEL OK, 976245604 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976245604\n\nDear AYSEL OK, your shipment with 976245604 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976245604\n\nBICARGO','1','3610bba5-de59-4197-9fdf-4ea4e4998699',NULL),
('f3057a7b-f87a-4d72-9e1c-f38f2be05a8c','4916221534324917','Sayın GÖKHAN UYSAN, 42873500 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/42873500\n\nDear GÖKHAN UYSAN, your shipment with 42873500 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/42873500\n\nBICARGO','2','a7d1afe4-c6c3-4eee-998b-24b4521490d0',NULL),
('f30758f4-e845-4b05-afe1-fca2db30dc64','905539740010','Sayın yetkili; YEŞİM AKGÜN  adlı müşterinize 011716616 nolu gönderinizin MASA  ürünü 3 parça halinde Fatura adresinizden 06.10.2025 17:39:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('f30d4713-276e-4530-b644-943b4944d837','491639801426','EURO MOBEL adlı müşterinizin 107394609 nolu gönderisi 29 parça halinde yola çıkmıştır.','1','6d9db45b-999e-401c-84f3-c6b4dbc128ec',NULL),
('f30e4887-cca4-4594-8a91-5946c5254249','4915772539240','Sayın HASSAN KHORRAM, 598441020 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598441020\n\nDear HASSAN KHORRAM, your shipment with 598441020 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598441020\n\nBICARGO','1','3b29ef33-2d5d-4e29-b828-9833896d4a0d',NULL),
('f31abcc9-d548-4f8f-bf9e-67c72f07516d','4915733741918','İLETİŞİM \n					YILDIZ ORHAN ŞOFÖR : +90 530 182 48 80','1','de492754-6967-40e1-bf64-463ad84fdd39',NULL),
('f3238657-3409-4ae1-b28e-2e027ab843b3','905365908694','MAİL BOXES adlı müşterinizin 223734808 nolu gönderisi 201 parça halinde yola çıkmıştır.','1','acdafd0f-548d-4921-bc4a-a82a585cf32b',NULL),
('f32981a2-b45e-4895-8672-c79e6dd7fd75','352621224281','Sayın NURKOVİC JASMİN, 982176810 nolu gönderiniz 8218 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982176810\n\nDear NURKOVİC JASMİN, your shipment with 982176810 was delivered to you with the delivery code 8218. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982176810\n\n\nBICARGO','1','c1b8db95-a2de-4d83-a91b-b023c570372f',NULL),
('f32abb4c-46a3-4173-8fbc-6067770eddcf','33758584410','Sayın ALİ ARSLAN , 657153999 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657153999\n\nDear ALİ ARSLAN , your shipment with 657153999 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657153999\n\nBICARGO','1','17ff61a0-f389-446e-bb91-6ee68e1b222d',NULL),
('f32b239b-5c9f-4533-89bc-977786ee44f5','905461661672','Sayın yetkili; CANAN ŞENEL adlı müşterinize 644319069 nolu gönderinizin SERAMİK MASA ürünü 3 parça halinde MASA VİA adresinizden 14.05.2025 12:56:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('f32e705e-0a65-43f7-9c50-bb28514b728e','4379259769999','808790233 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808790233\n\nYour shipment with the number 808790233 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/808790233\n\nBICARGO','2','cfbd7cb6-4e70-45d1-8bec-3bb17b7a14a3',NULL),
('f3326615-0df9-4018-a031-49a1fbdbfc38','905079358213','Sayın yetkili; ÖZLEM TURA adlı müşterinize 745808637 nolu gönderinizin DELUXE BAZA SETİ 90X200 4 TAKIM  ürünü 12 parça halinde Fatura adresinizden 20.05.2025 14:24:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('f334fe04-4fcb-4126-8384-60302d4e62ef','905363385813','Sayın yetkili; SEBA QASEM adlı müşterinize 976763926 nolu gönderinizin Köşe koltuk ürünü 6 parça halinde SALON KOLTUK adresinizden 20.02.2025 14:51:54 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db3bb2fe-b7ce-413d-8d13-9d22d875adbf',NULL),
('f3365143-91b5-41d5-a8cd-abb915e5c7ac','436604232899','Sayın SERKAN SİLAN, 657785918 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657785918\n\nDear SERKAN SİLAN, your shipment with 657785918 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/657785918\n\nBICARGO','1','edb235b9-3bc7-4176-bf9e-0cc3d4b4d962',NULL),
('f337ce53-7222-439f-945f-681433c7c676','4917670281614','Sayın MEHDİ SALİHU, 371434188 nolu gönderiniz 3421 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371434188\n\nDear MEHDİ SALİHU, your shipment with 371434188 was delivered to you with the delivery code 3421. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371434188\n\n\nBICARGO','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('f338c1b5-21b9-4de0-a9b0-a9d567401216','905335511664','Sayın yetkili; NERGİZ TOPRAK adlı müşterinize 371540742 nolu gönderinizin köşe takımı ürünü 3 parça halinde Elitis Home adresinizden 29.08.2025 16:19:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('f33a35d9-298c-4089-a926-316ff0418ac0','905325000478','MAHMUT KAHRAMAN adlı müşterinizin 412109820 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d88b92e7-f9dc-4987-9027-18aca7f5c2c1',NULL),
('f342d9a5-47d6-4929-adcb-5c3baf934c73','905069116877','YUSUF AVCI adlı müşterinizin 817915882 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e41e7781-1c17-4d37-b049-0a5e20034834',NULL),
('f343a606-00fa-462d-a2f1-a344e8073ef0','33781488787','Sayın ÖMER EKŞİN, 478391312 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478391312\n\nDear ÖMER EKŞİN, your shipment with 478391312 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478391312\n\nBICARGO','1','f8f36d3c-b453-4ef2-9053-625e7ae9a535',NULL),
('f347b795-efd7-42ee-80cb-0c2c00a860ee','4917631174423','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','65cd44ca-893b-4894-b062-6cfd32e95228',NULL),
('f351c5eb-0b0d-4660-a0fd-b61ab263e8f1','41793422327','İletişim \n					Halil Bey (Şoför) :+905541100849','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('f3528918-30c9-4bb2-8761-5a8d6c5aa6a9','491606817658','371365427 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8032 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371365427\n\nYour shipment with the number 371365427 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8032. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371365427\n\nBICARGO','1','1aff7295-6f61-4138-b273-b03f55942801',NULL),
('f3541444-557c-46b8-ac61-4b4916cdd5b9','905313340045','Sayın yetkili; SERAP ÖZTEK adlı müşterinize 437660658 nolu gönderinizin Kampanya köşe +puf ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 21.08.2025 14:06:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','18ef4d21-d80d-45a3-9290-b7d6562f11b5',NULL),
('f357f181-2069-4b9e-abbd-a38ec24e7ebc','905350617509','WASİ BAHİR  adlı müşterinizin 613373885 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7d1d7e49-6aae-4b9a-a041-419ddc6e5eae',NULL),
('f35cd4b1-a247-4fd2-936a-f584850adad0','491734654065','ŞÖFÖR NUMARASI\n					+905467896981','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('f3626c26-c775-478d-9aa2-c37fc2bb797e','905350617509','Sayın yetkili; GÖKKUS PİNAR adlı müşterinize 61340935 nolu gönderinizin Masa ürünü 2 parça halinde İlyas Masa adresinizden 06.10.2025 10:33:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d5fa9af-726d-48a9-a5d1-c407a279f76f',NULL),
('f3683934-f660-44f8-b77d-e8cc5d1fd1b1','905394878216','SADIK BEYSİR adlı müşterinizin 517110811 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8d1fae0e-1294-46bd-9c6d-bc64039e7933',NULL),
('f36b132e-c572-49ba-a3ff-4afc4b7b92fc','905451571652','Sayın yetkili; SALAM KORKMAZ adlı müşterinize 531445058 nolu gönderinizin Sandalye ürünü 4 parça halinde Fatura adresinizden 02.07.2025 14:08:41 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('f36c10b5-c06f-4e2b-ae19-fac8156c9594','905335511664','STEFANİA KİOSKER adlı müşterinizin 371734068 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('f36c49c9-e818-46de-b2bb-a342dbb67f55','905365908694','KREM KUTULARI adlı müşterinizin 223186784 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','725c7dcd-e043-4d79-afc1-ac8b4c557518',NULL),
('f371c9f1-2661-48c9-be3c-a2807de9ff7e','905325000478','Sayın yetkili; BOLL TRADE adlı müşterinize 412795154 nolu gönderinizin Armut kılıf ürünü 1 parça halinde Fatura adresinizden 25.05.2025 13:51:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9a1b78d9-2f44-4f22-8fcc-953573cdfffe',NULL),
('f378878d-5c78-48e0-b734-5e748c58cd41','905336367828','THOMAS TELAH adlı müşterinizin 982681083 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2c93b982-af74-4681-a002-6a0883ae7377',NULL),
('f37a38e1-0029-448d-8599-ece9f0a7bbc1','491726428404','Sayın MEHMET BATMAZ , 465194627 nolu gönderiniz 9893 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/465194627\n\nDear MEHMET BATMAZ , your shipment with 465194627 was delivered to you with the delivery code 9893. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/465194627\n\n\nBICARGO','1','66702713-08d3-4a3a-bbf4-b641e0b48916',NULL),
('f380a714-53da-4cac-ada9-89788c33effb','491741928164','371528044 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2082 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371528044\n\nYour shipment with the number 371528044 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2082. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371528044\n\nBICARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('f38101e9-aa7f-40b8-a21f-725b6cbd892f','905335708965','BRÜKSEL adlı müşterinizin 248592138 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL),
('f38a86ad-14a9-421a-a205-9c8683f98e86','4917684484965','Sayın HÜSEYİN ÇELİK, 351888584 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/351888584\n\nDear HÜSEYİN ÇELİK, your shipment with 351888584 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/351888584\n\nBICARGO','1','afe81c71-4f9c-44db-99e3-a9a478763539',NULL),
('f38c5ba5-4712-44a3-baeb-a39b73cd4488','4917624194526','Sayın DİLAN ÇELİK TOGAN, 371881042 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371881042\n\nDear DİLAN ÇELİK TOGAN, your shipment with 371881042 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371881042\n\nBICARGO','1','dd9776e7-4b61-4272-8e40-984a52a0303d',NULL),
('f38c82e9-e153-44a9-bcfd-886b8bfb4f7c','905350617509','ISMAİL REMMO adlı müşterinizin 61330729 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('f390f37c-c080-4751-8b84-d621eb92aa86','491716488120','449962472 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9814 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449962472\n\nYour shipment with the number 449962472 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9814. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449962472\n\nBICARGO','1','0c1f42ec-e581-418c-a11b-418b92d2cc9e',NULL),
('f3967401-4de6-4ebc-a2a7-d0e57be2f4c9','905078062550','OSMAN ASLAN adlı müşterinizin 598127401 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','dc0e5911-5e20-4595-8d5a-e9803266613f',NULL),
('f3a0479f-f704-4aea-a342-3b5172e52133','905349208933','MEDİNE ÖKDEN adlı müşterinizin 127639932 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','23c7b08f-63d2-4f18-9f68-f434d59760ab',NULL),
('f3ab81de-2a53-4e51-a371-2e720de95c16','491748731890','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('f3ad03c6-e2ab-4e2b-8cc6-7ed6f37eb813','905059175469','SÜMEYYE KARAMAN adlı müşterinizin 428958532 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','b1ca63ca-ed42-45cb-ae7f-983ef68f5a78',NULL),
('f3af32af-19f9-4b3f-8a0d-8da1e366b95c','0000000000','Sayın Serkan yıldız, 315752826 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/315752826\n\nDear Serkan yıldız, your shipment with 315752826 is on its way. Your products will be delivered within 8-10 business days.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/315752826\n\nBICARGO','2','3a78ddf5-1cf6-4a73-8d31-30826f499319',NULL),
('f3b2a7fd-50a4-40b6-8bfe-687f613703ef','4901733860312','Sayın ZELİHA ARAS, 910280020 nolu gönderiniz 1598 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910280020\n\nDear ZELİHA ARAS, your shipment with 910280020 was delivered to you with the delivery code 1598. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910280020\n\n\nBICARGO','1','7458ef39-6eb9-40f5-ba04-84de030fd5d7',NULL),
('f3b3abdc-5b6f-4842-bd2f-6d3f80b8041d','33601991875','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','526aa02e-2975-431a-8cc4-16032700e014',NULL),
('f3b6b58e-df3f-458a-8148-410713f4893c','905079047428','RAMİSH MİRZAYER adlı müşterinizin 449401217 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL),
('f3bc30bc-9783-48e6-aa10-d6ad6d0374c2','33760179240','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','adb2b821-db09-48e2-aa73-097ac1069722',NULL),
('f3c0ae82-9dfa-49b0-a1ad-972820065946','905075277637','Sayın yetkili; BURHAN AKMEŞE adlı müşterinize 745761149 nolu gönderinizin ALFA YATAK ODASI  ürünü 19 parça halinde GARDEROBE adresinizden 15.05.2025 15:15:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cb8ab28e-84c0-4246-b10d-ada59c224895',NULL),
('f3c2b8e9-3f9c-4898-8ca1-5788a327ca0e','4917663104062','745303298 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1615 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/745303298\n\nYour shipment with the number 745303298 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1615. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/745303298\n\nBICARGO','1','7f6e46a0-6664-4624-b492-d5fe0196f1c7',NULL),
('f3c3e1f2-4561-459a-a4d1-cedfae197691','33668879544','Sayın KEVSER KAYA, 478983907 nolu gönderiniz 7597 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478983907\n\nDear KEVSER KAYA, your shipment with 478983907 was delivered to you with the delivery code 7597. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478983907\n\n\nBICARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('f3c5fa27-4fa1-42fb-99d4-a86bf425a3ff','436609821810','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('f3c6a4d1-55ed-4a2f-addb-64560038c32d','905335511664','Sayın yetkili; BERKAN AKTÜRK adlı müşterinize 371823380 nolu gönderinizin sehpa ürünü 4 parça halinde Elitis Home adresinizden 29.05.2025 16:44:21 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','aaf80057-65ea-4999-832a-29537bd6ba3e',NULL),
('f3c71857-e773-4e63-9583-001c71a6440f','33769293116','Sayın ABDULLAH DEMİR, 449239758 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449239758\n\nDear ABDULLAH DEMİR, your shipment with 449239758 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449239758\n\nBICARGO','1','5b7d4688-f67a-4ea8-be59-b782013f7458',NULL),
('f3ca739d-f9d5-46dc-95ab-e3e25872b600','905073106101','MUHTEREM KAYA adlı müşterinizin 465500768 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e91ba42b-a5c5-4961-8243-6c239fcf9a75',NULL),
('f3ceb4b3-1042-451a-b119-69b2c5c935b7','32493872964','478687899 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5180 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478687899\n\nYour shipment with the number 478687899 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5180. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478687899\n\nBICARGO','1','e7729d4c-e7f5-4aa7-9651-a8a3bcb0604a',NULL),
('f3d0cb03-fec2-4a17-9b4a-2747e56e3da1','905331602195','Sayın yetkili; MUHAMMED DALKARA adlı müşterinize 221646640 nolu gönderinizin 70x120 sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 20.06.2025 18:50:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('f3d20d25-9bce-4fc9-b09c-0b829c2927c8','905333221039','SİBEL OĞUZ adlı müşterinizin 750951041 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','1a6172d2-bf05-42a7-9ef8-dd9fa5982eb1',NULL),
('f3d2d855-ed49-449b-a049-e1ca57d888b0','40741604282','Sayın ORASAN DAVUT , 98275727 nolu gönderiniz 5067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/98275727\n\nDear ORASAN DAVUT , your shipment with 98275727 was delivered to you with the delivery code 5067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/98275727\n\n\nBICARGO','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('f3d652c7-29a5-4ee7-9f16-8bdf77853c4f','905301592882','Sayın yetkili; İDRİS EŞKIN adlı müşterinize 910601621 nolu gönderinizin MALDİV YATAK ODASI ürünü 1 parça halinde Fatura adresinizden 04.03.2025 10:58:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','795a7b9c-3044-492f-912f-d05f4ba21df6',NULL),
('f3d68d3f-8f22-4a1c-aa84-60045bead39a','491789155540','Sayın ÖZEN GÖKYEŞİL, 517619393 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517619393\n\nDear ÖZEN GÖKYEŞİL, your shipment with 517619393 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517619393\n\nBICARGO','1','0f733eb9-d262-417e-b01a-927f3219d47a',NULL),
('f3d81af8-a634-4004-8016-d52854b75c24','31685834791','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','e3871616-22f9-4e6e-a66d-92c839f7de15',NULL),
('f3e00367-ae2b-4e23-911c-45ce7546f8a9','32494484997','478642368 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1493 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478642368\n\nYour shipment with the number 478642368 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1493. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478642368\n\nBICARGO','1','967d15a7-2096-45bd-bc90-7a65319402f4',NULL),
('f3eadc1f-bb9d-484a-8518-96dd00021c8f','491716444408','2487154 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2955 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/2487154\n\nYour shipment with the number 2487154 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2955. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/2487154\n\nBICARGO','1','2eb37c1d-0fda-41c9-9eb2-518de9069f88',NULL),
('f3f99d0c-1d4b-4ad8-8115-e0a14b157b5d','905363385813','HALİL İBRAHİM BACAKSIZ adlı müşterinizin 976894167 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e9f2fa6f-b59c-49e1-86a0-fb4a60531062',NULL),
('f4013da3-9211-4c22-9f83-387a5c1f7153',NULL,'SALİM YILDIZ adlı müşterinizin 112189439 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('f401d3c5-68ad-4208-8610-be8db11df446','905461661672','Sayın yetkili; ZELİHA ÖCAL adlı müşterinize 6442594 nolu gönderinizin malzeme kutusu ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 06.10.2025 16:49:13 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','70b2b3d8-5939-4c79-b6bc-21bfa0ffde36',NULL),
('f40544e7-d10a-4ab9-884e-628d63c6507a','905300961610','XHEMİLE KURBOGAJ adlı müşterinizin 126274786 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','551b3f66-bfd0-40a3-aadb-9d6601e1a170',NULL),
('f406d2b8-c14d-4e07-9041-cf67bd28a300','4369910088111','644194590 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8240 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644194590\n\nYour shipment with the number 644194590 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8240. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644194590\n\nBICARGO','1','8ab9b43a-c91d-4cac-9d3a-646d10808a99',NULL),
('f4073aaf-571f-4786-8083-3a2c339fe661','4915172748624','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','e2f03dd5-01f8-4162-8079-906edf448e38',NULL),
('f40bf44a-3f9a-4a4e-a169-e3b5861d5cbf','905363510826','İSA KAPLAN  adlı müşterinizin 962908456 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','034a3e96-f5a1-4c15-8c1e-0ea592d85c1a',NULL),
('f4177633-0625-44b1-9814-72f69164b670','905327099916','FERİDUN BAYER adlı müşterinizin 959168443 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','9bb69d66-9d62-43d8-bd75-6e65b41ffe8b',NULL),
('f418a8c8-7ad9-44c7-82f1-771bf2a46e45','491789151262','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','dcbe7eee-e054-430d-b60c-71cef3ff6b80',NULL),
('f4192caa-de07-464a-9ac0-14f1bf996a98','905331602195','Sayın yetkili; LATİFA KHAZROUKI adlı müşterinize 221139773 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 28.04.2025 17:19:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9d5fc36f-ed4b-4eac-8e6c-6b24348b505e',NULL),
('f41aecbd-2ff7-458b-a6da-5709c1cfb5c2','436601893040','İletişim \n					Halil Bey (Şoför) :+905541100849','1','f9930b26-2916-433c-84e9-7d26f5c38b59',NULL),
('f4203e69-8bf4-45b5-8ac3-31aba52ec120','905515519191','HASAN BEY adlı müşterinizin 448153102 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','c0971211-dd47-4ca0-be3b-b5119c4ec3e8',NULL),
('f435ffca-8167-418e-abe5-8691a5541e75','905335708965','RANA PEKER CİNGÖZ adlı müşterinizin 735159660 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','406ebbb4-13b5-4567-9950-1d118159195d',NULL),
('f43a7eb1-37a2-4ea6-8baa-caa24f469144','4917620989771','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','bf79529e-c1ff-49c8-af5b-ad352b688aa3',NULL),
('f43d3ac6-ff82-4912-9b74-fb8790077189','905335708965','GİZEM ÖZKAN adlı müşterinizin 73589256 nolu gönderisi 23 parça halinde yola çıkmıştır.','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('f43d4a73-8669-43c9-8992-faabce50c0d3','905075277637','METE BOZDAĞ 1  adlı müşterinizin 745241298 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f8a139f0-1f82-4b1a-8d72-56243db2d7b8',NULL),
('f43f7848-5f5b-4fae-a6f5-cbc58b14184d','33611031313','Sayın BURAK YAKUT, 644975430 nolu gönderiniz 7221 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644975430\n\nDear BURAK YAKUT, your shipment with 644975430 was delivered to you with the delivery code 7221. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644975430\n\n\nBICARGO','1','da2f0aa5-ea25-4793-a24c-76f3940dd114',NULL),
('f449a7d4-ac9f-4a6f-96fc-92cb7d57975c','905336367828','Sayın yetkili; AJLA ORUC  adlı müşterinize 982329375 nolu gönderinizin Köşe koltuk  ürünü 3 parça halinde Comfortlife  adresinizden 11.03.2025 16:40:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6c86bc4-621a-47c9-bff7-65a8004b9c59',NULL),
('f449bf57-3699-405e-9dcf-df3d943612ca','905075277637','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin T SANDALYE  ürünü 2 parça halinde BEYMİ  adresinizden 08.10.2025 10:33:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('f4596055-92f2-48fa-9165-9154488f6040','33634695698','910684336 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7115 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910684336\n\nYour shipment with the number 910684336 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7115. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910684336\n\nBICARGO','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('f45facce-cdb1-488e-933b-57ebd9cad7b4','905335511664','Sayın yetkili; MUHAMMED TOPAL adlı müşterinize 371681337 nolu gönderinizin MASA ürünü 3 parça halinde SM Tasarım adresinizden 21.07.2025 10:35:15 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a644f2e3-654e-4729-bff3-0390037448f0',NULL),
('f461897a-18f1-47f7-b241-cccbbf723745','905078062550','GÖKHAN ZÜRLÜER adlı müşterinizin 598157006 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','effb3586-1055-4a6a-95db-95d0060cdeeb',NULL),
('f463a810-65df-4371-836f-1e6217d52a6a','4917684739114','Sayın RAYAN SLEİMANİ , 644403373 nolu gönderiniz 2735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644403373\n\nDear RAYAN SLEİMANİ , your shipment with 644403373 was delivered to you with the delivery code 2735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644403373\n\n\nBICARGO','1','458ed3b8-b224-474f-bf44-b16282a7b8f1',NULL),
('f4684116-022c-4b02-bb87-346d41d6ba11','491795290795','Sayın RAMAZAN AY, 644542202 nolu gönderiniz 1730 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644542202\n\nDear RAMAZAN AY, your shipment with 644542202 was delivered to you with the delivery code 1730. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644542202\n\n\nBICARGO','2','227e1ba4-cd58-4884-aa89-d563a3f38226',NULL),
('f4689592-ebd6-468c-bc9a-ef9411f0b0d3','905395885843','Sayın yetkili; OKAY TUNCA adlı müşterinize 312422305 nolu gönderinizin ZİGON SEHPA ürünü 1 parça halinde Fatura adresinizden 15.10.2025 11:21:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('f471eff7-a1fd-48b2-a1bc-bfb61f0eb8bd','491739514221','Sayın ÖRÜMCEK, 248692077 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248692077\n\nDear ÖRÜMCEK, your shipment with 248692077 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248692077\n\nBICARGO','1','b2d0b2c9-07c0-445f-ab95-428a8319038e',NULL),
('f4732ae5-72d0-4eea-8f22-cc5e21f8a93f','5325000478','Sayın TRANSJET OĞUZHAN, 19.03.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5366574\nŞifre : 5366574\n			\nBİCARGO','1',NULL,NULL),
('f47b43fc-1e0c-4678-af9f-9c01b5895d78','905075277637','Sayın yetkili; ALİ ERKOCA adlı müşterinize 745177264 nolu gönderinizin BERLİN KÖŞE TAKIMI  ürünü 4 parça halinde Fatura adresinizden 11.09.2025 15:53:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4428b444-78f4-43f3-8d88-220442b30896',NULL),
('f47ce40b-5a9c-4606-9d4e-f7aa54c62f66','905421855834','Sayın yetkili; MESUL OLGUN adlı müşterinize 338607005 nolu gönderinizin 2 adet sandalye  ürünü 1 parça halinde Fatura adresinizden 17.03.2025 14:33:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','db777003-5be8-4bbb-b769-243e7d332355',NULL),
('f47da49b-d5f8-499b-99fd-a1356ad8c5e1','4915560835617','371120278 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1053 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371120278\n\nYour shipment with the number 371120278 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1053. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371120278\n\nBICARGO','1','52ea460d-e94a-410a-9cce-0b771b3e4cc8',NULL),
('f47faa29-aa18-42dd-a96a-31ea73750c20','31687655114','449454395 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5050 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449454395\n\nYour shipment with the number 449454395 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5050. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449454395\n\nBICARGO','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('f483a0da-f42d-437b-bb6f-aa774af9e9f7','436605152000','Sayın SENA ONMAZ , 43714618 nolu gönderiniz 6385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/43714618\n\nDear SENA ONMAZ , your shipment with 43714618 was delivered to you with the delivery code 6385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/43714618\n\n\nBICARGO','1','eac20332-3b72-49af-9e16-57159be774ea',NULL),
('f4866db9-b46b-46f4-9747-34e2c85b6a12','4917664318290','Sayın 53489 SİNZİG, 248955283 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248955283\n\nDear 53489 SİNZİG, your shipment with 248955283 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248955283\n\nBICARGO','1','d5f7d072-4afd-46f4-9eee-c847daba51c2',NULL),
('f486f117-ab7f-4ef7-9e37-02cc99e31ba8','4917655561793','Sayın KADER ŞAHİN, 598719647 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598719647\n\nDear KADER ŞAHİN, your shipment with 598719647 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598719647\n\nBICARGO','1','bedc8bfd-1431-4017-9109-bedbb2184827',NULL),
('f499aba1-35ed-4366-b192-39431db3fdd0','33642608703','Sayın YASEF İCEL, 478978353 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478978353\n\nDear YASEF İCEL, your shipment with 478978353 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478978353\n\nBICARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('f4a11674-ff1b-47aa-b754-d43dfbf6080f','5528582359','Sayın HANIM DOĞAN, 478730420 nolu gönderiniz 4128 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478730420\n\nDear HANIM DOĞAN, your shipment with 478730420 was delivered to you with the delivery code 4128. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478730420\n\n\nBICARGO','1','ceed7173-fe7b-438d-9195-fec804ca478e',NULL),
('f4a2cc62-59d6-42f7-9a98-d38eaba6d43d','905313340045','Sayın yetkili; SEBİHA DEMİR adlı müşterinize 437233194 nolu gönderinizin SANDALYE ürünü 3 parça halinde ard sandalye adresinizden 11.09.2025 14:07:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0d746c5c-f194-4ed9-b71a-bf56f53af841',NULL),
('f4a661ec-563d-4443-b905-b8f32ebe6ec6','33650063869','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','f4fdc95f-d066-47f9-858c-34b39a3d3ebd',NULL),
('f4b37a4b-f093-4c3c-8b35-67bb1c11ea08','32483589693','221669694 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7249 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221669694\n\nYour shipment with the number 221669694 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7249. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221669694\n\nBICARGO','1','1c70859a-ccb8-4f8d-aeb2-bd18a02f9d11',NULL),
('f4b3c708-ef60-4f04-9c45-0401528a47f2','4551944912','312422305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2877 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/312422305\n\nYour shipment with the number 312422305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2877. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/312422305\n\nBICARGO','1','26683bbe-0d6e-4088-afa7-4c620918ff73',NULL),
('f4b431b5-5a13-46f9-b90a-ea3b79606ac4','905331602195','Sayın yetkili; AYNUR KAPUCU adlı müşterinize 221694221 nolu gönderinizin Balat sandalye siyah  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 23.08.2025 13:25:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('f4b86c6d-a13e-43b4-bd60-58913461904e','5325000478','Sayın RECEP TAŞDEMİR, 30.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 5786059\nŞifre : 5786059\n			\nBİCARGO','1',NULL,'578b6ae0-5a9d-4a77-8099-a017840800a0'),
('f4b9306b-e9e2-45c1-9c6d-81a57697187c','1111111111','412955343 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2226 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412955343\n\nYour shipment with the number 412955343 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2226. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412955343\n\nBICARGO','2','e0e86ba2-e859-4ff8-909a-d80a2fa0e942',NULL),
('f4bf5770-6183-4ef2-b02f-c6b1dff35ad3','905073106101','İBRAHİM AKIN adlı müşterinizin 465524926 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','2d5afee9-087f-41e1-a999-dc4fe606e35c',NULL),
('f4cafd28-fc71-4a7e-84df-fd20177f0391','33749843814','Sayın AYŞE ÖZKAYA(K), 644783664 nolu gönderiniz 10159 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644783664\n\nDear AYŞE ÖZKAYA(K), your shipment with 644783664 was delivered to you with the delivery code 10159. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644783664\n\n\nBICARGO','1','f5b8d0dc-52cc-49a9-849a-46f0c7d99c77',NULL),
('f4cef532-353d-429b-9df4-7ec065e8871e','905461661672','KÜRŞAT OKUTAN adlı müşterinizin 644377360 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f774fd73-b557-40e4-a1f0-2f9f1e99e70a',NULL),
('f4d14cd7-e4aa-4092-89df-6a07ffdf303f','491786788734','Sayın GİZEM TIRPAN, 37140435 nolu gönderiniz 6727 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/37140435\n\nDear GİZEM TIRPAN, your shipment with 37140435 was delivered to you with the delivery code 6727. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/37140435\n\n\nBICARGO','1','ee15ad4a-dd6f-4a80-9660-0314bf146e8d',NULL),
('f4dca0e9-8147-45a7-a51e-5bbeb781561d','905075277637','ABDULLAH DEMİR  adlı müşterinizin 745906720 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('f4dde620-4f10-4ddb-a50c-112d1b1a643f','491788532068','Sayın STEFANİA KİOSKER, 371734068 nolu gönderiniz 10922 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371734068\n\nDear STEFANİA KİOSKER, your shipment with 371734068 was delivered to you with the delivery code 10922. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371734068\n\n\nBICARGO','1','33cf2dd5-d360-43eb-8f3a-27e48526fd03',NULL),
('f4e1638d-54ae-4463-98fa-861a32380244','905517075149','Sayın yetkili; ÖZKAN ERDEM  adlı müşterinize 478862837 nolu gönderinizin ASKI BORUSU VE SEHPA AYAĞI ürünü 2 parça halinde GARDEROBE adresinizden 12.09.2025 14:01:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7a71a4e0-3e90-4099-bd84-f11cdef53c31',NULL),
('f4e9d5bc-c7fb-443b-8307-d787de6b7d88','905364752848','Gruppomino adlı müşterinizin 231429780 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d850bd2e-4975-4529-8b56-6564706b808f',NULL),
('f4ea50cf-1cd9-4a0e-bd46-0f2f269f7ec0','905336367828','AMELA MULİC  adlı müşterinizin 982972858 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','f0b80554-e825-487a-9ec5-ec30be5eade8',NULL),
('f4efd6cc-5220-4a8f-9d42-e8409cf70885','4917624132760','91030681 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10895 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/91030681\n\nYour shipment with the number 91030681 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10895. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/91030681\n\nBICARGO','1','deb81e5e-18d6-4da3-8751-6ec0d6f2e7ba',NULL),
('f4f2220f-c106-4871-af52-073c3d304990','905336367828','Sayın yetkili; MİHAİ LİDİA  adlı müşterinize 982708819 nolu gönderinizin KOLTUK TAKIMI  ürünü 4 parça halinde Comfortlife  adresinizden 10.07.2025 11:37:34 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6c9799b7-d54a-4660-a5bf-0557b778d342',NULL),
('f4f573dc-fc59-49fe-9ce9-2c4baac17e03','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL ŞİFONYER AYNALI ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('f4f6e4f5-2bee-4d6b-93f7-bdde898b64e9','905315907031','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','c85f0d3f-5c69-47d4-9b44-822058d763b2',NULL),
('f501170f-9180-447c-9d35-57cd2f0a8206','436505113533','Sayın OSMAN GÖKBEKİŞ, 524289921 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/524289921\n\nDear OSMAN GÖKBEKİŞ, your shipment with 524289921 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/524289921\n\nBICARGO','1','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('f501accc-8dfe-42d0-aeb0-2d2c6cb70eef','069919243273','Sayın DİANA BARAKAEVA, 613554878 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613554878\n\nDear DİANA BARAKAEVA, your shipment with 613554878 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613554878\n\nBICARGO','2','d079ed8e-fe8c-46ba-a5c1-aa7a20cdc689',NULL),
('f502570e-e301-423a-b55a-e826e9526d4f','4915734807422','Sayın MUHAMMED YUŞA YILDIRIM, 478261120 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478261120\n\nDear MUHAMMED YUŞA YILDIRIM, your shipment with 478261120 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478261120\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('f50918a2-be18-4983-8dbd-1dce13f0a1b9','4917682057600','Sayın ENES KARABAŞOĞLU, 598130952 nolu gönderiniz 5275 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598130952\n\nDear ENES KARABAŞOĞLU, your shipment with 598130952 was delivered to you with the delivery code 5275. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598130952\n\n\nBICARGO','1','9a46cc66-4f61-498a-861c-8abfaff03b4a',NULL),
('f50f1808-2a8c-45e0-84e9-18cddc771365','01733972547','Sayın GAMZE KOCAMAZ, 644682734 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644682734\n\nDear GAMZE KOCAMAZ, your shipment with 644682734 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644682734\n\nBICARGO','2','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('f5103d55-ad1b-49f0-98a5-c2a7625cae46','111111111111','412280381 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7366 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412280381\n\nYour shipment with the number 412280381 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7366. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412280381\n\nBICARGO','2','efd7f051-bdbd-495c-ae12-ff92cadc152e',NULL),
('f51a9d68-8b6a-4434-b816-6e2747b9d2c8','905336367828','Sayın yetkili; SADAT SAIDI adlı müşterinize 982365685 nolu gönderinizin 3+3+1+1 KOLTUK  ürünü 5 parça halinde Tanev koltuk  adresinizden 19.11.2024 16:42:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','792dc306-a786-4b24-b735-ba05b7a72e0d',NULL),
('f5208922-a876-44a8-9a29-bc1fb584e5d1','41792079376','Sayın BEYTUK KAPLAN, 745724680 nolu gönderiniz 9627 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745724680\n\nDear BEYTUK KAPLAN, your shipment with 745724680 was delivered to you with the delivery code 9627. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745724680\n\n\nBICARGO','1','9a8f0b0e-e360-4912-87e7-49eaffffb114',NULL),
('f528bd11-874a-4192-9205-aa68a7924767','905394878216','Sayın yetkili; SEVAY NİKOLAEVA YANKOVA adlı müşterinize 517895646 nolu gönderinizin 2 Takım Koltuk Gelecek ürünü 6 parça halinde Fatura adresinizden 09.07.2025 15:01:05 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf9d192f-3e35-45b3-b6ba-6d9c6c8e13b6',NULL),
('f52b275b-9777-4c05-b0a2-7ea558cd5d7d','491725785095','Sayın HARUN ŞAHİN, 371421349 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371421349\n\nDear HARUN ŞAHİN, your shipment with 371421349 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371421349\n\nBICARGO','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('f52b815c-25e9-44f6-98b5-3685f09cc149','905301592882','AHMET EMİN ALGÜL SSH adlı müşterinizin 910375036 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','024dc41f-19fa-47c4-95f9-0e8250d8c70c',NULL),
('f52e3d01-a9e9-49d2-adf0-4aa0cf24718e','4915158856914','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('f536466c-26ae-4e3f-a632-b07fecfb1eab','4915737537059','531445058 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3321 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531445058\n\nYour shipment with the number 531445058 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3321. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531445058\n\nBICARGO','1','8974646e-d2f4-461a-a229-980f5d4d3462',NULL),
('f53c962d-8f07-4e13-97ad-c0a9ff35136c','905331602195','Sayın yetkili; AYNUR KAPUCU adlı müşterinize 221694221 nolu gönderinizin Sehpa ürünü 1 parça halinde Fatura adresinizden 26.08.2025 15:42:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','acbc5f0d-c2f9-4c48-a141-bc7cf0cca34d',NULL),
('f54068f8-046b-4d46-9cfd-2d4d6d9f260b','33678241654','745946644 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5551 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745946644\n\nYour shipment with the number 745946644 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5551. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745946644\n\nBICARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('f54b9560-48cd-4f72-8586-941c42a2ea1b','31625064385','Sayın MURAT AKTAŞ, 412842533 nolu gönderiniz 5577 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412842533\n\nDear MURAT AKTAŞ, your shipment with 412842533 was delivered to you with the delivery code 5577. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412842533\n\n\nBICARGO','1','8828af70-12d3-4a54-b004-b8bbbeafa45f',NULL),
('f55298f5-9ed6-4e5e-aab6-c579aa7c77e1','905352711900','Sayın yetkili; HARUN adlı müşterinize 817550178 nolu gönderinizin koltuk  ürünü 3 parça halinde kardelen koltuk  adresinizden 10.09.2025 16:01:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7787dcfa-bee7-4c10-b4b3-88982e49499d',NULL),
('f553dfb7-1cbf-4a9b-8c15-31a73d844589','4917657743687','Sayın AMİN SAKİ, 982372153 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982372153\n\nDear AMİN SAKİ, your shipment with 982372153 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982372153\n\nBICARGO','1','23ac0286-127d-44b7-bac9-6e2f2c77ea59',NULL),
('f5553b43-933e-4ff2-b574-d3def3ef03e2','905059175469','FAZIL İSPANYA adlı müşterinizin 42892944 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('f5566293-664e-49ea-a6cf-6c6c2e45b968','4915756850025','Sayın DUDU ÖZDEMİR(K), 644754778 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644754778\n\nDear DUDU ÖZDEMİR(K), your shipment with 644754778 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644754778\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('f566e37d-afdf-488f-8317-588809023f99','905350617509','SUADA HAMZA  adlı müşterinizin 613725694 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0b7aac01-be82-49d8-9ad7-25b1ae673022',NULL),
('f5673a46-87ca-472f-b76d-6f4663418037','905313340045','SATİ CENGE adlı müşterinizin 437427529 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','68b0a915-121f-4d3c-b2e8-25b8e3e18525',NULL),
('f56b4479-f217-4e10-a465-cec13377515f','905079358213','Sayın yetkili; GÜLÜZAR KECKİN adlı müşterinize 745276257 nolu gönderinizin KİNG PLATİN BAZA SET 160LIK  ürünü 4 parça halinde Fatura adresinizden 23.06.2025 13:20:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9c50c2ab-574c-478e-bfbf-37bbf5ebab18',NULL),
('f56e339c-db80-4615-8942-9b9db621a974','31650492862','Sayın KADİR DALKILIÇ, 745881843 nolu gönderiniz 4798 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745881843\n\nDear KADİR DALKILIÇ, your shipment with 745881843 was delivered to you with the delivery code 4798. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745881843\n\n\nBICARGO','1','ac5f1d3a-fb21-4eca-a8fb-bef56a299855',NULL),
('f56e6cbc-7939-4b40-8cf9-4964424bb259','905336367828','POLAT HANIM adlı müşterinizin 982644032 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('f574d146-02d1-47e7-be69-117d0a58d742','905331602195','Sayın yetkili; FEDA DEMİRKAYA adlı müşterinize 221196305 nolu gönderinizin 70x120 cm Msm01 baskılı orta sehpa ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:11:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','69e1fe5a-461e-4d68-bdbb-b22f7bc39bdf',NULL),
('f57cbaea-a8f6-492a-98f3-7fd82c90a0e5','905461661672','TUĞBA GÜLSEVEN adlı müşterinizin 64434778 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','edc25440-29b7-4bf7-9e12-91c088a94762',NULL),
('f58c7171-7a06-4264-a99b-346c848a8ff0','491737487037','ŞÖFÖR NUMARASI\n					+905467896981','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL),
('f58cd442-6bbc-4b61-a8ee-b99c805b0b70','905069116877','SSHLAR adlı müşterinizin 817893266 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','7590bedf-0280-42f9-ad6c-b270b2eef0c5',NULL),
('f58e6cd5-1dfa-414d-830e-1b4e24b3e00e','905304259202','ZEYNEP CİHANGİR adlı müşterinizin 478678849 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','1b163e3d-0d8a-4a00-b303-d452c744557b',NULL),
('f58f1ae9-a48c-4a92-8f20-640e13743b2c','06649942512','Sayın ERDAL AKDAĞ(K), 644985861 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644985861\n\nDear ERDAL AKDAĞ(K), your shipment with 644985861 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644985861\n\nBICARGO','2','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('f5946583-5c43-459d-9229-ff831bf9e0f3','491712347917','Sayın EMEL ÖZTÜRK, 371191289 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371191289\n\nDear EMEL ÖZTÜRK, your shipment with 371191289 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371191289\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('f595bedf-7682-4e9f-9fec-f8495b830488','41763455531','126938963 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2407 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/126938963\n\nYour shipment with the number 126938963 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2407. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/126938963\n\nBICARGO','1','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL),
('f5968cfe-86bd-417c-847a-c061d6c4e575','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin kampanya köşe ürünü 3 parça halinde KOLTUKÇU ERSİN adresinizden 16.09.2025 17:16:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('f597b283-0acf-49e4-839a-9fe008782cac','905079358213','Sayın yetkili; OKAN CORAMAN adlı müşterinize 745980941 nolu gönderinizin ÖZEL ÜRETİM MASA  ürünü 3 parça halinde GÜMÜŞ MASA adresinizden 24.09.2025 17:35:45 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','54227612-b8f2-4146-ac20-5622ca9f45c2',NULL),
('f5999a29-55eb-45cf-96bf-4a5c0366d940','905394878216','ABBAS GELERİ adlı müşterinizin 517914097 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','3d2878ed-86ff-4ab4-a6eb-f24022792e37',NULL),
('f599c3ba-f6c6-4a42-b90c-2ada38f2bae2','905461661672','ÜMİT MORCA SSH adlı müşterinizin 644760466 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0fb4d287-c84c-4138-a4bc-12c37b404970',NULL),
('f5a1fe75-49d3-41a5-9e64-d6297f21e5e2','905355928266',' adlı müşterinizin 412454305 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','f7f2db15-90e1-4ab2-89b6-6a61a7161bbf',NULL),
('f5a5ca0a-3a8a-442f-a556-8537a8f09ddf','905331602195','Sayın yetkili; BETÜL YILDIZ adlı müşterinize 221811614 nolu gönderinizin Balat sandalye galaxy krem ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 24.10.2025 11:26:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','05e527f9-8a74-4f42-b673-b05994d5555d',NULL),
('f5b10cc3-3f26-47a4-a9b1-a142c27d4f1a','4917624686469','Sayın SUAT TURA, 371628660 nolu gönderiniz 9441 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371628660\n\nDear SUAT TURA, your shipment with 371628660 was delivered to you with the delivery code 9441. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371628660\n\n\nBICARGO','1','bdb01abd-b400-4d77-9dc6-589a2150e1ce',NULL),
('f5b345d6-0d2a-4c49-ac8c-5f5d5afc25aa','4915152072002','644153988 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2058 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644153988\n\nYour shipment with the number 644153988 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2058. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644153988\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('f5b9c4f5-a115-4cb3-a36a-b0bb1673232b','12455545555','Sayın İSVİÇRE AAAAA, 11.05.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1349109\nŞifre : 1349109\n			\nBİCARGO','2',NULL,'f1349ad1-099b-4319-af1c-56927ca0d070'),
('f5c0e0be-542f-4a17-88d0-de28fea6c9c2','4917623926506','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','afe0ae69-06ca-44c7-8928-75ee9c95e9f3',NULL),
('f5ce1e04-3c15-44e2-a9d5-3209f56806ca','436602086672','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('f5d268de-dde9-420d-98a8-e7a8a4c3c09e','4915222699200','Sayın TAYLAN KAZAL, 371179895 nolu gönderiniz 9904 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371179895\n\nDear TAYLAN KAZAL, your shipment with 371179895 was delivered to you with the delivery code 9904. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371179895\n\n\nBICARGO','1','443b2d74-2924-44bf-be40-fea72295fd6c',NULL),
('f5d32eb6-1fc3-44ad-9260-6b9b3e68d595','905335511664','Sayın yetkili; MERVE DEĞİRMENCİ adlı müşterinize 371665826 nolu gönderinizin sandalye ürünü 4 parça halinde Sandalyeci Bekir adresinizden 02.05.2025 16:20:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2702ffc-90a1-4e2a-96d3-f80e323c5ce9',NULL),
('f5d6fb22-ea8e-40f6-be3e-98e35d7c16aa','491629815489','745251111 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7943 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745251111\n\nYour shipment with the number 745251111 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7943. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745251111\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('f5e2652d-ad09-48ad-850d-129e966b8b6b','905079047428','PETER BOUMA adlı müşterinizin 449446169 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('f5e36156-f4ed-47fc-b9ce-1925301da624','905325000478','RAMAZAN AÇIKEL adlı müşterinizin 412411011 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL),
('f5e3f99a-8180-471e-84d4-9b89f3656a36','5325000478','Sayın AAAA BBBBB, 23.10.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6931037\nŞifre : 6931037\n			\nBİCARGO','1',NULL,'e693f1df-a037-435c-8bac-bc9331b6d34c'),
('f5ee2988-a760-4575-b409-d1f778a63b3a','491725184945','Sayın OMAR AHMEDİ , 44998008 nolu gönderiniz 9711 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/44998008\n\nDear OMAR AHMEDİ , your shipment with 44998008 was delivered to you with the delivery code 9711. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/44998008\n\n\nBICARGO','1','ae4be566-d149-4887-b3bd-f5c96537b47b',NULL),
('f5f2d0b7-605d-4f6e-a29a-225a6c5c1b28','491743355024','Sayın MUSA CAN KOÇAK, 644389756 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644389756\n\nDear MUSA CAN KOÇAK, your shipment with 644389756 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644389756\n\nBICARGO','1','50101273-0c1d-452c-b0ea-a3c2e64b8022',NULL),
('f60274a7-2632-44b4-9106-a0a5b61a38e3','33651444703','Sayın ERSİN, 248535027 nolu gönderiniz 4230 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248535027\n\nDear ERSİN, your shipment with 248535027 was delivered to you with the delivery code 4230. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248535027\n\n\nBICARGO','1','e3a57d2d-4adf-4846-9fa6-c92de9e727ae',NULL),
('f60d4e38-e554-4616-ab4c-354bc5694c3a','33768432369','570121325 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8301 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/570121325\n\nYour shipment with the number 570121325 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8301. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/570121325\n\nBICARGO','1','ed98c31c-308d-4856-9efd-a92eb1603386',NULL),
('f60e438c-7b26-451c-91a9-c81487fcb8d5','905421855834','MUSTAFA ŞİMŞEK adlı müşterinizin 338730647 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('f60fc776-3e7c-4143-80e9-ec9e3c134c82','491781789912','412596038 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2419 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412596038\n\nYour shipment with the number 412596038 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2419. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412596038\n\nBICARGO','1','e7882376-f647-4f5c-acc0-c4777a09f75d',NULL),
('f610eb71-808a-4f89-b3b3-db261c94d211','905313340045','STEFAN SUCEVİC adlı müşterinizin 437133708 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','6325741c-0a89-4585-b7b0-b2afd9a2b77f',NULL),
('f61d4c77-c868-4313-8069-ff3f4bf8882e','905335511664','Sayın yetkili; İLAYDA GÜNEŞ adlı müşterinize 371528044 nolu gönderinizin sandalye, bench ürünü 4 parça halinde Sandalyeci Bekir adresinizden 09.05.2025 16:08:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c72f9eca-340a-48f9-96f6-3dbf8cc7fa30',NULL),
('f6216f10-7894-4ce2-ba4b-ac0410815d25','905301592882','CUMALİ ERCAN adlı müşterinizin 910759399 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('f62e96aa-382d-4386-b9c8-68e587e23ffa','905301592882','ATAKAN OLCAYTÜRK adlı müşterinizin 910251573 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','d6fdbb5a-2f8d-43f7-aab9-d601bde4a9a5',NULL),
('f6327c46-73ab-4877-852a-e3a6ad2fc8de','491755862725','Sayın ALİ GÜLEÇ, 428470171 nolu gönderiniz 2172 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428470171\n\nDear ALİ GÜLEÇ, your shipment with 428470171 was delivered to you with the delivery code 2172. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428470171\n\n\nBICARGO','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('f641ba7c-87bb-47a4-aebe-7afe5a7219f0','905075277637','MUHAMMET TÜRKMEN adlı müşterinizin 745952430 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('f64bf6c0-a447-4321-89c3-8b99fadaee44','905459011033','DİLEK GÜNEY adlı müşterinizin 26896907 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4895452e-4598-4194-8203-cf9f5506200a',NULL),
('f656da6f-2d45-4071-aeda-26b964ea452c','4917661327084','371394707 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1614 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371394707\n\nYour shipment with the number 371394707 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1614. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371394707\n\nBICARGO','1','c3f87bab-e7f6-4ef3-a7d1-ff7cab237666',NULL),
('f65ce962-88de-422a-bc09-7ce0d6ee1a51','32484569917','221570854 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9191 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221570854\n\nYour shipment with the number 221570854 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9191. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/221570854\n\nBICARGO','1','e343cdb8-530a-4273-b51b-de80339b581f',NULL),
('f662c042-9e72-4476-bcfe-9641d04de5b2','4915751450070','Sayın FURKAN BARUT, 644644143 nolu gönderiniz 8609 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644644143\n\nDear FURKAN BARUT, your shipment with 644644143 was delivered to you with the delivery code 8609. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644644143\n\n\nBICARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('f664d638-8617-4d01-8403-13a99c922094','905421855834','Sayın yetkili; GÜLCAN İNCE adlı müşterinize 33850305 nolu gönderinizin Tesla  mini Köşe koltuk ürünü 3 parça halinde BestLine adresinizden 12.05.2025 15:03:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('f66636eb-1e9c-41c2-acfd-9eeb95a2460e','447342132724','982134567 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10519 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982134567\n\nYour shipment with the number 982134567 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10519. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982134567\n\nBICARGO','1','231cdd37-a6e7-4662-97a2-d7f8144e2edd',NULL),
('f6669e75-b14a-44b9-8063-7e3c8f54ea0d','905394878216','DAVUT KAYHAN  adlı müşterinizin 517887763 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','16c1502b-604e-4738-a2f1-13c522febb96',NULL),
('f66e8ace-3b4c-44e6-a875-ab2db785381e','905331602195','LESLİE SEROR  adlı müşterinizin 22144793 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab6c5673-d6a0-4529-b932-e0c888851a0f',NULL),
('f66fefec-55c6-4ee5-99d1-f54a06857a5e','905059175469','Sayın yetkili; SALİH DURAK adlı müşterinize 428718727 nolu gönderinizin komidin+şifonyer+ayna+bazalı karyola+çamaşırlık+puf+benç ürünü 16 parça halinde rixxe adresinizden 23.12.2024 17:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','566f5cfb-cca0-4c69-85df-9c8acc621458',NULL),
('f672e44c-b966-4d0c-86b5-c6970a053578','905313340045','Sayın yetkili; PELÇİN BUZLU adlı müşterinize 437554629 nolu gönderinizin sehpa ürünü 2 parça halinde dorthome ofis adresinizden 21.03.2025 15:02:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('f6732aaf-400b-4f85-8840-5cd012a0b228','33782212899','478530755 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1369 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/478530755\n\nYour shipment with the number 478530755 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1369. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/478530755\n\nBICARGO','1','dc6a520d-9bc9-41d3-90fd-f505b28363bf',NULL),
('f6737f10-66de-40ac-af0c-c4b40cc34a57','491621988472','371104317 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4411 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371104317\n\nYour shipment with the number 371104317 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4411. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371104317\n\nBICARGO','1','3b24c44b-141a-498a-a365-b5111a55d868',NULL),
('f67d0fda-5267-4610-960c-9c842cd23317','905461661672','DÖNDÜ YÖRÜK adlı müşterinizin 644887691 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ad2e35a4-0708-4aa6-bb79-6b1c99a587d8',NULL),
('f67e9538-29bd-473e-9455-15b0816cb265','4917681321777','Sayın ISMAİL REMMO, 61330729 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/61330729\n\nDear ISMAİL REMMO, your shipment with 61330729 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/61330729\n\nBICARGO','1','3d2e4684-1f1f-4b69-af07-96f688d5b93f',NULL),
('f6855210-a16b-4201-89be-5063c5b659d0','5325000478','Sayın HALİL İBRAHİM SÖKE, 20.06.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2392345\nŞifre : 2392345\n			\nBİCARGO','1',NULL,'a239c2d3-4a55-470e-9c43-7a88ee6b31e4'),
('f6855fbb-8c78-48fb-828c-767a8e92859f','905461661672','Sayın yetkili; ALİ SARI adlı müşterinize 64441153 nolu gönderinizin MERMER ÜST TABLA ürünü 1 parça halinde FURKAN MERMER adresinizden 14.04.2025 13:48:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ab5c9dd3-1a09-47c4-8748-32885c12b8b2',NULL),
('f685ab17-8276-46d7-a5b7-aae0a8ce1374','33768202556','İletişim \n					Şöför Uğur Acar +905424435917','1','94ba49ba-98ba-45f3-a1dc-f3c19ac7f06b',NULL),
('f688e4ef-885e-412c-8f1c-150fc0eecaa2','32487160490','Sayın AHMET OKUTAN, 64415501 nolu gönderiniz 7311 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/64415501\n\nDear AHMET OKUTAN, your shipment with 64415501 was delivered to you with the delivery code 7311. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/64415501\n\n\nBICARGO','1','1918bd79-b749-47cc-b3ab-efae4ee6b144',NULL),
('f690e20a-a573-4564-a1a3-f4d4c6f46454','33681254075','İletişim \n					Şoför Bilgin Bey +90 532 699 92 39','1','ec53152b-eeec-406a-993a-23f92d510c91',NULL),
('f69c62a0-80fd-491d-af47-440cd9f35388','905079358213','Sayın yetkili; ERSİN KILIÇ  adlı müşterinize 745505506 nolu gönderinizin VOYAGE KOLTUK TAKIMI 3+2+1+1 ürünü 5 parça halinde RİXXE  adresinizden 17.09.2025 10:39:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','63ebf1a9-c9de-4c29-be4e-d938d70eb4a3',NULL),
('f69d9933-0466-479c-ac65-12d7c5011422','33682615843','DRİVER\n					ADNAN\n+905354622027','1','e9dbdb19-e82e-456b-8899-0bd05a5b98ed',NULL),
('f6a3a8e0-a3db-424d-ad74-93dc98434e30','4915566222005','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','ff541470-3c77-4b65-bcd0-3fc253c0858c',NULL),
('f6a4e37b-1fee-4f39-9e37-aeae3337dbaf','32495776498','437786734 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6815 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437786734\n\nYour shipment with the number 437786734 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6815. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437786734\n\nBICARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('f6aacafc-a4eb-4e1f-9188-782f531e4dea','905355891131','UĞUR YILDIRIM  adlı müşterinizin 902194722 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL),
('f6b07542-26c0-4f72-b072-7b043ef8da41','491627760699','Sayın TÜLAY HANIM , 455658704 nolu gönderiniz 10251 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455658704\n\nDear TÜLAY HANIM , your shipment with 455658704 was delivered to you with the delivery code 10251. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455658704\n\n\nBICARGO','1','4df16b2c-055b-4ac8-aeb3-8ecccdbc057f',NULL),
('f6b122d6-dbd5-472f-b7f1-fcbb870aff99','905451571652','Sayın yetkili; SERCAN MİRCALİ adlı müşterinize 531549696 nolu gönderinizin 10 Adet sandalye ürünü 10 parça halinde Fatura adresinizden 29.04.2025 10:23:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','051ad970-b67b-4d28-a0a1-340daf71d02f',NULL);
INSERT INTO `whatsapp_messages` VALUES
('f6b3424e-7113-4406-8e46-2e761f5b33aa','33664447366','412411011 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10444 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412411011\n\nYour shipment with the number 412411011 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10444. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412411011\n\nBICARGO','1','d5b2fa03-abec-4a92-ba35-d62dcc2cbf95',NULL),
('f6b80f0f-b3b8-47f9-ad74-75d56e8a979b','33669077826','73589256 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5979 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/73589256\n\nYour shipment with the number 73589256 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5979. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/73589256\n\nBICARGO','1','f1bb8455-e7db-4cbc-a016-77c08ef661d8',NULL),
('f6be50f3-d263-4b40-91b3-786c61566f29','905336367828','FIRAT BEY adlı müşterinizin 98283616 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','53c89851-ed2b-4173-80a6-867b215bbcfe',NULL),
('f6c012f6-151d-492e-811a-3d3c126f3bc9','905078062550','TUBA BAŞKAŞ SSH adlı müşterinizin 598876994 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','a70aa802-d5bc-4a2c-97c6-3ca3264dc327',NULL),
('f6c684e1-0a0e-407d-b6b5-3fedc8b37688','905350617509','Sayın yetkili; ISMAİL REMMO adlı müşterinize 613813844 nolu gönderinizin Sandalye ürünü 3 parça halinde Ayka sandalye adresinizden 17.07.2025 17:25:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c3afcfb5-df2f-44a8-901b-e521fd45aca2',NULL),
('f6d45bcf-eb21-4015-a56b-5cd3ec750eb1','905079358213','Sayın yetkili; FATMA SARI adlı müşterinize 745619301 nolu gönderinizin SAGA KÖŞE TAKIMI ürünü 3 parça halinde ELİTİS adresinizden 16.06.2025 16:09:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3645be91-e47a-4a21-8c81-c49771ba3639',NULL),
('f6dd2e6c-1c54-4742-9520-477df53a7aef','436602003887','Sayın FERDİ KURT, 478996959 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478996959\n\nDear FERDİ KURT, your shipment with 478996959 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478996959\n\nBICARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('f6dda353-4e95-4072-83c2-2ead78ab42d5','905335511664','MEHDİ SALİHU adlı müşterinizin 371434188 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','26e7065e-7d7c-4b87-8fc9-8255ca593083',NULL),
('f6df7c17-c2ed-48b7-91d2-90154831de2d','905377244117','BUSE HOME adlı müşterinizin 755919446 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5ff8b69d-3f0b-4991-8c5b-8c9973d39429',NULL),
('f6e0e163-f40b-4f32-9ead-39a9e5c57ba4','4917645789684','Sayın BERKANT YAŞA SSH , 745712790 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745712790\n\nDear BERKANT YAŞA SSH , your shipment with 745712790 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745712790\n\nBICARGO','1','ccc401cf-30c4-419e-b8e5-7988457d3293',NULL),
('f6e416da-2dd9-4814-901b-c68880895524','33632142652','Sayın CELİNE KARA, 478164511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478164511\n\nDear CELİNE KARA, your shipment with 478164511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478164511\n\nBICARGO','1','28b92b39-fb44-43d7-a392-add43e96df28',NULL),
('f6ef145a-9b67-4084-a67a-2379279631be','4915170072402','Sayın SEVGİ YILMAZ, 97677559 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/97677559\n\nDear SEVGİ YILMAZ, your shipment with 97677559 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/97677559\n\nBICARGO','1','855d2794-7066-4b47-b159-2cf8816867f4',NULL),
('f6ef237d-1666-40c3-8052-cf0e5f3000ef','33768423506','Sayın HATEM , 221341784 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221341784\n\nDear HATEM , your shipment with 221341784 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221341784\n\nBICARGO','1','ef665960-85ce-48ac-b924-d42b48473988',NULL),
('f6f3a3ae-9f0a-4d5d-8cd8-cb25b17b3366','32470652077','Sayın SEYFETTİN BİLİCAN, 703728513 nolu gönderiniz 7212 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/703728513\n\nDear SEYFETTİN BİLİCAN, your shipment with 703728513 was delivered to you with the delivery code 7212. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/703728513\n\n\nBICARGO','1',NULL,NULL),
('f6f72b21-7fb9-4ae4-a206-37755bfe5de5','905335708965','MİHRİBAN SİS -TRANSJET adlı müşterinizin 735637082 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','8d9f1798-76a5-467b-a81f-d20a878b42fa',NULL),
('f6f74d52-a40a-4c0c-bf44-08aa5c74e121','9053259981980','GÜNGÖR SAK adlı müşterinizin 614901187 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('f701068c-1b1c-4d93-bfef-9ea73114c080','905517075149','OSMAN BOZKAN adlı müşterinizin 47822949 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('f70543ca-9158-4a8c-ad4d-8bffb9822abb','11111111111','Sayın SALONİ, 412989879 nolu gönderiniz 5799 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412989879\n\nDear SALONİ, your shipment with 412989879 was delivered to you with the delivery code 5799. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412989879\n\n\nBICARGO','2','b481ba7a-9a27-43d3-92c1-35c2773d8b82',NULL),
('f708c3d1-1de0-451b-b40e-2ba59cd57786','491787320573','İLETİŞİM\n					Furkan şöför = +905078826436','1','83bacbe4-57a3-4420-afeb-27d135cfb375',NULL),
('f715b29b-6f2f-4225-ab7b-ab41af672c4a','4368120943457','Sayın EDİSA MUSTAFSOVSKA, 675412794 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675412794\n\nDear EDİSA MUSTAFSOVSKA, your shipment with 675412794 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/675412794\n\nBICARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('f71869f8-122f-495c-820b-8c83db1a9055','905313340045','SİBEL HİTAY adlı müşterinizin 437812245 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','3932d875-21e8-45e1-a16c-797670968c92',NULL),
('f72083f5-e295-4727-b545-6711da622f83','4917672868336','Sayın METİN NEŞELİ, 478345732 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478345732\n\nDear METİN NEŞELİ, your shipment with 478345732 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478345732\n\nBICARGO','1','a97987c9-ee05-4a3f-94b1-9f85768072d8',NULL),
('f721348a-cfff-43ac-a965-080f1c6d363a','4915147542838','449627061 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2238 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449627061\n\nYour shipment with the number 449627061 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2238. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449627061\n\nBICARGO','1','2bc13cda-c525-42a2-a315-a0390ae06337',NULL),
('f72b17ab-33d4-4960-8178-3e9ad8e257aa','491635688741','Sayın GÜLŞAH KARAKAŞ, 803828322 nolu gönderiniz 2777 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/803828322\n\nDear GÜLŞAH KARAKAŞ, your shipment with 803828322 was delivered to you with the delivery code 2777. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/803828322\n\n\nBICARGO','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('f72da138-2807-4bdf-9910-2298a9db2afd','31624237190','Sayın HASAN BİLECEN (SSH), 221996027 nolu gönderiniz 2349 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221996027\n\nDear HASAN BİLECEN (SSH), your shipment with 221996027 was delivered to you with the delivery code 2349. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221996027\n\n\nBICARGO','1','2022b96f-403f-4258-b521-3378c40a33b7',NULL),
('f73b69bc-82ab-4b43-ac47-ecdae32b5df6','905331602195','Sayın yetkili; BURCU GELİR  adlı müşterinize 221461818 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 23.09.2025 16:02:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('f73dd86e-510b-4464-8b28-707306bd2cb4','05388618969','ŞÖFÖR NUMARASI\n					+905467896981','2','c36d986a-edbc-4585-a361-c03d6d1c6a23',NULL),
('f7422e38-fdec-4b70-925d-996b88fcfe26','905313340045','Sayın yetkili; SELMA YILMAZ  adlı müşterinize 437649696 nolu gönderinizin Koltuk takımı ürünü 4 parça halinde TEDDY KOLTUK adresinizden 22.09.2025 14:59:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37513226-d4df-4cbc-b99c-f0566be6cb46',NULL),
('f74566a3-b4b2-48b7-bcba-77f79df26214','905079358213','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin İCON KOLTUK TAKIMI  ürünü 4 parça halinde SALDA  adresinizden 06.05.2025 12:57:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('f745e4a4-201e-4be2-bfa4-88663fa5e136','05305840234','Sayın ESRA ELİŞ, 428704278 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428704278\n\nDear ESRA ELİŞ, your shipment with 428704278 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428704278\n\nBICARGO','2','d7c365df-3376-4073-9c58-c2c089ddf17d',NULL),
('f74fc316-890a-43aa-9217-510939d23587','4369916121712','437819954 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2216 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437819954\n\nYour shipment with the number 437819954 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2216. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437819954\n\nBICARGO','1','1b95f6b8-b318-4efe-90f5-5c3bca7a5637',NULL),
('f75be42e-19bf-4902-9619-c60d2f0bf899','905336367828','Sayın yetkili; BRHZAD ALİKHANİ  adlı müşterinize 982402434 nolu gönderinizin Sehpa  ürünü 2 parça halinde Palermo mobilya  adresinizden 21.02.2025 16:58:29 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2a22a30-754d-42fb-a7e9-beef7ed2ae23',NULL),
('f75e9c52-a095-4f0e-8abe-03842a9e470e','905517075149','Sayın yetkili; FARUK YÜCEL adlı müşterinize 478867058 nolu gönderinizin frida köşe  ürünü 5 parça halinde RİXXE adresinizden 09.09.2025 14:06:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','f3dbda61-0901-46aa-93b6-d65e972a472d',NULL),
('f7648cb2-f087-41a2-a251-0d93f924c2a2','905301592882','AYHAN KAHRAMAN adlı müşterinizin 91028874 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a937e92a-5a9a-4b83-9ddd-3433937e9bfb',NULL),
('f764f45f-3b2b-405a-bbf3-d22f7d75f692','436606573775','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('f7682b86-575d-4ee6-91fe-09d437adc078','905331602195','Sayın yetkili; M.CEDRİC KLEINDIENST adlı müşterinize 221850151 nolu gönderinizin 200 cm traverten tv ünite ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 24.07.2025 17:05:51 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','87c55df7-f40e-45d7-a3d5-773c1c5084ea',NULL),
('f76d8656-04f6-4894-a401-98b459307003','4915735267419','Sayın LYUDMİLA KORUNOVSKA, 371121937 nolu gönderiniz 3533 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371121937\n\nDear LYUDMİLA KORUNOVSKA, your shipment with 371121937 was delivered to you with the delivery code 3533. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371121937\n\n\nBICARGO','1','cef86cc3-c3ec-4154-b5fb-bcc33b0f53f0',NULL),
('f76f0ecc-8f40-40d5-9349-c0a48938facd','4917670112054','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','fb0dcc99-0e15-4960-919f-09d52748c91e',NULL),
('f76f3b53-eaa0-45e7-8d82-c6c702ef75f8','01749180995','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','2','06e1e4d8-8efa-4bf5-b2a5-b17c829042b5',NULL),
('f7820450-a7ff-4f69-bccf-5ec324c445bd','905327399716','NİZAMETTİN adlı müşterinizin 223719427 nolu gönderisi 7 parça halinde yola çıkmıştır.','1','72dfdd82-f4b7-4b4a-a6ee-bdfc7b4ae87f',NULL),
('f7858840-cbc9-4d49-9a2a-3df178fbbacc','436603406293','Sayın yetkili; EDİSA MUSTAFSOVSKA adlı müşterinize 675412794 nolu gönderinizin masa ürünü 3 parça halinde vent aksesuar adresinizden 02.10.2025 12:17:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1cf699ea-3720-4e08-a2a8-3f09ffd1d7e5',NULL),
('f78eeb28-1891-458b-afea-7c05ccaa7bcd','3247788295','Sayın GÜRSEL KURTULMUŞ, 428659303 nolu gönderiniz 9735 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428659303\n\nDear GÜRSEL KURTULMUŞ, your shipment with 428659303 was delivered to you with the delivery code 9735. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428659303\n\n\nBICARGO','2','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('f7931088-f74e-4019-9c03-7a53cd765c91','0767059929','Sayın ATIL SOPHİA, 505850944 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505850944\n\nDear ATIL SOPHİA, your shipment with 505850944 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505850944\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('f79b0f8d-89e6-4fb6-a9dc-760c5f099ca6','905461661672','Sayın yetkili; ZELİHA SARITAŞ adlı müşterinize 644287826 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:10:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('f7a1bf63-86ba-4dd9-b607-05597bd13c2d','4917670590775','Sayın UĞUR YILDIRIM , 902194722 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/902194722\n\nDear UĞUR YILDIRIM , your shipment with 902194722 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/902194722\n\nBICARGO','1','6c17a0c8-3209-41cb-8f5c-f47400874b9b',NULL),
('f7a2150d-eae4-4495-81aa-8416c26d1063','905349208933','Sayın yetkili; HÜLYA KURTULMUŞ adlı müşterinize 127991361 nolu gönderinizin köşe koltuk ürünü 6 parça halinde KATRE KOLTUK adresinizden 20.02.2025 11:10:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cca3c1d2-572a-449d-9408-3e4d072a2fa5',NULL),
('f7a40ed5-3fcc-4ab0-baef-96544ae750e9','32460966676','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','2bdc9d94-c171-475a-ae24-5adf3fadaea9',NULL),
('f7b63690-7bad-446b-b8d5-d08129820a54','905428209234','Sayın yetkili; DİLBER ÖZTÜRK adlı müşterinize 319585140 nolu gönderinizin VALENCİA MASA / 8 SANDALYE ürünü 8 parça halinde ROİS adresinizden 22.09.2025 14:30:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('f7b793c3-3079-4859-b789-03827b201bf2','33781067727','478757775 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10768 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478757775\n\nYour shipment with the number 478757775 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10768. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478757775\n\nBICARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('f7b981ab-61b3-4e70-be35-25e8865b281f','905335708965','KEREM TOGAY adlı müşterinizin 735792949 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','675097a8-4389-4279-b982-311d3a8bcbdb',NULL),
('f7b9fa11-8bc4-41de-a064-aec014f5593c','0041765845886','Sayın RÜVEYDA ŞAHİN, 12771217 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/12771217\n\nDear RÜVEYDA ŞAHİN, your shipment with 12771217 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/12771217\n\nBICARGO','2','bc141652-9c08-41a5-8abc-a2a5bb180127',NULL),
('f7bb2585-1efe-4ac5-8992-2c329fa9cde5','905304259202','MUHAMMET ENES KILIÇ adlı müşterinizin 478609228 nolu gönderisi 14 parça halinde yola çıkmıştır.','1',NULL,NULL),
('f7c23810-fbe1-4c28-98ee-8d2fb7065ed7','4915158856914','598493196 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4013 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598493196\n\nYour shipment with the number 598493196 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4013. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598493196\n\nBICARGO','1','17a07c46-d669-4812-a1e6-7296886311ab',NULL),
('f7c3b924-17ac-4e85-b21a-7f190e128f9b','905313340045','Sayın yetkili; AHU KARUÇ adlı müşterinize 437786734 nolu gönderinizin Masa ürünü 3 parça halinde decoria adresinizden 20.08.2025 14:07:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','89f250d7-ea03-4dad-b40b-0dd01296a0ce',NULL),
('f7ccf5c5-141b-4922-b2c5-f982d059fcd3','905456068312','? adlı müşterinizin 655688103 nolu gönderisi 21 parça halinde yola çıkmıştır.','1','801ba5f4-d6b6-411f-91c9-fd875339900c',NULL),
('f7d7d1e9-ecf5-4918-88c3-bf901f76e990','436605107396','Sayın SULTAN SEVİNÇ, 808935275 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808935275\n\nDear SULTAN SEVİNÇ, your shipment with 808935275 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808935275\n\nBICARGO','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('f7dac98f-4cc2-4b28-a908-c255571261e8','905515519191','HASAN BEY adlı müşterinizin 448805304 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','7ff713ea-32d3-468f-b2ec-bd1dde38b6ef',NULL),
('f7e23139-a9cd-4d97-9827-cd9612f359a3','491635688741','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('f7ea8dd8-78c7-4b67-9766-20ac744cf894','491712347917','Sayın EMEL ÖZTÜRK, 371191289 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371191289\n\nDear EMEL ÖZTÜRK, your shipment with 371191289 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371191289\n\nBICARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('f7ec51a4-fb87-422b-9755-f3964f554b1e','4915147016161','İLETİŞİM \n					SEMİH AYDIN ŞOFÖR : +90 545 343 1658','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('f7f0881b-9f18-454d-9cc7-aaf5b867e630','905079358213','Sayın yetkili; GÖKHAN ÇAYLAK adlı müşterinize 745808994 nolu gönderinizin VOYAGE BERJER  ürünü 1 parça halinde RİXXE  adresinizden 08.09.2025 12:15:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','77ae1565-c04e-4a61-91bb-c10a993fdc5b',NULL),
('f7f36e8d-5cba-431f-a920-0cf6a0bd6cf5','905363385813','Sayın yetkili; ZEHRA OCALAN adlı müşterinize 976192214 nolu gönderinizin Konsol ürünü 1 parça halinde Recai Yılmaz adresinizden 31.01.2025 11:49:04 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','00597150-64a3-4ed2-95da-544d8eb849d1',NULL),
('f7f3d4d2-34fa-4b24-92e6-e6c86a641472','905079358213','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 05.05.2025 16:47:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('f7f55f36-6c60-45de-a628-c334d9758401','32465090657','Sayın YUSUF KAYA, 501760253 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501760253\n\nDear YUSUF KAYA, your shipment with 501760253 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501760253\n\nBICARGO','1','1ce55ce5-3e16-4a38-8f9f-19fbfe89f2ca',NULL),
('f7fbfb38-ee35-46d7-9583-231ed490a466','491752616978','Sayın BERNA YİLDİRİM, 613847250 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613847250\n\nDear BERNA YİLDİRİM, your shipment with 613847250 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613847250\n\nBICARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('f7fe28e5-3fe9-4a5f-95a4-1888ba1e4662','905333323012','Sayın yetkili; ARBİAS ARAPİ adlı müşterinize 695530845 nolu gönderinizin sandalye ürünü 6 parça halinde Fatura adresinizden 10.10.2025 13:58:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2663d683-5300-4689-84a8-995bb05d4342',NULL),
('f802f866-be07-4ed1-ae8d-7416d148a53a','905331602195','Sayın yetkili; MUHAMMED ÇETİN adlı müşterinize 221234413 nolu gönderinizin SYDNEİ SİYAH METAL TABURE ürünü 1 parça halinde MERT SANDALYE  adresinizden 27.03.2025 15:14:18 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5f1e05ef-a967-45d1-a984-4cd1f018c261',NULL),
('f80a3308-2440-4441-b0bb-b93ec2bf3203','905301592882','Sayın yetkili; NERMİN ÇETİNAVCI adlı müşterinize 910948770 nolu gönderinizin EVA KOLTUK ürünü 2 parça halinde Fatura adresinizden 06.03.2025 12:24:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','517e33c7-4738-4676-b2b6-9a46d48326bb',NULL),
('f80b348e-13e5-4e2a-9aa7-438e8b928594','4917681106453','Sayın RUKİYE BARUT SSH, 644625326 nolu gönderiniz 6226 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644625326\n\nDear RUKİYE BARUT SSH, your shipment with 644625326 was delivered to you with the delivery code 6226. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644625326\n\n\nBICARGO','1','ba172bbc-5662-4e18-8ae6-5279c6042b03',NULL),
('f80dd769-dd99-4844-85d4-5b6dc7f45d82','5421009721','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('f8126001-2f27-40cb-8d6d-d0d392324eff','491778394505','517395181 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3622 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517395181\n\nYour shipment with the number 517395181 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3622. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/517395181\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('f81925bd-7dc9-493a-a9f3-9d1128aeba9c','905336367828','GEZİM PLUSHİ adlı müşterinizin 982629756 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL),
('f819aa7b-4f15-4cd2-9e97-794820c6d2d1','4915731326705','Sayın DAVUT BİNGÖL, 598530881 nolu gönderiniz 7932 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598530881\n\nDear DAVUT BİNGÖL, your shipment with 598530881 was delivered to you with the delivery code 7932. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598530881\n\n\nBICARGO','1','21e3be67-9336-48fe-9a70-3338aee8c4a9',NULL),
('f81e194d-a898-4f1e-b3c3-b27593ce2fcf','905461661672','SABİHA SATICI adlı müşterinizin 644520957 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7722797e-2c67-4213-8908-859d85e5ef36',NULL),
('f8215188-f96f-4c23-b174-37e211238f82','905350617509','Sayın yetkili;  RİM MOUSSA  adlı müşterinize 613868869 nolu gönderinizin Döşek ürünü 1 parça halinde Albessa adresinizden 11.04.2025 16:46:30 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2d717ffb-678b-4e82-9f61-5357693131d8',NULL),
('f823c23c-a210-42eb-803a-ae3c523866a0','4917681123517','Sayın SERHAT AGİRTAS, 515139511 nolu gönderiniz 7345 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515139511\n\nDear SERHAT AGİRTAS, your shipment with 515139511 was delivered to you with the delivery code 7345. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515139511\n\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('f8254039-a8ec-48e8-a365-ab0c2315a6ea','4369913555140','Sayın NURŞEN ADACI, 8176511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/8176511\n\nDear NURŞEN ADACI, your shipment with 8176511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/8176511\n\nBICARGO','1','8aae14a6-2700-4220-893c-6329618c4b17',NULL),
('f8290ebb-f973-4378-84d3-4d3bd0a18513','9053259981980','GÜNGÖR SAK adlı müşterinizin 614901187 nolu gönderisi 8 parça halinde yola çıkmıştır.','2','086387ea-e6c3-4408-a3fe-99b5b7b6a381',NULL),
('f834ea6e-8675-42be-ba9c-208bb3d120fc','5325000478','Sayın 2. ARAÇ ÇOSKUN, 27.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1425169\nŞifre : 1425169\n			\nBİCARGO','1',NULL,'1c42ff51-a6d9-49f8-939a-799618c7cd7d'),
('f83593ca-8aa2-442d-aa96-bd7b7f1347b9','4917687922868','Sayın ANIL ÇOKBİLİR, 644584641 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644584641\n\nDear ANIL ÇOKBİLİR, your shipment with 644584641 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644584641\n\nBICARGO','1','524f025c-b247-483b-ae98-d4e6c7b69249',NULL),
('f83c43e9-e26f-49bf-a541-46c9a4465729','1636363626363636','Sayın İSMET LEVENT, 151258703 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/151258703\n\nDear İSMET LEVENT, your shipment with 151258703 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/151258703\n\nBICARGO','2','d2110d46-cc68-4e06-8300-10a6aa3bdcd4',NULL),
('f8427cbf-d396-454b-a130-0213d3a0effa','436605107396','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','75fc25cd-5f64-489c-b87c-7c749bd09cb9',NULL),
('f846404a-0b50-4106-b9d0-f3578b26a3b9','004915254106580','Sayın PATRİK, 735329890 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735329890\n\nDear PATRİK, your shipment with 735329890 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735329890\n\nBICARGO','2','495a3166-1c12-482e-90be-0373d0fcbd9b',NULL),
('f84e6daf-0c4a-43c0-8d35-7177f511cab9','4847477382939394','412129107 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5543 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412129107\n\nYour shipment with the number 412129107 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5543. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/412129107\n\nBICARGO','2','6bbedfc9-507d-41d1-9473-1eea989ff050',NULL),
('f84fa822-145e-4cc2-b8d6-a5ed97025442','32478530269','Sayın METİN MOLA, 428693052 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428693052\n\nDear METİN MOLA, your shipment with 428693052 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428693052\n\nBICARGO','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('f851f2c0-eb82-44f7-bb6c-7b5ce67fde2d','905350617509','KUTAY KENAN TOMUR adlı müşterinizin 613976667 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','46613c75-fbe6-436f-8ee8-ee41b6bbf1a1',NULL),
('f854a67d-3a98-406e-a84f-df64ee04bc64','905079047428','NURGÜL YILMAZ adlı müşterinizin 449393754 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2827eb07-f9d6-46f4-b3fc-8d044083d85b',NULL),
('f8559211-e767-4126-8804-c5e15f5af54c','31612622634','Sayın MURAT CENGİZ , 221186271 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221186271\n\nDear MURAT CENGİZ , your shipment with 221186271 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221186271\n\nBICARGO','1','769295fe-385b-4195-9bd0-58e04754d3ad',NULL),
('f859badc-846e-4fc3-b33b-fa6c9ed73cfa','4915231306886','Sayın SEVDA ÇAYLAK, 449475255 nolu gönderiniz 10393 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449475255\n\nDear SEVDA ÇAYLAK, your shipment with 449475255 was delivered to you with the delivery code 10393. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449475255\n\n\nBICARGO','1','887939c6-c572-4048-9ec2-13b2ba75c706',NULL),
('f85bc9e5-db35-4cff-910b-e56a27afd779','905336367828','ARTON BERİSHA  adlı müşterinizin 982835475 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','becc1835-a791-4103-9eb4-4d14db8a91fb',NULL),
('f85c286e-6ddf-48a2-8896-2a3bff81ad95','905336367828','jusuf mehmedi adlı müşterinizin 982844191 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','fa70b271-3bdb-47d3-9c07-aed6751f25bb',NULL),
('f85e019e-5fb2-409f-8548-822e36110b45','33604050932','614725757 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5831 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/614725757\n\nYour shipment with the number 614725757 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5831. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/614725757\n\nBICARGO','1','1577420e-fa6a-4edd-a200-5ec0a2cbd43d',NULL),
('f85e085e-31df-46ae-933c-2ce67d450a0d','905454259202','EDİZ DİNLER adlı müşterinizin 478783487 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','16715384-46fe-4d2a-88d8-8467cd5c6d5b',NULL),
('f86388a4-7349-4f53-8ccb-59d1bc873234','491764560707','Sayın BİNALİ BOZBAŞ, 478798827 nolu gönderiniz 4683 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478798827\n\nDear BİNALİ BOZBAŞ, your shipment with 478798827 was delivered to you with the delivery code 4683. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478798827\n\n\nBICARGO','2','546ec4bf-4ab2-4ee5-aebf-c6c40ea9f693',NULL),
('f869171b-a4e9-48fc-bd98-bc2007c54711','905461661672','Sayın yetkili; SUZAN EL MOUSSA(K) adlı müşterinize 644303406 nolu gönderinizin köşe koltuk ürünü 5 parça halinde KOLTUKÇU ERSİN adresinizden 01.10.2025 18:03:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0abef697-325b-4fde-a364-d1f3c1d2b3f9',NULL),
('f86d5755-f56a-4e40-87d2-6057a84e8d85','491634714605','Sayın SEMANUR GÜLER, 598781522 nolu gönderiniz 6244 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598781522\n\nDear SEMANUR GÜLER, your shipment with 598781522 was delivered to you with the delivery code 6244. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598781522\n\n\nBICARGO','2','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('f878aecf-ac9b-418f-9b74-7c93feaae013','4917620585657','Sayın SEDA YILMAZ, 371429381 nolu gönderiniz 7346 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371429381\n\nDear SEDA YILMAZ, your shipment with 371429381 was delivered to you with the delivery code 7346. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371429381\n\n\nBICARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('f878b49d-a0ea-4b94-8474-36cbd41677f5','491739366502','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','f63f39c2-1cd3-4226-a94b-31e8ce8e333f',NULL),
('f87a39b1-686c-418a-8656-9cf5ee2d449f','4917661320036','437319119 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1056 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437319119\n\nYour shipment with the number 437319119 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1056. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437319119\n\nBICARGO','1','49b010c9-adaf-47a9-8d72-ec98e9a40479',NULL),
('f87a3c9a-83cb-42f4-96d2-84f01eece490','905517075149','AYSUN ELİBÜYÜK adlı müşterinizin 478273603 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','42fcea6f-25da-443c-8add-2a8f44573b78',NULL),
('f87b554f-6bb1-4232-b96f-05e826101475','905331602195','BİANCA AGOSTİNO adlı müşterinizin 221481972 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','a3d53642-0b85-4df2-9ed7-ec01c62f4ae3',NULL),
('f885f9df-470a-4e1a-84c6-67d4bc3f5312','905363385813','HAZAL ELMAS adlı müşterinizin 976983661 nolu gönderisi 10 parça halinde yola çıkmıştır.','1','d55fdc55-0652-4c3e-b972-a81ea4a847af',NULL),
('f88c64aa-0cbb-4b2a-8db1-6d7c9400c2f7','905349208933','Sayın yetkili; HÜLYA KURTULMUŞ adlı müşterinize 127991361 nolu gönderinizin masa ve sehpa  ürünü 6 parça halinde bifurne adresinizden 24.02.2025 13:06:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cca3c1d2-572a-449d-9408-3e4d072a2fa5',NULL),
('f88f6cda-b658-4fa5-b896-b541f7b85bcc','4917674951049','Sayın OSMAN BOZKAN, 47822949 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/47822949\n\nDear OSMAN BOZKAN, your shipment with 47822949 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/47822949\n\nBICARGO','1','6aebb14b-c093-4594-a175-4b9445b945d8',NULL),
('f8903ca2-2a22-40ac-b267-2e6a8873ca89','905325000478','PASS adlı müşterinizin 412315808 nolu gönderisi 104 parça halinde yola çıkmıştır.','1','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('f899f8e5-658f-4b3e-89b1-32eb191d3b54','905336367828','Emek thibaut agit adlı müşterinizin 982292057 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','833e1960-d162-4228-ac7a-54bd28d48049',NULL),
('f89a5dd6-924f-42fe-9a2e-cba47d2178ea','905301592882','Sayın yetkili; CUMALİ ERCAN adlı müşterinize 910759399 nolu gönderinizin DENİZ KOLTUK ürünü 4 parça halinde NOVANO adresinizden 10.02.2025 15:41:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ce6a533a-a695-4c7d-9d16-ee9de079d7bc',NULL),
('f89f0b37-6e9f-463d-8036-e6a2038d2ae4','491739901545','Sayın HANEFİ ALİOĞLU, 501247386 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/501247386\n\nDear HANEFİ ALİOĞLU, your shipment with 501247386 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/501247386\n\nBICARGO','1','088fba56-0e50-4ce7-864f-7f301956e881',NULL),
('f89ff535-d73d-40cc-8c45-f2bd597b77e5','436765917420','Sayın MUHAMMED ARACI, 221247114 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221247114\n\nDear MUHAMMED ARACI, your shipment with 221247114 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221247114\n\nBICARGO','1','b0c601ac-0773-47fe-862f-c858fbc7ea4f',NULL),
('f8a63e77-79c6-4b5a-a0a4-c3c0b9ab0e5d','491635688741','803828322 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2777 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/803828322\n\nYour shipment with the number 803828322 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2777. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/803828322\n\nBICARGO','1','1761a5cd-665b-4d31-87c9-a191cdaf4d50',NULL),
('f8a818f9-4d23-4eff-9933-0965bc38658c','330753353258','Sayın QASIM MOHAMMADİ, 982331367 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982331367\n\nDear QASIM MOHAMMADİ, your shipment with 982331367 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982331367\n\nBICARGO','1','5b42d72a-b62f-4cc4-9b48-7b1bab3054f4',NULL),
('f8ace9cf-a3c2-4276-a505-bdd34d9082fe','905304259202','Sayın yetkili; KEMAL ETKER  adlı müşterinize 47876427 nolu gönderinizin masa üst parçaları ürünü 1 parça halinde çelikbey inegöl depo adresinizden 06.05.2025 13:23:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('f8b009d5-3368-418a-8715-729442b88029','32488135313','Sayın BERKANT, 412252365 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412252365\n\nDear BERKANT, your shipment with 412252365 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412252365\n\nBICARGO','1','1657f433-204b-4d15-aff8-0ea67bb24e0c',NULL),
('f8b493bd-1b94-4d98-80b7-5e739ed2815d','31681041112','412149383 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9689 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412149383\n\nYour shipment with the number 412149383 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9689. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412149383\n\nBICARGO','1','60678b24-7d3d-4c4a-88dd-f65cb84dcdf9',NULL),
('f8b8ae7a-cb39-46c7-b902-80d598bfefe8','905461661672','Sayın yetkili; (K)SİNEM İDRİZAJ ACİL OLAN MÜŞTERİ adlı müşterinize 644880161 nolu gönderinizin KÖŞE KOLTUK ürünü 4 parça halinde KOLTUKÇU ERSİN adresinizden 25.08.2025 14:19:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('f8bacfcf-746d-4035-978d-21e160f7ffd8','0767059929','Sayın ATIL SOPHİA, 505850944 nolu gönderiniz 4858 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/505850944\n\nDear ATIL SOPHİA, your shipment with 505850944 was delivered to you with the delivery code 4858. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/505850944\n\n\nBICARGO','2','2fdbcaf5-7205-4828-8dfe-34a2370ccdc0',NULL),
('f8e0ecd5-7938-41af-911a-61d5d47db1f3','905454259202','Sayın yetkili; MELİSA DEMİRTAŞ adlı müşterinize 478757775 nolu gönderinizin 6 ADET SANDALYE AYAĞI ürünü 1 parça halinde BİCARGO DEPO adresinizden 16.05.2025 14:52:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('f8e0ee27-5b05-4e9d-8ae8-9708d5bffb0b','905335708965','RAMAZAN KAVRUK adlı müşterinizin 735561469 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','26321c61-8ef9-4498-b666-82a04622843a',NULL),
('f8e1b72c-9e05-438e-a22d-7f1043f3eba3','00491633905186','735326602 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6424 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735326602\n\nYour shipment with the number 735326602 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6424. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735326602\n\nBICARGO','2','c6f81384-e23c-4402-bb79-8669bf5eecbe',NULL),
('f8e61b58-8a35-4f02-82c8-08ecc8756358','4917670325071','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','71f0d0b2-3d17-43c7-bf48-7355e5d7675a',NULL),
('f8e9faf9-b346-47b0-810b-9dd00c2a9b16','905461661672','Sayın yetkili; FURKAN BARUT adlı müşterinize 644644143 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde Fatura adresinizden 21.04.2025 10:43:16 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','29aaa54d-b47b-4224-b91b-303cd6be157e',NULL),
('f8ebebc2-f654-4953-ae89-2f4785e5e5c9','31633137745','İLETİŞİM \n					ŞÖFÖR ÜMİT VEREP ‪+90 535 677 12 81‬','1','3ee2b62e-ce64-4ba7-8788-b7317bbc6ddb',NULL),
('f8ec4afa-ac3c-4f33-9445-c222509fd733','905336367828','Sayın yetkili; Jalal aslam  adlı müşterinize 982966360 nolu gönderinizin Koltuk takımı  ürünü 3 parça halinde Comfortlife  adresinizden 06.11.2024 13:13:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2fd537fd-8d71-4980-83ba-812e63488956',NULL),
('f8ed0e5c-b331-466e-b1e7-e064faab79c3','905461661672','UMUT YÖRÜK adlı müşterinizin 644243216 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('f8f9cb01-1e17-46e2-b635-4db177b48be8','905335511664','EMEL ÖZTÜRK adlı müşterinizin 371191289 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','68290f88-32b3-4699-8927-09eb5cfc1ac6',NULL),
('f90cfe12-0cdb-4469-b800-f4e96f0708f2','31629103799','Sayın FERHAT SANUÇ  SSH, 011131883 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011131883\n\nDear FERHAT SANUÇ  SSH, your shipment with 011131883 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011131883\n\nBICARGO','1','64d8448e-d8f7-4534-941f-050bce796337',NULL),
('f913bb63-540f-4bd5-ae32-5bbc11734a8d','4917670362806','Sayın MEİSSA AL KHALED, 531480968 nolu gönderiniz 2631 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/531480968\n\nDear MEİSSA AL KHALED, your shipment with 531480968 was delivered to you with the delivery code 2631. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/531480968\n\n\nBICARGO','1','e9aed3da-2754-4ac0-8f89-1a36768fe9bc',NULL),
('f916a4a3-4d98-4f40-99b9-1e10d4515f43','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin DOĞA MODERN PARİS KANEPE ürünü 1 parça halinde DOĞA MODERN adresinizden 08.09.2025 14:59:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('f9179133-71e0-4a12-88a7-2602c13de981','905078062550','Sayın yetkili; NUSRET VAROL VURAL adlı müşterinize 598427868 nolu gönderinizin köşe koltuk ürünü 4 parça halinde MERTSOY KOLTUK adresinizden 15.08.2025 16:17:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','932af7f2-df9e-4032-b8ab-056455a1eb6f',NULL),
('f91bf60c-52df-46d0-b5f7-db0676e6bcc1','33651617359','Sayın ADEM ŞAHİN, 478685156 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478685156\n\nDear ADEM ŞAHİN, your shipment with 478685156 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478685156\n\nBICARGO','1','2bec061f-81f9-4dda-a4e3-f9afaa7f4903',NULL),
('f9215061-d793-4e15-a9a3-8653d2060c90','33652263178','Sayın TBATOU SELMA , 221649442 nolu gönderiniz 5654 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221649442\n\nDear TBATOU SELMA , your shipment with 221649442 was delivered to you with the delivery code 5654. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221649442\n\n\nBICARGO','1','e3b567b1-e72b-4ce6-a2aa-53a55fb530c1',NULL),
('f9239ec4-64c9-4755-bc5f-12fd957383f2','4917611633498','Sayın İBRAHİM YEŞİLKAYA, 598211009 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598211009\n\nDear İBRAHİM YEŞİLKAYA, your shipment with 598211009 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598211009\n\nBICARGO','1','67dfcee1-7fd7-4c4a-bd62-3036e85f4035',NULL),
('f92746fc-7232-4028-a70b-1b05ea84c6a0','905332942204','MONİCA TODERAŞ adlı müşterinizin 505597041 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','ff9e08fe-696f-4877-a50a-03ca709dfb92',NULL),
('f92ceab9-edc9-4833-8e84-4df6750ebd3e','905313340045','NURİYE İKİZKAYA adlı müşterinizin 437854000 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a36a070b-1cb8-45e1-8e89-ef4588485aec',NULL),
('f93708a1-3d28-48a4-bc8c-47e073d56a6d','4917622142785','Sayın GÜLER DELİDUMAN, 221432350 nolu gönderiniz 4342 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221432350\n\nDear GÜLER DELİDUMAN, your shipment with 221432350 was delivered to you with the delivery code 4342. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221432350\n\n\nBICARGO','1','4fe827f7-044c-467f-84fa-f87c0fb696c4',NULL),
('f93750a5-8897-427a-92f0-26809b0eb688','905079358213','SEMRA HAKAN KABİR adlı müşterinizin 745409977 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c62221b7-0c98-4cdc-8719-46cbd126b5d6',NULL),
('f938278c-d6e1-416b-a9d9-08a3191afc95','905517075149','Sayın yetkili; KISMET ÖZTÜRK adlı müşterinize 478892203 nolu gönderinizin MASA VE ORTA SEHPA ürünü 4 parça halinde ELİTİS MASA adresinizden 31.07.2025 16:58:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','537f327a-f919-43fa-9be8-fa8d0af3cf00',NULL),
('f938c5cd-f845-4575-91b1-ed4c999fcb5e','491578706465','910899167 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3135 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910899167\n\nYour shipment with the number 910899167 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3135. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910899167\n\nBICARGO','2','fb6d94c6-dc73-470f-92ac-fd4950b9d25a',NULL),
('f946d716-1208-4212-85ee-9f0f5726bcbf','905331602195','Sayın yetkili; ROHAD TOSUN  adlı müşterinize 221529516 nolu gönderinizin Balat sandalye  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 07.05.2025 16:13:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','712504b4-3082-4d55-b36d-6c65e190776a',NULL),
('f953f30d-f91f-478f-a3bb-a98562080c86','4917685967745','Sayın ERDEMCAN GÖZÜBÜYÜK, 37159654 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/37159654\n\nDear ERDEMCAN GÖZÜBÜYÜK, your shipment with 37159654 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/37159654\n\nBICARGO','1','0a137908-ceed-4a84-b0cb-945ff56ddcb8',NULL),
('f95d6d09-f425-406c-a3b4-66002e818d93','905461661672','Sayın yetkili; YASİN YAYLAK adlı müşterinize 644234384 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde LENTE HOME adresinizden 30.07.2025 14:51:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','146fc510-0538-4dac-90fe-d885bf1490c4',NULL),
('f9638b59-c7cb-4e57-a71d-c674d86b6dca','33662243896','150685221 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6994 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/150685221\n\nYour shipment with the number 150685221 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6994. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/150685221\n\nBICARGO','1','7b615872-31ff-47b5-87ed-3eca52a1fc1f',NULL),
('f9639793-aa7f-44ab-a2b2-ed397bee3279','4915752861277','644507096 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7656 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644507096\n\nYour shipment with the number 644507096 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7656. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644507096\n\nBICARGO','1','5038002a-b4fa-4ffd-b9c8-c48aca58f88d',NULL),
('f96db5b3-6a58-42f7-a890-740e8bf68ce8','33781020589','Sayın NESLİHAN KÖSEM , 910405441 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910405441\n\nDear NESLİHAN KÖSEM , your shipment with 910405441 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910405441\n\nBICARGO','1','8fb8c47d-f3c2-4303-816b-fb50dd9d6798',NULL),
('f96fcbaa-7349-477c-bed7-5a1235194dd0','905461661672','Sayın yetkili; İSA ALTUNER(K) adlı müşterinize 644422105 nolu gönderinizin SANDALYE ürünü 3 parça halinde ELAKSA SANDALYE adresinizden 11.09.2025 14:15:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1cae5f71-5bb4-4ed4-8664-eb8ef0abb11e',NULL),
('f970ac73-1751-4556-89fc-a7bfd33504dd','33605874886','Sayın MUHAMMET TÜRKMEN, 745952430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745952430\n\nDear MUHAMMET TÜRKMEN, your shipment with 745952430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745952430\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('f97258e6-263b-46db-9d4b-7061ae04e63f','905461661672','GAMZE KOCAMAZ adlı müşterinizin 644682734 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','5f57a0f7-857f-4662-b47b-242a72bd52b3',NULL),
('f975f592-a0aa-4b06-af71-b77a45f2293c','4917620954584','Sayın BESTENUR ÖZKAYA SSH, 896998229 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/896998229\n\nDear BESTENUR ÖZKAYA SSH, your shipment with 896998229 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/896998229\n\nBICARGO','1','2a9c7f69-97e7-4504-8e8e-9939d84f393a',NULL),
('f97f9b6f-3dd3-4b5f-ae4c-70013653a07d','4369919588138','Sayın NATASCHA DJORDJEVİC, 80873489 nolu gönderiniz 7294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/80873489\n\nDear NATASCHA DJORDJEVİC, your shipment with 80873489 was delivered to you with the delivery code 7294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/80873489\n\n\nBICARGO','1','f75148df-6581-4c9c-b732-15039b1ebd7d',NULL),
('f983f79e-26a6-465b-8591-68b6bece0368','905332942204','Sayın yetkili; KEVSER ŞİMŞEK adlı müşterinize 505355748 nolu gönderinizin masa ürünü 3 parça halinde masami adresinizden 22.10.2025 10:33:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e1708729-2a47-405a-bcc7-a59e67a2f89c',NULL),
('f98442b2-d0ec-4a69-b824-204e6bf7bff8','4917675899290','371495147 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6951 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371495147\n\nYour shipment with the number 371495147 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6951. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371495147\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('f98cb11b-aeaf-45a5-82ba-11486aa875ce','905461661672','Sayın yetkili; HASRET AVCI adlı müşterinize 644890175 nolu gönderinizin MASA VE SEHPA TAKIMI ürünü 4 parça halinde Masami Mobilya adresinizden 05.03.2025 11:57:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','12438c42-fc27-4ae8-8cff-d96af3f07b68',NULL),
('f98f2114-f22d-48ba-baac-f1b0bce73a96','905517075149','Sayın yetkili; KAZIM KURUCU adlı müşterinize 478335843 nolu gönderinizin HARMONY YEMEK ODASI 8 SANDALYELİ ürünü 10 parça halinde BRAWWA MOBİLYA adresinizden 04.08.2025 11:20:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','927e12ff-5564-4a31-a8d5-f4d5eaffc582',NULL),
('f991f575-e6db-4620-b4ca-2a3d552823b6','905461661672','GHAZAL TARIK İLHAN adlı müşterinizin 644826740 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('f9930122-8880-4e1c-9f71-864e6ce5986d','436763237242','Sayın ÖMER SOLAK, 27829651 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/27829651\n\nDear ÖMER SOLAK, your shipment with 27829651 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/27829651\n\nBICARGO','1','140cb0d6-0404-46c4-b441-c9fa8beea92c',NULL),
('f997547a-82c1-405d-821e-7e8bfb914a20','436607735988','338840422 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8343 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338840422\n\nYour shipment with the number 338840422 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8343. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338840422\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('f9991ed3-e44b-474d-9896-f836b69da210','4915232158548','Sayın BEYTULLAH AKSOY, 644826911 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826911\n\nDear BEYTULLAH AKSOY, your shipment with 644826911 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644826911\n\nBICARGO','1','6f6f3f97-26d1-4eb9-9f9c-527ec752389c',NULL),
('f99d6697-45b0-452f-886e-8ddf53a8061d','5325000478','Sayın MERT GÜNAL, 24.03.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 2986881\nŞifre : 2986881\n			\nBİCARGO','1',NULL,'29868815-59a3-472d-968a-f687cc30c0d6'),
('f99e5ade-533e-44b7-a71e-fd616516d9c1','4917670381209','Sayın HÜDAYİ HARMANCI, 64422113 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/64422113\n\nDear HÜDAYİ HARMANCI, your shipment with 64422113 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/64422113\n\nBICARGO','1','cea81038-a341-47c6-8f8b-905346a6e5b0',NULL),
('f9a5c372-b40a-425c-9af6-7e475747feed','4917625035893','613393068 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6509 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613393068\n\nYour shipment with the number 613393068 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6509. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/613393068\n\nBICARGO','1','fc5c1bb8-c1d0-4065-b1a8-be81de217222',NULL),
('f9afa9e9-1601-48f1-a844-ae35d87bd0c4','905456068312','MUSA KIZILASLANOĞLU adlı müşterinizin 655307091 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','60088545-2d2c-4c1d-8f5c-07351840a9a5',NULL),
('f9b80bff-421b-4ed9-b330-540db6462623','905079047428','PETER BOUMA adlı müşterinizin 449446169 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','ab8f7dad-dd01-47f2-b7aa-f25760fbe1eb',NULL),
('f9bb3266-c2db-4c42-8dc1-2b1f971f7eb0','905331602195','Sayın yetkili; BERKAY NAMDAR adlı müşterinize 221963489 nolu gönderinizin Balat sandalye  ürünü 8 parça halinde MASAMİ MOBİLYA adresinizden 02.10.2025 12:52:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','2b333e3a-4a90-4fa5-a8a8-97b3fef507b4',NULL),
('f9c4a715-f56a-491e-8a57-e5ff07cd1d6d','905335708965','MURAT adlı müşterinizin 73547719 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9f3a5616-6c64-44aa-90f5-c34379989ac3',NULL),
('f9c5528c-3f84-4397-a36c-12cae49e3f42','32474864705','Sayın ESMERAY ÇOBAN, 428633070 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428633070\n\nDear ESMERAY ÇOBAN, your shipment with 428633070 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428633070\n\nBICARGO','1','763269f0-c331-405d-955e-8f2aa8b9564e',NULL),
('f9c74b5d-66b6-48a7-8eef-b978db1e31d8','33699946659','Sayın BELKISA KAPLAN, 478428380 nolu gönderiniz 1823 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478428380\n\nDear BELKISA KAPLAN, your shipment with 478428380 was delivered to you with the delivery code 1823. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478428380\n\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('f9ce6f86-b76f-45f2-8ebc-b141c82d69b4','1111111111111111','Sayın BRÜKSEL, 248592138 nolu gönderiniz 2819 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248592138\n\nDear BRÜKSEL, your shipment with 248592138 was delivered to you with the delivery code 2819. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248592138\n\n\nBICARGO','2','79f0fc3e-4899-4c29-8dad-eb9b646777fa',NULL),
('f9cf440d-ecd2-4a73-9a1b-29b868e7e545','333651501156','Sayın BESNA ULUĞ, 478906000 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478906000\n\nDear BESNA ULUĞ, your shipment with 478906000 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478906000\n\nBICARGO','2','d313ceae-a8f1-4f54-ba81-fe9e81fef554',NULL),
('f9cf781e-5fb1-4fc3-8415-14c62424ab15','905313340045','DİRİL NURİ adlı müşterinizin 43792999 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','bad05b30-4d32-46ea-a474-6a5a27c42d3c',NULL),
('f9d032e1-7ac6-4707-8d55-f68cd3f7c0f1','33620807187','976369647 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8554 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976369647\n\nYour shipment with the number 976369647 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8554. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976369647\n\nBICARGO','1','1fb32e39-501f-48b7-ba50-860c26209b78',NULL),
('f9d79563-c56e-41e1-ab61-db1a6a86aff4','4917684673033','Sayın CEMİL BEY, 412119334 nolu gönderiniz 2692 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412119334\n\nDear CEMİL BEY, your shipment with 412119334 was delivered to you with the delivery code 2692. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412119334\n\n\nBICARGO','1','3167a684-9120-4a08-a96f-a652ac70c76f',NULL),
('f9dad9a5-013a-4146-9c7a-d397a3dad0d0','41763455531','Sayın İSHOAK ABU BAKER, 126938963 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/126938963\n\nDear İSHOAK ABU BAKER, your shipment with 126938963 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/126938963\n\nBICARGO','1','a29a2b1f-c2a8-4ac6-97a4-dad514383f7d',NULL),
('f9dcafbd-5ca4-43de-aa02-6f8a547e3aa1','33784178504','976942444 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10972 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976942444\n\nYour shipment with the number 976942444 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10972. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976942444\n\nBICARGO','1','99f2313f-189c-456e-bcf0-d0e88ae7ffbf',NULL),
('f9e00440-a2ce-4b73-bb60-0d131ed6c41e','33763204411','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','22345714-b5fa-41b0-909c-acf5f1e9d725',NULL),
('f9e7ae61-2434-41ba-9b17-53dc8b14b378','905306071261','Sayın yetkili; YOZLEM MİNCHEVA adlı müşterinize 765564339 nolu gönderinizin Karin Yemek masası 90*180 ürünü 1 parça halinde ESDİVA DESİNG adresinizden 29.09.2025 12:09:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c885ca27-2244-4162-b7af-4fe67daf7fd3',NULL),
('f9e928c6-b5d0-4cca-9838-1519a476eba8','33665221905','Sayın MERYEM PEREZ , 982126318 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982126318\n\nDear MERYEM PEREZ , your shipment with 982126318 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982126318\n\nBICARGO','1','1665dee0-24f9-42b5-b654-0fc276b61c52',NULL),
('f9eb4c69-846c-45b7-8500-b30cc2d5a744','491639179546','Sayın FATMA ERDEM, 598161990 nolu gönderiniz 3796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598161990\n\nDear FATMA ERDEM, your shipment with 598161990 was delivered to you with the delivery code 3796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598161990\n\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('f9ec3710-2a26-45cc-afaa-5cb09397b80e','4917664681539','Sayın BERKAN AĞIRMAN, 91034652 nolu gönderiniz 3936 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/91034652\n\nDear BERKAN AĞIRMAN, your shipment with 91034652 was delivered to you with the delivery code 3936. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/91034652\n\n\nBICARGO','1','44dcdf36-5cb1-40e1-af63-fa023b3cb019',NULL),
('f9ed1bc2-fe84-4643-88da-1eeb1a235350','33766319183','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','152de64e-7685-4980-ac8b-8970beb190fd',NULL),
('f9f98c4c-7ac9-4d2b-9e91-90161f125d76','491773384706','Sayın YASEMİN YILDIZ, 745346486 nolu gönderiniz 2758 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745346486\n\nDear YASEMİN YILDIZ, your shipment with 745346486 was delivered to you with the delivery code 2758. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745346486\n\n\nBICARGO','1','d4eec699-15e8-4023-b611-78ceb15be51f',NULL),
('f9fc17e6-c01f-4529-ae36-eac2a8b3685f','491774633410','Sayın MEHMET SEVİM KEBELİ, 59856960 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/59856960\n\nDear MEHMET SEVİM KEBELİ, your shipment with 59856960 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/59856960\n\nBICARGO','1','29ad9f78-9c53-4873-a500-c56a5fe3e826',NULL),
('fa1b79a6-08b6-43bd-b66a-3d495eae85c9','905333221039','KÖSE BEY adlı müşterinizin 750926872 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','0c3ef94e-a3b8-4021-9443-6b89d022c491',NULL),
('fa1b7eb5-c733-438b-88a9-017a5e362195','11111111111','41298450 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5337 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/41298450\n\nYour shipment with the number 41298450 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5337. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/41298450\n\nBICARGO','2','8dc43eba-8511-4c79-a4cb-7c29fcd6c3e5',NULL),
('fa416db1-f97f-4b3e-88c2-046d9b0417b1','00491782351151','Sayın OKAN ERTÜRK, 735233033 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/735233033\n\nDear OKAN ERTÜRK, your shipment with 735233033 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/735233033\n\nBICARGO','2','ad6e0801-e463-45ff-8ac4-917337b9aa53',NULL),
('fa4bddd2-c3b8-4613-9ad8-660bcea8f090','4917663466847','745816946 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1070 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745816946\n\nYour shipment with the number 745816946 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1070. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745816946\n\nBICARGO','1','eb3d9366-d41c-4a39-bc45-c8babc36cc15',NULL),
('fa4f7bce-b833-4c2c-b54a-a86e4c8acdf0','32494889531','Sayın FAHRETTİN AKISKA, 478339664 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478339664\n\nDear FAHRETTİN AKISKA, your shipment with 478339664 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478339664\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('fa582900-4f3c-4bcc-984e-95ab400e8064','905313340045','MİYASE AYDIN adlı müşterinizin 437945654 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('fa5f0e98-315b-4c8f-809a-597d66f14783','905461661672','Sayın yetkili; MELİSA DÜZME adlı müşterinize 644796083 nolu gönderinizin KÖŞE KOLTUK ürünü 3 parça halinde MODO KOLTUK adresinizden 21.08.2025 16:44:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b7689bf-7ebf-44e3-8355-6807100fe5de',NULL),
('fa6924b4-2c8d-464b-a342-f566a77fd4f3','33781067727','Sayın MELİSA DEMİRTAŞ, 478757775 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478757775\n\nDear MELİSA DEMİRTAŞ, your shipment with 478757775 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478757775\n\nBICARGO','1','ffbb8f40-ae6c-4f70-9633-049e3b132e57',NULL),
('fa6a218a-869f-4d2c-b88e-337122b9b81d','491624296622','BİLGİ!!\n					ARACIMIZ ARIZALIDIR EN KISA SÜREDE SEFERİNE DEVAM EDECEKTİR,ANLAYIŞINIZ İÇİN TEŞEKKÜRLER','1','a3672ebb-5053-433e-a8e4-f57986e68156',NULL),
('fa6c3381-010a-41f9-9a25-9cb90bd6d8ad','11111111111','412977009 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7789 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412977009\n\nYour shipment with the number 412977009 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7789. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412977009\n\nBICARGO','2','0fe32732-478d-4914-8b33-290a72aa934f',NULL),
('fa737954-556f-41c2-837d-20c6a69c30c5','905335708965','ABDÜLKERİM AKDAS adlı müşterinizin 248359668 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b115bb17-6ee3-4846-9e72-2f91f2abf901',NULL),
('fa74ab9c-806d-4b1d-8372-a7bb45b2cd49','436767948204','Sayın AYDIN SARI, 011620933 nolu gönderiniz 7347 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/011620933\n\nDear AYDIN SARI, your shipment with 011620933 was delivered to you with the delivery code 7347. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/011620933\n\n\nBICARGO','1','a3373a1a-ad36-472f-907f-b0578ee9cac1',NULL),
('fa7c3023-235e-46b7-9ddb-f7aa2e1f7e7f','491608415396','Sayın SEMİH YEŞİLYAYLA, 371716908 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371716908\n\nDear SEMİH YEŞİLYAYLA, your shipment with 371716908 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371716908\n\nBICARGO','1','35b607a9-05e1-4a39-8d5e-e9d252bd8443',NULL),
('fa7d1604-007e-42be-8460-c75c7d8b2c26','4915773537388','478994871 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10424 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478994871\n\nYour shipment with the number 478994871 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10424. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478994871\n\nBICARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('fa7d57e9-881b-45cc-a785-d4ff6120289d','905461661672','REBEKKA İRMER adlı müşterinizin 644113100 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','4c449693-e58b-4f1c-aa28-fae57056e377',NULL),
('fa7ff8d6-2aa5-4337-b71b-b389069ea333','41794403640','DRİVER\n					ADNAN\n+905354622027','1','02caa650-97c8-4705-a9bc-95c4f819c322',NULL),
('fa81f89a-354a-4cee-aa3c-88c1527a6f43','905325000478','ÖMER METZ adlı müşterinizin 412647671 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','b76bdb52-fa77-477f-afbf-6246f10d357a',NULL),
('fa85c202-62ca-41e8-bfc1-ed6650fe98c8','905349208933','Sayın yetkili;  MAHMUD YUSUF ÖKDEM(SSH) adlı müşterinize 127945692 nolu gönderinizin sehpa ayağı ürünü 3 parça halinde MELYA adresinizden 27.03.2025 11:41:55 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1ec0ce5d-771e-4436-84c6-caea3a7da2de',NULL),
('fa86964b-cdae-4964-b6c2-90971d118203','3434574663476434','Sayın ENES, 412746738 nolu gönderiniz 6082 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412746738\n\nDear ENES, your shipment with 412746738 was delivered to you with the delivery code 6082. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412746738\n\n\nBICARGO','2','7f8c4888-b2a0-46d9-b594-dfcbf578986f',NULL),
('fa87b407-b7b2-49d0-980f-1a6de868bcf3','905325000478','Sayın yetkili; DEKOR ARSLAN adlı müşterinize 412332862 nolu gönderinizin Dekor ürünü 8 parça halinde Fatura adresinizden 17.04.2025 18:04:06 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d834f33a-bc33-4d29-8f11-a9b44beafabf',NULL),
('fa8fc8e8-d1db-42d5-9e59-7325b7bcae62','905461661672','Sayın yetkili; ERDAL AKDAĞ(K) adlı müşterinize 644985861 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 23.09.2025 15:31:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','eb029e46-e69e-4bea-b717-f1c575aa7ca7',NULL),
('fa8fcf50-8869-4573-9254-29d78547b5c4','4915755360334','750501209 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7347 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/750501209\n\nYour shipment with the number 750501209 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7347. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/750501209\n\nBICARGO','1','1e9c1aa6-f481-4959-ba4d-d29600769920',NULL),
('fa904ee7-2c06-423a-863c-61bce816dbd9','905350617509','SELMA BAJRAMOSKA adlı müşterinizin 613374971 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','d86cddee-4893-4296-91c3-184ec1dc6b17',NULL),
('fa92e801-1e0c-4e26-84fd-64c55a226f33','905073106101','TUNCAY KOÇOĞLU adlı müşterinizin 465782662 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','c9db2c84-8a43-43ee-8421-833b9835be84',NULL),
('fa9482ea-041a-42f2-8b2a-f5ae6d1dce54','905079047428','Sayın yetkili; MİTRA MESKİNİ adlı müşterinize 44932987 nolu gönderinizin Tv ünitesi  ürünü 1 parça halinde Nvr home  adresinizden 02.01.2025 18:31:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02ac49e1-502e-4bc4-b041-65c1b38fb8c7',NULL),
('fa960c2a-d523-4edb-9030-609169460ac6','31687397547','Sayın Hyusein petrov, 478702716 nolu gönderiniz 5580 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478702716\n\nDear Hyusein petrov, your shipment with 478702716 was delivered to you with the delivery code 5580. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478702716\n\n\nBICARGO','1','34998387-c573-429b-a68a-d13a844cfc40',NULL),
('fa9f9ee1-4c12-4e9f-b6a2-46dc7bb6475a','2738484747373737','Sayın PROMO HANDEL, 22391500 nolu gönderiniz 1480 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/22391500\n\nDear PROMO HANDEL, your shipment with 22391500 was delivered to you with the delivery code 1480. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/22391500\n\n\nBICARGO','2','67b755d6-8527-41db-b18d-4497bd14d893',NULL),
('faa2bcc6-097d-47b7-a62c-87eb653f059e','905059175469','ŞÜKRÜ AKSOY adlı müşterinizin 428490126 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','661d9a27-3879-4952-bd6b-5e396f437e8b',NULL),
('faa37b3d-fd9d-40b1-926b-a7035f755cd6','905394878216','FUAT HUT adlı müşterinizin 517903636 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','7a2fdb77-6ac7-4b2c-83ca-51a2c5c442a9',NULL),
('faa706b6-3657-45c5-89bc-90b88be222d1','00436505113533','Sayın OSMAN GÖKBEKİŞ, 524289921 nolu gönderiniz 9353 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/524289921\n\nDear OSMAN GÖKBEKİŞ, your shipment with 524289921 was delivered to you with the delivery code 9353. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/524289921\n\n\nBICARGO','2','08b07ff9-692e-4ca8-866e-27a96667e87f',NULL),
('fab80f66-15eb-4701-875f-56906525fa5a','436766833448','Sayın GÜLCAN İNCE (SSH), 338840422 nolu gönderiniz 8343 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/338840422\n\nDear GÜLCAN İNCE (SSH), your shipment with 338840422 was delivered to you with the delivery code 8343. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/338840422\n\n\nBICARGO','1','c59d01dd-3504-4be3-8a37-b4203d620130',NULL),
('fab929cc-fc7a-4b67-937e-bc40cfafec95','491728265079','Sayın RANİA PİSİT, 613464926 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613464926\n\nDear RANİA PİSİT, your shipment with 613464926 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613464926\n\nBICARGO','1','44afd7bc-3d03-422d-ab40-1ff34cc96cc0',NULL),
('fab942c6-7a8c-4901-a6e3-f71aecd11672','905335511664','BÜŞRA POYRAZ adlı müşterinizin 371508043 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','2fb92d16-b307-4896-974c-b96cb9542bc6',NULL),
('fabe2483-0bc0-4207-ba37-b396d2e17b68','9054439559150','Sayın yetkili; AYŞE KABAN adlı müşterinize 614204771 nolu gönderinizin BAMBİ MAGNASAND 120\'LİK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 03.10.2025 14:29:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','4db8cd5e-35c6-4751-834d-0124e5766e08',NULL),
('fabe3b99-46eb-48dc-9fc0-6155a4b8d921','41764965010','Sayın HABTEMARIAM BIZEN, 126908886 nolu gönderiniz 10160 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126908886\n\nDear HABTEMARIAM BIZEN, your shipment with 126908886 was delivered to you with the delivery code 10160. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126908886\n\n\nBICARGO','1','875f12e4-f0f5-47f9-bf4e-6f63cb2a1014',NULL),
('fabfb55b-83dd-43f8-90b6-dc9aa85a7ab7','436603406293','DRAGİ DİJANA adlı müşterinizin 675951028 nolu gönderisi 3 parça halinde yola çıkmıştır.','1','8e0d0cfb-4fd3-4e8c-aaa5-cdf81a401a8c',NULL),
('fac473d5-0e1e-4a5a-820d-63d25c12e1b5','33631854017','İLETİŞİM\n					ADNAN DURSUN ŞOFÖR +90 535 462 20 27','1','77e78f51-be80-4b08-a516-e9fc28d5622f',NULL),
('fac4d4b3-f0f4-47eb-80d9-637bd82ee41f','491722630370','371887346 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9263 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371887346\n\nYour shipment with the number 371887346 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9263. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/371887346\n\nBICARGO','1','ea220406-9a53-4462-8ddb-af10ce32ed5b',NULL),
('facfbbbb-9671-45e3-a366-6e342a20306f','33664842794','Sayın ASHLEY BLANCO RODRİGEZ, 221417545 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221417545\n\nDear ASHLEY BLANCO RODRİGEZ, your shipment with 221417545 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221417545\n\nBICARGO','1','89edfd24-71a4-4e25-8532-ca78ef0bdca4',NULL),
('fad1ee6c-c3e4-4f25-8fa9-370caf74f085','4917640498968','Sayın AYLA BAYKAL, 644606140 nolu gönderiniz 3394 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644606140\n\nDear AYLA BAYKAL, your shipment with 644606140 was delivered to you with the delivery code 3394. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644606140\n\n\nBICARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('fad5af9d-c2c0-469a-9116-8183fd7fd5ae','905333221039','FİRAS MACHANTAT adlı müşterinizin 750125400 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3bb4499e-7b18-422f-a19d-ece35be90286',NULL),
('fae21958-8b99-4e29-9f01-29da7796554d','905517075149','Sayın yetkili; KEVSER KAYA adlı müşterinize 478983907 nolu gönderinizin 3+3+1 koltuk takımı ürünü 3 parça halinde brawwa koltuk adresinizden 04.08.2025 14:40:36 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','5045a79c-4874-4baf-b0cf-15d0d296389d',NULL),
('faea425a-eaa6-4e3f-8384-72421fb1a540','905079358213','Sayın yetkili; OKAN EKİNCİ adlı müşterinize 745873539 nolu gönderinizin BOHEM KONSOL MASA SANDALYE ürünü 10 parça halinde ACCA adresinizden 25.08.2025 11:29:35 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('faef8b56-2867-45a5-8c34-04e04e01c8d4','4917661473873','248707022 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1574 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248707022\n\nYour shipment with the number 248707022 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1574. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/248707022\n\nBICARGO','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('faf40867-1824-48bb-9ff0-f9877afd84ba','905079358213','Sayın yetkili; ALİ ÖZDEN  adlı müşterinize 745991962 nolu gönderinizin BAŞLIK + ORTA SEHPA + YAN SEHPA + 1 KANEPE ürünü 4 parça halinde Fatura adresinizden 09.05.2025 13:45:46 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','af3522dc-162f-4e08-bc60-ffc39d821f1f',NULL),
('fafd708d-390a-455f-a7ca-0b478a555ad7','905365908694','PROMO HANDEL adlı müşterinizin 22391500 nolu gönderisi 123 parça halinde yola çıkmıştır.','1','67b755d6-8527-41db-b18d-4497bd14d893',NULL),
('fafeb82d-dbfd-4215-897d-df982ec15329','436506740424','Sayın ALİ KURUÇAM, 437707209 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437707209\n\nDear ALİ KURUÇAM, your shipment with 437707209 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437707209\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('fb065c60-ed68-418e-a1ff-7b7492c281fa','4917662469694','Sayın YEŞİM AKGÜN , 011716616 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/011716616\n\nDear YEŞİM AKGÜN , your shipment with 011716616 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/011716616\n\nBICARGO','1','613669b4-092d-41a5-971c-271dc4ad0bf1',NULL),
('fb13977b-b76c-41d1-8070-9f625e6b4d7e','31611299714','Sayın DİLAN ÜNVER, 437584936 nolu gönderiniz 9514 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437584936\n\nDear DİLAN ÜNVER, your shipment with 437584936 was delivered to you with the delivery code 9514. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437584936\n\n\nBICARGO','1','361c79f6-d2f7-4391-a551-aeba4ac518de',NULL),
('fb16ef58-e306-4efb-805d-995056e05b63','905363385813','CEMAL CANKURT adlı müşterinizin 976369139 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ab2f1d14-a20a-43bf-b89f-55328f271e01',NULL),
('fb1da9c4-06e0-4c81-96d7-bb9296c89a64','33749000249','982578025 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3272 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982578025\n\nYour shipment with the number 982578025 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3272. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/982578025\n\nBICARGO','1','34efce18-6122-4639-ad74-6bf11623e4ef',NULL),
('fb1eac14-f67c-43c7-9275-41898284d993','33699946659','Sayın BELKISA KAPLAN, 478428380 nolu gönderiniz 1823 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478428380\n\nDear BELKISA KAPLAN, your shipment with 478428380 was delivered to you with the delivery code 1823. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478428380\n\n\nBICARGO','1','6aa00240-966f-486c-99d1-9d64e41babbd',NULL),
('fb1fba42-d4dc-4e80-8302-0a03c0b285f6','33652266722','Sayın MUHAMMET TÜRKMEN, 745952430 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745952430\n\nDear MUHAMMET TÜRKMEN, your shipment with 745952430 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745952430\n\nBICARGO','1','30529cb9-4bbf-4a63-8d88-6ac4e67509cb',NULL),
('fb205d67-2bc7-44e2-8ea4-340c9d4ee610','4915150003211','Sayın ERGÜN AKSOY, 657147391 nolu gönderiniz 2754 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657147391\n\nDear ERGÜN AKSOY, your shipment with 657147391 was delivered to you with the delivery code 2754. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657147391\n\n\nBICARGO','1','ce46c288-f229-4ec1-a778-6f45d324b302',NULL),
('fb23c443-befa-49d1-bb98-f963020037cc','491723845058','Sayın ENGİN POSETLERDEN KALAN KUTU , 248188933 nolu gönderiniz 5013 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248188933\n\nDear ENGİN POSETLERDEN KALAN KUTU , your shipment with 248188933 was delivered to you with the delivery code 5013. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248188933\n\n\nBICARGO','1','00b3b029-8596-4eeb-aa4a-7c3173126b3b',NULL),
('fb25cc51-5759-4dc3-a72f-b23dce6835f8','5326077059','Sayın ÖMER FARUK ÇANAK, 31934282 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31934282\n\nDear ÖMER FARUK ÇANAK, your shipment with 31934282 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31934282\n\nBICARGO','2','90e758b9-fc91-49ea-ab6c-5838a25327d1',NULL),
('fb2a88fd-0688-452d-a4ac-5764482a9da7','436769084848','Sayın KIYMET HANIM , 657635062 nolu gönderiniz 1160 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/657635062\n\nDear KIYMET HANIM , your shipment with 657635062 was delivered to you with the delivery code 1160. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/657635062\n\n\nBICARGO','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('fb2b7e9f-453d-4bca-89e5-518b07aa2ba2','41788774757','98222656 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9468 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/98222656\n\nYour shipment with the number 98222656 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9468. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/98222656\n\nBICARGO','1','df564c56-1964-45d7-946b-9c1121729fa8',NULL),
('fb2d5cfd-4112-442f-8ee1-c0eb644a3e00','905335511664','SEMİH TÜRKOĞLU adlı müşterinizin 371696812 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','580415fe-7112-4432-89b1-efebbd154841',NULL),
('fb2f684c-dc8e-494b-ae42-448369f7c819','491734523187','Sayın GHAZAL TARIK İLHAN, 644826740 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644826740\n\nDear GHAZAL TARIK İLHAN, your shipment with 644826740 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644826740\n\nBICARGO','1','8e0026ed-f0f3-4fe0-a2ea-5e5869853dfc',NULL),
('fb3211ff-8547-49f7-9f6d-b0ac10a4b479','905517075149','SEVİM KAMER adlı müşterinizin 478151970 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','78b69f29-3789-4968-b725-c04339316224',NULL),
('fb321b7f-07b4-47a8-b17e-7424da42e840','017680220658','Sayın SILA SEVİL İLGÜN, 644877864 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644877864\n\nDear SILA SEVİL İLGÜN, your shipment with 644877864 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644877864\n\nBICARGO','2','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('fb342851-eb7f-48cc-93b7-fab322c07f11','4915224007809','644758410 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3129 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644758410\n\nYour shipment with the number 644758410 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3129. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644758410\n\nBICARGO','1','ed33a630-2ac9-4148-a314-b2a44a100a96',NULL),
('fb381aef-7225-4678-9aa0-92a8e4827b6e','491737075108','Sayın ELİZA KADRİ, 786895232 nolu gönderiniz 6801 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/786895232\n\nDear ELİZA KADRİ, your shipment with 786895232 was delivered to you with the delivery code 6801. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/786895232\n\n\nBICARGO','2','edee589c-8584-4bae-8e91-900078074c09',NULL),
('fb3c7c02-602c-455b-911f-2bf9401aa7eb','905306071261','ŞULE ÇAYIR  adlı müşterinizin 765501651 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','6b308538-0db0-403f-a33f-bc50bf381bb6',NULL),
('fb3d08d0-05a7-4299-a3bd-7bcfe3500dc5','4917663775902','Sayın RIDVAN BEY, 412241218 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412241218\n\nDear RIDVAN BEY, your shipment with 412241218 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412241218\n\nBICARGO','1','bf2667e1-bf39-437c-9e10-0e2cf3b28d46',NULL),
('fb44cc78-4563-472d-acd9-70550718dbcd','491752512199','338829299 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10277 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/338829299\n\nYour shipment with the number 338829299 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10277. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/338829299\n\nBICARGO','1','eee6549c-7110-48d4-b248-afbe45d679e0',NULL),
('fb44d7ed-8b87-46a1-ba01-b9e949eb6517','31614991851','Sayın AYSUN ELİBÜYÜK SSH, 478646824 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478646824\n\nDear AYSUN ELİBÜYÜK SSH, your shipment with 478646824 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478646824\n\nBICARGO','1','26021dc0-1339-4317-be03-053c91e39d17',NULL),
('fb46d91c-e342-43d8-ac63-d83ba6ce708e','4917631430152','Sayın GASİ MUSA, 613262202 nolu gönderiniz 7006 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613262202\n\nDear GASİ MUSA, your shipment with 613262202 was delivered to you with the delivery code 7006. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613262202\n\n\nBICARGO','1','d5e45bbc-32f3-498d-96c3-b034ee8c10cf',NULL),
('fb4df050-d896-4041-a753-4b4276494efe','4917681123517','Sayın SERHAT AGİRTAS, 515139511 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/515139511\n\nDear SERHAT AGİRTAS, your shipment with 515139511 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/515139511\n\nBICARGO','1','40e01302-537a-406a-a3c9-9234e4dbf8e8',NULL),
('fb506e32-3ae6-4c3d-8185-54e5b4f87bc1','33788061133','221264394 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/221264394\n\nYour shipment with the number 221264394 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/221264394\n\nBICARGO','1','af0f22e7-6571-4a3a-bd7b-5195fc7a1d2b',NULL),
('fb51b15c-7442-48df-b3a0-4edbcb4e6698','436641534757','Sayın DİANA MUJKİC, 371529841 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/371529841\n\nDear DİANA MUJKİC, your shipment with 371529841 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/371529841\n\nBICARGO','1','da4d99db-af56-4362-a1e7-d972dc6e8b1a',NULL),
('fb536bd0-0599-4bde-a2a4-25cb14a17dbf','4915204346659','644880161 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5085 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644880161\n\nYour shipment with the number 644880161 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5085. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644880161\n\nBICARGO','1','3dc2cba9-0647-4ca4-9fa8-0d67554d850a',NULL),
('fb53c1a1-bddd-4de1-b086-308b9c8aaef7','905079358213','Sayın yetkili; SEDAT ÇİFÇİ  adlı müşterinize 745538897 nolu gönderinizin VOYAGE TEKLİ + PUF  ürünü 3 parça halinde RİXXE  adresinizden 09.09.2025 11:29:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fd6cdf42-58f9-43ac-acce-9d75b76c6d29',NULL),
('fb554d4b-0d63-4fdb-afe1-2e4ca0252a6e','4369919970009','437554629 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1254 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/437554629\n\nYour shipment with the number 437554629 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1254. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/437554629\n\nBICARGO','1','a5641d1e-87fc-41c1-a35d-67b9939f56aa',NULL),
('fb5cccfc-649f-4055-b701-bf8d03b8689f','01737526626','Sayın GALİNA KAMERER , 613499620 nolu gönderiniz 9385 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613499620\n\nDear GALİNA KAMERER , your shipment with 613499620 was delivered to you with the delivery code 9385. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613499620\n\n\nBICARGO','2','8e8833ae-bbf9-4cee-9bb5-b57d59626b5b',NULL),
('fb65c304-9811-4536-9e5c-f66f3488a06f','436603406293','Sayın yetkili; SEVDE SOYUÖZ adlı müşterinize 675253974 nolu gönderinizin masa ürünü 3 parça halinde MASAMI adresinizden 19.08.2025 14:14:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','0fadbd30-6b39-4e10-8b6a-91aab0921641',NULL),
('fb667a3c-f6bf-486b-bf76-ed3ca01bb40f','4917621560869','Sayın LEYLA AYDIN, 31951233 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31951233\n\nDear LEYLA AYDIN, your shipment with 31951233 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31951233\n\nBICARGO','1','2f2a9416-f846-4142-bbdc-6f31920db56f',NULL),
('fb67600e-a91c-4528-b36c-f7a15cfce4b4','491793908788','Sayın SALİHA KURT, 745251111 nolu gönderiniz 7943 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745251111\n\nDear SALİHA KURT, your shipment with 745251111 was delivered to you with the delivery code 7943. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745251111\n\n\nBICARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('fb68d945-8456-42dc-98f6-7d8def55630b','41793101768','Sayın CEM TOPYÜREK, 531870941 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531870941\n\nDear CEM TOPYÜREK, your shipment with 531870941 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/531870941\n\nBICARGO','1','c82a223e-bb39-4f90-9da3-ee3e7be1f915',NULL),
('fb6b2c9e-b50c-4406-84fc-99a5e2ac4095','1111111111111111','412555066 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5409 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412555066\n\nYour shipment with the number 412555066 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5409. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412555066\n\nBICARGO','2','c5a6103b-c4bd-499a-9cdd-470aac948453',NULL),
('fb6ba1de-006d-4d33-8979-bb231a2d2764','4915566766358','İLETİŞİM \n					ERDOĞAN ŞOFÖR:0532 772 21 33','1','267f6081-c782-4fae-8e62-aa926bd63c79',NULL),
('fb7a753b-cace-42ca-8ddb-35c21f6ca358','4917630360547','531724547 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4926 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531724547\n\nYour shipment with the number 531724547 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4926. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531724547\n\nBICARGO','1','85a61e83-6a63-4ba3-be2f-7f76b267dcef',NULL),
('fb7f0d58-4369-4b80-8b84-4d9513893130','11111111111','Sayın MOWO, 412757132 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412757132\n\nDear MOWO, your shipment with 412757132 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412757132\n\nBICARGO','2','23e62882-9f5f-43ab-96e5-5c3074d8a0e4',NULL),
('fb82bd7e-3beb-4bd7-8696-667c95584586','905336367828','Sayın yetkili; MOHAMMED MALHA  adlı müşterinize 982125625 nolu gönderinizin berjer  ürünü 1 parça halinde Comfortlife  adresinizden 12.02.2025 14:29:43 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6da14393-4c45-403b-a068-6c3e487296c7',NULL),
('fb87f97b-1539-4b64-81c3-ae49836cae72','905331602195','TAYSUMA ESET adlı müşterinizin 221944135 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','e015e4c5-099b-4cf1-ade2-891af283be78',NULL),
('fb8fe1c1-bdbe-464e-8cbb-5d6dbd978c52','905349208933','Sayın yetkili; HARUN ERCAN adlı müşterinize 127847689 nolu gönderinizin köşe takımı ürünü 1 parça halinde Fatura adresinizden 14.05.2025 14:25:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','635836b6-8a00-4f08-aa34-ecc10b10490c',NULL),
('fb9a3040-5522-4fb9-8732-676029f462c1','33660766848','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','72e3b2db-d663-4612-b75b-d12c95d1cb5f',NULL),
('fb9bb7a0-9a02-4f3c-a6d5-d9831877062b','905331602195','Sayın yetkili; ÜLKÜ ÖZTÜRK adlı müşterinize 221943840 nolu gönderinizin DANTE MASA ürünü 2 parça halinde Fatura adresinizden 02.01.2025 12:17:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','fea683f3-14ee-46cf-99c5-7865dcd4834f',NULL),
('fba8597b-71cd-452a-af58-eb94835f0b55','905461661672','AKIN KARUT adlı müşterinizin 644775291 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','08903c44-0aec-492e-ae36-4f7ff8701446',NULL),
('fbb2fb21-3916-41f1-b1a9-8ee54f2bbf4e','31640399233','019814367 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1785 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/019814367\n\nYour shipment with the number 019814367 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1785. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/019814367\n\nBICARGO','1','0adf917f-cd8a-434f-ae14-355f5b8a1a1a',NULL),
('fbb472c8-5c46-496e-b26d-81ed7ae259b3','4915733940520','Sayın ÖZLEM KIZILARSLAN, 644650618 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644650618\n\nDear ÖZLEM KIZILARSLAN, your shipment with 644650618 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644650618\n\nBICARGO','1','32d385ed-3e8f-402f-80a2-9531544e451a',NULL),
('fbb6cb0a-66f1-42a3-bef1-3d3aebf62de1','905301592882','YAVUZ KOÇMAN		 adlı müşterinizin 910772127 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('fbbbfb04-c6de-4413-92ae-57c0540a1683','41768170444','Sayın GEZİM PLUSHİ, 982629756 nolu gönderiniz 5537 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982629756\n\nDear GEZİM PLUSHİ, your shipment with 982629756 was delivered to you with the delivery code 5537. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982629756\n\n\nBICARGO','1','7179853a-28db-4c0d-8dbc-b947110f9e96',NULL),
('fbc19946-e209-498d-857b-62ec8ae92288','32470754918','Sayın MUHAMMED ERDOĞAN, 221396383 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/221396383\n\nDear MUHAMMED ERDOĞAN, your shipment with 221396383 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/221396383\n\nBICARGO','1','b89cd91f-460c-462f-a284-8d6b2a01dd71',NULL),
('fbc4c22c-7713-42aa-9fbd-594ed67d3c6a','905336367828','HAKIMI MUSTAFA adlı müşterinizin 982742157 nolu gönderisi 12 parça halinde yola çıkmıştır.','1','8970c6df-ded4-4e10-a476-faa9d8e3a4df',NULL),
('fbc560b8-2317-46e1-986e-bc4edd58f2b4','32466345026','Sayın DURSUN GÜNBEYİ, 501243340 nolu gönderiniz 5157 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/501243340\n\nDear DURSUN GÜNBEYİ, your shipment with 501243340 was delivered to you with the delivery code 5157. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/501243340\n\n\nBICARGO','1','af17c16d-842e-4d8c-9c05-f06402e1d75f',NULL),
('fbc6bfa7-6ab8-47d9-bf32-2cc938572bb4','33651400749','910756975 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3345 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910756975\n\nYour shipment with the number 910756975 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3345. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/910756975\n\nBICARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('fbcee616-0a54-4e25-a440-6751758a6ccf','905331602195','Sayın yetkili; NAİMA BOURAJJOU adlı müşterinize 22186590 nolu gönderinizin Traverten 90/180 masa ürünü 3 parça halinde Fatura adresinizden 13.01.2025 12:18:17 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3cecaff7-0eba-4a86-8e9c-4bcfd83bb9f5',NULL),
('fbd566c5-e2d7-42ea-8c13-42a9844e4b24','330769065408','982644032 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2023 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982644032\n\nYour shipment with the number 982644032 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2023. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982644032\n\nBICARGO','1','6b536f48-3034-48b2-9b97-92824679a502',NULL),
('fbd73d56-6ac8-47cb-a5fc-e4776347eb02','33680267085','Sayın SEZER BEY, 126889614 nolu gönderiniz 3780 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126889614\n\nDear SEZER BEY, your shipment with 126889614 was delivered to you with the delivery code 3780. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126889614\n\n\nBICARGO','1','521af45a-6561-45db-adfb-641b8fafbc92',NULL),
('fbdab4ab-00a0-4d9b-a41d-82fa2aa45499','905336367828','Sayın yetkili; Ajroski ajsun adlı müşterinize 98285799 nolu gönderinizin Koltuk takımı  ürünü 4 parça halinde Ebbe sofa  adresinizden 15.11.2024 10:00:52 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c55504b4-7a7a-439e-8e37-908ee8343a67',NULL),
('fbdbb340-74c5-4041-a370-208c65db8119','4917660841394','Sayın M.ALİ ÇETİN, 910129924 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/910129924\n\nDear M.ALİ ÇETİN, your shipment with 910129924 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/910129924\n\nBICARGO','1','44210846-9f4f-4a9a-bee7-90445db03b5c',NULL),
('fbe0810b-0927-4d4c-a5d2-2e24ef98fbe1','436604393878','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','9852a2c7-87f3-43dc-8446-014d62d6842f',NULL),
('fbe2208c-6c66-4273-994d-29d5d2f5dad8','905335511664','SEDA YILMAZ adlı müşterinizin 371429381 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3aef1178-e8a2-4762-a4d1-895ac16f415f',NULL),
('fbe76a89-89b3-4974-92a0-f59ae6d09a92','905331602195','Sayın yetkili; MUHAMMED DALKARA adlı müşterinize 221646640 nolu gönderinizin Balat sandalye ürünü 10 parça halinde MASAMİ MOBİLYA adresinizden 18.06.2025 15:19:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('fbe7c5c1-b2e4-4d1e-be4f-f73aeea7267e','905079047428','LYDİE MAKALU adlı müşterinizin 449780250 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','f9c61776-accb-469f-88e4-b551ad871fe8',NULL),
('fbe9d1a6-beaa-4776-a742-6e3fa5e10869','31624464120','Sayın MEHMET KILINÇ, 428173598 nolu gönderiniz 7076 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428173598\n\nDear MEHMET KILINÇ, your shipment with 428173598 was delivered to you with the delivery code 7076. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428173598\n\n\nBICARGO','1','69d3c95a-372c-4578-8450-8194788ac842',NULL),
('fbea22ef-c4d8-4c0a-a425-d08b083e438e','33661693303','Sayın VARELA FURTADO ELLİS, 982716246 nolu gönderiniz 10500 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982716246\n\nDear VARELA FURTADO ELLİS, your shipment with 982716246 was delivered to you with the delivery code 10500. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982716246\n\n\nBICARGO','1','05621906-10fc-483c-89a6-f51e344e576b',NULL),
('fbef8a81-964d-49ec-bb9a-115e179c7b14','436705563218','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','3f94ebca-ddaa-4014-83ed-71965cea96d3',NULL),
('fbefa597-6c72-4a3d-8521-b0fa2326fa0c','4917672708890','Sayın ERAY ASLANCAN, 745294810 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745294810\n\nDear ERAY ASLANCAN, your shipment with 745294810 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745294810\n\nBICARGO','1','bfc5b29f-424e-465e-8d1d-8f10342630de',NULL),
('fbf98a0a-735b-440b-8de2-e899fc603148','905421855834','Sayın yetkili; NURTEN YILMAZ adlı müşterinize 338411614 nolu gönderinizin 8 adet Polo Sandalye ürünü 4 parça halinde Emek Sandalye adresinizden 18.08.2025 14:45:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('fbfb0c3e-413c-4606-8f9a-3c851c0c6168','9053259981980','Sayın yetkili; REBİN DOĞANER adlı müşterinize 614597563 nolu gönderinizin YATAK ODASI TAKIMI (BAZALI),LİSA MASA,ŞİFONYER AYNASI 2 ADET,160*200 YATAK,KANEPE 2 ADET,ÇAMAŞIRLIK,KONSOL VE PARİS PUF ürünü 41 parça halinde Fatura adresinizden 22.10.2025 12:05:49 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','f31b21b9-c25b-489f-8da9-92e3adcac389',NULL),
('fbfe57db-60eb-4d47-bcb9-d35bbc7f3890','436605070364','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','9d125453-ffdb-4ead-96a1-dad36ea9137f',NULL),
('fc071003-9766-4313-bf6d-8464272348c6','905306071261','Sayın yetkili; KADER YILDIZ adlı müşterinize 765600734 nolu gönderinizin ORTA VE YAN SEHPA SONSUZLUK ürünü 1 parça halinde ESDİVA DESİNG adresinizden 29.08.2025 16:08:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','61c62b54-9519-46bc-a518-390b8b72c6dc',NULL),
('fc07711f-44a5-4d09-a865-96729ef544b8','905517075149','SEVİM KAMER adlı müşterinizin 478524376 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('fc07a342-c29f-4326-9bc8-c4d9eb4d5feb','33605930464','Sayın mukungu kulemfuka, 449205900 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449205900\n\nDear mukungu kulemfuka, your shipment with 449205900 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449205900\n\nBICARGO','1','6365708e-a492-4502-8739-ff5d98b2e2c4',NULL),
('fc0bedc3-18a6-4a86-9771-3e29eaae9e7c','905075277637','Sayın yetkili; SALİHA KURT adlı müşterinize 745251111 nolu gönderinizin DELUXE YATAK 160X200 ürünü 1 parça halinde Fatura adresinizden 06.05.2025 12:56:02 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','ed2477a7-3410-49d6-97b3-d4a65e4b5d22',NULL),
('fc0ca542-162e-4aad-a53b-3d6fb8c60e91','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin baza ürünü 1 parça halinde Albessa adresinizden 17.09.2025 16:18:08 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('fc104dc0-dfbd-4735-af09-c0b1328aea4a','4369910398530','Sayın CANAN ŞENEL, 644319069 nolu gönderiniz 8993 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644319069\n\nDear CANAN ŞENEL, your shipment with 644319069 was delivered to you with the delivery code 8993. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644319069\n\n\nBICARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('fc109467-b4e0-469f-8d73-aa5e0e953774','905461661672','Sayın yetkili; RUKİYE TURAN adlı müşterinize 644301613 nolu gönderinizin MALZEME KUTUSU ürünü 1 parça halinde KOLTUKÇU ERSİN adresinizden 30.09.2025 10:28:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e3871411-a780-42a7-af06-7808ea097f15',NULL),
('fc145810-625d-4f4a-9196-e0523d901280','905335708965','SAMİ MEHDEROĞLU adlı müşterinizin 735272751 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d96f6453-1e25-424a-9d19-ea7d43ea1cb5',NULL),
('fc14c335-2622-44fa-802d-18941c970e69','9053259981980','NERGİZ YURTSEVEN adlı müşterinizin 614525681 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','2','017c5187-ccfb-4c37-9cc6-a58640b22cda',NULL),
('fc157f36-a5e2-4342-aa0c-23be69ccb331','905350617509','Sayın yetkili; BERNA YİLDİRİM adlı müşterinize 613847250 nolu gönderinizin 6 adet sandalye ürünü null parça halinde Mfoursandalye adresinizden 17.06.2025 16:28:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b03e4184-3ccd-452d-bdbf-3a4ddecfb868',NULL),
('fc1746bb-314a-45e9-9e21-d287eb046934','905313340045','Sayın yetkili; TUĞBA BALIKÇI adlı müşterinize 437154123 nolu gönderinizin Baza başlık ürünü 4 parça halinde Albessa adresinizden 25.08.2025 12:01:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','3b6129d0-8adb-475b-a9bb-394ff6773ada',NULL),
('fc17b9fb-c7ef-4779-bd49-76e2348c5c5b','905332942204','MARİNELA MARİNKOVİC adlı müşterinizin 505948491 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','89c7af9b-6049-4f3e-9b7a-1672824189c6',NULL),
('fc1dd271-6e2e-49a3-8bb2-f0178c00562b','436607858584','745906720 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2502 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745906720\n\nYour shipment with the number 745906720 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2502. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745906720\n\nBICARGO','1','687d4dda-737c-4d30-8593-e81992c2a693',NULL),
('fc236a76-0cd3-4042-b156-7dc4bfadbd8d','491637394774','598463425 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4640 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598463425\n\nYour shipment with the number 598463425 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4640. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598463425\n\nBICARGO','1','0689343a-01c3-4235-b709-f5f67e87d641',NULL),
('fc246d4d-3586-4255-8f73-9f90449cf905','905335511664','NERGİZ TOPRAK adlı müşterinizin 371540742 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a19d66bb-d207-4329-bba8-b2b0c50bd4f6',NULL),
('fc2eb1b8-a3e6-4be4-8453-35ea032c1ce8','4915734346614','Sayın HELİN ÖZDİL, 896155892 nolu gönderiniz 7356 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896155892\n\nDear HELİN ÖZDİL, your shipment with 896155892 was delivered to you with the delivery code 7356. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896155892\n\n\nBICARGO','1','f4fe0b93-207b-404f-a4fd-f3dc2fefe3e7',NULL),
('fc31a786-ef45-4f03-9257-6863407631d5','33768894970','Sayın KUBİLAY AKTAR, 910473991 nolu gönderiniz 6060 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910473991\n\nDear KUBİLAY AKTAR, your shipment with 910473991 was delivered to you with the delivery code 6060. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910473991\n\n\nBICARGO','1','df44df14-24ab-4b9d-b75e-64df6dd06eb0',NULL),
('fc3212c2-374d-4e11-bb76-226156da6bb5','111111111111','Sayın SEMİH AYDIN, 17.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 3986102\nŞifre : 3986102\n			\nBİCARGO','2',NULL,'dec3986f-102f-43bc-891f-7de9ebce0626'),
('fc37e2c4-57f3-4328-b551-5652305ee183','905078062550','Sayın yetkili; GÜLSÜM KÖNÜ adlı müşterinize 598373943 nolu gönderinizin masa üst tabla ürünü 1 parça halinde RİO FATİH adresinizden 15.10.2025 12:00:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','94fef2de-86f8-489c-828b-0b9a5e9ec1b4',NULL),
('fc3addf5-e926-4128-84cc-9ca79010aebe','31624464120','428239917 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428239917\n\nYour shipment with the number 428239917 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428239917\n\nBICARGO','1','ebb63e9c-df73-4c86-8505-d28e8e13e10b',NULL),
('fc3b0a0b-c892-4ecc-9e50-adf473fce41b','4915154648685','İLETİŞİM \n					FATİH TARKCI SOFÖR :+90 541 349 48 81','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('fc43ee86-ecbd-4d8a-bf55-fece42c91c98','4915906385820','Sayın BAKACAK GİRAY, 613814330 nolu gönderiniz 8850 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613814330\n\nDear BAKACAK GİRAY, your shipment with 613814330 was delivered to you with the delivery code 8850. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613814330\n\n\nBICARGO','1','fd795bb0-de9c-492b-b14b-d82674e0098e',NULL),
('fc47fa27-d3ae-4e45-bb6c-916e38f14015','905389543828','ALBAN HASANİ adlı müşterinizin 486741087 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','308ddadc-251a-4960-a99e-9154ac7e4c88',NULL),
('fc4b7e43-a7ee-454a-87fc-f00a78256b21','905421855834','Sayın yetkili; NURTEN YILMAZ adlı müşterinize 338411614 nolu gönderinizin Petra Üçlü Koltuk 2 Adet, 1 puf ürünü 5 parça halinde İNHOUSE Exclusive adresinizden 02.09.2025 11:45:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('fc4ca805-a44d-4d35-a28f-06ea6279246e','905335708965','HELİN adlı müşterinizin 735298003 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','aaae96e2-c0d9-4998-8984-129df3d3e10a',NULL),
('fc4d981f-a83a-4550-bc81-6f45738cd2ba','33788856164','911398945 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3349 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/911398945\n\nYour shipment with the number 911398945 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3349. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/911398945\n\nBICARGO','1','36c2bf88-d916-406a-9c75-5831ceac476b',NULL),
('fc50bca9-d4ef-41d6-b0f0-94545ab97ba6','4915158036323','Sayın CEMAL YALÇIN, 319116491 nolu gönderiniz 1890 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/319116491\n\nDear CEMAL YALÇIN, your shipment with 319116491 was delivered to you with the delivery code 1890. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/319116491\n\n\nBICARGO','1','be63ebf6-5ba8-4695-a8cc-d99a2fc9238c',NULL),
('fc5d85dc-5083-4692-bf5d-54c90e9a1c8d','491785431226','Sayın KHALED SEMMO , 613175888 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/613175888\n\nDear KHALED SEMMO , your shipment with 613175888 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/613175888\n\nBICARGO','1','32af2488-e641-4d93-9e64-e4ff7977ab48',NULL),
('fc604fda-e3cc-4703-88b9-fb8e62289994','491782611540','Sayın GAMZE ŞAŞMA, 644523362 nolu gönderiniz 7194 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644523362\n\nDear GAMZE ŞAŞMA, your shipment with 644523362 was delivered to you with the delivery code 7194. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644523362\n\n\nBICARGO','1','0a3c7780-d376-48cd-a8b7-7ab6fa5d6b5d',NULL),
('fc617f73-d0e1-4eba-9374-2a065fde6993','905333221039','CEMAL KÖSE adlı müşterinizin 750822079 nolu gönderisi 34 parça halinde yola çıkmıştır.','1','fa60442a-c5d9-443f-9c1e-41b04158daa0',NULL),
('fc61af51-37d6-4c60-9a2f-0a7facc38c39','0033767846954','Sayın ALİ ŞİMŞEK, 735736030 nolu gönderiniz 6026 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/735736030\n\nDear ALİ ŞİMŞEK, your shipment with 735736030 was delivered to you with the delivery code 6026. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/735736030\n\n\nBICARGO','2','df9f1c03-7e5e-40ee-8715-8a2d4326acb0',NULL),
('fc64306a-e42f-44a5-99c3-5e5e04902f82','905331602195','ARMİN İMERİ SSH adlı müşterinizin 221471794 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','8cc2607c-b005-4e4e-858a-0729fc8630a4',NULL),
('fc70fcd7-6dee-4fb3-8ce8-f3058586fd43','41765655638','Sayın DOMİNİK WİNK, 126649227 nolu gönderiniz 7375 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/126649227\n\nDear DOMİNİK WİNK, your shipment with 126649227 was delivered to you with the delivery code 7375. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/126649227\n\n\nBICARGO','1','cc63967e-bae3-4a27-add9-5b4030bf2130',NULL),
('fc7148ce-3ad9-4750-8b18-a2dcb7d57171','4915734590367','531606130 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7569 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/531606130\n\nYour shipment with the number 531606130 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7569. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/531606130\n\nBICARGO','1','31a9f03a-9f24-417c-b0b7-5e374d34b126',NULL),
('fc7aa9b9-6551-4eaa-ae2a-89e7a1ca2b47','905059175469','Sayın yetkili; ABDULLAH SÖNMEZ adlı müşterinize 428107185 nolu gönderinizin koltuk 3+3+1+1 ürünü 4 parça halinde novano adresinizden 27.08.2025 17:08:14 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','46342cb8-9154-4a08-82ea-f958497b32c2',NULL),
('fc7ac04e-99cc-421d-9799-cbdfa048b290','905349208933','AYLİN KIRLANGIÇ adlı müşterinizin 127221315 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','96741763-bc18-47ed-be48-0c973149d4fb',NULL),
('fc7b0f7d-1d90-4897-ae13-8b94d95bdcbb','905352129940','SALİM YILDIZ adlı müşterinizin 112189439 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ce4139db-5ecf-40b0-b163-b976a128b763',NULL),
('fc7c2166-e269-4b16-b577-5a930ff1ebf8','905517075149','Sayın yetkili; DELİL ALGUNERHAN adlı müşterinize 478677262 nolu gönderinizin 180LİK YATAK ürünü 1 parça halinde BİCARGO DEPO adresinizden 15.09.2025 11:25:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','19c26519-0688-4a4d-a323-ec65ddad8463',NULL),
('fc7d25b5-6ca7-4680-837c-26bead414ef4','905075277637','Sayın yetkili; NEVİN KIRIK adlı müşterinize 745638060 nolu gönderinizin PRADA SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 05.05.2025 16:47:39 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4794626f-1ea7-475e-83ad-bdefd15b98b4',NULL),
('fc8322c5-01a4-4c02-91c6-e9ff139eb628','905335708965','SARA BOBAJ adlı müşterinizin 735173063 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9326d3b9-2f43-4c06-80e8-7b468e9642ab',NULL),
('fc86dac3-fb11-4f98-b3ae-ecb451fcc5f6','905054335859','ALİM BAŞ adlı müşterinizin 50133574 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','57a81540-e462-4e25-92dc-f9dd8b6a14df',NULL),
('fc8789bd-f531-4488-a4b9-eb329d738897','5356771281','Sayın ÜMİT VEREP ULUIŞIK LOJİSTİK, 02.09.2025 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 1438277\nŞifre : 1438277\n			\nBİCARGO','1',NULL,'bd143f82-77da-4c1d-9d90-001698b828cf'),
('fc8df7f4-52f6-4ffb-84d1-5cb9d134bd31','4915206452765','598262809 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5338 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598262809\n\nYour shipment with the number 598262809 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5338. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/598262809\n\nBICARGO','1','46debcfc-622e-49c2-bc0c-3ace3fa84661',NULL),
('fc8f5185-3ecd-4a38-ab15-89f5a90cb68e','905335708965','ROYA SHARİFİ adlı müşterinizin 248614196 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','27e70f47-5f87-4da5-8e2b-11e4017c44d3',NULL),
('fc99c1b6-788a-481d-9fc4-b41b119ea0c8','31650899845','ŞÖFÖR İLETİŞİM\n					MERT\n+90 (541) 379 81 66','1','34e042be-7f8d-4047-b3b9-96ed6829bf2f',NULL),
('fc9c9164-23bc-4df0-80b5-c39d375cfaf7','905075277637','MUHAMMET YILDIRIM  adlı müşterinizin 745946644 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','ea521ff8-eb9f-4152-a03a-e511216077ea',NULL),
('fca3ba17-ddc5-4d08-909a-35228687f033','436604146690','455522020 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1750 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/455522020\n\nYour shipment with the number 455522020 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1750. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/455522020\n\nBICARGO','1','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL),
('fca3f9ca-2f5d-45c2-9df7-a92cab2761e1','4369919053808','Sayın FERİDE USLI , 982674617 nolu gönderiniz 10414 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982674617\n\nDear FERİDE USLI , your shipment with 982674617 was delivered to you with the delivery code 10414. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982674617\n\n\nBICARGO','1','9e65ae08-29b6-4cde-954a-39f0530ce16e',NULL),
('fca59a85-808a-4b09-b8e5-ed43f92c6dce','4917622161768','42845711 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8332 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42845711\n\nYour shipment with the number 42845711 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8332. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42845711\n\nBICARGO','1','00f85745-0785-4a7a-9691-f650a9d585f2',NULL),
('fca5caf2-1b0e-4857-9f9b-1e7e982a91ff','4915734807422','478261120 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6759 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478261120\n\nYour shipment with the number 478261120 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6759. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/478261120\n\nBICARGO','1','b9164589-534d-4d1e-a7e0-ad53801936ef',NULL),
('fca6160f-c74b-4649-8c29-e9011d97000c','905355891131','Roa şerif adlı müşterinizin 902159645 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c551c482-a643-4cab-b50a-a3615f511791',NULL),
('fcaaa8d3-f9f8-466b-8a88-f5f39878e9f1','4915777901877','Sayın TÜLAY AYDIN, 428604775 nolu gönderiniz 4785 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/428604775\n\nDear TÜLAY AYDIN, your shipment with 428604775 was delivered to you with the delivery code 4785. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/428604775\n\n\nBICARGO','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('fcaffbfa-2e46-4148-b680-748c4d534a57','4915776951609','Sayın MEHMED SHABAN , 982893962 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982893962\n\nDear MEHMED SHABAN , your shipment with 982893962 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982893962\n\nBICARGO','1','24bfd523-6e80-4e24-89e9-93f7f88a6f2d',NULL),
('fcb394d1-0fc4-4f2b-8429-348665ab52c9','436604146690','Sayın MEHDİ HASSEİNİ, 455522020 nolu gönderiniz 1750 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/455522020\n\nDear MEHDİ HASSEİNİ, your shipment with 455522020 was delivered to you with the delivery code 1750. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/455522020\n\n\nBICARGO','1','5b1a0cd4-bd43-439a-9c7e-9bde54150a22',NULL),
('fcb80fe2-92b6-4c42-9b47-3808a4785f8e','4917662746063','73558075 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10814 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/73558075\n\nYour shipment with the number 73558075 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10814. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/73558075\n\nBICARGO','1','3c3a0ffd-2c10-4488-924d-af36cb5763bc',NULL),
('fcbd6d9a-a627-41d3-bb64-f4910bfb2f0c','905336367828','NURTEN MENEKŞE  adlı müşterinizin 982106314 nolu gönderisi 33 parça halinde yola çıkmıştır.','1','1372768c-0132-475f-bd20-c5373f0785ae',NULL),
('fcbf9644-c224-4ba2-b4c1-56f79fa7cc09','3376262828','Sayın OĞUZHAN TIĞ, 478824521 nolu gönderiniz 9984 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478824521\n\nDear OĞUZHAN TIĞ, your shipment with 478824521 was delivered to you with the delivery code 9984. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478824521\n\n\nBICARGO','2','ae77010c-fd9b-4dda-9995-d94d5c8976bb',NULL),
('fcbfac66-f55a-4b95-a2c7-5645713412c9','905325000478','BMD ELİF ÇEKİCİ adlı müşterinizin 412784700 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('fcc07175-8534-4bb4-b0ce-6f879e707325','491738569767','745782616 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3573 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745782616\n\nYour shipment with the number 745782616 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3573. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745782616\n\nBICARGO','1','aa3f39f2-a374-4662-9b70-6a623142a920',NULL),
('fcc1e811-3323-4d60-961d-29cf3d0b350f','33652944838','Sayın MUHAMMED DALKARA, 221646640 nolu gönderiniz 2513 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221646640\n\nDear MUHAMMED DALKARA, your shipment with 221646640 was delivered to you with the delivery code 2513. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221646640\n\n\nBICARGO','1','c301d58c-ecdd-45ca-85ce-fb5d8517c3be',NULL),
('fccf5c14-0c37-49da-a2ee-76fc2e62b888','4915255996436','Sayın ÇİLEM KAYNI, 61428079 nolu gönderiniz 1928 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61428079\n\nDear ÇİLEM KAYNI, your shipment with 61428079 was delivered to you with the delivery code 1928. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61428079\n\n\nBICARGO','1','a259ef7e-4720-40a6-a012-5f10d15b9067',NULL),
('fcd6be8d-4708-4166-9251-50a1a200e3c2','491718955351','Sayın DUDU ÖZDEMİR(K), 644754778 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644754778\n\nDear DUDU ÖZDEMİR(K), your shipment with 644754778 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644754778\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('fcd8352a-d61f-4b07-a910-7760718e1f68','905301592882','EKREM ASLAN adlı müşterinizin 91059017 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','4ba5b4d1-034a-4ecc-bbf6-480cc5728bbf',NULL),
('fcd917f5-8205-4147-9a29-9993149c354c','436767311848','ŞÖFÖR İLETİŞİM\n					HALİL İBRAHİM\n+90 554 110 08 49','1','6a1719c6-6fdf-49b7-8175-c8a0ccf6b652',NULL),
('fcdaeef6-8f94-4ccf-accb-a9eb04ec3667','905312762034','Sayın yetkili; KİM KNÖPFLE adlı müşterinize 808690841 nolu gönderinizin KÖŞE TAKIMI ürünü 5 parça halinde STYLE SOFA adresinizden 23.10.2025 15:18:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','340801e4-6036-4b2f-9cae-d51385895b71',NULL),
('fcf25edd-f3a3-4539-bce1-1c9881beeb72','31614272440','657301470 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4197 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/657301470\n\nYour shipment with the number 657301470 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4197. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/657301470\n\nBICARGO','1','449134ef-d6ce-4d53-aa6f-961c987601fe',NULL),
('fcf36498-bf30-4421-9d2a-c0deb125d08a','905313340045','Sayın yetkili; ESRA KAYA adlı müşterinize 437514624 nolu gönderinizin Sandalye ürünü 2 parça halinde HATEM sandalye adresinizden 15.08.2025 13:07:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','042f3c72-dff0-4f05-808d-d871ab750191',NULL),
('fcf53ade-7fe1-47ae-bf99-e810af655ae0','905365908694','MEDZENİTH GMBH adlı müşterinizin 223444495 nolu gönderisi 237 parça halinde yola çıkmıştır.','1','3c33fcf8-dece-4d1b-bc38-5ebe74c82464',NULL),
('fcf66949-6d0f-4372-9745-9ca059f81891','905059175469','SEFA SİNER adlı müşterinizin 428651654 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','0f5ad4ce-1dcb-46f2-8ba8-ebcde48ad148',NULL),
('fcfa513b-0318-43ec-9cd0-34232e960b78','4915154648685','Sayın ÖNDER KOCYİGİT, 380453463 nolu gönderiniz 3627 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/380453463\n\nDear ÖNDER KOCYİGİT, your shipment with 380453463 was delivered to you with the delivery code 3627. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/380453463\n\n\nBICARGO','1','f916cbe2-16c9-422e-bd45-4fe8c62efdbd',NULL),
('fcfd084f-2c4f-465d-a669-97804424f580','905421855834','Sayın yetkili; MUSTAFA ŞİMŞEK adlı müşterinize 338730647 nolu gönderinizin Petra Mini köşe ürünü 3 parça halinde İNHOUSE Exclusive adresinizden 02.10.2025 16:06:27 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','96a7a9ce-ac9e-4c25-a15b-91289b6df9c7',NULL),
('fcfebb47-1f1f-479a-b8c2-a4ab708cc592','905517075149','YASEF İCEL adlı müşterinizin 478978353 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8adca791-05c7-48d5-b055-a001bdaf2f29',NULL),
('fd0aceb0-4e71-4e8d-b087-6a3bc82bd2d1','436769208586','675749315 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10473 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/675749315\n\nYour shipment with the number 675749315 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10473. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/675749315\n\nBICARGO','1','5e876e3f-c0f8-4334-a426-ff4493e61c54',NULL),
('fd0d85af-4aed-474e-9bcb-1cb1681e51b9','905461661672','Sayın yetkili; AYLA BAYKAL adlı müşterinize 644606140 nolu gönderinizin KÖŞE KOLTUK ürünü 5 parça halinde ALİ TURAN SOFA adresinizden 24.09.2025 16:14:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','da5cde0e-df59-488c-af62-13b113156c25',NULL),
('fd115761-af81-4e65-8d4c-ef53b458e4ec','436609266371','Sayın HASAN ÇETİN, 745810889 nolu gönderiniz 3695 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/745810889\n\nDear HASAN ÇETİN, your shipment with 745810889 was delivered to you with the delivery code 3695. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/745810889\n\n\nBICARGO','1','8f46653b-9700-4005-98b3-aae1d0eac6e1',NULL),
('fd12b5f3-2d99-4a09-9631-09ea79161889','905304259202','FERDİ KURT adlı müşterinizin 478996959 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('fd244612-77e4-4813-a7b0-9aa6a8804dde','491707609047','42851120 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9003 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/42851120\n\nYour shipment with the number 42851120 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9003. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/42851120\n\nBICARGO','1','53e06c1d-87ec-4f7d-a5e4-8746a4d2eb3d',NULL),
('fd247052-7651-46fc-af93-f5cf48b3fe92','905300961610','MEHMET KELEK adlı müşterinizin 126371651 nolu gönderisi 40 parça halinde yola çıkmıştır.','1','d21c0dd7-8e02-4baf-b630-fdbc71a7958c',NULL),
('fd2a22ba-6ffd-499e-9a55-b0617920abec','491778394505','Sayın GAMZE CAPALBO - GABRİELE, 517395181 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/517395181\n\nDear GAMZE CAPALBO - GABRİELE, your shipment with 517395181 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/517395181\n\nBICARGO','1','53c08779-8ccb-43dc-8df3-b0f7ba11e871',NULL),
('fd2fb619-14a3-4ae9-8583-216475632af2','4915785558827','Sayın EKREM ASLAN, 910632087 nolu gönderiniz 8152 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/910632087\n\nDear EKREM ASLAN, your shipment with 910632087 was delivered to you with the delivery code 8152. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/910632087\n\n\nBICARGO','1','9dd09bf2-c8bf-433d-9dfe-d62d15e94f7b',NULL),
('fd30c0a2-3655-4e78-86c1-1fbb132d371d','905442774505','KIYMET HANIM  adlı müşterinizin 657635062 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','e5d25a08-4616-46db-a673-3c63eb09c6f2',NULL),
('fd32aacb-b740-4106-a7e7-381bde691b5f','11111111111','Sayın PASS, 412315808 nolu gönderiniz 5879 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412315808\n\nDear PASS, your shipment with 412315808 was delivered to you with the delivery code 5879. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412315808\n\n\nBICARGO','2','b8568cae-1462-47fa-adc8-9f74f45d83c7',NULL),
('fd33bc20-cb97-4d74-9250-f9717eb153e8','436766833448','33850305 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1558 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/33850305\n\nYour shipment with the number 33850305 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1558. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/33850305\n\nBICARGO','1','74d5f4ac-a7d7-42bc-8dd3-2e1f5b6b95b0',NULL),
('fd394f6e-f386-4ab1-bef6-355988ee1586','5325000478','Sayın ERGÜN ERGÜN, 05.09.2024 tarihli seferiniz için kullanıcı adı şifreniz aşağıdaki gibidir. Kullanıcı adı ve şifrenizi kimse ile paylaşmayınız.\n\nKullanıcı Adı : 6444698\nŞifre : 6444698\n			\nBİCARGO','1',NULL,'b6acf4f4-4698-4ff3-8de9-6da2a36f7667'),
('fd3fa0d6-effb-4e55-be8c-bf3160414988','41782487327','Sayın ZERDEŞT DALMIŞ, 455726286 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/455726286\n\nDear ZERDEŞT DALMIŞ, your shipment with 455726286 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/455726286\n\nBICARGO','1','5674d700-ff2a-461c-8ec2-d14658a2bc7a',NULL),
('fd42fbec-7a24-4501-9773-34f8dae79614','4915757299057','Sayın ZELİHA ÖZCAN, 598492066 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598492066\n\nDear ZELİHA ÖZCAN, your shipment with 598492066 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598492066\n\nBICARGO','1','bb67462b-3d86-408b-993d-ee8fb3ab52e1',NULL),
('fd45080a-43e6-4d1e-8ec9-78cead46ee32','905304259202','Sayın yetkili; FERDİ KURT adlı müşterinize 478996959 nolu gönderinizin 180x200 yatak ürünü 1 parça halinde BİCARGO DEPO adresinizden 12.05.2025 15:57:33 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','955c7c46-bc72-473b-9a0f-e11f625e9690',NULL),
('fd454cd9-bac9-4804-abb6-d3d29841b2aa','33658242473','Sayın AYHAN KOCAKAYA, 31979626 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/31979626\n\nDear AYHAN KOCAKAYA, your shipment with 31979626 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/31979626\n\nBICARGO','1','4b0a63a8-b888-4398-b6a4-26f747429361',NULL),
('fd498a60-fb6b-45b4-8942-17687099b4b0','491734654065','Sayın BERİVAN TİNTAŞ, 478994871 nolu gönderiniz 10424 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478994871\n\nDear BERİVAN TİNTAŞ, your shipment with 478994871 was delivered to you with the delivery code 10424. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478994871\n\n\nBICARGO','1','cb3c3900-b517-4430-a11a-2f2b7755d652',NULL),
('fd537a9a-cfd3-4f23-a06f-d5f1a2db8742','4917680173048','7456984 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5448 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/7456984\n\nYour shipment with the number 7456984 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5448. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/7456984\n\nBICARGO','1','e9d88834-16a0-467d-ac78-572c246346c6',NULL),
('fd5c4d3d-3bcc-4c92-a01a-3f69a5aed564','4915778776524','Sayın AHMAD KADİ, 598102662 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598102662\n\nDear AHMAD KADİ, your shipment with 598102662 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598102662\n\nBICARGO','1','f99fe573-182b-4663-9ef2-0b30f4db8009',NULL),
('fd5df4e9-c089-4d53-8245-0c81e029b66c','491718955351','Sayın DUDU ÖZDEMİR(K), 644754778 nolu gönderiniz 6625 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644754778\n\nDear DUDU ÖZDEMİR(K), your shipment with 644754778 was delivered to you with the delivery code 6625. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644754778\n\n\nBICARGO','1','2e594749-653d-418d-b1d8-5310f505a9c6',NULL),
('fd624e71-107a-437e-bec1-a5aa583966b3','491608350626','Sayın OKAN EKİNCİ, 745873539 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745873539\n\nDear OKAN EKİNCİ, your shipment with 745873539 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745873539\n\nBICARGO','2','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('fd63d57a-f67e-45bf-ba3b-ecbfc638444f','491742184791','ŞÖFÖR NUMARASI\n					+905467896981','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('fd6542bb-152c-4c61-8958-6e4a35e665d5','905335511664','Sayın yetkili; SAİT YALÇIN adlı müşterinize 37198203 nolu gönderinizin köşe takımı + berjer ürünü 6 parça halinde Elitis Home adresinizden 22.10.2025 12:01:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','30d56795-1b1e-4834-832e-beb8e2339c41',NULL),
('fd664d57-30c1-4783-81ec-9f515fe293b9','33626422127','982868918 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 1708 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982868918\n\nYour shipment with the number 982868918 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 1708. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982868918\n\nBICARGO','1','24096b71-5b5e-4da8-9191-8e3168102053',NULL),
('fd6a006c-8c07-47ac-9da2-a9a5c299b516','491628991076','765729280 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7196 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/765729280\n\nYour shipment with the number 765729280 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7196. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/765729280\n\nBICARGO','1','9c3d7567-24b3-4c51-9c80-4065af9769a9',NULL),
('fd6b8439-2a24-4563-9152-058c3967adea','33660990222','Sayın KEMAL ETKER , 47876427 nolu gönderiniz 3823 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/47876427\n\nDear KEMAL ETKER , your shipment with 47876427 was delivered to you with the delivery code 3823. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/47876427\n\n\nBICARGO','1','6245482e-e4e9-4ec3-a033-d261753e3a36',NULL),
('fd6f6ce0-afe8-4dea-ac6b-78eeb12bef2e','905534917566','Sayın HASAN ÖZSOY, 428653750 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428653750\n\nDear HASAN ÖZSOY, your shipment with 428653750 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/428653750\n\nBICARGO','1','2a615cd5-31fe-4786-897f-defeaeff6284',NULL),
('fd72449e-af85-4199-801e-4142853d1007','905461661672','SEMA KAYALI adlı müşterinizin 64448364 nolu gönderisi 11 parça halinde yola çıkmıştır.','1','ed90a35b-8493-4c2b-9437-f0f3ba27c20f',NULL),
('fd7265d7-c2f2-4bf6-9bac-9a7a833d5d5a','905059175469','ALİ GÜLEÇ adlı müşterinizin 428470171 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','61c1c529-aae3-45a2-af9a-9196a653fa94',NULL),
('fd7eaf74-0cbe-4578-a93e-25e1b1de7099','905461661672','ETEM FIRAT YÜKSEL(K) adlı müşterinizin 644664237 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','2b07945c-640f-49e9-a7a3-fdcc706090f9',NULL),
('fd800502-5dba-48fc-933f-13327bfbb7b0','491784616992','İletişim \n					Şöför Murat : +905321616048','1','6eb2b7b3-1491-4ce3-ad14-6b15af827fc4',NULL),
('fd80c5cc-0bf1-4d2f-a204-12a485011049','33634695698','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','ba457943-412f-43ae-a291-8f5550a492f1',NULL),
('fd815c0f-91b8-440b-8dbf-3b0ed7f82d1c','491786857560','644590959 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2538 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644590959\n\nYour shipment with the number 644590959 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2538. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644590959\n\nBICARGO','1','6b7bf40f-8730-4f82-9851-ca74df5b5a7c',NULL),
('fd83eab9-f7df-4e0a-8e84-9b9998994d8a','905078062550','Sayın yetkili; FADİME ERİMEZ adlı müşterinize 598425779 nolu gönderinizin HALI ürünü 1 parça halinde NLUXHOME DEPO adresinizden 02.10.2025 15:17:09 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e9f174bd-3dfd-4958-9b5f-5b0e9e86de14',NULL),
('fd85e122-4f93-4140-984d-837ce7860254','33333333333333','735121904 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4094 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/735121904\n\nYour shipment with the number 735121904 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4094. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/735121904\n\nBICARGO','2','dafa6134-d665-44c6-a01f-c4d1a6d1716a',NULL),
('fd88113d-1b03-44c1-84f5-81ccb998dd7b','905461661672','SILA SEVİL İLGÜN adlı müşterinizin 644877864 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','a1113ea5-513c-4c80-af01-bf6fc31ed2a9',NULL),
('fd8c3fe4-959b-4c6f-bc18-3f9b11ee65d2','905442774505','AHMET GÜVEN adlı müşterinizin 657832584 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('fd8d585b-a91c-4b31-9ab0-db490af80656','491636718375','Sayın İNCİ TOKGÖZ, 478240909 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478240909\n\nDear İNCİ TOKGÖZ, your shipment with 478240909 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478240909\n\nBICARGO','1','32f7a105-8ee5-4d45-907c-2d7f861d1ce3',NULL),
('fd92607e-d85b-42dc-9d2f-368e900d9730','905355928266',' adlı müşterinizin 412877197 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','2d2e3588-712f-4c84-a6f5-a45bc45a416b',NULL),
('fda05719-5610-4a77-99af-449b6aa3ff8f','905325165070','Sayın yetkili; ALAADDİN ŞAHİN adlı müşterinize 734460411 nolu gönderinizin deniz ürünü 3 parça halinde NOVANO adresinizden 06.01.2025 16:52:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','670e78fe-1680-439d-9f10-3a16b0fdf541',NULL),
('fda19334-fdae-4d8a-bd84-ec20c07d4237','905396919155','AHMET GÖKÇEK  adlı müşterinizin 973510341 nolu gönderisi 16 parça halinde yola çıkmıştır.','1','f8279968-06bb-4f3f-95e2-612d3d340d74',NULL),
('fda9bfe7-5405-40ef-affe-cd2f50655338','905421855834','Sayın yetkili; NURTEN YILMAZ adlı müşterinize 338411614 nolu gönderinizin İnci Açılır masa, Tv Sehpası, Orta Sehpa ürünü 3 parça halinde Megazzi Mobilya adresinizden 18.08.2025 14:20:56 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','02f21391-f1d5-4bee-b4d9-17f65a20feb7',NULL),
('fdab0a45-cf99-4040-8ba2-8387fe8a7d87','491709668487','Sayın KATRİN MESİNGER, 896847151 nolu gönderiniz 4625 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/896847151\n\nDear KATRİN MESİNGER, your shipment with 896847151 was delivered to you with the delivery code 4625. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/896847151\n\n\nBICARGO','1','1f7b65a0-1a7c-4441-b49f-65934040cb94',NULL),
('fdae24cc-85f2-4032-8f17-5dc9a53d88fe','905442774505','Sayın yetkili; AHMET GÜVEN adlı müşterinize 657832584 nolu gönderinizin Traverten masa kasası  ürünü 1 parça halinde Fatura adresinizden 03.07.2025 16:38:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','486d73c0-74f0-41fc-a42f-8c39f323cc01',NULL),
('fdbbb169-e66e-49c7-946e-c587bf723b74','4369917101202','Sayın ZELİHA SARITAŞ, 644287826 nolu gönderiniz 10458 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644287826\n\nDear ZELİHA SARITAŞ, your shipment with 644287826 was delivered to you with the delivery code 10458. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644287826\n\n\nBICARGO','1','24e58e68-4ee3-40c0-8505-b017493468c7',NULL),
('fdbd6fbf-afea-4f9c-a4ab-2a08a49aea42','491777499327','Sayın DERYA KARADENİZ, 505414907 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/505414907\n\nDear DERYA KARADENİZ, your shipment with 505414907 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/505414907\n\nBICARGO','1','ee0c62fa-abac-44d0-915b-567df66647be',NULL),
('fdbfd190-8172-4723-9981-d9db6b729ee8','905465479064','CAM BALKON adlı müşterinizin 858854212 nolu gönderisi 18 parça halinde yola çıkmıştır.','1','b67594be-f958-4225-900b-19c5f6be08ce',NULL),
('fdc0002f-e717-493d-8b8a-c08e4b7acde2','905307331627','Sayın FURKAN, 027201624 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/027201624\n\nDear FURKAN, your shipment with 027201624 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/027201624\n\nBICARGO','1','eb3a7ea2-5449-4b23-acff-46a030acf15e',NULL),
('fdc5e729-5aa5-4534-ba6e-2691fbbe4ede','491738798802','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','ee875e8e-a522-46c6-9e27-e09a0edbc8e6',NULL),
('fdcb49e6-176d-46fa-913c-db2b8a473b38','491776434343','Sayın AYHAN TÜRKMEN, 027527659 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/027527659\n\nDear AYHAN TÜRKMEN, your shipment with 027527659 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/027527659\n\nBICARGO','1','25b7b1d6-4d63-45b9-8031-fabd67fcd516',NULL),
('fdcef842-c457-4b13-a3ca-a1f4c8770ec8','33744724088','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('fdd1ab35-a852-41cb-87f8-28649d5f910c','905301592882','BELGİN YAĞLI		 adlı müşterinizin 910762495 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','f58ff780-8d60-44ab-895e-cd1887ec2eb7',NULL),
('fdd1d0ba-fa2b-46d4-a8d5-43a557de9db2','4367763453759','Sayın ALİ KURUÇAM, 437707209 nolu gönderiniz 3266 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437707209\n\nDear ALİ KURUÇAM, your shipment with 437707209 was delivered to you with the delivery code 3266. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437707209\n\n\nBICARGO','1','1c4d1793-ac06-480e-9fec-1ed042f34347',NULL),
('fdd5fd5b-629e-42e2-9d1a-ed6e4cae46a0','33617406567','982918194 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2944 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982918194\n\nYour shipment with the number 982918194 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2944. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982918194\n\nBICARGO','1','0c8bac25-5433-4bd6-bcc9-b94a47de9047',NULL),
('fdd6a704-638d-4340-8678-b49df1a5f7df','33675157353','Sayın ALİYE DALKAYA, 221763889 nolu gönderiniz 9247 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221763889\n\nDear ALİYE DALKAYA, your shipment with 221763889 was delivered to you with the delivery code 9247. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221763889\n\n\nBICARGO','1','3f10ddd5-0494-4a63-8c1b-40acc9372609',NULL),
('fde19386-91ee-4200-b66c-ab76593b6195','905336367828','FİROUZEH NOORZAİ adlı müşterinizin 982561254 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','690f6517-eb93-442b-b224-2954ac3c5231',NULL),
('fdf021ff-30cf-4378-83fb-1a7adb83ed28','905461661672','ESRA MAT(K) adlı müşterinizin 644484322 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','c2d80ea2-bf32-4dd3-96fc-6c76b77ae583',NULL),
('fdf28853-19af-40e8-913b-edeb68b3f688','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin KÖŞE TAKIMI VE BERJER ürünü 7 parça halinde RİXXE adresinizden 18.06.2025 17:15:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('fdf296b1-0d3c-40ce-967d-fed9c80c35d2','905459011033','BİRGÜL ÖRNEK adlı müşterinizin 268188607 nolu gönderisi 15 parça halinde yola çıkmıştır.','1','2630e226-f8e4-4780-bd53-00a42db1e018',NULL),
('fdf73771-006b-4c67-9358-540606f8806f','33637509452','Sayın NAFİT GANİOĞLU, 517255345 nolu gönderiniz 7067 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/517255345\n\nDear NAFİT GANİOĞLU, your shipment with 517255345 was delivered to you with the delivery code 7067. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/517255345\n\n\nBICARGO','1','08318497-59bc-4444-82cf-f14fd0a31917',NULL),
('fdfb5bd4-8177-4331-b502-a2547a04a2eb','491751082413','Sayın HANDE PALMA, 61378160 nolu gönderiniz 1117 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/61378160\n\nDear HANDE PALMA, your shipment with 61378160 was delivered to you with the delivery code 1117. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/61378160\n\n\nBICARGO','1','aca1e6bd-e356-4d59-bb04-0430a246e5cb',NULL),
('fdfee810-be93-47d3-bfc5-0d090d4b8a3d','491716444408','Sayın AZEM SATTAR, 248158562 nolu gönderiniz 2298 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/248158562\n\nDear AZEM SATTAR, your shipment with 248158562 was delivered to you with the delivery code 2298. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/248158562\n\n\nBICARGO','1','e698509e-076f-4ac2-b2de-bd8a1dfd105e',NULL),
('fe005548-6f6a-48bc-8cd9-a23448c1647f','491727920023','İletişim \n					Ramazan Bey (Şoför):+90 505 993 94 94','1','ac25d1b9-2250-4154-b15b-f735a6fdc731',NULL),
('fe0a6fd5-13f0-4f53-b021-82fed4648ff1','491627758662','Sayın FİRAS MACHANTAT, 750505145 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/750505145\n\nDear FİRAS MACHANTAT, your shipment with 750505145 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/750505145\n\nBICARGO','1','58d4a91c-acf5-448c-9848-3d5806828926',NULL),
('fe0d639a-fc4f-4a5f-be6f-71c3830e6dfe','905461661672','MİHRİBAN ÖZEN adlı müşterinizin 644776565 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','00c9f797-aeda-4640-80a8-f170a3df58f4',NULL),
('fe13091c-c434-46ab-bce2-92a866b96718','905331602195','MOHAMED CHAMLALİ adlı müşterinizin 221920880 nolu gönderisi 6 parça halinde yola çıkmıştır.','1','c6e5fe36-4cb2-4837-b35f-93523014a3bd',NULL),
('fe136f90-0eee-4bfb-81b2-e12b34600929','4917620554139','İLETİŞİM\n					ŞOFÖR ERDOĞAN BEY :+90 532 772 21 33','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('fe158468-37b2-487b-b32a-12179b9ba99a','4917624915178','Sayın MEHMET ORMANOĞLU, 614636969 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614636969\n\nDear MEHMET ORMANOĞLU, your shipment with 614636969 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614636969\n\nBICARGO','1','78b80c42-44c2-4ec1-827a-ef8e32bcec6c',NULL),
('fe1623dd-64a2-4a37-9a8c-8c456d69fc96','4915221698583','Sayın REZA OMERİ, 449394658 nolu gönderiniz 1248 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/449394658\n\nDear REZA OMERİ, your shipment with 449394658 was delivered to you with the delivery code 1248. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/449394658\n\n\nBICARGO','1','6a397517-cdaf-4836-a678-f168177b94a2',NULL),
('fe186e8c-c59e-4abf-b79a-bd322c8f90be','905461661672','Sayın yetkili; SUAT TUGAL adlı müşterinize 644443664 nolu gönderinizin KOLTUK ürünü 5 parça halinde AFENZA MOBİLYA adresinizden 07.04.2025 10:57:31 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','d6f95cb0-d25d-4e92-a9b7-6c2134ab5062',NULL),
('fe1d3c41-13d8-4bea-b818-b48349220458','905350617509','ELFRİDA RAİCEVİC  adlı müşterinizin 613510894 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','a8d8c13f-68fc-47b6-ad6a-756a7d8b92fa',NULL),
('fe219752-5f4d-4f16-b6e5-4e354f7dc92c','905313340045','Sayın yetkili; MİYASE AYDIN adlı müşterinize 437945654 nolu gönderinizin Orta sehpa ürünü 2 parça halinde masami adresinizden 13.08.2025 11:39:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','47b351a7-6171-418d-b138-7c197c50e909',NULL),
('fe219c89-a0b2-4ffe-8ab0-4171e3d3701c','905335708965','MOHAMAD SULAİMAN adlı müşterinizin 248810550 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1',NULL,NULL),
('fe240c8a-3db5-4177-97c3-cff0554a0267','4917620554139','428696149 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4780 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/428696149\n\nYour shipment with the number 428696149 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4780. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/428696149\n\nBICARGO','1','4f563dbc-f003-405e-bdb8-828b7a66d357',NULL),
('fe24cbb7-743f-452d-aa22-5627ce102f62','33786985474','Sayın KEMAL TAŞTAN, 982405831 nolu gönderiniz 8708 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982405831\n\nDear KEMAL TAŞTAN, your shipment with 982405831 was delivered to you with the delivery code 8708. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982405831\n\n\nBICARGO','1','b0c379aa-80ca-43d0-b23b-65db895d3ecd',NULL),
('fe30c303-c100-4fc9-9fc3-7377e1f5f67f','9053259981980','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin ŞAHİNLER KRİSTAL SANDALYE ürünü 1 parça halinde ŞAHİNLER  adresinizden 08.09.2025 14:59:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('fe31e9c6-ae19-4a99-a6d3-976ea6d4aa90','491722006627','Sayın FATİH YİGİT, 515956879 nolu gönderiniz 2358 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/515956879\n\nDear FATİH YİGİT, your shipment with 515956879 was delivered to you with the delivery code 2358. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/515956879\n\n\nBICARGO','1','4d25f6fc-edd0-4a96-9bb2-91c21a66472a',NULL),
('fe3210f7-d8db-4b0b-866a-76325974cf44','905534084469','BURCU ŞİMŞEK adlı müşterinizin 12752907 nolu gönderisi 8 parça halinde yola çıkmıştır.','1','c8b9abd8-5977-4fa9-9e7b-86e3e06ffaf3',NULL),
('fe3dd258-8581-46db-a251-d66218b300aa','905331602195','TALL YOANN adlı müşterinizin 221132707 nolu gönderisi 9 parça halinde yola çıkmıştır.','1','84050b65-b4a8-4360-a13e-ee8cc50aef3b',NULL),
('fe4083f3-4661-4a2c-a5d1-04a557af92bb','436608636840','Sayın ZEYNEP ŞİMŞEK, 437442386 nolu gönderiniz 3029 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/437442386\n\nDear ZEYNEP ŞİMŞEK, your shipment with 437442386 was delivered to you with the delivery code 3029. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/437442386\n\n\nBICARGO','1','c5ff309c-8bef-4c02-948a-d06e8823ca09',NULL),
('fe44425c-ed0e-4099-8949-28c11d2b4da1','4917647606470','Sayın UMUT YÖRÜK, 644243216 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644243216\n\nDear UMUT YÖRÜK, your shipment with 644243216 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644243216\n\nBICARGO','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('fe45ef0e-9b5c-4d2b-8692-147218919559','33652341181','Sayın ALİ DİNAR, 478185886 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/478185886\n\nDear ALİ DİNAR, your shipment with 478185886 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/478185886\n\nBICARGO','1','304a2496-cb37-4646-a094-9980a688ced5',NULL),
('fe52ff27-3cb1-4486-8bbb-0fbe1d83a531','33651051557','Sayın TKHİLİ BOUSHABA , 982578491 nolu gönderiniz 1506 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982578491\n\nDear TKHİLİ BOUSHABA , your shipment with 982578491 was delivered to you with the delivery code 1506. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982578491\n\n\nBICARGO','1','781f03ac-2015-438f-bba9-a8e09715b445',NULL),
('fe574776-4b73-47ae-b9bd-5b8fbc2bfb6b','491623245493','Sayın MERT OSMAN DEMİR(K), 644153988 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644153988\n\nDear MERT OSMAN DEMİR(K), your shipment with 644153988 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/644153988\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('fe5b5082-b6a4-405a-bcb7-9bad6e4784ff','491725785095','İletişim \n					Şöför Uğur Acar +905424435917','1','e7f656e7-35d0-4f99-bacd-ea6a85d14230',NULL),
('fe60fe96-3b67-4bff-a257-3fe792ec3adb','905336367828','Sayın yetkili; ERKAN UYSAL  adlı müşterinize 982271871 nolu gönderinizin 3+3 koltuk ürünü 1 parça halinde Ebbe sofa  adresinizden 19.11.2024 11:15:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9b0fdc03-2303-4892-bf4d-0d91b19ec321',NULL),
('fe628585-8b33-4972-a247-143bf8d0eefa','905335511664','Sayın yetkili; ESMA MERT adlı müşterinize 371282604 nolu gönderinizin yemek masası ürünü 3 parça halinde SM Tasarım adresinizden 08.05.2025 14:47:48 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a50d8db5-2bfe-4146-b10b-a41dcfc378a6',NULL),
('fe660218-d843-498f-be23-ced788692668','4915561661704','976568852 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10651 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/976568852\n\nYour shipment with the number 976568852 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10651. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/976568852\n\nBICARGO','1','47743b4f-0f71-47f0-aabf-3e472b257714',NULL),
('fe67368c-159b-4018-80ec-ec0595775b82','41794334443','982692076 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5926 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982692076\n\nYour shipment with the number 982692076 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5926. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982692076\n\nBICARGO','1','32e2befd-32f1-4bb7-a60e-635dd9c600ef',NULL),
('fe6798f4-8401-469d-9d66-e58481ec7ab2','905301592882','Sayın yetkili; ÖZKAN ÖZKOŞAR adlı müşterinize 910756975 nolu gönderinizin 4 ADET BAZA ürünü 20 parça halinde Fatura adresinizden 17.06.2025 12:13:25 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37faeeb0-a5b7-4b97-8159-3e4c585ae6f8',NULL),
('fe691757-a10d-4630-8786-89f7802e09bc','31611470628','Sayın ŞEYMA ŞANLI , 221883606 nolu gönderiniz 8153 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/221883606\n\nDear ŞEYMA ŞANLI , your shipment with 221883606 was delivered to you with the delivery code 8153. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/221883606\n\n\nBICARGO','1','f0caced4-3715-4549-a387-1a73db0a7166',NULL),
('fe69900f-ff5b-40a5-98ac-3c7023929df4','330620164241','982318245 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10606 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982318245\n\nYour shipment with the number 982318245 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10606. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982318245\n\nBICARGO','1','226e99fa-2222-409d-9c22-ab0639c760f9',NULL),
('fe6d98a7-5c1f-4fc7-a21f-9cebe1a6464b','4917647606470','İLETİŞİM\n					EYÜP YAMAN ŞOFÖR : +90536 613 37 50','1','0b9e594a-9050-45a0-a4fd-c58ac204bb9d',NULL),
('fe6f2d0b-6b62-409d-8225-00bc8fdb0bdb','4917655270836','644651781 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 4253 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644651781\n\nYour shipment with the number 644651781 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 4253. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644651781\n\nBICARGO','1','544de2ca-566d-4b42-80d3-8bdcf76c0ff0',NULL),
('fe70f2ec-b368-4536-8695-5d03afe23caa','491629865985','Sayın İPEK CANTÜRK, 437313362 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437313362\n\nDear İPEK CANTÜRK, your shipment with 437313362 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437313362\n\nBICARGO','1','7f859e4c-bba8-44f8-9564-dfb0b044e0f8',NULL),
('fe7310e6-2ad6-4a73-8da5-f6f802b94313','31638446688','Sayın VEFA ÇAĞLAR SÖNMEZ, 248746531 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248746531\n\nDear VEFA ÇAĞLAR SÖNMEZ, your shipment with 248746531 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248746531\n\nBICARGO','1','0e8dbe8e-49ac-4a8e-a189-9b29da83c362',NULL),
('fe764ec7-1d50-408e-99e5-7f55368ccdf3','905304259202','Sayın yetkili; SEVİM KAMER adlı müşterinize 478524376 nolu gönderinizin ÜNİTE VE ORTA SEHPA ürünü 8 parça halinde AREA adresinizden 29.05.2025 11:43:23 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','cf1b6f71-e318-40c8-a965-e02e6fdabcb3',NULL),
('fe798da7-5fdf-4569-bb96-f5322fa66883','905394878216','Sayın yetkili; ELİF SIKI  adlı müşterinize 517157021 nolu gönderinizin Koltuk 3+1+1 ürünü 1 parça halinde Fatura adresinizden 08.07.2025 10:58:20 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37e24e6c-6aac-4ee7-b2f5-433071dc1d49',NULL),
('fe79c42c-4db4-45df-90bd-e3bee0460774','31627458014','Sayın SEVGİ ÇELEBİ, 412665767 nolu gönderiniz 4139 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/412665767\n\nDear SEVGİ ÇELEBİ, your shipment with 412665767 was delivered to you with the delivery code 4139. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/412665767\n\n\nBICARGO','1','7af8955f-37e6-4e93-a7b7-e2155fe380f1',NULL),
('fe7a646f-3876-4162-93e5-ea1f883c6e65','33661847175','437321677 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3357 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437321677\n\nYour shipment with the number 437321677 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3357. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/437321677\n\nBICARGO','1','bd9dba96-c9c5-4c61-b279-b74adace6799',NULL),
('fe7c6fab-04ce-4cf1-a879-514d0f98cace','31625204455','Sayın NESİME BAGCI, 614652730 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/614652730\n\nDear NESİME BAGCI, your shipment with 614652730 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/614652730\n\nBICARGO','1','024b19f7-e2b8-4833-a610-6f1f48b3258e',NULL),
('fe8fddd8-809c-4552-9d13-bced945c5d61','32494889531','Sayın FAHRETTİN AKISKA, 478339664 nolu gönderiniz 5284 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478339664\n\nDear FAHRETTİN AKISKA, your shipment with 478339664 was delivered to you with the delivery code 5284. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478339664\n\n\nBICARGO','1','7e266893-f849-462e-9a81-e6336886fc16',NULL),
('fe956fa0-c510-46fc-a062-55b943a38087','491777519570','644742878 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 7900 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644742878\n\nYour shipment with the number 644742878 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 7900. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644742878\n\nBICARGO','1','b90afa4b-4bfb-45de-b36a-051a3bf6a245',NULL),
('fe96893d-7d22-4454-b570-c934072b1b48','34698865709','ŞOFÖR\n					ADNAN DURSUN :+905354622027','1','f0fd560a-44c1-4908-9784-45a3c9fbd2f7',NULL),
('fe9bb5a9-4d8a-41cb-8f60-a99c0f6535cd','905363385813','Sayın yetkili; ADEM ÖZKAN adlı müşterinize 976779460 nolu gönderinizin Koltuk ürünü 5 parça halinde SALON KOLTUK adresinizden 22.11.2024 09:20:53 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','7714cc95-f8de-4560-8240-8168befc09b9',NULL),
('fe9f47e5-2e56-4b52-b909-28210f11b5ac','31687655114','Sayın AYSEL KARABULUT, 449454395 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/449454395\n\nDear AYSEL KARABULUT, your shipment with 449454395 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/449454395\n\nBICARGO','1','438dd97c-f434-42d2-bc9b-5844c47dc0bd',NULL),
('fea578c7-04fe-4cbb-a17b-dc5e6dfacd1f','431728611102','Sayın VALMİRA RAMADANİ, 695394738 nolu gönderiniz 9012 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/695394738\n\nDear VALMİRA RAMADANİ, your shipment with 695394738 was delivered to you with the delivery code 9012. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/695394738\n\n\nBICARGO','2','82859b5d-2c9e-4a29-be96-14240c8a1e53',NULL),
('fea5f11a-5d63-4386-86f0-cb6be67e6db9','41772204001','Sayın MAOUD HABİBİ, 982765286 nolu gönderiniz 5022 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982765286\n\nDear MAOUD HABİBİ, your shipment with 982765286 was delivered to you with the delivery code 5022. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982765286\n\n\nBICARGO','1','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL),
('feb14f11-6558-44c9-992f-ab2f253a4454','905517075149','MURAT ŞEKER  adlı müşterinizin 478832291 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','3012bc75-124d-4be7-b4db-cd1cbb0ff9bb',NULL),
('feb240a3-32ce-4094-9a25-8e2b0eee2cff','4917622161768','Sayın SAMER JİNİED, 42845711 nolu gönderiniz 8332 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/42845711\n\nDear SAMER JİNİED, your shipment with 42845711 was delivered to you with the delivery code 8332. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/42845711\n\n\nBICARGO','1','00f85745-0785-4a7a-9691-f650a9d585f2',NULL),
('febef1a1-e7f3-4baa-8b1a-1b13fa425e22','905331602195','Sayın yetkili; MÜKREMİN GÜNDOĞDU adlı müşterinize 221584314 nolu gönderinizin 80x60 çap siyah sehpalar ürünü 2 parça halinde MASAMİ MOBİLYA adresinizden 25.09.2025 13:45:59 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','25d12410-c8e7-490e-98e0-9ef0a0d9272d',NULL),
('febf67f9-00d0-42a3-8484-330a69e70f81','491735389289','İLETİŞİM\n					UĞUR ACAR ŞOFÖR +90 542 443 59 17','1','c4f0205a-aa55-4f4a-8ee2-cdd2c9a1697b',NULL),
('febf9ca9-718e-4b8c-9817-0544d71b5ed7','905079358213','METİN PEKSERT SSH  adlı müşterinizin 74597110 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','8583f2b4-5e34-4b29-b37d-c779a2102d5c',NULL),
('fec42ffd-d929-4a2a-a8cd-15e2cb5c5374','905313340045','Sayın yetkili; MERYEM BİRCAN ANİK adlı müşterinize 437791709 nolu gönderinizin aksesuar ürünü 3 parça halinde dorthome ofis adresinizden 22.05.2025 12:26:58 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','e8d23d8a-2637-4202-afea-6441ccee21d3',NULL),
('fec73d83-d7e3-433f-b17d-389660e22b20','905313340045','Sayın yetkili; IVANA JURCEVİC adlı müşterinize 437869312 nolu gönderinizin MASA ürünü 3 parça halinde decoria adresinizden 22.05.2025 12:34:57 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','37c5e10d-e0b6-4c94-85c7-2b6278fcee2c',NULL),
('fec8ac0b-f031-42ed-aaef-c8217678a53d','41772204001','Sayın MAOUD HABİBİ, 982765286 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982765286\n\nDear MAOUD HABİBİ, your shipment with 982765286 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982765286\n\nBICARGO','1','e9cea214-9c50-4164-bc0c-ec27741915e8',NULL),
('fec90082-28a6-4f59-811d-b2fcb88962a0','905301592882','Sayın yetkili; FATMA FİLİZ DEMİR		 adlı müşterinize 910550169 nolu gönderinizin SSH PARÇASI ürünü 1 parça halinde Fatura adresinizden 26.02.2025 09:31:24 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9418fa6a-d578-4e34-8927-b28f347cbf40',NULL),
('fece4086-8a77-493d-b735-26fceaefc75d','905459011033','HÜLYA KÜTÜK adlı müşterinizin 268262151 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','499cda13-5036-44b3-a782-3aa5247b7b44',NULL),
('fed52bda-4d38-4a88-99b7-2798cdc8102a','','412726953 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8992 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/412726953\n\nYour shipment with the number 412726953 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8992. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/412726953\n\nBICARGO','2','aaf63331-ccff-4ade-8965-5318b9f59d6e',NULL),
('fed6c755-99a2-469e-8641-b1854875300f','491639801426','Sayın EUROMOBEL, 412395565 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412395565\n\nDear EUROMOBEL, your shipment with 412395565 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412395565\n\nBICARGO','1','a451f68c-dd26-4757-af49-72fa26f23f80',NULL),
('fed85f40-06aa-4578-86cc-3e188c9c38d3','491712300528','Sayın FATMA ERDEM, 598161990 nolu gönderiniz 3796 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/598161990\n\nDear FATMA ERDEM, your shipment with 598161990 was delivered to you with the delivery code 3796. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/598161990\n\n\nBICARGO','1','5fa14283-df86-4b3d-ad0f-9b686ba6117b',NULL),
('fed8a207-70ba-4b58-aacb-574cac2cde83','905337836884','Sayın yetkili; SAMAR OSMAN adlı müşterinize 140284101 nolu gönderinizin Yatak ürünü 1 parça halinde bedhome adresinizden 23.10.2025 15:23:10 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a185dc3-3990-4ba8-b87e-5f39ac4b1643',NULL),
('fede4997-0e99-4374-b451-17e520581d19','2323244222444443','248186638 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9715 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248186638\n\nYour shipment with the number 248186638 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9715. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248186638\n\nBICARGO','2','a3d9ed34-0a43-46a5-88ac-b4bf44493c05',NULL),
('fee010eb-1be8-49c6-a38c-a6b366996f9e','905428209234','GÜLÇİN İSMAİLÇEBİOĞLU adlı müşterinizin 31925609 nolu gönderisi 5 parça halinde yola çıkmıştır.','1','4a5b9bbc-8625-4b70-95ee-60399f0043bf',NULL),
('fee0a1fe-1974-4190-a743-b32ee7e94456','905325000478','BMD ELİF ÇEKİCİ adlı müşterinizin 412784700 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','df4cdd55-cb8f-4a40-ae52-688e5f8e5432',NULL),
('fee2112e-04e9-4ff8-8813-798fddbadca1','33652634167','Sayın KAZIM YOL, 478202878 nolu gönderiniz 9208 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478202878\n\nDear KAZIM YOL, your shipment with 478202878 was delivered to you with the delivery code 9208. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478202878\n\n\nBICARGO','1','702ebb26-b834-4081-a58c-2279f0d9af03',NULL),
('fee607b4-06e6-41d0-b2c4-cba1a1cb31c4','905313340045','Sayın yetkili; ALİ AKKAN adlı müşterinize 43725194 nolu gönderinizin baza ürünü 10 parça halinde Albessa adresinizden 17.09.2025 16:18:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1965b9c6-c511-459f-8f4e-dddb4f23f943',NULL),
('fee8ea06-23e1-4545-8e17-1a8272a67ca3','33788856164','41291679 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9710 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41291679\n\nYour shipment with the number 41291679 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9710. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41291679\n\nBICARGO','1','0d40e91f-6390-4121-9303-5976e9f6f226',NULL),
('feec1d57-708a-4185-80c4-b8c07553467d','905079358213','Sayın yetkili; DENİZ ŞİMŞEK adlı müşterinize 745824761 nolu gönderinizin SANDALYE + TV ÜST RAF  ürünü 5 parça halinde RİXXE  adresinizden 12.08.2025 16:20:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('feecf9bb-fce0-496d-af81-779977dcfb31','905331602195','Sayın yetkili; SAVYO RAFFO adlı müşterinize 22164822 nolu gönderinizin Tv ünitesi  ürünü 2 parça halinde Fatura adresinizden 10.02.2025 12:23:50 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b2cd1680-a31f-4de2-b636-a5c7910e8acf',NULL),
('fef7305a-cad8-429c-a907-4e5003bf5e27','4916097979747','644680025 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 3752 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644680025\n\nYour shipment with the number 644680025 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 3752. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644680025\n\nBICARGO','1','d006eab6-c320-4751-8fec-f85d79856933',NULL),
('fef80e20-ac31-47dd-be35-2d8f5e6c23d1','4917671929975','Sayın SEMANUR GÜLER, 598781522 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/598781522\n\nDear SEMANUR GÜLER, your shipment with 598781522 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/598781522\n\nBICARGO','1','5e55f20c-e2ab-4965-a16e-95af4a5ed4da',NULL),
('fefc2fb8-f788-43dd-aad4-eb7769615600','905325000478','RAHİM MALOĞLU adlı müşterinizin 412731497 nolu gönderisi 2 parça halinde yola çıkmıştır.','1','0e1f0ff2-0fd0-467d-be19-57aad10ed98b',NULL),
('fefc3f72-5d93-44f4-90b1-653d5420d95d','905301592882','SONGÜL KEKEÇ adlı müşterinizin 910197116 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','7d8e5510-6139-402c-b2eb-e91c010cf1ea',NULL),
('ff03109e-6725-4d6a-a401-79605c9b9947','4917661473873','Sayın CHİKH HAMZA GHUFRAN, 248707022 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/248707022\n\nDear CHİKH HAMZA GHUFRAN, your shipment with 248707022 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/248707022\n\nBICARGO','1','2c2b9f6a-7788-4e01-831d-aa89201542d0',NULL),
('ff07e34f-3b46-41f1-9657-eece4fba333d','49015779002510','982189682 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6393 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/982189682\n\nYour shipment with the number 982189682 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6393. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/982189682\n\nBICARGO','1','e34fd977-db36-4dab-bb2f-73cdf84f2f2e',NULL),
('ff1148f4-ba9d-42a5-b50f-608c4b18adad','905331602195','Sayın yetkili; REUAN SHAMO  adlı müşterinize 221947357 nolu gönderinizin 70x120 cm orta sehpa  ürünü 2 parça halinde Fatura adresinizden 28.04.2025 17:17:22 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','9ce62bd7-3afd-4765-a2a2-99f4aea71849',NULL),
('ff1328ac-6b17-4a45-8356-2496a3be0a9c','4917622016838','449401217 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9126 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/449401217\n\nYour shipment with the number 449401217 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9126. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/449401217\n\nBICARGO','1','36cefbee-b74b-43cf-ad5c-7484e0e0f6f7',NULL),
('ff24296c-7934-48f3-9bdb-d75a2e5499da','','248383650 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 9679 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/248383650\n\nYour shipment with the number 248383650 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 9679. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/248383650\n\nBICARGO','2','bd527c1b-2a83-4e69-9c2d-979c479102b0',NULL),
('ff267d77-162b-42f8-b68c-5e4f2f07ae0b','905461661672','CANAN ŞENEL adlı müşterinizin 644319069 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','32d8dcee-9361-46e5-a98f-6e606f4ea7ca',NULL),
('ff2910fb-19e9-49e7-ad09-ddce8e47050e','4917679700868','858854212 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 10989 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/858854212\n\nYour shipment with the number 858854212 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 10989. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/858854212\n\nBICARGO','1','b67594be-f958-4225-900b-19c5f6be08ce',NULL),
('ff388145-b413-4f6c-8098-cd0ee5f4cb1d','491623245493','Sayın MERT OSMAN DEMİR(K), 644153988 nolu gönderiniz 2058 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644153988\n\nDear MERT OSMAN DEMİR(K), your shipment with 644153988 was delivered to you with the delivery code 2058. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644153988\n\n\nBICARGO','1','953f3501-da44-4096-afef-f255993a1b13',NULL),
('ff3c1d5e-bb5f-4767-b1f4-460cfbb719a1','43650589188','745808637 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 8018 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745808637\n\nYour shipment with the number 745808637 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 8018. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/745808637\n\nBICARGO','2','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('ff411ae8-11fd-4a60-8b2f-a126bfbd9353','905304259202','Sayın yetkili; MİNA ANNABİ adlı müşterinize 478278253 nolu gönderinizin KÖŞE TAKIMI ürünü 4 parça halinde PUFFİN adresinizden 09.05.2025 16:18:38 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1c14969a-f21e-4d10-ad0e-526d04fe3018',NULL),
('ff41320a-5cd5-40dc-9ce2-0b2ed0b62950','32478530269','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','1','a75c0466-9f5a-4f5b-89c0-9179e86aed34',NULL),
('ff4d3fa9-73a5-4eb0-88eb-27405aeffab1','905075277637','Sayın yetkili; DENİZ ŞİMŞEK adlı müşterinize 745824761 nolu gönderinizin SANDALYE + TV ÜST RAF  ürünü 5 parça halinde RİXXE  adresinizden 12.08.2025 16:20:19 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a5a9372f-c23a-4cfd-971f-d494355aeac5',NULL),
('ff51578e-3a08-4202-84f0-3eaf827ec529','905059175469','ÖMER KARAMAN adlı müşterinizin 428857511 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','b3ae875f-7a87-471f-8393-3afab90f9796',NULL),
('ff555e1a-80a6-4b88-bcd3-51ac8d1aa721','4917648386532','Sayın MEHMET ALİ ALBECER, 976747802 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/976747802\n\nDear MEHMET ALİ ALBECER, your shipment with 976747802 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/976747802\n\nBICARGO','1','49c48f88-3c20-42bd-8ea9-304d94c9460f',NULL),
('ff650a38-2481-4b4b-90d2-cefa218cd496','436608138124','DRİVER\n					ADNAN\n+905354622027','1','71bc85dd-ef9e-4b79-a825-feb4851a5ac5',NULL),
('ff66e77f-a9de-4a83-8489-d6d978924a69','4915223927812','Sayın HÜSEYİN ELİF TUNCA , 437809521 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437809521\n\nDear HÜSEYİN ELİF TUNCA , your shipment with 437809521 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437809521\n\nBICARGO','1','090e53a7-9f47-40c2-990b-65dbc36b9e2c',NULL),
('ff6801ef-4b3e-46dd-b363-c8401e87b099','905335708965',' adlı müşterinizin 248771792 nolu gönderisi 46 parça halinde yola çıkmıştır.','1','9aaeab80-cfa4-4210-b789-4d7ae0454982',NULL),
('ff689264-0b86-4c88-813a-6271efcf1a4d','905510396989','DİLBER ÖZTÜRK adlı müşterinizin 319585140 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','1be311ce-e06b-49b5-89b4-ca8a3ecea45f',NULL),
('ff6e6a29-a2f5-404f-8913-04f0d36075b4','4917662248908','Sayın ERCAN VARSAK, 745318139 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/745318139\n\nDear ERCAN VARSAK, your shipment with 745318139 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/745318139\n\nBICARGO','1','89eb6491-3e20-44a2-80d5-2107251a822e',NULL),
('ff70c17b-4f6f-4c89-81c7-3048bd456b23','9054439559150','Sayın yetkili; İSMET  IRMAK adlı müşterinize 614659832 nolu gönderinizin GRANDBEDS VİTRA 120 LIK BAŞLIK ürünü 1 parça halinde Fatura adresinizden 08.09.2025 14:59:40 tarih saatinde teslim alınmıştır.\n\nBİCARGO','2','6dce8b90-0bb7-4578-ad31-082486aad8f2',NULL),
('ff70e238-4ffc-43f3-9990-a64db3cacb9a','491608350626','İLETİŞİM\n					MEHMET ÇALIŞKAN ŞÖFÖR :+90 543 233 72 08','2','9fe64691-2031-49a6-a917-f5af8aa63a82',NULL),
('ff72a54f-c1f8-4d42-9218-b0079cba47a5','905075277637','YUSUF ALAN SSH  adlı müşterinizin 745639343 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','311d6f09-bcb6-4e2f-a20a-8c99e7177094',NULL),
('ff737a15-355a-49d3-9196-683ec977922f','436769600864','Sayın LEMAN TUNCER, 412467921 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/412467921\n\nDear LEMAN TUNCER, your shipment with 412467921 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/412467921\n\nBICARGO','1','caa25f56-3e3b-4a02-995e-9956a9ae987a',NULL),
('ff7a2f99-1a90-4b9b-a147-e0cab2c0bfb8','4917675899290','Sayın KADİR ÜZER, 371495147 nolu gönderiniz 6951 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/371495147\n\nDear KADİR ÜZER, your shipment with 371495147 was delivered to you with the delivery code 6951. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/371495147\n\n\nBICARGO','1','c25ac7c4-4bc1-4a99-bd3f-189af6d00f37',NULL),
('ff82de96-7556-4ce7-9554-adfd42486d15','33621633706','ŞÖFÖR BİLGİLERİ\n					SERHAT\n+90 535 707 36 54','1','89246671-a5c1-446d-bc5e-be3c518b5d0e',NULL),
('ff8882e2-3365-4cc1-a247-ca390268cb10','905532675926','TÜLAY AYDIN adlı müşterinizin 428604775 nolu gönderisi 4 parça halinde yola çıkmıştır.','1','64b8a1ba-85de-4554-a334-d674f0951e0e',NULL),
('ff8f6d56-66a2-4142-9960-2742634030d2','905331602195','Sayın yetkili; RANJA SABRİ  adlı müşterinize 221904119 nolu gönderinizin Balat sandalye siyah  ürünü 6 parça halinde MASAMİ MOBİLYA adresinizden 01.07.2025 12:37:11 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','b10467dd-1ad4-4468-8e8e-6d6e751fff22',NULL),
('ff91c88a-773d-4bc8-9f32-37f557a38fcc','905331602195','Sayın yetkili; BURCU GELİR  adlı müşterinize 221461818 nolu gönderinizin 90x190 cm traverten masa  ürünü 3 parça halinde MASAMİ MOBİLYA adresinizden 19.09.2025 17:31:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','4a38f569-617d-48cf-b0fc-27e25fd3884e',NULL),
('ff93b5be-6813-4d96-bc9b-5813ad8bd0ba','905357955726','ALİ ÖZ adlı müşterinizin 315389904 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','9d2cc51d-661d-4efe-b0fd-2306ca62f7fd',NULL),
('ff94481f-c564-4eaf-9217-c16003b62b80','491783209660','41283002 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 6647 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/41283002\n\nYour shipment with the number 41283002 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 6647. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/41283002\n\nBICARGO','1','494f3e98-90be-4c2a-94b4-33e9a0c27aaf',NULL),
('ff9a5c9f-1faf-4b28-826e-49279ac2006c','4916093919802','644644115 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 2744 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/644644115\n\nYour shipment with the number 644644115 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 2744. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/644644115\n\nBICARGO','1','05940da7-019d-4e63-b256-fc9fbba594ab',NULL),
('ff9d1448-c1f1-4627-8d30-01291417da99','3247788295','İLETİŞİM\n					MERT ŞOFÖR:0541 379 8166','2','39266e8b-9caf-4386-a36a-8133aa79e848',NULL),
('ffa0eaf4-a0dc-401e-8522-642d448e43d2','31621494387','Sayın HAKİF ZİNAL, 644330933 nolu gönderiniz 5760 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/644330933\n\nDear HAKİF ZİNAL, your shipment with 644330933 was delivered to you with the delivery code 5760. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/644330933\n\n\nBICARGO','1','adf790b3-29b5-476e-ba13-8e482d9bc940',NULL),
('ffa635e2-ef15-45f7-b6fb-b672eabffb19','905355928266','İBRAHİM AKÇORA adlı müşterinizin 412679110 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','d25fd827-385a-48f1-8993-4f48129b3530',NULL),
('ffb607e5-b4ce-44a5-9fd7-3a0bf8fc203b','905461661672','BETÜL ÇELİK adlı müşterinizin 644334455 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','e00a4597-7f8a-4e0f-8cd9-480107421adb',NULL),
('ffbca7c1-2afd-4230-98cd-62a4c83ac014','33640564045','Sayın MON NAM ALEMİ, 982799609 nolu gönderiniz 5294 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/982799609\n\nDear MON NAM ALEMİ, your shipment with 982799609 was delivered to you with the delivery code 5294. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/982799609\n\n\nBICARGO','1','2473140a-52f5-4b86-a285-e3de923dde5c',NULL),
('ffbf058d-db7b-486e-89af-06c8d660532c','4917632294519','Sayın WALDEMAR HEİNZ , 613940015 nolu gönderiniz 1596 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/613940015\n\nDear WALDEMAR HEİNZ , your shipment with 613940015 was delivered to you with the delivery code 1596. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/613940015\n\n\nBICARGO','1','7dba6aad-c685-4d86-96a0-5bd7caa80a14',NULL),
('ffc18a9a-c06b-451b-b2ec-c14798ddc1e9','905313340045','Sayın yetkili; CENNET YAVUZ adlı müşterinize 437250812 nolu gönderinizin sandalye ürünü 1 parça halinde mfour sandalye adresinizden 24.04.2025 12:34:42 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6e7511a6-da4e-49c4-b1e0-36335129a7eb',NULL),
('ffc24315-9575-4739-8ef9-ad4278b570e6','905335511664','Sayın yetkili; SÜLEYMAN SUNGUR adlı müşterinize 371365041 nolu gönderinizin SANDALYE ürünü 6 parça halinde Sandalyeci Bekir adresinizden 11.07.2025 16:05:12 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','a05e0bfa-eaae-4d7d-a151-404547093031',NULL),
('ffc49c8c-bbf3-49f9-b360-30c23455b4a3','436604807629','Sayın KARAARSLAN YELİZ, 808886614 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/808886614\n\nDear KARAARSLAN YELİZ, your shipment with 808886614 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/808886614\n\nBICARGO','1','a519280a-5153-4940-80b7-3e59e0747d85',NULL),
('ffca5c18-1e9a-441c-8040-99f85cbac5f5','905075277637','ÖZLEM TURA adlı müşterinizin 745808637 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','924da3d8-9a73-46a3-a085-d7683bf2448e',NULL),
('ffdbba1c-4516-4038-96c9-d061a15d77ce','905075277637','Sayın yetkili; OZAN AL  adlı müşterinize 745995046 nolu gönderinizin PİER SANDALYE  ürünü 3 parça halinde BEYMİ  adresinizden 08.08.2025 17:20:00 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','91baf8ac-c499-4118-bb77-3c280cca0a2f',NULL),
('ffe03d07-c5bb-4ae8-afca-3a2211b128e2','905079358213','EMRE YILMAZ adlı müşterinizin 745884226 nolu gönderisi teslim edilmiştir.\n\nBİCARGO','1','69d7a07d-c199-439f-8e6c-e59065df2772',NULL),
('ffe32eb1-51f2-4bc8-861d-b948709c0e3b','905421855834','HÜLYA MEŞE (SSH) adlı müşterinizin 338882287 nolu gönderisi 1 parça halinde yola çıkmıştır.','1','7b9471cb-d4f3-4db3-8ac7-d88e488c33f5',NULL),
('ffe35c4e-840c-4338-9e70-cae3f74393e0','905517075149','Sayın yetkili; YUSUF HAMZA DALKILINÇ adlı müşterinize 478423651 nolu gönderinizin dolap masa sandalye ürünü 13 parça halinde GARDEROBE adresinizden 11.07.2025 10:38:37 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','6ab64262-e10e-4c69-a128-c1c8101ef7ed',NULL),
('ffe54f75-2033-4882-b70d-27899a4055f3','33698234123','Sayın BRAHIMA NAIMA, 982446186 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/982446186\n\nDear BRAHIMA NAIMA, your shipment with 982446186 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/982446186\n\nBICARGO','1','a797dd9c-2824-4d7d-8bf3-c9f727ff603d',NULL),
('ffe8faa6-5d8c-43c0-b9d4-7c36471d4593','31685036791','Sayın AHMET BAYDAR, 478943291 nolu gönderiniz 3969 nolu teslimat kodu ile tarafınıza teslim edilmiştir. Dağıtıcımızdan aldığınız hizmeti değerlendirmek için linke tıklayarak anketimize katılabilirsiniz: http://bicargo.com.tr/anket/478943291\n\nDear AHMET BAYDAR, your shipment with 478943291 was delivered to you with the delivery code 3969. You can participate in our survey by clicking on the link to evaluate the service you received from our distributor: http://bicargo.com.tr/anket/478943291\n\n\nBICARGO','1','fc7f087a-ae03-4140-970a-58c79194cdc8',NULL),
('fff15ae6-1991-4ead-b488-319364c489d8','905454259202','Sayın yetkili; EMİN EKRAMOĞLU adlı müşterinize 478337610 nolu gönderinizin BAZA PARÇALARI ürünü 1 parça halinde Fatura adresinizden 15.05.2025 12:06:07 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','8a76a697-a7e9-4cf5-9fef-d4afa4e9faa9',NULL),
('fff4ca57-7df9-49bd-9585-4a17b680b624','31641388732','Sayın DİLEK YILMAZ, 437227214 nolu gönderiniz yola çıkmıştır. Ürünleriniz 8-10 iş günü içerisinde teslim edilecektir. Otomatik mesajdır, lütfen bu mesajı cevaplamayın.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/437227214\n\nDear DİLEK YILMAZ, your shipment with 437227214 is on its way. Your products will be delivered within 8-10 business days. This is an automatic message, please do not reply to this message.\nClick here to check the status of your shipment: https://bicargo.com.tr/kargo-takip/437227214\n\nBICARGO','1','071c9b00-dfd6-452e-a75b-c40b31f270dc',NULL),
('fff863d3-4b31-478a-b5af-2c9a4f08919b','40741604282','98275727 nolu gönderiniz şuan da gümrüktedir. Ürününüz 1-3 iş günü içerisinde tarafınıza teslim edilecektir. Dağıtım görevlimiz sizinle iletişime geçecektir. Gönderinizi 5067 kodu ile teslim alabilirsiniz. Teslimat kodu belirtilmeden ürünleriniz teslim edilmeyecektir.\nGönderinizin durumunu öğrenmek için tıklayınız: https://bicargo.com.tr/kargo-takip/98275727\n\nYour shipment with the number 98275727 is currently at customs. Your product will be delivered to you within 1-3 working days. Our delivery person will contact you. You can receive your shipment with the code 5067. Your products will not be delivered without specifying the delivery code.\nClick here to find out the status of your shipment: https://bicargo.com.tr/kargo-takip/98275727\n\nBICARGO','1','0b896bd7-2c3b-47b7-8e7c-81c9ececb79e',NULL),
('fff8d886-02ab-4197-8e8b-e2cb40c6598f','491728739578','BiCarGo\n					ŞÖFÖR İLETİŞİM NUMARASI\n +905446347474','1','a4c0af65-f3e2-484c-99b8-617b31d3f22d',NULL),
('fffe427b-fe0d-47d5-8d82-3a17fa9c37fd','905461661672','Sayın yetkili; TAYFUN ŞENGÜL adlı müşterinize 644424764 nolu gönderinizin MASA ürünü 3 parça halinde Masami Mobilya adresinizden 18.08.2025 17:53:26 tarih saatinde teslim alınmıştır.\n\nBİCARGO','1','1e9ad390-bf85-414e-98b1-b7175b25c837',NULL),
('ffff17b5-a7c5-4658-a291-741ae7c97a23','33635402722','DRİVER NUMBER\n					+90 541 379 81 66 Mert GÜNAL','1','fe602c87-be95-4eec-b456-7556cb60d4a7',NULL);
/*!40000 ALTER TABLE `whatsapp_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'appbicargo_1'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-10-27 18:40:19
